diff --git a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/actors/game/CardStack.java b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/actors/game/CardStack.java index 9318142..6b47614 100644 --- a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/actors/game/CardStack.java +++ b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/actors/game/CardStack.java @@ -1,7 +1,6 @@ package eu.jonahbauer.wizard.client.libgdx.actors.game; import com.badlogic.gdx.scenes.scene2d.*; -import com.badlogic.gdx.scenes.scene2d.utils.ClickListener; import eu.jonahbauer.wizard.client.libgdx.WizardGame; import eu.jonahbauer.wizard.client.libgdx.screens.GameScreen; import lombok.Data; diff --git a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/CreateGameScreen.java b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/CreateGameScreen.java index 823cabc..0f2952c 100644 --- a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/CreateGameScreen.java +++ b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/CreateGameScreen.java @@ -8,6 +8,7 @@ import com.badlogic.gdx.utils.Array; import eu.jonahbauer.wizard.client.libgdx.WizardGame; import eu.jonahbauer.wizard.client.libgdx.listeners.ResetErrorListener; import eu.jonahbauer.wizard.client.libgdx.state.AwaitingJoinSession; +import eu.jonahbauer.wizard.client.libgdx.state.Lobby; import eu.jonahbauer.wizard.common.messages.client.CreateSessionMessage; import eu.jonahbauer.wizard.common.model.Configuration; @@ -21,6 +22,8 @@ public class CreateGameScreen extends MenuScreen { private TextField timeOut; private SelectBox configurations; + private final Lobby state; + private final ChangeListener listener = new ChangeListener() { @Override public void changed(ChangeEvent event, Actor actor) { @@ -36,6 +39,7 @@ public class CreateGameScreen extends MenuScreen { public CreateGameScreen(WizardGame game) { super(game); + this.state = (Lobby) game.getClient().getState(); } @Override @@ -55,31 +59,31 @@ public class CreateGameScreen extends MenuScreen { sessionName.addListener(errorListener); sessionName.setProgrammaticChangeEvents(true); - playerName = new TextField("", game.data.skin); + playerName = new TextField(state.getPlayerName(), game.data.skin); playerName.setPosition(WizardGame.WIDTH * 0.3f, WizardGame.HEIGHT * 0.45f); playerName.setSize(0.4f * WizardGame.WIDTH, 64); playerName.addListener(errorListener); - playerName.setTextFieldListener(new TextField.TextFieldListener() { + var playerNameListener = new ChangeListener() { private final String format = game.messages.get("menu.create_game.session_name.default"); - private String oldName = ""; @Override - public void keyTyped(TextField textField, char c) { - if (textField == playerName) { - var player = playerName.getText(); - var session = sessionName.getText(); - if (session.isEmpty() || session.equals(format.formatted(oldName))) { - if (player.isEmpty()) { - sessionName.setText(""); - } else { - sessionName.setText(format.formatted(player)); - } + public void changed(ChangeEvent event, Actor actor) { + var old = state.getPlayerName(); + state.setPlayerName(playerName.getText()); + + var player = playerName.getText(); + var session = sessionName.getText(); + if (session.isEmpty() || session.equals(format.formatted(old))) { + if (player.isEmpty()) { + sessionName.setText(""); + } else { + sessionName.setText(format.formatted(player)); } - - oldName = player; } } - }); + }; + playerName.addListener(playerNameListener); + playerNameListener.changed(null, null); timeOut = new TextField("", game.data.skin); timeOut.setPosition(WizardGame.WIDTH * 0.3f, WizardGame.HEIGHT * 0.4f); diff --git a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/LobbyScreen.java b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/LobbyScreen.java index a6d475f..fd68931 100644 --- a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/LobbyScreen.java +++ b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/LobbyScreen.java @@ -8,6 +8,7 @@ import eu.jonahbauer.wizard.client.libgdx.WizardGame; import eu.jonahbauer.wizard.client.libgdx.actors.AutoFocusScrollPane; import eu.jonahbauer.wizard.client.libgdx.listeners.ResetErrorListener; import eu.jonahbauer.wizard.client.libgdx.state.AwaitingJoinSession; +import eu.jonahbauer.wizard.client.libgdx.state.Lobby; import eu.jonahbauer.wizard.client.libgdx.state.Menu; import eu.jonahbauer.wizard.common.messages.client.JoinSessionMessage; import eu.jonahbauer.wizard.common.messages.data.SessionData; @@ -33,6 +34,8 @@ public class LobbyScreen extends MenuScreen { private List sessions; private ScrollPane sessionListContainer; private final Map sessionData = new HashMap<>(); + + private final Lobby state; private final ChangeListener listener = new ChangeListener() { @Override @@ -52,6 +55,7 @@ public class LobbyScreen extends MenuScreen { public LobbyScreen(WizardGame game) { super(game); + this.state = (Lobby) game.getClient().getState(); } @Override @@ -60,7 +64,6 @@ public class LobbyScreen extends MenuScreen { buttonBack = new TextButton(game.messages.get("menu.lobby.back"), game.data.skin); buttonJoin = new TextButton(game.messages.get("menu.lobby.join"), game.data.skin); - buttonJoin.setDisabled(true); buttonCreate = new TextButton(game.messages.get("menu.lobby.create"), game.data.skin); sessions = new List<>(game.data.skin) { @@ -165,14 +168,19 @@ public class LobbyScreen extends MenuScreen { labelSessionConfiguration.setText(""); selectedSession = null; } - buttonJoin.setDisabled(data == null); } private Table createInfoTable() { float infoTableWidth = 0.3f * WizardGame.WIDTH - 20; - playerName = new TextField("", game.data.skin); + playerName = new TextField(state.getPlayerName(), game.data.skin); playerName.addListener(new ResetErrorListener(game.data.skin)); + playerName.addListener(new ChangeListener() { + @Override + public void changed(ChangeEvent event, Actor actor) { + state.setPlayerName(playerName.getText()); + } + }); labelSessionName = new Label("", game.data.skin, "textfield"); labelSessionConfiguration = new Label("", game.data.skin, "textfield"); diff --git a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/MenuScreen.java b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/MenuScreen.java index 571f438..3b359a1 100644 --- a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/MenuScreen.java +++ b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/MenuScreen.java @@ -29,7 +29,6 @@ public abstract class MenuScreen implements Screen { @Override public final void render(float delta) { Gdx.gl.glClear(GL20.GL_COLOR_BUFFER_BIT | GL20.GL_DEPTH_BUFFER_BIT | (Gdx.graphics.getBufferFormat().coverageSampling?GL20.GL_COVERAGE_BUFFER_BIT_NV:0)); -// Gdx.gl.glClear(GL20.GL_COLOR_BUFFER_BIT); game.data.extendViewport.apply(true); game.batch.setProjectionMatrix(game.data.extendViewport.getCamera().combined); @@ -48,6 +47,7 @@ public abstract class MenuScreen implements Screen { } protected void renderBackground(float delta) { + game.batch.setColor(1, 1, 1, 1); float scale = Math.max( game.data.extendViewport.getWorldWidth() / WizardGame.WIDTH, game.data.extendViewport.getWorldHeight() / WizardGame.HEIGHT @@ -60,6 +60,7 @@ public abstract class MenuScreen implements Screen { } protected void renderForeground(float delta) { + game.batch.setColor(1, 1, 1, 1); game.batch.draw(game.data.title, 555, WizardGame.HEIGHT - 192 - 96, 810, 192); } diff --git a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/state/Lobby.java b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/state/Lobby.java index bd867dc..7c9580a 100644 --- a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/state/Lobby.java +++ b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/state/Lobby.java @@ -1,11 +1,11 @@ package eu.jonahbauer.wizard.client.libgdx.state; -import com.badlogic.gdx.utils.reflect.ClassReflection; import eu.jonahbauer.wizard.client.libgdx.Client; -import eu.jonahbauer.wizard.client.libgdx.screens.CreateGameScreen; import eu.jonahbauer.wizard.client.libgdx.screens.LobbyScreen; import eu.jonahbauer.wizard.common.messages.data.SessionData; import eu.jonahbauer.wizard.common.messages.server.*; +import lombok.Getter; +import lombok.Setter; import java.util.Optional; @@ -13,7 +13,10 @@ public final class Lobby extends BaseState { private SessionListMessage list; private LobbyScreen lobbyScreen; - private CreateGameScreen createScreen; + + @Getter + @Setter + private String playerName = ""; public Lobby(SessionListMessage list) { this.list = list; @@ -43,10 +46,6 @@ public final class Lobby extends BaseState { } else if (message instanceof SessionListMessage list) { lobbyScreen.setSessions(list.getSessions().toArray(new SessionData[0])); return Optional.empty(); - } else if (message instanceof SessionJoinedMessage joined) { - //TODO find solution - createScreen = new CreateGameScreen(client.getGame()); - return Optional.empty(); } else { return unexpectedMessage(client, message); } diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/font/coolvetica.fnt b/wizard-client/wizard-client-libgdx/core/src/main/resources/font/coolvetica.fnt index e3321d7..78104a5 100644 --- a/wizard-client/wizard-client-libgdx/core/src/main/resources/font/coolvetica.fnt +++ b/wizard-client/wizard-client-libgdx/core/src/main/resources/font/coolvetica.fnt @@ -1,55410 +1,21428 @@ -info face="CoolveticaRg-Regular" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=2,1,1,2 spacing=-3,-3 -common lineHeight=39 base=31 scaleW=512 scaleH=512 pages=1 packed=0 -page id=0 file="coolvetica2.png" -chars count=476 -char id=0 x=444 y=274 width=16 height=25 xoffset=-1 yoffset=7 xadvance=14 page=0 chnl=0 -char id=13 x=0 y=0 width=0 height=0 xoffset=-2 yoffset=0 xadvance=0 page=0 chnl=0 -char id=33 x=493 y=300 width=9 height=24 xoffset=-1 yoffset=8 xadvance=8 page=0 chnl=0 -char id=34 x=447 y=463 width=12 height=11 xoffset=-2 yoffset=8 xadvance=9 page=0 chnl=0 -char id=35 x=41 y=325 width=19 height=24 xoffset=-2 yoffset=8 xadvance=16 page=0 chnl=0 -char id=36 x=409 y=164 width=19 height=27 xoffset=-2 yoffset=6 xadvance=15 page=0 chnl=0 -char id=37 x=225 y=221 width=25 height=26 xoffset=-2 yoffset=7 xadvance=21 page=0 chnl=0 -char id=38 x=460 y=274 width=19 height=25 xoffset=-2 yoffset=8 xadvance=16 page=0 chnl=0 -char id=39 x=459 y=463 width=7 height=11 xoffset=-2 yoffset=8 xadvance=5 page=0 chnl=0 -char id=40 x=151 y=101 width=12 height=31 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 -char id=41 x=163 y=101 width=12 height=31 xoffset=-2 yoffset=6 xadvance=10 page=0 chnl=0 -char id=42 x=138 y=463 width=19 height=18 xoffset=-1 yoffset=8 xadvance=17 page=0 chnl=0 -char id=43 x=157 y=463 width=19 height=18 xoffset=-2 yoffset=11 xadvance=17 page=0 chnl=0 -char id=44 x=344 y=463 width=9 height=12 xoffset=-2 yoffset=25 xadvance=6 page=0 chnl=0 -char id=45 x=79 y=482 width=12 height=7 xoffset=-2 yoffset=17 xadvance=9 page=0 chnl=0 -char id=46 x=91 y=482 width=9 height=7 xoffset=-2 yoffset=25 xadvance=6 page=0 chnl=0 -char id=47 x=60 y=325 width=14 height=24 xoffset=-3 yoffset=8 xadvance=10 page=0 chnl=0 -char id=48 x=250 y=221 width=19 height=26 xoffset=-2 yoffset=7 xadvance=16 page=0 chnl=0 -char id=49 x=499 y=221 width=12 height=24 xoffset=-2 yoffset=8 xadvance=9 page=0 chnl=0 -char id=50 x=479 y=274 width=18 height=25 xoffset=-2 yoffset=7 xadvance=15 page=0 chnl=0 -char id=51 x=269 y=221 width=18 height=26 xoffset=-2 yoffset=7 xadvance=15 page=0 chnl=0 -char id=52 x=74 y=325 width=18 height=24 xoffset=-2 yoffset=8 xadvance=15 page=0 chnl=0 -char id=53 x=0 y=300 width=19 height=25 xoffset=-2 yoffset=8 xadvance=16 page=0 chnl=0 -char id=54 x=287 y=221 width=18 height=26 xoffset=-2 yoffset=7 xadvance=16 page=0 chnl=0 -char id=55 x=92 y=325 width=19 height=24 xoffset=-2 yoffset=8 xadvance=15 page=0 chnl=0 -char id=56 x=305 y=221 width=19 height=26 xoffset=-2 yoffset=7 xadvance=16 page=0 chnl=0 -char id=57 x=324 y=221 width=18 height=26 xoffset=-2 yoffset=7 xadvance=16 page=0 chnl=0 -char id=58 x=497 y=444 width=8 height=18 xoffset=-2 yoffset=14 xadvance=5 page=0 chnl=0 -char id=59 x=499 y=350 width=8 height=23 xoffset=-2 yoffset=14 xadvance=6 page=0 chnl=0 -char id=60 x=58 y=422 width=19 height=19 xoffset=-2 yoffset=10 xadvance=17 page=0 chnl=0 -char id=61 x=297 y=463 width=19 height=13 xoffset=-2 yoffset=13 xadvance=17 page=0 chnl=0 -char id=62 x=77 y=422 width=19 height=19 xoffset=-2 yoffset=10 xadvance=17 page=0 chnl=0 -char id=63 x=19 y=300 width=19 height=25 xoffset=-2 yoffset=7 xadvance=16 page=0 chnl=0 -char id=64 x=342 y=221 width=26 height=26 xoffset=-2 yoffset=9 xadvance=23 page=0 chnl=0 -char id=65 x=111 y=325 width=24 height=24 xoffset=-2 yoffset=8 xadvance=21 page=0 chnl=0 -char id=66 x=135 y=325 width=22 height=24 xoffset=-2 yoffset=8 xadvance=18 page=0 chnl=0 -char id=67 x=368 y=221 width=23 height=26 xoffset=-2 yoffset=7 xadvance=20 page=0 chnl=0 -char id=68 x=157 y=325 width=22 height=24 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=69 x=179 y=325 width=20 height=24 xoffset=-2 yoffset=8 xadvance=17 page=0 chnl=0 -char id=70 x=199 y=325 width=19 height=24 xoffset=-2 yoffset=8 xadvance=16 page=0 chnl=0 -char id=71 x=391 y=221 width=24 height=26 xoffset=-2 yoffset=7 xadvance=21 page=0 chnl=0 -char id=72 x=218 y=325 width=21 height=24 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=73 x=502 y=300 width=9 height=24 xoffset=-2 yoffset=8 xadvance=6 page=0 chnl=0 -char id=74 x=38 y=300 width=17 height=25 xoffset=-2 yoffset=8 xadvance=15 page=0 chnl=0 -char id=75 x=239 y=325 width=23 height=24 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=76 x=262 y=325 width=19 height=24 xoffset=-2 yoffset=8 xadvance=16 page=0 chnl=0 -char id=77 x=281 y=325 width=25 height=24 xoffset=-2 yoffset=8 xadvance=22 page=0 chnl=0 -char id=78 x=306 y=325 width=22 height=24 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=79 x=415 y=221 width=24 height=26 xoffset=-2 yoffset=7 xadvance=21 page=0 chnl=0 -char id=80 x=328 y=325 width=20 height=24 xoffset=-2 yoffset=8 xadvance=17 page=0 chnl=0 -char id=81 x=304 y=68 width=25 height=32 xoffset=-2 yoffset=7 xadvance=21 page=0 chnl=0 -char id=82 x=348 y=325 width=22 height=24 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=83 x=439 y=221 width=21 height=26 xoffset=-2 yoffset=7 xadvance=18 page=0 chnl=0 -char id=84 x=370 y=325 width=21 height=24 xoffset=-2 yoffset=8 xadvance=18 page=0 chnl=0 -char id=85 x=55 y=300 width=21 height=25 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=86 x=391 y=325 width=22 height=24 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=87 x=413 y=325 width=31 height=24 xoffset=-2 yoffset=8 xadvance=27 page=0 chnl=0 -char id=88 x=444 y=325 width=23 height=24 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=89 x=467 y=325 width=23 height=24 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=90 x=490 y=325 width=20 height=24 xoffset=-2 yoffset=8 xadvance=17 page=0 chnl=0 -char id=91 x=340 y=133 width=11 height=30 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 -char id=92 x=0 y=350 width=14 height=24 xoffset=-3 yoffset=8 xadvance=9 page=0 chnl=0 -char id=93 x=351 y=133 width=11 height=30 xoffset=-2 yoffset=6 xadvance=10 page=0 chnl=0 -char id=94 x=52 y=482 width=18 height=9 xoffset=-2 yoffset=8 xadvance=15 page=0 chnl=0 -char id=95 x=213 y=482 width=19 height=5 xoffset=-2 yoffset=31 xadvance=15 page=0 chnl=0 -char id=96 x=0 y=482 width=12 height=10 xoffset=-1 yoffset=5 xadvance=11 page=0 chnl=0 -char id=97 x=96 y=422 width=18 height=19 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=98 x=14 y=350 width=20 height=24 xoffset=-2 yoffset=8 xadvance=17 page=0 chnl=0 -char id=99 x=114 y=422 width=19 height=19 xoffset=-2 yoffset=13 xadvance=15 page=0 chnl=0 -char id=100 x=34 y=350 width=19 height=24 xoffset=-2 yoffset=8 xadvance=17 page=0 chnl=0 -char id=101 x=133 y=422 width=19 height=19 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=102 x=53 y=350 width=13 height=24 xoffset=-2 yoffset=8 xadvance=9 page=0 chnl=0 -char id=103 x=460 y=221 width=19 height=26 xoffset=-2 yoffset=13 xadvance=17 page=0 chnl=0 -char id=104 x=66 y=350 width=19 height=24 xoffset=-2 yoffset=8 xadvance=16 page=0 chnl=0 -char id=105 x=501 y=194 width=9 height=24 xoffset=-2 yoffset=8 xadvance=6 page=0 chnl=0 -char id=106 x=175 y=101 width=24 height=31 xoffset=-10 yoffset=8 xadvance=6 page=0 chnl=0 -char id=107 x=85 y=350 width=19 height=24 xoffset=-2 yoffset=8 xadvance=15 page=0 chnl=0 -char id=108 x=500 y=164 width=8 height=24 xoffset=-2 yoffset=8 xadvance=6 page=0 chnl=0 -char id=109 x=152 y=422 width=27 height=19 xoffset=-2 yoffset=13 xadvance=24 page=0 chnl=0 -char id=110 x=179 y=422 width=19 height=19 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=111 x=198 y=422 width=20 height=19 xoffset=-2 yoffset=13 xadvance=17 page=0 chnl=0 -char id=112 x=479 y=221 width=20 height=26 xoffset=-2 yoffset=13 xadvance=17 page=0 chnl=0 -char id=113 x=0 y=248 width=34 height=26 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=114 x=218 y=422 width=13 height=19 xoffset=-2 yoffset=13 xadvance=10 page=0 chnl=0 -char id=115 x=231 y=422 width=18 height=19 xoffset=-2 yoffset=13 xadvance=15 page=0 chnl=0 -char id=116 x=456 y=398 width=17 height=23 xoffset=-2 yoffset=9 xadvance=15 page=0 chnl=0 -char id=117 x=249 y=422 width=19 height=19 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=118 x=268 y=422 width=19 height=19 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=119 x=287 y=422 width=26 height=19 xoffset=-2 yoffset=13 xadvance=23 page=0 chnl=0 -char id=120 x=313 y=422 width=19 height=19 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=121 x=34 y=248 width=19 height=26 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=122 x=332 y=422 width=17 height=19 xoffset=-2 yoffset=13 xadvance=14 page=0 chnl=0 -char id=123 x=362 y=133 width=14 height=30 xoffset=-2 yoffset=6 xadvance=11 page=0 chnl=0 -char id=124 x=376 y=133 width=7 height=30 xoffset=1 yoffset=6 xadvance=11 page=0 chnl=0 -char id=125 x=383 y=133 width=13 height=30 xoffset=-2 yoffset=6 xadvance=11 page=0 chnl=0 -char id=126 x=12 y=482 width=20 height=10 xoffset=-2 yoffset=15 xadvance=18 page=0 chnl=0 -char id=160 x=0 y=0 width=0 height=0 xoffset=-2 yoffset=0 xadvance=8 page=0 chnl=0 -char id=161 x=104 y=350 width=9 height=24 xoffset=-1 yoffset=8 xadvance=8 page=0 chnl=0 -char id=162 x=113 y=350 width=19 height=24 xoffset=-2 yoffset=8 xadvance=15 page=0 chnl=0 -char id=163 x=76 y=300 width=18 height=25 xoffset=-2 yoffset=7 xadvance=15 page=0 chnl=0 -char id=164 x=38 y=422 width=20 height=20 xoffset=-2 yoffset=10 xadvance=17 page=0 chnl=0 -char id=165 x=132 y=350 width=20 height=24 xoffset=-2 yoffset=8 xadvance=17 page=0 chnl=0 -char id=166 x=396 y=133 width=7 height=30 xoffset=1 yoffset=6 xadvance=11 page=0 chnl=0 -char id=167 x=103 y=164 width=19 height=29 xoffset=-2 yoffset=8 xadvance=17 page=0 chnl=0 -char id=168 x=100 y=482 width=15 height=7 xoffset=-1 yoffset=7 xadvance=13 page=0 chnl=0 -char id=169 x=94 y=300 width=24 height=25 xoffset=-2 yoffset=7 xadvance=22 page=0 chnl=0 -char id=170 x=353 y=463 width=11 height=12 xoffset=-1 yoffset=11 xadvance=11 page=0 chnl=0 -char id=171 x=193 y=463 width=18 height=15 xoffset=-2 yoffset=13 xadvance=15 page=0 chnl=0 -char id=172 x=349 y=422 width=21 height=19 xoffset=-2 yoffset=13 xadvance=19 page=0 chnl=0 -char id=173 x=0 y=0 width=0 height=0 xoffset=-2 yoffset=0 xadvance=8 page=0 chnl=0 -char id=174 x=211 y=463 width=16 height=15 xoffset=-1 yoffset=7 xadvance=15 page=0 chnl=0 -char id=175 x=115 y=482 width=16 height=7 xoffset=-1 yoffset=6 xadvance=15 page=0 chnl=0 -char id=176 x=316 y=463 width=13 height=13 xoffset=-1 yoffset=8 xadvance=12 page=0 chnl=0 -char id=177 x=0 y=422 width=19 height=22 xoffset=-2 yoffset=11 xadvance=17 page=0 chnl=0 -char id=178 x=227 y=463 width=11 height=15 xoffset=-2 yoffset=7 xadvance=8 page=0 chnl=0 -char id=179 x=238 y=463 width=11 height=15 xoffset=-2 yoffset=7 xadvance=9 page=0 chnl=0 -char id=180 x=32 y=482 width=12 height=10 xoffset=-1 yoffset=5 xadvance=11 page=0 chnl=0 -char id=182 x=122 y=164 width=22 height=29 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=183 x=131 y=482 width=9 height=7 xoffset=-2 yoffset=17 xadvance=6 page=0 chnl=0 -char id=184 x=44 y=482 width=8 height=10 xoffset=-1 yoffset=30 xadvance=7 page=0 chnl=0 -char id=185 x=249 y=463 width=8 height=15 xoffset=-2 yoffset=7 xadvance=6 page=0 chnl=0 -char id=186 x=364 y=463 width=13 height=12 xoffset=-1 yoffset=11 xadvance=11 page=0 chnl=0 -char id=187 x=257 y=463 width=18 height=15 xoffset=-2 yoffset=13 xadvance=15 page=0 chnl=0 -char id=188 x=53 y=248 width=22 height=26 xoffset=-2 yoffset=7 xadvance=20 page=0 chnl=0 -char id=189 x=75 y=248 width=23 height=26 xoffset=-2 yoffset=7 xadvance=20 page=0 chnl=0 -char id=190 x=98 y=248 width=23 height=26 xoffset=-2 yoffset=7 xadvance=20 page=0 chnl=0 -char id=191 x=118 y=300 width=19 height=25 xoffset=-2 yoffset=8 xadvance=16 page=0 chnl=0 -char id=192 x=401 y=0 width=24 height=33 xoffset=-2 yoffset=-1 xadvance=21 page=0 chnl=0 -char id=193 x=425 y=0 width=24 height=33 xoffset=-2 yoffset=-1 xadvance=21 page=0 chnl=0 -char id=194 x=449 y=0 width=24 height=33 xoffset=-2 yoffset=-1 xadvance=21 page=0 chnl=0 -char id=195 x=199 y=101 width=24 height=31 xoffset=-2 yoffset=1 xadvance=21 page=0 chnl=0 -char id=196 x=223 y=101 width=24 height=31 xoffset=-2 yoffset=1 xadvance=21 page=0 chnl=0 -char id=197 x=329 y=68 width=24 height=32 xoffset=-2 yoffset=0 xadvance=21 page=0 chnl=0 -char id=198 x=152 y=350 width=32 height=24 xoffset=-2 yoffset=8 xadvance=28 page=0 chnl=0 -char id=199 x=473 y=0 width=23 height=33 xoffset=-2 yoffset=7 xadvance=20 page=0 chnl=0 -char id=200 x=0 y=35 width=20 height=33 xoffset=-2 yoffset=-1 xadvance=17 page=0 chnl=0 -char id=201 x=20 y=35 width=20 height=33 xoffset=-2 yoffset=-1 xadvance=17 page=0 chnl=0 -char id=202 x=40 y=35 width=20 height=33 xoffset=-2 yoffset=-1 xadvance=17 page=0 chnl=0 -char id=203 x=247 y=101 width=20 height=31 xoffset=-2 yoffset=1 xadvance=17 page=0 chnl=0 -char id=204 x=496 y=0 width=13 height=33 xoffset=-5 yoffset=-1 xadvance=6 page=0 chnl=0 -char id=205 x=60 y=35 width=14 height=33 xoffset=-3 yoffset=-1 xadvance=6 page=0 chnl=0 -char id=206 x=74 y=35 width=20 height=33 xoffset=-5 yoffset=-1 xadvance=6 page=0 chnl=0 -char id=207 x=267 y=101 width=19 height=31 xoffset=-5 yoffset=1 xadvance=6 page=0 chnl=0 -char id=208 x=184 y=350 width=22 height=24 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=209 x=286 y=101 width=22 height=31 xoffset=-2 yoffset=1 xadvance=19 page=0 chnl=0 -char id=210 x=94 y=35 width=24 height=33 xoffset=-2 yoffset=0 xadvance=21 page=0 chnl=0 -char id=211 x=118 y=35 width=24 height=33 xoffset=-2 yoffset=0 xadvance=21 page=0 chnl=0 -char id=212 x=19 y=0 width=24 height=34 xoffset=-2 yoffset=-1 xadvance=21 page=0 chnl=0 -char id=213 x=353 y=68 width=24 height=32 xoffset=-2 yoffset=1 xadvance=21 page=0 chnl=0 -char id=214 x=377 y=68 width=24 height=32 xoffset=-2 yoffset=1 xadvance=21 page=0 chnl=0 -char id=215 x=176 y=463 width=17 height=17 xoffset=-1 yoffset=11 xadvance=17 page=0 chnl=0 -char id=216 x=215 y=164 width=24 height=28 xoffset=-2 yoffset=6 xadvance=21 page=0 chnl=0 -char id=217 x=43 y=0 width=21 height=34 xoffset=-2 yoffset=-1 xadvance=19 page=0 chnl=0 -char id=218 x=64 y=0 width=21 height=34 xoffset=-2 yoffset=-1 xadvance=19 page=0 chnl=0 -char id=219 x=85 y=0 width=21 height=34 xoffset=-2 yoffset=-1 xadvance=19 page=0 chnl=0 -char id=220 x=401 y=68 width=21 height=32 xoffset=-2 yoffset=1 xadvance=19 page=0 chnl=0 -char id=221 x=142 y=35 width=23 height=33 xoffset=-2 yoffset=-1 xadvance=19 page=0 chnl=0 -char id=222 x=206 y=350 width=20 height=24 xoffset=-2 yoffset=8 xadvance=17 page=0 chnl=0 -char id=223 x=137 y=300 width=19 height=25 xoffset=-2 yoffset=7 xadvance=16 page=0 chnl=0 -char id=224 x=428 y=164 width=18 height=27 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0 -char id=225 x=446 y=164 width=18 height=27 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0 -char id=226 x=464 y=164 width=18 height=27 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0 -char id=227 x=121 y=248 width=18 height=26 xoffset=-2 yoffset=6 xadvance=16 page=0 chnl=0 -char id=228 x=139 y=248 width=18 height=26 xoffset=-2 yoffset=6 xadvance=16 page=0 chnl=0 -char id=229 x=482 y=164 width=18 height=27 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0 -char id=230 x=370 y=422 width=29 height=19 xoffset=-2 yoffset=13 xadvance=26 page=0 chnl=0 -char id=231 x=0 y=194 width=19 height=27 xoffset=-2 yoffset=13 xadvance=15 page=0 chnl=0 -char id=232 x=19 y=194 width=19 height=27 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0 -char id=233 x=38 y=194 width=19 height=27 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0 -char id=234 x=57 y=194 width=19 height=27 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0 -char id=235 x=157 y=248 width=19 height=26 xoffset=-2 yoffset=6 xadvance=16 page=0 chnl=0 -char id=236 x=76 y=194 width=12 height=27 xoffset=-3 yoffset=5 xadvance=9 page=0 chnl=0 -char id=237 x=88 y=194 width=12 height=27 xoffset=-1 yoffset=5 xadvance=9 page=0 chnl=0 -char id=238 x=100 y=194 width=18 height=27 xoffset=-4 yoffset=5 xadvance=9 page=0 chnl=0 -char id=239 x=156 y=300 width=15 height=25 xoffset=-3 yoffset=7 xadvance=9 page=0 chnl=0 -char id=240 x=171 y=300 width=19 height=25 xoffset=-2 yoffset=7 xadvance=17 page=0 chnl=0 -char id=241 x=190 y=300 width=19 height=25 xoffset=-2 yoffset=7 xadvance=16 page=0 chnl=0 -char id=242 x=118 y=194 width=20 height=27 xoffset=-2 yoffset=5 xadvance=17 page=0 chnl=0 -char id=243 x=138 y=194 width=20 height=27 xoffset=-2 yoffset=5 xadvance=17 page=0 chnl=0 -char id=244 x=158 y=194 width=20 height=27 xoffset=-2 yoffset=5 xadvance=17 page=0 chnl=0 -char id=245 x=176 y=248 width=20 height=26 xoffset=-2 yoffset=6 xadvance=17 page=0 chnl=0 -char id=246 x=196 y=248 width=20 height=26 xoffset=-2 yoffset=6 xadvance=17 page=0 chnl=0 -char id=247 x=19 y=422 width=19 height=21 xoffset=-2 yoffset=9 xadvance=17 page=0 chnl=0 -char id=248 x=473 y=398 width=20 height=23 xoffset=-2 yoffset=11 xadvance=17 page=0 chnl=0 -char id=249 x=178 y=194 width=19 height=27 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0 -char id=250 x=197 y=194 width=19 height=27 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0 -char id=251 x=216 y=194 width=19 height=27 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0 -char id=252 x=216 y=248 width=19 height=26 xoffset=-2 yoffset=6 xadvance=16 page=0 chnl=0 -char id=253 x=106 y=0 width=19 height=34 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0 -char id=254 x=308 y=101 width=20 height=31 xoffset=-2 yoffset=8 xadvance=17 page=0 chnl=0 -char id=255 x=165 y=35 width=19 height=33 xoffset=-2 yoffset=6 xadvance=16 page=0 chnl=0 -char id=256 x=328 y=101 width=24 height=31 xoffset=-2 yoffset=1 xadvance=21 page=0 chnl=0 -char id=257 x=209 y=300 width=18 height=25 xoffset=-2 yoffset=7 xadvance=16 page=0 chnl=0 -char id=258 x=184 y=35 width=24 height=33 xoffset=-2 yoffset=-1 xadvance=21 page=0 chnl=0 -char id=259 x=235 y=194 width=18 height=27 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0 -char id=260 x=352 y=101 width=24 height=31 xoffset=-2 yoffset=8 xadvance=21 page=0 chnl=0 -char id=261 x=235 y=248 width=18 height=26 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=262 x=208 y=35 width=23 height=33 xoffset=-2 yoffset=0 xadvance=20 page=0 chnl=0 -char id=263 x=253 y=194 width=19 height=27 xoffset=-2 yoffset=5 xadvance=15 page=0 chnl=0 -char id=266 x=422 y=68 width=23 height=32 xoffset=-2 yoffset=1 xadvance=20 page=0 chnl=0 -char id=267 x=253 y=248 width=19 height=26 xoffset=-2 yoffset=6 xadvance=15 page=0 chnl=0 -char id=268 x=125 y=0 width=23 height=34 xoffset=-2 yoffset=-1 xadvance=20 page=0 chnl=0 -char id=269 x=272 y=194 width=19 height=27 xoffset=-2 yoffset=5 xadvance=15 page=0 chnl=0 -char id=270 x=231 y=35 width=22 height=33 xoffset=-2 yoffset=-1 xadvance=19 page=0 chnl=0 -char id=271 x=227 y=300 width=25 height=25 xoffset=-2 yoffset=7 xadvance=21 page=0 chnl=0 -char id=273 x=226 y=350 width=20 height=24 xoffset=-2 yoffset=8 xadvance=17 page=0 chnl=0 -char id=274 x=376 y=101 width=20 height=31 xoffset=-2 yoffset=1 xadvance=17 page=0 chnl=0 -char id=275 x=252 y=300 width=19 height=25 xoffset=-2 yoffset=7 xadvance=16 page=0 chnl=0 -char id=276 x=253 y=35 width=20 height=33 xoffset=-2 yoffset=-1 xadvance=17 page=0 chnl=0 -char id=277 x=291 y=194 width=19 height=27 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0 -char id=278 x=396 y=101 width=20 height=31 xoffset=-2 yoffset=1 xadvance=17 page=0 chnl=0 -char id=279 x=272 y=248 width=19 height=26 xoffset=-2 yoffset=6 xadvance=16 page=0 chnl=0 -char id=280 x=416 y=101 width=20 height=31 xoffset=-2 yoffset=8 xadvance=17 page=0 chnl=0 -char id=281 x=291 y=248 width=19 height=26 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=282 x=273 y=35 width=20 height=33 xoffset=-2 yoffset=-1 xadvance=17 page=0 chnl=0 -char id=283 x=310 y=194 width=19 height=27 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0 -char id=286 x=148 y=0 width=24 height=34 xoffset=-2 yoffset=-1 xadvance=21 page=0 chnl=0 -char id=287 x=172 y=0 width=19 height=34 xoffset=-2 yoffset=5 xadvance=17 page=0 chnl=0 -char id=288 x=445 y=68 width=24 height=32 xoffset=-2 yoffset=1 xadvance=21 page=0 chnl=0 -char id=289 x=293 y=35 width=19 height=33 xoffset=-2 yoffset=6 xadvance=17 page=0 chnl=0 -char id=290 x=312 y=35 width=24 height=33 xoffset=-2 yoffset=7 xadvance=21 page=0 chnl=0 -char id=291 x=191 y=0 width=19 height=34 xoffset=-2 yoffset=5 xadvance=17 page=0 chnl=0 -char id=294 x=246 y=350 width=21 height=24 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=295 x=267 y=350 width=19 height=24 xoffset=-2 yoffset=8 xadvance=16 page=0 chnl=0 -char id=296 x=436 y=101 width=19 height=31 xoffset=-5 yoffset=1 xadvance=6 page=0 chnl=0 -char id=297 x=271 y=300 width=16 height=25 xoffset=-4 yoffset=7 xadvance=9 page=0 chnl=0 -char id=298 x=455 y=101 width=22 height=31 xoffset=-6 yoffset=1 xadvance=6 page=0 chnl=0 -char id=299 x=310 y=248 width=18 height=26 xoffset=-4 yoffset=6 xadvance=9 page=0 chnl=0 -char id=300 x=336 y=35 width=18 height=33 xoffset=-5 yoffset=-1 xadvance=6 page=0 chnl=0 -char id=301 x=329 y=194 width=14 height=27 xoffset=-3 yoffset=5 xadvance=9 page=0 chnl=0 -char id=302 x=477 y=101 width=12 height=31 xoffset=-4 yoffset=8 xadvance=6 page=0 chnl=0 -char id=303 x=489 y=101 width=12 height=31 xoffset=-4 yoffset=8 xadvance=6 page=0 chnl=0 -char id=304 x=501 y=101 width=9 height=31 xoffset=-2 yoffset=1 xadvance=6 page=0 chnl=0 -char id=305 x=399 y=422 width=9 height=19 xoffset=-2 yoffset=13 xadvance=6 page=0 chnl=0 -char id=306 x=287 y=300 width=23 height=25 xoffset=-2 yoffset=8 xadvance=21 page=0 chnl=0 -char id=307 x=0 y=133 width=18 height=31 xoffset=-4 yoffset=8 xadvance=12 page=0 chnl=0 -char id=310 x=469 y=68 width=23 height=32 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=311 x=492 y=68 width=19 height=32 xoffset=-2 yoffset=8 xadvance=15 page=0 chnl=0 -char id=313 x=354 y=35 width=19 height=33 xoffset=-2 yoffset=-1 xadvance=16 page=0 chnl=0 -char id=314 x=0 y=101 width=14 height=32 xoffset=-3 yoffset=0 xadvance=6 page=0 chnl=0 -char id=315 x=14 y=101 width=19 height=32 xoffset=-2 yoffset=8 xadvance=16 page=0 chnl=0 -char id=316 x=33 y=101 width=9 height=32 xoffset=-2 yoffset=8 xadvance=6 page=0 chnl=0 -char id=317 x=310 y=300 width=19 height=25 xoffset=-2 yoffset=7 xadvance=16 page=0 chnl=0 -char id=318 x=497 y=274 width=14 height=25 xoffset=-2 yoffset=7 xadvance=10 page=0 chnl=0 -char id=321 x=286 y=350 width=19 height=24 xoffset=-2 yoffset=8 xadvance=16 page=0 chnl=0 -char id=322 x=305 y=350 width=12 height=24 xoffset=-2 yoffset=8 xadvance=8 page=0 chnl=0 -char id=323 x=373 y=35 width=22 height=33 xoffset=-2 yoffset=-1 xadvance=19 page=0 chnl=0 -char id=324 x=343 y=194 width=19 height=27 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0 -char id=325 x=42 y=101 width=22 height=32 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=326 x=362 y=194 width=19 height=27 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=327 x=395 y=35 width=22 height=33 xoffset=-2 yoffset=-1 xadvance=19 page=0 chnl=0 -char id=328 x=381 y=194 width=19 height=27 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0 -char id=330 x=18 y=133 width=22 height=31 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=331 x=328 y=248 width=19 height=26 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=332 x=417 y=35 width=24 height=33 xoffset=-2 yoffset=0 xadvance=21 page=0 chnl=0 -char id=333 x=329 y=300 width=20 height=25 xoffset=-2 yoffset=7 xadvance=17 page=0 chnl=0 -char id=334 x=210 y=0 width=24 height=34 xoffset=-2 yoffset=-1 xadvance=21 page=0 chnl=0 -char id=335 x=400 y=194 width=20 height=27 xoffset=-2 yoffset=5 xadvance=17 page=0 chnl=0 -char id=336 x=234 y=0 width=24 height=34 xoffset=-2 yoffset=-1 xadvance=21 page=0 chnl=0 -char id=337 x=420 y=194 width=20 height=27 xoffset=-2 yoffset=5 xadvance=17 page=0 chnl=0 -char id=338 x=347 y=248 width=37 height=26 xoffset=-2 yoffset=7 xadvance=31 page=0 chnl=0 -char id=339 x=408 y=422 width=31 height=19 xoffset=-2 yoffset=13 xadvance=28 page=0 chnl=0 -char id=340 x=441 y=35 width=22 height=33 xoffset=-2 yoffset=-1 xadvance=19 page=0 chnl=0 -char id=341 x=440 y=194 width=14 height=27 xoffset=-2 yoffset=5 xadvance=10 page=0 chnl=0 -char id=342 x=64 y=101 width=22 height=32 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=343 x=454 y=194 width=13 height=27 xoffset=-2 yoffset=13 xadvance=10 page=0 chnl=0 -char id=344 x=463 y=35 width=22 height=33 xoffset=-2 yoffset=-1 xadvance=19 page=0 chnl=0 -char id=345 x=467 y=194 width=16 height=27 xoffset=-3 yoffset=5 xadvance=10 page=0 chnl=0 -char id=346 x=485 y=35 width=21 height=33 xoffset=-2 yoffset=0 xadvance=18 page=0 chnl=0 -char id=347 x=483 y=194 width=18 height=27 xoffset=-2 yoffset=5 xadvance=15 page=0 chnl=0 -char id=350 x=0 y=68 width=21 height=33 xoffset=-2 yoffset=7 xadvance=18 page=0 chnl=0 -char id=351 x=0 y=221 width=18 height=27 xoffset=-2 yoffset=13 xadvance=15 page=0 chnl=0 -char id=352 x=258 y=0 width=21 height=34 xoffset=-2 yoffset=-1 xadvance=18 page=0 chnl=0 -char id=353 x=18 y=221 width=18 height=27 xoffset=-2 yoffset=5 xadvance=15 page=0 chnl=0 -char id=354 x=86 y=101 width=21 height=32 xoffset=-2 yoffset=8 xadvance=18 page=0 chnl=0 -char id=355 x=40 y=133 width=17 height=31 xoffset=-2 yoffset=9 xadvance=15 page=0 chnl=0 -char id=356 x=21 y=68 width=21 height=33 xoffset=-2 yoffset=-1 xadvance=18 page=0 chnl=0 -char id=357 x=349 y=300 width=22 height=25 xoffset=-2 yoffset=7 xadvance=19 page=0 chnl=0 -char id=358 x=317 y=350 width=21 height=24 xoffset=-2 yoffset=8 xadvance=18 page=0 chnl=0 -char id=359 x=493 y=398 width=17 height=23 xoffset=-2 yoffset=9 xadvance=15 page=0 chnl=0 -char id=360 x=42 y=68 width=21 height=33 xoffset=-2 yoffset=0 xadvance=19 page=0 chnl=0 -char id=361 x=384 y=248 width=19 height=26 xoffset=-2 yoffset=6 xadvance=16 page=0 chnl=0 -char id=362 x=63 y=68 width=21 height=33 xoffset=-2 yoffset=0 xadvance=19 page=0 chnl=0 -char id=363 x=371 y=300 width=19 height=25 xoffset=-2 yoffset=7 xadvance=16 page=0 chnl=0 -char id=364 x=279 y=0 width=21 height=34 xoffset=-2 yoffset=-1 xadvance=19 page=0 chnl=0 -char id=365 x=36 y=221 width=19 height=27 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0 -char id=366 x=300 y=0 width=21 height=34 xoffset=-2 yoffset=-1 xadvance=19 page=0 chnl=0 -char id=367 x=55 y=221 width=19 height=27 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0 -char id=368 x=321 y=0 width=21 height=34 xoffset=-2 yoffset=-1 xadvance=19 page=0 chnl=0 -char id=369 x=239 y=164 width=19 height=28 xoffset=-2 yoffset=4 xadvance=16 page=0 chnl=0 -char id=370 x=57 y=133 width=21 height=31 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=371 x=403 y=248 width=19 height=26 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=372 x=84 y=68 width=31 height=33 xoffset=-2 yoffset=-1 xadvance=27 page=0 chnl=0 -char id=373 x=74 y=221 width=26 height=27 xoffset=-2 yoffset=5 xadvance=23 page=0 chnl=0 -char id=374 x=115 y=68 width=23 height=33 xoffset=-2 yoffset=-1 xadvance=19 page=0 chnl=0 -char id=375 x=342 y=0 width=19 height=34 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0 -char id=376 x=78 y=133 width=23 height=31 xoffset=-2 yoffset=1 xadvance=19 page=0 chnl=0 -char id=377 x=138 y=68 width=20 height=33 xoffset=-2 yoffset=-1 xadvance=17 page=0 chnl=0 -char id=378 x=100 y=221 width=17 height=27 xoffset=-2 yoffset=5 xadvance=14 page=0 chnl=0 -char id=379 x=101 y=133 width=20 height=31 xoffset=-2 yoffset=1 xadvance=17 page=0 chnl=0 -char id=380 x=390 y=300 width=17 height=25 xoffset=-2 yoffset=7 xadvance=14 page=0 chnl=0 -char id=381 x=158 y=68 width=20 height=33 xoffset=-2 yoffset=-1 xadvance=17 page=0 chnl=0 -char id=382 x=117 y=221 width=17 height=27 xoffset=-2 yoffset=5 xadvance=14 page=0 chnl=0 -char id=900 x=466 y=463 width=8 height=11 xoffset=-2 yoffset=8 xadvance=5 page=0 chnl=0 -char id=901 x=474 y=463 width=32 height=11 xoffset=-17 yoffset=4 xadvance=0 page=0 chnl=0 -char id=902 x=338 y=350 width=25 height=24 xoffset=-2 yoffset=8 xadvance=22 page=0 chnl=0 -char id=903 x=70 y=482 width=9 height=8 xoffset=-2 yoffset=13 xadvance=6 page=0 chnl=0 -char id=904 x=363 y=350 width=25 height=24 xoffset=-2 yoffset=8 xadvance=22 page=0 chnl=0 -char id=905 x=388 y=350 width=26 height=24 xoffset=-2 yoffset=8 xadvance=24 page=0 chnl=0 -char id=906 x=414 y=350 width=14 height=24 xoffset=-2 yoffset=8 xadvance=11 page=0 chnl=0 -char id=908 x=422 y=248 width=27 height=26 xoffset=-2 yoffset=7 xadvance=25 page=0 chnl=0 -char id=910 x=428 y=350 width=28 height=24 xoffset=-2 yoffset=8 xadvance=24 page=0 chnl=0 -char id=911 x=407 y=300 width=28 height=25 xoffset=-2 yoffset=7 xadvance=25 page=0 chnl=0 -char id=912 x=258 y=164 width=17 height=28 xoffset=-3 yoffset=4 xadvance=13 page=0 chnl=0 -char id=915 x=456 y=350 width=19 height=24 xoffset=-2 yoffset=8 xadvance=16 page=0 chnl=0 -char id=916 x=475 y=350 width=24 height=24 xoffset=-2 yoffset=8 xadvance=21 page=0 chnl=0 -char id=920 x=449 y=248 width=24 height=26 xoffset=-2 yoffset=7 xadvance=21 page=0 chnl=0 -char id=923 x=0 y=374 width=22 height=24 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=926 x=22 y=374 width=20 height=24 xoffset=-2 yoffset=8 xadvance=17 page=0 chnl=0 -char id=928 x=42 y=374 width=22 height=24 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=931 x=64 y=374 width=20 height=24 xoffset=-2 yoffset=8 xadvance=17 page=0 chnl=0 -char id=934 x=84 y=374 width=26 height=24 xoffset=-2 yoffset=8 xadvance=23 page=0 chnl=0 -char id=936 x=110 y=374 width=24 height=24 xoffset=-2 yoffset=8 xadvance=21 page=0 chnl=0 -char id=937 x=435 y=300 width=24 height=25 xoffset=-2 yoffset=7 xadvance=21 page=0 chnl=0 -char id=940 x=275 y=164 width=22 height=28 xoffset=-2 yoffset=4 xadvance=19 page=0 chnl=0 -char id=941 x=297 y=164 width=18 height=28 xoffset=-2 yoffset=4 xadvance=15 page=0 chnl=0 -char id=942 x=0 y=0 width=19 height=35 xoffset=-2 yoffset=4 xadvance=16 page=0 chnl=0 -char id=943 x=315 y=164 width=11 height=28 xoffset=-2 yoffset=4 xadvance=8 page=0 chnl=0 -char id=944 x=326 y=164 width=19 height=28 xoffset=-2 yoffset=4 xadvance=16 page=0 chnl=0 -char id=945 x=439 y=422 width=22 height=19 xoffset=-2 yoffset=13 xadvance=19 page=0 chnl=0 -char id=946 x=121 y=133 width=19 height=31 xoffset=-2 yoffset=8 xadvance=16 page=0 chnl=0 -char id=947 x=473 y=248 width=19 height=26 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=948 x=134 y=374 width=20 height=24 xoffset=-2 yoffset=8 xadvance=17 page=0 chnl=0 -char id=949 x=461 y=422 width=18 height=19 xoffset=-2 yoffset=13 xadvance=15 page=0 chnl=0 -char id=950 x=140 y=133 width=18 height=31 xoffset=-2 yoffset=8 xadvance=15 page=0 chnl=0 -char id=951 x=492 y=248 width=19 height=26 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=952 x=459 y=300 width=20 height=25 xoffset=-2 yoffset=7 xadvance=18 page=0 chnl=0 -char id=953 x=479 y=422 width=11 height=19 xoffset=-2 yoffset=13 xadvance=8 page=0 chnl=0 -char id=954 x=490 y=422 width=19 height=19 xoffset=-2 yoffset=13 xadvance=15 page=0 chnl=0 -char id=955 x=154 y=374 width=20 height=24 xoffset=-2 yoffset=8 xadvance=17 page=0 chnl=0 -char id=956 x=0 y=274 width=19 height=26 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=958 x=158 y=133 width=18 height=31 xoffset=-2 yoffset=8 xadvance=15 page=0 chnl=0 -char id=960 x=0 y=444 width=22 height=19 xoffset=-2 yoffset=13 xadvance=18 page=0 chnl=0 -char id=961 x=19 y=274 width=20 height=26 xoffset=-2 yoffset=13 xadvance=17 page=0 chnl=0 -char id=962 x=39 y=274 width=19 height=26 xoffset=-2 yoffset=13 xadvance=15 page=0 chnl=0 -char id=963 x=22 y=444 width=22 height=19 xoffset=-2 yoffset=13 xadvance=19 page=0 chnl=0 -char id=964 x=44 y=444 width=19 height=19 xoffset=-2 yoffset=13 xadvance=15 page=0 chnl=0 -char id=965 x=63 y=444 width=19 height=19 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=966 x=176 y=133 width=26 height=31 xoffset=-2 yoffset=8 xadvance=23 page=0 chnl=0 -char id=967 x=58 y=274 width=19 height=26 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=968 x=202 y=133 width=24 height=31 xoffset=-2 yoffset=8 xadvance=21 page=0 chnl=0 -char id=969 x=82 y=444 width=25 height=19 xoffset=-2 yoffset=13 xadvance=23 page=0 chnl=0 -char id=970 x=479 y=300 width=14 height=25 xoffset=-3 yoffset=7 xadvance=10 page=0 chnl=0 -char id=971 x=77 y=274 width=19 height=26 xoffset=-2 yoffset=6 xadvance=16 page=0 chnl=0 -char id=972 x=345 y=164 width=20 height=28 xoffset=-2 yoffset=4 xadvance=17 page=0 chnl=0 -char id=973 x=365 y=164 width=19 height=28 xoffset=-2 yoffset=4 xadvance=16 page=0 chnl=0 -char id=974 x=384 y=164 width=25 height=28 xoffset=-2 yoffset=4 xadvance=23 page=0 chnl=0 -char id=1026 x=226 y=133 width=27 height=31 xoffset=-2 yoffset=8 xadvance=24 page=0 chnl=0 -char id=1027 x=178 y=68 width=19 height=33 xoffset=-2 yoffset=-1 xadvance=16 page=0 chnl=0 -char id=1028 x=96 y=274 width=23 height=26 xoffset=-2 yoffset=7 xadvance=20 page=0 chnl=0 -char id=1033 x=174 y=374 width=35 height=24 xoffset=-2 yoffset=8 xadvance=31 page=0 chnl=0 -char id=1034 x=209 y=374 width=31 height=24 xoffset=-2 yoffset=8 xadvance=27 page=0 chnl=0 -char id=1035 x=240 y=374 width=27 height=24 xoffset=-2 yoffset=8 xadvance=24 page=0 chnl=0 -char id=1036 x=197 y=68 width=23 height=33 xoffset=-2 yoffset=-1 xadvance=19 page=0 chnl=0 -char id=1037 x=220 y=68 width=22 height=33 xoffset=-2 yoffset=-1 xadvance=19 page=0 chnl=0 -char id=1038 x=361 y=0 width=21 height=34 xoffset=-2 yoffset=-1 xadvance=18 page=0 chnl=0 -char id=1039 x=403 y=133 width=22 height=30 xoffset=-2 yoffset=8 xadvance=18 page=0 chnl=0 -char id=1041 x=267 y=374 width=20 height=24 xoffset=-2 yoffset=8 xadvance=17 page=0 chnl=0 -char id=1044 x=425 y=133 width=26 height=30 xoffset=-2 yoffset=8 xadvance=23 page=0 chnl=0 -char id=1046 x=287 y=374 width=32 height=24 xoffset=-2 yoffset=8 xadvance=28 page=0 chnl=0 -char id=1047 x=119 y=274 width=21 height=26 xoffset=-2 yoffset=7 xadvance=18 page=0 chnl=0 -char id=1048 x=319 y=374 width=22 height=24 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=1049 x=242 y=68 width=22 height=33 xoffset=-2 yoffset=-1 xadvance=19 page=0 chnl=0 -char id=1051 x=341 y=374 width=23 height=24 xoffset=-2 yoffset=8 xadvance=20 page=0 chnl=0 -char id=1059 x=0 y=325 width=21 height=25 xoffset=-2 yoffset=8 xadvance=18 page=0 chnl=0 -char id=1062 x=451 y=133 width=24 height=30 xoffset=-2 yoffset=8 xadvance=21 page=0 chnl=0 -char id=1063 x=364 y=374 width=21 height=24 xoffset=-2 yoffset=8 xadvance=18 page=0 chnl=0 -char id=1064 x=385 y=374 width=29 height=24 xoffset=-2 yoffset=8 xadvance=26 page=0 chnl=0 -char id=1065 x=475 y=133 width=31 height=30 xoffset=-2 yoffset=8 xadvance=28 page=0 chnl=0 -char id=1066 x=414 y=374 width=26 height=24 xoffset=-2 yoffset=8 xadvance=23 page=0 chnl=0 -char id=1067 x=440 y=374 width=26 height=24 xoffset=-2 yoffset=8 xadvance=23 page=0 chnl=0 -char id=1068 x=466 y=374 width=20 height=24 xoffset=-2 yoffset=8 xadvance=17 page=0 chnl=0 -char id=1069 x=140 y=274 width=23 height=26 xoffset=-2 yoffset=7 xadvance=20 page=0 chnl=0 -char id=1070 x=163 y=274 width=30 height=26 xoffset=-2 yoffset=7 xadvance=27 page=0 chnl=0 -char id=1071 x=486 y=374 width=21 height=24 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=1073 x=134 y=221 width=20 height=27 xoffset=-2 yoffset=5 xadvance=17 page=0 chnl=0 -char id=1074 x=107 y=444 width=19 height=19 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=1075 x=126 y=444 width=14 height=19 xoffset=-2 yoffset=13 xadvance=11 page=0 chnl=0 -char id=1076 x=0 y=398 width=22 height=24 xoffset=-2 yoffset=13 xadvance=19 page=0 chnl=0 -char id=1078 x=140 y=444 width=25 height=19 xoffset=-2 yoffset=13 xadvance=22 page=0 chnl=0 -char id=1079 x=165 y=444 width=18 height=19 xoffset=-2 yoffset=13 xadvance=15 page=0 chnl=0 -char id=1080 x=183 y=444 width=19 height=19 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=1081 x=154 y=221 width=19 height=27 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0 -char id=1083 x=202 y=444 width=20 height=19 xoffset=-2 yoffset=13 xadvance=17 page=0 chnl=0 -char id=1084 x=222 y=444 width=23 height=19 xoffset=-2 yoffset=13 xadvance=20 page=0 chnl=0 -char id=1085 x=245 y=444 width=19 height=19 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=1087 x=264 y=444 width=19 height=19 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=1090 x=283 y=444 width=19 height=19 xoffset=-2 yoffset=13 xadvance=15 page=0 chnl=0 -char id=1094 x=22 y=398 width=21 height=24 xoffset=-2 yoffset=13 xadvance=18 page=0 chnl=0 -char id=1095 x=302 y=444 width=19 height=19 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=1096 x=321 y=444 width=26 height=19 xoffset=-2 yoffset=13 xadvance=24 page=0 chnl=0 -char id=1097 x=43 y=398 width=29 height=24 xoffset=-2 yoffset=13 xadvance=26 page=0 chnl=0 -char id=1098 x=347 y=444 width=25 height=19 xoffset=-2 yoffset=13 xadvance=22 page=0 chnl=0 -char id=1099 x=372 y=444 width=25 height=19 xoffset=-2 yoffset=13 xadvance=23 page=0 chnl=0 -char id=1100 x=397 y=444 width=19 height=19 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=1101 x=416 y=444 width=18 height=19 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=1102 x=434 y=444 width=26 height=19 xoffset=-2 yoffset=13 xadvance=23 page=0 chnl=0 -char id=1103 x=460 y=444 width=18 height=19 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=1106 x=253 y=133 width=19 height=31 xoffset=-2 yoffset=8 xadvance=16 page=0 chnl=0 -char id=1107 x=173 y=221 width=14 height=27 xoffset=-2 yoffset=5 xadvance=11 page=0 chnl=0 -char id=1108 x=478 y=444 width=19 height=19 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=1113 x=0 y=463 width=31 height=19 xoffset=-2 yoffset=13 xadvance=27 page=0 chnl=0 -char id=1114 x=31 y=463 width=28 height=19 xoffset=-2 yoffset=13 xadvance=25 page=0 chnl=0 -char id=1116 x=187 y=221 width=19 height=27 xoffset=-2 yoffset=5 xadvance=15 page=0 chnl=0 -char id=1117 x=206 y=221 width=19 height=27 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0 -char id=1118 x=382 y=0 width=19 height=34 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0 -char id=1119 x=72 y=398 width=19 height=24 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=1168 x=0 y=164 width=19 height=30 xoffset=-2 yoffset=2 xadvance=16 page=0 chnl=0 -char id=1169 x=91 y=398 width=14 height=24 xoffset=-2 yoffset=8 xadvance=11 page=0 chnl=0 -char id=1170 x=105 y=398 width=21 height=24 xoffset=-2 yoffset=8 xadvance=18 page=0 chnl=0 -char id=1171 x=59 y=463 width=16 height=19 xoffset=-2 yoffset=13 xadvance=13 page=0 chnl=0 -char id=1174 x=19 y=164 width=34 height=30 xoffset=-2 yoffset=8 xadvance=30 page=0 chnl=0 -char id=1175 x=126 y=398 width=27 height=24 xoffset=-2 yoffset=13 xadvance=24 page=0 chnl=0 -char id=1176 x=107 y=101 width=21 height=32 xoffset=-2 yoffset=7 xadvance=18 page=0 chnl=0 -char id=1177 x=193 y=274 width=18 height=26 xoffset=-2 yoffset=13 xadvance=15 page=0 chnl=0 -char id=1178 x=53 y=164 width=25 height=30 xoffset=-2 yoffset=8 xadvance=22 page=0 chnl=0 -char id=1179 x=153 y=398 width=21 height=24 xoffset=-2 yoffset=13 xadvance=17 page=0 chnl=0 -char id=1184 x=174 y=398 width=29 height=24 xoffset=-2 yoffset=8 xadvance=25 page=0 chnl=0 -char id=1185 x=75 y=463 width=24 height=19 xoffset=-2 yoffset=13 xadvance=21 page=0 chnl=0 -char id=1186 x=144 y=164 width=24 height=29 xoffset=-2 yoffset=8 xadvance=21 page=0 chnl=0 -char id=1187 x=203 y=398 width=21 height=24 xoffset=-2 yoffset=13 xadvance=18 page=0 chnl=0 -char id=1194 x=128 y=101 width=23 height=32 xoffset=-2 yoffset=7 xadvance=20 page=0 chnl=0 -char id=1195 x=211 y=274 width=19 height=26 xoffset=-2 yoffset=13 xadvance=15 page=0 chnl=0 -char id=1202 x=78 y=164 width=25 height=30 xoffset=-2 yoffset=8 xadvance=21 page=0 chnl=0 -char id=1203 x=224 y=398 width=21 height=24 xoffset=-2 yoffset=13 xadvance=18 page=0 chnl=0 -char id=1206 x=168 y=164 width=23 height=29 xoffset=-2 yoffset=8 xadvance=20 page=0 chnl=0 -char id=1207 x=245 y=398 width=21 height=24 xoffset=-2 yoffset=13 xadvance=18 page=0 chnl=0 -char id=1210 x=266 y=398 width=21 height=24 xoffset=-2 yoffset=8 xadvance=18 page=0 chnl=0 -char id=1219 x=272 y=133 width=23 height=31 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=1220 x=230 y=274 width=19 height=26 xoffset=-2 yoffset=13 xadvance=15 page=0 chnl=0 -char id=1223 x=295 y=133 width=22 height=31 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=1224 x=249 y=274 width=19 height=26 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=1240 x=268 y=274 width=24 height=26 xoffset=-2 yoffset=7 xadvance=21 page=0 chnl=0 -char id=1241 x=99 y=463 width=19 height=19 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=1256 x=292 y=274 width=24 height=26 xoffset=-2 yoffset=7 xadvance=21 page=0 chnl=0 -char id=1257 x=118 y=463 width=20 height=19 xoffset=-2 yoffset=13 xadvance=17 page=0 chnl=0 -char id=1262 x=264 y=68 width=21 height=33 xoffset=-2 yoffset=0 xadvance=18 page=0 chnl=0 -char id=1263 x=285 y=68 width=19 height=33 xoffset=-2 yoffset=6 xadvance=16 page=0 chnl=0 -char id=1298 x=317 y=133 width=23 height=31 xoffset=-2 yoffset=8 xadvance=20 page=0 chnl=0 -char id=1299 x=316 y=274 width=20 height=26 xoffset=-2 yoffset=13 xadvance=17 page=0 chnl=0 -char id=8211 x=140 y=482 width=17 height=7 xoffset=-2 yoffset=17 xadvance=14 page=0 chnl=0 -char id=8212 x=157 y=482 width=23 height=7 xoffset=-2 yoffset=17 xadvance=20 page=0 chnl=0 -char id=8216 x=377 y=463 width=9 height=12 xoffset=-2 yoffset=6 xadvance=6 page=0 chnl=0 -char id=8217 x=386 y=463 width=9 height=12 xoffset=-2 yoffset=7 xadvance=6 page=0 chnl=0 -char id=8218 x=395 y=463 width=8 height=12 xoffset=-1 yoffset=25 xadvance=7 page=0 chnl=0 -char id=8220 x=403 y=463 width=15 height=12 xoffset=-2 yoffset=6 xadvance=12 page=0 chnl=0 -char id=8221 x=329 y=463 width=15 height=13 xoffset=-2 yoffset=7 xadvance=12 page=0 chnl=0 -char id=8222 x=418 y=463 width=15 height=12 xoffset=-1 yoffset=25 xadvance=13 page=0 chnl=0 -char id=8224 x=287 y=398 width=18 height=24 xoffset=-1 yoffset=8 xadvance=17 page=0 chnl=0 -char id=8225 x=305 y=398 width=18 height=24 xoffset=-1 yoffset=8 xadvance=17 page=0 chnl=0 -char id=8226 x=433 y=463 width=14 height=12 xoffset=-1 yoffset=13 xadvance=14 page=0 chnl=0 -char id=8230 x=180 y=482 width=33 height=7 xoffset=-2 yoffset=25 xadvance=30 page=0 chnl=0 -char id=8240 x=336 y=274 width=31 height=26 xoffset=-2 yoffset=7 xadvance=27 page=0 chnl=0 -char id=8249 x=275 y=463 width=11 height=15 xoffset=-2 yoffset=13 xadvance=7 page=0 chnl=0 -char id=8250 x=286 y=463 width=11 height=15 xoffset=-2 yoffset=13 xadvance=7 page=0 chnl=0 -char id=8260 x=367 y=274 width=33 height=26 xoffset=-9 yoffset=8 xadvance=4 page=0 chnl=0 -char id=8361 x=323 y=398 width=26 height=24 xoffset=-2 yoffset=8 xadvance=23 page=0 chnl=0 -char id=8363 x=349 y=398 width=20 height=24 xoffset=-2 yoffset=8 xadvance=17 page=0 chnl=0 -char id=8364 x=400 y=274 width=23 height=26 xoffset=-2 yoffset=7 xadvance=20 page=0 chnl=0 -char id=8365 x=369 y=398 width=22 height=24 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=8366 x=391 y=398 width=21 height=24 xoffset=-2 yoffset=8 xadvance=18 page=0 chnl=0 -char id=8369 x=412 y=398 width=22 height=24 xoffset=-2 yoffset=8 xadvance=18 page=0 chnl=0 -char id=8370 x=191 y=164 width=24 height=29 xoffset=-2 yoffset=5 xadvance=21 page=0 chnl=0 -char id=8372 x=423 y=274 width=21 height=26 xoffset=-2 yoffset=7 xadvance=18 page=0 chnl=0 -char id=8377 x=21 y=325 width=20 height=25 xoffset=-2 yoffset=7 xadvance=17 page=0 chnl=0 -char id=8378 x=434 y=398 width=22 height=24 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -kernings count=54929 -kerning first=162 second=1263 amount=-1 -kerning first=305 second=232 amount=-1 -kerning first=70 second=332 amount=-2 -kerning first=1084 second=966 amount=-1 -kerning first=1090 second=275 amount=-1 -kerning first=910 second=289 amount=-4 -kerning first=951 second=221 amount=-5 -kerning first=1220 second=351 amount=-1 -kerning first=379 second=233 amount=-1 -kerning first=973 second=363 amount=-1 -kerning first=169 second=333 amount=-1 -kerning first=282 second=245 amount=-1 -kerning first=1065 second=290 amount=-1 -kerning first=191 second=949 amount=-1 -kerning first=194 second=257 amount=-1 -kerning first=74 second=271 amount=-1 -kerning first=217 second=194 amount=-2 -kerning first=338 second=84 amount=-5 -kerning first=916 second=234 amount=-1 -kerning first=1174 second=364 amount=-1 -kerning first=237 second=334 amount=-2 -kerning first=234 second=1090 amount=-1 -kerning first=952 second=376 amount=-5 -kerning first=117 second=346 amount=-1 -kerning first=1223 second=1035 amount=-5 -kerning first=971 second=8212 amount=-2 -kerning first=174 second=273 amount=-1 -kerning first=177 second=45 amount=-2 -kerning first=170 second=964 amount=-3 -kerning first=8240 second=113 amount=-1 -kerning first=8225 second=353 amount=-1 -kerning first=55 second=287 amount=-1 -kerning first=316 second=97 amount=-1 -kerning first=313 second=335 amount=-1 -kerning first=78 second=219 amount=-2 -kerning first=215 second=1108 amount=-1 -kerning first=221 second=109 amount=-3 -kerning first=1170 second=8216 amount=-3 -kerning first=238 second=965 amount=-1 -kerning first=244 second=46 amount=-1 -kerning first=364 second=196 amount=-2 -kerning first=950 second=8250 amount=-1 -kerning first=121 second=288 amount=-2 -kerning first=1036 second=248 amount=-2 -kerning first=178 second=220 amount=-2 -kerning first=289 second=350 amount=-1 -kerning first=59 second=232 amount=-1 -kerning first=196 second=1176 amount=-1 -kerning first=314 second=966 amount=-1 -kerning first=317 second=275 amount=-1 -kerning first=8364 second=225 amount=-1 -kerning first=79 second=374 amount=-3 -kerning first=219 second=1033 amount=-1 -kerning first=931 second=337 amount=-1 -kerning first=105 second=71 amount=-2 -kerning first=1179 second=940 amount=-1 -kerning first=365 second=351 amount=-1 -kerning first=958 second=953 amount=-1 -kerning first=962 second=261 amount=-1 -kerning first=125 second=233 amount=-1 -kerning first=40 second=245 amount=-1 -kerning first=179 second=375 amount=-1 -kerning first=197 second=8211 amount=-2 -kerning first=86 second=84 amount=-5 -kerning first=934 second=968 amount=-1 -kerning first=369 second=291 amount=-1 -kerning first=1048 second=113 amount=-1 -kerning first=177 second=8249 amount=-3 -kerning first=299 second=235 amount=-1 -kerning first=64 second=335 amount=-1 -kerning first=84 second=951 amount=-2 -kerning first=87 second=259 amount=-2 -kerning first=1117 second=212 amount=-2 -kerning first=944 second=224 amount=-1 -kerning first=1202 second=354 amount=-2 -kerning first=964 second=1184 amount=-5 -kerning first=967 second=366 amount=-2 -kerning first=163 second=336 amount=-2 -kerning first=276 second=248 amount=-1 -kerning first=45 second=350 amount=-1 -kerning first=1062 second=63 amount=-2 -kerning first=65 second=966 amount=-1 -kerning first=1085 second=225 amount=-1 -kerning first=211 second=197 amount=-2 -kerning first=332 second=87 amount=-2 -kerning first=1118 second=367 amount=-1 -kerning first=354 second=249 amount=-2 -kerning first=114 second=111 amount=-1 -kerning first=254 second=261 amount=-1 -kerning first=251 second=953 amount=-1 -kerning first=49 second=290 amount=-2 -kerning first=192 second=210 amount=-2 -kerning first=304 second=338 amount=-2 -kerning first=912 second=187 amount=-1 -kerning first=92 second=364 amount=-2 -kerning first=358 second=199 amount=-2 -kerning first=950 second=326 amount=-2 -kerning first=946 second=1079 amount=-1 -kerning first=258 second=211 amount=-2 -kerning first=375 second=1098 amount=-3 -kerning first=381 second=101 amount=-1 -kerning first=378 second=339 amount=-1 -kerning first=1026 second=251 amount=-1 -kerning first=53 second=235 amount=-1 -kerning first=193 second=365 amount=-1 -kerning first=910 second=1099 amount=-3 -kerning first=923 second=102 amount=-2 -kerning first=1171 second=943 amount=-1 -kerning first=1176 second=252 amount=-1 -kerning first=239 second=224 amount=-1 -kerning first=356 second=1118 amount=-2 -kerning first=958 second=39 amount=-3 -kerning first=256 second=1184 amount=-5 -kerning first=382 second=279 amount=-1 +info face="CoolveticaRg-Regular" size=32 bold=0 italic=0 charset="" unicode=1 stretchH=100 smooth=1 aa=1 padding=1,1,1,1 spacing=3,3 +common lineHeight=32 base=31 scaleW=1024 scaleH=1024 pages=1 packed=0 +page id=0 file="coolvetica.png" +chars count=829 +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=15 +char id=33 x=482 y=628 width=7 height=24 xoffset=1 yoffset=9 xadvance=8 page=0 chnl=15 +char id=34 x=106 y=1014 width=10 height=10 xoffset=-0 yoffset=9 xadvance=10 page=0 chnl=15 +char id=35 x=324 y=637 width=18 height=24 xoffset=-1 yoffset=9 xadvance=17 page=0 chnl=15 +char id=36 x=0 y=997 width=17 height=27 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=15 +char id=37 x=160 y=660 width=22 height=25 xoffset=-0 yoffset=8 xadvance=22 page=0 chnl=15 +char id=38 x=386 y=822 width=17 height=24 xoffset=-0 yoffset=9 xadvance=17 page=0 chnl=15 +char id=39 x=119 y=1014 width=5 height=10 xoffset=-0 yoffset=9 xadvance=5 page=0 chnl=15 +char id=40 x=426 y=994 width=10 height=30 xoffset=1 yoffset=7 xadvance=11 page=0 chnl=15 +char id=41 x=482 y=0 width=11 height=30 xoffset=-1 yoffset=7 xadvance=11 page=0 chnl=15 +char id=42 x=426 y=189 width=17 height=17 xoffset=0 yoffset=9 xadvance=18 page=0 chnl=15 +char id=43 x=345 y=278 width=18 height=18 xoffset=-0 yoffset=12 xadvance=17 page=0 chnl=15 +char id=44 x=482 y=1012 width=7 height=12 xoffset=-0 yoffset=26 xadvance=6 page=0 chnl=15 +char id=45 x=482 y=364 width=10 height=6 xoffset=-1 yoffset=19 xadvance=9 page=0 chnl=15 +char id=46 x=496 y=57 width=7 height=7 xoffset=-0 yoffset=26 xadvance=6 page=0 chnl=15 +char id=47 x=465 y=779 width=12 height=24 xoffset=-1 yoffset=9 xadvance=10 page=0 chnl=15 +char id=48 x=386 y=290 width=17 height=25 xoffset=-0 yoffset=8 xadvance=16 page=0 chnl=15 +char id=49 x=482 y=33 width=11 height=24 xoffset=-1 yoffset=9 xadvance=10 page=0 chnl=15 +char id=50 x=386 y=849 width=17 height=24 xoffset=-1 yoffset=8 xadvance=15 page=0 chnl=15 +char id=51 x=386 y=318 width=17 height=25 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=15 +char id=52 x=386 y=876 width=17 height=24 xoffset=-1 yoffset=9 xadvance=16 page=0 chnl=15 +char id=53 x=386 y=903 width=17 height=24 xoffset=-0 yoffset=9 xadvance=16 page=0 chnl=15 +char id=54 x=386 y=346 width=17 height=25 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=15 +char id=55 x=386 y=930 width=17 height=24 xoffset=-1 yoffset=9 xadvance=16 page=0 chnl=15 +char id=56 x=386 y=374 width=17 height=25 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=15 +char id=57 x=386 y=402 width=17 height=25 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=15 +char id=58 x=465 y=1006 width=7 height=18 xoffset=-1 yoffset=15 xadvance=6 page=0 chnl=15 +char id=59 x=446 y=1001 width=7 height=23 xoffset=-1 yoffset=15 xadvance=6 page=0 chnl=15 +char id=60 x=345 y=299 width=18 height=18 xoffset=-0 yoffset=11 xadvance=17 page=0 chnl=15 +char id=61 x=345 y=545 width=18 height=12 xoffset=-0 yoffset=14 xadvance=17 page=0 chnl=15 +char id=62 x=345 y=320 width=18 height=18 xoffset=-0 yoffset=11 xadvance=17 page=0 chnl=15 +char id=63 x=386 y=957 width=17 height=24 xoffset=-0 yoffset=8 xadvance=16 page=0 chnl=15 +char id=64 x=106 y=277 width=24 height=25 xoffset=-1 yoffset=10 xadvance=23 page=0 chnl=15 +char id=65 x=160 y=772 width=22 height=24 xoffset=-1 yoffset=9 xadvance=21 page=0 chnl=15 +char id=66 x=257 y=28 width=20 height=24 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=67 x=185 y=832 width=21 height=25 xoffset=-1 yoffset=8 xadvance=20 page=0 chnl=15 +char id=68 x=257 y=55 width=20 height=24 xoffset=-0 yoffset=9 xadvance=20 page=0 chnl=15 +char id=69 x=280 y=957 width=19 height=24 xoffset=-0 yoffset=9 xadvance=18 page=0 chnl=15 +char id=70 x=324 y=664 width=18 height=24 xoffset=-0 yoffset=9 xadvance=17 page=0 chnl=15 +char id=71 x=160 y=688 width=22 height=25 xoffset=-1 yoffset=8 xadvance=22 page=0 chnl=15 +char id=72 x=257 y=82 width=20 height=24 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=73 x=482 y=655 width=7 height=24 xoffset=-0 yoffset=9 xadvance=6 page=0 chnl=15 +char id=74 x=426 y=562 width=16 height=24 xoffset=-1 yoffset=9 xadvance=15 page=0 chnl=15 +char id=75 x=185 y=1000 width=21 height=24 xoffset=-0 yoffset=9 xadvance=20 page=0 chnl=15 +char id=76 x=386 y=984 width=17 height=24 xoffset=-0 yoffset=9 xadvance=17 page=0 chnl=15 +char id=77 x=134 y=586 width=23 height=24 xoffset=-0 yoffset=9 xadvance=23 page=0 chnl=15 +char id=78 x=257 y=109 width=20 height=24 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=79 x=134 y=418 width=23 height=25 xoffset=-1 yoffset=8 xadvance=22 page=0 chnl=15 +char id=80 x=324 y=691 width=18 height=24 xoffset=-0 yoffset=9 xadvance=18 page=0 chnl=15 +char id=81 x=106 y=771 width=23 height=32 xoffset=-1 yoffset=8 xadvance=22 page=0 chnl=15 +char id=82 x=257 y=136 width=20 height=24 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=83 x=234 y=879 width=20 height=25 xoffset=-1 yoffset=8 xadvance=19 page=0 chnl=15 +char id=84 x=257 y=163 width=20 height=24 xoffset=-1 yoffset=9 xadvance=18 page=0 chnl=15 +char id=85 x=257 y=190 width=20 height=24 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=86 x=210 y=28 width=21 height=24 xoffset=-1 yoffset=9 xadvance=19 page=0 chnl=15 +char id=87 x=44 y=146 width=29 height=24 xoffset=-1 yoffset=9 xadvance=28 page=0 chnl=15 +char id=88 x=210 y=55 width=21 height=24 xoffset=-1 yoffset=9 xadvance=20 page=0 chnl=15 +char id=89 x=210 y=82 width=21 height=24 xoffset=-1 yoffset=9 xadvance=20 page=0 chnl=15 +char id=90 x=280 y=984 width=19 height=24 xoffset=-1 yoffset=9 xadvance=18 page=0 chnl=15 +char id=91 x=482 y=216 width=10 height=30 xoffset=1 yoffset=7 xadvance=11 page=0 chnl=15 +char id=92 x=465 y=806 width=12 height=24 xoffset=-1 yoffset=9 xadvance=10 page=0 chnl=15 +char id=93 x=482 y=249 width=10 height=30 xoffset=-1 yoffset=7 xadvance=11 page=0 chnl=15 +char id=94 x=324 y=1015 width=16 height=9 xoffset=-1 yoffset=9 xadvance=15 page=0 chnl=15 +char id=95 x=345 y=571 width=18 height=4 xoffset=-1 yoffset=32 xadvance=16 page=0 chnl=15 +char id=96 x=482 y=342 width=10 height=8 xoffset=1 yoffset=7 xadvance=12 page=0 chnl=15 +char id=97 x=406 y=632 width=17 height=19 xoffset=-1 yoffset=14 xadvance=16 page=0 chnl=15 +char id=98 x=324 y=718 width=18 height=24 xoffset=-0 yoffset=8 xadvance=17 page=0 chnl=15 +char id=99 x=406 y=654 width=17 height=19 xoffset=-0 yoffset=14 xadvance=16 page=0 chnl=15 +char id=100 x=324 y=745 width=18 height=24 xoffset=-0 yoffset=8 xadvance=17 page=0 chnl=15 +char id=101 x=406 y=676 width=17 height=19 xoffset=-1 yoffset=14 xadvance=17 page=0 chnl=15 +char id=102 x=465 y=833 width=12 height=24 xoffset=-1 yoffset=8 xadvance=10 page=0 chnl=15 +char id=103 x=324 y=293 width=18 height=26 xoffset=-0 yoffset=14 xadvance=17 page=0 chnl=15 +char id=104 x=406 y=0 width=17 height=24 xoffset=-0 yoffset=8 xadvance=17 page=0 chnl=15 +char id=105 x=482 y=682 width=7 height=24 xoffset=-0 yoffset=8 xadvance=7 page=0 chnl=15 +char id=106 x=446 y=81 width=15 height=31 xoffset=-9 yoffset=8 xadvance=7 page=0 chnl=15 +char id=107 x=426 y=589 width=16 height=24 xoffset=-0 yoffset=8 xadvance=16 page=0 chnl=15 +char id=108 x=482 y=709 width=7 height=24 xoffset=-0 yoffset=8 xadvance=6 page=0 chnl=15 +char id=109 x=76 y=974 width=25 height=19 xoffset=-0 yoffset=14 xadvance=25 page=0 chnl=15 +char id=110 x=406 y=610 width=17 height=19 xoffset=-0 yoffset=14 xadvance=17 page=0 chnl=15 +char id=111 x=302 y=701 width=19 height=19 xoffset=-1 yoffset=14 xadvance=18 page=0 chnl=15 +char id=112 x=324 y=322 width=18 height=26 xoffset=-0 yoffset=14 xadvance=17 page=0 chnl=15 +char id=113 x=76 y=731 width=25 height=26 xoffset=-0 yoffset=14 xadvance=17 page=0 chnl=15 +char id=114 x=465 y=940 width=12 height=19 xoffset=-0 yoffset=14 xadvance=11 page=0 chnl=15 +char id=115 x=406 y=698 width=17 height=19 xoffset=-1 yoffset=14 xadvance=16 page=0 chnl=15 +char id=116 x=446 y=367 width=15 height=23 xoffset=-0 yoffset=10 xadvance=15 page=0 chnl=15 +char id=117 x=406 y=720 width=17 height=19 xoffset=-0 yoffset=14 xadvance=16 page=0 chnl=15 +char id=118 x=345 y=341 width=18 height=18 xoffset=-1 yoffset=14 xadvance=17 page=0 chnl=15 +char id=119 x=106 y=0 width=25 height=18 xoffset=-1 yoffset=14 xadvance=23 page=0 chnl=15 +char id=120 x=345 y=362 width=18 height=18 xoffset=-1 yoffset=14 xadvance=16 page=0 chnl=15 +char id=121 x=366 y=453 width=17 height=26 xoffset=-0 yoffset=14 xadvance=17 page=0 chnl=15 +char id=122 x=426 y=954 width=16 height=18 xoffset=-1 yoffset=14 xadvance=15 page=0 chnl=15 +char id=123 x=465 y=570 width=12 height=30 xoffset=-0 yoffset=7 xadvance=11 page=0 chnl=15 +char id=124 x=496 y=107 width=6 height=30 xoffset=3 yoffset=6 xadvance=11 page=0 chnl=15 +char id=125 x=465 y=603 width=12 height=30 xoffset=-1 yoffset=7 xadvance=11 page=0 chnl=15 +char id=126 x=345 y=560 width=18 height=8 xoffset=-0 yoffset=17 xadvance=18 page=0 chnl=15 +char id=161 x=482 y=736 width=7 height=24 xoffset=1 yoffset=9 xadvance=8 page=0 chnl=15 +char id=162 x=406 y=27 width=17 height=24 xoffset=-0 yoffset=9 xadvance=16 page=0 chnl=15 +char id=163 x=426 y=616 width=16 height=24 xoffset=-0 yoffset=8 xadvance=16 page=0 chnl=15 +char id=164 x=345 y=383 width=18 height=18 xoffset=-0 yoffset=11 xadvance=18 page=0 chnl=15 +char id=165 x=324 y=772 width=18 height=24 xoffset=-0 yoffset=9 xadvance=18 page=0 chnl=15 +char id=166 x=496 y=140 width=6 height=30 xoffset=3 yoffset=6 xadvance=11 page=0 chnl=15 +char id=167 x=345 y=927 width=17 height=29 xoffset=-0 yoffset=8 xadvance=18 page=0 chnl=15 +char id=168 x=465 y=527 width=13 height=6 xoffset=1 yoffset=8 xadvance=14 page=0 chnl=15 +char id=169 x=134 y=613 width=23 height=24 xoffset=-1 yoffset=8 xadvance=22 page=0 chnl=15 +char id=170 x=482 y=327 width=10 height=12 xoffset=0 yoffset=12 xadvance=11 page=0 chnl=15 +char id=171 x=280 y=1011 width=16 height=13 xoffset=-1 yoffset=14 xadvance=15 page=0 chnl=15 +char id=172 x=257 y=876 width=20 height=18 xoffset=-0 yoffset=14 xadvance=19 page=0 chnl=15 +char id=173 x=482 y=373 width=10 height=6 xoffset=-1 yoffset=19 xadvance=9 page=0 chnl=15 +char id=174 x=446 y=604 width=15 height=15 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=15 +char id=175 x=446 y=662 width=15 height=5 xoffset=1 yoffset=8 xadvance=16 page=0 chnl=15 +char id=176 x=386 y=1011 width=12 height=13 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=15 +char id=177 x=345 y=184 width=18 height=22 xoffset=-0 yoffset=12 xadvance=17 page=0 chnl=15 +char id=178 x=482 y=311 width=10 height=13 xoffset=-0 yoffset=8 xadvance=9 page=0 chnl=15 +char id=179 x=482 y=502 width=9 height=14 xoffset=-0 yoffset=8 xadvance=9 page=0 chnl=15 +char id=180 x=482 y=353 width=10 height=8 xoffset=1 yoffset=7 xadvance=12 page=0 chnl=15 +char id=181 x=406 y=324 width=17 height=23 xoffset=1 yoffset=11 xadvance=19 page=0 chnl=15 +char id=182 x=76 y=996 width=19 height=28 xoffset=-0 yoffset=8 xadvance=19 page=0 chnl=15 +char id=183 x=496 y=67 width=7 height=7 xoffset=-0 yoffset=17 xadvance=6 page=0 chnl=15 +char id=184 x=496 y=186 width=6 height=9 xoffset=1 yoffset=31 xadvance=7 page=0 chnl=15 +char id=185 x=482 y=996 width=7 height=13 xoffset=-0 yoffset=8 xadvance=6 page=0 chnl=15 +char id=186 x=160 y=1013 width=11 height=11 xoffset=0 yoffset=12 xadvance=12 page=0 chnl=15 +char id=187 x=446 y=38 width=16 height=13 xoffset=-1 yoffset=14 xadvance=15 page=0 chnl=15 +char id=188 x=185 y=860 width=21 height=25 xoffset=-0 yoffset=8 xadvance=20 page=0 chnl=15 +char id=189 x=185 y=888 width=21 height=25 xoffset=-0 yoffset=8 xadvance=20 page=0 chnl=15 +char id=190 x=160 y=716 width=22 height=25 xoffset=-0 yoffset=8 xadvance=21 page=0 chnl=15 +char id=191 x=406 y=54 width=17 height=24 xoffset=-0 yoffset=9 xadvance=16 page=0 chnl=15 +char id=192 x=160 y=140 width=22 height=31 xoffset=-1 yoffset=1 xadvance=21 page=0 chnl=15 +char id=193 x=160 y=174 width=22 height=31 xoffset=-1 yoffset=1 xadvance=21 page=0 chnl=15 +char id=194 x=134 y=968 width=22 height=32 xoffset=-1 yoffset=1 xadvance=21 page=0 chnl=15 +char id=195 x=160 y=310 width=22 height=30 xoffset=-1 yoffset=2 xadvance=21 page=0 chnl=15 +char id=196 x=160 y=343 width=22 height=30 xoffset=-1 yoffset=2 xadvance=21 page=0 chnl=15 +char id=197 x=160 y=0 width=22 height=32 xoffset=-1 yoffset=1 xadvance=21 page=0 chnl=15 +char id=198 x=0 y=760 width=31 height=24 xoffset=-1 yoffset=9 xadvance=29 page=0 chnl=15 +char id=199 x=185 y=362 width=21 height=32 xoffset=-1 yoffset=8 xadvance=20 page=0 chnl=15 +char id=200 x=280 y=176 width=19 height=31 xoffset=-0 yoffset=1 xadvance=18 page=0 chnl=15 +char id=201 x=280 y=210 width=19 height=31 xoffset=-0 yoffset=1 xadvance=18 page=0 chnl=15 +char id=202 x=280 y=36 width=19 height=32 xoffset=-0 yoffset=1 xadvance=18 page=0 chnl=15 +char id=203 x=280 y=380 width=19 height=30 xoffset=-0 yoffset=2 xadvance=18 page=0 chnl=15 +char id=204 x=482 y=114 width=10 height=31 xoffset=-3 yoffset=1 xadvance=6 page=0 chnl=15 +char id=205 x=482 y=148 width=10 height=31 xoffset=-1 yoffset=1 xadvance=6 page=0 chnl=15 +char id=206 x=446 y=677 width=14 height=32 xoffset=-4 yoffset=1 xadvance=6 page=0 chnl=15 +char id=207 x=465 y=141 width=13 height=30 xoffset=-3 yoffset=2 xadvance=6 page=0 chnl=15 +char id=208 x=210 y=109 width=21 height=24 xoffset=-1 yoffset=9 xadvance=20 page=0 chnl=15 +char id=209 x=234 y=686 width=20 height=30 xoffset=-0 yoffset=2 xadvance=19 page=0 chnl=15 +char id=210 x=106 y=806 width=23 height=32 xoffset=-1 yoffset=1 xadvance=22 page=0 chnl=15 +char id=211 x=106 y=841 width=23 height=32 xoffset=-1 yoffset=1 xadvance=22 page=0 chnl=15 +char id=212 x=106 y=876 width=23 height=32 xoffset=-1 yoffset=1 xadvance=22 page=0 chnl=15 +char id=213 x=106 y=946 width=23 height=31 xoffset=-1 yoffset=2 xadvance=22 page=0 chnl=15 +char id=214 x=106 y=980 width=23 height=31 xoffset=-1 yoffset=2 xadvance=22 page=0 chnl=15 +char id=215 x=446 y=622 width=15 height=15 xoffset=1 yoffset=13 xadvance=17 page=0 chnl=15 +char id=216 x=134 y=389 width=23 height=26 xoffset=-1 yoffset=7 xadvance=22 page=0 chnl=15 +char id=217 x=210 y=878 width=20 height=32 xoffset=-0 yoffset=1 xadvance=19 page=0 chnl=15 +char id=218 x=210 y=913 width=20 height=32 xoffset=-0 yoffset=1 xadvance=19 page=0 chnl=15 +char id=219 x=210 y=698 width=20 height=33 xoffset=-0 yoffset=1 xadvance=19 page=0 chnl=15 +char id=220 x=234 y=210 width=20 height=31 xoffset=-0 yoffset=2 xadvance=19 page=0 chnl=15 +char id=221 x=185 y=502 width=21 height=31 xoffset=-1 yoffset=1 xadvance=20 page=0 chnl=15 +char id=222 x=324 y=799 width=18 height=24 xoffset=-0 yoffset=9 xadvance=18 page=0 chnl=15 +char id=223 x=324 y=525 width=18 height=25 xoffset=-0 yoffset=8 xadvance=17 page=0 chnl=15 +char id=224 x=366 y=482 width=17 height=26 xoffset=-1 yoffset=7 xadvance=16 page=0 chnl=15 +char id=225 x=366 y=511 width=17 height=26 xoffset=-1 yoffset=7 xadvance=16 page=0 chnl=15 +char id=226 x=366 y=93 width=17 height=27 xoffset=-1 yoffset=6 xadvance=16 page=0 chnl=15 +char id=227 x=386 y=430 width=17 height=25 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=15 +char id=228 x=386 y=458 width=17 height=25 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=15 +char id=229 x=366 y=123 width=17 height=27 xoffset=-1 yoffset=6 xadvance=16 page=0 chnl=15 +char id=230 x=44 y=761 width=27 height=19 xoffset=-1 yoffset=14 xadvance=27 page=0 chnl=15 +char id=231 x=366 y=540 width=17 height=26 xoffset=-0 yoffset=14 xadvance=16 page=0 chnl=15 +char id=232 x=366 y=569 width=17 height=26 xoffset=-1 yoffset=7 xadvance=17 page=0 chnl=15 +char id=233 x=366 y=598 width=17 height=26 xoffset=-1 yoffset=7 xadvance=17 page=0 chnl=15 +char id=234 x=366 y=153 width=17 height=27 xoffset=-1 yoffset=6 xadvance=17 page=0 chnl=15 +char id=235 x=386 y=486 width=17 height=25 xoffset=-1 yoffset=8 xadvance=17 page=0 chnl=15 +char id=236 x=20 y=997 width=10 height=26 xoffset=-2 yoffset=7 xadvance=9 page=0 chnl=15 +char id=237 x=482 y=282 width=10 height=26 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=15 +char id=238 x=465 y=273 width=13 height=26 xoffset=-2 yoffset=6 xadvance=9 page=0 chnl=15 +char id=239 x=465 y=331 width=13 height=25 xoffset=-2 yoffset=8 xadvance=9 page=0 chnl=15 +char id=240 x=324 y=553 width=18 height=25 xoffset=-1 yoffset=8 xadvance=17 page=0 chnl=15 +char id=241 x=386 y=514 width=17 height=25 xoffset=-0 yoffset=8 xadvance=17 page=0 chnl=15 +char id=242 x=280 y=729 width=19 height=26 xoffset=-1 yoffset=7 xadvance=18 page=0 chnl=15 +char id=243 x=280 y=758 width=19 height=26 xoffset=-1 yoffset=7 xadvance=18 page=0 chnl=15 +char id=244 x=280 y=639 width=19 height=27 xoffset=-1 yoffset=6 xadvance=18 page=0 chnl=15 +char id=245 x=280 y=845 width=19 height=25 xoffset=-1 yoffset=8 xadvance=18 page=0 chnl=15 +char id=246 x=280 y=873 width=19 height=25 xoffset=-1 yoffset=8 xadvance=18 page=0 chnl=15 +char id=247 x=345 y=209 width=18 height=20 xoffset=-0 yoffset=10 xadvance=17 page=0 chnl=15 +char id=248 x=302 y=584 width=19 height=21 xoffset=-1 yoffset=13 xadvance=18 page=0 chnl=15 +char id=249 x=366 y=627 width=17 height=26 xoffset=-0 yoffset=7 xadvance=16 page=0 chnl=15 +char id=250 x=366 y=656 width=17 height=26 xoffset=-0 yoffset=7 xadvance=16 page=0 chnl=15 +char id=251 x=366 y=183 width=17 height=27 xoffset=-0 yoffset=6 xadvance=16 page=0 chnl=15 +char id=252 x=386 y=542 width=17 height=25 xoffset=-0 yoffset=8 xadvance=16 page=0 chnl=15 +char id=253 x=234 y=991 width=17 height=33 xoffset=-0 yoffset=7 xadvance=17 page=0 chnl=15 +char id=254 x=302 y=956 width=18 height=31 xoffset=-0 yoffset=8 xadvance=17 page=0 chnl=15 +char id=255 x=345 y=653 width=17 height=32 xoffset=-0 yoffset=8 xadvance=17 page=0 chnl=15 +char id=256 x=160 y=376 width=22 height=30 xoffset=-1 yoffset=2 xadvance=21 page=0 chnl=15 +char id=257 x=386 y=570 width=17 height=25 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=15 +char id=258 x=160 y=35 width=22 height=32 xoffset=-1 yoffset=1 xadvance=21 page=0 chnl=15 +char id=259 x=366 y=213 width=17 height=27 xoffset=-1 yoffset=6 xadvance=16 page=0 chnl=15 +char id=260 x=134 y=0 width=23 height=31 xoffset=-1 yoffset=9 xadvance=21 page=0 chnl=15 +char id=261 x=366 y=685 width=17 height=26 xoffset=-1 yoffset=14 xadvance=16 page=0 chnl=15 +char id=262 x=185 y=397 width=21 height=32 xoffset=-1 yoffset=1 xadvance=20 page=0 chnl=15 +char id=263 x=366 y=714 width=17 height=26 xoffset=-0 yoffset=7 xadvance=16 page=0 chnl=15 +char id=264 x=160 y=409 width=22 height=30 xoffset=0 yoffset=-3 xadvance=22 page=0 chnl=15 +char id=265 x=446 y=833 width=14 height=23 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=15 +char id=266 x=185 y=536 width=21 height=31 xoffset=-1 yoffset=2 xadvance=20 page=0 chnl=15 +char id=267 x=386 y=598 width=17 height=25 xoffset=-0 yoffset=8 xadvance=16 page=0 chnl=15 +char id=268 x=185 y=326 width=21 height=33 xoffset=-1 yoffset=1 xadvance=20 page=0 chnl=15 +char id=269 x=366 y=243 width=17 height=27 xoffset=-0 yoffset=6 xadvance=16 page=0 chnl=15 +char id=270 x=210 y=948 width=20 height=32 xoffset=-0 yoffset=1 xadvance=20 page=0 chnl=15 +char id=271 x=134 y=446 width=23 height=25 xoffset=-0 yoffset=8 xadvance=21 page=0 chnl=15 +char id=272 x=210 y=136 width=21 height=24 xoffset=-1 yoffset=9 xadvance=20 page=0 chnl=15 +char id=273 x=302 y=0 width=19 height=24 xoffset=-0 yoffset=8 xadvance=17 page=0 chnl=15 +char id=274 x=280 y=413 width=19 height=30 xoffset=-0 yoffset=2 xadvance=18 page=0 chnl=15 +char id=275 x=386 y=626 width=17 height=25 xoffset=-1 yoffset=8 xadvance=17 page=0 chnl=15 +char id=276 x=280 y=71 width=19 height=32 xoffset=-0 yoffset=1 xadvance=18 page=0 chnl=15 +char id=277 x=366 y=273 width=17 height=27 xoffset=-1 yoffset=6 xadvance=17 page=0 chnl=15 +char id=278 x=280 y=446 width=19 height=30 xoffset=-0 yoffset=2 xadvance=18 page=0 chnl=15 +char id=279 x=386 y=654 width=17 height=25 xoffset=-1 yoffset=8 xadvance=17 page=0 chnl=15 +char id=280 x=280 y=244 width=19 height=31 xoffset=-0 yoffset=9 xadvance=18 page=0 chnl=15 +char id=281 x=366 y=743 width=17 height=26 xoffset=-1 yoffset=14 xadvance=17 page=0 chnl=15 +char id=282 x=280 y=106 width=19 height=32 xoffset=-0 yoffset=1 xadvance=18 page=0 chnl=15 +char id=283 x=366 y=303 width=17 height=27 xoffset=-1 yoffset=6 xadvance=17 page=0 chnl=15 +char id=284 x=106 y=148 width=24 height=30 xoffset=0 yoffset=-3 xadvance=24 page=0 chnl=15 +char id=285 x=345 y=894 width=17 height=30 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=15 +char id=286 x=160 y=70 width=22 height=32 xoffset=-1 yoffset=1 xadvance=22 page=0 chnl=15 +char id=287 x=257 y=990 width=18 height=34 xoffset=-0 yoffset=6 xadvance=17 page=0 chnl=15 +char id=288 x=160 y=208 width=22 height=31 xoffset=-1 yoffset=2 xadvance=22 page=0 chnl=15 +char id=289 x=302 y=921 width=18 height=32 xoffset=-0 yoffset=8 xadvance=17 page=0 chnl=15 +char id=290 x=160 y=105 width=22 height=32 xoffset=-1 yoffset=8 xadvance=22 page=0 chnl=15 +char id=291 x=302 y=847 width=18 height=34 xoffset=-0 yoffset=6 xadvance=17 page=0 chnl=15 +char id=292 x=76 y=249 width=25 height=30 xoffset=-1 yoffset=-3 xadvance=24 page=0 chnl=15 +char id=293 x=324 y=102 width=18 height=30 xoffset=-1 yoffset=-3 xadvance=16 page=0 chnl=15 +char id=294 x=257 y=217 width=20 height=24 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=295 x=324 y=826 width=18 height=24 xoffset=-1 yoffset=8 xadvance=17 page=0 chnl=15 +char id=296 x=465 y=174 width=13 height=30 xoffset=-3 yoffset=2 xadvance=6 page=0 chnl=15 +char id=297 x=465 y=359 width=13 height=25 xoffset=-2 yoffset=8 xadvance=9 page=0 chnl=15 +char id=298 x=446 y=183 width=15 height=30 xoffset=-4 yoffset=2 xadvance=6 page=0 chnl=15 +char id=299 x=446 y=312 width=15 height=25 xoffset=-3 yoffset=8 xadvance=9 page=0 chnl=15 +char id=300 x=465 y=106 width=13 height=32 xoffset=-3 yoffset=1 xadvance=6 page=0 chnl=15 +char id=301 x=465 y=302 width=13 height=26 xoffset=-2 yoffset=6 xadvance=9 page=0 chnl=15 +char id=302 x=482 y=382 width=9 height=31 xoffset=-3 yoffset=9 xadvance=6 page=0 chnl=15 +char id=303 x=482 y=416 width=9 height=31 xoffset=-3 yoffset=8 xadvance=7 page=0 chnl=15 +char id=304 x=482 y=595 width=7 height=30 xoffset=-0 yoffset=2 xadvance=6 page=0 chnl=15 +char id=305 x=482 y=975 width=7 height=18 xoffset=-0 yoffset=14 xadvance=7 page=0 chnl=15 +char id=306 x=210 y=163 width=21 height=24 xoffset=-0 yoffset=9 xadvance=21 page=0 chnl=15 +char id=307 x=446 y=115 width=15 height=31 xoffset=-2 yoffset=8 xadvance=13 page=0 chnl=15 +char id=308 x=446 y=216 width=15 height=30 xoffset=-1 yoffset=-3 xadvance=13 page=0 chnl=15 +char id=309 x=446 y=712 width=14 height=30 xoffset=-4 yoffset=4 xadvance=9 page=0 chnl=15 +char id=310 x=185 y=570 width=21 height=31 xoffset=-0 yoffset=9 xadvance=20 page=0 chnl=15 +char id=311 x=426 y=283 width=16 height=31 xoffset=-0 yoffset=8 xadvance=16 page=0 chnl=15 +char id=312 x=302 y=809 width=19 height=16 xoffset=-1 yoffset=11 xadvance=16 page=0 chnl=15 +char id=313 x=324 y=0 width=18 height=31 xoffset=-1 yoffset=1 xadvance=17 page=0 chnl=15 +char id=314 x=482 y=182 width=10 height=31 xoffset=-1 yoffset=1 xadvance=6 page=0 chnl=15 +char id=315 x=345 y=758 width=17 height=31 xoffset=-0 yoffset=9 xadvance=17 page=0 chnl=15 +char id=316 x=482 y=561 width=7 height=31 xoffset=-0 yoffset=8 xadvance=6 page=0 chnl=15 +char id=317 x=386 y=682 width=17 height=25 xoffset=-0 yoffset=8 xadvance=17 page=0 chnl=15 +char id=318 x=465 y=723 width=12 height=25 xoffset=-0 yoffset=8 xadvance=11 page=0 chnl=15 +char id=319 x=210 y=406 width=21 height=23 xoffset=-1 yoffset=4 xadvance=20 page=0 chnl=15 +char id=320 x=465 y=860 width=12 height=24 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=15 +char id=321 x=406 y=81 width=17 height=24 xoffset=-0 yoffset=9 xadvance=17 page=0 chnl=15 +char id=322 x=482 y=60 width=11 height=24 xoffset=-1 yoffset=8 xadvance=9 page=0 chnl=15 +char id=323 x=234 y=244 width=20 height=31 xoffset=-0 yoffset=1 xadvance=19 page=0 chnl=15 +char id=324 x=366 y=772 width=17 height=26 xoffset=-0 yoffset=7 xadvance=17 page=0 chnl=15 +char id=325 x=234 y=278 width=20 height=31 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=326 x=366 y=801 width=17 height=26 xoffset=-0 yoffset=14 xadvance=17 page=0 chnl=15 +char id=327 x=210 y=983 width=20 height=32 xoffset=-0 yoffset=1 xadvance=19 page=0 chnl=15 +char id=328 x=366 y=830 width=17 height=26 xoffset=-0 yoffset=6 xadvance=17 page=0 chnl=15 +char id=329 x=160 y=961 width=22 height=23 xoffset=-1 yoffset=4 xadvance=20 page=0 chnl=15 +char id=330 x=234 y=312 width=20 height=31 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=331 x=366 y=859 width=17 height=26 xoffset=-0 yoffset=14 xadvance=17 page=0 chnl=15 +char id=332 x=134 y=34 width=23 height=31 xoffset=-1 yoffset=2 xadvance=22 page=0 chnl=15 +char id=333 x=280 y=901 width=19 height=25 xoffset=-1 yoffset=8 xadvance=18 page=0 chnl=15 +char id=334 x=106 y=911 width=23 height=32 xoffset=-1 yoffset=1 xadvance=22 page=0 chnl=15 +char id=335 x=280 y=669 width=19 height=27 xoffset=-1 yoffset=6 xadvance=18 page=0 chnl=15 +char id=336 x=106 y=735 width=23 height=33 xoffset=-1 yoffset=1 xadvance=22 page=0 chnl=15 +char id=337 x=280 y=699 width=19 height=27 xoffset=-1 yoffset=6 xadvance=18 page=0 chnl=15 +char id=338 x=0 y=177 width=35 height=25 xoffset=-1 yoffset=8 xadvance=31 page=0 chnl=15 +char id=339 x=44 y=304 width=29 height=19 xoffset=-1 yoffset=14 xadvance=28 page=0 chnl=15 +char id=340 x=234 y=346 width=20 height=31 xoffset=-0 yoffset=1 xadvance=19 page=0 chnl=15 +char id=341 x=465 y=636 width=12 height=26 xoffset=-0 yoffset=7 xadvance=11 page=0 chnl=15 +char id=342 x=234 y=380 width=20 height=31 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=343 x=465 y=665 width=12 height=26 xoffset=-0 yoffset=14 xadvance=11 page=0 chnl=15 +char id=344 x=234 y=0 width=20 height=32 xoffset=-0 yoffset=1 xadvance=19 page=0 chnl=15 +char id=345 x=446 y=777 width=14 height=26 xoffset=-2 yoffset=6 xadvance=11 page=0 chnl=15 +char id=346 x=234 y=35 width=20 height=32 xoffset=-1 yoffset=1 xadvance=19 page=0 chnl=15 +char id=347 x=366 y=888 width=17 height=26 xoffset=-1 yoffset=7 xadvance=16 page=0 chnl=15 +char id=348 x=426 y=351 width=16 height=30 xoffset=1 yoffset=-3 xadvance=18 page=0 chnl=15 +char id=349 x=465 y=442 width=13 height=23 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=15 +char id=350 x=234 y=70 width=20 height=32 xoffset=-1 yoffset=8 xadvance=19 page=0 chnl=15 +char id=351 x=366 y=917 width=17 height=26 xoffset=-1 yoffset=14 xadvance=16 page=0 chnl=15 +char id=352 x=210 y=734 width=20 height=33 xoffset=-1 yoffset=1 xadvance=19 page=0 chnl=15 +char id=353 x=366 y=333 width=17 height=27 xoffset=-1 yoffset=6 xadvance=16 page=0 chnl=15 +char id=354 x=234 y=414 width=20 height=31 xoffset=-1 yoffset=9 xadvance=18 page=0 chnl=15 +char id=355 x=446 y=249 width=15 height=30 xoffset=-0 yoffset=10 xadvance=15 page=0 chnl=15 +char id=356 x=234 y=105 width=20 height=32 xoffset=-1 yoffset=1 xadvance=18 page=0 chnl=15 +char id=357 x=234 y=907 width=20 height=25 xoffset=-0 yoffset=8 xadvance=19 page=0 chnl=15 +char id=358 x=257 y=244 width=20 height=24 xoffset=-1 yoffset=9 xadvance=18 page=0 chnl=15 +char id=359 x=446 y=393 width=15 height=23 xoffset=-0 yoffset=10 xadvance=15 page=0 chnl=15 +char id=360 x=234 y=448 width=20 height=31 xoffset=-0 yoffset=2 xadvance=19 page=0 chnl=15 +char id=361 x=386 y=710 width=17 height=25 xoffset=-0 yoffset=8 xadvance=16 page=0 chnl=15 +char id=362 x=234 y=482 width=20 height=31 xoffset=-0 yoffset=2 xadvance=19 page=0 chnl=15 +char id=363 x=386 y=738 width=17 height=25 xoffset=-0 yoffset=8 xadvance=16 page=0 chnl=15 +char id=364 x=210 y=770 width=20 height=33 xoffset=-0 yoffset=1 xadvance=19 page=0 chnl=15 +char id=365 x=366 y=363 width=17 height=27 xoffset=-0 yoffset=6 xadvance=16 page=0 chnl=15 +char id=366 x=210 y=806 width=20 height=33 xoffset=-0 yoffset=1 xadvance=19 page=0 chnl=15 +char id=367 x=366 y=393 width=17 height=27 xoffset=-0 yoffset=6 xadvance=16 page=0 chnl=15 +char id=368 x=210 y=842 width=20 height=33 xoffset=-0 yoffset=1 xadvance=19 page=0 chnl=15 +char id=369 x=366 y=423 width=17 height=27 xoffset=-0 yoffset=6 xadvance=16 page=0 chnl=15 +char id=370 x=234 y=516 width=20 height=31 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=371 x=366 y=946 width=17 height=26 xoffset=-0 yoffset=14 xadvance=16 page=0 chnl=15 +char id=372 x=44 y=53 width=29 height=32 xoffset=-1 yoffset=1 xadvance=28 page=0 chnl=15 +char id=373 x=76 y=760 width=25 height=26 xoffset=-1 yoffset=6 xadvance=23 page=0 chnl=15 +char id=374 x=185 y=432 width=21 height=32 xoffset=-1 yoffset=1 xadvance=20 page=0 chnl=15 +char id=375 x=302 y=990 width=17 height=34 xoffset=-0 yoffset=6 xadvance=17 page=0 chnl=15 +char id=376 x=185 y=604 width=21 height=30 xoffset=-1 yoffset=2 xadvance=20 page=0 chnl=15 +char id=377 x=280 y=278 width=19 height=31 xoffset=-1 yoffset=1 xadvance=18 page=0 chnl=15 +char id=378 x=426 y=447 width=16 height=26 xoffset=-1 yoffset=7 xadvance=15 page=0 chnl=15 +char id=379 x=280 y=479 width=19 height=30 xoffset=-1 yoffset=2 xadvance=18 page=0 chnl=15 +char id=380 x=426 y=534 width=16 height=25 xoffset=-1 yoffset=8 xadvance=15 page=0 chnl=15 +char id=381 x=280 y=141 width=19 height=32 xoffset=-1 yoffset=1 xadvance=18 page=0 chnl=15 +char id=382 x=426 y=476 width=16 height=26 xoffset=-1 yoffset=6 xadvance=15 page=0 chnl=15 +char id=383 x=446 y=340 width=15 height=24 xoffset=-1 yoffset=3 xadvance=9 page=0 chnl=15 +char id=884 x=482 y=551 width=8 height=7 xoffset=2 yoffset=4 xadvance=11 page=0 chnl=15 +char id=885 x=496 y=77 width=7 height=7 xoffset=1 yoffset=26 xadvance=11 page=0 chnl=15 +char id=890 x=496 y=87 width=7 height=7 xoffset=2 yoffset=27 xadvance=11 page=0 chnl=15 +char id=891 x=446 y=963 width=14 height=16 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=15 +char id=892 x=446 y=982 width=14 height=16 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=15 +char id=893 x=465 y=0 width=14 height=16 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=15 +char id=894 x=482 y=951 width=7 height=21 xoffset=1 yoffset=11 xadvance=9 page=0 chnl=15 +char id=900 x=496 y=173 width=6 height=10 xoffset=-0 yoffset=9 xadvance=5 page=0 chnl=15 +char id=901 x=446 y=68 width=16 height=10 xoffset=-15 yoffset=5 xadvance=0 page=0 chnl=15 +char id=902 x=134 y=640 width=23 height=24 xoffset=-0 yoffset=9 xadvance=22 page=0 chnl=15 +char id=903 x=496 y=97 width=7 height=7 xoffset=-0 yoffset=14 xadvance=6 page=0 chnl=15 +char id=904 x=134 y=667 width=23 height=24 xoffset=-0 yoffset=9 xadvance=22 page=0 chnl=15 +char id=905 x=106 y=305 width=24 height=24 xoffset=-0 yoffset=9 xadvance=24 page=0 chnl=15 +char id=906 x=465 y=887 width=12 height=24 xoffset=-0 yoffset=9 xadvance=11 page=0 chnl=15 +char id=908 x=44 y=878 width=26 height=25 xoffset=-0 yoffset=8 xadvance=25 page=0 chnl=15 +char id=910 x=76 y=789 width=25 height=24 xoffset=-0 yoffset=9 xadvance=24 page=0 chnl=15 +char id=911 x=44 y=934 width=26 height=24 xoffset=-0 yoffset=8 xadvance=25 page=0 chnl=15 +char id=912 x=426 y=416 width=16 height=28 xoffset=-1 yoffset=5 xadvance=13 page=0 chnl=15 +char id=913 x=160 y=799 width=22 height=24 xoffset=-1 yoffset=9 xadvance=21 page=0 chnl=15 +char id=914 x=257 y=271 width=20 height=24 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=915 x=406 y=108 width=17 height=24 xoffset=-0 yoffset=9 xadvance=17 page=0 chnl=15 +char id=916 x=160 y=826 width=22 height=24 xoffset=-1 yoffset=9 xadvance=21 page=0 chnl=15 +char id=917 x=302 y=27 width=19 height=24 xoffset=-0 yoffset=9 xadvance=18 page=0 chnl=15 +char id=918 x=302 y=54 width=19 height=24 xoffset=-1 yoffset=9 xadvance=18 page=0 chnl=15 +char id=919 x=257 y=298 width=20 height=24 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=920 x=134 y=474 width=23 height=25 xoffset=-0 yoffset=8 xadvance=22 page=0 chnl=15 +char id=921 x=482 y=763 width=7 height=24 xoffset=-0 yoffset=9 xadvance=6 page=0 chnl=15 +char id=922 x=210 y=190 width=21 height=24 xoffset=-0 yoffset=9 xadvance=20 page=0 chnl=15 +char id=923 x=210 y=217 width=21 height=24 xoffset=-1 yoffset=9 xadvance=19 page=0 chnl=15 +char id=924 x=134 y=694 width=23 height=24 xoffset=-0 yoffset=9 xadvance=23 page=0 chnl=15 +char id=925 x=257 y=325 width=20 height=24 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=926 x=302 y=81 width=19 height=24 xoffset=-1 yoffset=9 xadvance=18 page=0 chnl=15 +char id=927 x=134 y=502 width=23 height=25 xoffset=-1 yoffset=8 xadvance=22 page=0 chnl=15 +char id=928 x=257 y=352 width=20 height=24 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=929 x=324 y=853 width=18 height=24 xoffset=-0 yoffset=9 xadvance=18 page=0 chnl=15 +char id=931 x=302 y=108 width=19 height=24 xoffset=-1 yoffset=9 xadvance=18 page=0 chnl=15 +char id=932 x=257 y=379 width=20 height=24 xoffset=-1 yoffset=9 xadvance=18 page=0 chnl=15 +char id=933 x=210 y=244 width=21 height=24 xoffset=-1 yoffset=9 xadvance=20 page=0 chnl=15 +char id=934 x=106 y=332 width=24 height=24 xoffset=-1 yoffset=9 xadvance=23 page=0 chnl=15 +char id=935 x=210 y=271 width=21 height=24 xoffset=-1 yoffset=9 xadvance=20 page=0 chnl=15 +char id=936 x=160 y=853 width=22 height=24 xoffset=-0 yoffset=9 xadvance=22 page=0 chnl=15 +char id=937 x=160 y=880 width=22 height=24 xoffset=-1 yoffset=8 xadvance=21 page=0 chnl=15 +char id=938 x=465 y=207 width=13 height=30 xoffset=-3 yoffset=2 xadvance=6 page=0 chnl=15 +char id=939 x=185 y=637 width=21 height=30 xoffset=-1 yoffset=2 xadvance=20 page=0 chnl=15 +char id=940 x=234 y=848 width=20 height=28 xoffset=-0 yoffset=5 xadvance=19 page=0 chnl=15 +char id=941 x=366 y=0 width=17 height=28 xoffset=-1 yoffset=5 xadvance=16 page=0 chnl=15 +char id=942 x=345 y=578 width=17 height=35 xoffset=-0 yoffset=5 xadvance=17 page=0 chnl=15 +char id=943 x=482 y=450 width=9 height=28 xoffset=-0 yoffset=5 xadvance=8 page=0 chnl=15 +char id=944 x=366 y=31 width=17 height=28 xoffset=-0 yoffset=5 xadvance=16 page=0 chnl=15 +char id=945 x=257 y=832 width=20 height=19 xoffset=-0 yoffset=14 xadvance=19 page=0 chnl=15 +char id=946 x=345 y=688 width=17 height=32 xoffset=-0 yoffset=8 xadvance=17 page=0 chnl=15 +char id=947 x=324 y=351 width=18 height=26 xoffset=-1 yoffset=14 xadvance=17 page=0 chnl=15 +char id=948 x=324 y=581 width=18 height=25 xoffset=-0 yoffset=8 xadvance=18 page=0 chnl=15 +char id=949 x=406 y=742 width=17 height=19 xoffset=-1 yoffset=14 xadvance=16 page=0 chnl=15 +char id=950 x=426 y=317 width=16 height=31 xoffset=-0 yoffset=8 xadvance=16 page=0 chnl=15 +char id=951 x=366 y=975 width=17 height=26 xoffset=-0 yoffset=14 xadvance=17 page=0 chnl=15 +char id=952 x=324 y=609 width=18 height=25 xoffset=-0 yoffset=8 xadvance=18 page=0 chnl=15 +char id=953 x=482 y=481 width=9 height=18 xoffset=-0 yoffset=14 xadvance=8 page=0 chnl=15 +char id=954 x=406 y=962 width=17 height=18 xoffset=-0 yoffset=14 xadvance=16 page=0 chnl=15 +char id=955 x=302 y=135 width=19 height=24 xoffset=-1 yoffset=8 xadvance=18 page=0 chnl=15 +char id=956 x=386 y=0 width=17 height=26 xoffset=-0 yoffset=14 xadvance=16 page=0 chnl=15 +char id=957 x=345 y=404 width=18 height=18 xoffset=-1 yoffset=14 xadvance=17 page=0 chnl=15 +char id=958 x=426 y=248 width=16 height=32 xoffset=-0 yoffset=8 xadvance=16 page=0 chnl=15 +char id=959 x=302 y=723 width=19 height=19 xoffset=-1 yoffset=14 xadvance=18 page=0 chnl=15 +char id=960 x=257 y=897 width=20 height=18 xoffset=-1 yoffset=14 xadvance=19 page=0 chnl=15 +char id=961 x=324 y=380 width=18 height=26 xoffset=-0 yoffset=14 xadvance=17 page=0 chnl=15 +char id=962 x=386 y=29 width=17 height=26 xoffset=-0 yoffset=14 xadvance=16 page=0 chnl=15 +char id=963 x=257 y=854 width=20 height=19 xoffset=-0 yoffset=14 xadvance=19 page=0 chnl=15 +char id=964 x=406 y=983 width=17 height=18 xoffset=-1 yoffset=14 xadvance=16 page=0 chnl=15 +char id=965 x=406 y=764 width=17 height=19 xoffset=-0 yoffset=14 xadvance=16 page=0 chnl=15 +char id=966 x=106 y=80 width=24 height=31 xoffset=-0 yoffset=8 xadvance=24 page=0 chnl=15 +char id=967 x=324 y=409 width=18 height=26 xoffset=-1 yoffset=14 xadvance=16 page=0 chnl=15 +char id=968 x=160 y=242 width=22 height=31 xoffset=-0 yoffset=8 xadvance=22 page=0 chnl=15 +char id=969 x=106 y=594 width=24 height=19 xoffset=-0 yoffset=14 xadvance=23 page=0 chnl=15 +char id=970 x=465 y=751 width=12 height=25 xoffset=-1 yoffset=8 xadvance=10 page=0 chnl=15 +char id=971 x=386 y=766 width=17 height=25 xoffset=-0 yoffset=8 xadvance=16 page=0 chnl=15 +char id=972 x=280 y=577 width=19 height=28 xoffset=-1 yoffset=5 xadvance=18 page=0 chnl=15 +char id=973 x=366 y=62 width=17 height=28 xoffset=-0 yoffset=5 xadvance=16 page=0 chnl=15 +char id=974 x=106 y=246 width=24 height=28 xoffset=-0 yoffset=5 xadvance=23 page=0 chnl=15 +char id=976 x=426 y=643 width=16 height=24 xoffset=0 yoffset=3 xadvance=17 page=0 chnl=15 +char id=977 x=324 y=880 width=18 height=24 xoffset=-1 yoffset=3 xadvance=16 page=0 chnl=15 +char id=978 x=76 y=870 width=25 height=23 xoffset=-1 yoffset=4 xadvance=24 page=0 chnl=15 +char id=979 x=0 y=787 width=31 height=23 xoffset=-1 yoffset=4 xadvance=29 page=0 chnl=15 +char id=980 x=76 y=381 width=25 height=29 xoffset=-1 yoffset=-2 xadvance=24 page=0 chnl=15 +char id=981 x=345 y=792 width=17 height=31 xoffset=0 yoffset=3 xadvance=17 page=0 chnl=15 +char id=982 x=185 y=231 width=22 height=16 xoffset=-1 yoffset=11 xadvance=22 page=0 chnl=15 +char id=983 x=257 y=676 width=20 height=23 xoffset=-1 yoffset=11 xadvance=18 page=0 chnl=15 +char id=984 x=134 y=68 width=23 height=30 xoffset=0 yoffset=4 xadvance=24 page=0 chnl=15 +char id=985 x=426 y=724 width=16 height=23 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=15 +char id=986 x=210 y=432 width=21 height=23 xoffset=0 yoffset=4 xadvance=22 page=0 chnl=15 +char id=987 x=406 y=135 width=17 height=24 xoffset=-1 yoffset=10 xadvance=14 page=0 chnl=15 +char id=988 x=302 y=324 width=19 height=23 xoffset=-1 yoffset=4 xadvance=18 page=0 chnl=15 +char id=989 x=426 y=750 width=16 height=23 xoffset=-1 yoffset=11 xadvance=15 page=0 chnl=15 +char id=990 x=257 y=702 width=20 height=23 xoffset=-1 yoffset=4 xadvance=19 page=0 chnl=15 +char id=991 x=426 y=776 width=16 height=23 xoffset=-1 yoffset=4 xadvance=15 page=0 chnl=15 +char id=992 x=76 y=282 width=25 height=30 xoffset=-1 yoffset=4 xadvance=24 page=0 chnl=15 +char id=993 x=280 y=787 width=19 height=26 xoffset=-1 yoffset=8 xadvance=18 page=0 chnl=15 +char id=994 x=44 y=385 width=28 height=30 xoffset=-1 yoffset=4 xadvance=27 page=0 chnl=15 +char id=995 x=44 y=605 width=27 height=23 xoffset=-1 yoffset=11 xadvance=25 page=0 chnl=15 +char id=996 x=210 y=458 width=21 height=23 xoffset=0 yoffset=4 xadvance=20 page=0 chnl=15 +char id=997 x=406 y=162 width=17 height=24 xoffset=0 yoffset=3 xadvance=17 page=0 chnl=15 +char id=998 x=160 y=442 width=22 height=30 xoffset=-1 yoffset=4 xadvance=22 page=0 chnl=15 +char id=999 x=446 y=566 width=15 height=16 xoffset=-1 yoffset=11 xadvance=15 page=0 chnl=15 +char id=1000 x=345 y=54 width=18 height=23 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=15 +char id=1001 x=406 y=350 width=17 height=23 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=15 +char id=1002 x=210 y=484 width=21 height=23 xoffset=0 yoffset=4 xadvance=21 page=0 chnl=15 +char id=1003 x=210 y=632 width=21 height=16 xoffset=-1 yoffset=11 xadvance=19 page=0 chnl=15 +char id=1004 x=134 y=721 width=23 height=24 xoffset=0 yoffset=3 xadvance=23 page=0 chnl=15 +char id=1005 x=426 y=209 width=17 height=17 xoffset=0 yoffset=10 xadvance=17 page=0 chnl=15 +char id=1006 x=406 y=376 width=17 height=23 xoffset=-1 yoffset=4 xadvance=16 page=0 chnl=15 +char id=1007 x=446 y=806 width=14 height=24 xoffset=-1 yoffset=3 xadvance=13 page=0 chnl=15 +char id=1008 x=257 y=918 width=20 height=16 xoffset=-1 yoffset=11 xadvance=18 page=0 chnl=15 +char id=1009 x=406 y=402 width=17 height=23 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=15 +char id=1010 x=465 y=19 width=14 height=16 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=15 +char id=1011 x=465 y=536 width=12 height=31 xoffset=-4 yoffset=3 xadvance=9 page=0 chnl=15 +char id=1012 x=134 y=775 width=23 height=23 xoffset=0 yoffset=4 xadvance=24 page=0 chnl=15 +char id=1013 x=465 y=38 width=14 height=16 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=15 +char id=1014 x=465 y=57 width=14 height=16 xoffset=-1 yoffset=11 xadvance=13 page=0 chnl=15 +char id=1015 x=302 y=350 width=19 height=23 xoffset=-1 yoffset=4 xadvance=18 page=0 chnl=15 +char id=1016 x=345 y=826 width=17 height=31 xoffset=-1 yoffset=3 xadvance=16 page=0 chnl=15 +char id=1017 x=160 y=987 width=22 height=23 xoffset=0 yoffset=4 xadvance=22 page=0 chnl=15 +char id=1018 x=44 y=27 width=30 height=23 xoffset=-1 yoffset=4 xadvance=29 page=0 chnl=15 +char id=1019 x=185 y=0 width=22 height=23 xoffset=-1 yoffset=11 xadvance=21 page=0 chnl=15 +char id=1020 x=406 y=428 width=17 height=23 xoffset=-1 yoffset=11 xadvance=16 page=0 chnl=15 +char id=1021 x=185 y=26 width=22 height=23 xoffset=0 yoffset=4 xadvance=22 page=0 chnl=15 +char id=1022 x=185 y=52 width=22 height=23 xoffset=0 yoffset=4 xadvance=22 page=0 chnl=15 +char id=1023 x=185 y=78 width=22 height=23 xoffset=0 yoffset=4 xadvance=22 page=0 chnl=15 +char id=1024 x=280 y=312 width=19 height=31 xoffset=-0 yoffset=1 xadvance=18 page=0 chnl=15 +char id=1025 x=280 y=512 width=19 height=30 xoffset=-0 yoffset=2 xadvance=18 page=0 chnl=15 +char id=1026 x=44 y=783 width=26 height=31 xoffset=-1 yoffset=9 xadvance=25 page=0 chnl=15 +char id=1027 x=345 y=860 width=17 height=31 xoffset=-0 yoffset=1 xadvance=17 page=0 chnl=15 +char id=1028 x=185 y=916 width=21 height=25 xoffset=-1 yoffset=8 xadvance=20 page=0 chnl=15 +char id=1029 x=234 y=935 width=20 height=25 xoffset=-1 yoffset=8 xadvance=19 page=0 chnl=15 +char id=1030 x=482 y=790 width=7 height=24 xoffset=-0 yoffset=9 xadvance=6 page=0 chnl=15 +char id=1031 x=465 y=240 width=13 height=30 xoffset=-3 yoffset=2 xadvance=6 page=0 chnl=15 +char id=1032 x=426 y=670 width=16 height=24 xoffset=-1 yoffset=9 xadvance=15 page=0 chnl=15 +char id=1033 x=0 y=414 width=33 height=24 xoffset=-1 yoffset=9 xadvance=32 page=0 chnl=15 +char id=1034 x=44 y=173 width=29 height=24 xoffset=-0 yoffset=9 xadvance=28 page=0 chnl=15 +char id=1035 x=44 y=961 width=26 height=24 xoffset=-1 yoffset=9 xadvance=25 page=0 chnl=15 +char id=1036 x=234 y=550 width=20 height=31 xoffset=-0 yoffset=1 xadvance=20 page=0 chnl=15 +char id=1037 x=234 y=584 width=20 height=31 xoffset=-0 yoffset=1 xadvance=19 page=0 chnl=15 +char id=1038 x=280 y=0 width=19 height=33 xoffset=-0 yoffset=1 xadvance=19 page=0 chnl=15 +char id=1039 x=234 y=752 width=20 height=29 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=1040 x=160 y=907 width=22 height=24 xoffset=-1 yoffset=9 xadvance=21 page=0 chnl=15 +char id=1041 x=324 y=907 width=18 height=24 xoffset=-0 yoffset=9 xadvance=18 page=0 chnl=15 +char id=1042 x=257 y=406 width=20 height=24 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=1043 x=406 y=189 width=17 height=24 xoffset=-0 yoffset=9 xadvance=17 page=0 chnl=15 +char id=1044 x=76 y=413 width=25 height=29 xoffset=-1 yoffset=9 xadvance=23 page=0 chnl=15 +char id=1045 x=302 y=162 width=19 height=24 xoffset=-0 yoffset=9 xadvance=18 page=0 chnl=15 +char id=1046 x=44 y=0 width=30 height=24 xoffset=-1 yoffset=9 xadvance=29 page=0 chnl=15 +char id=1047 x=234 y=963 width=20 height=25 xoffset=-1 yoffset=8 xadvance=19 page=0 chnl=15 +char id=1048 x=257 y=433 width=20 height=24 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=1049 x=234 y=140 width=20 height=32 xoffset=-0 yoffset=1 xadvance=19 page=0 chnl=15 +char id=1050 x=210 y=298 width=21 height=24 xoffset=-0 yoffset=9 xadvance=20 page=0 chnl=15 +char id=1051 x=160 y=934 width=22 height=24 xoffset=-1 yoffset=9 xadvance=21 page=0 chnl=15 +char id=1052 x=134 y=748 width=23 height=24 xoffset=-0 yoffset=9 xadvance=23 page=0 chnl=15 +char id=1053 x=257 y=460 width=20 height=24 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=1054 x=134 y=530 width=23 height=25 xoffset=-1 yoffset=8 xadvance=22 page=0 chnl=15 +char id=1055 x=257 y=487 width=20 height=24 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=1056 x=324 y=934 width=18 height=24 xoffset=-0 yoffset=9 xadvance=18 page=0 chnl=15 +char id=1057 x=185 y=944 width=21 height=25 xoffset=-1 yoffset=8 xadvance=20 page=0 chnl=15 +char id=1058 x=257 y=514 width=20 height=24 xoffset=-1 yoffset=9 xadvance=18 page=0 chnl=15 +char id=1059 x=302 y=189 width=19 height=24 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=1060 x=106 y=359 width=24 height=24 xoffset=-1 yoffset=9 xadvance=23 page=0 chnl=15 +char id=1061 x=210 y=325 width=21 height=24 xoffset=-1 yoffset=9 xadvance=20 page=0 chnl=15 +char id=1062 x=160 y=475 width=22 height=29 xoffset=-0 yoffset=9 xadvance=21 page=0 chnl=15 +char id=1063 x=302 y=216 width=19 height=24 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=1064 x=44 y=524 width=27 height=24 xoffset=-0 yoffset=9 xadvance=27 page=0 chnl=15 +char id=1065 x=0 y=901 width=30 height=29 xoffset=-0 yoffset=9 xadvance=29 page=0 chnl=15 +char id=1066 x=76 y=816 width=25 height=24 xoffset=-1 yoffset=9 xadvance=23 page=0 chnl=15 +char id=1067 x=106 y=386 width=24 height=24 xoffset=-0 yoffset=9 xadvance=24 page=0 chnl=15 +char id=1068 x=324 y=961 width=18 height=24 xoffset=-0 yoffset=9 xadvance=18 page=0 chnl=15 +char id=1069 x=185 y=972 width=21 height=25 xoffset=-1 yoffset=8 xadvance=20 page=0 chnl=15 +char id=1070 x=44 y=451 width=28 height=25 xoffset=-0 yoffset=8 xadvance=28 page=0 chnl=15 +char id=1071 x=257 y=541 width=20 height=24 xoffset=-1 yoffset=9 xadvance=19 page=0 chnl=15 +char id=1072 x=406 y=786 width=17 height=19 xoffset=-1 yoffset=14 xadvance=16 page=0 chnl=15 +char id=1073 x=324 y=263 width=18 height=27 xoffset=-0 yoffset=6 xadvance=18 page=0 chnl=15 +char id=1074 x=426 y=0 width=17 height=18 xoffset=-0 yoffset=14 xadvance=17 page=0 chnl=15 +char id=1075 x=465 y=962 width=12 height=18 xoffset=-0 yoffset=14 xadvance=12 page=0 chnl=15 +char id=1076 x=210 y=510 width=21 height=23 xoffset=-1 yoffset=14 xadvance=19 page=0 chnl=15 +char id=1077 x=406 y=808 width=17 height=19 xoffset=-1 yoffset=14 xadvance=17 page=0 chnl=15 +char id=1078 x=106 y=638 width=24 height=18 xoffset=-1 yoffset=14 xadvance=22 page=0 chnl=15 +char id=1079 x=406 y=830 width=17 height=19 xoffset=-1 yoffset=14 xadvance=16 page=0 chnl=15 +char id=1080 x=426 y=21 width=17 height=18 xoffset=-0 yoffset=14 xadvance=17 page=0 chnl=15 +char id=1081 x=386 y=58 width=17 height=26 xoffset=-0 yoffset=6 xadvance=17 page=0 chnl=15 +char id=1082 x=426 y=42 width=17 height=18 xoffset=-0 yoffset=14 xadvance=16 page=0 chnl=15 +char id=1083 x=345 y=425 width=18 height=18 xoffset=-1 yoffset=14 xadvance=17 page=0 chnl=15 +char id=1084 x=210 y=611 width=21 height=18 xoffset=-0 yoffset=14 xadvance=21 page=0 chnl=15 +char id=1085 x=426 y=63 width=17 height=18 xoffset=-0 yoffset=14 xadvance=17 page=0 chnl=15 +char id=1086 x=302 y=745 width=19 height=19 xoffset=-1 yoffset=14 xadvance=18 page=0 chnl=15 +char id=1087 x=426 y=84 width=17 height=18 xoffset=-0 yoffset=14 xadvance=17 page=0 chnl=15 +char id=1088 x=324 y=438 width=18 height=26 xoffset=-0 yoffset=14 xadvance=17 page=0 chnl=15 +char id=1089 x=406 y=852 width=17 height=19 xoffset=-0 yoffset=14 xadvance=16 page=0 chnl=15 +char id=1090 x=426 y=105 width=17 height=18 xoffset=-1 yoffset=14 xadvance=16 page=0 chnl=15 +char id=1091 x=386 y=87 width=17 height=26 xoffset=-0 yoffset=14 xadvance=17 page=0 chnl=15 +char id=1092 x=106 y=114 width=24 height=31 xoffset=-0 yoffset=8 xadvance=24 page=0 chnl=15 +char id=1093 x=345 y=446 width=18 height=18 xoffset=-1 yoffset=14 xadvance=16 page=0 chnl=15 +char id=1094 x=302 y=376 width=19 height=23 xoffset=-0 yoffset=14 xadvance=19 page=0 chnl=15 +char id=1095 x=426 y=126 width=17 height=18 xoffset=-0 yoffset=14 xadvance=17 page=0 chnl=15 +char id=1096 x=106 y=21 width=25 height=18 xoffset=-0 yoffset=14 xadvance=24 page=0 chnl=15 +char id=1097 x=44 y=631 width=27 height=23 xoffset=-0 yoffset=14 xadvance=26 page=0 chnl=15 +char id=1098 x=134 y=905 width=23 height=18 xoffset=-1 yoffset=14 xadvance=22 page=0 chnl=15 +char id=1099 x=134 y=926 width=23 height=18 xoffset=-0 yoffset=14 xadvance=23 page=0 chnl=15 +char id=1100 x=426 y=147 width=17 height=18 xoffset=-0 yoffset=14 xadvance=17 page=0 chnl=15 +char id=1101 x=406 y=874 width=17 height=19 xoffset=-1 yoffset=14 xadvance=16 page=0 chnl=15 +char id=1102 x=106 y=616 width=24 height=19 xoffset=-0 yoffset=14 xadvance=24 page=0 chnl=15 +char id=1103 x=426 y=168 width=17 height=18 xoffset=-1 yoffset=14 xadvance=16 page=0 chnl=15 +char id=1104 x=386 y=116 width=17 height=26 xoffset=-1 yoffset=7 xadvance=17 page=0 chnl=15 +char id=1105 x=386 y=794 width=17 height=25 xoffset=-1 yoffset=8 xadvance=17 page=0 chnl=15 +char id=1106 x=324 y=34 width=18 height=31 xoffset=-1 yoffset=8 xadvance=17 page=0 chnl=15 +char id=1107 x=465 y=694 width=12 height=26 xoffset=-0 yoffset=7 xadvance=12 page=0 chnl=15 +char id=1108 x=406 y=896 width=17 height=19 xoffset=-0 yoffset=14 xadvance=16 page=0 chnl=15 +char id=1109 x=406 y=918 width=17 height=19 xoffset=-1 yoffset=14 xadvance=16 page=0 chnl=15 +char id=1110 x=482 y=817 width=7 height=24 xoffset=-0 yoffset=8 xadvance=7 page=0 chnl=15 +char id=1111 x=465 y=387 width=13 height=25 xoffset=-2 yoffset=8 xadvance=9 page=0 chnl=15 +char id=1112 x=446 y=149 width=15 height=31 xoffset=-9 yoffset=8 xadvance=7 page=0 chnl=15 +char id=1113 x=44 y=326 width=29 height=18 xoffset=-1 yoffset=14 xadvance=28 page=0 chnl=15 +char id=1114 x=76 y=209 width=26 height=18 xoffset=-0 yoffset=14 xadvance=25 page=0 chnl=15 +char id=1115 x=324 y=988 width=18 height=24 xoffset=-1 yoffset=8 xadvance=17 page=0 chnl=15 +char id=1116 x=426 y=505 width=16 height=26 xoffset=-0 yoffset=7 xadvance=16 page=0 chnl=15 +char id=1117 x=386 y=145 width=17 height=26 xoffset=-0 yoffset=7 xadvance=17 page=0 chnl=15 +char id=1118 x=345 y=616 width=17 height=34 xoffset=-0 yoffset=6 xadvance=17 page=0 chnl=15 +char id=1119 x=406 y=454 width=17 height=23 xoffset=-0 yoffset=14 xadvance=17 page=0 chnl=15 +char id=1120 x=0 y=92 width=38 height=23 xoffset=0 yoffset=4 xadvance=38 page=0 chnl=15 +char id=1121 x=185 y=250 width=22 height=16 xoffset=-1 yoffset=11 xadvance=21 page=0 chnl=15 +char id=1122 x=134 y=801 width=23 height=23 xoffset=-1 yoffset=4 xadvance=22 page=0 chnl=15 +char id=1123 x=302 y=243 width=19 height=24 xoffset=-1 yoffset=3 xadvance=18 page=0 chnl=15 +char id=1124 x=0 y=618 width=32 height=23 xoffset=-1 yoffset=4 xadvance=31 page=0 chnl=15 +char id=1125 x=106 y=659 width=24 height=16 xoffset=-1 yoffset=11 xadvance=22 page=0 chnl=15 +char id=1126 x=77 y=27 width=26 height=23 xoffset=-1 yoffset=4 xadvance=24 page=0 chnl=15 +char id=1127 x=210 y=651 width=21 height=16 xoffset=-1 yoffset=11 xadvance=19 page=0 chnl=15 +char id=1128 x=0 y=205 width=35 height=23 xoffset=-1 yoffset=4 xadvance=34 page=0 chnl=15 +char id=1129 x=44 y=347 width=29 height=16 xoffset=-1 yoffset=11 xadvance=27 page=0 chnl=15 +char id=1130 x=0 y=813 width=31 height=23 xoffset=-1 yoffset=4 xadvance=29 page=0 chnl=15 +char id=1131 x=106 y=678 width=24 height=16 xoffset=-1 yoffset=11 xadvance=23 page=0 chnl=15 +char id=1132 x=0 y=0 width=41 height=23 xoffset=-1 yoffset=4 xadvance=39 page=0 chnl=15 +char id=1133 x=0 y=670 width=32 height=16 xoffset=-1 yoffset=11 xadvance=30 page=0 chnl=15 +char id=1134 x=302 y=884 width=18 height=34 xoffset=-1 yoffset=0 xadvance=17 page=0 chnl=15 +char id=1135 x=446 y=282 width=15 height=27 xoffset=-1 yoffset=7 xadvance=13 page=0 chnl=15 +char id=1136 x=76 y=53 width=26 height=23 xoffset=-1 yoffset=4 xadvance=24 page=0 chnl=15 +char id=1137 x=185 y=104 width=22 height=23 xoffset=-1 yoffset=11 xadvance=21 page=0 chnl=15 +char id=1138 x=134 y=827 width=23 height=23 xoffset=0 yoffset=4 xadvance=24 page=0 chnl=15 +char id=1139 x=426 y=975 width=16 height=16 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=15 +char id=1140 x=44 y=479 width=28 height=23 xoffset=-1 yoffset=4 xadvance=27 page=0 chnl=15 +char id=1141 x=257 y=937 width=20 height=16 xoffset=-1 yoffset=11 xadvance=19 page=0 chnl=15 +char id=1142 x=44 y=418 width=28 height=30 xoffset=-1 yoffset=-3 xadvance=27 page=0 chnl=15 +char id=1143 x=257 y=728 width=20 height=23 xoffset=-1 yoffset=4 xadvance=19 page=0 chnl=15 +char id=1144 x=0 y=144 width=36 height=30 xoffset=0 yoffset=4 xadvance=36 page=0 chnl=15 +char id=1145 x=44 y=200 width=29 height=23 xoffset=0 yoffset=11 xadvance=29 page=0 chnl=15 +char id=1146 x=44 y=906 width=26 height=25 xoffset=-1 yoffset=3 xadvance=25 page=0 chnl=15 +char id=1147 x=345 y=467 width=18 height=18 xoffset=0 yoffset=10 xadvance=19 page=0 chnl=15 +char id=1148 x=0 y=26 width=39 height=32 xoffset=0 yoffset=-5 xadvance=39 page=0 chnl=15 +char id=1149 x=44 y=849 width=26 height=26 xoffset=0 yoffset=1 xadvance=26 page=0 chnl=15 +char id=1150 x=0 y=61 width=38 height=28 xoffset=0 yoffset=-1 xadvance=38 page=0 chnl=15 +char id=1151 x=134 y=1003 width=22 height=21 xoffset=-1 yoffset=6 xadvance=21 page=0 chnl=15 +char id=1152 x=185 y=670 width=21 height=30 xoffset=0 yoffset=4 xadvance=22 page=0 chnl=15 +char id=1153 x=446 y=859 width=14 height=23 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=15 +char id=1154 x=465 y=415 width=13 height=24 xoffset=-1 yoffset=3 xadvance=11 page=0 chnl=15 +char id=1155 x=465 y=95 width=14 height=8 xoffset=-7 yoffset=2 xadvance=0 page=0 chnl=15 +char id=1156 x=465 y=997 width=12 height=6 xoffset=-6 yoffset=2 xadvance=0 page=0 chnl=15 +char id=1157 x=496 y=198 width=6 height=8 xoffset=-3 yoffset=3 xadvance=0 page=0 chnl=15 +char id=1158 x=496 y=209 width=6 height=8 xoffset=-3 yoffset=3 xadvance=0 page=0 chnl=15 +char id=1159 x=210 y=1018 width=20 height=6 xoffset=-10 yoffset=1 xadvance=0 page=0 chnl=15 +char id=1160 x=0 y=326 width=34 height=26 xoffset=-17 yoffset=5 xadvance=0 page=0 chnl=15 +char id=1161 x=0 y=519 width=32 height=31 xoffset=-16 yoffset=2 xadvance=0 page=0 chnl=15 +char id=1162 x=44 y=988 width=25 height=36 xoffset=-1 yoffset=-3 xadvance=24 page=0 chnl=15 +char id=1163 x=280 y=816 width=19 height=26 xoffset=-1 yoffset=5 xadvance=18 page=0 chnl=15 +char id=1164 x=257 y=754 width=20 height=23 xoffset=-1 yoffset=4 xadvance=19 page=0 chnl=15 +char id=1165 x=426 y=697 width=16 height=24 xoffset=-1 yoffset=3 xadvance=16 page=0 chnl=15 +char id=1166 x=302 y=402 width=19 height=23 xoffset=-1 yoffset=4 xadvance=18 page=0 chnl=15 +char id=1167 x=345 y=80 width=18 height=23 xoffset=-2 yoffset=11 xadvance=16 page=0 chnl=15 +char id=1168 x=345 y=959 width=17 height=29 xoffset=-0 yoffset=3 xadvance=17 page=0 chnl=15 +char id=1169 x=465 y=914 width=12 height=23 xoffset=-0 yoffset=9 xadvance=12 page=0 chnl=15 +char id=1170 x=257 y=568 width=20 height=24 xoffset=-1 yoffset=9 xadvance=18 page=0 chnl=15 +char id=1171 x=446 y=545 width=15 height=18 xoffset=-1 yoffset=14 xadvance=13 page=0 chnl=15 +char id=1172 x=185 y=703 width=21 height=30 xoffset=-1 yoffset=4 xadvance=21 page=0 chnl=15 +char id=1173 x=345 y=106 width=18 height=23 xoffset=-1 yoffset=11 xadvance=17 page=0 chnl=15 +char id=1174 x=0 y=586 width=32 height=29 xoffset=-1 yoffset=9 xadvance=31 page=0 chnl=15 +char id=1175 x=76 y=79 width=26 height=23 xoffset=-1 yoffset=14 xadvance=24 page=0 chnl=15 +char id=1176 x=234 y=175 width=20 height=32 xoffset=-1 yoffset=8 xadvance=19 page=0 chnl=15 +char id=1177 x=386 y=174 width=17 height=26 xoffset=-1 yoffset=14 xadvance=16 page=0 chnl=15 +char id=1178 x=134 y=101 width=23 height=29 xoffset=-0 yoffset=9 xadvance=22 page=0 chnl=15 +char id=1179 x=302 y=428 width=19 height=23 xoffset=-0 yoffset=14 xadvance=18 page=0 chnl=15 +char id=1180 x=106 y=413 width=24 height=23 xoffset=-1 yoffset=4 xadvance=22 page=0 chnl=15 +char id=1181 x=345 y=488 width=18 height=16 xoffset=-1 yoffset=11 xadvance=16 page=0 chnl=15 +char id=1182 x=106 y=439 width=24 height=23 xoffset=-1 yoffset=4 xadvance=22 page=0 chnl=15 +char id=1183 x=345 y=0 width=18 height=24 xoffset=-1 yoffset=3 xadvance=16 page=0 chnl=15 +char id=1184 x=44 y=551 width=27 height=24 xoffset=-1 yoffset=9 xadvance=26 page=0 chnl=15 +char id=1185 x=134 y=947 width=23 height=18 xoffset=-1 yoffset=14 xadvance=21 page=0 chnl=15 +char id=1186 x=160 y=507 width=22 height=29 xoffset=-0 yoffset=9 xadvance=21 page=0 chnl=15 +char id=1187 x=302 y=454 width=19 height=23 xoffset=-0 yoffset=14 xadvance=19 page=0 chnl=15 +char id=1188 x=44 y=226 width=29 height=23 xoffset=-1 yoffset=4 xadvance=28 page=0 chnl=15 +char id=1189 x=185 y=269 width=22 height=16 xoffset=-1 yoffset=11 xadvance=20 page=0 chnl=15 +char id=1190 x=0 y=293 width=34 height=30 xoffset=-1 yoffset=4 xadvance=34 page=0 chnl=15 +char id=1191 x=44 y=657 width=27 height=23 xoffset=-1 yoffset=11 xadvance=26 page=0 chnl=15 +char id=1192 x=185 y=130 width=22 height=23 xoffset=0 yoffset=4 xadvance=22 page=0 chnl=15 +char id=1193 x=446 y=585 width=15 height=16 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=15 +char id=1194 x=185 y=467 width=21 height=32 xoffset=-1 yoffset=8 xadvance=20 page=0 chnl=15 +char id=1195 x=386 y=203 width=17 height=26 xoffset=-0 yoffset=14 xadvance=16 page=0 chnl=15 +char id=1196 x=234 y=784 width=20 height=29 xoffset=0 yoffset=4 xadvance=20 page=0 chnl=15 +char id=1197 x=366 y=1004 width=16 height=20 xoffset=-1 yoffset=11 xadvance=14 page=0 chnl=15 +char id=1198 x=210 y=352 width=21 height=24 xoffset=-1 yoffset=9 xadvance=20 page=0 chnl=15 +char id=1199 x=324 y=467 width=18 height=26 xoffset=-1 yoffset=14 xadvance=17 page=0 chnl=15 +char id=1200 x=76 y=896 width=25 height=23 xoffset=-1 yoffset=4 xadvance=24 page=0 chnl=15 +char id=1201 x=345 y=132 width=18 height=23 xoffset=-1 yoffset=11 xadvance=16 page=0 chnl=15 +char id=1202 x=134 y=133 width=23 height=29 xoffset=-1 yoffset=9 xadvance=22 page=0 chnl=15 +char id=1203 x=257 y=780 width=20 height=23 xoffset=-1 yoffset=14 xadvance=18 page=0 chnl=15 +char id=1204 x=44 y=817 width=26 height=29 xoffset=0 yoffset=4 xadvance=26 page=0 chnl=15 +char id=1205 x=210 y=588 width=21 height=20 xoffset=-1 yoffset=11 xadvance=20 page=0 chnl=15 +char id=1206 x=160 y=539 width=22 height=29 xoffset=-0 yoffset=9 xadvance=21 page=0 chnl=15 +char id=1207 x=302 y=480 width=19 height=23 xoffset=-0 yoffset=14 xadvance=18 page=0 chnl=15 +char id=1208 x=134 y=853 width=23 height=23 xoffset=-1 yoffset=4 xadvance=21 page=0 chnl=15 +char id=1209 x=345 y=507 width=18 height=16 xoffset=-1 yoffset=11 xadvance=17 page=0 chnl=15 +char id=1210 x=302 y=270 width=19 height=24 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=1211 x=406 y=216 width=17 height=24 xoffset=-0 yoffset=8 xadvance=17 page=0 chnl=15 +char id=1212 x=44 y=252 width=29 height=23 xoffset=-1 yoffset=4 xadvance=29 page=0 chnl=15 +char id=1213 x=302 y=789 width=19 height=17 xoffset=-1 yoffset=10 xadvance=18 page=0 chnl=15 +char id=1214 x=44 y=88 width=29 height=27 xoffset=-1 yoffset=4 xadvance=29 page=0 chnl=15 +char id=1215 x=302 y=608 width=19 height=21 xoffset=-1 yoffset=10 xadvance=18 page=0 chnl=15 +char id=1216 x=482 y=844 width=7 height=24 xoffset=-0 yoffset=9 xadvance=6 page=0 chnl=15 +char id=1217 x=0 y=696 width=31 height=29 xoffset=-1 yoffset=-2 xadvance=29 page=0 chnl=15 +char id=1218 x=106 y=569 width=24 height=22 xoffset=-1 yoffset=5 xadvance=23 page=0 chnl=15 +char id=1219 x=234 y=618 width=20 height=31 xoffset=-0 yoffset=9 xadvance=20 page=0 chnl=15 +char id=1220 x=386 y=232 width=17 height=26 xoffset=-0 yoffset=14 xadvance=16 page=0 chnl=15 +char id=1221 x=134 y=165 width=23 height=29 xoffset=-1 yoffset=4 xadvance=22 page=0 chnl=15 +char id=1222 x=345 y=232 width=18 height=20 xoffset=-1 yoffset=11 xadvance=16 page=0 chnl=15 +char id=1223 x=234 y=652 width=20 height=31 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=1224 x=386 y=261 width=17 height=26 xoffset=-0 yoffset=14 xadvance=17 page=0 chnl=15 +char id=1225 x=76 y=445 width=25 height=29 xoffset=-1 yoffset=4 xadvance=24 page=0 chnl=15 +char id=1226 x=302 y=632 width=19 height=20 xoffset=-1 yoffset=11 xadvance=18 page=0 chnl=15 +char id=1227 x=134 y=197 width=23 height=29 xoffset=-1 yoffset=4 xadvance=21 page=0 chnl=15 +char id=1228 x=345 y=255 width=18 height=20 xoffset=-1 yoffset=11 xadvance=17 page=0 chnl=15 +char id=1229 x=0 y=933 width=30 height=29 xoffset=-1 yoffset=4 xadvance=29 page=0 chnl=15 +char id=1230 x=185 y=208 width=22 height=20 xoffset=-1 yoffset=11 xadvance=21 page=0 chnl=15 +char id=1231 x=482 y=871 width=7 height=24 xoffset=-0 yoffset=9 xadvance=6 page=0 chnl=15 +char id=1232 x=76 y=477 width=25 height=29 xoffset=-1 yoffset=-2 xadvance=24 page=0 chnl=15 +char id=1233 x=426 y=906 width=16 height=22 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=15 +char id=1234 x=76 y=509 width=25 height=29 xoffset=-1 yoffset=-2 xadvance=24 page=0 chnl=15 +char id=1235 x=426 y=802 width=16 height=23 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=15 +char id=1236 x=0 y=839 width=31 height=23 xoffset=-2 yoffset=4 xadvance=29 page=0 chnl=15 +char id=1237 x=185 y=288 width=22 height=16 xoffset=0 yoffset=11 xadvance=22 page=0 chnl=15 +char id=1238 x=185 y=736 width=21 height=29 xoffset=-1 yoffset=-2 xadvance=20 page=0 chnl=15 +char id=1239 x=446 y=497 width=15 height=22 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=15 +char id=1240 x=160 y=744 width=22 height=25 xoffset=-0 yoffset=8 xadvance=22 page=0 chnl=15 +char id=1241 x=406 y=940 width=17 height=19 xoffset=-0 yoffset=14 xadvance=17 page=0 chnl=15 +char id=1242 x=106 y=214 width=24 height=29 xoffset=-1 yoffset=-2 xadvance=24 page=0 chnl=15 +char id=1243 x=446 y=885 width=14 height=23 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=15 +char id=1244 x=0 y=728 width=31 height=29 xoffset=-1 yoffset=-2 xadvance=29 page=0 chnl=15 +char id=1245 x=106 y=465 width=24 height=23 xoffset=-1 yoffset=4 xadvance=23 page=0 chnl=15 +char id=1246 x=345 y=991 width=17 height=29 xoffset=-1 yoffset=-2 xadvance=17 page=0 chnl=15 +char id=1247 x=446 y=911 width=14 height=23 xoffset=-1 yoffset=4 xadvance=13 page=0 chnl=15 +char id=1248 x=406 y=480 width=17 height=23 xoffset=-1 yoffset=4 xadvance=17 page=0 chnl=15 +char id=1249 x=446 y=419 width=15 height=23 xoffset=-1 yoffset=11 xadvance=15 page=0 chnl=15 +char id=1250 x=76 y=701 width=25 height=27 xoffset=-1 yoffset=0 xadvance=24 page=0 chnl=15 +char id=1251 x=302 y=655 width=19 height=20 xoffset=-1 yoffset=7 xadvance=18 page=0 chnl=15 +char id=1252 x=76 y=541 width=25 height=29 xoffset=-1 yoffset=-2 xadvance=24 page=0 chnl=15 +char id=1253 x=302 y=506 width=19 height=23 xoffset=-1 yoffset=4 xadvance=18 page=0 chnl=15 +char id=1254 x=134 y=229 width=23 height=29 xoffset=0 yoffset=-2 xadvance=24 page=0 chnl=15 +char id=1255 x=426 y=828 width=16 height=23 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=15 +char id=1256 x=134 y=558 width=23 height=25 xoffset=-1 yoffset=8 xadvance=22 page=0 chnl=15 +char id=1257 x=302 y=767 width=19 height=19 xoffset=-1 yoffset=14 xadvance=18 page=0 chnl=15 +char id=1258 x=134 y=261 width=23 height=29 xoffset=0 yoffset=-2 xadvance=24 page=0 chnl=15 +char id=1259 x=426 y=854 width=16 height=23 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=15 +char id=1260 x=185 y=768 width=21 height=29 xoffset=0 yoffset=-2 xadvance=22 page=0 chnl=15 +char id=1261 x=446 y=445 width=15 height=23 xoffset=-1 yoffset=4 xadvance=14 page=0 chnl=15 +char id=1262 x=280 y=346 width=19 height=31 xoffset=-0 yoffset=2 xadvance=19 page=0 chnl=15 +char id=1263 x=345 y=723 width=17 height=32 xoffset=-0 yoffset=8 xadvance=17 page=0 chnl=15 +char id=1264 x=76 y=573 width=25 height=29 xoffset=-1 yoffset=-2 xadvance=23 page=0 chnl=15 +char id=1265 x=324 y=135 width=18 height=30 xoffset=-1 yoffset=4 xadvance=16 page=0 chnl=15 +char id=1266 x=76 y=315 width=25 height=30 xoffset=-1 yoffset=-3 xadvance=23 page=0 chnl=15 +char id=1267 x=324 y=168 width=18 height=30 xoffset=-1 yoffset=4 xadvance=16 page=0 chnl=15 +char id=1268 x=134 y=293 width=23 height=29 xoffset=-1 yoffset=-2 xadvance=21 page=0 chnl=15 +char id=1269 x=345 y=158 width=18 height=23 xoffset=-1 yoffset=4 xadvance=17 page=0 chnl=15 +char id=1270 x=234 y=816 width=20 height=29 xoffset=-1 yoffset=4 xadvance=19 page=0 chnl=15 +char id=1271 x=406 y=1004 width=15 height=20 xoffset=-1 yoffset=11 xadvance=14 page=0 chnl=15 +char id=1272 x=0 y=965 width=30 height=29 xoffset=-1 yoffset=-2 xadvance=28 page=0 chnl=15 +char id=1273 x=134 y=879 width=23 height=23 xoffset=-1 yoffset=4 xadvance=22 page=0 chnl=15 +char id=1274 x=234 y=719 width=20 height=30 xoffset=-1 yoffset=4 xadvance=19 page=0 chnl=15 +char id=1275 x=446 y=471 width=15 height=23 xoffset=-1 yoffset=11 xadvance=14 page=0 chnl=15 +char id=1276 x=76 y=348 width=25 height=30 xoffset=-1 yoffset=4 xadvance=24 page=0 chnl=15 +char id=1277 x=426 y=880 width=16 height=23 xoffset=-1 yoffset=11 xadvance=16 page=0 chnl=15 +char id=1278 x=76 y=922 width=25 height=23 xoffset=-1 yoffset=4 xadvance=24 page=0 chnl=15 +char id=1279 x=345 y=526 width=18 height=16 xoffset=-1 yoffset=11 xadvance=16 page=0 chnl=15 +char id=1280 x=302 y=532 width=19 height=23 xoffset=0 yoffset=4 xadvance=19 page=0 chnl=15 +char id=1281 x=406 y=243 width=17 height=24 xoffset=0 yoffset=3 xadvance=16 page=0 chnl=15 +char id=1282 x=44 y=683 width=27 height=23 xoffset=0 yoffset=4 xadvance=26 page=0 chnl=15 +char id=1283 x=77 y=0 width=26 height=24 xoffset=0 yoffset=3 xadvance=25 page=0 chnl=15 +char id=1284 x=44 y=709 width=27 height=23 xoffset=0 yoffset=4 xadvance=26 page=0 chnl=15 +char id=1285 x=106 y=697 width=24 height=16 xoffset=0 yoffset=11 xadvance=23 page=0 chnl=15 +char id=1286 x=280 y=545 width=19 height=29 xoffset=0 yoffset=4 xadvance=19 page=0 chnl=15 +char id=1287 x=446 y=522 width=15 height=20 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=15 +char id=1288 x=0 y=865 width=31 height=23 xoffset=-1 yoffset=4 xadvance=30 page=0 chnl=15 +char id=1289 x=76 y=230 width=26 height=16 xoffset=-1 yoffset=11 xadvance=25 page=0 chnl=15 +char id=1290 x=0 y=441 width=33 height=23 xoffset=-1 yoffset=4 xadvance=31 page=0 chnl=15 +char id=1291 x=44 y=505 width=28 height=16 xoffset=-1 yoffset=11 xadvance=26 page=0 chnl=15 +char id=1292 x=106 y=491 width=24 height=23 xoffset=0 yoffset=4 xadvance=24 page=0 chnl=15 +char id=1293 x=446 y=0 width=16 height=16 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=15 +char id=1294 x=106 y=517 width=24 height=23 xoffset=0 yoffset=4 xadvance=23 page=0 chnl=15 +char id=1295 x=185 y=307 width=22 height=16 xoffset=-1 yoffset=11 xadvance=20 page=0 chnl=15 +char id=1296 x=406 y=506 width=17 height=23 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=15 +char id=1297 x=465 y=76 width=14 height=16 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=15 +char id=1298 x=160 y=276 width=22 height=31 xoffset=-1 yoffset=9 xadvance=21 page=0 chnl=15 +char id=1299 x=324 y=496 width=18 height=26 xoffset=-1 yoffset=14 xadvance=17 page=0 chnl=15 +char id=1300 x=0 y=231 width=35 height=23 xoffset=-1 yoffset=4 xadvance=33 page=0 chnl=15 +char id=1301 x=106 y=42 width=25 height=16 xoffset=-1 yoffset=11 xadvance=23 page=0 chnl=15 +char id=1302 x=44 y=278 width=29 height=23 xoffset=-1 yoffset=4 xadvance=27 page=0 chnl=15 +char id=1303 x=76 y=105 width=26 height=23 xoffset=-2 yoffset=11 xadvance=23 page=0 chnl=15 +char id=1304 x=0 y=467 width=33 height=23 xoffset=-2 yoffset=4 xadvance=30 page=0 chnl=15 +char id=1305 x=106 y=716 width=24 height=16 xoffset=-1 yoffset=11 xadvance=23 page=0 chnl=15 +char id=1306 x=134 y=325 width=23 height=29 xoffset=0 yoffset=4 xadvance=24 page=0 chnl=15 +char id=1307 x=406 y=532 width=17 height=23 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=15 +char id=1308 x=0 y=644 width=32 height=23 xoffset=-1 yoffset=4 xadvance=31 page=0 chnl=15 +char id=1309 x=106 y=61 width=25 height=16 xoffset=-1 yoffset=11 xadvance=24 page=0 chnl=15 +char id=1310 x=76 y=131 width=26 height=23 xoffset=-1 yoffset=4 xadvance=22 page=0 chnl=15 +char id=1311 x=257 y=956 width=20 height=16 xoffset=-1 yoffset=11 xadvance=18 page=0 chnl=15 +char id=1312 x=0 y=553 width=32 height=30 xoffset=-1 yoffset=4 xadvance=31 page=0 chnl=15 +char id=1313 x=76 y=157 width=26 height=23 xoffset=-1 yoffset=11 xadvance=25 page=0 chnl=15 +char id=1314 x=0 y=381 width=33 height=30 xoffset=-1 yoffset=4 xadvance=32 page=0 chnl=15 +char id=1315 x=44 y=735 width=27 height=23 xoffset=-1 yoffset=11 xadvance=26 page=0 chnl=15 +char id=1316 x=76 y=605 width=25 height=29 xoffset=-1 yoffset=4 xadvance=24 page=0 chnl=15 +char id=1317 x=302 y=678 width=19 height=20 xoffset=-1 yoffset=11 xadvance=18 page=0 chnl=15 +char id=1318 x=134 y=357 width=23 height=29 xoffset=-1 yoffset=4 xadvance=21 page=0 chnl=15 +char id=1319 x=324 y=201 width=18 height=28 xoffset=-1 yoffset=3 xadvance=16 page=0 chnl=15 +char id=8203 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8204 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8205 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8206 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8207 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8210 x=257 y=984 width=20 height=3 xoffset=-2 yoffset=17 xadvance=16 page=0 chnl=15 +char id=8211 x=446 y=653 width=15 height=6 xoffset=-1 yoffset=19 xadvance=14 page=0 chnl=15 +char id=8212 x=210 y=689 width=21 height=6 xoffset=-0 yoffset=19 xadvance=20 page=0 chnl=15 +char id=8213 x=0 y=689 width=32 height=4 xoffset=0 yoffset=16 xadvance=32 page=0 chnl=15 +char id=8214 x=482 y=898 width=7 height=24 xoffset=1 yoffset=3 xadvance=9 page=0 chnl=15 +char id=8215 x=257 y=975 width=20 height=6 xoffset=-2 yoffset=28 xadvance=16 page=0 chnl=15 +char id=8216 x=496 y=0 width=7 height=12 xoffset=-0 yoffset=7 xadvance=7 page=0 chnl=15 +char id=8217 x=496 y=15 width=7 height=12 xoffset=-0 yoffset=8 xadvance=7 page=0 chnl=15 +char id=8218 x=174 y=1013 width=7 height=11 xoffset=0 yoffset=26 xadvance=7 page=0 chnl=15 +char id=8219 x=496 y=44 width=7 height=10 xoffset=2 yoffset=4 xadvance=11 page=0 chnl=15 +char id=8220 x=465 y=468 width=13 height=12 xoffset=-0 yoffset=7 xadvance=13 page=0 chnl=15 +char id=8221 x=465 y=483 width=13 height=12 xoffset=-0 yoffset=8 xadvance=13 page=0 chnl=15 +char id=8222 x=465 y=513 width=13 height=11 xoffset=0 yoffset=26 xadvance=14 page=0 chnl=15 +char id=8223 x=446 y=640 width=15 height=10 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=15 +char id=8224 x=406 y=270 width=17 height=24 xoffset=0 yoffset=9 xadvance=18 page=0 chnl=15 +char id=8225 x=406 y=297 width=17 height=24 xoffset=0 yoffset=9 xadvance=18 page=0 chnl=15 +char id=8226 x=465 y=498 width=13 height=12 xoffset=0 yoffset=14 xadvance=14 page=0 chnl=15 +char id=8230 x=0 y=891 width=31 height=7 xoffset=-0 yoffset=26 xadvance=30 page=0 chnl=15 +char id=8234 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8235 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8236 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8237 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8238 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8240 x=44 y=118 width=29 height=25 xoffset=-0 yoffset=8 xadvance=28 page=0 chnl=15 +char id=8242 x=496 y=30 width=7 height=11 xoffset=1 yoffset=4 xadvance=7 page=0 chnl=15 +char id=8243 x=465 y=983 width=12 height=11 xoffset=2 yoffset=4 xadvance=14 page=0 chnl=15 +char id=8244 x=446 y=54 width=16 height=11 xoffset=-1 yoffset=4 xadvance=14 page=0 chnl=15 +char id=8249 x=482 y=519 width=9 height=13 xoffset=-1 yoffset=14 xadvance=8 page=0 chnl=15 +char id=8250 x=482 y=535 width=9 height=13 xoffset=-1 yoffset=14 xadvance=8 page=0 chnl=15 +char id=8252 x=446 y=937 width=14 height=23 xoffset=2 yoffset=4 xadvance=19 page=0 chnl=15 +char id=8254 x=446 y=670 width=15 height=4 xoffset=-2 yoffset=6 xadvance=11 page=0 chnl=15 +char id=8260 x=280 y=929 width=19 height=25 xoffset=-7 yoffset=8 xadvance=5 page=0 chnl=15 +char id=8286 x=482 y=925 width=7 height=23 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=15 +char id=8298 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8299 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8300 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8301 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8302 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8303 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8352 x=257 y=806 width=20 height=23 xoffset=0 yoffset=4 xadvance=20 page=0 chnl=15 +char id=8353 x=160 y=602 width=22 height=26 xoffset=0 yoffset=3 xadvance=22 page=0 chnl=15 +char id=8354 x=185 y=156 width=22 height=23 xoffset=0 yoffset=4 xadvance=22 page=0 chnl=15 +char id=8355 x=406 y=558 width=17 height=23 xoffset=-1 yoffset=4 xadvance=16 page=0 chnl=15 +char id=8356 x=406 y=584 width=17 height=23 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=15 +char id=8357 x=44 y=578 width=27 height=24 xoffset=-1 yoffset=7 xadvance=25 page=0 chnl=15 +char id=8358 x=76 y=183 width=26 height=23 xoffset=-2 yoffset=4 xadvance=24 page=0 chnl=15 +char id=8359 x=0 y=493 width=33 height=23 xoffset=-1 yoffset=4 xadvance=31 page=0 chnl=15 +char id=8360 x=0 y=118 width=37 height=23 xoffset=-1 yoffset=4 xadvance=36 page=0 chnl=15 +char id=8361 x=76 y=843 width=25 height=24 xoffset=-1 yoffset=9 xadvance=24 page=0 chnl=15 +char id=8363 x=345 y=27 width=18 height=24 xoffset=-0 yoffset=8 xadvance=18 page=0 chnl=15 +char id=8364 x=210 y=0 width=21 height=25 xoffset=-1 yoffset=8 xadvance=20 page=0 chnl=15 +char id=8365 x=210 y=379 width=21 height=24 xoffset=-1 yoffset=9 xadvance=20 page=0 chnl=15 +char id=8366 x=257 y=595 width=20 height=24 xoffset=-1 yoffset=9 xadvance=18 page=0 chnl=15 +char id=8367 x=0 y=257 width=34 height=33 xoffset=-1 yoffset=0 xadvance=32 page=0 chnl=15 +char id=8368 x=324 y=68 width=18 height=31 xoffset=-1 yoffset=3 xadvance=16 page=0 chnl=15 +char id=8369 x=257 y=622 width=20 height=24 xoffset=-1 yoffset=9 xadvance=19 page=0 chnl=15 +char id=8370 x=160 y=571 width=22 height=28 xoffset=-1 yoffset=7 xadvance=22 page=0 chnl=15 +char id=8371 x=76 y=948 width=25 height=23 xoffset=-1 yoffset=4 xadvance=24 page=0 chnl=15 +char id=8372 x=257 y=0 width=20 height=25 xoffset=-1 yoffset=8 xadvance=19 page=0 chnl=15 +char id=8373 x=160 y=631 width=22 height=26 xoffset=0 yoffset=3 xadvance=22 page=0 chnl=15 +char id=8377 x=302 y=297 width=19 height=24 xoffset=-1 yoffset=9 xadvance=18 page=0 chnl=15 +char id=8378 x=257 y=649 width=20 height=24 xoffset=-1 yoffset=9 xadvance=19 page=0 chnl=15 +char id=11360 x=210 y=536 width=21 height=23 xoffset=-1 yoffset=4 xadvance=20 page=0 chnl=15 +char id=11361 x=482 y=87 width=11 height=24 xoffset=-1 yoffset=3 xadvance=9 page=0 chnl=15 +char id=11362 x=210 y=562 width=21 height=23 xoffset=-1 yoffset=4 xadvance=20 page=0 chnl=15 +char id=11363 x=302 y=558 width=19 height=23 xoffset=-1 yoffset=4 xadvance=18 page=0 chnl=15 +char id=11364 x=106 y=181 width=24 height=30 xoffset=-1 yoffset=4 xadvance=22 page=0 chnl=15 +char id=11365 x=426 y=384 width=16 height=29 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=15 +char id=11366 x=446 y=745 width=14 height=29 xoffset=-1 yoffset=4 xadvance=9 page=0 chnl=15 +char id=11367 x=76 y=637 width=25 height=29 xoffset=-1 yoffset=4 xadvance=24 page=0 chnl=15 +char id=11368 x=324 y=232 width=18 height=28 xoffset=-1 yoffset=3 xadvance=16 page=0 chnl=15 +char id=11369 x=76 y=669 width=25 height=29 xoffset=-1 yoffset=4 xadvance=24 page=0 chnl=15 +char id=11370 x=280 y=608 width=19 height=28 xoffset=-1 yoffset=3 xadvance=16 page=0 chnl=15 +char id=11371 x=185 y=800 width=21 height=29 xoffset=-1 yoffset=4 xadvance=20 page=0 chnl=15 +char id=11372 x=426 y=931 width=16 height=20 xoffset=-1 yoffset=11 xadvance=15 page=0 chnl=15 +char id=11373 x=106 y=543 width=24 height=23 xoffset=0 yoffset=4 xadvance=24 page=0 chnl=15 +char id=11377 x=210 y=670 width=21 height=16 xoffset=-1 yoffset=11 xadvance=20 page=0 chnl=15 +char id=11378 x=0 y=355 width=34 height=23 xoffset=-1 yoffset=4 xadvance=32 page=0 chnl=15 +char id=11379 x=44 y=366 width=29 height=16 xoffset=-1 yoffset=11 xadvance=27 page=0 chnl=15 +char id=11380 x=446 y=19 width=16 height=16 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=15 +char id=11381 x=185 y=182 width=22 height=23 xoffset=-1 yoffset=4 xadvance=22 page=0 chnl=15 +char id=11382 x=426 y=229 width=17 height=16 xoffset=-1 yoffset=11 xadvance=17 page=0 chnl=15 +char id=11383 x=302 y=828 width=19 height=16 xoffset=0 yoffset=11 xadvance=19 page=0 chnl=15 +kernings count=20594 +kerning first=34 second=44 amount=-1 +kerning first=34 second=46 amount=-1 +kerning first=34 second=47 amount=-2 +kerning first=34 second=52 amount=-1 +kerning first=34 second=56 amount=-1 +kerning first=34 second=65 amount=-3 +kerning first=34 second=74 amount=-4 +kerning first=34 second=97 amount=-1 +kerning first=34 second=99 amount=-1 +kerning first=34 second=100 amount=-1 +kerning first=34 second=101 amount=-1 +kerning first=34 second=103 amount=-1 +kerning first=34 second=111 amount=-1 +kerning first=34 second=113 amount=-1 +kerning first=34 second=115 amount=-1 +kerning first=34 second=193 amount=-3 +kerning first=34 second=194 amount=-3 +kerning first=34 second=196 amount=-3 +kerning first=34 second=197 amount=-3 +kerning first=34 second=198 amount=-3 +kerning first=34 second=224 amount=-1 +kerning first=34 second=225 amount=-1 +kerning first=34 second=226 amount=-1 +kerning first=34 second=227 amount=-1 +kerning first=34 second=228 amount=-1 +kerning first=34 second=229 amount=-1 +kerning first=34 second=230 amount=-1 +kerning first=34 second=231 amount=-1 +kerning first=34 second=232 amount=-1 +kerning first=34 second=233 amount=-1 +kerning first=34 second=234 amount=-1 +kerning first=34 second=235 amount=-1 +kerning first=34 second=240 amount=-1 +kerning first=34 second=242 amount=-1 +kerning first=34 second=243 amount=-1 +kerning first=34 second=244 amount=-1 +kerning first=34 second=245 amount=-1 +kerning first=34 second=246 amount=-1 kerning first=34 second=248 amount=-1 -kerning first=176 second=171 amount=-3 -kerning first=8224 second=920 amount=-2 -kerning first=194 second=1063 amount=-3 -kerning first=191 second=8217 amount=-3 -kerning first=1071 second=103 amount=-1 -kerning first=80 second=87 amount=-1 -kerning first=338 second=367 amount=-1 -kerning first=335 second=1185 amount=-1 -kerning first=100 second=249 amount=-1 -kerning first=960 second=214 amount=-2 +kerning first=34 second=256 amount=-3 +kerning first=34 second=257 amount=-1 +kerning first=34 second=258 amount=-3 +kerning first=34 second=259 amount=-1 +kerning first=34 second=260 amount=-3 +kerning first=34 second=261 amount=-1 +kerning first=34 second=263 amount=-1 +kerning first=34 second=267 amount=-1 +kerning first=34 second=269 amount=-1 +kerning first=34 second=271 amount=-1 +kerning first=34 second=273 amount=-1 +kerning first=34 second=275 amount=-1 +kerning first=34 second=277 amount=-1 +kerning first=34 second=279 amount=-1 +kerning first=34 second=281 amount=-1 +kerning first=34 second=283 amount=-1 +kerning first=34 second=287 amount=-1 +kerning first=34 second=289 amount=-1 +kerning first=34 second=291 amount=-1 +kerning first=34 second=333 amount=-1 +kerning first=34 second=335 amount=-1 +kerning first=34 second=337 amount=-1 +kerning first=34 second=339 amount=-1 +kerning first=34 second=347 amount=-1 +kerning first=34 second=351 amount=-1 +kerning first=34 second=353 amount=-1 +kerning first=34 second=913 amount=-3 +kerning first=34 second=916 amount=-3 +kerning first=34 second=923 amount=-3 +kerning first=34 second=940 amount=-1 +kerning first=34 second=941 amount=-1 +kerning first=34 second=945 amount=-1 +kerning first=34 second=949 amount=-1 +kerning first=34 second=959 amount=-1 +kerning first=34 second=962 amount=-1 +kerning first=34 second=963 amount=-1 +kerning first=34 second=966 amount=-1 +kerning first=34 second=972 amount=-1 +kerning first=34 second=1032 amount=-4 +kerning first=34 second=1033 amount=-3 +kerning first=34 second=1040 amount=-3 +kerning first=34 second=1044 amount=-3 +kerning first=34 second=1051 amount=-3 +kerning first=34 second=1072 amount=-1 +kerning first=34 second=1077 amount=-1 +kerning first=34 second=1086 amount=-1 +kerning first=34 second=1089 amount=-1 +kerning first=34 second=1092 amount=-1 +kerning first=34 second=1104 amount=-1 +kerning first=34 second=1105 amount=-1 +kerning first=34 second=1108 amount=-1 +kerning first=34 second=1109 amount=-1 +kerning first=34 second=1195 amount=-1 +kerning first=34 second=1241 amount=-1 +kerning first=34 second=1257 amount=-1 +kerning first=34 second=1298 amount=-3 +kerning first=34 second=8218 amount=-1 +kerning first=34 second=8222 amount=-1 +kerning first=34 second=8230 amount=-1 +kerning first=38 second=65 amount=-1 +kerning first=38 second=84 amount=-5 +kerning first=38 second=86 amount=-3 +kerning first=38 second=87 amount=-2 +kerning first=38 second=88 amount=-2 +kerning first=38 second=89 amount=-4 +kerning first=38 second=106 amount=1 +kerning first=38 second=118 amount=-1 +kerning first=38 second=119 amount=-1 +kerning first=38 second=120 amount=-2 +kerning first=38 second=193 amount=-1 +kerning first=38 second=194 amount=-1 +kerning first=38 second=196 amount=-1 +kerning first=38 second=197 amount=-1 kerning first=38 second=198 amount=-1 -kerning first=1035 second=356 amount=-5 -kerning first=58 second=338 amount=-2 -kerning first=61 second=100 amount=-1 -kerning first=1073 second=281 amount=-1 -kerning first=201 second=250 amount=-1 -kerning first=198 second=941 amount=-1 -kerning first=221 second=1241 amount=-4 -kerning first=936 second=227 amount=-1 -kerning first=247 second=89 amount=-5 -kerning first=121 second=1098 amount=-3 -kerning first=124 second=339 amount=-1 -kerning first=1299 second=973 amount=-1 -kerning first=160 second=101 amount=-1 -kerning first=42 second=113 amount=-1 -kerning first=39 second=353 amount=-1 -kerning first=182 second=263 amount=-1 -kerning first=1078 second=228 amount=-1 -kerning first=8364 second=962 amount=-1 -kerning first=900 second=240 amount=-1 -kerning first=228 second=102 amount=-1 -kerning first=931 second=1256 amount=-2 -kerning first=105 second=354 amount=-5 -kerning first=251 second=39 amount=-3 -kerning first=968 second=79 amount=-2 -kerning first=125 second=970 amount=-1 -kerning first=161 second=279 amount=-1 -kerning first=8211 second=119 amount=-1 -kerning first=1041 second=920 amount=-2 -kerning first=186 second=213 amount=-2 -kerning first=301 second=103 amount=-1 -kerning first=1075 second=1257 amount=-1 -kerning first=206 second=355 amount=-1 -kerning first=209 second=115 amount=-1 -kerning first=8377 second=218 amount=-2 -kerning first=86 second=367 amount=-1 -kerning first=1206 second=242 amount=-1 -kerning first=252 second=214 amount=-2 -kerning first=369 second=1101 amount=-1 -kerning first=165 second=226 amount=-1 -kerning first=278 second=116 amount=-1 -kerning first=299 second=972 amount=-1 -kerning first=302 second=281 amount=-1 -kerning first=213 second=65 amount=-2 -kerning first=8378 second=373 amount=-4 -kerning first=356 second=117 amount=-2 -kerning first=948 second=269 amount=-1 -kerning first=253 second=369 amount=-1 -kerning first=8220 second=244 amount=-1 -kerning first=1065 second=106 amount=7 -kerning first=188 second=1066 amount=-5 -kerning first=185 second=8221 amount=-3 -kerning first=306 second=228 amount=-1 -kerning first=1085 second=962 amount=-1 -kerning first=211 second=916 amount=-2 -kerning first=214 second=240 amount=-1 -kerning first=94 second=252 amount=-1 -kerning first=91 second=943 amount=-1 -kerning first=234 second=382 amount=-1 -kerning first=354 second=1044 amount=-4 -kerning first=952 second=217 amount=-2 -kerning first=260 second=79 amount=-2 -kerning first=280 second=920 amount=-2 -kerning first=1063 second=1026 amount=-5 -kerning first=55 second=103 amount=-1 -kerning first=195 second=253 amount=-1 -kerning first=304 second=1257 amount=-1 -kerning first=75 second=267 amount=-2 -kerning first=235 second=1083 amount=-1 -kerning first=361 second=242 amount=-1 -kerning first=950 second=947 amount=-4 -kerning first=258 second=945 amount=-1 -kerning first=381 second=1240 amount=-1 -kerning first=36 second=116 amount=-1 -kerning first=175 second=268 amount=-2 -kerning first=8226 second=347 amount=-1 -kerning first=53 second=972 amount=-1 -kerning first=56 second=281 amount=-1 -kerning first=1099 second=373 amount=-4 -kerning first=915 second=1263 amount=-1 -kerning first=1037 second=244 amount=-1 -kerning first=179 second=216 amount=-2 -kerning first=295 second=106 amount=1 -kerning first=60 second=228 amount=-1 -kerning first=203 second=118 amount=-4 -kerning first=315 second=962 amount=-1 -kerning first=8365 second=221 amount=-5 -kerning first=77 second=1194 amount=-2 -kerning first=80 second=370 amount=-2 -kerning first=223 second=283 amount=-1 -kerning first=934 second=333 amount=-1 -kerning first=1187 second=245 amount=-1 -kerning first=960 second=949 amount=-1 -kerning first=963 second=257 amount=-1 -kerning first=126 second=229 amount=-1 -kerning first=271 second=119 amount=-4 -kerning first=38 second=920 amount=-2 -kerning first=1241 second=44 amount=-1 -kerning first=177 second=1195 amount=-1 -kerning first=180 second=371 amount=-1 -kerning first=291 second=1026 amount=-5 -kerning first=296 second=286 amount=-2 -kerning first=58 second=1257 amount=-1 -kerning first=1073 second=1090 amount=-3 -kerning first=8366 second=376 amount=-5 -kerning first=936 second=964 amount=-3 -kerning first=944 second=45 amount=-2 -kerning first=350 second=120 amount=-1 -kerning first=107 second=242 amount=-2 -kerning first=244 second=947 amount=-1 -kerning first=247 second=372 amount=-5 -kerning first=124 second=1262 amount=-2 -kerning first=160 second=1240 amount=-2 -kerning first=1039 second=1108 amount=-1 -kerning first=1046 second=347 amount=-1 -kerning first=182 second=1069 amount=-1 -kerning first=188 second=81 amount=-2 -kerning first=300 second=231 amount=-1 -kerning first=325 second=373 amount=-4 -kerning first=8364 second=8250 amount=-1 -kerning first=900 second=1028 amount=-2 -kerning first=903 second=288 amount=-2 -kerning first=374 second=232 amount=-4 -kerning first=968 second=362 amount=-2 -kerning first=965 second=1176 amount=-1 -kerning first=164 second=332 amount=-2 -kerning first=8217 second=197 amount=-3 -kerning first=1051 second=289 amount=-1 -kerning first=49 second=106 amount=1 -kerning first=1087 second=221 amount=-5 -kerning first=212 second=193 amount=-2 -kerning first=8377 second=953 amount=-1 -kerning first=1119 second=363 amount=-1 -kerning first=946 second=375 amount=-1 -kerning first=1219 second=290 amount=-2 -kerning first=252 second=949 amount=-1 -kerning first=255 second=257 amount=-1 -kerning first=165 second=963 amount=-1 -kerning first=168 second=271 amount=-1 -kerning first=47 second=1026 amount=-5 -kerning first=50 second=286 amount=-2 -kerning first=1064 second=234 amount=-1 -kerning first=302 second=1090 amount=-3 -kerning first=305 second=334 amount=-2 -kerning first=73 second=218 amount=-2 -kerning first=334 second=258 amount=-2 -kerning first=93 second=360 amount=-2 -kerning first=1117 second=8212 amount=-2 -kerning first=1168 second=1059 amount=-2 -kerning first=233 second=964 amount=-1 -kerning first=239 second=45 amount=-2 -kerning first=236 second=273 amount=-1 -kerning first=944 second=8249 amount=-3 -kerning first=376 second=1094 amount=-3 -kerning first=379 second=335 amount=-1 -kerning first=172 second=219 amount=-2 -kerning first=282 second=347 amount=-1 -kerning first=54 second=231 amount=-1 -kerning first=194 second=361 amount=-1 -kerning first=197 second=121 amount=-1 -kerning first=306 second=965 amount=-1 -kerning first=74 second=373 amount=-4 -kerning first=1085 second=8250 amount=-1 -kerning first=214 second=1028 amount=-2 -kerning first=916 second=336 amount=-2 -kerning first=240 second=220 amount=-2 -kerning first=120 second=232 amount=-2 -kerning first=260 second=362 amount=-2 -kerning first=380 second=966 amount=-1 -kerning first=35 second=244 amount=-1 -kerning first=174 second=374 amount=-5 -kerning first=1073 second=99 amount=-1 -kerning first=201 second=71 amount=-2 -kerning first=316 second=221 amount=-5 -kerning first=221 second=233 amount=-4 -kerning first=920 second=967 amount=-1 -kerning first=1299 second=338 amount=-2 -kerning first=258 second=8211 amount=-2 +kerning first=38 second=221 amount=-4 +kerning first=38 second=256 amount=-1 +kerning first=38 second=258 amount=-1 +kerning first=38 second=260 amount=-1 +kerning first=38 second=354 amount=-5 +kerning first=38 second=356 amount=-5 +kerning first=38 second=372 amount=-2 +kerning first=38 second=373 amount=-1 +kerning first=38 second=374 amount=-4 +kerning first=38 second=376 amount=-4 +kerning first=38 second=913 amount=-1 +kerning first=38 second=916 amount=-1 +kerning first=38 second=923 amount=-1 +kerning first=38 second=932 amount=-5 +kerning first=38 second=933 amount=-4 +kerning first=38 second=935 amount=-2 +kerning first=38 second=939 amount=-4 +kerning first=38 second=947 amount=-1 +kerning first=38 second=957 amount=-1 +kerning first=38 second=1026 amount=-5 +kerning first=38 second=1035 amount=-5 +kerning first=38 second=1040 amount=-1 +kerning first=38 second=1046 amount=-2 +kerning first=38 second=1058 amount=-5 +kerning first=38 second=1061 amount=-2 +kerning first=38 second=1066 amount=-5 +kerning first=38 second=1078 amount=-2 +kerning first=38 second=1093 amount=-2 +kerning first=38 second=1112 amount=1 +kerning first=38 second=1174 amount=-2 +kerning first=38 second=1175 amount=-2 +kerning first=38 second=1184 amount=-5 +kerning first=38 second=1198 amount=-4 +kerning first=38 second=1199 amount=-1 +kerning first=38 second=1202 amount=-2 +kerning first=38 second=1203 amount=-2 +kerning first=39 second=44 amount=-1 +kerning first=39 second=46 amount=-1 +kerning first=39 second=47 amount=-2 +kerning first=39 second=52 amount=-1 +kerning first=39 second=56 amount=-1 +kerning first=39 second=65 amount=-3 +kerning first=39 second=74 amount=-4 +kerning first=39 second=97 amount=-1 +kerning first=39 second=99 amount=-1 +kerning first=39 second=100 amount=-1 +kerning first=39 second=101 amount=-1 +kerning first=39 second=103 amount=-1 +kerning first=39 second=111 amount=-1 +kerning first=39 second=113 amount=-1 +kerning first=39 second=115 amount=-1 +kerning first=39 second=193 amount=-3 kerning first=39 second=194 amount=-3 -kerning first=1036 second=352 amount=-1 -kerning first=182 second=84 amount=-5 -kerning first=294 second=234 amount=-1 -kerning first=56 second=1090 amount=-3 -kerning first=59 second=334 amount=-2 -kerning first=1074 second=277 amount=-1 -kerning first=202 second=246 amount=-1 -kerning first=317 second=376 amount=-5 -kerning first=8361 second=1079 amount=-1 -kerning first=8369 second=89 amount=-5 -kerning first=239 second=8249 amount=-3 -kerning first=962 second=365 amount=-1 -kerning first=125 second=335 amount=-1 -kerning first=161 second=97 amount=-1 -kerning first=37 second=1108 amount=-1 -kerning first=40 second=347 amount=-1 -kerning first=183 second=259 amount=-1 -kerning first=186 second=34 amount=-3 -kerning first=60 second=965 amount=-1 -kerning first=8370 second=266 amount=-2 -kerning first=8377 second=39 amount=-3 -kerning first=1103 second=1184 amount=-5 -kerning first=1206 second=63 amount=-2 -kerning first=960 second=8217 amount=-3 -kerning first=126 second=966 amount=-1 -kerning first=162 second=275 amount=-1 -kerning first=44 second=289 amount=-1 -kerning first=299 second=337 amount=-1 -kerning first=302 second=99 amount=-1 -kerning first=67 second=221 amount=-2 -kerning first=207 second=351 amount=-1 -kerning first=327 second=261 amount=-1 -kerning first=8378 second=214 amount=-2 -kerning first=84 second=1177 amount=-2 -kerning first=87 second=363 amount=-2 -kerning first=941 second=1078 amount=-1 -kerning first=253 second=210 amount=-2 -kerning first=376 second=100 amount=-4 -kerning first=967 second=941 amount=-1 -kerning first=276 second=352 amount=-1 -kerning first=8220 second=65 amount=-3 -kerning first=48 second=234 amount=-1 -kerning first=1049 second=1241 amount=-1 -kerning first=188 second=364 amount=-2 -kerning first=300 second=968 amount=-1 -kerning first=303 second=277 amount=-1 -kerning first=68 second=376 amount=-3 -kerning first=1081 second=1079 amount=-1 -kerning first=208 second=1035 amount=-2 -kerning first=903 second=1098 amount=-3 -kerning first=906 second=339 amount=-1 -kerning first=357 second=113 amount=-1 -kerning first=354 second=353 amount=-3 -kerning first=114 second=235 amount=-1 -kerning first=254 second=365 amount=-1 -kerning first=374 second=969 amount=-4 -kerning first=8221 second=240 amount=-1 -kerning first=8217 second=916 amount=-3 -kerning first=186 second=8216 amount=-3 -kerning first=1095 second=266 amount=-2 -kerning first=330 second=1184 amount=-5 -kerning first=912 second=279 amount=-1 -kerning first=95 second=248 amount=-1 -kerning first=235 second=378 amount=-1 -kerning first=238 second=171 amount=-3 -kerning first=252 second=8217 amount=-3 -kerning first=1026 second=355 amount=-1 -kerning first=175 second=87 amount=-5 -kerning first=53 second=337 amount=-1 -kerning first=56 second=99 amount=-1 -kerning first=193 second=940 amount=-1 -kerning first=196 second=249 amount=-1 -kerning first=73 second=953 amount=-1 -kerning first=1099 second=214 amount=-2 -kerning first=923 second=226 amount=-1 -kerning first=1176 second=356 amount=-5 -kerning first=1263 second=281 amount=-1 -kerning first=122 second=100 amount=-1 -kerning first=176 second=262 amount=-2 -kerning first=287 second=1241 amount=-1 -kerning first=54 second=968 amount=-1 -kerning first=57 second=277 amount=-1 -kerning first=1071 second=227 amount=-1 -kerning first=200 second=199 amount=-2 -kerning first=318 second=89 amount=-5 -kerning first=80 second=211 amount=-2 -kerning first=223 second=101 amount=-1 -kerning first=100 second=353 amount=-1 -kerning first=103 second=113 amount=-1 -kerning first=955 second=1066 amount=-5 -kerning first=952 second=8221 amount=-3 -kerning first=120 second=969 amount=-1 -kerning first=180 second=212 amount=-2 -kerning first=8260 second=283 amount=-1 -kerning first=61 second=224 amount=-1 -kerning first=201 second=354 amount=-5 -kerning first=198 second=1118 amount=-1 -kerning first=321 second=266 amount=-2 -kerning first=324 second=39 amount=-1 -kerning first=8366 second=217 amount=-2 -kerning first=78 second=1184 amount=-5 -kerning first=221 second=970 amount=-2 -kerning first=247 second=213 amount=-2 -kerning first=964 second=253 amount=-1 -kerning first=160 second=225 amount=-1 -kerning first=1299 second=1257 amount=-1 -kerning first=273 second=115 amount=-1 -kerning first=178 second=1185 amount=-3 -kerning first=182 second=367 amount=-1 -kerning first=202 second=1038 amount=-2 -kerning first=325 second=214 amount=-2 -kerning first=8364 second=947 amount=-4 -kerning first=8369 second=372 amount=-5 -kerning first=79 second=8218 amount=-1 -kerning first=1107 second=945 amount=-1 -kerning first=346 second=356 amount=-1 -kerning first=942 second=268 amount=-2 -kerning first=371 second=281 amount=-1 -kerning first=43 second=1241 amount=-1 -kerning first=179 second=8220 amount=-3 -kerning first=301 second=227 amount=-1 -kerning first=69 second=89 amount=-5 -kerning first=63 second=1079 amount=-1 -kerning first=1083 second=269 amount=-1 -kerning first=901 second=973 amount=-1 -kerning first=86 second=942 amount=-2 -kerning first=89 second=251 amount=-2 -kerning first=946 second=216 amount=-2 -kerning first=249 second=1066 amount=-5 -kerning first=1219 second=106 amount=1 -kerning first=246 second=8221 amount=-1 -kerning first=375 second=228 amount=-1 -kerning first=972 second=118 amount=-1 -kerning first=278 second=240 amount=-1 -kerning first=190 second=252 amount=-1 -kerning first=299 second=1256 amount=-2 -kerning first=70 second=266 amount=-2 -kerning first=73 second=39 amount=-3 -kerning first=8378 second=949 amount=-1 -kerning first=910 second=229 amount=-4 -kerning first=1168 second=359 amount=-1 -kerning first=1171 second=119 amount=-4 -kerning first=356 second=241 amount=-2 -kerning first=944 second=1195 amount=-1 -kerning first=948 second=371 amount=-1 -kerning first=113 second=341 amount=2 -kerning first=1220 second=286 amount=-2 -kerning first=256 second=253 amount=-1 -kerning first=373 second=1257 amount=-1 -kerning first=169 second=267 amount=-1 -kerning first=74 second=214 amount=-2 -kerning first=1085 second=947 amount=-4 -kerning first=906 second=1262 amount=-2 -kerning first=94 second=356 amount=-5 -kerning first=237 second=268 amount=-2 -kerning first=955 second=81 amount=-2 -kerning first=114 second=972 amount=-1 -kerning first=117 second=281 amount=-1 -kerning first=8225 second=288 amount=-2 -kerning first=55 second=227 amount=-1 -kerning first=1063 second=1263 amount=-1 -kerning first=198 second=117 amount=-1 -kerning first=195 second=357 amount=-1 -kerning first=313 second=269 amount=-1 -kerning first=75 second=369 amount=-1 -kerning first=215 second=973 amount=-1 -kerning first=1178 second=244 amount=-1 -kerning first=121 second=228 amount=-1 -kerning first=381 second=962 amount=-1 -kerning first=36 second=240 amount=-1 -kerning first=175 second=370 amount=-2 -kerning first=289 second=283 amount=-1 -kerning first=53 second=1256 amount=-2 -kerning first=202 second=67 amount=-2 -kerning first=317 second=217 amount=-2 -kerning first=8361 second=375 amount=-1 -kerning first=1099 second=949 amount=-1 -kerning first=923 second=963 amount=-1 -kerning first=931 second=271 amount=-1 -kerning first=239 second=1195 amount=-1 -kerning first=365 second=286 amount=-2 -kerning first=119 second=1257 amount=-1 -kerning first=1263 second=1090 amount=-3 -kerning first=262 second=1046 amount=-2 -kerning first=1037 second=346 amount=-1 -kerning first=1071 second=964 amount=-3 -kerning first=1075 second=273 amount=-1 -kerning first=203 second=242 amount=-1 -kerning first=318 second=372 amount=-5 -kerning first=315 second=947 amount=-3 -kerning first=8370 second=85 amount=-2 -kerning first=80 second=945 amount=-1 -kerning first=223 second=1240 amount=-2 -kerning first=1184 second=1108 amount=-2 -kerning first=249 second=81 amount=-2 -kerning first=369 second=231 amount=-1 -kerning first=963 second=361 amount=-1 -kerning first=271 second=243 amount=-1 -kerning first=1044 second=288 amount=-1 -kerning first=291 second=1263 amount=-1 -kerning first=64 second=269 amount=-1 -kerning first=1080 second=220 amount=-2 -kerning first=902 second=232 amount=-1 -kerning first=110 second=106 amount=1 -kerning first=1194 second=1033 amount=-1 -kerning first=160 second=962 amount=-1 -kerning first=8216 second=111 amount=-1 -kerning first=48 second=55 amount=-1 -kerning first=1049 second=233 amount=-1 -kerning first=300 second=333 amount=-1 -kerning first=1081 second=375 amount=-1 -kerning first=325 second=949 amount=-1 -kerning first=91 second=119 amount=-4 -kerning first=88 second=359 amount=-1 -kerning first=234 second=44 amount=-1 -kerning first=354 second=194 amount=-6 -kerning first=108 second=1026 amount=-5 -kerning first=1210 second=234 amount=-1 -kerning first=371 second=1090 amount=-3 -kerning first=374 second=334 amount=-3 -kerning first=971 second=246 amount=-1 -kerning first=167 second=218 amount=-2 -kerning first=8217 second=291 amount=-1 -kerning first=8211 second=1035 amount=-4 -kerning first=49 second=230 amount=-1 -kerning first=189 second=360 amount=-2 -kerning first=304 second=273 amount=-1 -kerning first=301 second=964 amount=-3 -kerning first=69 second=372 amount=-5 -kerning first=1095 second=85 amount=-2 -kerning first=912 second=97 amount=-1 -kerning first=950 second=259 amount=-1 -kerning first=255 second=361 amount=-1 -kerning first=258 second=121 amount=-1 -kerning first=375 second=965 amount=-1 -kerning first=168 second=373 amount=-4 -kerning first=278 second=1028 amount=-2 -kerning first=47 second=1263 amount=-1 -kerning first=1064 second=336 amount=-2 -kerning first=8378 second=8217 amount=-3 -kerning first=337 second=122 amount=-1 -kerning first=915 second=275 amount=-1 -kerning first=910 second=966 amount=-4 -kerning first=96 second=244 amount=-1 -kerning first=233 second=1203 amount=-2 -kerning first=236 second=374 amount=-5 -kerning first=356 second=1033 amount=-4 -kerning first=1263 second=99 amount=-1 -kerning first=34 second=193 amount=-3 -kerning first=1027 second=351 amount=-1 -kerning first=176 second=83 amount=-1 -kerning first=287 second=233 amount=-1 -kerning first=54 second=333 amount=-1 -kerning first=197 second=245 amount=-1 -kerning first=74 second=949 amount=-1 -kerning first=77 second=257 amount=-1 -kerning first=363 second=234 amount=-1 -kerning first=955 second=364 amount=-2 -kerning first=117 second=1090 amount=-3 -kerning first=1298 second=277 amount=-1 -kerning first=35 second=346 amount=-1 -kerning first=1035 second=291 amount=-1 -kerning first=1028 second=1035 amount=-1 -kerning first=8225 second=1098 amount=-3 -kerning first=8240 second=339 amount=-1 -kerning first=58 second=273 amount=-1 -kerning first=61 second=45 amount=-2 -kerning first=8260 second=101 amount=-1 -kerning first=55 second=964 amount=-3 -kerning first=321 second=85 amount=-2 -kerning first=8363 second=263 amount=-1 -kerning first=221 second=335 amount=-4 -kerning first=247 second=34 amount=-3 -kerning first=121 second=965 amount=-1 -kerning first=36 second=1028 amount=-2 -kerning first=294 second=336 amount=-2 -kerning first=62 second=220 amount=-2 -kerning first=1078 second=171 amount=-2 -kerning first=202 second=350 amount=-1 -kerning first=8369 second=213 amount=-2 -kerning first=1099 second=8217 amount=-3 -kerning first=346 second=197 amount=-1 -kerning first=942 second=87 amount=-5 -kerning first=105 second=289 amount=-1 -kerning first=371 second=99 amount=-1 -kerning first=962 second=940 amount=-1 -kerning first=965 second=249 amount=-1 -kerning first=161 second=221 amount=-5 -kerning first=274 second=111 amount=-1 -kerning first=43 second=233 amount=-1 -kerning first=183 second=363 amount=-1 -kerning first=179 second=1177 amount=-1 -kerning first=63 second=375 amount=-1 -kerning first=206 second=290 amount=-2 -kerning first=8370 second=368 amount=-2 -kerning first=901 second=338 amount=-2 -kerning first=80 second=8211 amount=-2 -kerning first=904 second=100 amount=-1 -kerning first=947 second=1241 amount=-1 -kerning first=249 second=364 amount=-2 -kerning first=369 second=968 amount=-1 -kerning first=372 second=277 amount=-3 -kerning first=162 second=376 amount=-5 -kerning first=271 second=1035 amount=-5 -kerning first=1048 second=339 amount=-1 -kerning first=180 second=8212 amount=-2 -kerning first=184 second=1059 amount=-2 -kerning first=1044 second=1098 amount=-2 -kerning first=61 second=8249 amount=-3 -kerning first=70 second=85 amount=-2 -kerning first=1084 second=263 amount=-1 -kerning first=327 second=365 amount=-1 -kerning first=8372 second=1066 amount=-5 -kerning first=8366 second=8221 amount=-3 -kerning first=948 second=212 amount=-2 -kerning first=247 second=8216 amount=-3 -kerning first=256 second=74 amount=-1 -kerning first=376 second=224 amount=-4 -kerning first=967 second=1118 amount=-1 -kerning first=160 second=8250 amount=-1 -kerning first=48 second=336 amount=-2 -kerning first=1049 second=970 amount=-1 -kerning first=191 second=248 amount=-1 -kerning first=1062 second=279 amount=-1 -kerning first=306 second=171 amount=-3 -kerning first=325 second=8217 amount=-3 -kerning first=237 second=87 amount=-5 -kerning first=945 second=1185 amount=-2 -kerning first=114 second=337 amount=-1 -kerning first=117 second=99 amount=-1 -kerning first=254 second=940 amount=-1 -kerning first=374 second=1220 amount=-3 -kerning first=377 second=379 amount=1 -kerning first=971 second=1038 amount=-2 -kerning first=170 second=261 amount=-1 -kerning first=167 second=953 amount=-1 -kerning first=55 second=48 amount=-1 -kerning first=75 second=210 amount=-3 -kerning first=1095 second=368 amount=-2 -kerning first=215 second=338 amount=-2 -kerning first=95 second=352 amount=-1 -kerning first=238 second=262 amount=-2 -kerning first=358 second=1241 amount=-1 -kerning first=361 second=187 amount=-1 -kerning first=946 second=8220 amount=-3 -kerning first=118 second=277 amount=-1 -kerning first=1240 second=89 amount=-3 -kerning first=175 second=211 amount=-2 -kerning first=281 second=1098 amount=-1 -kerning first=289 second=101 amount=-1 -kerning first=8222 second=973 amount=-1 -kerning first=196 second=353 amount=-1 -kerning first=314 second=263 amount=-1 -kerning first=8361 second=216 amount=-2 -kerning first=76 second=365 amount=-1 -kerning first=1096 second=1066 amount=-5 -kerning first=1179 second=240 amount=-1 -kerning first=958 second=252 amount=-1 -kerning first=262 second=354 amount=-1 -kerning first=172 second=1184 amount=-5 -kerning first=176 second=366 amount=-2 -kerning first=287 second=970 amount=-1 -kerning first=60 second=171 amount=-3 -kerning first=318 second=213 amount=-2 -kerning first=74 second=8217 amount=-3 -kerning first=1103 second=253 amount=-1 -kerning first=223 second=225 amount=-1 -kerning first=934 second=267 amount=-1 -kerning first=240 second=1185 amount=-3 -kerning first=1035 second=1101 amount=-1 -kerning first=296 second=226 amount=-1 -kerning first=8240 second=1262 amount=-2 -kerning first=8260 second=1240 amount=-2 -kerning first=321 second=368 amount=-2 -kerning first=8363 second=1069 amount=-1 -kerning first=8372 second=81 amount=-2 -kerning first=84 second=250 amount=-2 -kerning first=350 second=65 amount=-1 -kerning first=241 second=8220 amount=-1 -kerning first=964 second=357 amount=-1 -kerning first=967 second=117 amount=-1 -kerning first=124 second=1079 amount=-1 -kerning first=163 second=89 amount=-5 -kerning first=42 second=339 amount=-1 -kerning first=1039 second=973 amount=-1 -kerning first=185 second=251 amount=-1 -kerning first=65 second=263 amount=-1 -kerning first=1081 second=216 amount=-2 -kerning first=317 second=8221 amount=-3 -kerning first=322 second=1066 amount=-5 -kerning first=903 second=228 amount=-1 -kerning first=1118 second=118 amount=-4 -kerning first=346 second=916 amount=-1 -kerning first=942 second=370 amount=-2 -kerning first=111 second=102 amount=-1 -kerning first=1203 second=283 amount=-1 -kerning first=251 second=252 amount=-1 -kerning first=971 second=67 amount=-2 -kerning first=164 second=266 amount=-2 -kerning first=167 second=39 amount=-3 -kerning first=43 second=970 amount=-1 -kerning first=1051 second=229 amount=-1 -kerning first=69 second=213 amount=-2 -kerning first=1083 second=371 amount=-1 -kerning first=330 second=253 amount=-1 -kerning first=901 second=1257 amount=-1 -kerning first=86 second=1119 amount=-2 -kerning first=92 second=115 amount=-1 -kerning first=1219 second=230 amount=-1 -kerning first=168 second=214 amount=-2 -kerning first=8218 second=287 amount=-1 -kerning first=50 second=226 amount=-1 -kerning first=1048 second=1262 amount=-2 -kerning first=190 second=356 amount=-5 -kerning first=193 second=116 amount=-1 -kerning first=305 second=268 amount=-2 -kerning first=70 second=368 amount=-2 -kerning first=1084 second=1069 amount=-1 -kerning first=1096 second=81 amount=-2 -kerning first=910 second=331 amount=-3 -kerning first=1171 second=243 amount=-1 -kerning first=356 second=343 amount=-2 -kerning first=256 second=357 amount=-1 -kerning first=376 second=961 amount=-5 -kerning first=379 second=269 amount=-1 -kerning first=169 second=369 amount=-1 -kerning first=8224 second=232 amount=-1 -kerning first=1065 second=332 amount=-1 -kerning first=71 second=1066 amount=-1 -kerning first=338 second=118 amount=-4 -kerning first=237 second=370 amount=-2 -kerning first=177 second=79 amount=-2 -kerning first=195 second=920 amount=-2 -kerning first=313 second=371 amount=-1 -kerning first=8363 second=84 amount=-5 -kerning first=78 second=253 amount=-1 -kerning first=215 second=1257 amount=-1 -kerning first=336 second=1046 amount=-3 -kerning first=928 second=218 amount=-2 -kerning first=956 second=360 amount=-2 -kerning first=961 second=120 amount=-2 -kerning first=1299 second=273 amount=-1 -kerning first=1240 second=372 amount=-2 -kerning first=1036 second=287 amount=-1 -kerning first=175 second=945 amount=-1 -kerning first=289 second=1240 amount=-2 -kerning first=59 second=268 amount=-2 -kerning first=1074 second=219 amount=-2 -kerning first=314 second=1069 amount=-1 -kerning first=322 second=81 amount=-2 -kerning first=8369 second=34 amount=-3 -kerning first=8364 second=259 amount=-1 -kerning first=343 second=243 amount=-1 -kerning first=931 second=373 amount=-4 -kerning first=1186 second=288 amount=-1 -kerning first=125 second=269 amount=-1 -kerning first=37 second=973 amount=-1 -kerning first=1041 second=232 amount=-1 -kerning first=63 second=216 amount=-2 -kerning first=206 second=106 amount=1 -kerning first=86 second=118 amount=-1 -kerning first=223 second=962 amount=-1 -kerning first=947 second=233 amount=-1 -kerning first=369 second=333 amount=-1 -kerning first=162 second=217 amount=-2 -kerning first=184 second=359 amount=-1 -kerning first=296 second=963 amount=-1 -kerning first=299 second=271 amount=-1 -kerning first=61 second=1195 amount=-1 -kerning first=64 second=371 amount=-1 -kerning first=1076 second=1073 amount=-1 -kerning first=1084 second=84 amount=-5 -kerning first=204 second=1026 amount=-5 -kerning first=207 second=286 amount=-2 -kerning first=8372 second=364 amount=-2 -kerning first=902 second=334 amount=-2 -kerning first=1117 second=246 amount=-1 -kerning first=250 second=360 amount=-2 -kerning first=373 second=273 amount=-1 -kerning first=376 second=45 amount=-4 -kerning first=160 second=947 amount=-4 -kerning first=163 second=372 amount=-5 -kerning first=276 second=287 amount=-1 -kerning first=8216 second=235 amount=-1 -kerning first=42 second=1262 amount=-2 -kerning first=1049 second=335 amount=-1 -kerning first=303 second=219 amount=-2 -kerning first=65 second=1069 amount=-1 -kerning first=1085 second=259 amount=-1 -kerning first=8369 second=8216 amount=-3 -kerning first=903 second=965 amount=-1 -kerning first=91 second=243 amount=-1 -kerning first=231 second=373 amount=-1 -kerning first=354 second=288 amount=-1 -kerning first=108 second=1263 amount=-1 -kerning first=1203 second=1095 amount=-2 -kerning first=1210 second=336 amount=-2 -kerning first=971 second=350 amount=-1 -kerning first=280 second=232 amount=-1 -kerning first=49 second=332 amount=-2 -kerning first=1051 second=966 amount=-1 -kerning first=1063 second=275 amount=-1 -kerning first=192 second=244 amount=-1 -kerning first=304 second=374 amount=-5 -kerning first=912 second=221 amount=-5 -kerning first=1170 second=351 amount=-1 -kerning first=1175 second=111 amount=-1 -kerning first=238 second=83 amount=-1 -kerning first=358 second=233 amount=-1 -kerning first=946 second=1177 amount=-1 -kerning first=950 second=363 amount=-1 -kerning first=258 second=245 amount=-1 -kerning first=1026 second=290 amount=-2 -kerning first=168 second=949 amount=-1 -kerning first=8222 second=338 amount=-1 -kerning first=8226 second=100 amount=-1 -kerning first=50 second=963 amount=-1 -kerning first=56 second=44 amount=-1 -kerning first=53 second=271 amount=-1 -kerning first=314 second=84 amount=-5 -kerning first=1096 second=364 amount=-2 -kerning first=915 second=376 amount=-5 -kerning first=96 second=346 amount=-1 -kerning first=1171 second=1035 amount=-5 -kerning first=1176 second=291 amount=-1 -kerning first=951 second=1059 amount=-2 -kerning first=948 second=8212 amount=-2 -kerning first=119 second=273 amount=-1 -kerning first=376 second=8249 amount=-3 -kerning first=34 second=287 amount=-1 -kerning first=287 second=335 amount=-1 -kerning first=57 second=219 amount=-2 -kerning first=194 second=1108 amount=-1 -kerning first=197 second=347 amount=-1 -kerning first=318 second=34 amount=-3 -kerning first=77 second=361 amount=-1 -kerning first=80 second=121 amount=-1 -kerning first=100 second=288 amount=-2 -kerning first=363 second=336 amount=-2 -kerning first=960 second=248 amount=-1 -kerning first=123 second=220 amount=-2 -kerning first=38 second=232 amount=-1 -kerning first=174 second=1176 amount=-1 -kerning first=177 second=362 amount=-2 -kerning first=291 second=275 amount=-1 -kerning first=8260 second=225 amount=-1 -kerning first=58 second=374 amount=-5 -kerning first=201 second=289 amount=-1 -kerning first=8363 second=367 amount=-1 -kerning first=84 second=71 amount=-1 -kerning first=345 second=111 amount=-1 -kerning first=936 second=261 amount=-1 -kerning first=928 second=953 amount=-1 -kerning first=124 second=375 amount=-1 -kerning first=1039 second=338 amount=-2 -kerning first=175 second=8211 amount=-2 -kerning first=1046 second=100 amount=-2 -kerning first=65 second=84 amount=-5 -kerning first=205 second=234 amount=-1 -kerning first=322 second=364 amount=-2 -kerning first=8361 second=8220 amount=-3 -kerning first=900 second=277 amount=-1 -kerning first=942 second=211 amount=-2 -kerning first=1186 second=1098 amount=-2 -kerning first=1203 second=101 amount=-1 -kerning first=965 second=353 amount=-1 -kerning first=968 second=113 amount=-1 -kerning first=164 second=85 amount=-2 -kerning first=274 second=235 amount=-1 -kerning first=43 second=335 amount=-1 -kerning first=69 second=34 amount=-3 -kerning first=1083 second=212 amount=-2 -kerning first=318 second=8216 amount=-3 -kerning first=8370 second=943 amount=-1 -kerning first=8377 second=252 amount=-1 -kerning first=904 second=224 amount=-1 -kerning first=89 second=196 amount=-5 -kerning first=223 second=8250 amount=-1 -kerning first=1206 second=279 amount=-1 -kerning first=252 second=248 amount=-1 -kerning first=372 second=378 amount=-1 -kerning first=375 second=171 amount=-3 -kerning first=972 second=63 amount=-2 -kerning first=8218 second=103 amount=-1 -kerning first=47 second=275 amount=-1 -kerning first=305 second=87 amount=-5 -kerning first=1084 second=367 amount=-1 -kerning first=1080 second=1185 amount=-3 -kerning first=327 second=940 amount=-1 -kerning first=87 second=1114 amount=-2 -kerning first=93 second=111 amount=-1 -kerning first=1117 second=1038 amount=-2 -kerning first=1220 second=226 amount=-1 -kerning first=169 second=210 amount=-2 -kerning first=282 second=100 amount=-1 -kerning first=8216 second=972 amount=-1 -kerning first=8220 second=281 amount=-1 -kerning first=191 second=352 amount=-1 -kerning first=306 second=262 amount=-2 -kerning first=1081 second=8220 amount=-3 -kerning first=214 second=277 amount=-1 -kerning first=906 second=1079 amount=-1 -kerning first=916 second=89 amount=-5 -kerning first=91 second=1035 amount=-5 -kerning first=94 second=291 amount=-1 -kerning first=237 second=211 amount=-2 -kerning first=357 second=339 amount=-1 -kerning first=952 second=251 amount=-1 -kerning first=260 second=113 amount=-1 -kerning first=380 second=263 amount=-1 -kerning first=170 second=365 amount=-1 -kerning first=8225 second=228 amount=-1 -kerning first=1069 second=90 amount=-1 -kerning first=313 second=212 amount=-1 -kerning first=69 second=8216 amount=-3 -kerning first=1095 second=943 amount=-1 -kerning first=336 second=354 amount=-2 -kerning first=928 second=39 amount=-3 -kerning first=238 second=366 amount=-2 -kerning first=358 second=970 amount=-1 -kerning first=361 second=279 amount=-1 -kerning first=121 second=171 amount=-3 -kerning first=168 second=8217 amount=-3 -kerning first=1036 second=103 amount=-1 -kerning first=289 second=225 amount=-1 -kerning first=59 second=87 amount=-5 -kerning first=310 second=1185 amount=-4 -kerning first=314 second=367 amount=-1 -kerning first=76 second=940 amount=-1 -kerning first=931 second=214 amount=-2 -kerning first=1176 second=1101 amount=-1 -kerning first=365 second=226 amount=-1 -kerning first=958 second=356 amount=-5 -kerning first=962 second=116 amount=-1 -kerning first=37 second=338 amount=-2 -kerning first=40 second=100 amount=-1 -kerning first=179 second=250 amount=-1 -kerning first=176 second=941 amount=-1 -kerning first=1037 second=281 amount=-1 -kerning first=60 second=262 amount=-2 -kerning first=200 second=1241 amount=-1 -kerning first=203 second=187 amount=-1 -kerning first=1103 second=357 amount=-1 -kerning first=934 second=369 amount=-1 -kerning first=103 second=339 amount=-1 -kerning first=100 second=1098 amount=-3 -kerning first=1184 second=973 amount=-1 -kerning first=126 second=263 amount=-1 -kerning first=8260 second=962 amount=-1 -kerning first=64 second=212 amount=-2 -kerning first=1073 second=1194 amount=-2 -kerning first=321 second=943 amount=-1 -kerning first=87 second=114 amount=-2 -kerning first=1117 second=67 amount=-2 -kerning first=230 second=39 amount=-1 -kerning first=944 second=79 amount=-2 -kerning first=107 second=279 amount=-2 -kerning first=964 second=920 amount=-2 -kerning first=163 second=213 amount=-2 -kerning first=276 second=103 amount=-1 -kerning first=8216 second=56 amount=-1 -kerning first=1039 second=1257 amount=-1 -kerning first=185 second=355 amount=-1 -kerning first=188 second=115 amount=-1 -kerning first=300 second=267 amount=-1 -kerning first=62 second=1185 amount=-3 -kerning first=65 second=367 amount=-1 -kerning first=1118 second=242 amount=-1 -kerning first=942 second=945 amount=-1 -kerning first=251 second=356 amount=-5 -kerning first=254 second=116 amount=-1 -kerning first=374 second=268 amount=-3 -kerning first=164 second=368 amount=-2 -kerning first=274 second=972 amount=-1 -kerning first=8217 second=231 amount=-1 -kerning first=63 second=8220 amount=-3 -kerning first=330 second=357 amount=-1 -kerning first=1219 second=332 amount=-2 -kerning first=165 second=1066 amount=-5 -kerning first=162 second=8221 amount=-3 -kerning first=1026 second=106 amount=1 -kerning first=8212 second=1298 amount=-4 -kerning first=47 second=1080 amount=-1 -kerning first=193 second=240 amount=-1 -kerning first=302 second=1194 amount=-2 -kerning first=305 second=370 amount=-2 -kerning first=70 second=943 amount=-1 -kerning first=73 second=252 amount=-1 -kerning first=915 second=217 amount=-2 -kerning first=230 second=8222 amount=-1 -kerning first=239 second=79 amount=-2 -kerning first=951 second=359 amount=-1 -kerning first=113 second=1081 amount=2 -kerning first=1220 second=963 amount=-1 -kerning first=256 second=920 amount=-2 -kerning first=376 second=1195 amount=-4 -kerning first=34 second=103 amount=-1 -kerning first=973 second=1026 amount=-5 -kerning first=1027 second=286 amount=-2 -kerning first=172 second=253 amount=-1 -kerning first=8224 second=334 amount=-2 -kerning first=54 second=267 amount=-1 -kerning first=1100 second=120 amount=-2 -kerning first=338 second=242 amount=-1 -kerning first=916 second=372 amount=-5 -kerning first=94 second=1101 amount=-1 -kerning first=237 second=945 amount=-1 -kerning first=357 second=1262 amount=-2 -kerning first=1298 second=219 amount=-2 -kerning first=35 second=281 amount=-1 -kerning first=1035 second=231 amount=-1 -kerning first=8225 second=965 amount=-1 -kerning first=1066 second=1202 amount=-2 -kerning first=78 second=357 amount=-1 -kerning first=221 second=269 amount=-4 -kerning first=1185 second=232 amount=-2 -kerning first=124 second=216 amount=-2 -kerning first=1299 second=374 amount=-5 +kerning first=39 second=196 amount=-3 +kerning first=39 second=197 amount=-3 +kerning first=39 second=198 amount=-3 +kerning first=39 second=224 amount=-1 +kerning first=39 second=225 amount=-1 +kerning first=39 second=226 amount=-1 +kerning first=39 second=227 amount=-1 kerning first=39 second=228 amount=-1 -kerning first=182 second=118 amount=-4 -kerning first=289 second=962 amount=-1 -kerning first=56 second=1194 amount=-2 -kerning first=59 second=370 amount=-2 -kerning first=1070 second=1071 amount=-1 -kerning first=202 second=283 amount=-1 -kerning first=8361 second=1177 amount=-1 -kerning first=8364 second=363 amount=-1 -kerning first=79 second=1044 amount=-1 -kerning first=1107 second=245 amount=-1 -kerning first=931 second=949 amount=-1 -kerning first=105 second=229 amount=-1 -kerning first=248 second=119 amount=-1 -kerning first=365 second=963 amount=-1 -kerning first=122 second=1195 amount=-1 -kerning first=125 second=371 amount=-1 -kerning first=37 second=1257 amount=-1 -kerning first=1037 second=1090 amount=-3 -kerning first=1041 second=334 amount=-2 -kerning first=298 second=218 amount=-2 -kerning first=206 second=230 amount=-1 -kerning first=323 second=360 amount=-2 -kerning first=8365 second=1059 amount=-2 -kerning first=901 second=273 amount=-1 -kerning first=904 second=45 amount=-2 -kerning first=86 second=242 amount=-3 -kerning first=223 second=947 amount=-4 -kerning first=83 second=923 amount=-1 -kerning first=103 second=1262 amount=-2 -kerning first=947 second=335 amount=-1 -kerning first=963 second=1108 amount=-1 -kerning first=126 second=1069 amount=-1 -kerning first=165 second=81 amount=-2 -kerning first=1059 second=46 amount=-1 -kerning first=299 second=373 amount=-4 -kerning first=8260 second=8250 amount=-1 -kerning first=204 second=1263 amount=-1 -kerning first=8378 second=248 amount=-1 -kerning first=905 second=220 amount=-2 -kerning first=1117 second=350 amount=-1 -kerning first=944 second=362 amount=-2 -kerning first=1202 second=966 amount=-1 -kerning first=1207 second=275 amount=-1 -kerning first=253 second=244 amount=-1 -kerning first=8216 second=337 amount=-1 -kerning first=8220 second=99 amount=-1 -kerning first=1062 second=221 amount=-2 -kerning first=306 second=83 amount=-1 -kerning first=1081 second=1177 amount=-1 -kerning first=1085 second=363 amount=-1 -kerning first=906 second=375 amount=-1 -kerning first=942 second=8211 amount=-2 -kerning first=114 second=271 amount=-1 -kerning first=277 second=1090 amount=-1 -kerning first=280 second=334 amount=-2 -kerning first=8221 second=277 amount=-1 -kerning first=52 second=218 amount=-2 -kerning first=1063 second=376 amount=-5 -kerning first=192 second=346 amount=-1 -kerning first=72 second=360 amount=-2 -kerning first=1087 second=1059 amount=-2 -kerning first=1083 second=8212 amount=-2 -kerning first=215 second=273 amount=-1 -kerning first=904 second=8249 amount=-3 -kerning first=95 second=287 amount=-1 -kerning first=1175 second=235 amount=-1 -kerning first=358 second=335 amount=-1 -kerning first=361 second=97 amount=-1 -kerning first=255 second=1108 amount=-1 -kerning first=258 second=347 amount=-1 -kerning first=175 second=121 amount=-1 -kerning first=8226 second=224 amount=-1 -kerning first=53 second=373 amount=-4 -kerning first=1070 second=86 amount=-2 -kerning first=193 second=1028 amount=-2 -kerning first=196 second=288 amount=-2 -kerning first=1099 second=248 amount=-1 -kerning first=236 second=1176 amount=-1 -kerning first=239 second=362 amount=-2 -kerning first=242 second=122 amount=-1 -kerning first=1037 second=99 amount=-1 -kerning first=179 second=71 amount=-2 -kerning first=290 second=221 amount=-2 -kerning first=51 second=8230 amount=-1 -kerning first=60 second=83 amount=-1 -kerning first=1071 second=261 amount=-1 -kerning first=200 second=233 amount=-1 -kerning first=315 second=363 amount=-1 -kerning first=80 second=245 amount=-1 -kerning first=934 second=210 amount=-2 -kerning first=1184 second=338 amount=-3 -kerning first=237 second=8211 amount=-2 -kerning first=1187 second=100 amount=-1 -kerning first=960 second=352 amount=-1 -kerning first=120 second=1073 amount=-1 -kerning first=126 second=84 amount=-5 -kerning first=38 second=334 amount=-2 -kerning first=35 second=1090 amount=-3 -kerning first=1035 second=968 amount=-1 -kerning first=180 second=246 amount=-1 -kerning first=291 second=376 amount=-5 -kerning first=8240 second=1079 amount=-1 -kerning first=316 second=1059 amount=-2 -kerning first=313 second=8212 amount=-3 -kerning first=8366 second=251 amount=-1 -kerning first=221 second=1074 amount=-3 -kerning first=345 second=235 amount=-1 -kerning first=936 second=365 amount=-1 -kerning first=107 second=97 amount=-1 -kerning first=160 second=259 amount=-1 -kerning first=163 second=34 amount=-3 -kerning first=1046 second=224 amount=-1 -kerning first=45 second=46 amount=-1 -kerning first=289 second=8250 amount=-1 -kerning first=1074 second=1184 amount=-5 -kerning first=205 second=336 amount=-2 -kerning first=325 second=248 amount=-1 -kerning first=903 second=171 amount=-3 -kerning first=931 second=8217 amount=-3 -kerning first=105 second=966 amount=-1 -kerning first=111 second=47 amount=-1 -kerning first=108 second=275 amount=-1 -kerning first=274 second=337 amount=-1 -kerning first=8217 second=52 amount=-1 -kerning first=46 second=221 amount=-4 -kerning first=189 second=111 amount=-1 -kerning first=186 second=351 amount=-1 -kerning first=298 second=953 amount=-1 -kerning first=301 second=261 amount=-1 -kerning first=63 second=1177 amount=-1 -kerning first=1075 second=8218 amount=-3 -kerning first=8377 second=356 amount=-5 -kerning first=908 second=88 amount=-3 -kerning first=89 second=290 amount=-3 -kerning first=946 second=250 amount=-1 -kerning first=252 second=352 amount=-1 -kerning first=375 second=262 amount=-2 -kerning first=372 second=954 amount=-2 -kerning first=165 second=364 amount=-2 -kerning first=278 second=277 amount=-1 -kerning first=47 second=376 amount=-5 -kerning first=1048 second=1079 amount=-1 -kerning first=190 second=291 amount=-1 -kerning first=1064 second=89 amount=-5 -kerning first=187 second=1035 amount=-3 -kerning first=305 second=211 amount=-2 -kerning first=64 second=8212 amount=-2 -kerning first=910 second=263 amount=-4 -kerning first=93 second=235 amount=-1 -kerning first=1256 second=90 amount=-1 -kerning first=379 second=212 amount=-1 -kerning first=163 second=8216 amount=-3 -kerning first=282 second=224 amount=-1 -kerning first=1065 second=266 amount=-1 -kerning first=1068 second=39 amount=-2 -kerning first=303 second=1184 amount=-5 -kerning first=306 second=366 amount=-2 -kerning first=74 second=248 amount=-1 -kerning first=916 second=213 amount=-2 -kerning first=231 second=8217 amount=-1 -kerning first=952 second=355 amount=-1 -kerning first=955 second=115 amount=-1 -kerning first=35 second=99 amount=-1 -kerning first=174 second=249 amount=-1 -kerning first=170 second=940 amount=-1 -kerning first=55 second=261 amount=-1 -kerning first=52 second=953 amount=-1 -kerning first=1178 second=281 amount=-1 -kerning first=1175 second=972 amount=-1 -kerning first=238 second=941 amount=-1 -kerning first=121 second=262 amount=-2 -kerning first=36 second=277 amount=-1 -kerning first=1036 second=227 amount=-1 -kerning first=178 second=199 amount=-2 -kerning first=294 second=89 amount=-5 -kerning first=59 second=211 amount=-2 -kerning first=196 second=1098 amount=-3 -kerning first=202 second=101 amount=-1 -kerning first=317 second=251 amount=-1 -kerning first=923 second=1066 amount=-5 -kerning first=915 second=8221 amount=-3 -kerning first=962 second=240 amount=-1 -kerning first=125 second=212 amount=-2 -kerning first=1263 second=1194 amount=-2 -kerning first=40 second=224 amount=-1 -kerning first=179 second=354 amount=-5 -kerning first=176 second=1118 amount=-1 -kerning first=298 second=39 amount=-3 -kerning first=57 second=1184 amount=-5 -kerning first=60 second=366 amount=-2 -kerning first=203 second=279 amount=-1 -kerning first=200 second=970 amount=-1 -kerning first=8365 second=359 amount=-1 -kerning first=8370 second=119 amount=-4 -kerning first=86 second=63 amount=-1 -kerning first=1103 second=920 amount=-2 -kerning first=1184 second=1257 amount=-2 -kerning first=249 second=115 amount=-1 -kerning first=369 second=267 amount=-1 -kerning first=126 second=367 amount=-1 -kerning first=123 second=1185 amount=-3 -kerning first=180 second=1038 amount=-2 -kerning first=299 second=214 amount=-2 -kerning first=8260 second=947 amount=-4 -kerning first=1076 second=945 amount=-1 -kerning first=207 second=226 amount=-1 -kerning first=327 second=116 amount=-1 -kerning first=902 second=268 amount=-2 -kerning first=345 second=972 amount=-1 -kerning first=124 second=8220 amount=-3 -kerning first=276 second=227 amount=-1 -kerning first=42 second=1079 amount=-1 -kerning first=1049 second=269 amount=-1 -kerning first=48 second=89 amount=-5 -kerning first=300 second=369 amount=-1 -kerning first=208 second=381 amount=-1 -kerning first=906 second=216 amount=-2 -kerning first=225 second=8221 amount=-1 -kerning first=354 second=228 amount=-2 -kerning first=949 second=118 amount=-1 -kerning first=1203 second=962 amount=-1 -kerning first=254 second=240 amount=-1 -kerning first=371 second=1194 amount=-2 -kerning first=971 second=283 amount=-1 -kerning first=164 second=943 amount=-1 -kerning first=167 second=252 amount=-1 -kerning first=274 second=1256 amount=-2 -kerning first=277 second=382 amount=-1 -kerning first=8217 second=333 amount=-1 -kerning first=52 second=39 amount=-1 -kerning first=49 second=266 amount=-2 -kerning first=1063 second=217 amount=-2 -kerning first=1087 second=359 amount=-1 -kerning first=1095 second=119 amount=-4 -kerning first=330 second=920 amount=-2 -kerning first=904 second=1195 amount=-1 -kerning first=89 second=1100 amount=-3 -kerning first=95 second=103 amount=-1 -kerning first=1119 second=1026 amount=-5 -kerning first=1170 second=286 amount=-2 -kerning first=1224 second=218 amount=-2 -kerning first=1026 second=230 amount=-1 -kerning first=8218 second=964 amount=-3 -kerning first=8226 second=45 amount=-2 -kerning first=53 second=214 amount=-2 -kerning first=1064 second=372 amount=-5 -kerning first=190 second=1101 amount=-1 -kerning first=305 second=945 amount=-1 -kerning first=73 second=356 amount=-5 -kerning first=76 second=116 amount=-1 -kerning first=910 second=1069 amount=-2 -kerning first=923 second=81 amount=-2 -kerning first=93 second=972 amount=-1 -kerning first=96 second=281 amount=-1 -kerning first=1176 second=231 amount=-1 -kerning first=356 second=1084 amount=-2 -kerning first=954 second=243 amount=-2 -kerning first=973 second=1263 amount=-1 -kerning first=34 second=227 amount=-1 -kerning first=172 second=357 amount=-1 -kerning first=176 second=117 amount=-1 -kerning first=287 second=269 amount=-1 -kerning first=8230 second=220 amount=-1 -kerning first=54 second=369 amount=-1 -kerning first=194 second=973 amount=-1 -kerning first=100 second=228 amount=-1 -kerning first=243 second=118 amount=-1 -kerning first=117 second=1194 amount=-2 -kerning first=1035 second=333 amount=-1 -kerning first=180 second=67 amount=-2 -kerning first=291 second=217 amount=-2 -kerning first=8240 second=375 amount=-1 -kerning first=61 second=79 amount=-2 -kerning first=1073 second=257 amount=-1 -kerning first=201 second=229 amount=-1 -kerning first=316 second=359 amount=-1 -kerning first=321 second=119 amount=-4 -kerning first=78 second=920 amount=-2 -kerning first=221 second=371 amount=-2 -kerning first=1178 second=1090 amount=-2 -kerning first=367 second=218 amount=-2 -kerning first=1240 second=1174 amount=-3 -kerning first=1036 second=964 amount=-4 -kerning first=1039 second=273 amount=-1 -kerning first=182 second=242 amount=-1 -kerning first=1046 second=45 amount=-3 -kerning first=289 second=947 amount=-4 -kerning first=294 second=372 amount=-5 -kerning first=8226 second=8249 amount=-3 -kerning first=59 second=945 amount=-1 -kerning first=202 second=1240 amount=-2 -kerning first=900 second=219 amount=-2 -kerning first=942 second=121 amount=-1 -kerning first=962 second=1028 amount=-2 -kerning first=965 second=288 amount=-2 -kerning first=43 second=269 amount=-1 -kerning first=206 second=332 amount=-2 -kerning first=901 second=374 amount=-5 -kerning first=1116 second=289 amount=-2 -kerning first=946 second=71 amount=-2 -kerning first=1206 second=221 amount=-2 -kerning first=366 second=8230 amount=-1 -kerning first=375 second=83 amount=-1 -kerning first=8218 second=48 amount=-1 -kerning first=47 second=217 amount=-2 -kerning first=1048 second=375 amount=-1 -kerning first=299 second=949 amount=-1 -kerning first=302 second=257 amount=-1 -kerning first=70 second=119 amount=-4 -kerning first=207 second=963 amount=-1 -kerning first=213 second=44 amount=-1 -kerning first=8378 second=352 amount=-1 -kerning first=90 second=286 amount=-1 -kerning first=1168 second=234 amount=-1 -kerning first=948 second=246 amount=-1 -kerning first=113 second=218 amount=-2 -kerning first=253 second=346 amount=-1 -kerning first=373 second=950 amount=-2 -kerning first=376 second=258 amount=-5 -kerning first=166 second=360 amount=-2 -kerning first=276 second=964 amount=-3 -kerning first=282 second=45 amount=-2 -kerning first=45 second=947 amount=-1 -kerning first=48 second=372 amount=-5 -kerning first=1046 second=8249 amount=-3 -kerning first=1065 second=85 amount=-1 -kerning first=191 second=287 amount=-1 -kerning first=214 second=219 amount=-2 -kerning first=916 second=34 amount=-3 -kerning first=94 second=231 amount=-1 -kerning first=231 second=1175 amount=-1 -kerning first=237 second=121 amount=-1 -kerning first=354 second=965 amount=-2 -kerning first=360 second=46 amount=-1 -kerning first=254 second=1028 amount=-2 -kerning first=8225 second=171 amount=-3 -kerning first=1066 second=260 amount=-1 -kerning first=195 second=232 amount=-1 -kerning first=304 second=1176 amount=-1 -kerning first=75 second=244 amount=-2 -kerning first=215 second=374 amount=-5 -kerning first=1178 second=99 amount=-1 -kerning first=1175 second=337 amount=-1 -kerning first=361 second=221 amount=-5 -kerning first=950 second=1114 amount=-2 -kerning first=956 second=111 amount=-1 -kerning first=112 second=8230 amount=-1 -kerning first=121 second=83 amount=-1 -kerning first=1224 second=953 amount=-1 -kerning first=175 second=245 amount=-1 -kerning first=8249 second=88 amount=-1 -kerning first=53 second=949 amount=-1 -kerning first=56 second=257 amount=-1 -kerning first=305 second=8211 amount=-2 -kerning first=8361 second=250 amount=-1 -kerning first=79 second=194 amount=-2 -kerning first=1099 second=352 amount=-1 -kerning first=222 second=84 amount=-2 -kerning first=923 second=364 amount=-2 -kerning first=96 second=1090 amount=-3 -kerning first=1176 second=968 amount=-1 -kerning first=1179 second=277 amount=-1 -kerning first=958 second=291 amount=-1 -kerning first=119 second=950 amount=-2 -kerning first=379 second=8212 amount=-3 -kerning first=37 second=273 amount=-1 -kerning first=40 second=45 amount=-2 -kerning first=282 second=8249 amount=-3 -kerning first=1071 second=365 amount=-1 -kerning first=200 second=335 amount=-1 -kerning first=203 second=97 amount=-1 -kerning first=77 second=1108 amount=-1 -kerning first=80 second=347 amount=-1 -kerning first=223 second=259 amount=-1 -kerning first=226 second=34 amount=-1 -kerning first=916 second=8216 amount=-3 -kerning first=100 second=965 amount=-1 -kerning first=1298 second=1184 amount=-5 -kerning first=41 second=220 amount=-2 -kerning first=1044 second=171 amount=-1 -kerning first=180 second=350 amount=-1 -kerning first=58 second=1176 amount=-1 -kerning first=61 second=362 amount=-2 -kerning first=201 second=966 amount=-1 -kerning first=204 second=275 amount=-1 -kerning first=8366 second=355 amount=-1 -kerning first=8372 second=115 amount=-1 -kerning first=902 second=87 amount=-5 -kerning first=81 second=1033 amount=-1 -kerning first=84 second=289 amount=-2 -kerning first=345 second=337 amount=-1 -kerning first=936 second=940 amount=-1 -kerning first=1194 second=379 amount=-1 -kerning first=247 second=351 amount=-1 -kerning first=250 second=111 amount=-1 -kerning first=367 second=953 amount=-1 -kerning first=124 second=1177 amount=-1 -kerning first=160 second=363 amount=-1 -kerning first=42 second=375 amount=-1 -kerning first=185 second=290 amount=-2 -kerning first=300 second=210 amount=-2 -kerning first=59 second=8211 amount=-2 -kerning first=1081 second=250 amount=-1 -kerning first=1078 second=941 amount=-2 -kerning first=325 second=352 amount=-1 -kerning first=903 second=262 amount=-2 -kerning first=88 second=234 amount=-2 -kerning first=1118 second=187 amount=-1 -kerning first=108 second=376 amount=-5 -kerning first=1210 second=89 amount=-5 -kerning first=251 second=291 amount=-1 -kerning first=374 second=211 amount=-3 -kerning first=968 second=339 amount=-1 -kerning first=125 second=8212 amount=-2 -kerning first=161 second=1059 amount=-2 -kerning first=971 second=101 amount=-1 -kerning first=965 second=1098 amount=-3 -kerning first=8211 second=381 amount=-2 -kerning first=40 second=8249 amount=-3 -kerning first=1047 second=955 amount=-1 -kerning first=49 second=85 amount=-2 -kerning first=189 second=235 amount=-1 -kerning first=1051 second=263 amount=-1 -kerning first=301 second=365 amount=-1 -kerning first=226 second=8216 amount=-1 -kerning first=946 second=354 amount=-5 -kerning first=950 second=114 amount=-2 -kerning first=1219 second=266 amount=-2 -kerning first=1224 second=39 amount=-3 -kerning first=375 second=366 amount=-2 -kerning first=168 second=248 amount=-1 -kerning first=1064 second=213 amount=-2 -kerning first=299 second=8217 amount=-3 -kerning first=1096 second=115 amount=-1 -kerning first=216 second=87 amount=-2 -kerning first=905 second=1185 amount=-3 -kerning first=910 second=367 amount=-2 -kerning first=93 second=337 amount=-1 -kerning first=96 second=99 amount=-1 -kerning first=236 second=249 amount=-1 -kerning first=948 second=1038 amount=-2 -kerning first=113 second=953 amount=-1 -kerning first=373 second=8218 amount=-2 -kerning first=1027 second=226 amount=-1 -kerning first=279 second=1078 amount=-2 -kerning first=8224 second=268 amount=-2 -kerning first=54 second=210 amount=-2 -kerning first=1065 second=368 amount=-1 -kerning first=194 second=338 amount=-2 -kerning first=197 second=100 amount=-1 -kerning first=306 second=941 amount=-1 -kerning first=74 second=352 amount=-1 -kerning first=338 second=187 amount=-1 -kerning first=906 second=8220 amount=-3 -kerning first=94 second=968 amount=-1 -kerning first=240 second=199 amount=-2 -kerning first=357 second=1079 amount=-1 -kerning first=363 second=89 amount=-5 -kerning first=257 second=1098 amount=-1 -kerning first=260 second=339 amount=-1 -kerning first=1028 second=381 amount=-1 -kerning first=177 second=113 amount=-1 -kerning first=174 second=353 amount=-1 -kerning first=283 second=955 amount=-1 -kerning first=8240 second=216 amount=-2 -kerning first=55 second=365 amount=-1 -kerning first=1063 second=8221 amount=-3 -kerning first=1066 second=1066 amount=-5 -kerning first=8363 second=118 amount=-4 -kerning first=221 second=212 amount=-3 -kerning first=928 second=252 amount=-1 -kerning first=238 second=1118 amount=-1 -kerning first=367 second=39 amount=-3 -kerning first=121 second=366 amount=-2 -kerning first=294 second=213 amount=-2 -kerning first=8226 second=1195 amount=-1 -kerning first=53 second=8217 amount=-3 -kerning first=1074 second=253 amount=-1 -kerning first=202 second=225 amount=-1 -kerning first=322 second=115 amount=-1 -kerning first=317 second=355 amount=-1 -kerning first=958 second=1101 amount=-1 -kerning first=119 second=8218 amount=-2 -kerning first=1041 second=268 amount=-2 -kerning first=63 second=250 amount=-1 -kerning first=60 second=941 amount=-1 -kerning first=8370 second=243 amount=-1 -kerning first=86 second=187 amount=-2 -kerning first=103 second=1079 amount=-1 -kerning first=947 second=269 amount=-1 -kerning first=369 second=369 amount=-1 -kerning first=963 second=973 amount=-1 -kerning first=162 second=251 amount=-1 -kerning first=47 second=38 amount=-1 -kerning first=1048 second=216 amount=-2 -kerning first=291 second=8221 amount=-3 -kerning first=296 second=1066 amount=-5 -kerning first=1084 second=118 amount=-4 -kerning first=210 second=90 amount=-1 -kerning first=327 second=240 amount=-1 -kerning first=902 second=370 amount=-2 -kerning first=84 second=1099 amount=-2 -kerning first=1117 second=283 amount=-1 -kerning first=948 second=67 amount=-2 -kerning first=113 second=39 amount=-3 -kerning first=376 second=79 amount=-3 -kerning first=8216 second=271 amount=-1 -kerning first=8220 second=44 amount=-1 -kerning first=48 second=213 amount=-2 -kerning first=1049 second=371 amount=-1 -kerning first=1046 second=1195 amount=-2 -kerning first=191 second=103 amount=-1 -kerning first=303 second=253 amount=-1 -kerning first=1210 second=372 amount=-5 -kerning first=251 second=1101 amount=-1 -kerning first=374 second=945 amount=-4 -kerning first=971 second=1240 amount=-2 -kerning first=968 second=1262 amount=-2 -kerning first=167 second=356 amount=-5 -kerning first=170 second=116 amount=-1 -kerning first=280 second=268 amount=-2 -kerning first=49 second=368 amount=-2 -kerning first=1051 second=1069 amount=-1 -kerning first=189 second=972 amount=-1 -kerning first=192 second=281 amount=-1 -kerning first=1095 second=243 amount=-1 -kerning first=95 second=227 amount=-1 -kerning first=1119 second=1263 amount=-1 -kerning first=238 second=117 amount=-1 -kerning first=358 second=269 amount=-1 -kerning first=255 second=973 amount=-1 -kerning first=1026 second=332 amount=-2 -kerning first=8222 second=374 amount=-4 -kerning first=50 second=1066 amount=-5 -kerning first=47 second=8221 amount=-3 -kerning first=196 second=228 amount=-1 -kerning first=314 second=118 amount=-4 -kerning first=8361 second=71 amount=-2 -kerning first=76 second=240 amount=-1 -kerning first=93 second=1256 amount=-2 -kerning first=1176 second=333 amount=-1 -kerning first=113 second=8222 amount=2 -kerning first=1263 second=257 amount=-1 -kerning first=1027 second=963 amount=-1 -kerning first=172 second=920 amount=-2 -kerning first=282 second=1195 amount=-1 -kerning first=287 second=371 amount=-1 -kerning first=8250 second=84 amount=-3 -kerning first=57 second=253 amount=-1 -kerning first=194 second=1257 amount=-1 -kerning first=341 second=230 amount=-1 -kerning first=926 second=360 amount=-2 -kerning first=1184 second=273 amount=-2 -kerning first=1177 second=964 amount=-1 -kerning first=363 second=372 amount=-5 -kerning first=960 second=287 amount=-1 -kerning first=120 second=945 amount=-2 -kerning first=260 second=1262 amount=-2 -kerning first=38 second=268 amount=-2 -kerning first=296 second=81 amount=-2 -kerning first=8260 second=259 amount=-1 -kerning first=1073 second=361 amount=-1 -kerning first=321 second=243 amount=-1 -kerning first=964 second=232 amount=-1 -kerning first=1299 second=1176 amount=-1 -kerning first=42 second=216 amount=-2 -kerning first=1039 second=374 amount=-5 -kerning first=185 second=106 amount=1 -kerning first=65 second=118 amount=-4 -kerning first=1081 second=71 amount=-2 -kerning first=202 second=962 amount=-1 -kerning first=8369 second=351 amount=-1 -kerning first=903 second=83 amount=-1 -kerning first=942 second=245 amount=-1 -kerning first=108 second=217 amount=-2 -kerning first=371 second=257 amount=-1 -kerning first=161 second=359 amount=-1 -kerning first=164 second=119 amount=-4 -kerning first=274 second=271 amount=-1 -kerning first=277 second=44 amount=-1 -kerning first=40 second=1195 amount=-1 -kerning first=43 second=371 amount=-1 -kerning first=183 second=1026 amount=-5 -kerning first=1051 second=84 amount=-5 -kerning first=186 second=286 amount=-2 -kerning first=1083 second=246 amount=-1 -kerning first=209 second=218 amount=-2 -kerning first=8370 second=1035 amount=-5 -kerning first=8377 second=291 amount=-1 -kerning first=89 second=230 amount=-4 -kerning first=232 second=120 amount=-2 -kerning first=1219 second=85 amount=-2 -kerning first=252 second=287 amount=-1 -kerning first=278 second=219 amount=-2 -kerning first=8212 second=377 amount=-2 -kerning first=44 second=1069 amount=-1 -kerning first=50 second=81 amount=-2 -kerning first=1064 second=34 amount=-3 -kerning first=190 second=231 amount=-1 -kerning first=302 second=361 amount=-1 -kerning first=305 second=121 amount=-1 -kerning first=70 second=243 amount=-1 -kerning first=327 second=1028 amount=-2 -kerning first=87 second=1263 amount=-1 -kerning first=1168 second=336 amount=-2 -kerning first=948 second=350 amount=-1 -kerning first=256 second=232 amount=-1 -kerning first=973 second=275 amount=-1 -kerning first=169 second=244 amount=-1 -kerning first=8224 second=87 amount=-5 -kerning first=74 second=193 amount=-1 -kerning first=211 second=1071 amount=-1 -kerning first=208 second=8230 amount=-1 -kerning first=1097 second=111 amount=-1 -kerning first=906 second=1177 amount=-1 -kerning first=94 second=333 amount=-1 -kerning first=237 second=245 amount=-1 -kerning first=357 second=375 amount=-1 -kerning first=952 second=290 amount=-2 -kerning first=114 second=949 amount=-1 -kerning first=117 second=257 amount=-1 -kerning first=374 second=8211 amount=-4 -kerning first=288 second=84 amount=-1 -kerning first=8225 second=262 amount=-2 -kerning first=192 second=1090 amount=-3 -kerning first=195 second=334 amount=-2 -kerning first=313 second=246 amount=-1 -kerning first=75 second=346 amount=-1 -kerning first=1095 second=1035 amount=-5 -kerning first=218 second=258 amount=-2 -kerning first=912 second=1059 amount=-2 -kerning first=95 second=964 amount=-3 -kerning first=956 second=235 amount=-1 -kerning first=36 second=219 amount=-2 -kerning first=175 second=347 amount=-1 -kerning first=289 second=259 amount=-1 -kerning first=294 second=34 amount=-3 -kerning first=56 second=361 amount=-1 -kerning first=1064 second=8216 amount=-3 -kerning first=59 second=121 amount=-1 -kerning first=196 second=965 amount=-1 -kerning first=8361 second=354 amount=-5 -kerning first=76 second=1028 amount=-1 -kerning first=931 second=248 amount=-1 -kerning first=1186 second=171 amount=-1 -kerning first=270 second=47 amount=-1 -kerning first=37 second=374 amount=-5 -kerning first=1041 second=87 amount=-5 -kerning first=179 second=289 amount=-1 -kerning first=8230 second=1185 amount=-3 -kerning first=63 second=71 amount=-2 -kerning first=1071 second=940 amount=-1 -kerning first=203 second=221 amount=-5 -kerning first=318 second=351 amount=-1 -kerning first=323 second=111 amount=-1 -kerning first=223 second=363 amount=-1 -kerning first=103 second=375 amount=-1 -kerning first=369 second=210 amount=-2 -kerning first=963 second=338 amount=-2 -kerning first=120 second=8211 amount=-3 +kerning first=39 second=229 amount=-1 +kerning first=39 second=230 amount=-1 +kerning first=39 second=231 amount=-1 +kerning first=39 second=232 amount=-1 +kerning first=39 second=233 amount=-1 +kerning first=39 second=234 amount=-1 +kerning first=39 second=235 amount=-1 +kerning first=39 second=240 amount=-1 +kerning first=39 second=242 amount=-1 +kerning first=39 second=243 amount=-1 +kerning first=39 second=244 amount=-1 +kerning first=39 second=245 amount=-1 +kerning first=39 second=246 amount=-1 +kerning first=39 second=248 amount=-1 +kerning first=39 second=256 amount=-3 +kerning first=39 second=257 amount=-1 +kerning first=39 second=258 amount=-3 +kerning first=39 second=259 amount=-1 +kerning first=39 second=260 amount=-3 +kerning first=39 second=261 amount=-1 +kerning first=39 second=263 amount=-1 +kerning first=39 second=267 amount=-1 +kerning first=39 second=269 amount=-1 +kerning first=39 second=271 amount=-1 +kerning first=39 second=273 amount=-1 +kerning first=39 second=275 amount=-1 +kerning first=39 second=277 amount=-1 +kerning first=39 second=279 amount=-1 +kerning first=39 second=281 amount=-1 +kerning first=39 second=283 amount=-1 +kerning first=39 second=287 amount=-1 +kerning first=39 second=289 amount=-1 +kerning first=39 second=291 amount=-1 +kerning first=39 second=333 amount=-1 +kerning first=39 second=335 amount=-1 +kerning first=39 second=337 amount=-1 +kerning first=39 second=339 amount=-1 +kerning first=39 second=347 amount=-1 +kerning first=39 second=351 amount=-1 +kerning first=39 second=353 amount=-1 +kerning first=39 second=913 amount=-3 +kerning first=39 second=916 amount=-3 +kerning first=39 second=923 amount=-3 +kerning first=39 second=940 amount=-1 +kerning first=39 second=941 amount=-1 +kerning first=39 second=945 amount=-1 +kerning first=39 second=949 amount=-1 +kerning first=39 second=959 amount=-1 +kerning first=39 second=962 amount=-1 +kerning first=39 second=963 amount=-1 +kerning first=39 second=966 amount=-1 +kerning first=39 second=972 amount=-1 +kerning first=39 second=1032 amount=-4 +kerning first=39 second=1033 amount=-3 +kerning first=39 second=1040 amount=-3 +kerning first=39 second=1044 amount=-3 +kerning first=39 second=1051 amount=-3 +kerning first=39 second=1072 amount=-1 +kerning first=39 second=1077 amount=-1 +kerning first=39 second=1086 amount=-1 +kerning first=39 second=1089 amount=-1 +kerning first=39 second=1092 amount=-1 +kerning first=39 second=1104 amount=-1 +kerning first=39 second=1105 amount=-1 +kerning first=39 second=1108 amount=-1 +kerning first=39 second=1109 amount=-1 +kerning first=39 second=1195 amount=-1 +kerning first=39 second=1241 amount=-1 +kerning first=39 second=1257 amount=-1 +kerning first=39 second=1298 amount=-3 +kerning first=39 second=8218 amount=-1 +kerning first=39 second=8222 amount=-1 +kerning first=39 second=8230 amount=-1 +kerning first=40 second=106 amount=7 +kerning first=40 second=1112 amount=7 +kerning first=44 second=34 amount=-1 +kerning first=44 second=39 amount=-1 +kerning first=44 second=45 amount=-1 +kerning first=44 second=48 amount=-1 +kerning first=44 second=49 amount=-4 +kerning first=44 second=51 amount=-1 +kerning first=44 second=52 amount=-1 +kerning first=44 second=53 amount=-1 +kerning first=44 second=54 amount=-1 +kerning first=44 second=55 amount=-1 +kerning first=44 second=56 amount=-1 +kerning first=44 second=67 amount=-1 +kerning first=44 second=71 amount=-1 +kerning first=44 second=79 amount=-1 +kerning first=44 second=81 amount=-1 kerning first=44 second=84 amount=-5 -kerning first=1044 second=262 amount=-1 -kerning first=184 second=234 amount=-1 -kerning first=296 second=364 amount=-2 -kerning first=8240 second=8220 amount=-3 -kerning first=64 second=246 amount=-1 -kerning first=1080 second=199 amount=-2 -kerning first=204 second=376 amount=-5 -kerning first=321 second=1035 amount=-5 -kerning first=902 second=211 amount=-2 -kerning first=1106 second=1098 amount=-1 -kerning first=1117 second=101 amount=-1 -kerning first=221 second=8212 amount=-4 -kerning first=944 second=113 amount=-1 -kerning first=1202 second=263 amount=-1 -kerning first=250 second=235 amount=-1 -kerning first=48 second=34 amount=-3 -kerning first=1049 second=212 amount=-2 -kerning first=294 second=8216 amount=-3 -kerning first=68 second=196 amount=-2 -kerning first=1081 second=354 amount=-5 -kerning first=202 second=8250 amount=-1 -kerning first=211 second=86 amount=-2 -kerning first=900 second=1184 amount=-5 -kerning first=903 second=366 amount=-2 -kerning first=88 second=336 amount=-3 -kerning first=1118 second=279 amount=-1 -kerning first=354 second=171 amount=-3 -kerning first=949 second=63 amount=-1 -kerning first=1210 second=213 amount=-2 -kerning first=971 second=225 amount=-1 -kerning first=280 second=87 amount=-5 -kerning first=8217 second=267 amount=-1 -kerning first=1051 second=367 amount=-1 -kerning first=189 second=337 amount=-1 -kerning first=192 second=99 amount=-1 -kerning first=301 second=940 amount=-1 -kerning first=304 second=249 amount=-1 -kerning first=69 second=351 amount=-1 -kerning first=72 second=111 amount=-1 -kerning first=1083 second=1038 amount=-2 -kerning first=209 second=953 amount=-1 -kerning first=8377 second=1101 amount=-1 -kerning first=89 second=967 amount=-2 -kerning first=1170 second=226 amount=-1 -kerning first=352 second=1078 amount=-1 -kerning first=1219 second=368 amount=-2 -kerning first=255 second=338 amount=-2 -kerning first=258 second=100 amount=-1 -kerning first=375 second=941 amount=-1 -kerning first=972 second=380 amount=-1 -kerning first=168 second=352 amount=-1 -kerning first=50 second=364 amount=-2 -kerning first=1048 second=8220 amount=-3 -kerning first=190 second=968 amount=-1 -kerning first=193 second=277 amount=-1 -kerning first=310 second=199 amount=-3 -kerning first=70 second=1035 amount=-5 -kerning first=73 second=291 amount=-1 -kerning first=331 second=1098 amount=-1 -kerning first=915 second=251 amount=-1 -kerning first=910 second=942 amount=-3 -kerning first=239 second=113 amount=-1 -kerning first=236 second=353 amount=-1 -kerning first=113 second=1179 amount=2 -kerning first=1220 second=1066 amount=-5 -kerning first=287 second=212 amount=-2 -kerning first=8224 second=370 amount=-2 -kerning first=48 second=8216 amount=-3 -kerning first=197 second=224 amount=-1 -kerning first=306 second=1118 amount=-1 -kerning first=214 second=1184 amount=-5 -kerning first=338 second=279 amount=-1 -kerning first=100 second=171 amount=-3 -kerning first=243 second=63 amount=-2 -kerning first=363 second=213 amount=-2 -kerning first=960 second=103 amount=-1 -kerning first=1298 second=253 amount=-1 -kerning first=38 second=87 amount=-2 -kerning first=1035 second=267 amount=-1 -kerning first=283 second=1185 amount=-1 -kerning first=58 second=249 amount=-1 -kerning first=55 second=940 amount=-1 -kerning first=313 second=1038 amount=-1 -kerning first=8363 second=242 amount=-1 -kerning first=928 second=356 amount=-5 -kerning first=936 second=116 amount=-1 -kerning first=98 second=1078 amount=-2 -kerning first=956 second=972 amount=-1 -kerning first=124 second=250 amount=-1 -kerning first=121 second=941 amount=-1 -kerning first=178 second=1241 amount=-1 -kerning first=182 second=187 amount=-1 -kerning first=62 second=199 amount=-2 -kerning first=1074 second=357 amount=-1 -kerning first=205 second=89 amount=-5 -kerning first=105 second=263 amount=-1 -kerning first=365 second=1066 amount=-5 -kerning first=965 second=228 amount=-1 -kerning first=43 second=212 amount=-2 -kerning first=1037 second=1194 amount=-2 -kerning first=1041 second=370 amount=-2 -kerning first=298 second=252 amount=-1 -kerning first=63 second=354 amount=-5 -kerning first=60 second=1118 amount=-1 -kerning first=1083 second=67 amount=-2 -kerning first=206 second=266 amount=-2 -kerning first=209 second=39 amount=-3 -kerning first=904 second=79 amount=-2 -kerning first=86 second=279 amount=-1 -kerning first=1116 second=229 amount=-1 -kerning first=1187 second=1195 amount=-1 -kerning first=252 second=103 amount=-1 -kerning first=372 second=253 amount=-1 -kerning first=963 second=1257 amount=-1 -kerning first=162 second=355 amount=-1 -kerning first=165 second=115 amount=-1 -kerning first=41 second=1185 amount=-3 +kerning first=44 second=85 amount=-1 +kerning first=44 second=86 amount=-4 +kerning first=44 second=87 amount=-3 +kerning first=44 second=89 amount=-4 +kerning first=44 second=102 amount=-2 +kerning first=44 second=103 amount=-1 +kerning first=44 second=106 amount=2 +kerning first=44 second=116 amount=-1 +kerning first=44 second=117 amount=-1 +kerning first=44 second=118 amount=-2 +kerning first=44 second=119 amount=-2 +kerning first=44 second=121 amount=-1 +kerning first=44 second=173 amount=-1 +kerning first=44 second=199 amount=-1 +kerning first=44 second=210 amount=-1 +kerning first=44 second=211 amount=-1 +kerning first=44 second=212 amount=-1 +kerning first=44 second=213 amount=-1 +kerning first=44 second=214 amount=-1 +kerning first=44 second=216 amount=-1 +kerning first=44 second=217 amount=-1 +kerning first=44 second=218 amount=-1 +kerning first=44 second=219 amount=-1 +kerning first=44 second=220 amount=-1 +kerning first=44 second=221 amount=-4 +kerning first=44 second=249 amount=-1 +kerning first=44 second=250 amount=-1 +kerning first=44 second=251 amount=-1 +kerning first=44 second=252 amount=-1 +kerning first=44 second=253 amount=-1 +kerning first=44 second=262 amount=-1 +kerning first=44 second=266 amount=-1 +kerning first=44 second=268 amount=-1 +kerning first=44 second=286 amount=-1 +kerning first=44 second=287 amount=-1 +kerning first=44 second=288 amount=-1 +kerning first=44 second=289 amount=-1 +kerning first=44 second=290 amount=-1 +kerning first=44 second=291 amount=-1 +kerning first=44 second=332 amount=-1 +kerning first=44 second=334 amount=-1 +kerning first=44 second=336 amount=-1 +kerning first=44 second=338 amount=-1 +kerning first=44 second=354 amount=-5 +kerning first=44 second=355 amount=-1 +kerning first=44 second=356 amount=-5 +kerning first=44 second=357 amount=-1 +kerning first=44 second=359 amount=-1 +kerning first=44 second=360 amount=-1 +kerning first=44 second=361 amount=-1 +kerning first=44 second=362 amount=-1 +kerning first=44 second=363 amount=-1 +kerning first=44 second=364 amount=-1 +kerning first=44 second=365 amount=-1 +kerning first=44 second=366 amount=-1 kerning first=44 second=367 amount=-1 -kerning first=64 second=1038 amount=-2 -kerning first=1084 second=242 amount=-1 -kerning first=8378 second=287 amount=-1 -kerning first=902 second=945 amount=-1 -kerning first=1117 second=1240 amount=-2 -kerning first=1220 second=81 amount=-2 -kerning first=250 second=972 amount=-1 -kerning first=253 second=281 amount=-1 -kerning first=42 second=8220 amount=-3 -kerning first=191 second=227 amount=-1 -kerning first=306 second=117 amount=-1 -kerning first=303 second=357 amount=-1 -kerning first=357 second=216 amount=-2 -kerning first=108 second=8221 amount=-3 -kerning first=952 second=106 amount=1 -kerning first=971 second=962 amount=-1 -kerning first=170 second=240 amount=-1 -kerning first=280 second=370 amount=-2 -kerning first=8211 second=8230 amount=-1 -kerning first=8225 second=83 amount=-1 -kerning first=49 second=943 amount=-1 -kerning first=52 second=252 amount=-1 -kerning first=189 second=1256 amount=-2 -kerning first=313 second=67 amount=-1 -kerning first=912 second=359 amount=-1 -kerning first=1170 second=963 amount=-1 -kerning first=1175 second=271 amount=-1 -kerning first=358 second=371 amount=-1 -kerning first=950 second=1026 amount=-5 -kerning first=255 second=1257 amount=-1 -kerning first=1067 second=360 amount=-2 -kerning first=314 second=242 amount=-1 -kerning first=73 second=1101 amount=-1 -kerning first=1099 second=287 amount=-1 -kerning first=365 second=81 amount=-2 -kerning first=958 second=231 amount=-1 -kerning first=1263 second=361 amount=-1 -kerning first=1034 second=373 amount=-1 -kerning first=57 second=357 amount=-1 -kerning first=60 second=117 amount=-1 -kerning first=200 second=269 amount=-1 -kerning first=77 second=973 amount=-1 -kerning first=1103 second=232 amount=-1 -kerning first=934 second=244 amount=-1 -kerning first=103 second=216 amount=-2 -kerning first=1177 second=1203 amount=-1 -kerning first=366 second=256 amount=-2 -kerning first=126 second=118 amount=-4 -kerning first=35 second=1194 amount=-2 -kerning first=38 second=370 amount=-2 -kerning first=1028 second=8230 amount=-1 -kerning first=180 second=283 amount=-1 -kerning first=8240 second=1177 amount=-1 -kerning first=8260 second=363 amount=-1 -kerning first=64 second=67 amount=-2 -kerning first=1076 second=245 amount=-1 -kerning first=204 second=217 amount=-2 -kerning first=8366 second=290 amount=-2 -kerning first=84 second=229 amount=-2 -kerning first=1101 second=1299 amount=-1 -kerning first=227 second=119 amount=-1 -kerning first=345 second=271 amount=-1 -kerning first=1202 second=84 amount=-2 -kerning first=247 second=286 amount=-2 -kerning first=961 second=1090 amount=-1 -kerning first=964 second=334 amount=-2 -kerning first=273 second=218 amount=-2 -kerning first=185 second=230 amount=-1 -kerning first=297 second=360 amount=-2 -kerning first=65 second=242 amount=-1 -kerning first=202 second=947 amount=-4 -kerning first=205 second=372 amount=-5 -kerning first=325 second=287 amount=-1 -kerning first=1118 second=97 amount=-1 -kerning first=942 second=347 amount=-1 -kerning first=105 second=1069 amount=-1 -kerning first=1210 second=34 amount=-3 -kerning first=251 second=231 amount=-1 -kerning first=371 second=361 amount=-1 -kerning first=374 second=121 amount=-2 -kerning first=965 second=965 amount=-1 -kerning first=164 second=243 amount=-1 -kerning first=274 second=373 amount=-4 -kerning first=270 second=1202 amount=-3 -kerning first=183 second=1263 amount=-1 -kerning first=1083 second=350 amount=-1 -kerning first=330 second=232 amount=-1 -kerning first=901 second=1176 amount=-1 -kerning first=904 second=362 amount=-2 -kerning first=86 second=1085 amount=-2 -kerning first=89 second=332 amount=-3 -kerning first=1116 second=966 amount=-2 -kerning first=1119 second=275 amount=-1 -kerning first=347 second=1203 amount=-1 -kerning first=352 second=374 amount=-2 -kerning first=946 second=289 amount=-1 -kerning first=1048 second=1177 amount=-1 -kerning first=190 second=333 amount=-1 -kerning first=305 second=245 amount=-1 -kerning first=70 second=345 amount=-1 -kerning first=902 second=8211 amount=-2 -kerning first=93 second=271 amount=-1 -kerning first=90 second=963 amount=-1 -kerning first=951 second=234 amount=-1 -kerning first=1220 second=364 amount=-2 -kerning first=256 second=334 amount=-2 -kerning first=253 second=1090 amount=-3 -kerning first=379 second=246 amount=-1 -kerning first=973 second=376 amount=-5 -kerning first=169 second=346 amount=-1 -kerning first=8224 second=211 amount=-2 -kerning first=51 second=360 amount=-2 -kerning first=1049 second=8212 amount=-2 -kerning first=1062 second=1059 amount=-1 -kerning first=194 second=273 amount=-1 -kerning first=197 second=45 amount=-2 -kerning first=191 second=964 amount=-3 -kerning first=74 second=287 amount=-1 -kerning first=1097 second=235 amount=-1 -kerning first=338 second=97 amount=-1 -kerning first=237 second=347 amount=-1 -kerning first=363 second=34 amount=-3 -kerning first=117 second=361 amount=-1 -kerning first=1210 second=8216 amount=-3 -kerning first=971 second=8250 amount=-1 -kerning first=170 second=1028 amount=-2 -kerning first=174 second=288 amount=-2 -kerning first=8225 second=366 amount=-2 -kerning first=198 second=220 amount=-2 -kerning first=78 second=232 amount=-1 -kerning first=215 second=1176 amount=-1 -kerning first=221 second=122 amount=-2 -kerning first=956 second=337 amount=-1 -kerning first=124 second=71 amount=-2 -kerning first=1299 second=249 amount=-1 -kerning first=266 second=221 amount=-2 -kerning first=1036 second=261 amount=-1 -kerning first=178 second=233 amount=-1 -kerning first=289 second=363 amount=-1 -kerning first=59 second=245 amount=-1 -kerning first=317 second=290 amount=-2 -kerning first=219 second=1051 amount=-1 -kerning first=1107 second=100 amount=-1 -kerning first=931 second=352 amount=-1 -kerning first=105 second=84 amount=-5 -kerning first=1186 second=262 amount=-1 -kerning first=365 second=364 amount=-2 -kerning first=958 second=968 amount=-1 -kerning first=962 second=277 amount=-1 -kerning first=125 second=246 amount=-1 -kerning first=1041 second=211 amount=-2 -kerning first=287 second=8212 amount=-2 -kerning first=197 second=8249 amount=-3 -kerning first=206 second=85 amount=-2 -kerning first=323 second=235 amount=-1 -kerning first=86 second=97 amount=-3 -kerning first=109 second=34 amount=-1 -kerning first=363 second=8216 amount=-3 -kerning first=372 second=74 amount=-3 -kerning first=1044 second=366 amount=-1 -kerning first=184 second=336 amount=-2 -kerning first=299 second=248 amount=-1 -kerning first=64 second=350 amount=-1 -kerning first=8378 second=103 amount=-1 -kerning first=84 second=966 amount=-3 -kerning first=87 second=275 amount=-3 -kerning first=1117 second=225 amount=-1 -kerning first=250 second=337 amount=-1 -kerning first=253 second=99 amount=-1 -kerning first=166 second=111 amount=-1 -kerning first=163 second=351 amount=-1 -kerning first=276 second=261 amount=-1 -kerning first=273 second=953 amount=-1 -kerning first=42 second=1177 amount=-1 -kerning first=906 second=250 amount=-1 -kerning first=903 second=941 amount=-1 -kerning first=354 second=262 amount=-1 -kerning first=1195 second=8220 amount=-1 -kerning first=251 second=968 amount=-1 -kerning first=254 second=277 amount=-1 -kerning first=377 second=199 amount=-1 -kerning first=968 second=1079 amount=-1 -kerning first=164 second=1035 amount=-5 -kerning first=167 second=291 amount=-1 -kerning first=280 second=211 amount=-2 -kerning first=43 second=8212 amount=-2 -kerning first=46 second=1059 amount=-1 -kerning first=1063 second=251 amount=-1 -kerning first=304 second=353 amount=-1 -kerning first=72 second=235 amount=-1 -kerning first=358 second=212 amount=-2 -kerning first=109 second=8216 amount=-1 -kerning first=1219 second=943 amount=-1 -kerning first=1224 second=252 amount=-1 -kerning first=258 second=224 amount=-1 -kerning first=375 second=1118 amount=-1 -kerning first=1026 second=266 amount=-2 -kerning first=1033 second=39 amount=-2 -kerning first=278 second=1184 amount=-5 -kerning first=8212 second=8222 amount=-1 -kerning first=8226 second=79 amount=-2 -kerning first=53 second=248 amount=-1 -kerning first=196 second=171 amount=-3 -kerning first=1099 second=103 amount=-1 -kerning first=910 second=1119 amount=-3 -kerning first=923 second=115 amount=-1 -kerning first=915 second=355 amount=-1 -kerning first=1176 second=267 amount=-1 -kerning first=34 second=261 amount=-1 -kerning first=279 second=8218 amount=-1 -kerning first=8224 second=945 amount=-1 -kerning first=1071 second=116 amount=-1 -kerning first=1068 second=356 amount=-5 -kerning first=77 second=338 amount=-2 -kerning first=80 second=100 amount=-1 -kerning first=1097 second=972 amount=-1 -kerning first=100 second=262 amount=-2 -kerning first=240 second=1241 amount=-1 -kerning first=357 second=8220 amount=-3 -kerning first=960 second=227 amount=-1 -kerning first=123 second=199 amount=-2 -kerning first=1298 second=357 amount=-1 -kerning first=260 second=1079 amount=-1 -kerning first=268 second=89 amount=-2 -kerning first=38 second=211 amount=-2 -kerning first=1035 second=369 amount=-1 -kerning first=174 second=1098 amount=-3 -kerning first=177 second=339 amount=-1 -kerning first=180 second=101 amount=-1 -kerning first=291 second=251 amount=-1 -kerning first=58 second=353 amount=-1 -kerning first=61 second=113 amount=-1 -kerning first=201 second=263 amount=-1 -kerning first=8366 second=106 amount=1 -kerning first=936 second=240 amount=-1 -kerning first=1178 second=1194 amount=-1 -kerning first=367 second=252 amount=-1 -kerning first=956 second=1256 amount=-2 -kerning first=961 second=382 amount=-1 -kerning first=121 second=1118 amount=-1 -kerning first=124 second=354 amount=-5 -kerning first=273 second=39 amount=-3 -kerning first=36 second=1184 amount=-5 -kerning first=178 second=970 amount=-1 -kerning first=182 second=279 amount=-1 -kerning first=1046 second=79 amount=-3 -kerning first=65 second=63 amount=-5 -kerning first=1074 second=920 amount=-2 -kerning first=205 second=213 amount=-2 -kerning first=8364 second=1026 amount=-5 -kerning first=8369 second=286 amount=-2 -kerning first=325 second=103 amount=-1 -kerning first=900 second=253 amount=-1 -kerning first=105 second=367 amount=-1 -kerning first=125 second=1038 amount=-2 -kerning first=274 second=214 amount=-2 -kerning first=1041 second=945 amount=-1 -kerning first=186 second=226 amount=-1 -kerning first=298 second=356 amount=-5 -kerning first=301 second=116 amount=-1 -kerning first=206 second=368 amount=-2 -kerning first=323 second=972 amount=-1 -kerning first=8377 second=231 amount=-1 -kerning first=86 second=380 amount=-2 -kerning first=103 second=8220 amount=-3 -kerning first=252 second=227 amount=-1 -kerning first=375 second=117 amount=-1 -kerning first=47 second=251 amount=-1 -kerning first=204 second=8221 amount=-3 -kerning first=207 second=1066 amount=-5 -kerning first=910 second=118 amount=-2 -kerning first=87 second=1080 amount=-2 -kerning first=1117 second=962 amount=-1 -kerning first=948 second=283 amount=-1 -kerning first=113 second=252 amount=-1 -kerning first=250 second=1256 amount=-2 -kerning first=379 second=67 amount=-1 -kerning first=973 second=217 amount=-2 -kerning first=282 second=79 amount=-2 -kerning first=8216 second=949 amount=-1 -kerning first=8220 second=257 amount=-1 -kerning first=1065 second=119 amount=-2 -kerning first=303 second=920 amount=-2 -kerning first=1085 second=1026 amount=-5 -kerning first=74 second=103 amount=-1 -kerning first=214 second=253 amount=-1 -kerning first=94 second=267 amount=-1 -kerning first=1174 second=218 amount=-1 -kerning first=952 second=230 amount=-1 -kerning first=1223 second=360 amount=-2 -kerning first=1257 second=120 amount=-2 -kerning first=380 second=242 amount=-1 -kerning first=971 second=947 amount=-4 -kerning first=167 second=1101 amount=-1 -kerning first=280 second=945 amount=-1 -kerning first=52 second=356 amount=-5 -kerning first=55 second=116 amount=-1 -kerning first=195 second=268 amount=-2 -kerning first=72 second=972 amount=-1 -kerning first=75 second=281 amount=-2 -kerning first=950 second=1263 amount=-1 -kerning first=121 second=117 amount=-1 -kerning first=8222 second=1176 amount=-1 -kerning first=8226 second=362 amount=-2 -kerning first=317 second=106 amount=1 -kerning first=8361 second=289 amount=-1 -kerning first=96 second=1194 amount=-2 -kerning first=958 second=333 amount=-1 -kerning first=125 second=67 amount=-2 -kerning first=40 second=79 amount=-2 -kerning first=1037 second=257 amount=-1 -kerning first=179 second=229 amount=-1 -kerning first=295 second=119 amount=-1 -kerning first=8224 second=8211 amount=-2 -kerning first=57 second=920 amount=-2 -kerning first=200 second=371 amount=-1 -kerning first=197 second=1195 amount=-1 -kerning first=315 second=1026 amount=-6 -kerning first=318 second=286 amount=-2 -kerning first=8365 second=234 amount=-1 -kerning first=77 second=1257 amount=-1 -kerning first=1103 second=334 amount=-2 -kerning first=934 second=346 amount=-1 -kerning first=963 second=273 amount=-1 -kerning first=960 second=964 amount=-3 -kerning first=126 second=242 amount=-1 -kerning first=263 second=947 amount=-1 -kerning first=268 second=372 amount=-1 -kerning first=38 second=945 amount=-1 -kerning first=180 second=1240 amount=-2 -kerning first=177 second=1262 amount=-2 -kerning first=1073 second=1108 amount=-1 -kerning first=201 second=1069 amount=-1 -kerning first=207 second=81 amount=-2 -kerning first=902 second=121 amount=-1 -kerning first=84 second=331 amount=-2 -kerning first=936 second=1028 amount=-2 -kerning first=967 second=220 amount=-2 -kerning first=1039 second=1176 amount=-1 -kerning first=185 second=332 amount=-2 -kerning first=300 second=244 amount=-1 -kerning first=1081 second=289 amount=-1 -kerning first=208 second=256 amount=-2 -kerning first=906 second=71 amount=-2 -kerning first=1118 second=221 amount=-5 -kerning first=343 second=8230 amount=-3 -kerning first=354 second=83 amount=-1 -kerning first=251 second=333 amount=-1 -kerning first=374 second=245 amount=-4 -kerning first=968 second=375 amount=-1 -kerning first=274 second=949 amount=-1 +kerning first=44 second=368 amount=-1 +kerning first=44 second=369 amount=-1 +kerning first=44 second=370 amount=-1 +kerning first=44 second=371 amount=-1 +kerning first=44 second=372 amount=-3 +kerning first=44 second=373 amount=-2 +kerning first=44 second=374 amount=-4 +kerning first=44 second=375 amount=-1 +kerning first=44 second=376 amount=-4 +kerning first=44 second=920 amount=-1 +kerning first=44 second=927 amount=-1 +kerning first=44 second=932 amount=-5 +kerning first=44 second=933 amount=-4 +kerning first=44 second=939 amount=-4 +kerning first=44 second=947 amount=-2 +kerning first=44 second=957 amount=-2 +kerning first=44 second=964 amount=-3 +kerning first=44 second=965 amount=-1 +kerning first=44 second=968 amount=-1 +kerning first=44 second=973 amount=-1 +kerning first=44 second=1026 amount=-5 +kerning first=44 second=1028 amount=-1 +kerning first=44 second=1035 amount=-5 +kerning first=44 second=1038 amount=-1 +kerning first=44 second=1054 amount=-1 +kerning first=44 second=1057 amount=-1 +kerning first=44 second=1058 amount=-5 +kerning first=44 second=1059 amount=-1 +kerning first=44 second=1063 amount=-3 +kerning first=44 second=1066 amount=-5 +kerning first=44 second=1069 amount=-1 +kerning first=44 second=1090 amount=-3 +kerning first=44 second=1091 amount=-1 +kerning first=44 second=1098 amount=-3 +kerning first=44 second=1112 amount=2 +kerning first=44 second=1118 amount=-1 +kerning first=44 second=1176 amount=-1 +kerning first=44 second=1184 amount=-5 +kerning first=44 second=1185 amount=-3 +kerning first=44 second=1194 amount=-1 +kerning first=44 second=1198 amount=-4 +kerning first=44 second=1199 amount=-2 +kerning first=44 second=1240 amount=-1 +kerning first=44 second=1256 amount=-1 +kerning first=44 second=1262 amount=-1 +kerning first=44 second=1263 amount=-1 +kerning first=44 second=8211 amount=-1 +kerning first=44 second=8212 amount=-1 +kerning first=44 second=8216 amount=-1 +kerning first=44 second=8217 amount=-1 +kerning first=44 second=8220 amount=-1 +kerning first=44 second=8221 amount=-1 +kerning first=45 second=44 amount=-1 +kerning first=45 second=46 amount=-1 +kerning first=45 second=47 amount=-1 +kerning first=45 second=49 amount=-3 +kerning first=45 second=50 amount=-2 +kerning first=45 second=51 amount=-2 +kerning first=45 second=55 amount=-3 +kerning first=45 second=65 amount=-2 +kerning first=45 second=83 amount=-1 +kerning first=45 second=84 amount=-4 +kerning first=45 second=86 amount=-3 +kerning first=45 second=87 amount=-2 +kerning first=45 second=88 amount=-3 +kerning first=45 second=89 amount=-4 +kerning first=45 second=90 amount=-2 +kerning first=45 second=102 amount=-2 +kerning first=45 second=118 amount=-1 +kerning first=45 second=119 amount=-1 +kerning first=45 second=120 amount=-2 +kerning first=45 second=122 amount=-2 +kerning first=45 second=193 amount=-2 +kerning first=45 second=194 amount=-2 +kerning first=45 second=196 amount=-2 +kerning first=45 second=197 amount=-2 +kerning first=45 second=198 amount=-2 +kerning first=45 second=221 amount=-4 +kerning first=45 second=256 amount=-2 +kerning first=45 second=258 amount=-2 +kerning first=45 second=260 amount=-2 +kerning first=45 second=346 amount=-1 +kerning first=45 second=350 amount=-1 +kerning first=45 second=352 amount=-1 +kerning first=45 second=354 amount=-4 +kerning first=45 second=356 amount=-4 +kerning first=45 second=372 amount=-2 +kerning first=45 second=373 amount=-1 +kerning first=45 second=374 amount=-4 +kerning first=45 second=376 amount=-4 +kerning first=45 second=377 amount=-2 +kerning first=45 second=378 amount=-2 +kerning first=45 second=379 amount=-2 +kerning first=45 second=380 amount=-2 +kerning first=45 second=381 amount=-2 +kerning first=45 second=382 amount=-2 +kerning first=45 second=913 amount=-2 +kerning first=45 second=916 amount=-2 +kerning first=45 second=918 amount=-2 +kerning first=45 second=923 amount=-2 +kerning first=45 second=932 amount=-4 +kerning first=45 second=933 amount=-4 +kerning first=45 second=935 amount=-3 +kerning first=45 second=939 amount=-4 +kerning first=45 second=947 amount=-1 +kerning first=45 second=957 amount=-1 +kerning first=45 second=1026 amount=-4 +kerning first=45 second=1029 amount=-1 +kerning first=45 second=1033 amount=-4 +kerning first=45 second=1035 amount=-4 +kerning first=45 second=1040 amount=-2 +kerning first=45 second=1044 amount=-4 +kerning first=45 second=1046 amount=-3 +kerning first=45 second=1051 amount=-4 +kerning first=45 second=1058 amount=-4 +kerning first=45 second=1061 amount=-3 +kerning first=45 second=1066 amount=-4 +kerning first=45 second=1069 amount=-1 +kerning first=45 second=1071 amount=-1 +kerning first=45 second=1078 amount=-2 +kerning first=45 second=1093 amount=-2 +kerning first=45 second=1174 amount=-3 +kerning first=45 second=1175 amount=-2 +kerning first=45 second=1176 amount=-1 +kerning first=45 second=1184 amount=-4 +kerning first=45 second=1198 amount=-4 +kerning first=45 second=1199 amount=-1 +kerning first=45 second=1202 amount=-3 +kerning first=45 second=1203 amount=-2 +kerning first=45 second=1298 amount=-4 +kerning first=45 second=8218 amount=-1 +kerning first=45 second=8222 amount=-1 +kerning first=45 second=8230 amount=-1 +kerning first=46 second=34 amount=-1 +kerning first=46 second=39 amount=-1 +kerning first=46 second=45 amount=-1 +kerning first=46 second=48 amount=-1 +kerning first=46 second=49 amount=-4 +kerning first=46 second=51 amount=-1 +kerning first=46 second=52 amount=-1 +kerning first=46 second=53 amount=-1 +kerning first=46 second=54 amount=-1 +kerning first=46 second=55 amount=-1 +kerning first=46 second=56 amount=-1 +kerning first=46 second=67 amount=-1 +kerning first=46 second=71 amount=-1 +kerning first=46 second=79 amount=-1 +kerning first=46 second=81 amount=-1 +kerning first=46 second=84 amount=-5 +kerning first=46 second=85 amount=-1 +kerning first=46 second=86 amount=-4 +kerning first=46 second=87 amount=-3 +kerning first=46 second=89 amount=-4 +kerning first=46 second=102 amount=-2 +kerning first=46 second=103 amount=-1 +kerning first=46 second=106 amount=2 +kerning first=46 second=116 amount=-1 +kerning first=46 second=117 amount=-1 +kerning first=46 second=118 amount=-2 +kerning first=46 second=119 amount=-2 +kerning first=46 second=121 amount=-1 +kerning first=46 second=173 amount=-1 +kerning first=46 second=199 amount=-1 +kerning first=46 second=210 amount=-1 +kerning first=46 second=211 amount=-1 +kerning first=46 second=212 amount=-1 +kerning first=46 second=213 amount=-1 +kerning first=46 second=214 amount=-1 +kerning first=46 second=216 amount=-1 +kerning first=46 second=217 amount=-1 +kerning first=46 second=218 amount=-1 +kerning first=46 second=219 amount=-1 +kerning first=46 second=220 amount=-1 +kerning first=46 second=221 amount=-4 +kerning first=46 second=249 amount=-1 +kerning first=46 second=250 amount=-1 +kerning first=46 second=251 amount=-1 +kerning first=46 second=252 amount=-1 +kerning first=46 second=253 amount=-1 +kerning first=46 second=262 amount=-1 +kerning first=46 second=266 amount=-1 +kerning first=46 second=268 amount=-1 +kerning first=46 second=286 amount=-1 +kerning first=46 second=287 amount=-1 +kerning first=46 second=288 amount=-1 +kerning first=46 second=289 amount=-1 +kerning first=46 second=290 amount=-1 +kerning first=46 second=291 amount=-1 +kerning first=46 second=332 amount=-1 +kerning first=46 second=334 amount=-1 +kerning first=46 second=336 amount=-1 +kerning first=46 second=338 amount=-1 +kerning first=46 second=354 amount=-5 +kerning first=46 second=355 amount=-1 +kerning first=46 second=356 amount=-5 +kerning first=46 second=357 amount=-1 kerning first=46 second=359 amount=-1 -kerning first=1041 second=8211 amount=-2 -kerning first=49 second=119 amount=-4 -kerning first=186 second=963 amount=-1 -kerning first=189 second=271 amount=-1 -kerning first=69 second=286 amount=-2 -kerning first=66 second=1026 amount=-1 -kerning first=1087 second=234 amount=-1 -kerning first=326 second=1090 amount=-1 -kerning first=330 second=334 amount=-2 -kerning first=8377 second=968 amount=-1 -kerning first=92 second=218 amount=-2 -kerning first=1119 second=376 amount=-5 -kerning first=115 second=120 amount=-1 -kerning first=947 second=8212 amount=-1 -kerning first=255 second=273 amount=-1 -kerning first=258 second=45 amount=-2 -kerning first=252 second=964 amount=-3 -kerning first=1206 second=1059 amount=-1 -kerning first=1026 second=85 amount=-2 -kerning first=168 second=287 amount=-1 -kerning first=8218 second=365 amount=-1 -kerning first=193 second=219 amount=-2 -kerning first=302 second=1108 amount=-1 -kerning first=305 second=347 amount=-1 -kerning first=73 second=231 amount=-1 -kerning first=337 second=46 amount=-1 -kerning first=93 second=373 amount=-4 -kerning first=1117 second=8250 amount=-1 -kerning first=236 second=288 amount=-2 -kerning first=951 second=336 amount=-2 -kerning first=172 second=232 amount=-1 -kerning first=282 second=362 amount=-2 -kerning first=54 second=244 amount=-1 -kerning first=1068 second=197 amount=-1 -kerning first=194 second=374 amount=-5 -kerning first=311 second=289 amount=-2 -kerning first=1097 second=337 amount=-1 -kerning first=338 second=221 amount=-5 -kerning first=926 second=111 amount=-1 -kerning first=916 second=351 amount=-1 -kerning first=100 second=83 amount=-1 -kerning first=240 second=233 amount=-1 -kerning first=357 second=1177 amount=-1 -kerning first=120 second=245 amount=-2 -kerning first=260 second=375 amount=-1 -kerning first=35 second=257 amount=-1 -kerning first=1035 second=210 amount=-2 -kerning first=280 second=8211 amount=-2 -kerning first=8240 second=250 amount=-1 -kerning first=8225 second=941 amount=-1 -kerning first=201 second=84 amount=-5 -kerning first=316 second=234 amount=-1 -kerning first=8363 second=187 amount=-1 -kerning first=75 second=1090 amount=-4 -kerning first=78 second=334 amount=-2 -kerning first=221 second=246 amount=-4 -kerning first=928 second=291 amount=-1 -kerning first=920 second=1035 amount=-2 -kerning first=358 second=8212 amount=-2 -kerning first=361 second=1059 amount=-2 -kerning first=1299 second=353 amount=-1 -kerning first=258 second=8249 amount=-3 -kerning first=1036 second=365 amount=-1 -kerning first=178 second=335 amount=-1 -kerning first=182 second=97 amount=-1 -kerning first=56 second=1108 amount=-1 -kerning first=59 second=347 amount=-1 -kerning first=202 second=259 amount=-1 -kerning first=205 second=34 amount=-3 -kerning first=85 second=46 amount=-1 -kerning first=346 second=86 amount=-2 -kerning first=1186 second=366 amount=-1 -kerning first=965 second=171 amount=-3 -kerning first=125 second=350 amount=-1 -kerning first=270 second=260 amount=-2 -kerning first=37 second=1176 amount=-1 -kerning first=40 second=362 amount=-2 -kerning first=1034 second=8217 amount=-2 -kerning first=179 second=966 amount=-1 -kerning first=183 second=275 amount=-1 -kerning first=63 second=289 amount=-1 -kerning first=323 second=337 amount=-1 -kerning first=901 second=249 amount=-1 -kerning first=86 second=221 amount=-5 -kerning first=103 second=1177 amount=-1 -kerning first=246 second=967 amount=-2 -kerning first=372 second=198 amount=-5 -kerning first=162 second=290 amount=-2 -kerning first=38 second=8211 amount=-2 -kerning first=1044 second=941 amount=-1 -kerning first=1048 second=250 amount=-1 -kerning first=299 second=352 amount=-1 -kerning first=1080 second=1241 amount=-1 -kerning first=1084 second=187 amount=-1 -kerning first=207 second=364 amount=-2 -kerning first=327 second=277 amount=-1 -kerning first=8378 second=227 amount=-1 -kerning first=905 second=199 amount=-2 -kerning first=1168 second=89 amount=-5 -kerning first=944 second=339 amount=-1 -kerning first=948 second=101 amount=-1 -kerning first=373 second=353 amount=-1 -kerning first=376 second=113 amount=-4 -kerning first=967 second=955 amount=-2 -kerning first=166 second=235 amount=-1 -kerning first=276 second=365 amount=-1 -kerning first=205 second=8216 amount=-3 -kerning first=903 second=1118 amount=-1 -kerning first=906 second=354 amount=-5 -kerning first=1174 second=39 amount=-2 -kerning first=114 second=248 amount=-1 -kerning first=274 second=8217 amount=-3 -kerning first=1063 second=355 amount=-1 -kerning first=195 second=87 amount=-5 -kerning first=72 second=337 amount=-1 -kerning first=75 second=99 amount=-2 -kerning first=215 second=249 amount=-1 -kerning first=92 second=953 amount=-1 -kerning first=95 second=261 amount=-1 -kerning first=1224 second=356 amount=-5 -kerning first=1026 second=368 amount=-2 -kerning first=175 second=100 amount=-1 -kerning first=53 second=352 amount=-1 -kerning first=1070 second=65 amount=-2 -kerning first=196 second=262 amount=-2 -kerning first=314 second=187 amount=-1 -kerning first=310 second=1241 amount=-2 -kerning first=73 second=968 amount=-1 -kerning first=76 second=277 amount=-1 -kerning first=1099 second=227 amount=-1 -kerning first=340 second=89 amount=-2 -kerning first=1176 second=369 amount=-1 -kerning first=236 second=1098 amount=-3 -kerning first=239 second=339 amount=-1 -kerning first=119 second=353 amount=-1 -kerning first=122 second=113 amount=-1 -kerning first=973 second=8221 amount=-3 -kerning first=1027 second=1066 amount=-5 -kerning first=1068 second=916 amount=-1 -kerning first=1071 second=240 amount=-1 -kerning first=200 second=212 amount=-2 -kerning first=80 second=224 amount=-1 -kerning first=100 second=366 amount=-2 -kerning first=240 second=970 amount=-1 -kerning first=1298 second=920 amount=-2 -kerning first=180 second=225 amount=-1 -kerning first=291 second=355 amount=-1 -kerning first=296 second=115 amount=-1 -kerning first=198 second=1185 amount=-3 -kerning first=201 second=367 amount=-1 -kerning first=8366 second=230 amount=-1 -kerning first=81 second=379 amount=-1 -kerning first=1101 second=1083 amount=-1 -kerning first=928 second=1101 amount=-1 -kerning first=98 second=8218 amount=-1 -kerning first=1185 second=945 amount=-2 -kerning first=247 second=226 amount=-1 -kerning first=367 second=356 amount=-5 -kerning first=964 second=268 amount=-2 -kerning first=42 second=250 amount=-1 -kerning first=39 second=941 amount=-1 -kerning first=62 second=1241 amount=-1 -kerning first=65 second=187 amount=-1 -kerning first=325 second=227 amount=-1 -kerning first=8364 second=1263 amount=-1 -kerning first=900 second=357 amount=-1 -kerning first=903 second=117 amount=-1 -kerning first=108 second=251 amount=-1 -kerning first=968 second=216 amount=-2 -kerning first=270 second=1066 amount=-2 -kerning first=267 second=8221 amount=-1 -kerning first=8211 second=256 amount=-2 -kerning first=1051 second=118 amount=-4 -kerning first=301 second=240 amount=-1 -kerning first=1083 second=283 amount=-1 -kerning first=206 second=943 amount=-1 -kerning first=209 second=252 amount=-1 -kerning first=323 second=1256 amount=-2 -kerning first=8377 second=333 amount=-1 -kerning first=89 second=266 amount=-3 -kerning first=92 second=39 amount=-3 -kerning first=1119 second=217 amount=-2 -kerning first=946 second=229 amount=-1 -kerning first=1219 second=119 amount=-4 -kerning first=372 second=920 amount=-2 -kerning first=168 second=103 amount=-1 -kerning first=278 second=253 amount=-1 -kerning first=47 second=355 amount=-1 -kerning first=50 second=115 amount=-1 -kerning first=190 second=267 amount=-1 -kerning first=8378 second=964 amount=-3 -kerning first=93 second=214 amount=-2 -kerning first=1117 second=947 amount=-4 -kerning first=1168 second=372 amount=-5 -kerning first=910 second=242 amount=-4 -kerning first=948 second=1240 amount=-2 -kerning first=944 second=1262 amount=-2 -kerning first=113 second=356 amount=-5 -kerning first=256 second=268 amount=-2 -kerning first=1027 second=81 amount=-2 -kerning first=166 second=972 amount=-1 -kerning first=169 second=281 amount=-1 -kerning first=8224 second=121 amount=-1 -kerning first=1065 second=243 amount=-1 -kerning first=74 second=227 amount=-1 -kerning first=1085 second=1263 amount=-1 -kerning first=214 second=357 amount=-1 -kerning first=94 second=369 amount=-1 -kerning first=952 second=332 amount=-2 -kerning first=260 second=216 amount=-2 -kerning first=1028 second=256 amount=-1 -kerning first=174 second=228 amount=-1 -kerning first=8240 second=71 amount=-2 -kerning first=55 second=240 amount=-1 -kerning first=1069 second=193 amount=-2 -kerning first=192 second=1194 amount=-2 -kerning first=195 second=370 amount=-2 -kerning first=313 second=283 amount=-1 -kerning first=72 second=1256 amount=-2 -kerning first=221 second=67 amount=-3 -kerning first=1175 second=949 amount=-1 -kerning first=361 second=359 amount=-1 -kerning first=956 second=271 amount=-1 -kerning first=961 second=44 amount=-1 -kerning first=258 second=1195 amount=-1 -kerning first=36 second=253 amount=-1 -kerning first=317 second=230 amount=-1 -kerning first=1099 second=964 amount=-3 -kerning first=219 second=923 amount=-2 -kerning first=337 second=947 amount=-1 -kerning first=340 second=372 amount=-1 -kerning first=931 second=287 amount=-1 -kerning first=239 second=1262 amount=-2 -kerning first=962 second=219 amount=-2 -kerning first=1263 second=1108 amount=-1 -kerning first=262 second=1069 amount=1 -kerning first=1037 second=361 amount=-1 -kerning first=1041 second=121 amount=-1 -kerning first=1071 second=1028 amount=-2 -kerning first=315 second=1263 amount=-1 -kerning first=8365 second=336 amount=-2 -kerning first=80 second=961 amount=-1 -kerning first=1184 second=1176 amount=-2 -kerning first=369 second=244 amount=-1 -kerning first=963 second=374 amount=-5 -kerning first=162 second=106 amount=1 -kerning first=44 second=118 amount=-2 -kerning first=1048 second=71 amount=-2 -kerning first=180 second=962 amount=-1 -kerning first=64 second=283 amount=-1 -kerning first=1080 second=233 amount=-1 -kerning first=902 second=245 amount=-1 -kerning first=345 second=949 amount=-1 -kerning first=1185 second=8211 amount=-3 -kerning first=1194 second=1051 amount=-1 -kerning first=110 second=119 amount=-1 -kerning first=247 second=963 amount=-1 -kerning first=250 second=271 amount=-1 -kerning first=160 second=1026 amount=-5 -kerning first=163 second=286 amount=-2 -kerning first=1046 second=934 amount=-5 -kerning first=1049 second=246 amount=-1 -kerning first=188 second=218 amount=-2 -kerning first=300 second=346 amount=-1 -kerning first=325 second=964 amount=-3 -kerning first=254 second=219 amount=-2 -kerning first=371 second=1108 amount=-1 -kerning first=374 second=347 amount=-3 -kerning first=971 second=259 amount=-1 -kerning first=167 second=231 amount=-1 -kerning first=280 second=121 amount=-1 -kerning first=8221 second=74 amount=-4 -kerning first=49 second=243 amount=-1 -kerning first=189 second=373 amount=-4 -kerning first=301 second=1028 amount=-2 -kerning first=304 second=288 amount=-2 -kerning first=1087 second=336 amount=-2 -kerning first=946 second=966 amount=-1 -kerning first=950 second=275 amount=-1 -kerning first=255 second=374 amount=-5 -kerning first=8222 second=249 amount=-1 -kerning first=1064 second=351 amount=-1 -kerning first=1067 second=111 amount=-1 -kerning first=196 second=83 amount=-1 -kerning first=310 second=233 amount=-2 -kerning first=70 second=1087 amount=-1 -kerning first=73 second=333 amount=-1 -kerning first=915 second=290 amount=-2 -kerning first=93 second=949 amount=-1 -kerning first=96 second=257 amount=-1 -kerning first=1176 second=210 amount=-2 -kerning first=233 second=1299 amount=-1 -kerning first=356 second=1051 amount=-4 -kerning first=262 second=84 amount=-1 -kerning first=382 second=234 amount=-1 -kerning first=1027 second=364 amount=-2 -kerning first=172 second=334 amount=-2 -kerning first=169 second=1090 amount=-3 -kerning first=287 second=246 amount=-1 -kerning first=8230 second=199 amount=-1 -kerning first=54 second=346 amount=-1 -kerning first=1065 second=1035 amount=-2 -kerning first=194 second=950 amount=-1 -kerning first=80 second=45 amount=-2 -kerning first=77 second=273 amount=-1 -kerning first=74 second=964 amount=-3 -kerning first=926 second=235 amount=-1 -kerning first=240 second=335 amount=-1 -kerning first=117 second=1108 amount=-1 -kerning first=120 second=347 amount=-1 -kerning first=35 second=361 amount=-1 -kerning first=38 second=121 amount=-1 -kerning first=174 second=965 amount=-1 -kerning first=8225 second=1118 amount=-1 -kerning first=8240 second=354 amount=-5 -kerning first=55 second=1028 amount=-2 -kerning first=58 second=288 amount=-2 -kerning first=316 second=336 amount=-2 -kerning first=8363 second=279 amount=-1 -kerning first=1101 second=378 amount=-1 -kerning first=221 second=350 amount=-1 -kerning first=1178 second=1063 amount=-2 -kerning first=964 second=87 amount=-5 -kerning first=124 second=289 amount=-1 -kerning first=42 second=71 amount=-2 -kerning first=1036 second=940 amount=-2 -kerning first=1039 second=249 amount=-1 -kerning first=182 second=221 amount=-5 -kerning first=294 second=351 amount=-1 -kerning first=297 second=111 amount=-1 -kerning first=62 second=233 amount=-1 -kerning first=202 second=363 amount=-1 -kerning first=8369 second=226 amount=-1 -kerning first=1102 second=1078 amount=-2 -kerning first=942 second=100 amount=-1 -kerning first=1186 second=941 amount=-1 -kerning first=965 second=262 amount=-2 -kerning first=161 second=234 amount=-1 -kerning first=43 second=246 amount=-1 -kerning first=183 second=376 amount=-5 -kerning first=298 second=291 amount=-1 -kerning first=203 second=1059 amount=-2 -kerning first=200 second=8212 amount=-2 -kerning first=1083 second=101 amount=-1 -kerning first=904 second=113 amount=-1 -kerning first=901 second=353 amount=-1 -kerning first=80 second=8249 amount=-3 -kerning first=1108 second=955 amount=-1 -kerning first=1116 second=263 amount=-2 +kerning first=46 second=360 amount=-1 +kerning first=46 second=361 amount=-1 +kerning first=46 second=362 amount=-1 +kerning first=46 second=363 amount=-1 +kerning first=46 second=364 amount=-1 +kerning first=46 second=365 amount=-1 +kerning first=46 second=366 amount=-1 +kerning first=46 second=367 amount=-1 +kerning first=46 second=368 amount=-1 +kerning first=46 second=369 amount=-1 +kerning first=46 second=370 amount=-1 +kerning first=46 second=371 amount=-1 +kerning first=46 second=372 amount=-3 +kerning first=46 second=373 amount=-2 +kerning first=46 second=374 amount=-4 +kerning first=46 second=375 amount=-1 +kerning first=46 second=376 amount=-4 +kerning first=46 second=920 amount=-1 +kerning first=46 second=927 amount=-1 +kerning first=46 second=932 amount=-5 +kerning first=46 second=933 amount=-4 +kerning first=46 second=939 amount=-4 +kerning first=46 second=947 amount=-2 +kerning first=46 second=957 amount=-2 +kerning first=46 second=964 amount=-3 +kerning first=46 second=965 amount=-1 +kerning first=46 second=968 amount=-1 +kerning first=46 second=973 amount=-1 +kerning first=46 second=1026 amount=-5 +kerning first=46 second=1028 amount=-1 +kerning first=46 second=1035 amount=-5 +kerning first=46 second=1038 amount=-1 +kerning first=46 second=1054 amount=-1 +kerning first=46 second=1057 amount=-1 +kerning first=46 second=1058 amount=-5 +kerning first=46 second=1059 amount=-1 +kerning first=46 second=1063 amount=-3 +kerning first=46 second=1066 amount=-5 +kerning first=46 second=1069 amount=-1 +kerning first=46 second=1090 amount=-3 +kerning first=46 second=1091 amount=-1 +kerning first=46 second=1098 amount=-3 +kerning first=46 second=1112 amount=2 +kerning first=46 second=1118 amount=-1 +kerning first=46 second=1176 amount=-1 +kerning first=46 second=1184 amount=-5 +kerning first=46 second=1185 amount=-3 +kerning first=46 second=1194 amount=-1 +kerning first=46 second=1198 amount=-4 +kerning first=46 second=1199 amount=-2 +kerning first=46 second=1240 amount=-1 +kerning first=46 second=1256 amount=-1 +kerning first=46 second=1262 amount=-1 +kerning first=46 second=1263 amount=-1 +kerning first=46 second=8211 amount=-1 +kerning first=46 second=8212 amount=-1 +kerning first=46 second=8216 amount=-1 +kerning first=46 second=8217 amount=-1 +kerning first=46 second=8220 amount=-1 +kerning first=46 second=8221 amount=-1 +kerning first=47 second=38 amount=-1 +kerning first=47 second=44 amount=-4 +kerning first=47 second=45 amount=-1 +kerning first=47 second=46 amount=-4 +kerning first=47 second=110 amount=-1 +kerning first=47 second=65 amount=-5 +kerning first=47 second=67 amount=-1 +kerning first=47 second=114 amount=-1 +kerning first=47 second=71 amount=-1 +kerning first=47 second=74 amount=-3 +kerning first=47 second=79 amount=-1 +kerning first=47 second=81 amount=-1 +kerning first=47 second=83 amount=-1 +kerning first=47 second=97 amount=-2 +kerning first=47 second=99 amount=-2 +kerning first=47 second=100 amount=-2 +kerning first=47 second=101 amount=-2 +kerning first=47 second=102 amount=-1 +kerning first=47 second=103 amount=-2 +kerning first=47 second=109 amount=-1 +kerning first=47 second=111 amount=-2 +kerning first=47 second=112 amount=-1 +kerning first=47 second=113 amount=-2 +kerning first=47 second=115 amount=-2 +kerning first=47 second=117 amount=-1 +kerning first=47 second=118 amount=-1 +kerning first=47 second=119 amount=-1 +kerning first=47 second=120 amount=-1 +kerning first=47 second=121 amount=-1 +kerning first=47 second=122 amount=-2 +kerning first=47 second=173 amount=-1 +kerning first=47 second=193 amount=-5 +kerning first=47 second=194 amount=-5 kerning first=47 second=196 amount=-5 -kerning first=1048 second=354 amount=-5 -kerning first=180 second=8250 amount=-1 -kerning first=1080 second=970 amount=-1 -kerning first=1084 second=279 amount=-1 -kerning first=910 second=63 amount=-1 -kerning first=1168 second=213 amount=-2 -kerning first=948 second=225 amount=-1 -kerning first=1220 second=115 amount=-1 -kerning first=256 second=87 amount=-5 -kerning first=967 second=1185 amount=-3 -kerning first=166 second=337 amount=-1 -kerning first=169 second=99 amount=-1 -kerning first=276 second=940 amount=-1 -kerning first=51 second=111 amount=-1 -kerning first=1049 second=1038 amount=-2 -kerning first=48 second=351 amount=-1 -kerning first=191 second=261 amount=-1 -kerning first=188 second=953 amount=-1 -kerning first=68 second=967 amount=-1 -kerning first=94 second=210 amount=-2 -kerning first=237 second=100 amount=-1 -kerning first=357 second=250 amount=-1 -kerning first=354 second=941 amount=-3 -kerning first=377 second=1241 amount=-1 -kerning first=968 second=8220 amount=-3 -kerning first=167 second=968 amount=-1 -kerning first=170 second=277 amount=-1 -kerning first=8225 second=117 amount=-1 -kerning first=49 second=1035 amount=-5 -kerning first=52 second=291 amount=-1 -kerning first=195 second=211 amount=-2 -kerning first=304 second=1098 amount=-3 -kerning first=313 second=101 amount=-1 -kerning first=215 second=353 amount=-1 -kerning first=333 second=955 amount=-1 -kerning first=95 second=365 amount=-1 -kerning first=1170 second=1066 amount=-5 -kerning first=1119 second=8221 amount=-3 -kerning first=950 second=1080 amount=-2 -kerning first=1026 second=943 amount=-1 -kerning first=175 second=224 amount=-1 -kerning first=286 second=354 amount=-1 -kerning first=193 second=1184 amount=-5 -kerning first=196 second=366 amount=-2 -kerning first=314 second=279 amount=-1 -kerning first=8361 second=229 amount=-1 -kerning first=93 second=8217 amount=-3 -kerning first=931 second=103 amount=-1 -kerning first=365 second=115 amount=-1 -kerning first=958 second=267 amount=-1 -kerning first=259 second=1185 amount=-1 -kerning first=37 second=249 amount=-1 -kerning first=34 second=940 amount=-1 -kerning first=287 second=1038 amount=-2 -kerning first=318 second=226 amount=-1 -kerning first=83 second=88 amount=-1 -kerning first=1103 second=268 amount=-2 -kerning first=926 second=972 amount=-1 -kerning first=100 second=941 amount=-1 -kerning first=103 second=250 amount=-1 -kerning first=934 second=281 amount=-1 -kerning first=243 second=380 amount=-1 -kerning first=123 second=1241 amount=-1 -kerning first=126 second=187 amount=-1 -kerning first=260 second=8220 amount=-3 -kerning first=41 second=199 amount=-2 -kerning first=177 second=1079 amount=-1 -kerning first=184 second=89 amount=-5 -kerning first=58 second=1098 amount=-3 -kerning first=61 second=339 amount=-1 -kerning first=1073 second=973 amount=-1 -kerning first=64 second=101 amount=-1 -kerning first=204 second=251 amount=-1 -kerning first=8366 second=332 amount=-2 -kerning first=81 second=955 amount=-2 -kerning first=87 second=38 amount=-1 -kerning first=84 second=263 amount=-3 -kerning first=339 second=8221 amount=-1 -kerning first=1202 second=118 amount=-2 -kerning first=964 second=370 amount=-2 -kerning first=273 second=252 amount=-1 -kerning first=42 second=354 amount=-5 -kerning first=1049 second=67 amount=-2 -kerning first=185 second=266 amount=-2 -kerning first=188 second=39 amount=-3 -kerning first=65 second=279 amount=-1 -kerning first=62 second=970 amount=-1 -kerning first=1081 second=229 amount=-1 -kerning first=8369 second=963 amount=-1 -kerning first=900 second=920 amount=-2 -kerning first=88 second=213 amount=-3 -kerning first=1107 second=1195 amount=-1 -kerning first=108 second=355 amount=-1 -kerning first=251 second=267 amount=-1 -kerning first=43 second=1038 amount=-2 -kerning first=1051 second=242 amount=-1 -kerning first=1047 second=923 amount=-1 -kerning first=189 second=214 amount=-2 -kerning first=298 second=1101 amount=-1 -kerning first=69 second=226 amount=-1 -kerning first=1083 second=1240 amount=-2 -kerning first=209 second=356 amount=-5 -kerning first=330 second=268 amount=-2 -kerning first=1170 second=81 amount=-2 -kerning first=1219 second=243 amount=-1 -kerning first=372 second=1102 amount=-2 -kerning first=168 second=227 amount=-1 -kerning first=278 second=357 amount=-1 -kerning first=190 second=369 amount=-1 -kerning first=302 second=973 amount=-1 -kerning first=915 second=106 amount=1 -kerning first=236 second=228 amount=-1 -kerning first=948 second=962 amount=-1 -kerning first=1256 second=193 amount=-2 -kerning first=253 second=1194 amount=-2 -kerning first=256 second=370 amount=-2 -kerning first=376 second=974 amount=-4 -kerning first=379 second=283 amount=-1 -kerning first=166 second=1256 amount=-2 -kerning first=287 second=67 amount=-2 -kerning first=8224 second=245 amount=-1 -kerning first=197 second=79 amount=-2 -kerning first=311 second=229 amount=-1 -kerning first=1094 second=963 amount=-1 -kerning first=1097 second=271 amount=-1 -kerning first=214 second=920 amount=-2 -kerning first=916 second=286 amount=-2 -kerning first=955 second=218 amount=-2 -kerning first=52 second=1101 amount=-1 -kerning first=195 second=945 amount=-1 -kerning first=313 second=1240 amount=-1 -kerning first=8363 second=97 amount=-1 -kerning first=78 second=268 amount=-2 -kerning first=928 second=231 amount=-1 -kerning first=956 second=373 amount=-4 -kerning first=1299 second=288 amount=-2 -kerning first=36 second=357 amount=-1 -kerning first=178 second=269 amount=-1 -kerning first=56 second=973 amount=-1 -kerning first=1074 second=232 amount=-1 -kerning first=317 second=332 amount=-2 -kerning first=8361 second=966 amount=-1 -kerning first=8364 second=275 amount=-1 -kerning first=225 second=106 amount=1 -kerning first=105 second=118 amount=-4 -kerning first=368 second=193 amount=-2 -kerning first=965 second=83 amount=-1 -kerning first=125 second=283 amount=-1 -kerning first=43 second=67 amount=-2 -kerning first=1041 second=245 amount=-1 -kerning first=183 second=217 amount=-2 -kerning first=63 second=229 amount=-1 -kerning first=206 second=119 amount=-4 -kerning first=203 second=359 amount=-1 -kerning first=318 second=963 amount=-1 -kerning first=323 second=271 amount=-1 -kerning first=80 second=1195 amount=-1 -kerning first=223 second=1026 amount=-5 -kerning first=934 second=1090 amount=-3 -kerning first=947 second=246 amount=-1 -kerning first=249 second=218 amount=-2 -kerning first=369 second=346 amount=-1 -kerning first=162 second=230 amount=-1 -kerning first=268 second=1174 amount=-2 -kerning first=271 second=360 amount=-2 -kerning first=275 second=120 amount=-2 -kerning first=180 second=947 amount=-4 -kerning first=184 second=372 amount=-5 -kerning first=299 second=287 amount=-1 -kerning first=64 second=1240 amount=-2 -kerning first=61 second=1262 amount=-2 -kerning first=1080 second=335 amount=-1 -kerning first=1084 second=97 amount=-1 -kerning first=327 second=219 amount=-2 -kerning first=902 second=347 amount=-1 -kerning first=90 second=81 amount=-1 -kerning first=1117 second=259 amount=-1 -kerning first=1168 second=34 amount=-3 -kerning first=250 second=373 amount=-4 -kerning first=160 second=1263 amount=-1 -kerning first=8216 second=248 amount=-1 -kerning first=1049 second=350 amount=-1 -kerning first=303 second=232 amount=-1 -kerning first=1081 second=966 amount=-1 -kerning first=1085 second=275 amount=-1 -kerning first=906 second=289 amount=-1 -kerning first=357 second=71 amount=-2 -kerning first=1223 second=111 amount=-1 -kerning first=1210 second=351 amount=-1 -kerning first=248 second=8230 amount=-1 -kerning first=377 second=233 amount=-1 -kerning first=971 second=363 amount=-1 -kerning first=968 second=1177 amount=-1 -kerning first=167 second=333 amount=-1 -kerning first=280 second=245 amount=-1 -kerning first=8221 second=198 amount=-3 -kerning first=1063 second=290 amount=-2 -kerning first=189 second=949 amount=-1 -kerning first=192 second=257 amount=-1 -kerning first=69 second=963 amount=-1 -kerning first=72 second=271 amount=-1 -kerning first=336 second=84 amount=-2 -kerning first=912 second=234 amount=-1 -kerning first=1170 second=364 amount=-2 -kerning first=232 second=1090 amount=-1 -kerning first=358 second=246 amount=-1 -kerning first=950 second=376 amount=-5 -kerning first=1219 second=1035 amount=-5 -kerning first=1224 second=291 amount=-1 -kerning first=168 second=964 amount=-3 -kerning first=175 second=45 amount=-2 -kerning first=8226 second=113 amount=-1 -kerning first=56 second=57 amount=-1 -kerning first=53 second=287 amount=-1 -kerning first=1067 second=235 amount=-1 -kerning first=314 second=97 amount=-1 -kerning first=310 second=335 amount=-2 -kerning first=76 second=219 amount=-1 -kerning first=96 second=361 amount=-1 -kerning first=1168 second=8216 amount=-3 -kerning first=236 second=965 amount=-1 -kerning first=242 second=46 amount=-1 -kerning first=362 second=196 amount=-2 -kerning first=948 second=8250 amount=-1 -kerning first=176 second=220 amount=-2 -kerning first=287 second=350 amount=-1 -kerning first=57 second=232 amount=-1 -kerning first=197 second=362 amount=-2 -kerning first=194 second=1176 amount=-1 -kerning first=311 second=966 amount=-2 -kerning first=315 second=275 amount=-1 -kerning first=77 second=374 amount=-5 -kerning first=1103 second=87 amount=-5 -kerning first=217 second=1033 amount=-1 -kerning first=926 second=337 amount=-1 -kerning first=934 second=99 amount=-1 -kerning first=103 second=71 amount=-2 -kerning first=1184 second=249 amount=-1 -kerning first=363 second=351 amount=-1 -kerning first=960 second=261 amount=-1 -kerning first=955 second=953 amount=-1 -kerning first=123 second=233 amount=-1 -kerning first=260 second=1177 amount=-1 -kerning first=38 second=245 amount=-1 -kerning first=1038 second=198 amount=-2 -kerning first=177 second=375 amount=-1 -kerning first=291 second=290 amount=-2 -kerning first=1073 second=338 amount=-2 -kerning first=195 second=8211 amount=-2 -kerning first=1076 second=100 amount=-1 -kerning first=928 second=968 amount=-1 -kerning first=936 second=277 amount=-1 -kerning first=367 second=291 amount=-1 -kerning first=964 second=211 amount=-2 -kerning first=1299 second=1098 amount=-3 -kerning first=1039 second=353 amount=-1 -kerning first=175 second=8249 amount=-3 -kerning first=1046 second=113 amount=-2 -kerning first=185 second=85 amount=-2 -kerning first=297 second=235 amount=-1 -kerning first=62 second=335 amount=-1 -kerning first=65 second=97 amount=-1 -kerning first=942 second=224 amount=-1 -kerning first=962 second=1184 amount=-5 -kerning first=965 second=366 amount=-2 -kerning first=161 second=336 amount=-2 -kerning first=274 second=248 amount=-1 -kerning first=43 second=350 amount=-1 -kerning first=63 second=966 amount=-1 -kerning first=1083 second=225 amount=-1 -kerning first=330 second=87 amount=-5 -kerning first=8377 second=267 amount=-1 -kerning first=252 second=261 amount=-1 -kerning first=249 second=953 amount=-1 -kerning first=8212 second=356 amount=-4 -kerning first=1241 second=1078 amount=-2 -kerning first=8218 second=116 amount=-1 -kerning first=47 second=290 amount=-2 -kerning first=190 second=210 amount=-2 -kerning first=302 second=338 amount=-2 -kerning first=305 second=100 amount=-1 -kerning first=905 second=1241 amount=-1 -kerning first=910 second=187 amount=-2 -kerning first=356 second=199 amount=-1 -kerning first=951 second=89 amount=-5 -kerning first=944 second=1079 amount=-1 -kerning first=113 second=291 amount=-1 -kerning first=256 second=211 amount=-2 -kerning first=376 second=339 amount=-4 -kerning first=379 second=101 amount=-1 -kerning first=973 second=251 amount=-1 -kerning first=282 second=113 amount=-1 -kerning first=51 second=235 amount=-1 -kerning first=191 second=365 amount=-1 -kerning first=916 second=102 amount=-2 -kerning first=237 second=224 amount=-1 -kerning first=354 second=1118 amount=-2 -kerning first=357 second=354 amount=-5 -kerning first=952 second=266 amount=-2 -kerning first=955 second=39 amount=-3 -kerning first=254 second=1184 amount=-5 -kerning first=380 second=279 amount=-1 -kerning first=174 second=171 amount=-3 -kerning first=189 second=8217 amount=-3 -kerning first=78 second=87 amount=-5 -kerning first=333 second=1185 amount=-1 -kerning first=95 second=940 amount=-1 -kerning first=358 second=1038 amount=-2 -kerning first=956 second=214 amount=-2 -kerning first=1224 second=1101 amount=-1 -kerning first=1033 second=356 amount=-5 -kerning first=1036 second=116 amount=-1 -kerning first=171 second=1078 amount=-1 -kerning first=56 second=338 amount=-2 -kerning first=59 second=100 amount=-1 -kerning first=196 second=941 amount=-1 -kerning first=1067 second=972 amount=-1 -kerning first=931 second=227 amount=-1 -kerning first=239 second=1079 amount=-1 -kerning first=958 second=369 amount=-1 -kerning first=125 second=101 amount=-1 -kerning first=1263 second=973 amount=-1 -kerning first=122 second=339 amount=-1 -kerning first=40 second=113 amount=-1 -kerning first=37 second=353 amount=-1 -kerning first=179 second=263 amount=-1 -kerning first=1103 second=370 amount=-2 -kerning first=226 second=102 amount=-1 -kerning first=926 second=1256 amount=-2 -kerning first=100 second=1118 amount=-1 -kerning first=103 second=354 amount=-5 -kerning first=249 second=39 amount=-3 -kerning first=123 second=970 amount=-1 -kerning first=126 second=279 amount=-1 -kerning first=184 second=213 amount=-2 -kerning first=8260 second=1026 amount=-5 -kerning first=299 second=103 amount=-1 -kerning first=64 second=225 amount=-1 -kerning first=1073 second=1257 amount=-1 -kerning first=204 second=355 amount=-1 -kerning first=207 second=115 amount=-1 -kerning first=8372 second=218 amount=-2 -kerning first=84 second=367 amount=-2 -kerning first=1194 second=923 amount=-1 -kerning first=1202 second=242 amount=-1 -kerning first=250 second=214 amount=-2 -kerning first=367 second=1101 amount=-1 -kerning first=964 second=945 amount=-1 -kerning first=273 second=356 amount=-5 -kerning first=163 second=226 amount=-1 -kerning first=276 second=116 amount=-1 -kerning first=185 second=368 amount=-2 -kerning first=297 second=972 amount=-1 -kerning first=300 second=281 amount=-1 -kerning first=211 second=65 amount=-2 -kerning first=354 second=117 amount=-2 -kerning first=251 second=369 amount=-1 -kerning first=371 second=973 amount=-1 -kerning first=8217 second=244 amount=-1 -kerning first=1063 second=106 amount=1 -kerning first=186 second=1066 amount=-5 -kerning first=183 second=8221 amount=-3 -kerning first=304 second=228 amount=-1 -kerning first=1083 second=962 amount=-1 -kerning first=330 second=370 amount=-2 -kerning first=92 second=252 amount=-1 -kerning first=89 second=943 amount=-2 -kerning first=232 second=382 amount=-1 -kerning first=358 second=67 amount=-2 -kerning first=950 second=217 amount=-2 -kerning first=258 second=79 amount=-2 -kerning first=1026 second=119 amount=-4 -kerning first=278 second=920 amount=-2 -kerning first=47 second=1100 amount=-1 -kerning first=53 second=103 amount=-1 -kerning first=1064 second=286 amount=-2 -kerning first=193 second=253 amount=-1 -kerning first=302 second=1257 amount=-1 -kerning first=73 second=267 amount=-1 -kerning first=1096 second=218 amount=-2 -kerning first=915 second=230 amount=-1 -kerning first=1171 second=360 amount=-2 -kerning first=233 second=1083 amount=-1 -kerning first=356 second=923 amount=-6 -kerning first=948 second=947 amount=-4 -kerning first=951 second=372 amount=-5 -kerning first=113 second=1101 amount=-1 -kerning first=256 second=945 amount=-1 -kerning first=379 second=1240 amount=-1 -kerning first=172 second=268 amount=-2 -kerning first=8224 second=347 amount=-1 -kerning first=8220 second=1108 amount=-1 -kerning first=51 second=972 amount=-1 -kerning first=54 second=281 amount=-1 -kerning first=100 second=117 amount=-1 -kerning first=240 second=269 amount=-1 -kerning first=117 second=973 amount=-1 -kerning first=1298 second=232 amount=-1 -kerning first=1035 second=244 amount=-1 -kerning first=177 second=216 amount=-2 -kerning first=291 second=106 amount=1 -kerning first=8240 second=289 amount=-1 -kerning first=58 second=228 amount=-1 -kerning first=201 second=118 amount=-4 -kerning first=313 second=962 amount=-1 -kerning first=8363 second=221 amount=-5 -kerning first=75 second=1194 amount=-3 -kerning first=78 second=370 amount=-2 -kerning first=221 second=283 amount=-4 -kerning first=928 second=333 amount=-1 -kerning first=1185 second=245 amount=-2 -kerning first=956 second=949 amount=-1 -kerning first=124 second=229 amount=-1 -kerning first=269 second=119 amount=-1 -kerning first=36 second=920 amount=-2 -kerning first=175 second=1195 amount=-1 -kerning first=178 second=371 amount=-1 -kerning first=289 second=1026 amount=-5 -kerning first=294 second=286 amount=-2 -kerning first=56 second=1257 amount=-1 -kerning first=1074 second=334 amount=-2 -kerning first=199 second=1046 amount=-2 -kerning first=322 second=218 amount=-2 -kerning first=8364 second=376 amount=-5 -kerning first=931 second=964 amount=-3 -kerning first=942 second=45 amount=-2 -kerning first=105 second=242 amount=-1 -kerning first=346 second=120 amount=-1 -kerning first=242 second=947 amount=-1 -kerning first=125 second=1240 amount=-2 -kerning first=1037 second=1108 amount=-1 -kerning first=1041 second=347 amount=-1 -kerning first=179 second=1069 amount=-1 -kerning first=186 second=81 amount=-2 -kerning first=298 second=231 amount=-1 -kerning first=206 second=243 amount=-1 -kerning first=323 second=373 amount=-4 -kerning first=901 second=288 amount=-2 -kerning first=223 second=1263 amount=-1 -kerning first=372 second=232 amount=-3 -kerning first=963 second=1176 amount=-1 -kerning first=162 second=332 amount=-2 -kerning first=8212 second=197 amount=-2 -kerning first=47 second=106 amount=1 -kerning first=1048 second=289 amount=-1 -kerning first=187 second=256 amount=-3 -kerning first=64 second=962 amount=-1 -kerning first=1084 second=221 amount=-5 -kerning first=210 second=193 amount=-2 -kerning first=8378 second=261 amount=-1 -kerning first=8372 second=953 amount=-1 -kerning first=905 second=233 amount=-1 -kerning first=1117 second=363 amount=-1 -kerning first=944 second=375 amount=-1 -kerning first=250 second=949 amount=-1 -kerning first=253 second=257 amount=-1 -kerning first=964 second=8211 amount=-2 -kerning first=163 second=963 amount=-1 -kerning first=166 second=271 amount=-1 -kerning first=48 second=286 amount=-2 -kerning first=1062 second=234 amount=-1 -kerning first=45 second=1026 amount=-4 -kerning first=300 second=1090 amount=-3 -kerning first=303 second=334 amount=-2 -kerning first=1085 second=376 amount=-5 -kerning first=332 second=258 amount=-2 -kerning first=91 second=360 amount=-2 -kerning first=1118 second=1059 amount=-2 -kerning first=237 second=45 amount=-2 -kerning first=942 second=8249 amount=-3 -kerning first=952 second=85 amount=-2 -kerning first=114 second=287 amount=-1 -kerning first=1223 second=235 amount=-1 -kerning first=374 second=1094 amount=-3 -kerning first=377 second=335 amount=-1 -kerning first=170 second=219 amount=-2 -kerning first=280 second=347 amount=-1 -kerning first=52 second=231 amount=-1 -kerning first=192 second=361 amount=-1 -kerning first=195 second=121 amount=-1 -kerning first=304 second=965 amount=-1 -kerning first=72 second=373 amount=-4 -kerning first=1083 second=8250 amount=-1 -kerning first=215 second=288 amount=-2 -kerning first=912 second=336 amount=-2 -kerning first=1175 second=248 amount=-1 -kerning first=238 second=220 amount=-2 -kerning first=358 second=350 amount=-1 -kerning first=950 second=952 amount=-2 -kerning first=118 second=232 amount=-1 -kerning first=255 second=1176 amount=-1 -kerning first=258 second=362 amount=-2 -kerning first=1240 second=47 amount=-1 -kerning first=381 second=275 amount=-1 -kerning first=378 second=966 amount=-1 -kerning first=1033 second=197 amount=-1 -kerning first=171 second=374 amount=-2 -kerning first=1067 second=337 amount=-1 -kerning first=314 second=221 amount=-5 -kerning first=70 second=8230 amount=-4 -kerning first=1099 second=261 amount=-1 -kerning first=1096 second=953 amount=-1 -kerning first=239 second=375 amount=-1 -kerning first=958 second=210 amount=-2 -kerning first=1263 second=338 amount=-2 -kerning first=256 second=8211 amount=-2 -kerning first=179 second=84 amount=-5 -kerning first=57 second=334 amount=-2 -kerning first=54 second=1090 amount=-3 -kerning first=1071 second=277 amount=-1 -kerning first=200 second=246 amount=-1 -kerning first=315 second=376 amount=-6 -kerning first=80 second=258 amount=-4 -kerning first=1103 second=211 amount=-2 -kerning first=8365 second=89 amount=-5 -kerning first=338 second=1059 amount=-2 -kerning first=237 second=8249 amount=-3 -kerning first=1187 second=113 amount=-1 -kerning first=960 second=365 amount=-1 -kerning first=123 second=335 amount=-1 -kerning first=126 second=97 amount=-1 -kerning first=35 second=1108 amount=-1 -kerning first=38 second=347 amount=-1 -kerning first=180 second=259 amount=-1 -kerning first=184 second=34 amount=-3 -kerning first=58 second=965 amount=-1 -kerning first=8366 second=266 amount=-2 -kerning first=8372 second=39 amount=-3 -kerning first=345 second=248 amount=-1 -kerning first=101 second=1113 amount=-1 -kerning first=1202 second=63 amount=-2 -kerning first=956 second=8217 amount=-3 -kerning first=124 second=966 amount=-1 -kerning first=160 second=275 amount=-1 -kerning first=42 second=289 amount=-1 -kerning first=39 second=1033 amount=-3 -kerning first=297 second=337 amount=-1 -kerning first=300 second=99 amount=-1 -kerning first=65 second=221 amount=-5 -kerning first=205 second=351 amount=-1 -kerning first=322 second=953 amount=-1 -kerning first=325 second=261 amount=-1 -kerning first=1102 second=8218 amount=-1 -kerning first=108 second=290 amount=-2 -kerning first=251 second=210 amount=-2 -kerning first=371 second=338 amount=-2 -kerning first=374 second=100 amount=-4 -kerning first=968 second=250 amount=-1 -kerning first=965 second=941 amount=-1 -kerning first=274 second=352 amount=-1 -kerning first=8217 second=65 amount=-3 -kerning first=1051 second=187 amount=-1 -kerning first=186 second=364 amount=-2 -kerning first=298 second=968 amount=-1 -kerning first=301 second=277 amount=-1 -kerning first=66 second=376 amount=-2 -kerning first=206 second=1035 amount=-5 -kerning first=209 second=291 amount=-1 -kerning first=1087 second=89 amount=-5 -kerning first=330 second=211 amount=-2 -kerning first=8377 second=369 amount=-1 -kerning first=901 second=1098 amount=-3 -kerning first=904 second=339 amount=-1 -kerning first=86 second=1059 amount=-2 -kerning first=1119 second=251 amount=-1 -kerning first=946 second=263 amount=-1 -kerning first=252 second=365 amount=-1 -kerning first=8212 second=916 amount=-2 -kerning first=184 second=8216 amount=-3 -kerning first=193 second=74 amount=-1 -kerning first=305 second=224 amount=-1 -kerning first=64 second=8250 amount=-1 -kerning first=1096 second=39 amount=-3 -kerning first=327 second=1184 amount=-5 -kerning first=905 second=970 amount=-1 -kerning first=93 second=248 amount=-1 -kerning first=910 second=279 amount=-4 -kerning first=233 second=378 amount=-1 -kerning first=236 second=171 amount=-3 -kerning first=951 second=213 amount=-2 -kerning first=250 second=8217 amount=-3 -kerning first=973 second=355 amount=-1 -kerning first=1027 second=115 amount=-1 -kerning first=172 second=87 amount=-5 -kerning first=51 second=337 amount=-1 -kerning first=54 second=99 amount=-1 -kerning first=191 second=940 amount=-1 -kerning first=194 second=249 amount=-1 -kerning first=74 second=261 amount=-1 -kerning first=916 second=226 amount=-1 -kerning first=1174 second=356 amount=-2 -kerning first=234 second=1078 amount=-2 -kerning first=952 second=368 amount=-2 -kerning first=117 second=338 amount=-2 -kerning first=1223 second=972 amount=-1 -kerning first=260 second=250 amount=-1 -kerning first=120 second=100 amount=-2 -kerning first=174 second=262 amount=-2 -kerning first=52 second=968 amount=-1 -kerning first=55 second=277 amount=-1 -kerning first=198 second=199 amount=-2 -kerning first=316 second=89 amount=-5 -kerning first=78 second=211 amount=-2 -kerning first=215 second=1098 amount=-3 -kerning first=221 second=101 amount=-4 -kerning first=920 second=381 amount=-1 -kerning first=950 second=8221 amount=-3 -kerning first=118 second=969 amount=-1 -kerning first=1299 second=228 amount=-1 -kerning first=1036 second=240 amount=-2 -kerning first=1033 second=916 amount=-1 -kerning first=178 second=212 amount=-2 -kerning first=59 second=224 amount=-1 -kerning first=1067 second=1256 amount=-2 -kerning first=196 second=1118 amount=-1 -kerning first=199 second=354 amount=-1 -kerning first=317 second=266 amount=-2 -kerning first=322 second=39 amount=-3 -kerning first=8364 second=217 amount=-2 -kerning first=76 second=1184 amount=-6 -kerning first=962 second=253 amount=-1 -kerning first=125 second=225 amount=-1 -kerning first=1263 second=1257 amount=-1 -kerning first=176 second=1185 amount=-3 -kerning first=179 second=367 amount=-1 -kerning first=200 second=1038 amount=-2 -kerning first=323 second=214 amount=-2 -kerning first=8365 second=372 amount=-5 -kerning first=1103 second=945 amount=-1 -kerning first=369 second=281 amount=-1 -kerning first=41 second=1241 amount=-1 -kerning first=177 second=8220 amount=-3 -kerning first=299 second=227 amount=-1 -kerning first=8260 second=1263 amount=-1 -kerning first=61 second=1079 amount=-1 -kerning first=1080 second=269 amount=-1 -kerning first=67 second=89 amount=-2 -kerning first=84 second=942 amount=-2 -kerning first=87 second=251 amount=-2 -kerning first=944 second=216 amount=-2 -kerning first=244 second=8221 amount=-1 -kerning first=247 second=1066 amount=-5 -kerning first=373 second=228 amount=-1 -kerning first=970 second=118 amount=-2 -kerning first=276 second=240 amount=-1 -kerning first=8216 second=193 amount=-3 -kerning first=1049 second=283 amount=-1 -kerning first=185 second=943 amount=-1 -kerning first=188 second=252 amount=-1 -kerning first=1046 second=974 amount=-2 -kerning first=297 second=1256 amount=-2 -kerning first=1085 second=217 amount=-2 -kerning first=906 second=229 amount=-1 -kerning first=1118 second=359 amount=-1 -kerning first=354 second=241 amount=-2 -kerning first=942 second=1195 amount=-1 -kerning first=114 second=103 amount=-1 -kerning first=1210 second=286 amount=-2 -kerning first=254 second=253 amount=-1 -kerning first=371 second=1257 amount=-1 -kerning first=167 second=267 amount=-1 -kerning first=1063 second=230 amount=-1 -kerning first=72 second=214 amount=-2 -kerning first=1083 second=947 amount=-4 -kerning first=1087 second=372 amount=-5 -kerning first=209 second=1101 amount=-1 -kerning first=330 second=945 amount=-1 -kerning first=904 second=1262 amount=-2 -kerning first=92 second=356 amount=-5 -kerning first=95 second=116 amount=-1 -kerning first=946 second=1069 amount=-1 -kerning first=1224 second=231 amount=-1 -kerning first=1026 second=243 amount=-1 -kerning first=8218 second=1028 amount=-1 -kerning first=8222 second=288 amount=-1 -kerning first=53 second=227 amount=-1 -kerning first=193 second=357 amount=-1 -kerning first=196 second=117 amount=-1 -kerning first=310 second=269 amount=-2 -kerning first=70 second=1187 amount=-1 -kerning first=73 second=369 amount=-1 -kerning first=910 second=1085 amount=-3 -kerning first=915 second=332 amount=-2 -kerning first=1176 second=244 amount=-1 -kerning first=239 second=216 amount=-2 -kerning first=119 second=228 amount=-1 -kerning first=379 second=962 amount=-1 -kerning first=34 second=240 amount=-1 -kerning first=1034 second=193 amount=-1 -kerning first=169 second=1194 amount=-2 -kerning first=172 second=370 amount=-2 -kerning first=287 second=283 amount=-1 -kerning first=51 second=1256 amount=-2 -kerning first=200 second=67 amount=-2 -kerning first=315 second=217 amount=-1 -kerning first=80 second=79 amount=-2 -kerning first=1097 second=949 amount=-1 -kerning first=338 second=359 amount=-1 -kerning first=916 second=963 amount=-1 -kerning first=926 second=271 amount=-1 -kerning first=237 second=1195 amount=-1 -kerning first=240 second=371 amount=-1 -kerning first=363 second=286 amount=-2 -kerning first=117 second=1257 amount=-1 -kerning first=1257 second=1090 amount=-1 -kerning first=1298 second=334 amount=-2 -kerning first=1035 second=346 amount=-1 -kerning first=291 second=230 amount=-1 -kerning first=1073 second=273 amount=-1 -kerning first=201 second=242 amount=-1 -kerning first=316 second=372 amount=-5 -kerning first=313 second=947 amount=-3 -kerning first=8366 second=85 amount=-2 -kerning first=78 second=945 amount=-1 -kerning first=221 second=1240 amount=-3 -kerning first=936 second=219 amount=-2 -kerning first=1178 second=1108 amount=-1 -kerning first=1185 second=347 amount=-1 -kerning first=247 second=81 amount=-2 -kerning first=367 second=231 amount=-1 -kerning first=964 second=121 amount=-1 -kerning first=1299 second=965 amount=-1 -kerning first=1240 second=1202 amount=-3 -kerning first=1036 second=1028 amount=-3 -kerning first=1039 second=288 amount=-2 -kerning first=289 second=1263 amount=-1 -kerning first=62 second=269 amount=-1 -kerning first=900 second=232 amount=-1 -kerning first=937 second=374 amount=-2 -kerning first=108 second=106 amount=2 -kerning first=968 second=71 amount=-2 -kerning first=125 second=962 amount=-1 -kerning first=46 second=55 amount=-1 -kerning first=43 second=283 amount=-1 -kerning first=298 second=333 amount=-1 -kerning first=323 second=949 amount=-1 -kerning first=8377 second=210 amount=-2 -kerning first=1103 second=8211 amount=-2 -kerning first=86 second=359 amount=-1 -kerning first=89 second=119 amount=-2 -kerning first=232 second=44 amount=-1 -kerning first=352 second=194 amount=-1 -kerning first=946 second=84 amount=-5 -kerning first=1206 second=234 amount=-1 -kerning first=369 second=1090 amount=-3 -kerning first=372 second=334 amount=-2 -kerning first=165 second=218 amount=-2 +kerning first=47 second=197 amount=-5 +kerning first=47 second=198 amount=-5 +kerning first=47 second=199 amount=-1 +kerning first=47 second=210 amount=-1 +kerning first=47 second=211 amount=-1 +kerning first=47 second=212 amount=-1 +kerning first=47 second=213 amount=-1 +kerning first=47 second=214 amount=-1 +kerning first=47 second=216 amount=-1 +kerning first=47 second=224 amount=-2 +kerning first=47 second=225 amount=-2 +kerning first=47 second=226 amount=-2 +kerning first=47 second=227 amount=-2 +kerning first=47 second=228 amount=-2 +kerning first=47 second=229 amount=-2 kerning first=47 second=230 amount=-2 -kerning first=305 second=45 amount=-2 -kerning first=302 second=273 amount=-1 -kerning first=299 second=964 amount=-3 -kerning first=64 second=947 amount=-4 -kerning first=67 second=372 amount=-1 -kerning first=8378 second=365 amount=-1 -kerning first=905 second=335 amount=-1 -kerning first=910 second=97 amount=-4 -kerning first=356 second=109 amount=-2 -kerning first=948 second=259 amount=-1 -kerning first=951 second=34 amount=-3 -kerning first=113 second=231 amount=-1 -kerning first=253 second=361 amount=-1 -kerning first=256 second=121 amount=-1 -kerning first=166 second=373 amount=-4 -kerning first=276 second=1028 amount=-2 -kerning first=1062 second=336 amount=-1 -kerning first=306 second=220 amount=-2 -kerning first=214 second=232 amount=-1 -kerning first=335 second=122 amount=-1 -kerning first=906 second=966 amount=-1 -kerning first=94 second=244 amount=-1 -kerning first=231 second=1203 amount=-1 -kerning first=357 second=289 amount=-1 -kerning first=354 second=1033 amount=-4 -kerning first=1223 second=337 amount=-1 -kerning first=260 second=71 amount=-2 -kerning first=174 second=83 amount=-1 -kerning first=52 second=333 amount=-1 -kerning first=195 second=245 amount=-1 -kerning first=72 second=949 amount=-1 -kerning first=75 second=257 amount=-1 -kerning first=330 second=8211 amount=-2 -kerning first=361 second=234 amount=-1 -kerning first=1224 second=968 amount=-1 -kerning first=1026 second=1035 amount=-5 -kerning first=8222 second=1098 amount=-3 -kerning first=8226 second=339 amount=-1 -kerning first=56 second=273 amount=-1 -kerning first=59 second=45 amount=-2 -kerning first=53 second=964 amount=-3 -kerning first=305 second=8249 amount=-3 -kerning first=317 second=85 amount=-2 -kerning first=8361 second=263 amount=-1 -kerning first=1099 second=365 amount=-1 -kerning first=96 second=1108 amount=-1 -kerning first=245 second=34 amount=-1 -kerning first=951 second=8216 amount=-3 -kerning first=37 second=288 amount=-2 -kerning first=60 second=220 amount=-2 -kerning first=200 second=350 amount=-1 -kerning first=8365 second=213 amount=-2 -kerning first=80 second=362 amount=-2 -kerning first=77 second=1176 amount=-1 -kerning first=223 second=275 amount=-1 -kerning first=103 second=289 amount=-1 -kerning first=369 second=99 amount=-1 -kerning first=960 second=940 amount=-1 -kerning first=963 second=249 amount=-1 -kerning first=126 second=221 amount=-5 -kerning first=271 second=111 amount=-1 -kerning first=41 second=233 amount=-1 -kerning first=180 second=363 amount=-1 -kerning first=177 second=1177 amount=-1 -kerning first=61 second=375 amount=-1 -kerning first=1073 second=1078 amount=-2 -kerning first=204 second=290 amount=-2 -kerning first=8366 second=368 amount=-2 -kerning first=78 second=8211 amount=-2 -kerning first=902 second=100 amount=-1 -kerning first=81 second=1051 amount=-1 -kerning first=107 second=234 amount=-2 -kerning first=247 second=364 amount=-2 -kerning first=367 second=968 amount=-1 -kerning first=967 second=199 amount=-2 -kerning first=160 second=376 amount=-5 -kerning first=273 second=291 amount=-1 -kerning first=1039 second=1098 amount=-3 -kerning first=178 second=8212 amount=-2 -kerning first=182 second=1059 amount=-2 -kerning first=1049 second=101 amount=-1 -kerning first=1046 second=339 amount=-2 -kerning first=59 second=8249 amount=-3 -kerning first=1081 second=263 amount=-1 -kerning first=325 second=365 amount=-1 -kerning first=8369 second=1066 amount=-5 -kerning first=8364 second=8221 amount=-3 -kerning first=245 second=8216 amount=-1 -kerning first=374 second=224 amount=-4 -kerning first=968 second=354 amount=-5 -kerning first=965 second=1118 amount=-1 -kerning first=125 second=8250 amount=-1 -kerning first=46 second=336 amount=-1 -kerning first=1051 second=279 amount=-1 -kerning first=189 second=248 amount=-1 -kerning first=304 second=171 amount=-3 -kerning first=1087 second=213 amount=-2 -kerning first=323 second=8217 amount=-3 -kerning first=1119 second=355 amount=-1 -kerning first=1170 second=115 amount=-1 -kerning first=946 second=367 amount=-1 -kerning first=943 second=1185 amount=-2 -kerning first=255 second=249 amount=-1 -kerning first=252 second=940 amount=-1 -kerning first=372 second=1220 amount=-2 -kerning first=168 second=261 amount=-1 -kerning first=165 second=953 amount=-1 -kerning first=1241 second=8218 amount=-1 -kerning first=1064 second=226 amount=-1 -kerning first=73 second=210 amount=-2 -kerning first=910 second=380 amount=-2 -kerning first=93 second=352 amount=-1 -kerning first=236 second=262 amount=-2 -kerning first=356 second=1241 amount=-3 -kerning first=944 second=8220 amount=-3 -kerning first=113 second=968 amount=-1 -kerning first=376 second=1079 amount=-4 -kerning first=172 second=211 amount=-2 -kerning first=279 second=1098 amount=-1 -kerning first=282 second=339 amount=-1 -kerning first=287 second=101 amount=-1 -kerning first=8230 second=54 amount=-1 -kerning first=194 second=353 amount=-1 -kerning first=197 second=113 amount=-1 -kerning first=311 second=263 amount=-2 -kerning first=74 second=365 amount=-1 -kerning first=1085 second=8221 amount=-3 -kerning first=240 second=212 amount=-2 -kerning first=952 second=943 amount=-1 -kerning first=955 second=252 amount=-1 -kerning first=120 second=224 amount=-1 -kerning first=1223 second=1256 amount=-2 -kerning first=1257 second=382 amount=-1 -kerning first=260 second=354 amount=-5 -kerning first=170 second=1184 amount=-5 -kerning first=174 second=366 amount=-2 -kerning first=8240 second=229 amount=-1 -kerning first=58 second=171 amount=-3 -kerning first=316 second=213 amount=-2 -kerning first=72 second=8217 amount=-3 -kerning first=221 second=225 amount=-4 -kerning first=928 second=267 amount=-1 -kerning first=238 second=1185 amount=-3 -kerning first=294 second=226 amount=-1 -kerning first=8226 second=1262 amount=-2 -kerning first=1074 second=268 amount=-2 -kerning first=317 second=368 amount=-2 -kerning first=8361 second=1069 amount=-1 -kerning first=8369 second=81 amount=-2 -kerning first=346 second=65 amount=-1 -kerning first=102 second=1241 amount=-1 -kerning first=105 second=187 amount=-1 -kerning first=239 second=8220 amount=-3 -kerning first=962 second=357 amount=-1 -kerning first=965 second=117 amount=-1 -kerning first=161 second=89 amount=-5 -kerning first=37 second=1098 amount=-3 -kerning first=40 second=339 amount=-1 -kerning first=1037 second=973 amount=-1 -kerning first=43 second=101 amount=-1 -kerning first=183 second=251 amount=-1 -kerning first=63 second=263 amount=-1 -kerning first=315 second=8221 amount=-3 -kerning first=318 second=1066 amount=-5 -kerning first=901 second=228 amount=-1 -kerning first=934 second=1194 amount=-2 -kerning first=109 second=102 amount=-1 -kerning first=947 second=283 amount=-1 -kerning first=249 second=252 amount=-1 -kerning first=162 second=266 amount=-2 -kerning first=165 second=39 amount=-3 -kerning first=41 second=970 amount=-1 -kerning first=1048 second=229 amount=-1 -kerning first=1076 second=1195 amount=-1 -kerning first=1080 second=371 amount=-1 -kerning first=327 second=253 amount=-1 -kerning first=84 second=1119 amount=-2 -kerning first=166 second=214 amount=-2 -kerning first=273 second=1101 amount=-1 -kerning first=8216 second=287 amount=-1 -kerning first=1049 second=1240 amount=-2 -kerning first=48 second=226 amount=-1 -kerning first=188 second=356 amount=-5 -kerning first=191 second=116 amount=-1 -kerning first=303 second=268 amount=-2 -kerning first=1081 second=1069 amount=-1 -kerning first=1169 second=243 amount=-1 -kerning first=354 second=343 amount=-2 -kerning first=114 second=227 amount=-1 -kerning first=254 second=357 amount=-1 -kerning first=374 second=961 amount=-5 -kerning first=377 second=269 amount=-1 -kerning first=167 second=369 amount=-1 -kerning first=8221 second=232 amount=-1 -kerning first=1063 second=332 amount=-2 -kerning first=69 second=1066 amount=-5 -kerning first=215 second=228 amount=-1 -kerning first=95 second=240 amount=-1 -kerning first=358 second=283 amount=-1 -kerning first=1224 second=333 amount=-1 -kerning first=175 second=79 amount=-2 -kerning first=1064 second=963 amount=-1 -kerning first=1067 second=271 amount=-1 -kerning first=193 second=920 amount=-2 -kerning first=1070 second=44 amount=-1 -kerning first=305 second=1195 amount=-1 -kerning first=310 second=371 amount=-1 -kerning first=8361 second=84 amount=-5 -kerning first=76 second=253 amount=-1 -kerning first=334 second=1046 amount=-3 -kerning first=923 second=218 amount=-2 -kerning first=1176 second=346 amount=-1 -kerning first=1263 second=273 amount=-1 -kerning first=172 second=945 amount=-1 -kerning first=287 second=1240 amount=-2 -kerning first=282 second=1262 amount=-2 -kerning first=57 second=268 amount=-2 -kerning first=1071 second=219 amount=-2 -kerning first=318 second=81 amount=-2 -kerning first=8365 second=34 amount=-3 -kerning first=1103 second=121 amount=-1 -kerning first=341 second=243 amount=-1 -kerning first=926 second=373 amount=-4 -kerning first=1184 second=288 amount=-3 -kerning first=123 second=269 amount=-1 -kerning first=35 second=973 amount=-1 -kerning first=291 second=332 amount=-2 -kerning first=8240 second=966 amount=-1 -kerning first=8260 second=275 amount=-1 -kerning first=61 second=216 amount=-2 -kerning first=1073 second=374 amount=-5 -kerning first=204 second=106 amount=1 -kerning first=84 second=118 amount=-2 -kerning first=221 second=962 amount=-4 -kerning first=920 second=8230 amount=-1 -kerning first=367 second=333 amount=-1 -kerning first=964 second=245 amount=-1 -kerning first=160 second=217 amount=-2 -kerning first=42 second=229 amount=-1 -kerning first=185 second=119 amount=-4 -kerning first=182 second=359 amount=-1 -kerning first=294 second=963 amount=-1 -kerning first=297 second=271 amount=-1 -kerning first=59 second=1195 amount=-1 -kerning first=62 second=371 amount=-1 -kerning first=1081 second=84 amount=-5 -kerning first=202 second=1026 amount=-5 -kerning first=205 second=286 amount=-2 -kerning first=8369 second=364 amount=-2 -kerning first=900 second=334 amount=-2 -kerning first=937 second=950 amount=-1 -kerning first=108 second=230 amount=-1 -kerning first=371 second=273 amount=-1 -kerning first=374 second=45 amount=-4 -kerning first=125 second=947 amount=-4 -kerning first=161 second=372 amount=-5 -kerning first=274 second=287 amount=-1 -kerning first=40 second=1262 amount=-2 -kerning first=43 second=1240 amount=-2 -kerning first=1051 second=97 amount=-1 -kerning first=301 second=219 amount=-2 -kerning first=63 second=1069 amount=-1 -kerning first=69 second=81 amount=-2 -kerning first=1087 second=34 amount=-3 -kerning first=1083 second=259 amount=-1 -kerning first=209 second=231 amount=-1 -kerning first=8365 second=8216 amount=-3 -kerning first=330 second=121 amount=-1 -kerning first=901 second=965 amount=-1 -kerning first=908 second=46 amount=-1 -kerning first=89 second=243 amount=-4 -kerning first=229 second=373 amount=-1 -kerning first=1206 second=336 amount=-1 -kerning first=375 second=220 amount=-2 -kerning first=966 second=1113 amount=-1 -kerning first=278 second=232 amount=-1 -kerning first=47 second=332 amount=-2 -kerning first=1048 second=966 amount=-1 -kerning first=190 second=244 amount=-1 -kerning first=302 second=374 amount=-5 -kerning first=70 second=256 amount=-4 -kerning first=8378 second=940 amount=-1 -kerning first=1171 second=111 amount=-1 -kerning first=1168 second=351 amount=-1 -kerning first=236 second=83 amount=-1 -kerning first=356 second=233 amount=-3 -kerning first=944 second=1177 amount=-1 -kerning first=948 second=363 amount=-1 -kerning first=113 second=333 amount=-1 -kerning first=256 second=245 amount=-1 -kerning first=376 second=375 amount=-2 -kerning first=973 second=290 amount=-2 -kerning first=166 second=949 amount=-1 -kerning first=169 second=257 amount=-1 -kerning first=8224 second=100 amount=-1 -kerning first=48 second=963 amount=-1 -kerning first=54 second=44 amount=-1 -kerning first=51 second=271 amount=-1 -kerning first=214 second=334 amount=-2 -kerning first=911 second=376 amount=-2 -kerning first=94 second=346 amount=-1 -kerning first=117 second=273 amount=-1 -kerning first=120 second=45 amount=-3 -kerning first=374 second=8249 amount=-3 -kerning first=55 second=219 amount=-2 -kerning first=192 second=1108 amount=-1 -kerning first=195 second=347 amount=-1 -kerning first=316 second=34 amount=-3 -kerning first=75 second=361 amount=-1 -kerning first=1087 second=8216 amount=-3 -kerning first=78 second=121 amount=-1 -kerning first=215 second=965 amount=-1 -kerning first=221 second=46 amount=-4 -kerning first=95 second=1028 amount=-2 -kerning first=361 second=336 amount=-2 -kerning first=956 second=248 amount=-1 -kerning first=121 second=220 amount=-2 -kerning first=1299 second=171 amount=-3 -kerning first=1240 second=260 amount=-2 -kerning first=36 second=232 amount=-1 -kerning first=175 second=362 amount=-2 -kerning first=289 second=275 amount=-1 -kerning first=56 second=374 amount=-5 -kerning first=1074 second=87 amount=-5 -kerning first=8361 second=367 amount=-1 -kerning first=1099 second=940 amount=-1 -kerning first=222 second=221 amount=-3 -kerning first=931 second=261 amount=-1 -kerning first=923 second=953 amount=-1 -kerning first=102 second=233 amount=-1 -kerning first=343 second=111 amount=-1 -kerning first=239 second=1177 amount=-1 -kerning first=1037 second=338 amount=-2 -kerning first=172 second=8211 amount=-2 -kerning first=1041 second=100 amount=-1 -kerning first=8250 second=380 amount=-1 -kerning first=63 second=84 amount=-5 -kerning first=203 second=234 amount=-1 -kerning first=318 second=364 amount=-2 -kerning first=223 second=376 amount=-5 -kerning first=1184 second=1098 amount=-4 -kerning first=240 second=8212 amount=-2 -kerning first=947 second=101 amount=-1 -kerning first=1187 second=339 amount=-1 -kerning first=963 second=353 amount=-1 -kerning first=120 second=8249 amount=-2 -kerning first=162 second=85 amount=-2 -kerning first=271 second=235 amount=-1 -kerning first=41 second=335 amount=-1 -kerning first=64 second=259 amount=-1 -kerning first=1080 second=212 amount=-2 -kerning first=316 second=8216 amount=-3 -kerning first=8366 second=943 amount=-1 -kerning first=8372 second=252 amount=-1 -kerning first=902 second=224 amount=-1 -kerning first=87 second=196 amount=-5 -kerning first=221 second=8250 amount=-2 -kerning first=936 second=1184 amount=-5 -kerning first=1202 second=279 amount=-1 -kerning first=250 second=248 amount=-1 -kerning first=373 second=171 amount=-1 -kerning first=8216 second=103 amount=-1 -kerning first=42 second=966 amount=-1 -kerning first=1049 second=225 amount=-1 -kerning first=303 second=87 amount=-5 -kerning first=1081 second=367 amount=-1 -kerning first=325 second=940 amount=-1 -kerning first=88 second=351 amount=-1 -kerning first=91 second=111 amount=-1 -kerning first=1210 second=226 amount=-1 -kerning first=167 second=210 amount=-2 -kerning first=280 second=100 amount=-1 -kerning first=8217 second=281 amount=-1 -kerning first=189 second=352 amount=-1 -kerning first=304 second=262 amount=-2 -kerning first=69 second=364 amount=-2 -kerning first=209 second=968 amount=-1 -kerning first=904 second=1079 amount=-1 -kerning first=92 second=291 amount=-1 -kerning first=912 second=89 amount=-5 -kerning first=358 second=101 amount=-1 -kerning first=950 second=251 amount=-1 -kerning first=258 second=113 amount=-1 -kerning first=255 second=353 amount=-1 -kerning first=378 second=263 amount=-1 -kerning first=168 second=365 amount=-1 -kerning first=310 second=212 amount=-3 -kerning first=1096 second=252 amount=-1 -kerning first=334 second=354 amount=-2 -kerning first=915 second=266 amount=-2 -kerning first=923 second=39 amount=-3 -kerning first=236 second=366 amount=-2 -kerning first=119 second=171 amount=-1 -kerning first=166 second=8217 amount=-3 -kerning first=287 second=225 amount=-1 -kerning first=8220 second=1257 amount=-1 -kerning first=57 second=87 amount=-5 -kerning first=306 second=1185 amount=-3 -kerning first=74 second=940 amount=-1 -kerning first=77 second=249 amount=-1 -kerning first=926 second=214 amount=-2 -kerning first=234 second=8218 amount=-1 -kerning first=363 second=226 amount=-1 -kerning first=955 second=356 amount=-5 -kerning first=960 second=116 amount=-1 -kerning first=1298 second=268 amount=-2 -kerning first=35 second=338 amount=-2 -kerning first=38 second=100 amount=-1 -kerning first=1035 second=281 amount=-1 -kerning first=177 second=250 amount=-1 -kerning first=174 second=941 amount=-1 -kerning first=58 second=262 amount=-2 -kerning first=198 second=1241 amount=-1 -kerning first=201 second=187 amount=-1 -kerning first=221 second=326 amount=-3 -kerning first=928 second=369 amount=-1 -kerning first=98 second=1098 amount=-1 -kerning first=124 second=263 amount=-1 -kerning first=1240 second=1066 amount=-2 -kerning first=1039 second=228 amount=-1 -kerning first=62 second=212 amount=-2 -kerning first=1074 second=370 amount=-2 -kerning first=322 second=252 amount=-1 -kerning first=317 second=943 amount=-1 -kerning first=228 second=39 amount=-1 -kerning first=942 second=79 amount=-2 -kerning first=105 second=279 amount=-1 -kerning first=962 second=920 amount=-2 -kerning first=161 second=213 amount=-2 -kerning first=274 second=103 amount=-1 -kerning first=43 second=225 amount=-1 -kerning first=1037 second=1257 amount=-1 -kerning first=183 second=355 amount=-1 -kerning first=186 second=115 amount=-1 -kerning first=298 second=267 amount=-1 -kerning first=60 second=1185 amount=-3 -kerning first=63 second=367 amount=-1 -kerning first=8370 second=360 amount=-2 -kerning first=1116 second=242 amount=-2 -kerning first=249 second=356 amount=-5 -kerning first=252 second=116 amount=-1 -kerning first=372 second=268 amount=-2 -kerning first=162 second=368 amount=-2 -kerning first=271 second=972 amount=-1 -kerning first=61 second=8220 amount=-3 -kerning first=327 second=357 amount=-1 -kerning first=905 second=269 amount=-1 -kerning first=376 second=216 amount=-3 -kerning first=163 second=1066 amount=-5 -kerning first=160 second=8221 amount=-3 -kerning first=973 second=106 amount=1 -kerning first=1049 second=962 amount=-1 -kerning first=191 second=240 amount=-1 -kerning first=300 second=1194 amount=-2 -kerning first=303 second=370 amount=-2 -kerning first=237 second=79 amount=-2 -kerning first=357 second=229 amount=-1 -kerning first=952 second=119 amount=-4 -kerning first=1210 second=963 amount=-1 -kerning first=1223 second=271 amount=-1 -kerning first=1257 second=44 amount=-1 -kerning first=254 second=920 amount=-2 -kerning first=374 second=1195 amount=-4 -kerning first=971 second=1026 amount=-5 -kerning first=170 second=253 amount=-1 -kerning first=52 second=267 amount=-1 -kerning first=1095 second=360 amount=-2 -kerning first=1098 second=120 amount=-2 -kerning first=912 second=372 amount=-5 -kerning first=92 second=1101 amount=-1 -kerning first=358 second=1240 amount=-2 -kerning first=8222 second=965 amount=-1 -kerning first=1067 second=373 amount=-4 -kerning first=76 second=357 amount=-1 -kerning first=96 second=973 amount=-1 -kerning first=1179 second=232 amount=-1 -kerning first=958 second=244 amount=-1 -kerning first=1263 second=374 amount=-5 -kerning first=37 second=228 amount=-1 -kerning first=179 second=118 amount=-4 -kerning first=287 second=962 amount=-1 -kerning first=8250 second=221 amount=-3 -kerning first=54 second=1194 amount=-2 -kerning first=57 second=370 amount=-2 -kerning first=1068 second=1071 amount=-1 -kerning first=200 second=283 amount=-1 -kerning first=1103 second=245 amount=-1 -kerning first=223 second=217 amount=-2 -kerning first=926 second=949 amount=-1 -kerning first=934 second=257 amount=-1 -kerning first=103 second=229 amount=-1 -kerning first=246 second=119 amount=-1 -kerning first=363 second=963 amount=-1 -kerning first=120 second=1195 amount=-2 -kerning first=123 second=371 amount=-1 -kerning first=35 second=1257 amount=-1 -kerning first=1035 second=1090 amount=-3 -kerning first=296 second=218 amount=-2 -kerning first=8260 second=376 amount=-5 -kerning first=204 second=230 amount=-1 -kerning first=321 second=360 amount=-2 -kerning first=8363 second=1059 amount=-2 -kerning first=902 second=45 amount=-2 -kerning first=81 second=923 amount=-2 -kerning first=84 second=242 amount=-3 -kerning first=221 second=947 amount=-2 -kerning first=345 second=287 amount=-1 -kerning first=964 second=347 amount=-1 -kerning first=124 second=1069 amount=-1 -kerning first=163 second=81 amount=-2 -kerning first=273 second=231 amount=-1 -kerning first=1039 second=965 amount=-1 -kerning first=185 second=243 amount=-1 -kerning first=297 second=373 amount=-4 -kerning first=202 second=1263 amount=-1 -kerning first=903 second=220 amount=-2 -kerning first=1107 second=1113 amount=-3 -kerning first=942 second=362 amount=-2 -kerning first=108 second=332 amount=-2 -kerning first=1203 second=275 amount=-1 -kerning first=251 second=244 amount=-1 -kerning first=371 second=374 amount=-5 -kerning first=968 second=289 amount=-1 -kerning first=270 second=1298 amount=-1 -kerning first=8217 second=99 amount=-1 -kerning first=43 second=962 amount=-1 -kerning first=1051 second=221 amount=-5 -kerning first=304 second=83 amount=-1 -kerning first=1083 second=363 amount=-1 -kerning first=209 second=333 amount=-1 -kerning first=330 second=245 amount=-1 -kerning first=904 second=375 amount=-1 -kerning first=89 second=345 amount=-3 -kerning first=1119 second=290 amount=-2 -kerning first=275 second=1090 amount=-1 -kerning first=278 second=334 amount=-2 -kerning first=8222 second=49 amount=-4 -kerning first=50 second=218 amount=-2 -kerning first=190 second=346 amount=-1 -kerning first=67 second=1174 amount=-2 -kerning first=70 second=360 amount=-2 -kerning first=1084 second=1059 amount=-2 -kerning first=1080 second=8212 amount=-2 -kerning first=902 second=8249 amount=-3 -kerning first=915 second=85 amount=-2 -kerning first=93 second=287 amount=-1 -kerning first=1171 second=235 amount=-1 -kerning first=356 second=335 amount=-3 -kerning first=253 second=1108 amount=-1 -kerning first=256 second=347 amount=-1 -kerning first=376 second=951 amount=-3 -kerning first=169 second=361 amount=-1 -kerning first=172 second=121 amount=-1 -kerning first=8224 second=224 amount=-1 -kerning first=51 second=373 amount=-4 -kerning first=1049 second=8250 amount=-1 -kerning first=191 second=1028 amount=-2 -kerning first=194 second=288 amount=-2 -kerning first=1097 second=248 amount=-1 -kerning first=237 second=362 amount=-2 -kerning first=357 second=966 amount=-1 -kerning first=117 second=374 amount=-5 -kerning first=1298 second=87 amount=-5 -kerning first=260 second=289 amount=-1 -kerning first=1035 second=99 amount=-1 -kerning first=177 second=71 amount=-2 -kerning first=288 second=221 amount=-2 -kerning first=58 second=83 amount=-1 -kerning first=198 second=233 amount=-1 -kerning first=313 second=363 amount=-1 -kerning first=78 second=245 amount=-1 -kerning first=928 second=210 amount=-2 -kerning first=1185 second=100 amount=-2 -kerning first=1178 second=338 amount=-1 -kerning first=956 second=352 amount=-1 -kerning first=124 second=84 amount=-5 -kerning first=1299 second=262 amount=-2 -kerning first=36 second=334 amount=-2 -kerning first=1036 second=277 amount=-2 -kerning first=178 second=246 amount=-1 -kerning first=289 second=376 amount=-5 -kerning first=8226 second=1079 amount=-1 -kerning first=1074 second=211 amount=-2 -kerning first=314 second=1059 amount=-2 -kerning first=310 second=8212 amount=-4 -kerning first=8364 second=251 amount=-1 -kerning first=1107 second=113 amount=-1 -kerning first=343 second=235 amount=-1 -kerning first=931 second=365 amount=-1 -kerning first=105 second=97 amount=-1 -kerning first=102 second=335 amount=-1 -kerning first=125 second=259 amount=-1 -kerning first=161 second=34 amount=-3 -kerning first=37 second=965 amount=-1 -kerning first=1041 second=224 amount=-1 -kerning first=287 second=8250 amount=-1 -kerning first=1071 second=1184 amount=-5 -kerning first=203 second=336 amount=-2 -kerning first=323 second=248 amount=-1 -kerning first=901 second=171 amount=-3 -kerning first=86 second=110 amount=-2 -kerning first=926 second=8217 amount=-3 -kerning first=103 second=966 amount=-1 -kerning first=947 second=225 amount=-1 -kerning first=271 second=337 amount=-1 -kerning first=44 second=221 amount=-4 -kerning first=184 second=351 amount=-1 -kerning first=299 second=261 amount=-1 -kerning first=296 second=953 amount=-1 -kerning first=64 second=363 amount=-1 -kerning first=61 second=1177 amount=-1 -kerning first=8372 second=356 amount=-5 -kerning first=8378 second=116 amount=-1 -kerning first=87 second=290 amount=-2 -kerning first=944 second=250 amount=-1 -kerning first=250 second=352 amount=-1 -kerning first=967 second=1241 amount=-1 -kerning first=163 second=364 amount=-2 -kerning first=273 second=968 amount=-1 -kerning first=276 second=277 amount=-1 -kerning first=8216 second=227 amount=-1 -kerning first=45 second=376 amount=-4 -kerning first=1046 second=1079 amount=-2 -kerning first=185 second=1035 amount=-5 -kerning first=188 second=291 amount=-1 -kerning first=1062 second=89 amount=-2 -kerning first=303 second=211 amount=-2 -kerning first=62 second=8212 amount=-2 -kerning first=65 second=1059 amount=-2 -kerning first=1085 second=251 amount=-1 -kerning first=906 second=263 amount=-1 -kerning first=91 second=235 amount=-1 -kerning first=377 second=212 amount=-1 -kerning first=161 second=8216 amount=-3 -kerning first=280 second=224 amount=-1 -kerning first=43 second=8250 amount=-1 -kerning first=1063 second=266 amount=-2 -kerning first=1066 second=39 amount=-2 -kerning first=301 second=1184 amount=-5 -kerning first=304 second=366 amount=-2 -kerning first=72 second=248 amount=-1 -kerning first=215 second=171 amount=-3 -kerning first=912 second=213 amount=-2 -kerning first=229 second=8217 amount=-1 -kerning first=358 second=225 amount=-1 -kerning first=950 second=355 amount=-1 -kerning first=112 second=1076 amount=-1 -kerning first=1224 second=267 amount=-1 -kerning first=375 second=1185 amount=-3 -kerning first=168 second=940 amount=-1 -kerning first=53 second=261 amount=-1 -kerning first=50 second=953 amount=-1 -kerning first=1067 second=214 amount=-2 -kerning first=1096 second=356 amount=-5 -kerning first=1099 second=116 amount=-1 -kerning first=915 second=368 amount=-2 -kerning first=96 second=338 amount=-2 -kerning first=1171 second=972 amount=-1 -kerning first=1176 second=281 amount=-1 -kerning first=239 second=250 amount=-1 -kerning first=236 second=941 amount=-1 -kerning first=34 second=277 amount=-1 -kerning first=176 second=199 amount=-2 -kerning first=282 second=1079 amount=-1 -kerning first=290 second=89 amount=-2 -kerning first=57 second=211 amount=-2 -kerning first=197 second=339 amount=-1 -kerning first=200 second=101 amount=-1 -kerning first=194 second=1098 amount=-3 -kerning first=315 second=251 amount=-1 -kerning first=77 second=353 amount=-1 -kerning first=80 second=113 amount=-1 -kerning first=916 second=1066 amount=-5 -kerning first=1184 second=228 amount=-1 -kerning first=960 second=240 amount=-1 -kerning first=123 second=212 amount=-2 -kerning first=1298 second=370 amount=-2 -kerning first=38 second=224 amount=-1 -kerning first=177 second=354 amount=-5 -kerning first=174 second=1118 amount=-1 -kerning first=291 second=266 amount=-2 -kerning first=296 second=39 amount=-3 -kerning first=8260 second=217 amount=-2 -kerning first=55 second=1184 amount=-5 -kerning first=58 second=366 amount=-2 -kerning first=201 second=279 amount=-1 -kerning first=198 second=970 amount=-1 -kerning first=8363 second=359 amount=-1 -kerning first=8366 second=119 amount=-4 -kerning first=345 second=103 amount=-1 -kerning first=936 second=253 amount=-1 -kerning first=1178 second=1257 amount=-1 -kerning first=247 second=115 amount=-1 -kerning first=367 second=267 amount=-1 -kerning first=124 second=367 amount=-1 -kerning first=121 second=1185 amount=-3 -kerning first=178 second=1038 amount=-2 -kerning first=297 second=214 amount=-2 +kerning first=47 second=231 amount=-2 +kerning first=47 second=232 amount=-2 +kerning first=47 second=233 amount=-2 +kerning first=47 second=234 amount=-2 +kerning first=47 second=235 amount=-2 +kerning first=47 second=240 amount=-2 +kerning first=47 second=241 amount=-1 +kerning first=47 second=242 amount=-2 +kerning first=47 second=243 amount=-2 +kerning first=47 second=244 amount=-2 +kerning first=47 second=245 amount=-2 +kerning first=47 second=246 amount=-2 +kerning first=47 second=248 amount=-2 +kerning first=47 second=249 amount=-1 +kerning first=47 second=250 amount=-1 +kerning first=47 second=251 amount=-1 +kerning first=47 second=252 amount=-1 +kerning first=47 second=253 amount=-1 +kerning first=47 second=256 amount=-5 +kerning first=47 second=257 amount=-2 +kerning first=47 second=258 amount=-5 +kerning first=47 second=259 amount=-2 +kerning first=47 second=260 amount=-5 +kerning first=47 second=261 amount=-2 +kerning first=47 second=262 amount=-1 +kerning first=47 second=263 amount=-2 +kerning first=47 second=266 amount=-1 +kerning first=47 second=267 amount=-2 +kerning first=47 second=268 amount=-1 +kerning first=47 second=269 amount=-2 +kerning first=47 second=271 amount=-2 +kerning first=47 second=273 amount=-2 +kerning first=47 second=275 amount=-2 +kerning first=47 second=277 amount=-2 +kerning first=47 second=279 amount=-2 +kerning first=47 second=281 amount=-2 +kerning first=47 second=283 amount=-2 +kerning first=47 second=286 amount=-1 +kerning first=47 second=287 amount=-2 +kerning first=47 second=288 amount=-1 +kerning first=47 second=289 amount=-2 +kerning first=47 second=290 amount=-1 +kerning first=47 second=291 amount=-2 +kerning first=47 second=324 amount=-1 +kerning first=47 second=326 amount=-1 +kerning first=47 second=328 amount=-1 +kerning first=47 second=331 amount=-1 +kerning first=47 second=332 amount=-1 +kerning first=47 second=333 amount=-2 +kerning first=47 second=334 amount=-1 +kerning first=47 second=335 amount=-2 +kerning first=47 second=336 amount=-1 +kerning first=47 second=337 amount=-2 +kerning first=47 second=338 amount=-1 +kerning first=47 second=339 amount=-2 +kerning first=47 second=341 amount=-1 +kerning first=47 second=343 amount=-1 +kerning first=47 second=345 amount=-1 +kerning first=47 second=346 amount=-1 +kerning first=47 second=347 amount=-2 +kerning first=47 second=350 amount=-1 +kerning first=47 second=351 amount=-2 +kerning first=47 second=352 amount=-1 +kerning first=47 second=353 amount=-2 +kerning first=47 second=361 amount=-1 +kerning first=47 second=363 amount=-1 +kerning first=47 second=365 amount=-1 +kerning first=47 second=367 amount=-1 +kerning first=47 second=369 amount=-1 +kerning first=47 second=371 amount=-1 +kerning first=47 second=373 amount=-1 +kerning first=47 second=375 amount=-1 +kerning first=47 second=378 amount=-2 +kerning first=47 second=380 amount=-2 +kerning first=47 second=382 amount=-2 +kerning first=47 second=913 amount=-5 +kerning first=47 second=916 amount=-5 +kerning first=47 second=920 amount=-1 +kerning first=47 second=923 amount=-5 +kerning first=47 second=927 amount=-1 +kerning first=47 second=940 amount=-2 +kerning first=47 second=941 amount=-2 +kerning first=47 second=942 amount=-1 +kerning first=47 second=945 amount=-2 +kerning first=47 second=947 amount=-1 +kerning first=47 second=949 amount=-2 +kerning first=47 second=951 amount=-1 +kerning first=47 second=954 amount=-1 +kerning first=47 second=957 amount=-1 +kerning first=47 second=959 amount=-2 +kerning first=47 second=962 amount=-2 +kerning first=47 second=963 amount=-2 +kerning first=47 second=964 amount=-1 +kerning first=47 second=965 amount=-1 +kerning first=47 second=966 amount=-2 +kerning first=47 second=968 amount=-1 +kerning first=47 second=972 amount=-2 +kerning first=47 second=973 amount=-1 +kerning first=47 second=1028 amount=-1 +kerning first=47 second=1029 amount=-1 +kerning first=47 second=1032 amount=-3 +kerning first=47 second=1033 amount=-4 +kerning first=47 second=1040 amount=-5 +kerning first=47 second=1044 amount=-4 +kerning first=47 second=1051 amount=-4 +kerning first=47 second=1054 amount=-1 +kerning first=47 second=1057 amount=-1 +kerning first=47 second=1071 amount=-1 +kerning first=47 second=1072 amount=-2 +kerning first=47 second=1074 amount=-1 +kerning first=47 second=1075 amount=-1 +kerning first=47 second=1077 amount=-2 +kerning first=47 second=1078 amount=-1 +kerning first=47 second=1080 amount=-1 +kerning first=47 second=1081 amount=-1 +kerning first=47 second=1082 amount=-1 +kerning first=47 second=1084 amount=-1 +kerning first=47 second=1085 amount=-1 +kerning first=47 second=1086 amount=-2 +kerning first=47 second=1087 amount=-1 +kerning first=47 second=1088 amount=-1 +kerning first=47 second=1089 amount=-2 +kerning first=47 second=1090 amount=-1 +kerning first=47 second=1091 amount=-1 +kerning first=47 second=1092 amount=-2 +kerning first=47 second=1093 amount=-1 +kerning first=47 second=1094 amount=-1 +kerning first=47 second=1096 amount=-1 +kerning first=47 second=1097 amount=-1 +kerning first=47 second=1098 amount=-1 +kerning first=47 second=1099 amount=-1 +kerning first=47 second=1100 amount=-1 +kerning first=47 second=1102 amount=-1 +kerning first=47 second=1104 amount=-2 +kerning first=47 second=1105 amount=-2 +kerning first=47 second=1107 amount=-1 +kerning first=47 second=1108 amount=-2 +kerning first=47 second=1109 amount=-2 +kerning first=47 second=1114 amount=-1 +kerning first=47 second=1116 amount=-1 +kerning first=47 second=1117 amount=-1 +kerning first=47 second=1118 amount=-1 +kerning first=47 second=1119 amount=-1 +kerning first=47 second=1169 amount=-1 +kerning first=47 second=1175 amount=-1 +kerning first=47 second=1179 amount=-1 +kerning first=47 second=1185 amount=-1 +kerning first=47 second=1187 amount=-1 +kerning first=47 second=1194 amount=-1 +kerning first=47 second=1195 amount=-2 +kerning first=47 second=1199 amount=-1 +kerning first=47 second=1203 amount=-1 +kerning first=47 second=1220 amount=-1 +kerning first=47 second=1224 amount=-1 +kerning first=47 second=1240 amount=-1 +kerning first=47 second=1241 amount=-2 +kerning first=47 second=1256 amount=-1 +kerning first=47 second=1257 amount=-2 +kerning first=47 second=1263 amount=-1 +kerning first=47 second=1298 amount=-4 +kerning first=47 second=8211 amount=-1 +kerning first=47 second=8212 amount=-1 +kerning first=47 second=8218 amount=-4 +kerning first=47 second=8222 amount=-4 +kerning first=47 second=8230 amount=-4 +kerning first=48 second=44 amount=-1 +kerning first=48 second=46 amount=-1 +kerning first=48 second=55 amount=-1 +kerning first=48 second=8218 amount=-1 +kerning first=48 second=8222 amount=-1 +kerning first=48 second=8230 amount=-1 +kerning first=50 second=45 amount=-1 +kerning first=50 second=173 amount=-1 +kerning first=50 second=8211 amount=-1 +kerning first=50 second=8212 amount=-1 +kerning first=51 second=44 amount=-1 +kerning first=51 second=46 amount=-1 +kerning first=51 second=55 amount=-1 +kerning first=51 second=8218 amount=-1 +kerning first=51 second=8222 amount=-1 +kerning first=51 second=8230 amount=-1 +kerning first=52 second=34 amount=-1 +kerning first=52 second=39 amount=-1 +kerning first=52 second=49 amount=-2 +kerning first=52 second=55 amount=-1 +kerning first=52 second=8216 amount=-1 +kerning first=52 second=8217 amount=-1 +kerning first=52 second=8220 amount=-1 +kerning first=52 second=8221 amount=-1 +kerning first=53 second=44 amount=-1 +kerning first=53 second=46 amount=-1 +kerning first=53 second=8218 amount=-1 +kerning first=53 second=8222 amount=-1 +kerning first=53 second=8230 amount=-1 +kerning first=54 second=44 amount=-1 +kerning first=54 second=46 amount=-1 +kerning first=54 second=57 amount=-1 +kerning first=54 second=8218 amount=-1 +kerning first=54 second=8222 amount=-1 +kerning first=54 second=8230 amount=-1 +kerning first=55 second=44 amount=-4 +kerning first=55 second=45 amount=-4 +kerning first=55 second=46 amount=-4 +kerning first=55 second=48 amount=-1 +kerning first=55 second=50 amount=-1 +kerning first=55 second=51 amount=-1 +kerning first=55 second=52 amount=-4 +kerning first=55 second=54 amount=-1 +kerning first=55 second=56 amount=-1 +kerning first=55 second=57 amount=-1 +kerning first=55 second=65 amount=-5 +kerning first=55 second=171 amount=-2 +kerning first=55 second=173 amount=-4 +kerning first=55 second=193 amount=-5 +kerning first=55 second=194 amount=-5 +kerning first=55 second=196 amount=-5 +kerning first=55 second=197 amount=-5 +kerning first=55 second=198 amount=-5 +kerning first=55 second=256 amount=-5 +kerning first=55 second=258 amount=-5 +kerning first=55 second=260 amount=-5 +kerning first=55 second=913 amount=-5 +kerning first=55 second=916 amount=-5 +kerning first=55 second=923 amount=-5 +kerning first=55 second=1040 amount=-5 +kerning first=55 second=8211 amount=-4 +kerning first=55 second=8212 amount=-4 +kerning first=55 second=8218 amount=-4 +kerning first=55 second=8222 amount=-4 +kerning first=55 second=8230 amount=-4 +kerning first=55 second=8249 amount=-2 +kerning first=56 second=34 amount=-1 +kerning first=56 second=39 amount=-1 +kerning first=56 second=44 amount=-1 +kerning first=56 second=45 amount=-1 +kerning first=56 second=46 amount=-1 +kerning first=56 second=55 amount=-1 +kerning first=56 second=57 amount=-1 +kerning first=56 second=173 amount=-1 +kerning first=56 second=8211 amount=-1 +kerning first=56 second=8212 amount=-1 +kerning first=56 second=8216 amount=-1 +kerning first=56 second=8217 amount=-1 kerning first=56 second=8218 amount=-1 -kerning first=1074 second=945 amount=-1 -kerning first=205 second=226 amount=-1 -kerning first=322 second=356 amount=-5 -kerning first=325 second=116 amount=-1 -kerning first=900 second=268 amount=-2 -kerning first=343 second=972 amount=-1 -kerning first=274 second=227 amount=-1 -kerning first=40 second=1079 amount=-1 -kerning first=46 second=89 amount=-4 -kerning first=298 second=369 amount=-1 -kerning first=8377 second=244 amount=-1 -kerning first=904 second=216 amount=-2 -kerning first=223 second=8221 amount=-3 -kerning first=1119 second=106 amount=1 -kerning first=946 second=118 amount=-4 -kerning first=947 second=962 amount=-1 -kerning first=252 second=240 amount=-1 -kerning first=369 second=1194 amount=-2 -kerning first=162 second=943 amount=-1 -kerning first=165 second=252 amount=-1 -kerning first=271 second=1256 amount=-2 -kerning first=275 second=382 amount=-1 -kerning first=47 second=266 amount=-2 -kerning first=50 second=39 amount=-3 -kerning first=305 second=79 amount=-2 -kerning first=1084 second=359 amount=-1 -kerning first=327 second=920 amount=-2 -kerning first=902 second=1195 amount=-1 -kerning first=905 second=371 amount=-1 -kerning first=87 second=1100 amount=-2 -kerning first=93 second=103 amount=-1 -kerning first=1117 second=1026 amount=-5 -kerning first=1168 second=286 amount=-2 -kerning first=113 second=267 amount=-1 -kerning first=1220 second=218 amount=-2 -kerning first=973 second=230 amount=-1 -kerning first=8224 second=45 amount=-2 -kerning first=8220 second=273 amount=-1 -kerning first=51 second=214 amount=-2 -kerning first=1049 second=947 amount=-4 -kerning first=188 second=1101 amount=-1 -kerning first=303 second=945 amount=-1 -kerning first=71 second=356 amount=-1 -kerning first=74 second=116 amount=-1 -kerning first=214 second=268 amount=-2 -kerning first=906 second=1069 amount=-1 -kerning first=916 second=81 amount=-2 -kerning first=91 second=972 amount=-1 -kerning first=94 second=281 amount=-1 -kerning first=1174 second=231 amount=-1 -kerning first=354 second=1084 amount=-2 -kerning first=952 second=243 amount=-1 -kerning first=1223 second=373 amount=-4 -kerning first=971 second=1263 amount=-1 -kerning first=170 second=357 amount=-1 -kerning first=174 second=117 amount=-1 -kerning first=8225 second=220 amount=-2 -kerning first=52 second=369 amount=-1 -kerning first=192 second=973 amount=-1 -kerning first=920 second=256 amount=-2 -kerning first=241 second=118 amount=-1 -kerning first=358 second=962 amount=-1 -kerning first=1299 second=83 amount=-1 -kerning first=171 second=1044 amount=-1 -kerning first=178 second=67 amount=-2 -kerning first=289 second=217 amount=-2 -kerning first=8226 second=375 amount=-1 -kerning first=59 second=79 amount=-2 -kerning first=1067 second=949 amount=-1 -kerning first=314 second=359 amount=-1 -kerning first=317 second=119 amount=-4 -kerning first=76 second=920 amount=-1 -kerning first=96 second=1257 amount=-1 -kerning first=1176 second=1090 amount=-3 -kerning first=365 second=218 amount=-2 -kerning first=958 second=346 amount=-1 -kerning first=1041 second=45 amount=-2 -kerning first=179 second=242 amount=-1 -kerning first=1037 second=273 amount=-1 -kerning first=287 second=947 amount=-4 -kerning first=8224 second=8249 amount=-3 -kerning first=290 second=372 amount=-1 -kerning first=1034 second=964 amount=-2 -kerning first=57 second=945 amount=-1 -kerning first=200 second=1240 amount=-2 -kerning first=197 second=1262 amount=-2 -kerning first=1103 second=347 amount=-1 -kerning first=934 second=361 amount=-1 -kerning first=1184 second=965 amount=-1 -kerning first=947 second=46 amount=-2 -kerning first=960 second=1028 amount=-2 -kerning first=963 second=288 amount=-2 -kerning first=41 second=269 amount=-1 -kerning first=1044 second=220 amount=-1 -kerning first=1073 second=1176 amount=-1 -kerning first=204 second=332 amount=-2 -kerning first=944 second=71 amount=-2 -kerning first=1202 second=221 amount=-2 -kerning first=364 second=8230 amount=-1 -kerning first=967 second=233 amount=-1 -kerning first=273 second=333 amount=-1 -kerning first=1046 second=375 amount=-1 -kerning first=297 second=949 amount=-1 -kerning first=300 second=257 amount=-1 -kerning first=65 second=359 amount=-1 -kerning first=1074 second=8211 amount=-2 -kerning first=205 second=963 amount=-1 -kerning first=211 second=44 amount=-1 -kerning first=906 second=84 amount=-5 -kerning first=88 second=286 amount=-3 -kerning first=1118 second=234 amount=-1 -kerning first=251 second=346 amount=-1 -kerning first=374 second=258 amount=-5 -kerning first=164 second=360 amount=-2 -kerning first=274 second=964 amount=-3 -kerning first=280 second=45 amount=-2 -kerning first=43 second=947 amount=-4 -kerning first=46 second=372 amount=-3 -kerning first=1041 second=8249 amount=-3 -kerning first=1063 second=85 amount=-2 -kerning first=189 second=287 amount=-1 -kerning first=330 second=347 amount=-1 -kerning first=912 second=34 amount=-3 -kerning first=92 second=231 amount=-1 -kerning first=112 second=373 amount=-1 -kerning first=252 second=1028 amount=-2 -kerning first=255 second=288 amount=-2 -kerning first=193 second=232 amount=-1 -kerning first=305 second=362 amount=-2 -kerning first=302 second=1176 amount=-1 -kerning first=73 second=244 amount=-1 -kerning first=213 second=374 amount=-3 -kerning first=1171 second=337 amount=-1 -kerning first=1176 second=99 amount=-1 -kerning first=239 second=71 amount=-2 -kerning first=951 second=351 amount=-1 -kerning first=954 second=111 amount=-2 -kerning first=1220 second=953 amount=-1 -kerning first=376 second=1177 amount=-4 -kerning first=172 second=245 amount=-1 -kerning first=282 second=375 amount=-1 -kerning first=51 second=949 amount=-1 -kerning first=54 second=257 amount=-1 -kerning first=303 second=8211 amount=-2 -kerning first=338 second=234 amount=-1 -kerning first=916 second=364 amount=-2 -kerning first=94 second=1090 amount=-3 -kerning first=240 second=246 amount=-1 -kerning first=952 second=1035 amount=-5 -kerning first=955 second=291 amount=-1 -kerning first=1298 second=211 amount=-2 -kerning first=377 second=8212 amount=-3 -kerning first=35 second=273 amount=-1 -kerning first=38 second=45 amount=-2 -kerning first=280 second=8249 amount=-3 -kerning first=291 second=85 amount=-2 -kerning first=8240 second=263 amount=-1 -kerning first=198 second=335 amount=-1 -kerning first=201 second=97 amount=-1 -kerning first=75 second=1108 amount=-2 -kerning first=78 second=347 amount=-1 -kerning first=221 second=259 amount=-4 -kerning first=224 second=34 amount=-1 -kerning first=912 second=8216 amount=-3 -kerning first=1185 second=224 amount=-1 -kerning first=358 second=8250 amount=-1 -kerning first=1299 second=366 amount=-2 -kerning first=1039 second=171 amount=-3 -kerning first=178 second=350 amount=-1 -kerning first=56 second=1176 amount=-1 -kerning first=59 second=362 amount=-2 -kerning first=1067 second=8217 amount=-3 -kerning first=202 second=275 amount=-1 -kerning first=8364 second=355 amount=-1 -kerning first=8369 second=115 amount=-1 -kerning first=900 second=87 amount=-5 -kerning first=79 second=1033 amount=-1 -kerning first=343 second=337 amount=-1 -kerning first=931 second=940 amount=-1 -kerning first=105 second=221 amount=-5 -kerning first=365 second=953 amount=-1 -kerning first=125 second=363 amount=-1 -kerning first=40 second=375 amount=-1 -kerning first=1047 second=88 amount=-2 -kerning first=183 second=290 amount=-2 -kerning first=298 second=210 amount=-2 -kerning first=57 second=8211 amount=-2 -kerning first=1075 second=941 amount=-1 -kerning first=323 second=352 amount=-1 -kerning first=901 second=262 amount=-2 -kerning first=86 second=234 amount=-3 -kerning first=1206 second=89 amount=-2 -kerning first=249 second=291 amount=-1 -kerning first=372 second=211 amount=-2 -kerning first=963 second=1098 amount=-3 -kerning first=123 second=8212 amount=-2 -kerning first=126 second=1059 amount=-2 -kerning first=38 second=8249 amount=-3 -kerning first=47 second=85 amount=-2 -kerning first=1048 second=263 amount=-1 -kerning first=299 second=365 amount=-1 -kerning first=8260 second=8221 amount=-3 -kerning first=8378 second=240 amount=-1 -kerning first=905 second=212 amount=-2 -kerning first=224 second=8216 amount=-1 -kerning first=944 second=354 amount=-5 -kerning first=1220 second=39 amount=-3 -kerning first=967 second=970 amount=-1 -kerning first=166 second=248 amount=-1 -kerning first=1062 second=213 amount=-1 -kerning first=297 second=8217 amount=-3 -kerning first=1085 second=355 amount=-1 -kerning first=214 second=87 amount=-5 -kerning first=906 second=367 amount=-1 -kerning first=903 second=1185 amount=-3 -kerning first=91 second=337 amount=-1 -kerning first=94 second=99 amount=-1 -kerning first=114 second=261 amount=-1 -kerning first=1223 second=214 amount=-2 -kerning first=277 second=1078 amount=-2 -kerning first=52 second=210 amount=-2 -kerning first=1063 second=368 amount=-2 -kerning first=192 second=338 amount=-2 -kerning first=195 second=100 amount=-1 -kerning first=304 second=941 amount=-1 -kerning first=72 second=352 amount=-1 -kerning first=215 second=262 amount=-2 -kerning first=904 second=8220 amount=-3 -kerning first=92 second=968 amount=-1 -kerning first=95 second=277 amount=-1 -kerning first=238 second=199 amount=-2 -kerning first=361 second=89 amount=-5 -kerning first=1224 second=369 amount=-1 -kerning first=255 second=1098 amount=-3 -kerning first=258 second=339 amount=-1 -kerning first=175 second=113 amount=-1 -kerning first=281 second=955 amount=-1 -kerning first=8226 second=216 amount=-2 -kerning first=53 second=365 amount=-1 -kerning first=1064 second=1066 amount=-5 -kerning first=8361 second=118 amount=-4 -kerning first=1099 second=240 amount=-1 -kerning first=923 second=252 amount=-1 -kerning first=915 second=943 amount=-1 -kerning first=1171 second=1256 amount=-2 -kerning first=236 second=1118 amount=-1 -kerning first=239 second=354 amount=-5 -kerning first=365 second=39 amount=-3 -kerning first=37 second=171 amount=-3 -kerning first=8224 second=1195 amount=-1 -kerning first=8230 second=371 amount=-1 -kerning first=51 second=8217 amount=-3 -kerning first=1071 second=253 amount=-1 -kerning first=200 second=225 amount=-1 -kerning first=318 second=115 amount=-1 -kerning first=315 second=355 amount=-1 -kerning first=240 second=1038 amount=-2 -kerning first=955 second=1101 amount=-1 -kerning first=1298 second=945 amount=-1 -kerning first=291 second=368 amount=-2 -kerning first=8240 second=1069 amount=-1 -kerning first=61 second=250 amount=-1 -kerning first=58 second=941 amount=-1 -kerning first=8366 second=243 amount=-1 -kerning first=84 second=187 amount=-1 -kerning first=345 second=227 amount=-1 -kerning first=936 second=357 amount=-1 -kerning first=367 second=369 amount=-1 -kerning first=160 second=251 amount=-1 -kerning first=42 second=263 amount=-1 -kerning first=1046 second=216 amount=-3 -kerning first=289 second=8221 amount=-3 -kerning first=294 second=1066 amount=-5 -kerning first=1081 second=118 amount=-4 -kerning first=208 second=90 amount=-1 -kerning first=325 second=240 amount=-1 -kerning first=900 second=370 amount=-2 -kerning first=108 second=266 amount=-2 -kerning first=111 second=39 amount=-1 -kerning first=374 second=79 amount=-3 -kerning first=968 second=229 amount=-1 -kerning first=8217 second=44 amount=-1 -kerning first=46 second=213 amount=-1 -kerning first=1041 second=1195 amount=-1 -kerning first=189 second=103 amount=-1 -kerning first=301 second=253 amount=-1 -kerning first=69 second=115 amount=-1 -kerning first=209 second=267 amount=-1 -kerning first=8377 second=346 amount=-1 -kerning first=1119 second=230 amount=-1 -kerning first=946 second=242 amount=-1 -kerning first=249 second=1101 amount=-1 -kerning first=372 second=945 amount=-3 -kerning first=165 second=356 amount=-5 -kerning first=168 second=116 amount=-1 -kerning first=278 second=268 amount=-2 -kerning first=8218 second=219 amount=-1 -kerning first=47 second=368 amount=-2 -kerning first=1048 second=1069 amount=-1 -kerning first=1064 second=81 amount=-2 -kerning first=190 second=281 amount=-1 -kerning first=1090 second=243 amount=-1 -kerning first=8378 second=1028 amount=-2 -kerning first=93 second=227 amount=-1 -kerning first=1117 second=1263 amount=-1 -kerning first=236 second=117 amount=-1 -kerning first=356 second=269 amount=-3 -kerning first=113 second=369 amount=-1 -kerning first=253 second=973 amount=-1 -kerning first=973 second=332 amount=-2 -kerning first=282 second=216 amount=-2 -kerning first=48 second=1066 amount=-5 -kerning first=194 second=228 amount=-1 -kerning first=74 second=240 amount=-1 -kerning first=214 second=370 amount=-2 -kerning first=91 second=1256 amount=-2 -kerning first=1174 second=333 amount=-1 -kerning first=240 second=67 amount=-2 -kerning first=111 second=8222 amount=-1 -kerning first=1223 second=949 amount=-1 -kerning first=260 second=229 amount=-1 -kerning first=170 second=920 amount=-2 -kerning first=280 second=1195 amount=-1 -kerning first=8240 second=84 amount=-5 -kerning first=55 second=253 amount=-1 -kerning first=192 second=1257 amount=-1 -kerning first=1178 second=273 amount=-1 -kerning first=1185 second=45 amount=-3 -kerning first=1175 second=964 amount=-2 -kerning first=358 second=947 amount=-4 -kerning first=361 second=372 amount=-5 -kerning first=956 second=287 amount=-1 -kerning first=118 second=945 amount=-1 -kerning first=258 second=1262 amount=-2 -kerning first=36 second=268 amount=-2 -kerning first=294 second=81 amount=-2 -kerning first=1074 second=121 amount=-1 -kerning first=317 second=243 amount=-1 -kerning first=1099 second=1028 amount=-2 -kerning first=102 second=269 amount=-1 -kerning first=1186 second=220 amount=-1 -kerning first=962 second=232 amount=-1 -kerning first=1263 second=1176 amount=-1 -kerning first=40 second=216 amount=-2 -kerning first=1037 second=374 amount=-5 -kerning first=183 second=106 amount=1 -kerning first=63 second=118 amount=-4 -kerning first=200 second=962 amount=-1 -kerning first=8370 second=111 amount=-1 -kerning first=8365 second=351 amount=-1 -kerning first=901 second=83 amount=-1 -kerning first=369 second=257 amount=-1 -kerning first=126 second=359 amount=-1 -kerning first=1298 second=8211 amount=-2 -kerning first=162 second=119 amount=-4 -kerning first=271 second=271 amount=-1 -kerning first=275 second=44 amount=-1 -kerning first=38 second=1195 amount=-1 -kerning first=41 second=371 amount=-1 -kerning first=180 second=1026 amount=-5 -kerning first=1048 second=84 amount=-5 -kerning first=184 second=286 amount=-2 -kerning first=1080 second=246 amount=-1 -kerning first=207 second=218 amount=-2 -kerning first=8366 second=1035 amount=-5 -kerning first=8372 second=291 amount=-1 -kerning first=87 second=230 amount=-2 -kerning first=230 second=120 amount=-2 -kerning first=104 second=947 amount=-1 -kerning first=250 second=287 amount=-1 -kerning first=967 second=335 amount=-1 -kerning first=276 second=219 amount=-2 -kerning first=42 second=1069 amount=-1 -kerning first=48 second=81 amount=-2 -kerning first=1049 second=259 amount=-1 -kerning first=1062 second=34 amount=-2 -kerning first=188 second=231 amount=-1 -kerning first=300 second=361 amount=-1 -kerning first=303 second=121 amount=-1 -kerning first=325 second=1028 amount=-2 -kerning first=1114 second=1095 amount=-1 -kerning first=1118 second=336 amount=-2 -kerning first=254 second=232 amount=-1 -kerning first=371 second=1176 amount=-1 -kerning first=968 second=966 amount=-1 -kerning first=167 second=244 amount=-1 -kerning first=971 second=275 amount=-1 -kerning first=1087 second=351 amount=-1 -kerning first=1095 second=111 amount=-1 -kerning first=215 second=83 amount=-1 -kerning first=904 second=1177 amount=-1 -kerning first=89 second=1087 amount=-3 -kerning first=92 second=333 amount=-1 -kerning first=950 second=290 amount=-2 -kerning first=1224 second=210 amount=-2 -kerning first=372 second=8211 amount=-2 -kerning first=171 second=194 amount=-1 -kerning first=286 second=84 amount=-1 -kerning first=8222 second=262 amount=-1 -kerning first=1064 second=364 amount=-2 -kerning first=190 second=1090 amount=-3 -kerning first=193 second=334 amount=-2 -kerning first=310 second=246 amount=-2 -kerning first=70 second=1107 amount=-1 -kerning first=73 second=346 amount=-1 -kerning first=1096 second=291 amount=-1 -kerning first=216 second=258 amount=-2 -kerning first=905 second=8212 amount=-2 -kerning first=93 second=964 amount=-3 -kerning first=96 second=273 amount=-1 -kerning first=356 second=1074 amount=-2 -kerning first=954 second=235 amount=-2 -kerning first=169 second=1108 amount=-1 -kerning first=172 second=347 amount=-1 -kerning first=287 second=259 amount=-1 -kerning first=8230 second=212 amount=-1 -kerning first=54 second=361 amount=-1 -kerning first=57 second=121 amount=-1 -kerning first=1062 second=8216 amount=-2 -kerning first=194 second=965 amount=-1 -kerning first=74 second=1028 amount=-2 -kerning first=77 second=288 amount=-2 -kerning first=338 second=336 amount=-2 -kerning first=926 second=248 amount=-1 -kerning first=100 second=220 amount=-2 -kerning first=1184 second=171 amount=-3 -kerning first=240 second=350 amount=-1 -kerning first=117 second=1176 amount=-1 -kerning first=1223 second=8217 amount=-3 -kerning first=260 second=966 amount=-1 -kerning first=268 second=47 amount=-1 -kerning first=35 second=374 amount=-5 -kerning first=177 second=289 amount=-1 -kerning first=8240 second=367 amount=-1 -kerning first=8225 second=1185 amount=-3 -kerning first=61 second=71 amount=-2 -kerning first=1073 second=249 amount=-1 -kerning first=201 second=221 amount=-5 -kerning first=316 second=351 amount=-1 -kerning first=321 second=111 amount=-1 -kerning first=221 second=363 amount=-2 -kerning first=339 second=967 amount=-2 -kerning first=936 second=198 amount=-3 -kerning first=1194 second=88 amount=-2 -kerning first=367 second=210 amount=-2 -kerning first=964 second=100 amount=-1 -kerning first=118 second=8211 amount=-1 -kerning first=1299 second=941 amount=-1 -kerning first=42 second=84 amount=-5 -kerning first=1039 second=262 amount=-2 -kerning first=182 second=234 amount=-1 -kerning first=294 second=364 amount=-2 -kerning first=8226 second=8220 amount=-3 -kerning first=62 second=246 amount=-1 -kerning first=202 second=376 amount=-5 -kerning first=317 second=1035 amount=-5 -kerning first=322 second=291 amount=-1 -kerning first=900 second=211 amount=-2 -kerning first=1102 second=1098 amount=-1 -kerning first=1107 second=339 amount=-1 -kerning first=942 second=113 amount=-1 -kerning first=108 second=85 amount=-2 -kerning first=270 second=377 amount=-1 -kerning first=8211 second=90 amount=-2 -kerning first=43 second=259 amount=-1 -kerning first=46 second=34 amount=-1 -kerning first=66 second=196 amount=-1 -kerning first=200 second=8250 amount=-1 -kerning first=901 second=366 amount=-2 -kerning first=86 second=336 amount=-2 -kerning first=1116 second=279 amount=-2 -kerning first=1206 second=213 amount=-1 -kerning first=278 second=87 amount=-5 -kerning first=1044 second=1185 amount=-2 -kerning first=1048 second=367 amount=-1 -kerning first=190 second=99 amount=-1 -kerning first=299 second=940 amount=-1 -kerning first=302 second=249 amount=-1 -kerning first=70 second=111 amount=-1 -kerning first=1080 second=1038 amount=-2 -kerning first=207 second=953 amount=-1 -kerning first=8372 second=1101 amount=-1 -kerning first=1168 second=226 amount=-1 -kerning first=350 second=1078 amount=-1 -kerning first=113 second=210 amount=-2 -kerning first=253 second=338 amount=-2 -kerning first=256 second=100 amount=-1 -kerning first=376 second=250 amount=-2 -kerning first=373 second=941 amount=-1 -kerning first=166 second=352 amount=-1 -kerning first=48 second=364 amount=-2 -kerning first=188 second=968 amount=-1 -kerning first=191 second=277 amount=-1 -kerning first=306 second=199 amount=-2 -kerning first=68 second=1035 amount=-2 -kerning first=214 second=211 amount=-2 -kerning first=328 second=1098 amount=-1 -kerning first=237 second=113 amount=-1 -kerning first=357 second=263 amount=-1 -kerning first=1210 second=1066 amount=-5 -kerning first=1028 second=90 amount=-1 -kerning first=46 second=8216 amount=-1 -kerning first=1063 second=943 amount=-1 -kerning first=195 second=224 amount=-1 -kerning first=304 second=1118 amount=-1 -kerning first=212 second=1184 amount=-2 -kerning first=215 second=366 amount=-2 -kerning first=241 second=63 amount=-2 -kerning first=361 second=213 amount=-2 -kerning first=950 second=1100 amount=-2 -kerning first=956 second=103 amount=-1 -kerning first=112 second=8217 amount=-1 -kerning first=36 second=87 amount=-5 -kerning first=281 second=1185 amount=-1 -kerning first=56 second=249 amount=-1 -kerning first=53 second=940 amount=-1 -kerning first=8361 second=242 amount=-1 -kerning first=1096 second=1101 amount=-1 -kerning first=213 second=8218 amount=-1 -kerning first=923 second=356 amount=-5 -kerning first=931 second=116 amount=-1 -kerning first=958 second=281 amount=-1 -kerning first=954 second=972 amount=-2 -kerning first=119 second=941 amount=-1 -kerning first=37 second=262 amount=-2 -kerning first=176 second=1241 amount=-1 -kerning first=179 second=187 amount=-1 -kerning first=282 second=8220 amount=-3 -kerning first=60 second=199 amount=-2 -kerning first=1071 second=357 amount=-1 -kerning first=197 second=1079 amount=-1 -kerning first=203 second=89 amount=-5 -kerning first=80 second=339 amount=-1 -kerning first=77 second=1098 amount=-3 -kerning first=223 second=251 amount=-1 -kerning first=103 second=263 amount=-1 -kerning first=363 second=1066 amount=-5 -kerning first=963 second=228 amount=-1 -kerning first=41 second=212 amount=-2 -kerning first=1035 second=1194 amount=-2 -kerning first=291 second=943 amount=-1 -kerning first=296 second=252 amount=-1 -kerning first=61 second=354 amount=-5 -kerning first=58 second=1118 amount=-1 -kerning first=1080 second=67 amount=-2 -kerning first=204 second=266 amount=-2 -kerning first=207 second=39 amount=-3 -kerning first=902 second=79 amount=-2 -kerning first=84 second=279 amount=-3 -kerning first=936 second=920 amount=-2 -kerning first=1185 second=1195 amount=-2 -kerning first=250 second=103 amount=-1 -kerning first=160 second=355 amount=-1 -kerning first=163 second=115 amount=-1 -kerning first=273 second=267 amount=-1 -kerning first=42 second=367 amount=-1 -kerning first=62 second=1038 amount=-2 -kerning first=1081 second=242 amount=-1 -kerning first=322 second=1101 amount=-1 -kerning first=900 second=945 amount=-1 -kerning first=88 second=226 amount=-1 -kerning first=108 second=368 amount=-2 -kerning first=1210 second=81 amount=-2 -kerning first=251 second=281 amount=-1 -kerning first=8211 second=373 amount=-1 -kerning first=40 second=8220 amount=-3 -kerning first=189 second=227 amount=-1 -kerning first=304 second=117 amount=-1 -kerning first=301 second=357 amount=-1 -kerning first=209 second=369 amount=-1 -kerning first=86 second=1224 amount=-2 -kerning first=1119 second=332 amount=-2 -kerning first=950 second=106 amount=1 -kerning first=255 second=228 amount=-1 -kerning first=168 second=240 amount=-1 -kerning first=278 second=370 amount=-2 -kerning first=8212 second=1071 amount=-1 -kerning first=47 second=943 amount=-1 -kerning first=50 second=252 amount=-1 -kerning first=310 second=67 amount=-3 -kerning first=915 second=119 amount=-4 -kerning first=1168 second=963 amount=-1 -kerning first=1171 second=271 amount=-1 -kerning first=356 second=371 amount=-2 -kerning first=948 second=1026 amount=-5 -kerning first=951 second=286 amount=-2 -kerning first=253 second=1257 amount=-1 -kerning first=1027 second=218 amount=-2 -kerning first=1065 second=360 amount=-1 -kerning first=311 second=242 amount=-2 -kerning first=214 second=945 amount=-1 -kerning first=357 second=1069 amount=-1 -kerning first=363 second=81 amount=-2 -kerning first=955 second=231 amount=-1 -kerning first=1298 second=121 amount=-1 -kerning first=55 second=357 amount=-1 -kerning first=58 second=117 amount=-1 -kerning first=198 second=269 amount=-1 -kerning first=75 second=973 amount=-1 -kerning first=928 second=244 amount=-1 -kerning first=1178 second=374 amount=-2 -kerning first=364 second=256 amount=-2 -kerning first=124 second=118 amount=-4 -kerning first=36 second=370 amount=-2 -kerning first=1033 second=1071 amount=-1 -kerning first=1039 second=83 amount=-1 -kerning first=178 second=283 amount=-1 -kerning first=8226 second=1177 amount=-1 -kerning first=62 second=67 amount=-2 -kerning first=1074 second=245 amount=-1 -kerning first=202 second=217 amount=-2 -kerning first=8364 second=290 amount=-2 -kerning first=225 second=119 amount=-1 -kerning first=343 second=271 amount=-1 -kerning first=1179 second=1073 amount=-1 -kerning first=958 second=1090 amount=-3 -kerning first=962 second=334 amount=-2 -kerning first=183 second=230 amount=-1 -kerning first=8230 second=8212 amount=-1 -kerning first=63 second=242 amount=-1 -kerning first=200 second=947 amount=-4 -kerning first=203 second=372 amount=-5 -kerning first=323 second=287 amount=-1 -kerning first=8370 second=235 amount=-1 -kerning first=80 second=1262 amount=-2 -kerning first=1116 second=97 amount=-1 -kerning first=934 second=1108 amount=-1 -kerning first=103 second=1069 amount=-1 -kerning first=947 second=259 amount=-1 -kerning first=1206 second=34 amount=-2 -kerning first=249 second=231 amount=-1 -kerning first=369 second=361 amount=-1 -kerning first=372 second=121 amount=-1 -kerning first=963 second=965 amount=-1 -kerning first=162 second=243 amount=-1 -kerning first=268 second=1202 amount=-2 -kerning first=271 second=373 amount=-4 -kerning first=8212 second=86 amount=-3 -kerning first=180 second=1263 amount=-1 -kerning first=1080 second=350 amount=-1 -kerning first=327 second=232 amount=-1 -kerning first=902 second=362 amount=-2 -kerning first=84 second=1085 amount=-2 -kerning first=87 second=332 amount=-2 -kerning first=1117 second=275 amount=-1 -kerning first=350 second=374 amount=-2 -kerning first=944 second=289 amount=-1 -kerning first=376 second=71 amount=-3 -kerning first=8216 second=261 amount=-1 -kerning first=1046 second=1177 amount=-2 -kerning first=1049 second=363 amount=-1 -kerning first=188 second=333 amount=-1 -kerning first=303 second=245 amount=-1 -kerning first=1085 second=290 amount=-2 -kerning first=900 second=8211 amount=-2 -kerning first=88 second=963 amount=-2 -kerning first=91 second=271 amount=-1 -kerning first=357 second=84 amount=-5 -kerning first=1210 second=364 amount=-2 -kerning first=254 second=334 amount=-2 -kerning first=251 second=1090 amount=-3 -kerning first=377 second=246 amount=-1 -kerning first=971 second=376 amount=-5 -kerning first=167 second=346 amount=-1 -kerning first=49 second=360 amount=-2 -kerning first=1051 second=1059 amount=-2 -kerning first=192 second=273 amount=-1 -kerning first=195 second=45 amount=-2 -kerning first=189 second=964 amount=-3 -kerning first=72 second=287 amount=-1 -kerning first=1095 second=235 amount=-1 -kerning first=95 second=219 amount=-2 -kerning first=358 second=259 amount=-1 -kerning first=361 second=34 amount=-3 -kerning first=112 second=1175 amount=-2 -kerning first=1206 second=8216 amount=-2 -kerning first=255 second=965 amount=-1 -kerning first=168 second=1028 amount=-2 -kerning first=8218 second=1184 amount=-5 -kerning first=8222 second=366 amount=-1 -kerning first=1067 second=248 amount=-1 -kerning first=196 second=220 amount=-2 -kerning first=310 second=350 amount=-1 -kerning first=76 second=232 amount=-1 -kerning first=96 second=374 amount=-5 -kerning first=239 second=289 amount=-1 -kerning first=958 second=99 amount=-1 -kerning first=954 second=337 amount=-2 -kerning first=1263 second=249 amount=-1 -kerning first=262 second=221 amount=-2 -kerning first=37 second=83 amount=-1 -kerning first=1027 second=953 amount=-1 -kerning first=176 second=233 amount=-1 -kerning first=287 second=363 amount=-1 -kerning first=282 second=1177 amount=-1 -kerning first=8220 second=8218 amount=-1 -kerning first=57 second=245 amount=-1 -kerning first=197 second=375 amount=-1 -kerning first=315 second=290 amount=-1 -kerning first=214 second=8211 amount=-2 -kerning first=1103 second=100 amount=-1 -kerning first=217 second=1051 amount=-1 -kerning first=926 second=352 amount=-1 -kerning first=103 second=84 amount=-5 -kerning first=1184 second=262 amount=-3 -kerning first=363 second=364 amount=-2 -kerning first=955 second=968 amount=-1 -kerning first=960 second=277 amount=-1 -kerning first=123 second=246 amount=-1 -kerning first=38 second=258 amount=-1 -kerning first=8260 second=251 amount=-1 -kerning first=1073 second=353 amount=-1 -kerning first=195 second=8249 amount=-3 -kerning first=1076 second=113 amount=-1 -kerning first=204 second=85 amount=-2 -kerning first=321 second=235 amount=-1 -kerning first=84 second=97 amount=-2 -kerning first=361 second=8216 amount=-3 -kerning first=964 second=224 amount=-1 -kerning first=1299 second=1118 amount=-1 -kerning first=1039 second=366 amount=-2 -kerning first=182 second=336 amount=-2 -kerning first=297 second=248 amount=-1 -kerning first=62 second=350 amount=-1 -kerning first=1186 second=1185 amount=-2 -kerning first=251 second=99 amount=-1 -kerning first=371 second=249 amount=-1 -kerning first=164 second=111 amount=-1 -kerning first=161 second=351 amount=-1 -kerning first=274 second=261 amount=-1 -kerning first=40 second=1177 amount=-1 -kerning first=43 second=363 amount=-1 -kerning first=209 second=210 amount=-2 -kerning first=330 second=100 amount=-1 -kerning first=904 second=250 amount=-1 -kerning first=901 second=941 amount=-1 -kerning first=8370 second=972 amount=-1 -kerning first=8377 second=281 amount=-1 -kerning first=946 second=187 amount=-1 -kerning first=249 second=968 amount=-1 -kerning first=252 second=277 amount=-1 -kerning first=375 second=199 amount=-2 -kerning first=162 second=1035 amount=-5 -kerning first=165 second=291 amount=-1 -kerning first=278 second=211 amount=-2 -kerning first=1241 second=1098 amount=-1 -kerning first=41 second=8212 amount=-2 -kerning first=44 second=1059 amount=-1 -kerning first=302 second=353 amount=-1 -kerning first=305 second=113 amount=-1 -kerning first=70 second=235 amount=-1 -kerning first=90 second=377 amount=1 -kerning first=356 second=212 amount=-1 -kerning first=1220 second=252 amount=-1 -kerning first=256 second=224 amount=-1 -kerning first=973 second=266 amount=-2 -kerning first=1027 second=39 amount=-3 -kerning first=276 second=1184 amount=-5 -kerning first=8224 second=79 amount=-2 -kerning first=51 second=248 amount=-1 -kerning first=194 second=171 amount=-3 -kerning first=916 second=115 amount=-1 -kerning first=1174 second=267 amount=-1 -kerning first=357 second=367 amount=-1 -kerning first=117 second=249 amount=-1 -kerning first=114 second=940 amount=-1 -kerning first=277 second=8218 amount=-1 -kerning first=8221 second=945 amount=-1 -kerning first=55 second=198 amount=-5 -kerning first=1066 second=356 amount=-5 -kerning first=78 second=100 amount=-1 -kerning first=1095 second=972 amount=-1 -kerning first=215 second=941 amount=-1 -kerning first=75 second=338 amount=-3 -kerning first=238 second=1241 amount=-1 -kerning first=956 second=227 amount=-1 -kerning first=121 second=199 amount=-2 -kerning first=1299 second=117 amount=-1 -kerning first=258 second=1079 amount=-1 -kerning first=266 second=89 amount=-2 -kerning first=36 second=211 amount=-2 -kerning first=175 second=339 amount=-1 -kerning first=178 second=101 amount=-1 -kerning first=289 second=251 amount=-1 -kerning first=56 second=353 amount=-1 -kerning first=59 second=113 amount=-1 -kerning first=8364 second=106 amount=1 -kerning first=931 second=240 amount=-1 -kerning first=1176 second=1194 amount=-2 -kerning first=245 second=102 amount=-1 -kerning first=365 second=252 amount=-1 -kerning first=37 second=366 amount=-2 -kerning first=1041 second=79 amount=-2 -kerning first=179 second=279 amount=-1 -kerning first=176 second=970 amount=-1 -kerning first=1071 second=920 amount=-2 -kerning first=203 second=213 amount=-2 -kerning first=8365 second=286 amount=-2 -kerning first=323 second=103 amount=-1 -kerning first=223 second=355 amount=-1 -kerning first=100 second=1185 amount=-3 -kerning first=103 second=367 amount=-1 -kerning first=123 second=1038 amount=-2 -kerning first=271 second=214 amount=-2 -kerning first=184 second=226 amount=-1 -kerning first=296 second=356 amount=-5 -kerning first=299 second=116 amount=-1 -kerning first=204 second=368 amount=-2 -kerning first=321 second=972 amount=-1 -kerning first=8372 second=231 amount=-1 -kerning first=84 second=380 amount=-1 -kerning first=101 second=8220 amount=-1 -kerning first=250 second=227 amount=-1 -kerning first=967 second=269 amount=-1 -kerning first=273 second=369 amount=-1 -kerning first=202 second=8221 amount=-3 -kerning first=205 second=1066 amount=-5 -kerning first=1085 second=106 amount=1 -kerning first=906 second=118 amount=-4 -kerning first=108 second=943 amount=-1 -kerning first=377 second=67 amount=-1 -kerning first=971 second=217 amount=-2 -kerning first=270 second=8222 amount=-1 -kerning first=280 second=79 amount=-2 -kerning first=8217 second=257 amount=-1 -kerning first=1051 second=359 amount=-1 -kerning first=1063 second=119 amount=-4 -kerning first=301 second=920 amount=-2 -kerning first=72 second=103 amount=-1 -kerning first=1083 second=1026 amount=-5 -kerning first=1087 second=286 amount=-2 -kerning first=8377 second=1090 amount=-3 -kerning first=92 second=267 amount=-1 -kerning first=1170 second=218 amount=-2 -kerning first=950 second=230 amount=-1 -kerning first=1219 second=360 amount=-2 -kerning first=378 second=242 amount=-1 -kerning first=165 second=1101 amount=-1 -kerning first=278 second=945 amount=-1 -kerning first=50 second=356 amount=-5 -kerning first=53 second=116 amount=-1 -kerning first=193 second=268 amount=-2 -kerning first=70 second=972 amount=-1 -kerning first=73 second=281 amount=-1 -kerning first=1096 second=231 amount=-1 -kerning first=915 second=243 amount=-1 -kerning first=1171 second=373 amount=-4 -kerning first=948 second=1263 amount=-1 -kerning first=113 second=1169 amount=2 -kerning first=169 second=973 amount=-1 -kerning first=8224 second=362 amount=-2 -kerning first=197 second=216 amount=-2 -kerning first=77 second=228 amount=-1 -kerning first=94 second=1194 amount=-2 -kerning first=1169 second=8230 amount=-3 -kerning first=1184 second=83 amount=-1 -kerning first=240 second=283 amount=-1 -kerning first=955 second=333 amount=-1 -kerning first=123 second=67 amount=-2 -kerning first=1298 second=245 amount=-1 -kerning first=38 second=79 amount=-2 -kerning first=1035 second=257 amount=-1 -kerning first=177 second=229 amount=-1 -kerning first=291 second=119 amount=-4 -kerning first=55 second=920 amount=-2 -kerning first=198 second=371 amount=-1 -kerning first=195 second=1195 amount=-1 -kerning first=313 second=1026 amount=-6 -kerning first=316 second=286 amount=-2 -kerning first=8363 second=234 amount=-1 -kerning first=75 second=1257 amount=-2 -kerning first=928 second=346 amount=-1 -kerning first=956 second=964 amount=-3 -kerning first=964 second=45 amount=-2 -kerning first=124 second=242 amount=-1 -kerning first=261 second=947 amount=-1 -kerning first=266 second=372 amount=-1 -kerning first=36 second=945 amount=-1 -kerning first=178 second=1240 amount=-2 -kerning first=175 second=1262 amount=-2 -kerning first=1074 second=347 amount=-1 -kerning first=199 second=1069 amount=1 -kerning first=205 second=81 amount=-2 -kerning first=322 second=231 amount=-1 -kerning first=900 second=121 amount=-1 -kerning first=931 second=1028 amount=-2 -kerning first=965 second=220 amount=-2 -kerning first=1041 second=362 amount=-2 -kerning first=1037 second=1176 amount=-1 -kerning first=183 second=332 amount=-2 -kerning first=298 second=244 amount=-1 -kerning first=8370 second=337 amount=-1 -kerning first=8377 second=99 amount=-1 -kerning first=904 second=71 amount=-2 -kerning first=341 second=8230 amount=-3 -kerning first=249 second=333 amount=-1 -kerning first=372 second=245 amount=-3 -kerning first=271 second=949 amount=-1 -kerning first=44 second=359 amount=-1 -kerning first=47 second=119 amount=-4 -kerning first=184 second=963 amount=-1 -kerning first=64 second=1026 amount=-5 -kerning first=1084 second=234 amount=-1 -kerning first=324 second=1090 amount=-1 -kerning first=327 second=334 amount=-2 -kerning first=8372 second=968 amount=-1 -kerning first=905 second=246 amount=-1 -kerning first=8378 second=277 amount=-1 -kerning first=1117 second=376 amount=-5 -kerning first=1194 second=8212 amount=-1 -kerning first=1202 second=1059 amount=-1 -kerning first=253 second=273 amount=-1 -kerning first=256 second=45 amount=-2 -kerning first=250 second=964 amount=-3 -kerning first=964 second=8249 amount=-3 -kerning first=973 second=85 amount=-2 -kerning first=166 second=287 amount=-1 -kerning first=191 second=219 amount=-2 -kerning first=300 second=1108 amount=-1 -kerning first=303 second=347 amount=-1 -kerning first=214 second=121 amount=-1 -kerning first=335 second=46 amount=-1 -kerning first=91 second=373 amount=-4 -kerning first=1223 second=248 amount=-1 -kerning first=170 second=232 amount=-1 -kerning first=280 second=362 amount=-2 -kerning first=283 second=122 amount=-1 -kerning first=52 second=244 amount=-1 -kerning first=1066 second=197 amount=-1 -kerning first=192 second=374 amount=-5 -kerning first=1095 second=337 amount=-1 -kerning first=336 second=221 amount=-3 -kerning first=912 second=351 amount=-1 -kerning first=89 second=8230 amount=-4 -kerning first=1170 second=953 amount=-1 -kerning first=238 second=233 amount=-1 -kerning first=358 second=363 amount=-1 -kerning first=950 second=967 amount=-1 -kerning first=118 second=245 amount=-1 -kerning first=1262 second=198 amount=-2 -kerning first=258 second=375 amount=-1 -kerning first=381 second=290 amount=-1 -kerning first=278 second=8211 amount=-2 -kerning first=8226 second=250 amount=-1 -kerning first=1067 second=352 amount=-1 -kerning first=199 second=84 amount=-1 -kerning first=314 second=234 amount=-1 -kerning first=8361 second=187 amount=-1 -kerning first=73 second=1090 amount=-3 -kerning first=76 second=334 amount=-1 -kerning first=1096 second=968 amount=-1 -kerning first=1099 second=277 amount=-1 -kerning first=915 second=1035 amount=-5 -kerning first=923 second=291 amount=-1 -kerning first=356 second=8212 amount=-4 -kerning first=1263 second=353 amount=-1 -kerning first=256 second=8249 amount=-3 -kerning first=176 second=335 amount=-1 -kerning first=179 second=97 amount=-1 -kerning first=54 second=1108 amount=-1 -kerning first=57 second=347 amount=-1 -kerning first=200 second=259 amount=-1 -kerning first=203 second=34 amount=-3 -kerning first=77 second=965 amount=-1 -kerning first=1103 second=224 amount=-1 -kerning first=344 second=86 amount=-1 -kerning first=963 second=171 amount=-3 -kerning first=123 second=350 amount=-1 -kerning first=268 second=260 amount=-1 -kerning first=35 second=1176 amount=-1 -kerning first=38 second=362 amount=-2 -kerning first=177 second=966 amount=-1 -kerning first=180 second=275 amount=-1 -kerning first=8260 second=355 amount=-1 -kerning first=61 second=289 amount=-1 -kerning first=321 second=337 amount=-1 -kerning first=221 second=1114 amount=-3 -kerning first=345 second=261 amount=-1 -kerning first=244 second=967 amount=-2 -kerning first=370 second=198 amount=-2 -kerning first=961 second=1078 amount=-2 -kerning first=160 second=290 amount=-2 -kerning first=273 second=210 amount=-2 -kerning first=36 second=8211 amount=-2 -kerning first=39 second=1051 amount=-3 -kerning first=1039 second=941 amount=-1 -kerning first=1046 second=250 amount=-1 -kerning first=297 second=352 amount=-1 -kerning first=65 second=234 amount=-1 -kerning first=1081 second=187 amount=-1 -kerning first=205 second=364 amount=-2 -kerning first=1078 second=1241 amount=-2 -kerning first=322 second=968 amount=-1 -kerning first=325 second=277 amount=-1 -kerning first=903 second=199 amount=-2 -kerning first=1118 second=89 amount=-5 -kerning first=942 second=339 amount=-1 -kerning first=105 second=1059 amount=-2 -kerning first=102 second=8212 amount=-2 -kerning first=371 second=353 amount=-1 -kerning first=374 second=113 amount=-4 -kerning first=968 second=263 amount=-1 -kerning first=164 second=235 amount=-1 -kerning first=274 second=365 amount=-1 -kerning first=203 second=8216 amount=-3 -kerning first=330 second=224 amount=-1 -kerning first=8370 second=1256 amount=-2 -kerning first=901 second=1118 amount=-1 -kerning first=904 second=354 amount=-5 -kerning first=86 second=1075 amount=-2 -kerning first=1119 second=266 amount=-2 -kerning first=1170 second=39 amount=-3 -kerning first=946 second=279 amount=-1 -kerning first=255 second=171 amount=-3 -kerning first=271 second=8217 amount=-3 -kerning first=8218 second=253 amount=-1 -kerning first=1064 second=115 amount=-1 -kerning first=193 second=87 amount=-5 -kerning first=70 second=337 amount=-1 -kerning first=73 second=99 amount=-1 -kerning first=905 second=1038 amount=-2 -kerning first=93 second=261 amount=-1 -kerning first=1171 second=214 amount=-2 -kerning first=951 second=226 amount=-1 -kerning first=1220 second=356 amount=-5 -kerning first=973 second=368 amount=-2 -kerning first=169 second=338 amount=-2 -kerning first=172 second=100 amount=-1 -kerning first=282 second=250 amount=-1 -kerning first=51 second=352 amount=-1 -kerning first=1068 second=65 amount=-1 -kerning first=194 second=262 amount=-2 -kerning first=306 second=1241 amount=-1 -kerning first=74 second=277 amount=-1 -kerning first=338 second=89 amount=-5 -kerning first=234 second=1098 amount=-1 -kerning first=237 second=339 amount=-1 -kerning first=240 second=101 amount=-1 -kerning first=117 second=353 amount=-1 -kerning first=120 second=113 amount=-2 -kerning first=260 second=263 amount=-1 -kerning first=971 second=8221 amount=-3 -kerning first=8240 second=118 amount=-4 -kerning first=1066 second=916 amount=-1 -kerning first=198 second=212 amount=-2 -kerning first=78 second=224 amount=-1 -kerning first=1095 second=1256 amount=-2 -kerning first=215 second=1118 amount=-1 -kerning first=221 second=114 amount=-3 -kerning first=95 second=1184 amount=-5 -kerning first=238 second=970 amount=-1 -kerning first=1036 second=253 amount=-2 -kerning first=178 second=225 amount=-1 -kerning first=289 second=355 amount=-1 -kerning first=294 second=115 amount=-1 -kerning first=196 second=1185 amount=-3 -kerning first=8364 second=230 amount=-1 -kerning first=79 second=379 amount=-1 -kerning first=923 second=1101 amount=-1 -kerning first=1179 second=945 amount=-1 -kerning first=365 second=356 amount=-5 -kerning first=962 second=268 amount=-2 -kerning first=40 second=250 amount=-1 -kerning first=37 second=941 amount=-1 -kerning first=60 second=1241 amount=-1 -kerning first=63 second=187 amount=-1 -kerning first=197 second=8220 amount=-3 -kerning first=323 second=227 amount=-1 -kerning first=901 second=117 amount=-1 -kerning first=80 second=1079 amount=-1 -kerning first=86 second=89 amount=-5 -kerning first=934 second=973 amount=-1 -kerning first=268 second=1066 amount=-1 -kerning first=263 second=8221 amount=-1 -kerning first=1048 second=118 amount=-4 -kerning first=299 second=240 amount=-1 -kerning first=1080 second=283 amount=-1 -kerning first=204 second=943 amount=-1 -kerning first=207 second=252 amount=-1 -kerning first=321 second=1256 amount=-2 -kerning first=8372 second=333 amount=-1 -kerning first=905 second=67 amount=-2 -kerning first=87 second=266 amount=-2 -kerning first=1117 second=217 amount=-2 -kerning first=944 second=229 amount=-1 -kerning first=964 second=1195 amount=-1 -kerning first=967 second=371 amount=-1 -kerning first=166 second=103 amount=-1 -kerning first=276 second=253 amount=-1 -kerning first=48 second=115 amount=-1 -kerning first=188 second=267 amount=-1 -kerning first=1085 second=230 amount=-1 -kerning first=906 second=242 amount=-1 -kerning first=91 second=214 amount=-2 -kerning first=1118 second=372 amount=-5 -kerning first=942 second=1262 amount=-2 -kerning first=254 second=268 amount=-2 -kerning first=968 second=1069 amount=-1 -kerning first=164 second=972 amount=-1 -kerning first=167 second=281 amount=-1 -kerning first=8211 second=1175 amount=-2 -kerning first=1063 second=243 amount=-1 -kerning first=72 second=227 amount=-1 -kerning first=1083 second=1263 amount=-1 -kerning first=215 second=117 amount=-1 -kerning first=92 second=369 amount=-1 -kerning first=89 second=1187 amount=-3 -kerning first=950 second=332 amount=-2 -kerning first=1224 second=244 amount=-1 -kerning first=258 second=216 amount=-2 -kerning first=8226 second=71 amount=-2 -kerning first=53 second=240 amount=-1 -kerning first=190 second=1194 amount=-2 -kerning first=193 second=370 amount=-2 -kerning first=310 second=283 amount=-2 -kerning first=70 second=1256 amount=-2 -kerning first=1096 second=333 amount=-1 -kerning first=213 second=1044 amount=-1 -kerning first=1171 second=949 amount=-1 -kerning first=1176 second=257 amount=-1 -kerning first=239 second=229 amount=-1 -kerning first=951 second=963 amount=-1 -kerning first=954 second=271 amount=-2 -kerning first=256 second=1195 amount=-1 -kerning first=169 second=1257 amount=-1 -kerning first=1097 second=964 amount=-2 -kerning first=1103 second=45 amount=-2 -kerning first=217 second=923 amount=-2 -kerning first=335 second=947 amount=-1 -kerning first=338 second=372 amount=-5 -kerning first=926 second=287 amount=-1 -kerning first=237 second=1262 amount=-2 -kerning first=240 second=1240 amount=-2 -kerning first=960 second=219 amount=-2 -kerning first=1298 second=347 amount=-1 -kerning first=260 second=1069 amount=-1 -kerning first=1035 second=361 amount=-1 -kerning first=291 second=243 amount=-1 -kerning first=1073 second=288 amount=-2 -kerning first=313 second=1263 amount=-1 -kerning first=8363 second=336 amount=-2 -kerning first=936 second=232 amount=-1 -kerning first=367 second=244 amount=-1 -kerning first=160 second=106 amount=1 -kerning first=1240 second=1298 amount=-1 -kerning first=42 second=118 amount=-4 -kerning first=178 second=962 amount=-1 -kerning first=1046 second=71 amount=-3 -kerning first=62 second=283 amount=-1 -kerning first=1078 second=233 amount=-2 -kerning first=322 second=333 amount=-1 -kerning first=900 second=245 amount=-1 -kerning first=343 second=949 amount=-1 -kerning first=105 second=359 amount=-1 -kerning first=108 second=119 amount=-4 -kerning first=968 second=84 amount=-5 -kerning first=125 second=1026 amount=-5 -kerning first=161 second=286 amount=-2 -kerning first=186 second=218 amount=-2 -kerning first=298 second=346 amount=-1 -kerning first=206 second=360 amount=-2 -kerning first=323 second=964 amount=-3 -kerning first=330 second=45 amount=-2 -kerning first=86 second=372 amount=-5 -kerning first=1103 second=8249 amount=-3 -kerning first=83 second=947 amount=-1 -kerning first=1119 second=85 amount=-2 -kerning first=946 second=97 amount=-1 -kerning first=252 second=219 amount=-2 -kerning first=369 second=1108 amount=-1 -kerning first=372 second=347 amount=-2 -kerning first=972 second=34 amount=-1 -kerning first=165 second=231 amount=-1 -kerning first=278 second=121 amount=-1 -kerning first=47 second=243 amount=-2 -kerning first=1059 second=196 amount=-2 -kerning first=299 second=1028 amount=-2 -kerning first=302 second=288 amount=-2 -kerning first=64 second=1263 amount=-1 -kerning first=1084 second=336 amount=-2 -kerning first=905 second=350 amount=-1 -kerning first=910 second=110 amount=-3 -kerning first=356 second=122 amount=-1 -kerning first=944 second=966 amount=-1 -kerning first=948 second=275 amount=-1 -kerning first=113 second=244 amount=-1 -kerning first=253 second=374 amount=-5 -kerning first=376 second=289 amount=-4 -kerning first=282 second=71 amount=-2 -kerning first=8216 second=940 amount=-1 -kerning first=1065 second=111 amount=-1 -kerning first=194 second=83 amount=-1 -kerning first=306 second=233 amount=-1 -kerning first=214 second=245 amount=-1 -kerning first=91 second=949 amount=-1 -kerning first=94 second=257 amount=-1 -kerning first=1174 second=210 amount=-1 -kerning first=354 second=1051 amount=-4 -kerning first=1223 second=352 amount=-1 -kerning first=260 second=84 amount=-5 -kerning first=380 second=234 amount=-1 -kerning first=170 second=334 amount=-2 -kerning first=167 second=1090 amount=-3 -kerning first=8225 second=199 amount=-2 -kerning first=52 second=346 amount=-1 -kerning first=1063 second=1035 amount=-5 -kerning first=78 second=45 amount=-2 -kerning first=72 second=964 amount=-3 -kerning first=75 second=273 amount=-2 -kerning first=330 second=8249 amount=-3 -kerning first=238 second=335 amount=-1 -kerning first=118 second=347 amount=-1 -kerning first=36 second=121 amount=-1 -kerning first=972 second=8216 amount=-1 -kerning first=1036 second=74 amount=-1 -kerning first=8222 second=1118 amount=-1 -kerning first=8226 second=354 amount=-5 -kerning first=53 second=1028 amount=-2 -kerning first=56 second=288 amount=-2 -kerning first=314 second=336 amount=-2 -kerning first=8361 second=279 amount=-1 -kerning first=96 second=1176 amount=-1 -kerning first=1171 second=8217 amount=-3 -kerning first=239 second=966 amount=-1 -kerning first=245 second=47 amount=-1 -kerning first=962 second=87 amount=-5 -kerning first=40 second=71 amount=-2 -kerning first=1037 second=249 amount=-1 -kerning first=179 second=221 amount=-5 -kerning first=8230 second=1038 amount=-1 -kerning first=60 second=233 amount=-1 -kerning first=200 second=363 amount=-1 -kerning first=197 second=1177 amount=-1 -kerning first=8365 second=226 amount=-1 -kerning first=80 second=375 amount=-1 -kerning first=1100 second=1078 amount=-2 -kerning first=223 second=290 amount=-2 -kerning first=934 second=338 amount=-2 -kerning first=1184 second=941 amount=-2 -kerning first=963 second=262 amount=-2 -kerning first=126 second=234 amount=-1 -kerning first=41 second=246 amount=-1 -kerning first=1044 second=199 amount=-1 -kerning first=180 second=376 amount=-5 -kerning first=291 second=1035 amount=-5 -kerning first=296 second=291 amount=-1 -kerning first=1073 second=1098 amount=-3 -kerning first=1076 second=339 amount=-1 -kerning first=198 second=8212 amount=-2 -kerning first=201 second=1059 amount=-2 -kerning first=1080 second=101 amount=-1 -kerning first=902 second=113 amount=-1 -kerning first=78 second=8249 amount=-3 -kerning first=967 second=212 amount=-2 -kerning first=45 second=196 amount=-2 -kerning first=1039 second=1118 amount=-1 -kerning first=178 second=8250 amount=-1 -kerning first=65 second=336 amount=-2 -kerning first=1081 second=279 amount=-1 -kerning first=1118 second=213 amount=-2 -kerning first=1210 second=115 amount=-1 -kerning first=248 second=1076 amount=-1 -kerning first=254 second=87 amount=-5 -kerning first=965 second=1185 amount=-3 -kerning first=968 second=367 amount=-1 -kerning first=164 second=337 amount=-1 -kerning first=167 second=99 amount=-1 -kerning first=274 second=940 amount=-1 -kerning first=49 second=111 amount=-1 -kerning first=189 second=261 amount=-1 -kerning first=186 second=953 amount=-1 -kerning first=1087 second=226 amount=-1 -kerning first=212 second=198 amount=-2 -kerning first=92 second=210 amount=-2 -kerning first=1119 second=368 amount=-2 -kerning first=255 second=262 amount=-2 -kerning first=375 second=1241 amount=-1 -kerning first=966 second=8220 amount=-1 -kerning first=165 second=968 amount=-1 -kerning first=168 second=277 amount=-1 -kerning first=8222 second=117 amount=-1 -kerning first=8218 second=357 amount=-1 -kerning first=47 second=1035 amount=-5 -kerning first=50 second=291 amount=-1 -kerning first=193 second=211 amount=-2 -kerning first=305 second=339 amount=-1 -kerning first=302 second=1098 amount=-3 -kerning first=310 second=101 amount=-2 -kerning first=93 second=365 amount=-1 -kerning first=1168 second=1066 amount=-5 -kerning first=1117 second=8221 amount=-3 -kerning first=376 second=1099 amount=-3 -kerning first=34 second=74 amount=-4 -kerning first=973 second=943 amount=-1 -kerning first=1027 second=252 amount=-1 -kerning first=172 second=224 amount=-1 -kerning first=282 second=354 amount=-5 -kerning first=8220 second=1044 amount=-3 -kerning first=8230 second=67 amount=-1 -kerning first=191 second=1184 amount=-5 -kerning first=194 second=366 amount=-2 -kerning first=306 second=970 amount=-1 -kerning first=311 second=279 amount=-2 -kerning first=77 second=171 amount=-3 -kerning first=338 second=213 amount=-2 -kerning first=926 second=103 amount=-1 -kerning first=91 second=8217 amount=-3 -kerning first=240 second=225 amount=-1 -kerning first=363 second=115 amount=-1 -kerning first=955 second=267 amount=-1 -kerning first=260 second=367 amount=-1 -kerning first=257 second=1185 amount=-1 -kerning first=35 second=249 amount=-1 -kerning first=8240 second=242 amount=-1 -kerning first=316 second=226 amount=-1 -kerning first=81 second=88 amount=-3 -kerning first=928 second=281 amount=-1 -kerning first=121 second=1241 amount=-1 -kerning first=124 second=187 amount=-1 -kerning first=258 second=8220 amount=-3 -kerning first=1039 second=117 amount=-1 -kerning first=175 second=1079 amount=-1 -kerning first=182 second=89 amount=-5 -kerning first=1036 second=357 amount=-1 -kerning first=56 second=1098 amount=-3 -kerning first=59 second=339 amount=-1 -kerning first=62 second=101 amount=-1 -kerning first=202 second=251 amount=-1 -kerning first=8364 second=332 amount=-2 -kerning first=79 second=955 amount=-2 -kerning first=337 second=8221 amount=-1 -kerning first=1195 second=118 amount=-1 -kerning first=958 second=1194 amount=-2 -kerning first=962 second=370 amount=-2 -kerning first=37 second=1118 amount=-1 -kerning first=40 second=354 amount=-5 -kerning first=183 second=266 amount=-2 -kerning first=186 second=39 amount=-3 -kerning first=63 second=279 amount=-1 -kerning first=60 second=970 amount=-1 -kerning first=8365 second=963 amount=-1 -kerning first=8370 second=271 amount=-1 -kerning first=86 second=213 amount=-2 -kerning first=1103 second=1195 amount=-1 -kerning first=934 second=1257 amount=-1 -kerning first=249 second=267 amount=-1 -kerning first=8212 second=120 amount=-2 -kerning first=41 second=1038 amount=-2 -kerning first=1048 second=242 amount=-1 -kerning first=296 second=1101 amount=-1 -kerning first=1080 second=1240 amount=-2 -kerning first=207 second=356 amount=-5 -kerning first=327 second=268 amount=-2 -kerning first=8378 second=219 amount=-2 -kerning first=1168 second=81 amount=-2 -kerning first=1207 second=243 amount=-1 -kerning first=166 second=227 amount=-1 -kerning first=276 second=357 amount=-1 -kerning first=188 second=369 amount=-1 -kerning first=300 second=973 amount=-1 -kerning first=68 second=381 amount=-1 -kerning first=1085 second=332 amount=-2 -kerning first=357 second=118 amount=-4 -kerning first=114 second=240 amount=-1 -kerning first=251 second=1194 amount=-2 -kerning first=254 second=370 amount=-2 -kerning first=374 second=974 amount=-4 -kerning first=377 second=283 amount=-1 -kerning first=164 second=1256 amount=-2 -kerning first=8221 second=245 amount=-1 -kerning first=195 second=79 amount=-2 -kerning first=1087 second=963 amount=-1 -kerning first=1095 second=271 amount=-1 -kerning first=330 second=1195 amount=-1 -kerning first=912 second=286 amount=-2 -kerning first=95 second=253 amount=-1 -kerning first=908 second=1026 amount=-2 -kerning first=1224 second=346 amount=-1 -kerning first=1026 second=360 amount=-2 -kerning first=50 second=1101 amount=-1 -kerning first=1067 second=287 amount=-1 -kerning first=193 second=945 amount=-1 -kerning first=305 second=1262 amount=-2 -kerning first=310 second=1240 amount=-3 -kerning first=8361 second=97 amount=-1 -kerning first=76 second=268 amount=-1 -kerning first=1099 second=219 amount=-2 -kerning first=923 second=231 amount=-1 -kerning first=1176 second=361 amount=-1 -kerning first=1263 second=288 amount=-2 -kerning first=37 second=117 amount=-1 -kerning first=176 second=269 amount=-1 -kerning first=54 second=973 amount=-1 -kerning first=1071 second=232 amount=-1 -kerning first=315 second=332 amount=-1 -kerning first=80 second=216 amount=-2 -kerning first=223 second=106 amount=1 -kerning first=103 second=118 amount=-4 -kerning first=240 second=962 amount=-1 -kerning first=366 second=193 amount=-2 -kerning first=963 second=83 amount=-1 -kerning first=123 second=283 amount=-1 -kerning first=120 second=974 amount=-1 -kerning first=41 second=67 amount=-2 -kerning first=180 second=217 amount=-2 -kerning first=8260 second=290 amount=-2 -kerning first=61 second=229 amount=-1 -kerning first=204 second=119 amount=-4 -kerning first=201 second=359 amount=-1 -kerning first=316 second=963 amount=-1 -kerning first=321 second=271 amount=-1 -kerning first=78 second=1195 amount=-1 -kerning first=936 second=334 amount=-2 -kerning first=928 second=1090 amount=-3 -kerning first=247 second=218 amount=-2 -kerning first=367 second=346 amount=-1 -kerning first=160 second=230 amount=-1 -kerning first=266 second=1174 amount=-2 -kerning first=42 second=242 amount=-1 -kerning first=39 second=923 amount=-3 -kerning first=178 second=947 amount=-4 -kerning first=182 second=372 amount=-5 -kerning first=297 second=287 amount=-1 -kerning first=62 second=1240 amount=-2 -kerning first=59 second=1262 amount=-2 -kerning first=1078 second=335 amount=-2 -kerning first=1081 second=97 amount=-1 -kerning first=325 second=219 amount=-2 -kerning first=900 second=347 amount=-1 -kerning first=88 second=81 amount=-3 -kerning first=1118 second=34 amount=-3 -kerning first=108 second=243 amount=-1 -kerning first=248 second=373 amount=-1 -kerning first=371 second=288 amount=-2 -kerning first=125 second=1263 amount=-1 -kerning first=301 second=232 amount=-1 -kerning first=1083 second=275 amount=-1 -kerning first=209 second=244 amount=-1 -kerning first=904 second=289 amount=-1 -kerning first=89 second=256 amount=-5 -kerning first=946 second=221 amount=-5 -kerning first=1219 second=111 amount=-1 -kerning first=246 second=8230 amount=-1 -kerning first=255 second=83 amount=-1 -kerning first=375 second=233 amount=-1 -kerning first=165 second=333 amount=-1 -kerning first=278 second=245 amount=-1 -kerning first=47 second=345 amount=-1 -kerning first=190 second=257 amount=-1 -kerning first=70 second=271 amount=-1 -kerning first=213 second=194 amount=-2 -kerning first=334 second=84 amount=-2 -kerning first=910 second=234 amount=-4 -kerning first=1168 second=364 amount=-2 -kerning first=230 second=1090 amount=-1 -kerning first=356 second=246 amount=-3 -kerning first=948 second=376 amount=-5 -kerning first=113 second=346 amount=-1 -kerning first=1220 second=291 amount=-1 -kerning first=967 second=8212 amount=-2 -kerning first=169 second=273 amount=-1 -kerning first=172 second=45 amount=-2 -kerning first=166 second=964 amount=-3 -kerning first=8224 second=113 amount=-1 -kerning first=8220 second=353 amount=-1 -kerning first=51 second=287 amount=-1 -kerning first=54 second=57 amount=-1 -kerning first=1065 second=235 amount=-1 -kerning first=306 second=335 amount=-1 -kerning first=311 second=97 amount=-1 -kerning first=74 second=219 amount=-2 -kerning first=214 second=347 amount=-1 -kerning first=338 second=34 amount=-3 -kerning first=94 second=361 amount=-1 -kerning first=1118 second=8216 amount=-3 -kerning first=360 second=196 amount=-2 -kerning first=117 second=288 amount=-2 -kerning first=174 second=220 amount=-2 -kerning first=55 second=232 amount=-1 -kerning first=195 second=362 amount=-2 -kerning first=192 second=1176 amount=-1 -kerning first=313 second=275 amount=-1 -kerning first=928 second=99 amount=-1 -kerning first=1175 second=940 amount=-1 -kerning first=361 second=351 amount=-1 -kerning first=956 second=261 amount=-1 -kerning first=121 second=233 amount=-1 -kerning first=258 second=1177 amount=-1 -kerning first=36 second=245 amount=-1 -kerning first=175 second=375 amount=-1 -kerning first=289 second=290 amount=-2 -kerning first=193 second=8211 amount=-2 -kerning first=1074 second=100 amount=-1 -kerning first=923 second=968 amount=-1 -kerning first=931 second=277 amount=-1 -kerning first=102 second=246 amount=-1 -kerning first=1186 second=199 amount=-1 -kerning first=365 second=291 amount=-1 -kerning first=962 second=211 amount=-2 -kerning first=1263 second=1098 amount=-3 -kerning first=1037 second=353 amount=-1 -kerning first=1041 second=113 amount=-1 -kerning first=172 second=8249 amount=-3 -kerning first=183 second=85 amount=-2 -kerning first=60 second=335 amount=-1 -kerning first=63 second=97 amount=-1 -kerning first=86 second=34 amount=-3 -kerning first=338 second=8216 amount=-3 -kerning first=1184 second=1118 amount=-2 -kerning first=240 second=8250 amount=-1 -kerning first=960 second=1184 amount=-5 -kerning first=963 second=366 amount=-2 -kerning first=126 second=336 amount=-2 -kerning first=271 second=248 amount=-1 -kerning first=41 second=350 amount=-1 -kerning first=67 second=47 amount=-1 -kerning first=61 second=966 amount=-1 -kerning first=64 second=275 amount=-1 -kerning first=1080 second=225 amount=-1 -kerning first=327 second=87 amount=-5 -kerning first=8372 second=267 amount=-1 -kerning first=1106 second=1185 amount=-1 -kerning first=345 second=940 amount=-1 -kerning first=107 second=351 amount=-1 -kerning first=250 second=261 amount=-1 -kerning first=247 second=953 amount=-1 -kerning first=961 second=8218 amount=-1 -kerning first=188 second=210 amount=-2 -kerning first=300 second=338 amount=-2 -kerning first=303 second=100 amount=-1 -kerning first=903 second=1241 amount=-1 -kerning first=906 second=187 amount=-1 -kerning first=354 second=199 amount=-1 -kerning first=942 second=1079 amount=-1 -kerning first=108 second=1035 amount=-5 -kerning first=254 second=211 amount=-2 -kerning first=371 second=1098 amount=-3 -kerning first=374 second=339 amount=-4 -kerning first=377 second=101 amount=-1 -kerning first=971 second=251 amount=-1 -kerning first=280 second=113 amount=-1 -kerning first=49 second=235 amount=-1 -kerning first=189 second=365 amount=-1 -kerning first=8377 second=1194 amount=-2 -kerning first=86 second=8216 amount=-3 -kerning first=1119 second=943 amount=-1 -kerning first=1170 second=252 amount=-1 -kerning first=950 second=266 amount=-2 -kerning first=252 second=1184 amount=-5 -kerning first=255 second=366 amount=-2 -kerning first=375 second=970 amount=-1 -kerning first=378 second=279 amount=-1 -kerning first=8218 second=920 amount=-1 -kerning first=1067 second=103 amount=-1 -kerning first=310 second=225 amount=-1 -kerning first=76 second=87 amount=-4 -kerning first=1096 second=267 amount=-1 -kerning first=331 second=1185 amount=-1 -kerning first=93 second=940 amount=-1 -kerning first=96 second=249 amount=-1 -kerning first=1220 second=1101 amount=-1 -kerning first=34 second=198 amount=-3 -kerning first=1027 second=356 amount=-5 -kerning first=54 second=338 amount=-2 -kerning first=57 second=100 amount=-1 -kerning first=197 second=250 amount=-1 -kerning first=194 second=941 amount=-1 -kerning first=1065 second=972 amount=-1 -kerning first=77 second=262 amount=-2 -kerning first=926 second=227 amount=-1 -kerning first=100 second=199 amount=-2 -kerning first=1184 second=117 amount=-1 -kerning first=237 second=1079 amount=-1 -kerning first=955 second=369 amount=-1 -kerning first=117 second=1098 amount=-3 -kerning first=120 second=339 amount=-2 -kerning first=123 second=101 amount=-1 -kerning first=38 second=113 amount=-1 -kerning first=35 second=353 amount=-1 -kerning first=177 second=263 amount=-1 -kerning first=8260 second=106 amount=1 -kerning first=1073 second=228 amount=-1 -kerning first=224 second=102 amount=-1 -kerning first=247 second=39 amount=-3 -kerning first=964 second=79 amount=-2 -kerning first=121 second=970 amount=-1 -kerning first=124 second=279 amount=-1 -kerning first=1036 second=920 amount=-3 -kerning first=182 second=213 amount=-2 -kerning first=297 second=103 amount=-1 -kerning first=8249 second=1026 amount=-1 -kerning first=62 second=225 amount=-1 -kerning first=202 second=355 amount=-1 -kerning first=205 second=115 amount=-1 -kerning first=322 second=267 amount=-1 -kerning first=8369 second=218 amount=-2 -kerning first=365 second=1101 amount=-1 -kerning first=962 second=945 amount=-1 -kerning first=161 second=226 amount=-1 -kerning first=270 second=356 amount=-2 -kerning first=274 second=116 amount=-1 -kerning first=183 second=368 amount=-2 -kerning first=298 second=281 amount=-1 -kerning first=8370 second=373 amount=-4 -kerning first=80 second=8220 amount=-3 -kerning first=249 second=369 amount=-1 -kerning first=369 second=973 amount=-1 -kerning first=184 second=1066 amount=-5 -kerning first=180 second=8221 amount=-3 -kerning first=302 second=228 amount=-1 -kerning first=1080 second=962 amount=-1 -kerning first=327 second=370 amount=-2 -kerning first=905 second=283 amount=-1 -kerning first=230 second=382 amount=-1 -kerning first=356 second=67 amount=-1 -kerning first=948 second=217 amount=-2 -kerning first=256 second=79 amount=-2 -kerning first=376 second=229 amount=-4 -kerning first=973 second=119 amount=-4 -kerning first=276 second=920 amount=-2 -kerning first=8220 second=194 amount=-3 -kerning first=51 second=103 amount=-1 -kerning first=1049 second=1026 amount=-5 -kerning first=1062 second=286 amount=-1 -kerning first=191 second=253 amount=-1 -kerning first=300 second=1257 amount=-1 -kerning first=354 second=923 amount=-6 -kerning first=357 second=242 amount=-1 -kerning first=945 second=947 amount=-2 -kerning first=1223 second=287 amount=-1 -kerning first=254 second=945 amount=-1 -kerning first=377 second=1240 amount=-1 -kerning first=170 second=268 amount=-2 -kerning first=8217 second=1108 amount=-1 -kerning first=8221 second=347 amount=-1 -kerning first=49 second=972 amount=-1 -kerning first=52 second=281 amount=-1 -kerning first=1095 second=373 amount=-4 -kerning first=95 second=357 amount=-1 -kerning first=238 second=269 amount=-1 -kerning first=381 second=332 amount=-1 -kerning first=175 second=216 amount=-2 -kerning first=289 second=106 amount=1 -kerning first=8226 second=289 amount=-1 -kerning first=56 second=228 amount=-1 -kerning first=310 second=962 amount=-2 -kerning first=8361 second=221 amount=-5 -kerning first=73 second=1194 amount=-2 -kerning first=76 second=370 amount=-1 -kerning first=1090 second=8230 amount=-3 -kerning first=923 second=333 amount=-1 -kerning first=1179 second=245 amount=-1 -kerning first=958 second=257 amount=-1 -kerning first=954 second=949 amount=-2 -kerning first=267 second=119 amount=-1 -kerning first=382 second=963 amount=-1 -kerning first=172 second=1195 amount=-1 -kerning first=176 second=371 amount=-1 -kerning first=287 second=1026 amount=-5 -kerning first=54 second=1257 amount=-1 -kerning first=1068 second=1090 amount=-2 -kerning first=1071 second=334 amount=-2 -kerning first=318 second=218 amount=-2 -kerning first=223 second=230 amount=-1 -kerning first=934 second=273 amount=-1 -kerning first=926 second=964 amount=-3 -kerning first=103 second=242 amount=-1 -kerning first=240 second=947 amount=-4 -kerning first=123 second=1240 amount=-2 -kerning first=1035 second=1108 amount=-1 -kerning first=177 second=1069 amount=-1 -kerning first=184 second=81 amount=-2 -kerning first=296 second=231 amount=-1 -kerning first=1073 second=965 amount=-1 -kerning first=204 second=243 amount=-1 -kerning first=321 second=373 amount=-4 -kerning first=221 second=1263 amount=-2 -kerning first=964 second=362 amount=-2 -kerning first=160 second=332 amount=-2 -kerning first=273 second=244 amount=-1 -kerning first=62 second=962 amount=-1 -kerning first=1081 second=221 amount=-5 -kerning first=208 second=193 amount=-2 -kerning first=8369 second=953 amount=-1 -kerning first=903 second=233 amount=-1 -kerning first=942 second=375 amount=-1 -kerning first=251 second=257 amount=-1 -kerning first=962 second=8211 amount=-2 -kerning first=161 second=963 amount=-1 -kerning first=164 second=271 amount=-1 -kerning first=8211 second=352 amount=-1 -kerning first=43 second=1026 amount=-5 -kerning first=1051 second=234 amount=-1 -kerning first=46 second=286 amount=-1 -kerning first=298 second=1090 amount=-3 -kerning first=301 second=334 amount=-2 -kerning first=69 second=218 amount=-2 -kerning first=1083 second=376 amount=-5 -kerning first=209 second=346 amount=-1 -kerning first=229 second=964 amount=-1 -kerning first=950 second=85 amount=-2 -kerning first=1219 second=235 amount=-1 -kerning first=372 second=1094 amount=-2 -kerning first=375 second=335 amount=-1 -kerning first=168 second=219 amount=-2 -kerning first=278 second=347 amount=-1 -kerning first=50 second=231 amount=-1 -kerning first=187 second=1175 amount=-2 -kerning first=190 second=361 amount=-1 -kerning first=302 second=965 amount=-1 -kerning first=193 second=121 amount=-1 -kerning first=70 second=373 amount=-4 -kerning first=1080 second=8250 amount=-1 -kerning first=67 second=1202 amount=-2 -kerning first=8378 second=1184 amount=-5 -kerning first=910 second=336 amount=-3 -kerning first=1171 second=248 amount=-1 -kerning first=236 second=220 amount=-2 -kerning first=356 second=350 amount=-1 -kerning first=253 second=1176 amount=-1 -kerning first=256 second=362 amount=-2 -kerning first=376 second=966 amount=-4 -kerning first=379 second=275 amount=-1 -kerning first=169 second=374 amount=-5 -kerning first=282 second=289 amount=-1 -kerning first=1065 second=337 amount=-1 -kerning first=197 second=71 amount=-2 -kerning first=68 second=8230 amount=-1 -kerning first=77 second=83 amount=-1 -kerning first=237 second=375 amount=-1 -kerning first=955 second=210 amount=-2 -kerning first=254 second=8211 amount=-2 -kerning first=1298 second=100 amount=-1 -kerning first=177 second=84 amount=-5 -kerning first=8225 second=1241 amount=-1 -kerning first=8240 second=187 amount=-1 -kerning first=55 second=334 amount=-2 -kerning first=52 second=1090 amount=-3 -kerning first=198 second=246 amount=-1 -kerning first=313 second=376 amount=-6 -kerning first=8363 second=89 amount=-5 -kerning first=1185 second=113 amount=-2 -kerning first=956 second=365 amount=-1 -kerning first=121 second=335 amount=-1 -kerning first=124 second=97 amount=-1 -kerning first=1240 second=377 amount=-1 -kerning first=36 second=347 amount=-1 -kerning first=178 second=259 amount=-1 -kerning first=182 second=34 amount=-3 -kerning first=56 second=965 amount=-1 -kerning first=1074 second=224 amount=-1 -kerning first=310 second=8250 amount=-2 -kerning first=8364 second=266 amount=-2 -kerning first=8369 second=39 amount=-3 -kerning first=1099 second=1184 amount=-5 -kerning first=343 second=248 amount=-1 -kerning first=1195 second=63 amount=-1 -kerning first=125 second=275 amount=-1 -kerning first=122 second=966 amount=-1 -kerning first=270 second=197 amount=-2 -kerning first=40 second=289 amount=-1 -kerning first=298 second=99 amount=-1 -kerning first=63 second=221 amount=-5 -kerning first=203 second=351 amount=-1 -kerning first=206 second=111 amount=-1 -kerning first=318 second=953 amount=-1 -kerning first=323 second=261 amount=-1 -kerning first=8370 second=214 amount=-2 -kerning first=80 second=1177 amount=-1 -kerning first=249 second=210 amount=-2 -kerning first=369 second=338 amount=-2 -kerning first=372 second=100 amount=-3 -kerning first=963 second=941 amount=-1 -kerning first=271 second=352 amount=-1 -kerning first=8212 second=65 amount=-2 -kerning first=1044 second=1241 amount=-1 -kerning first=1048 second=187 amount=-1 -kerning first=184 second=364 amount=-2 -kerning first=296 second=968 amount=-1 -kerning first=299 second=277 amount=-1 -kerning first=64 second=376 amount=-5 -kerning first=204 second=1035 amount=-5 -kerning first=207 second=291 amount=-1 -kerning first=1084 second=89 amount=-5 -kerning first=327 second=211 amount=-2 -kerning first=8372 second=369 amount=-1 -kerning first=902 second=339 amount=-1 -kerning first=905 second=101 amount=-1 -kerning first=1117 second=251 amount=-1 -kerning first=941 second=955 amount=-1 -kerning first=944 second=263 amount=-1 -kerning first=250 second=365 amount=-1 -kerning first=8216 second=240 amount=-1 -kerning first=182 second=8216 amount=-3 -kerning first=303 second=224 amount=-1 -kerning first=62 second=8250 amount=-1 -kerning first=71 second=86 amount=-2 -kerning first=1085 second=266 amount=-2 -kerning first=325 second=1184 amount=-5 -kerning first=906 second=279 amount=-1 -kerning first=903 second=970 amount=-1 -kerning first=91 second=248 amount=-1 -kerning first=1223 second=103 amount=-1 -kerning first=248 second=8217 amount=-1 -kerning first=971 second=355 amount=-1 -kerning first=170 second=87 amount=-5 -kerning first=49 second=337 amount=-1 -kerning first=52 second=99 amount=-1 -kerning first=189 second=940 amount=-1 -kerning first=192 second=249 amount=-1 -kerning first=69 second=953 amount=-1 -kerning first=72 second=261 amount=-1 -kerning first=1095 second=214 amount=-2 -kerning first=912 second=226 amount=-1 -kerning first=1170 second=356 amount=-5 -kerning first=232 second=1078 amount=-2 -kerning first=950 second=368 amount=-2 -kerning first=118 second=100 amount=-1 -kerning first=1219 second=972 amount=-1 -kerning first=258 second=250 amount=-1 -kerning first=255 second=941 amount=-1 -kerning first=1224 second=281 amount=-1 -kerning first=1033 second=65 amount=-1 -kerning first=50 second=968 amount=-1 -kerning first=53 second=277 amount=-1 -kerning first=1067 second=227 amount=-1 -kerning first=196 second=199 amount=-2 -kerning first=305 second=1079 amount=-1 -kerning first=314 second=89 amount=-5 -kerning first=76 second=211 amount=-1 -kerning first=1096 second=369 amount=-1 -kerning first=910 second=1224 amount=-3 -kerning first=96 second=353 amount=-1 -kerning first=239 second=263 amount=-1 -kerning first=951 second=1066 amount=-5 -kerning first=948 second=8221 amount=-3 -kerning first=1263 second=228 amount=-1 -kerning first=176 second=212 amount=-2 -kerning first=57 second=224 amount=-1 -kerning first=1065 second=1256 amount=-1 -kerning first=197 second=354 amount=-5 -kerning first=194 second=1118 amount=-1 -kerning first=315 second=266 amount=-1 -kerning first=318 second=39 amount=-3 -kerning first=74 second=1184 amount=-5 -kerning first=77 second=366 amount=-2 -kerning first=1103 second=79 amount=-2 -kerning first=103 second=63 amount=-1 -kerning first=960 second=253 amount=-1 -kerning first=123 second=225 amount=-1 -kerning first=177 second=367 amount=-1 -kerning first=174 second=1185 amount=-3 -kerning first=8260 second=230 amount=-1 -kerning first=198 second=1038 amount=-2 -kerning first=321 second=214 amount=-2 -kerning first=8363 second=372 amount=-5 -kerning first=936 second=268 amount=-2 -kerning first=367 second=281 amount=-1 -kerning first=42 second=187 amount=-1 -kerning first=39 second=1241 amount=-1 -kerning first=175 second=8220 amount=-3 -kerning first=297 second=227 amount=-1 -kerning first=65 second=89 amount=-5 -kerning first=59 second=1079 amount=-1 -kerning first=1078 second=269 amount=-2 -kerning first=322 second=369 amount=-1 -kerning first=942 second=216 amount=-2 -kerning first=242 second=8221 amount=-1 -kerning first=371 second=228 amount=-1 -kerning first=968 second=118 amount=-4 -kerning first=270 second=916 amount=-2 -kerning first=274 second=240 amount=-1 -kerning first=8211 second=193 amount=-2 -kerning first=46 second=102 amount=-2 -kerning first=183 second=943 amount=-1 -kerning first=186 second=252 amount=-1 -kerning first=69 second=39 amount=-3 -kerning first=1083 second=217 amount=-2 -kerning first=330 second=79 amount=-2 -kerning first=8370 second=949 amount=-1 -kerning first=904 second=229 amount=-1 -kerning first=8377 second=257 amount=-1 -kerning first=1119 second=119 amount=-4 -kerning first=1206 second=286 amount=-1 -kerning first=252 second=253 amount=-1 -kerning first=369 second=1257 amount=-1 -kerning first=165 second=267 amount=-1 -kerning first=8212 second=346 amount=-1 -kerning first=70 second=214 amount=-1 -kerning first=1080 second=947 amount=-4 -kerning first=1084 second=372 amount=-5 -kerning first=207 second=1101 amount=-1 -kerning first=327 second=945 amount=-1 -kerning first=902 second=1262 amount=-2 -kerning first=905 second=1240 amount=-2 -kerning first=93 second=116 amount=-1 -kerning first=944 second=1069 amount=-1 -kerning first=951 second=81 amount=-2 -kerning first=113 second=281 amount=-1 -kerning first=1220 second=231 amount=-1 -kerning first=376 second=331 amount=-3 -kerning first=973 second=243 amount=-1 -kerning first=51 second=227 amount=-1 -kerning first=1049 second=1263 amount=-1 -kerning first=191 second=357 amount=-1 -kerning first=194 second=117 amount=-1 -kerning first=306 second=269 amount=-1 -kerning first=1174 second=244 amount=-1 -kerning first=237 second=216 amount=-2 -kerning first=117 second=228 amount=-1 -kerning first=260 second=118 amount=-4 -kerning first=377 second=962 amount=-1 -kerning first=1028 second=193 amount=-1 -kerning first=167 second=1194 amount=-2 -kerning first=170 second=370 amount=-2 -kerning first=8225 second=233 amount=-1 -kerning first=49 second=1256 amount=-2 -kerning first=198 second=67 amount=-2 -kerning first=313 second=217 amount=-1 -kerning first=78 second=79 amount=-2 -kerning first=1095 second=949 amount=-1 -kerning first=339 second=119 amount=-1 -kerning first=912 second=963 amount=-1 -kerning first=95 second=920 amount=-2 -kerning first=238 second=371 amount=-1 -kerning first=358 second=1026 amount=-5 -kerning first=361 second=286 amount=-2 -kerning first=1224 second=1090 amount=-3 -kerning first=289 second=230 amount=-1 -kerning first=1067 second=964 amount=-3 -kerning first=1074 second=45 amount=-2 -kerning first=314 second=372 amount=-5 -kerning first=310 second=947 amount=-3 -kerning first=8364 second=85 amount=-2 -kerning first=76 second=945 amount=-1 -kerning first=931 second=219 amount=-2 -kerning first=1176 second=1108 amount=-1 -kerning first=239 second=1069 amount=-1 -kerning first=365 second=231 amount=-1 -kerning first=958 second=361 amount=-1 -kerning first=962 second=121 amount=-1 -kerning first=1263 second=965 amount=-1 -kerning first=1037 second=288 amount=-2 -kerning first=287 second=1263 amount=-1 -kerning first=60 second=269 amount=-1 -kerning first=1103 second=362 amount=-2 -kerning first=223 second=332 amount=-2 -kerning first=934 second=374 amount=-5 -kerning first=106 second=106 amount=7 -kerning first=123 second=962 amount=-1 -kerning first=41 second=283 amount=-1 -kerning first=44 second=55 amount=-1 -kerning first=1044 second=233 amount=-1 -kerning first=296 second=333 amount=-1 -kerning first=64 second=217 amount=-2 -kerning first=321 second=949 amount=-1 -kerning first=8372 second=210 amount=-2 -kerning first=87 second=119 amount=-1 -kerning first=230 second=44 amount=-1 -kerning first=350 second=194 amount=-1 -kerning first=944 second=84 amount=-5 -kerning first=1202 second=234 amount=-1 -kerning first=367 second=1090 amount=-3 -kerning first=967 second=246 amount=-1 -kerning first=163 second=218 amount=-2 -kerning first=273 second=346 amount=-1 -kerning first=185 second=360 amount=-2 -kerning first=303 second=45 amount=-2 -kerning first=300 second=273 amount=-1 -kerning first=297 second=964 amount=-3 -kerning first=62 second=947 amount=-4 -kerning first=65 second=372 amount=-5 -kerning first=1074 second=8249 amount=-3 -kerning first=1085 second=85 amount=-2 -kerning first=903 second=335 amount=-1 -kerning first=906 second=97 amount=-1 -kerning first=354 second=109 amount=-2 -kerning first=949 second=34 amount=-1 -kerning first=248 second=1175 amount=-2 -kerning first=251 second=361 amount=-1 -kerning first=254 second=121 amount=-1 -kerning first=371 second=965 amount=-1 -kerning first=164 second=373 amount=-4 -kerning first=274 second=1028 amount=-2 -kerning first=43 second=1263 amount=-1 -kerning first=1051 second=336 amount=-2 -kerning first=304 second=220 amount=-2 -kerning first=330 second=362 amount=-2 -kerning first=8370 second=8217 amount=-3 -kerning first=333 second=122 amount=-1 -kerning first=904 second=966 amount=-1 -kerning first=92 second=244 amount=-1 -kerning first=1219 second=337 amount=-1 -kerning first=1224 second=99 amount=-1 -kerning first=258 second=71 amount=-2 -kerning first=1026 second=111 amount=-1 -kerning first=47 second=1087 amount=-1 -kerning first=50 second=333 amount=-1 -kerning first=193 second=245 amount=-1 -kerning first=305 second=375 amount=-1 -kerning first=70 second=949 amount=-1 -kerning first=73 second=257 amount=-1 -kerning first=1096 second=210 amount=-2 -kerning first=327 second=8211 amount=-2 -kerning first=1171 second=352 amount=-1 -kerning first=239 second=84 amount=-5 -kerning first=951 second=364 amount=-2 -kerning first=113 second=1090 amount=-3 -kerning first=1220 second=968 amount=-1 -kerning first=973 second=1035 amount=-5 -kerning first=1027 second=291 amount=-1 -kerning first=8224 second=339 amount=-1 -kerning first=54 second=273 amount=-1 -kerning first=57 second=45 amount=-2 -kerning first=51 second=964 amount=-3 -kerning first=303 second=8249 amount=-3 -kerning first=315 second=85 amount=-1 -kerning first=94 second=1108 amount=-1 -kerning first=240 second=259 amount=-1 -kerning first=243 second=34 amount=-1 -kerning first=949 second=8216 amount=-1 -kerning first=117 second=965 amount=-1 -kerning first=1298 second=224 amount=-1 -kerning first=35 second=288 amount=-2 -kerning first=8225 second=970 amount=-1 -kerning first=8240 second=279 amount=-1 -kerning first=58 second=220 amount=-2 -kerning first=1073 second=171 amount=-3 -kerning first=198 second=350 amount=-1 -kerning first=8363 second=213 amount=-2 -kerning first=78 second=362 amount=-2 -kerning first=1095 second=8217 amount=-3 -kerning first=75 second=1176 amount=-2 -kerning first=221 second=275 amount=-4 -kerning first=936 second=87 amount=-5 -kerning first=367 second=99 amount=-1 -kerning first=956 second=940 amount=-1 -kerning first=124 second=221 amount=-5 -kerning first=39 second=233 amount=-1 -kerning first=178 second=363 amount=-1 -kerning first=175 second=1177 amount=-1 -kerning first=59 second=375 amount=-1 -kerning first=202 second=290 amount=-2 -kerning first=322 second=210 amount=-2 -kerning first=8364 second=368 amount=-2 -kerning first=900 second=100 amount=-1 -kerning first=76 second=8211 amount=-3 -kerning first=79 second=1051 amount=-1 -kerning first=105 second=234 amount=-1 -kerning first=1186 second=1241 amount=-1 -kerning first=365 second=968 amount=-1 -kerning first=965 second=199 amount=-2 -kerning first=125 second=376 amount=-5 -kerning first=1041 second=339 amount=-1 -kerning first=176 second=8212 amount=-2 -kerning first=179 second=1059 amount=-2 -kerning first=1037 second=1098 amount=-3 -kerning first=57 second=8249 amount=-3 -kerning first=1075 second=955 amount=-4 -kerning first=206 second=235 amount=-1 -kerning first=323 second=365 amount=-1 -kerning first=8365 second=1066 amount=-5 -kerning first=243 second=8216 amount=-1 -kerning first=372 second=224 amount=-2 -kerning first=963 second=1118 amount=-1 -kerning first=123 second=8250 amount=-1 -kerning first=44 second=336 amount=-1 -kerning first=1048 second=279 amount=-1 -kerning first=302 second=171 amount=-3 -kerning first=67 second=260 amount=-1 -kerning first=1084 second=213 amount=-2 -kerning first=321 second=8217 amount=-3 -kerning first=8378 second=253 amount=-1 -kerning first=905 second=225 amount=-1 -kerning first=1117 second=355 amount=-1 -kerning first=1168 second=115 amount=-1 -kerning first=944 second=367 amount=-1 -kerning first=113 second=99 amount=-1 -kerning first=253 second=249 amount=-1 -kerning first=250 second=940 amount=-1 -kerning first=967 second=1038 amount=-2 -kerning first=166 second=261 amount=-1 -kerning first=163 second=953 amount=-1 -kerning first=1085 second=368 amount=-2 -kerning first=214 second=100 amount=-1 -kerning first=91 second=352 amount=-1 -kerning first=357 second=187 amount=-1 -kerning first=354 second=1241 amount=-3 -kerning first=942 second=8220 amount=-3 -kerning first=114 second=277 amount=-1 -kerning first=1223 second=227 amount=-1 -kerning first=374 second=1079 amount=-4 -kerning first=170 second=211 amount=-2 -kerning first=277 second=1098 amount=-1 -kerning first=280 second=339 amount=-1 -kerning first=192 second=353 amount=-1 -kerning first=195 second=113 amount=-1 -kerning first=72 second=365 amount=-1 -kerning first=1083 second=8221 amount=-3 -kerning first=1087 second=1066 amount=-5 -kerning first=920 second=90 amount=-1 -kerning first=1175 second=240 amount=-1 -kerning first=238 second=212 amount=-2 -kerning first=950 second=943 amount=-1 -kerning first=118 second=224 amount=-1 -kerning first=1219 second=1256 amount=-2 -kerning first=258 second=354 amount=-5 -kerning first=255 second=1118 amount=-1 -kerning first=381 second=266 amount=-1 -kerning first=168 second=1184 amount=-5 -kerning first=8226 second=229 amount=-1 -kerning first=56 second=171 amount=-3 -kerning first=314 second=213 amount=-2 -kerning first=70 second=8217 amount=-3 -kerning first=1099 second=253 amount=-1 -kerning first=923 second=267 amount=-1 -kerning first=239 second=367 amount=-1 -kerning first=236 second=1185 amount=-3 -kerning first=1027 second=1101 amount=-1 -kerning first=8224 second=1262 amount=-2 -kerning first=8230 second=1240 amount=-1 -kerning first=1071 second=268 amount=-2 -kerning first=315 second=368 amount=-1 -kerning first=8365 second=81 amount=-2 -kerning first=80 second=250 amount=-1 -kerning first=77 second=941 amount=-1 -kerning first=100 second=1241 amount=-1 -kerning first=103 second=187 amount=-1 -kerning first=237 second=8220 amount=-3 -kerning first=960 second=357 amount=-1 -kerning first=963 second=117 amount=-1 -kerning first=126 second=89 amount=-5 -kerning first=35 second=1098 amount=-3 -kerning first=38 second=339 amount=-1 -kerning first=1035 second=973 amount=-1 -kerning first=41 second=101 amount=-1 -kerning first=180 second=251 amount=-1 -kerning first=8260 second=332 amount=-2 -kerning first=61 second=263 amount=-1 -kerning first=313 second=8221 amount=-3 -kerning first=316 second=1066 amount=-5 -kerning first=221 second=1080 amount=-3 -kerning first=345 second=240 amount=-1 -kerning first=928 second=1194 amount=-2 -kerning first=936 second=370 amount=-2 -kerning first=247 second=252 amount=-1 -kerning first=967 second=67 amount=-2 -kerning first=160 second=266 amount=-2 -kerning first=163 second=39 amount=-3 -kerning first=1240 second=8222 amount=-1 -kerning first=45 second=51 amount=-2 -kerning first=42 second=279 amount=-1 -kerning first=1046 second=229 amount=-1 -kerning first=65 second=213 amount=-2 -kerning first=1074 second=1195 amount=-1 -kerning first=325 second=253 amount=-1 -kerning first=88 second=115 amount=-1 -kerning first=968 second=242 amount=-1 -kerning first=164 second=214 amount=-2 -kerning first=1041 second=1262 amount=-2 -kerning first=186 second=356 amount=-5 -kerning first=189 second=116 amount=-1 -kerning first=301 second=268 amount=-2 -kerning first=1087 second=81 amount=-2 -kerning first=206 second=972 amount=-1 -kerning first=209 second=281 amount=-1 -kerning first=8377 second=361 amount=-1 -kerning first=1119 second=243 amount=-1 -kerning first=252 second=357 amount=-1 -kerning first=255 second=117 amount=-1 -kerning first=375 second=269 amount=-1 -kerning first=165 second=369 amount=-1 -kerning first=305 second=216 amount=-2 -kerning first=64 second=8221 amount=-3 -kerning first=67 second=1066 amount=-1 -kerning first=905 second=962 amount=-1 -kerning first=93 second=240 amount=-1 -kerning first=356 second=283 amount=-3 -kerning first=1220 second=333 amount=-1 -kerning first=172 second=79 amount=-2 -kerning first=282 second=229 amount=-1 -kerning first=1062 second=963 amount=-1 -kerning first=191 second=920 amount=-2 -kerning first=1065 second=271 amount=-1 -kerning first=306 second=371 amount=-1 -kerning first=303 second=1195 amount=-1 -kerning first=74 second=253 amount=-1 -kerning first=332 second=1046 amount=-3 -kerning first=916 second=218 amount=-2 -kerning first=952 second=360 amount=-2 -kerning first=1223 second=964 amount=-3 -kerning first=1298 second=45 amount=-2 -kerning first=260 second=242 amount=-1 -kerning first=170 second=945 amount=-1 -kerning first=280 second=1262 amount=-2 -kerning first=8225 second=335 amount=-1 -kerning first=8240 second=97 amount=-1 -kerning first=55 second=268 amount=-2 -kerning first=316 second=81 amount=-2 -kerning first=8363 second=34 amount=-3 -kerning first=1178 second=288 amount=-1 -kerning first=358 second=1263 amount=-1 -kerning first=118 second=961 amount=-2 -kerning first=121 second=269 amount=-1 -kerning first=1299 second=220 amount=-2 -kerning first=1036 second=232 amount=-2 -kerning first=289 second=332 amount=-2 -kerning first=8226 second=966 amount=-1 -kerning first=59 second=216 amount=-2 -kerning first=1070 second=374 amount=-3 -kerning first=202 second=106 amount=1 -kerning first=102 second=283 amount=-1 -kerning first=1186 second=233 amount=-1 -kerning first=365 second=333 amount=-1 -kerning first=962 second=245 amount=-1 -kerning first=125 second=217 amount=-2 -kerning first=40 second=229 amount=-1 -kerning first=183 second=119 amount=-4 -kerning first=179 second=359 amount=-1 -kerning first=57 second=1195 amount=-1 -kerning first=60 second=371 amount=-1 -kerning first=200 second=1026 amount=-5 -kerning first=203 second=286 amount=-2 -kerning first=8365 second=364 amount=-2 -kerning first=80 second=1046 amount=-2 -kerning first=369 second=273 amount=-1 -kerning first=372 second=45 amount=-2 -kerning first=123 second=947 amount=-4 -kerning first=126 second=372 amount=-5 -kerning first=1298 second=8249 amount=-3 -kerning first=271 second=287 amount=-1 -kerning first=38 second=1262 amount=-2 -kerning first=41 second=1240 amount=-2 -kerning first=1048 second=97 amount=-1 -kerning first=1044 second=335 amount=-1 -kerning first=299 second=219 amount=-2 -kerning first=61 second=1069 amount=-1 -kerning first=1084 second=34 amount=-3 -kerning first=1080 second=259 amount=-1 -kerning first=207 second=231 amount=-1 -kerning first=8363 second=8216 amount=-3 -kerning first=327 second=121 amount=-1 -kerning first=87 second=243 amount=-3 -kerning first=227 second=373 amount=-1 -kerning first=1202 second=336 amount=-1 -kerning first=967 second=350 amount=-1 -kerning first=276 second=232 amount=-1 -kerning first=1046 second=966 amount=-2 -kerning first=1049 second=275 amount=-1 -kerning first=188 second=244 amount=-1 -kerning first=300 second=374 amount=-5 -kerning first=68 second=256 amount=-2 -kerning first=906 second=221 amount=-5 -kerning first=1118 second=351 amount=-1 -kerning first=1169 second=111 amount=-1 -kerning first=354 second=233 amount=-3 -kerning first=942 second=1177 amount=-1 -kerning first=254 second=245 amount=-1 -kerning first=374 second=375 amount=-2 -kerning first=971 second=290 amount=-2 -kerning first=164 second=949 amount=-1 -kerning first=167 second=257 amount=-1 -kerning first=8221 second=100 amount=-1 -kerning first=49 second=271 amount=-1 -kerning first=1087 second=364 amount=-2 -kerning first=209 second=1090 amount=-3 -kerning first=908 second=376 amount=-3 -kerning first=89 second=1107 amount=-3 -kerning first=92 second=346 amount=-1 -kerning first=1119 second=1035 amount=-5 -kerning first=1170 second=291 amount=-1 -kerning first=946 second=1059 amount=-2 -kerning first=112 second=964 amount=-1 -kerning first=118 second=45 amount=-1 -kerning first=372 second=8249 amount=-2 -kerning first=1026 second=235 amount=-1 -kerning first=53 second=219 amount=-2 -kerning first=190 second=1108 amount=-1 -kerning first=193 second=347 amount=-1 -kerning first=314 second=34 amount=-3 -kerning first=310 second=259 amount=-1 -kerning first=73 second=361 amount=-1 -kerning first=1084 second=8216 amount=-3 -kerning first=76 second=121 amount=-1 -kerning first=219 second=46 amount=-1 -kerning first=905 second=8250 amount=-1 -kerning first=923 second=86 amount=-6 -kerning first=93 second=1028 amount=-2 -kerning first=96 second=288 amount=-2 -kerning first=910 second=1075 amount=-3 -kerning first=954 second=248 amount=-2 -kerning first=1263 second=171 amount=-3 -kerning first=34 second=232 amount=-1 -kerning first=169 second=1176 amount=-1 -kerning first=172 second=362 amount=-2 -kerning first=282 second=966 amount=-1 -kerning first=287 second=275 amount=-1 -kerning first=54 second=374 amount=-5 -kerning first=1071 second=87 amount=-5 -kerning first=197 second=289 amount=-1 -kerning first=80 second=71 amount=-2 -kerning first=1097 second=940 amount=-1 -kerning first=338 second=351 amount=-1 -kerning first=341 second=111 amount=-1 -kerning first=926 second=261 amount=-1 -kerning first=916 second=953 amount=-1 -kerning first=100 second=233 amount=-1 -kerning first=237 second=1177 amount=-1 -kerning first=240 second=363 amount=-1 -kerning first=1257 second=1078 amount=-2 -kerning first=1035 second=338 amount=-2 -kerning first=170 second=8211 amount=-2 -kerning first=61 second=84 amount=-5 -kerning first=1073 second=262 amount=-2 -kerning first=201 second=234 amount=-1 -kerning first=316 second=364 amount=-2 -kerning first=936 second=211 amount=-2 -kerning first=1178 second=1098 amount=-2 -kerning first=238 second=8212 amount=-2 -kerning first=1185 second=339 amount=-2 -kerning first=964 second=113 amount=-1 -kerning first=118 second=8249 amount=-1 -kerning first=160 second=85 amount=-2 -kerning first=39 second=335 amount=-1 -kerning first=42 second=97 amount=-1 -kerning first=62 second=259 amount=-1 -kerning first=65 second=34 amount=-3 -kerning first=314 second=8216 amount=-3 -kerning first=8364 second=943 amount=-1 -kerning first=8369 second=252 amount=-1 -kerning first=900 second=224 amount=-1 -kerning first=85 second=196 amount=-2 -kerning first=931 second=1184 amount=-5 -kerning first=105 second=336 amount=-2 -kerning first=371 second=171 amount=-3 -kerning first=40 second=966 amount=-1 -kerning first=43 second=275 amount=-1 -kerning first=301 second=87 amount=-5 -kerning first=206 second=337 amount=-1 -kerning first=209 second=99 amount=-1 -kerning first=323 second=940 amount=-1 -kerning first=86 second=351 amount=-1 -kerning first=89 second=111 amount=-4 -kerning first=165 second=210 amount=-2 -kerning first=278 second=100 amount=-1 -kerning first=8218 second=53 amount=-1 -kerning first=187 second=352 amount=-1 -kerning first=302 second=262 amount=-2 -kerning first=207 second=968 amount=-1 -kerning first=8378 second=357 amount=-1 -kerning first=902 second=1079 amount=-1 -kerning first=356 second=101 amount=-3 -kerning first=948 second=251 amount=-1 -kerning first=256 second=113 amount=-1 -kerning first=253 second=353 amount=-1 -kerning first=373 second=955 amount=-4 -kerning first=376 second=263 amount=-4 -kerning first=166 second=365 amount=-1 -kerning first=8220 second=228 amount=-1 -kerning first=306 second=212 amount=-2 -kerning first=65 second=8216 amount=-3 -kerning first=1085 second=943 amount=-1 -kerning first=214 second=224 amount=-1 -kerning first=332 second=354 amount=-2 -kerning first=916 second=39 amount=-3 -kerning first=357 second=279 amount=-1 -kerning first=117 second=171 amount=-3 -kerning first=260 second=63 amount=-5 -kerning first=164 second=8217 amount=-3 -kerning first=8217 second=1257 amount=-1 -kerning first=55 second=87 amount=-5 -kerning first=304 second=1185 amount=-3 -kerning first=72 second=940 amount=-1 -kerning first=75 second=249 amount=-1 -kerning first=1170 second=1101 amount=-1 -kerning first=232 second=8218 amount=-1 -kerning first=361 second=226 amount=-1 -kerning first=956 second=116 amount=-1 -kerning first=115 second=1078 amount=-1 -kerning first=36 second=100 amount=-1 -kerning first=1026 second=972 amount=-1 -kerning first=175 second=250 amount=-1 -kerning first=56 second=262 amount=-2 -kerning first=196 second=1241 amount=-1 -kerning first=305 second=8220 amount=-3 -kerning first=1099 second=357 amount=-1 -kerning first=222 second=89 amount=-3 -kerning first=923 second=369 amount=-1 -kerning first=96 second=1098 amount=-3 -kerning first=1176 second=973 amount=-1 -kerning first=102 second=101 amount=-1 -kerning first=119 second=955 amount=-4 -kerning first=122 second=263 amount=-1 -kerning first=1037 second=228 amount=-1 -kerning first=60 second=212 amount=-2 -kerning first=1071 second=370 amount=-2 -kerning first=318 second=252 amount=-1 -kerning first=77 second=1118 amount=-1 -kerning first=80 second=354 amount=-5 -kerning first=223 second=266 amount=-2 -kerning first=226 second=39 amount=-1 -kerning first=100 second=970 amount=-1 -kerning first=103 second=279 amount=-1 -kerning first=960 second=920 amount=-2 -kerning first=126 second=213 amount=-2 -kerning first=1298 second=1195 amount=-1 -kerning first=271 second=103 amount=-1 -kerning first=41 second=225 amount=-1 -kerning first=1035 second=1257 amount=-1 -kerning first=180 second=355 amount=-1 -kerning first=184 second=115 amount=-1 -kerning first=296 second=267 amount=-1 -kerning first=58 second=1185 amount=-3 -kerning first=61 second=367 amount=-1 -kerning first=8366 second=360 amount=-2 -kerning first=936 second=945 amount=-1 -kerning first=107 second=226 amount=-1 -kerning first=247 second=356 amount=-5 -kerning first=250 second=116 amount=-1 -kerning first=160 second=368 amount=-2 -kerning first=273 second=281 amount=-1 -kerning first=59 second=8220 amount=-3 -kerning first=325 second=357 amount=-1 -kerning first=903 second=269 amount=-1 -kerning first=374 second=216 amount=-3 -kerning first=161 second=1066 amount=-5 -kerning first=125 second=8221 amount=-3 -kerning first=971 second=106 amount=1 -kerning first=189 second=240 amount=-1 -kerning first=298 second=1194 amount=-2 -kerning first=301 second=370 amount=-2 -kerning first=69 second=252 amount=-1 -kerning first=206 second=1256 amount=-2 -kerning first=946 second=359 amount=-1 -kerning first=950 second=119 amount=-4 -kerning first=1206 second=963 amount=-1 -kerning first=1219 second=271 amount=-1 -kerning first=252 second=920 amount=-2 -kerning first=375 second=371 amount=-1 -kerning first=372 second=1195 amount=-3 -kerning first=168 second=253 amount=-1 -kerning first=8218 second=334 amount=-1 -kerning first=50 second=267 amount=-1 -kerning first=1064 second=218 amount=-2 -kerning first=905 second=947 amount=-4 -kerning first=1171 second=287 amount=-1 -kerning first=356 second=1240 amount=-1 -kerning first=376 second=1069 amount=-2 -kerning first=1027 second=231 amount=-1 -kerning first=1065 second=373 amount=-2 -kerning first=77 second=117 amount=-1 -kerning first=74 second=357 amount=-1 -kerning first=94 second=973 amount=-1 -kerning first=955 second=244 amount=-1 -kerning first=35 second=228 amount=-1 -kerning first=177 second=118 amount=-4 -kerning first=8240 second=221 amount=-5 -kerning first=52 second=1194 amount=-2 -kerning first=55 second=370 amount=-2 -kerning first=1066 second=1071 amount=-1 -kerning first=1073 second=83 amount=-1 -kerning first=198 second=283 amount=-1 -kerning first=928 second=257 amount=-1 -kerning first=244 second=119 amount=-1 -kerning first=361 second=963 amount=-1 -kerning first=118 second=1195 amount=-1 -kerning first=121 second=371 amount=-1 -kerning first=1033 second=1090 amount=-2 -kerning first=1036 second=334 amount=-3 -kerning first=294 second=218 amount=-2 -kerning first=8249 second=376 amount=-2 -kerning first=202 second=230 amount=-1 -kerning first=317 second=360 amount=-2 -kerning first=8361 second=1059 amount=-2 -kerning first=900 second=45 amount=-2 -kerning first=79 second=923 amount=-2 -kerning first=222 second=372 amount=-2 -kerning first=343 second=287 amount=-1 -kerning first=1186 second=335 amount=-1 -kerning first=958 second=1108 amount=-1 -kerning first=962 second=347 amount=-1 -kerning first=161 second=81 amount=-2 -kerning first=1037 second=965 amount=-1 -kerning first=183 second=243 amount=-1 -kerning first=295 second=373 amount=-1 -kerning first=200 second=1263 amount=-1 -kerning first=8370 second=248 amount=-1 -kerning first=901 second=220 amount=-2 -kerning first=934 second=1176 amount=-1 -kerning first=947 second=275 amount=-1 -kerning first=1187 second=966 amount=-1 -kerning first=249 second=244 amount=-1 -kerning first=369 second=374 amount=-5 -kerning first=268 second=1298 amount=-1 -kerning first=41 second=962 amount=-1 -kerning first=1048 second=221 amount=-5 -kerning first=187 second=193 amount=-3 -kerning first=302 second=83 amount=-1 -kerning first=1080 second=363 amount=-1 -kerning first=207 second=333 amount=-1 -kerning first=327 second=245 amount=-1 -kerning first=902 second=375 amount=-1 -kerning first=87 second=345 amount=-2 -kerning first=1117 second=290 amount=-2 -kerning first=936 second=8211 amount=-2 -kerning first=107 second=963 amount=-2 -kerning first=113 second=44 amount=2 -kerning first=273 second=1090 amount=-3 -kerning first=276 second=334 amount=-2 -kerning first=48 second=218 amount=-2 -kerning first=8216 second=277 amount=-1 -kerning first=1049 second=376 amount=-5 -kerning first=188 second=346 amount=-1 -kerning first=1081 second=1059 amount=-2 -kerning first=1078 second=8212 amount=-3 -kerning first=214 second=45 amount=-2 -kerning first=900 second=8249 amount=-3 -kerning first=91 second=287 amount=-1 -kerning first=1169 second=235 amount=-1 -kerning first=354 second=335 amount=-3 -kerning first=357 second=97 amount=-1 -kerning first=251 second=1108 amount=-1 -kerning first=254 second=347 amount=-1 -kerning first=374 second=951 amount=-3 -kerning first=167 second=361 amount=-1 -kerning first=170 second=121 amount=-1 -kerning first=283 second=46 amount=-1 -kerning first=8221 second=224 amount=-1 -kerning first=49 second=373 amount=-4 -kerning first=189 second=1028 amount=-2 -kerning first=192 second=288 amount=-2 -kerning first=1095 second=248 amount=-1 -kerning first=215 second=220 amount=-2 -kerning first=95 second=232 amount=-1 -kerning first=358 second=275 amount=-1 -kerning first=112 second=1203 amount=-2 -kerning first=258 second=289 amount=-1 -kerning first=1026 second=337 amount=-1 -kerning first=175 second=71 amount=-2 -kerning first=286 second=221 amount=-2 -kerning first=47 second=8230 amount=-4 -kerning first=56 second=83 amount=-1 -kerning first=1064 second=953 amount=-1 -kerning first=1067 second=261 amount=-1 -kerning first=196 second=233 amount=-1 -kerning first=305 second=1177 amount=-1 -kerning first=310 second=363 amount=-1 -kerning first=76 second=245 amount=-1 -kerning first=923 second=210 amount=-2 -kerning first=1176 second=338 amount=-2 -kerning first=1179 second=100 amount=-1 -kerning first=1263 second=262 amount=-2 -kerning first=1027 second=968 amount=-1 -kerning first=176 second=246 amount=-1 -kerning first=287 second=376 amount=-5 -kerning first=8224 second=1079 amount=-1 -kerning first=8250 second=89 amount=-3 -kerning first=1071 second=211 amount=-2 -kerning first=306 second=8212 amount=-2 -kerning first=1103 second=113 amount=-1 -kerning first=214 second=8249 amount=-3 -kerning first=223 second=85 amount=-2 -kerning first=341 second=235 amount=-1 -kerning first=926 second=365 amount=-1 -kerning first=100 second=335 amount=-1 -kerning first=103 second=97 amount=-1 -kerning first=123 second=259 amount=-1 -kerning first=126 second=34 amount=-3 -kerning first=35 second=965 amount=-1 -kerning first=8260 second=266 amount=-2 -kerning first=1069 second=1184 amount=-2 -kerning first=1073 second=366 amount=-2 -kerning first=201 second=336 amount=-2 -kerning first=321 second=248 amount=-1 -kerning first=84 second=110 amount=-2 -kerning first=221 second=952 amount=-2 -kerning first=1299 second=1185 amount=-3 -kerning first=273 second=99 amount=-1 -kerning first=42 second=221 amount=-5 -kerning first=185 second=111 amount=-1 -kerning first=182 second=351 amount=-1 -kerning first=297 second=261 amount=-1 -kerning first=294 second=953 amount=-1 -kerning first=62 second=363 amount=-1 -kerning first=59 second=1177 amount=-1 -kerning first=1070 second=8218 amount=-1 -kerning first=8369 second=356 amount=-5 -kerning first=942 second=250 amount=-1 -kerning first=371 second=262 amount=-2 -kerning first=965 second=1241 amount=-1 -kerning first=968 second=187 amount=-1 -kerning first=161 second=364 amount=-2 -kerning first=274 second=277 amount=-1 -kerning first=43 second=376 amount=-5 -kerning first=1041 second=1079 amount=-1 -kerning first=183 second=1035 amount=-5 -kerning first=186 second=291 amount=-1 -kerning first=1051 second=89 amount=-5 -kerning first=301 second=211 amount=-2 -kerning first=60 second=8212 amount=-2 -kerning first=63 second=1059 amount=-2 -kerning first=1083 second=251 amount=-1 -kerning first=330 second=113 amount=-1 -kerning first=904 second=263 amount=-1 -kerning first=89 second=235 amount=-4 -kerning first=375 second=212 amount=-2 -kerning first=972 second=102 amount=-1 -kerning first=126 second=8216 amount=-3 -kerning first=278 second=224 amount=-1 -kerning first=8212 second=382 amount=-2 -kerning first=41 second=8250 amount=-1 -kerning first=1064 second=39 amount=-3 -kerning first=299 second=1184 amount=-5 -kerning first=302 second=366 amount=-2 -kerning first=70 second=248 amount=-1 -kerning first=8378 second=920 amount=-2 -kerning first=910 second=213 amount=-3 -kerning first=1171 second=103 amount=-1 -kerning first=227 second=8217 amount=-1 -kerning first=356 second=225 amount=-2 -kerning first=948 second=355 amount=-1 -kerning first=951 second=115 amount=-1 -kerning first=113 second=324 amount=2 -kerning first=1220 second=267 amount=-1 -kerning first=376 second=367 amount=-2 -kerning first=169 second=249 amount=-1 -kerning first=166 second=940 amount=-1 -kerning first=48 second=953 amount=-1 -kerning first=51 second=261 amount=-1 -kerning first=1065 second=214 amount=-1 -kerning first=74 second=198 amount=-1 -kerning first=94 second=338 amount=-2 -kerning first=1174 second=281 amount=-1 -kerning first=1169 second=972 amount=-1 -kerning first=237 second=250 amount=-1 -kerning first=117 second=262 amount=-2 -kerning first=260 second=187 amount=-1 -kerning first=174 second=199 amount=-2 -kerning first=280 second=1079 amount=-1 -kerning first=288 second=89 amount=-2 -kerning first=8225 second=269 amount=-1 -kerning first=55 second=211 amount=-2 -kerning first=195 second=339 amount=-1 -kerning first=198 second=101 amount=-1 -kerning first=192 second=1098 amount=-3 -kerning first=313 second=251 amount=-1 -kerning first=78 second=113 amount=-1 -kerning first=221 second=38 amount=-2 -kerning first=912 second=1066 amount=-5 -kerning first=956 second=240 amount=-1 -kerning first=121 second=212 amount=-2 -kerning first=1224 second=1194 amount=-2 -kerning first=36 second=224 amount=-1 -kerning first=1026 second=1256 amount=-2 -kerning first=175 second=354 amount=-5 -kerning first=289 second=266 amount=-2 -kerning first=294 second=39 amount=-3 -kerning first=53 second=1184 amount=-5 -kerning first=56 second=366 amount=-2 -kerning first=1074 second=79 amount=-2 -kerning first=196 second=970 amount=-1 -kerning first=8361 second=359 amount=-1 -kerning first=8364 second=119 amount=-4 -kerning first=1099 second=920 amount=-2 -kerning first=343 second=103 amount=-1 -kerning first=931 second=253 amount=-1 -kerning first=1176 second=1257 amount=-1 -kerning first=102 second=225 amount=-1 -kerning first=365 second=267 amount=-1 -kerning first=176 second=1038 amount=-2 -kerning first=8230 second=947 amount=-2 -kerning first=8250 second=372 amount=-3 -kerning first=54 second=8218 amount=-1 -kerning first=1071 second=945 amount=-1 -kerning first=203 second=226 amount=-1 -kerning first=318 second=356 amount=-5 -kerning first=323 second=116 amount=-1 -kerning first=223 second=368 amount=-2 -kerning first=341 second=972 amount=-1 -kerning first=271 second=227 amount=-1 -kerning first=38 second=1079 amount=-1 -kerning first=1044 second=269 amount=-1 -kerning first=44 second=89 amount=-4 -kerning first=296 second=369 amount=-1 -kerning first=64 second=251 amount=-1 -kerning first=8372 second=244 amount=-1 -kerning first=902 second=216 amount=-2 -kerning first=1117 second=106 amount=1 -kerning first=944 second=118 amount=-4 -kerning first=250 second=240 amount=-1 -kerning first=367 second=1194 amount=-2 -kerning first=967 second=283 amount=-1 -kerning first=160 second=943 amount=-1 -kerning first=163 second=252 amount=-1 -kerning first=48 second=39 amount=-3 -kerning first=1049 second=217 amount=-2 -kerning first=303 second=79 amount=-2 -kerning first=1081 second=359 amount=-1 -kerning first=1085 second=119 amount=-4 -kerning first=325 second=920 amount=-2 -kerning first=900 second=1195 amount=-1 -kerning first=903 second=371 amount=-1 -kerning first=91 second=103 amount=-1 -kerning first=1118 second=286 amount=-2 -kerning first=1210 second=218 amount=-2 -kerning first=971 second=230 amount=-1 -kerning first=8217 second=273 amount=-1 -kerning first=49 second=214 amount=-2 -kerning first=1051 second=372 amount=-5 -kerning first=186 second=1101 amount=-1 -kerning first=301 second=945 amount=-1 -kerning first=69 second=356 amount=-5 -kerning first=72 second=116 amount=-1 -kerning first=8377 second=1108 amount=-1 -kerning first=904 second=1069 amount=-1 -kerning first=912 second=81 amount=-2 -kerning first=92 second=281 amount=-1 -kerning first=89 second=972 amount=-4 -kerning first=1170 second=231 amount=-1 -kerning first=950 second=243 amount=-1 -kerning first=1219 second=373 amount=-4 -kerning first=168 second=357 amount=-1 -kerning first=8222 second=220 amount=-1 -kerning first=47 second=1187 amount=-1 -kerning first=50 second=369 amount=-1 -kerning first=190 second=973 amount=-1 -kerning first=1096 second=244 amount=-1 -kerning first=96 second=228 amount=-1 -kerning first=239 second=118 amount=-4 -kerning first=356 second=962 amount=-3 -kerning first=113 second=1194 amount=-2 -kerning first=1263 second=83 amount=-1 -kerning first=1027 second=333 amount=-1 -kerning first=176 second=67 amount=-2 -kerning first=287 second=217 amount=-2 -kerning first=8224 second=375 amount=-1 -kerning first=48 second=8222 amount=-1 -kerning first=57 second=79 amount=-2 -kerning first=1065 second=949 amount=-1 -kerning first=197 second=229 amount=-1 -kerning first=315 second=119 amount=-3 -kerning first=74 second=920 amount=-2 -kerning first=214 second=1195 amount=-1 -kerning first=338 second=286 amount=-2 -kerning first=94 second=1257 amount=-1 -kerning first=1174 second=1090 amount=-2 -kerning first=363 second=218 amount=-2 -kerning first=955 second=346 amount=-1 -kerning first=1035 second=273 amount=-1 -kerning first=177 second=242 amount=-1 -kerning first=288 second=372 amount=-1 -kerning first=283 second=947 amount=-1 -kerning first=8260 second=85 amount=-2 -kerning first=55 second=945 amount=-1 -kerning first=198 second=1240 amount=-2 -kerning first=195 second=1262 amount=-2 -kerning first=928 second=361 amount=-1 -kerning first=936 second=121 amount=-1 -kerning first=1194 second=46 amount=-1 -kerning first=956 second=1028 amount=-2 -kerning first=39 second=269 amount=-1 -kerning first=1039 second=220 amount=-2 -kerning first=1074 second=362 amount=-2 -kerning first=202 second=332 amount=-2 -kerning first=322 second=244 amount=-1 -kerning first=942 second=71 amount=-2 -kerning first=102 second=962 amount=-1 -kerning first=362 second=8230 amount=-1 -kerning first=371 second=83 amount=-1 -kerning first=965 second=233 amount=-1 -kerning first=43 second=217 amount=-2 -kerning first=1041 second=375 amount=-1 -kerning first=298 second=257 amount=-1 -kerning first=63 second=359 amount=-1 -kerning first=1071 second=8211 amount=-2 -kerning first=203 second=963 amount=-1 -kerning first=206 second=271 amount=-1 -kerning first=8370 second=352 amount=-1 -kerning first=904 second=84 amount=-5 -kerning first=86 second=286 amount=-2 -kerning first=83 second=1026 amount=-1 -kerning first=1116 second=234 amount=-2 -kerning first=249 second=346 amount=-1 -kerning first=372 second=258 amount=-5 -kerning first=162 second=360 amount=-2 -kerning first=271 second=964 amount=-3 -kerning first=278 second=45 amount=-2 -kerning first=41 second=947 amount=-4 -kerning first=44 second=372 amount=-3 -kerning first=327 second=347 amount=-1 -kerning first=905 second=259 amount=-1 -kerning first=90 second=231 amount=-1 -kerning first=356 second=46 amount=-3 -kerning first=110 second=373 amount=-1 -kerning first=250 second=1028 amount=-2 -kerning first=253 second=288 amount=-2 -kerning first=191 second=232 amount=-1 -kerning first=303 second=362 amount=-2 -kerning first=300 second=1176 amount=-1 -kerning first=211 second=374 amount=-3 -kerning first=1169 second=337 amount=-1 -kerning first=1174 second=99 amount=-1 -kerning first=237 second=71 amount=-2 -kerning first=357 second=221 amount=-5 -kerning first=952 second=111 amount=-1 -kerning first=117 second=83 amount=-1 -kerning first=1210 second=953 amount=-1 -kerning first=1223 second=261 amount=-1 -kerning first=374 second=1177 amount=-4 -kerning first=170 second=245 amount=-1 -kerning first=280 second=375 amount=-1 -kerning first=49 second=949 amount=-1 -kerning first=52 second=257 amount=-1 -kerning first=301 second=8211 amount=-2 -kerning first=1095 second=352 amount=-1 -kerning first=912 second=364 amount=-2 -kerning first=92 second=1090 amount=-3 -kerning first=95 second=334 amount=-2 -kerning first=1170 second=968 amount=-1 -kerning first=1175 second=277 amount=-1 -kerning first=238 second=246 amount=-1 -kerning first=358 second=376 amount=-5 -kerning first=950 second=1035 amount=-5 -kerning first=375 second=8212 amount=-2 -kerning first=36 second=45 amount=-2 -kerning first=278 second=8249 amount=-3 -kerning first=289 second=85 amount=-2 -kerning first=8226 second=263 amount=-1 -kerning first=1067 second=365 amount=-1 -kerning first=196 second=335 amount=-1 -kerning first=73 second=1108 amount=-1 -kerning first=96 second=965 amount=-1 -kerning first=102 second=46 amount=-2 -kerning first=356 second=8250 amount=-1 -kerning first=1256 second=1184 amount=-2 -kerning first=1263 second=366 amount=-2 -kerning first=37 second=220 amount=-2 -kerning first=1037 second=171 amount=-3 -kerning first=176 second=350 amount=-1 -kerning first=54 second=1176 amount=-1 -kerning first=57 second=362 amount=-2 -kerning first=1068 second=1063 amount=-1 -kerning first=1065 second=8217 amount=-2 -kerning first=197 second=966 amount=-1 -kerning first=200 second=275 amount=-1 -kerning first=8365 second=115 amount=-1 -kerning first=80 second=289 amount=-1 -kerning first=341 second=337 amount=-1 -kerning first=934 second=249 amount=-1 -kerning first=926 second=940 amount=-1 -kerning first=103 second=221 amount=-5 -kerning first=363 second=953 amount=-1 -kerning first=123 second=363 amount=-1 -kerning first=1257 second=8218 amount=-1 -kerning first=38 second=375 amount=-1 -kerning first=180 second=290 amount=-2 -kerning first=296 second=210 amount=-2 -kerning first=8260 second=368 amount=-2 -kerning first=55 second=8211 amount=-4 -kerning first=1073 second=941 amount=-1 -kerning first=321 second=352 amount=-1 -kerning first=84 second=234 amount=-3 -kerning first=345 second=277 amount=-1 -kerning first=1202 second=89 amount=-2 -kerning first=247 second=291 amount=-1 -kerning first=961 second=1098 amount=-1 -kerning first=964 second=339 amount=-1 -kerning first=967 second=101 amount=-1 -kerning first=124 second=1059 amount=-2 -kerning first=121 second=8212 amount=-2 -kerning first=36 second=8249 amount=-3 -kerning first=1046 second=263 amount=-2 -kerning first=185 second=235 amount=-1 -kerning first=297 second=365 amount=-1 -kerning first=903 second=212 amount=-2 -kerning first=942 second=354 amount=-5 -kerning first=1210 second=39 amount=-3 -kerning first=371 second=366 amount=-2 -kerning first=968 second=279 amount=-1 -kerning first=164 second=248 amount=-1 -kerning first=965 second=970 amount=-1 -kerning first=1051 second=213 amount=-2 -kerning first=295 second=8217 amount=-1 -kerning first=1087 second=115 amount=-1 -kerning first=1083 second=355 amount=-1 -kerning first=212 second=87 amount=-2 -kerning first=904 second=367 amount=-1 -kerning first=901 second=1185 amount=-3 -kerning first=86 second=1096 amount=-2 -kerning first=92 second=99 amount=-1 -kerning first=89 second=337 amount=-4 -kerning first=1219 second=214 amount=-2 -kerning first=275 second=1078 amount=-2 -kerning first=8218 second=268 amount=-1 -kerning first=50 second=210 amount=-2 -kerning first=190 second=338 amount=-2 -kerning first=193 second=100 amount=-1 -kerning first=305 second=250 amount=-1 -kerning first=302 second=941 amount=-1 -kerning first=70 second=352 amount=-1 -kerning first=902 second=8220 amount=-3 -kerning first=93 second=277 amount=-1 -kerning first=1171 second=227 amount=-1 -kerning first=236 second=199 amount=-2 -kerning first=356 second=326 amount=-2 -kerning first=1220 second=369 amount=-1 -kerning first=253 second=1098 amount=-3 -kerning first=256 second=339 amount=-1 -kerning first=376 second=942 amount=-3 -kerning first=172 second=113 amount=-1 -kerning first=169 second=353 amount=-1 -kerning first=279 second=955 amount=-1 -kerning first=282 second=263 amount=-1 -kerning first=8224 second=216 amount=-2 -kerning first=51 second=365 amount=-1 -kerning first=1049 second=8221 amount=-3 -kerning first=1062 second=1066 amount=-2 -kerning first=1097 second=240 amount=-1 -kerning first=916 second=252 amount=-1 -kerning first=237 second=354 amount=-5 -kerning first=363 second=39 amount=-3 -kerning first=117 second=366 amount=-2 -kerning first=1298 second=79 amount=-2 -kerning first=260 second=279 amount=-1 -kerning first=35 second=171 amount=-3 -kerning first=8221 second=1195 amount=-1 -kerning first=8225 second=371 amount=-1 -kerning first=49 second=8217 amount=-3 -kerning first=198 second=225 amount=-1 -kerning first=316 second=115 amount=-1 -kerning first=313 second=355 amount=-1 -kerning first=215 second=1185 amount=-3 -kerning first=238 second=1038 amount=-2 -kerning first=1240 second=356 amount=-2 -kerning first=1036 second=268 amount=-3 -kerning first=289 second=368 amount=-2 -kerning first=8226 second=1069 amount=-1 -kerning first=59 second=250 amount=-1 -kerning first=56 second=941 amount=-1 -kerning first=8364 second=243 amount=-1 -kerning first=343 second=227 amount=-1 -kerning first=931 second=357 amount=-1 -kerning first=105 second=89 amount=-5 -kerning first=1186 second=269 amount=-1 -kerning first=365 second=369 amount=-1 -kerning first=958 second=973 amount=-1 -kerning first=125 second=251 amount=-1 -kerning first=40 second=263 amount=-1 -kerning first=1041 second=216 amount=-2 -kerning first=287 second=8221 amount=-3 -kerning first=290 second=1066 amount=-1 -kerning first=323 second=240 amount=-1 -kerning first=86 second=102 amount=-1 -kerning first=223 second=943 amount=-1 -kerning first=934 second=1044 amount=-3 -kerning first=109 second=39 amount=-1 -kerning first=372 second=79 amount=-2 -kerning first=8212 second=44 amount=-1 -kerning first=44 second=213 amount=-1 -kerning first=299 second=253 amount=-1 -kerning first=64 second=355 amount=-1 -kerning first=207 second=267 amount=-1 -kerning first=8372 second=346 amount=-1 -kerning first=1117 second=230 amount=-1 -kerning first=944 second=242 amount=-1 -kerning first=247 second=1101 amount=-1 -kerning first=967 second=1240 amount=-2 -kerning first=964 second=1262 amount=-2 -kerning first=163 second=356 amount=-5 -kerning first=166 second=116 amount=-1 -kerning first=276 second=268 amount=-2 -kerning first=1046 second=1069 amount=-2 -kerning first=185 second=972 amount=-1 -kerning first=188 second=281 amount=-1 -kerning first=1062 second=81 amount=-1 -kerning first=1085 second=243 amount=-1 -kerning first=91 second=227 amount=-1 -kerning first=354 second=269 amount=-3 -kerning first=251 second=973 amount=-1 -kerning first=971 second=332 amount=-2 -kerning first=280 second=216 amount=-2 -kerning first=8211 second=1203 amount=-2 -kerning first=43 second=8221 amount=-3 -kerning first=46 second=1066 amount=-5 -kerning first=192 second=228 amount=-1 -kerning first=72 second=240 amount=-1 -kerning first=209 second=1194 amount=-2 -kerning first=89 second=1256 amount=-3 -kerning first=1170 second=333 amount=-1 -kerning first=238 second=67 amount=-2 -kerning first=358 second=217 amount=-2 -kerning first=950 second=345 amount=-2 -kerning first=1219 second=949 amount=-1 -kerning first=1224 second=257 amount=-1 -kerning first=258 second=229 amount=-1 -kerning first=1026 second=271 amount=-1 -kerning first=168 second=920 amount=-2 -kerning first=278 second=1195 amount=-1 -kerning first=8226 second=84 amount=-5 -kerning first=53 second=253 amount=-1 -kerning first=190 second=1257 amount=-1 -kerning first=1096 second=346 amount=-1 -kerning first=915 second=360 amount=-2 -kerning first=1176 second=273 amount=-1 -kerning first=1171 second=964 amount=-3 -kerning first=239 second=242 amount=-1 -kerning first=356 second=947 amount=-2 -kerning first=954 second=287 amount=-2 -kerning first=256 second=1262 amount=-2 -kerning first=282 second=1069 amount=-1 -kerning first=1071 second=121 amount=-1 -kerning first=315 second=243 amount=-1 -kerning first=100 second=269 amount=-1 -kerning first=960 second=232 amount=-1 -kerning first=1298 second=362 amount=-2 -kerning first=38 second=216 amount=-2 -kerning first=1035 second=374 amount=-5 -kerning first=180 second=106 amount=1 -kerning first=61 second=118 amount=-4 -kerning first=198 second=962 amount=-1 -kerning first=8366 second=111 amount=-1 -kerning first=8363 second=351 amount=-1 -kerning first=936 second=245 amount=-1 -kerning first=367 second=257 amount=-1 -kerning first=124 second=359 amount=-1 -kerning first=160 second=119 amount=-4 -kerning first=36 second=1195 amount=-1 -kerning first=178 second=1026 amount=-5 -kerning first=182 second=286 amount=-2 -kerning first=1078 second=246 amount=-2 -kerning first=205 second=218 amount=-2 -kerning first=322 second=346 amount=-1 -kerning first=8364 second=1035 amount=-5 -kerning first=8369 second=291 amount=-1 -kerning first=222 second=1174 amount=-3 -kerning first=105 second=372 amount=-5 -kerning first=965 second=335 amount=-1 -kerning first=968 second=97 amount=-1 -kerning first=274 second=219 amount=-2 -kerning first=40 second=1069 amount=-1 -kerning first=46 second=81 amount=-1 -kerning first=1051 second=34 amount=-3 -kerning first=186 second=231 amount=-1 -kerning first=298 second=361 amount=-1 -kerning first=301 second=121 amount=-1 -kerning first=206 second=373 amount=-4 -kerning first=323 second=1028 amount=-2 -kerning first=252 second=232 amount=-1 -kerning first=369 second=1176 amount=-1 -kerning first=972 second=47 amount=-1 -kerning first=165 second=244 amount=-1 -kerning first=8218 second=87 amount=-3 -kerning first=47 second=256 amount=-5 -kerning first=305 second=71 amount=-2 -kerning first=70 second=193 amount=-4 -kerning first=1084 second=351 amount=-1 -kerning first=1090 second=111 amount=-1 -kerning first=902 second=1177 amount=-1 -kerning first=905 second=363 amount=-1 -kerning first=87 second=1087 amount=-2 -kerning first=90 second=333 amount=-1 -kerning first=948 second=290 amount=-2 -kerning first=113 second=257 amount=-1 -kerning first=1220 second=210 amount=-2 -kerning first=282 second=84 amount=-5 -kerning first=1062 second=364 amount=-1 -kerning first=188 second=1090 amount=-3 -kerning first=191 second=334 amount=-2 -kerning first=306 second=246 amount=-1 -kerning first=1085 second=1035 amount=-5 -kerning first=903 second=8212 amount=-2 -kerning first=906 second=1059 amount=-2 -kerning first=94 second=273 amount=-1 -kerning first=91 second=964 amount=-3 -kerning first=354 second=1074 amount=-2 -kerning first=952 second=235 amount=-1 -kerning first=1223 second=365 amount=-1 -kerning first=260 second=97 amount=-1 -kerning first=167 second=1108 amount=-1 -kerning first=170 second=347 amount=-1 -kerning first=8225 second=212 amount=-2 -kerning first=52 second=361 amount=-1 -kerning first=1051 second=8216 amount=-3 -kerning first=55 second=121 amount=-1 -kerning first=192 second=965 amount=-1 -kerning first=72 second=1028 amount=-2 -kerning first=75 second=288 amount=-3 -kerning first=1178 second=171 amount=-1 -kerning first=238 second=350 amount=-1 -kerning first=235 second=1113 amount=-1 -kerning first=1219 second=8217 amount=-3 -kerning first=258 second=966 amount=-1 -kerning first=266 second=47 amount=-1 -kerning first=1240 second=197 amount=-2 -kerning first=175 second=289 amount=-1 -kerning first=171 second=1033 amount=-1 -kerning first=8226 second=367 amount=-1 -kerning first=8222 second=1185 amount=-3 -kerning first=59 second=71 amount=-2 -kerning first=1067 second=940 amount=-1 -kerning first=199 second=221 amount=-2 -kerning first=314 second=351 amount=-1 -kerning first=317 second=111 amount=-1 -kerning first=337 second=967 amount=-2 -kerning first=365 second=210 amount=-2 -kerning first=958 second=338 amount=-2 -kerning first=962 second=100 amount=-1 -kerning first=1263 second=941 amount=-1 -kerning first=40 second=84 amount=-5 -kerning first=1037 second=262 amount=-2 -kerning first=179 second=234 amount=-1 -kerning first=8224 second=8220 amount=-3 -kerning first=60 second=246 amount=-1 -kerning first=200 second=376 amount=-5 -kerning first=318 second=291 amount=-1 -kerning first=315 second=1035 amount=-6 -kerning first=1103 second=339 amount=-1 -kerning first=934 second=353 amount=-1 -kerning first=1187 second=263 amount=-1 -kerning first=268 second=377 amount=-1 -kerning first=41 second=259 amount=-1 -kerning first=1044 second=212 amount=-1 -kerning first=44 second=34 amount=-1 -kerning first=8260 second=943 amount=-1 -kerning first=1073 second=1118 amount=-1 -kerning first=198 second=8250 amount=-1 -kerning first=84 second=336 amount=-1 -kerning first=1202 second=213 amount=-1 -kerning first=967 second=225 amount=-1 -kerning first=276 second=87 amount=-5 -kerning first=1039 second=1185 amount=-3 -kerning first=1046 second=367 amount=-1 -kerning first=185 second=337 amount=-1 -kerning first=188 second=99 amount=-1 -kerning first=297 second=940 amount=-1 -kerning first=300 second=249 amount=-1 -kerning first=65 second=351 amount=-1 -kerning first=205 second=953 amount=-1 -kerning first=8369 second=1101 amount=-1 -kerning first=1118 second=226 amount=-1 -kerning first=346 second=1078 amount=-1 -kerning first=251 second=338 amount=-2 -kerning first=254 second=100 amount=-1 -kerning first=371 second=941 amount=-1 -kerning first=374 second=250 amount=-2 -kerning first=164 second=352 amount=-1 -kerning first=1041 second=8220 amount=-3 -kerning first=46 second=364 amount=-1 -kerning first=186 second=968 amount=-1 -kerning first=189 second=277 amount=-1 -kerning first=304 second=199 amount=-2 -kerning first=69 second=291 amount=-1 -kerning first=66 second=1035 amount=-1 -kerning first=330 second=339 amount=-1 -kerning first=8377 second=973 amount=-1 -kerning first=326 second=1098 amount=-1 -kerning first=1206 second=1066 amount=-2 -kerning first=8218 second=370 amount=-1 -kerning first=44 second=8216 amount=-1 -kerning first=1064 second=252 amount=-1 -kerning first=193 second=224 amount=-1 -kerning first=302 second=1118 amount=-1 -kerning first=305 second=354 amount=-5 -kerning first=210 second=1184 amount=-2 -kerning first=96 second=171 amount=-3 -kerning first=954 second=103 amount=-2 -kerning first=110 second=8217 amount=-1 -kerning first=376 second=1119 amount=-3 -kerning first=1027 second=267 amount=-1 -kerning first=279 second=1185 amount=-1 -kerning first=282 second=367 amount=-1 -kerning first=54 second=249 amount=-1 -kerning first=51 second=940 amount=-1 -kerning first=306 second=1038 amount=-2 -kerning first=211 second=8218 amount=-1 -kerning first=916 second=356 amount=-5 -kerning first=338 second=226 amount=-1 -kerning first=926 second=116 amount=-1 -kerning first=955 second=281 amount=-1 -kerning first=952 second=972 amount=-1 -kerning first=117 second=941 amount=-1 -kerning first=35 second=262 amount=-2 -kerning first=174 second=1241 amount=-1 -kerning first=177 second=187 amount=-1 -kerning first=280 second=8220 amount=-3 -kerning first=58 second=199 amount=-2 -kerning first=1073 second=117 amount=-1 -kerning first=195 second=1079 amount=-1 -kerning first=201 second=89 amount=-5 -kerning first=78 second=339 amount=-1 -kerning first=75 second=1098 amount=-4 -kerning first=221 second=251 amount=-2 -kerning first=98 second=955 amount=-1 -kerning first=361 second=1066 amount=-5 -kerning first=358 second=8221 amount=-3 -kerning first=1240 second=916 amount=-2 -kerning first=289 second=943 amount=-1 -kerning first=294 second=252 amount=-1 -kerning first=59 second=354 amount=-5 -kerning first=56 second=1118 amount=-1 -kerning first=202 second=266 amount=-2 -kerning first=205 second=39 amount=-3 -kerning first=1070 second=1044 amount=-1 -kerning first=900 second=79 amount=-2 -kerning first=931 second=920 amount=-2 -kerning first=105 second=213 amount=-2 -kerning first=1179 second=1195 amount=-1 -kerning first=958 second=1257 amount=-1 -kerning first=125 second=355 amount=-1 -kerning first=161 second=115 amount=-1 -kerning first=40 second=367 amount=-1 -kerning first=37 second=1185 amount=-3 -kerning first=8250 second=1174 amount=-3 -kerning first=60 second=1038 amount=-2 -kerning first=206 second=214 amount=-2 -kerning first=318 second=1101 amount=-1 -kerning first=8370 second=287 amount=-1 -kerning first=86 second=226 amount=-3 -kerning first=1103 second=1262 amount=-2 -kerning first=1206 second=81 amount=-1 -kerning first=249 second=281 amount=-1 -kerning first=38 second=8220 amount=-3 -kerning first=302 second=117 amount=-1 -kerning first=299 second=357 amount=-1 -kerning first=207 second=369 amount=-1 -kerning first=8378 second=232 amount=-1 -kerning first=84 second=1224 amount=-2 -kerning first=1117 second=332 amount=-2 -kerning first=948 second=106 amount=1 -kerning first=104 second=8221 amount=-1 -kerning first=253 second=228 amount=-1 -kerning first=376 second=118 amount=-2 -kerning first=967 second=962 amount=-1 -kerning first=166 second=240 amount=-1 -kerning first=273 second=1194 amount=-2 -kerning first=276 second=370 amount=-2 -kerning first=48 second=252 amount=-1 -kerning first=185 second=1256 amount=-2 -kerning first=306 second=67 amount=-2 -kerning first=214 second=79 amount=-2 -kerning first=906 second=359 amount=-1 -kerning first=1118 second=963 amount=-1 -kerning first=1169 second=271 amount=-1 -kerning first=354 second=371 amount=-2 -kerning first=251 second=1257 amount=-1 -kerning first=8221 second=258 amount=-3 -kerning first=1063 second=360 amount=-2 -kerning first=69 second=1101 amount=-1 -kerning first=1095 second=287 amount=-1 -kerning first=330 second=1262 amount=-2 -kerning first=95 second=268 amount=-2 -kerning first=361 second=81 amount=-2 -kerning first=1224 second=361 amount=-1 -kerning first=381 second=243 amount=-1 -kerning first=1026 second=373 amount=-4 -kerning first=53 second=357 amount=-1 -kerning first=56 second=117 amount=-1 -kerning first=196 second=269 amount=-1 -kerning first=73 second=973 amount=-1 -kerning first=1099 second=232 amount=-1 -kerning first=923 second=244 amount=-1 -kerning first=1176 second=374 amount=-5 -kerning first=362 second=256 amount=-2 -kerning first=1037 second=83 amount=-1 -kerning first=176 second=283 amount=-1 -kerning first=8224 second=1177 amount=-1 -kerning first=8230 second=363 amount=-1 -kerning first=60 second=67 amount=-2 -kerning first=1071 second=245 amount=-1 -kerning first=200 second=217 amount=-2 -kerning first=80 second=229 amount=-1 -kerning first=223 second=119 amount=-4 -kerning first=338 second=963 amount=-1 -kerning first=341 second=271 amount=-1 -kerning first=100 second=371 amount=-1 -kerning first=240 second=1026 amount=-5 -kerning first=955 second=1090 amount=-3 -kerning first=960 second=334 amount=-2 -kerning first=1038 second=258 amount=-2 -kerning first=180 second=230 amount=-1 -kerning first=291 second=360 amount=-2 -kerning first=8240 second=1059 amount=-2 -kerning first=8225 second=8212 amount=-2 -kerning first=61 second=242 amount=-1 -kerning first=198 second=947 amount=-4 -kerning first=201 second=372 amount=-5 -kerning first=321 second=287 amount=-1 -kerning first=8366 second=235 amount=-1 -kerning first=78 second=1262 amount=-2 -kerning first=928 second=1108 amount=-1 -kerning first=936 second=347 amount=-1 -kerning first=1202 second=34 amount=-2 -kerning first=247 second=231 amount=-1 -kerning first=367 second=361 amount=-1 -kerning first=160 second=243 amount=-1 -kerning first=266 second=1202 amount=-2 -kerning first=269 second=373 amount=-1 -kerning first=178 second=1263 amount=-1 -kerning first=325 second=232 amount=-1 -kerning first=900 second=362 amount=-2 -kerning first=1107 second=966 amount=-1 -kerning first=346 second=374 amount=-2 -kerning first=942 second=289 amount=-1 -kerning first=374 second=71 amount=-3 -kerning first=968 second=221 amount=-5 -kerning first=270 second=1071 amount=-1 -kerning first=1041 second=1177 amount=-1 -kerning first=186 second=333 amount=-1 -kerning first=301 second=245 amount=-1 -kerning first=1083 second=290 amount=-2 -kerning first=206 second=949 amount=-1 -kerning first=209 second=257 amount=-1 -kerning first=8377 second=338 amount=-2 -kerning first=86 second=963 amount=-1 -kerning first=89 second=271 amount=-4 -kerning first=946 second=234 amount=-1 -kerning first=1206 second=364 amount=-1 -kerning first=252 second=334 amount=-2 -kerning first=375 second=246 amount=-1 -kerning first=249 second=1090 amount=-3 -kerning first=165 second=346 amount=-1 -kerning first=8218 second=211 amount=-1 -kerning first=47 second=360 amount=-2 -kerning first=1048 second=1059 amount=-2 -kerning first=1044 second=8212 amount=-2 -kerning first=190 second=273 amount=-1 -kerning first=193 second=45 amount=-2 -kerning first=70 second=287 amount=-1 -kerning first=1090 second=235 amount=-1 -kerning first=93 second=219 amount=-2 -kerning first=356 second=259 amount=-2 -kerning first=113 second=361 amount=-1 -kerning first=1202 second=8216 amount=-2 -kerning first=253 second=965 amount=-1 -kerning first=967 second=8250 amount=-1 -kerning first=166 second=1028 amount=-2 -kerning first=169 second=288 amount=-2 -kerning first=1065 second=248 amount=-1 -kerning first=194 second=220 amount=-2 -kerning first=306 second=350 amount=-1 -kerning first=74 second=232 amount=-1 -kerning first=214 second=362 amount=-2 -kerning first=94 second=374 amount=-5 -kerning first=1169 second=1076 amount=-3 -kerning first=237 second=289 amount=-1 -kerning first=955 second=99 amount=-1 -kerning first=952 second=337 amount=-1 -kerning first=1223 second=940 amount=-1 -kerning first=260 second=221 amount=-5 -kerning first=35 second=83 amount=-1 -kerning first=174 second=233 amount=-1 -kerning first=280 second=1177 amount=-1 -kerning first=8217 second=8218 amount=-1 -kerning first=55 second=245 amount=-1 -kerning first=1069 second=198 amount=-2 -kerning first=195 second=375 amount=-1 -kerning first=313 second=290 amount=-1 -kerning first=1178 second=262 amount=-1 -kerning first=361 second=364 amount=-2 -kerning first=956 second=277 amount=-1 -kerning first=121 second=246 amount=-1 -kerning first=1299 second=199 amount=-2 -kerning first=1036 second=211 amount=-3 -kerning first=1074 second=113 amount=-1 -kerning first=193 second=8249 amount=-3 -kerning first=202 second=85 amount=-2 -kerning first=317 second=235 amount=-1 -kerning first=105 second=34 amount=-3 -kerning first=102 second=259 amount=-1 -kerning first=1186 second=212 amount=-1 -kerning first=962 second=224 amount=-1 -kerning first=1263 second=1118 amount=-1 -kerning first=270 second=86 amount=-2 -kerning first=1034 second=1184 amount=-5 -kerning first=1037 second=366 amount=-2 -kerning first=179 second=336 amount=-2 -kerning first=60 second=350 amount=-1 -kerning first=8370 second=103 amount=-1 -kerning first=80 second=966 amount=-1 -kerning first=86 second=47 amount=-4 -kerning first=1184 second=1185 amount=-4 -kerning first=249 second=99 amount=-1 -kerning first=369 second=249 amount=-1 -kerning first=162 second=111 amount=-1 -kerning first=126 second=351 amount=-1 -kerning first=271 second=261 amount=-1 -kerning first=38 second=1177 amount=-1 -kerning first=41 second=363 amount=-1 -kerning first=64 second=290 amount=-2 -kerning first=207 second=210 amount=-2 -kerning first=327 second=100 amount=-1 -kerning first=902 second=250 amount=-1 -kerning first=8366 second=972 amount=-1 -kerning first=8372 second=281 amount=-1 -kerning first=944 second=187 amount=-1 -kerning first=247 second=968 amount=-1 -kerning first=250 second=277 amount=-1 -kerning first=964 second=1079 amount=-1 -kerning first=160 second=1035 amount=-5 -kerning first=163 second=291 amount=-1 -kerning first=276 second=211 amount=-2 -kerning first=42 second=1059 amount=-2 -kerning first=1049 second=251 amount=-1 -kerning first=300 second=353 amount=-1 -kerning first=303 second=113 amount=-1 -kerning first=354 second=212 amount=-1 -kerning first=105 second=8216 amount=-3 -kerning first=1210 second=252 amount=-1 -kerning first=254 second=224 amount=-1 -kerning first=371 second=1118 amount=-1 -kerning first=971 second=266 amount=-2 -kerning first=274 second=1184 amount=-5 -kerning first=49 second=248 amount=-1 -kerning first=192 second=171 amount=-3 -kerning first=1095 second=103 amount=-1 -kerning first=206 second=8217 amount=-3 -kerning first=8377 second=1257 amount=-1 -kerning first=912 second=115 amount=-1 -kerning first=95 second=87 amount=-5 -kerning first=1170 second=267 amount=-1 -kerning first=375 second=1038 amount=-2 -kerning first=1026 second=214 amount=-2 -kerning first=275 second=8218 amount=-1 -kerning first=1064 second=356 amount=-5 -kerning first=1067 second=116 amount=-1 -kerning first=70 second=1097 amount=-1 -kerning first=73 second=338 amount=-2 -kerning first=1096 second=281 amount=-1 -kerning first=76 second=100 amount=-1 -kerning first=1090 second=972 amount=-1 -kerning first=96 second=262 amount=-2 -kerning first=236 second=1241 amount=-1 -kerning first=239 second=187 amount=-1 -kerning first=353 second=8220 amount=-1 -kerning first=954 second=227 amount=-1 -kerning first=1263 second=117 amount=-1 -kerning first=256 second=1079 amount=-1 -kerning first=262 second=89 amount=-2 -kerning first=1027 second=369 amount=-1 -kerning first=169 second=1098 amount=-3 -kerning first=172 second=339 amount=-1 -kerning first=176 second=101 amount=-1 -kerning first=287 second=251 amount=-1 -kerning first=54 second=353 amount=-1 -kerning first=57 second=113 amount=-1 -kerning first=197 second=263 amount=-1 -kerning first=926 second=240 amount=-1 -kerning first=100 second=212 amount=-2 -kerning first=1174 second=1194 amount=-1 -kerning first=243 second=102 amount=-1 -kerning first=363 second=252 amount=-1 -kerning first=952 second=1256 amount=-2 -kerning first=117 second=1118 amount=-1 -kerning first=35 second=366 amount=-2 -kerning first=174 second=970 amount=-1 -kerning first=177 second=279 amount=-1 -kerning first=8240 second=359 amount=-1 -kerning first=8260 second=119 amount=-4 -kerning first=201 second=213 amount=-2 -kerning first=8363 second=286 amount=-2 -kerning first=321 second=103 amount=-1 -kerning first=98 second=1185 amount=-1 -kerning first=121 second=1038 amount=-2 -kerning first=1036 second=945 amount=-2 -kerning first=182 second=226 amount=-1 -kerning first=294 second=356 amount=-5 -kerning first=297 second=116 amount=-1 -kerning first=202 second=368 amount=-2 -kerning first=317 second=972 amount=-1 -kerning first=322 second=281 amount=-1 -kerning first=8369 second=231 amount=-1 -kerning first=99 second=8220 amount=-1 -kerning first=371 second=117 amount=-1 -kerning first=965 second=269 amount=-1 -kerning first=43 second=251 amount=-1 -kerning first=200 second=8221 amount=-3 -kerning first=203 second=1066 amount=-5 -kerning first=1083 second=106 amount=1 -kerning first=904 second=118 amount=-4 -kerning first=375 second=67 amount=-2 -kerning first=268 second=8222 amount=-1 -kerning first=278 second=79 amount=-2 -kerning first=1048 second=359 amount=-1 -kerning first=299 second=920 amount=-2 -kerning first=70 second=103 amount=-1 -kerning first=1080 second=1026 amount=-5 -kerning first=1084 second=286 amount=-2 -kerning first=8378 second=334 amount=-2 -kerning first=8372 second=1090 amount=-3 -kerning first=90 second=267 amount=-1 -kerning first=1168 second=218 amount=-2 -kerning first=948 second=230 amount=-1 -kerning first=376 second=242 amount=-4 -kerning first=967 second=947 amount=-4 -kerning first=163 second=1101 amount=-1 -kerning first=276 second=945 amount=-1 -kerning first=48 second=356 amount=-5 -kerning first=51 second=116 amount=-1 -kerning first=191 second=268 amount=-2 -kerning first=1094 second=231 amount=-1 -kerning first=117 second=117 amount=-1 -kerning first=167 second=973 amount=-1 -kerning first=195 second=216 amount=-2 -kerning first=75 second=228 amount=-1 -kerning first=920 second=193 amount=-2 -kerning first=92 second=1194 amount=-2 -kerning first=95 second=370 amount=-2 -kerning first=238 second=283 amount=-1 -kerning first=950 second=1087 amount=-2 -kerning first=121 second=67 amount=-2 -kerning first=36 second=79 amount=-2 -kerning first=1026 second=949 amount=-1 -kerning first=175 second=229 amount=-1 -kerning first=289 second=119 amount=-4 -kerning first=8218 second=8211 amount=-1 -kerning first=53 second=920 amount=-2 -kerning first=1070 second=194 amount=-2 -kerning first=193 second=1195 amount=-1 -kerning first=196 second=371 amount=-1 -kerning first=314 second=286 amount=-2 -kerning first=8361 second=234 amount=-1 -kerning first=73 second=1257 amount=-1 -kerning first=1099 second=334 amount=-2 -kerning first=1096 second=1090 amount=-3 -kerning first=216 second=1046 amount=-3 -kerning first=923 second=346 amount=-1 -kerning first=958 second=273 amount=-1 -kerning first=962 second=45 amount=-2 -kerning first=122 second=242 amount=-1 -kerning first=259 second=947 amount=-1 -kerning first=262 second=372 amount=-1 -kerning first=34 second=945 amount=-1 -kerning first=176 second=1240 amount=-2 -kerning first=172 second=1262 amount=-2 -kerning first=1071 second=347 amount=-1 -kerning first=197 second=1069 amount=-1 -kerning first=203 second=81 amount=-2 -kerning first=318 second=231 amount=-1 -kerning first=223 second=243 amount=-1 -kerning first=926 second=1028 amount=-2 -kerning first=934 second=288 amount=-2 -kerning first=240 second=1263 amount=-1 -kerning first=963 second=220 amount=-2 -kerning first=1035 second=1176 amount=-1 -kerning first=180 second=332 amount=-2 -kerning first=296 second=244 amount=-1 -kerning first=64 second=106 amount=5 -kerning first=8366 second=337 amount=-1 -kerning first=8372 second=99 amount=-1 -kerning first=902 second=71 amount=-2 -kerning first=339 second=8230 amount=-1 -kerning first=247 second=333 amount=-1 -kerning first=964 second=375 amount=-1 -kerning first=273 second=257 amount=-1 -kerning first=42 second=359 amount=-1 -kerning first=1036 second=8211 amount=-4 -kerning first=45 second=119 amount=-1 -kerning first=182 second=963 amount=-1 -kerning first=185 second=271 amount=-1 -kerning first=62 second=1026 amount=-5 -kerning first=65 second=286 amount=-2 -kerning first=1081 second=234 amount=-1 -kerning first=322 second=1090 amount=-3 -kerning first=325 second=334 amount=-2 -kerning first=8369 second=968 amount=-1 -kerning first=903 second=246 amount=-1 -kerning first=108 second=360 amount=-2 -kerning first=111 second=120 amount=-2 -kerning first=1186 second=8212 amount=-2 -kerning first=251 second=273 amount=-1 -kerning first=254 second=45 amount=-2 -kerning first=248 second=964 amount=-1 -kerning first=962 second=8249 amount=-3 -kerning first=971 second=85 amount=-2 -kerning first=164 second=287 amount=-1 -kerning first=189 second=219 amount=-2 -kerning first=298 second=1108 amount=-1 -kerning first=301 second=347 amount=-1 -kerning first=69 second=231 amount=-1 -kerning first=209 second=361 amount=-1 -kerning first=333 second=46 amount=-1 -kerning first=908 second=196 amount=-2 -kerning first=89 second=373 amount=-2 -kerning first=946 second=336 amount=-2 -kerning first=1219 second=248 amount=-1 -kerning first=255 second=220 amount=-2 -kerning first=375 second=350 amount=-1 -kerning first=168 second=232 amount=-1 -kerning first=278 second=362 amount=-2 -kerning first=281 second=122 amount=-1 -kerning first=50 second=244 amount=-1 -kerning first=190 second=374 amount=-5 -kerning first=187 second=1203 amount=-2 -kerning first=305 second=289 amount=-1 -kerning first=67 second=1298 amount=-1 -kerning first=1090 second=337 amount=-1 -kerning first=1096 second=99 amount=-1 -kerning first=334 second=221 amount=-3 -kerning first=910 second=351 amount=-3 -kerning first=915 second=111 amount=-1 -kerning first=87 second=8230 amount=-3 -kerning first=96 second=83 amount=-1 -kerning first=1171 second=261 amount=-1 -kerning first=236 second=233 amount=-1 -kerning first=1168 second=953 amount=-1 -kerning first=356 second=363 amount=-2 -kerning first=1256 second=198 amount=-2 -kerning first=256 second=375 amount=-1 -kerning first=379 second=290 amount=-1 -kerning first=1027 second=210 amount=-2 -kerning first=276 second=8211 amount=-2 -kerning first=8224 second=250 amount=-1 -kerning first=8220 second=941 amount=-1 -kerning first=197 second=84 amount=-5 -kerning first=311 second=234 amount=-2 -kerning first=74 second=334 amount=-2 -kerning first=1097 second=277 amount=-1 -kerning first=916 second=291 amount=-1 -kerning first=354 second=8212 amount=-4 -kerning first=357 second=1059 amount=-2 -kerning first=1298 second=113 amount=-1 -kerning first=254 second=8249 amount=-3 -kerning first=174 second=335 amount=-1 -kerning first=177 second=97 amount=-1 -kerning first=52 second=1108 amount=-1 -kerning first=55 second=347 amount=-1 -kerning first=198 second=259 amount=-1 -kerning first=201 second=34 amount=-3 -kerning first=75 second=965 amount=-1 -kerning first=81 second=46 amount=-1 -kerning first=221 second=196 amount=-5 -kerning first=342 second=86 amount=-1 -kerning first=1178 second=366 amount=-1 -kerning first=121 second=350 amount=-1 -kerning first=266 second=260 amount=-1 -kerning first=36 second=362 amount=-2 -kerning first=1033 second=1063 amount=-1 -kerning first=1026 second=8217 amount=-3 -kerning first=175 second=966 amount=-1 -kerning first=178 second=275 amount=-1 -kerning first=59 second=289 amount=-1 -kerning first=317 second=337 amount=-1 -kerning first=322 second=99 amount=-1 -kerning first=82 second=221 amount=-2 -kerning first=343 second=261 amount=-1 -kerning first=242 second=967 amount=-2 -kerning first=368 second=198 amount=-2 -kerning first=125 second=290 amount=-2 -kerning first=1037 second=941 amount=-1 -kerning first=1041 second=250 amount=-1 -kerning first=63 second=234 amount=-1 -kerning first=1075 second=1241 amount=-1 -kerning first=203 second=364 amount=-2 -kerning first=318 second=968 amount=-1 -kerning first=323 second=277 amount=-1 -kerning first=8370 second=227 amount=-1 -kerning first=901 second=199 amount=-2 -kerning first=83 second=376 amount=-2 -kerning first=1103 second=1079 amount=-1 -kerning first=223 second=1035 amount=-5 -kerning first=934 second=1098 amount=-3 -kerning first=103 second=1059 amount=-2 -kerning first=100 second=8212 amount=-2 -kerning first=369 second=353 amount=-1 -kerning first=372 second=113 amount=-3 -kerning first=162 second=235 amount=-1 -kerning first=271 second=365 amount=-1 -kerning first=201 second=8216 amount=-3 -kerning first=327 second=224 amount=-1 -kerning first=8366 second=1256 amount=-2 -kerning first=902 second=354 amount=-5 -kerning first=84 second=1075 amount=-2 -kerning first=1117 second=266 amount=-2 -kerning first=1168 second=39 amount=-3 -kerning first=944 second=279 amount=-1 -kerning first=253 second=171 amount=-3 -kerning first=376 second=63 amount=-1 -kerning first=269 second=8217 amount=-1 -kerning first=1049 second=355 amount=-1 -kerning first=191 second=87 amount=-5 -kerning first=903 second=1038 amount=-2 -kerning first=88 second=953 amount=-1 -kerning first=91 second=261 amount=-1 -kerning first=1210 second=356 amount=-5 -kerning first=1223 second=116 amount=-1 -kerning first=971 second=368 amount=-2 -kerning first=167 second=338 amount=-2 -kerning first=170 second=100 amount=-1 -kerning first=280 second=250 amount=-1 -kerning first=49 second=352 amount=-1 -kerning first=1066 second=65 amount=-1 -kerning first=192 second=262 amount=-2 -kerning first=304 second=1241 amount=-1 -kerning first=69 second=968 amount=-1 -kerning first=72 second=277 amount=-1 -kerning first=1095 second=227 amount=-1 -kerning first=215 second=199 amount=-2 -kerning first=330 second=1079 amount=-1 -kerning first=336 second=89 amount=-3 -kerning first=95 second=211 amount=-2 -kerning first=1170 second=369 amount=-1 -kerning first=232 second=1098 amount=-1 -kerning first=238 second=101 amount=-1 -kerning first=358 second=251 amount=-1 -kerning first=118 second=113 amount=-1 -kerning first=258 second=263 amount=-1 -kerning first=8226 second=118 amount=-4 -kerning first=1067 second=240 amount=-1 -kerning first=196 second=212 amount=-2 -kerning first=216 second=354 amount=-2 -kerning first=93 second=1184 amount=-5 -kerning first=96 second=366 amount=-2 -kerning first=236 second=970 amount=-1 -kerning first=239 second=279 amount=-1 -kerning first=176 second=225 amount=-1 -kerning first=287 second=355 amount=-1 -kerning first=194 second=1185 amount=-3 -kerning first=197 second=367 amount=-1 -kerning first=916 second=1101 amount=-1 -kerning first=363 second=356 amount=-5 -kerning first=960 second=268 amount=-2 -kerning first=38 second=250 amount=-1 -kerning first=35 second=941 amount=-1 -kerning first=8260 second=243 amount=-1 -kerning first=58 second=1241 amount=-1 -kerning first=61 second=187 amount=-1 -kerning first=195 second=8220 amount=-3 -kerning first=321 second=227 amount=-1 -kerning first=78 second=1079 amount=-1 -kerning first=928 second=973 amount=-1 -kerning first=964 second=216 amount=-2 -kerning first=266 second=1066 amount=-1 -kerning first=261 second=8221 amount=-1 -kerning first=1046 second=118 amount=-3 -kerning first=297 second=240 amount=-1 -kerning first=65 second=102 amount=-2 -kerning first=1078 second=283 amount=-2 -kerning first=202 second=943 amount=-1 -kerning first=205 second=252 amount=-1 -kerning first=317 second=1256 amount=-2 -kerning first=8369 second=333 amount=-1 -kerning first=903 second=67 amount=-2 -kerning first=942 second=229 amount=-1 -kerning first=962 second=1195 amount=-1 -kerning first=965 second=371 amount=-1 -kerning first=164 second=103 amount=-1 -kerning first=274 second=253 amount=-1 -kerning first=43 second=355 amount=-1 -kerning first=1041 second=1046 amount=-2 -kerning first=186 second=267 amount=-1 -kerning first=1083 second=230 amount=-1 -kerning first=8377 second=273 amount=-1 -kerning first=904 second=242 amount=-1 -kerning first=8370 second=964 amount=-3 -kerning first=89 second=214 amount=-3 -kerning first=1108 second=947 amount=-1 -kerning first=252 second=268 amount=-2 -kerning first=162 second=972 amount=-1 -kerning first=165 second=281 amount=-1 -kerning first=8218 second=121 amount=-1 -kerning first=70 second=227 amount=-1 -kerning first=1080 second=1263 amount=-1 -kerning first=87 second=1187 amount=-2 -kerning first=948 second=332 amount=-2 -kerning first=1220 second=244 amount=-1 -kerning first=256 second=216 amount=-2 -kerning first=169 second=228 amount=-1 -kerning first=282 second=118 amount=-4 -kerning first=8224 second=71 amount=-2 -kerning first=51 second=240 amount=-1 -kerning first=188 second=1194 amount=-2 -kerning first=191 second=370 amount=-2 -kerning first=306 second=283 amount=-1 -kerning first=1094 second=333 amount=-1 -kerning first=211 second=1044 amount=-1 -kerning first=1169 second=949 amount=-1 -kerning first=237 second=229 amount=-1 -kerning first=357 second=359 amount=-1 -kerning first=952 second=271 amount=-1 -kerning first=254 second=1195 amount=-1 -kerning first=167 second=1257 amount=-1 -kerning first=8225 second=246 amount=-1 -kerning first=1095 second=964 amount=-3 -kerning first=333 second=947 amount=-1 -kerning first=336 second=372 amount=-2 -kerning first=95 second=945 amount=-1 -kerning first=238 second=1240 amount=-2 -kerning first=956 second=219 amount=-2 -kerning first=1224 second=1108 amount=-1 -kerning first=258 second=1069 amount=-1 -kerning first=1036 second=121 amount=-2 -kerning first=289 second=243 amount=-1 -kerning first=8249 second=196 amount=-1 -kerning first=1067 second=1028 amount=-2 -kerning first=310 second=1263 amount=-2 -kerning first=8361 second=336 amount=-2 -kerning first=931 second=232 amount=-1 -kerning first=1176 second=1176 amount=-1 -kerning first=365 second=244 amount=-1 -kerning first=958 second=374 amount=-5 -kerning first=125 second=106 amount=1 -kerning first=40 second=118 amount=-4 -kerning first=1041 second=71 amount=-2 -kerning first=176 second=962 amount=-1 -kerning first=60 second=283 amount=-1 -kerning first=1075 second=233 amount=-1 -kerning first=318 second=333 amount=-1 -kerning first=1103 second=375 amount=-1 -kerning first=341 second=949 amount=-1 -kerning first=103 second=359 amount=-1 -kerning first=123 second=1026 amount=-5 -kerning first=126 second=286 amount=-2 -kerning first=38 second=1046 amount=-2 -kerning first=1044 second=246 amount=-1 -kerning first=184 second=218 amount=-2 -kerning first=296 second=346 amount=-1 -kerning first=8260 second=1035 amount=-5 -kerning first=64 second=230 amount=-1 -kerning first=204 second=360 amount=-2 -kerning first=321 second=964 amount=-3 -kerning first=327 second=45 amount=-2 -kerning first=1117 second=85 amount=-2 -kerning first=944 second=97 amount=-1 -kerning first=250 second=219 amount=-2 -kerning first=367 second=1108 amount=-1 -kerning first=967 second=259 amount=-1 -kerning first=163 second=231 amount=-1 -kerning first=269 second=1175 amount=-1 -kerning first=273 second=361 amount=-1 -kerning first=8216 second=74 amount=-4 -kerning first=276 second=121 amount=-1 -kerning first=185 second=373 amount=-4 -kerning first=297 second=1028 amount=-2 -kerning first=300 second=288 amount=-2 -kerning first=62 second=1263 amount=-1 -kerning first=1078 second=1095 amount=-1 -kerning first=1081 second=336 amount=-2 -kerning first=903 second=350 amount=-1 -kerning first=354 second=122 amount=-1 -kerning first=942 second=966 amount=-1 -kerning first=248 second=1203 amount=-2 -kerning first=251 second=374 amount=-5 -kerning first=374 second=289 amount=-4 -kerning first=280 second=71 amount=-2 -kerning first=1051 second=351 amount=-1 -kerning first=1063 second=111 amount=-1 -kerning first=192 second=83 amount=-1 -kerning first=304 second=233 amount=-1 -kerning first=69 second=333 amount=-1 -kerning first=330 second=375 amount=-1 -kerning first=92 second=257 amount=-1 -kerning first=89 second=949 amount=-4 -kerning first=1170 second=210 amount=-2 -kerning first=1219 second=352 amount=-1 -kerning first=258 second=84 amount=-5 -kerning first=378 second=234 amount=-1 -kerning first=168 second=334 amount=-2 -kerning first=165 second=1090 amount=-3 -kerning first=8222 second=199 amount=-1 -kerning first=47 second=1107 amount=-1 -kerning first=50 second=346 amount=-1 -kerning first=1064 second=291 amount=-1 -kerning first=73 second=273 amount=-1 -kerning first=70 second=964 amount=-3 -kerning first=76 second=45 amount=-3 -kerning first=327 second=8249 amount=-3 -kerning first=915 second=235 amount=-1 -kerning first=1171 second=365 amount=-1 -kerning first=236 second=335 amount=-1 -kerning first=239 second=97 amount=-1 -kerning first=113 second=1108 amount=-1 -kerning first=169 second=965 amount=-1 -kerning first=8224 second=354 amount=-5 -kerning first=51 second=1028 amount=-2 -kerning first=54 second=288 amount=-2 -kerning first=77 second=220 amount=-2 -kerning first=94 second=1176 amount=-1 -kerning first=1174 second=1063 amount=-2 -kerning first=237 second=966 amount=-1 -kerning first=243 second=47 amount=-1 -kerning first=240 second=275 amount=-1 -kerning first=960 second=87 amount=-5 -kerning first=120 second=289 amount=-1 -kerning first=38 second=71 amount=-2 -kerning first=1035 second=249 amount=-1 -kerning first=177 second=221 amount=-5 -kerning first=291 second=111 amount=-1 -kerning first=8225 second=1038 amount=-2 -kerning first=58 second=233 amount=-1 -kerning first=198 second=363 amount=-1 -kerning first=195 second=1177 amount=-1 -kerning first=8363 second=226 amount=-1 -kerning first=78 second=375 amount=-1 -kerning first=1098 second=1078 amount=-2 -kerning first=221 second=290 amount=-3 -kerning first=928 second=338 amount=-2 -kerning first=95 second=8211 amount=-2 -kerning first=936 second=100 amount=-1 -kerning first=1178 second=941 amount=-1 -kerning first=124 second=234 amount=-1 -kerning first=1299 second=1241 amount=-1 -kerning first=39 second=246 amount=-1 -kerning first=1039 second=199 amount=-2 -kerning first=178 second=376 amount=-5 -kerning first=289 second=1035 amount=-5 -kerning first=294 second=291 amount=-1 -kerning first=1074 second=339 amount=-1 -kerning first=196 second=8212 amount=-2 -kerning first=1078 second=101 amount=-2 -kerning first=900 second=113 amount=-1 -kerning first=76 second=8249 amount=-3 -kerning first=1102 second=955 amount=-1 -kerning first=1107 second=263 amount=-1 -kerning first=965 second=212 amount=-2 -kerning first=1037 second=1118 amount=-1 -kerning first=1041 second=354 amount=-5 -kerning first=176 second=8250 amount=-1 -kerning first=63 second=336 amount=-2 -kerning first=206 second=248 amount=-1 -kerning first=86 second=260 amount=-6 -kerning first=246 second=1076 amount=-1 -kerning first=252 second=87 amount=-5 -kerning first=963 second=1185 amount=-3 -kerning first=162 second=337 amount=-1 -kerning first=165 second=99 amount=-1 -kerning first=271 second=940 amount=-1 -kerning first=47 second=111 amount=-2 -kerning first=1044 second=1038 amount=-1 -kerning first=184 second=953 amount=-1 -kerning first=1084 second=226 amount=-1 -kerning first=210 second=198 amount=-2 -kerning first=8378 second=268 amount=-2 -kerning first=90 second=210 amount=-1 -kerning first=1117 second=368 amount=-2 -kerning first=113 second=112 amount=2 -kerning first=253 second=262 amount=-2 -kerning first=376 second=187 amount=-2 -kerning first=373 second=1241 amount=-1 -kerning first=964 second=8220 amount=-3 -kerning first=163 second=968 amount=-1 -kerning first=166 second=277 amount=-1 -kerning first=45 second=1035 amount=-4 -kerning first=48 second=291 amount=-1 -kerning first=191 second=211 amount=-2 -kerning first=303 second=339 amount=-1 -kerning first=306 second=101 amount=-1 -kerning first=300 second=1098 amount=-3 -kerning first=214 second=113 amount=-1 -kerning first=91 second=365 amount=-1 -kerning first=1118 second=1066 amount=-5 -kerning first=1223 second=240 amount=-1 -kerning first=374 second=1099 amount=-3 -kerning first=971 second=943 amount=-1 -kerning first=170 second=224 amount=-1 -kerning first=280 second=354 amount=-5 -kerning first=8217 second=1044 amount=-3 -kerning first=8225 second=67 amount=-2 -kerning first=189 second=1184 amount=-5 -kerning first=192 second=366 amount=-2 -kerning first=304 second=970 amount=-1 -kerning first=75 second=171 amount=-3 -kerning first=238 second=225 amount=-1 -kerning first=358 second=355 amount=-1 -kerning first=361 second=115 amount=-1 -kerning first=258 second=367 amount=-1 -kerning first=255 second=1185 amount=-3 -kerning first=8226 second=242 amount=-1 -kerning first=1064 second=1101 amount=-1 -kerning first=314 second=226 amount=-1 -kerning first=79 second=88 amount=-3 -kerning first=1099 second=268 amount=-2 -kerning first=915 second=972 amount=-1 -kerning first=96 second=941 amount=-1 -kerning first=923 second=281 amount=-1 -kerning first=119 second=1241 amount=-1 -kerning first=256 second=8220 amount=-3 -kerning first=37 second=199 amount=-2 -kerning first=1037 second=117 amount=-1 -kerning first=172 second=1079 amount=-1 -kerning first=179 second=89 amount=-5 -kerning first=54 second=1098 amount=-3 -kerning first=57 second=339 amount=-1 -kerning first=60 second=101 amount=-1 -kerning first=200 second=251 amount=-1 -kerning first=80 second=263 amount=-1 -kerning first=1103 second=216 amount=-2 -kerning first=338 second=1066 amount=-5 -kerning first=335 second=8221 amount=-1 -kerning first=934 second=228 amount=-1 -kerning first=955 second=1194 amount=-2 -kerning first=960 second=370 amount=-2 -kerning first=35 second=1118 amount=-1 -kerning first=38 second=354 amount=-5 -kerning first=1044 second=67 amount=-1 -kerning first=180 second=266 amount=-2 -kerning first=184 second=39 amount=-3 -kerning first=61 second=279 amount=-1 -kerning first=58 second=970 amount=-1 -kerning first=8363 second=963 amount=-1 -kerning first=8366 second=271 amount=-1 -kerning first=84 second=213 amount=-1 -kerning first=221 second=1100 amount=-3 -kerning first=928 second=1257 amount=-1 -kerning first=107 second=115 amount=-1 -kerning first=247 second=267 amount=-1 -kerning first=1046 second=242 amount=-2 -kerning first=185 second=214 amount=-2 -kerning first=294 second=1101 amount=-1 -kerning first=65 second=226 amount=-1 -kerning first=1074 second=1262 amount=-2 -kerning first=205 second=356 amount=-5 -kerning first=325 second=268 amount=-2 -kerning first=1118 second=81 amount=-2 -kerning first=1203 second=243 amount=-1 -kerning first=164 second=227 amount=-1 -kerning first=274 second=357 amount=-1 -kerning first=186 second=369 amount=-1 -kerning first=298 second=973 amount=-1 -kerning first=1083 second=332 amount=-2 -kerning first=330 second=216 amount=-2 -kerning first=8377 second=374 amount=-5 -kerning first=86 second=1066 amount=-5 -kerning first=249 second=1194 amount=-2 -kerning first=252 second=370 amount=-2 -kerning first=375 second=283 amount=-1 -kerning first=162 second=1256 amount=-2 -kerning first=193 second=79 amount=-2 -kerning first=305 second=229 amount=-1 -kerning first=70 second=328 amount=-1 -kerning first=1084 second=963 amount=-1 -kerning first=1090 second=271 amount=-1 -kerning first=327 second=1195 amount=-1 -kerning first=905 second=1026 amount=-5 -kerning first=93 second=253 amount=-1 -kerning first=910 second=286 amount=-3 -kerning first=951 second=218 amount=-2 -kerning first=1220 second=346 amount=-1 -kerning first=973 second=360 amount=-2 -kerning first=282 second=242 amount=-1 -kerning first=48 second=1101 amount=-1 -kerning first=191 second=945 amount=-1 -kerning first=306 second=1240 amount=-2 -kerning first=303 second=1262 amount=-2 -kerning first=74 second=268 amount=-2 -kerning first=338 second=81 amount=-2 -kerning first=916 second=231 amount=-1 -kerning first=952 second=373 amount=-4 -kerning first=1223 second=1028 amount=-2 -kerning first=35 second=117 amount=-1 -kerning first=174 second=269 amount=-1 -kerning first=8225 second=350 amount=-1 -kerning first=52 second=973 amount=-1 -kerning first=313 second=332 amount=-1 -kerning first=78 second=216 amount=-2 -kerning first=101 second=118 amount=-1 -kerning first=238 second=962 amount=-1 -kerning first=364 second=193 amount=-2 -kerning first=121 second=283 amount=-1 -kerning first=118 second=974 amount=-1 -kerning first=1299 second=233 amount=-1 -kerning first=1036 second=245 amount=-2 -kerning first=178 second=217 amount=-2 -kerning first=59 second=229 amount=-1 -kerning first=202 second=119 amount=-4 -kerning first=314 second=963 amount=-1 -kerning first=317 second=271 amount=-1 -kerning first=76 second=1195 amount=-1 -kerning first=931 second=334 amount=-2 -kerning first=923 second=1090 amount=-3 -kerning first=1186 second=246 amount=-1 -kerning first=365 second=346 amount=-1 -kerning first=125 second=230 amount=-1 -kerning first=262 second=1174 amount=-2 -kerning first=40 second=242 amount=-1 -kerning first=176 second=947 amount=-4 -kerning first=179 second=372 amount=-5 -kerning first=60 second=1240 amount=-2 -kerning first=57 second=1262 amount=-2 -kerning first=1075 second=335 amount=-1 -kerning first=323 second=219 amount=-2 -kerning first=80 second=1069 amount=-1 -kerning first=86 second=81 amount=-2 -kerning first=934 second=965 amount=-1 -kerning first=246 second=373 amount=-1 -kerning first=369 second=288 amount=-2 -kerning first=123 second=1263 amount=-1 -kerning first=299 second=232 amount=-1 -kerning first=64 second=332 amount=-2 -kerning first=1080 second=275 amount=-1 -kerning first=207 second=244 amount=-1 -kerning first=1076 second=966 amount=-1 -kerning first=902 second=289 amount=-1 -kerning first=8378 second=87 amount=-5 -kerning first=87 second=256 amount=-5 -kerning first=944 second=221 amount=-5 -kerning first=244 second=8230 amount=-1 -kerning first=1207 second=111 amount=-1 -kerning first=253 second=83 amount=-1 -kerning first=373 second=233 amount=-1 -kerning first=967 second=363 amount=-1 -kerning first=964 second=1177 amount=-1 -kerning first=163 second=333 amount=-1 -kerning first=276 second=245 amount=-1 -kerning first=8216 second=198 amount=-3 -kerning first=1049 second=290 amount=-2 -kerning first=185 second=949 amount=-1 -kerning first=188 second=257 amount=-1 -kerning first=65 second=963 amount=-1 -kerning first=211 second=194 amount=-2 -kerning first=332 second=84 amount=-2 -kerning first=906 second=234 amount=-1 -kerning first=1118 second=364 amount=-2 -kerning first=228 second=1090 amount=-1 -kerning first=354 second=246 amount=-3 -kerning first=1210 second=291 amount=-1 -kerning first=965 second=8212 amount=-2 -kerning first=968 second=1059 amount=-2 -kerning first=167 second=273 amount=-1 -kerning first=170 second=45 amount=-2 -kerning first=164 second=964 amount=-3 -kerning first=8217 second=353 amount=-1 -kerning first=8221 second=113 amount=-1 -kerning first=49 second=287 amount=-1 -kerning first=1063 second=235 amount=-1 -kerning first=304 second=335 amount=-1 -kerning first=72 second=219 amount=-2 -kerning first=209 second=1108 amount=-1 -kerning first=92 second=361 amount=-1 -kerning first=95 second=121 amount=-1 -kerning first=89 second=1175 amount=-2 -kerning first=1026 second=248 amount=-1 -kerning first=53 second=232 amount=-1 -kerning first=193 second=362 amount=-2 -kerning first=190 second=1176 amount=-1 -kerning first=305 second=966 amount=-1 -kerning first=310 second=275 amount=-2 -kerning first=73 second=374 amount=-5 -kerning first=1090 second=1076 amount=-3 -kerning first=1099 second=87 amount=-5 -kerning first=213 second=1033 amount=-1 -kerning first=910 second=1096 amount=-3 -kerning first=915 second=337 amount=-1 -kerning first=923 second=99 amount=-1 -kerning first=1176 second=249 amount=-1 -kerning first=1171 second=940 amount=-1 -kerning first=239 second=221 amount=-5 -kerning first=356 second=1114 amount=-2 -kerning first=951 second=953 amount=-1 -kerning first=954 second=261 amount=-1 -kerning first=119 second=233 amount=-1 -kerning first=256 second=1177 amount=-1 -kerning first=34 second=245 amount=-1 -kerning first=1034 second=198 amount=-1 -kerning first=172 second=375 amount=-1 -kerning first=287 second=290 amount=-2 -kerning first=191 second=8211 amount=-2 -kerning first=1071 second=100 amount=-1 -kerning first=80 second=84 amount=-5 -kerning first=338 second=364 amount=-2 -kerning first=916 second=968 amount=-1 -kerning first=926 second=277 amount=-1 -kerning first=100 second=246 amount=-1 -kerning first=1184 second=199 amount=-3 -kerning first=240 second=376 amount=-5 -kerning first=363 second=291 amount=-1 -kerning first=960 second=211 amount=-2 -kerning first=1298 second=339 amount=-1 -kerning first=1257 second=1098 amount=-1 -kerning first=260 second=1059 amount=-2 -kerning first=1035 second=353 amount=-1 -kerning first=170 second=8249 amount=-3 -kerning first=180 second=85 amount=-2 -kerning first=291 second=235 amount=-1 -kerning first=58 second=335 amount=-1 -kerning first=61 second=97 amount=-1 -kerning first=936 second=224 amount=-1 -kerning first=238 second=8250 amount=-1 -kerning first=956 second=1184 amount=-5 -kerning first=124 second=336 amount=-2 -kerning first=1299 second=970 amount=-1 -kerning first=1046 second=63 amount=-2 -kerning first=59 second=966 amount=-1 -kerning first=62 second=275 amount=-1 -kerning first=1078 second=225 amount=-1 -kerning first=325 second=87 amount=-5 -kerning first=8369 second=267 amount=-1 -kerning first=1102 second=1185 amount=-1 -kerning first=343 second=940 amount=-1 -kerning first=105 second=351 amount=-1 -kerning first=108 second=111 amount=-1 -kerning first=1186 second=1038 amount=-1 -kerning first=43 second=290 amount=-2 -kerning first=186 second=210 amount=-2 -kerning first=298 second=338 amount=-2 -kerning first=301 second=100 amount=-1 -kerning first=206 second=352 amount=-1 -kerning first=901 second=1241 amount=-1 -kerning first=904 second=187 amount=-1 -kerning first=86 second=364 amount=-2 -kerning first=1103 second=8220 amount=-3 -kerning first=946 second=89 amount=-5 -kerning first=252 second=211 amount=-2 -kerning first=369 second=1098 amount=-3 -kerning first=375 second=101 amount=-1 -kerning first=372 second=339 amount=-3 -kerning first=278 second=113 amount=-1 -kerning first=1241 second=955 amount=-1 -kerning first=47 second=235 amount=-2 -kerning first=67 second=377 amount=-1 -kerning first=8372 second=1194 amount=-2 -kerning first=8378 second=370 amount=-2 -kerning first=1117 second=943 amount=-1 -kerning first=1168 second=252 amount=-1 -kerning first=356 second=114 amount=-2 -kerning first=948 second=266 amount=-2 -kerning first=951 second=39 amount=-3 -kerning first=250 second=1184 amount=-5 -kerning first=253 second=366 amount=-2 -kerning first=376 second=279 amount=-4 -kerning first=169 second=171 amount=-3 -kerning first=185 second=8217 amount=-3 -kerning first=306 second=225 amount=-1 -kerning first=74 second=87 amount=-5 -kerning first=1094 second=267 amount=-1 -kerning first=328 second=1185 amount=-1 -kerning first=91 second=940 amount=-1 -kerning first=94 second=249 amount=-1 -kerning first=952 second=214 amount=-2 -kerning first=1210 second=1101 amount=-1 -kerning first=52 second=338 amount=-2 -kerning first=55 second=100 amount=-1 -kerning first=195 second=250 amount=-1 -kerning first=192 second=941 amount=-1 -kerning first=1063 second=972 amount=-1 -kerning first=75 second=262 amount=-3 -kerning first=215 second=1241 amount=-1 -kerning first=330 second=8220 amount=-3 -kerning first=950 second=1187 amount=-2 -kerning first=118 second=339 amount=-1 -kerning first=1224 second=973 amount=-1 -kerning first=121 second=101 amount=-1 -kerning first=381 second=381 amount=1 -kerning first=36 second=113 amount=-1 -kerning first=175 second=263 amount=-1 -kerning first=1096 second=1194 amount=-2 -kerning first=1099 second=370 amount=-2 -kerning first=915 second=1256 amount=-2 -kerning first=96 second=1118 amount=-1 -kerning first=1186 second=67 amount=-1 -kerning first=245 second=39 amount=-1 -kerning first=962 second=79 amount=-2 -kerning first=122 second=279 amount=-1 -kerning first=179 second=213 amount=-2 -kerning first=8230 second=1026 amount=-5 -kerning first=60 second=225 amount=-1 -kerning first=200 second=355 amount=-1 -kerning first=203 second=115 amount=-1 -kerning first=318 second=267 amount=-1 -kerning first=8365 second=218 amount=-2 -kerning first=77 second=1185 amount=-3 -kerning first=80 second=367 amount=-1 -kerning first=100 second=1038 amount=-2 -kerning first=1187 second=242 amount=-1 -kerning first=363 second=1101 amount=-1 -kerning first=960 second=945 amount=-1 -kerning first=126 second=226 amount=-1 -kerning first=1298 second=1262 amount=-2 -kerning first=268 second=356 amount=-1 -kerning first=271 second=116 amount=-1 -kerning first=180 second=368 amount=-2 -kerning first=291 second=972 amount=-1 -kerning first=296 second=281 amount=-1 -kerning first=8366 second=373 amount=-4 -kerning first=78 second=8220 amount=-3 -kerning first=936 second=961 amount=-1 -kerning first=247 second=369 amount=-1 -kerning first=367 second=973 amount=-1 -kerning first=1049 second=106 amount=1 -kerning first=182 second=1066 amount=-5 -kerning first=178 second=8221 amount=-3 -kerning first=300 second=228 amount=-1 -kerning first=68 second=90 amount=-1 -kerning first=1078 second=962 amount=-2 -kerning first=322 second=1194 amount=-2 -kerning first=325 second=370 amount=-2 -kerning first=903 second=283 amount=-1 -kerning first=88 second=252 amount=-1 -kerning first=354 second=67 amount=-1 -kerning first=245 second=8222 amount=-1 -kerning first=254 second=79 amount=-2 -kerning first=374 second=229 amount=-4 -kerning first=971 second=119 amount=-4 -kerning first=968 second=359 amount=-1 -kerning first=274 second=920 amount=-2 -kerning first=8217 second=194 amount=-3 -kerning first=49 second=103 amount=-1 -kerning first=1051 second=286 amount=-2 -kerning first=1047 second=1026 amount=-1 -kerning first=189 second=253 amount=-1 -kerning first=298 second=1257 amount=-1 -kerning first=69 second=267 amount=-1 -kerning first=1087 second=218 amount=-2 -kerning first=1119 second=360 amount=-2 -kerning first=352 second=923 amount=-1 -kerning first=943 second=947 amount=-2 -kerning first=946 second=372 amount=-5 -kerning first=1219 second=287 amount=-1 -kerning first=252 second=945 amount=-1 -kerning first=375 second=1240 amount=-2 -kerning first=168 second=268 amount=-2 -kerning first=47 second=972 amount=-1 -kerning first=50 second=281 amount=-1 -kerning first=1064 second=231 amount=-1 -kerning first=905 second=1263 amount=-1 -kerning first=96 second=117 amount=-1 -kerning first=93 second=357 amount=-1 -kerning first=236 second=269 amount=-1 -kerning first=113 second=973 amount=-1 -kerning first=376 second=1085 amount=-3 -kerning first=379 second=332 amount=-1 -kerning first=1027 second=244 amount=-1 -kerning first=172 second=216 amount=-2 -kerning first=287 second=106 amount=1 -kerning first=8224 second=289 amount=-1 -kerning first=8220 second=1033 amount=-3 -kerning first=54 second=228 amount=-1 -kerning first=197 second=118 amount=-4 -kerning first=306 second=962 amount=-1 -kerning first=74 second=370 amount=-2 -kerning first=916 second=333 amount=-1 -kerning first=100 second=67 amount=-2 -kerning first=240 second=217 amount=-2 -kerning first=952 second=949 amount=-1 -kerning first=955 second=257 amount=-1 -kerning first=120 second=229 amount=-1 -kerning first=260 second=359 amount=-1 -kerning first=263 second=119 amount=-1 -kerning first=380 second=963 amount=-1 -kerning first=170 second=1195 amount=-1 -kerning first=174 second=371 amount=-1 -kerning first=8240 second=234 amount=-1 -kerning first=52 second=1257 amount=-1 -kerning first=1066 second=1090 amount=-2 -kerning first=316 second=218 amount=-2 -kerning first=221 second=230 amount=-4 -kerning first=336 second=1174 amount=-3 -kerning first=928 second=273 amount=-1 -kerning first=936 second=45 amount=-2 -kerning first=238 second=947 amount=-4 -kerning first=121 second=1240 amount=-2 -kerning first=1299 second=335 amount=-1 -kerning first=175 second=1069 amount=-1 -kerning first=182 second=81 amount=-2 -kerning first=294 second=231 amount=-1 -kerning first=202 second=243 amount=-1 -kerning first=317 second=373 amount=-4 -kerning first=962 second=362 amount=-2 -kerning first=958 second=1176 amount=-1 -kerning first=125 second=332 amount=-2 -kerning first=43 second=106 amount=1 -kerning first=1041 second=289 amount=-1 -kerning first=60 second=962 amount=-1 -kerning first=8370 second=261 amount=-1 -kerning first=8365 second=953 amount=-1 -kerning first=901 second=233 amount=-1 -kerning first=1103 second=1177 amount=-1 -kerning first=249 second=257 amount=-1 -kerning first=960 second=8211 amount=-2 -kerning first=126 second=963 amount=-1 -kerning first=162 second=271 amount=-1 -kerning first=41 second=1026 amount=-5 -kerning first=1048 second=234 amount=-1 -kerning first=44 second=286 amount=-1 -kerning first=296 second=1090 amount=-3 -kerning first=299 second=334 amount=-2 -kerning first=1080 second=376 amount=-5 -kerning first=207 second=346 amount=-1 -kerning first=8378 second=211 amount=-2 -kerning first=227 second=964 amount=-1 -kerning first=936 second=8249 amount=-3 -kerning first=948 second=85 amount=-2 -kerning first=1207 second=235 amount=-1 -kerning first=373 second=335 amount=-1 -kerning first=376 second=97 amount=-4 -kerning first=166 second=219 amount=-2 -kerning first=273 second=1108 amount=-1 -kerning first=276 second=347 amount=-1 -kerning first=48 second=231 amount=-1 -kerning first=188 second=361 amount=-1 -kerning first=191 second=121 amount=-1 -kerning first=300 second=965 amount=-1 -kerning first=1078 second=8250 amount=-1 -kerning first=906 second=336 amount=-2 -kerning first=1169 second=248 amount=-1 -kerning first=354 second=350 amount=-1 -kerning first=114 second=232 amount=-1 -kerning first=251 second=1176 amount=-1 -kerning first=254 second=362 amount=-2 -kerning first=374 second=966 amount=-4 -kerning first=377 second=275 amount=-1 -kerning first=167 second=374 amount=-5 -kerning first=280 second=289 amount=-1 -kerning first=1063 second=337 amount=-1 -kerning first=195 second=71 amount=-2 -kerning first=1095 second=261 amount=-1 -kerning first=1087 second=953 amount=-1 -kerning first=215 second=233 amount=-1 -kerning first=75 second=83 amount=-1 -kerning first=330 second=1177 amount=-1 -kerning first=908 second=967 amount=-1 -kerning first=95 second=245 amount=-1 -kerning first=358 second=290 amount=-2 -kerning first=112 second=1299 amount=-1 -kerning first=1224 second=338 amount=-2 -kerning first=252 second=8211 amount=-2 -kerning first=1026 second=352 amount=-1 -kerning first=175 second=84 amount=-5 -kerning first=8226 second=187 amount=-1 -kerning first=53 second=334 amount=-2 -kerning first=50 second=1090 amount=-3 -kerning first=1064 second=968 amount=-1 -kerning first=196 second=246 amount=-1 -kerning first=1067 second=277 amount=-1 -kerning first=8361 second=89 amount=-5 -kerning first=1099 second=211 amount=-2 -kerning first=1176 second=353 amount=-1 -kerning first=1179 second=113 amount=-1 -kerning first=119 second=335 amount=-1 -kerning first=34 second=347 amount=-1 -kerning first=176 second=259 amount=-1 -kerning first=179 second=34 amount=-3 -kerning first=54 second=965 amount=-1 -kerning first=1071 second=224 amount=-1 -kerning first=306 second=8250 amount=-1 -kerning first=8365 second=39 amount=-3 -kerning first=341 second=248 amount=-1 -kerning first=934 second=171 amount=-3 -kerning first=100 second=350 amount=-1 -kerning first=952 second=8217 amount=-3 -kerning first=123 second=275 amount=-1 -kerning first=120 second=966 amount=-2 -kerning first=268 second=197 amount=-1 -kerning first=38 second=289 amount=-1 -kerning first=291 second=337 amount=-1 -kerning first=296 second=99 amount=-1 -kerning first=61 second=221 amount=-5 -kerning first=201 second=351 amount=-1 -kerning first=204 second=111 amount=-1 -kerning first=316 second=953 amount=-1 -kerning first=321 second=261 amount=-1 -kerning first=8366 second=214 amount=-2 -kerning first=78 second=1177 amount=-1 -kerning first=221 second=967 amount=-2 -kerning first=247 second=210 amount=-2 -kerning first=367 second=338 amount=-2 -kerning first=964 second=250 amount=-1 -kerning first=42 second=234 amount=-1 -kerning first=1039 second=1241 amount=-1 -kerning first=182 second=364 amount=-2 -kerning first=1046 second=187 amount=-1 -kerning first=294 second=968 amount=-1 -kerning first=297 second=277 amount=-1 -kerning first=62 second=376 amount=-5 -kerning first=1074 second=1079 amount=-1 -kerning first=1081 second=89 amount=-5 -kerning first=202 second=1035 amount=-5 -kerning first=205 second=291 amount=-1 -kerning first=325 second=211 amount=-2 -kerning first=8369 second=369 amount=-1 -kerning first=900 second=339 amount=-1 -kerning first=903 second=101 amount=-1 -kerning first=942 second=263 amount=-1 -kerning first=108 second=235 amount=-1 -kerning first=179 second=8216 amount=-3 -kerning first=301 second=224 amount=-1 -kerning first=60 second=8250 amount=-1 -kerning first=1083 second=266 amount=-2 -kerning first=1087 second=39 amount=-3 -kerning first=323 second=1184 amount=-5 -kerning first=904 second=279 amount=-1 -kerning first=901 second=970 amount=-1 -kerning first=89 second=248 amount=-4 -kerning first=946 second=213 amount=-2 -kerning first=1219 second=103 amount=-1 -kerning first=246 second=8217 amount=-1 -kerning first=375 second=225 amount=-1 -kerning first=168 second=87 amount=-5 -kerning first=1241 second=1185 amount=-1 -kerning first=47 second=337 amount=-1 -kerning first=50 second=99 amount=-1 -kerning first=190 second=249 amount=-1 -kerning first=70 second=261 amount=-1 -kerning first=8378 second=945 amount=-1 -kerning first=910 second=226 amount=-4 -kerning first=1168 second=356 amount=-5 -kerning first=1171 second=116 amount=-1 -kerning first=230 second=1078 amount=-2 -kerning first=948 second=368 amount=-2 -kerning first=113 second=338 amount=-2 -kerning first=1220 second=281 amount=-1 -kerning first=256 second=250 amount=-1 -kerning first=253 second=941 amount=-1 -kerning first=1207 second=972 amount=-1 -kerning first=376 second=380 amount=-2 -kerning first=169 second=262 amount=-2 -kerning first=282 second=187 amount=-1 -kerning first=48 second=968 amount=-1 -kerning first=51 second=277 amount=-1 -kerning first=194 second=199 amount=-2 -kerning first=303 second=1079 amount=-1 -kerning first=74 second=211 amount=-2 -kerning first=214 second=339 amount=-1 -kerning first=94 second=353 amount=-1 -kerning first=234 second=955 amount=-1 -kerning first=237 second=263 amount=-1 -kerning first=174 second=212 amount=-2 -kerning first=8225 second=283 amount=-1 -kerning first=55 second=224 amount=-1 -kerning first=1063 second=1256 amount=-2 -kerning first=195 second=354 amount=-5 -kerning first=192 second=1118 amount=-1 -kerning first=313 second=266 amount=-1 -kerning first=316 second=39 amount=-3 -kerning first=72 second=1184 amount=-5 -kerning first=215 second=970 amount=-1 -kerning first=101 second=63 amount=-2 -kerning first=956 second=253 amount=-1 -kerning first=1224 second=1257 amount=-1 -kerning first=121 second=225 amount=-1 -kerning first=175 second=367 amount=-1 -kerning first=196 second=1038 amount=-2 -kerning first=317 second=214 amount=-2 -kerning first=8361 second=372 amount=-5 -kerning first=1099 second=945 amount=-1 -kerning first=931 second=268 amount=-2 -kerning first=365 second=281 amount=-1 -kerning first=270 second=65 amount=-2 -kerning first=37 second=1241 amount=-1 -kerning first=40 second=187 amount=-1 -kerning first=172 second=8220 amount=-3 -kerning first=8230 second=1263 amount=-1 -kerning first=63 second=89 amount=-5 -kerning first=57 second=1079 amount=-1 -kerning first=1075 second=269 amount=-1 -kerning first=318 second=369 amount=-1 -kerning first=240 second=8221 amount=-3 -kerning first=369 second=228 amount=-1 -kerning first=966 second=118 amount=-1 -kerning first=268 second=916 amount=-1 -kerning first=271 second=240 amount=-1 -kerning first=44 second=102 amount=-2 -kerning first=1044 second=283 amount=-1 -kerning first=180 second=943 amount=-1 -kerning first=184 second=252 amount=-1 -kerning first=291 second=1256 amount=-2 -kerning first=64 second=266 amount=-2 -kerning first=1080 second=217 amount=-2 -kerning first=327 second=79 amount=-2 -kerning first=8366 second=949 amount=-1 -kerning first=902 second=229 amount=-1 -kerning first=8372 second=257 amount=-1 -kerning first=1117 second=119 amount=-4 -kerning first=936 second=1195 amount=-1 -kerning first=1194 second=1026 amount=-1 -kerning first=1202 second=286 amount=-1 -kerning first=250 second=253 amount=-1 -kerning first=367 second=1257 amount=-1 -kerning first=163 second=267 amount=-1 -kerning first=1049 second=230 amount=-1 -kerning first=1081 second=372 amount=-5 -kerning first=205 second=1101 amount=-1 -kerning first=325 second=945 amount=-1 -kerning first=900 second=1262 amount=-2 -kerning first=903 second=1240 amount=-2 -kerning first=91 second=116 amount=-1 -kerning first=942 second=1069 amount=-1 -kerning first=108 second=972 amount=-1 -kerning first=1210 second=231 amount=-1 -kerning first=374 second=331 amount=-3 -kerning first=971 second=243 amount=-1 -kerning first=49 second=227 amount=-1 -kerning first=189 second=357 amount=-1 -kerning first=192 second=117 amount=-1 -kerning first=304 second=269 amount=-1 -kerning first=69 second=369 amount=-1 -kerning first=209 second=973 amount=-1 -kerning first=8377 second=1176 amount=-1 -kerning first=1170 second=244 amount=-1 -kerning first=358 second=106 amount=1 -kerning first=258 second=118 amount=-4 -kerning first=375 second=962 amount=-1 -kerning first=165 second=1194 amount=-2 -kerning first=168 second=370 amount=-2 -kerning first=47 second=1256 amount=-2 -kerning first=1064 second=333 amount=-1 -kerning first=196 second=67 amount=-2 -kerning first=67 second=8222 amount=-1 -kerning first=76 second=79 amount=-1 -kerning first=1096 second=257 amount=-1 -kerning first=1090 second=949 amount=-1 -kerning first=8378 second=8211 amount=-2 -kerning first=337 second=119 amount=-1 -kerning first=915 second=271 amount=-1 -kerning first=910 second=963 amount=-4 -kerning first=93 second=920 amount=-2 -kerning first=236 second=371 amount=-1 -kerning first=113 second=1257 amount=-1 -kerning first=1220 second=1090 amount=-3 -kerning first=1027 second=346 amount=-1 -kerning first=287 second=230 amount=-1 -kerning first=1065 second=964 amount=-2 -kerning first=1071 second=45 amount=-2 -kerning first=197 second=242 amount=-1 -kerning first=306 second=947 amount=-4 -kerning first=74 second=945 amount=-1 -kerning first=214 second=1262 amount=-2 -kerning first=926 second=219 amount=-2 -kerning first=1174 second=1108 amount=-1 -kerning first=237 second=1069 amount=-1 -kerning first=363 second=231 amount=-1 -kerning first=955 second=361 amount=-1 -kerning first=960 second=121 amount=-1 -kerning first=1035 second=288 amount=-2 -kerning first=8240 second=336 amount=-2 -kerning first=58 second=269 amount=-1 -kerning first=1073 second=220 amount=-2 -kerning first=221 second=332 amount=-3 -kerning first=928 second=374 amount=-5 -kerning first=104 second=106 amount=1 -kerning first=1185 second=289 amount=-2 -kerning first=964 second=71 amount=-2 -kerning first=121 second=962 amount=-1 -kerning first=1240 second=1071 amount=-1 -kerning first=39 second=283 amount=-1 -kerning first=1039 second=233 amount=-1 -kerning first=294 second=333 amount=-1 -kerning first=62 second=217 amount=-2 -kerning first=1074 second=375 amount=-1 -kerning first=317 second=949 amount=-1 -kerning first=322 second=257 amount=-1 -kerning first=8369 second=210 amount=-2 -kerning first=1099 second=8211 amount=-2 -kerning first=346 second=194 amount=-1 -kerning first=942 second=84 amount=-5 -kerning first=105 second=286 amount=-2 -kerning first=365 second=1090 amount=-3 -kerning first=965 second=246 amount=-1 -kerning first=161 second=218 amount=-2 -kerning first=43 second=230 amount=-1 -kerning first=183 second=360 amount=-2 -kerning first=295 second=964 amount=-1 -kerning first=301 second=45 amount=-2 -kerning first=298 second=273 amount=-1 -kerning first=60 second=947 amount=-4 -kerning first=63 second=372 amount=-5 -kerning first=1071 second=8249 amount=-3 -kerning first=1083 second=85 amount=-2 -kerning first=206 second=287 amount=-1 -kerning first=8370 second=365 amount=-1 -kerning first=901 second=335 amount=-1 -kerning first=904 second=97 amount=-1 -kerning first=946 second=34 amount=-3 -kerning first=246 second=1175 amount=-2 -kerning first=249 second=361 amount=-1 -kerning first=252 second=121 amount=-1 -kerning first=369 second=965 amount=-1 -kerning first=162 second=373 amount=-4 -kerning first=271 second=1028 amount=-2 -kerning first=41 second=1263 amount=-1 -kerning first=1048 second=336 amount=-2 -kerning first=302 second=220 amount=-2 -kerning first=327 second=362 amount=-2 -kerning first=8366 second=8217 amount=-3 -kerning first=902 second=966 amount=-1 -kerning first=910 second=47 amount=-4 -kerning first=905 second=275 amount=-1 -kerning first=90 second=244 amount=-1 -kerning first=1220 second=99 amount=-1 -kerning first=256 second=71 amount=-2 -kerning first=1207 second=337 amount=-1 -kerning first=973 second=111 amount=-1 -kerning first=169 second=83 amount=-1 -kerning first=48 second=333 amount=-1 -kerning first=191 second=245 amount=-1 -kerning first=303 second=375 amount=-1 -kerning first=325 second=8211 amount=-2 -kerning first=237 second=84 amount=-5 -kerning first=357 second=234 amount=-1 -kerning first=111 second=1090 amount=-1 -kerning first=1210 second=968 amount=-1 -kerning first=1223 second=277 amount=-1 -kerning first=971 second=1035 amount=-5 -kerning first=8221 second=339 amount=-1 -kerning first=8225 second=101 amount=-1 -kerning first=52 second=273 amount=-1 -kerning first=55 second=45 amount=-4 -kerning first=49 second=964 amount=-3 -kerning first=301 second=8249 amount=-3 -kerning first=313 second=85 amount=-1 -kerning first=1095 second=365 amount=-1 -kerning first=215 second=335 amount=-1 -kerning first=92 second=1108 amount=-1 -kerning first=95 second=347 amount=-1 -kerning first=238 second=259 amount=-1 -kerning first=241 second=34 amount=-1 -kerning first=946 second=8216 amount=-3 -kerning first=375 second=8250 amount=-1 -kerning first=1240 second=86 amount=-2 -kerning first=8226 second=279 amount=-1 -kerning first=56 second=220 amount=-2 -kerning first=196 second=350 amount=-1 -kerning first=8361 second=213 amount=-2 -kerning first=73 second=1176 amount=-1 -kerning first=76 second=362 amount=-1 -kerning first=222 second=47 amount=-1 -kerning first=931 second=87 amount=-5 -kerning first=365 second=99 amount=-1 -kerning first=958 second=249 amount=-1 -kerning first=954 second=940 amount=-2 -kerning first=37 second=233 amount=-1 -kerning first=172 second=1177 amount=-1 -kerning first=176 second=363 amount=-1 -kerning first=57 second=375 amount=-1 -kerning first=200 second=290 amount=-2 -kerning first=318 second=210 amount=-2 -kerning first=74 second=8211 amount=-2 -kerning first=1103 second=250 amount=-1 -kerning first=934 second=262 amount=-2 -kerning first=103 second=234 amount=-1 -kerning first=1184 second=1241 amount=-2 -kerning first=363 second=968 amount=-1 -kerning first=963 second=199 amount=-2 -kerning first=123 second=376 amount=-5 -kerning first=1298 second=1079 amount=-1 -kerning first=1035 second=1098 amount=-3 -kerning first=174 second=8212 amount=-2 -kerning first=177 second=1059 amount=-2 -kerning first=1044 second=101 amount=-1 -kerning first=55 second=8249 amount=-2 -kerning first=64 second=85 amount=-2 -kerning first=1076 second=263 amount=-1 -kerning first=204 second=235 amount=-1 -kerning first=321 second=365 amount=-1 -kerning first=8363 second=1066 amount=-5 -kerning first=241 second=8216 amount=-1 -kerning first=964 second=354 amount=-5 -kerning first=121 second=8250 amount=-1 -kerning first=42 second=336 amount=-2 -kerning first=1039 second=970 amount=-1 -kerning first=185 second=248 amount=-1 -kerning first=1046 second=279 amount=-2 -kerning first=300 second=171 amount=-3 -kerning first=1081 second=213 amount=-2 -kerning first=317 second=8217 amount=-3 -kerning first=903 second=225 amount=-1 -kerning first=1118 second=115 amount=-1 -kerning first=942 second=367 amount=-1 -kerning first=108 second=337 amount=-1 -kerning first=251 second=249 amount=-1 -kerning first=965 second=1038 amount=-2 -kerning first=164 second=261 amount=-1 -kerning first=161 second=953 amount=-1 -kerning first=1051 second=226 amount=-1 -kerning first=69 second=210 amount=-2 -kerning first=1083 second=368 amount=-2 -kerning first=209 second=338 amount=-2 -kerning first=330 second=250 amount=-1 -kerning first=86 second=1116 amount=-2 -kerning first=89 second=352 amount=-1 -kerning first=1219 second=227 amount=-1 -kerning first=255 second=199 amount=-2 -kerning first=168 second=211 amount=-2 -kerning first=275 second=1098 amount=-1 -kerning first=278 second=339 amount=-1 -kerning first=8222 second=54 amount=-1 -kerning first=190 second=353 amount=-1 -kerning first=193 second=113 amount=-1 -kerning first=310 second=38 amount=-2 -kerning first=305 second=263 amount=-1 -kerning first=70 second=365 amount=-1 -kerning first=1080 second=8221 amount=-3 -kerning first=1084 second=1066 amount=-5 -kerning first=1171 second=240 amount=-1 -kerning first=236 second=212 amount=-2 -kerning first=948 second=943 amount=-1 -kerning first=951 second=252 amount=-1 -kerning first=253 second=1118 amount=-1 -kerning first=256 second=354 amount=-5 -kerning first=379 second=266 amount=-1 -kerning first=166 second=1184 amount=-5 -kerning first=169 second=366 amount=-2 -kerning first=282 second=279 amount=-1 -kerning first=8224 second=229 amount=-1 -kerning first=54 second=171 amount=-3 -kerning first=197 second=63 amount=-5 -kerning first=338 second=115 amount=-1 -kerning first=916 second=267 amount=-1 -kerning first=237 second=367 amount=-1 -kerning first=234 second=1185 amount=-1 -kerning first=8225 second=1240 amount=-2 -kerning first=313 second=368 amount=-1 -kerning first=8363 second=81 amount=-2 -kerning first=78 second=250 amount=-1 -kerning first=75 second=941 amount=-2 -kerning first=235 second=8220 amount=-1 -kerning first=956 second=357 amount=-1 -kerning first=1299 second=269 amount=-1 -kerning first=124 second=89 amount=-5 -kerning first=36 second=339 amount=-1 -kerning first=39 second=101 amount=-1 -kerning first=178 second=251 amount=-1 -kerning first=59 second=263 amount=-1 -kerning first=1074 second=216 amount=-2 -kerning first=314 second=1066 amount=-5 -kerning first=343 second=240 amount=-1 -kerning first=923 second=1194 amount=-2 -kerning first=931 second=370 amount=-2 -kerning first=1186 second=283 amount=-1 -kerning first=965 second=67 amount=-2 -kerning first=125 second=266 amount=-2 -kerning first=161 second=39 amount=-3 -kerning first=37 second=970 amount=-1 -kerning first=40 second=279 amount=-1 -kerning first=1041 second=229 amount=-1 -kerning first=63 second=213 amount=-2 -kerning first=1071 second=1195 amount=-1 -kerning first=206 second=103 amount=-1 -kerning first=323 second=253 amount=-1 -kerning first=86 second=115 amount=-3 -kerning first=947 second=230 amount=-1 -kerning first=162 second=214 amount=-2 -kerning first=1044 second=1240 amount=-1 -kerning first=184 second=356 amount=-5 -kerning first=299 second=268 amount=-2 -kerning first=64 second=368 amount=-2 -kerning first=1084 second=81 amount=-2 -kerning first=204 second=972 amount=-1 -kerning first=207 second=281 amount=-1 -kerning first=8372 second=361 amount=-1 -kerning first=8378 second=121 amount=-1 -kerning first=1117 second=243 amount=-1 -kerning first=250 second=357 amount=-1 -kerning first=253 second=117 amount=-1 -kerning first=373 second=269 amount=-1 -kerning first=163 second=369 amount=-1 -kerning first=273 second=973 amount=-1 -kerning first=8216 second=232 amount=-1 -kerning first=45 second=381 amount=-2 -kerning first=1049 second=332 amount=-2 -kerning first=303 second=216 amount=-2 -kerning first=65 second=1066 amount=-5 -kerning first=62 second=8221 amount=-3 -kerning first=903 second=962 amount=-1 -kerning first=91 second=240 amount=-1 -kerning first=354 second=283 amount=-3 -kerning first=108 second=1256 amount=-2 -kerning first=111 second=382 amount=-1 -kerning first=1210 second=333 amount=-1 -kerning first=170 second=79 amount=-2 -kerning first=280 second=229 amount=-1 -kerning first=1051 second=963 amount=-1 -kerning first=1063 second=271 amount=-1 -kerning first=189 second=920 amount=-2 -kerning first=304 second=371 amount=-1 -kerning first=301 second=1195 amount=-1 -kerning first=72 second=253 amount=-1 -kerning first=209 second=1257 amount=-1 -kerning first=912 second=218 amount=-2 -kerning first=1170 second=346 amount=-1 -kerning first=358 second=230 amount=-1 -kerning first=950 second=360 amount=-2 -kerning first=112 second=1083 amount=-1 -kerning first=1219 second=964 amount=-3 -kerning first=1224 second=273 amount=-1 -kerning first=258 second=242 amount=-1 -kerning first=375 second=947 amount=-4 -kerning first=1026 second=287 amount=-1 -kerning first=168 second=945 amount=-1 -kerning first=278 second=1262 amount=-2 -kerning first=8226 second=97 amount=-1 -kerning first=53 second=268 amount=-2 -kerning first=1067 second=219 amount=-2 -kerning first=305 second=1069 amount=-1 -kerning first=314 second=81 amount=-2 -kerning first=8361 second=34 amount=-3 -kerning first=1096 second=361 amount=-1 -kerning first=1099 second=121 amount=-1 -kerning first=915 second=373 amount=-4 -kerning first=1171 second=1028 amount=-2 -kerning first=1176 second=288 amount=-2 -kerning first=356 second=1263 amount=-2 -kerning first=119 second=269 amount=-1 -kerning first=1263 second=220 amount=-2 -kerning first=287 second=332 amount=-2 -kerning first=8224 second=966 amount=-1 -kerning first=57 second=216 amount=-2 -kerning first=1068 second=374 amount=-5 -kerning first=200 second=106 amount=1 -kerning first=80 second=118 amount=-4 -kerning first=1103 second=71 amount=-2 -kerning first=934 second=83 amount=-1 -kerning first=100 second=283 amount=-1 -kerning first=1184 second=233 amount=-2 -kerning first=363 second=333 amount=-1 -kerning first=960 second=245 amount=-1 -kerning first=123 second=217 amount=-2 -kerning first=1298 second=375 amount=-1 -kerning first=38 second=229 amount=-1 -kerning first=180 second=119 amount=-4 -kerning first=177 second=359 amount=-1 -kerning first=291 second=271 amount=-1 -kerning first=55 second=1195 amount=-1 -kerning first=58 second=371 amount=-1 -kerning first=198 second=1026 amount=-5 -kerning first=201 second=286 amount=-2 -kerning first=8363 second=364 amount=-2 -kerning first=936 second=258 amount=-3 -kerning first=367 second=273 amount=-1 -kerning first=121 second=947 amount=-4 -kerning first=124 second=372 amount=-5 -kerning first=36 second=1262 amount=-2 -kerning first=1039 second=335 amount=-1 -kerning first=1046 second=97 amount=-1 -kerning first=297 second=219 amount=-2 -kerning first=59 second=1069 amount=-1 -kerning first=65 second=81 amount=-2 -kerning first=1081 second=34 amount=-3 -kerning first=205 second=231 amount=-1 -kerning first=1078 second=259 amount=-1 -kerning first=322 second=361 amount=-1 -kerning first=8361 second=8216 amount=-3 -kerning first=325 second=121 amount=-1 -kerning first=222 second=1202 amount=-3 -kerning first=225 second=373 amount=-1 -kerning first=371 second=220 amount=-2 -kerning first=965 second=350 amount=-1 -kerning first=274 second=232 amount=-1 -kerning first=43 second=332 amount=-2 -kerning first=1041 second=966 amount=-1 -kerning first=186 second=244 amount=-1 -kerning first=298 second=374 amount=-5 -kerning first=66 second=256 amount=-1 -kerning first=330 second=71 amount=-2 -kerning first=8377 second=249 amount=-1 -kerning first=8370 second=940 amount=-1 -kerning first=904 second=221 amount=-5 -kerning first=89 second=193 amount=-5 -kerning first=1119 second=111 amount=-1 -kerning first=1116 second=351 amount=-1 -kerning first=252 second=245 amount=-1 -kerning first=372 second=375 amount=-1 -kerning first=162 second=949 amount=-1 -kerning first=165 second=257 amount=-1 -kerning first=47 second=271 amount=-1 -kerning first=305 second=84 amount=-5 -kerning first=1084 second=364 amount=-2 -kerning first=207 second=1090 amount=-3 -kerning first=905 second=376 amount=-5 -kerning first=87 second=1107 amount=-2 -kerning first=1117 second=1035 amount=-5 -kerning first=1168 second=291 amount=-1 -kerning first=944 second=1059 amount=-2 -kerning first=113 second=273 amount=-1 -kerning first=110 second=964 amount=-1 -kerning first=973 second=235 amount=-1 -kerning first=282 second=97 amount=-1 -kerning first=51 second=219 amount=-2 -kerning first=188 second=1108 amount=-1 -kerning first=191 second=347 amount=-1 -kerning first=306 second=259 amount=-1 -kerning first=1081 second=8216 amount=-3 -kerning first=74 second=121 amount=-1 -kerning first=217 second=46 amount=-1 -kerning first=903 second=8250 amount=-1 -kerning first=916 second=86 amount=-6 -kerning first=91 second=1028 amount=-2 -kerning first=94 second=288 amount=-2 -kerning first=357 second=336 amount=-2 -kerning first=952 second=248 amount=-1 -kerning first=117 second=220 amount=-2 -kerning first=167 second=1176 amount=-1 -kerning first=170 second=362 amount=-2 -kerning first=280 second=966 amount=-1 -kerning first=8225 second=225 amount=-1 -kerning first=52 second=374 amount=-5 -kerning first=1069 second=87 amount=-2 -kerning first=195 second=289 amount=-1 -kerning first=78 second=71 amount=-2 -kerning first=1095 second=940 amount=-1 -kerning first=912 second=953 amount=-1 -kerning first=238 second=363 amount=-1 -kerning first=168 second=8211 amount=-2 -kerning first=1036 second=100 amount=-2 -kerning first=171 second=1051 amount=-1 -kerning first=59 second=84 amount=-5 -kerning first=314 second=364 amount=-2 -kerning first=931 second=211 amount=-2 -kerning first=1176 second=1098 amount=-3 -kerning first=236 second=8212 amount=-2 -kerning first=239 second=1059 amount=-2 -kerning first=1186 second=101 amount=-1 -kerning first=1179 second=339 amount=-1 -kerning first=958 second=353 amount=-1 -kerning first=962 second=113 amount=-1 -kerning first=125 second=85 amount=-2 -kerning first=37 second=335 amount=-1 -kerning first=40 second=97 amount=-1 -kerning first=60 second=259 amount=-1 -kerning first=63 second=34 amount=-3 -kerning first=8365 second=252 amount=-1 -kerning first=83 second=196 amount=-1 -kerning first=1103 second=354 amount=-5 -kerning first=926 second=1184 amount=-5 -kerning first=934 second=366 amount=-2 -kerning first=103 second=336 amount=-2 -kerning first=1187 second=279 amount=-1 -kerning first=369 second=171 amount=-3 -kerning first=966 second=63 amount=-2 -kerning first=38 second=966 amount=-1 -kerning first=41 second=275 amount=-1 -kerning first=299 second=87 amount=-5 -kerning first=1073 second=1185 amount=-3 -kerning first=204 second=337 amount=-1 -kerning first=207 second=99 amount=-1 -kerning first=321 second=940 amount=-1 -kerning first=84 second=351 amount=-3 -kerning first=87 second=111 amount=-3 -kerning first=163 second=210 amount=-2 -kerning first=273 second=338 amount=-2 -kerning first=276 second=100 amount=-1 -kerning first=185 second=352 amount=-1 -kerning first=300 second=262 amount=-2 -kerning first=65 second=364 amount=-2 -kerning first=1074 second=8220 amount=-3 -kerning first=205 second=968 amount=-1 -kerning first=900 second=1079 amount=-1 -kerning first=906 second=89 amount=-5 -kerning first=354 second=101 amount=-3 -kerning first=254 second=113 amount=-1 -kerning first=251 second=353 amount=-1 -kerning first=374 second=263 amount=-4 -kerning first=164 second=365 amount=-1 -kerning first=8217 second=228 amount=-1 -kerning first=304 second=212 amount=-2 -kerning first=63 second=8216 amount=-3 -kerning first=1087 second=252 amount=-1 -kerning first=1083 second=943 amount=-1 -kerning first=330 second=354 amount=-5 -kerning first=912 second=39 amount=-3 -kerning first=112 second=378 amount=-1 -kerning first=258 second=63 amount=-5 -kerning first=162 second=8217 amount=-3 -kerning first=1026 second=103 amount=-1 -kerning first=1064 second=267 amount=-1 -kerning first=53 second=87 amount=-5 -kerning first=302 second=1185 amount=-3 -kerning first=305 second=367 amount=-1 -kerning first=70 second=940 amount=-1 -kerning first=73 second=249 amount=-1 -kerning first=213 second=379 amount=-1 -kerning first=915 second=214 amount=-2 -kerning first=1168 second=1101 amount=-1 -kerning first=230 second=8218 amount=-1 -kerning first=951 second=356 amount=-5 -kerning first=34 second=100 amount=-1 -kerning first=973 second=972 amount=-1 -kerning first=172 second=250 amount=-1 -kerning first=169 second=941 amount=-1 -kerning first=1027 second=281 amount=-1 -kerning first=54 second=262 amount=-2 -kerning first=194 second=1241 amount=-1 -kerning first=197 second=187 amount=-1 -kerning first=303 second=8220 amount=-3 -kerning first=77 second=199 amount=-2 -kerning first=214 second=1079 amount=-1 -kerning first=916 second=369 amount=-1 -kerning first=94 second=1098 amount=-3 -kerning first=100 second=101 amount=-1 -kerning first=240 second=251 amount=-1 -kerning first=120 second=263 amount=-2 -kerning first=1298 second=216 amount=-2 -kerning first=1035 second=228 amount=-1 -kerning first=8225 second=962 amount=-1 -kerning first=58 second=212 amount=-2 -kerning first=316 second=252 amount=-1 -kerning first=78 second=354 amount=-5 -kerning first=75 second=1118 amount=-2 -kerning first=221 second=266 amount=-3 -kerning first=224 second=39 amount=-1 -kerning first=936 second=79 amount=-2 -kerning first=1185 second=229 amount=-1 -kerning first=956 second=920 amount=-2 -kerning first=124 second=213 amount=-2 -kerning first=1299 second=371 amount=-1 -kerning first=39 second=225 amount=-1 -kerning first=178 second=355 amount=-1 -kerning first=182 second=115 amount=-1 -kerning first=294 second=267 amount=-1 -kerning first=56 second=1185 amount=-3 -kerning first=59 second=367 amount=-1 -kerning first=8364 second=360 amount=-2 -kerning first=1107 second=242 amount=-1 -kerning first=931 second=945 amount=-1 -kerning first=105 second=226 amount=-1 -kerning first=1186 second=1240 amount=-1 -kerning first=125 second=368 amount=-2 -kerning first=8250 second=1202 amount=-3 -kerning first=57 second=8220 amount=-3 -kerning first=206 second=227 amount=-1 -kerning first=323 second=357 amount=-1 -kerning first=901 second=269 amount=-1 -kerning first=372 second=216 amount=-2 -kerning first=126 second=1066 amount=-5 -kerning first=123 second=8221 amount=-3 -kerning first=1044 second=962 amount=-1 -kerning first=296 second=1194 amount=-2 -kerning first=299 second=370 amount=-2 -kerning first=64 second=943 amount=-1 -kerning first=204 second=1256 amount=-2 -kerning first=8378 second=245 amount=-1 -kerning first=905 second=217 amount=-2 -kerning first=944 second=359 amount=-1 -kerning first=948 second=119 amount=-4 -kerning first=1202 second=963 amount=-1 -kerning first=1207 second=271 amount=-1 -kerning first=250 second=920 amount=-2 -kerning first=967 second=1026 amount=-5 -kerning first=166 second=253 amount=-1 -kerning first=273 second=1257 amount=-1 -kerning first=48 second=267 amount=-1 -kerning first=1062 second=218 amount=-1 -kerning first=1085 second=360 amount=-2 -kerning first=903 second=947 amount=-4 -kerning first=906 second=372 amount=-5 -kerning first=88 second=1101 amount=-2 -kerning first=354 second=1240 amount=-1 -kerning first=1223 second=219 amount=-2 -kerning first=374 second=1069 amount=-2 -kerning first=1063 second=373 amount=-4 -kerning first=72 second=357 amount=-1 -kerning first=75 second=117 amount=-1 -kerning first=215 second=269 amount=-1 -kerning first=92 second=973 amount=-1 -kerning first=1175 second=232 amount=-1 -kerning first=358 second=332 amount=-2 -kerning first=1224 second=374 amount=-5 -kerning first=261 second=106 amount=1 -kerning first=175 second=118 amount=-4 -kerning first=8226 second=221 amount=-5 -kerning first=50 second=1194 amount=-2 -kerning first=53 second=370 amount=-2 -kerning first=1059 second=8230 amount=-1 -kerning first=196 second=283 amount=-1 -kerning first=1099 second=245 amount=-1 -kerning first=915 second=949 amount=-1 -kerning first=923 second=257 amount=-1 -kerning first=239 second=359 amount=-1 -kerning first=242 second=119 amount=-1 -kerning first=1027 second=1090 amount=-3 -kerning first=8230 second=376 amount=-4 -kerning first=200 second=230 amount=-1 -kerning first=315 second=360 amount=-1 -kerning first=80 second=242 amount=-1 -kerning first=341 second=287 amount=-1 -kerning first=100 second=1240 amount=-2 -kerning first=1184 second=335 amount=-2 -kerning first=955 second=1108 amount=-1 -kerning first=960 second=347 amount=-1 -kerning first=126 second=81 amount=-2 -kerning first=1035 second=965 amount=-1 -kerning first=180 second=243 amount=-1 -kerning first=291 second=373 amount=-4 -kerning first=8225 second=8250 amount=-1 -kerning first=198 second=1263 amount=-1 -kerning first=8366 second=248 amount=-1 -kerning first=1101 second=1113 amount=-1 -kerning first=345 second=232 amount=-1 -kerning first=928 second=1176 amount=-1 -kerning first=936 second=362 amount=-2 -kerning first=1185 second=966 amount=-2 -kerning first=247 second=244 amount=-1 -kerning first=367 second=374 amount=-5 -kerning first=964 second=289 amount=-1 -kerning first=266 second=1298 amount=-1 -kerning first=39 second=962 amount=-1 -kerning first=300 second=83 amount=-1 -kerning first=1074 second=1177 amount=-1 -kerning first=205 second=333 amount=-1 -kerning first=325 second=245 amount=-1 -kerning first=900 second=375 amount=-1 -kerning first=931 second=8211 amount=-2 -kerning first=105 second=963 amount=-1 -kerning first=108 second=271 amount=-1 -kerning first=111 second=44 amount=-1 -kerning first=968 second=234 amount=-1 -kerning first=274 second=334 amount=-2 -kerning first=46 second=218 amount=-1 -kerning first=1047 second=376 amount=-2 -kerning first=186 second=346 amount=-1 -kerning first=209 second=273 amount=-1 -kerning first=206 second=964 amount=-3 -kerning first=8377 second=353 amount=-1 -kerning first=89 second=287 amount=-4 -kerning first=1119 second=235 amount=-1 -kerning first=249 second=1108 amount=-1 -kerning first=252 second=347 amount=-1 -kerning first=375 second=259 amount=-1 -kerning first=372 second=951 amount=-2 -kerning first=165 second=361 amount=-1 -kerning first=168 second=121 amount=-1 -kerning first=281 second=46 amount=-1 -kerning first=47 second=373 amount=-4 -kerning first=190 second=288 amount=-2 -kerning first=1090 second=248 amount=-1 -kerning first=910 second=260 amount=-5 -kerning first=93 second=232 amount=-1 -kerning first=356 second=275 amount=-3 -kerning first=359 second=47 amount=-1 -kerning first=113 second=374 amount=-5 -kerning first=1256 second=87 amount=-2 -kerning first=256 second=289 amount=-1 -kerning first=973 second=337 amount=-1 -kerning first=1027 second=99 amount=-1 -kerning first=172 second=71 amount=-2 -kerning first=282 second=221 amount=-5 -kerning first=45 second=8230 amount=-1 -kerning first=54 second=83 amount=-1 -kerning first=194 second=233 amount=-1 -kerning first=306 second=363 amount=-1 -kerning first=303 second=1177 amount=-1 -kerning first=74 second=245 amount=-1 -kerning first=214 second=375 amount=-1 -kerning first=916 second=210 amount=-2 -kerning first=1174 second=338 amount=-1 -kerning first=952 second=352 amount=-1 -kerning first=260 second=234 amount=-1 -kerning first=174 second=246 amount=-1 -kerning first=55 second=258 amount=-5 -kerning first=8240 second=89 amount=-5 -kerning first=304 second=8212 amount=-2 -kerning first=121 second=259 amount=-1 -kerning first=124 second=34 amount=-3 -kerning first=1299 second=212 amount=-2 -kerning first=1036 second=224 amount=-1 -kerning first=39 second=46 amount=-1 -kerning first=1067 second=1184 amount=-5 -kerning first=317 second=248 amount=-1 -kerning first=222 second=260 amount=-2 -kerning first=915 second=8217 amount=-3 -kerning first=923 second=1063 amount=-3 -kerning first=102 second=275 amount=-1 -kerning first=1263 second=1185 amount=-3 -kerning first=40 second=221 amount=-5 -kerning first=183 second=111 amount=-1 -kerning first=179 second=351 amount=-1 -kerning first=60 second=363 amount=-1 -kerning first=57 second=1177 amount=-1 -kerning first=8365 second=356 amount=-5 -kerning first=8370 second=116 amount=-1 -kerning first=934 second=941 amount=-1 -kerning first=369 second=262 amount=-2 -kerning first=963 second=1241 amount=-1 -kerning first=126 second=364 amount=-2 -kerning first=1298 second=8220 amount=-3 -kerning first=271 second=277 amount=-1 -kerning first=41 second=376 amount=-5 -kerning first=180 second=1035 amount=-5 -kerning first=184 second=291 amount=-1 -kerning first=1048 second=89 amount=-5 -kerning first=299 second=211 amount=-2 -kerning first=58 second=8212 amount=-2 -kerning first=61 second=1059 amount=-2 -kerning first=1080 second=251 amount=-1 -kerning first=327 second=113 amount=-1 -kerning first=902 second=263 amount=-1 -kerning first=87 second=235 amount=-3 -kerning first=124 second=8216 amount=-3 -kerning first=276 second=224 amount=-1 -kerning first=1049 second=266 amount=-2 -kerning first=1062 second=39 amount=-2 -kerning first=297 second=1184 amount=-5 -kerning first=300 second=366 amount=-2 -kerning first=906 second=213 amount=-2 -kerning first=225 second=8217 amount=-1 -kerning first=354 second=225 amount=-2 -kerning first=1210 second=267 amount=-1 -kerning first=371 second=1185 amount=-3 -kerning first=374 second=367 amount=-2 -kerning first=167 second=249 amount=-1 -kerning first=164 second=940 amount=-1 -kerning first=49 second=261 amount=-1 -kerning first=1063 second=214 amount=-2 -kerning first=1087 second=356 amount=-5 -kerning first=1095 second=116 amount=-1 -kerning first=92 second=338 amount=-2 -kerning first=95 second=100 amount=-1 -kerning first=1119 second=972 amount=-1 -kerning first=1170 second=281 amount=-1 -kerning first=89 second=1097 amount=-3 -kerning first=255 second=1241 amount=-1 -kerning first=258 second=187 amount=-1 -kerning first=1026 second=227 amount=-1 -kerning first=278 second=1079 amount=-1 -kerning first=286 second=89 amount=-2 -kerning first=53 second=211 amount=-2 -kerning first=1064 second=369 amount=-1 -kerning first=193 second=339 amount=-1 -kerning first=196 second=101 amount=-1 -kerning first=190 second=1098 amount=-3 -kerning first=310 second=251 amount=-1 -kerning first=70 second=1117 amount=-1 -kerning first=73 second=353 amount=-1 -kerning first=76 second=113 amount=-1 -kerning first=213 second=955 amount=-2 -kerning first=905 second=8221 amount=-3 -kerning first=1176 second=228 amount=-1 -kerning first=356 second=1080 amount=-2 -kerning first=954 second=240 amount=-2 -kerning first=1220 second=1194 amount=-2 -kerning first=34 second=224 amount=-1 -kerning first=973 second=1256 amount=-2 -kerning first=172 second=354 amount=-5 -kerning first=169 second=1118 amount=-1 -kerning first=287 second=266 amount=-2 -kerning first=8230 second=217 amount=-1 -kerning first=51 second=1184 amount=-5 -kerning first=54 second=366 amount=-2 -kerning first=1071 second=79 amount=-2 -kerning first=197 second=279 amount=-1 -kerning first=194 second=970 amount=-1 -kerning first=341 second=103 amount=-1 -kerning first=926 second=253 amount=-1 -kerning first=100 second=225 amount=-1 -kerning first=1174 second=1257 amount=-1 -kerning first=240 second=355 amount=-1 -kerning first=363 second=267 amount=-1 -kerning first=117 second=1185 amount=-3 -kerning first=174 second=1038 amount=-2 -kerning first=291 second=214 amount=-2 -kerning first=8225 second=947 amount=-4 -kerning first=8240 second=372 amount=-5 -kerning first=201 second=226 amount=-1 -kerning first=316 second=356 amount=-5 -kerning first=321 second=116 amount=-1 -kerning first=101 second=380 amount=-1 -kerning first=36 second=1079 amount=-1 -kerning first=42 second=89 amount=-5 -kerning first=1039 second=269 amount=-1 -kerning first=294 second=369 amount=-1 -kerning first=62 second=251 amount=-1 -kerning first=8369 second=244 amount=-1 -kerning first=900 second=216 amount=-2 -kerning first=222 second=1066 amount=-2 -kerning first=942 second=118 amount=-4 -kerning first=1186 second=962 amount=-1 -kerning first=365 second=1194 amount=-2 -kerning first=965 second=283 amount=-1 -kerning first=125 second=943 amount=-1 -kerning first=161 second=252 amount=-1 -kerning first=43 second=266 amount=-2 -kerning first=46 second=39 amount=-1 -kerning first=301 second=79 amount=-2 -kerning first=1083 second=119 amount=-4 -kerning first=323 second=920 amount=-2 -kerning first=901 second=371 amount=-1 -kerning first=86 second=341 amount=-2 -kerning first=89 second=103 amount=-4 -kerning first=1206 second=218 amount=-1 -kerning first=8218 second=45 amount=-1 -kerning first=47 second=214 amount=-1 -kerning first=1048 second=372 amount=-5 -kerning first=1044 second=947 amount=-2 -kerning first=184 second=1101 amount=-1 -kerning first=299 second=945 amount=-1 -kerning first=67 second=356 amount=-1 -kerning first=70 second=116 amount=-1 -kerning first=8372 second=1108 amount=-1 -kerning first=8378 second=347 amount=-1 -kerning first=902 second=1069 amount=-1 -kerning first=910 second=81 amount=-3 -kerning first=87 second=972 amount=-3 -kerning first=90 second=281 amount=-1 -kerning first=1168 second=231 amount=-1 -kerning first=948 second=243 amount=-1 -kerning first=967 second=1263 amount=-1 -kerning first=166 second=357 amount=-1 -kerning first=169 second=117 amount=-1 -kerning first=48 second=369 amount=-1 -kerning first=188 second=973 amount=-1 -kerning first=1094 second=244 amount=-1 -kerning first=214 second=216 amount=-2 -kerning first=94 second=228 amount=-1 -kerning first=237 second=118 amount=-4 -kerning first=354 second=962 amount=-3 -kerning first=174 second=67 amount=-2 -kerning first=55 second=79 amount=-2 -kerning first=1063 second=949 amount=-1 -kerning first=195 second=229 amount=-1 -kerning first=313 second=119 amount=-3 -kerning first=72 second=920 amount=-2 -kerning first=215 second=371 amount=-1 -kerning first=92 second=1257 amount=-1 -kerning first=1170 second=1090 amount=-3 -kerning first=361 second=218 amount=-2 -kerning first=950 second=1107 amount=-2 -kerning first=1262 second=258 amount=-2 -kerning first=1026 second=964 amount=-3 -kerning first=1036 second=45 amount=-4 -kerning first=175 second=242 amount=-1 -kerning first=171 second=923 amount=-1 -kerning first=286 second=372 amount=-1 -kerning first=281 second=947 amount=-1 -kerning first=53 second=945 amount=-1 -kerning first=196 second=1240 amount=-2 -kerning first=193 second=1262 amount=-2 -kerning first=1096 second=1108 amount=-1 -kerning first=1099 second=347 amount=-1 -kerning first=923 second=361 amount=-1 -kerning first=931 second=121 amount=-1 -kerning first=1176 second=965 amount=-1 -kerning first=958 second=288 amount=-2 -kerning first=37 second=269 amount=-1 -kerning first=1037 second=220 amount=-2 -kerning first=8250 second=260 amount=-3 -kerning first=1071 second=362 amount=-2 -kerning first=200 second=332 amount=-2 -kerning first=318 second=244 amount=-1 -kerning first=83 second=106 amount=1 -kerning first=1103 second=289 amount=-1 -kerning first=100 second=962 amount=-1 -kerning first=360 second=8230 amount=-1 -kerning first=369 second=83 amount=-1 -kerning first=963 second=233 amount=-1 -kerning first=1298 second=1177 amount=-1 -kerning first=41 second=217 amount=-2 -kerning first=291 second=949 amount=-1 -kerning first=296 second=257 amount=-1 -kerning first=64 second=119 amount=-4 -kerning first=61 second=359 amount=-1 -kerning first=201 second=963 amount=-1 -kerning first=204 second=271 amount=-1 -kerning first=8366 second=352 amount=-1 -kerning first=902 second=84 amount=-5 -kerning first=81 second=1026 amount=-2 -kerning first=84 second=286 amount=-1 -kerning first=1194 second=376 amount=-2 -kerning first=247 second=346 amount=-1 -kerning first=370 second=258 amount=-2 -kerning first=160 second=360 amount=-2 -kerning first=1299 second=8212 amount=-2 -kerning first=273 second=273 amount=-1 -kerning first=276 second=45 amount=-2 -kerning first=42 second=372 amount=-5 -kerning first=1036 second=8249 amount=-3 -kerning first=1049 second=85 amount=-2 -kerning first=185 second=287 amount=-1 -kerning first=322 second=1108 amount=-1 -kerning first=325 second=347 amount=-1 -kerning first=906 second=34 amount=-3 -kerning first=903 second=259 amount=-1 -kerning first=88 second=231 amount=-2 -kerning first=354 second=46 amount=-3 -kerning first=108 second=373 amount=-4 -kerning first=251 second=288 amount=-2 -kerning first=968 second=336 amount=-2 -kerning first=8211 second=378 amount=-2 -kerning first=189 second=232 amount=-1 -kerning first=301 second=362 amount=-2 -kerning first=298 second=1176 amount=-1 -kerning first=69 second=244 amount=-1 -kerning first=209 second=374 amount=-5 -kerning first=330 second=289 amount=-1 -kerning first=1119 second=337 amount=-1 -kerning first=1170 second=99 amount=-1 -kerning first=950 second=111 amount=-1 -kerning first=946 second=351 amount=-1 -kerning first=1219 second=261 amount=-1 -kerning first=255 second=233 amount=-1 -kerning first=375 second=363 amount=-1 -kerning first=969 second=967 amount=-1 -kerning first=168 second=245 amount=-1 -kerning first=278 second=375 amount=-1 -kerning first=8212 second=1078 amount=-2 -kerning first=47 second=949 amount=-1 -kerning first=50 second=257 amount=-1 -kerning first=1064 second=210 amount=-2 -kerning first=299 second=8211 amount=-2 -kerning first=216 second=84 amount=-2 -kerning first=93 second=334 amount=-2 -kerning first=1168 second=968 amount=-1 -kerning first=1171 second=277 amount=-1 -kerning first=236 second=246 amount=-1 -kerning first=948 second=1035 amount=-5 -kerning first=951 second=291 amount=-1 -kerning first=373 second=8212 amount=-1 -kerning first=276 second=8249 amount=-3 -kerning first=287 second=85 amount=-2 -kerning first=8224 second=263 amount=-1 -kerning first=194 second=335 amount=-1 -kerning first=197 second=97 amount=-1 -kerning first=74 second=347 amount=-1 -kerning first=906 second=8216 amount=-3 -kerning first=94 second=965 amount=-1 -kerning first=354 second=8250 amount=-1 -kerning first=1223 second=1184 amount=-5 -kerning first=260 second=336 amount=-2 -kerning first=35 second=220 amount=-2 -kerning first=1035 second=171 amount=-3 -kerning first=174 second=350 amount=-1 -kerning first=8240 second=213 amount=-2 -kerning first=52 second=1176 amount=-1 -kerning first=55 second=362 amount=-2 -kerning first=1066 second=1063 amount=-1 -kerning first=1063 second=8217 amount=-3 -kerning first=195 second=966 amount=-1 -kerning first=198 second=275 amount=-1 -kerning first=8363 second=115 amount=-1 -kerning first=78 second=289 amount=-1 -kerning first=928 second=249 amount=-1 -kerning first=361 second=953 amount=-1 -kerning first=121 second=363 amount=-1 -kerning first=36 second=375 amount=-1 -kerning first=178 second=290 amount=-2 -kerning first=294 second=210 amount=-2 -kerning first=53 second=8211 amount=-2 -kerning first=1074 second=250 amount=-1 -kerning first=317 second=352 amount=-1 -kerning first=343 second=277 amount=-1 -kerning first=958 second=1098 amount=-3 -kerning first=962 second=339 amount=-1 -kerning first=965 second=101 amount=-1 -kerning first=119 second=8212 amount=-1 -kerning first=43 second=85 amount=-2 -kerning first=1041 second=263 amount=-1 -kerning first=183 second=235 amount=-1 -kerning first=8230 second=8221 amount=-1 -kerning first=8250 second=1066 amount=-3 -kerning first=8370 second=240 amount=-1 -kerning first=901 second=212 amount=-2 -kerning first=934 second=1118 amount=-1 -kerning first=100 second=8250 amount=-1 -kerning first=1206 second=39 amount=-2 -kerning first=369 second=366 amount=-2 -kerning first=963 second=970 amount=-1 -kerning first=162 second=248 amount=-1 -kerning first=1048 second=213 amount=-2 -kerning first=291 second=8217 amount=-3 -kerning first=67 second=197 amount=-1 -kerning first=1084 second=115 amount=-1 -kerning first=1080 second=355 amount=-1 -kerning first=210 second=87 amount=-2 -kerning first=902 second=367 amount=-1 -kerning first=84 second=1096 amount=-2 -kerning first=87 second=337 amount=-3 -kerning first=90 second=99 amount=-1 -kerning first=48 second=210 amount=-2 -kerning first=1049 second=368 amount=-2 -kerning first=188 second=338 amount=-2 -kerning first=191 second=100 amount=-1 -kerning first=303 second=250 amount=-1 -kerning first=300 second=941 amount=-1 -kerning first=900 second=8220 amount=-3 -kerning first=91 second=277 amount=-1 -kerning first=88 second=968 amount=-1 -kerning first=354 second=326 amount=-2 -kerning first=357 second=89 amount=-5 -kerning first=1210 second=369 amount=-1 -kerning first=251 second=1098 amount=-3 -kerning first=254 second=339 amount=-1 -kerning first=374 second=942 amount=-3 -kerning first=170 second=113 amount=-1 -kerning first=167 second=353 amount=-1 -kerning first=277 second=955 amount=-1 -kerning first=280 second=263 amount=-1 -kerning first=49 second=365 amount=-1 -kerning first=1051 second=1066 amount=-5 -kerning first=1095 second=240 amount=-1 -kerning first=215 second=212 amount=-2 -kerning first=912 second=252 amount=-1 -kerning first=95 second=224 amount=-1 -kerning first=1119 second=1256 amount=-2 -kerning first=358 second=266 amount=-2 -kerning first=361 second=39 amount=-3 -kerning first=255 second=970 amount=-1 -kerning first=258 second=279 amount=-1 -kerning first=8222 second=371 amount=-1 -kerning first=47 second=8217 amount=-3 -kerning first=1067 second=253 amount=-1 -kerning first=196 second=225 amount=-1 -kerning first=310 second=355 amount=-1 -kerning first=314 second=115 amount=-1 -kerning first=236 second=1038 amount=-2 -kerning first=951 second=1101 amount=-1 -kerning first=113 second=8218 amount=2 -kerning first=287 second=368 amount=-2 -kerning first=8224 second=1069 amount=-1 -kerning first=57 second=250 amount=-1 -kerning first=54 second=941 amount=-1 -kerning first=77 second=1241 amount=-1 -kerning first=80 second=187 amount=-1 -kerning first=214 second=8220 amount=-3 -kerning first=341 second=227 amount=-1 -kerning first=926 second=357 amount=-1 -kerning first=934 second=117 amount=-1 -kerning first=103 second=89 amount=-5 -kerning first=1184 second=269 amount=-2 -kerning first=363 second=369 amount=-1 -kerning first=955 second=973 amount=-1 -kerning first=123 second=251 amount=-1 -kerning first=38 second=263 amount=-1 -kerning first=288 second=1066 amount=-1 -kerning first=283 second=8221 amount=-1 -kerning first=321 second=240 amount=-1 -kerning first=221 second=943 amount=-2 -kerning first=964 second=229 amount=-1 -kerning first=42 second=213 amount=-2 -kerning first=1039 second=371 amount=-1 -kerning first=1036 second=1195 amount=-2 -kerning first=185 second=103 amount=-1 -kerning first=297 second=253 amount=-1 -kerning first=62 second=355 amount=-1 -kerning first=65 second=115 amount=-1 -kerning first=205 second=267 amount=-1 -kerning first=8369 second=346 amount=-1 -kerning first=942 second=242 amount=-1 -kerning first=108 second=214 amount=-2 -kerning first=1186 second=947 amount=-2 -kerning first=965 second=1240 amount=-2 -kerning first=962 second=1262 amount=-2 -kerning first=161 second=356 amount=-5 -kerning first=164 second=116 amount=-1 -kerning first=274 second=268 amount=-2 -kerning first=43 second=368 amount=-2 -kerning first=1041 second=1069 amount=-1 -kerning first=1051 second=81 amount=-2 -kerning first=183 second=972 amount=-1 -kerning first=186 second=281 amount=-1 -kerning first=1083 second=243 amount=-1 -kerning first=8370 second=1028 amount=-2 -kerning first=8377 second=288 amount=-2 -kerning first=89 second=227 amount=-4 -kerning first=249 second=973 amount=-1 -kerning first=278 second=216 amount=-2 -kerning first=8212 second=374 amount=-4 -kerning first=41 second=8221 amount=-3 -kerning first=1059 second=256 amount=-2 -kerning first=190 second=228 amount=-1 -kerning first=44 second=1066 amount=-5 -kerning first=305 second=118 amount=-4 -kerning first=70 second=240 amount=-1 -kerning first=67 second=916 amount=-1 -kerning first=207 second=1194 amount=-2 -kerning first=87 second=1256 amount=-2 -kerning first=1168 second=333 amount=-1 -kerning first=236 second=67 amount=-2 -kerning first=1220 second=257 amount=-1 -kerning first=1207 second=949 amount=-1 -kerning first=256 second=229 amount=-1 -kerning first=973 second=271 amount=-1 -kerning first=166 second=920 amount=-2 -kerning first=276 second=1195 amount=-1 -kerning first=8224 second=84 amount=-5 -kerning first=51 second=253 amount=-1 -kerning first=188 second=1257 amount=-1 -kerning first=1174 second=273 amount=-1 -kerning first=237 second=242 amount=-1 -kerning first=354 second=947 amount=-2 -kerning first=357 second=372 amount=-5 -kerning first=952 second=287 amount=-1 -kerning first=114 second=945 amount=-1 -kerning first=254 second=1262 amount=-2 -kerning first=280 second=1069 amount=-1 -kerning first=8240 second=34 amount=-3 -kerning first=8225 second=259 amount=-1 -kerning first=313 second=243 amount=-1 -kerning first=1095 second=1028 amount=-2 -kerning first=1178 second=220 amount=-1 -kerning first=956 second=232 amount=-1 -kerning first=1224 second=1176 amount=-1 -kerning first=36 second=216 amount=-2 -kerning first=1033 second=374 amount=-5 -kerning first=178 second=106 amount=1 -kerning first=59 second=118 amount=-4 -kerning first=1074 second=71 amount=-2 -kerning first=196 second=962 amount=-1 -kerning first=8364 second=111 amount=-1 -kerning first=8361 second=351 amount=-1 -kerning first=931 second=245 amount=-1 -kerning first=365 second=257 amount=-1 -kerning first=125 second=119 amount=-4 -kerning first=270 second=44 amount=-1 -kerning first=34 second=1195 amount=-1 -kerning first=37 second=371 amount=-1 -kerning first=1041 second=84 amount=-5 -kerning first=176 second=1026 amount=-5 -kerning first=179 second=286 amount=-2 -kerning first=1075 second=246 amount=-1 -kerning first=203 second=218 amount=-2 -kerning first=318 second=346 amount=-1 -kerning first=8365 second=291 amount=-1 -kerning first=223 second=360 amount=-2 -kerning first=100 second=947 amount=-4 -kerning first=103 second=372 amount=-5 -kerning first=963 second=335 amount=-1 -kerning first=271 second=219 amount=-2 -kerning first=38 second=1069 amount=-1 -kerning first=44 second=81 amount=-1 -kerning first=1048 second=34 amount=-3 -kerning first=184 second=231 amount=-1 -kerning first=296 second=361 amount=-1 -kerning first=8240 second=8216 amount=-3 -kerning first=299 second=121 amount=-1 -kerning first=64 second=243 amount=-1 -kerning first=204 second=373 amount=-4 -kerning first=321 second=1028 amount=-2 -kerning first=250 second=232 amount=-1 -kerning first=367 second=1176 amount=-1 -kerning first=964 second=966 amount=-1 -kerning first=967 second=275 amount=-1 -kerning first=163 second=244 amount=-1 -kerning first=273 second=374 amount=-5 -kerning first=269 second=1203 amount=-1 -kerning first=45 second=256 amount=-2 -kerning first=303 second=71 amount=-2 -kerning first=68 second=193 amount=-2 -kerning first=1081 second=351 amount=-1 -kerning first=1085 second=111 amount=-1 -kerning first=900 second=1177 amount=-1 -kerning first=903 second=363 amount=-1 -kerning first=88 second=333 amount=-2 -kerning first=108 second=949 amount=-1 -kerning first=1210 second=210 amount=-2 -kerning first=248 second=1299 amount=-1 -kerning first=280 second=84 amount=-5 -kerning first=1051 second=364 amount=-2 -kerning first=186 second=1090 amount=-3 -kerning first=189 second=334 amount=-2 -kerning first=304 second=246 amount=-1 -kerning first=69 second=346 amount=-1 -kerning first=1083 second=1035 amount=-5 -kerning first=1087 second=291 amount=-1 -kerning first=212 second=258 amount=-2 -kerning first=8377 second=1098 amount=-3 -kerning first=901 second=8212 amount=-2 -kerning first=904 second=1059 amount=-2 -kerning first=95 second=45 amount=-2 -kerning first=92 second=273 amount=-1 -kerning first=89 second=964 amount=-2 -kerning first=358 second=85 amount=-2 -kerning first=950 second=235 amount=-1 -kerning first=1219 second=365 amount=-1 -kerning first=255 second=335 amount=-1 -kerning first=258 second=97 amount=-1 -kerning first=165 second=1108 amount=-1 -kerning first=168 second=347 amount=-1 -kerning first=8222 second=212 amount=-1 -kerning first=47 second=1175 amount=-1 -kerning first=50 second=361 amount=-1 -kerning first=1048 second=8216 amount=-3 -kerning first=53 second=121 amount=-1 -kerning first=190 second=965 amount=-1 -kerning first=70 second=1028 amount=-2 -kerning first=73 second=288 amount=-2 -kerning first=910 second=937 amount=-2 -kerning first=915 second=248 amount=-1 -kerning first=96 second=220 amount=-2 -kerning first=1176 second=171 amount=-3 -kerning first=236 second=350 amount=-1 -kerning first=233 second=1113 amount=-1 -kerning first=113 second=1176 amount=-1 -kerning first=256 second=966 amount=-1 -kerning first=262 second=47 amount=-1 -kerning first=172 second=289 amount=-1 -kerning first=8224 second=367 amount=-1 -kerning first=57 second=71 amount=-2 -kerning first=1065 second=940 amount=-1 -kerning first=197 second=221 amount=-5 -kerning first=311 second=351 amount=-1 -kerning first=315 second=111 amount=-1 -kerning first=77 second=233 amount=-1 -kerning first=214 second=1177 amount=-1 -kerning first=335 second=967 amount=-2 -kerning first=240 second=290 amount=-2 -kerning first=363 second=210 amount=-2 -kerning first=955 second=338 amount=-2 -kerning first=960 second=100 amount=-1 -kerning first=114 second=8211 amount=-1 -kerning first=1298 second=250 amount=-1 -kerning first=38 second=84 amount=-5 -kerning first=1035 second=262 amount=-2 -kerning first=177 second=234 amount=-1 -kerning first=58 second=246 amount=-1 -kerning first=1073 second=199 amount=-2 -kerning first=198 second=376 amount=-5 -kerning first=316 second=291 amount=-1 -kerning first=313 second=1035 amount=-6 -kerning first=215 second=8212 amount=-2 -kerning first=936 second=113 amount=-1 -kerning first=928 second=353 amount=-1 -kerning first=95 second=8249 amount=-3 -kerning first=1185 second=263 amount=-2 -kerning first=266 second=377 amount=-1 -kerning first=39 second=259 amount=-1 -kerning first=42 second=34 amount=-3 -kerning first=1039 second=212 amount=-2 -kerning first=1074 second=354 amount=-5 -kerning first=196 second=8250 amount=-1 -kerning first=1107 second=279 amount=-1 -kerning first=965 second=225 amount=-1 -kerning first=274 second=87 amount=-5 -kerning first=1037 second=1185 amount=-3 -kerning first=1041 second=367 amount=-1 -kerning first=183 second=337 amount=-1 -kerning first=186 second=99 amount=-1 -kerning first=298 second=249 amount=-1 -kerning first=63 second=351 amount=-1 -kerning first=206 second=261 amount=-1 -kerning first=203 second=953 amount=-1 -kerning first=8365 second=1101 amount=-1 -kerning first=1116 second=226 amount=-1 -kerning first=352 second=88 amount=-1 -kerning first=249 second=338 amount=-2 -kerning first=252 second=100 amount=-1 -kerning first=369 second=941 amount=-1 -kerning first=372 second=250 amount=-2 -kerning first=966 second=380 amount=-1 -kerning first=162 second=352 amount=-1 -kerning first=44 second=364 amount=-1 -kerning first=184 second=968 amount=-1 -kerning first=302 second=199 amount=-2 -kerning first=64 second=1035 amount=-5 -kerning first=327 second=339 amount=-1 -kerning first=8372 second=973 amount=-1 -kerning first=324 second=1098 amount=-1 -kerning first=905 second=251 amount=-1 -kerning first=1202 second=1066 amount=-2 -kerning first=42 second=8216 amount=-3 -kerning first=1049 second=943 amount=-1 -kerning first=191 second=224 amount=-1 -kerning first=300 second=1118 amount=-1 -kerning first=303 second=354 amount=-5 -kerning first=208 second=1184 amount=-2 -kerning first=94 second=171 amount=-3 -kerning first=357 second=213 amount=-2 -kerning first=108 second=8217 amount=-3 -kerning first=952 second=103 amount=-1 -kerning first=1223 second=253 amount=-1 -kerning first=374 second=1119 amount=-3 -kerning first=277 second=1185 amount=-1 -kerning first=280 second=367 amount=-1 -kerning first=52 second=249 amount=-1 -kerning first=49 second=940 amount=-1 -kerning first=304 second=1038 amount=-2 -kerning first=1087 second=1101 amount=-1 -kerning first=912 second=356 amount=-5 -kerning first=358 second=368 amount=-2 -kerning first=950 second=972 amount=-1 -kerning first=1240 second=65 amount=-2 -kerning first=175 second=187 amount=-1 -kerning first=278 second=8220 amount=-3 -kerning first=56 second=199 amount=-2 -kerning first=1067 second=357 amount=-1 -kerning first=193 second=1079 amount=-1 -kerning first=199 second=89 amount=-2 -kerning first=73 second=1098 amount=-3 -kerning first=76 second=339 amount=-1 -kerning first=1096 second=973 amount=-1 -kerning first=958 second=228 amount=-1 -kerning first=37 second=212 amount=-2 -kerning first=1027 second=1194 amount=-2 -kerning first=287 second=943 amount=-1 -kerning first=57 second=354 amount=-5 -kerning first=54 second=1118 amount=-1 -kerning first=200 second=266 amount=-2 -kerning first=203 second=39 amount=-3 -kerning first=80 second=279 amount=-1 -kerning first=1103 second=229 amount=-1 -kerning first=77 second=970 amount=-1 -kerning first=926 second=920 amount=-2 -kerning first=103 second=213 amount=-2 -kerning first=1184 second=371 amount=-1 -kerning first=955 second=1257 amount=-1 -kerning first=126 second=115 amount=-1 -kerning first=123 second=355 amount=-1 -kerning first=38 second=367 amount=-1 -kerning first=35 second=1185 amount=-3 -kerning first=8260 second=360 amount=-2 -kerning first=58 second=1038 amount=-2 -kerning first=1076 second=242 amount=-1 -kerning first=204 second=214 amount=-2 -kerning first=316 second=1101 amount=-1 -kerning first=8366 second=287 amount=-1 -kerning first=84 second=226 amount=-2 -kerning first=1202 second=81 amount=-1 -kerning first=247 second=281 amount=-1 -kerning first=36 second=8220 amount=-3 -kerning first=185 second=227 amount=-1 -kerning first=300 second=117 amount=-1 -kerning first=297 second=357 amount=-1 -kerning first=205 second=369 amount=-1 -kerning first=322 second=973 amount=-1 -kerning first=105 second=1066 amount=-5 -kerning first=251 second=228 amount=-1 -kerning first=374 second=118 amount=-2 -kerning first=965 second=962 amount=-1 -kerning first=164 second=240 amount=-1 -kerning first=274 second=370 amount=-2 -kerning first=43 second=943 amount=-1 -kerning first=46 second=252 amount=-1 -kerning first=183 second=1256 amount=-2 -kerning first=304 second=67 amount=-2 -kerning first=330 second=229 amount=-1 -kerning first=904 second=359 amount=-1 -kerning first=86 second=1081 amount=-2 -kerning first=89 second=328 amount=-3 -kerning first=1119 second=271 amount=-1 -kerning first=1116 second=963 amount=-2 -kerning first=946 second=286 amount=-2 -kerning first=249 second=1257 amount=-1 -kerning first=305 second=242 amount=-1 -kerning first=327 second=1262 amount=-2 -kerning first=93 second=268 amount=-2 -kerning first=1171 second=219 amount=-2 -kerning first=951 second=231 amount=-1 -kerning first=1220 second=361 amount=-1 -kerning first=379 second=243 amount=-1 -kerning first=973 second=373 amount=-4 -kerning first=51 second=357 amount=-1 -kerning first=54 second=117 amount=-1 -kerning first=194 second=269 amount=-1 -kerning first=1097 second=232 amount=-1 -kerning first=916 second=244 amount=-1 -kerning first=1174 second=374 amount=-2 -kerning first=240 second=106 amount=1 -kerning first=360 second=256 amount=-2 -kerning first=1298 second=71 amount=-2 -kerning first=1035 second=83 amount=-1 -kerning first=174 second=283 amount=-1 -kerning first=8225 second=363 amount=-1 -kerning first=58 second=67 amount=-2 -kerning first=198 second=217 amount=-2 -kerning first=78 second=229 amount=-1 -kerning first=221 second=119 amount=-2 -kerning first=95 second=1195 amount=-1 -kerning first=1175 second=1073 amount=-1 -kerning first=238 second=1026 amount=-5 -kerning first=953 second=1090 amount=-2 -kerning first=956 second=334 amount=-2 -kerning first=1299 second=246 amount=-1 -kerning first=178 second=230 amount=-1 -kerning first=289 second=360 amount=-2 -kerning first=8226 second=1059 amount=-2 -kerning first=8222 second=8212 amount=-1 -kerning first=59 second=242 amount=-1 -kerning first=196 second=947 amount=-4 -kerning first=199 second=372 amount=-1 -kerning first=317 second=287 amount=-1 -kerning first=8364 second=235 amount=-1 -kerning first=76 second=1262 amount=-1 -kerning first=923 second=1108 amount=-1 -kerning first=931 second=347 amount=-1 -kerning first=105 second=81 amount=-2 -kerning first=1195 second=34 amount=-1 -kerning first=365 second=361 amount=-1 -kerning first=958 second=965 amount=-1 -kerning first=125 second=243 amount=-1 -kerning first=262 second=1202 amount=-2 -kerning first=267 second=373 amount=-1 -kerning first=176 second=1263 amount=-1 -kerning first=323 second=232 amount=-1 -kerning first=1103 second=966 amount=-1 -kerning first=344 second=374 amount=-2 -kerning first=934 second=1033 amount=-3 -kerning first=372 second=71 amount=-2 -kerning first=184 second=333 amount=-1 -kerning first=299 second=245 amount=-1 -kerning first=1080 second=290 amount=-2 -kerning first=204 second=949 amount=-1 -kerning first=207 second=257 amount=-1 -kerning first=8372 second=338 amount=-2 -kerning first=8378 second=100 amount=-1 -kerning first=84 second=963 amount=-3 -kerning first=87 second=271 amount=-3 -kerning first=944 second=234 amount=-1 -kerning first=1202 second=364 amount=-1 -kerning first=250 second=334 amount=-2 -kerning first=247 second=1090 amount=-3 -kerning first=373 second=246 amount=-1 -kerning first=967 second=376 amount=-5 -kerning first=163 second=346 amount=-1 -kerning first=1039 second=8212 amount=-2 -kerning first=188 second=273 amount=-1 -kerning first=191 second=45 amount=-2 -kerning first=185 second=964 amount=-3 -kerning first=1085 second=235 amount=-1 -kerning first=91 second=219 amount=-2 -kerning first=354 second=259 amount=-2 -kerning first=357 second=34 amount=-3 -kerning first=1195 second=8216 amount=-1 -kerning first=251 second=965 amount=-1 -kerning first=965 second=8250 amount=-1 -kerning first=164 second=1028 amount=-2 -kerning first=167 second=288 amount=-2 -kerning first=8211 second=1184 amount=-4 -kerning first=1063 second=248 amount=-1 -kerning first=192 second=220 amount=-2 -kerning first=304 second=350 amount=-1 -kerning first=72 second=232 amount=-1 -kerning first=209 second=1176 amount=-1 -kerning first=330 second=966 amount=-1 -kerning first=336 second=47 amount=-1 -kerning first=89 second=1203 amount=-2 -kerning first=92 second=374 amount=-5 -kerning first=950 second=337 amount=-1 -kerning first=1219 second=940 amount=-1 -kerning first=1224 second=249 amount=-1 -kerning first=258 second=221 amount=-5 -kerning first=381 second=111 amount=-1 -kerning first=1026 second=261 amount=-1 -kerning first=278 second=1177 amount=-1 -kerning first=8212 second=8218 amount=-1 -kerning first=53 second=245 amount=-1 -kerning first=193 second=375 amount=-1 -kerning first=310 second=290 amount=-3 -kerning first=1096 second=338 amount=-2 -kerning first=1099 second=100 amount=-1 -kerning first=213 second=1051 amount=-1 -kerning first=910 second=1116 amount=-3 -kerning first=915 second=352 amount=-1 -kerning first=1176 second=262 amount=-2 -kerning first=239 second=234 amount=-1 -kerning first=951 second=968 amount=-1 -kerning first=954 second=277 amount=-2 -kerning first=1263 second=199 amount=-2 -kerning first=119 second=246 amount=-1 -kerning first=34 second=258 amount=-3 -kerning first=282 second=1059 amount=-2 -kerning first=8230 second=251 amount=-1 -kerning first=1071 second=113 amount=-1 -kerning first=191 second=8249 amount=-3 -kerning first=200 second=85 amount=-2 -kerning first=315 second=235 amount=-1 -kerning first=80 second=97 amount=-1 -kerning first=77 second=335 amount=-1 -kerning first=103 second=34 amount=-3 -kerning first=100 second=259 amount=-1 -kerning first=1184 second=212 amount=-3 -kerning first=357 second=8216 amount=-3 -kerning first=960 second=224 amount=-1 -kerning first=1298 second=354 amount=-5 -kerning first=268 second=86 amount=-1 -kerning first=1028 second=1184 amount=-1 -kerning first=1035 second=366 amount=-2 -kerning first=177 second=336 amount=-2 -kerning first=291 second=248 amount=-1 -kerning first=58 second=350 amount=-1 -kerning first=8366 second=103 amount=-1 -kerning first=78 second=966 amount=-1 -kerning first=84 second=47 amount=-4 -kerning first=339 second=1076 amount=-1 -kerning first=1178 second=1185 amount=-2 -kerning first=247 second=99 amount=-1 -kerning first=367 second=249 amount=-1 -kerning first=160 second=111 amount=-1 -kerning first=1299 second=1038 amount=-2 -kerning first=124 second=351 amount=-1 -kerning first=36 second=1177 amount=-1 -kerning first=62 second=290 amount=-2 -kerning first=205 second=210 amount=-2 -kerning first=322 second=338 amount=-2 -kerning first=325 second=100 amount=-1 -kerning first=900 second=250 amount=-1 -kerning first=8364 second=972 amount=-1 -kerning first=8369 second=281 amount=-1 -kerning first=942 second=187 amount=-1 -kerning first=105 second=364 amount=-2 -kerning first=371 second=199 amount=-2 -kerning first=962 second=1079 amount=-1 -kerning first=968 second=89 amount=-5 -kerning first=125 second=1035 amount=-5 -kerning first=161 second=291 amount=-1 -kerning first=274 second=211 amount=-2 -kerning first=37 second=8212 amount=-2 -kerning first=40 second=1059 amount=-2 -kerning first=298 second=353 amount=-1 -kerning first=301 second=113 amount=-1 -kerning first=206 second=365 amount=-1 -kerning first=8377 second=228 amount=-1 -kerning first=103 second=8216 amount=-3 -kerning first=252 second=224 amount=-1 -kerning first=369 second=1118 amount=-1 -kerning first=972 second=39 amount=-1 -kerning first=271 second=1184 amount=-5 -kerning first=8218 second=79 amount=-1 -kerning first=47 second=248 amount=-2 -kerning first=187 second=378 amount=-1 -kerning first=190 second=171 amount=-3 -kerning first=204 second=8217 amount=-3 -kerning first=8372 second=1257 amount=-1 -kerning first=905 second=355 amount=-1 -kerning first=910 second=115 amount=-3 -kerning first=93 second=87 amount=-5 -kerning first=1168 second=267 amount=-1 -kerning first=113 second=249 amount=-1 -kerning first=973 second=214 amount=-2 -kerning first=8216 second=945 amount=-1 -kerning first=1062 second=356 amount=-2 -kerning first=74 second=100 amount=-1 -kerning first=1085 second=972 amount=-1 -kerning first=1094 second=281 amount=-1 -kerning first=214 second=250 amount=-1 -kerning first=94 second=262 amount=-2 -kerning first=237 second=187 amount=-1 -kerning first=351 second=8220 amount=-1 -kerning first=952 second=227 amount=-1 -kerning first=117 second=199 amount=-2 -kerning first=1223 second=357 amount=-1 -kerning first=254 second=1079 amount=-1 -kerning first=260 second=89 amount=-5 -kerning first=167 second=1098 amount=-3 -kerning first=170 second=339 amount=-1 -kerning first=174 second=101 amount=-1 -kerning first=52 second=353 amount=-1 -kerning first=55 second=113 amount=-1 -kerning first=195 second=263 amount=-1 -kerning first=1170 second=1194 amount=-2 -kerning first=241 second=102 amount=-1 -kerning first=358 second=943 amount=-1 -kerning first=361 second=252 amount=-1 -kerning first=950 second=1256 amount=-2 -kerning first=1299 second=67 amount=-2 -kerning first=972 second=8222 amount=-1 -kerning first=1036 second=79 amount=-3 -kerning first=175 second=279 amount=-1 -kerning first=8226 second=359 amount=-1 -kerning first=1067 second=920 amount=-2 -kerning first=8361 second=286 amount=-2 -kerning first=317 second=103 amount=-1 -kerning first=1096 second=1257 amount=-1 -kerning first=96 second=1185 amount=-3 -kerning first=179 second=226 amount=-1 -kerning first=290 second=356 amount=-1 -kerning first=200 second=368 amount=-2 -kerning first=315 second=972 amount=-1 -kerning first=318 second=281 amount=-1 -kerning first=8365 second=231 amount=-1 -kerning first=97 second=8220 amount=-1 -kerning first=369 second=117 amount=-1 -kerning first=963 second=269 amount=-1 -kerning first=41 second=251 amount=-1 -kerning first=198 second=8221 amount=-3 -kerning first=201 second=1066 amount=-5 -kerning first=1080 second=106 amount=1 -kerning first=902 second=118 amount=-4 -kerning first=967 second=217 amount=-2 -kerning first=266 second=8222 amount=-1 -kerning first=276 second=79 amount=-2 -kerning first=1049 second=119 amount=-4 -kerning first=1046 second=359 amount=-1 -kerning first=297 second=920 amount=-2 -kerning first=1081 second=286 amount=-2 -kerning first=322 second=1257 amount=-1 -kerning first=8369 second=1090 amount=-3 -kerning first=88 second=267 amount=-2 -kerning first=1118 second=218 amount=-2 -kerning first=248 second=1083 amount=-1 -kerning first=374 second=242 amount=-4 -kerning first=965 second=947 amount=-4 -kerning first=968 second=372 amount=-5 -kerning first=161 second=1101 amount=-1 -kerning first=274 second=945 amount=-1 -kerning first=46 second=356 amount=-5 -kerning first=49 second=116 amount=-1 -kerning first=189 second=268 amount=-2 -kerning first=69 second=281 amount=-1 -kerning first=1087 second=231 amount=-1 -kerning first=8377 second=965 amount=-1 -kerning first=1119 second=373 amount=-4 -kerning first=255 second=269 amount=-1 -kerning first=165 second=973 amount=-1 -kerning first=8212 second=1176 amount=-1 -kerning first=8218 second=362 amount=-1 -kerning first=1064 second=244 amount=-1 -kerning first=193 second=216 amount=-2 -kerning first=73 second=228 amount=-1 -kerning first=93 second=370 amount=-2 -kerning first=90 second=1194 amount=-1 -kerning first=1176 second=83 amount=-1 -kerning first=236 second=283 amount=-1 -kerning first=951 second=333 amount=-1 -kerning first=973 second=949 amount=-1 -kerning first=1027 second=257 amount=-1 -kerning first=172 second=229 amount=-1 -kerning first=287 second=119 amount=-4 -kerning first=282 second=359 amount=-1 -kerning first=8220 second=1051 amount=-3 -kerning first=51 second=920 amount=-2 -kerning first=1068 second=194 amount=-1 -kerning first=191 second=1195 amount=-1 -kerning first=194 second=371 amount=-1 -kerning first=306 second=1026 amount=-5 -kerning first=1094 second=1090 amount=-2 -kerning first=338 second=218 amount=-2 -kerning first=916 second=346 amount=-1 -kerning first=240 second=230 amount=-1 -kerning first=955 second=273 amount=-1 -kerning first=960 second=45 amount=-2 -kerning first=952 second=964 amount=-3 -kerning first=120 second=242 amount=-2 -kerning first=257 second=947 amount=-1 -kerning first=260 second=372 amount=-5 -kerning first=174 second=1240 amount=-2 -kerning first=170 second=1262 amount=-2 -kerning first=195 second=1069 amount=-1 -kerning first=201 second=81 amount=-2 -kerning first=316 second=231 amount=-1 -kerning first=221 second=243 amount=-4 -kerning first=336 second=1202 amount=-3 -kerning first=339 second=373 amount=-1 -kerning first=928 second=288 amount=-2 -kerning first=238 second=1263 amount=-1 -kerning first=1299 second=350 amount=-1 -kerning first=178 second=332 amount=-2 -kerning first=294 second=244 amount=-1 -kerning first=1074 second=289 amount=-1 -kerning first=62 second=106 amount=1 -kerning first=1070 second=1033 amount=-1 -kerning first=8364 second=337 amount=-1 -kerning first=8369 second=99 amount=-1 -kerning first=900 second=71 amount=-2 -kerning first=337 second=8230 amount=-1 -kerning first=962 second=375 amount=-1 -kerning first=40 second=359 amount=-1 -kerning first=43 second=119 amount=-4 -kerning first=179 second=963 amount=-1 -kerning first=183 second=271 amount=-1 -kerning first=60 second=1026 amount=-5 -kerning first=63 second=286 amount=-2 -kerning first=318 second=1090 amount=-3 -kerning first=323 second=334 amount=-2 -kerning first=8365 second=968 amount=-1 -kerning first=901 second=246 amount=-1 -kerning first=86 second=218 amount=-2 -kerning first=8370 second=277 amount=-1 -kerning first=1184 second=8212 amount=-4 -kerning first=249 second=273 amount=-1 -kerning first=252 second=45 amount=-2 -kerning first=246 second=964 amount=-1 -kerning first=960 second=8249 amount=-3 -kerning first=162 second=287 amount=-1 -kerning first=296 second=1108 amount=-1 -kerning first=299 second=347 amount=-1 -kerning first=207 second=361 amount=-1 -kerning first=8378 second=224 amount=-1 -kerning first=87 second=373 amount=-1 -kerning first=944 second=336 amount=-2 -kerning first=1207 second=248 amount=-1 -kerning first=253 second=220 amount=-2 -kerning first=376 second=110 amount=-3 -kerning first=166 second=232 amount=-1 -kerning first=273 second=1176 amount=-1 -kerning first=276 second=362 amount=-2 -kerning first=279 second=122 amount=-1 -kerning first=48 second=244 amount=-1 -kerning first=188 second=374 amount=-5 -kerning first=303 second=289 amount=-1 -kerning first=1085 second=337 amount=-1 -kerning first=1094 second=99 amount=-1 -kerning first=214 second=71 amount=-2 -kerning first=332 second=221 amount=-3 -kerning first=906 second=351 amount=-1 -kerning first=85 second=8230 amount=-1 -kerning first=94 second=83 amount=-1 -kerning first=1118 second=953 amount=-1 -kerning first=354 second=363 amount=-2 -kerning first=945 second=967 amount=-2 -kerning first=114 second=245 amount=-1 -kerning first=254 second=375 amount=-1 -kerning first=377 second=290 amount=-1 -kerning first=274 second=8211 amount=-2 -kerning first=8217 second=941 amount=-1 -kerning first=1063 second=352 amount=-1 -kerning first=195 second=84 amount=-5 -kerning first=69 second=1090 amount=-3 -kerning first=72 second=334 amount=-2 -kerning first=1087 second=968 amount=-1 -kerning first=215 second=246 amount=-1 -kerning first=1095 second=277 amount=-1 -kerning first=912 second=291 amount=-1 -kerning first=908 second=1035 amount=-2 -kerning first=1224 second=353 amount=-1 -kerning first=252 second=8249 amount=-3 -kerning first=381 second=235 amount=-1 -kerning first=1026 second=365 amount=-1 -kerning first=175 second=97 amount=-1 -kerning first=50 second=1108 amount=-1 -kerning first=53 second=347 amount=-1 -kerning first=196 second=259 amount=-1 -kerning first=73 second=965 amount=-1 -kerning first=79 second=46 amount=-1 -kerning first=1099 second=224 amount=-1 -kerning first=219 second=196 amount=-2 -kerning first=340 second=86 amount=-1 -kerning first=1171 second=1184 amount=-5 -kerning first=1176 second=366 amount=-2 -kerning first=239 second=336 amount=-2 -kerning first=958 second=171 amount=-3 -kerning first=262 second=260 amount=-1 -kerning first=973 second=8217 amount=-3 -kerning first=172 second=966 amount=-1 -kerning first=176 second=275 amount=-1 -kerning first=8230 second=355 amount=-1 -kerning first=57 second=289 amount=-1 -kerning first=315 second=337 amount=-1 -kerning first=318 second=99 amount=-1 -kerning first=80 second=221 amount=-5 -kerning first=223 second=111 amount=-1 -kerning first=338 second=953 amount=-1 -kerning first=341 second=261 amount=-1 -kerning first=100 second=363 amount=-1 -kerning first=366 second=198 amount=-2 -kerning first=123 second=290 amount=-2 -kerning first=1035 second=941 amount=-1 -kerning first=291 second=352 amount=-1 -kerning first=61 second=234 amount=-1 -kerning first=1073 second=1241 amount=-1 -kerning first=201 second=364 amount=-2 -kerning first=316 second=968 amount=-1 -kerning first=321 second=277 amount=-1 -kerning first=8366 second=227 amount=-1 -kerning first=81 second=376 amount=-3 -kerning first=928 second=1098 amount=-3 -kerning first=936 second=339 amount=-1 -kerning first=367 second=353 amount=-1 -kerning first=961 second=955 amount=-1 -kerning first=964 second=263 amount=-1 -kerning first=160 second=235 amount=-1 -kerning first=325 second=224 amount=-1 -kerning first=8364 second=1256 amount=-2 -kerning first=900 second=354 amount=-5 -kerning first=1118 second=39 amount=-3 -kerning first=942 second=279 amount=-1 -kerning first=108 second=248 amount=-1 -kerning first=248 second=378 amount=-1 -kerning first=251 second=171 amount=-3 -kerning first=374 second=63 amount=-1 -kerning first=968 second=213 amount=-2 -kerning first=267 second=8217 amount=-1 -kerning first=1051 second=115 amount=-1 -kerning first=189 second=87 amount=-5 -kerning first=69 second=99 amount=-1 -kerning first=206 second=940 amount=-1 -kerning first=209 second=249 amount=-1 -kerning first=901 second=1038 amount=-2 -kerning first=86 second=953 amount=-1 -kerning first=89 second=261 amount=-4 -kerning first=1119 second=214 amount=-2 -kerning first=946 second=226 amount=-1 -kerning first=1206 second=356 amount=-2 -kerning first=1219 second=116 amount=-1 -kerning first=165 second=338 amount=-2 -kerning first=168 second=100 amount=-1 -kerning first=278 second=250 amount=-1 -kerning first=47 second=352 amount=-1 -kerning first=190 second=262 amount=-2 -kerning first=302 second=1241 amount=-1 -kerning first=305 second=187 amount=-1 -kerning first=70 second=277 amount=-1 -kerning first=327 second=1079 amount=-1 -kerning first=334 second=89 amount=-3 -kerning first=93 second=211 amount=-2 -kerning first=1168 second=369 amount=-1 -kerning first=230 second=1098 amount=-1 -kerning first=236 second=101 amount=-1 -kerning first=356 second=251 amount=-2 -kerning first=113 second=353 amount=-1 -kerning first=256 second=263 amount=-1 -kerning first=967 second=8221 amount=-3 -kerning first=8224 second=118 amount=-4 -kerning first=1065 second=240 amount=-1 -kerning first=194 second=212 amount=-2 -kerning first=74 second=224 amount=-1 -kerning first=1085 second=1256 amount=-2 -kerning first=214 second=354 amount=-5 -kerning first=338 second=39 amount=-3 -kerning first=91 second=1184 amount=-5 -kerning first=94 second=366 amount=-2 -kerning first=237 second=279 amount=-1 -kerning first=1223 second=920 amount=-2 -kerning first=260 second=213 amount=-2 -kerning first=174 second=225 amount=-1 -kerning first=192 second=1185 amount=-3 -kerning first=195 second=367 amount=-1 -kerning first=215 second=1038 amount=-2 -kerning first=912 second=1101 amount=-1 -kerning first=1175 second=945 amount=-1 -kerning first=361 second=356 amount=-5 -kerning first=956 second=268 amount=-2 -kerning first=381 second=972 amount=-1 -kerning first=36 second=250 amount=-1 -kerning first=56 second=1241 amount=-1 -kerning first=59 second=187 amount=-1 -kerning first=193 second=8220 amount=-3 -kerning first=317 second=227 amount=-1 -kerning first=82 second=89 amount=-2 -kerning first=923 second=973 amount=-1 -kerning first=962 second=216 amount=-2 -kerning first=262 second=1066 amount=-1 -kerning first=259 second=8221 amount=-1 -kerning first=1041 second=118 amount=-4 -kerning first=1075 second=283 amount=-1 -kerning first=200 second=943 amount=-1 -kerning first=203 second=252 amount=-1 -kerning first=315 second=1256 amount=-1 -kerning first=8365 second=333 amount=-1 -kerning first=901 second=67 amount=-2 -kerning first=86 second=39 amount=-3 -kerning first=960 second=1195 amount=-1 -kerning first=963 second=371 amount=-1 -kerning first=162 second=103 amount=-1 -kerning first=271 second=253 amount=-1 -kerning first=41 second=355 amount=-1 -kerning first=184 second=267 amount=-1 -kerning first=1080 second=230 amount=-1 -kerning first=8372 second=273 amount=-1 -kerning first=8378 second=45 amount=-2 -kerning first=902 second=242 amount=-1 -kerning first=8366 second=964 amount=-3 -kerning first=87 second=214 amount=-2 -kerning first=1106 second=947 amount=-1 -kerning first=345 second=945 amount=-1 -kerning first=936 second=1262 amount=-2 -kerning first=250 second=268 amount=-2 -kerning first=964 second=1069 amount=-1 -kerning first=160 second=972 amount=-1 -kerning first=163 second=281 amount=-1 -kerning first=1049 second=243 amount=-1 -kerning first=88 second=369 amount=-1 -kerning first=1210 second=244 amount=-1 -kerning first=254 second=216 amount=-2 -kerning first=167 second=228 amount=-1 -kerning first=280 second=118 amount=-4 -kerning first=49 second=240 amount=-1 -kerning first=186 second=1194 amount=-2 -kerning first=189 second=370 amount=-2 -kerning first=304 second=283 amount=-1 -kerning first=1087 second=333 amount=-1 -kerning first=215 second=67 amount=-2 -kerning first=86 second=8222 amount=-4 -kerning first=95 second=79 amount=-2 -kerning first=1119 second=949 amount=-1 -kerning first=1170 second=257 amount=-1 -kerning first=358 second=119 amount=-4 -kerning first=946 second=963 amount=-1 -kerning first=950 second=271 amount=-1 -kerning first=252 second=1195 amount=-1 -kerning first=255 second=371 amount=-1 -kerning first=375 second=1026 amount=-5 -kerning first=165 second=1257 amount=-1 -kerning first=1064 second=346 amount=-1 -kerning first=310 second=230 amount=-1 -kerning first=1096 second=273 amount=-1 -kerning first=1099 second=45 amount=-2 -kerning first=213 second=923 amount=-2 -kerning first=331 second=947 amount=-1 -kerning first=334 second=372 amount=-2 -kerning first=8378 second=8249 amount=-3 -kerning first=915 second=287 amount=-1 -kerning first=93 second=945 amount=-1 -kerning first=236 second=1240 amount=-2 -kerning first=1220 second=1108 amount=-1 -kerning first=256 second=1069 amount=-1 -kerning first=382 second=231 amount=-1 -kerning first=1027 second=361 amount=-1 -kerning first=287 second=243 amount=-1 -kerning first=1065 second=1028 amount=-1 -kerning first=306 second=1263 amount=-1 -kerning first=77 second=269 amount=-1 -kerning first=926 second=232 amount=-1 -kerning first=240 second=332 amount=-2 -kerning first=363 second=244 amount=-1 -kerning first=955 second=374 amount=-5 -kerning first=123 second=106 amount=7 -kerning first=1298 second=289 amount=-1 -kerning first=38 second=118 amount=-1 -kerning first=174 second=962 amount=-1 -kerning first=8240 second=351 amount=-1 -kerning first=8260 second=111 amount=-1 -kerning first=58 second=283 amount=-1 -kerning first=1073 second=233 amount=-1 -kerning first=316 second=333 amount=-1 -kerning first=221 second=345 amount=-3 -kerning first=104 second=119 amount=-1 -kerning first=964 second=84 amount=-5 -kerning first=121 second=1026 amount=-5 -kerning first=124 second=286 amount=-2 -kerning first=1039 second=246 amount=-1 -kerning first=182 second=218 amount=-2 -kerning first=294 second=346 amount=-1 -kerning first=8249 second=1035 amount=-1 -kerning first=62 second=230 amount=-1 -kerning first=199 second=1174 amount=-2 -kerning first=202 second=360 amount=-2 -kerning first=317 second=964 amount=-3 -kerning first=325 second=45 amount=-2 -kerning first=322 second=273 amount=-1 -kerning first=82 second=372 amount=-1 -kerning first=1099 second=8249 amount=-3 -kerning first=942 second=97 amount=-1 -kerning first=365 second=1108 amount=-1 -kerning first=965 second=259 amount=-1 -kerning first=968 second=34 amount=-3 -kerning first=161 second=231 amount=-1 -kerning first=267 second=1175 amount=-1 -kerning first=274 second=121 amount=-1 -kerning first=43 second=243 amount=-1 -kerning first=1047 second=196 amount=-1 -kerning first=183 second=373 amount=-4 -kerning first=298 second=288 amount=-2 -kerning first=60 second=1263 amount=-1 -kerning first=8377 second=171 amount=-3 -kerning first=901 second=350 amount=-1 -kerning first=246 second=1203 amount=-2 -kerning first=249 second=374 amount=-5 -kerning first=372 second=289 amount=-2 -kerning first=278 second=71 amount=-2 -kerning first=47 second=193 amount=-5 -kerning first=1048 second=351 amount=-1 -kerning first=190 second=83 amount=-1 -kerning first=302 second=233 amount=-1 -kerning first=327 second=375 amount=-1 -kerning first=905 second=290 amount=-2 -kerning first=87 second=949 amount=-3 -kerning first=1168 second=210 amount=-2 -kerning first=345 second=8211 amount=-1 -kerning first=256 second=84 amount=-5 -kerning first=376 second=234 amount=-4 -kerning first=166 second=334 amount=-2 -kerning first=163 second=1090 amount=-3 -kerning first=48 second=346 amount=-1 -kerning first=1049 second=1035 amount=-5 -kerning first=74 second=45 amount=-2 -kerning first=325 second=8249 amount=-3 -kerning first=237 second=97 amount=-1 -kerning first=114 second=347 amount=-1 -kerning first=260 second=34 amount=-3 -kerning first=968 second=8216 amount=-3 -kerning first=167 second=965 amount=-1 -kerning first=49 second=1028 amount=-2 -kerning first=52 second=288 amount=-2 -kerning first=215 second=350 amount=-1 -kerning first=336 second=260 amount=-2 -kerning first=95 second=362 amount=-2 -kerning first=1119 second=8217 amount=-3 -kerning first=92 second=1176 amount=-1 -kerning first=98 second=122 amount=-1 -kerning first=238 second=275 amount=-1 -kerning first=956 second=87 amount=-5 -kerning first=118 second=289 amount=-1 -kerning first=381 second=337 amount=-1 -kerning first=36 second=71 amount=-2 -kerning first=1026 second=940 amount=-1 -kerning first=175 second=221 amount=-5 -kerning first=289 second=111 amount=-1 -kerning first=8222 second=1038 amount=-1 -kerning first=56 second=233 amount=-1 -kerning first=196 second=363 amount=-1 -kerning first=193 second=1177 amount=-1 -kerning first=8361 second=226 amount=-1 -kerning first=76 second=375 amount=-1 -kerning first=923 second=338 amount=-2 -kerning first=93 second=8211 amount=-2 -kerning first=931 second=100 amount=-1 -kerning first=1176 second=941 amount=-1 -kerning first=958 second=262 amount=-2 -kerning first=122 second=234 amount=-1 -kerning first=1263 second=1241 amount=-1 -kerning first=37 second=246 amount=-1 -kerning first=1037 second=199 amount=-2 -kerning first=176 second=376 amount=-5 -kerning first=287 second=1035 amount=-5 -kerning first=1071 second=339 amount=-1 -kerning first=194 second=8212 amount=-2 -kerning first=197 second=1059 amount=-2 -kerning first=1068 second=1098 amount=-2 -kerning first=1075 second=101 amount=-1 -kerning first=74 second=8249 amount=-3 -kerning first=1103 second=263 amount=-1 -kerning first=223 second=235 amount=-1 -kerning first=963 second=212 amount=-2 -kerning first=260 second=8216 amount=-3 -kerning first=1035 second=1118 amount=-1 -kerning first=174 second=8250 amount=-1 -kerning first=61 second=336 amount=-2 -kerning first=1073 second=970 amount=-1 -kerning first=1076 second=279 amount=-1 -kerning first=204 second=248 amount=-1 -kerning first=902 second=63 amount=-5 -kerning first=84 second=260 amount=-6 -kerning first=339 second=8217 amount=-1 -kerning first=244 second=1076 amount=-1 -kerning first=250 second=87 amount=-5 -kerning first=961 second=1185 amount=-1 -kerning first=964 second=367 amount=-1 -kerning first=160 second=337 amount=-1 -kerning first=163 second=99 amount=-1 -kerning first=273 second=249 amount=-1 -kerning first=42 second=351 amount=-1 -kerning first=1039 second=1038 amount=-2 -kerning first=185 second=261 amount=-1 -kerning first=182 second=953 amount=-1 -kerning first=1081 second=226 amount=-1 -kerning first=208 second=198 amount=-2 -kerning first=88 second=210 amount=-3 -kerning first=108 second=352 amount=-1 -kerning first=251 second=262 amount=-2 -kerning first=371 second=1241 amount=-1 -kerning first=374 second=187 amount=-2 -kerning first=962 second=8220 amount=-3 -kerning first=161 second=968 amount=-1 -kerning first=164 second=277 amount=-1 -kerning first=43 second=1035 amount=-5 -kerning first=46 second=291 amount=-1 -kerning first=189 second=211 amount=-2 -kerning first=301 second=339 amount=-1 -kerning first=304 second=101 amount=-1 -kerning first=298 second=1098 amount=-3 -kerning first=209 second=353 amount=-1 -kerning first=330 second=263 amount=-1 -kerning first=86 second=1179 amount=-2 -kerning first=89 second=365 amount=-2 -kerning first=1108 second=8221 amount=-1 -kerning first=1219 second=240 amount=-1 -kerning first=255 second=212 amount=-2 -kerning first=372 second=1099 amount=-2 -kerning first=168 second=224 amount=-1 -kerning first=278 second=354 amount=-5 -kerning first=8212 second=1044 amount=-4 -kerning first=8222 second=67 amount=-1 -kerning first=187 second=1184 amount=-3 -kerning first=190 second=366 amount=-2 -kerning first=305 second=279 amount=-1 -kerning first=302 second=970 amount=-1 -kerning first=70 second=378 amount=-1 -kerning first=73 second=171 amount=-3 -kerning first=8378 second=1195 amount=-1 -kerning first=915 second=103 amount=-1 -kerning first=910 second=341 amount=-3 -kerning first=1171 second=253 amount=-1 -kerning first=236 second=225 amount=-1 -kerning first=951 second=267 amount=-1 -kerning first=256 second=367 amount=-1 -kerning first=253 second=1185 amount=-3 -kerning first=8224 second=242 amount=-1 -kerning first=8220 second=923 amount=-3 -kerning first=311 second=226 amount=-1 -kerning first=94 second=941 amount=-1 -kerning first=916 second=281 amount=-1 -kerning first=117 second=1241 amount=-1 -kerning first=120 second=187 amount=-1 -kerning first=254 second=8220 amount=-3 -kerning first=35 second=199 amount=-2 -kerning first=1035 second=117 amount=-1 -kerning first=170 second=1079 amount=-1 -kerning first=177 second=89 amount=-5 -kerning first=52 second=1098 amount=-3 -kerning first=55 second=339 amount=-1 -kerning first=58 second=101 amount=-1 -kerning first=198 second=251 amount=-1 -kerning first=78 second=263 amount=-1 -kerning first=336 second=1066 amount=-2 -kerning first=333 second=8221 amount=-1 -kerning first=928 second=228 amount=-1 -kerning first=956 second=370 amount=-2 -kerning first=1299 second=283 amount=-1 -kerning first=381 second=1256 amount=-1 -kerning first=36 second=354 amount=-5 -kerning first=1039 second=67 amount=-2 -kerning first=178 second=266 amount=-2 -kerning first=182 second=39 amount=-3 -kerning first=59 second=279 amount=-1 -kerning first=56 second=970 amount=-1 -kerning first=1074 second=229 amount=-1 -kerning first=8361 second=963 amount=-1 -kerning first=8364 second=271 amount=-1 -kerning first=1099 second=1195 amount=-1 -kerning first=923 second=1257 amount=-1 -kerning first=105 second=115 amount=-1 -kerning first=37 second=1038 amount=-2 -kerning first=1041 second=242 amount=-1 -kerning first=183 second=214 amount=-2 -kerning first=63 second=226 amount=-1 -kerning first=1071 second=1262 amount=-2 -kerning first=203 second=356 amount=-5 -kerning first=206 second=116 amount=-1 -kerning first=323 second=268 amount=-2 -kerning first=8370 second=219 amount=-2 -kerning first=1103 second=1069 amount=-1 -kerning first=223 second=972 amount=-1 -kerning first=947 second=243 amount=-1 -kerning first=162 second=227 amount=-1 -kerning first=271 second=357 amount=-1 -kerning first=184 second=369 amount=-1 -kerning first=296 second=973 amount=-1 -kerning first=1080 second=332 amount=-2 -kerning first=327 second=216 amount=-2 -kerning first=8372 second=374 amount=-5 -kerning first=905 second=106 amount=1 -kerning first=353 second=118 amount=-1 -kerning first=247 second=1194 amount=-2 -kerning first=250 second=370 amount=-2 -kerning first=373 second=283 amount=-1 -kerning first=160 second=1256 amount=-2 -kerning first=8216 second=245 amount=-1 -kerning first=191 second=79 amount=-2 -kerning first=303 second=229 amount=-1 -kerning first=1081 second=963 amount=-1 -kerning first=1085 second=271 amount=-1 -kerning first=325 second=1195 amount=-1 -kerning first=903 second=1026 amount=-5 -kerning first=906 second=286 amount=-2 -kerning first=91 second=253 amount=-1 -kerning first=1210 second=346 amount=-1 -kerning first=971 second=360 amount=-2 -kerning first=974 second=120 amount=-1 -kerning first=280 second=242 amount=-1 -kerning first=1063 second=287 amount=-1 -kerning first=189 second=945 amount=-1 -kerning first=304 second=1240 amount=-2 -kerning first=301 second=1262 amount=-2 -kerning first=72 second=268 amount=-2 -kerning first=1095 second=219 amount=-2 -kerning first=330 second=1069 amount=-1 -kerning first=912 second=231 amount=-1 -kerning first=1170 second=361 amount=-1 -kerning first=358 second=243 amount=-1 -kerning first=950 second=373 amount=-4 -kerning first=1219 second=1028 amount=-2 -kerning first=1224 second=288 amount=-2 -kerning first=375 second=1263 amount=-1 -kerning first=50 second=973 amount=-1 -kerning first=1067 second=232 amount=-1 -kerning first=310 second=332 amount=-3 -kerning first=76 second=216 amount=-1 -kerning first=1096 second=374 amount=-5 -kerning first=910 second=1298 amount=-5 -kerning first=99 second=118 amount=-1 -kerning first=236 second=962 amount=-1 -kerning first=362 second=193 amount=-2 -kerning first=958 second=83 amount=-1 -kerning first=119 second=283 amount=-1 -kerning first=1263 second=233 amount=-1 -kerning first=382 second=333 amount=-1 -kerning first=37 second=67 amount=-2 -kerning first=176 second=217 amount=-2 -kerning first=8230 second=290 amount=-1 -kerning first=57 second=229 amount=-1 -kerning first=200 second=119 amount=-4 -kerning first=197 second=359 amount=-1 -kerning first=315 second=271 amount=-1 -kerning first=311 second=963 amount=-2 -kerning first=77 second=371 amount=-1 -kerning first=74 second=1195 amount=-1 -kerning first=1097 second=1073 amount=-1 -kerning first=1103 second=84 amount=-5 -kerning first=926 second=334 amount=-2 -kerning first=916 second=1090 amount=-3 -kerning first=1184 second=246 amount=-2 -kerning first=363 second=346 amount=-1 -kerning first=123 second=230 amount=-1 -kerning first=38 second=242 amount=-1 -kerning first=174 second=947 amount=-4 -kerning first=177 second=372 amount=-5 -kerning first=291 second=287 amount=-1 -kerning first=8260 second=235 amount=-1 -kerning first=58 second=1240 amount=-2 -kerning first=55 second=1262 amount=-2 -kerning first=1073 second=335 amount=-1 -kerning first=321 second=219 amount=-2 -kerning first=78 second=1069 amount=-1 -kerning first=84 second=81 amount=-1 -kerning first=339 second=1175 amount=-2 -kerning first=928 second=965 amount=-1 -kerning first=1194 second=196 amount=-1 -kerning first=244 second=373 amount=-1 -kerning first=367 second=288 amount=-2 -kerning first=121 second=1263 amount=-1 -kerning first=1039 second=350 amount=-1 -kerning first=297 second=232 amount=-1 -kerning first=62 second=332 amount=-2 -kerning first=1074 second=966 amount=-1 -kerning first=1078 second=275 amount=-2 -kerning first=205 second=244 amount=-1 -kerning first=322 second=374 amount=-5 -kerning first=900 second=289 amount=-1 -kerning first=85 second=256 amount=-2 -kerning first=222 second=1298 amount=-1 -kerning first=942 second=221 amount=-5 -kerning first=242 second=8230 amount=-1 -kerning first=1203 second=111 amount=-1 -kerning first=251 second=83 amount=-1 -kerning first=371 second=233 amount=-1 -kerning first=965 second=363 amount=-1 -kerning first=962 second=1177 amount=-1 -kerning first=161 second=333 amount=-1 -kerning first=274 second=245 amount=-1 -kerning first=8211 second=198 amount=-2 -kerning first=183 second=949 amount=-1 -kerning first=186 second=257 amount=-1 -kerning first=63 second=963 amount=-1 -kerning first=330 second=84 amount=-5 -kerning first=8377 second=262 amount=-2 -kerning first=904 second=234 amount=-1 -kerning first=226 second=1090 amount=-1 -kerning first=963 second=8212 amount=-2 -kerning first=165 second=273 amount=-1 -kerning first=168 second=45 amount=-2 -kerning first=162 second=964 amount=-3 -kerning first=47 second=287 amount=-1 -kerning first=302 second=335 amount=-1 -kerning first=305 second=97 amount=-1 -kerning first=70 second=219 amount=-2 -kerning first=207 second=1108 amount=-1 -kerning first=87 second=1175 amount=-1 -kerning first=93 second=121 amount=-1 -kerning first=356 second=196 amount=-6 -kerning first=113 second=288 amount=-2 -kerning first=376 second=336 amount=-3 -kerning first=973 second=248 amount=-1 -kerning first=169 second=220 amount=-2 -kerning first=51 second=232 amount=-1 -kerning first=191 second=362 amount=-2 -kerning first=188 second=1176 amount=-1 -kerning first=303 second=966 amount=-1 -kerning first=306 second=275 amount=-1 -kerning first=71 second=374 amount=-2 -kerning first=214 second=289 amount=-1 -kerning first=211 second=1033 amount=-1 -kerning first=916 second=99 amount=-1 -kerning first=1169 second=940 amount=-1 -kerning first=237 second=221 amount=-5 -kerning first=354 second=1114 amount=-2 -kerning first=357 second=351 amount=-1 -kerning first=952 second=261 amount=-1 -kerning first=117 second=233 amount=-1 -kerning first=254 second=1177 amount=-1 -kerning first=1028 second=198 amount=-1 -kerning first=170 second=375 amount=-1 -kerning first=189 second=8211 amount=-2 -kerning first=78 second=84 amount=-5 -kerning first=912 second=968 amount=-1 -kerning first=1178 second=199 amount=-1 -kerning first=238 second=376 amount=-5 -kerning first=358 second=1035 amount=-5 -kerning first=361 second=291 amount=-1 -kerning first=956 second=211 amount=-2 -kerning first=1224 second=1098 amount=-3 -kerning first=255 second=8212 amount=-2 -kerning first=258 second=1059 amount=-2 -kerning first=1299 second=101 amount=-1 -kerning first=168 second=8249 amount=-3 -kerning first=1036 second=113 amount=-2 -kerning first=178 second=85 amount=-2 -kerning first=289 second=235 amount=-1 -kerning first=56 second=335 amount=-1 -kerning first=59 second=97 amount=-1 -kerning first=196 second=936 amount=-3 -kerning first=931 second=224 amount=-1 -kerning first=1176 second=1118 amount=-1 -kerning first=236 second=8250 amount=-1 -kerning first=958 second=366 amount=-2 -kerning first=1263 second=970 amount=-1 -kerning first=37 second=350 amount=-1 -kerning first=57 second=966 amount=-1 -kerning first=60 second=275 amount=-1 -kerning first=323 second=87 amount=-5 -kerning first=8365 second=267 amount=-1 -kerning first=1103 second=367 amount=-1 -kerning first=223 second=337 amount=-1 -kerning first=341 second=940 amount=-1 -kerning first=103 second=351 amount=-1 -kerning first=41 second=290 amount=-2 -kerning first=184 second=210 amount=-2 -kerning first=296 second=338 amount=-2 -kerning first=299 second=100 amount=-1 -kerning first=8260 second=972 amount=-1 -kerning first=204 second=352 amount=-1 -kerning first=902 second=187 amount=-1 -kerning first=1101 second=8220 amount=-1 -kerning first=936 second=1079 amount=-1 -kerning first=944 second=89 amount=-5 -kerning first=107 second=291 amount=-2 -kerning first=250 second=211 amount=-2 -kerning first=367 second=1098 amount=-3 -kerning first=373 second=101 amount=-1 -kerning first=967 second=251 amount=-1 -kerning first=273 second=353 amount=-1 -kerning first=276 second=113 amount=-1 -kerning first=185 second=365 amount=-1 -kerning first=8369 second=1194 amount=-2 -kerning first=1118 second=252 amount=-1 -kerning first=354 second=114 amount=-2 -kerning first=949 second=39 amount=-1 -kerning first=251 second=366 amount=-2 -kerning first=371 second=970 amount=-1 -kerning first=374 second=279 amount=-4 -kerning first=167 second=171 amount=-3 -kerning first=183 second=8217 amount=-3 -kerning first=1063 second=103 amount=-1 -kerning first=304 second=225 amount=-1 -kerning first=72 second=87 amount=-5 -kerning first=1087 second=267 amount=-1 -kerning first=326 second=1185 amount=-1 -kerning first=330 second=367 amount=-1 -kerning first=89 second=940 amount=-4 -kerning first=92 second=249 amount=-1 -kerning first=950 second=214 amount=-2 -kerning first=1026 second=116 amount=-1 -kerning first=171 second=88 amount=-1 -kerning first=47 second=1097 amount=-1 -kerning first=50 second=338 amount=-2 -kerning first=53 second=100 amount=-1 -kerning first=190 second=941 amount=-1 -kerning first=193 second=250 amount=-1 -kerning first=1064 second=281 amount=-1 -kerning first=70 second=954 amount=-1 -kerning first=73 second=262 amount=-2 -kerning first=327 second=8220 amount=-3 -kerning first=915 second=227 amount=-1 -kerning first=96 second=199 amount=-2 -kerning first=1171 second=357 amount=-1 -kerning first=1176 second=117 amount=-1 -kerning first=239 second=89 amount=-5 -kerning first=951 second=369 amount=-1 -kerning first=113 second=1098 amount=-3 -kerning first=1220 second=973 amount=-1 -kerning first=119 second=101 amount=-1 -kerning first=376 second=1224 amount=-3 -kerning first=379 second=381 amount=1 -kerning first=34 second=113 amount=-1 -kerning first=172 second=263 amount=-1 -kerning first=8230 second=106 amount=2 -kerning first=77 second=212 amount=-2 -kerning first=338 second=252 amount=-1 -kerning first=94 second=1118 amount=-1 -kerning first=1184 second=67 amount=-3 -kerning first=240 second=266 amount=-2 -kerning first=243 second=39 amount=-1 -kerning first=960 second=79 amount=-2 -kerning first=117 second=970 amount=-1 -kerning first=120 second=279 amount=-2 -kerning first=1298 second=229 amount=-1 -kerning first=177 second=213 amount=-2 -kerning first=291 second=103 amount=-1 -kerning first=8225 second=1026 amount=-5 -kerning first=8240 second=286 amount=-2 -kerning first=58 second=225 amount=-1 -kerning first=198 second=355 amount=-1 -kerning first=201 second=115 amount=-1 -kerning first=316 second=267 amount=-1 -kerning first=8363 second=218 amount=-2 -kerning first=75 second=1185 amount=-4 -kerning first=78 second=367 amount=-1 -kerning first=1185 second=242 amount=-2 -kerning first=361 second=1101 amount=-1 -kerning first=956 second=945 amount=-1 -kerning first=1299 second=1240 amount=-2 -kerning first=124 second=226 amount=-1 -kerning first=266 second=356 amount=-1 -kerning first=178 second=368 amount=-2 -kerning first=289 second=972 amount=-1 -kerning first=294 second=281 amount=-1 -kerning first=8364 second=373 amount=-4 -kerning first=76 second=8220 amount=-3 -kerning first=365 second=973 amount=-1 -kerning first=179 second=1066 amount=-5 -kerning first=176 second=8221 amount=-3 -kerning first=298 second=228 amount=-1 -kerning first=8250 second=1298 amount=-2 -kerning first=1075 second=962 amount=-1 -kerning first=206 second=240 amount=-1 -kerning first=318 second=1194 amount=-2 -kerning first=323 second=370 amount=-2 -kerning first=8377 second=83 amount=-1 -kerning first=901 second=283 amount=-1 -kerning first=86 second=252 amount=-2 -kerning first=223 second=1256 amount=-2 -kerning first=243 second=8222 amount=-1 -kerning first=252 second=79 amount=-2 -kerning first=372 second=229 amount=-2 -kerning first=271 second=920 amount=-2 -kerning first=8212 second=194 amount=-2 -kerning first=47 second=103 amount=-2 -kerning first=1044 second=1026 amount=-2 -kerning first=1048 second=286 amount=-2 -kerning first=296 second=1257 amount=-1 -kerning first=1084 second=218 amount=-2 -kerning first=905 second=230 amount=-1 -kerning first=1117 second=360 amount=-2 -kerning first=350 second=923 amount=-1 -kerning first=941 second=947 amount=-1 -kerning first=944 second=372 amount=-5 -kerning first=250 second=945 amount=-1 -kerning first=166 second=268 amount=-2 -kerning first=8216 second=347 amount=-1 -kerning first=48 second=281 amount=-1 -kerning first=1062 second=231 amount=-1 -kerning first=1085 second=373 amount=-4 -kerning first=903 second=1263 amount=-1 -kerning first=94 second=117 amount=-1 -kerning first=91 second=357 amount=-1 -kerning first=1223 second=232 amount=-1 -kerning first=374 second=1085 amount=-3 -kerning first=377 second=332 amount=-1 -kerning first=170 second=216 amount=-2 -kerning first=8221 second=289 amount=-1 -kerning first=8217 second=1033 amount=-3 -kerning first=52 second=228 amount=-1 -kerning first=195 second=118 amount=-4 -kerning first=304 second=962 amount=-1 -kerning first=69 second=1194 amount=-2 -kerning first=72 second=370 amount=-2 -kerning first=215 second=283 amount=-1 -kerning first=912 second=333 amount=-1 -kerning first=1175 second=245 amount=-1 -kerning first=238 second=217 amount=-2 -kerning first=950 second=949 amount=-1 -kerning first=118 second=229 amount=-1 -kerning first=258 second=359 amount=-1 -kerning first=381 second=271 amount=-1 -kerning first=1240 second=44 amount=-1 -kerning first=261 second=119 amount=-1 -kerning first=378 second=963 amount=-1 -kerning first=168 second=1195 amount=-1 -kerning first=1033 second=194 amount=-1 -kerning first=8226 second=234 amount=-1 -kerning first=50 second=1257 amount=-1 -kerning first=1064 second=1090 amount=-3 -kerning first=1067 second=334 amount=-2 -kerning first=314 second=218 amount=-2 -kerning first=334 second=1174 amount=-3 -kerning first=923 second=273 amount=-1 -kerning first=931 second=45 amount=-2 -kerning first=915 second=964 amount=-3 -kerning first=236 second=947 amount=-4 -kerning first=239 second=372 amount=-5 -kerning first=1263 second=335 amount=-1 -kerning first=1027 second=1108 amount=-1 -kerning first=172 second=1069 amount=-1 -kerning first=179 second=81 amount=-2 -kerning first=1075 second=46 amount=-3 -kerning first=200 second=243 amount=-1 -kerning first=315 second=373 amount=-3 -kerning first=934 second=220 amount=-2 -kerning first=1184 second=350 amount=-1 -kerning first=955 second=1176 amount=-1 -kerning first=960 second=362 amount=-2 -kerning first=123 second=332 amount=-2 -kerning first=1298 second=966 amount=-1 -kerning first=41 second=106 amount=1 -kerning first=8260 second=337 amount=-1 -kerning first=58 second=962 amount=-1 -kerning first=8366 second=261 amount=-1 -kerning first=8363 second=953 amount=-1 -kerning first=221 second=1087 amount=-3 -kerning first=345 second=245 amount=-1 -kerning first=936 second=375 amount=-1 -kerning first=247 second=257 amount=-1 -kerning first=956 second=8211 amount=-2 -kerning first=124 second=963 amount=-1 -kerning first=160 second=271 amount=-1 -kerning first=42 second=286 amount=-2 -kerning first=1046 second=234 amount=-2 -kerning first=294 second=1090 amount=-3 -kerning first=297 second=334 amount=-2 -kerning first=65 second=218 amount=-2 -kerning first=205 second=346 amount=-1 -kerning first=225 second=964 amount=-1 -kerning first=931 second=8249 amount=-3 -kerning first=108 second=287 amount=-1 -kerning first=1203 second=235 amount=-1 -kerning first=371 second=335 amount=-1 -kerning first=374 second=97 amount=-4 -kerning first=164 second=219 amount=-2 -kerning first=274 second=347 amount=-1 -kerning first=186 second=361 amount=-1 -kerning first=189 second=121 amount=-1 -kerning first=298 second=965 amount=-1 -kerning first=206 second=1028 amount=-2 -kerning first=209 second=288 amount=-2 -kerning first=8370 second=1184 amount=-5 -kerning first=8377 second=366 amount=-2 -kerning first=904 second=336 amount=-2 -kerning first=1119 second=248 amount=-1 -kerning first=249 second=1176 amount=-1 -kerning first=252 second=362 amount=-2 -kerning first=375 second=275 amount=-1 -kerning first=372 second=966 amount=-3 -kerning first=165 second=374 amount=-5 -kerning first=278 second=289 amount=-1 -kerning first=1064 second=99 amount=-1 -kerning first=193 second=71 amount=-2 -kerning first=305 second=221 amount=-5 -kerning first=73 second=83 amount=-1 -kerning first=1084 second=953 amount=-1 -kerning first=327 second=1177 amount=-1 -kerning first=93 second=245 amount=-1 -kerning first=356 second=290 amount=-1 -kerning first=951 second=210 amount=-2 -kerning first=1220 second=338 amount=-2 -kerning first=250 second=8211 amount=-2 -kerning first=973 second=352 amount=-1 -kerning first=172 second=84 amount=-5 -kerning first=282 second=234 amount=-1 -kerning first=8224 second=187 amount=-1 -kerning first=8220 second=1241 amount=-1 -kerning first=51 second=334 amount=-2 -kerning first=48 second=1090 amount=-3 -kerning first=194 second=246 amount=-1 -kerning first=1065 second=277 amount=-1 -kerning first=306 second=376 amount=-5 -kerning first=74 second=258 amount=-1 -kerning first=240 second=85 amount=-2 -kerning first=952 second=365 amount=-1 -kerning first=117 second=335 amount=-1 -kerning first=120 second=97 amount=-1 -kerning first=174 second=259 amount=-1 -kerning first=177 second=34 amount=-3 -kerning first=52 second=965 amount=-1 -kerning first=304 second=8250 amount=-1 -kerning first=8363 second=39 amount=-3 -kerning first=1095 second=1184 amount=-5 -kerning first=928 second=171 amount=-3 -kerning first=950 second=8217 amount=-3 -kerning first=121 second=275 amount=-1 -kerning first=118 second=966 amount=-1 -kerning first=1299 second=225 amount=-1 -kerning first=266 second=197 amount=-1 -kerning first=36 second=289 amount=-1 -kerning first=289 second=337 amount=-1 -kerning first=294 second=99 amount=-1 -kerning first=59 second=221 amount=-5 -kerning first=1070 second=379 amount=-1 -kerning first=202 second=111 amount=-1 -kerning first=314 second=953 amount=-1 -kerning first=317 second=261 amount=-1 -kerning first=8364 second=214 amount=-2 -kerning first=365 second=338 amount=-2 -kerning first=958 second=941 amount=-1 -kerning first=962 second=250 amount=-1 -kerning first=40 second=234 amount=-1 -kerning first=1037 second=1241 amount=-1 -kerning first=1041 second=187 amount=-1 -kerning first=179 second=364 amount=-2 -kerning first=60 second=376 amount=-5 -kerning first=1071 second=1079 amount=-1 -kerning first=200 second=1035 amount=-5 -kerning first=203 second=291 amount=-1 -kerning first=323 second=211 amount=-2 -kerning first=8365 second=369 amount=-1 -kerning first=80 second=1059 amount=-2 -kerning first=77 second=8212 amount=-2 -kerning first=901 second=101 amount=-1 -kerning first=177 second=8216 amount=-3 -kerning first=299 second=224 amount=-1 -kerning first=8260 second=1256 amount=-2 -kerning first=58 second=8250 amount=-1 -kerning first=67 second=86 amount=-1 -kerning first=1080 second=266 amount=-2 -kerning first=1084 second=39 amount=-3 -kerning first=321 second=1184 amount=-5 -kerning first=8378 second=79 amount=-2 -kerning first=902 second=279 amount=-1 -kerning first=87 second=248 amount=-3 -kerning first=353 second=63 amount=-2 -kerning first=944 second=213 amount=-2 -kerning first=244 second=8217 amount=-1 -kerning first=373 second=225 amount=-1 -kerning first=967 second=355 amount=-1 -kerning first=166 second=87 amount=-5 -kerning first=48 second=99 amount=-1 -kerning first=185 second=940 amount=-1 -kerning first=188 second=249 amount=-1 -kerning first=65 second=953 amount=-1 -kerning first=1085 second=214 amount=-2 -kerning first=906 second=226 amount=-1 -kerning first=1118 second=356 amount=-5 -kerning first=114 second=100 amount=-1 -kerning first=1210 second=281 amount=-1 -kerning first=1203 second=972 amount=-1 -kerning first=254 second=250 amount=-1 -kerning first=251 second=941 amount=-1 -kerning first=374 second=380 amount=-2 -kerning first=167 second=262 amount=-2 -kerning first=280 second=187 amount=-1 -kerning first=52 second=49 amount=-2 -kerning first=49 second=277 amount=-1 -kerning first=1063 second=227 amount=-1 -kerning first=192 second=199 amount=-2 -kerning first=301 second=1079 amount=-1 -kerning first=46 second=968 amount=-1 -kerning first=72 second=211 amount=-2 -kerning first=1087 second=369 amount=-1 -kerning first=209 second=1098 amount=-3 -kerning first=215 second=101 amount=-1 -kerning first=908 second=381 amount=-1 -kerning first=89 second=1117 amount=-3 -kerning first=92 second=353 amount=-1 -kerning first=95 second=113 amount=-1 -kerning first=232 second=955 amount=-1 -kerning first=946 second=1066 amount=-5 -kerning first=1224 second=228 amount=-1 -kerning first=381 second=90 amount=1 -kerning first=1026 second=240 amount=-1 -kerning first=53 second=224 amount=-1 -kerning first=193 second=354 amount=-5 -kerning first=190 second=1118 amount=-1 -kerning first=310 second=266 amount=-3 -kerning first=314 second=39 amount=-3 -kerning first=70 second=1184 amount=-5 -kerning first=73 second=366 amount=-2 -kerning first=1099 second=79 amount=-2 -kerning first=910 second=1081 amount=-3 -kerning first=99 second=63 amount=-1 -kerning first=1171 second=920 amount=-2 -kerning first=239 second=213 amount=-2 -kerning first=356 second=1100 amount=-2 -kerning first=119 second=225 amount=-1 -kerning first=1220 second=1257 amount=-1 -kerning first=382 second=267 amount=-1 -kerning first=172 second=367 amount=-1 -kerning first=169 second=1185 amount=-3 -kerning first=194 second=1038 amount=-2 -kerning first=315 second=214 amount=-1 -kerning first=1097 second=945 amount=-1 -kerning first=338 second=356 amount=-5 -kerning first=926 second=268 amount=-2 -kerning first=240 second=368 amount=-2 -kerning first=363 second=281 amount=-1 -kerning first=268 second=65 amount=-1 -kerning first=35 second=1241 amount=-1 -kerning first=38 second=187 amount=-1 -kerning first=170 second=8220 amount=-3 -kerning first=291 second=227 amount=-1 -kerning first=8225 second=1263 amount=-1 -kerning first=61 second=89 amount=-5 -kerning first=55 second=1079 amount=-1 -kerning first=1073 second=269 amount=-1 -kerning first=316 second=369 amount=-1 -kerning first=936 second=216 amount=-2 -kerning first=238 second=8221 amount=-3 -kerning first=1194 second=106 amount=1 -kerning first=367 second=228 amount=-1 -kerning first=964 second=118 amount=-4 -kerning first=1299 second=962 amount=-1 -kerning first=266 second=916 amount=-1 -kerning first=1039 second=283 amount=-1 -kerning first=178 second=943 amount=-1 -kerning first=182 second=252 amount=-1 -kerning first=289 second=1256 amount=-2 -kerning first=62 second=266 amount=-2 -kerning first=65 second=39 amount=-3 -kerning first=325 second=79 amount=-2 -kerning first=8364 second=949 amount=-1 -kerning first=8369 second=257 amount=-1 -kerning first=900 second=229 amount=-1 -kerning first=931 second=1195 amount=-1 -kerning first=108 second=103 amount=-1 -kerning first=1186 second=1026 amount=-2 -kerning first=365 second=1257 amount=-1 -kerning first=161 second=267 amount=-1 -kerning first=46 second=52 amount=-1 -kerning first=203 second=1101 amount=-1 -kerning first=323 second=945 amount=-1 -kerning first=901 second=1240 amount=-2 -kerning first=86 second=356 amount=-5 -kerning first=946 second=81 amount=-2 -kerning first=1206 second=231 amount=-1 -kerning first=372 second=331 amount=-2 -kerning first=47 second=227 amount=-2 -kerning first=190 second=117 amount=-1 -kerning first=302 second=269 amount=-1 -kerning first=207 second=973 amount=-1 -kerning first=8372 second=1176 amount=-1 -kerning first=8378 second=362 amount=-2 -kerning first=905 second=332 amount=-2 -kerning first=1168 second=244 amount=-1 -kerning first=113 second=228 amount=-1 -kerning first=256 second=118 amount=-4 -kerning first=373 second=962 amount=-1 -kerning first=163 second=1194 amount=-2 -kerning first=166 second=370 amount=-2 -kerning first=8220 second=233 amount=-1 -kerning first=1062 second=333 amount=-1 -kerning first=194 second=67 amount=-2 -kerning first=306 second=217 amount=-2 -kerning first=74 second=79 amount=-2 -kerning first=1085 second=949 amount=-1 -kerning first=214 second=229 amount=-1 -kerning first=335 second=119 amount=-1 -kerning first=906 second=963 amount=-1 -kerning first=91 second=920 amount=-2 -kerning first=357 second=286 amount=-2 -kerning first=1210 second=1090 amount=-3 -kerning first=1223 second=334 amount=-2 -kerning first=1063 second=964 amount=-3 -kerning first=195 second=242 amount=-1 -kerning first=304 second=947 amount=-4 -kerning first=72 second=945 amount=-1 -kerning first=215 second=1240 amount=-2 -kerning first=1170 second=1108 amount=-1 -kerning first=361 second=231 amount=-1 -kerning first=956 second=121 amount=-1 -kerning first=1224 second=965 amount=-1 -kerning first=1026 second=1028 amount=-2 -kerning first=8226 second=336 amount=-2 -kerning first=56 second=269 amount=-1 -kerning first=1096 second=1176 amount=-1 -kerning first=1099 second=362 amount=-2 -kerning first=1102 second=122 amount=-1 -kerning first=923 second=374 amount=-5 -kerning first=962 second=71 amount=-2 -kerning first=119 second=962 amount=-1 -kerning first=37 second=283 amount=-1 -kerning first=1037 second=233 amount=-1 -kerning first=60 second=217 amount=-2 -kerning first=1071 second=375 amount=-1 -kerning first=315 second=949 amount=-1 -kerning first=318 second=257 amount=-1 -kerning first=8365 second=210 amount=-2 -kerning first=80 second=359 amount=-1 -kerning first=83 second=119 amount=-1 -kerning first=223 second=271 amount=-1 -kerning first=100 second=1026 amount=-5 -kerning first=103 second=286 amount=-2 -kerning first=1187 second=234 amount=-1 -kerning first=363 second=1090 amount=-3 -kerning first=963 second=246 amount=-1 -kerning first=126 second=218 amount=-2 -kerning first=41 second=230 amount=-1 -kerning first=180 second=360 amount=-2 -kerning first=291 second=964 amount=-3 -kerning first=296 second=273 amount=-1 -kerning first=299 second=45 amount=-2 -kerning first=58 second=947 amount=-4 -kerning first=61 second=372 amount=-5 -kerning first=1080 second=85 amount=-2 -kerning first=204 second=287 amount=-1 -kerning first=8366 second=365 amount=-1 -kerning first=902 second=97 amount=-1 -kerning first=345 second=347 amount=-1 -kerning first=944 second=34 amount=-3 -kerning first=107 second=231 amount=-2 -kerning first=244 second=1175 amount=-2 -kerning first=247 second=361 amount=-1 -kerning first=250 second=121 amount=-1 -kerning first=367 second=965 amount=-1 -kerning first=373 second=46 amount=-2 -kerning first=160 second=373 amount=-4 -kerning first=1299 second=8250 amount=-1 -kerning first=273 second=288 amount=-2 -kerning first=1046 second=336 amount=-3 -kerning first=300 second=220 amount=-2 -kerning first=325 second=362 amount=-2 -kerning first=8364 second=8217 amount=-3 -kerning first=322 second=1176 amount=-1 -kerning first=900 second=966 amount=-1 -kerning first=903 second=275 amount=-1 -kerning first=88 second=244 amount=-2 -kerning first=1210 second=99 amount=-1 -kerning first=1203 second=337 amount=-1 -kerning first=254 second=71 amount=-2 -kerning first=971 second=111 amount=-1 -kerning first=968 second=351 amount=-1 -kerning first=167 second=83 amount=-1 -kerning first=189 second=245 amount=-1 -kerning first=301 second=375 amount=-1 -kerning first=69 second=257 amount=-1 -kerning first=1087 second=210 amount=-2 -kerning first=323 second=8211 amount=-2 -kerning first=8377 second=941 amount=-1 -kerning first=1119 second=352 amount=-1 -kerning first=946 second=364 amount=-2 -kerning first=109 second=1090 amount=-1 -kerning first=1219 second=277 amount=-1 -kerning first=255 second=246 amount=-1 -kerning first=375 second=376 amount=-5 -kerning first=47 second=964 amount=-3 -kerning first=53 second=45 amount=-2 -kerning first=50 second=273 amount=-1 -kerning first=299 second=8249 amount=-3 -kerning first=93 second=347 amount=-1 -kerning first=90 second=1108 amount=-1 -kerning first=239 second=34 amount=-3 -kerning first=236 second=259 amount=-1 -kerning first=944 second=8216 amount=-3 -kerning first=113 second=965 amount=-1 -kerning first=119 second=46 amount=-2 -kerning first=376 second=1075 amount=-3 -kerning first=282 second=336 amount=-2 -kerning first=8224 second=279 amount=-1 -kerning first=8230 second=51 amount=-1 -kerning first=54 second=220 amount=-2 -kerning first=194 second=350 amount=-1 -kerning first=74 second=362 amount=-2 -kerning first=1085 second=8217 amount=-3 -kerning first=214 second=966 amount=-1 -kerning first=926 second=87 amount=-5 -kerning first=363 second=99 amount=-1 -kerning first=955 second=249 amount=-1 -kerning first=952 second=940 amount=-1 -kerning first=260 second=351 amount=-1 -kerning first=35 second=233 amount=-1 -kerning first=170 second=1177 amount=-1 -kerning first=174 second=363 amount=-1 -kerning first=283 second=967 amount=-2 -kerning first=8240 second=226 amount=-1 -kerning first=55 second=375 amount=-1 -kerning first=198 second=290 amount=-2 -kerning first=316 second=210 amount=-2 -kerning first=72 second=8211 amount=-2 -kerning first=928 second=262 amount=-2 -kerning first=1178 second=1241 amount=-1 -kerning first=361 second=968 amount=-1 -kerning first=121 second=376 amount=-5 -kerning first=1036 second=339 amount=-2 -kerning first=1039 second=101 amount=-1 -kerning first=175 second=1059 amount=-2 -kerning first=1033 second=1098 amount=-2 -kerning first=53 second=8249 amount=-3 -kerning first=1070 second=955 amount=-2 -kerning first=62 second=85 amount=-2 -kerning first=202 second=235 amount=-1 -kerning first=1074 second=263 amount=-1 -kerning first=317 second=365 amount=-1 -kerning first=8361 second=1066 amount=-5 -kerning first=222 second=377 amount=-1 -kerning first=239 second=8216 amount=-3 -kerning first=962 second=354 amount=-5 -kerning first=958 second=1118 amount=-1 -kerning first=40 second=336 amount=-2 -kerning first=1041 second=279 amount=-1 -kerning first=183 second=248 amount=-1 -kerning first=1037 second=970 amount=-1 -kerning first=298 second=171 amount=-3 -kerning first=315 second=8217 amount=-3 -kerning first=8370 second=253 amount=-1 -kerning first=901 second=225 amount=-1 -kerning first=86 second=197 amount=-6 -kerning first=1116 second=115 amount=-1 -kerning first=934 second=1185 amount=-3 -kerning first=249 second=249 amount=-1 -kerning first=963 second=1038 amount=-2 -kerning first=162 second=261 amount=-1 -kerning first=126 second=953 amount=-1 -kerning first=1048 second=226 amount=-1 -kerning first=187 second=198 amount=-3 -kerning first=1080 second=368 amount=-2 -kerning first=207 second=338 amount=-2 -kerning first=327 second=250 amount=-1 -kerning first=84 second=1116 amount=-2 -kerning first=87 second=352 amount=-1 -kerning first=936 second=8220 amount=-3 -kerning first=253 second=199 amount=-2 -kerning first=166 second=211 amount=-2 -kerning first=273 second=1098 amount=-3 -kerning first=276 second=339 amount=-1 -kerning first=188 second=353 amount=-1 -kerning first=191 second=113 amount=-1 -kerning first=303 second=263 amount=-1 -kerning first=1081 second=1066 amount=-5 -kerning first=1169 second=240 amount=-1 -kerning first=114 second=224 amount=-1 -kerning first=251 second=1118 amount=-1 -kerning first=254 second=354 amount=-5 -kerning first=377 second=266 amount=-1 -kerning first=164 second=1184 amount=-5 -kerning first=167 second=366 amount=-2 -kerning first=280 second=279 amount=-1 -kerning first=8221 second=229 amount=-1 -kerning first=52 second=171 amount=-3 -kerning first=1095 second=253 amount=-1 -kerning first=215 second=225 amount=-1 -kerning first=912 second=267 amount=-1 -kerning first=232 second=1185 amount=-1 -kerning first=255 second=1038 amount=-2 -kerning first=381 second=214 amount=-1 -kerning first=8218 second=1262 amount=-1 -kerning first=8222 second=1240 amount=-1 -kerning first=1067 second=268 amount=-2 -kerning first=8361 second=81 amount=-2 -kerning first=73 second=941 amount=-1 -kerning first=76 second=250 amount=-1 -kerning first=96 second=1241 amount=-1 -kerning first=233 second=8220 amount=-1 -kerning first=958 second=117 amount=-1 -kerning first=1263 second=269 amount=-1 -kerning first=37 second=101 amount=-1 -kerning first=1027 second=973 amount=-1 -kerning first=34 second=339 amount=-1 -kerning first=176 second=251 amount=-1 -kerning first=8230 second=332 amount=-1 -kerning first=57 second=263 amount=-1 -kerning first=1071 second=216 amount=-2 -kerning first=306 second=8221 amount=-3 -kerning first=1103 second=118 amount=-4 -kerning first=341 second=240 amount=-1 -kerning first=916 second=1194 amount=-2 -kerning first=926 second=370 amount=-2 -kerning first=1184 second=283 amount=-2 -kerning first=240 second=943 amount=-1 -kerning first=963 second=67 amount=-2 -kerning first=123 second=266 amount=-2 -kerning first=126 second=39 amount=-3 -kerning first=35 second=970 amount=-1 -kerning first=38 second=279 amount=-1 -kerning first=8240 second=963 amount=-1 -kerning first=8260 second=271 amount=-1 -kerning first=61 second=213 amount=-2 -kerning first=1073 second=371 amount=-1 -kerning first=204 second=103 amount=-1 -kerning first=321 second=253 amount=-1 -kerning first=84 second=115 amount=-3 -kerning first=964 second=242 amount=-1 -kerning first=160 second=214 amount=-2 -kerning first=1299 second=947 amount=-4 -kerning first=42 second=226 amount=-1 -kerning first=1039 second=1240 amount=-2 -kerning first=182 second=356 amount=-5 -kerning first=185 second=116 amount=-1 -kerning first=297 second=268 amount=-2 -kerning first=62 second=368 amount=-2 -kerning first=1074 second=1069 amount=-1 -kerning first=1081 second=81 amount=-2 -kerning first=202 second=972 amount=-1 -kerning first=205 second=281 amount=-1 -kerning first=8369 second=361 amount=-1 -kerning first=108 second=227 amount=-1 -kerning first=251 second=117 amount=-1 -kerning first=371 second=269 amount=-1 -kerning first=161 second=369 amount=-1 -kerning first=301 second=216 amount=-2 -kerning first=63 second=1066 amount=-5 -kerning first=60 second=8221 amount=-3 -kerning first=209 second=228 amount=-1 -kerning first=330 second=118 amount=-4 -kerning first=901 second=962 amount=-1 -kerning first=86 second=916 amount=-6 -kerning first=89 second=240 amount=-4 -kerning first=1206 second=333 amount=-1 -kerning first=255 second=67 amount=-2 -kerning first=375 second=217 amount=-2 -kerning first=168 second=79 amount=-2 -kerning first=278 second=229 amount=-1 -kerning first=47 second=328 amount=-1 -kerning first=1048 second=963 amount=-1 -kerning first=302 second=371 amount=-1 -kerning first=299 second=1195 amount=-1 -kerning first=70 second=253 amount=-1 -kerning first=207 second=1257 amount=-1 -kerning first=1168 second=346 amount=-1 -kerning first=356 second=230 amount=-2 -kerning first=948 second=360 amount=-2 -kerning first=1220 second=273 amount=-1 -kerning first=256 second=242 amount=-1 -kerning first=1207 second=964 amount=-2 -kerning first=973 second=287 amount=-1 -kerning first=166 second=945 amount=-1 -kerning first=276 second=1262 amount=-2 -kerning first=8220 second=335 amount=-1 -kerning first=8224 second=97 amount=-1 -kerning first=51 second=268 amount=-2 -kerning first=1065 second=219 amount=-1 -kerning first=303 second=1069 amount=-1 -kerning first=1174 second=288 amount=-1 -kerning first=354 second=1263 amount=-2 -kerning first=117 second=269 amount=-1 -kerning first=8225 second=275 amount=-1 -kerning first=55 second=216 amount=-2 -kerning first=8221 second=966 amount=-1 -kerning first=1066 second=374 amount=-5 -kerning first=198 second=106 amount=1 -kerning first=78 second=118 amount=-4 -kerning first=215 second=962 amount=-1 -kerning first=928 second=83 amount=-1 -kerning first=908 second=8230 amount=-1 -kerning first=1178 second=233 amount=-1 -kerning first=361 second=333 amount=-1 -kerning first=956 second=245 amount=-1 -kerning first=121 second=217 amount=-2 -kerning first=381 second=949 amount=-1 -kerning first=36 second=229 amount=-1 -kerning first=175 second=359 amount=-1 -kerning first=178 second=119 amount=-4 -kerning first=289 second=271 amount=-1 -kerning first=53 second=1195 amount=-1 -kerning first=56 second=371 amount=-1 -kerning first=1074 second=84 amount=-5 -kerning first=196 second=1026 amount=-5 -kerning first=8361 second=364 amount=-2 -kerning first=923 second=950 amount=-1 -kerning first=102 second=230 amount=-1 -kerning first=245 second=120 amount=-2 -kerning first=365 second=273 amount=-1 -kerning first=37 second=1240 amount=-2 -kerning first=1037 second=335 amount=-1 -kerning first=1041 second=97 amount=-1 -kerning first=57 second=1069 amount=-1 -kerning first=63 second=81 amount=-2 -kerning first=203 second=231 amount=-1 -kerning first=318 second=361 amount=-1 -kerning first=323 second=121 amount=-1 -kerning first=223 second=373 amount=-4 -kerning first=100 second=1263 amount=-1 -kerning first=369 second=220 amount=-2 -kerning first=963 second=350 amount=-1 -kerning first=271 second=232 amount=-1 -kerning first=41 second=332 amount=-2 -kerning first=1241 second=122 amount=-1 -kerning first=1044 second=275 amount=-1 -kerning first=184 second=244 amount=-1 -kerning first=296 second=374 amount=-5 -kerning first=327 second=71 amount=-2 -kerning first=8372 second=249 amount=-1 -kerning first=8366 second=940 amount=-1 -kerning first=902 second=221 amount=-5 -kerning first=87 second=193 amount=-5 -kerning first=1117 second=111 amount=-1 -kerning first=221 second=8230 amount=-4 -kerning first=936 second=1177 amount=-1 -kerning first=107 second=333 amount=-2 -kerning first=250 second=245 amount=-1 -kerning first=967 second=290 amount=-2 -kerning first=160 second=949 amount=-1 -kerning first=163 second=257 amount=-1 -kerning first=8216 second=100 amount=-1 -kerning first=42 second=963 amount=-1 -kerning first=48 second=44 amount=-1 -kerning first=303 second=84 amount=-5 -kerning first=1081 second=364 amount=-2 -kerning first=205 second=1090 amount=-3 -kerning first=903 second=376 amount=-5 -kerning first=88 second=346 amount=-1 -kerning first=1118 second=291 amount=-1 -kerning first=942 second=1059 amount=-2 -kerning first=108 second=964 amount=-3 -kerning first=114 second=45 amount=-1 -kerning first=971 second=235 amount=-1 -kerning first=280 second=97 amount=-1 -kerning first=49 second=219 amount=-2 -kerning first=186 second=1108 amount=-1 -kerning first=189 second=347 amount=-1 -kerning first=304 second=259 amount=-1 -kerning first=69 second=361 amount=-1 -kerning first=72 second=121 amount=-1 -kerning first=209 second=965 amount=-1 -kerning first=8377 second=1118 amount=-1 -kerning first=901 second=8250 amount=-1 -kerning first=92 second=288 amount=-2 -kerning first=89 second=1028 amount=-3 -kerning first=950 second=248 amount=-1 -kerning first=1224 second=171 amount=-3 -kerning first=255 second=350 amount=-1 -kerning first=165 second=1176 amount=-1 -kerning first=168 second=362 amount=-2 -kerning first=278 second=966 amount=-1 -kerning first=47 second=1203 amount=-1 -kerning first=50 second=374 amount=-5 -kerning first=1067 second=87 amount=-5 -kerning first=193 second=289 amount=-1 -kerning first=76 second=71 amount=-1 -kerning first=1096 second=249 amount=-1 -kerning first=1090 second=940 amount=-1 -kerning first=216 second=221 amount=-3 -kerning first=915 second=261 amount=-1 -kerning first=910 second=953 amount=-2 -kerning first=96 second=233 amount=-1 -kerning first=236 second=363 amount=-1 -kerning first=1027 second=338 amount=-2 -kerning first=166 second=8211 amount=-2 -kerning first=57 second=84 amount=-5 -kerning first=197 second=234 amount=-1 -kerning first=77 second=246 amount=-1 -kerning first=338 second=291 amount=-1 -kerning first=926 second=211 amount=-2 -kerning first=1174 second=1098 amount=-2 -kerning first=1184 second=101 amount=-2 -kerning first=237 second=1059 amount=-2 -kerning first=955 second=353 amount=-1 -kerning first=960 second=113 amount=-1 -kerning first=1257 second=955 amount=-1 -kerning first=123 second=85 amount=-2 -kerning first=1298 second=263 amount=-1 -kerning first=35 second=335 amount=-1 -kerning first=38 second=97 amount=-1 -kerning first=58 second=259 amount=-1 -kerning first=61 second=34 amount=-3 -kerning first=1073 second=212 amount=-2 -kerning first=8363 second=252 amount=-1 -kerning first=81 second=196 amount=-2 -kerning first=215 second=8250 amount=-1 -kerning first=928 second=366 amount=-2 -kerning first=920 second=1184 amount=-2 -kerning first=1185 second=279 amount=-2 -kerning first=367 second=171 amount=-3 -kerning first=36 second=966 amount=-1 -kerning first=1039 second=225 amount=-1 -kerning first=39 second=275 amount=-1 -kerning first=297 second=87 amount=-5 -kerning first=1074 second=367 amount=-1 -kerning first=202 second=337 amount=-1 -kerning first=205 second=99 amount=-1 -kerning first=317 second=940 amount=-1 -kerning first=322 second=249 amount=-1 -kerning first=161 second=210 amount=-2 -kerning first=274 second=100 amount=-1 -kerning first=183 second=352 amount=-1 -kerning first=298 second=262 amount=-2 -kerning first=63 second=364 amount=-2 -kerning first=1071 second=8220 amount=-3 -kerning first=203 second=968 amount=-1 -kerning first=206 second=277 amount=-1 -kerning first=8370 second=357 amount=-1 -kerning first=8377 second=117 amount=-1 -kerning first=86 second=291 amount=-1 -kerning first=904 second=89 amount=-5 -kerning first=83 second=1035 amount=-1 -kerning first=252 second=113 amount=-1 -kerning first=249 second=353 amount=-1 -kerning first=372 second=263 amount=-3 -kerning first=162 second=365 amount=-1 -kerning first=302 second=212 amount=-2 -kerning first=61 second=8216 amount=-3 -kerning first=70 second=74 amount=-6 -kerning first=1084 second=252 amount=-1 -kerning first=1080 second=943 amount=-1 -kerning first=327 second=354 amount=-5 -kerning first=905 second=266 amount=-2 -kerning first=113 second=171 amount=-3 -kerning first=256 second=63 amount=-5 -kerning first=376 second=213 amount=-3 -kerning first=160 second=8217 amount=-3 -kerning first=973 second=103 amount=-1 -kerning first=51 second=87 amount=-5 -kerning first=1062 second=267 amount=-1 -kerning first=300 second=1185 amount=-3 -kerning first=303 second=367 amount=-1 -kerning first=211 second=379 amount=-1 -kerning first=1118 second=1101 amount=-1 -kerning first=357 second=226 amount=-1 -kerning first=952 second=116 amount=-1 -kerning first=111 second=1078 amount=-2 -kerning first=1223 second=268 amount=-2 -kerning first=971 second=972 amount=-1 -kerning first=170 second=250 amount=-1 -kerning first=167 second=941 amount=-1 -kerning first=52 second=262 amount=-2 -kerning first=192 second=1241 amount=-1 -kerning first=195 second=187 amount=-1 -kerning first=301 second=8220 amount=-3 -kerning first=75 second=199 amount=-3 -kerning first=1095 second=357 amount=-1 -kerning first=912 second=369 amount=-1 -kerning first=95 second=339 amount=-1 -kerning first=1170 second=973 amount=-1 -kerning first=92 second=1098 amount=-3 -kerning first=238 second=251 amount=-1 -kerning first=118 second=263 amount=-1 -kerning first=375 second=8221 amount=-3 -kerning first=56 second=212 amount=-2 -kerning first=1064 second=1194 amount=-2 -kerning first=1067 second=370 amount=-2 -kerning first=314 second=252 amount=-1 -kerning first=73 second=1118 amount=-1 -kerning first=76 second=354 amount=-6 -kerning first=910 second=8222 amount=-4 -kerning first=931 second=79 amount=-2 -kerning first=96 second=970 amount=-1 -kerning first=1263 second=371 amount=-1 -kerning first=1027 second=1257 amount=-1 -kerning first=37 second=225 amount=-1 -kerning first=176 second=355 amount=-1 -kerning first=179 second=115 amount=-1 -kerning first=54 second=1185 amount=-3 -kerning first=57 second=367 amount=-1 -kerning first=77 second=1038 amount=-2 -kerning first=1103 second=242 amount=-1 -kerning first=223 second=214 amount=-2 -kerning first=338 second=1101 amount=-1 -kerning first=926 second=945 amount=-1 -kerning first=103 second=226 amount=-1 -kerning first=1184 second=1240 amount=-3 -kerning first=123 second=368 amount=-2 -kerning first=1298 second=1069 amount=-1 -kerning first=8260 second=373 amount=-4 -kerning first=55 second=8220 amount=-3 -kerning first=204 second=227 amount=-1 -kerning first=321 second=357 amount=-1 -kerning first=221 second=1187 amount=-3 -kerning first=124 second=1066 amount=-5 -kerning first=121 second=8221 amount=-3 -kerning first=967 second=106 amount=1 -kerning first=273 second=228 amount=-1 -kerning first=45 second=90 amount=-2 -kerning first=1039 second=962 amount=-1 -kerning first=185 second=240 amount=-1 -kerning first=294 second=1194 amount=-2 -kerning first=297 second=370 amount=-2 -kerning first=62 second=943 amount=-1 -kerning first=65 second=252 amount=-1 -kerning first=202 second=1256 amount=-2 -kerning first=903 second=217 amount=-2 -kerning first=222 second=8222 amount=-1 -kerning first=942 second=359 amount=-1 -kerning first=945 second=119 amount=-2 -kerning first=1203 second=271 amount=-1 -kerning first=371 second=371 amount=-1 -kerning first=965 second=1026 amount=-5 -kerning first=968 second=286 amount=-2 -kerning first=164 second=253 amount=-1 -kerning first=1051 second=218 amount=-2 -kerning first=1083 second=360 amount=-2 -kerning first=330 second=242 amount=-1 -kerning first=901 second=947 amount=-4 -kerning first=904 second=372 amount=-5 -kerning first=86 second=1101 amount=-1 -kerning first=1119 second=287 amount=-1 -kerning first=1219 second=219 amount=-2 -kerning first=73 second=117 amount=-1 -kerning first=70 second=357 amount=-1 -kerning first=1171 second=232 amount=-1 -kerning first=951 second=244 amount=-1 -kerning first=356 second=332 amount=-1 -kerning first=1220 second=374 amount=-5 -kerning first=259 second=106 amount=1 -kerning first=172 second=118 amount=-4 -kerning first=8224 second=221 amount=-5 -kerning first=48 second=1194 amount=-2 -kerning first=51 second=370 amount=-2 -kerning first=194 second=283 amount=-1 -kerning first=77 second=67 amount=-2 -kerning first=1097 second=245 amount=-1 -kerning first=916 second=257 amount=-1 -kerning first=1169 second=1299 amount=-3 -kerning first=237 second=359 amount=-1 -kerning first=240 second=119 amount=-4 -kerning first=357 second=963 amount=-1 -kerning first=114 second=1195 amount=-1 -kerning first=117 second=371 amount=-1 -kerning first=1298 second=84 amount=-5 -kerning first=260 second=286 amount=-2 -kerning first=8225 second=376 amount=-5 -kerning first=1069 second=258 amount=-2 -kerning first=198 second=230 amount=-1 -kerning first=313 second=360 amount=-1 -kerning first=78 second=242 amount=-1 -kerning first=215 second=947 amount=-4 -kerning first=95 second=1262 amount=-2 -kerning first=1178 second=335 amount=-1 -kerning first=1185 second=97 amount=-1 -kerning first=956 second=347 amount=-1 -kerning first=124 second=81 amount=-2 -kerning first=1299 second=259 amount=-1 -kerning first=178 second=243 amount=-1 -kerning first=289 second=373 amount=-4 -kerning first=196 second=1263 amount=-1 -kerning first=8364 second=248 amount=-1 -kerning first=343 second=232 amount=-1 -kerning first=923 second=1176 amount=-1 -kerning first=931 second=362 amount=-2 -kerning first=1186 second=275 amount=-1 -kerning first=1179 second=966 amount=-1 -kerning first=365 second=374 amount=-5 -kerning first=962 second=289 amount=-1 -kerning first=262 second=1298 amount=-1 -kerning first=37 second=962 amount=-1 -kerning first=1041 second=221 amount=-5 -kerning first=298 second=83 amount=-1 -kerning first=1071 second=1177 amount=-1 -kerning first=203 second=333 amount=-1 -kerning first=323 second=245 amount=-1 -kerning first=223 second=949 amount=-1 -kerning first=934 second=1051 amount=-3 -kerning first=926 second=8211 amount=-2 -kerning first=103 second=963 amount=-1 -kerning first=271 second=334 amount=-2 -kerning first=8212 second=49 amount=-3 -kerning first=44 second=218 amount=-1 -kerning first=1044 second=376 amount=-2 -kerning first=184 second=346 amount=-1 -kerning first=64 second=360 amount=-2 -kerning first=1073 second=8212 amount=-2 -kerning first=207 second=273 amount=-1 -kerning first=204 second=964 amount=-3 -kerning first=8372 second=353 amount=-1 -kerning first=8378 second=113 amount=-1 -kerning first=905 second=85 amount=-2 -kerning first=87 second=287 amount=-2 -kerning first=1117 second=235 amount=-1 -kerning first=247 second=1108 amount=-1 -kerning first=250 second=347 amount=-1 -kerning first=373 second=259 amount=-1 -kerning first=163 second=361 amount=-1 -kerning first=166 second=121 amount=-1 -kerning first=273 second=965 amount=-1 -kerning first=279 second=46 amount=-1 -kerning first=8216 second=224 amount=-1 -kerning first=45 second=373 amount=-1 -kerning first=1039 second=8250 amount=-1 -kerning first=185 second=1028 amount=-2 -kerning first=188 second=288 amount=-2 -kerning first=1085 second=248 amount=-1 -kerning first=91 second=232 amount=-1 -kerning first=234 second=122 amount=-1 -kerning first=354 second=275 amount=-3 -kerning first=1223 second=87 amount=-5 -kerning first=254 second=289 amount=-1 -kerning first=971 second=337 amount=-1 -kerning first=170 second=71 amount=-2 -kerning first=280 second=221 amount=-5 -kerning first=52 second=83 amount=-1 -kerning first=1051 second=953 amount=-1 -kerning first=1063 second=261 amount=-1 -kerning first=192 second=233 amount=-1 -kerning first=304 second=363 amount=-1 -kerning first=301 second=1177 amount=-1 -kerning first=72 second=245 amount=-1 -kerning first=912 second=210 amount=-2 -kerning first=1170 second=338 amount=-2 -kerning first=1175 second=100 amount=-1 -kerning first=950 second=352 amount=-1 -kerning first=1224 second=262 amount=-2 -kerning first=258 second=234 amount=-1 -kerning first=1026 second=277 amount=-1 -kerning first=8226 second=89 amount=-5 -kerning first=1067 second=211 amount=-2 -kerning first=305 second=1059 amount=-2 -kerning first=302 second=8212 amount=-2 -kerning first=1099 second=113 amount=-1 -kerning first=1096 second=353 amount=-1 -kerning first=910 second=1179 amount=-3 -kerning first=915 second=365 amount=-1 -kerning first=96 second=335 amount=-1 -kerning first=119 second=259 amount=-1 -kerning first=1263 second=212 amount=-2 -kerning first=290 second=86 amount=-2 -kerning first=8230 second=266 amount=-1 -kerning first=1065 second=1184 amount=-2 -kerning first=197 second=336 amount=-2 -kerning first=315 second=248 amount=-1 -kerning first=77 second=350 amount=-1 -kerning first=220 second=260 amount=-2 -kerning first=916 second=1063 amount=-3 -kerning first=100 second=275 amount=-1 -kerning first=1184 second=225 amount=-1 -kerning first=1257 second=1185 amount=-1 -kerning first=1298 second=367 amount=-1 -kerning first=38 second=221 amount=-5 -kerning first=180 second=111 amount=-1 -kerning first=177 second=351 amount=-1 -kerning first=291 second=261 amount=-1 -kerning first=8260 second=214 amount=-2 -kerning first=58 second=363 amount=-1 -kerning first=55 second=1177 amount=-1 -kerning first=8363 second=356 amount=-5 -kerning first=8366 second=116 amount=-1 -kerning first=936 second=250 amount=-1 -kerning first=928 second=941 amount=-1 -kerning first=345 second=100 amount=-1 -kerning first=367 second=262 amount=-2 -kerning first=964 second=187 amount=-1 -kerning first=124 second=364 amount=-2 -kerning first=1036 second=1079 amount=-1 -kerning first=178 second=1035 amount=-5 -kerning first=182 second=291 amount=-1 -kerning first=297 second=211 amount=-2 -kerning first=56 second=8212 amount=-2 -kerning first=59 second=1059 amount=-2 -kerning first=322 second=353 amount=-1 -kerning first=325 second=113 amount=-1 -kerning first=900 second=263 amount=-1 -kerning first=371 second=212 amount=-2 -kerning first=274 second=224 amount=-1 -kerning first=37 second=8250 amount=-1 -kerning first=46 second=86 amount=-4 -kerning first=1051 second=39 amount=-3 -kerning first=298 second=366 amount=-2 -kerning first=209 second=171 amount=-3 -kerning first=8370 second=920 amount=-2 -kerning first=904 second=213 amount=-2 -kerning first=223 second=8217 amount=-3 -kerning first=1119 second=103 amount=-1 -kerning first=946 second=115 amount=-1 -kerning first=1206 second=267 amount=-1 -kerning first=369 second=1185 amount=-3 -kerning first=372 second=367 amount=-2 -kerning first=165 second=249 amount=-1 -kerning first=162 second=940 amount=-1 -kerning first=47 second=261 amount=-1 -kerning first=70 second=198 amount=-4 -kerning first=1084 second=356 amount=-5 -kerning first=213 second=88 amount=-3 -kerning first=905 second=368 amount=-2 -kerning first=87 second=1097 amount=-2 -kerning first=93 second=100 amount=-1 -kerning first=1117 second=972 amount=-1 -kerning first=1168 second=281 amount=-1 -kerning first=90 second=338 amount=-1 -kerning first=113 second=262 amount=-2 -kerning first=253 second=1241 amount=-1 -kerning first=256 second=187 amount=-1 -kerning first=973 second=227 amount=-1 -kerning first=169 second=199 amount=-2 -kerning first=276 second=1079 amount=-1 -kerning first=282 second=89 amount=-5 -kerning first=8220 second=269 amount=-1 -kerning first=51 second=211 amount=-2 -kerning first=188 second=1098 amount=-3 -kerning first=191 second=339 amount=-1 -kerning first=194 second=101 amount=-1 -kerning first=306 second=251 amount=-1 -kerning first=74 second=113 amount=-1 -kerning first=211 second=955 amount=-2 -kerning first=214 second=263 amount=-1 -kerning first=903 second=8221 amount=-3 -kerning first=906 second=1066 amount=-5 -kerning first=354 second=1080 amount=-2 -kerning first=952 second=240 amount=-1 -kerning first=117 second=212 amount=-2 -kerning first=1210 second=1194 amount=-2 -kerning first=1223 second=370 amount=-2 -kerning first=260 second=102 amount=-2 -kerning first=971 second=1256 amount=-2 -kerning first=170 second=354 amount=-5 -kerning first=167 second=1118 amount=-1 -kerning first=8225 second=217 amount=-2 -kerning first=49 second=1184 amount=-5 -kerning first=52 second=366 amount=-2 -kerning first=195 second=279 amount=-1 -kerning first=192 second=970 amount=-1 -kerning first=1095 second=920 amount=-2 -kerning first=1170 second=1257 amount=-1 -kerning first=238 second=355 amount=-1 -kerning first=361 second=267 amount=-1 -kerning first=289 second=214 amount=-2 -kerning first=8222 second=947 amount=-2 -kerning first=8226 second=372 amount=-5 -kerning first=1067 second=945 amount=-1 -kerning first=314 second=356 amount=-5 -kerning first=317 second=116 amount=-1 -kerning first=1037 second=269 amount=-1 -kerning first=40 second=89 amount=-5 -kerning first=60 second=251 amount=-1 -kerning first=8365 second=244 amount=-1 -kerning first=940 second=118 amount=-2 -kerning first=1184 second=962 amount=-2 -kerning first=363 second=1194 amount=-2 -kerning first=963 second=283 amount=-1 -kerning first=126 second=252 amount=-1 -kerning first=123 second=943 amount=-1 -kerning first=41 second=266 amount=-2 -kerning first=44 second=39 amount=-1 -kerning first=1044 second=217 amount=-1 -kerning first=299 second=79 amount=-2 -kerning first=8260 second=949 amount=-1 -kerning first=1080 second=119 amount=-4 -kerning first=321 second=920 amount=-2 -kerning first=84 second=341 amount=-2 -kerning first=87 second=103 amount=-2 -kerning first=107 second=267 amount=-2 -kerning first=1202 second=218 amount=-1 -kerning first=967 second=230 amount=-1 -kerning first=1039 second=947 amount=-4 -kerning first=182 second=1101 amount=-1 -kerning first=297 second=945 amount=-1 -kerning first=65 second=356 amount=-5 -kerning first=8369 second=1108 amount=-1 -kerning first=900 second=1069 amount=-1 -kerning first=906 second=81 amount=-2 -kerning first=88 second=281 amount=-2 -kerning first=1118 second=231 amount=-1 -kerning first=965 second=1263 amount=-1 -kerning first=164 second=357 amount=-1 -kerning first=167 second=117 amount=-1 -kerning first=46 second=369 amount=-1 -kerning first=186 second=973 amount=-1 -kerning first=1087 second=244 amount=-1 -kerning first=908 second=256 amount=-2 -kerning first=92 second=228 amount=-1 -kerning first=235 second=118 amount=-1 -kerning first=947 second=8230 amount=-2 -kerning first=1224 second=83 amount=-1 -kerning first=255 second=283 amount=-1 -kerning first=8218 second=375 amount=-1 -kerning first=53 second=79 amount=-2 -kerning first=1064 second=257 amount=-1 -kerning first=193 second=229 amount=-1 -kerning first=305 second=359 amount=-1 -kerning first=310 second=119 amount=-3 -kerning first=70 second=920 amount=-2 -kerning first=90 second=1257 amount=-1 -kerning first=1171 second=334 amount=-2 -kerning first=1168 second=1090 amount=-3 -kerning first=951 second=346 amount=-1 -kerning first=1256 second=258 amount=-2 -kerning first=973 second=964 amount=-3 -kerning first=1027 second=273 amount=-1 -kerning first=172 second=242 amount=-1 -kerning first=282 second=372 amount=-5 -kerning first=279 second=947 amount=-1 -kerning first=8230 second=85 amount=-1 -kerning first=51 second=945 amount=-1 -kerning first=194 second=1240 amount=-2 -kerning first=191 second=1262 amount=-2 -kerning first=1094 second=1108 amount=-1 -kerning first=214 second=1069 amount=-1 -kerning first=338 second=231 amount=-1 -kerning first=916 second=361 amount=-1 -kerning first=926 second=121 amount=-1 -kerning first=240 second=243 amount=-1 -kerning first=952 second=1028 amount=-2 -kerning first=955 second=288 amount=-2 -kerning first=35 second=269 amount=-1 -kerning first=1035 second=220 amount=-2 -kerning first=198 second=332 amount=-2 -kerning first=316 second=244 amount=-1 -kerning first=221 second=256 amount=-5 -kerning first=336 second=1298 amount=-1 -kerning first=936 second=71 amount=-2 -kerning first=367 second=83 amount=-1 -kerning first=1299 second=363 amount=-1 -kerning first=1036 second=375 amount=-2 -kerning first=289 second=949 amount=-1 -kerning first=294 second=257 amount=-1 -kerning first=62 second=119 amount=-4 -kerning first=1067 second=8211 amount=-2 -kerning first=59 second=359 amount=-1 -kerning first=202 second=271 amount=-1 -kerning first=1070 second=1051 amount=-1 -kerning first=8364 second=352 amount=-1 -kerning first=900 second=84 amount=-5 -kerning first=79 second=1026 amount=-2 -kerning first=1107 second=234 amount=-1 -kerning first=105 second=218 amount=-2 -kerning first=1186 second=376 amount=-2 -kerning first=368 second=258 amount=-2 -kerning first=125 second=360 amount=-2 -kerning first=1263 second=8212 amount=-2 -kerning first=274 second=45 amount=-2 -kerning first=37 second=947 amount=-4 -kerning first=40 second=372 amount=-5 -kerning first=183 second=287 amount=-1 -kerning first=206 second=219 amount=-2 -kerning first=318 second=1108 amount=-1 -kerning first=323 second=347 amount=-1 -kerning first=904 second=34 amount=-3 -kerning first=86 second=231 amount=-3 -kerning first=901 second=259 amount=-1 -kerning first=1184 second=8250 amount=-2 -kerning first=249 second=288 amount=-2 -kerning first=299 second=362 amount=-2 -kerning first=8260 second=8217 amount=-3 -kerning first=296 second=1176 amount=-1 -kerning first=207 second=374 amount=-5 -kerning first=327 second=289 amount=-1 -kerning first=84 second=1298 amount=-4 -kerning first=1117 second=337 amount=-1 -kerning first=1168 second=99 amount=-1 -kerning first=948 second=111 amount=-1 -kerning first=944 second=351 amount=-1 -kerning first=113 second=83 amount=-1 -kerning first=253 second=233 amount=-1 -kerning first=166 second=245 amount=-1 -kerning first=276 second=375 amount=-1 -kerning first=48 second=257 amount=-1 -kerning first=1062 second=210 amount=-1 -kerning first=297 second=8211 amount=-2 -kerning first=1085 second=352 amount=-1 -kerning first=214 second=84 amount=-5 -kerning first=906 second=364 amount=-2 -kerning first=88 second=1090 amount=-3 -kerning first=91 second=334 amount=-2 -kerning first=1118 second=968 amount=-1 -kerning first=1169 second=277 amount=-1 -kerning first=1223 second=211 amount=-2 -kerning first=371 second=8212 amount=-2 -kerning first=274 second=8249 amount=-3 -kerning first=8221 second=263 amount=-1 -kerning first=1063 second=365 amount=-1 -kerning first=192 second=335 amount=-1 -kerning first=195 second=97 amount=-1 -kerning first=69 second=1108 amount=-1 -kerning first=72 second=347 amount=-1 -kerning first=215 second=259 amount=-1 -kerning first=904 second=8216 amount=-3 -kerning first=92 second=965 amount=-1 -kerning first=98 second=46 amount=-1 -kerning first=1219 second=1184 amount=-5 -kerning first=1224 second=366 amount=-2 -kerning first=258 second=336 amount=-2 -kerning first=381 second=248 amount=-1 -kerning first=8226 second=213 amount=-2 -kerning first=50 second=1176 amount=-1 -kerning first=53 second=362 amount=-2 -kerning first=199 second=47 amount=-1 -kerning first=193 second=966 amount=-1 -kerning first=196 second=275 amount=-1 -kerning first=8361 second=115 amount=-1 -kerning first=76 second=289 amount=-1 -kerning first=923 second=249 amount=-1 -kerning first=915 second=940 amount=-1 -kerning first=239 second=351 amount=-1 -kerning first=176 second=290 amount=-2 -kerning first=8230 second=368 amount=-1 -kerning first=51 second=8211 amount=-2 -kerning first=1071 second=250 amount=-1 -kerning first=80 second=234 amount=-1 -kerning first=1103 second=187 amount=-1 -kerning first=338 second=968 amount=-1 -kerning first=341 second=277 amount=-1 -kerning first=934 second=199 amount=-2 -kerning first=100 second=376 amount=-5 -kerning first=240 second=1035 amount=-5 -kerning first=955 second=1098 amount=-3 -kerning first=117 second=8212 amount=-2 -kerning first=960 second=339 amount=-1 -kerning first=963 second=101 amount=-1 -kerning first=41 second=85 amount=-2 -kerning first=180 second=235 amount=-1 -kerning first=291 second=365 amount=-1 -kerning first=8225 second=8221 amount=-3 -kerning first=8240 second=1066 amount=-5 -kerning first=8366 second=240 amount=-1 -kerning first=345 second=224 amount=-1 -kerning first=928 second=1118 amount=-1 -kerning first=936 second=354 amount=-5 -kerning first=1202 second=39 amount=-2 -kerning first=367 second=366 amount=-2 -kerning first=964 second=279 amount=-1 -kerning first=160 second=248 amount=-1 -kerning first=273 second=171 amount=-3 -kerning first=1046 second=213 amount=-3 -kerning first=289 second=8217 amount=-3 -kerning first=1081 second=115 amount=-1 -kerning first=208 second=87 amount=-2 -kerning first=900 second=367 amount=-1 -kerning first=88 second=99 amount=-2 -kerning first=108 second=261 amount=-1 -kerning first=105 second=953 amount=-1 -kerning first=968 second=226 amount=-1 -kerning first=46 second=210 amount=-1 -kerning first=186 second=338 amount=-2 -kerning first=189 second=100 amount=-1 -kerning first=298 second=941 amount=-1 -kerning first=301 second=250 amount=-1 -kerning first=209 second=262 amount=-2 -kerning first=330 second=187 amount=-1 -kerning first=86 second=968 amount=-1 -kerning first=89 second=277 amount=-4 -kerning first=1119 second=227 amount=-1 -kerning first=249 second=1098 amount=-3 -kerning first=252 second=339 amount=-1 -kerning first=255 second=101 amount=-1 -kerning first=375 second=251 amount=-1 -kerning first=372 second=942 amount=-2 -kerning first=168 second=113 amount=-1 -kerning first=165 second=353 amount=-1 -kerning first=275 second=955 amount=-1 -kerning first=278 second=263 amount=-1 -kerning first=8218 second=216 amount=-1 -kerning first=47 second=365 amount=-1 -kerning first=1044 second=8221 amount=-2 -kerning first=1048 second=1066 amount=-5 -kerning first=1090 second=240 amount=-1 -kerning first=905 second=943 amount=-1 -kerning first=93 second=224 amount=-1 -kerning first=1117 second=1256 amount=-2 -kerning first=910 second=252 amount=-2 -kerning first=356 second=266 amount=-1 -kerning first=113 second=366 amount=-2 -kerning first=256 second=279 amount=-1 -kerning first=253 second=970 amount=-1 -kerning first=282 second=213 amount=-2 -kerning first=8216 second=1195 amount=-1 -kerning first=194 second=225 amount=-1 -kerning first=306 second=355 amount=-1 -kerning first=311 second=115 amount=-1 -kerning first=214 second=367 amount=-1 -kerning first=1169 second=1083 amount=-3 -kerning first=111 second=8218 amount=-1 -kerning first=1223 second=945 amount=-1 -kerning first=260 second=226 amount=-1 -kerning first=8240 second=81 amount=-2 -kerning first=55 second=250 amount=-1 -kerning first=52 second=941 amount=-1 -kerning first=78 second=187 amount=-1 -kerning first=75 second=1241 amount=-2 -kerning first=928 second=117 amount=-1 -kerning first=95 second=1079 amount=-1 -kerning first=1178 second=269 amount=-1 -kerning first=361 second=369 amount=-1 -kerning first=121 second=251 amount=-1 -kerning first=36 second=263 amount=-1 -kerning first=1036 second=216 amount=-3 -kerning first=286 second=1066 amount=-1 -kerning first=281 second=8221 amount=-1 -kerning first=8249 second=256 amount=-1 -kerning first=1074 second=118 amount=-4 -kerning first=317 second=240 amount=-1 -kerning first=105 second=39 amount=-3 -kerning first=1186 second=217 amount=-1 -kerning first=359 second=8222 amount=-1 -kerning first=962 second=229 amount=-1 -kerning first=40 second=213 amount=-2 -kerning first=1037 second=371 amount=-1 -kerning first=183 second=103 amount=-1 -kerning first=60 second=355 amount=-1 -kerning first=63 second=115 amount=-1 -kerning first=203 second=267 amount=-1 -kerning first=8365 second=346 amount=-1 -kerning first=1184 second=947 amount=-3 -kerning first=963 second=1240 amount=-2 -kerning first=960 second=1262 amount=-2 -kerning first=126 second=356 amount=-5 -kerning first=162 second=116 amount=-1 -kerning first=271 second=268 amount=-2 -kerning first=41 second=368 amount=-2 -kerning first=1048 second=81 amount=-2 -kerning first=180 second=972 amount=-1 -kerning first=184 second=281 amount=-1 -kerning first=67 second=65 amount=-1 -kerning first=1080 second=243 amount=-1 -kerning first=8366 second=1028 amount=-2 -kerning first=8372 second=288 amount=-2 -kerning first=87 second=227 amount=-2 -kerning first=247 second=973 amount=-1 -kerning first=967 second=332 amount=-2 -kerning first=276 second=216 amount=-2 -kerning first=42 second=1066 amount=-5 -kerning first=188 second=228 amount=-1 -kerning first=303 second=118 amount=-4 -kerning first=205 second=1194 amount=-2 -kerning first=1118 second=333 amount=-1 -kerning first=1210 second=257 amount=-1 -kerning first=1203 second=949 amount=-1 -kerning first=254 second=229 amount=-1 -kerning first=968 second=963 amount=-1 -kerning first=164 second=920 amount=-2 -kerning first=971 second=271 amount=-1 -kerning first=274 second=1195 amount=-1 -kerning first=49 second=253 amount=-1 -kerning first=186 second=1257 amount=-1 -kerning first=1087 second=346 amount=-1 -kerning first=1170 second=273 amount=-1 -kerning first=1119 second=964 amount=-3 -kerning first=352 second=947 amount=-1 -kerning first=950 second=287 amount=-1 -kerning first=252 second=1262 amount=-2 -kerning first=255 second=1240 amount=-2 -kerning first=1026 second=219 amount=-2 -kerning first=278 second=1069 amount=-1 -kerning first=8226 second=34 amount=-3 -kerning first=1064 second=361 amount=-1 -kerning first=1067 second=121 amount=-1 -kerning first=310 second=243 amount=-2 -kerning first=70 second=1102 amount=-1 -kerning first=1096 second=288 amount=-2 -kerning first=96 second=269 amount=-1 -kerning first=1176 second=220 amount=-2 -kerning first=954 second=232 amount=-2 -kerning first=1220 second=1176 amount=-1 -kerning first=382 second=244 amount=-1 -kerning first=1027 second=374 amount=-5 -kerning first=176 second=106 amount=1 -kerning first=57 second=118 amount=-4 -kerning first=1071 second=71 amount=-2 -kerning first=194 second=962 amount=-1 -kerning first=77 second=283 amount=-1 -kerning first=338 second=333 amount=-1 -kerning first=926 second=245 amount=-1 -kerning first=100 second=217 amount=-2 -kerning first=363 second=257 amount=-1 -kerning first=1223 second=8211 amount=-2 -kerning first=123 second=119 amount=-4 -kerning first=260 second=963 amount=-1 -kerning first=268 second=44 amount=-1 -kerning first=35 second=371 amount=-1 -kerning first=174 second=1026 amount=-5 -kerning first=177 second=286 amount=-2 -kerning first=8240 second=364 amount=-2 -kerning first=1073 second=246 amount=-1 -kerning first=201 second=218 amount=-2 -kerning first=316 second=346 amount=-1 -kerning first=8363 second=291 amount=-1 -kerning first=339 second=964 amount=-1 -kerning first=345 second=45 amount=-1 -kerning first=98 second=947 amount=-1 -kerning first=964 second=97 amount=-1 -kerning first=36 second=1069 amount=-1 -kerning first=42 second=81 amount=-2 -kerning first=1039 second=259 amount=-1 -kerning first=182 second=231 amount=-1 -kerning first=294 second=361 amount=-1 -kerning first=8226 second=8216 amount=-3 -kerning first=297 second=121 amount=-1 -kerning first=62 second=243 amount=-1 -kerning first=202 second=373 amount=-4 -kerning first=199 second=1202 amount=-2 -kerning first=317 second=1028 amount=-2 -kerning first=322 second=288 amount=-2 -kerning first=365 second=1176 amount=-1 -kerning first=962 second=966 amount=-1 -kerning first=965 second=275 amount=-1 -kerning first=161 second=244 amount=-1 -kerning first=270 second=374 amount=-3 -kerning first=267 second=1203 amount=-1 -kerning first=8211 second=87 amount=-2 -kerning first=301 second=71 amount=-2 -kerning first=66 second=193 amount=-1 -kerning first=1083 second=111 amount=-1 -kerning first=209 second=83 amount=-1 -kerning first=901 second=363 amount=-1 -kerning first=86 second=333 amount=-1 -kerning first=1206 second=210 amount=-1 -kerning first=246 second=1299 amount=-1 -kerning first=278 second=84 amount=-5 -kerning first=1048 second=364 amount=-2 -kerning first=184 second=1090 amount=-3 -kerning first=302 second=246 amount=-1 -kerning first=1080 second=1035 amount=-5 -kerning first=1084 second=291 amount=-1 -kerning first=210 second=258 amount=-2 -kerning first=8372 second=1098 amount=-3 -kerning first=902 second=1059 amount=-2 -kerning first=8378 second=339 amount=-1 -kerning first=93 second=45 amount=-2 -kerning first=90 second=273 amount=-1 -kerning first=948 second=235 amount=-1 -kerning first=253 second=335 amount=-1 -kerning first=256 second=97 amount=-1 -kerning first=163 second=1108 amount=-1 -kerning first=166 second=347 amount=-1 -kerning first=282 second=34 amount=-3 -kerning first=45 second=1175 amount=-2 -kerning first=48 second=361 amount=-1 -kerning first=51 second=121 amount=-1 -kerning first=188 second=965 amount=-1 -kerning first=94 second=220 amount=-2 -kerning first=1174 second=171 amount=-1 -kerning first=254 second=966 amount=-1 -kerning first=1028 second=87 amount=-1 -kerning first=170 second=289 amount=-1 -kerning first=55 second=71 amount=-2 -kerning first=1063 second=940 amount=-1 -kerning first=195 second=221 amount=-5 -kerning first=313 second=111 amount=-1 -kerning first=75 second=233 amount=-2 -kerning first=215 second=363 amount=-1 -kerning first=333 second=967 amount=-2 -kerning first=920 second=198 amount=-2 -kerning first=95 second=375 amount=-1 -kerning first=238 second=290 amount=-2 -kerning first=361 second=210 amount=-2 -kerning first=950 second=1097 amount=-2 -kerning first=956 second=100 amount=-1 -kerning first=1224 second=941 amount=-1 -kerning first=36 second=84 amount=-5 -kerning first=175 second=234 amount=-1 -kerning first=8218 second=8220 amount=-1 -kerning first=56 second=246 amount=-1 -kerning first=196 second=376 amount=-5 -kerning first=314 second=291 amount=-1 -kerning first=1096 second=1098 amount=-3 -kerning first=1099 second=339 amount=-1 -kerning first=931 second=113 amount=-1 -kerning first=923 second=353 amount=-1 -kerning first=93 second=8249 amount=-3 -kerning first=1179 second=263 amount=-1 -kerning first=262 second=377 amount=-1 -kerning first=37 second=259 amount=-1 -kerning first=40 second=34 amount=-3 -kerning first=1037 second=212 amount=-2 -kerning first=282 second=8216 amount=-3 -kerning first=1071 second=354 amount=-5 -kerning first=194 second=8250 amount=-1 -kerning first=80 second=336 amount=-2 -kerning first=1103 second=279 amount=-1 -kerning first=223 second=248 amount=-1 -kerning first=344 second=171 amount=-1 -kerning first=963 second=225 amount=-1 -kerning first=271 second=87 amount=-5 -kerning first=1035 second=1185 amount=-3 -kerning first=180 second=337 amount=-1 -kerning first=184 second=99 amount=-1 -kerning first=291 second=940 amount=-1 -kerning first=296 second=249 amount=-1 -kerning first=64 second=111 amount=-1 -kerning first=1073 second=1038 amount=-2 -kerning first=61 second=351 amount=-1 -kerning first=204 second=261 amount=-1 -kerning first=201 second=953 amount=-1 -kerning first=8363 second=1101 amount=-1 -kerning first=81 second=967 amount=-1 -kerning first=350 second=88 amount=-1 -kerning first=247 second=338 amount=-2 -kerning first=250 second=100 amount=-1 -kerning first=367 second=941 amount=-1 -kerning first=160 second=352 amount=-1 -kerning first=273 second=262 amount=-2 -kerning first=42 second=364 amount=-2 -kerning first=182 second=968 amount=-1 -kerning first=185 second=277 amount=-1 -kerning first=300 second=199 amount=-2 -kerning first=62 second=1035 amount=-5 -kerning first=65 second=291 amount=-1 -kerning first=325 second=339 amount=-1 -kerning first=8369 second=973 amount=-1 -kerning first=322 second=1098 amount=-3 -kerning first=903 second=251 amount=-1 -kerning first=108 second=365 amount=-1 -kerning first=1186 second=8221 amount=-2 -kerning first=40 second=8216 amount=-3 -kerning first=1051 second=252 amount=-1 -kerning first=189 second=224 amount=-1 -kerning first=298 second=1118 amount=-1 -kerning first=301 second=354 amount=-5 -kerning first=206 second=1184 amount=-5 -kerning first=209 second=366 amount=-2 -kerning first=330 second=279 amount=-1 -kerning first=92 second=171 amount=-3 -kerning first=89 second=378 amount=-2 -kerning first=235 second=63 amount=-2 -kerning first=950 second=103 amount=-1 -kerning first=1219 second=253 amount=-1 -kerning first=255 second=225 amount=-1 -kerning first=375 second=355 amount=-1 -kerning first=372 second=1119 amount=-2 -kerning first=275 second=1185 amount=-1 -kerning first=278 second=367 amount=-1 -kerning first=47 second=940 amount=-1 -kerning first=50 second=249 amount=-1 -kerning first=302 second=1038 amount=-2 -kerning first=1084 second=1101 amount=-1 -kerning first=8378 second=1262 amount=-2 -kerning first=915 second=116 amount=-1 -kerning first=1171 second=268 amount=-2 -kerning first=948 second=972 amount=-1 -kerning first=951 second=281 amount=-1 -kerning first=113 second=941 amount=-1 -kerning first=169 second=1241 amount=-1 -kerning first=172 second=187 amount=-1 -kerning first=276 second=8220 amount=-3 -kerning first=54 second=199 amount=-2 -kerning first=191 second=1079 amount=-1 -kerning first=197 second=89 amount=-5 -kerning first=74 second=339 amount=-1 -kerning first=77 second=101 amount=-1 -kerning first=357 second=1066 amount=-5 -kerning first=955 second=228 amount=-1 -kerning first=1298 second=118 amount=-4 -kerning first=35 second=212 amount=-2 -kerning first=55 second=354 amount=-5 -kerning first=52 second=1118 amount=-1 -kerning first=1073 second=67 amount=-2 -kerning first=198 second=266 amount=-2 -kerning first=201 second=39 amount=-3 -kerning first=78 second=279 amount=-1 -kerning first=1175 second=1195 amount=-1 -kerning first=124 second=115 amount=-1 -kerning first=121 second=355 amount=-1 -kerning first=36 second=367 amount=-1 -kerning first=56 second=1038 amount=-2 -kerning first=1074 second=242 amount=-1 -kerning first=202 second=214 amount=-2 -kerning first=1070 second=923 amount=-2 -kerning first=314 second=1101 amount=-1 -kerning first=8364 second=287 amount=-1 -kerning first=1099 second=1262 amount=-2 -kerning first=222 second=356 amount=-2 -kerning first=183 second=227 amount=-1 -kerning first=298 second=117 amount=-1 -kerning first=203 second=369 amount=-1 -kerning first=318 second=973 amount=-1 -kerning first=8370 second=232 amount=-1 -kerning first=100 second=8221 amount=-3 -kerning first=103 second=1066 amount=-5 -kerning first=249 second=228 amount=-1 -kerning first=372 second=118 amount=-1 -kerning first=963 second=962 amount=-1 -kerning first=162 second=240 amount=-1 -kerning first=271 second=370 amount=-2 -kerning first=8212 second=83 amount=-1 -kerning first=41 second=943 amount=-1 -kerning first=44 second=252 amount=-1 -kerning first=180 second=1256 amount=-2 -kerning first=302 second=67 amount=-2 -kerning first=327 second=229 amount=-1 -kerning first=902 second=359 amount=-1 -kerning first=905 second=119 amount=-4 -kerning first=84 second=1081 amount=-2 -kerning first=87 second=328 amount=-2 -kerning first=1117 second=271 amount=-1 -kerning first=345 second=1195 amount=-1 -kerning first=944 second=286 amount=-2 -kerning first=247 second=1257 amount=-1 -kerning first=8216 second=258 amount=-3 -kerning first=1049 second=360 amount=-2 -kerning first=303 second=242 amount=-1 -kerning first=65 second=1101 amount=-1 -kerning first=1085 second=287 amount=-1 -kerning first=325 second=1262 amount=-2 -kerning first=91 second=268 amount=-2 -kerning first=357 second=81 amount=-2 -kerning first=1210 second=361 amount=-1 -kerning first=1223 second=121 amount=-1 -kerning first=377 second=243 amount=-1 -kerning first=971 second=373 amount=-4 -kerning first=49 second=357 amount=-1 -kerning first=52 second=117 amount=-1 -kerning first=192 second=269 amount=-1 -kerning first=69 second=973 amount=-1 -kerning first=1095 second=232 amount=-1 -kerning first=912 second=244 amount=-1 -kerning first=95 second=216 amount=-2 -kerning first=1170 second=374 amount=-5 -kerning first=238 second=106 amount=1 -kerning first=255 second=962 amount=-1 -kerning first=8222 second=363 amount=-1 -kerning first=56 second=67 amount=-2 -kerning first=1067 second=245 amount=-1 -kerning first=196 second=217 amount=-2 -kerning first=1090 second=1299 amount=-3 -kerning first=96 second=371 amount=-1 -kerning first=93 second=1195 amount=-1 -kerning first=236 second=1026 amount=-5 -kerning first=239 second=286 amount=-2 -kerning first=951 second=1090 amount=-3 -kerning first=1263 second=246 amount=-1 -kerning first=1034 second=258 amount=-1 -kerning first=176 second=230 amount=-1 -kerning first=287 second=360 amount=-2 -kerning first=8224 second=1059 amount=-2 -kerning first=57 second=242 amount=-1 -kerning first=194 second=947 amount=-4 -kerning first=197 second=372 amount=-5 -kerning first=315 second=287 amount=-1 -kerning first=77 second=1240 amount=-2 -kerning first=74 second=1262 amount=-2 -kerning first=1103 second=97 amount=-1 -kerning first=916 second=1108 amount=-1 -kerning first=926 second=347 amount=-1 -kerning first=103 second=81 amount=-2 -kerning first=1184 second=259 amount=-1 -kerning first=363 second=361 amount=-1 -kerning first=955 second=965 amount=-1 -kerning first=123 second=243 amount=-1 -kerning first=263 second=373 amount=-1 -kerning first=174 second=1263 amount=-1 -kerning first=8260 second=248 amount=-1 -kerning first=1073 second=350 amount=-1 -kerning first=321 second=232 amount=-1 -kerning first=339 second=1203 amount=-2 -kerning first=342 second=374 amount=-2 -kerning first=936 second=289 amount=-1 -kerning first=964 second=221 amount=-5 -kerning first=273 second=83 amount=-1 -kerning first=1039 second=363 amount=-1 -kerning first=1036 second=1177 amount=-1 -kerning first=182 second=333 amount=-1 -kerning first=297 second=245 amount=-1 -kerning first=202 second=949 amount=-1 -kerning first=205 second=257 amount=-1 -kerning first=8369 second=338 amount=-2 -kerning first=942 second=234 amount=-1 -kerning first=245 second=1090 amount=-1 -kerning first=371 second=246 amount=-1 -kerning first=965 second=376 amount=-5 -kerning first=161 second=346 amount=-1 -kerning first=43 second=360 amount=-2 -kerning first=1041 second=1059 amount=-2 -kerning first=1037 second=8212 amount=-2 -kerning first=186 second=273 amount=-1 -kerning first=189 second=45 amount=-2 -kerning first=183 second=964 amount=-3 -kerning first=1083 second=235 amount=-1 -kerning first=330 second=97 amount=-1 -kerning first=249 second=965 amount=-1 -kerning first=963 second=8250 amount=-1 -kerning first=162 second=1028 amount=-2 -kerning first=165 second=288 amount=-2 -kerning first=190 second=220 amount=-2 -kerning first=302 second=350 amount=-1 -kerning first=70 second=232 amount=-1 -kerning first=207 second=1176 amount=-1 -kerning first=327 second=966 amount=-1 -kerning first=334 second=47 amount=-1 -kerning first=87 second=1203 amount=-1 -kerning first=910 second=197 amount=-5 -kerning first=1171 second=87 amount=-5 -kerning first=948 second=337 amount=-1 -kerning first=951 second=99 amount=-1 -kerning first=1207 second=940 amount=-1 -kerning first=1220 second=249 amount=-1 -kerning first=256 second=221 amount=-5 -kerning first=376 second=351 amount=-3 -kerning first=379 second=111 amount=-1 -kerning first=973 second=261 amount=-1 -kerning first=169 second=233 amount=-1 -kerning first=276 second=1177 amount=-1 -kerning first=51 second=245 amount=-1 -kerning first=191 second=375 amount=-1 -kerning first=306 second=290 amount=-2 -kerning first=1097 second=100 amount=-1 -kerning first=211 second=1051 amount=-1 -kerning first=1174 second=262 amount=-1 -kerning first=237 second=234 amount=-1 -kerning first=357 second=364 amount=-2 -kerning first=952 second=277 amount=-1 -kerning first=117 second=246 amount=-1 -kerning first=280 second=1059 amount=-2 -kerning first=8225 second=251 amount=-1 -kerning first=189 second=8249 amount=-3 -kerning first=198 second=85 amount=-2 -kerning first=313 second=235 amount=-1 -kerning first=78 second=97 amount=-1 -kerning first=75 second=335 amount=-2 -kerning first=336 second=377 amount=-1 -kerning first=101 second=34 amount=-1 -kerning first=1178 second=212 amount=-1 -kerning first=956 second=224 amount=-1 -kerning first=1224 second=1118 amount=-1 -kerning first=255 second=8250 amount=-1 -kerning first=266 second=86 amount=-1 -kerning first=1026 second=1184 amount=-5 -kerning first=175 second=336 amount=-2 -kerning first=289 second=248 amount=-1 -kerning first=56 second=350 amount=-1 -kerning first=1074 second=63 amount=-1 -kerning first=199 second=260 amount=-1 -kerning first=8364 second=103 amount=-1 -kerning first=76 second=966 amount=-1 -kerning first=222 second=197 amount=-2 -kerning first=337 second=1076 amount=-1 -kerning first=1176 second=1185 amount=-3 -kerning first=365 second=249 amount=-1 -kerning first=1263 second=1038 amount=-2 -kerning first=125 second=111 amount=-1 -kerning first=37 second=363 amount=-1 -kerning first=8250 second=356 amount=-3 -kerning first=60 second=290 amount=-2 -kerning first=203 second=210 amount=-2 -kerning first=318 second=338 amount=-2 -kerning first=323 second=100 amount=-1 -kerning first=8365 second=281 amount=-1 -kerning first=223 second=352 amount=-1 -kerning first=934 second=1241 amount=-1 -kerning first=103 second=364 amount=-2 -kerning first=369 second=199 amount=-2 -kerning first=960 second=1079 amount=-1 -kerning first=123 second=1035 amount=-5 -kerning first=126 second=291 amount=-1 -kerning first=271 second=211 amount=-2 -kerning first=35 second=8212 amount=-2 -kerning first=38 second=1059 amount=-2 -kerning first=296 second=353 amount=-1 -kerning first=299 second=113 amount=-1 -kerning first=64 second=235 amount=-1 -kerning first=204 second=365 amount=-1 -kerning first=8372 second=228 amount=-1 -kerning first=101 second=8216 amount=-1 -kerning first=250 second=224 amount=-1 -kerning first=367 second=1118 amount=-1 -kerning first=967 second=266 amount=-2 -kerning first=273 second=366 amount=-2 -kerning first=188 second=171 amount=-3 -kerning first=1085 second=103 amount=-1 -kerning first=202 second=8217 amount=-3 -kerning first=8369 second=1257 amount=-1 -kerning first=906 second=115 amount=-1 -kerning first=903 second=355 amount=-1 -kerning first=91 second=87 amount=-5 -kerning first=1118 second=267 amount=-1 -kerning first=108 second=940 amount=-1 -kerning first=371 second=1038 amount=-2 -kerning first=971 second=214 amount=-2 -kerning first=270 second=8218 amount=-1 -kerning first=1051 second=356 amount=-5 -kerning first=1063 second=116 amount=-1 -kerning first=69 second=338 amount=-2 -kerning first=72 second=100 amount=-1 -kerning first=1083 second=972 amount=-1 -kerning first=209 second=941 amount=-1 -kerning first=1087 second=281 amount=-1 -kerning first=92 second=262 amount=-2 -kerning first=89 second=954 amount=-3 -kerning first=347 second=8220 amount=-1 -kerning first=950 second=227 amount=-1 -kerning first=1219 second=357 amount=-1 -kerning first=1224 second=117 amount=-1 -kerning first=252 second=1079 amount=-1 -kerning first=258 second=89 amount=-5 -kerning first=165 second=1098 amount=-3 -kerning first=168 second=339 amount=-1 -kerning first=47 second=1117 amount=-1 -kerning first=53 second=113 amount=-1 -kerning first=50 second=353 amount=-1 -kerning first=196 second=38 amount=-1 -kerning first=193 second=263 amount=-1 -kerning first=1096 second=228 amount=-1 -kerning first=915 second=240 amount=-1 -kerning first=910 second=916 amount=-5 -kerning first=96 second=212 amount=-2 -kerning first=1168 second=1194 amount=-2 -kerning first=1171 second=370 amount=-2 -kerning first=948 second=1256 amount=-2 -kerning first=113 second=1118 amount=-1 -kerning first=1263 second=67 amount=-2 -kerning first=169 second=970 amount=-1 -kerning first=172 second=279 amount=-1 -kerning first=8224 second=359 amount=-1 -kerning first=8230 second=119 amount=-2 -kerning first=1065 second=920 amount=-1 -kerning first=197 second=213 amount=-2 -kerning first=315 second=103 amount=-1 -kerning first=77 second=225 amount=-1 -kerning first=1094 second=1257 amount=-1 -kerning first=338 second=267 amount=-1 -kerning first=94 second=1185 amount=-3 -kerning first=117 second=1038 amount=-2 -kerning first=1298 second=242 amount=-1 -kerning first=177 second=226 amount=-1 -kerning first=288 second=356 amount=-1 -kerning first=291 second=116 amount=-1 -kerning first=198 second=368 amount=-2 -kerning first=313 second=972 amount=-1 -kerning first=316 second=281 amount=-1 -kerning first=8363 second=231 amount=-1 -kerning first=95 second=8220 amount=-3 -kerning first=367 second=117 amount=-1 -kerning first=196 second=8221 amount=-3 -kerning first=199 second=1066 amount=-1 -kerning first=322 second=228 amount=-1 -kerning first=900 second=118 amount=-4 -kerning first=222 second=916 amount=-2 -kerning first=105 second=252 amount=-1 -kerning first=245 second=382 amount=-1 -kerning first=371 second=67 amount=-2 -kerning first=965 second=217 amount=-2 -kerning first=262 second=8222 amount=-1 -kerning first=274 second=79 amount=-2 -kerning first=1041 second=359 amount=-1 -kerning first=206 second=253 amount=-1 -kerning first=318 second=1257 amount=-1 -kerning first=8370 second=334 amount=-2 -kerning first=8365 second=1090 amount=-3 -kerning first=86 second=267 amount=-1 -kerning first=246 second=1083 amount=-1 -kerning first=372 second=242 amount=-3 -kerning first=963 second=947 amount=-4 -kerning first=126 second=1101 amount=-1 -kerning first=271 second=945 amount=-1 -kerning first=44 second=356 amount=-5 -kerning first=47 second=116 amount=-1 -kerning first=64 second=972 amount=-1 -kerning first=1084 second=231 amount=-1 -kerning first=8372 second=965 amount=-1 -kerning first=905 second=243 amount=-1 -kerning first=1117 second=373 amount=-4 -kerning first=113 second=117 amount=-1 -kerning first=253 second=269 amount=-1 -kerning first=163 second=973 amount=-1 -kerning first=1062 second=244 amount=-1 -kerning first=191 second=216 amount=-2 -kerning first=306 second=106 amount=1 -kerning first=214 second=118 amount=-4 -kerning first=91 second=370 amount=-2 -kerning first=88 second=1194 amount=-3 -kerning first=117 second=67 amount=-2 -kerning first=1223 second=245 amount=-1 -kerning first=971 second=949 amount=-1 -kerning first=170 second=229 amount=-1 -kerning first=280 second=359 amount=-1 -kerning first=283 second=119 amount=-1 -kerning first=8217 second=1051 amount=-3 -kerning first=49 second=920 amount=-2 -kerning first=189 second=1195 amount=-1 -kerning first=192 second=371 amount=-1 -kerning first=1066 second=194 amount=-1 -kerning first=304 second=1026 amount=-5 -kerning first=69 second=1257 amount=-1 -kerning first=1095 second=334 amount=-2 -kerning first=1087 second=1090 amount=-3 -kerning first=212 second=1046 amount=-3 -kerning first=912 second=346 amount=-1 -kerning first=238 second=230 amount=-1 -kerning first=358 second=360 amount=-2 -kerning first=950 second=964 amount=-3 -kerning first=956 second=45 amount=-2 -kerning first=118 second=242 amount=-1 -kerning first=255 second=947 amount=-4 -kerning first=258 second=372 amount=-5 -kerning first=168 second=1262 amount=-2 -kerning first=1064 second=1108 amount=-1 -kerning first=1067 second=347 amount=-1 -kerning first=193 second=1069 amount=-1 -kerning first=314 second=231 amount=-1 -kerning first=1096 second=965 amount=-1 -kerning first=1102 second=46 amount=-1 -kerning first=334 second=1202 amount=-3 -kerning first=337 second=373 amount=-1 -kerning first=915 second=1028 amount=-2 -kerning first=923 second=288 amount=-2 -kerning first=236 second=1263 amount=-1 -kerning first=958 second=220 amount=-2 -kerning first=1263 second=350 amount=-1 -kerning first=1027 second=1176 amount=-1 -kerning first=176 second=332 amount=-2 -kerning first=8250 second=197 amount=-3 -kerning first=60 second=106 amount=1 -kerning first=1071 second=289 amount=-1 -kerning first=8365 second=99 amount=-1 -kerning first=77 second=962 amount=-1 -kerning first=1103 second=221 amount=-5 -kerning first=335 second=8230 amount=-1 -kerning first=934 second=233 amount=-1 -kerning first=1184 second=363 amount=-1 -kerning first=960 second=375 amount=-1 -kerning first=38 second=359 amount=-1 -kerning first=41 second=119 amount=-4 -kerning first=1028 second=8211 amount=-1 -kerning first=177 second=963 amount=-1 -kerning first=180 second=271 amount=-1 -kerning first=8260 second=352 amount=-1 -kerning first=58 second=1026 amount=-5 -kerning first=61 second=286 amount=-2 -kerning first=1076 second=234 amount=-1 -kerning first=316 second=1090 amount=-3 -kerning first=321 second=334 amount=-2 -kerning first=8363 second=968 amount=-1 -kerning first=8366 second=277 amount=-1 -kerning first=221 second=1107 amount=-3 -kerning first=1178 second=8212 amount=-2 -kerning first=247 second=273 amount=-1 -kerning first=250 second=45 amount=-2 -kerning first=244 second=964 amount=-1 -kerning first=956 second=8249 amount=-3 -kerning first=967 second=85 amount=-2 -kerning first=160 second=287 amount=-1 -kerning first=185 second=219 amount=-2 -kerning first=294 second=1108 amount=-1 -kerning first=297 second=347 amount=-1 -kerning first=65 second=231 amount=-1 -kerning first=205 second=361 amount=-1 -kerning first=322 second=965 amount=-1 -kerning first=942 second=336 amount=-2 -kerning first=1203 second=248 amount=-1 -kerning first=251 second=220 amount=-2 -kerning first=371 second=350 amount=-1 -kerning first=374 second=110 amount=-3 -kerning first=164 second=232 amount=-1 -kerning first=274 second=362 amount=-2 -kerning first=277 second=122 amount=-1 -kerning first=186 second=374 amount=-5 -kerning first=301 second=289 amount=-1 -kerning first=1083 second=337 amount=-1 -kerning first=1087 second=99 amount=-1 -kerning first=330 second=221 amount=-5 -kerning first=904 second=351 amount=-1 -kerning first=92 second=83 amount=-1 -kerning first=1119 second=261 amount=-1 -kerning first=943 second=967 amount=-2 -kerning first=252 second=375 amount=-1 -kerning first=375 second=290 amount=-2 -kerning first=271 second=8211 amount=-2 -kerning first=8218 second=250 amount=-1 -kerning first=193 second=84 amount=-5 -kerning first=305 second=234 amount=-1 -kerning first=70 second=334 amount=-2 -kerning first=1084 second=968 amount=-1 -kerning first=1090 second=277 amount=-1 -kerning first=8378 second=1079 amount=-1 -kerning first=905 second=1035 amount=-5 -kerning first=910 second=291 amount=-4 -kerning first=1171 second=211 amount=-2 -kerning first=1220 second=353 amount=-1 -kerning first=250 second=8249 amount=-3 -kerning first=379 second=235 amount=-1 -kerning first=973 second=365 amount=-1 -kerning first=169 second=335 amount=-1 -kerning first=172 second=97 amount=-1 -kerning first=48 second=1108 amount=-1 -kerning first=51 second=347 amount=-1 -kerning first=194 second=259 amount=-1 -kerning first=197 second=34 amount=-3 -kerning first=217 second=196 amount=-2 -kerning first=1174 second=366 amount=-1 -kerning first=237 second=336 amount=-2 -kerning first=955 second=171 amount=-3 -kerning first=117 second=350 amount=-1 -kerning first=971 second=8217 amount=-3 -kerning first=170 second=966 amount=-1 -kerning first=174 second=275 amount=-1 -kerning first=8240 second=115 amount=-1 -kerning first=8225 second=355 amount=-1 -kerning first=55 second=289 amount=-1 -kerning first=313 second=337 amount=-1 -kerning first=316 second=99 amount=-1 -kerning first=78 second=221 amount=-5 -kerning first=221 second=111 amount=-4 -kerning first=95 second=1177 amount=-1 -kerning first=364 second=198 amount=-2 -kerning first=121 second=290 amount=-2 -kerning first=1036 second=250 amount=-1 -kerning first=289 second=352 amount=-1 -kerning first=59 second=234 amount=-1 -kerning first=1074 second=187 amount=-1 -kerning first=314 second=968 amount=-1 -kerning first=317 second=277 amount=-1 -kerning first=8364 second=227 amount=-1 -kerning first=79 second=376 amount=-3 -kerning first=1099 second=1079 amount=-1 -kerning first=923 second=1098 amount=-3 -kerning first=931 second=339 amount=-1 -kerning first=96 second=8212 amount=-2 -kerning first=365 second=353 amount=-1 -kerning first=962 second=263 amount=-1 -kerning first=125 second=235 amount=-1 -kerning first=8250 second=916 amount=-3 -kerning first=197 second=8216 amount=-3 -kerning first=323 second=224 amount=-1 -kerning first=77 second=8250 amount=-1 -kerning first=934 second=970 amount=-1 -kerning first=246 second=378 amount=-1 -kerning first=249 second=171 amount=-3 -kerning first=372 second=63 amount=-1 -kerning first=263 second=8217 amount=-1 -kerning first=1048 second=115 amount=-1 -kerning first=187 second=87 amount=-3 -kerning first=64 second=337 amount=-1 -kerning first=204 second=940 amount=-1 -kerning first=207 second=249 amount=-1 -kerning first=87 second=261 amount=-2 -kerning first=1117 second=214 amount=-2 -kerning first=944 second=226 amount=-1 -kerning first=1202 second=356 amount=-2 -kerning first=967 second=368 amount=-2 -kerning first=163 second=338 amount=-2 -kerning first=166 second=100 amount=-1 -kerning first=273 second=941 amount=-1 -kerning first=276 second=250 amount=-1 -kerning first=45 second=352 amount=-1 -kerning first=188 second=262 amount=-2 -kerning first=300 second=1241 amount=-1 -kerning first=303 second=187 amount=-1 -kerning first=65 second=968 amount=-1 -kerning first=1085 second=227 amount=-1 -kerning first=325 second=1079 amount=-1 -kerning first=332 second=89 amount=-3 -kerning first=91 second=211 amount=-2 -kerning first=1118 second=369 amount=-1 -kerning first=228 second=1098 amount=-1 -kerning first=354 second=251 amount=-2 -kerning first=114 second=113 amount=-1 -kerning first=254 second=263 amount=-1 -kerning first=968 second=1066 amount=-5 -kerning first=965 second=8221 amount=-3 -kerning first=1063 second=240 amount=-1 -kerning first=192 second=212 amount=-2 -kerning first=72 second=224 amount=-1 -kerning first=1083 second=1256 amount=-2 -kerning first=209 second=1118 amount=-1 -kerning first=212 second=354 amount=-2 -kerning first=92 second=366 amount=-2 -kerning first=950 second=328 amount=-2 -kerning first=1219 second=920 amount=-2 -kerning first=258 second=213 amount=-2 -kerning first=1026 second=253 amount=-1 -kerning first=190 second=1185 amount=-3 -kerning first=193 second=367 amount=-1 -kerning first=70 second=1220 amount=-1 -kerning first=1090 second=1083 amount=-3 -kerning first=910 second=1101 amount=-4 -kerning first=1171 second=945 amount=-1 -kerning first=239 second=226 amount=-1 -kerning first=379 second=972 amount=-1 -kerning first=382 second=281 amount=-1 -kerning first=54 second=1241 amount=-1 -kerning first=57 second=187 amount=-1 -kerning first=191 second=8220 amount=-3 -kerning first=80 second=89 amount=-2 -kerning first=74 second=1079 amount=-1 -kerning first=338 second=369 amount=-1 -kerning first=916 second=973 amount=-1 -kerning first=100 second=251 amount=-1 -kerning first=960 second=216 amount=-2 -kerning first=260 second=1066 amount=-5 -kerning first=257 second=8221 amount=-1 -kerning first=291 second=240 amount=-1 -kerning first=1073 second=283 amount=-1 -kerning first=198 second=943 amount=-1 -kerning first=201 second=252 amount=-1 -kerning first=313 second=1256 amount=-1 -kerning first=8363 second=333 amount=-1 -kerning first=336 second=8222 amount=-1 -kerning first=936 second=229 amount=-1 -kerning first=956 second=1195 amount=-1 -kerning first=160 second=103 amount=-1 -kerning first=1299 second=1026 amount=-5 -kerning first=42 second=115 amount=-1 -kerning first=182 second=267 amount=-1 -kerning first=1078 second=230 amount=-1 -kerning first=8369 second=273 amount=-1 -kerning first=900 second=242 amount=-1 -kerning first=8364 second=964 amount=-3 -kerning first=1102 second=947 amount=-1 -kerning first=343 second=945 amount=-1 -kerning first=931 second=1262 amount=-2 -kerning first=105 second=356 amount=-5 -kerning first=108 second=116 amount=-1 -kerning first=962 second=1069 amount=-1 -kerning first=968 second=81 amount=-2 -kerning first=125 second=972 amount=-1 -kerning first=161 second=281 amount=-1 -kerning first=209 second=117 amount=-1 -kerning first=206 second=357 amount=-1 -kerning first=8377 second=220 amount=-2 -kerning first=86 second=369 amount=-1 -kerning first=1206 second=244 amount=-1 -kerning first=252 second=216 amount=-2 -kerning first=375 second=106 amount=1 -kerning first=165 second=228 amount=-1 -kerning first=278 second=118 amount=-4 -kerning first=8218 second=71 amount=-1 -kerning first=47 second=240 amount=-1 -kerning first=1059 second=193 amount=-2 -kerning first=184 second=1194 amount=-2 -kerning first=302 second=283 amount=-1 -kerning first=64 second=1256 amount=-2 -kerning first=1084 second=333 amount=-1 -kerning first=8378 second=375 amount=-1 -kerning first=84 second=8222 amount=-3 -kerning first=93 second=79 amount=-2 -kerning first=1117 second=949 amount=-1 -kerning first=1168 second=257 amount=-1 -kerning first=356 second=119 amount=-2 -kerning first=944 second=963 amount=-1 -kerning first=948 second=271 amount=-1 -kerning first=113 second=241 amount=2 -kerning first=250 second=1195 amount=-1 -kerning first=253 second=371 amount=-1 -kerning first=376 second=286 amount=-3 -kerning first=163 second=1257 amount=-1 -kerning first=8220 second=246 amount=-1 -kerning first=306 second=230 amount=-1 -kerning first=1085 second=964 amount=-3 -kerning first=1094 second=273 amount=-1 -kerning first=214 second=242 amount=-1 -kerning first=211 second=923 amount=-2 -kerning first=328 second=947 amount=-1 -kerning first=332 second=372 amount=-2 -kerning first=91 second=945 amount=-1 -kerning first=952 second=219 amount=-2 -kerning first=1210 second=1108 amount=-1 -kerning first=1223 second=347 amount=-1 -kerning first=254 second=1069 amount=-1 -kerning first=260 second=81 amount=-2 -kerning first=380 second=231 amount=-1 -kerning first=1063 second=1028 amount=-2 -kerning first=304 second=1263 amount=-1 -kerning first=75 second=269 amount=-2 -kerning first=1170 second=1176 amount=-1 -kerning first=238 second=332 amount=-2 -kerning first=361 second=244 amount=-1 -kerning first=121 second=106 amount=7 -kerning first=36 second=118 amount=-4 -kerning first=1036 second=71 amount=-3 -kerning first=8226 second=351 amount=-1 -kerning first=56 second=283 amount=-1 -kerning first=314 second=333 amount=-1 -kerning first=1099 second=375 amount=-1 -kerning first=1171 second=8211 amount=-2 -kerning first=239 second=963 amount=-1 -kerning first=245 second=44 amount=-1 -kerning first=962 second=84 amount=-5 -kerning first=1037 second=246 amount=-1 -kerning first=179 second=218 amount=-2 -kerning first=8230 second=1035 amount=-5 -kerning first=60 second=230 amount=-1 -kerning first=200 second=360 amount=-2 -kerning first=323 second=45 amount=-2 -kerning first=318 second=273 amount=-1 -kerning first=80 second=372 amount=-5 -kerning first=77 second=947 amount=-4 -kerning first=223 second=287 amount=-1 -kerning first=934 second=335 amount=-1 -kerning first=363 second=1108 amount=-1 -kerning first=963 second=259 amount=-1 -kerning first=966 second=34 amount=-1 -kerning first=126 second=231 amount=-1 -kerning first=263 second=1175 amount=-1 -kerning first=271 second=121 amount=-1 -kerning first=1241 second=46 amount=-1 -kerning first=41 second=243 amount=-1 -kerning first=180 second=373 amount=-4 -kerning first=291 second=1028 amount=-2 -kerning first=296 second=288 amount=-2 -kerning first=58 second=1263 amount=-1 -kerning first=8372 second=171 amount=-3 -kerning first=936 second=966 amount=-1 -kerning first=107 second=244 amount=-2 -kerning first=244 second=1203 amount=-2 -kerning first=247 second=374 amount=-5 -kerning first=276 second=71 amount=-2 -kerning first=45 second=193 amount=-2 -kerning first=1046 second=351 amount=-1 -kerning first=1049 second=111 amount=-1 -kerning first=188 second=83 amount=-1 -kerning first=300 second=233 amount=-1 -kerning first=65 second=333 amount=-1 -kerning first=325 second=375 amount=-1 -kerning first=903 second=290 amount=-2 -kerning first=88 second=257 amount=-1 -kerning first=1118 second=210 amount=-2 -kerning first=343 second=8211 amount=-1 -kerning first=254 second=84 amount=-5 -kerning first=374 second=234 amount=-4 -kerning first=968 second=364 amount=-2 -kerning first=164 second=334 amount=-2 -kerning first=161 second=1090 amount=-3 -kerning first=1051 second=291 amount=-1 -kerning first=1047 second=1035 amount=-1 -kerning first=69 second=273 amount=-1 -kerning first=72 second=45 amount=-2 -kerning first=323 second=8249 amount=-3 -kerning first=1119 second=365 amount=-1 -kerning first=255 second=259 amount=-1 -kerning first=258 second=34 amount=-3 -kerning first=966 second=8216 amount=-1 -kerning first=165 second=965 amount=-1 -kerning first=8218 second=354 amount=-5 -kerning first=47 second=1028 amount=-2 -kerning first=50 second=288 amount=-2 -kerning first=305 second=336 amount=-2 -kerning first=73 second=220 amount=-2 -kerning first=1096 second=171 amount=-3 -kerning first=334 second=260 amount=-2 -kerning first=93 second=362 amount=-2 -kerning first=1117 second=8217 amount=-3 -kerning first=236 second=275 amount=-1 -kerning first=376 second=1096 amount=-3 -kerning first=379 second=337 amount=-1 -kerning first=382 second=99 amount=-1 -kerning first=973 second=940 amount=-1 -kerning first=1027 second=249 amount=-1 -kerning first=172 second=221 amount=-5 -kerning first=287 second=111 amount=-1 -kerning first=282 second=351 amount=-1 -kerning first=54 second=233 amount=-1 -kerning first=194 second=363 amount=-1 -kerning first=191 second=1177 amount=-1 -kerning first=74 second=375 amount=-1 -kerning first=338 second=210 amount=-2 -kerning first=916 second=338 amount=-2 -kerning first=91 second=8211 amount=-2 -kerning first=926 second=100 amount=-1 -kerning first=1174 second=941 amount=-1 -kerning first=955 second=262 amount=-2 -kerning first=120 second=234 amount=-2 -kerning first=1298 second=187 amount=-1 -kerning first=260 second=364 amount=-2 -kerning first=35 second=246 amount=-1 -kerning first=1035 second=199 amount=-2 -kerning first=174 second=376 amount=-5 -kerning first=1066 second=1098 amount=-2 -kerning first=192 second=8212 amount=-2 -kerning first=195 second=1059 amount=-2 -kerning first=1073 second=101 amount=-1 -kerning first=72 second=8249 amount=-3 -kerning first=221 second=235 amount=-4 -kerning first=258 second=8216 amount=-3 -kerning first=39 second=196 amount=-3 -kerning first=59 second=336 amount=-2 -kerning first=1074 second=279 amount=-1 -kerning first=202 second=248 amount=-1 -kerning first=322 second=171 amount=-3 -kerning first=337 second=8217 amount=-1 -kerning first=242 second=1076 amount=-1 -kerning first=958 second=1185 amount=-3 -kerning first=962 second=367 amount=-1 -kerning first=125 second=337 amount=-1 -kerning first=161 second=99 amount=-1 -kerning first=43 second=111 amount=-1 -kerning first=1037 second=1038 amount=-2 -kerning first=40 second=351 amount=-1 -kerning first=183 second=261 amount=-1 -kerning first=179 second=953 amount=-1 -kerning first=8370 second=268 amount=-2 -kerning first=86 second=210 amount=-2 -kerning first=249 second=262 amount=-2 -kerning first=369 second=1241 amount=-1 -kerning first=372 second=187 amount=-2 -kerning first=960 second=8220 amount=-3 -kerning first=126 second=968 amount=-1 -kerning first=162 second=277 amount=-1 -kerning first=41 second=1035 amount=-5 -kerning first=44 second=291 amount=-1 -kerning first=299 second=339 amount=-1 -kerning first=302 second=101 amount=-1 -kerning first=296 second=1098 amount=-3 -kerning first=207 second=353 amount=-1 -kerning first=327 second=263 amount=-1 -kerning first=8378 second=216 amount=-2 -kerning first=84 second=1179 amount=-2 -kerning first=87 second=365 amount=-2 -kerning first=1106 second=8221 amount=-1 -kerning first=1207 second=240 amount=-1 -kerning first=253 second=212 amount=-2 -kerning first=967 second=943 amount=-1 -kerning first=166 second=224 amount=-1 -kerning first=276 second=354 amount=-5 -kerning first=273 second=1118 amount=-1 -kerning first=185 second=1184 amount=-5 -kerning first=188 second=366 amount=-2 -kerning first=303 second=279 amount=-1 -kerning first=300 second=970 amount=-1 -kerning first=88 second=1063 amount=-1 -kerning first=357 second=115 amount=-1 -kerning first=254 second=367 amount=-1 -kerning first=251 second=1185 amount=-3 -kerning first=8221 second=242 amount=-1 -kerning first=8217 second=923 amount=-3 -kerning first=1051 second=1101 amount=-1 -kerning first=1095 second=268 amount=-2 -kerning first=912 second=281 amount=-1 -kerning first=92 second=941 amount=-1 -kerning first=95 second=250 amount=-1 -kerning first=235 second=380 amount=-1 -kerning first=252 second=8220 amount=-3 -kerning first=1026 second=357 amount=-1 -kerning first=168 second=1079 amount=-1 -kerning first=175 second=89 amount=-5 -kerning first=50 second=1098 amount=-3 -kerning first=53 second=339 amount=-1 -kerning first=1064 second=973 amount=-1 -kerning first=56 second=101 amount=-1 -kerning first=196 second=251 amount=-1 -kerning first=76 second=263 amount=-1 -kerning first=1099 second=216 amount=-2 -kerning first=334 second=1066 amount=-2 -kerning first=331 second=8221 amount=-1 -kerning first=923 second=228 amount=-1 -kerning first=951 second=1194 amount=-2 -kerning first=1263 second=283 amount=-1 -kerning first=379 second=1256 amount=-1 -kerning first=1037 second=67 amount=-2 -kerning first=176 second=266 amount=-2 -kerning first=179 second=39 amount=-3 -kerning first=57 second=279 amount=-1 -kerning first=54 second=970 amount=-1 -kerning first=1071 second=229 amount=-1 -kerning first=80 second=213 amount=-2 -kerning first=1097 second=1195 amount=-1 -kerning first=223 second=103 amount=-1 -kerning first=916 second=1257 amount=-1 -kerning first=103 second=115 amount=-1 -kerning first=100 second=355 amount=-1 -kerning first=35 second=1038 amount=-2 -kerning first=180 second=214 amount=-2 -kerning first=8260 second=287 amount=-1 -kerning first=61 second=226 amount=-1 -kerning first=1073 second=1240 amount=-2 -kerning first=201 second=356 amount=-5 -kerning first=204 second=116 amount=-1 -kerning first=321 second=268 amount=-2 -kerning first=8366 second=219 amount=-2 -kerning first=221 second=972 amount=-4 -kerning first=1299 second=1263 amount=-1 -kerning first=160 second=227 amount=-1 -kerning first=273 second=117 amount=-1 -kerning first=182 second=369 amount=-1 -kerning first=294 second=973 amount=-1 -kerning first=325 second=216 amount=-2 -kerning first=8369 second=374 amount=-5 -kerning first=903 second=106 amount=1 -kerning first=351 second=118 amount=-1 -kerning first=108 second=240 amount=-1 -kerning first=371 second=283 amount=-1 -kerning first=125 second=1256 amount=-2 -kerning first=270 second=1044 amount=-1 -kerning first=189 second=79 amount=-2 -kerning first=301 second=229 amount=-1 -kerning first=1083 second=271 amount=-1 -kerning first=206 second=920 amount=-2 -kerning first=323 second=1195 amount=-1 -kerning first=901 second=1026 amount=-5 -kerning first=904 second=286 amount=-2 -kerning first=89 second=253 amount=-2 -kerning first=946 second=218 amount=-2 -kerning first=375 second=230 amount=-1 -kerning first=972 second=120 amount=-2 -kerning first=278 second=242 amount=-1 -kerning first=1241 second=947 amount=-1 -kerning first=302 second=1240 amount=-2 -kerning first=299 second=1262 amount=-2 -kerning first=70 second=268 amount=-2 -kerning first=327 second=1069 amount=-1 -kerning first=910 second=231 amount=-4 -kerning first=1168 second=361 amount=-1 -kerning first=1171 second=121 amount=-1 -kerning first=356 second=243 amount=-3 -kerning first=948 second=373 amount=-4 -kerning first=113 second=343 amount=2 -kerning first=1220 second=288 amount=-2 -kerning first=169 second=269 amount=-1 -kerning first=48 second=973 amount=-1 -kerning first=1065 second=232 amount=-1 -kerning first=306 second=332 amount=-2 -kerning first=74 second=216 amount=-2 -kerning first=97 second=118 amount=-1 -kerning first=360 second=193 amount=-2 -kerning first=955 second=83 amount=-1 -kerning first=117 second=283 amount=-1 -kerning first=380 second=333 amount=-1 -kerning first=35 second=67 amount=-2 -kerning first=174 second=217 amount=-2 -kerning first=8225 second=290 amount=-2 -kerning first=55 second=229 amount=-1 -kerning first=198 second=119 amount=-4 -kerning first=195 second=359 amount=-1 -kerning first=313 second=271 amount=-1 -kerning first=72 second=1195 amount=-1 -kerning first=75 second=371 amount=-1 -kerning first=215 second=1026 amount=-5 -kerning first=912 second=1090 amount=-3 -kerning first=1178 second=246 amount=-1 -kerning first=361 second=346 amount=-1 -kerning first=121 second=230 amount=-1 -kerning first=36 second=242 amount=-1 -kerning first=175 second=372 amount=-5 -kerning first=289 second=287 amount=-1 -kerning first=56 second=1240 amount=-2 -kerning first=53 second=1262 amount=-2 -kerning first=1074 second=97 amount=-1 -kerning first=317 second=219 amount=-2 -kerning first=337 second=1175 amount=-2 -kerning first=923 second=965 amount=-1 -kerning first=102 second=243 amount=-1 -kerning first=242 second=373 amount=-1 -kerning first=365 second=288 amount=-2 -kerning first=1037 second=350 amount=-1 -kerning first=60 second=332 amount=-2 -kerning first=1071 second=966 amount=-1 -kerning first=203 second=244 amount=-1 -kerning first=1075 second=275 amount=-1 -kerning first=318 second=374 amount=-5 -kerning first=8370 second=87 amount=-5 -kerning first=83 second=256 amount=-1 -kerning first=220 second=1298 amount=-1 -kerning first=947 second=111 amount=-1 -kerning first=249 second=83 amount=-1 -kerning first=369 second=233 amount=-1 -kerning first=963 second=363 amount=-1 -kerning first=960 second=1177 amount=-1 -kerning first=126 second=333 amount=-1 -kerning first=271 second=245 amount=-1 -kerning first=1044 second=290 amount=-1 -kerning first=180 second=949 amount=-1 -kerning first=184 second=257 amount=-1 -kerning first=61 second=963 amount=-1 -kerning first=64 second=271 amount=-1 -kerning first=67 second=44 amount=-1 -kerning first=327 second=84 amount=-5 -kerning first=8372 second=262 amount=-2 -kerning first=902 second=234 amount=-1 -kerning first=224 second=1090 amount=-1 -kerning first=1194 second=1035 amount=-1 -kerning first=964 second=1059 amount=-2 -kerning first=163 second=273 amount=-1 -kerning first=166 second=45 amount=-2 -kerning first=160 second=964 amount=-3 -kerning first=8216 second=113 amount=-1 -kerning first=1049 second=235 amount=-1 -kerning first=300 second=335 amount=-1 -kerning first=303 second=97 amount=-1 -kerning first=205 second=1108 amount=-1 -kerning first=88 second=361 amount=-1 -kerning first=91 second=121 amount=-1 -kerning first=234 second=46 amount=-1 -kerning first=354 second=196 amount=-6 -kerning first=108 second=1028 amount=-2 -kerning first=374 second=336 amount=-3 -kerning first=971 second=248 amount=-1 -kerning first=167 second=220 amount=-2 -kerning first=49 second=232 amount=-1 -kerning first=189 second=362 amount=-2 -kerning first=186 second=1176 amount=-1 -kerning first=301 second=966 amount=-1 -kerning first=304 second=275 amount=-1 -kerning first=69 second=374 amount=-5 -kerning first=1095 second=87 amount=-5 -kerning first=8377 second=1185 amount=-3 -kerning first=912 second=99 amount=-1 -kerning first=95 second=71 amount=-2 -kerning first=1170 second=249 amount=-1 -kerning first=1119 second=940 amount=-1 -kerning first=358 second=111 amount=-1 -kerning first=946 second=953 amount=-1 -kerning first=950 second=261 amount=-1 -kerning first=252 second=1177 amount=-1 -kerning first=255 second=363 amount=-1 -kerning first=168 second=375 amount=-1 -kerning first=1064 second=338 amount=-2 -kerning first=1067 second=100 amount=-1 -kerning first=1096 second=262 amount=-2 -kerning first=76 second=84 amount=-6 -kerning first=8378 second=8220 amount=-3 -kerning first=915 second=277 amount=-1 -kerning first=910 second=968 amount=-2 -kerning first=96 second=246 amount=-1 -kerning first=1176 second=199 amount=-2 -kerning first=236 second=376 amount=-5 -kerning first=1220 second=1098 amount=-3 -kerning first=253 second=8212 amount=-2 -kerning first=256 second=1059 amount=-2 -kerning first=1263 second=101 amount=-1 -kerning first=1027 second=353 amount=-1 -kerning first=166 second=8249 amount=-3 -kerning first=176 second=85 amount=-2 -kerning first=287 second=235 amount=-1 -kerning first=54 second=335 amount=-1 -kerning first=57 second=97 amount=-1 -kerning first=194 second=936 amount=-3 -kerning first=77 second=259 amount=-1 -kerning first=80 second=34 amount=-3 -kerning first=926 second=224 amount=-1 -kerning first=952 second=1184 amount=-5 -kerning first=955 second=366 amount=-2 -kerning first=1298 second=279 amount=-1 -kerning first=35 second=350 amount=-1 -kerning first=8260 second=103 amount=-1 -kerning first=55 second=966 amount=-1 -kerning first=58 second=275 amount=-1 -kerning first=1073 second=225 amount=-1 -kerning first=321 second=87 amount=-5 -kerning first=8363 second=267 amount=-1 -kerning first=221 second=337 amount=-4 -kerning first=1178 second=1038 amount=-1 -kerning first=182 second=210 amount=-2 -kerning first=294 second=338 amount=-2 -kerning first=297 second=100 amount=-1 -kerning first=202 second=352 amount=-1 -kerning first=322 second=262 amount=-2 -kerning first=900 second=187 amount=-1 -kerning first=1099 second=8220 amount=-3 -kerning first=931 second=1079 amount=-1 -kerning first=942 second=89 amount=-5 -kerning first=105 second=291 amount=-1 -kerning first=365 second=1098 amount=-3 -kerning first=371 second=101 amount=-1 -kerning first=965 second=251 amount=-1 -kerning first=274 second=113 amount=-1 -kerning first=43 second=235 amount=-1 -kerning first=183 second=365 amount=-1 -kerning first=8365 second=1194 amount=-2 -kerning first=8370 second=370 amount=-2 -kerning first=80 second=8216 amount=-3 -kerning first=89 second=74 amount=-6 -kerning first=946 second=39 amount=-3 -kerning first=249 second=366 amount=-2 -kerning first=369 second=970 amount=-1 -kerning first=372 second=279 amount=-3 -kerning first=165 second=171 amount=-3 -kerning first=180 second=8217 amount=-3 -kerning first=302 second=225 amount=-1 -kerning first=70 second=87 amount=-5 -kerning first=1084 second=267 amount=-1 -kerning first=324 second=1185 amount=-1 -kerning first=327 second=367 amount=-1 -kerning first=87 second=940 amount=-3 -kerning first=948 second=214 amount=-2 -kerning first=376 second=226 amount=-4 -kerning first=973 second=116 amount=-1 -kerning first=48 second=338 amount=-2 -kerning first=51 second=100 amount=-1 -kerning first=1049 second=972 amount=-1 -kerning first=191 second=250 amount=-1 -kerning first=188 second=941 amount=-1 -kerning first=1062 second=281 amount=-1 -kerning first=214 second=187 amount=-1 -kerning first=325 second=8220 amount=-3 -kerning first=94 second=199 amount=-2 -kerning first=237 second=89 amount=-5 -kerning first=111 second=1098 amount=-1 -kerning first=114 second=339 amount=-1 -kerning first=1210 second=973 amount=-1 -kerning first=117 second=101 amount=-1 -kerning first=374 second=1224 amount=-3 -kerning first=377 second=381 amount=1 -kerning first=170 second=263 amount=-1 -kerning first=8225 second=106 amount=1 -kerning first=55 second=50 amount=-1 -kerning first=75 second=212 amount=-3 -kerning first=1087 second=1194 amount=-2 -kerning first=1095 second=370 amount=-2 -kerning first=92 second=1118 amount=-1 -kerning first=95 second=354 amount=-5 -kerning first=1178 second=67 amount=-1 -kerning first=238 second=266 amount=-2 -kerning first=241 second=39 amount=-1 -kerning first=956 second=79 amount=-2 -kerning first=118 second=279 amount=-1 -kerning first=1026 second=920 amount=-2 -kerning first=175 second=213 amount=-2 -kerning first=289 second=103 amount=-1 -kerning first=8226 second=286 amount=-2 -kerning first=8222 second=1026 amount=-5 -kerning first=1064 second=1257 amount=-1 -kerning first=56 second=225 amount=-1 -kerning first=196 second=355 amount=-1 -kerning first=314 second=267 amount=-1 -kerning first=8361 second=218 amount=-2 -kerning first=73 second=1185 amount=-3 -kerning first=76 second=367 amount=-1 -kerning first=96 second=1038 amount=-2 -kerning first=1179 second=242 amount=-1 -kerning first=954 second=945 amount=-2 -kerning first=1263 second=1240 amount=-2 -kerning first=262 second=356 amount=-1 -kerning first=176 second=368 amount=-2 -kerning first=287 second=972 amount=-1 -kerning first=74 second=8220 amount=-3 -kerning first=223 second=227 amount=-1 -kerning first=934 second=269 amount=-1 -kerning first=363 second=973 amount=-1 -kerning first=1044 second=106 amount=7 -kerning first=177 second=1066 amount=-5 -kerning first=174 second=8221 amount=-3 -kerning first=296 second=228 amount=-1 -kerning first=1073 second=962 amount=-1 -kerning first=204 second=240 amount=-1 -kerning first=316 second=1194 amount=-2 -kerning first=321 second=370 amount=-2 -kerning first=8372 second=83 amount=-1 -kerning first=84 second=252 amount=-2 -kerning first=221 second=1256 amount=-3 -kerning first=250 second=79 amount=-2 -kerning first=967 second=119 amount=-4 -kerning first=964 second=359 amount=-1 -kerning first=1039 second=1026 amount=-5 -kerning first=1046 second=286 amount=-3 -kerning first=185 second=253 amount=-1 -kerning first=294 second=1257 amount=-1 -kerning first=65 second=267 amount=-1 -kerning first=1081 second=218 amount=-2 -kerning first=903 second=230 amount=-1 -kerning first=346 second=923 amount=-1 -kerning first=942 second=372 amount=-5 -kerning first=105 second=1101 amount=-1 -kerning first=371 second=1240 amount=-2 -kerning first=164 second=268 amount=-2 -kerning first=43 second=972 amount=-1 -kerning first=1051 second=231 amount=-1 -kerning first=1083 second=373 amount=-4 -kerning first=901 second=1263 amount=-1 -kerning first=86 second=1169 amount=-2 -kerning first=92 second=117 amount=-1 -kerning first=1219 second=232 amount=-1 -kerning first=375 second=332 amount=-2 -kerning first=372 second=1085 amount=-2 -kerning first=168 second=216 amount=-2 -kerning first=8212 second=1033 amount=-4 -kerning first=8218 second=289 amount=-1 -kerning first=50 second=228 amount=-1 -kerning first=193 second=118 amount=-4 -kerning first=302 second=962 amount=-1 -kerning first=70 second=370 amount=-2 -kerning first=1096 second=83 amount=-1 -kerning first=8378 second=1177 amount=-1 -kerning first=910 second=333 amount=-4 -kerning first=96 second=67 amount=-2 -kerning first=1171 second=245 amount=-1 -kerning first=236 second=217 amount=-2 -kerning first=356 second=345 amount=-2 -kerning first=948 second=949 amount=-1 -kerning first=951 second=257 amount=-1 -kerning first=256 second=359 amount=-1 -kerning first=259 second=119 amount=-1 -kerning first=376 second=963 amount=-4 -kerning first=379 second=271 amount=-1 -kerning first=166 second=1195 amount=-1 -kerning first=169 second=371 amount=-1 -kerning first=282 second=286 amount=-2 -kerning first=8224 second=234 amount=-1 -kerning first=48 second=1257 amount=-1 -kerning first=1062 second=1090 amount=-2 -kerning first=1065 second=334 amount=-1 -kerning first=332 second=1174 amount=-3 -kerning first=916 second=273 amount=-1 -kerning first=926 second=45 amount=-2 -kerning first=234 second=947 amount=-1 -kerning first=237 second=372 amount=-5 -kerning first=117 second=1240 amount=-2 -kerning first=1298 second=97 amount=-1 -kerning first=170 second=1069 amount=-1 -kerning first=177 second=81 amount=-2 -kerning first=198 second=243 amount=-1 -kerning first=313 second=373 amount=-3 -kerning first=215 second=1263 amount=-1 -kerning first=928 second=220 amount=-2 -kerning first=956 second=362 amount=-2 -kerning first=961 second=122 amount=-1 -kerning first=121 second=332 amount=-2 -kerning first=1299 second=275 amount=-1 -kerning first=1240 second=374 amount=-3 -kerning first=1036 second=289 amount=-1 -kerning first=56 second=962 amount=-1 -kerning first=1074 second=221 amount=-5 -kerning first=322 second=83 amount=-1 -kerning first=8364 second=261 amount=-1 -kerning first=8361 second=953 amount=-1 -kerning first=1099 second=1177 amount=-1 -kerning first=343 second=245 amount=-1 -kerning first=931 second=375 amount=-1 -kerning first=1186 second=290 amount=-1 -kerning first=954 second=8211 amount=-3 -kerning first=125 second=271 amount=-1 -kerning first=122 second=963 amount=-1 -kerning first=270 second=194 amount=-2 -kerning first=37 second=1026 amount=-5 -kerning first=40 second=286 amount=-2 -kerning first=1041 second=234 amount=-1 -kerning first=63 second=218 amount=-2 -kerning first=203 second=346 amount=-1 -kerning first=8370 second=211 amount=-2 -kerning first=80 second=1174 amount=-2 -kerning first=86 second=120 amount=-2 -kerning first=1103 second=1059 amount=-2 -kerning first=223 second=964 amount=-3 -kerning first=926 second=8249 amount=-3 -kerning first=947 second=235 amount=-1 -kerning first=369 second=335 amount=-1 -kerning first=372 second=97 amount=-2 -kerning first=162 second=219 amount=-2 -kerning first=271 second=347 amount=-1 -kerning first=184 second=361 amount=-1 -kerning first=296 second=965 amount=-1 -kerning first=64 second=373 amount=-4 -kerning first=1073 second=8250 amount=-1 -kerning first=204 second=1028 amount=-2 -kerning first=207 second=288 amount=-2 -kerning first=8366 second=1184 amount=-5 -kerning first=8372 second=366 amount=-2 -kerning first=902 second=336 amount=-2 -kerning first=1117 second=248 amount=-1 -kerning first=247 second=1176 amount=-1 -kerning first=250 second=362 amount=-2 -kerning first=373 second=275 amount=-1 -kerning first=376 second=47 amount=-4 -kerning first=163 second=374 amount=-5 -kerning first=276 second=289 amount=-1 -kerning first=1049 second=337 amount=-1 -kerning first=1062 second=99 amount=-1 -kerning first=191 second=71 amount=-2 -kerning first=303 second=221 amount=-5 -kerning first=1085 second=261 amount=-1 -kerning first=1081 second=953 amount=-1 -kerning first=325 second=1177 amount=-1 -kerning first=91 second=245 amount=-1 -kerning first=354 second=290 amount=-1 -kerning first=1210 second=338 amount=-2 -kerning first=1223 second=100 amount=-1 -kerning first=971 second=352 amount=-1 -kerning first=170 second=84 amount=-5 -kerning first=280 second=234 amount=-1 -kerning first=8217 second=1241 amount=-1 -kerning first=49 second=334 amount=-2 -kerning first=46 second=1090 amount=-3 -kerning first=1051 second=968 amount=-1 -kerning first=192 second=246 amount=-1 -kerning first=1063 second=277 amount=-1 -kerning first=304 second=376 amount=-5 -kerning first=1095 second=211 amount=-2 -kerning first=330 second=1059 amount=-2 -kerning first=1170 second=353 amount=-1 -kerning first=1175 second=113 amount=-1 -kerning first=238 second=85 amount=-2 -kerning first=358 second=235 amount=-1 -kerning first=950 second=365 amount=-1 -kerning first=118 second=97 amount=-1 -kerning first=175 second=34 amount=-3 -kerning first=50 second=965 amount=-1 -kerning first=56 second=46 amount=-1 -kerning first=1067 second=224 amount=-1 -kerning first=302 second=8250 amount=-1 -kerning first=8361 second=39 amount=-3 -kerning first=1096 second=366 amount=-2 -kerning first=923 second=171 amount=-3 -kerning first=96 second=350 amount=-1 -kerning first=948 second=8217 amount=-3 -kerning first=119 second=275 amount=-1 -kerning first=1263 second=225 amount=-1 -kerning first=262 second=197 amount=-1 -kerning first=34 second=289 amount=-1 -kerning first=287 second=337 amount=-1 -kerning first=57 second=221 amount=-5 -kerning first=197 second=351 amount=-1 -kerning first=200 second=111 amount=-1 -kerning first=77 second=363 amount=-1 -kerning first=74 second=1177 amount=-1 -kerning first=934 second=88 amount=-5 -kerning first=100 second=290 amount=-2 -kerning first=363 second=338 amount=-2 -kerning first=955 second=941 amount=-1 -kerning first=960 second=250 amount=-1 -kerning first=38 second=234 amount=-1 -kerning first=1035 second=1241 amount=-1 -kerning first=177 second=364 amount=-2 -kerning first=291 second=277 amount=-1 -kerning first=8260 second=227 amount=-1 -kerning first=58 second=376 amount=-5 -kerning first=198 second=1035 amount=-5 -kerning first=201 second=291 amount=-1 -kerning first=321 second=211 amount=-2 -kerning first=8363 second=369 amount=-1 -kerning first=78 second=1059 amount=-2 -kerning first=75 second=8212 amount=-4 -kerning first=345 second=113 amount=-1 -kerning first=936 second=263 amount=-1 -kerning first=175 second=8216 amount=-3 -kerning first=297 second=224 amount=-1 -kerning first=56 second=8250 amount=-1 -kerning first=65 second=86 amount=-6 -kerning first=1081 second=39 amount=-3 -kerning first=317 second=1184 amount=-5 -kerning first=322 second=366 amount=-2 -kerning first=900 second=279 amount=-1 -kerning first=351 second=63 amount=-2 -kerning first=942 second=213 amount=-2 -kerning first=242 second=8217 amount=-1 -kerning first=371 second=225 amount=-1 -kerning first=965 second=355 amount=-1 -kerning first=968 second=115 amount=-1 -kerning first=164 second=87 amount=-5 -kerning first=43 second=337 amount=-1 -kerning first=186 second=249 amount=-1 -kerning first=183 second=940 amount=-1 -kerning first=63 second=953 amount=-1 -kerning first=1083 second=214 amount=-2 -kerning first=8370 second=945 amount=-1 -kerning first=904 second=226 amount=-1 -kerning first=89 second=198 amount=-5 -kerning first=1119 second=116 amount=-1 -kerning first=947 second=972 amount=-1 -kerning first=1206 second=281 amount=-1 -kerning first=252 second=250 amount=-1 -kerning first=249 second=941 amount=-1 -kerning first=372 second=380 amount=-1 -kerning first=165 second=262 amount=-2 -kerning first=278 second=187 amount=-1 -kerning first=47 second=277 amount=-1 -kerning first=44 second=968 amount=-1 -kerning first=190 second=199 amount=-2 -kerning first=299 second=1079 amount=-1 -kerning first=305 second=89 amount=-5 -kerning first=70 second=211 amount=-1 -kerning first=1084 second=369 amount=-1 -kerning first=207 second=1098 amount=-3 -kerning first=87 second=1117 amount=-2 -kerning first=93 second=113 amount=-1 -kerning first=230 second=955 amount=-1 -kerning first=944 second=1066 amount=-5 -kerning first=941 second=8221 amount=-1 -kerning first=1220 second=228 amount=-1 -kerning first=379 second=90 amount=1 -kerning first=973 second=240 amount=-1 -kerning first=169 second=212 amount=-2 -kerning first=8220 second=283 amount=-1 -kerning first=51 second=224 amount=-1 -kerning first=1049 second=1256 amount=-2 -kerning first=191 second=354 amount=-5 -kerning first=188 second=1118 amount=-1 -kerning first=306 second=266 amount=-2 -kerning first=68 second=1184 amount=-2 -kerning first=214 second=279 amount=-1 -kerning first=97 second=63 amount=-2 -kerning first=237 second=213 amount=-2 -kerning first=354 second=1100 amount=-2 -kerning first=952 second=253 amount=-1 -kerning first=117 second=225 amount=-1 -kerning first=1210 second=1257 amount=-1 -kerning first=260 second=115 amount=-1 -kerning first=380 second=267 amount=-1 -kerning first=170 second=367 amount=-1 -kerning first=167 second=1185 amount=-3 -kerning first=8225 second=230 amount=-1 -kerning first=192 second=1038 amount=-2 -kerning first=313 second=214 amount=-1 -kerning first=1095 second=945 amount=-1 -kerning first=336 second=356 amount=-2 -kerning first=238 second=368 amount=-2 -kerning first=358 second=972 amount=-1 -kerning first=361 second=281 amount=-1 -kerning first=266 second=65 amount=-1 -kerning first=36 second=187 amount=-1 -kerning first=168 second=8220 amount=-3 -kerning first=289 second=227 amount=-1 -kerning first=8222 second=1263 amount=-1 -kerning first=59 second=89 amount=-5 -kerning first=53 second=1079 amount=-1 -kerning first=314 second=369 amount=-1 -kerning first=931 second=216 amount=-2 -kerning first=236 second=8221 amount=-3 -kerning first=239 second=1066 amount=-5 -kerning first=1186 second=106 amount=7 -kerning first=365 second=228 amount=-1 -kerning first=962 second=118 amount=-4 -kerning first=1263 second=962 amount=-1 -kerning first=262 second=916 amount=-1 -kerning first=1037 second=283 amount=-1 -kerning first=176 second=943 amount=-1 -kerning first=179 second=252 amount=-1 -kerning first=287 second=1256 amount=-2 -kerning first=60 second=266 amount=-2 -kerning first=63 second=39 amount=-3 -kerning first=323 second=79 amount=-2 -kerning first=8365 second=257 amount=-1 -kerning first=1103 second=359 amount=-1 -kerning first=1108 second=119 amount=-1 -kerning first=926 second=1195 amount=-1 -kerning first=934 second=371 amount=-1 -kerning first=363 second=1257 amount=-1 -kerning first=126 second=267 amount=-1 -kerning first=44 second=52 amount=-1 -kerning first=64 second=214 amount=-2 -kerning first=1073 second=947 amount=-4 -kerning first=8260 second=964 amount=-3 -kerning first=201 second=1101 amount=-1 -kerning first=321 second=945 amount=-1 -kerning first=936 second=1069 amount=-1 -kerning first=944 second=81 amount=-2 -kerning first=107 second=281 amount=-2 -kerning first=1202 second=231 amount=-1 -kerning first=967 second=243 amount=-1 -kerning first=1039 second=1263 amount=-1 -kerning first=185 second=357 amount=-1 -kerning first=188 second=117 amount=-1 -kerning first=300 second=269 amount=-1 -kerning first=65 second=369 amount=-1 -kerning first=205 second=973 amount=-1 -kerning first=8369 second=1176 amount=-1 -kerning first=903 second=332 amount=-2 -kerning first=1118 second=244 amount=-1 -kerning first=254 second=118 amount=-4 -kerning first=371 second=962 amount=-1 -kerning first=161 second=1194 amount=-2 -kerning first=164 second=370 amount=-2 -kerning first=8217 second=233 amount=-1 -kerning first=43 second=1256 amount=-2 -kerning first=1051 second=333 amount=-1 -kerning first=192 second=67 amount=-2 -kerning first=304 second=217 amount=-2 -kerning first=72 second=79 amount=-2 -kerning first=1083 second=949 amount=-1 -kerning first=1087 second=257 amount=-1 -kerning first=330 second=359 amount=-1 -kerning first=8370 second=8211 amount=-2 -kerning first=333 second=119 amount=-1 -kerning first=904 second=963 amount=-1 -kerning first=89 second=920 amount=-3 -kerning first=352 second=1026 amount=-1 -kerning first=1206 second=1090 amount=-2 -kerning first=1219 second=334 amount=-2 -kerning first=1067 second=45 amount=-2 -kerning first=1064 second=273 amount=-1 -kerning first=193 second=242 amount=-1 -kerning first=302 second=947 amount=-4 -kerning first=305 second=372 amount=-5 -kerning first=70 second=945 amount=-1 -kerning first=915 second=219 amount=-2 -kerning first=1168 second=1108 amount=-1 -kerning first=1171 second=347 amount=-1 -kerning first=239 second=81 amount=-2 -kerning first=951 second=361 amount=-1 -kerning first=113 second=1084 amount=2 -kerning first=1220 second=965 amount=-1 -kerning first=973 second=1028 amount=-2 -kerning first=1027 second=288 amount=-2 -kerning first=8224 second=336 amount=-2 -kerning first=54 second=269 amount=-1 -kerning first=338 second=244 amount=-1 -kerning first=916 second=374 amount=-5 -kerning first=100 second=106 amount=1 -kerning first=960 second=71 amount=-2 -kerning first=117 second=962 amount=-1 -kerning first=1298 second=221 amount=-5 -kerning first=35 second=283 amount=-1 -kerning first=1035 second=233 amount=-1 -kerning first=58 second=217 amount=-2 -kerning first=313 second=949 amount=-1 -kerning first=316 second=257 amount=-1 -kerning first=8363 second=210 amount=-2 -kerning first=78 second=359 amount=-1 -kerning first=1095 second=8211 amount=-2 -kerning first=221 second=271 amount=-4 -kerning first=936 second=84 amount=-5 -kerning first=1185 second=234 amount=-2 -kerning first=361 second=1090 amount=-3 -kerning first=124 second=218 amount=-2 -kerning first=1299 second=376 amount=-5 -kerning first=39 second=230 amount=-1 -kerning first=178 second=360 amount=-2 -kerning first=289 second=964 amount=-3 -kerning first=294 second=273 amount=-1 -kerning first=297 second=45 amount=-2 -kerning first=56 second=947 amount=-4 -kerning first=59 second=372 amount=-5 -kerning first=1067 second=8249 amount=-3 -kerning first=202 second=287 amount=-1 -kerning first=8364 second=365 amount=-1 -kerning first=900 second=97 amount=-1 -kerning first=343 second=347 amount=-1 -kerning first=942 second=34 amount=-3 -kerning first=105 second=231 amount=-1 -kerning first=242 second=1175 amount=-2 -kerning first=365 second=965 amount=-1 -kerning first=125 second=373 amount=-4 -kerning first=1263 second=8250 amount=-1 -kerning first=37 second=1263 amount=-1 -kerning first=1041 second=336 amount=-2 -kerning first=298 second=220 amount=-2 -kerning first=206 second=232 amount=-1 -kerning first=323 second=362 amount=-2 -kerning first=318 second=1176 amount=-1 -kerning first=86 second=244 amount=-3 -kerning first=901 second=275 amount=-1 -kerning first=947 second=337 amount=-1 -kerning first=1206 second=99 amount=-1 -kerning first=252 second=71 amount=-2 -kerning first=165 second=83 amount=-1 -kerning first=299 second=375 amount=-1 -kerning first=64 second=949 amount=-1 -kerning first=1084 second=210 amount=-2 -kerning first=321 second=8211 amount=-2 -kerning first=8378 second=250 amount=-1 -kerning first=8372 second=941 amount=-1 -kerning first=1117 second=352 amount=-1 -kerning first=944 second=364 amount=-2 -kerning first=1207 second=277 amount=-1 -kerning first=253 second=246 amount=-1 -kerning first=967 second=1035 amount=-5 -kerning first=8216 second=339 amount=-1 -kerning first=48 second=273 amount=-1 -kerning first=51 second=45 amount=-2 -kerning first=8220 second=101 amount=-1 -kerning first=297 second=8249 amount=-3 -kerning first=306 second=85 amount=-2 -kerning first=1085 second=365 amount=-1 -kerning first=214 second=97 amount=-1 -kerning first=91 second=347 amount=-1 -kerning first=88 second=1108 amount=-2 -kerning first=237 second=34 amount=-3 -kerning first=942 second=8216 amount=-3 -kerning first=1223 second=224 amount=-1 -kerning first=371 second=8250 amount=-1 -kerning first=374 second=1075 amount=-3 -kerning first=280 second=336 amount=-2 -kerning first=8221 second=279 amount=-1 -kerning first=52 second=220 amount=-2 -kerning first=192 second=350 amount=-1 -kerning first=72 second=362 amount=-2 -kerning first=1083 second=8217 amount=-3 -kerning first=69 second=1176 amount=-1 -kerning first=215 second=275 amount=-1 -kerning first=336 second=197 amount=-2 -kerning first=920 second=87 amount=-2 -kerning first=95 second=289 amount=-1 -kerning first=358 second=337 amount=-1 -kerning first=361 second=99 amount=-1 -kerning first=950 second=940 amount=-1 -kerning first=258 second=351 amount=-1 -kerning first=168 second=1177 amount=-1 -kerning first=281 second=967 amount=-2 -kerning first=8226 second=226 amount=-1 -kerning first=53 second=375 amount=-1 -kerning first=196 second=290 amount=-2 -kerning first=1070 second=88 amount=-3 -kerning first=314 second=210 amount=-2 -kerning first=70 second=8211 amount=-2 -kerning first=1099 second=250 amount=-1 -kerning first=1096 second=941 amount=-1 -kerning first=923 second=262 amount=-2 -kerning first=1176 second=1241 amount=-1 -kerning first=239 second=364 amount=-2 -kerning first=958 second=199 amount=-2 -kerning first=1027 second=1098 amount=-3 -kerning first=169 second=8212 amount=-2 -kerning first=172 second=1059 amount=-2 -kerning first=1037 second=101 amount=-1 -kerning first=51 second=8249 amount=-3 -kerning first=60 second=85 amount=-2 -kerning first=1071 second=263 amount=-1 -kerning first=200 second=235 amount=-1 -kerning first=315 second=365 amount=-1 -kerning first=934 second=212 amount=-2 -kerning first=237 second=8216 amount=-3 -kerning first=960 second=354 amount=-5 -kerning first=955 second=1118 amount=-1 -kerning first=117 second=8250 amount=-1 -kerning first=38 second=336 amount=-2 -kerning first=1035 second=970 amount=-1 -kerning first=180 second=248 amount=-1 -kerning first=296 second=171 amount=-3 -kerning first=313 second=8217 amount=-3 -kerning first=8366 second=253 amount=-1 -kerning first=84 second=197 amount=-6 -kerning first=936 second=367 amount=-1 -kerning first=928 second=1185 amount=-3 -kerning first=107 second=99 amount=-2 -kerning first=247 second=249 amount=-1 -kerning first=160 second=261 amount=-1 -kerning first=124 second=953 amount=-1 -kerning first=1240 second=8218 amount=-1 -kerning first=1046 second=226 amount=-1 -kerning first=65 second=210 amount=-2 -kerning first=205 second=338 amount=-2 -kerning first=322 second=941 amount=-1 -kerning first=325 second=250 amount=-1 -kerning first=931 second=8220 amount=-3 -kerning first=105 second=968 amount=-1 -kerning first=108 second=277 amount=-1 -kerning first=251 second=199 amount=-2 -kerning first=164 second=211 amount=-2 -kerning first=274 second=339 amount=-1 -kerning first=186 second=353 amount=-1 -kerning first=189 second=113 amount=-1 -kerning first=301 second=263 amount=-1 -kerning first=908 second=90 amount=-1 -kerning first=1119 second=240 amount=-1 -kerning first=946 second=252 amount=-1 -kerning first=249 second=1118 amount=-1 -kerning first=252 second=354 amount=-5 -kerning first=375 second=266 amount=-2 -kerning first=162 second=1184 amount=-5 -kerning first=165 second=366 amount=-2 -kerning first=278 second=279 amount=-1 -kerning first=47 second=378 amount=-2 -kerning first=50 second=171 amount=-3 -kerning first=193 second=63 amount=-5 -kerning first=305 second=213 amount=-2 -kerning first=64 second=8217 amount=-3 -kerning first=910 second=267 amount=-4 -kerning first=230 second=1185 amount=-1 -kerning first=253 second=1038 amount=-2 -kerning first=379 second=214 amount=-1 -kerning first=282 second=226 amount=-1 -kerning first=1065 second=268 amount=-1 -kerning first=306 second=368 amount=-2 -kerning first=74 second=250 amount=-1 -kerning first=94 second=1241 amount=-1 -kerning first=231 second=8220 amount=-1 -kerning first=952 second=357 amount=-1 -kerning first=955 second=117 amount=-1 -kerning first=35 second=101 amount=-1 -kerning first=174 second=251 amount=-1 -kerning first=8225 second=332 amount=-2 -kerning first=55 second=263 amount=-1 -kerning first=304 second=8221 amount=-3 -kerning first=1101 second=118 amount=-1 -kerning first=336 second=916 amount=-2 -kerning first=912 second=1194 amount=-2 -kerning first=101 second=102 amount=-1 -kerning first=1178 second=283 amount=-1 -kerning first=238 second=943 amount=-1 -kerning first=358 second=1256 amount=-2 -kerning first=121 second=266 amount=-2 -kerning first=124 second=39 amount=-3 -kerning first=1299 second=217 amount=-2 -kerning first=36 second=279 amount=-1 -kerning first=1036 second=229 amount=-1 -kerning first=8226 second=963 amount=-1 -kerning first=59 second=213 amount=-2 -kerning first=1067 second=1195 amount=-1 -kerning first=202 second=103 amount=-1 -kerning first=317 second=253 amount=-1 -kerning first=962 second=242 amount=-1 -kerning first=125 second=214 amount=-2 -kerning first=1263 second=947 amount=-4 -kerning first=1037 second=1240 amount=-2 -kerning first=40 second=226 amount=-1 -kerning first=179 second=356 amount=-5 -kerning first=183 second=116 amount=-1 -kerning first=60 second=368 amount=-2 -kerning first=1071 second=1069 amount=-1 -kerning first=200 second=972 amount=-1 -kerning first=203 second=281 amount=-1 -kerning first=8365 second=361 amount=-1 -kerning first=8370 second=121 amount=-1 -kerning first=86 second=65 amount=-6 -kerning first=1184 second=1263 amount=-2 -kerning first=249 second=117 amount=-1 -kerning first=369 second=269 amount=-1 -kerning first=126 second=369 amount=-1 -kerning first=1044 second=332 amount=-1 -kerning first=299 second=216 amount=-2 -kerning first=61 second=1066 amount=-5 -kerning first=58 second=8221 amount=-3 -kerning first=207 second=228 amount=-1 -kerning first=327 second=118 amount=-4 -kerning first=8378 second=71 amount=-2 -kerning first=84 second=916 amount=-6 -kerning first=87 second=240 amount=-3 -kerning first=1202 second=333 amount=-1 -kerning first=253 second=67 amount=-2 -kerning first=166 second=79 amount=-2 -kerning first=276 second=229 amount=-1 -kerning first=1049 second=271 amount=-1 -kerning first=185 second=920 amount=-2 -kerning first=1046 second=963 amount=-2 -kerning first=300 second=371 amount=-1 -kerning first=297 second=1195 amount=-1 -kerning first=205 second=1257 amount=-1 -kerning first=906 second=218 amount=-2 -kerning first=1118 second=346 amount=-1 -kerning first=354 second=230 amount=-2 -kerning first=949 second=120 amount=-1 -kerning first=1203 second=964 amount=-2 -kerning first=1210 second=273 amount=-1 -kerning first=1223 second=45 amount=-2 -kerning first=254 second=242 amount=-1 -kerning first=371 second=947 amount=-4 -kerning first=971 second=287 amount=-1 -kerning first=164 second=945 amount=-1 -kerning first=274 second=1262 amount=-2 -kerning first=8217 second=335 amount=-1 -kerning first=8221 second=97 amount=-1 -kerning first=49 second=268 amount=-2 -kerning first=1063 second=219 amount=-2 -kerning first=301 second=1069 amount=-1 -kerning first=1087 second=361 amount=-1 -kerning first=1095 second=121 amount=-1 -kerning first=89 second=1102 amount=-3 -kerning first=1119 second=1028 amount=-2 -kerning first=1170 second=288 amount=-2 -kerning first=1224 second=220 amount=-2 -kerning first=1026 second=232 amount=-1 -kerning first=53 second=216 amount=-2 -kerning first=1064 second=374 amount=-5 -kerning first=196 second=106 amount=1 -kerning first=76 second=118 amount=-3 -kerning first=1099 second=71 amount=-2 -kerning first=910 second=1071 amount=-2 -kerning first=923 second=83 amount=-1 -kerning first=96 second=283 amount=-1 -kerning first=1176 second=233 amount=-1 -kerning first=356 second=1087 amount=-2 -kerning first=954 second=245 amount=-2 -kerning first=379 second=949 amount=-1 -kerning first=34 second=229 amount=-1 -kerning first=172 second=359 amount=-1 -kerning first=176 second=119 amount=-4 -kerning first=282 second=963 amount=-1 -kerning first=287 second=271 amount=-1 -kerning first=51 second=1195 amount=-1 -kerning first=54 second=371 amount=-1 -kerning first=1071 second=84 amount=-5 -kerning first=194 second=1026 amount=-5 -kerning first=197 second=286 amount=-2 -kerning first=338 second=346 amount=-1 -kerning first=916 second=950 amount=-1 -kerning first=100 second=230 amount=-1 -kerning first=240 second=360 amount=-2 -kerning first=243 second=120 amount=-2 -kerning first=363 second=273 amount=-1 -kerning first=117 second=947 amount=-4 -kerning first=1223 second=8249 amount=-3 -kerning first=35 second=1240 amount=-2 -kerning first=1035 second=335 amount=-1 -kerning first=291 second=219 amount=-2 -kerning first=55 second=1069 amount=-1 -kerning first=61 second=81 amount=-2 -kerning first=1073 second=259 amount=-1 -kerning first=201 second=231 amount=-1 -kerning first=316 second=361 amount=-1 -kerning first=321 second=121 amount=-1 -kerning first=221 second=373 amount=-2 -kerning first=367 second=220 amount=-2 -kerning first=1036 second=966 amount=-2 -kerning first=1039 second=275 amount=-1 -kerning first=182 second=244 amount=-1 -kerning first=294 second=374 amount=-5 -kerning first=199 second=1298 amount=-1 -kerning first=325 second=71 amount=-2 -kerning first=8369 second=249 amount=-1 -kerning first=8364 second=940 amount=-1 -kerning first=900 second=221 amount=-5 -kerning first=85 second=193 amount=-2 -kerning first=222 second=1071 amount=-1 -kerning first=219 second=8230 amount=-1 -kerning first=931 second=1177 amount=-1 -kerning first=105 second=333 amount=-1 -kerning first=965 second=290 amount=-2 -kerning first=125 second=949 amount=-1 -kerning first=161 second=257 amount=-1 -kerning first=40 second=963 amount=-1 -kerning first=43 second=271 amount=-1 -kerning first=301 second=84 amount=-5 -kerning first=203 second=1090 amount=-3 -kerning first=206 second=334 amount=-2 -kerning first=8377 second=199 amount=-2 -kerning first=901 second=376 amount=-5 -kerning first=86 second=346 amount=-1 -kerning first=1116 second=291 amount=-2 -kerning first=934 second=8212 amount=-2 -kerning first=375 second=85 amount=-2 -kerning first=278 second=97 amount=-1 -kerning first=47 second=219 amount=-2 -kerning first=184 second=1108 amount=-1 -kerning first=302 second=259 amount=-1 -kerning first=305 second=34 amount=-3 -kerning first=70 second=121 amount=-1 -kerning first=207 second=965 amount=-1 -kerning first=213 second=46 amount=-1 -kerning first=8378 second=354 amount=-5 -kerning first=8372 second=1118 amount=-1 -kerning first=87 second=1028 amount=-2 -kerning first=90 second=288 amount=-1 -kerning first=948 second=248 amount=-1 -kerning first=113 second=220 amount=-2 -kerning first=1220 second=171 amount=-3 -kerning first=253 second=350 amount=-1 -kerning first=376 second=260 amount=-5 -kerning first=163 second=1176 amount=-1 -kerning first=166 second=362 amount=-2 -kerning first=276 second=966 amount=-1 -kerning first=8220 second=225 amount=-1 -kerning first=48 second=374 amount=-5 -kerning first=45 second=1203 amount=-2 -kerning first=191 second=289 amount=-1 -kerning first=74 second=71 amount=-2 -kerning first=1085 second=940 amount=-1 -kerning first=214 second=221 amount=-5 -kerning first=906 second=953 amount=-1 -kerning first=94 second=233 amount=-1 -kerning first=164 second=8211 amount=-2 -kerning first=55 second=84 amount=-5 -kerning first=195 second=234 amount=-1 -kerning first=75 second=246 amount=-2 -kerning first=215 second=376 amount=-5 -kerning first=1170 second=1098 amount=-3 -kerning first=1178 second=101 amount=-1 -kerning first=1175 second=339 amount=-1 -kerning first=950 second=1117 amount=-2 -kerning first=956 second=113 amount=-1 -kerning first=121 second=85 amount=-2 -kerning first=36 second=97 amount=-1 -kerning first=56 second=259 amount=-1 -kerning first=59 second=34 amount=-3 -kerning first=305 second=8216 amount=-3 -kerning first=8361 second=252 amount=-1 -kerning first=79 second=196 amount=-2 -kerning first=1096 second=1118 amount=-1 -kerning first=1099 second=354 amount=-5 -kerning first=222 second=86 amount=-2 -kerning first=915 second=1184 amount=-5 -kerning first=923 second=366 amount=-2 -kerning first=1176 second=970 amount=-1 -kerning first=1179 second=279 amount=-1 -kerning first=365 second=171 amount=-3 -kerning first=37 second=275 amount=-1 -kerning first=34 second=966 amount=-1 -kerning first=1037 second=225 amount=-1 -kerning first=1068 second=1185 amount=-2 -kerning first=1071 second=367 amount=-1 -kerning first=200 second=337 amount=-1 -kerning first=203 second=99 amount=-1 -kerning first=315 second=940 amount=-1 -kerning first=318 second=249 amount=-1 -kerning first=80 second=351 amount=-1 -kerning first=223 second=261 amount=-1 -kerning first=126 second=210 amount=-2 -kerning first=271 second=100 amount=-1 -kerning first=180 second=352 amount=-1 -kerning first=296 second=262 amount=-2 -kerning first=61 second=364 amount=-2 -kerning first=201 second=968 amount=-1 -kerning first=204 second=277 amount=-1 -kerning first=8366 second=357 amount=-1 -kerning first=8372 second=117 amount=-1 -kerning first=902 second=89 amount=-5 -kerning first=81 second=1035 amount=-2 -kerning first=84 second=291 amount=-2 -kerning first=345 second=339 amount=-1 -kerning first=1194 second=381 amount=-1 -kerning first=250 second=113 amount=-1 -kerning first=247 second=353 amount=-1 -kerning first=160 second=365 amount=-1 -kerning first=1299 second=8221 amount=-3 -kerning first=300 second=212 amount=-2 -kerning first=59 second=8216 amount=-3 -kerning first=1081 second=252 amount=-1 -kerning first=322 second=1118 amount=-1 -kerning first=325 second=354 amount=-5 -kerning first=903 second=266 amount=-2 -kerning first=906 second=39 amount=-3 -kerning first=374 second=213 amount=-3 -kerning first=125 second=8217 amount=-3 -kerning first=971 second=103 amount=-1 -kerning first=1051 second=267 amount=-1 -kerning first=49 second=87 amount=-5 -kerning first=298 second=1185 amount=-3 -kerning first=301 second=367 amount=-1 -kerning first=69 second=249 amount=-1 -kerning first=946 second=356 amount=-5 -kerning first=950 second=116 amount=-1 -kerning first=1219 second=268 amount=-2 -kerning first=375 second=368 amount=-2 -kerning first=168 second=250 amount=-1 -kerning first=165 second=941 amount=-1 -kerning first=47 second=954 amount=-1 -kerning first=50 second=262 amount=-2 -kerning first=190 second=1241 amount=-1 -kerning first=193 second=187 amount=-1 -kerning first=299 second=8220 amount=-3 -kerning first=73 second=199 amount=-2 -kerning first=1096 second=117 amount=-1 -kerning first=216 second=89 amount=-3 -kerning first=910 second=369 amount=-2 -kerning first=93 second=339 amount=-1 -kerning first=1168 second=973 amount=-1 -kerning first=96 second=101 amount=-1 -kerning first=236 second=251 amount=-1 -kerning first=1027 second=228 amount=-1 -kerning first=8220 second=962 amount=-1 -kerning first=54 second=212 amount=-2 -kerning first=1062 second=1194 amount=-1 -kerning first=1065 second=370 amount=-1 -kerning first=197 second=102 amount=-2 -kerning first=306 second=943 amount=-1 -kerning first=74 second=354 amount=-5 -kerning first=926 second=79 amount=-2 -kerning first=94 second=970 amount=-1 -kerning first=952 second=920 amount=-2 -kerning first=1223 second=1195 amount=-1 -kerning first=35 second=225 amount=-1 -kerning first=174 second=355 amount=-1 -kerning first=177 second=115 amount=-1 -kerning first=8240 second=218 amount=-2 -kerning first=52 second=1185 amount=-3 -kerning first=55 second=367 amount=-1 -kerning first=221 second=214 amount=-3 -kerning first=1178 second=1240 amount=-1 -kerning first=121 second=368 amount=-2 -kerning first=53 second=8220 amount=-3 -kerning first=202 second=227 amount=-1 -kerning first=322 second=117 amount=-1 -kerning first=317 second=357 amount=-1 -kerning first=1186 second=332 amount=-1 -kerning first=965 second=106 amount=1 -kerning first=1037 second=962 amount=-1 -kerning first=183 second=240 amount=-1 -kerning first=8250 second=1071 amount=-1 -kerning first=60 second=943 amount=-1 -kerning first=63 second=252 amount=-1 -kerning first=200 second=1256 amount=-2 -kerning first=8370 second=245 amount=-1 -kerning first=901 second=217 amount=-2 -kerning first=220 second=8222 amount=-1 -kerning first=943 second=119 amount=-2 -kerning first=947 second=271 amount=-1 -kerning first=1187 second=963 amount=-1 -kerning first=369 second=371 amount=-1 -kerning first=963 second=1026 amount=-5 -kerning first=162 second=253 amount=-1 -kerning first=1048 second=218 amount=-2 -kerning first=1080 second=360 amount=-2 -kerning first=327 second=242 amount=-1 -kerning first=902 second=372 amount=-5 -kerning first=84 second=1101 amount=-2 -kerning first=1117 second=287 amount=-1 -kerning first=376 second=81 amount=-3 -kerning first=8220 second=46 amount=-1 -kerning first=1049 second=373 amount=-4 -kerning first=88 second=973 amount=-1 -kerning first=1169 second=232 amount=-1 -kerning first=354 second=332 amount=-1 -kerning first=1210 second=374 amount=-5 -kerning first=257 second=106 amount=1 -kerning first=170 second=118 amount=-4 -kerning first=46 second=1194 amount=-1 -kerning first=49 second=370 amount=-2 -kerning first=192 second=283 amount=-1 -kerning first=75 second=67 amount=-3 -kerning first=1095 second=245 amount=-1 -kerning first=215 second=217 amount=-2 -kerning first=912 second=257 amount=-1 -kerning first=95 second=229 amount=-1 -kerning first=238 second=119 amount=-4 -kerning first=358 second=271 amount=-1 -kerning first=255 second=1026 amount=-5 -kerning first=258 second=286 amount=-2 -kerning first=972 second=1090 amount=-1 -kerning first=1026 second=334 amount=-2 -kerning first=8222 second=376 amount=-4 -kerning first=196 second=230 amount=-1 -kerning first=76 second=242 amount=-1 -kerning first=216 second=372 amount=-2 -kerning first=93 second=1262 amount=-2 -kerning first=96 second=1240 amount=-2 -kerning first=1176 second=335 amount=-1 -kerning first=951 second=1108 amount=-1 -kerning first=954 second=347 amount=-1 -kerning first=1263 second=259 amount=-1 -kerning first=1027 second=965 amount=-1 -kerning first=176 second=243 amount=-1 -kerning first=287 second=373 amount=-4 -kerning first=8250 second=86 amount=-2 -kerning first=194 second=1263 amount=-1 -kerning first=341 second=232 amount=-1 -kerning first=916 second=1176 amount=-1 -kerning first=926 second=362 amount=-2 -kerning first=100 second=332 amount=-2 -kerning first=1184 second=275 amount=-2 -kerning first=363 second=374 amount=-5 -kerning first=960 second=289 amount=-1 -kerning first=35 second=962 amount=-1 -kerning first=283 second=8230 amount=-1 -kerning first=296 second=83 amount=-1 -kerning first=8260 second=261 amount=-1 -kerning first=8240 second=953 amount=-1 -kerning first=1073 second=363 amount=-1 -kerning first=201 second=333 amount=-1 -kerning first=321 second=245 amount=-1 -kerning first=221 second=949 amount=-4 -kerning first=339 second=1299 amount=-1 -kerning first=964 second=234 amount=-1 -kerning first=42 second=218 amount=-2 -kerning first=1039 second=376 amount=-5 -kerning first=182 second=346 amount=-1 -kerning first=62 second=360 amount=-2 -kerning first=1074 second=1059 amount=-2 -kerning first=202 second=964 amount=-3 -kerning first=205 second=273 amount=-1 -kerning first=8369 second=353 amount=-1 -kerning first=903 second=85 amount=-2 -kerning first=108 second=219 amount=-2 -kerning first=371 second=259 amount=-1 -kerning first=161 second=361 amount=-1 -kerning first=164 second=121 amount=-1 -kerning first=277 second=46 amount=-1 -kerning first=43 second=373 amount=-4 -kerning first=1037 second=8250 amount=-1 -kerning first=183 second=1028 amount=-2 -kerning first=186 second=288 amount=-2 -kerning first=1083 second=248 amount=-1 -kerning first=209 second=220 amount=-2 -kerning first=89 second=232 amount=-4 -kerning first=232 second=122 amount=-1 -kerning first=355 second=47 amount=-1 -kerning first=1219 second=87 amount=-5 -kerning first=252 second=289 amount=-1 -kerning first=168 second=71 amount=-2 -kerning first=278 second=221 amount=-5 -kerning first=8212 second=379 amount=-2 -kerning first=50 second=83 amount=-1 -kerning first=1048 second=953 amount=-1 -kerning first=190 second=233 amount=-1 -kerning first=302 second=363 amount=-1 -kerning first=299 second=1177 amount=-1 -kerning first=70 second=245 amount=-1 -kerning first=910 second=210 amount=-3 -kerning first=1168 second=338 amount=-2 -kerning first=1171 second=100 amount=-1 -kerning first=948 second=352 amount=-1 -kerning first=1220 second=262 amount=-2 -kerning first=256 second=234 amount=-1 -kerning first=973 second=277 amount=-1 -kerning first=169 second=246 amount=-1 -kerning first=8224 second=89 amount=-5 -kerning first=1065 second=211 amount=-1 -kerning first=303 second=1059 amount=-2 -kerning first=300 second=8212 amount=-2 -kerning first=1097 second=113 amount=-1 -kerning first=94 second=335 amount=-1 -kerning first=117 second=259 amount=-1 -kerning first=288 second=86 amount=-2 -kerning first=8225 second=266 amount=-2 -kerning first=8240 second=39 amount=-3 -kerning first=1063 second=1184 amount=-5 -kerning first=195 second=336 amount=-2 -kerning first=313 second=248 amount=-1 -kerning first=75 second=350 amount=-1 -kerning first=1101 second=63 amount=-2 -kerning first=218 second=260 amount=-2 -kerning first=95 second=966 amount=-1 -kerning first=101 second=47 amount=-1 -kerning first=1224 second=1185 amount=-3 -kerning first=381 second=940 amount=-1 -kerning first=36 second=221 amount=-5 -kerning first=178 second=111 amount=-1 -kerning first=175 second=351 amount=-1 -kerning first=289 second=261 amount=-1 -kerning first=56 second=363 amount=-1 -kerning first=53 second=1177 amount=-1 -kerning first=8361 second=356 amount=-5 -kerning first=8364 second=116 amount=-1 -kerning first=931 second=250 amount=-1 -kerning first=923 second=941 amount=-1 -kerning first=343 second=100 amount=-1 -kerning first=365 second=262 amount=-2 -kerning first=958 second=1241 amount=-1 -kerning first=962 second=187 amount=-1 -kerning first=37 second=376 amount=-5 -kerning first=176 second=1035 amount=-5 -kerning first=179 second=291 amount=-1 -kerning first=1041 second=89 amount=-5 -kerning first=54 second=8212 amount=-2 -kerning first=57 second=1059 amount=-2 -kerning first=318 second=353 amount=-1 -kerning first=323 second=113 amount=-1 -kerning first=223 second=365 amount=-1 -kerning first=369 second=212 amount=-2 -kerning first=966 second=102 amount=-1 -kerning first=271 second=224 amount=-1 -kerning first=35 second=8250 amount=-1 -kerning first=44 second=86 amount=-4 -kerning first=1048 second=39 amount=-3 -kerning first=1044 second=266 amount=-1 -kerning first=291 second=1184 amount=-5 -kerning first=296 second=366 amount=-2 -kerning first=64 second=248 amount=-1 -kerning first=207 second=171 amount=-3 -kerning first=8366 second=920 amount=-2 -kerning first=902 second=213 amount=-2 -kerning first=1117 second=103 amount=-1 -kerning first=944 second=115 amount=-1 -kerning first=1202 second=267 amount=-1 -kerning first=367 second=1185 amount=-3 -kerning first=163 second=249 amount=-1 -kerning first=160 second=940 amount=-1 -kerning first=42 second=953 amount=-1 -kerning first=1049 second=214 amount=-2 -kerning first=68 second=198 amount=-2 -kerning first=1081 second=356 amount=-5 -kerning first=1085 second=116 amount=-1 -kerning first=211 second=88 amount=-3 -kerning first=903 second=368 amount=-2 -kerning first=88 second=338 amount=-3 -kerning first=91 second=100 amount=-1 -kerning first=1118 second=281 amount=-1 -kerning first=251 second=1241 amount=-1 -kerning first=254 second=187 amount=-1 -kerning first=971 second=227 amount=-1 -kerning first=167 second=199 amount=-2 -kerning first=274 second=1079 amount=-1 -kerning first=280 second=89 amount=-5 -kerning first=8217 second=269 amount=-1 -kerning first=49 second=211 amount=-2 -kerning first=1051 second=369 amount=-1 -kerning first=186 second=1098 amount=-3 -kerning first=189 second=339 amount=-1 -kerning first=192 second=101 amount=-1 -kerning first=304 second=251 amount=-1 -kerning first=69 second=353 amount=-1 -kerning first=72 second=113 amount=-1 -kerning first=901 second=8221 amount=-3 -kerning first=904 second=1066 amount=-5 -kerning first=89 second=969 amount=-4 -kerning first=1170 second=228 amount=-1 -kerning first=950 second=240 amount=-1 -kerning first=1206 second=1194 amount=-1 -kerning first=1219 second=370 amount=-2 -kerning first=258 second=102 amount=-2 -kerning first=375 second=943 amount=-1 -kerning first=972 second=382 amount=-1 -kerning first=168 second=354 amount=-5 -kerning first=165 second=1118 amount=-1 -kerning first=8222 second=217 amount=-1 -kerning first=47 second=1184 amount=-5 -kerning first=50 second=366 amount=-2 -kerning first=1067 second=79 amount=-2 -kerning first=193 second=279 amount=-1 -kerning first=190 second=970 amount=-1 -kerning first=76 second=63 amount=-4 -kerning first=915 second=253 amount=-1 -kerning first=1168 second=1257 amount=-1 -kerning first=96 second=225 amount=-1 -kerning first=239 second=115 amount=-1 -kerning first=236 second=355 amount=-1 -kerning first=113 second=1185 amount=-3 -kerning first=169 second=1038 amount=-2 -kerning first=287 second=214 amount=-2 -kerning first=8224 second=372 amount=-5 -kerning first=48 second=8218 amount=-1 -kerning first=1065 second=945 amount=-1 -kerning first=197 second=226 amount=-1 -kerning first=315 second=116 amount=-1 -kerning first=338 second=281 amount=-1 -kerning first=38 second=89 amount=-4 -kerning first=1035 second=269 amount=-1 -kerning first=58 second=251 amount=-1 -kerning first=8363 second=244 amount=-1 -kerning first=215 second=8221 amount=-3 -kerning first=1106 second=106 amount=1 -kerning first=936 second=118 amount=-4 -kerning first=1178 second=962 amount=-1 -kerning first=361 second=1194 amount=-2 -kerning first=124 second=252 amount=-1 -kerning first=121 second=943 amount=-1 -kerning first=1240 second=1044 amount=-1 -kerning first=42 second=39 amount=-3 -kerning first=1039 second=217 amount=-2 -kerning first=297 second=79 amount=-2 -kerning first=1074 second=359 amount=-1 -kerning first=317 second=920 amount=-2 -kerning first=105 second=267 amount=-1 -kerning first=965 second=230 amount=-1 -kerning first=43 second=214 amount=-2 -kerning first=1037 second=947 amount=-4 -kerning first=1041 second=372 amount=-5 -kerning first=179 second=1101 amount=-1 -kerning first=63 second=356 amount=-5 -kerning first=206 second=268 amount=-2 -kerning first=8365 second=1108 amount=-1 -kerning first=8370 second=347 amount=-1 -kerning first=904 second=81 amount=-2 -kerning first=86 second=281 amount=-1 -kerning first=1116 second=231 amount=-2 -kerning first=963 second=1263 amount=-1 -kerning first=162 second=357 amount=-1 -kerning first=165 second=117 amount=-1 -kerning first=44 second=369 amount=-1 -kerning first=184 second=973 amount=-1 -kerning first=1084 second=244 amount=-1 -kerning first=331 second=106 amount=1 -kerning first=8378 second=289 amount=-1 -kerning first=233 second=118 amount=-1 -kerning first=1194 second=8230 amount=-1 -kerning first=1220 second=83 amount=-1 -kerning first=253 second=283 amount=-1 -kerning first=169 second=67 amount=-2 -kerning first=51 second=79 amount=-2 -kerning first=1049 second=949 amount=-1 -kerning first=191 second=229 amount=-1 -kerning first=306 second=119 amount=-4 -kerning first=303 second=359 amount=-1 -kerning first=88 second=1257 amount=-2 -kerning first=1118 second=1090 amount=-3 -kerning first=357 second=218 amount=-2 -kerning first=971 second=964 amount=-3 -kerning first=170 second=242 amount=-1 -kerning first=1028 second=45 amount=-1 -kerning first=277 second=947 amount=-1 -kerning first=280 second=372 amount=-5 -kerning first=8225 second=85 amount=-2 -kerning first=49 second=945 amount=-1 -kerning first=192 second=1240 amount=-2 -kerning first=189 second=1262 amount=-2 -kerning first=1087 second=1108 amount=-1 -kerning first=1095 second=347 amount=-1 -kerning first=912 second=361 amount=-1 -kerning first=1170 second=965 amount=-1 -kerning first=238 second=243 amount=-1 -kerning first=358 second=373 amount=-4 -kerning first=950 second=1028 amount=-2 -kerning first=255 second=1263 amount=-1 -kerning first=1064 second=1176 amount=-1 -kerning first=1067 second=362 amount=-2 -kerning first=196 second=332 amount=-2 -kerning first=314 second=244 amount=-1 -kerning first=1099 second=289 amount=-1 -kerning first=219 second=256 amount=-2 -kerning first=334 second=1298 amount=-1 -kerning first=931 second=71 amount=-2 -kerning first=96 second=962 amount=-1 -kerning first=356 second=8230 amount=-3 -kerning first=365 second=83 amount=-1 -kerning first=958 second=233 amount=-1 -kerning first=1263 second=363 amount=-1 -kerning first=37 second=217 amount=-2 -kerning first=287 second=949 amount=-1 -kerning first=60 second=119 amount=-4 -kerning first=57 second=359 amount=-1 -kerning first=1065 second=8211 amount=-2 -kerning first=197 second=963 amount=-1 -kerning first=200 second=271 amount=-1 -kerning first=77 second=1026 amount=-5 -kerning first=80 second=286 amount=-2 -kerning first=1103 second=234 amount=-1 -kerning first=338 second=1090 amount=-3 -kerning first=934 second=246 amount=-1 -kerning first=103 second=218 amount=-2 -kerning first=366 second=258 amount=-2 -kerning first=123 second=360 amount=-2 -kerning first=1298 second=1059 amount=-2 -kerning first=271 second=45 amount=-2 -kerning first=35 second=947 amount=-4 -kerning first=38 second=372 amount=-5 -kerning first=1028 second=8249 amount=-1 -kerning first=1044 second=85 amount=-1 -kerning first=180 second=287 amount=-1 -kerning first=8260 second=365 amount=-1 -kerning first=204 second=219 amount=-2 -kerning first=316 second=1108 amount=-1 -kerning first=321 second=347 amount=-1 -kerning first=902 second=34 amount=-3 -kerning first=84 second=231 amount=-3 -kerning first=221 second=1175 amount=-2 -kerning first=104 second=373 amount=-1 -kerning first=247 second=288 amount=-2 -kerning first=964 second=336 amount=-2 -kerning first=273 second=220 amount=-2 -kerning first=185 second=232 amount=-1 -kerning first=297 second=362 amount=-2 -kerning first=294 second=1176 amount=-1 -kerning first=65 second=244 amount=-1 -kerning first=205 second=374 amount=-5 -kerning first=325 second=289 amount=-1 -kerning first=1118 second=99 amount=-1 -kerning first=942 second=351 amount=-1 -kerning first=102 second=8230 amount=-2 -kerning first=251 second=233 amount=-1 -kerning first=371 second=363 amount=-1 -kerning first=164 second=245 amount=-1 -kerning first=274 second=375 amount=-1 -kerning first=43 second=949 amount=-1 -kerning first=1051 second=210 amount=-2 -kerning first=1083 second=352 amount=-1 -kerning first=330 second=234 amount=-1 -kerning first=8377 second=1241 amount=-1 -kerning first=904 second=364 amount=-2 -kerning first=86 second=1090 amount=-3 -kerning first=212 second=84 amount=-2 -kerning first=89 second=334 amount=-3 -kerning first=1119 second=277 amount=-1 -kerning first=352 second=376 amount=-2 -kerning first=946 second=291 amount=-1 -kerning first=1219 second=211 amount=-2 -kerning first=369 second=8212 amount=-2 -kerning first=271 second=8249 amount=-3 -kerning first=190 second=335 amount=-1 -kerning first=193 second=97 amount=-1 -kerning first=70 second=347 amount=-1 -kerning first=902 second=8216 amount=-3 -kerning first=1171 second=224 amount=-1 -kerning first=1220 second=366 amount=-2 -kerning first=256 second=336 amount=-2 -kerning first=376 second=937 amount=-2 -kerning first=379 second=248 amount=-1 -kerning first=1027 second=171 amount=-3 -kerning first=169 second=350 amount=-1 -kerning first=8224 second=213 amount=-2 -kerning first=48 second=1176 amount=-1 -kerning first=51 second=362 amount=-2 -kerning first=1062 second=1063 amount=-2 -kerning first=1049 second=8217 amount=-3 -kerning first=191 second=966 amount=-1 -kerning first=194 second=275 amount=-1 -kerning first=74 second=289 amount=-1 -kerning first=338 second=99 amount=-1 -kerning first=916 second=249 amount=-1 -kerning first=237 second=351 amount=-1 -kerning first=240 second=111 amount=-1 -kerning first=357 second=953 amount=-1 -kerning first=117 second=363 amount=-1 -kerning first=974 second=1078 amount=-1 -kerning first=174 second=290 amount=-2 -kerning first=8225 second=368 amount=-2 -kerning first=49 second=8211 amount=-2 -kerning first=78 second=234 amount=-1 -kerning first=928 second=199 amount=-2 -kerning first=238 second=1035 amount=-5 -kerning first=953 second=1098 amount=-2 -kerning first=956 second=339 amount=-1 -kerning first=1299 second=251 amount=-1 -kerning first=1036 second=263 amount=-2 -kerning first=178 second=235 amount=-1 -kerning first=289 second=365 amount=-1 -kerning first=8222 second=8221 amount=-1 -kerning first=8226 second=1066 amount=-5 -kerning first=199 second=377 amount=-1 -kerning first=8364 second=240 amount=-1 -kerning first=343 second=224 amount=-1 -kerning first=923 second=1118 amount=-1 -kerning first=931 second=354 amount=-5 -kerning first=96 second=8250 amount=-1 -kerning first=1195 second=39 amount=-1 -kerning first=1186 second=266 amount=-1 -kerning first=365 second=366 amount=-2 -kerning first=962 second=279 amount=-1 -kerning first=958 second=970 amount=-1 -kerning first=125 second=248 amount=-1 -kerning first=1041 second=213 amount=-2 -kerning first=287 second=8217 amount=-3 -kerning first=206 second=87 amount=-5 -kerning first=86 second=99 amount=-3 -kerning first=223 second=940 amount=-1 -kerning first=934 second=1038 amount=-2 -kerning first=103 second=953 amount=-1 -kerning first=44 second=210 amount=-1 -kerning first=1044 second=368 amount=-1 -kerning first=184 second=338 amount=-2 -kerning first=299 second=250 amount=-1 -kerning first=296 second=941 amount=-1 -kerning first=64 second=352 amount=-1 -kerning first=207 second=262 amount=-2 -kerning first=327 second=187 amount=-1 -kerning first=84 second=968 amount=-2 -kerning first=87 second=277 amount=-3 -kerning first=1117 second=227 amount=-1 -kerning first=247 second=1098 amount=-3 -kerning first=250 second=339 amount=-1 -kerning first=253 second=101 amount=-1 -kerning first=166 second=113 amount=-1 -kerning first=163 second=353 amount=-1 -kerning first=276 second=263 amount=-1 -kerning first=1039 second=8221 amount=-3 -kerning first=1085 second=240 amount=-1 -kerning first=906 second=252 amount=-1 -kerning first=903 second=943 amount=-1 -kerning first=91 second=224 amount=-1 -kerning first=354 second=266 amount=-1 -kerning first=357 second=39 amount=-3 -kerning first=108 second=1184 amount=-5 -kerning first=1223 second=79 amount=-2 -kerning first=251 second=970 amount=-1 -kerning first=254 second=279 amount=-1 -kerning first=280 second=213 amount=-2 -kerning first=43 second=8217 amount=-3 -kerning first=46 second=1063 amount=-3 -kerning first=1063 second=253 amount=-1 -kerning first=192 second=225 amount=-1 -kerning first=304 second=355 amount=-1 -kerning first=209 second=1185 amount=-3 -kerning first=89 second=1220 amount=-3 -kerning first=358 second=214 amount=-2 -kerning first=946 second=1101 amount=-1 -kerning first=1219 second=945 amount=-1 -kerning first=258 second=226 amount=-1 -kerning first=1026 second=268 amount=-2 -kerning first=8218 second=1069 amount=-1 -kerning first=8226 second=81 amount=-2 -kerning first=53 second=250 amount=-1 -kerning first=50 second=941 amount=-1 -kerning first=73 second=1241 amount=-1 -kerning first=915 second=357 amount=-1 -kerning first=923 second=117 amount=-1 -kerning first=93 second=1079 amount=-1 -kerning first=1176 second=269 amount=-1 -kerning first=910 second=1169 amount=-3 -kerning first=356 second=1187 amount=-2 -kerning first=951 second=973 amount=-1 -kerning first=34 second=263 amount=-1 -kerning first=282 second=1066 amount=-5 -kerning first=279 second=8221 amount=-1 -kerning first=1071 second=118 amount=-4 -kerning first=315 second=240 amount=-1 -kerning first=934 second=67 amount=-2 -kerning first=100 second=266 amount=-2 -kerning first=103 second=39 amount=-3 -kerning first=960 second=229 amount=-1 -kerning first=1298 second=359 amount=-1 -kerning first=38 second=213 amount=-2 -kerning first=1035 second=371 amount=-1 -kerning first=180 second=103 amount=-1 -kerning first=291 second=253 amount=-1 -kerning first=58 second=355 amount=-1 -kerning first=61 second=115 amount=-1 -kerning first=1069 second=1046 amount=-3 -kerning first=201 second=267 amount=-1 -kerning first=8363 second=346 amount=-1 -kerning first=339 second=1083 amount=-1 -kerning first=936 second=242 amount=-1 -kerning first=1178 second=947 amount=-2 -kerning first=956 second=1262 amount=-2 -kerning first=124 second=356 amount=-5 -kerning first=160 second=116 amount=-1 -kerning first=1036 second=1069 amount=-2 -kerning first=178 second=972 amount=-1 -kerning first=182 second=281 amount=-1 -kerning first=1046 second=81 amount=-3 -kerning first=8249 second=1175 amount=-1 -kerning first=1078 second=243 amount=-2 -kerning first=8364 second=1028 amount=-2 -kerning first=8369 second=288 amount=-2 -kerning first=105 second=369 amount=-1 -kerning first=965 second=332 amount=-2 -kerning first=274 second=216 amount=-2 -kerning first=40 second=1066 amount=-5 -kerning first=37 second=8221 amount=-3 -kerning first=186 second=228 amount=-1 -kerning first=1047 second=256 amount=-1 -kerning first=301 second=118 amount=-4 -kerning first=203 second=1194 amount=-2 -kerning first=206 second=370 amount=-2 -kerning first=8377 second=233 amount=-1 -kerning first=86 second=382 amount=-2 -kerning first=1116 second=333 amount=-2 -kerning first=947 second=949 amount=-1 -kerning first=252 second=229 amount=-1 -kerning first=375 second=119 amount=-4 -kerning first=972 second=44 amount=-1 -kerning first=162 second=920 amount=-2 -kerning first=271 second=1195 amount=-1 -kerning first=8218 second=84 amount=-5 -kerning first=47 second=253 amount=-1 -kerning first=184 second=1257 amount=-1 -kerning first=1084 second=346 amount=-1 -kerning first=905 second=360 amount=-2 -kerning first=910 second=120 amount=-2 -kerning first=1168 second=273 amount=-1 -kerning first=1171 second=45 amount=-2 -kerning first=1117 second=964 amount=-3 -kerning first=350 second=947 amount=-1 -kerning first=948 second=287 amount=-1 -kerning first=250 second=1262 amount=-2 -kerning first=253 second=1240 amount=-2 -kerning first=973 second=219 amount=-2 -kerning first=276 second=1069 amount=-1 -kerning first=282 second=81 amount=-2 -kerning first=8224 second=34 amount=-3 -kerning first=8220 second=259 amount=-1 -kerning first=306 second=243 amount=-1 -kerning first=1085 second=1028 amount=-2 -kerning first=94 second=269 amount=-1 -kerning first=1174 second=220 amount=-1 -kerning first=952 second=232 amount=-1 -kerning first=1223 second=362 amount=-2 -kerning first=1210 second=1176 amount=-1 -kerning first=1257 second=122 amount=-1 -kerning first=380 second=244 amount=-1 -kerning first=174 second=106 amount=1 -kerning first=55 second=118 amount=-4 -kerning first=192 second=962 amount=-1 -kerning first=75 second=283 amount=-2 -kerning first=358 second=949 amount=-1 -kerning first=361 second=257 amount=-1 -kerning first=1219 second=8211 amount=-2 -kerning first=121 second=119 amount=-4 -kerning first=258 second=963 amount=-1 -kerning first=266 second=44 amount=-1 -kerning first=1240 second=194 amount=-2 -kerning first=175 second=286 amount=-2 -kerning first=171 second=1026 amount=-1 -kerning first=8226 second=364 amount=-2 -kerning first=314 second=346 amount=-1 -kerning first=8361 second=291 amount=-1 -kerning first=216 second=1174 amount=-3 -kerning first=337 second=964 amount=-1 -kerning first=343 second=45 amount=-1 -kerning first=96 second=947 amount=-4 -kerning first=1171 second=8249 amount=-3 -kerning first=1186 second=85 amount=-1 -kerning first=958 second=335 amount=-1 -kerning first=962 second=97 amount=-1 -kerning first=382 second=1108 amount=-1 -kerning first=40 second=81 amount=-2 -kerning first=1041 second=34 amount=-3 -kerning first=1037 second=259 amount=-1 -kerning first=179 second=231 amount=-1 -kerning first=8224 second=8216 amount=-3 -kerning first=60 second=243 amount=-1 -kerning first=200 second=373 amount=-4 -kerning first=318 second=288 amount=-2 -kerning first=315 second=1028 amount=-1 -kerning first=77 second=1263 amount=-1 -kerning first=1100 second=1095 amount=-1 -kerning first=1103 second=336 amount=-2 -kerning first=934 second=350 amount=-1 -kerning first=363 second=1176 amount=-1 -kerning first=966 second=47 amount=-1 -kerning first=960 second=966 amount=-1 -kerning first=126 second=244 amount=-1 -kerning first=963 second=275 amount=-1 -kerning first=268 second=374 amount=-2 -kerning first=263 second=1203 amount=-1 -kerning first=299 second=71 amount=-2 -kerning first=8260 second=940 amount=-1 -kerning first=1080 second=111 amount=-1 -kerning first=207 second=83 amount=-1 -kerning first=84 second=333 amount=-3 -kerning first=107 second=257 amount=-1 -kerning first=1202 second=210 amount=-1 -kerning first=244 second=1299 amount=-1 -kerning first=276 second=84 amount=-5 -kerning first=182 second=1090 amount=-3 -kerning first=185 second=334 amount=-2 -kerning first=300 second=246 amount=-1 -kerning first=65 second=346 amount=-1 -kerning first=1081 second=291 amount=-1 -kerning first=208 second=258 amount=-2 -kerning first=8369 second=1098 amount=-3 -kerning first=900 second=1059 amount=-2 -kerning first=91 second=45 amount=-2 -kerning first=88 second=273 amount=-2 -kerning first=251 second=335 amount=-1 -kerning first=254 second=97 amount=-1 -kerning first=161 second=1108 amount=-1 -kerning first=164 second=347 amount=-1 -kerning first=280 second=34 amount=-3 -kerning first=49 second=121 amount=-1 -kerning first=1041 second=8216 amount=-3 -kerning first=46 second=361 amount=-1 -kerning first=186 second=965 amount=-1 -kerning first=69 second=288 amount=-2 -kerning first=330 second=336 amount=-2 -kerning first=8377 second=970 amount=-1 -kerning first=92 second=220 amount=-2 -kerning first=1170 second=171 amount=-3 -kerning first=1206 second=1063 amount=-2 -kerning first=252 second=966 amount=-1 -kerning first=255 second=275 amount=-1 -kerning first=1026 second=87 amount=-5 -kerning first=168 second=289 amount=-1 -kerning first=8218 second=367 amount=-1 -kerning first=53 second=71 amount=-2 -kerning first=1064 second=249 amount=-1 -kerning first=193 second=221 amount=-5 -kerning first=305 second=351 amount=-1 -kerning first=73 second=233 amount=-1 -kerning first=310 second=111 amount=-2 -kerning first=93 second=375 amount=-1 -kerning first=236 second=290 amount=-2 -kerning first=951 second=338 amount=-2 -kerning first=954 second=100 amount=-2 -kerning first=1220 second=941 amount=-1 -kerning first=376 second=1116 amount=-3 -kerning first=1027 second=262 amount=-2 -kerning first=172 second=234 amount=-1 -kerning first=282 second=364 amount=-2 -kerning first=54 second=246 amount=-1 -kerning first=194 second=376 amount=-5 -kerning first=306 second=1035 amount=-5 -kerning first=311 second=291 amount=-2 -kerning first=1094 second=1098 amount=-2 -kerning first=1097 second=339 amount=-1 -kerning first=214 second=1059 amount=-2 -kerning first=926 second=113 amount=-1 -kerning first=916 second=353 amount=-1 -kerning first=100 second=85 amount=-2 -kerning first=91 second=8249 amount=-3 -kerning first=1184 second=38 amount=-2 -kerning first=240 second=235 amount=-1 -kerning first=35 second=259 amount=-1 -kerning first=38 second=34 amount=-3 -kerning first=1035 second=212 amount=-2 -kerning first=280 second=8216 amount=-3 -kerning first=8240 second=252 amount=-1 -kerning first=8225 second=943 amount=-1 -kerning first=1069 second=354 amount=-2 -kerning first=192 second=8250 amount=-1 -kerning first=78 second=336 amount=-2 -kerning first=221 second=248 amount=-4 -kerning first=339 second=378 amount=-1 -kerning first=342 second=171 amount=-1 -kerning first=358 second=8217 amount=-3 -kerning first=1299 second=355 amount=-1 -kerning first=1033 second=1185 amount=-2 -kerning first=1036 second=367 amount=-1 -kerning first=178 second=337 amount=-1 -kerning first=182 second=99 amount=-1 -kerning first=289 second=940 amount=-1 -kerning first=294 second=249 amount=-1 -kerning first=62 second=111 amount=-1 -kerning first=59 second=351 amount=-1 -kerning first=202 second=261 amount=-1 -kerning first=8361 second=1101 amount=-1 -kerning first=79 second=967 amount=-1 -kerning first=346 second=88 amount=-1 -kerning first=105 second=210 amount=-2 -kerning first=1186 second=368 amount=-1 -kerning first=365 second=941 amount=-1 -kerning first=125 second=352 amount=-1 -kerning first=40 second=364 amount=-2 -kerning first=1034 second=8220 amount=-2 -kerning first=179 second=968 amount=-1 -kerning first=183 second=277 amount=-1 -kerning first=298 second=199 amount=-2 -kerning first=60 second=1035 amount=-5 -kerning first=63 second=291 amount=-1 -kerning first=206 second=211 amount=-2 -kerning first=323 second=339 amount=-1 -kerning first=8365 second=973 amount=-1 -kerning first=318 second=1098 amount=-3 -kerning first=901 second=251 amount=-1 -kerning first=38 second=8216 amount=-3 -kerning first=47 second=74 amount=-3 -kerning first=1048 second=252 amount=-1 -kerning first=299 second=354 amount=-5 -kerning first=296 second=1118 amount=-1 -kerning first=204 second=1184 amount=-5 -kerning first=207 second=366 amount=-2 -kerning first=327 second=279 amount=-1 -kerning first=8378 second=229 amount=-1 -kerning first=87 second=378 amount=-1 -kerning first=233 second=63 amount=-2 -kerning first=948 second=103 amount=-1 -kerning first=104 second=8217 amount=-1 -kerning first=253 second=225 amount=-1 -kerning first=376 second=115 amount=-3 -kerning first=273 second=1185 amount=-3 -kerning first=276 second=367 amount=-1 -kerning first=48 second=249 amount=-1 -kerning first=300 second=1038 amount=-2 -kerning first=1081 second=1101 amount=-1 -kerning first=906 second=356 amount=-5 -kerning first=167 second=1241 amount=-1 -kerning first=170 second=187 amount=-1 -kerning first=274 second=8220 amount=-3 -kerning first=52 second=199 amount=-2 -kerning first=1063 second=357 amount=-1 -kerning first=189 second=1079 amount=-1 -kerning first=195 second=89 amount=-5 -kerning first=72 second=339 amount=-1 -kerning first=1087 second=973 amount=-1 -kerning first=69 second=1098 amount=-3 -kerning first=75 second=101 amount=-2 -kerning first=215 second=251 amount=-1 -kerning first=95 second=263 amount=-1 -kerning first=381 second=240 amount=-1 -kerning first=1026 second=370 amount=-2 -kerning first=53 second=354 amount=-5 -kerning first=50 second=1118 amount=-1 -kerning first=196 second=266 amount=-2 -kerning first=73 second=970 amount=-1 -kerning first=1099 second=229 amount=-1 -kerning first=76 second=279 amount=-1 -kerning first=915 second=920 amount=-2 -kerning first=1171 second=1195 amount=-1 -kerning first=1176 second=371 amount=-1 -kerning first=951 second=1257 amount=-1 -kerning first=1256 second=1046 amount=-3 -kerning first=8230 second=360 amount=-1 -kerning first=8250 second=120 amount=-2 -kerning first=54 second=1038 amount=-2 -kerning first=1071 second=242 amount=-1 -kerning first=200 second=214 amount=-2 -kerning first=1068 second=923 amount=-1 -kerning first=80 second=226 amount=-1 -kerning first=223 second=116 amount=-1 -kerning first=100 second=368 amount=-2 -kerning first=240 second=972 amount=-1 -kerning first=180 second=227 amount=-1 -kerning first=296 second=117 amount=-1 -kerning first=291 second=357 amount=-1 -kerning first=201 second=369 amount=-1 -kerning first=316 second=973 amount=-1 -kerning first=8366 second=232 amount=-1 -kerning first=81 second=381 amount=-1 -kerning first=98 second=8221 amount=-1 -kerning first=1194 second=256 amount=-1 -kerning first=247 second=228 amount=-1 -kerning first=160 second=240 amount=-1 -kerning first=42 second=252 amount=-1 -kerning first=178 second=1256 amount=-2 -kerning first=300 second=67 amount=-2 -kerning first=199 second=8222 amount=-1 -kerning first=325 second=229 amount=-1 -kerning first=900 second=359 amount=-1 -kerning first=903 second=119 amount=-4 -kerning first=1107 second=963 amount=-1 -kerning first=343 second=1195 amount=-1 -kerning first=942 second=286 amount=-2 -kerning first=108 second=253 amount=-1 -kerning first=968 second=218 amount=-2 -kerning first=8211 second=258 amount=-2 -kerning first=1041 second=1174 amount=-2 -kerning first=301 second=242 amount=-1 -kerning first=63 second=1101 amount=-1 -kerning first=1083 second=287 amount=-1 -kerning first=206 second=945 amount=-1 -kerning first=323 second=1262 amount=-2 -kerning first=8377 second=335 amount=-1 -kerning first=89 second=268 amount=-3 -kerning first=1119 second=219 amount=-2 -kerning first=946 second=231 amount=-1 -kerning first=1219 second=121 amount=-1 -kerning first=375 second=243 amount=-1 -kerning first=47 second=357 amount=-1 -kerning first=50 second=117 amount=-1 -kerning first=190 second=269 amount=-1 -kerning first=1090 second=232 amount=-1 -kerning first=8378 second=966 amount=-1 -kerning first=93 second=216 amount=-2 -kerning first=910 second=244 amount=-4 -kerning first=1168 second=374 amount=-5 -kerning first=236 second=106 amount=1 -kerning first=356 second=256 amount=-6 -kerning first=253 second=962 amount=-1 -kerning first=1027 second=83 amount=-1 -kerning first=169 second=283 amount=-1 -kerning first=54 second=67 amount=-2 -kerning first=1065 second=245 amount=-1 -kerning first=194 second=217 amount=-2 -kerning first=74 second=229 amount=-1 -kerning first=214 second=359 amount=-1 -kerning first=94 second=371 amount=-1 -kerning first=91 second=1195 amount=-1 -kerning first=237 second=286 amount=-2 -kerning first=952 second=334 amount=-2 -kerning first=260 second=218 amount=-2 -kerning first=1028 second=258 amount=-1 -kerning first=174 second=230 amount=-1 -kerning first=55 second=242 amount=-1 -kerning first=192 second=947 amount=-4 -kerning first=195 second=372 amount=-5 -kerning first=313 second=287 amount=-1 -kerning first=72 second=1262 amount=-2 -kerning first=75 second=1240 amount=-3 -kerning first=912 second=1108 amount=-1 -kerning first=95 second=1069 amount=-1 -kerning first=361 second=361 amount=-1 -kerning first=961 second=46 amount=-1 -kerning first=121 second=243 amount=-1 -kerning first=261 second=373 amount=-1 -kerning first=381 second=1028 amount=-1 -kerning first=317 second=232 amount=-1 -kerning first=1099 second=966 amount=-1 -kerning first=1107 second=47 amount=-2 -kerning first=337 second=1203 amount=-2 -kerning first=340 second=374 amount=-2 -kerning first=931 second=289 amount=-1 -kerning first=962 second=221 amount=-5 -kerning first=1037 second=363 amount=-1 -kerning first=179 second=333 amount=-1 -kerning first=200 second=949 amount=-1 -kerning first=203 second=257 amount=-1 -kerning first=8365 second=338 amount=-2 -kerning first=8370 second=100 amount=-1 -kerning first=80 second=963 amount=-1 -kerning first=86 second=44 amount=-4 -kerning first=243 second=1090 amount=-1 -kerning first=369 second=246 amount=-1 -kerning first=963 second=376 amount=-5 -kerning first=126 second=346 amount=-1 -kerning first=38 second=1174 amount=-2 -kerning first=41 second=360 amount=-2 -kerning first=1035 second=8212 amount=-2 -kerning first=184 second=273 amount=-1 -kerning first=180 second=964 amount=-3 -kerning first=64 second=287 amount=-1 -kerning first=1080 second=235 amount=-1 -kerning first=327 second=97 amount=-1 -kerning first=353 second=34 amount=-1 -kerning first=247 second=965 amount=-1 -kerning first=160 second=1028 amount=-2 -kerning first=163 second=288 amount=-2 -kerning first=1049 second=248 amount=-1 -kerning first=188 second=220 amount=-2 -kerning first=300 second=350 amount=-1 -kerning first=205 second=1176 amount=-1 -kerning first=325 second=966 amount=-1 -kerning first=332 second=47 amount=-1 -kerning first=1203 second=940 amount=-1 -kerning first=1210 second=249 amount=-1 -kerning first=254 second=221 amount=-5 -kerning first=374 second=351 amount=-3 -kerning first=377 second=111 amount=-1 -kerning first=971 second=261 amount=-1 -kerning first=968 second=953 amount=-1 -kerning first=167 second=233 amount=-1 -kerning first=274 second=1177 amount=-1 -kerning first=49 second=245 amount=-1 -kerning first=189 second=375 amount=-1 -kerning first=304 second=290 amount=-2 -kerning first=1087 second=338 amount=-2 -kerning first=206 second=8211 amount=-2 -kerning first=1095 second=100 amount=-1 -kerning first=95 second=84 amount=-5 -kerning first=1170 second=262 amount=-2 -kerning first=946 second=968 amount=-1 -kerning first=950 second=277 amount=-1 -kerning first=1224 second=199 amount=-2 -kerning first=255 second=376 amount=-5 -kerning first=375 second=1035 amount=-5 -kerning first=1026 second=211 amount=-2 -kerning first=278 second=1059 amount=-2 -kerning first=8222 second=251 amount=-1 -kerning first=1064 second=353 amount=-1 -kerning first=1067 second=113 amount=-1 -kerning first=196 second=85 amount=-2 -kerning first=310 second=235 amount=-2 -kerning first=70 second=1094 amount=-1 -kerning first=73 second=335 amount=-1 -kerning first=334 second=377 amount=-1 -kerning first=96 second=259 amount=-1 -kerning first=1176 second=212 amount=-2 -kerning first=99 second=34 amount=-1 -kerning first=353 second=8216 amount=-1 -kerning first=954 second=224 amount=-1 -kerning first=1220 second=1118 amount=-1 -kerning first=253 second=8250 amount=-1 -kerning first=1256 second=354 amount=-2 -kerning first=262 second=86 amount=-1 -kerning first=973 second=1184 amount=-5 -kerning first=1027 second=366 amount=-2 -kerning first=172 second=336 amount=-2 -kerning first=287 second=248 amount=-1 -kerning first=54 second=350 amount=-1 -kerning first=74 second=966 amount=-1 -kerning first=80 second=47 amount=-3 -kerning first=77 second=275 amount=-1 -kerning first=220 second=197 amount=-2 -kerning first=335 second=1076 amount=-1 -kerning first=1174 second=1185 amount=-2 -kerning first=240 second=337 amount=-1 -kerning first=363 second=249 amount=-1 -kerning first=120 second=351 amount=-1 -kerning first=123 second=111 amount=-1 -kerning first=260 second=953 amount=-1 -kerning first=35 second=363 amount=-1 -kerning first=8240 second=356 amount=-5 -kerning first=8260 second=116 amount=-1 -kerning first=58 second=290 amount=-2 -kerning first=201 second=210 amount=-2 -kerning first=316 second=338 amount=-2 -kerning first=321 second=100 amount=-1 -kerning first=8363 second=281 amount=-1 -kerning first=1101 second=380 amount=-1 -kerning first=221 second=352 amount=-1 -kerning first=928 second=1241 amount=-1 -kerning first=936 second=187 amount=-1 -kerning first=367 second=199 amount=-2 -kerning first=956 second=1079 amount=-1 -kerning first=964 second=89 amount=-5 -kerning first=121 second=1035 amount=-5 -kerning first=124 second=291 amount=-1 -kerning first=36 second=1059 amount=-2 -kerning first=1039 second=251 amount=-1 -kerning first=294 second=353 amount=-1 -kerning first=297 second=113 amount=-1 -kerning first=62 second=235 amount=-1 -kerning first=202 second=365 amount=-1 -kerning first=8369 second=228 amount=-1 -kerning first=99 second=8216 amount=-1 -kerning first=365 second=1118 amount=-1 -kerning first=965 second=266 amount=-2 -kerning first=968 second=39 amount=-3 -kerning first=43 second=248 amount=-1 -kerning first=186 second=171 amount=-3 -kerning first=1083 second=103 amount=-1 -kerning first=200 second=8217 amount=-3 -kerning first=8365 second=1257 amount=-1 -kerning first=904 second=115 amount=-1 -kerning first=901 second=355 amount=-1 -kerning first=86 second=324 amount=-2 -kerning first=1116 second=267 amount=-2 -kerning first=369 second=1038 amount=-2 -kerning first=268 second=8218 amount=-1 -kerning first=47 second=198 amount=-5 -kerning first=1048 second=356 amount=-5 -kerning first=70 second=100 amount=-1 -kerning first=1080 second=972 amount=-1 -kerning first=1084 second=281 amount=-1 -kerning first=207 second=941 amount=-1 -kerning first=87 second=954 amount=-2 -kerning first=910 second=65 amount=-5 -kerning first=90 second=262 amount=-1 -kerning first=948 second=227 amount=-1 -kerning first=113 second=199 amount=-2 -kerning first=1220 second=117 amount=-1 -kerning first=250 second=1079 amount=-1 -kerning first=256 second=89 amount=-5 -kerning first=163 second=1098 amount=-3 -kerning first=166 second=339 amount=-1 -kerning first=169 second=101 amount=-1 -kerning first=51 second=113 amount=-1 -kerning first=48 second=353 amount=-1 -kerning first=194 second=38 amount=-1 -kerning first=191 second=263 amount=-1 -kerning first=94 second=212 amount=-2 -kerning first=1118 second=1194 amount=-2 -kerning first=357 second=252 amount=-1 -kerning first=260 second=39 amount=-3 -kerning first=167 second=970 amount=-1 -kerning first=170 second=279 amount=-1 -kerning first=8225 second=119 amount=-4 -kerning first=1063 second=920 amount=-2 -kerning first=195 second=213 amount=-2 -kerning first=313 second=103 amount=-1 -kerning first=75 second=225 amount=-1 -kerning first=1087 second=1257 amount=-1 -kerning first=215 second=355 amount=-1 -kerning first=92 second=1185 amount=-3 -kerning first=95 second=367 amount=-1 -kerning first=1026 second=945 amount=-1 -kerning first=175 second=226 amount=-1 -kerning first=286 second=356 amount=-1 -kerning first=289 second=116 amount=-1 -kerning first=196 second=368 amount=-2 -kerning first=314 second=281 amount=-1 -kerning first=8361 second=231 amount=-1 -kerning first=310 second=972 amount=-2 -kerning first=222 second=65 amount=-2 -kerning first=93 second=8220 amount=-3 -kerning first=365 second=117 amount=-1 -kerning first=958 second=269 amount=-1 -kerning first=37 second=251 amount=-1 -kerning first=194 second=8221 amount=-3 -kerning first=197 second=1066 amount=-5 -kerning first=318 second=228 amount=-1 -kerning first=220 second=916 amount=-2 -kerning first=223 second=240 amount=-1 -kerning first=338 second=1194 amount=-2 -kerning first=934 second=283 amount=-1 -kerning first=103 second=252 amount=-1 -kerning first=100 second=943 amount=-1 -kerning first=240 second=1256 amount=-2 -kerning first=243 second=382 amount=-1 -kerning first=369 second=67 amount=-2 -kerning first=963 second=217 amount=-2 -kerning first=271 second=79 amount=-2 -kerning first=1044 second=119 amount=-2 -kerning first=291 second=920 amount=-2 -kerning first=64 second=103 amount=-1 -kerning first=1073 second=1026 amount=-5 -kerning first=204 second=253 amount=-1 -kerning first=316 second=1257 amount=-1 -kerning first=8366 second=334 amount=-2 -kerning first=8363 second=1090 amount=-3 -kerning first=84 second=267 amount=-3 -kerning first=244 second=1083 amount=-1 -kerning first=964 second=372 amount=-5 -kerning first=961 second=947 amount=-1 -kerning first=124 second=1101 amount=-1 -kerning first=42 second=356 amount=-5 -kerning first=185 second=268 amount=-2 -kerning first=62 second=972 amount=-1 -kerning first=65 second=281 amount=-1 -kerning first=1081 second=231 amount=-1 -kerning first=8369 second=965 amount=-1 -kerning first=903 second=243 amount=-1 -kerning first=108 second=357 amount=-1 -kerning first=251 second=269 amount=-1 -kerning first=161 second=973 amount=-1 -kerning first=1051 second=244 amount=-1 -kerning first=189 second=216 amount=-2 -kerning first=304 second=106 amount=1 -kerning first=69 second=228 amount=-1 -kerning first=908 second=193 amount=-2 -kerning first=86 second=1194 amount=-2 -kerning first=1170 second=83 amount=-1 -kerning first=946 second=333 amount=-1 -kerning first=1219 second=245 amount=-1 -kerning first=255 second=217 amount=-2 -kerning first=168 second=229 amount=-1 -kerning first=278 second=359 amount=-1 -kerning first=281 second=119 amount=-1 -kerning first=8212 second=1051 amount=-4 -kerning first=47 second=920 amount=-2 -kerning first=190 second=371 amount=-1 -kerning first=302 second=1026 amount=-5 -kerning first=305 second=286 amount=-2 -kerning first=1084 second=1090 amount=-3 -kerning first=210 second=1046 amount=-3 -kerning first=910 second=346 amount=-1 -kerning first=236 second=230 amount=-1 -kerning first=951 second=273 amount=-1 -kerning first=948 second=964 amount=-3 -kerning first=954 second=45 amount=-3 -kerning first=253 second=947 amount=-4 -kerning first=256 second=372 amount=-5 -kerning first=166 second=1262 amount=-2 -kerning first=169 second=1240 amount=-2 -kerning first=1062 second=1108 amount=-1 -kerning first=191 second=1069 amount=-1 -kerning first=197 second=81 amount=-2 -kerning first=311 second=231 amount=-2 -kerning first=332 second=1202 amount=-3 -kerning first=335 second=373 amount=-1 -kerning first=916 second=288 amount=-2 -kerning first=955 second=220 amount=-2 -kerning first=174 second=332 amount=-2 -kerning first=58 second=106 amount=1 -kerning first=8363 second=99 amount=-1 -kerning first=75 second=962 amount=-2 -kerning first=221 second=193 amount=-5 -kerning first=336 second=1071 amount=-1 -kerning first=333 second=8230 amount=-1 -kerning first=928 second=233 amount=-1 -kerning first=956 second=375 amount=-1 -kerning first=1299 second=290 amount=-2 -kerning first=36 second=359 amount=-1 -kerning first=1026 second=8211 amount=-2 -kerning first=175 second=963 amount=-1 -kerning first=178 second=271 amount=-1 -kerning first=56 second=1026 amount=-5 -kerning first=59 second=286 amount=-2 -kerning first=1074 second=234 amount=-1 -kerning first=314 second=1090 amount=-3 -kerning first=317 second=334 amount=-2 -kerning first=8361 second=968 amount=-1 -kerning first=8364 second=277 amount=-1 -kerning first=1176 second=8212 amount=-2 -kerning first=242 second=964 amount=-1 -kerning first=965 second=85 amount=-2 -kerning first=125 second=287 amount=-1 -kerning first=183 second=219 amount=-2 -kerning first=63 second=231 amount=-1 -kerning first=203 second=361 amount=-1 -kerning first=206 second=121 amount=-1 -kerning first=318 second=965 amount=-1 -kerning first=8370 second=224 amount=-1 -kerning first=80 second=1202 amount=-2 -kerning first=83 second=373 amount=-1 -kerning first=223 second=1028 amount=-2 -kerning first=947 second=248 amount=-1 -kerning first=249 second=220 amount=-2 -kerning first=369 second=350 amount=-1 -kerning first=372 second=110 amount=-2 -kerning first=162 second=232 amount=-1 -kerning first=268 second=1176 amount=1 -kerning first=271 second=362 amount=-2 -kerning first=275 second=122 amount=-1 -kerning first=184 second=374 amount=-5 -kerning first=299 second=289 amount=-1 -kerning first=1080 second=337 amount=-1 -kerning first=1084 second=99 amount=-1 -kerning first=327 second=221 amount=-5 -kerning first=902 second=351 amount=-1 -kerning first=905 second=111 amount=-1 -kerning first=81 second=8230 amount=-1 -kerning first=1117 second=261 amount=-1 -kerning first=250 second=375 amount=-1 -kerning first=1049 second=352 amount=-1 -kerning first=191 second=84 amount=-5 -kerning first=303 second=234 amount=-1 -kerning first=65 second=1090 amount=-3 -kerning first=1081 second=968 amount=-1 -kerning first=1085 second=277 amount=-1 -kerning first=903 second=1035 amount=-5 -kerning first=88 second=950 amount=-2 -kerning first=906 second=291 amount=-1 -kerning first=1210 second=353 amount=-1 -kerning first=1223 second=113 amount=-1 -kerning first=377 second=235 amount=-1 -kerning first=971 second=365 amount=-1 -kerning first=167 second=335 amount=-1 -kerning first=170 second=97 amount=-1 -kerning first=49 second=347 amount=-1 -kerning first=192 second=259 amount=-1 -kerning first=195 second=34 amount=-3 -kerning first=69 second=965 amount=-1 -kerning first=1095 second=224 amount=-1 -kerning first=336 second=86 amount=-2 -kerning first=1119 second=1184 amount=-5 -kerning first=1170 second=366 amount=-2 -kerning first=358 second=248 amount=-1 -kerning first=112 second=1113 amount=-1 -kerning first=168 second=966 amount=-1 -kerning first=8226 second=115 amount=-1 -kerning first=8222 second=355 amount=-1 -kerning first=53 second=289 amount=-1 -kerning first=310 second=337 amount=-2 -kerning first=314 second=99 amount=-1 -kerning first=76 second=221 amount=-6 -kerning first=93 second=1177 amount=-1 -kerning first=96 second=363 amount=-1 -kerning first=362 second=198 amount=-2 -kerning first=1027 second=941 amount=-1 -kerning first=287 second=352 amount=-1 -kerning first=8250 second=65 amount=-3 -kerning first=57 second=234 amount=-1 -kerning first=1071 second=187 amount=-1 -kerning first=197 second=364 amount=-2 -kerning first=315 second=277 amount=-1 -kerning first=77 second=376 amount=-5 -kerning first=1103 second=89 amount=-5 -kerning first=916 second=1098 amount=-3 -kerning first=926 second=339 amount=-1 -kerning first=94 second=8212 amount=-2 -kerning first=934 second=101 amount=-1 -kerning first=1184 second=251 amount=-1 -kerning first=363 second=353 amount=-1 -kerning first=960 second=263 amount=-1 -kerning first=123 second=235 amount=-1 -kerning first=8260 second=240 amount=-1 -kerning first=195 second=8216 amount=-3 -kerning first=321 second=224 amount=-1 -kerning first=75 second=8250 amount=-2 -kerning first=928 second=970 amount=-1 -kerning first=936 second=279 amount=-1 -kerning first=244 second=378 amount=-1 -kerning first=247 second=171 amount=-3 -kerning first=964 second=213 amount=-2 -kerning first=261 second=8217 amount=-1 -kerning first=1039 second=355 amount=-1 -kerning first=1046 second=115 amount=-1 -kerning first=185 second=87 amount=-5 -kerning first=62 second=337 amount=-1 -kerning first=65 second=99 amount=-1 -kerning first=202 second=940 amount=-1 -kerning first=205 second=249 amount=-1 -kerning first=942 second=226 amount=-1 -kerning first=245 second=1078 amount=-2 -kerning first=965 second=368 amount=-2 -kerning first=161 second=338 amount=-2 -kerning first=164 second=100 amount=-1 -kerning first=274 second=250 amount=-1 -kerning first=43 second=352 amount=-1 -kerning first=186 second=262 amount=-2 -kerning first=298 second=1241 amount=-1 -kerning first=301 second=187 amount=-1 -kerning first=63 second=968 amount=-1 -kerning first=1083 second=227 amount=-1 -kerning first=209 second=199 amount=-2 -kerning first=323 second=1079 amount=-1 -kerning first=8377 second=269 amount=-1 -kerning first=330 second=89 amount=-5 -kerning first=89 second=211 amount=-3 -kerning first=226 second=1098 amount=-1 -kerning first=252 second=263 amount=-1 -kerning first=963 second=8221 amount=-3 -kerning first=8218 second=118 amount=-2 -kerning first=190 second=212 amount=-2 -kerning first=70 second=224 amount=-1 -kerning first=1080 second=1256 amount=-2 -kerning first=207 second=1118 amount=-1 -kerning first=210 second=354 amount=-2 -kerning first=1171 second=79 amount=-2 -kerning first=256 second=213 amount=-2 -kerning first=376 second=341 amount=-3 -kerning first=973 second=253 amount=-1 -kerning first=169 second=225 amount=-1 -kerning first=282 second=115 amount=-1 -kerning first=188 second=1185 amount=-3 -kerning first=191 second=367 amount=-1 -kerning first=906 second=1101 amount=-1 -kerning first=1169 second=945 amount=-1 -kerning first=237 second=226 amount=-1 -kerning first=357 second=356 amount=-5 -kerning first=952 second=268 amount=-2 -kerning first=377 second=972 amount=-1 -kerning first=380 second=281 amount=-1 -kerning first=8225 second=243 amount=-1 -kerning first=52 second=1241 amount=-1 -kerning first=55 second=187 amount=-1 -kerning first=189 second=8220 amount=-3 -kerning first=78 second=89 amount=-5 -kerning first=72 second=1079 amount=-1 -kerning first=912 second=973 amount=-1 -kerning first=956 second=216 amount=-2 -kerning first=258 second=1066 amount=-5 -kerning first=255 second=8221 amount=-3 -kerning first=1299 second=106 amount=1 -kerning first=1036 second=118 amount=-3 -kerning first=289 second=240 amount=-1 -kerning first=8249 second=193 amount=-1 -kerning first=196 second=943 amount=-1 -kerning first=310 second=1256 amount=-3 -kerning first=8361 second=333 amount=-1 -kerning first=334 second=8222 amount=-1 -kerning first=931 second=229 amount=-1 -kerning first=1186 second=119 amount=-2 -kerning first=954 second=1195 amount=-2 -kerning first=958 second=371 amount=-1 -kerning first=125 second=103 amount=-1 -kerning first=1263 second=1026 amount=-5 -kerning first=382 second=1257 amount=-1 -kerning first=37 second=355 amount=-1 -kerning first=40 second=115 amount=-1 -kerning first=1034 second=1046 amount=-2 -kerning first=179 second=267 amount=-1 -kerning first=8250 second=346 amount=-1 -kerning first=8365 second=273 amount=-1 -kerning first=8370 second=45 amount=-2 -kerning first=1103 second=372 amount=-5 -kerning first=341 second=945 amount=-1 -kerning first=926 second=1262 amount=-2 -kerning first=934 second=1240 amount=-2 -kerning first=103 second=356 amount=-5 -kerning first=960 second=1069 amount=-1 -kerning first=123 second=972 amount=-1 -kerning first=126 second=281 amount=-1 -kerning first=1044 second=243 amount=-1 -kerning first=8260 second=1028 amount=-2 -kerning first=64 second=227 amount=-1 -kerning first=1073 second=1263 amount=-1 -kerning first=207 second=117 amount=-1 -kerning first=204 second=357 amount=-1 -kerning first=8372 second=220 amount=-2 -kerning first=84 second=369 amount=-2 -kerning first=1202 second=244 amount=-1 -kerning first=250 second=216 amount=-2 -kerning first=163 second=228 amount=-1 -kerning first=276 second=118 amount=-4 -kerning first=182 second=1194 amount=-2 -kerning first=185 second=370 amount=-2 -kerning first=300 second=283 amount=-1 -kerning first=62 second=1256 amount=-2 -kerning first=1081 second=333 amount=-1 -kerning first=91 second=79 amount=-2 -kerning first=1118 second=257 amount=-1 -kerning first=354 second=119 amount=-2 -kerning first=942 second=963 amount=-1 -kerning first=108 second=920 amount=-2 -kerning first=251 second=371 amount=-1 -kerning first=371 second=1026 amount=-5 -kerning first=374 second=286 amount=-3 -kerning first=161 second=1257 amount=-1 -kerning first=8217 second=246 amount=-1 -kerning first=1051 second=346 amount=-1 -kerning first=304 second=230 amount=-1 -kerning first=1087 second=273 amount=-1 -kerning first=1095 second=45 amount=-2 -kerning first=1083 second=964 amount=-3 -kerning first=326 second=947 amount=-1 -kerning first=330 second=372 amount=-5 -kerning first=8370 second=8249 amount=-3 -kerning first=89 second=945 amount=-4 -kerning first=950 second=219 amount=-2 -kerning first=1206 second=1108 amount=-1 -kerning first=1219 second=347 amount=-1 -kerning first=252 second=1069 amount=-1 -kerning first=258 second=81 amount=-2 -kerning first=378 second=231 amount=-1 -kerning first=969 second=1175 amount=-1 -kerning first=1026 second=121 amount=-1 -kerning first=47 second=1102 amount=-1 -kerning first=1064 second=288 amount=-2 -kerning first=302 second=1263 amount=-1 -kerning first=73 second=269 amount=-1 -kerning first=1096 second=220 amount=-2 -kerning first=915 second=232 amount=-1 -kerning first=1168 second=1176 amount=-1 -kerning first=1171 second=362 amount=-2 -kerning first=236 second=332 amount=-2 -kerning first=951 second=374 amount=-5 -kerning first=376 second=1298 amount=-5 -kerning first=169 second=962 amount=-1 -kerning first=8224 second=351 amount=-1 -kerning first=54 second=283 amount=-1 -kerning first=57 second=55 amount=-1 -kerning first=311 second=333 amount=-2 -kerning first=77 second=217 amount=-2 -kerning first=338 second=257 amount=-1 -kerning first=100 second=119 amount=-4 -kerning first=237 second=963 amount=-1 -kerning first=240 second=271 amount=-1 -kerning first=243 second=44 amount=-1 -kerning first=960 second=84 amount=-5 -kerning first=117 second=1026 amount=-5 -kerning first=1298 second=234 amount=-1 -kerning first=1035 second=246 amount=-1 -kerning first=177 second=218 amount=-2 -kerning first=8225 second=1035 amount=-5 -kerning first=8240 second=291 amount=-1 -kerning first=58 second=230 amount=-1 -kerning first=198 second=360 amount=-2 -kerning first=321 second=45 amount=-2 -kerning first=316 second=273 amount=-1 -kerning first=78 second=372 amount=-5 -kerning first=1095 second=8249 amount=-3 -kerning first=75 second=947 amount=-3 -kerning first=221 second=287 amount=-4 -kerning first=928 second=335 amount=-1 -kerning first=936 second=97 amount=-1 -kerning first=361 second=1108 amount=-1 -kerning first=964 second=34 amount=-3 -kerning first=124 second=231 amount=-1 -kerning first=39 second=243 amount=-1 -kerning first=178 second=373 amount=-4 -kerning first=289 second=1028 amount=-2 -kerning first=294 second=288 amount=-2 -kerning first=56 second=1263 amount=-1 -kerning first=1074 second=336 amount=-2 -kerning first=322 second=220 amount=-2 -kerning first=8369 second=171 amount=-3 -kerning first=931 second=966 amount=-1 -kerning first=105 second=244 amount=-1 -kerning first=242 second=1203 amount=-2 -kerning first=274 second=71 amount=-2 -kerning first=1041 second=351 amount=-1 -kerning first=186 second=83 amount=-1 -kerning first=298 second=233 amount=-1 -kerning first=63 second=333 amount=-1 -kerning first=206 second=245 amount=-1 -kerning first=323 second=375 amount=-1 -kerning first=901 second=290 amount=-2 -kerning first=86 second=257 amount=-1 -kerning first=341 second=8211 amount=-1 -kerning first=252 second=84 amount=-5 -kerning first=372 second=234 amount=-3 -kerning first=162 second=334 amount=-2 -kerning first=126 second=1090 amount=-3 -kerning first=1048 second=291 amount=-1 -kerning first=1044 second=1035 amount=-2 -kerning first=187 second=258 amount=-3 -kerning first=70 second=45 amount=-2 -kerning first=64 second=964 amount=-3 -kerning first=321 second=8249 amount=-3 -kerning first=8378 second=263 amount=-1 -kerning first=905 second=235 amount=-1 -kerning first=1117 second=365 amount=-1 -kerning first=107 second=1108 amount=-2 -kerning first=113 second=109 amount=2 -kerning first=253 second=259 amount=-1 -kerning first=256 second=34 amount=-3 -kerning first=964 second=8216 amount=-3 -kerning first=163 second=965 amount=-1 -kerning first=48 second=288 amount=-2 -kerning first=303 second=336 amount=-2 -kerning first=332 second=260 amount=-2 -kerning first=91 second=362 amount=-2 -kerning first=88 second=1176 amount=-2 -kerning first=952 second=87 amount=-5 -kerning first=114 second=289 amount=-1 -kerning first=374 second=1096 amount=-3 -kerning first=377 second=337 amount=-1 -kerning first=380 second=99 amount=-1 -kerning first=971 second=940 amount=-1 -kerning first=170 second=221 amount=-5 -kerning first=280 second=351 amount=-1 -kerning first=52 second=233 amount=-1 -kerning first=192 second=363 amount=-1 -kerning first=189 second=1177 amount=-1 -kerning first=72 second=375 amount=-1 -kerning first=215 second=290 amount=-2 -kerning first=912 second=338 amount=-2 -kerning first=89 second=8211 amount=-4 -kerning first=1170 second=941 amount=-1 -kerning first=358 second=352 amount=-1 -kerning first=950 second=954 amount=-2 -kerning first=118 second=234 amount=-1 -kerning first=1224 second=1241 amount=-1 -kerning first=258 second=364 amount=-2 -kerning first=381 second=277 amount=-1 -kerning first=171 second=376 amount=-2 -kerning first=1067 second=339 amount=-1 -kerning first=190 second=8212 amount=-2 -kerning first=193 second=1059 amount=-2 -kerning first=1064 second=1098 amount=-3 -kerning first=70 second=8249 amount=-3 -kerning first=1099 second=263 amount=-1 -kerning first=958 second=212 amount=-2 -kerning first=256 second=8216 amount=-3 -kerning first=1027 second=1118 amount=-1 -kerning first=1034 second=354 amount=-5 -kerning first=169 second=8250 amount=-1 -kerning first=57 second=336 amount=-2 -kerning first=1071 second=279 amount=-1 -kerning first=200 second=248 amount=-1 -kerning first=318 second=171 amount=-3 -kerning first=80 second=260 amount=-4 -kerning first=1103 second=213 amount=-2 -kerning first=335 second=8217 amount=-1 -kerning first=934 second=225 amount=-1 -kerning first=1184 second=355 amount=-1 -kerning first=955 second=1185 amount=-3 -kerning first=960 second=367 amount=-1 -kerning first=123 second=337 amount=-1 -kerning first=126 second=99 amount=-1 -kerning first=41 second=111 amount=-1 -kerning first=1035 second=1038 amount=-2 -kerning first=38 second=351 amount=-1 -kerning first=180 second=261 amount=-1 -kerning first=177 second=953 amount=-1 -kerning first=8240 second=1101 amount=-1 -kerning first=8366 second=268 amount=-2 -kerning first=84 second=210 amount=-1 -kerning first=221 second=1097 amount=-3 -kerning first=247 second=262 amount=-2 -kerning first=367 second=1241 amount=-1 -kerning first=956 second=8220 amount=-3 -kerning first=124 second=968 amount=-1 -kerning first=160 second=277 amount=-1 -kerning first=273 second=199 amount=-2 -kerning first=42 second=291 amount=-1 -kerning first=185 second=211 amount=-2 -kerning first=297 second=339 amount=-1 -kerning first=300 second=101 amount=-1 -kerning first=294 second=1098 amount=-3 -kerning first=205 second=353 amount=-1 -kerning first=325 second=263 amount=-1 -kerning first=1102 second=8221 amount=-1 -kerning first=1203 second=240 amount=-1 -kerning first=251 second=212 amount=-2 -kerning first=965 second=943 amount=-1 -kerning first=968 second=252 amount=-1 -kerning first=164 second=224 amount=-1 -kerning first=274 second=354 amount=-5 -kerning first=183 second=1184 amount=-5 -kerning first=186 second=366 amount=-2 -kerning first=301 second=279 amount=-1 -kerning first=298 second=970 amount=-1 -kerning first=69 second=171 amount=-3 -kerning first=330 second=213 amount=-2 -kerning first=8370 second=1195 amount=-1 -kerning first=8377 second=371 amount=-1 -kerning first=1119 second=253 amount=-1 -kerning first=946 second=267 amount=-1 -kerning first=252 second=367 amount=-1 -kerning first=249 second=1185 amount=-3 -kerning first=8212 second=923 amount=-2 -kerning first=1048 second=1101 amount=-1 -kerning first=305 second=226 amount=-1 -kerning first=8378 second=1069 amount=-1 -kerning first=905 second=972 amount=-1 -kerning first=93 second=250 amount=-1 -kerning first=910 second=281 amount=-4 -kerning first=90 second=941 amount=-1 -kerning first=233 second=380 amount=-1 -kerning first=113 second=1241 amount=-1 -kerning first=250 second=8220 amount=-3 -kerning first=1027 second=117 amount=-1 -kerning first=973 second=357 amount=-1 -kerning first=166 second=1079 amount=-1 -kerning first=172 second=89 amount=-5 -kerning first=48 second=1098 amount=-3 -kerning first=51 second=339 amount=-1 -kerning first=54 second=101 amount=-1 -kerning first=194 second=251 amount=-1 -kerning first=74 second=263 amount=-1 -kerning first=332 second=1066 amount=-2 -kerning first=328 second=8221 amount=-1 -kerning first=916 second=228 amount=-1 -kerning first=952 second=370 amount=-2 -kerning first=260 second=252 amount=-1 -kerning first=377 second=1256 amount=-1 -kerning first=1035 second=67 amount=-2 -kerning first=174 second=266 amount=-2 -kerning first=177 second=39 amount=-3 -kerning first=55 second=279 amount=-1 -kerning first=52 second=970 amount=-1 -kerning first=78 second=213 amount=-2 -kerning first=1095 second=1195 amount=-1 -kerning first=221 second=103 amount=-4 -kerning first=912 second=1257 amount=-1 -kerning first=1299 second=230 amount=-1 -kerning first=1033 second=923 amount=-1 -kerning first=1036 second=242 amount=-2 -kerning first=178 second=214 amount=-2 -kerning first=59 second=226 amount=-1 -kerning first=1067 second=1262 amount=-2 -kerning first=199 second=356 amount=-1 -kerning first=202 second=116 amount=-1 -kerning first=317 second=268 amount=-2 -kerning first=8364 second=219 amount=-2 -kerning first=1099 second=1069 amount=-1 -kerning first=1186 second=243 amount=-1 -kerning first=1263 second=1263 amount=-1 -kerning first=125 second=227 amount=-1 -kerning first=179 second=369 amount=-1 -kerning first=323 second=216 amount=-2 -kerning first=8365 second=374 amount=-5 -kerning first=77 second=8221 amount=-3 -kerning first=80 second=1066 amount=-5 -kerning first=901 second=106 amount=1 -kerning first=347 second=118 amount=-1 -kerning first=934 second=962 amount=-1 -kerning first=369 second=283 amount=-1 -kerning first=123 second=1256 amount=-2 -kerning first=268 second=1044 amount=-1 -kerning first=299 second=229 amount=-1 -kerning first=1076 second=963 amount=-1 -kerning first=1080 second=271 amount=-1 -kerning first=204 second=920 amount=-2 -kerning first=321 second=1195 amount=-1 -kerning first=8378 second=84 amount=-5 -kerning first=902 second=286 amount=-2 -kerning first=87 second=253 amount=-1 -kerning first=944 second=218 amount=-2 -kerning first=373 second=230 amount=-1 -kerning first=967 second=360 amount=-2 -kerning first=276 second=242 amount=-1 -kerning first=42 second=1101 amount=-1 -kerning first=1049 second=287 amount=-1 -kerning first=185 second=945 amount=-1 -kerning first=300 second=1240 amount=-2 -kerning first=297 second=1262 amount=-2 -kerning first=1085 second=219 amount=-2 -kerning first=325 second=1069 amount=-1 -kerning first=906 second=231 amount=-1 -kerning first=1114 second=1175 amount=-2 -kerning first=1118 second=361 amount=-1 -kerning first=354 second=243 amount=-3 -kerning first=945 second=373 amount=-2 -kerning first=1210 second=288 amount=-2 -kerning first=371 second=1263 amount=-1 -kerning first=167 second=269 amount=-1 -kerning first=46 second=973 amount=-1 -kerning first=1063 second=232 amount=-1 -kerning first=304 second=332 amount=-2 -kerning first=72 second=216 amount=-2 -kerning first=1087 second=374 amount=-5 -kerning first=215 second=106 amount=1 -kerning first=95 second=118 amount=-4 -kerning first=1224 second=233 amount=-1 -kerning first=378 second=333 amount=-1 -kerning first=1026 second=245 amount=-1 -kerning first=8222 second=290 amount=-1 -kerning first=53 second=229 amount=-1 -kerning first=196 second=119 amount=-4 -kerning first=193 second=359 amount=-1 -kerning first=305 second=963 amount=-1 -kerning first=310 second=271 amount=-2 -kerning first=70 second=1195 amount=-1 -kerning first=73 second=371 amount=-1 -kerning first=1099 second=84 amount=-5 -kerning first=213 second=1026 amount=-2 -kerning first=915 second=334 amount=-2 -kerning first=910 second=1090 amount=-2 -kerning first=1176 second=246 amount=-1 -kerning first=239 second=218 amount=-2 -kerning first=356 second=1107 amount=-2 -kerning first=119 second=230 amount=-1 -kerning first=382 second=273 amount=-1 -kerning first=34 second=242 amount=-1 -kerning first=169 second=947 amount=-4 -kerning first=172 second=372 amount=-5 -kerning first=287 second=287 amount=-1 -kerning first=54 second=1240 amount=-2 -kerning first=51 second=1262 amount=-2 -kerning first=1071 second=97 amount=-1 -kerning first=315 second=219 amount=-1 -kerning first=74 second=1069 amount=-1 -kerning first=80 second=81 amount=-2 -kerning first=1103 second=34 amount=-3 -kerning first=335 second=1175 amount=-2 -kerning first=338 second=361 amount=-1 -kerning first=916 second=965 amount=-1 -kerning first=100 second=243 amount=-1 -kerning first=240 second=373 amount=-4 -kerning first=363 second=288 amount=-2 -kerning first=117 second=1263 amount=-1 -kerning first=1298 second=336 amount=-2 -kerning first=1035 second=350 amount=-1 -kerning first=291 second=232 amount=-1 -kerning first=58 second=332 amount=-2 -kerning first=1073 second=275 amount=-1 -kerning first=201 second=244 amount=-1 -kerning first=316 second=374 amount=-5 -kerning first=8366 second=87 amount=-5 -kerning first=81 second=256 amount=-2 -kerning first=218 second=1298 amount=-1 -kerning first=936 second=221 amount=-5 -kerning first=1185 second=351 amount=-1 -kerning first=247 second=83 amount=-1 -kerning first=367 second=233 amount=-1 -kerning first=956 second=1177 amount=-1 -kerning first=124 second=333 amount=-1 -kerning first=1039 second=290 amount=-2 -kerning first=178 second=949 amount=-1 -kerning first=182 second=257 amount=-1 -kerning first=59 second=963 amount=-1 -kerning first=62 second=271 amount=-1 -kerning first=325 second=84 amount=-5 -kerning first=8369 second=262 amount=-2 -kerning first=900 second=234 amount=-1 -kerning first=937 second=376 amount=-2 -kerning first=105 second=346 amount=-1 -kerning first=1186 second=1035 amount=-2 -kerning first=958 second=8212 amount=-2 -kerning first=962 second=1059 amount=-2 -kerning first=161 second=273 amount=-1 -kerning first=164 second=45 amount=-2 -kerning first=125 second=964 amount=-3 -kerning first=43 second=287 amount=-1 -kerning first=298 second=335 amount=-1 -kerning first=301 second=97 amount=-1 -kerning first=203 second=1108 amount=-1 -kerning first=206 second=347 amount=-1 -kerning first=330 second=34 amount=-3 -kerning first=8377 second=212 amount=-2 -kerning first=86 second=361 amount=-1 -kerning first=1103 second=8216 amount=-3 -kerning first=83 second=1175 amount=-1 -kerning first=89 second=121 amount=-2 -kerning first=232 second=46 amount=-1 -kerning first=352 second=196 amount=-1 -kerning first=934 second=8250 amount=-1 -kerning first=372 second=336 amount=-2 -kerning first=165 second=220 amount=-2 -kerning first=47 second=232 amount=-2 -kerning first=184 second=1176 amount=-1 -kerning first=299 second=966 amount=-1 -kerning first=302 second=275 amount=-1 -kerning first=67 second=374 amount=-2 -kerning first=8372 second=1185 amount=-3 -kerning first=8378 second=367 amount=-1 -kerning first=905 second=337 amount=-1 -kerning first=910 second=99 amount=-4 -kerning first=93 second=71 amount=-2 -kerning first=1168 second=249 amount=-1 -kerning first=1117 second=940 amount=-1 -kerning first=356 second=111 amount=-3 -kerning first=944 second=953 amount=-1 -kerning first=948 second=261 amount=-1 -kerning first=113 second=233 amount=-1 -kerning first=250 second=1177 amount=-1 -kerning first=253 second=363 amount=-1 -kerning first=166 second=375 amount=-1 -kerning first=1062 second=338 amount=-1 -kerning first=185 second=8211 amount=-2 -kerning first=1065 second=100 amount=-1 -kerning first=74 second=84 amount=-5 -kerning first=214 second=234 amount=-1 -kerning first=906 second=968 amount=-1 -kerning first=94 second=246 amount=-1 -kerning first=1174 second=199 amount=-1 -kerning first=357 second=291 amount=-1 -kerning first=952 second=211 amount=-2 -kerning first=1223 second=339 amount=-1 -kerning first=251 second=8212 amount=-2 -kerning first=254 second=1059 amount=-2 -kerning first=1210 second=1098 amount=-3 -kerning first=164 second=8249 amount=-3 -kerning first=174 second=85 amount=-2 -kerning first=52 second=335 amount=-1 -kerning first=55 second=97 amount=-1 -kerning first=75 second=259 amount=-1 -kerning first=78 second=34 amount=-3 -kerning first=330 second=8216 amount=-3 -kerning first=1170 second=1118 amount=-1 -kerning first=950 second=1184 amount=-5 -kerning first=1224 second=970 amount=-1 -kerning first=1036 second=63 amount=-2 -kerning first=53 second=966 amount=-1 -kerning first=56 second=275 amount=-1 -kerning first=199 second=197 amount=-1 -kerning first=317 second=87 amount=-5 -kerning first=8361 second=267 amount=-1 -kerning first=1099 second=367 amount=-1 -kerning first=1096 second=1185 amount=-3 -kerning first=1176 second=1038 amount=-2 -kerning first=239 second=953 amount=-1 -kerning first=102 second=111 amount=-1 -kerning first=37 second=290 amount=-2 -kerning first=179 second=210 amount=-2 -kerning first=200 second=352 amount=-1 -kerning first=318 second=262 amount=-2 -kerning first=80 second=364 amount=-2 -kerning first=223 second=277 amount=-1 -kerning first=926 second=1079 amount=-1 -kerning first=100 second=1035 amount=-5 -kerning first=103 second=291 amount=-1 -kerning first=363 second=1098 amount=-3 -kerning first=369 second=101 amount=-1 -kerning first=963 second=251 amount=-1 -kerning first=271 second=113 amount=-1 -kerning first=41 second=235 amount=-1 -kerning first=180 second=365 amount=-1 -kerning first=8363 second=1194 amount=-2 -kerning first=8366 second=370 amount=-2 -kerning first=902 second=102 amount=-2 -kerning first=78 second=8216 amount=-3 -kerning first=87 second=74 amount=-3 -kerning first=944 second=39 amount=-3 -kerning first=247 second=366 amount=-2 -kerning first=367 second=970 amount=-1 -kerning first=163 second=171 amount=-3 -kerning first=178 second=8217 amount=-3 -kerning first=1049 second=103 amount=-1 -kerning first=300 second=225 amount=-1 -kerning first=68 second=87 amount=-2 -kerning first=1081 second=267 amount=-1 -kerning first=322 second=1185 amount=-3 -kerning first=325 second=367 amount=-1 -kerning first=88 second=249 amount=-1 -kerning first=245 second=8218 amount=-1 -kerning first=374 second=226 amount=-4 -kerning first=968 second=356 amount=-5 -kerning first=971 second=116 amount=-1 -kerning first=49 second=100 amount=-1 -kerning first=1051 second=281 amount=-1 -kerning first=189 second=250 amount=-1 -kerning first=186 second=941 amount=-1 -kerning first=46 second=338 amount=-1 -kerning first=69 second=262 amount=-2 -kerning first=209 second=1241 amount=-1 -kerning first=323 second=8220 amount=-3 -kerning first=92 second=199 amount=-2 -kerning first=1119 second=357 amount=-1 -kerning first=1170 second=117 amount=-1 -kerning first=946 second=369 amount=-1 -kerning first=109 second=1098 amount=-1 -kerning first=255 second=251 amount=-1 -kerning first=372 second=1224 amount=-2 -kerning first=168 second=263 amount=-1 -kerning first=1241 second=8221 amount=-1 -kerning first=8222 second=106 amount=2 -kerning first=1064 second=228 amount=-1 -kerning first=73 second=212 amount=-2 -kerning first=1084 second=1194 amount=-2 -kerning first=905 second=1256 amount=-2 -kerning first=910 second=382 amount=-2 -kerning first=93 second=354 amount=-5 -kerning first=1176 second=67 amount=-2 -kerning first=236 second=266 amount=-2 -kerning first=239 second=39 amount=-3 -kerning first=113 second=970 amount=-1 -kerning first=376 second=1081 amount=-3 -kerning first=973 second=920 amount=-2 -kerning first=172 second=213 amount=-2 -kerning first=287 second=103 amount=-1 -kerning first=8224 second=286 amount=-2 -kerning first=8230 second=56 amount=-1 -kerning first=54 second=225 amount=-1 -kerning first=1062 second=1257 amount=-1 -kerning first=194 second=355 amount=-1 -kerning first=197 second=115 amount=-1 -kerning first=311 second=267 amount=-2 -kerning first=74 second=367 amount=-1 -kerning first=94 second=1038 amount=-2 -kerning first=240 second=214 amount=-2 -kerning first=357 second=1101 amount=-1 -kerning first=952 second=945 amount=-1 -kerning first=1223 second=1262 amount=-2 -kerning first=120 second=226 amount=-1 -kerning first=260 second=356 amount=-5 -kerning first=174 second=368 amount=-2 -kerning first=8240 second=231 amount=-1 -kerning first=72 second=8220 amount=-3 -kerning first=221 second=227 amount=-4 -kerning first=928 second=269 amount=-1 -kerning first=361 second=973 amount=-1 -kerning first=1299 second=332 amount=-2 -kerning first=1039 second=106 amount=1 -kerning first=175 second=1066 amount=-5 -kerning first=294 second=228 amount=-1 -kerning first=202 second=240 amount=-1 -kerning first=199 second=916 amount=-1 -kerning first=314 second=1194 amount=-2 -kerning first=317 second=370 amount=-2 -kerning first=8369 second=83 amount=-1 -kerning first=965 second=119 amount=-4 -kerning first=962 second=359 amount=-1 -kerning first=43 second=103 amount=-1 -kerning first=1037 second=1026 amount=-5 -kerning first=1041 second=286 amount=-2 -kerning first=183 second=253 amount=-1 -kerning first=63 second=267 amount=-1 -kerning first=901 second=230 amount=-1 -kerning first=934 second=947 amount=-4 -kerning first=103 second=1101 amount=-1 -kerning first=947 second=287 amount=-1 -kerning first=369 second=1240 amount=-2 -kerning first=162 second=268 amount=-2 -kerning first=41 second=972 amount=-1 -kerning first=1048 second=231 amount=-1 -kerning first=1080 second=373 amount=-4 -kerning first=84 second=1169 amount=-2 -kerning first=1207 second=232 amount=-1 -kerning first=166 second=216 amount=-2 -kerning first=8216 second=289 amount=-1 -kerning first=48 second=228 amount=-1 -kerning first=191 second=118 amount=-4 -kerning first=300 second=962 amount=-1 -kerning first=65 second=1194 amount=-2 -kerning first=906 second=333 amount=-1 -kerning first=94 second=67 amount=-2 -kerning first=1169 second=245 amount=-1 -kerning first=354 second=345 amount=-2 -kerning first=114 second=229 amount=-1 -kerning first=254 second=359 amount=-1 -kerning first=257 second=119 amount=-1 -kerning first=374 second=963 amount=-4 -kerning first=377 second=271 amount=-1 -kerning first=164 second=1195 amount=-1 -kerning first=167 second=371 amount=-1 -kerning first=280 second=286 amount=-2 -kerning first=8221 second=234 amount=-1 -kerning first=1051 second=1090 amount=-3 -kerning first=1063 second=334 amount=-2 -kerning first=215 second=230 amount=-1 -kerning first=8377 second=8212 amount=-2 -kerning first=912 second=273 amount=-1 -kerning first=95 second=242 amount=-1 -kerning first=232 second=947 amount=-1 -kerning first=358 second=287 amount=-1 -kerning first=1224 second=335 amount=-1 -kerning first=1026 second=347 amount=-1 -kerning first=168 second=1069 amount=-1 -kerning first=175 second=81 amount=-2 -kerning first=1064 second=965 amount=-1 -kerning first=1070 second=46 amount=-1 -kerning first=196 second=243 amount=-1 -kerning first=310 second=373 amount=-3 -kerning first=923 second=220 amount=-2 -kerning first=1176 second=350 amount=-1 -kerning first=951 second=1176 amount=-1 -kerning first=1263 second=275 amount=-1 -kerning first=37 second=106 amount=1 -kerning first=54 second=962 amount=-1 -kerning first=1071 second=221 amount=-5 -kerning first=318 second=83 amount=-1 -kerning first=341 second=245 amount=-1 -kerning first=926 second=375 amount=-1 -kerning first=1184 second=290 amount=-3 -kerning first=240 second=949 amount=-1 -kerning first=952 second=8211 amount=-2 -kerning first=123 second=271 amount=-1 -kerning first=120 second=963 amount=-2 -kerning first=268 second=194 amount=-1 -kerning first=35 second=1026 amount=-5 -kerning first=38 second=286 amount=-2 -kerning first=291 second=334 amount=-2 -kerning first=8240 second=968 amount=-1 -kerning first=8260 second=277 amount=-1 -kerning first=61 second=218 amount=-2 -kerning first=1073 second=376 amount=-5 -kerning first=201 second=346 amount=-1 -kerning first=8366 second=211 amount=-2 -kerning first=84 second=120 amount=-1 -kerning first=221 second=964 amount=-2 -kerning first=367 second=335 amount=-1 -kerning first=160 second=219 amount=-2 -kerning first=42 second=231 amount=-1 -kerning first=182 second=361 amount=-1 -kerning first=185 second=121 amount=-1 -kerning first=294 second=965 amount=-1 -kerning first=62 second=373 amount=-4 -kerning first=202 second=1028 amount=-2 -kerning first=205 second=288 amount=-2 -kerning first=8364 second=1184 amount=-5 -kerning first=8369 second=366 amount=-2 -kerning first=900 second=336 amount=-2 -kerning first=108 second=232 amount=-1 -kerning first=371 second=275 amount=-1 -kerning first=374 second=47 amount=-4 -kerning first=161 second=374 amount=-5 -kerning first=270 second=1033 amount=-1 -kerning first=274 second=289 amount=-1 -kerning first=1051 second=99 amount=-1 -kerning first=189 second=71 amount=-2 -kerning first=301 second=221 amount=-5 -kerning first=69 second=83 amount=-1 -kerning first=1083 second=261 amount=-1 -kerning first=209 second=233 amount=-1 -kerning first=323 second=1177 amount=-1 -kerning first=89 second=245 amount=-4 -kerning first=946 second=210 amount=-2 -kerning first=1219 second=100 amount=-1 -kerning first=1206 second=338 amount=-1 -kerning first=168 second=84 amount=-5 -kerning first=278 second=234 amount=-1 -kerning first=47 second=334 amount=-2 -kerning first=1048 second=968 amount=-1 -kerning first=190 second=246 amount=-1 -kerning first=44 second=1090 amount=-3 -kerning first=302 second=376 amount=-5 -kerning first=70 second=258 amount=-4 -kerning first=327 second=1059 amount=-2 -kerning first=1171 second=113 amount=-1 -kerning first=1168 second=353 amount=-1 -kerning first=236 second=85 amount=-2 -kerning first=356 second=235 amount=-3 -kerning first=948 second=365 amount=-1 -kerning first=113 second=335 amount=-1 -kerning first=169 second=259 amount=-1 -kerning first=172 second=34 amount=-3 -kerning first=48 second=965 amount=-1 -kerning first=54 second=46 amount=-1 -kerning first=300 second=8250 amount=-1 -kerning first=1085 second=1184 amount=-5 -kerning first=214 second=336 amount=-2 -kerning first=916 second=171 amount=-3 -kerning first=94 second=350 amount=-1 -kerning first=117 second=275 amount=-1 -kerning first=114 second=966 amount=-1 -kerning first=55 second=221 amount=-5 -kerning first=195 second=351 amount=-1 -kerning first=198 second=111 amount=-1 -kerning first=72 second=1177 amount=-1 -kerning first=75 second=363 amount=-1 -kerning first=361 second=338 amount=-2 -kerning first=956 second=250 amount=-1 -kerning first=36 second=234 amount=-1 -kerning first=1036 second=187 amount=-2 -kerning first=175 second=364 amount=-2 -kerning first=289 second=277 amount=-1 -kerning first=56 second=376 amount=-5 -kerning first=1067 second=1079 amount=-1 -kerning first=196 second=1035 amount=-5 -kerning first=1074 second=89 amount=-5 -kerning first=317 second=211 amount=-2 -kerning first=8361 second=369 amount=-1 -kerning first=73 second=8212 amount=-2 -kerning first=76 second=1059 amount=-1 -kerning first=343 second=113 amount=-1 -kerning first=931 second=263 amount=-1 -kerning first=102 second=235 amount=-1 -kerning first=172 second=8216 amount=-3 -kerning first=8230 second=1256 amount=-1 -kerning first=8250 second=382 amount=-1 -kerning first=54 second=8250 amount=-1 -kerning first=315 second=1184 amount=-6 -kerning first=318 second=366 amount=-2 -kerning first=8370 second=79 amount=-2 -kerning first=347 second=63 amount=-2 -kerning first=240 second=8217 amount=-3 -kerning first=947 second=103 amount=-1 -kerning first=369 second=225 amount=-1 -kerning first=963 second=355 amount=-1 -kerning first=162 second=87 amount=-5 -kerning first=41 second=337 amount=-1 -kerning first=184 second=249 amount=-1 -kerning first=180 second=940 amount=-1 -kerning first=64 second=261 amount=-1 -kerning first=1080 second=214 amount=-2 -kerning first=61 second=953 amount=-1 -kerning first=8366 second=945 amount=-1 -kerning first=902 second=226 amount=-1 -kerning first=87 second=198 amount=-5 -kerning first=1117 second=116 amount=-1 -kerning first=1202 second=281 amount=-1 -kerning first=250 second=250 amount=-1 -kerning first=247 second=941 amount=-1 -kerning first=163 second=262 amount=-2 -kerning first=273 second=1241 amount=-1 -kerning first=276 second=187 amount=-1 -kerning first=42 second=968 amount=-1 -kerning first=1049 second=227 amount=-1 -kerning first=188 second=199 amount=-2 -kerning first=297 second=1079 amount=-1 -kerning first=303 second=89 amount=-5 -kerning first=1081 second=369 amount=-1 -kerning first=205 second=1098 amount=-3 -kerning first=88 second=353 amount=-1 -kerning first=91 second=113 amount=-1 -kerning first=942 second=1066 amount=-5 -kerning first=1210 second=228 amount=-1 -kerning first=377 second=90 amount=1 -kerning first=971 second=240 amount=-1 -kerning first=167 second=212 amount=-2 -kerning first=8217 second=283 amount=-1 -kerning first=49 second=224 amount=-1 -kerning first=189 second=354 amount=-5 -kerning first=186 second=1118 amount=-1 -kerning first=304 second=266 amount=-2 -kerning first=66 second=1184 amount=-1 -kerning first=69 second=366 amount=-2 -kerning first=1095 second=79 amount=-2 -kerning first=209 second=970 amount=-1 -kerning first=1119 second=920 amount=-2 -kerning first=358 second=103 amount=-1 -kerning first=950 second=253 amount=-1 -kerning first=1206 second=1257 amount=-1 -kerning first=255 second=355 amount=-1 -kerning first=258 second=115 amount=-1 -kerning first=378 second=267 amount=-1 -kerning first=168 second=367 amount=-1 -kerning first=165 second=1185 amount=-3 -kerning first=47 second=1220 amount=-1 -kerning first=190 second=1038 amount=-2 -kerning first=310 second=214 amount=-3 -kerning first=67 second=8218 amount=-1 -kerning first=1090 second=945 amount=-1 -kerning first=334 second=356 amount=-2 -kerning first=915 second=268 amount=-2 -kerning first=236 second=368 amount=-2 -kerning first=356 second=972 amount=-3 -kerning first=262 second=65 amount=-1 -kerning first=166 second=8220 amount=-3 -kerning first=287 second=227 amount=-1 -kerning first=51 second=1079 amount=-1 -kerning first=57 second=89 amount=-5 -kerning first=77 second=251 amount=-1 -kerning first=926 second=216 amount=-2 -kerning first=234 second=8221 amount=-1 -kerning first=237 second=1066 amount=-5 -kerning first=363 second=228 amount=-1 -kerning first=960 second=118 amount=-4 -kerning first=1035 second=283 amount=-1 -kerning first=174 second=943 amount=-1 -kerning first=177 second=252 amount=-1 -kerning first=8240 second=333 amount=-1 -kerning first=58 second=266 amount=-2 -kerning first=61 second=39 amount=-3 -kerning first=1073 second=217 amount=-2 -kerning first=321 second=79 amount=-2 -kerning first=8363 second=257 amount=-1 -kerning first=1106 second=119 amount=-1 -kerning first=221 second=328 amount=-3 -kerning first=928 second=371 amount=-1 -kerning first=1178 second=1026 amount=-2 -kerning first=361 second=1257 amount=-1 -kerning first=124 second=267 amount=-1 -kerning first=1039 second=230 amount=-1 -kerning first=62 second=214 amount=-2 -kerning first=1074 second=372 amount=-5 -kerning first=317 second=945 amount=-1 -kerning first=931 second=1069 amount=-1 -kerning first=942 second=81 amount=-2 -kerning first=102 second=972 amount=-1 -kerning first=105 second=281 amount=-1 -kerning first=965 second=243 amount=-1 -kerning first=43 second=227 amount=-1 -kerning first=1037 second=1263 amount=-1 -kerning first=183 second=357 amount=-1 -kerning first=186 second=117 amount=-1 -kerning first=298 second=269 amount=-1 -kerning first=63 second=369 amount=-1 -kerning first=203 second=973 amount=-1 -kerning first=8365 second=1176 amount=-1 -kerning first=8370 second=362 amount=-2 -kerning first=901 second=332 amount=-2 -kerning first=1116 second=244 amount=-2 -kerning first=352 second=106 amount=1 -kerning first=252 second=118 amount=-4 -kerning first=369 second=962 amount=-1 -kerning first=126 second=1194 amount=-2 -kerning first=162 second=370 amount=-2 -kerning first=41 second=1256 amount=-2 -kerning first=1048 second=333 amount=-1 -kerning first=190 second=67 amount=-2 -kerning first=302 second=217 amount=-2 -kerning first=70 second=79 amount=-1 -kerning first=1080 second=949 amount=-1 -kerning first=1084 second=257 amount=-1 -kerning first=327 second=359 amount=-1 -kerning first=8366 second=8211 amount=-2 -kerning first=331 second=119 amount=-1 -kerning first=902 second=963 amount=-1 -kerning first=905 second=271 amount=-1 -kerning first=87 second=920 amount=-2 -kerning first=910 second=44 amount=-4 -kerning first=350 second=1026 amount=-1 -kerning first=107 second=1257 amount=-2 -kerning first=1202 second=1090 amount=-2 -kerning first=1049 second=964 amount=-3 -kerning first=191 second=242 amount=-1 -kerning first=1065 second=45 amount=-2 -kerning first=1062 second=273 amount=-1 -kerning first=300 second=947 amount=-4 -kerning first=303 second=372 amount=-5 -kerning first=1118 second=1108 amount=-1 -kerning first=237 second=81 amount=-2 -kerning first=357 second=231 amount=-1 -kerning first=952 second=121 amount=-1 -kerning first=1210 second=965 amount=-1 -kerning first=1257 second=46 amount=-1 -kerning first=971 second=1028 amount=-2 -kerning first=52 second=269 amount=-1 -kerning first=1087 second=1176 amount=-1 -kerning first=1095 second=362 amount=-2 -kerning first=215 second=332 amount=-2 -kerning first=912 second=374 amount=-5 -kerning first=956 second=71 amount=-2 -kerning first=56 second=217 amount=-2 -kerning first=1067 second=375 amount=-1 -kerning first=314 second=257 amount=-1 -kerning first=310 second=949 amount=-2 -kerning first=8361 second=210 amount=-2 -kerning first=76 second=359 amount=-1 -kerning first=222 second=44 amount=-1 -kerning first=931 second=84 amount=-5 -kerning first=96 second=1026 amount=-5 -kerning first=1179 second=234 amount=-1 -kerning first=958 second=246 amount=-1 -kerning first=1263 second=376 amount=-5 -kerning first=37 second=230 amount=-1 -kerning first=176 second=360 amount=-2 -kerning first=287 second=964 amount=-3 -kerning first=54 second=947 amount=-4 -kerning first=57 second=372 amount=-5 -kerning first=1065 second=8249 amount=-1 -kerning first=200 second=287 amount=-1 -kerning first=223 second=219 amount=-2 -kerning first=338 second=1108 amount=-1 -kerning first=341 second=347 amount=-1 -kerning first=934 second=259 amount=-1 -kerning first=103 second=231 amount=-1 -kerning first=363 second=965 amount=-1 -kerning first=123 second=373 amount=-4 -kerning first=35 second=1263 amount=-1 -kerning first=296 second=220 amount=-2 -kerning first=204 second=232 amount=-1 -kerning first=321 second=362 amount=-2 -kerning first=316 second=1176 amount=-1 -kerning first=84 second=244 amount=-3 -kerning first=221 second=1203 amount=-2 -kerning first=345 second=289 amount=-1 -kerning first=1202 second=99 amount=-1 -kerning first=250 second=71 amount=-2 -kerning first=967 second=111 amount=-1 -kerning first=964 second=351 amount=-1 -kerning first=163 second=83 amount=-1 -kerning first=273 second=233 amount=-1 -kerning first=42 second=333 amount=-1 -kerning first=185 second=245 amount=-1 -kerning first=297 second=375 amount=-1 -kerning first=62 second=949 amount=-1 -kerning first=65 second=257 amount=-1 -kerning first=1081 second=210 amount=-2 -kerning first=317 second=8211 amount=-2 -kerning first=8369 second=941 amount=-1 -kerning first=942 second=364 amount=-2 -kerning first=105 second=1090 amount=-3 -kerning first=108 second=334 amount=-2 -kerning first=1203 second=277 amount=-1 -kerning first=251 second=246 amount=-1 -kerning first=371 second=376 amount=-5 -kerning first=965 second=1035 amount=-5 -kerning first=968 second=291 amount=-1 -kerning first=43 second=964 amount=-3 -kerning first=49 second=45 amount=-2 -kerning first=8217 second=101 amount=-1 -kerning first=304 second=85 amount=-2 -kerning first=1083 second=365 amount=-1 -kerning first=209 second=335 amount=-1 -kerning first=86 second=1108 amount=-1 -kerning first=89 second=347 amount=-3 -kerning first=235 second=34 amount=-1 -kerning first=1219 second=224 amount=-1 -kerning first=369 second=8250 amount=-1 -kerning first=372 second=1075 amount=-2 -kerning first=278 second=336 amount=-2 -kerning first=8222 second=51 amount=-1 -kerning first=50 second=220 amount=-2 -kerning first=1064 second=171 amount=-3 -kerning first=190 second=350 amount=-1 -kerning first=70 second=362 amount=-2 -kerning first=1080 second=8217 amount=-3 -kerning first=67 second=1176 amount=1 -kerning first=216 second=47 amount=-1 -kerning first=334 second=197 amount=-2 -kerning first=910 second=324 amount=-3 -kerning first=915 second=87 amount=-5 -kerning first=93 second=289 amount=-1 -kerning first=356 second=337 amount=-3 -kerning first=951 second=249 amount=-1 -kerning first=948 second=940 amount=-1 -kerning first=256 second=351 amount=-1 -kerning first=376 second=953 amount=-2 -kerning first=166 second=1177 amount=-1 -kerning first=169 second=363 amount=-1 -kerning first=279 second=967 amount=-2 -kerning first=8224 second=226 amount=-1 -kerning first=51 second=375 amount=-1 -kerning first=194 second=290 amount=-2 -kerning first=1068 second=88 amount=-2 -kerning first=1094 second=941 amount=-1 -kerning first=916 second=262 amount=-2 -kerning first=1174 second=1241 amount=-1 -kerning first=237 second=364 amount=-2 -kerning first=357 second=968 amount=-1 -kerning first=955 second=199 amount=-2 -kerning first=117 second=376 amount=-5 -kerning first=1223 second=1079 amount=-1 -kerning first=1298 second=89 amount=-5 -kerning first=260 second=291 amount=-1 -kerning first=167 second=8212 amount=-2 -kerning first=170 second=1059 amount=-2 -kerning first=1035 second=101 amount=-1 -kerning first=49 second=8249 amount=-3 -kerning first=58 second=85 amount=-2 -kerning first=198 second=235 amount=-1 -kerning first=313 second=365 amount=-1 -kerning first=928 second=212 amount=-2 -kerning first=235 second=8216 amount=-1 -kerning first=956 second=354 amount=-5 -kerning first=1299 second=266 amount=-2 -kerning first=36 second=336 amount=-2 -kerning first=1036 second=279 amount=-2 -kerning first=178 second=248 amount=-1 -kerning first=294 second=171 amount=-3 -kerning first=1074 second=213 amount=-2 -kerning first=8364 second=253 amount=-1 -kerning first=931 second=367 amount=-1 -kerning first=923 second=1185 amount=-3 -kerning first=102 second=337 amount=-1 -kerning first=105 second=99 amount=-1 -kerning first=958 second=1038 amount=-2 -kerning first=125 second=261 amount=-1 -kerning first=1041 second=226 amount=-1 -kerning first=63 second=210 amount=-2 -kerning first=203 second=338 amount=-2 -kerning first=206 second=100 amount=-1 -kerning first=318 second=941 amount=-1 -kerning first=323 second=250 amount=-1 -kerning first=86 second=112 amount=-2 -kerning first=926 second=8220 amount=-3 -kerning first=103 second=968 amount=-1 -kerning first=947 second=227 amount=-1 -kerning first=249 second=199 amount=-2 -kerning first=162 second=211 amount=-2 -kerning first=271 second=339 amount=-1 -kerning first=184 second=353 amount=-1 -kerning first=299 second=263 amount=-1 -kerning first=64 second=365 amount=-1 -kerning first=1073 second=8221 amount=-3 -kerning first=8378 second=118 amount=-4 -kerning first=1117 second=240 amount=-1 -kerning first=353 second=102 amount=-1 -kerning first=944 second=252 amount=-1 -kerning first=247 second=1118 amount=-1 -kerning first=250 second=354 amount=-5 -kerning first=160 second=1184 amount=-5 -kerning first=163 second=366 amount=-2 -kerning first=273 second=970 amount=-1 -kerning first=276 second=279 amount=-1 -kerning first=8216 second=229 amount=-1 -kerning first=45 second=378 amount=-2 -kerning first=48 second=171 amount=-3 -kerning first=303 second=213 amount=-2 -kerning first=65 second=1063 amount=-3 -kerning first=62 second=8217 amount=-3 -kerning first=71 second=75 amount=2 -kerning first=1085 second=253 amount=-1 -kerning first=906 second=267 amount=-1 -kerning first=228 second=1185 amount=-1 -kerning first=251 second=1038 amount=-2 -kerning first=377 second=214 amount=-1 -kerning first=968 second=1101 amount=-1 -kerning first=280 second=226 amount=-1 -kerning first=1063 second=268 amount=-2 -kerning first=304 second=368 amount=-2 -kerning first=69 second=941 amount=-1 -kerning first=72 second=250 amount=-1 -kerning first=336 second=65 amount=-2 -kerning first=92 second=1241 amount=-1 -kerning first=95 second=187 amount=-1 -kerning first=229 second=8220 amount=-1 -kerning first=358 second=227 amount=-1 -kerning first=950 second=357 amount=-1 -kerning first=1224 second=269 amount=-1 -kerning first=8222 second=332 amount=-1 -kerning first=53 second=263 amount=-1 -kerning first=1067 second=216 amount=-2 -kerning first=302 second=8221 amount=-3 -kerning first=305 second=1066 amount=-5 -kerning first=1099 second=118 amount=-4 -kerning first=334 second=916 amount=-2 -kerning first=910 second=1194 amount=-3 -kerning first=915 second=370 amount=-2 -kerning first=1176 second=283 amount=-1 -kerning first=239 second=252 amount=-1 -kerning first=236 second=943 amount=-1 -kerning first=356 second=1256 amount=-1 -kerning first=958 second=67 amount=-2 -kerning first=1263 second=217 amount=-2 -kerning first=376 second=8222 amount=-4 -kerning first=34 second=279 amount=-1 -kerning first=8224 second=963 amount=-1 -kerning first=57 second=213 amount=-2 -kerning first=1065 second=1195 amount=-1 -kerning first=200 second=103 amount=-1 -kerning first=315 second=253 amount=-1 -kerning first=77 second=355 amount=-1 -kerning first=80 second=115 amount=-1 -kerning first=1184 second=230 amount=-1 -kerning first=960 second=242 amount=-1 -kerning first=123 second=214 amount=-2 -kerning first=1298 second=372 amount=-5 -kerning first=1257 second=947 amount=-1 -kerning first=260 second=1101 amount=-1 -kerning first=38 second=226 amount=-1 -kerning first=1035 second=1240 amount=-2 -kerning first=177 second=356 amount=-5 -kerning first=180 second=116 amount=-1 -kerning first=291 second=268 amount=-2 -kerning first=8260 second=219 amount=-2 -kerning first=58 second=368 amount=-2 -kerning first=198 second=972 amount=-1 -kerning first=201 second=281 amount=-1 -kerning first=8363 second=361 amount=-1 -kerning first=8366 second=121 amount=-1 -kerning first=84 second=65 amount=-6 -kerning first=247 second=117 amount=-1 -kerning first=367 second=269 amount=-1 -kerning first=124 second=369 amount=-1 -kerning first=1039 second=332 amount=-2 -kerning first=297 second=216 amount=-2 -kerning first=8249 second=1203 amount=-1 -kerning first=56 second=8221 amount=-3 -kerning first=59 second=1066 amount=-5 -kerning first=205 second=228 amount=-1 -kerning first=325 second=118 amount=-4 -kerning first=251 second=67 amount=-2 -kerning first=371 second=217 amount=-2 -kerning first=164 second=79 amount=-2 -kerning first=274 second=229 amount=-1 -kerning first=1041 second=963 amount=-1 -kerning first=183 second=920 amount=-2 -kerning first=298 second=371 amount=-1 -kerning first=203 second=1257 amount=-1 -kerning first=8377 second=246 amount=-1 -kerning first=904 second=218 amount=-2 -kerning first=1206 second=273 amount=-1 -kerning first=1219 second=45 amount=-2 -kerning first=252 second=242 amount=-1 -kerning first=369 second=947 amount=-4 -kerning first=162 second=945 amount=-1 -kerning first=271 second=1262 amount=-2 -kerning first=47 second=268 amount=-2 -kerning first=299 second=1069 amount=-1 -kerning first=305 second=81 amount=-2 -kerning first=1084 second=361 amount=-1 -kerning first=905 second=373 amount=-4 -kerning first=87 second=1102 amount=-2 -kerning first=1117 second=1028 amount=-2 -kerning first=1168 second=288 amount=-2 -kerning first=113 second=269 amount=-1 -kerning first=1220 second=220 amount=-2 -kerning first=973 second=232 amount=-1 -kerning first=8216 second=966 amount=-1 -kerning first=8220 second=275 amount=-1 -kerning first=51 second=216 amount=-2 -kerning first=1062 second=374 amount=-2 -kerning first=194 second=106 amount=1 -kerning first=74 second=118 amount=-4 -kerning first=916 second=83 amount=-1 -kerning first=94 second=283 amount=-1 -kerning first=1174 second=233 amount=-1 -kerning first=357 second=333 amount=-1 -kerning first=354 second=1087 amount=-2 -kerning first=952 second=245 amount=-1 -kerning first=117 second=217 amount=-2 -kerning first=1223 second=375 amount=-1 -kerning first=377 second=949 amount=-1 -kerning first=170 second=359 amount=-1 -kerning first=174 second=119 amount=-4 -kerning first=280 second=963 amount=-1 -kerning first=49 second=1195 amount=-1 -kerning first=52 second=371 amount=-1 -kerning first=1069 second=84 amount=-2 -kerning first=192 second=1026 amount=-5 -kerning first=195 second=286 amount=-2 -kerning first=920 second=258 amount=-2 -kerning first=238 second=360 amount=-2 -kerning first=361 second=273 amount=-1 -kerning first=358 second=964 amount=-3 -kerning first=115 second=947 amount=-1 -kerning first=1219 second=8249 amount=-3 -kerning first=1299 second=85 amount=-2 -kerning first=1036 second=97 amount=-1 -kerning first=289 second=219 amount=-2 -kerning first=53 second=1069 amount=-1 -kerning first=59 second=81 amount=-2 -kerning first=1074 second=34 amount=-3 -kerning first=314 second=361 amount=-1 -kerning first=317 second=121 amount=-1 -kerning first=216 second=1202 amount=-3 -kerning first=96 second=1263 amount=-1 -kerning first=365 second=220 amount=-2 -kerning first=958 second=350 amount=-1 -kerning first=37 second=332 amount=-2 -kerning first=1037 second=275 amount=-1 -kerning first=179 second=244 amount=-1 -kerning first=290 second=374 amount=-2 -kerning first=323 second=71 amount=-2 -kerning first=8365 second=249 amount=-1 -kerning first=83 second=193 amount=-1 -kerning first=1103 second=351 amount=-1 -kerning first=217 second=8230 amount=-1 -kerning first=926 second=1177 amount=-1 -kerning first=934 second=363 amount=-1 -kerning first=103 second=333 amount=-1 -kerning first=963 second=290 amount=-2 -kerning first=123 second=949 amount=-1 -kerning first=126 second=257 amount=-1 -kerning first=38 second=963 amount=-1 -kerning first=41 second=271 amount=-1 -kerning first=299 second=84 amount=-5 -kerning first=201 second=1090 amount=-3 -kerning first=204 second=334 amount=-2 -kerning first=8372 second=199 amount=-2 -kerning first=84 second=346 amount=-1 -kerning first=928 second=8212 amount=-2 -kerning first=936 second=1059 amount=-2 -kerning first=107 second=273 amount=-2 -kerning first=104 second=964 amount=-1 -kerning first=967 second=235 amount=-1 -kerning first=273 second=335 amount=-1 -kerning first=276 second=97 amount=-1 -kerning first=182 second=1108 amount=-1 -kerning first=185 second=347 amount=-1 -kerning first=300 second=259 amount=-1 -kerning first=303 second=34 amount=-3 -kerning first=1074 second=8216 amount=-3 -kerning first=65 second=361 amount=-1 -kerning first=205 second=965 amount=-1 -kerning first=211 second=46 amount=-1 -kerning first=8369 second=1118 amount=-1 -kerning first=88 second=288 amount=-3 -kerning first=1210 second=171 amount=-3 -kerning first=251 second=350 amount=-1 -kerning first=248 second=1113 amount=-1 -kerning first=374 second=260 amount=-5 -kerning first=161 second=1176 amount=-1 -kerning first=164 second=362 amount=-2 -kerning first=274 second=966 amount=-1 -kerning first=8217 second=225 amount=-1 -kerning first=46 second=374 amount=-4 -kerning first=1063 second=87 amount=-5 -kerning first=189 second=289 amount=-1 -kerning first=72 second=71 amount=-2 -kerning first=1083 second=940 amount=-1 -kerning first=1087 second=249 amount=-1 -kerning first=212 second=221 amount=-3 -kerning first=330 second=351 amount=-1 -kerning first=8377 second=1038 amount=-2 -kerning first=904 second=953 amount=-1 -kerning first=92 second=233 amount=-1 -kerning first=255 second=290 amount=-2 -kerning first=162 second=8211 amount=-2 -kerning first=1026 second=100 amount=-1 -kerning first=53 second=84 amount=-5 -kerning first=1064 second=262 amount=-2 -kerning first=193 second=234 amount=-1 -kerning first=305 second=364 amount=-2 -kerning first=73 second=246 amount=-1 -kerning first=1096 second=199 amount=-2 -kerning first=213 second=376 amount=-3 -kerning first=915 second=211 amount=-2 -kerning first=1168 second=1098 amount=-3 -kerning first=1171 second=339 amount=-1 -kerning first=1176 second=101 amount=-1 -kerning first=951 second=353 amount=-1 -kerning first=954 second=113 amount=-2 -kerning first=113 second=1074 amount=2 -kerning first=376 second=1179 amount=-3 -kerning first=34 second=97 amount=-1 -kerning first=54 second=259 amount=-1 -kerning first=57 second=34 amount=-3 -kerning first=303 second=8216 amount=-3 -kerning first=916 second=366 amount=-2 -kerning first=240 second=248 amount=-1 -kerning first=363 second=171 amount=-3 -kerning first=1298 second=213 amount=-2 -kerning first=35 second=275 amount=-1 -kerning first=1035 second=225 amount=-1 -kerning first=283 second=1076 amount=-1 -kerning first=291 second=87 amount=-5 -kerning first=8240 second=267 amount=-1 -kerning first=1066 second=1185 amount=-2 -kerning first=198 second=337 amount=-1 -kerning first=201 second=99 amount=-1 -kerning first=313 second=940 amount=-1 -kerning first=316 second=249 amount=-1 -kerning first=78 second=351 amount=-1 -kerning first=221 second=261 amount=-4 -kerning first=98 second=967 amount=-2 -kerning first=1185 second=226 amount=-1 -kerning first=124 second=210 amount=-2 -kerning first=1299 second=368 amount=-2 -kerning first=178 second=352 amount=-1 -kerning first=294 second=262 amount=-2 -kerning first=59 second=364 amount=-2 -kerning first=1067 second=8220 amount=-3 -kerning first=202 second=277 amount=-1 -kerning first=322 second=199 amount=-2 -kerning first=8364 second=357 amount=-1 -kerning first=8369 second=117 amount=-1 -kerning first=900 second=89 amount=-5 -kerning first=79 second=1035 amount=-2 -kerning first=343 second=339 amount=-1 -kerning first=1263 second=8221 amount=-3 -kerning first=125 second=365 amount=-1 -kerning first=298 second=212 amount=-2 -kerning first=57 second=8216 amount=-3 -kerning first=206 second=224 amount=-1 -kerning first=318 second=1118 amount=-1 -kerning first=323 second=354 amount=-5 -kerning first=8377 second=67 amount=-2 -kerning first=901 second=266 amount=-2 -kerning first=904 second=39 amount=-3 -kerning first=223 second=1184 amount=-5 -kerning first=372 second=213 amount=-2 -kerning first=123 second=8217 amount=-3 -kerning first=47 second=87 amount=-5 -kerning first=1048 second=267 amount=-1 -kerning first=296 second=1185 amount=-3 -kerning first=299 second=367 amount=-1 -kerning first=64 second=940 amount=-1 -kerning first=8378 second=242 amount=-1 -kerning first=905 second=214 amount=-2 -kerning first=944 second=356 amount=-5 -kerning first=948 second=116 amount=-1 -kerning first=967 second=972 amount=-1 -kerning first=166 second=250 amount=-1 -kerning first=163 second=941 amount=-1 -kerning first=48 second=262 amount=-2 -kerning first=188 second=1241 amount=-1 -kerning first=191 second=187 amount=-1 -kerning first=297 second=8220 amount=-3 -kerning first=1085 second=357 amount=-1 -kerning first=214 second=89 amount=-5 -kerning first=906 second=369 amount=-1 -kerning first=91 second=339 amount=-1 -kerning first=94 second=101 amount=-1 -kerning first=1118 second=973 amount=-1 -kerning first=88 second=1098 amount=-3 -kerning first=111 second=955 amount=-1 -kerning first=114 second=263 amount=-1 -kerning first=1223 second=216 amount=-2 -kerning first=371 second=8221 amount=-3 -kerning first=8217 second=962 amount=-1 -kerning first=52 second=212 amount=-2 -kerning first=1051 second=1194 amount=-2 -kerning first=1063 second=370 amount=-2 -kerning first=304 second=943 amount=-1 -kerning first=72 second=354 amount=-5 -kerning first=69 second=1118 amount=-1 -kerning first=215 second=266 amount=-2 -kerning first=92 second=970 amount=-1 -kerning first=95 second=279 amount=-1 -kerning first=950 second=920 amount=-2 -kerning first=1219 second=1195 amount=-1 -kerning first=1224 second=371 amount=-1 -kerning first=175 second=115 amount=-1 -kerning first=8226 second=218 amount=-2 -kerning first=53 second=367 amount=-1 -kerning first=50 second=1185 amount=-3 -kerning first=73 second=1038 amount=-2 -kerning first=1099 second=242 amount=-1 -kerning first=915 second=945 amount=-1 -kerning first=1176 second=1240 amount=-2 -kerning first=1171 second=1262 amount=-2 -kerning first=239 second=356 amount=-5 -kerning first=8230 second=373 amount=-2 -kerning first=51 second=8220 amount=-3 -kerning first=200 second=227 amount=-1 -kerning first=318 second=117 amount=-1 -kerning first=315 second=357 amount=-1 -kerning first=338 second=973 amount=-1 -kerning first=1184 second=332 amount=-3 -kerning first=117 second=8221 amount=-3 -kerning first=963 second=106 amount=1 -kerning first=1035 second=962 amount=-1 -kerning first=180 second=240 amount=-1 -kerning first=291 second=370 amount=-2 -kerning first=58 second=943 amount=-1 -kerning first=61 second=252 amount=-1 -kerning first=198 second=1256 amount=-2 -kerning first=8366 second=245 amount=-1 -kerning first=218 second=8222 amount=-1 -kerning first=345 second=229 amount=-1 -kerning first=936 second=359 amount=-1 -kerning first=941 second=119 amount=-1 -kerning first=1185 second=963 amount=-2 -kerning first=367 second=371 amount=-1 -kerning first=964 second=286 amount=-2 -kerning first=160 second=253 amount=-1 -kerning first=42 second=267 amount=-1 -kerning first=325 second=242 amount=-1 -kerning first=900 second=372 amount=-5 -kerning first=108 second=268 amount=-2 -kerning first=374 second=81 amount=-3 -kerning first=968 second=231 amount=-1 -kerning first=8217 second=46 amount=-1 -kerning first=1041 second=1202 amount=-2 -kerning first=69 second=117 amount=-1 -kerning first=209 second=269 amount=-1 -kerning first=8377 second=350 amount=-1 -kerning first=86 second=973 amount=-1 -kerning first=1119 second=232 amount=-1 -kerning first=946 second=244 amount=-1 -kerning first=1206 second=374 amount=-2 -kerning first=255 second=106 amount=1 -kerning first=168 second=118 amount=-4 -kerning first=8218 second=221 amount=-4 -kerning first=44 second=1194 amount=-1 -kerning first=47 second=370 amount=-2 -kerning first=1064 second=83 amount=-1 -kerning first=190 second=283 amount=-1 -kerning first=73 second=67 amount=-2 -kerning first=67 second=1044 amount=-1 -kerning first=1090 second=245 amount=-1 -kerning first=905 second=949 amount=-1 -kerning first=93 second=229 amount=-1 -kerning first=910 second=257 amount=-4 -kerning first=236 second=119 amount=-4 -kerning first=356 second=271 amount=-3 -kerning first=359 second=44 amount=-1 -kerning first=113 second=371 amount=-1 -kerning first=1207 second=1073 amount=-1 -kerning first=253 second=1026 amount=-5 -kerning first=256 second=286 amount=-2 -kerning first=1256 second=84 amount=-2 -kerning first=970 second=1090 amount=-2 -kerning first=973 second=334 amount=-2 -kerning first=282 second=218 amount=-2 -kerning first=194 second=230 amount=-1 -kerning first=306 second=360 amount=-2 -kerning first=74 second=242 amount=-1 -kerning first=214 second=372 amount=-5 -kerning first=91 second=1262 amount=-2 -kerning first=94 second=1240 amount=-2 -kerning first=1174 second=335 amount=-1 -kerning first=952 second=347 amount=-1 -kerning first=1298 second=34 amount=-3 -kerning first=260 second=231 amount=-1 -kerning first=174 second=243 amount=-1 -kerning first=283 second=373 amount=-1 -kerning first=192 second=1263 amount=-1 -kerning first=912 second=1176 amount=-1 -kerning first=1178 second=275 amount=-1 -kerning first=1175 second=966 amount=-1 -kerning first=361 second=374 amount=-5 -kerning first=956 second=289 amount=-1 -kerning first=281 second=8230 amount=-1 -kerning first=294 second=83 amount=-1 -kerning first=8226 second=953 amount=-1 -kerning first=1067 second=1177 amount=-1 -kerning first=317 second=245 amount=-1 -kerning first=337 second=1299 amount=-1 -kerning first=915 second=8211 amount=-2 -kerning first=102 second=271 amount=-1 -kerning first=962 second=234 amount=-1 -kerning first=40 second=218 amount=-2 -kerning first=1037 second=376 amount=-5 -kerning first=179 second=346 amount=-1 -kerning first=60 second=360 amount=-2 -kerning first=1071 second=1059 amount=-2 -kerning first=206 second=45 amount=-2 -kerning first=203 second=273 amount=-1 -kerning first=200 second=964 amount=-3 -kerning first=8370 second=113 amount=-1 -kerning first=8365 second=353 amount=-1 -kerning first=901 second=85 amount=-2 -kerning first=369 second=259 amount=-1 -kerning first=126 second=361 amount=-1 -kerning first=1298 second=8216 amount=-3 -kerning first=162 second=121 amount=-1 -kerning first=275 second=46 amount=-1 -kerning first=38 second=1202 amount=-2 -kerning first=41 second=373 amount=-4 -kerning first=1035 second=8250 amount=-1 -kerning first=180 second=1028 amount=-2 -kerning first=184 second=288 amount=-2 -kerning first=8260 second=1184 amount=-5 -kerning first=1080 second=248 amount=-1 -kerning first=207 second=220 amount=-2 -kerning first=87 second=232 amount=-3 -kerning first=230 second=122 amount=-1 -kerning first=345 second=966 amount=-1 -kerning first=250 second=289 amount=-1 -kerning first=967 second=337 amount=-1 -kerning first=166 second=71 amount=-2 -kerning first=276 second=221 amount=-5 -kerning first=39 second=8230 amount=-1 -kerning first=48 second=83 amount=-1 -kerning first=1049 second=261 amount=-1 -kerning first=1046 second=953 amount=-1 -kerning first=188 second=233 amount=-1 -kerning first=300 second=363 amount=-1 -kerning first=297 second=1177 amount=-1 -kerning first=906 second=210 amount=-2 -kerning first=1118 second=338 amount=-2 -kerning first=1169 second=100 amount=-1 -kerning first=1210 second=262 amount=-2 -kerning first=254 second=234 amount=-1 -kerning first=968 second=968 amount=-1 -kerning first=971 second=277 amount=-1 -kerning first=167 second=246 amount=-1 -kerning first=1063 second=211 amount=-2 -kerning first=301 second=1059 amount=-2 -kerning first=298 second=8212 amount=-2 -kerning first=1095 second=113 amount=-1 -kerning first=1087 second=353 amount=-1 -kerning first=215 second=85 amount=-2 -kerning first=206 second=8249 amount=-3 -kerning first=89 second=1094 amount=-3 -kerning first=92 second=335 amount=-1 -kerning first=95 second=97 amount=-1 -kerning first=1224 second=212 amount=-2 -kerning first=1026 second=224 amount=-1 -kerning first=171 second=196 amount=-1 -kerning first=286 second=86 amount=-2 -kerning first=8222 second=266 amount=-1 -kerning first=8226 second=39 amount=-3 -kerning first=1064 second=366 amount=-2 -kerning first=193 second=336 amount=-2 -kerning first=310 second=248 amount=-2 -kerning first=73 second=350 amount=-1 -kerning first=216 second=260 amount=-2 -kerning first=905 second=8217 amount=-3 -kerning first=93 second=966 amount=-1 -kerning first=96 second=275 amount=-1 -kerning first=1176 second=225 amount=-1 -kerning first=1220 second=1185 amount=-3 -kerning first=379 second=940 amount=-1 -kerning first=176 second=111 amount=-1 -kerning first=172 second=351 amount=-1 -kerning first=282 second=953 amount=-1 -kerning first=287 second=261 amount=-1 -kerning first=8230 second=214 amount=-1 -kerning first=54 second=363 amount=-1 -kerning first=51 second=1177 amount=-1 -kerning first=77 second=290 amount=-2 -kerning first=338 second=338 amount=-2 -kerning first=926 second=250 amount=-1 -kerning first=916 second=941 amount=-1 -kerning first=341 second=100 amount=-1 -kerning first=240 second=352 amount=-1 -kerning first=363 second=262 amount=-2 -kerning first=955 second=1241 amount=-1 -kerning first=960 second=187 amount=-1 -kerning first=1223 second=8220 amount=-3 -kerning first=260 second=968 amount=-1 -kerning first=35 second=376 amount=-5 -kerning first=174 second=1035 amount=-5 -kerning first=177 second=291 amount=-1 -kerning first=291 second=211 amount=-2 -kerning first=8240 second=369 amount=-1 -kerning first=52 second=8212 amount=-2 -kerning first=55 second=1059 amount=-2 -kerning first=1073 second=251 amount=-1 -kerning first=316 second=353 amount=-1 -kerning first=321 second=113 amount=-1 -kerning first=221 second=365 amount=-2 -kerning first=1194 second=90 amount=-1 -kerning first=367 second=212 amount=-2 -kerning first=1299 second=943 amount=-1 -kerning first=1039 second=266 amount=-2 -kerning first=289 second=1184 amount=-5 -kerning first=294 second=366 amount=-2 -kerning first=62 second=248 amount=-1 -kerning first=205 second=171 amount=-3 -kerning first=8364 second=920 amount=-2 -kerning first=900 second=213 amount=-2 -kerning first=942 second=115 amount=-1 -kerning first=108 second=87 amount=-5 -kerning first=365 second=1185 amount=-3 -kerning first=161 second=249 amount=-1 -kerning first=125 second=940 amount=-1 -kerning first=270 second=379 amount=-1 -kerning first=43 second=261 amount=-1 -kerning first=40 second=953 amount=-1 -kerning first=66 second=198 amount=-1 -kerning first=1083 second=116 amount=-1 -kerning first=901 second=368 amount=-2 -kerning first=86 second=338 amount=-2 -kerning first=89 second=100 amount=-4 -kerning first=1116 second=281 amount=-2 -kerning first=249 second=1241 amount=-1 -kerning first=252 second=187 amount=-1 -kerning first=165 second=199 amount=-2 -kerning first=271 second=1079 amount=-1 -kerning first=278 second=89 amount=-5 -kerning first=47 second=211 amount=-1 -kerning first=1048 second=369 amount=-1 -kerning first=184 second=1098 amount=-3 -kerning first=190 second=101 amount=-1 -kerning first=302 second=251 amount=-1 -kerning first=70 second=113 amount=-1 -kerning first=902 second=1066 amount=-5 -kerning first=1168 second=228 amount=-1 -kerning first=948 second=240 amount=-1 -kerning first=113 second=212 amount=-2 -kerning first=1202 second=1194 amount=-1 -kerning first=256 second=102 amount=-2 -kerning first=376 second=252 amount=-2 -kerning first=967 second=1256 amount=-2 -kerning first=166 second=354 amount=-5 -kerning first=163 second=1118 amount=-1 -kerning first=282 second=39 amount=-3 -kerning first=48 second=366 amount=-2 -kerning first=45 second=1184 amount=-4 -kerning first=191 second=279 amount=-1 -kerning first=188 second=970 amount=-1 -kerning first=1065 second=79 amount=-1 -kerning first=1085 second=920 amount=-2 -kerning first=214 second=213 amount=-2 -kerning first=94 second=225 amount=-1 -kerning first=1118 second=1257 amount=-1 -kerning first=237 second=115 amount=-1 -kerning first=357 second=267 amount=-1 -kerning first=111 second=1185 amount=-1 -kerning first=167 second=1038 amount=-2 -kerning first=1063 second=945 amount=-1 -kerning first=195 second=226 amount=-1 -kerning first=313 second=116 amount=-1 -kerning first=215 second=368 amount=-2 -kerning first=950 second=1102 amount=-2 -kerning first=112 second=8220 amount=-1 -kerning first=36 second=89 amount=-5 -kerning first=56 second=251 amount=-1 -kerning first=8361 second=244 amount=-1 -kerning first=216 second=1066 amount=-2 -kerning first=931 second=118 amount=-4 -kerning first=1176 second=962 amount=-1 -kerning first=958 second=283 amount=-1 -kerning first=37 second=266 amount=-2 -kerning first=40 second=39 amount=-3 -kerning first=1037 second=217 amount=-2 -kerning first=1071 second=359 amount=-1 -kerning first=315 second=920 amount=-1 -kerning first=1103 second=286 amount=-2 -kerning first=223 second=253 amount=-1 -kerning first=338 second=1257 amount=-1 -kerning first=103 second=267 amount=-1 -kerning first=963 second=230 amount=-1 -kerning first=41 second=214 amount=-2 -kerning first=1035 second=947 amount=-4 -kerning first=177 second=1101 amount=-1 -kerning first=291 second=945 amount=-1 -kerning first=61 second=356 amount=-5 -kerning first=64 second=116 amount=-1 -kerning first=204 second=268 amount=-2 -kerning first=8363 second=1108 amount=-1 -kerning first=8366 second=347 amount=-1 -kerning first=902 second=81 amount=-2 -kerning first=84 second=281 amount=-3 -kerning first=160 second=357 amount=-1 -kerning first=163 second=117 amount=-1 -kerning first=273 second=269 amount=-1 -kerning first=42 second=369 amount=-1 -kerning first=182 second=973 amount=-1 -kerning first=1081 second=244 amount=-1 -kerning first=328 second=106 amount=1 -kerning first=88 second=228 amount=-1 -kerning first=231 second=118 amount=-1 -kerning first=105 second=1194 amount=-2 -kerning first=108 second=370 amount=-2 -kerning first=1210 second=83 amount=-1 -kerning first=251 second=283 amount=-1 -kerning first=968 second=333 amount=-1 -kerning first=167 second=67 amount=-2 -kerning first=49 second=79 amount=-2 -kerning first=1051 second=257 amount=-1 -kerning first=189 second=229 amount=-1 -kerning first=304 second=119 amount=-4 -kerning first=301 second=359 amount=-1 -kerning first=209 second=371 amount=-1 -kerning first=206 second=1195 amount=-1 -kerning first=330 second=286 amount=-2 -kerning first=86 second=1257 amount=-1 -kerning first=1119 second=334 amount=-2 -kerning first=946 second=346 amount=-1 -kerning first=255 second=230 amount=-1 -kerning first=375 second=360 amount=-2 -kerning first=1026 second=45 amount=-2 -kerning first=168 second=242 amount=-1 -kerning first=275 second=947 amount=-1 -kerning first=278 second=372 amount=-5 -kerning first=8222 second=85 amount=-1 -kerning first=47 second=945 amount=-1 -kerning first=190 second=1240 amount=-2 -kerning first=1084 second=1108 amount=-1 -kerning first=910 second=361 amount=-2 -kerning first=915 second=121 amount=-1 -kerning first=1168 second=965 amount=-1 -kerning first=236 second=243 amount=-1 -kerning first=356 second=373 amount=-2 -kerning first=948 second=1028 amount=-2 -kerning first=951 second=288 amount=-2 -kerning first=253 second=1263 amount=-1 -kerning first=1027 second=220 amount=-2 -kerning first=1065 second=362 amount=-1 -kerning first=194 second=332 amount=-2 -kerning first=311 second=244 amount=-2 -kerning first=77 second=106 amount=1 -kerning first=217 second=256 amount=-2 -kerning first=332 second=1298 amount=-1 -kerning first=926 second=71 amount=-2 -kerning first=94 second=962 amount=-1 -kerning first=354 second=8230 amount=-3 -kerning first=363 second=83 amount=-1 -kerning first=955 second=233 amount=-1 -kerning first=1223 second=1177 amount=-1 -kerning first=260 second=333 amount=-1 -kerning first=35 second=217 amount=-2 -kerning first=8240 second=210 amount=-2 -kerning first=58 second=119 amount=-4 -kerning first=1063 second=8211 amount=-2 -kerning first=55 second=359 amount=-1 -kerning first=195 second=963 amount=-1 -kerning first=198 second=271 amount=-1 -kerning first=78 second=286 amount=-2 -kerning first=928 second=246 amount=-1 -kerning first=1178 second=376 amount=-2 -kerning first=364 second=258 amount=-2 -kerning first=121 second=360 amount=-2 -kerning first=1224 second=8212 amount=-2 -kerning first=261 second=964 amount=-1 -kerning first=36 second=372 amount=-5 -kerning first=1026 second=8249 amount=-3 -kerning first=1039 second=85 amount=-2 -kerning first=178 second=287 amount=-1 -kerning first=202 second=219 amount=-2 -kerning first=314 second=1108 amount=-1 -kerning first=317 second=347 amount=-1 -kerning first=900 second=34 amount=-3 -kerning first=1176 second=8250 amount=-1 -kerning first=962 second=336 amount=-2 -kerning first=183 second=232 amount=-1 -kerning first=8230 second=8217 amount=-1 -kerning first=63 second=244 amount=-1 -kerning first=203 second=374 amount=-5 -kerning first=323 second=289 amount=-1 -kerning first=1116 second=99 amount=-2 -kerning first=947 second=261 amount=-1 -kerning first=249 second=233 amount=-1 -kerning first=369 second=363 amount=-1 -kerning first=162 second=245 amount=-1 -kerning first=271 second=375 amount=-1 -kerning first=8212 second=88 amount=-3 -kerning first=41 second=949 amount=-1 -kerning first=1048 second=210 amount=-2 -kerning first=291 second=8211 amount=-2 -kerning first=67 second=194 amount=-1 -kerning first=1080 second=352 amount=-1 -kerning first=327 second=234 amount=-1 -kerning first=8372 second=1241 amount=-1 -kerning first=8378 second=187 amount=-1 -kerning first=902 second=364 amount=-2 -kerning first=210 second=84 amount=-2 -kerning first=87 second=334 amount=-2 -kerning first=1117 second=277 amount=-1 -kerning first=350 second=376 amount=-2 -kerning first=944 second=291 amount=-1 -kerning first=367 second=8212 amount=-2 -kerning first=8216 second=263 amount=-1 -kerning first=1049 second=365 amount=-1 -kerning first=188 second=335 amount=-1 -kerning first=191 second=97 amount=-1 -kerning first=65 second=1108 amount=-1 -kerning first=214 second=34 amount=-3 -kerning first=900 second=8216 amount=-3 -kerning first=88 second=965 amount=-1 -kerning first=1210 second=366 amount=-2 -kerning first=254 second=336 amount=-2 -kerning first=374 second=937 amount=-2 -kerning first=377 second=248 amount=-1 -kerning first=167 second=350 amount=-1 -kerning first=46 second=1176 amount=-1 -kerning first=49 second=362 amount=-2 -kerning first=189 second=966 amount=-1 -kerning first=192 second=275 amount=-1 -kerning first=72 second=289 amount=-1 -kerning first=912 second=249 amount=-1 -kerning first=95 second=221 amount=-5 -kerning first=238 second=111 amount=-1 -kerning first=358 second=261 amount=-1 -kerning first=972 second=1078 amount=-2 -kerning first=1033 second=88 amount=-2 -kerning first=8222 second=368 amount=-1 -kerning first=47 second=8211 amount=-1 -kerning first=1064 second=941 amount=-1 -kerning first=1067 second=250 amount=-1 -kerning first=310 second=352 amount=-1 -kerning first=76 second=234 amount=-1 -kerning first=1096 second=1241 amount=-1 -kerning first=1099 second=187 amount=-1 -kerning first=923 second=199 amount=-2 -kerning first=96 second=376 amount=-5 -kerning first=1171 second=1079 amount=-1 -kerning first=236 second=1035 amount=-5 -kerning first=239 second=291 amount=-1 -kerning first=951 second=1098 amount=-3 -kerning first=113 second=8212 amount=-2 -kerning first=958 second=101 amount=-1 -kerning first=954 second=339 amount=-2 -kerning first=1263 second=251 amount=-1 -kerning first=37 second=85 amount=-2 -kerning first=176 second=235 amount=-1 -kerning first=287 second=365 amount=-1 -kerning first=8224 second=1066 amount=-5 -kerning first=214 second=8216 amount=-3 -kerning first=341 second=224 amount=-1 -kerning first=916 second=1118 amount=-1 -kerning first=926 second=354 amount=-5 -kerning first=94 second=8250 amount=-1 -kerning first=1184 second=266 amount=-3 -kerning first=363 second=366 amount=-2 -kerning first=960 second=279 amount=-1 -kerning first=955 second=970 amount=-1 -kerning first=123 second=248 amount=-1 -kerning first=268 second=171 amount=-1 -kerning first=38 second=260 amount=-1 -kerning first=283 second=8217 amount=-1 -kerning first=8260 second=253 amount=-1 -kerning first=1073 second=355 amount=-1 -kerning first=204 second=87 amount=-5 -kerning first=84 second=99 amount=-3 -kerning first=221 second=940 amount=-4 -kerning first=928 second=1038 amount=-2 -kerning first=964 second=226 amount=-1 -kerning first=42 second=210 amount=-2 -kerning first=1039 second=368 amount=-2 -kerning first=182 second=338 amount=-2 -kerning first=185 second=100 amount=-1 -kerning first=297 second=250 amount=-1 -kerning first=294 second=941 amount=-1 -kerning first=62 second=352 amount=-1 -kerning first=205 second=262 amount=-2 -kerning first=322 second=1241 amount=-1 -kerning first=325 second=187 amount=-1 -kerning first=108 second=211 amount=-2 -kerning first=245 second=1098 amount=-1 -kerning first=251 second=101 amount=-1 -kerning first=371 second=251 amount=-1 -kerning first=164 second=113 amount=-1 -kerning first=161 second=353 amount=-1 -kerning first=270 second=955 amount=-2 -kerning first=274 second=263 amount=-1 -kerning first=43 second=365 amount=-1 -kerning first=1037 second=8221 amount=-3 -kerning first=1041 second=1066 amount=-5 -kerning first=1083 second=240 amount=-1 -kerning first=209 second=212 amount=-2 -kerning first=8377 second=283 amount=-1 -kerning first=904 second=252 amount=-1 -kerning first=901 second=943 amount=-1 -kerning first=89 second=224 amount=-4 -kerning first=1219 second=79 amount=-2 -kerning first=249 second=970 amount=-1 -kerning first=252 second=279 amount=-1 -kerning first=278 second=213 amount=-2 -kerning first=41 second=8217 amount=-3 -kerning first=44 second=1063 amount=-3 -kerning first=190 second=225 amount=-1 -kerning first=302 second=355 amount=-1 -kerning first=305 second=115 amount=-1 -kerning first=207 second=1185 amount=-3 -kerning first=87 second=1220 amount=-2 -kerning first=90 second=379 amount=1 -kerning first=356 second=214 amount=-1 -kerning first=944 second=1101 amount=-1 -kerning first=1207 second=945 amount=-1 -kerning first=256 second=226 amount=-1 -kerning first=973 second=268 amount=-2 -kerning first=8224 second=81 amount=-2 -kerning first=51 second=250 amount=-1 -kerning first=48 second=941 amount=-1 -kerning first=74 second=187 amount=-1 -kerning first=916 second=117 amount=-1 -kerning first=91 second=1079 amount=-1 -kerning first=1174 second=269 amount=-1 -kerning first=354 second=1187 amount=-2 -kerning first=357 second=369 amount=-1 -kerning first=117 second=251 amount=-1 -kerning first=280 second=1066 amount=-5 -kerning first=277 second=8221 amount=-1 -kerning first=313 second=240 amount=-1 -kerning first=215 second=943 amount=-1 -kerning first=928 second=67 amount=-2 -kerning first=101 second=39 amount=-1 -kerning first=1178 second=217 amount=-1 -kerning first=355 second=8222 amount=-1 -kerning first=956 second=229 amount=-1 -kerning first=1299 second=119 amount=-4 -kerning first=381 second=920 amount=-1 -kerning first=36 second=213 amount=-2 -kerning first=1026 second=1195 amount=-1 -kerning first=178 second=103 amount=-1 -kerning first=289 second=253 amount=-1 -kerning first=56 second=355 amount=-1 -kerning first=59 second=115 amount=-1 -kerning first=8361 second=346 amount=-1 -kerning first=337 second=1083 amount=-1 -kerning first=931 second=242 amount=-1 -kerning first=1176 second=947 amount=-4 -kerning first=239 second=1101 amount=-1 -kerning first=958 second=1240 amount=-2 -kerning first=125 second=116 amount=-1 -kerning first=37 second=368 amount=-2 -kerning first=1041 second=81 amount=-2 -kerning first=176 second=972 amount=-1 -kerning first=179 second=281 amount=-1 -kerning first=1075 second=243 amount=-1 -kerning first=8365 second=288 amount=-2 -kerning first=223 second=357 amount=-1 -kerning first=103 second=369 amount=-1 -kerning first=963 second=332 amount=-2 -kerning first=271 second=216 amount=-2 -kerning first=38 second=1066 amount=-5 -kerning first=35 second=8221 amount=-3 -kerning first=184 second=228 amount=-1 -kerning first=299 second=118 amount=-4 -kerning first=64 second=240 amount=-1 -kerning first=201 second=1194 amount=-2 -kerning first=204 second=370 amount=-2 -kerning first=8372 second=233 amount=-1 -kerning first=84 second=382 amount=-1 -kerning first=101 second=8222 amount=-1 -kerning first=250 second=229 amount=-1 -kerning first=964 second=963 amount=-1 -kerning first=967 second=271 amount=-1 -kerning first=160 second=920 amount=-2 -kerning first=273 second=371 amount=-1 -kerning first=182 second=1257 amount=-1 -kerning first=1081 second=346 amount=-1 -kerning first=903 second=360 amount=-2 -kerning first=1118 second=273 amount=-1 -kerning first=346 second=947 amount=-1 -kerning first=108 second=945 amount=-1 -kerning first=251 second=1240 amount=-2 -kerning first=971 second=219 amount=-2 -kerning first=274 second=1069 amount=-1 -kerning first=280 second=81 amount=-2 -kerning first=8217 second=259 amount=-1 -kerning first=1051 second=361 amount=-1 -kerning first=1063 second=121 amount=-1 -kerning first=304 second=243 amount=-1 -kerning first=1083 second=1028 amount=-2 -kerning first=1087 second=288 amount=-2 -kerning first=89 second=961 amount=-5 -kerning first=92 second=269 amount=-1 -kerning first=1170 second=220 amount=-2 -kerning first=950 second=232 amount=-1 -kerning first=1219 second=362 amount=-2 -kerning first=255 second=332 amount=-2 -kerning first=378 second=244 amount=-1 -kerning first=969 second=1203 amount=-1 -kerning first=53 second=118 amount=-4 -kerning first=1067 second=71 amount=-2 -kerning first=190 second=962 amount=-1 -kerning first=73 second=283 amount=-1 -kerning first=1096 second=233 amount=-1 -kerning first=915 second=245 amount=-1 -kerning first=96 second=217 amount=-2 -kerning first=1171 second=375 amount=-1 -kerning first=356 second=949 amount=-3 -kerning first=256 second=963 amount=-1 -kerning first=262 second=44 amount=-1 -kerning first=169 second=1026 amount=-5 -kerning first=172 second=286 amount=-2 -kerning first=1034 second=84 amount=-5 -kerning first=8224 second=364 amount=-2 -kerning first=1065 second=934 amount=-2 -kerning first=197 second=218 amount=-2 -kerning first=77 second=230 amount=-1 -kerning first=335 second=964 amount=-1 -kerning first=338 second=273 amount=-1 -kerning first=341 second=45 amount=-1 -kerning first=94 second=947 amount=-4 -kerning first=240 second=287 amount=-1 -kerning first=955 second=335 amount=-1 -kerning first=960 second=97 amount=-1 -kerning first=380 second=1108 amount=-1 -kerning first=38 second=81 amount=-2 -kerning first=1035 second=259 amount=-1 -kerning first=177 second=231 amount=-1 -kerning first=283 second=1175 amount=-2 -kerning first=291 second=121 amount=-1 -kerning first=58 second=243 amount=-1 -kerning first=198 second=373 amount=-4 -kerning first=316 second=288 amount=-2 -kerning first=313 second=1028 amount=-1 -kerning first=75 second=1263 amount=-2 -kerning first=1098 second=1095 amount=-1 -kerning first=928 second=350 amount=-1 -kerning first=361 second=1176 amount=-1 -kerning first=956 second=966 amount=-1 -kerning first=124 second=244 amount=-1 -kerning first=266 second=374 amount=-2 -kerning first=1240 second=1033 amount=-1 -kerning first=39 second=256 amount=-3 -kerning first=297 second=71 amount=-2 -kerning first=1074 second=351 amount=-1 -kerning first=1078 second=111 amount=-2 -kerning first=205 second=83 amount=-1 -kerning first=322 second=233 amount=-1 -kerning first=1102 second=967 amount=-2 -kerning first=102 second=949 amount=-1 -kerning first=105 second=257 amount=-1 -kerning first=242 second=1299 amount=-1 -kerning first=274 second=84 amount=-5 -kerning first=1041 second=364 amount=-2 -kerning first=179 second=1090 amount=-3 -kerning first=183 second=334 amount=-2 -kerning first=298 second=246 amount=-1 -kerning first=63 second=346 amount=-1 -kerning first=8365 second=1098 amount=-3 -kerning first=8370 second=339 amount=-1 -kerning first=86 second=273 amount=-1 -kerning first=8377 second=101 amount=-1 -kerning first=89 second=45 amount=-4 -kerning first=249 second=335 amount=-1 -kerning first=252 second=97 amount=-1 -kerning first=126 second=1108 amount=-1 -kerning first=162 second=347 amount=-1 -kerning first=278 second=34 amount=-3 -kerning first=47 second=121 amount=-1 -kerning first=44 second=361 amount=-1 -kerning first=184 second=965 amount=-1 -kerning first=64 second=1028 amount=-2 -kerning first=327 second=336 amount=-2 -kerning first=8372 second=970 amount=-1 -kerning first=8378 second=279 amount=-1 -kerning first=905 second=248 amount=-1 -kerning first=1168 second=171 amount=-3 -kerning first=1202 second=1063 amount=-2 -kerning first=250 second=966 amount=-1 -kerning first=253 second=275 amount=-1 -kerning first=376 second=197 amount=-5 -kerning first=973 second=87 amount=-5 -kerning first=166 second=289 amount=-1 -kerning first=51 second=71 amount=-2 -kerning first=1049 second=940 amount=-1 -kerning first=191 second=221 amount=-5 -kerning first=303 second=351 amount=-1 -kerning first=306 second=111 amount=-1 -kerning first=91 second=375 amount=-1 -kerning first=357 second=210 amount=-2 -kerning first=952 second=100 amount=-1 -kerning first=108 second=8211 amount=-2 -kerning first=1210 second=941 amount=-1 -kerning first=1223 second=250 amount=-1 -kerning first=374 second=1116 amount=-3 -kerning first=170 second=234 amount=-1 -kerning first=280 second=364 amount=-2 -kerning first=52 second=246 amount=-1 -kerning first=192 second=376 amount=-5 -kerning first=304 second=1035 amount=-5 -kerning first=1087 second=1098 amount=-3 -kerning first=1095 second=339 amount=-1 -kerning first=209 second=8212 amount=-2 -kerning first=912 second=353 amount=-1 -kerning first=89 second=8249 amount=-3 -kerning first=1175 second=263 amount=-1 -kerning first=238 second=235 amount=-1 -kerning first=358 second=365 amount=-1 -kerning first=950 second=969 amount=-3 -kerning first=36 second=34 amount=-3 -kerning first=278 second=8216 amount=-3 -kerning first=8226 second=252 amount=-1 -kerning first=1064 second=1118 amount=-1 -kerning first=1067 second=354 amount=-5 -kerning first=190 second=8250 amount=-1 -kerning first=199 second=86 amount=-1 -kerning first=76 second=336 amount=-1 -kerning first=1096 second=970 amount=-1 -kerning first=1099 second=279 amount=-1 -kerning first=337 second=378 amount=-1 -kerning first=340 second=171 amount=-1 -kerning first=958 second=225 amount=-1 -kerning first=1263 second=355 amount=-1 -kerning first=1027 second=1185 amount=-3 -kerning first=176 second=337 amount=-1 -kerning first=179 second=99 amount=-1 -kerning first=287 second=940 amount=-1 -kerning first=60 second=111 amount=-1 -kerning first=57 second=351 amount=-1 -kerning first=200 second=261 amount=-1 -kerning first=197 second=953 amount=-1 -kerning first=1103 second=226 amount=-1 -kerning first=103 second=210 amount=-2 -kerning first=363 second=941 amount=-1 -kerning first=123 second=352 amount=-1 -kerning first=38 second=364 amount=-2 -kerning first=177 second=968 amount=-1 -kerning first=180 second=277 amount=-1 -kerning first=296 second=199 amount=-2 -kerning first=8260 second=357 amount=-1 -kerning first=58 second=1035 amount=-5 -kerning first=61 second=291 amount=-1 -kerning first=204 second=211 amount=-2 -kerning first=321 second=339 amount=-1 -kerning first=8363 second=973 amount=-1 -kerning first=316 second=1098 amount=-3 -kerning first=221 second=1117 amount=-3 -kerning first=345 second=263 amount=-1 -kerning first=1178 second=8221 amount=-2 -kerning first=273 second=212 amount=-2 -kerning first=36 second=8216 amount=-3 -kerning first=1039 second=943 amount=-1 -kerning first=1046 second=252 amount=-1 -kerning first=185 second=224 amount=-1 -kerning first=297 second=354 amount=-5 -kerning first=294 second=1118 amount=-1 -kerning first=202 second=1184 amount=-5 -kerning first=205 second=366 amount=-2 -kerning first=325 second=279 amount=-1 -kerning first=322 second=970 amount=-1 -kerning first=88 second=171 amount=-3 -kerning first=231 second=63 amount=-1 -kerning first=251 second=225 amount=-1 -kerning first=371 second=355 amount=-1 -kerning first=374 second=115 amount=-3 -kerning first=968 second=267 amount=-1 -kerning first=274 second=367 amount=-1 -kerning first=43 second=940 amount=-1 -kerning first=46 second=249 amount=-1 -kerning first=298 second=1038 amount=-2 -kerning first=8377 second=1240 amount=-2 -kerning first=8370 second=1262 amount=-2 -kerning first=904 second=356 amount=-5 -kerning first=330 second=226 amount=-1 -kerning first=86 second=1078 amount=-2 -kerning first=1119 second=268 amount=-2 -kerning first=946 second=281 amount=-1 -kerning first=165 second=1241 amount=-1 -kerning first=168 second=187 amount=-1 -kerning first=271 second=8220 amount=-3 -kerning first=50 second=199 amount=-2 -kerning first=1064 second=117 amount=-1 -kerning first=193 second=89 amount=-5 -kerning first=70 second=339 amount=-1 -kerning first=1084 second=973 amount=-1 -kerning first=73 second=101 amount=-1 -kerning first=93 second=263 amount=-1 -kerning first=1171 second=216 amount=-2 -kerning first=951 second=228 amount=-1 -kerning first=376 second=916 amount=-5 -kerning first=379 second=240 amount=-1 -kerning first=973 second=370 amount=-2 -kerning first=282 second=252 amount=-1 -kerning first=51 second=354 amount=-5 -kerning first=48 second=1118 amount=-1 -kerning first=194 second=266 amount=-2 -kerning first=197 second=39 amount=-3 -kerning first=74 second=279 amount=-1 -kerning first=1169 second=1195 amount=-1 -kerning first=240 second=103 amount=-1 -kerning first=117 second=355 amount=-1 -kerning first=120 second=115 amount=-1 -kerning first=260 second=267 amount=-1 -kerning first=8225 second=360 amount=-2 -kerning first=52 second=1038 amount=-2 -kerning first=1066 second=923 amount=-1 -kerning first=198 second=214 amount=-2 -kerning first=78 second=226 amount=-1 -kerning first=1095 second=1262 amount=-2 -kerning first=238 second=972 amount=-1 -kerning first=1299 second=243 amount=-1 -kerning first=178 second=227 amount=-1 -kerning first=289 second=357 amount=-1 -kerning first=294 second=117 amount=-1 -kerning first=314 second=973 amount=-1 -kerning first=8364 second=232 amount=-1 -kerning first=79 second=381 amount=-1 -kerning first=96 second=8221 amount=-3 -kerning first=958 second=962 amount=-1 -kerning first=125 second=240 amount=-1 -kerning first=37 second=943 amount=-1 -kerning first=40 second=252 amount=-1 -kerning first=176 second=1256 amount=-2 -kerning first=298 second=67 amount=-2 -kerning first=206 second=79 amount=-2 -kerning first=323 second=229 amount=-1 -kerning first=901 second=119 amount=-4 -kerning first=1103 second=963 amount=-1 -kerning first=223 second=920 amount=-2 -kerning first=341 second=1195 amount=-1 -kerning first=934 second=1026 amount=-5 -kerning first=1044 second=360 amount=-1 -kerning first=299 second=242 amount=-1 -kerning first=61 second=1101 amount=-1 -kerning first=1080 second=287 amount=-1 -kerning first=204 second=945 amount=-1 -kerning first=321 second=1262 amount=-2 -kerning first=8372 second=335 amount=-1 -kerning first=8378 second=97 amount=-1 -kerning first=87 second=268 amount=-2 -kerning first=1117 second=219 amount=-2 -kerning first=944 second=231 amount=-1 -kerning first=373 second=243 amount=-1 -kerning first=967 second=373 amount=-4 -kerning first=48 second=117 amount=-1 -kerning first=188 second=269 amount=-1 -kerning first=65 second=973 amount=-1 -kerning first=1085 second=232 amount=-1 -kerning first=906 second=244 amount=-1 -kerning first=91 second=216 amount=-2 -kerning first=1114 second=1203 amount=-2 -kerning first=1118 second=374 amount=-5 -kerning first=354 second=256 amount=-6 -kerning first=1223 second=71 amount=-2 -kerning first=251 second=962 amount=-1 -kerning first=167 second=283 amount=-1 -kerning first=52 second=67 amount=-2 -kerning first=1063 second=245 amount=-1 -kerning first=192 second=217 amount=-2 -kerning first=72 second=229 amount=-1 -kerning first=215 second=119 amount=-4 -kerning first=330 second=963 amount=-1 -kerning first=336 second=44 amount=-1 -kerning first=92 second=371 amount=-1 -kerning first=89 second=1195 amount=-4 -kerning first=950 second=334 amount=-2 -kerning first=946 second=1090 amount=-3 -kerning first=1224 second=246 amount=-1 -kerning first=258 second=218 amount=-2 -kerning first=8218 second=1059 amount=-1 -kerning first=53 second=242 amount=-1 -kerning first=190 second=947 amount=-4 -kerning first=193 second=372 amount=-5 -kerning first=310 second=287 amount=-1 -kerning first=73 second=1240 amount=-2 -kerning first=70 second=1262 amount=-2 -kerning first=1096 second=335 amount=-1 -kerning first=1099 second=97 amount=-1 -kerning first=910 second=1108 amount=-4 -kerning first=915 second=347 amount=-1 -kerning first=93 second=1069 amount=-1 -kerning first=1176 second=259 amount=-1 -kerning first=239 second=231 amount=-1 -kerning first=356 second=1175 amount=-1 -kerning first=951 second=965 amount=-1 -kerning first=119 second=243 amount=-1 -kerning first=259 second=373 amount=-1 -kerning first=379 second=1028 amount=-1 -kerning first=169 second=1263 amount=-1 -kerning first=315 second=232 amount=-1 -kerning first=77 second=332 amount=-2 -kerning first=1097 second=966 amount=-1 -kerning first=335 second=1203 amount=-2 -kerning first=338 second=374 amount=-5 -kerning first=926 second=289 amount=-1 -kerning first=960 second=221 amount=-5 -kerning first=1298 second=351 amount=-1 -kerning first=1035 second=363 amount=-1 -kerning first=177 second=333 amount=-1 -kerning first=291 second=245 amount=-1 -kerning first=1073 second=290 amount=-2 -kerning first=198 second=949 amount=-1 -kerning first=201 second=257 amount=-1 -kerning first=8363 second=338 amount=-2 -kerning first=8366 second=100 amount=-1 -kerning first=78 second=963 amount=-1 -kerning first=84 second=44 amount=-3 -kerning first=936 second=234 amount=-1 -kerning first=241 second=1090 amount=-1 -kerning first=367 second=246 amount=-1 -kerning first=124 second=346 amount=-1 -kerning first=1299 second=1035 amount=-5 -kerning first=182 second=273 amount=-1 -kerning first=185 second=45 amount=-2 -kerning first=178 second=964 amount=-3 -kerning first=62 second=287 amount=-1 -kerning first=1078 second=235 amount=-2 -kerning first=322 second=335 amount=-1 -kerning first=325 second=97 amount=-1 -kerning first=351 second=34 amount=-1 -kerning first=105 second=361 amount=-1 -kerning first=108 second=121 amount=-1 -kerning first=958 second=8250 amount=-1 -kerning first=125 second=1028 amount=-2 -kerning first=161 second=288 amount=-2 -kerning first=186 second=220 amount=-2 -kerning first=298 second=350 amount=-1 -kerning first=206 second=362 amount=-2 -kerning first=203 second=1176 amount=-1 -kerning first=323 second=966 amount=-1 -kerning first=8377 second=225 amount=-1 -kerning first=83 second=1203 amount=-1 -kerning first=86 second=374 amount=-5 -kerning first=1119 second=87 amount=-5 -kerning first=946 second=99 amount=-1 -kerning first=947 second=940 amount=-1 -kerning first=252 second=221 amount=-5 -kerning first=375 second=111 amount=-1 -kerning first=372 second=351 amount=-2 -kerning first=165 second=233 amount=-1 -kerning first=271 second=1177 amount=-1 -kerning first=1241 second=967 amount=-2 -kerning first=47 second=245 amount=-2 -kerning first=1059 second=198 amount=-2 -kerning first=302 second=290 amount=-2 -kerning first=1084 second=338 amount=-2 -kerning first=204 second=8211 amount=-2 -kerning first=1090 second=100 amount=-1 -kerning first=905 second=352 amount=-1 -kerning first=910 second=112 amount=-3 -kerning first=93 second=84 amount=-5 -kerning first=1168 second=262 amount=-2 -kerning first=944 second=968 amount=-1 -kerning first=948 second=277 amount=-1 -kerning first=113 second=246 amount=-1 -kerning first=1220 second=199 amount=-2 -kerning first=253 second=376 amount=-5 -kerning first=376 second=291 amount=-4 -kerning first=973 second=211 amount=-2 -kerning first=273 second=8212 amount=-2 -kerning first=276 second=1059 amount=-2 -kerning first=185 second=8249 amount=-3 -kerning first=1065 second=113 amount=-1 -kerning first=194 second=85 amount=-2 -kerning first=306 second=235 amount=-1 -kerning first=74 second=97 amount=-1 -kerning first=332 second=377 amount=-1 -kerning first=94 second=259 amount=-1 -kerning first=97 second=34 amount=-1 -kerning first=1174 second=212 amount=-1 -kerning first=351 second=8216 amount=-1 -kerning first=952 second=224 amount=-1 -kerning first=1223 second=354 amount=-5 -kerning first=1210 second=1118 amount=-1 -kerning first=251 second=8250 amount=-1 -kerning first=260 second=86 amount=-6 -kerning first=971 second=1184 amount=-5 -kerning first=170 second=336 amount=-2 -kerning first=52 second=350 amount=-1 -kerning first=72 second=966 amount=-1 -kerning first=75 second=275 amount=-2 -kerning first=218 second=197 amount=-2 -kerning first=333 second=1076 amount=-1 -kerning first=1170 second=1185 amount=-3 -kerning first=238 second=337 amount=-1 -kerning first=361 second=249 amount=-1 -kerning first=358 second=940 amount=-1 -kerning first=950 second=1220 amount=-2 -kerning first=118 second=351 amount=-1 -kerning first=1224 second=1038 amount=-2 -kerning first=121 second=111 amount=-1 -kerning first=258 second=953 amount=-1 -kerning first=972 second=8218 amount=-1 -kerning first=8226 second=356 amount=-5 -kerning first=56 second=290 amount=-2 -kerning first=314 second=338 amount=-2 -kerning first=317 second=100 amount=-1 -kerning first=8361 second=281 amount=-1 -kerning first=923 second=1241 amount=-1 -kerning first=931 second=187 amount=-1 -kerning first=1171 second=8220 amount=-3 -kerning first=239 second=968 amount=-1 -kerning first=365 second=199 amount=-2 -kerning first=962 second=89 amount=-5 -kerning first=1037 second=251 amount=-1 -kerning first=60 second=235 amount=-1 -kerning first=200 second=365 amount=-1 -kerning first=8365 second=228 amount=-1 -kerning first=80 second=377 amount=-1 -kerning first=97 second=8216 amount=-1 -kerning first=363 second=1118 amount=-1 -kerning first=963 second=266 amount=-2 -kerning first=966 second=39 amount=-1 -kerning first=41 second=248 amount=-1 -kerning first=184 second=171 amount=-3 -kerning first=8260 second=920 amount=-2 -kerning first=1080 second=103 amount=-1 -kerning first=198 second=8217 amount=-3 -kerning first=8363 second=1257 amount=-1 -kerning first=902 second=115 amount=-1 -kerning first=84 second=324 amount=-2 -kerning first=367 second=1038 amount=-2 -kerning first=967 second=214 amount=-2 -kerning first=266 second=8218 amount=-1 -kerning first=45 second=198 amount=-2 -kerning first=1049 second=116 amount=-1 -kerning first=65 second=338 amount=-2 -kerning first=1081 second=281 amount=-1 -kerning first=205 second=941 amount=-1 -kerning first=1078 second=972 amount=-2 -kerning first=88 second=262 amount=-3 -kerning first=1210 second=117 amount=-1 -kerning first=254 second=89 amount=-5 -kerning first=968 second=369 amount=-1 -kerning first=161 second=1098 amount=-3 -kerning first=164 second=339 amount=-1 -kerning first=167 second=101 amount=-1 -kerning first=49 second=113 amount=-1 -kerning first=189 second=263 amount=-1 -kerning first=1087 second=228 amount=-1 -kerning first=8377 second=962 amount=-1 -kerning first=92 second=212 amount=-2 -kerning first=1119 second=370 amount=-2 -kerning first=235 second=102 amount=-1 -kerning first=1224 second=67 amount=-2 -kerning first=255 second=266 amount=-2 -kerning first=258 second=39 amount=-3 -kerning first=966 second=8222 amount=-1 -kerning first=1026 second=79 amount=-2 -kerning first=168 second=279 amount=-1 -kerning first=165 second=970 amount=-1 -kerning first=8218 second=359 amount=-1 -kerning first=8222 second=119 amount=-2 -kerning first=193 second=213 amount=-2 -kerning first=73 second=225 amount=-1 -kerning first=1084 second=1257 amount=-1 -kerning first=310 second=103 amount=-1 -kerning first=93 second=367 amount=-1 -kerning first=113 second=1038 amount=-2 -kerning first=376 second=1101 amount=-4 -kerning first=973 second=945 amount=-1 -kerning first=172 second=226 amount=-1 -kerning first=282 second=356 amount=-5 -kerning first=287 second=116 amount=-1 -kerning first=194 second=368 amount=-2 -kerning first=306 second=972 amount=-1 -kerning first=311 second=281 amount=-2 -kerning first=220 second=65 amount=-2 -kerning first=91 second=8220 amount=-3 -kerning first=240 second=227 amount=-1 -kerning first=363 second=117 amount=-1 -kerning first=955 second=269 amount=-1 -kerning first=260 second=369 amount=-1 -kerning first=35 second=251 amount=-1 -kerning first=8240 second=244 amount=-1 -kerning first=192 second=8221 amount=-3 -kerning first=195 second=1066 amount=-5 -kerning first=1073 second=106 amount=1 -kerning first=316 second=228 amount=-1 -kerning first=81 second=90 amount=-1 -kerning first=218 second=916 amount=-2 -kerning first=221 second=240 amount=-4 -kerning first=928 second=283 amount=-1 -kerning first=238 second=1256 amount=-2 -kerning first=367 second=67 amount=-2 -kerning first=1039 second=119 amount=-4 -kerning first=1036 second=359 amount=-1 -kerning first=289 second=920 amount=-2 -kerning first=62 second=103 amount=-1 -kerning first=1074 second=286 amount=-2 -kerning first=1070 second=1026 amount=-2 -kerning first=202 second=253 amount=-1 -kerning first=314 second=1257 amount=-1 -kerning first=8364 second=334 amount=-2 -kerning first=8361 second=1090 amount=-3 -kerning first=1195 second=120 amount=-1 -kerning first=242 second=1083 amount=-1 -kerning first=1186 second=360 amount=-1 -kerning first=958 second=947 amount=-4 -kerning first=962 second=372 amount=-5 -kerning first=40 second=356 amount=-5 -kerning first=43 second=116 amount=-1 -kerning first=183 second=268 amount=-2 -kerning first=60 second=972 amount=-1 -kerning first=63 second=281 amount=-1 -kerning first=8365 second=965 amount=-1 -kerning first=901 second=243 amount=-1 -kerning first=1108 second=373 amount=-1 -kerning first=934 second=1263 amount=-1 -kerning first=249 second=269 amount=-1 -kerning first=126 second=973 amount=-1 -kerning first=8212 second=122 amount=-2 -kerning first=1048 second=244 amount=-1 -kerning first=302 second=106 amount=1 -kerning first=8378 second=221 amount=-5 -kerning first=84 second=1194 amount=-1 -kerning first=1168 second=83 amount=-1 -kerning first=944 second=333 amount=-1 -kerning first=113 second=67 amount=-2 -kerning first=1207 second=245 amount=-1 -kerning first=253 second=217 amount=-2 -kerning first=967 second=949 amount=-1 -kerning first=166 second=229 amount=-1 -kerning first=276 second=359 amount=-1 -kerning first=279 second=119 amount=-1 -kerning first=185 second=1195 amount=-1 -kerning first=188 second=371 amount=-1 -kerning first=300 second=1026 amount=-5 -kerning first=303 second=286 amount=-2 -kerning first=65 second=1257 amount=-1 -kerning first=1085 second=334 amount=-2 -kerning first=1081 second=1090 amount=-3 -kerning first=208 second=1046 amount=-3 -kerning first=906 second=346 amount=-1 -kerning first=945 second=964 amount=-2 -kerning first=952 second=45 amount=-2 -kerning first=114 second=242 amount=-1 -kerning first=251 second=947 amount=-4 -kerning first=254 second=372 amount=-5 -kerning first=164 second=1262 amount=-2 -kerning first=167 second=1240 amount=-2 -kerning first=1051 second=1108 amount=-1 -kerning first=1063 second=347 amount=-1 -kerning first=189 second=1069 amount=-1 -kerning first=195 second=81 amount=-2 -kerning first=1087 second=965 amount=-1 -kerning first=215 second=243 amount=-1 -kerning first=333 second=373 amount=-1 -kerning first=8377 second=8250 amount=-1 -kerning first=912 second=288 amount=-2 -kerning first=1224 second=350 amount=-1 -kerning first=381 second=232 amount=-1 -kerning first=1026 second=362 amount=-2 -kerning first=56 second=106 amount=1 -kerning first=1067 second=289 amount=-1 -kerning first=8361 second=99 amount=-1 -kerning first=73 second=962 amount=-1 -kerning first=1099 second=221 amount=-5 -kerning first=219 second=193 amount=-2 -kerning first=334 second=1071 amount=-1 -kerning first=923 second=233 amount=-1 -kerning first=1171 second=1177 amount=-1 -kerning first=1176 second=363 amount=-1 -kerning first=239 second=333 amount=-1 -kerning first=1263 second=290 amount=-2 -kerning first=973 second=8211 amount=-2 -kerning first=37 second=119 amount=-4 -kerning first=172 second=963 amount=-1 -kerning first=176 second=271 amount=-1 -kerning first=54 second=1026 amount=-5 -kerning first=57 second=286 amount=-2 -kerning first=1071 second=234 amount=-1 -kerning first=315 second=334 amount=-1 -kerning first=80 second=218 amount=-2 -kerning first=100 second=360 amount=-2 -kerning first=1174 second=8212 amount=-2 -kerning first=240 second=964 amount=-3 -kerning first=952 second=8249 amount=-3 -kerning first=963 second=85 amount=-2 -kerning first=123 second=287 amount=-1 -kerning first=180 second=219 amount=-2 -kerning first=291 second=347 amount=-1 -kerning first=61 second=231 amount=-1 -kerning first=201 second=361 amount=-1 -kerning first=204 second=121 amount=-1 -kerning first=316 second=965 amount=-1 -kerning first=8366 second=224 amount=-1 -kerning first=221 second=1028 amount=-3 -kerning first=936 second=336 amount=-2 -kerning first=247 second=220 amount=-2 -kerning first=367 second=350 amount=-1 -kerning first=160 second=232 amount=-1 -kerning first=266 second=1176 amount=1 -kerning first=42 second=244 amount=-1 -kerning first=182 second=374 amount=-5 -kerning first=297 second=289 amount=-1 -kerning first=1078 second=337 amount=-2 -kerning first=1081 second=99 amount=-1 -kerning first=325 second=221 amount=-5 -kerning first=900 second=351 amount=-1 -kerning first=903 second=111 amount=-1 -kerning first=79 second=8230 amount=-1 -kerning first=88 second=83 amount=-1 -kerning first=108 second=245 amount=-1 -kerning first=371 second=290 amount=-2 -kerning first=968 second=210 amount=-2 -kerning first=270 second=1051 amount=-1 -kerning first=189 second=84 amount=-5 -kerning first=301 second=234 amount=-1 -kerning first=63 second=1090 amount=-3 -kerning first=1083 second=277 amount=-1 -kerning first=209 second=246 amount=-1 -kerning first=8370 second=1079 amount=-1 -kerning first=901 second=1035 amount=-5 -kerning first=904 second=291 amount=-1 -kerning first=89 second=258 amount=-5 -kerning first=1119 second=211 amount=-2 -kerning first=344 second=8212 amount=-1 -kerning first=1219 second=113 amount=-1 -kerning first=255 second=85 amount=-2 -kerning first=375 second=235 amount=-1 -kerning first=165 second=335 amount=-1 -kerning first=168 second=97 amount=-1 -kerning first=47 second=347 amount=-1 -kerning first=190 second=259 amount=-1 -kerning first=193 second=34 amount=-3 -kerning first=213 second=196 amount=-2 -kerning first=334 second=86 amount=-2 -kerning first=1117 second=1184 amount=-5 -kerning first=1168 second=366 amount=-2 -kerning first=356 second=248 amount=-3 -kerning first=951 second=171 amount=-3 -kerning first=113 second=350 amount=-1 -kerning first=967 second=8217 amount=-3 -kerning first=166 second=966 amount=-1 -kerning first=169 second=275 amount=-1 -kerning first=8224 second=115 amount=-1 -kerning first=51 second=289 amount=-1 -kerning first=306 second=337 amount=-1 -kerning first=311 second=99 amount=-2 -kerning first=74 second=221 amount=-5 -kerning first=214 second=351 amount=-1 -kerning first=91 second=1177 amount=-1 -kerning first=94 second=363 amount=-1 -kerning first=234 second=967 amount=-2 -kerning first=360 second=198 amount=-2 -kerning first=949 second=1078 amount=-1 -kerning first=117 second=290 amount=-2 -kerning first=260 second=210 amount=-2 -kerning first=55 second=234 amount=-1 -kerning first=195 second=364 amount=-2 -kerning first=313 second=277 amount=-1 -kerning first=1095 second=1079 amount=-1 -kerning first=215 second=1035 amount=-5 -kerning first=912 second=1098 amount=-3 -kerning first=928 second=101 amount=-1 -kerning first=95 second=1059 amount=-2 -kerning first=92 second=8212 amount=-2 -kerning first=361 second=353 amount=-1 -kerning first=956 second=263 amount=-1 -kerning first=121 second=235 amount=-1 -kerning first=193 second=8216 amount=-3 -kerning first=317 second=224 amount=-1 -kerning first=73 second=8250 amount=-1 -kerning first=82 second=86 amount=-1 -kerning first=931 second=279 amount=-1 -kerning first=923 second=970 amount=-1 -kerning first=102 second=248 amount=-1 -kerning first=242 second=378 amount=-1 -kerning first=962 second=213 amount=-2 -kerning first=259 second=8217 amount=-1 -kerning first=1037 second=355 amount=-1 -kerning first=1041 second=115 amount=-1 -kerning first=183 second=87 amount=-5 -kerning first=60 second=337 amount=-1 -kerning first=63 second=99 amount=-1 -kerning first=200 second=940 amount=-1 -kerning first=203 second=249 amount=-1 -kerning first=80 second=953 amount=-1 -kerning first=243 second=1078 amount=-2 -kerning first=963 second=368 amount=-2 -kerning first=126 second=338 amount=-2 -kerning first=162 second=100 amount=-1 -kerning first=271 second=250 amount=-1 -kerning first=41 second=352 amount=-1 -kerning first=184 second=262 amount=-2 -kerning first=296 second=1241 amount=-1 -kerning first=299 second=187 amount=-1 -kerning first=61 second=968 amount=-1 -kerning first=64 second=277 amount=-1 -kerning first=1080 second=227 amount=-1 -kerning first=207 second=199 amount=-2 -kerning first=321 second=1079 amount=-1 -kerning first=8372 second=269 amount=-1 -kerning first=327 second=89 amount=-5 -kerning first=87 second=211 amount=-2 -kerning first=224 second=1098 amount=-1 -kerning first=107 second=353 amount=-1 -kerning first=250 second=263 amount=-1 -kerning first=964 second=1066 amount=-5 -kerning first=961 second=8221 amount=-1 -kerning first=1049 second=240 amount=-1 -kerning first=188 second=212 amount=-2 -kerning first=205 second=1118 amount=-1 -kerning first=208 second=354 amount=-2 -kerning first=1107 second=8222 amount=-3 -kerning first=254 second=213 amount=-2 -kerning first=374 second=341 amount=-3 -kerning first=971 second=253 amount=-1 -kerning first=167 second=225 amount=-1 -kerning first=280 second=115 amount=-1 -kerning first=8211 second=1046 amount=-3 -kerning first=186 second=1185 amount=-3 -kerning first=189 second=367 amount=-1 -kerning first=209 second=1038 amount=-2 -kerning first=8377 second=947 amount=-4 -kerning first=904 second=1101 amount=-1 -kerning first=86 second=8218 amount=-4 -kerning first=1119 second=945 amount=-1 -kerning first=358 second=116 amount=-1 -kerning first=950 second=268 amount=-2 -kerning first=255 second=368 amount=-2 -kerning first=375 second=972 amount=-1 -kerning first=378 second=281 amount=-1 -kerning first=50 second=1241 amount=-1 -kerning first=53 second=187 amount=-1 -kerning first=310 second=227 amount=-1 -kerning first=70 second=1079 amount=-1 -kerning first=1096 second=269 amount=-1 -kerning first=76 second=89 amount=-6 -kerning first=910 second=973 amount=-2 -kerning first=96 second=251 amount=-1 -kerning first=256 second=1066 amount=-5 -kerning first=253 second=8221 amount=-3 -kerning first=1263 second=106 amount=1 -kerning first=1034 second=118 amount=-1 -kerning first=287 second=240 amount=-1 -kerning first=194 second=943 amount=-1 -kerning first=197 second=252 amount=-1 -kerning first=306 second=1256 amount=-2 -kerning first=77 second=266 amount=-2 -kerning first=80 second=39 amount=-3 -kerning first=332 second=8222 amount=-1 -kerning first=926 second=229 amount=-1 -kerning first=1184 second=119 amount=-3 -kerning first=952 second=1195 amount=-1 -kerning first=955 second=371 amount=-1 -kerning first=123 second=103 amount=-1 -kerning first=1298 second=286 amount=-2 -kerning first=380 second=1257 amount=-1 -kerning first=35 second=355 amount=-1 -kerning first=38 second=115 amount=-1 -kerning first=1028 second=1046 amount=-2 -kerning first=177 second=267 amount=-1 -kerning first=8240 second=346 amount=-1 -kerning first=1073 second=230 amount=-1 -kerning first=8363 second=273 amount=-1 -kerning first=8366 second=45 amount=-2 -kerning first=928 second=1240 amount=-2 -kerning first=956 second=1069 amount=-1 -kerning first=964 second=81 amount=-2 -kerning first=121 second=972 amount=-1 -kerning first=124 second=281 amount=-1 -kerning first=1039 second=243 amount=-1 -kerning first=62 second=227 amount=-1 -kerning first=205 second=117 amount=-1 -kerning first=202 second=357 amount=-1 -kerning first=322 second=269 amount=-1 -kerning first=8369 second=220 amount=-2 -kerning first=371 second=106 amount=1 -kerning first=161 second=228 amount=-1 -kerning first=274 second=118 amount=-4 -kerning first=43 second=240 amount=-1 -kerning first=1047 second=193 amount=-1 -kerning first=179 second=1194 amount=-2 -kerning first=183 second=370 amount=-2 -kerning first=298 second=283 amount=-1 -kerning first=60 second=1256 amount=-2 -kerning first=209 second=67 amount=-2 -kerning first=8370 second=375 amount=-1 -kerning first=80 second=8222 amount=-4 -kerning first=89 second=79 amount=-3 -kerning first=1116 second=257 amount=-1 -kerning first=352 second=119 amount=-1 -kerning first=249 second=371 amount=-1 -kerning first=369 second=1026 amount=-5 -kerning first=372 second=286 amount=-2 -kerning first=126 second=1257 amount=-1 -kerning first=1048 second=346 amount=-1 -kerning first=302 second=230 amount=-1 -kerning first=1084 second=273 amount=-1 -kerning first=1080 second=964 amount=-3 -kerning first=327 second=372 amount=-5 -kerning first=8366 second=8249 amount=-3 -kerning first=324 second=947 amount=-1 -kerning first=905 second=287 amount=-1 -kerning first=87 second=945 amount=-3 -kerning first=948 second=219 amount=-2 -kerning first=1202 second=1108 amount=-1 -kerning first=250 second=1069 amount=-1 -kerning first=256 second=81 amount=-2 -kerning first=376 second=231 amount=-4 -kerning first=973 second=121 amount=-1 -kerning first=8220 second=196 amount=-3 -kerning first=1049 second=1028 amount=-2 -kerning first=1062 second=288 amount=-1 -kerning first=300 second=1263 amount=-1 -kerning first=1118 second=1176 amount=-1 -kerning first=357 second=244 amount=-1 -kerning first=117 second=106 amount=1 -kerning first=1223 second=289 amount=-1 -kerning first=374 second=1298 amount=-5 -kerning first=167 second=962 amount=-1 -kerning first=8221 second=351 amount=-1 -kerning first=8225 second=111 amount=-1 -kerning first=52 second=283 amount=-1 -kerning first=1095 second=375 amount=-1 -kerning first=95 second=359 amount=-1 -kerning first=1119 second=8211 amount=-2 -kerning first=98 second=119 amount=-1 -kerning first=238 second=271 amount=-1 -kerning first=956 second=84 amount=-5 -kerning first=381 second=334 amount=-1 -kerning first=175 second=218 amount=-2 -kerning first=8222 second=1035 amount=-5 -kerning first=8226 second=291 amount=-1 -kerning first=56 second=230 amount=-1 -kerning first=196 second=360 amount=-2 -kerning first=317 second=45 amount=-2 -kerning first=314 second=273 amount=-1 -kerning first=310 second=964 amount=-4 -kerning first=73 second=947 amount=-4 -kerning first=76 second=372 amount=-4 -kerning first=923 second=335 amount=-1 -kerning first=931 second=97 amount=-1 -kerning first=958 second=259 amount=-1 -kerning first=962 second=34 amount=-3 -kerning first=122 second=231 amount=-1 -kerning first=37 second=243 amount=-1 -kerning first=176 second=373 amount=-4 -kerning first=287 second=1028 amount=-2 -kerning first=54 second=1263 amount=-1 -kerning first=1071 second=336 amount=-2 -kerning first=318 second=220 amount=-2 -kerning first=8365 second=171 amount=-3 -kerning first=223 second=232 amount=-1 -kerning first=338 second=1176 amount=-1 -kerning first=926 second=966 amount=-1 -kerning first=934 second=275 amount=-1 -kerning first=103 second=244 amount=-1 -kerning first=271 second=71 amount=-2 -kerning first=1044 second=111 amount=-1 -kerning first=184 second=83 amount=-1 -kerning first=296 second=233 amount=-1 -kerning first=61 second=333 amount=-1 -kerning first=204 second=245 amount=-1 -kerning first=321 second=375 amount=-1 -kerning first=84 second=257 amount=-2 -kerning first=250 second=84 amount=-5 -kerning first=964 second=364 amount=-2 -kerning first=160 second=334 amount=-2 -kerning first=273 second=246 amount=-1 -kerning first=124 second=1090 amount=-3 -kerning first=42 second=346 amount=-1 -kerning first=1039 second=1035 amount=-5 -kerning first=65 second=273 amount=-1 -kerning first=62 second=964 amount=-3 -kerning first=317 second=8249 amount=-3 -kerning first=903 second=235 amount=-1 -kerning first=105 second=1108 amount=-1 -kerning first=108 second=347 amount=-1 -kerning first=251 second=259 amount=-1 -kerning first=254 second=34 amount=-3 -kerning first=962 second=8216 amount=-3 -kerning first=161 second=965 amount=-1 -kerning first=8211 second=354 amount=-4 -kerning first=43 second=1028 amount=-2 -kerning first=46 second=288 amount=-1 -kerning first=301 second=336 amount=-2 -kerning first=69 second=220 amount=-2 -kerning first=1087 second=171 amount=-3 -kerning first=209 second=350 amount=-1 -kerning first=86 second=1176 amount=-1 -kerning first=1108 second=8217 amount=-1 -kerning first=235 second=47 amount=-1 -kerning first=950 second=87 amount=-5 -kerning first=372 second=1096 amount=-2 -kerning first=375 second=337 amount=-1 -kerning first=378 second=99 amount=-1 -kerning first=168 second=221 amount=-5 -kerning first=278 second=351 amount=-1 -kerning first=50 second=233 amount=-1 -kerning first=190 second=363 amount=-1 -kerning first=70 second=375 amount=-1 -kerning first=910 second=338 amount=-3 -kerning first=915 second=100 amount=-1 -kerning first=87 second=8211 amount=-2 -kerning first=1171 second=250 amount=-1 -kerning first=1168 second=941 amount=-1 -kerning first=356 second=352 amount=-1 -kerning first=951 second=262 amount=-2 -kerning first=1220 second=1241 amount=-1 -kerning first=256 second=364 amount=-2 -kerning first=376 second=968 amount=-2 -kerning first=379 second=277 amount=-1 -kerning first=1027 second=199 amount=-2 -kerning first=169 second=376 amount=-5 -kerning first=282 second=291 amount=-1 -kerning first=1065 second=339 amount=-1 -kerning first=188 second=8212 amount=-2 -kerning first=191 second=1059 amount=-2 -kerning first=1062 second=1098 amount=-2 -kerning first=77 second=85 amount=-2 -kerning first=1097 second=263 amount=-1 -kerning first=955 second=212 amount=-2 -kerning first=254 second=8216 amount=-3 -kerning first=1028 second=354 amount=-1 -kerning first=167 second=8250 amount=-1 -kerning first=55 second=336 amount=-2 -kerning first=198 second=248 amount=-1 -kerning first=316 second=171 amount=-3 -kerning first=333 second=8217 amount=-1 -kerning first=928 second=225 amount=-1 -kerning first=1185 second=115 amount=-1 -kerning first=953 second=1185 amount=-2 -kerning first=956 second=367 amount=-1 -kerning first=121 second=337 amount=-1 -kerning first=124 second=99 amount=-1 -kerning first=1240 second=379 amount=-1 -kerning first=36 second=351 amount=-1 -kerning first=39 second=111 amount=-1 -kerning first=175 second=953 amount=-1 -kerning first=178 second=261 amount=-1 -kerning first=8226 second=1101 amount=-1 -kerning first=1074 second=226 amount=-1 -kerning first=8364 second=268 amount=-2 -kerning first=365 second=1241 amount=-1 -kerning first=125 second=277 amount=-1 -kerning first=37 second=1035 amount=-5 -kerning first=40 second=291 amount=-1 -kerning first=183 second=211 amount=-2 -kerning first=298 second=101 amount=-1 -kerning first=203 second=353 amount=-1 -kerning first=206 second=113 amount=-1 -kerning first=323 second=263 amount=-1 -kerning first=8370 second=216 amount=-2 -kerning first=1103 second=1066 amount=-5 -kerning first=947 second=240 amount=-1 -kerning first=249 second=212 amount=-2 -kerning first=372 second=102 amount=-1 -kerning first=963 second=943 amount=-1 -kerning first=162 second=224 amount=-1 -kerning first=271 second=354 amount=-5 -kerning first=180 second=1184 amount=-5 -kerning first=184 second=366 amount=-2 -kerning first=299 second=279 amount=-1 -kerning first=296 second=970 amount=-1 -kerning first=67 second=171 amount=-1 -kerning first=327 second=213 amount=-2 -kerning first=8366 second=1195 amount=-1 -kerning first=8372 second=371 amount=-1 -kerning first=905 second=103 amount=-1 -kerning first=1117 second=253 amount=-1 -kerning first=944 second=267 amount=-1 -kerning first=250 second=367 amount=-1 -kerning first=247 second=1185 amount=-3 -kerning first=273 second=1038 amount=-2 -kerning first=8216 second=242 amount=-1 -kerning first=1046 second=1101 amount=-2 -kerning first=303 second=226 amount=-1 -kerning first=1085 second=268 amount=-2 -kerning first=903 second=972 amount=-1 -kerning first=906 second=281 amount=-1 -kerning first=91 second=250 amount=-1 -kerning first=88 second=941 amount=-2 -kerning first=248 second=8220 amount=-1 -kerning first=971 second=357 amount=-1 -kerning first=164 second=1079 amount=-1 -kerning first=170 second=89 amount=-5 -kerning first=46 second=1098 amount=-3 -kerning first=49 second=339 amount=-1 -kerning first=1051 second=973 amount=-1 -kerning first=52 second=101 amount=-1 -kerning first=192 second=251 amount=-1 -kerning first=75 second=38 amount=-2 -kerning first=72 second=263 amount=-1 -kerning first=1095 second=216 amount=-2 -kerning first=330 second=1066 amount=-5 -kerning first=326 second=8221 amount=-1 -kerning first=912 second=228 amount=-1 -kerning first=358 second=240 amount=-1 -kerning first=946 second=1194 amount=-2 -kerning first=950 second=370 amount=-2 -kerning first=1224 second=283 amount=-1 -kerning first=255 second=943 amount=-1 -kerning first=258 second=252 amount=-1 -kerning first=375 second=1256 amount=-2 -kerning first=175 second=39 amount=-3 -kerning first=53 second=279 amount=-1 -kerning first=50 second=970 amount=-1 -kerning first=1067 second=229 amount=-1 -kerning first=76 second=213 amount=-1 -kerning first=1090 second=1195 amount=-1 -kerning first=1096 second=371 amount=-1 -kerning first=910 second=1257 amount=-4 -kerning first=96 second=355 amount=-1 -kerning first=239 second=267 amount=-1 -kerning first=1263 second=230 amount=-1 -kerning first=176 second=214 amount=-2 -kerning first=282 second=1101 amount=-1 -kerning first=8230 second=287 amount=-1 -kerning first=57 second=226 amount=-1 -kerning first=1065 second=1262 amount=-1 -kerning first=197 second=356 amount=-5 -kerning first=200 second=116 amount=-1 -kerning first=315 second=268 amount=-1 -kerning first=77 second=368 amount=-2 -kerning first=1103 second=81 amount=-2 -kerning first=1184 second=243 amount=-2 -kerning first=123 second=227 amount=-1 -kerning first=177 second=369 amount=-1 -kerning first=8260 second=232 amount=-1 -kerning first=1073 second=332 amount=-2 -kerning first=321 second=216 amount=-2 -kerning first=8363 second=374 amount=-5 -kerning first=78 second=1066 amount=-5 -kerning first=928 second=962 amount=-1 -kerning first=1194 second=193 amount=-1 -kerning first=367 second=283 amount=-1 -kerning first=121 second=1256 amount=-2 -kerning first=266 second=1044 amount=-1 -kerning first=273 second=67 amount=-2 -kerning first=185 second=79 amount=-2 -kerning first=297 second=229 amount=-1 -kerning first=1074 second=963 amount=-1 -kerning first=1078 second=271 amount=-2 -kerning first=202 second=920 amount=-2 -kerning first=322 second=371 amount=-1 -kerning first=317 second=1195 amount=-1 -kerning first=900 second=286 amount=-2 -kerning first=942 second=218 amount=-2 -kerning first=371 second=230 amount=-1 -kerning first=965 second=360 amount=-2 -kerning first=270 second=923 amount=-2 -kerning first=274 second=242 amount=-1 -kerning first=40 second=1101 amount=-1 -kerning first=183 second=945 amount=-1 -kerning first=298 second=1240 amount=-2 -kerning first=1083 second=219 amount=-2 -kerning first=323 second=1069 amount=-1 -kerning first=330 second=81 amount=-2 -kerning first=904 second=231 amount=-1 -kerning first=8377 second=259 amount=-1 -kerning first=1108 second=1175 amount=-1 -kerning first=1119 second=121 amount=-1 -kerning first=943 second=373 amount=-2 -kerning first=1206 second=288 amount=-1 -kerning first=369 second=1263 amount=-1 -kerning first=165 second=269 amount=-1 -kerning first=8212 second=350 amount=-1 -kerning first=44 second=973 amount=-1 -kerning first=302 second=332 amount=-2 -kerning first=70 second=216 amount=-1 -kerning first=1084 second=374 amount=-5 -kerning first=93 second=118 amount=-4 -kerning first=1171 second=71 amount=-2 -kerning first=356 second=193 amount=-6 -kerning first=951 second=83 amount=-1 -kerning first=113 second=283 amount=-1 -kerning first=1220 second=233 amount=-1 -kerning first=376 second=333 amount=-4 -kerning first=973 second=245 amount=-1 -kerning first=169 second=217 amount=-2 -kerning first=51 second=229 amount=-1 -kerning first=194 second=119 amount=-4 -kerning first=191 second=359 amount=-1 -kerning first=303 second=963 amount=-1 -kerning first=306 second=271 amount=-1 -kerning first=211 second=1026 amount=-2 -kerning first=214 second=286 amount=-2 -kerning first=906 second=1090 amount=-3 -kerning first=1174 second=246 amount=-1 -kerning first=237 second=218 amount=-2 -kerning first=357 second=346 amount=-1 -kerning first=354 second=1107 amount=-2 -kerning first=117 second=230 amount=-1 -kerning first=380 second=273 amount=-1 -kerning first=167 second=947 amount=-4 -kerning first=170 second=372 amount=-5 -kerning first=8225 second=235 amount=-1 -kerning first=52 second=1240 amount=-2 -kerning first=49 second=1262 amount=-2 -kerning first=313 second=219 amount=-1 -kerning first=72 second=1069 amount=-1 -kerning first=78 second=81 amount=-2 -kerning first=1101 second=34 amount=-1 -kerning first=333 second=1175 amount=-2 -kerning first=912 second=965 amount=-1 -kerning first=238 second=373 amount=-4 -kerning first=358 second=1028 amount=-2 -kerning first=361 second=288 amount=-2 -kerning first=289 second=232 amount=-1 -kerning first=56 second=332 amount=-2 -kerning first=1067 second=966 amount=-1 -kerning first=314 second=374 amount=-5 -kerning first=8364 second=87 amount=-5 -kerning first=79 second=256 amount=-2 -kerning first=216 second=1298 amount=-1 -kerning first=931 second=221 amount=-5 -kerning first=1186 second=111 amount=-1 -kerning first=365 second=233 amount=-1 -kerning first=958 second=363 amount=-1 -kerning first=122 second=333 amount=-1 -kerning first=1037 second=290 amount=-2 -kerning first=176 second=949 amount=-1 -kerning first=179 second=257 amount=-1 -kerning first=57 second=963 amount=-1 -kerning first=60 second=271 amount=-1 -kerning first=323 second=84 amount=-5 -kerning first=8365 second=262 amount=-2 -kerning first=1103 second=364 amount=-2 -kerning first=223 second=334 amount=-2 -kerning first=934 second=376 amount=-5 -kerning first=103 second=346 amount=-1 -kerning first=955 second=8212 amount=-2 -kerning first=960 second=1059 amount=-2 -kerning first=126 second=273 amount=-1 -kerning first=162 second=45 amount=-2 -kerning first=123 second=964 amount=-3 -kerning first=41 second=287 amount=-1 -kerning first=1044 second=235 amount=-1 -kerning first=296 second=335 amount=-1 -kerning first=299 second=97 amount=-1 -kerning first=64 second=219 amount=-2 -kerning first=201 second=1108 amount=-1 -kerning first=204 second=347 amount=-1 -kerning first=327 second=34 amount=-3 -kerning first=8372 second=212 amount=-2 -kerning first=84 second=361 amount=-2 -kerning first=87 second=121 amount=-1 -kerning first=1101 second=8216 amount=-1 -kerning first=230 second=46 amount=-1 -kerning first=350 second=196 amount=-1 -kerning first=928 second=8250 amount=-1 -kerning first=967 second=248 amount=-1 -kerning first=163 second=220 amount=-2 -kerning first=273 second=350 amount=-1 -kerning first=182 second=1176 amount=-1 -kerning first=185 second=362 amount=-2 -kerning first=297 second=966 amount=-1 -kerning first=300 second=275 amount=-1 -kerning first=65 second=374 amount=-5 -kerning first=1085 second=87 amount=-5 -kerning first=8369 second=1185 amount=-3 -kerning first=903 second=337 amount=-1 -kerning first=906 second=99 amount=-1 -kerning first=91 second=71 amount=-2 -kerning first=1118 second=249 amount=-1 -kerning first=942 second=953 amount=-1 -kerning first=354 second=111 amount=-3 -kerning first=251 second=363 amount=-1 -kerning first=164 second=375 amount=-1 -kerning first=1051 second=338 amount=-2 -kerning first=183 second=8211 amount=-2 -kerning first=1063 second=100 amount=-1 -kerning first=72 second=84 amount=-5 -kerning first=1087 second=262 amount=-2 -kerning first=330 second=364 amount=-2 -kerning first=8370 second=8220 amount=-3 -kerning first=904 second=968 amount=-1 -kerning first=92 second=246 amount=-1 -kerning first=1170 second=199 amount=-2 -kerning first=352 second=1035 amount=-1 -kerning first=950 second=211 amount=-2 -kerning first=1206 second=1098 amount=-2 -kerning first=249 second=8212 amount=-2 -kerning first=252 second=1059 amount=-2 -kerning first=1219 second=339 amount=-1 -kerning first=1224 second=101 amount=-1 -kerning first=1026 second=113 amount=-1 -kerning first=162 second=8249 amount=-3 -kerning first=47 second=1094 amount=-1 -kerning first=50 second=335 amount=-1 -kerning first=53 second=97 amount=-1 -kerning first=70 second=951 amount=-1 -kerning first=73 second=259 amount=-1 -kerning first=1096 second=212 amount=-2 -kerning first=76 second=34 amount=-3 -kerning first=327 second=8216 amount=-3 -kerning first=915 second=224 amount=-1 -kerning first=1171 second=354 amount=-5 -kerning first=1168 second=1118 amount=-1 -kerning first=948 second=1184 amount=-5 -kerning first=951 second=366 amount=-2 -kerning first=1220 second=970 amount=-1 -kerning first=1034 second=63 amount=-5 -kerning first=8230 second=103 amount=-1 -kerning first=51 second=966 amount=-1 -kerning first=54 second=275 amount=-1 -kerning first=315 second=87 amount=-4 -kerning first=1094 second=1185 amount=-2 -kerning first=338 second=249 amount=-1 -kerning first=100 second=111 amount=-1 -kerning first=1174 second=1038 amount=-1 -kerning first=240 second=261 amount=-1 -kerning first=237 second=953 amount=-1 -kerning first=1298 second=226 amount=-1 -kerning first=35 second=290 amount=-2 -kerning first=177 second=210 amount=-2 -kerning first=291 second=100 amount=-1 -kerning first=8225 second=972 amount=-1 -kerning first=8240 second=281 amount=-1 -kerning first=198 second=352 amount=-1 -kerning first=316 second=262 amount=-2 -kerning first=78 second=364 amount=-2 -kerning first=1095 second=8220 amount=-3 -kerning first=221 second=277 amount=-4 -kerning first=936 second=89 amount=-5 -kerning first=361 second=1098 amount=-3 -kerning first=367 second=101 amount=-1 -kerning first=1240 second=955 amount=-2 -kerning first=39 second=235 amount=-1 -kerning first=178 second=365 amount=-1 -kerning first=322 second=212 amount=-2 -kerning first=8361 second=1194 amount=-2 -kerning first=8364 second=370 amount=-2 -kerning first=76 second=8216 amount=-3 -kerning first=942 second=39 amount=-3 -kerning first=365 second=970 amount=-1 -kerning first=161 second=171 amount=-3 -kerning first=176 second=8217 amount=-3 -kerning first=298 second=225 amount=-1 -kerning first=66 second=87 amount=-1 -kerning first=318 second=1185 amount=-3 -kerning first=323 second=367 amount=-1 -kerning first=86 second=249 amount=-2 -kerning first=243 second=8218 amount=-1 -kerning first=372 second=226 amount=-2 -kerning first=47 second=100 amount=-2 -kerning first=1044 second=972 amount=-1 -kerning first=1048 second=281 amount=-1 -kerning first=184 second=941 amount=-1 -kerning first=44 second=338 amount=-1 -kerning first=207 second=1241 amount=-1 -kerning first=321 second=8220 amount=-3 -kerning first=905 second=227 amount=-1 -kerning first=90 second=199 amount=-1 -kerning first=1117 second=357 amount=-1 -kerning first=1168 second=117 amount=-1 -kerning first=944 second=369 amount=-1 -kerning first=113 second=101 amount=-1 -kerning first=253 second=251 amount=-1 -kerning first=166 second=263 amount=-1 -kerning first=1081 second=1194 amount=-2 -kerning first=1085 second=370 amount=-2 -kerning first=903 second=1256 amount=-2 -kerning first=88 second=1118 amount=-1 -kerning first=91 second=354 amount=-5 -kerning first=1174 second=67 amount=-1 -kerning first=237 second=39 amount=-3 -kerning first=952 second=79 amount=-2 -kerning first=114 second=279 amount=-1 -kerning first=1223 second=229 amount=-1 -kerning first=374 second=1081 amount=-3 -kerning first=971 second=920 amount=-2 -kerning first=170 second=213 amount=-2 -kerning first=1051 second=1257 amount=-1 -kerning first=52 second=225 amount=-1 -kerning first=192 second=355 amount=-1 -kerning first=195 second=115 amount=-1 -kerning first=69 second=1185 amount=-3 -kerning first=72 second=367 amount=-1 -kerning first=92 second=1038 amount=-2 -kerning first=1175 second=242 amount=-1 -kerning first=238 second=214 amount=-2 -kerning first=950 second=945 amount=-1 -kerning first=118 second=226 amount=-1 -kerning first=1224 second=1240 amount=-2 -kerning first=1219 second=1262 amount=-2 -kerning first=258 second=356 amount=-5 -kerning first=381 second=268 amount=-1 -kerning first=8226 second=231 amount=-1 -kerning first=199 second=65 amount=-1 -kerning first=70 second=8220 amount=-3 -kerning first=923 second=269 amount=-1 -kerning first=239 second=369 amount=-1 -kerning first=1263 second=332 amount=-2 -kerning first=1037 second=106 amount=1 -kerning first=172 second=1066 amount=-5 -kerning first=169 second=8221 amount=-3 -kerning first=200 second=240 amount=-1 -kerning first=315 second=370 amount=-1 -kerning first=8365 second=83 amount=-1 -kerning first=77 second=943 amount=-1 -kerning first=80 second=252 amount=-1 -kerning first=934 second=217 amount=-2 -kerning first=963 second=119 amount=-4 -kerning first=960 second=359 amount=-1 -kerning first=1298 second=963 amount=-1 -kerning first=41 second=103 amount=-1 -kerning first=1035 second=1026 amount=-5 -kerning first=180 second=253 amount=-1 -kerning first=8260 second=334 amount=-2 -kerning first=8240 second=1090 amount=-3 -kerning first=61 second=267 amount=-1 -kerning first=1113 second=120 amount=-2 -kerning first=345 second=242 amount=-1 -kerning first=928 second=947 amount=-4 -kerning first=936 second=372 amount=-5 -kerning first=367 second=1240 amount=-2 -kerning first=160 second=268 amount=-2 -kerning first=42 second=281 amount=-1 -kerning first=39 second=972 amount=-1 -kerning first=1046 second=231 amount=-2 -kerning first=88 second=117 amount=-1 -kerning first=105 second=973 amount=-1 -kerning first=1203 second=232 amount=-1 -kerning first=371 second=332 amount=-2 -kerning first=968 second=244 amount=-1 -kerning first=164 second=216 amount=-2 -kerning first=189 second=118 amount=-4 -kerning first=298 second=962 amount=-1 -kerning first=63 second=1194 amount=-2 -kerning first=1075 second=8230 amount=-3 -kerning first=1087 second=83 amount=-1 -kerning first=209 second=283 amount=-1 -kerning first=8377 second=363 amount=-1 -kerning first=8370 second=1177 amount=-1 -kerning first=904 second=333 amount=-1 -kerning first=92 second=67 amount=-2 -kerning first=1119 second=245 amount=-1 -kerning first=946 second=257 amount=-1 -kerning first=252 second=359 amount=-1 -kerning first=255 second=119 amount=-4 -kerning first=375 second=271 amount=-1 -kerning first=372 second=963 amount=-3 -kerning first=162 second=1195 amount=-1 -kerning first=165 second=371 amount=-1 -kerning first=278 second=286 amount=-2 -kerning first=1048 second=1090 amount=-3 -kerning first=187 second=1046 amount=-3 -kerning first=305 second=218 amount=-2 -kerning first=8372 second=8212 amount=-2 -kerning first=8378 second=1059 amount=-2 -kerning first=905 second=964 amount=-3 -kerning first=915 second=45 amount=-2 -kerning first=93 second=242 amount=-1 -kerning first=910 second=273 amount=-4 -kerning first=230 second=947 amount=-1 -kerning first=356 second=287 amount=-2 -kerning first=113 second=1240 amount=-2 -kerning first=1220 second=335 amount=-1 -kerning first=973 second=347 amount=-1 -kerning first=166 second=1069 amount=-1 -kerning first=172 second=81 amount=-2 -kerning first=282 second=231 amount=-1 -kerning first=194 second=243 amount=-1 -kerning first=306 second=373 amount=-4 -kerning first=916 second=220 amount=-2 -kerning first=1169 second=1113 amount=-3 -kerning first=952 second=362 amount=-2 -kerning first=117 second=332 amount=-2 -kerning first=1223 second=966 amount=-1 -kerning first=260 second=244 amount=-1 -kerning first=35 second=106 amount=1 -kerning first=8225 second=337 amount=-1 -kerning first=8240 second=99 amount=-1 -kerning first=52 second=962 amount=-1 -kerning first=1069 second=221 amount=-3 -kerning first=316 second=83 amount=-1 -kerning first=1095 second=1177 amount=-1 -kerning first=1178 second=290 amount=-1 -kerning first=238 second=949 amount=-1 -kerning first=950 second=8211 amount=-2 -kerning first=121 second=271 amount=-1 -kerning first=118 second=963 amount=-1 -kerning first=266 second=194 amount=-1 -kerning first=36 second=286 amount=-2 -kerning first=39 second=56 amount=-1 -kerning first=1036 second=234 amount=-2 -kerning first=289 second=334 amount=-2 -kerning first=8226 second=968 amount=-1 -kerning first=59 second=218 amount=-2 -kerning first=1070 second=376 amount=-3 -kerning first=8364 second=211 amount=-2 -kerning first=1096 second=8212 amount=-2 -kerning first=1099 second=1059 amount=-2 -kerning first=915 second=8249 amount=-3 -kerning first=102 second=287 amount=-1 -kerning first=1186 second=235 amount=-1 -kerning first=365 second=335 amount=-1 -kerning first=125 second=219 amount=-2 -kerning first=40 second=231 amount=-1 -kerning first=179 second=361 amount=-1 -kerning first=183 second=121 amount=-1 -kerning first=60 second=373 amount=-4 -kerning first=200 second=1028 amount=-2 -kerning first=203 second=288 amount=-2 -kerning first=8365 second=366 amount=-2 -kerning first=369 second=275 amount=-1 -kerning first=372 second=47 amount=-3 -kerning first=126 second=374 amount=-5 -kerning first=268 second=1033 amount=-1 -kerning first=271 second=289 amount=-1 -kerning first=1044 second=337 amount=-1 -kerning first=1048 second=99 amount=-1 -kerning first=299 second=221 amount=-5 -kerning first=1080 second=261 amount=-1 -kerning first=207 second=233 amount=-1 -kerning first=321 second=1177 amount=-1 -kerning first=87 second=245 amount=-3 -kerning first=944 second=210 amount=-2 -kerning first=1202 second=338 amount=-1 -kerning first=1207 second=100 amount=-1 -kerning first=967 second=352 amount=-1 -kerning first=166 second=84 amount=-5 -kerning first=276 second=234 amount=-1 -kerning first=42 second=1090 amount=-3 -kerning first=1049 second=277 amount=-1 -kerning first=188 second=246 amount=-1 -kerning first=1046 second=968 amount=-1 -kerning first=300 second=376 amount=-5 -kerning first=65 second=950 amount=-1 -kerning first=1085 second=211 amount=-2 -kerning first=68 second=258 amount=-2 -kerning first=325 second=1059 amount=-2 -kerning first=322 second=8212 amount=-2 -kerning first=1118 second=353 amount=-1 -kerning first=1169 second=113 amount=-1 -kerning first=354 second=235 amount=-3 -kerning first=114 second=97 amount=-1 -kerning first=167 second=259 amount=-1 -kerning first=170 second=34 amount=-3 -kerning first=46 second=965 amount=-1 -kerning first=1063 second=224 amount=-1 -kerning first=298 second=8250 amount=-1 -kerning first=1083 second=1184 amount=-5 -kerning first=1087 second=366 amount=-2 -kerning first=912 second=171 amount=-3 -kerning first=92 second=350 amount=-1 -kerning first=118 second=47 amount=-3 -kerning first=1224 second=225 amount=-1 -kerning first=53 second=221 amount=-5 -kerning first=196 second=111 amount=-1 -kerning first=193 second=351 amount=-1 -kerning first=305 second=953 amount=-1 -kerning first=310 second=261 amount=-1 -kerning first=70 second=1177 amount=-1 -kerning first=73 second=363 amount=-1 -kerning first=213 second=967 amount=-1 -kerning first=910 second=1078 amount=-2 -kerning first=96 second=290 amount=-2 -kerning first=239 second=210 amount=-2 -kerning first=356 second=1097 amount=-2 -kerning first=951 second=941 amount=-1 -kerning first=34 second=234 amount=-1 -kerning first=1027 second=1241 amount=-1 -kerning first=172 second=364 amount=-2 -kerning first=282 second=968 amount=-1 -kerning first=287 second=277 amount=-1 -kerning first=54 second=376 amount=-5 -kerning first=194 second=1035 amount=-5 -kerning first=197 second=291 amount=-1 -kerning first=1071 second=89 amount=-5 -kerning first=315 second=211 amount=-1 -kerning first=74 second=1059 amount=-2 -kerning first=338 second=353 amount=-1 -kerning first=341 second=113 amount=-1 -kerning first=926 second=263 amount=-1 -kerning first=100 second=235 amount=-1 -kerning first=240 second=365 amount=-1 -kerning first=170 second=8216 amount=-3 -kerning first=291 second=224 amount=-1 -kerning first=8225 second=1256 amount=-2 -kerning first=52 second=8250 amount=-1 -kerning first=1073 second=266 amount=-2 -kerning first=313 second=1184 amount=-6 -kerning first=316 second=366 amount=-2 -kerning first=8366 second=79 amount=-2 -kerning first=221 second=378 amount=-2 -kerning first=936 second=213 amount=-2 -kerning first=238 second=8217 amount=-3 -kerning first=367 second=225 amount=-1 -kerning first=964 second=115 amount=-1 -kerning first=160 second=87 amount=-5 -kerning first=39 second=337 amount=-1 -kerning first=42 second=99 amount=-1 -kerning first=182 second=249 amount=-1 -kerning first=178 second=940 amount=-1 -kerning first=62 second=261 amount=-1 -kerning first=59 second=953 amount=-1 -kerning first=8364 second=945 amount=-1 -kerning first=900 second=226 amount=-1 -kerning first=85 second=198 amount=-2 -kerning first=105 second=338 amount=-2 -kerning first=108 second=100 amount=-1 -kerning first=1186 second=972 amount=-1 -kerning first=161 second=262 amount=-2 -kerning first=274 second=187 amount=-1 -kerning first=40 second=968 amount=-1 -kerning first=46 second=49 amount=-4 -kerning first=43 second=277 amount=-1 -kerning first=186 second=199 amount=-2 -kerning first=301 second=89 amount=-5 -kerning first=206 second=339 amount=-1 -kerning first=209 second=101 amount=-1 -kerning first=203 second=1098 amount=-3 -kerning first=86 second=353 amount=-1 -kerning first=89 second=113 amount=-4 -kerning first=934 second=8221 amount=-3 -kerning first=165 second=212 amount=-2 -kerning first=8218 second=55 amount=-1 -kerning first=47 second=224 amount=-2 -kerning first=1044 second=1256 amount=-1 -kerning first=184 second=1118 amount=-1 -kerning first=187 second=354 amount=-3 -kerning first=302 second=266 amount=-2 -kerning first=305 second=39 amount=-3 -kerning first=64 second=1184 amount=-5 -kerning first=207 second=970 amount=-1 -kerning first=8378 second=359 amount=-1 -kerning first=1117 second=920 amount=-2 -kerning first=356 second=103 amount=-2 -kerning first=948 second=253 amount=-1 -kerning first=113 second=225 amount=-1 -kerning first=1202 second=1257 amount=-1 -kerning first=253 second=355 amount=-1 -kerning first=256 second=115 amount=-1 -kerning first=376 second=267 amount=-4 -kerning first=166 second=367 amount=-1 -kerning first=163 second=1185 amount=-3 -kerning first=8220 second=230 amount=-1 -kerning first=188 second=1038 amount=-2 -kerning first=306 second=214 amount=-2 -kerning first=1085 second=945 amount=-1 -kerning first=214 second=226 amount=-1 -kerning first=332 second=356 amount=-2 -kerning first=354 second=972 amount=-3 -kerning first=357 second=281 amount=-1 -kerning first=164 second=8220 amount=-3 -kerning first=55 second=89 amount=-5 -kerning first=49 second=1079 amount=-1 -kerning first=75 second=251 amount=-1 -kerning first=232 second=8221 amount=-1 -kerning first=1178 second=106 amount=7 -kerning first=361 second=228 amount=-1 -kerning first=956 second=118 amount=-4 -kerning first=1224 second=962 amount=-1 -kerning first=175 second=252 amount=-1 -kerning first=8226 second=333 amount=-1 -kerning first=56 second=266 amount=-2 -kerning first=59 second=39 amount=-3 -kerning first=317 second=79 amount=-2 -kerning first=8361 second=257 amount=-1 -kerning first=1099 second=359 amount=-1 -kerning first=1102 second=119 amount=-1 -kerning first=915 second=1195 amount=-1 -kerning first=923 second=371 amount=-1 -kerning first=1176 second=1026 amount=-5 -kerning first=102 second=103 amount=-1 -kerning first=122 second=267 amount=-1 -kerning first=1037 second=230 amount=-1 -kerning first=8230 second=964 amount=-3 -kerning first=60 second=214 amount=-2 -kerning first=1071 second=372 amount=-5 -kerning first=1068 second=947 amount=-1 -kerning first=197 second=1101 amount=-1 -kerning first=315 second=945 amount=-1 -kerning first=80 second=356 amount=-5 -kerning first=223 second=268 amount=-2 -kerning first=926 second=1069 amount=-1 -kerning first=100 second=972 amount=-1 -kerning first=103 second=281 amount=-1 -kerning first=1187 second=231 amount=-1 -kerning first=963 second=243 amount=-1 -kerning first=41 second=227 amount=-1 -kerning first=1035 second=1263 amount=-1 -kerning first=180 second=357 amount=-1 -kerning first=184 second=117 amount=-1 -kerning first=296 second=269 amount=-1 -kerning first=61 second=369 amount=-1 -kerning first=201 second=973 amount=-1 -kerning first=8363 second=1176 amount=-1 -kerning first=8366 second=362 amount=-2 -kerning first=350 second=106 amount=1 -kerning first=107 second=228 amount=-1 -kerning first=250 second=118 amount=-4 -kerning first=367 second=962 amount=-1 -kerning first=124 second=1194 amount=-2 -kerning first=160 second=370 amount=-2 -kerning first=273 second=283 amount=-1 -kerning first=1046 second=333 amount=-2 -kerning first=188 second=67 amount=-2 -kerning first=300 second=217 amount=-2 -kerning first=1081 second=257 amount=-1 -kerning first=1078 second=949 amount=-2 -kerning first=325 second=359 amount=-1 -kerning first=8364 second=8211 amount=-2 -kerning first=328 second=119 amount=-1 -kerning first=900 second=963 amount=-1 -kerning first=903 second=271 amount=-1 -kerning first=346 second=1026 amount=-1 -kerning first=105 second=1257 amount=-1 -kerning first=968 second=346 amount=-1 -kerning first=1063 second=45 amount=-2 -kerning first=189 second=242 amount=-1 -kerning first=1051 second=273 amount=-1 -kerning first=298 second=947 amount=-4 -kerning first=301 second=372 amount=-5 -kerning first=206 second=1262 amount=-2 -kerning first=209 second=1240 amount=-2 -kerning first=1116 second=1108 amount=-2 -kerning first=1119 second=347 amount=-1 -kerning first=946 second=361 amount=-1 -kerning first=950 second=121 amount=-1 -kerning first=255 second=243 amount=-1 -kerning first=375 second=373 amount=-4 -kerning first=8218 second=336 amount=-1 -kerning first=50 second=269 amount=-1 -kerning first=1064 second=220 amount=-2 -kerning first=1084 second=1176 amount=-1 -kerning first=96 second=106 amount=1 -kerning first=1171 second=289 amount=-1 -kerning first=113 second=962 amount=-1 -kerning first=1256 second=221 amount=-3 -kerning first=376 second=1071 amount=-2 -kerning first=373 second=8230 amount=-2 -kerning first=1027 second=233 amount=-1 -kerning first=282 second=333 amount=-1 -kerning first=8230 second=48 amount=-1 -kerning first=54 second=217 amount=-2 -kerning first=306 second=949 amount=-1 -kerning first=311 second=257 amount=-1 -kerning first=77 second=119 amount=-4 -kerning first=1085 second=8211 amount=-2 -kerning first=74 second=359 amount=-1 -kerning first=214 second=963 amount=-1 -kerning first=220 second=44 amount=-1 -kerning first=926 second=84 amount=-5 -kerning first=94 second=1026 amount=-5 -kerning first=357 second=1090 amount=-3 -kerning first=955 second=246 amount=-1 -kerning first=260 second=346 amount=-1 -kerning first=35 second=230 amount=-1 -kerning first=174 second=360 amount=-2 -kerning first=283 second=964 amount=-1 -kerning first=291 second=45 amount=-2 -kerning first=52 second=947 amount=-4 -kerning first=55 second=372 amount=-5 -kerning first=1063 second=8249 amount=-3 -kerning first=1073 second=85 amount=-2 -kerning first=198 second=287 amount=-1 -kerning first=928 second=259 amount=-1 -kerning first=936 second=34 amount=-3 -kerning first=361 second=965 amount=-1 -kerning first=121 second=373 amount=-4 -kerning first=1224 second=8250 amount=-1 -kerning first=1036 second=336 amount=-3 -kerning first=294 second=220 amount=-2 -kerning first=202 second=232 amount=-1 -kerning first=317 second=362 amount=-2 -kerning first=314 second=1176 amount=-1 -kerning first=222 second=374 amount=-3 -kerning first=343 second=289 amount=-1 -kerning first=1186 second=337 amount=-1 -kerning first=965 second=111 amount=-1 -kerning first=962 second=351 amount=-1 -kerning first=161 second=83 amount=-1 -kerning first=119 second=8230 amount=-2 -kerning first=40 second=333 amount=-1 -kerning first=183 second=245 amount=-1 -kerning first=8250 second=1078 amount=-2 -kerning first=60 second=949 amount=-1 -kerning first=63 second=257 amount=-1 -kerning first=315 second=8211 amount=-3 -kerning first=8370 second=250 amount=-1 -kerning first=8365 second=941 amount=-1 -kerning first=86 second=194 amount=-6 -kerning first=103 second=1090 amount=-3 -kerning first=947 second=277 amount=-1 -kerning first=249 second=246 amount=-1 -kerning first=369 second=376 amount=-5 -kerning first=963 second=1035 amount=-5 -kerning first=41 second=964 amount=-3 -kerning first=47 second=45 amount=-1 -kerning first=291 second=8249 amount=-3 -kerning first=302 second=85 amount=-2 -kerning first=1080 second=365 amount=-1 -kerning first=207 second=335 amount=-1 -kerning first=84 second=1108 amount=-3 -kerning first=87 second=347 amount=-2 -kerning first=233 second=34 amount=-1 -kerning first=936 second=8216 amount=-3 -kerning first=113 second=46 amount=2 -kerning first=367 second=8250 amount=-1 -kerning first=276 second=336 amount=-2 -kerning first=48 second=220 amount=-2 -kerning first=8216 second=279 amount=-1 -kerning first=1062 second=171 amount=-1 -kerning first=188 second=350 amount=-1 -kerning first=65 second=1176 amount=-1 -kerning first=332 second=197 amount=-2 -kerning first=91 second=289 amount=-1 -kerning first=354 second=337 amount=-3 -kerning first=357 second=99 amount=-1 -kerning first=254 second=351 amount=-1 -kerning first=374 second=953 amount=-2 -kerning first=164 second=1177 amount=-1 -kerning first=167 second=363 amount=-1 -kerning first=277 second=967 amount=-2 -kerning first=8221 second=226 amount=-1 -kerning first=49 second=375 amount=-1 -kerning first=1066 second=88 amount=-2 -kerning first=192 second=290 amount=-2 -kerning first=1095 second=250 amount=-1 -kerning first=1087 second=941 amount=-1 -kerning first=912 second=262 amount=-2 -kerning first=95 second=234 amount=-1 -kerning first=1170 second=1241 amount=-1 -kerning first=358 second=277 amount=-1 -kerning first=1219 second=1079 amount=-1 -kerning first=255 second=1035 amount=-5 -kerning first=258 second=291 amount=-1 -kerning first=381 second=211 amount=-1 -kerning first=1026 second=339 amount=-1 -kerning first=165 second=8212 amount=-2 -kerning first=168 second=1059 amount=-2 -kerning first=972 second=1098 amount=-1 -kerning first=47 second=8249 amount=-3 -kerning first=56 second=85 amount=-2 -kerning first=1067 second=263 amount=-1 -kerning first=196 second=235 amount=-1 -kerning first=310 second=365 amount=-1 -kerning first=216 second=377 amount=-1 -kerning first=923 second=212 amount=-2 -kerning first=233 second=8216 amount=-1 -kerning first=951 second=1118 amount=-1 -kerning first=113 second=8250 amount=-1 -kerning first=1263 second=266 amount=-2 -kerning first=1027 second=970 amount=-1 -kerning first=176 second=248 amount=-1 -kerning first=1071 second=213 amount=-2 -kerning first=306 second=8217 amount=-3 -kerning first=80 second=197 amount=-4 -kerning first=1103 second=115 amount=-1 -kerning first=223 second=87 amount=-5 -kerning first=926 second=367 amount=-1 -kerning first=916 second=1185 amount=-3 -kerning first=100 second=337 amount=-1 -kerning first=103 second=99 amount=-1 -kerning first=240 second=940 amount=-1 -kerning first=955 second=1038 amount=-2 -kerning first=123 second=261 amount=-1 -kerning first=8260 second=268 amount=-2 -kerning first=61 second=210 amount=-2 -kerning first=1073 second=368 amount=-2 -kerning first=201 second=338 amount=-2 -kerning first=204 second=100 amount=-1 -kerning first=316 second=941 amount=-1 -kerning first=321 second=250 amount=-1 -kerning first=84 second=112 amount=-2 -kerning first=221 second=954 amount=-3 -kerning first=247 second=199 amount=-2 -kerning first=160 second=211 amount=-2 -kerning first=273 second=101 amount=-1 -kerning first=182 second=353 amount=-1 -kerning first=185 second=113 amount=-1 -kerning first=297 second=263 amount=-1 -kerning first=62 second=365 amount=-1 -kerning first=1074 second=1066 amount=-5 -kerning first=351 second=102 amount=-1 -kerning first=942 second=252 amount=-1 -kerning first=108 second=224 amount=-1 -kerning first=1186 second=1256 amount=-1 -kerning first=371 second=266 amount=-2 -kerning first=125 second=1184 amount=-5 -kerning first=161 second=366 amount=-2 -kerning first=274 second=279 amount=-1 -kerning first=301 second=213 amount=-2 -kerning first=60 second=8217 amount=-3 -kerning first=1083 second=253 amount=-1 -kerning first=209 second=225 amount=-1 -kerning first=330 second=115 amount=-1 -kerning first=904 second=267 amount=-1 -kerning first=226 second=1185 amount=-1 -kerning first=249 second=1038 amount=-2 -kerning first=375 second=214 amount=-2 -kerning first=278 second=226 amount=-1 -kerning first=302 second=368 amount=-2 -kerning first=70 second=250 amount=-1 -kerning first=334 second=65 amount=-2 -kerning first=93 second=187 amount=-1 -kerning first=90 second=1241 amount=-1 -kerning first=227 second=8220 amount=-1 -kerning first=356 second=227 amount=-2 -kerning first=948 second=357 amount=-1 -kerning first=951 second=117 amount=-1 -kerning first=113 second=326 amount=2 -kerning first=1220 second=269 amount=-1 -kerning first=376 second=369 amount=-2 -kerning first=169 second=251 amount=-1 -kerning first=51 second=263 amount=-1 -kerning first=1065 second=216 amount=-1 -kerning first=300 second=8221 amount=-3 -kerning first=303 second=1066 amount=-5 -kerning first=332 second=916 amount=-2 -kerning first=906 second=1194 amount=-2 -kerning first=97 second=102 amount=-1 -kerning first=1174 second=283 amount=-1 -kerning first=237 second=252 amount=-1 -kerning first=354 second=1256 amount=-1 -kerning first=955 second=67 amount=-2 -kerning first=117 second=266 amount=-2 -kerning first=374 second=8222 amount=-4 -kerning first=8221 second=963 amount=-1 -kerning first=8225 second=271 amount=-1 -kerning first=55 second=213 amount=-2 -kerning first=1063 second=1195 amount=-1 -kerning first=198 second=103 amount=-1 -kerning first=313 second=253 amount=-1 -kerning first=75 second=355 amount=-1 -kerning first=78 second=115 amount=-1 -kerning first=956 second=242 amount=-1 -kerning first=121 second=214 amount=-2 -kerning first=1224 second=947 amount=-4 -kerning first=258 second=1101 amount=-1 -kerning first=381 second=945 amount=-1 -kerning first=36 second=226 amount=-1 -kerning first=1026 second=1262 amount=-2 -kerning first=175 second=356 amount=-5 -kerning first=178 second=116 amount=-1 -kerning first=289 second=268 amount=-2 -kerning first=56 second=368 amount=-2 -kerning first=1067 second=1069 amount=-1 -kerning first=1074 second=81 amount=-2 -kerning first=196 second=972 amount=-1 -kerning first=8361 second=361 amount=-1 -kerning first=8364 second=121 amount=-1 -kerning first=1176 second=1263 amount=-1 -kerning first=102 second=227 amount=-1 -kerning first=365 second=269 amount=-1 -kerning first=1037 second=332 amount=-2 -kerning first=8250 second=374 amount=-3 -kerning first=57 second=1066 amount=-5 -kerning first=54 second=8221 amount=-3 -kerning first=203 second=228 amount=-1 -kerning first=323 second=118 amount=-4 -kerning first=8370 second=71 amount=-2 -kerning first=80 second=916 amount=-4 -kerning first=223 second=370 amount=-2 -kerning first=100 second=1256 amount=-2 -kerning first=1187 second=333 amount=-1 -kerning first=249 second=67 amount=-2 -kerning first=369 second=217 amount=-2 -kerning first=162 second=79 amount=-2 -kerning first=271 second=229 amount=-1 -kerning first=1241 second=119 amount=-1 -kerning first=1044 second=271 amount=-1 -kerning first=180 second=920 amount=-2 -kerning first=296 second=371 amount=-1 -kerning first=291 second=1195 amount=-1 -kerning first=64 second=253 amount=-1 -kerning first=201 second=1257 amount=-1 -kerning first=8372 second=246 amount=-1 -kerning first=902 second=218 amount=-2 -kerning first=1202 second=273 amount=-1 -kerning first=250 second=242 amount=-1 -kerning first=367 second=947 amount=-4 -kerning first=967 second=287 amount=-1 -kerning first=160 second=945 amount=-1 -kerning first=273 second=1240 amount=-2 -kerning first=8216 second=97 amount=-1 -kerning first=1049 second=219 amount=-2 -kerning first=297 second=1069 amount=-1 -kerning first=303 second=81 amount=-2 -kerning first=1081 second=361 amount=-1 -kerning first=1085 second=121 amount=-1 -kerning first=903 second=373 amount=-4 -kerning first=1118 second=288 amount=-2 -kerning first=1210 second=220 amount=-2 -kerning first=971 second=232 amount=-1 -kerning first=8217 second=275 amount=-1 -kerning first=8221 second=47 amount=-2 -kerning first=49 second=216 amount=-2 -kerning first=1051 second=374 amount=-5 -kerning first=192 second=106 amount=1 -kerning first=72 second=118 amount=-4 -kerning first=1095 second=71 amount=-2 -kerning first=209 second=962 amount=-1 -kerning first=912 second=83 amount=-1 -kerning first=92 second=283 amount=-1 -kerning first=89 second=974 amount=-4 -kerning first=1170 second=233 amount=-1 -kerning first=950 second=245 amount=-1 -kerning first=1219 second=375 amount=-1 -kerning first=375 second=949 amount=-1 -kerning first=168 second=359 amount=-1 -kerning first=278 second=963 amount=-1 -kerning first=47 second=1195 amount=-1 -kerning first=50 second=371 amount=-1 -kerning first=1067 second=84 amount=-5 -kerning first=190 second=1026 amount=-5 -kerning first=193 second=286 amount=-2 -kerning first=1096 second=246 amount=-1 -kerning first=910 second=950 amount=-2 -kerning first=96 second=230 amount=-1 -kerning first=236 second=360 amount=-2 -kerning first=113 second=947 amount=-4 -kerning first=1263 second=85 amount=-2 -kerning first=1027 second=335 amount=-1 -kerning first=287 second=219 amount=-2 -kerning first=51 second=1069 amount=-1 -kerning first=57 second=81 amount=-2 -kerning first=1071 second=34 amount=-3 -kerning first=197 second=231 amount=-1 -kerning first=315 second=121 amount=-1 -kerning first=77 second=243 amount=-1 -kerning first=338 second=288 amount=-2 -kerning first=94 second=1263 amount=-1 -kerning first=363 second=220 amount=-2 -kerning first=955 second=350 amount=-1 -kerning first=35 second=332 amount=-2 -kerning first=1035 second=275 amount=-1 -kerning first=177 second=244 amount=-1 -kerning first=288 second=374 amount=-2 -kerning first=283 second=1203 amount=-2 -kerning first=8260 second=87 amount=-5 -kerning first=321 second=71 amount=-2 -kerning first=8363 second=249 amount=-1 -kerning first=81 second=193 amount=-2 -kerning first=928 second=363 amount=-1 -kerning first=121 second=949 amount=-1 -kerning first=124 second=257 amount=-1 -kerning first=1240 second=1051 amount=-1 -kerning first=381 second=8211 amount=-3 -kerning first=36 second=963 amount=-1 -kerning first=39 second=271 amount=-1 -kerning first=297 second=84 amount=-5 -kerning first=1074 second=364 amount=-2 -kerning first=202 second=334 amount=-2 -kerning first=322 second=246 amount=-1 -kerning first=8369 second=199 amount=-2 -kerning first=923 second=8212 amount=-2 -kerning first=931 second=1059 amount=-2 -kerning first=108 second=45 amount=-2 -kerning first=105 second=273 amount=-1 -kerning first=371 second=85 amount=-2 -kerning first=965 second=235 amount=-1 -kerning first=274 second=97 amount=-1 -kerning first=8211 second=50 amount=-2 -kerning first=43 second=219 amount=-2 -kerning first=179 second=1108 amount=-1 -kerning first=183 second=347 amount=-1 -kerning first=298 second=259 amount=-1 -kerning first=301 second=34 amount=-3 -kerning first=1071 second=8216 amount=-3 -kerning first=63 second=361 amount=-1 -kerning first=203 second=965 amount=-1 -kerning first=8370 second=354 amount=-5 -kerning first=8365 second=1118 amount=-1 -kerning first=86 second=288 amount=-2 -kerning first=246 second=1113 amount=-1 -kerning first=249 second=350 amount=-1 -kerning first=1206 second=171 amount=-1 -kerning first=372 second=260 amount=-5 -kerning first=126 second=1176 amount=-1 -kerning first=162 second=362 amount=-2 -kerning first=271 second=966 amount=-1 -kerning first=44 second=374 amount=-4 -kerning first=70 second=71 amount=-1 -kerning first=1080 second=940 amount=-1 -kerning first=1084 second=249 amount=-1 -kerning first=210 second=221 amount=-3 -kerning first=327 second=351 amount=-1 -kerning first=8372 second=1038 amount=-2 -kerning first=905 second=261 amount=-1 -kerning first=902 second=953 amount=-1 -kerning first=90 second=233 amount=-1 -kerning first=253 second=290 amount=-2 -kerning first=376 second=210 amount=-3 -kerning first=160 second=8211 amount=-2 -kerning first=973 second=100 amount=-1 -kerning first=51 second=84 amount=-5 -kerning first=1062 second=262 amount=-1 -kerning first=191 second=234 amount=-1 -kerning first=303 second=364 amount=-2 -kerning first=211 second=376 amount=-3 -kerning first=1118 second=1098 amount=-3 -kerning first=1174 second=101 amount=-1 -kerning first=1169 second=339 amount=-1 -kerning first=952 second=113 amount=-1 -kerning first=108 second=8249 amount=-3 -kerning first=117 second=85 amount=-2 -kerning first=1223 second=263 amount=-1 -kerning first=374 second=1179 amount=-3 -kerning first=52 second=259 amount=-1 -kerning first=55 second=34 amount=-3 -kerning first=301 second=8216 amount=-3 -kerning first=1087 second=1118 amount=-1 -kerning first=1095 second=354 amount=-5 -kerning first=209 second=8250 amount=-1 -kerning first=912 second=366 amount=-2 -kerning first=908 second=1184 amount=-2 -kerning first=95 second=336 amount=-2 -kerning first=1170 second=970 amount=-1 -kerning first=1175 second=279 amount=-1 -kerning first=238 second=248 amount=-1 -kerning first=361 second=171 amount=-3 -kerning first=375 second=8217 amount=-3 -kerning first=281 second=1076 amount=-1 -kerning first=289 second=87 amount=-5 -kerning first=8226 second=267 amount=-1 -kerning first=1064 second=1185 amount=-3 -kerning first=1067 second=367 amount=-1 -kerning first=196 second=337 amount=-1 -kerning first=310 second=940 amount=-2 -kerning first=314 second=249 amount=-1 -kerning first=1096 second=1038 amount=-2 -kerning first=910 second=8218 amount=-4 -kerning first=1263 second=368 amount=-2 -kerning first=382 second=941 amount=-1 -kerning first=176 second=352 amount=-1 -kerning first=57 second=364 amount=-2 -kerning first=1065 second=8220 amount=-2 -kerning first=197 second=968 amount=-1 -kerning first=200 second=277 amount=-1 -kerning first=318 second=199 amount=-2 -kerning first=8365 second=117 amount=-1 -kerning first=80 second=291 amount=-1 -kerning first=77 second=1035 amount=-5 -kerning first=223 second=211 amount=-2 -kerning first=338 second=1098 amount=-3 -kerning first=341 second=339 amount=-1 -kerning first=934 second=251 amount=-1 -kerning first=123 second=365 amount=-1 -kerning first=1298 second=1066 amount=-5 -kerning first=1257 second=8221 amount=-1 -kerning first=296 second=212 amount=-2 -kerning first=8240 second=1194 amount=-2 -kerning first=8260 second=370 amount=-2 -kerning first=55 second=8216 amount=-3 -kerning first=1073 second=943 amount=-1 -kerning first=204 second=224 amount=-1 -kerning first=316 second=1118 amount=-1 -kerning first=321 second=354 amount=-5 -kerning first=8372 second=67 amount=-2 -kerning first=902 second=39 amount=-3 -kerning first=345 second=279 amount=-1 -kerning first=121 second=8217 amount=-3 -kerning first=967 second=103 amount=-1 -kerning first=273 second=225 amount=-1 -kerning first=1046 second=267 amount=-2 -kerning first=45 second=87 amount=-2 -kerning first=294 second=1185 amount=-3 -kerning first=297 second=367 amount=-1 -kerning first=62 second=940 amount=-1 -kerning first=65 second=249 amount=-1 -kerning first=322 second=1038 amount=-2 -kerning first=903 second=214 amount=-2 -kerning first=222 second=8218 amount=-1 -kerning first=942 second=356 amount=-5 -kerning first=371 second=368 amount=-2 -kerning first=965 second=972 amount=-1 -kerning first=164 second=250 amount=-1 -kerning first=161 second=941 amount=-1 -kerning first=968 second=281 amount=-1 -kerning first=46 second=262 amount=-1 -kerning first=186 second=1241 amount=-1 -kerning first=189 second=187 amount=-1 -kerning first=295 second=8220 amount=-1 -kerning first=69 second=199 amount=-2 -kerning first=1083 second=357 amount=-1 -kerning first=1087 second=117 amount=-1 -kerning first=206 second=1079 amount=-1 -kerning first=212 second=89 amount=-3 -kerning first=904 second=369 amount=-1 -kerning first=86 second=1098 amount=-3 -kerning first=92 second=101 amount=-1 -kerning first=89 second=339 amount=-4 -kerning first=1219 second=216 amount=-2 -kerning first=369 second=8221 amount=-3 -kerning first=50 second=212 amount=-2 -kerning first=1048 second=1194 amount=-2 -kerning first=193 second=102 amount=-2 -kerning first=302 second=943 amount=-1 -kerning first=305 second=252 amount=-1 -kerning first=70 second=354 amount=-5 -kerning first=1096 second=67 amount=-2 -kerning first=915 second=79 amount=-2 -kerning first=93 second=279 amount=-1 -kerning first=1171 second=229 amount=-1 -kerning first=356 second=328 amount=-2 -kerning first=948 second=920 amount=-2 -kerning first=1207 second=1195 amount=-1 -kerning first=1220 second=371 amount=-1 -kerning first=169 second=355 amount=-1 -kerning first=172 second=115 amount=-1 -kerning first=282 second=267 amount=-1 -kerning first=8224 second=218 amount=-2 -kerning first=51 second=367 amount=-1 -kerning first=48 second=1185 amount=-3 -kerning first=1097 second=242 amount=-1 -kerning first=1174 second=1240 amount=-1 -kerning first=237 second=356 amount=-5 -kerning first=240 second=116 amount=-1 -kerning first=117 second=368 amount=-2 -kerning first=1223 second=1069 amount=-1 -kerning first=1298 second=81 amount=-2 -kerning first=260 second=281 amount=-1 -kerning first=8225 second=373 amount=-4 -kerning first=49 second=8220 amount=-3 -kerning first=198 second=227 amount=-1 -kerning first=316 second=117 amount=-1 -kerning first=313 second=357 amount=-1 -kerning first=1178 second=332 amount=-1 -kerning first=115 second=8221 amount=-1 -kerning first=178 second=240 amount=-1 -kerning first=289 second=370 amount=-2 -kerning first=56 second=943 amount=-1 -kerning first=59 second=252 amount=-1 -kerning first=196 second=1256 amount=-2 -kerning first=322 second=67 amount=-2 -kerning first=8364 second=245 amount=-1 -kerning first=216 second=8222 amount=-1 -kerning first=343 second=229 amount=-1 -kerning first=931 second=359 amount=-1 -kerning first=1186 second=271 amount=-1 -kerning first=1179 second=963 amount=-1 -kerning first=365 second=371 amount=-1 -kerning first=958 second=1026 amount=-5 -kerning first=962 second=286 amount=-2 -kerning first=125 second=253 amount=-1 -kerning first=40 second=267 amount=-1 -kerning first=1041 second=218 amount=-2 -kerning first=1079 second=120 amount=-1 -kerning first=323 second=242 amount=-1 -kerning first=80 second=1101 amount=-1 -kerning first=223 second=945 amount=-1 -kerning first=372 second=81 amount=-2 -kerning first=8212 second=46 amount=-1 -kerning first=1044 second=373 amount=-2 -kerning first=64 second=357 amount=-1 -kerning first=207 second=269 amount=-1 -kerning first=8372 second=350 amount=-1 -kerning first=84 second=973 amount=-2 -kerning first=1117 second=232 amount=-1 -kerning first=944 second=244 amount=-1 -kerning first=1202 second=374 amount=-2 -kerning first=253 second=106 amount=1 -kerning first=166 second=118 amount=-4 -kerning first=273 second=962 amount=-1 -kerning first=42 second=1194 amount=-2 -kerning first=188 second=283 amount=-1 -kerning first=1085 second=245 amount=-1 -kerning first=903 second=949 amount=-1 -kerning first=906 second=257 amount=-1 -kerning first=91 second=229 amount=-1 -kerning first=234 second=119 amount=-1 -kerning first=354 second=271 amount=-3 -kerning first=108 second=1195 amount=-1 -kerning first=1203 second=1073 amount=-1 -kerning first=1223 second=84 amount=-5 -kerning first=251 second=1026 amount=-5 -kerning first=254 second=286 amount=-2 -kerning first=968 second=1090 amount=-3 -kerning first=971 second=334 amount=-2 -kerning first=280 second=218 amount=-2 -kerning first=192 second=230 amount=-1 -kerning first=304 second=360 amount=-2 -kerning first=72 second=242 amount=-1 -kerning first=209 second=947 amount=-4 -kerning first=212 second=372 amount=-2 -kerning first=92 second=1240 amount=-2 -kerning first=1170 second=335 amount=-1 -kerning first=358 second=219 amount=-2 -kerning first=946 second=1108 amount=-1 -kerning first=950 second=347 amount=-1 -kerning first=1224 second=259 amount=-1 -kerning first=258 second=231 amount=-1 -kerning first=281 second=373 amount=-1 -kerning first=190 second=1263 amount=-1 -kerning first=1090 second=1113 amount=-3 -kerning first=1096 second=350 amount=-1 -kerning first=910 second=1176 amount=-2 -kerning first=915 second=362 amount=-2 -kerning first=96 second=332 amount=-2 -kerning first=1171 second=966 amount=-1 -kerning first=1176 second=275 amount=-1 -kerning first=239 second=244 amount=-1 -kerning first=356 second=1203 amount=-1 -kerning first=954 second=289 amount=-2 -kerning first=1034 second=221 amount=-5 -kerning first=279 second=8230 amount=-1 -kerning first=8224 second=953 amount=-1 -kerning first=197 second=333 amount=-1 -kerning first=315 second=245 amount=-1 -kerning first=335 second=1299 amount=-1 -kerning first=100 second=271 amount=-1 -kerning first=960 second=234 amount=-1 -kerning first=1298 second=364 amount=-2 -kerning first=260 second=1090 amount=-3 -kerning first=38 second=218 amount=-2 -kerning first=1035 second=376 amount=-5 -kerning first=177 second=346 amount=-1 -kerning first=8260 second=211 amount=-2 -kerning first=58 second=360 amount=-2 -kerning first=204 second=45 amount=-2 -kerning first=201 second=273 amount=-1 -kerning first=198 second=964 amount=-3 -kerning first=8366 second=113 amount=-1 -kerning first=8363 second=353 amount=-1 -kerning first=345 second=97 amount=-1 -kerning first=367 second=259 amount=-1 -kerning first=124 second=361 amount=-1 -kerning first=160 second=121 amount=-1 -kerning first=178 second=1028 amount=-2 -kerning first=182 second=288 amount=-2 -kerning first=8249 second=1184 amount=-1 -kerning first=1078 second=248 amount=-2 -kerning first=205 second=220 amount=-2 -kerning first=322 second=350 amount=-1 -kerning first=343 second=966 amount=-1 -kerning first=105 second=374 amount=-5 -kerning first=965 second=337 amount=-1 -kerning first=968 second=99 amount=-1 -kerning first=164 second=71 amount=-2 -kerning first=274 second=221 amount=-5 -kerning first=1041 second=953 amount=-1 -kerning first=186 second=233 amount=-1 -kerning first=298 second=363 amount=-1 -kerning first=206 second=375 amount=-1 -kerning first=904 second=210 amount=-2 -kerning first=1119 second=100 amount=-1 -kerning first=223 second=8211 amount=-2 -kerning first=1206 second=262 amount=-1 -kerning first=252 second=234 amount=-1 -kerning first=165 second=246 amount=-1 -kerning first=8218 second=89 amount=-4 -kerning first=47 second=258 amount=-5 -kerning first=296 second=8212 amount=-2 -kerning first=299 second=1059 amount=-2 -kerning first=1084 second=353 amount=-1 -kerning first=204 second=8249 amount=-3 -kerning first=1090 second=113 amount=-1 -kerning first=905 second=365 amount=-1 -kerning first=87 second=1094 amount=-2 -kerning first=93 second=97 amount=-1 -kerning first=90 second=335 amount=-1 -kerning first=113 second=259 amount=-1 -kerning first=1220 second=212 amount=-2 -kerning first=973 second=224 amount=-1 -kerning first=273 second=8250 amount=-1 -kerning first=8224 second=39 amount=-3 -kerning first=1049 second=1184 amount=-5 -kerning first=1062 second=366 amount=-1 -kerning first=191 second=336 amount=-2 -kerning first=306 second=248 amount=-1 -kerning first=903 second=8217 amount=-3 -kerning first=91 second=966 amount=-1 -kerning first=94 second=275 amount=-1 -kerning first=1210 second=1185 amount=-3 -kerning first=1223 second=367 amount=-1 -kerning first=260 second=99 amount=-1 -kerning first=377 second=940 amount=-1 -kerning first=174 second=111 amount=-1 -kerning first=170 second=351 amount=-1 -kerning first=280 second=953 amount=-1 -kerning first=8225 second=214 amount=-2 -kerning first=49 second=1177 amount=-1 -kerning first=52 second=363 amount=-1 -kerning first=75 second=290 amount=-3 -kerning first=912 second=941 amount=-1 -kerning first=238 second=352 amount=-1 -kerning first=361 second=262 amount=-2 -kerning first=956 second=187 amount=-1 -kerning first=1219 second=8220 amount=-3 -kerning first=258 second=968 amount=-1 -kerning first=1026 second=1079 amount=-1 -kerning first=171 second=1035 amount=-1 -kerning first=175 second=291 amount=-1 -kerning first=289 second=211 amount=-2 -kerning first=8226 second=369 amount=-1 -kerning first=50 second=8212 amount=-1 -kerning first=53 second=1059 amount=-2 -kerning first=314 second=353 amount=-1 -kerning first=317 second=113 amount=-1 -kerning first=365 second=212 amount=-2 -kerning first=1263 second=943 amount=-1 -kerning first=1037 second=266 amount=-2 -kerning first=1041 second=39 amount=-3 -kerning first=287 second=1184 amount=-5 -kerning first=60 second=248 amount=-1 -kerning first=203 second=171 amount=-3 -kerning first=934 second=355 amount=-1 -kerning first=1187 second=267 amount=-1 -kerning first=363 second=1185 amount=-3 -kerning first=126 second=249 amount=-1 -kerning first=123 second=940 amount=-1 -kerning first=268 second=379 amount=-1 -kerning first=41 second=261 amount=-1 -kerning first=38 second=953 amount=-1 -kerning first=1044 second=214 amount=-1 -kerning first=8260 second=945 amount=-1 -kerning first=1080 second=116 amount=-1 -kerning first=84 second=338 amount=-1 -kerning first=87 second=100 amount=-3 -kerning first=247 second=1241 amount=-1 -kerning first=250 second=187 amount=-1 -kerning first=967 second=227 amount=-1 -kerning first=163 second=199 amount=-2 -kerning first=276 second=89 amount=-5 -kerning first=1046 second=369 amount=-1 -kerning first=182 second=1098 amount=-3 -kerning first=185 second=339 amount=-1 -kerning first=188 second=101 amount=-1 -kerning first=300 second=251 amount=-1 -kerning first=65 second=353 amount=-1 -kerning first=900 second=1066 amount=-5 -kerning first=1118 second=228 amount=-1 -kerning first=371 second=943 amount=-1 -kerning first=374 second=252 amount=-2 -kerning first=965 second=1256 amount=-2 -kerning first=161 second=1118 amount=-1 -kerning first=164 second=354 amount=-5 -kerning first=280 second=39 amount=-3 -kerning first=43 second=1184 amount=-5 -kerning first=46 second=366 amount=-1 -kerning first=1063 second=79 amount=-2 -kerning first=189 second=279 amount=-1 -kerning first=186 second=970 amount=-1 -kerning first=1083 second=920 amount=-2 -kerning first=8377 second=1026 amount=-5 -kerning first=92 second=225 amount=-1 -kerning first=1116 second=1257 amount=-2 -kerning first=109 second=1185 amount=-1 -kerning first=165 second=1038 amount=-2 -kerning first=8212 second=947 amount=-1 -kerning first=8218 second=372 amount=-3 -kerning first=193 second=226 amount=-1 -kerning first=305 second=356 amount=-5 -kerning first=310 second=116 amount=-1 -kerning first=110 second=8220 amount=-1 -kerning first=376 second=1169 amount=-3 -kerning first=1027 second=269 amount=-1 -kerning first=282 second=369 amount=-1 -kerning first=54 second=251 amount=-1 -kerning first=214 second=1066 amount=-5 -kerning first=338 second=228 amount=-1 -kerning first=926 second=118 amount=-4 -kerning first=1174 second=962 amount=-1 -kerning first=240 second=240 amount=-1 -kerning first=357 second=1194 amount=-2 -kerning first=955 second=283 amount=-1 -kerning first=117 second=943 amount=-1 -kerning first=35 second=266 amount=-2 -kerning first=38 second=39 amount=-3 -kerning first=1035 second=217 amount=-2 -kerning first=291 second=79 amount=-2 -kerning first=8225 second=949 amount=-1 -kerning first=8240 second=257 amount=-1 -kerning first=1073 second=119 amount=-4 -kerning first=313 second=920 amount=-1 -kerning first=221 second=253 amount=-2 -kerning first=920 second=1046 amount=-3 -kerning first=1299 second=360 amount=-2 -kerning first=1240 second=923 amount=-2 -kerning first=1033 second=947 amount=-1 -kerning first=175 second=1101 amount=-1 -kerning first=289 second=945 amount=-1 -kerning first=59 second=356 amount=-5 -kerning first=62 second=116 amount=-1 -kerning first=202 second=268 amount=-2 -kerning first=8361 second=1108 amount=-1 -kerning first=8364 second=347 amount=-1 -kerning first=900 second=81 amount=-2 -kerning first=1107 second=231 amount=-1 -kerning first=1186 second=373 amount=-2 -kerning first=958 second=1263 amount=-1 -kerning first=125 second=357 amount=-1 -kerning first=161 second=117 amount=-1 -kerning first=40 second=369 amount=-1 -kerning first=179 second=973 amount=-1 -kerning first=206 second=216 amount=-2 -kerning first=326 second=106 amount=1 -kerning first=8370 second=289 amount=-1 -kerning first=86 second=228 amount=-3 -kerning first=229 second=118 amount=-1 -kerning first=103 second=1194 amount=-2 -kerning first=249 second=283 amount=-1 -kerning first=165 second=67 amount=-2 -kerning first=47 second=79 amount=-1 -kerning first=1048 second=257 amount=-1 -kerning first=1044 second=949 amount=-1 -kerning first=302 second=119 amount=-4 -kerning first=8260 second=8211 amount=-2 -kerning first=299 second=359 amount=-1 -kerning first=64 second=920 amount=-2 -kerning first=207 second=371 amount=-1 -kerning first=204 second=1195 amount=-1 -kerning first=327 second=286 amount=-2 -kerning first=8378 second=234 amount=-1 -kerning first=84 second=1257 amount=-3 -kerning first=1117 second=334 amount=-2 -kerning first=944 second=346 amount=-1 -kerning first=253 second=230 amount=-1 -kerning first=376 second=120 amount=-2 -kerning first=967 second=964 amount=-3 -kerning first=973 second=45 amount=-2 -kerning first=166 second=242 amount=-1 -kerning first=273 second=947 amount=-4 -kerning first=276 second=372 amount=-5 -kerning first=188 second=1240 amount=-2 -kerning first=185 second=1262 amount=-2 -kerning first=1081 second=1108 amount=-1 -kerning first=1085 second=347 amount=-1 -kerning first=214 second=81 amount=-2 -kerning first=906 second=361 amount=-1 -kerning first=1118 second=965 amount=-1 -kerning first=354 second=373 amount=-2 -kerning first=251 second=1263 amount=-1 -kerning first=8221 second=260 amount=-3 -kerning first=1063 second=362 amount=-2 -kerning first=1051 second=1176 amount=-1 -kerning first=192 second=332 amount=-2 -kerning first=1095 second=289 amount=-1 -kerning first=92 second=962 amount=-1 -kerning first=361 second=83 amount=-1 -kerning first=1224 second=363 amount=-1 -kerning first=1219 second=1177 amount=-1 -kerning first=258 second=333 amount=-1 -kerning first=381 second=245 amount=-1 -kerning first=1026 second=375 amount=-1 -kerning first=8226 second=210 amount=-2 -kerning first=56 second=119 amount=-4 -kerning first=53 second=359 amount=-1 -kerning first=193 second=963 amount=-1 -kerning first=196 second=271 amount=-1 -kerning first=199 second=44 amount=-1 -kerning first=73 second=1026 amount=-5 -kerning first=76 second=286 amount=-1 -kerning first=1099 second=234 amount=-1 -kerning first=915 second=934 amount=-3 -kerning first=923 second=246 amount=-1 -kerning first=1176 second=376 amount=-5 -kerning first=239 second=346 amount=-1 -kerning first=362 second=258 amount=-2 -kerning first=1220 second=8212 amount=-2 -kerning first=259 second=964 amount=-1 -kerning first=973 second=8249 amount=-3 -kerning first=1037 second=85 amount=-2 -kerning first=176 second=287 amount=-1 -kerning first=8230 second=365 amount=-1 -kerning first=200 second=219 amount=-2 -kerning first=311 second=1108 amount=-2 -kerning first=80 second=231 amount=-1 -kerning first=223 second=121 amount=-1 -kerning first=338 second=965 amount=-1 -kerning first=100 second=373 amount=-4 -kerning first=240 second=1028 amount=-2 -kerning first=960 second=336 amount=-2 -kerning first=1038 second=260 amount=-2 -kerning first=180 second=232 amount=-1 -kerning first=291 second=362 amount=-2 -kerning first=8225 second=8217 amount=-3 -kerning first=61 second=244 amount=-1 -kerning first=201 second=374 amount=-5 -kerning first=321 second=289 amount=-1 -kerning first=936 second=351 amount=-1 -kerning first=98 second=8230 amount=-1 -kerning first=247 second=233 amount=-1 -kerning first=367 second=363 amount=-1 -kerning first=961 second=967 amount=-2 -kerning first=160 second=245 amount=-1 -kerning first=39 second=949 amount=-1 -kerning first=42 second=257 amount=-1 -kerning first=1046 second=210 amount=-3 -kerning first=289 second=8211 amount=-2 -kerning first=325 second=234 amount=-1 -kerning first=8369 second=1241 amount=-1 -kerning first=900 second=364 amount=-2 -kerning first=208 second=84 amount=-2 -kerning first=346 second=376 amount=-2 -kerning first=942 second=291 amount=-1 -kerning first=365 second=8212 amount=-2 -kerning first=186 second=335 amount=-1 -kerning first=189 second=97 amount=-1 -kerning first=63 second=1108 amount=-1 -kerning first=209 second=259 amount=-1 -kerning first=86 second=965 amount=-1 -kerning first=1119 second=224 amount=-1 -kerning first=1206 second=366 amount=-1 -kerning first=252 second=336 amount=-2 -kerning first=375 second=248 amount=-1 -kerning first=165 second=350 amount=-1 -kerning first=8218 second=213 amount=-1 -kerning first=44 second=1176 amount=-1 -kerning first=47 second=362 amount=-2 -kerning first=1044 second=8217 amount=-2 -kerning first=190 second=275 amount=-1 -kerning first=70 second=289 amount=-1 -kerning first=67 second=1033 amount=-1 -kerning first=905 second=940 amount=-1 -kerning first=910 second=249 amount=-2 -kerning first=93 second=221 amount=-5 -kerning first=236 second=111 amount=-1 -kerning first=356 second=261 amount=-2 -kerning first=113 second=363 amount=-1 -kerning first=169 second=290 amount=-2 -kerning first=282 second=210 amount=-2 -kerning first=1062 second=941 amount=-1 -kerning first=306 second=352 amount=-1 -kerning first=74 second=234 amount=-1 -kerning first=1094 second=1241 amount=-1 -kerning first=214 second=364 amount=-2 -kerning first=916 second=199 amount=-2 -kerning first=94 second=376 amount=-5 -kerning first=237 second=291 amount=-1 -kerning first=955 second=101 amount=-1 -kerning first=952 second=339 amount=-1 -kerning first=974 second=955 amount=-1 -kerning first=35 second=85 amount=-2 -kerning first=174 second=235 amount=-1 -kerning first=1101 second=102 amount=-1 -kerning first=221 second=74 amount=-6 -kerning first=912 second=1118 amount=-1 -kerning first=92 second=8250 amount=-1 -kerning first=920 second=354 amount=-2 -kerning first=1178 second=266 amount=-1 -kerning first=358 second=1184 amount=-5 -kerning first=361 second=366 amount=-2 -kerning first=956 second=279 amount=-1 -kerning first=121 second=248 amount=-1 -kerning first=266 second=171 amount=-1 -kerning first=1036 second=213 amount=-3 -kerning first=281 second=8217 amount=-1 -kerning first=1074 second=115 amount=-1 -kerning first=202 second=87 amount=-5 -kerning first=923 second=1038 amount=-2 -kerning first=102 second=261 amount=-1 -kerning first=1186 second=214 amount=-1 -kerning first=359 second=8218 amount=-1 -kerning first=962 second=226 amount=-1 -kerning first=270 second=88 amount=-3 -kerning first=40 second=210 amount=-2 -kerning first=1037 second=368 amount=-2 -kerning first=179 second=338 amount=-2 -kerning first=183 second=100 amount=-1 -kerning first=60 second=352 amount=-1 -kerning first=203 second=262 amount=-2 -kerning first=318 second=1241 amount=-1 -kerning first=323 second=187 amount=-1 -kerning first=80 second=968 amount=-1 -kerning first=243 second=1098 amount=-1 -kerning first=249 second=101 amount=-1 -kerning first=369 second=251 amount=-1 -kerning first=162 second=113 amount=-1 -kerning first=126 second=353 amount=-1 -kerning first=271 second=263 amount=-1 -kerning first=41 second=365 amount=-1 -kerning first=1035 second=8221 amount=-3 -kerning first=1080 second=240 amount=-1 -kerning first=207 second=212 amount=-2 -kerning first=8372 second=283 amount=-1 -kerning first=902 second=252 amount=-1 -kerning first=87 second=224 amount=-2 -kerning first=353 second=39 amount=-1 -kerning first=247 second=970 amount=-1 -kerning first=250 second=279 amount=-1 -kerning first=276 second=213 amount=-2 -kerning first=1049 second=253 amount=-1 -kerning first=188 second=225 amount=-1 -kerning first=300 second=355 amount=-1 -kerning first=303 second=115 amount=-1 -kerning first=205 second=1185 amount=-3 -kerning first=354 second=214 amount=-1 -kerning first=942 second=1101 amount=-1 -kerning first=1203 second=945 amount=-1 -kerning first=254 second=226 amount=-1 -kerning first=971 second=268 amount=-2 -kerning first=8211 second=1069 amount=-1 -kerning first=49 second=250 amount=-1 -kerning first=69 second=1241 amount=-1 -kerning first=72 second=187 amount=-1 -kerning first=206 second=8220 amount=-3 -kerning first=8377 second=1263 amount=-1 -kerning first=912 second=117 amount=-1 -kerning first=89 second=1079 amount=-4 -kerning first=95 second=89 amount=-5 -kerning first=1170 second=269 amount=-1 -kerning first=946 second=973 amount=-1 -kerning first=1026 second=216 amount=-2 -kerning first=278 second=1066 amount=-5 -kerning first=275 second=8221 amount=-1 -kerning first=1067 second=118 amount=-4 -kerning first=310 second=240 amount=-2 -kerning first=70 second=1099 amount=-1 -kerning first=1096 second=283 amount=-1 -kerning first=910 second=1044 amount=-5 -kerning first=923 second=67 amount=-2 -kerning first=96 second=266 amount=-2 -kerning first=1176 second=217 amount=-2 -kerning first=99 second=39 amount=-1 -kerning first=954 second=229 amount=-1 -kerning first=1263 second=119 amount=-4 -kerning first=379 second=920 amount=-1 -kerning first=1027 second=371 amount=-1 -kerning first=973 second=1195 amount=-1 -kerning first=176 second=103 amount=-1 -kerning first=287 second=253 amount=-1 -kerning first=54 second=355 amount=-1 -kerning first=57 second=115 amount=-1 -kerning first=197 second=267 amount=-1 -kerning first=335 second=1083 amount=-1 -kerning first=926 second=242 amount=-1 -kerning first=100 second=214 amount=-2 -kerning first=1174 second=947 amount=-2 -kerning first=237 second=1101 amount=-1 -kerning first=955 second=1240 amount=-2 -kerning first=952 second=1262 amount=-2 -kerning first=123 second=116 amount=-1 -kerning first=35 second=368 amount=-2 -kerning first=1028 second=1069 amount=1 -kerning first=174 second=972 amount=-1 -kerning first=177 second=281 amount=-1 -kerning first=8240 second=361 amount=-1 -kerning first=8260 second=121 amount=-1 -kerning first=1073 second=243 amount=-1 -kerning first=8363 second=288 amount=-2 -kerning first=36 second=1066 amount=-5 -kerning first=182 second=228 amount=-1 -kerning first=297 second=118 amount=-4 -kerning first=62 second=240 amount=-1 -kerning first=202 second=370 amount=-2 -kerning first=322 second=283 amount=-1 -kerning first=8369 second=233 amount=-1 -kerning first=1107 second=333 amount=-1 -kerning first=222 second=1044 amount=-1 -kerning first=108 second=79 amount=-2 -kerning first=1186 second=949 amount=-1 -kerning first=371 second=119 amount=-4 -kerning first=962 second=963 amount=-1 -kerning first=965 second=271 amount=-1 -kerning first=125 second=920 amount=-2 -kerning first=8211 second=84 amount=-4 -kerning first=43 second=253 amount=-1 -kerning first=179 second=1257 amount=-1 -kerning first=901 second=360 amount=-2 -kerning first=1116 second=273 amount=-2 -kerning first=1119 second=45 amount=-2 -kerning first=249 second=1240 amount=-2 -kerning first=271 second=1069 amount=-1 -kerning first=278 second=81 amount=-2 -kerning first=8218 second=34 amount=-1 -kerning first=1048 second=361 amount=-1 -kerning first=302 second=243 amount=-1 -kerning first=1080 second=1028 amount=-2 -kerning first=1084 second=288 amount=-2 -kerning first=8378 second=336 amount=-2 -kerning first=90 second=269 amount=-1 -kerning first=1168 second=220 amount=-2 -kerning first=948 second=232 amount=-1 -kerning first=253 second=332 amount=-2 -kerning first=376 second=244 amount=-4 -kerning first=169 second=106 amount=1 -kerning first=51 second=118 amount=-4 -kerning first=188 second=962 amount=-1 -kerning first=1065 second=71 amount=-1 -kerning first=1094 second=233 amount=-1 -kerning first=94 second=217 amount=-2 -kerning first=354 second=949 amount=-3 -kerning first=357 second=257 amount=-1 -kerning first=117 second=119 amount=-4 -kerning first=254 second=963 amount=-1 -kerning first=167 second=1026 amount=-5 -kerning first=170 second=286 amount=-2 -kerning first=1028 second=84 amount=-1 -kerning first=195 second=218 amount=-2 -kerning first=75 second=230 amount=-1 -kerning first=215 second=360 amount=-2 -kerning first=212 second=1174 amount=-3 -kerning first=333 second=964 amount=-1 -kerning first=92 second=947 amount=-4 -kerning first=95 second=372 amount=-5 -kerning first=1119 second=8249 amount=-3 -kerning first=1178 second=85 amount=-1 -kerning first=238 second=287 amount=-1 -kerning first=950 second=1094 amount=-2 -kerning first=956 second=97 amount=-1 -kerning first=378 second=1108 amount=-1 -kerning first=36 second=81 amount=-2 -kerning first=175 second=231 amount=-1 -kerning first=281 second=1175 amount=-2 -kerning first=289 second=121 amount=-1 -kerning first=8218 second=8216 amount=-1 -kerning first=56 second=243 amount=-1 -kerning first=1070 second=196 amount=-2 -kerning first=196 second=373 amount=-4 -kerning first=314 second=288 amount=-2 -kerning first=310 second=1028 amount=-3 -kerning first=73 second=1263 amount=-1 -kerning first=1099 second=336 amount=-2 -kerning first=923 second=350 amount=-1 -kerning first=958 second=275 amount=-1 -kerning first=954 second=966 amount=-2 -kerning first=122 second=244 amount=-1 -kerning first=262 second=374 amount=-2 -kerning first=1071 second=351 amount=-1 -kerning first=1075 second=111 amount=-1 -kerning first=203 second=83 amount=-1 -kerning first=318 second=233 amount=-1 -kerning first=80 second=333 amount=-1 -kerning first=223 second=245 amount=-1 -kerning first=934 second=290 amount=-2 -kerning first=100 second=949 amount=-1 -kerning first=103 second=257 amount=-1 -kerning first=271 second=84 amount=-5 -kerning first=180 second=334 amount=-2 -kerning first=177 second=1090 amount=-3 -kerning first=296 second=246 amount=-1 -kerning first=61 second=346 amount=-1 -kerning first=1073 second=1035 amount=-5 -kerning first=8363 second=1098 amount=-3 -kerning first=8366 second=339 amount=-1 -kerning first=8372 second=101 amount=-1 -kerning first=84 second=273 amount=-3 -kerning first=87 second=45 amount=-2 -kerning first=247 second=335 amount=-1 -kerning first=250 second=97 amount=-1 -kerning first=124 second=1108 amount=-1 -kerning first=160 second=347 amount=-1 -kerning first=273 second=259 amount=-1 -kerning first=276 second=34 amount=-3 -kerning first=42 second=361 amount=-1 -kerning first=182 second=965 amount=-1 -kerning first=62 second=1028 amount=-2 -kerning first=65 second=288 amount=-2 -kerning first=325 second=336 amount=-2 -kerning first=8369 second=970 amount=-1 -kerning first=903 second=248 amount=-1 -kerning first=1118 second=171 amount=-3 -kerning first=105 second=1176 amount=-1 -kerning first=108 second=362 amount=-2 -kerning first=111 second=122 amount=-1 -kerning first=1186 second=8217 amount=-2 -kerning first=251 second=275 amount=-1 -kerning first=374 second=197 amount=-5 -kerning first=971 second=87 amount=-5 -kerning first=164 second=289 amount=-1 -kerning first=49 second=71 amount=-2 -kerning first=1051 second=249 amount=-1 -kerning first=189 second=221 amount=-5 -kerning first=301 second=351 amount=-1 -kerning first=304 second=111 amount=-1 -kerning first=69 second=233 amount=-1 -kerning first=209 second=363 amount=-1 -kerning first=206 second=1177 amount=-1 -kerning first=908 second=198 amount=-2 -kerning first=89 second=375 amount=-2 -kerning first=946 second=338 amount=-2 -kerning first=950 second=100 amount=-1 -kerning first=1219 second=250 amount=-1 -kerning first=1206 second=941 amount=-1 -kerning first=372 second=1116 amount=-2 -kerning first=375 second=352 amount=-1 -kerning first=168 second=234 amount=-1 -kerning first=278 second=364 amount=-2 -kerning first=50 second=246 amount=-1 -kerning first=1064 second=199 amount=-2 -kerning first=190 second=376 amount=-5 -kerning first=302 second=1035 amount=-5 -kerning first=305 second=291 amount=-1 -kerning first=1084 second=1098 amount=-3 -kerning first=1090 second=339 amount=-1 -kerning first=207 second=8212 amount=-2 -kerning first=1096 second=101 amount=-1 -kerning first=915 second=113 amount=-1 -kerning first=87 second=8249 amount=-2 -kerning first=96 second=85 amount=-2 -kerning first=1171 second=263 amount=-1 -kerning first=910 second=353 amount=-3 -kerning first=236 second=235 amount=-1 -kerning first=356 second=365 amount=-2 -kerning first=1027 second=212 amount=-2 -kerning first=276 second=8216 amount=-3 -kerning first=8224 second=252 amount=-1 -kerning first=1065 second=354 amount=-2 -kerning first=188 second=8250 amount=-1 -kerning first=197 second=86 amount=-6 -kerning first=74 second=336 amount=-2 -kerning first=1097 second=279 amount=-1 -kerning first=335 second=378 amount=-1 -kerning first=338 second=171 amount=-3 -kerning first=955 second=225 amount=-1 -kerning first=1298 second=115 amount=-1 -kerning first=174 second=337 amount=-1 -kerning first=177 second=99 amount=-1 -kerning first=58 second=111 amount=-1 -kerning first=55 second=351 amount=-1 -kerning first=198 second=261 amount=-1 -kerning first=195 second=953 amount=-1 -kerning first=221 second=198 amount=-5 -kerning first=1178 second=368 amount=-1 -kerning first=361 second=941 amount=-1 -kerning first=121 second=352 amount=-1 -kerning first=36 second=364 amount=-2 -kerning first=1026 second=8220 amount=-3 -kerning first=175 second=968 amount=-1 -kerning first=178 second=277 amount=-1 -kerning first=294 second=199 amount=-2 -kerning first=56 second=1035 amount=-5 -kerning first=59 second=291 amount=-1 -kerning first=202 second=211 amount=-2 -kerning first=317 second=339 amount=-1 -kerning first=8361 second=973 amount=-1 -kerning first=322 second=101 amount=-1 -kerning first=314 second=1098 amount=-3 -kerning first=343 second=263 amount=-1 -kerning first=1176 second=8221 amount=-3 -kerning first=1037 second=943 amount=-1 -kerning first=1041 second=252 amount=-1 -kerning first=183 second=224 amount=-1 -kerning first=8250 second=1044 amount=-2 -kerning first=200 second=1184 amount=-5 -kerning first=203 second=366 amount=-2 -kerning first=318 second=970 amount=-1 -kerning first=323 second=279 amount=-1 -kerning first=8370 second=229 amount=-1 -kerning first=86 second=171 amount=-3 -kerning first=229 second=63 amount=-2 -kerning first=100 second=8217 amount=-3 -kerning first=249 second=225 amount=-1 -kerning first=369 second=355 amount=-1 -kerning first=372 second=115 amount=-2 -kerning first=271 second=367 amount=-1 -kerning first=41 second=940 amount=-1 -kerning first=44 second=249 amount=-1 -kerning first=296 second=1038 amount=-2 -kerning first=8372 second=1240 amount=-2 -kerning first=8366 second=1262 amount=-2 -kerning first=327 second=226 amount=-1 -kerning first=902 second=356 amount=-5 -kerning first=905 second=116 amount=-1 -kerning first=84 second=1078 amount=-1 -kerning first=1117 second=268 amount=-2 -kerning first=944 second=281 amount=-1 -kerning first=107 second=941 amount=-2 -kerning first=376 second=65 amount=-5 -kerning first=163 second=1241 amount=-1 -kerning first=166 second=187 amount=-1 -kerning first=269 second=8220 amount=-1 -kerning first=48 second=199 amount=-2 -kerning first=1049 second=357 amount=-1 -kerning first=185 second=1079 amount=-1 -kerning first=191 second=89 amount=-5 -kerning first=65 second=1098 amount=-3 -kerning first=1081 second=973 amount=-1 -kerning first=91 second=263 amount=-1 -kerning first=1223 second=118 amount=-4 -kerning first=374 second=916 amount=-5 -kerning first=377 second=240 amount=-1 -kerning first=968 second=1194 amount=-2 -kerning first=971 second=370 amount=-2 -kerning first=280 second=252 amount=-1 -kerning first=49 second=354 amount=-5 -kerning first=46 second=1118 amount=-1 -kerning first=192 second=266 amount=-2 -kerning first=195 second=39 amount=-3 -kerning first=72 second=279 amount=-1 -kerning first=69 second=970 amount=-1 -kerning first=1095 second=229 amount=-1 -kerning first=95 second=213 amount=-2 -kerning first=1119 second=1195 amount=-1 -kerning first=1170 second=371 amount=-1 -kerning first=238 second=103 amount=-1 -kerning first=358 second=253 amount=-1 -kerning first=946 second=1257 amount=-1 -kerning first=118 second=115 amount=-1 -kerning first=258 second=267 amount=-1 -kerning first=8222 second=360 amount=-1 -kerning first=50 second=1038 amount=-2 -kerning first=1067 second=242 amount=-1 -kerning first=196 second=214 amount=-2 -kerning first=305 second=1101 amount=-1 -kerning first=1096 second=1240 amount=-2 -kerning first=216 second=356 amount=-2 -kerning first=96 second=368 amount=-2 -kerning first=1171 second=1069 amount=-1 -kerning first=236 second=972 amount=-1 -kerning first=239 second=281 amount=-1 -kerning first=1263 second=243 amount=-1 -kerning first=176 second=227 amount=-1 -kerning first=287 second=357 amount=-1 -kerning first=197 second=369 amount=-1 -kerning first=94 second=8221 amount=-3 -kerning first=934 second=106 amount=1 -kerning first=955 second=962 amount=-1 -kerning first=123 second=240 amount=-1 -kerning first=260 second=1194 amount=-2 -kerning first=35 second=943 amount=-1 -kerning first=38 second=252 amount=-1 -kerning first=174 second=1256 amount=-2 -kerning first=296 second=67 amount=-2 -kerning first=8260 second=245 amount=-1 -kerning first=204 second=79 amount=-2 -kerning first=321 second=229 amount=-1 -kerning first=221 second=920 amount=-3 -kerning first=928 second=1026 amount=-5 -kerning first=936 second=286 amount=-2 -kerning first=964 second=218 amount=-2 -kerning first=1039 second=360 amount=-2 -kerning first=297 second=242 amount=-1 -kerning first=59 second=1101 amount=-1 -kerning first=1078 second=287 amount=-1 -kerning first=202 second=945 amount=-1 -kerning first=317 second=1262 amount=-2 -kerning first=322 second=1240 amount=-2 -kerning first=8369 second=335 amount=-1 -kerning first=942 second=231 amount=-1 -kerning first=371 second=243 amount=-1 -kerning first=965 second=373 amount=-4 -kerning first=43 second=357 amount=-1 -kerning first=46 second=117 amount=-1 -kerning first=186 second=269 amount=-1 -kerning first=63 second=973 amount=-1 -kerning first=1083 second=232 amount=-1 -kerning first=8370 second=966 amount=-1 -kerning first=904 second=244 amount=-1 -kerning first=8377 second=275 amount=-1 -kerning first=89 second=216 amount=-3 -kerning first=1108 second=1203 amount=-1 -kerning first=352 second=256 amount=-1 -kerning first=112 second=118 amount=-1 -kerning first=1219 second=71 amount=-2 -kerning first=249 second=962 amount=-1 -kerning first=165 second=283 amount=-1 -kerning first=50 second=67 amount=-2 -kerning first=190 second=217 amount=-2 -kerning first=70 second=229 amount=-1 -kerning first=327 second=963 amount=-1 -kerning first=334 second=44 amount=-1 -kerning first=910 second=194 amount=-5 -kerning first=87 second=1195 amount=-3 -kerning first=1171 second=84 amount=-5 -kerning first=948 second=334 amount=-2 -kerning first=944 second=1090 amount=-3 -kerning first=1220 second=246 amount=-1 -kerning first=256 second=218 amount=-2 -kerning first=376 second=346 amount=-1 -kerning first=169 second=230 amount=-1 -kerning first=51 second=242 amount=-1 -kerning first=188 second=947 amount=-4 -kerning first=191 second=372 amount=-5 -kerning first=306 second=287 amount=-1 -kerning first=1094 second=335 amount=-1 -kerning first=906 second=1108 amount=-1 -kerning first=91 second=1069 amount=-1 -kerning first=237 second=231 amount=-1 -kerning first=354 second=1175 amount=-1 -kerning first=357 second=361 amount=-1 -kerning first=117 second=243 amount=-1 -kerning first=257 second=373 amount=-1 -kerning first=377 second=1028 amount=-1 -kerning first=167 second=1263 amount=-1 -kerning first=8225 second=248 amount=-1 -kerning first=313 second=232 amount=-1 -kerning first=75 second=332 amount=-3 -kerning first=1095 second=966 amount=-1 -kerning first=1101 second=47 amount=-1 -kerning first=333 second=1203 amount=-2 -kerning first=336 second=374 amount=-3 -kerning first=956 second=221 amount=-5 -kerning first=1299 second=111 amount=-1 -kerning first=1026 second=1177 amount=-1 -kerning first=175 second=333 amount=-1 -kerning first=289 second=245 amount=-1 -kerning first=8249 second=198 amount=-1 -kerning first=196 second=949 amount=-1 -kerning first=8361 second=338 amount=-2 -kerning first=8364 second=100 amount=-1 -kerning first=76 second=963 amount=-1 -kerning first=222 second=194 amount=-2 -kerning first=931 second=234 amount=-1 -kerning first=239 second=1090 amount=-3 -kerning first=365 second=246 amount=-1 -kerning first=958 second=376 amount=-5 -kerning first=1263 second=1035 amount=-5 -kerning first=37 second=360 amount=-2 -kerning first=1027 second=8212 amount=-2 -kerning first=179 second=273 amount=-1 -kerning first=183 second=45 amount=-2 -kerning first=176 second=964 amount=-3 -kerning first=60 second=287 amount=-1 -kerning first=1075 second=235 amount=-1 -kerning first=318 second=335 amount=-1 -kerning first=323 second=97 amount=-1 -kerning first=223 second=347 amount=-1 -kerning first=347 second=34 amount=-1 -kerning first=103 second=361 amount=-1 -kerning first=955 second=8250 amount=-1 -kerning first=123 second=1028 amount=-2 -kerning first=126 second=288 amount=-2 -kerning first=1044 second=248 amount=-1 -kerning first=184 second=220 amount=-2 -kerning first=296 second=350 amount=-1 -kerning first=64 second=232 amount=-1 -kerning first=204 second=362 amount=-2 -kerning first=201 second=1176 amount=-1 -kerning first=321 second=966 amount=-1 -kerning first=8372 second=225 amount=-1 -kerning first=1117 second=87 amount=-5 -kerning first=944 second=99 amount=-1 -kerning first=250 second=221 amount=-5 -kerning first=373 second=111 amount=-1 -kerning first=964 second=953 amount=-1 -kerning first=967 second=261 amount=-1 -kerning first=163 second=233 amount=-1 -kerning first=273 second=363 amount=-1 -kerning first=185 second=375 amount=-1 -kerning first=300 second=290 amount=-2 -kerning first=1081 second=338 amount=-2 -kerning first=202 second=8211 amount=-2 -kerning first=1085 second=100 amount=-1 -kerning first=903 second=352 amount=-1 -kerning first=91 second=84 amount=-5 -kerning first=1118 second=262 amount=-2 -kerning first=942 second=968 amount=-1 -kerning first=1210 second=199 amount=-2 -kerning first=251 second=376 amount=-5 -kerning first=371 second=1035 amount=-5 -kerning first=374 second=291 amount=-4 -kerning first=971 second=211 amount=-2 -kerning first=274 second=1059 amount=-2 -kerning first=1051 second=353 amount=-1 -kerning first=1063 second=113 amount=-1 -kerning first=183 second=8249 amount=-3 -kerning first=192 second=85 amount=-2 -kerning first=304 second=235 amount=-1 -kerning first=69 second=335 amount=-1 -kerning first=72 second=97 amount=-1 -kerning first=95 second=34 amount=-3 -kerning first=92 second=259 amount=-1 -kerning first=1170 second=212 amount=-2 -kerning first=89 second=951 amount=-3 -kerning first=347 second=8216 amount=-1 -kerning first=950 second=224 amount=-1 -kerning first=1219 second=354 amount=-5 -kerning first=249 second=8250 amount=-1 -kerning first=258 second=86 amount=-6 -kerning first=168 second=336 amount=-2 -kerning first=50 second=350 amount=-1 -kerning first=70 second=966 amount=-1 -kerning first=73 second=275 amount=-1 -kerning first=1096 second=225 amount=-1 -kerning first=216 second=197 amount=-2 -kerning first=1171 second=367 amount=-1 -kerning first=1168 second=1185 amount=-3 -kerning first=236 second=337 amount=-1 -kerning first=239 second=99 amount=-1 -kerning first=356 second=940 amount=-3 -kerning first=113 second=1114 amount=2 -kerning first=1220 second=1038 amount=-2 -kerning first=119 second=111 amount=-1 -kerning first=256 second=953 amount=-1 -kerning first=8224 second=356 amount=-5 -kerning first=8230 second=116 amount=-1 -kerning first=54 second=290 amount=-2 -kerning first=197 second=210 amount=-2 -kerning first=315 second=100 amount=-1 -kerning first=338 second=262 amount=-2 -kerning first=916 second=1241 amount=-1 -kerning first=926 second=187 amount=-1 -kerning first=237 second=968 amount=-1 -kerning first=240 second=277 amount=-1 -kerning first=363 second=199 amount=-2 -kerning first=952 second=1079 amount=-1 -kerning first=960 second=89 amount=-5 -kerning first=117 second=1035 amount=-5 -kerning first=120 second=291 amount=-1 -kerning first=1035 second=251 amount=-1 -kerning first=291 second=113 amount=-1 -kerning first=58 second=235 amount=-1 -kerning first=198 second=365 amount=-1 -kerning first=8363 second=228 amount=-1 -kerning first=95 second=8216 amount=-3 -kerning first=361 second=1118 amount=-1 -kerning first=964 second=39 amount=-3 -kerning first=39 second=248 amount=-1 -kerning first=182 second=171 amount=-3 -kerning first=1078 second=103 amount=-1 -kerning first=196 second=8217 amount=-3 -kerning first=8361 second=1257 amount=-1 -kerning first=322 second=225 amount=-1 -kerning first=900 second=115 amount=-1 -kerning first=1107 second=267 amount=-1 -kerning first=102 second=940 amount=-1 -kerning first=105 second=249 amount=-1 -kerning first=365 second=1038 amount=-2 -kerning first=965 second=214 amount=-2 -kerning first=262 second=8218 amount=-1 -kerning first=1041 second=356 amount=-5 -kerning first=63 second=338 amount=-2 -kerning first=1075 second=972 amount=-1 -kerning first=206 second=250 amount=-1 -kerning first=203 second=941 amount=-1 -kerning first=86 second=262 amount=-2 -kerning first=252 second=89 amount=-5 -kerning first=126 second=1098 amount=-3 -kerning first=162 second=339 amount=-1 -kerning first=165 second=101 amount=-1 -kerning first=47 second=113 amount=-2 -kerning first=1084 second=228 amount=-1 -kerning first=8372 second=962 amount=-1 -kerning first=905 second=240 amount=-1 -kerning first=90 second=212 amount=-1 -kerning first=1117 second=370 amount=-2 -kerning first=233 second=102 amount=-1 -kerning first=113 second=114 amount=2 -kerning first=1220 second=67 amount=-2 -kerning first=253 second=266 amount=-2 -kerning first=256 second=39 amount=-3 -kerning first=973 second=79 amount=-2 -kerning first=166 second=279 amount=-1 -kerning first=163 second=970 amount=-1 -kerning first=1049 second=920 amount=-2 -kerning first=191 second=213 amount=-2 -kerning first=306 second=103 amount=-1 -kerning first=1081 second=1257 amount=-1 -kerning first=214 second=115 amount=-1 -kerning first=88 second=1185 amount=-3 -kerning first=91 second=367 amount=-1 -kerning first=1223 second=242 amount=-1 -kerning first=374 second=1101 amount=-4 -kerning first=971 second=945 amount=-1 -kerning first=170 second=226 amount=-1 -kerning first=280 second=356 amount=-5 -kerning first=192 second=368 amount=-2 -kerning first=304 second=972 amount=-1 -kerning first=218 second=65 amount=-2 -kerning first=238 second=227 amount=-1 -kerning first=358 second=357 amount=-1 -kerning first=361 second=117 amount=-1 -kerning first=258 second=369 amount=-1 -kerning first=8226 second=244 amount=-1 -kerning first=193 second=1066 amount=-5 -kerning first=190 second=8221 amount=-3 -kerning first=314 second=228 amount=-1 -kerning first=79 second=90 amount=-1 -kerning first=1096 second=962 amount=-1 -kerning first=216 second=916 amount=-2 -kerning first=923 second=283 amount=-1 -kerning first=96 second=943 amount=-1 -kerning first=236 second=1256 amount=-2 -kerning first=365 second=67 amount=-2 -kerning first=958 second=217 amount=-2 -kerning first=1037 second=119 amount=-4 -kerning first=287 second=920 amount=-2 -kerning first=8250 second=194 amount=-3 -kerning first=60 second=103 amount=-1 -kerning first=1071 second=286 amount=-2 -kerning first=1068 second=1026 amount=-5 -kerning first=200 second=253 amount=-1 -kerning first=311 second=1257 amount=-2 -kerning first=80 second=267 amount=-1 -kerning first=1103 second=218 amount=-2 -kerning first=934 second=230 amount=-1 -kerning first=955 second=947 amount=-4 -kerning first=960 second=372 amount=-5 -kerning first=38 second=356 amount=-5 -kerning first=41 second=116 amount=-1 -kerning first=180 second=268 amount=-2 -kerning first=8240 second=1108 amount=-1 -kerning first=8260 second=347 amount=-1 -kerning first=58 second=972 amount=-1 -kerning first=61 second=281 amount=-1 -kerning first=1076 second=231 amount=-1 -kerning first=8363 second=965 amount=-1 -kerning first=1106 second=373 amount=-1 -kerning first=221 second=1102 amount=-3 -kerning first=928 second=1263 amount=-1 -kerning first=247 second=269 amount=-1 -kerning first=124 second=973 amount=-1 -kerning first=1046 second=244 amount=-2 -kerning first=185 second=216 amount=-2 -kerning first=300 second=106 amount=1 -kerning first=65 second=228 amount=-1 -kerning first=322 second=962 amount=-1 -kerning first=1102 second=8230 amount=-1 -kerning first=1118 second=83 amount=-1 -kerning first=942 second=333 amount=-1 -kerning first=1203 second=245 amount=-1 -kerning first=251 second=217 amount=-2 -kerning first=965 second=949 amount=-1 -kerning first=968 second=257 amount=-1 -kerning first=164 second=229 amount=-1 -kerning first=274 second=359 amount=-1 -kerning first=277 second=119 amount=-1 -kerning first=43 second=920 amount=-2 -kerning first=183 second=1195 amount=-1 -kerning first=186 second=371 amount=-1 -kerning first=298 second=1026 amount=-5 -kerning first=301 second=286 amount=-2 -kerning first=63 second=1257 amount=-1 -kerning first=1079 second=1090 amount=-1 -kerning first=1083 second=334 amount=-2 -kerning first=330 second=218 amount=-2 -kerning first=8377 second=376 amount=-5 -kerning first=904 second=346 amount=-1 -kerning first=946 second=273 amount=-1 -kerning first=950 second=45 amount=-2 -kerning first=943 second=964 amount=-2 -kerning first=249 second=947 amount=-4 -kerning first=252 second=372 amount=-5 -kerning first=375 second=287 amount=-1 -kerning first=162 second=1262 amount=-2 -kerning first=165 second=1240 amount=-2 -kerning first=1048 second=1108 amount=-1 -kerning first=193 second=81 amount=-2 -kerning first=305 second=231 amount=-1 -kerning first=70 second=331 amount=-1 -kerning first=1084 second=965 amount=-1 -kerning first=331 second=373 amount=-1 -kerning first=8372 second=8250 amount=-1 -kerning first=905 second=1028 amount=-2 -kerning first=910 second=288 amount=-3 -kerning first=951 second=220 amount=-2 -kerning first=1220 second=350 amount=-1 -kerning first=379 second=232 amount=-1 -kerning first=973 second=362 amount=-2 -kerning first=169 second=332 amount=-2 -kerning first=282 second=244 amount=-1 -kerning first=54 second=106 amount=1 -kerning first=217 second=193 amount=-2 -kerning first=332 second=1071 amount=-1 -kerning first=338 second=83 amount=-1 -kerning first=916 second=233 amount=-1 -kerning first=237 second=333 amount=-1 -kerning first=952 second=375 amount=-1 -kerning first=260 second=257 amount=-1 -kerning first=971 second=8211 amount=-2 -kerning first=35 second=119 amount=-4 -kerning first=170 second=963 amount=-1 -kerning first=174 second=271 amount=-1 -kerning first=8225 second=352 amount=-1 -kerning first=52 second=1026 amount=-5 -kerning first=55 second=286 amount=-2 -kerning first=313 second=334 amount=-1 -kerning first=78 second=218 amount=-2 -kerning first=1170 second=8212 amount=-2 -kerning first=101 second=120 amount=-2 -kerning first=238 second=964 amount=-3 -kerning first=950 second=8249 amount=-3 -kerning first=121 second=287 amount=-1 -kerning first=1299 second=235 amount=-1 -kerning first=178 second=219 amount=-2 -kerning first=289 second=347 amount=-1 -kerning first=59 second=231 amount=-1 -kerning first=202 second=121 amount=-1 -kerning first=314 second=965 amount=-1 -kerning first=8364 second=224 amount=-1 -kerning first=1096 second=8250 amount=-1 -kerning first=931 second=336 amount=-2 -kerning first=1186 second=248 amount=-1 -kerning first=365 second=350 amount=-1 -kerning first=125 second=232 amount=-1 -kerning first=262 second=1176 amount=1 -kerning first=40 second=244 amount=-1 -kerning first=179 second=374 amount=-5 -kerning first=1075 second=337 amount=-1 -kerning first=206 second=71 amount=-2 -kerning first=323 second=221 amount=-5 -kerning first=901 second=111 amount=-1 -kerning first=86 second=83 amount=-1 -kerning first=1103 second=953 amount=-1 -kerning first=369 second=290 amount=-2 -kerning first=268 second=1051 amount=-1 -kerning first=299 second=234 amount=-1 -kerning first=61 second=1090 amount=-3 -kerning first=64 second=334 amount=-2 -kerning first=1080 second=277 amount=-1 -kerning first=207 second=246 amount=-1 -kerning first=187 second=84 amount=-3 -kerning first=8366 second=1079 amount=-1 -kerning first=8378 second=89 amount=-5 -kerning first=902 second=291 amount=-1 -kerning first=87 second=258 amount=-5 -kerning first=1117 second=211 amount=-2 -kerning first=342 second=8212 amount=-1 -kerning first=1207 second=113 amount=-1 -kerning first=253 second=85 amount=-2 -kerning first=373 second=235 amount=-1 -kerning first=967 second=365 amount=-1 -kerning first=163 second=335 amount=-1 -kerning first=166 second=97 amount=-1 -kerning first=42 second=1108 amount=-1 -kerning first=188 second=259 amount=-1 -kerning first=191 second=34 amount=-3 -kerning first=65 second=965 amount=-1 -kerning first=1085 second=224 amount=-1 -kerning first=211 second=196 amount=-2 -kerning first=322 second=8250 amount=-1 -kerning first=332 second=86 amount=-2 -kerning first=1118 second=366 amount=-2 -kerning first=354 second=248 amount=-3 -kerning first=965 second=8217 amount=-3 -kerning first=164 second=966 amount=-1 -kerning first=167 second=275 amount=-1 -kerning first=8221 second=115 amount=-1 -kerning first=49 second=289 amount=-1 -kerning first=304 second=337 amount=-1 -kerning first=72 second=221 amount=-5 -kerning first=215 second=111 amount=-1 -kerning first=330 second=953 amount=-1 -kerning first=89 second=1177 amount=-4 -kerning first=92 second=363 amount=-1 -kerning first=232 second=967 amount=-2 -kerning first=258 second=210 amount=-2 -kerning first=381 second=100 amount=-1 -kerning first=1026 second=250 amount=-1 -kerning first=53 second=234 amount=-1 -kerning first=1064 second=1241 amount=-1 -kerning first=1067 second=187 amount=-1 -kerning first=193 second=364 amount=-2 -kerning first=305 second=968 amount=-1 -kerning first=310 second=277 amount=-2 -kerning first=73 second=376 amount=-5 -kerning first=1099 second=89 amount=-5 -kerning first=213 second=1035 amount=-2 -kerning first=910 second=1098 amount=-2 -kerning first=915 second=339 amount=-1 -kerning first=93 second=1059 amount=-2 -kerning first=923 second=101 amount=-1 -kerning first=90 second=8212 amount=-3 -kerning first=1176 second=251 amount=-1 -kerning first=356 second=1117 amount=-2 -kerning first=954 second=263 amount=-2 -kerning first=119 second=235 amount=-1 -kerning first=191 second=8216 amount=-3 -kerning first=80 second=86 amount=-1 -kerning first=1103 second=39 amount=-3 -kerning first=338 second=366 amount=-2 -kerning first=916 second=970 amount=-1 -kerning first=926 second=279 amount=-1 -kerning first=100 second=248 amount=-1 -kerning first=960 second=213 amount=-2 -kerning first=257 second=8217 amount=-1 -kerning first=260 second=1063 amount=-3 -kerning first=38 second=197 amount=-1 -kerning first=1035 second=355 amount=-1 -kerning first=180 second=87 amount=-5 -kerning first=58 second=337 amount=-1 -kerning first=61 second=99 amount=-1 -kerning first=198 second=940 amount=-1 -kerning first=201 second=249 amount=-1 -kerning first=78 second=953 amount=-1 -kerning first=336 second=8218 amount=-1 -kerning first=936 second=226 amount=-1 -kerning first=124 second=338 amount=-2 -kerning first=160 second=100 amount=-1 -kerning first=1299 second=972 amount=-1 -kerning first=182 second=262 amount=-2 -kerning first=294 second=1241 amount=-1 -kerning first=297 second=187 amount=-1 -kerning first=59 second=968 amount=-1 -kerning first=62 second=277 amount=-1 -kerning first=1078 second=227 amount=-1 -kerning first=205 second=199 amount=-2 -kerning first=317 second=1079 amount=-1 -kerning first=8369 second=269 amount=-1 -kerning first=325 second=89 amount=-5 -kerning first=108 second=113 amount=-1 -kerning first=105 second=353 amount=-1 -kerning first=245 second=955 amount=-1 -kerning first=962 second=1066 amount=-5 -kerning first=958 second=8221 amount=-3 -kerning first=8211 second=118 amount=-1 -kerning first=186 second=212 amount=-2 -kerning first=203 second=1118 amount=-1 -kerning first=206 second=354 amount=-5 -kerning first=330 second=39 amount=-3 -kerning first=8377 second=217 amount=-2 -kerning first=83 second=1184 amount=-1 -kerning first=86 second=366 amount=-2 -kerning first=1119 second=79 amount=-2 -kerning first=112 second=63 amount=-2 -kerning first=252 second=213 amount=-2 -kerning first=372 second=341 amount=-2 -kerning first=375 second=103 amount=-1 -kerning first=165 second=225 amount=-1 -kerning first=278 second=115 amount=-1 -kerning first=184 second=1185 amount=-3 -kerning first=67 second=379 amount=-1 -kerning first=207 second=1038 amount=-2 -kerning first=8372 second=947 amount=-4 -kerning first=8378 second=372 amount=-5 -kerning first=902 second=1101 amount=-1 -kerning first=84 second=8218 amount=-3 -kerning first=1117 second=945 amount=-1 -kerning first=948 second=268 amount=-2 -kerning first=253 second=368 amount=-2 -kerning first=376 second=281 amount=-4 -kerning first=373 second=972 amount=-1 -kerning first=8220 second=243 amount=-1 -kerning first=48 second=1241 amount=-1 -kerning first=51 second=187 amount=-1 -kerning first=185 second=8220 amount=-3 -kerning first=306 second=227 amount=-1 -kerning first=74 second=89 amount=-5 -kerning first=1094 second=269 amount=-1 -kerning first=906 second=973 amount=-1 -kerning first=94 second=251 amount=-1 -kerning first=952 second=216 amount=-2 -kerning first=254 second=1066 amount=-5 -kerning first=251 second=8221 amount=-3 -kerning first=192 second=943 amount=-1 -kerning first=195 second=252 amount=-1 -kerning first=304 second=1256 amount=-2 -kerning first=78 second=39 amount=-3 -kerning first=75 second=266 amount=-3 -kerning first=1178 second=119 amount=-2 -kerning first=358 second=920 amount=-2 -kerning first=950 second=1195 amount=-1 -kerning first=121 second=103 amount=-1 -kerning first=1224 second=1026 amount=-5 -kerning first=378 second=1257 amount=-1 -kerning first=36 second=115 amount=-1 -kerning first=175 second=267 amount=-1 -kerning first=8226 second=346 amount=-1 -kerning first=8361 second=273 amount=-1 -kerning first=8364 second=45 amount=-2 -kerning first=1096 second=947 amount=-4 -kerning first=1099 second=372 amount=-5 -kerning first=915 second=1262 amount=-2 -kerning first=923 second=1240 amount=-2 -kerning first=962 second=81 amount=-2 -kerning first=119 second=972 amount=-1 -kerning first=122 second=281 amount=-1 -kerning first=1037 second=243 amount=-1 -kerning first=8230 second=1028 amount=-1 -kerning first=60 second=227 amount=-1 -kerning first=203 second=117 amount=-1 -kerning first=200 second=357 amount=-1 -kerning first=318 second=269 amount=-1 -kerning first=8365 second=220 amount=-2 -kerning first=80 second=369 amount=-1 -kerning first=934 second=332 amount=-2 -kerning first=1187 second=244 amount=-1 -kerning first=369 second=106 amount=1 -kerning first=126 second=228 amount=-1 -kerning first=271 second=118 amount=-4 -kerning first=38 second=916 amount=-1 -kerning first=41 second=240 amount=-1 -kerning first=177 second=1194 amount=-2 -kerning first=180 second=370 amount=-2 -kerning first=296 second=283 amount=-1 -kerning first=58 second=1256 amount=-2 -kerning first=1076 second=333 amount=-1 -kerning first=207 second=67 amount=-2 -kerning first=8366 second=375 amount=-1 -kerning first=87 second=79 amount=-2 -kerning first=350 second=119 amount=-1 -kerning first=936 second=963 amount=-1 -kerning first=247 second=371 amount=-1 -kerning first=367 second=1026 amount=-5 -kerning first=124 second=1257 amount=-1 -kerning first=1046 second=346 amount=-1 -kerning first=300 second=230 amount=-1 -kerning first=1085 second=45 amount=-2 -kerning first=1081 second=273 amount=-1 -kerning first=322 second=947 amount=-4 -kerning first=325 second=372 amount=-5 -kerning first=8364 second=8249 amount=-3 -kerning first=903 second=287 amount=-1 -kerning first=254 second=81 amount=-2 -kerning first=374 second=231 amount=-4 -kerning first=968 second=361 amount=-1 -kerning first=971 second=121 amount=-1 -kerning first=8217 second=196 amount=-3 -kerning first=1051 second=288 amount=-2 -kerning first=298 second=1263 amount=-1 -kerning first=69 second=269 amount=-1 -kerning first=1087 second=220 amount=-2 -kerning first=1119 second=362 amount=-2 -kerning first=946 second=374 amount=-5 -kerning first=1219 second=289 amount=-1 -kerning first=1026 second=71 amount=-2 -kerning first=165 second=962 amount=-1 -kerning first=1241 second=8230 amount=-1 -kerning first=50 second=283 amount=-1 -kerning first=1064 second=233 amount=-1 -kerning first=305 second=333 amount=-1 -kerning first=73 second=217 amount=-2 -kerning first=93 second=359 amount=-1 -kerning first=1117 second=8211 amount=-2 -kerning first=96 second=119 amount=-4 -kerning first=236 second=271 amount=-1 -kerning first=113 second=1026 amount=-5 -kerning first=376 second=1090 amount=-2 -kerning first=379 second=334 amount=-1 -kerning first=1027 second=246 amount=-1 -kerning first=172 second=218 amount=-2 -kerning first=282 second=346 amount=-1 -kerning first=8224 second=291 amount=-1 -kerning first=54 second=230 amount=-1 -kerning first=194 second=360 amount=-2 -kerning first=306 second=964 amount=-3 -kerning first=315 second=45 amount=-3 -kerning first=311 second=273 amount=-2 -kerning first=74 second=372 amount=-5 -kerning first=1085 second=8249 amount=-3 -kerning first=916 second=335 amount=-1 -kerning first=926 second=97 amount=-1 -kerning first=240 second=219 amount=-2 -kerning first=357 second=1108 amount=-1 -kerning first=955 second=259 amount=-1 -kerning first=960 second=34 amount=-3 -kerning first=120 second=231 amount=-2 -kerning first=260 second=361 amount=-1 -kerning first=35 second=243 amount=-1 -kerning first=174 second=373 amount=-4 -kerning first=52 second=1263 amount=-1 -kerning first=316 second=220 amount=-2 -kerning first=8363 second=171 amount=-3 -kerning first=221 second=232 amount=-4 -kerning first=928 second=275 amount=-1 -kerning first=1299 second=337 amount=-1 -kerning first=39 second=193 amount=-3 -kerning first=1039 second=111 amount=-1 -kerning first=182 second=83 amount=-1 -kerning first=294 second=233 amount=-1 -kerning first=59 second=333 amount=-1 -kerning first=1070 second=967 amount=-1 -kerning first=202 second=245 amount=-1 -kerning first=317 second=375 amount=-1 -kerning first=962 second=364 amount=-2 -kerning first=125 second=334 amount=-2 -kerning first=40 second=346 amount=-1 -kerning first=1037 second=1035 amount=-5 -kerning first=1041 second=291 amount=-1 -kerning first=63 second=273 amount=-1 -kerning first=60 second=964 amount=-3 -kerning first=315 second=8249 amount=-3 -kerning first=8370 second=263 amount=-1 -kerning first=901 second=235 amount=-1 -kerning first=103 second=1108 amount=-1 -kerning first=249 second=259 amount=-1 -kerning first=252 second=34 amount=-3 -kerning first=960 second=8216 amount=-3 -kerning first=126 second=965 amount=-1 -kerning first=41 second=1028 amount=-2 -kerning first=44 second=288 amount=-1 -kerning first=299 second=336 amount=-2 -kerning first=1084 second=171 amount=-3 -kerning first=207 second=350 amount=-1 -kerning first=8378 second=213 amount=-2 -kerning first=1106 second=8217 amount=-1 -kerning first=233 second=47 amount=-1 -kerning first=948 second=87 amount=-5 -kerning first=376 second=99 amount=-4 -kerning first=373 second=337 amount=-1 -kerning first=967 second=940 amount=-1 -kerning first=166 second=221 amount=-5 -kerning first=276 second=351 amount=-1 -kerning first=48 second=233 amount=-1 -kerning first=188 second=363 amount=-1 -kerning first=185 second=1177 amount=-1 -kerning first=906 second=338 amount=-2 -kerning first=1118 second=941 amount=-1 -kerning first=354 second=352 amount=-1 -kerning first=114 second=234 amount=-1 -kerning first=1210 second=1241 amount=-1 -kerning first=1223 second=187 amount=-1 -kerning first=254 second=364 amount=-2 -kerning first=374 second=968 amount=-2 -kerning first=377 second=277 amount=-1 -kerning first=167 second=376 amount=-5 -kerning first=280 second=291 amount=-1 -kerning first=1063 second=339 amount=-1 -kerning first=186 second=8212 amount=-2 -kerning first=189 second=1059 amount=-2 -kerning first=1051 second=1098 amount=-3 -kerning first=1095 second=263 amount=-1 -kerning first=215 second=235 amount=-1 -kerning first=8377 second=8221 amount=-3 -kerning first=252 second=8216 amount=-3 -kerning first=1026 second=354 amount=-5 -kerning first=165 second=8250 amount=-1 -kerning first=53 second=336 amount=-2 -kerning first=1064 second=970 amount=-1 -kerning first=1067 second=279 amount=-1 -kerning first=196 second=248 amount=-1 -kerning first=314 second=171 amount=-3 -kerning first=1099 second=213 amount=-2 -kerning first=331 second=8217 amount=-1 -kerning first=923 second=225 amount=-1 -kerning first=1176 second=355 amount=-1 -kerning first=951 second=1185 amount=-3 -kerning first=119 second=337 amount=-1 -kerning first=122 second=99 amount=-1 -kerning first=37 second=111 amount=-1 -kerning first=1027 second=1038 amount=-2 -kerning first=176 second=261 amount=-1 -kerning first=172 second=953 amount=-1 -kerning first=34 second=351 amount=-1 -kerning first=8224 second=1101 amount=-1 -kerning first=1071 second=226 amount=-1 -kerning first=80 second=210 amount=-2 -kerning first=223 second=100 amount=-1 -kerning first=338 second=941 amount=-1 -kerning first=100 second=352 amount=-1 -kerning first=363 second=1241 amount=-1 -kerning first=952 second=8220 amount=-3 -kerning first=123 second=277 amount=-1 -kerning first=35 second=1035 amount=-5 -kerning first=38 second=291 amount=-1 -kerning first=180 second=211 amount=-2 -kerning first=291 second=339 amount=-1 -kerning first=8240 second=973 amount=-1 -kerning first=296 second=101 amount=-1 -kerning first=201 second=353 amount=-1 -kerning first=204 second=113 amount=-1 -kerning first=321 second=263 amount=-1 -kerning first=8366 second=216 amount=-2 -kerning first=221 second=969 amount=-4 -kerning first=247 second=212 amount=-2 -kerning first=964 second=252 amount=-1 -kerning first=160 second=224 amount=-1 -kerning first=1299 second=1256 amount=-2 -kerning first=178 second=1184 amount=-5 -kerning first=182 second=366 amount=-2 -kerning first=297 second=279 amount=-1 -kerning first=294 second=970 amount=-1 -kerning first=65 second=171 amount=-3 -kerning first=325 second=213 amount=-2 -kerning first=8364 second=1195 amount=-1 -kerning first=8369 second=371 amount=-1 -kerning first=903 second=103 amount=-1 -kerning first=942 second=267 amount=-1 -kerning first=245 second=1185 amount=-1 -kerning first=1041 second=1101 amount=-1 -kerning first=301 second=226 amount=-1 -kerning first=1083 second=268 amount=-2 -kerning first=8370 second=1069 amount=-1 -kerning first=901 second=972 amount=-1 -kerning first=86 second=941 amount=-1 -kerning first=904 second=281 amount=-1 -kerning first=89 second=250 amount=-2 -kerning first=246 second=8220 amount=-1 -kerning first=375 second=227 amount=-1 -kerning first=162 second=1079 amount=-1 -kerning first=168 second=89 amount=-5 -kerning first=44 second=1098 amount=-3 -kerning first=47 second=339 amount=-2 -kerning first=1048 second=973 amount=-1 -kerning first=50 second=101 amount=-1 -kerning first=190 second=251 amount=-1 -kerning first=70 second=263 amount=-1 -kerning first=327 second=1066 amount=-5 -kerning first=324 second=8221 amount=-1 -kerning first=910 second=228 amount=-4 -kerning first=1171 second=118 amount=-4 -kerning first=356 second=240 amount=-3 -kerning first=944 second=1194 amount=-2 -kerning first=948 second=370 amount=-2 -kerning first=1220 second=283 amount=-1 -kerning first=253 second=943 amount=-1 -kerning first=256 second=252 amount=-1 -kerning first=376 second=382 amount=-2 -kerning first=1027 second=67 amount=-2 -kerning first=169 second=266 amount=-2 -kerning first=172 second=39 amount=-3 -kerning first=48 second=970 amount=-1 -kerning first=51 second=279 amount=-1 -kerning first=74 second=213 amount=-2 -kerning first=1085 second=1195 amount=-1 -kerning first=906 second=1257 amount=-1 -kerning first=94 second=355 amount=-1 -kerning first=237 second=267 amount=-1 -kerning first=174 second=214 amount=-2 -kerning first=280 second=1101 amount=-1 -kerning first=8225 second=287 amount=-1 -kerning first=55 second=226 amount=-1 -kerning first=1063 second=1262 amount=-2 -kerning first=195 second=356 amount=-5 -kerning first=198 second=116 amount=-1 -kerning first=313 second=268 amount=-1 -kerning first=1095 second=1069 amount=-1 -kerning first=215 second=972 amount=-1 -kerning first=1178 second=243 amount=-1 -kerning first=121 second=227 amount=-1 -kerning first=1224 second=1263 amount=-1 -kerning first=175 second=369 amount=-1 -kerning first=317 second=216 amount=-2 -kerning first=8361 second=374 amount=-5 -kerning first=73 second=8221 amount=-3 -kerning first=76 second=1066 amount=-6 -kerning first=923 second=962 amount=-1 -kerning first=102 second=240 amount=-1 -kerning first=239 second=1194 amount=-2 -kerning first=365 second=283 amount=-1 -kerning first=262 second=1044 amount=-1 -kerning first=183 second=79 amount=-2 -kerning first=1071 second=963 amount=-1 -kerning first=1075 second=271 amount=-1 -kerning first=200 second=920 amount=-2 -kerning first=318 second=371 amount=-1 -kerning first=315 second=1195 amount=-1 -kerning first=8370 second=84 amount=-5 -kerning first=369 second=230 amount=-1 -kerning first=963 second=360 amount=-2 -kerning first=966 second=120 amount=-2 -kerning first=268 second=923 amount=-1 -kerning first=271 second=242 amount=-1 -kerning first=38 second=1101 amount=-1 -kerning first=180 second=945 amount=-1 -kerning first=296 second=1240 amount=-2 -kerning first=291 second=1262 amount=-2 -kerning first=64 second=268 amount=-2 -kerning first=1080 second=219 amount=-2 -kerning first=321 second=1069 amount=-1 -kerning first=327 second=81 amount=-2 -kerning first=8378 second=34 amount=-3 -kerning first=902 second=231 amount=-1 -kerning first=8372 second=259 amount=-1 -kerning first=1117 second=121 amount=-1 -kerning first=941 second=373 amount=-1 -kerning first=1202 second=288 amount=-1 -kerning first=367 second=1263 amount=-1 -kerning first=163 second=269 amount=-1 -kerning first=42 second=973 amount=-1 -kerning first=1049 second=232 amount=-1 -kerning first=300 second=332 amount=-2 -kerning first=1081 second=374 amount=-5 -kerning first=91 second=118 amount=-4 -kerning first=354 second=193 amount=-6 -kerning first=1210 second=233 amount=-1 -kerning first=374 second=333 amount=-4 -kerning first=971 second=245 amount=-1 -kerning first=167 second=217 amount=-2 -kerning first=49 second=229 amount=-1 -kerning first=192 second=119 amount=-4 -kerning first=189 second=359 amount=-1 -kerning first=301 second=963 amount=-1 -kerning first=304 second=271 amount=-1 -kerning first=69 second=371 amount=-1 -kerning first=1095 second=84 amount=-5 -kerning first=209 second=1026 amount=-5 -kerning first=904 second=1090 amount=-3 -kerning first=1170 second=246 amount=-1 -kerning first=255 second=360 amount=-2 -kerning first=375 second=964 amount=-3 -kerning first=381 second=45 amount=-3 -kerning first=378 second=273 amount=-1 -kerning first=165 second=947 amount=-4 -kerning first=168 second=372 amount=-5 -kerning first=50 second=1240 amount=-2 -kerning first=47 second=1262 amount=-2 -kerning first=1064 second=335 amount=-1 -kerning first=1067 second=97 amount=-1 -kerning first=70 second=1069 amount=-1 -kerning first=76 second=81 amount=-1 -kerning first=1099 second=34 amount=-3 -kerning first=1096 second=259 amount=-1 -kerning first=8378 second=8216 amount=-3 -kerning first=910 second=965 amount=-2 -kerning first=96 second=243 amount=-1 -kerning first=236 second=373 amount=-4 -kerning first=356 second=1028 amount=-1 -kerning first=113 second=1263 amount=-1 -kerning first=1027 second=350 amount=-1 -kerning first=287 second=232 amount=-1 -kerning first=54 second=332 amount=-2 -kerning first=1065 second=966 amount=-1 -kerning first=197 second=244 amount=-1 -kerning first=926 second=221 amount=-5 -kerning first=1184 second=111 amount=-2 -kerning first=234 second=8230 amount=-1 -kerning first=363 second=233 amount=-1 -kerning first=955 second=363 amount=-1 -kerning first=952 second=1177 amount=-1 -kerning first=120 second=333 amount=-2 -kerning first=1257 second=967 amount=-2 -kerning first=1035 second=290 amount=-2 -kerning first=174 second=949 amount=-1 -kerning first=177 second=257 amount=-1 -kerning first=283 second=1299 amount=-1 -kerning first=8240 second=338 amount=-2 -kerning first=8260 second=100 amount=-1 -kerning first=55 second=963 amount=-1 -kerning first=58 second=271 amount=-1 -kerning first=321 second=84 amount=-5 -kerning first=8363 second=262 amount=-2 -kerning first=221 second=334 amount=-3 -kerning first=928 second=376 amount=-5 -kerning first=1178 second=1035 amount=-2 -kerning first=1185 second=291 amount=-2 -kerning first=956 second=1059 amount=-2 -kerning first=124 second=273 amount=-1 -kerning first=160 second=45 amount=-2 -kerning first=121 second=964 amount=-3 -kerning first=39 second=287 amount=-1 -kerning first=1039 second=235 amount=-1 -kerning first=294 second=335 amount=-1 -kerning first=297 second=97 amount=-1 -kerning first=62 second=219 amount=-2 -kerning first=202 second=347 amount=-1 -kerning first=325 second=34 amount=-3 -kerning first=322 second=259 amount=-1 -kerning first=8369 second=212 amount=-2 -kerning first=1099 second=8216 amount=-3 -kerning first=346 second=196 amount=-1 -kerning first=923 second=8250 amount=-1 -kerning first=105 second=288 amount=-2 -kerning first=965 second=248 amount=-1 -kerning first=161 second=220 amount=-2 -kerning first=43 second=232 amount=-1 -kerning first=179 second=1176 amount=-1 -kerning first=183 second=362 amount=-2 -kerning first=298 second=275 amount=-1 -kerning first=63 second=374 amount=-5 -kerning first=1075 second=1076 amount=-3 -kerning first=206 second=289 amount=-1 -kerning first=1083 second=87 amount=-5 -kerning first=8370 second=367 amount=-1 -kerning first=8365 second=1185 amount=-3 -kerning first=901 second=337 amount=-1 -kerning first=904 second=99 amount=-1 -kerning first=89 second=71 amount=-3 -kerning first=249 second=363 amount=-1 -kerning first=162 second=375 amount=-1 -kerning first=1048 second=338 amount=-2 -kerning first=180 second=8211 amount=-2 -kerning first=70 second=84 amount=-5 -kerning first=1084 second=262 amount=-2 -kerning first=327 second=364 amount=-2 -kerning first=8366 second=8220 amount=-3 -kerning first=902 second=968 amount=-1 -kerning first=905 second=277 amount=-1 -kerning first=90 second=246 amount=-1 -kerning first=1168 second=199 amount=-2 -kerning first=350 second=1035 amount=-1 -kerning first=948 second=211 amount=-2 -kerning first=1202 second=1098 amount=-2 -kerning first=247 second=8212 amount=-2 -kerning first=250 second=1059 amount=-2 -kerning first=1220 second=101 amount=-1 -kerning first=1207 second=339 amount=-1 -kerning first=973 second=113 amount=-1 -kerning first=160 second=8249 amount=-3 -kerning first=169 second=85 amount=-2 -kerning first=48 second=335 amount=-1 -kerning first=51 second=97 amount=-1 -kerning first=74 second=34 amount=-3 -kerning first=325 second=8216 amount=-3 -kerning first=1118 second=1118 amount=-1 -kerning first=1223 second=279 amount=-1 -kerning first=1210 second=970 amount=-1 -kerning first=8225 second=103 amount=-1 -kerning first=49 second=966 amount=-1 -kerning first=52 second=275 amount=-1 -kerning first=313 second=87 amount=-4 -kerning first=1095 second=367 amount=-1 -kerning first=1087 second=1185 amount=-3 -kerning first=215 second=337 amount=-1 -kerning first=95 second=351 amount=-1 -kerning first=1170 second=1038 amount=-2 -kerning first=238 second=261 amount=-1 -kerning first=1240 second=88 amount=-3 -kerning first=175 second=210 amount=-2 -kerning first=289 second=100 amount=-1 -kerning first=8226 second=281 amount=-1 -kerning first=196 second=352 amount=-1 -kerning first=314 second=262 amount=-2 -kerning first=76 second=364 amount=-1 -kerning first=915 second=1079 amount=-1 -kerning first=96 second=1035 amount=-5 -kerning first=931 second=89 amount=-5 -kerning first=365 second=101 amount=-1 -kerning first=958 second=251 amount=-1 -kerning first=37 second=235 amount=-1 -kerning first=176 second=365 amount=-1 -kerning first=318 second=212 amount=-2 -kerning first=74 second=8216 amount=-3 -kerning first=1103 second=252 amount=-1 -kerning first=223 second=224 amount=-1 -kerning first=338 second=1118 amount=-1 -kerning first=934 second=266 amount=-2 -kerning first=240 second=1184 amount=-5 -kerning first=363 second=970 amount=-1 -kerning first=126 second=171 amount=-3 -kerning first=174 second=8217 amount=-3 -kerning first=296 second=225 amount=-1 -kerning first=8240 second=1257 amount=-1 -kerning first=64 second=87 amount=-5 -kerning first=1076 second=267 amount=-1 -kerning first=316 second=1185 amount=-3 -kerning first=321 second=367 amount=-1 -kerning first=84 second=249 amount=-2 -kerning first=221 second=1220 amount=-3 -kerning first=964 second=356 amount=-5 -kerning first=967 second=116 amount=-1 -kerning first=42 second=338 amount=-2 -kerning first=1039 second=972 amount=-1 -kerning first=185 second=250 amount=-1 -kerning first=182 second=941 amount=-1 -kerning first=1046 second=281 amount=-2 -kerning first=65 second=262 amount=-2 -kerning first=205 second=1241 amount=-1 -kerning first=317 second=8220 amount=-3 -kerning first=903 second=227 amount=-1 -kerning first=88 second=199 amount=-3 -kerning first=1118 second=117 amount=-1 -kerning first=942 second=369 amount=-1 -kerning first=105 second=1098 amount=-3 -kerning first=108 second=339 amount=-1 -kerning first=251 second=251 amount=-1 -kerning first=164 second=263 amount=-1 -kerning first=1051 second=228 amount=-1 -kerning first=69 second=212 amount=-2 -kerning first=1083 second=370 amount=-2 -kerning first=330 second=252 amount=-1 -kerning first=901 second=1256 amount=-2 -kerning first=86 second=1118 amount=-1 -kerning first=1170 second=67 amount=-2 -kerning first=235 second=39 amount=-1 -kerning first=950 second=79 amount=-2 -kerning first=1219 second=229 amount=-1 -kerning first=372 second=1081 amount=-2 -kerning first=168 second=213 amount=-2 -kerning first=8212 second=1026 amount=-4 -kerning first=8222 second=56 amount=-1 -kerning first=8218 second=286 amount=-1 -kerning first=50 second=225 amount=-1 -kerning first=1048 second=1257 amount=-1 -kerning first=190 second=355 amount=-1 -kerning first=193 second=115 amount=-1 -kerning first=305 second=267 amount=-1 -kerning first=70 second=367 amount=-1 -kerning first=1171 second=242 amount=-1 -kerning first=236 second=214 amount=-2 -kerning first=948 second=945 amount=-1 -kerning first=1220 second=1240 amount=-2 -kerning first=256 second=356 amount=-5 -kerning first=379 second=268 amount=-1 -kerning first=169 second=368 amount=-2 -kerning first=282 second=281 amount=-1 -kerning first=8224 second=231 amount=-1 -kerning first=338 second=117 amount=-1 -kerning first=916 second=269 amount=-1 -kerning first=237 second=369 amount=-1 -kerning first=357 second=973 amount=-1 -kerning first=1035 second=106 amount=1 -kerning first=170 second=1066 amount=-5 -kerning first=167 second=8221 amount=-3 -kerning first=8221 second=1298 amount=-3 -kerning first=198 second=240 amount=-1 -kerning first=313 second=370 amount=-1 -kerning first=8363 second=83 amount=-1 -kerning first=78 second=252 amount=-1 -kerning first=215 second=1256 amount=-2 -kerning first=336 second=1044 amount=-1 -kerning first=928 second=217 amount=-2 -kerning first=235 second=8222 amount=-1 -kerning first=956 second=359 amount=-1 -kerning first=961 second=119 amount=-1 -kerning first=1299 second=271 amount=-1 -kerning first=381 second=1195 amount=-1 -kerning first=39 second=103 amount=-1 -kerning first=1036 second=286 amount=-3 -kerning first=1033 second=1026 amount=-5 -kerning first=178 second=253 amount=-1 -kerning first=8226 second=1090 amount=-3 -kerning first=59 second=267 amount=-1 -kerning first=1074 second=218 amount=-2 -kerning first=343 second=242 amount=-1 -kerning first=923 second=947 amount=-4 -kerning first=931 second=372 amount=-5 -kerning first=365 second=1240 amount=-2 -kerning first=125 second=268 amount=-2 -kerning first=37 second=972 amount=-1 -kerning first=40 second=281 amount=-1 -kerning first=1041 second=231 amount=-1 -kerning first=86 second=117 amount=-2 -kerning first=103 second=973 amount=-1 -kerning first=947 second=232 amount=-1 -kerning first=369 second=332 amount=-2 -kerning first=162 second=216 amount=-2 -kerning first=1038 second=1298 amount=-1 -kerning first=296 second=962 amount=-1 -kerning first=61 second=1194 amount=-2 -kerning first=64 second=370 amount=-2 -kerning first=1084 second=83 amount=-1 -kerning first=207 second=283 amount=-1 -kerning first=8366 second=1177 amount=-1 -kerning first=8372 second=363 amount=-1 -kerning first=902 second=333 amount=-1 -kerning first=84 second=1044 amount=-4 -kerning first=90 second=67 amount=-1 -kerning first=1117 second=245 amount=-1 -kerning first=944 second=257 amount=-1 -kerning first=250 second=359 amount=-1 -kerning first=253 second=119 amount=-4 -kerning first=373 second=271 amount=-1 -kerning first=376 second=44 amount=-4 -kerning first=160 second=1195 amount=-1 -kerning first=163 second=371 amount=-1 -kerning first=273 second=1026 amount=-5 -kerning first=276 second=286 amount=-2 -kerning first=8216 second=234 amount=-1 -kerning first=42 second=1257 amount=-1 -kerning first=1046 second=1090 amount=-3 -kerning first=1049 second=334 amount=-2 -kerning first=303 second=218 amount=-2 -kerning first=8369 second=8212 amount=-2 -kerning first=906 second=273 amount=-1 -kerning first=903 second=964 amount=-3 -kerning first=91 second=242 amount=-1 -kerning first=228 second=947 amount=-1 -kerning first=354 second=287 amount=-2 -kerning first=108 second=1262 amount=-2 -kerning first=1210 second=335 amount=-1 -kerning first=1223 second=97 amount=-1 -kerning first=968 second=1108 amount=-1 -kerning first=971 second=347 amount=-1 -kerning first=164 second=1069 amount=-1 -kerning first=170 second=81 amount=-2 -kerning first=280 second=231 amount=-1 -kerning first=1051 second=965 amount=-1 -kerning first=192 second=243 amount=-1 -kerning first=304 second=373 amount=-4 -kerning first=209 second=1263 amount=-1 -kerning first=912 second=220 amount=-2 -kerning first=1170 second=350 amount=-1 -kerning first=358 second=232 amount=-1 -kerning first=946 second=1176 amount=-1 -kerning first=950 second=362 amount=-2 -kerning first=1219 second=966 amount=-1 -kerning first=1224 second=275 amount=-1 -kerning first=258 second=244 amount=-1 -kerning first=1026 second=289 amount=-1 -kerning first=171 second=256 amount=-1 -kerning first=8226 second=99 amount=-1 -kerning first=50 second=962 amount=-1 -kerning first=1067 second=221 amount=-5 -kerning first=314 second=83 amount=-1 -kerning first=1096 second=363 amount=-1 -kerning first=915 second=375 amount=-1 -kerning first=1176 second=290 amount=-2 -kerning first=236 second=949 amount=-1 -kerning first=239 second=257 amount=-1 -kerning first=948 second=8211 amount=-2 -kerning first=119 second=271 amount=-1 -kerning first=262 second=194 amount=-1 -kerning first=282 second=1090 amount=-3 -kerning first=287 second=334 amount=-2 -kerning first=8224 second=968 amount=-1 -kerning first=57 second=218 amount=-2 -kerning first=1068 second=376 amount=-5 -kerning first=197 second=346 amount=-1 -kerning first=77 second=360 amount=-2 -kerning first=223 second=45 amount=-2 -kerning first=934 second=85 amount=-2 -kerning first=100 second=287 amount=-1 -kerning first=1184 second=235 amount=-2 -kerning first=363 second=335 amount=-1 -kerning first=123 second=219 amount=-2 -kerning first=260 second=1108 amount=-1 -kerning first=38 second=231 amount=-1 -kerning first=177 second=361 amount=-1 -kerning first=180 second=121 amount=-1 -kerning first=8260 second=224 amount=-1 -kerning first=58 second=373 amount=-4 -kerning first=198 second=1028 amount=-2 -kerning first=201 second=288 amount=-2 -kerning first=8363 second=366 amount=-2 -kerning first=339 second=1113 amount=-1 -kerning first=936 second=260 amount=-3 -kerning first=367 second=275 amount=-1 -kerning first=124 second=374 amount=-5 -kerning first=266 second=1033 amount=-1 -kerning first=1039 second=337 amount=-1 -kerning first=185 second=71 amount=-2 -kerning first=1046 second=99 amount=-2 -kerning first=297 second=221 amount=-5 -kerning first=56 second=8230 amount=-1 -kerning first=65 second=83 amount=-1 -kerning first=1074 second=953 amount=-1 -kerning first=205 second=233 amount=-1 -kerning first=1078 second=261 amount=-1 -kerning first=317 second=1177 amount=-1 -kerning first=322 second=363 amount=-1 -kerning first=942 second=210 amount=-2 -kerning first=1203 second=100 amount=-1 -kerning first=965 second=352 amount=-1 -kerning first=164 second=84 amount=-5 -kerning first=274 second=234 amount=-1 -kerning first=43 second=334 amount=-2 -kerning first=1041 second=968 amount=-1 -kerning first=186 second=246 amount=-1 -kerning first=40 second=1090 amount=-3 -kerning first=298 second=376 amount=-5 -kerning first=1083 second=211 amount=-2 -kerning first=66 second=258 amount=-1 -kerning first=323 second=1059 amount=-2 -kerning first=318 second=8212 amount=-2 -kerning first=8377 second=251 amount=-1 -kerning first=1119 second=113 amount=-1 -kerning first=223 second=8249 amount=-3 -kerning first=1116 second=353 amount=-1 -kerning first=947 second=969 amount=-1 -kerning first=165 second=259 amount=-1 -kerning first=168 second=34 amount=-3 -kerning first=8218 second=102 amount=-2 -kerning first=44 second=965 amount=-1 -kerning first=296 second=8250 amount=-1 -kerning first=1080 second=1184 amount=-5 -kerning first=1084 second=366 amount=-2 -kerning first=910 second=171 amount=-3 -kerning first=941 second=8217 amount=-1 -kerning first=113 second=275 amount=-1 -kerning first=116 second=47 amount=-1 -kerning first=1220 second=225 amount=-1 -kerning first=376 second=324 amount=-3 -kerning first=282 second=99 amount=-1 -kerning first=51 second=221 amount=-5 -kerning first=194 second=111 amount=-1 -kerning first=191 second=351 amount=-1 -kerning first=306 second=261 amount=-1 -kerning first=303 second=953 amount=-1 -kerning first=211 second=967 amount=-1 -kerning first=94 second=290 amount=-2 -kerning first=237 second=210 amount=-2 -kerning first=354 second=1097 amount=-2 -kerning first=357 second=338 amount=-2 -kerning first=952 second=250 amount=-1 -kerning first=170 second=364 amount=-2 -kerning first=280 second=968 amount=-1 -kerning first=8225 second=227 amount=-1 -kerning first=52 second=376 amount=-5 -kerning first=1063 second=1079 amount=-1 -kerning first=192 second=1035 amount=-5 -kerning first=195 second=291 amount=-1 -kerning first=1069 second=89 amount=-3 -kerning first=313 second=211 amount=-1 -kerning first=69 second=8212 amount=-2 -kerning first=72 second=1059 amount=-2 -kerning first=238 second=365 amount=-1 -kerning first=1036 second=102 amount=-2 -kerning first=168 second=8216 amount=-3 -kerning first=289 second=224 amount=-1 -kerning first=8222 second=1256 amount=-1 -kerning first=50 second=8250 amount=-1 -kerning first=1074 second=39 amount=-3 -kerning first=314 second=366 amount=-2 -kerning first=8364 second=79 amount=-2 -kerning first=931 second=213 amount=-2 -kerning first=236 second=8217 amount=-3 -kerning first=365 second=225 amount=-1 -kerning first=958 second=355 amount=-1 -kerning first=962 second=115 amount=-1 -kerning first=125 second=87 amount=-5 -kerning first=37 second=337 amount=-1 -kerning first=40 second=99 amount=-1 -kerning first=179 second=249 amount=-1 -kerning first=176 second=940 amount=-1 -kerning first=60 second=261 amount=-1 -kerning first=57 second=953 amount=-1 -kerning first=83 second=198 amount=-1 -kerning first=1103 second=356 amount=-5 -kerning first=934 second=368 amount=-2 -kerning first=103 second=338 amount=-2 -kerning first=1184 second=972 amount=-2 -kerning first=1187 second=281 amount=-1 -kerning first=126 second=262 amount=-2 -kerning first=271 second=187 amount=-1 -kerning first=38 second=968 amount=-1 -kerning first=44 second=49 amount=-4 -kerning first=41 second=277 amount=-1 -kerning first=184 second=199 amount=-2 -kerning first=291 second=1079 amount=-1 -kerning first=299 second=89 amount=-5 -kerning first=64 second=211 amount=-2 -kerning first=204 second=339 amount=-1 -kerning first=207 second=101 amount=-1 -kerning first=201 second=1098 amount=-3 -kerning first=84 second=353 amount=-3 -kerning first=87 second=113 amount=-3 -kerning first=936 second=1066 amount=-5 -kerning first=928 second=8221 amount=-3 -kerning first=967 second=240 amount=-1 -kerning first=163 second=212 amount=-2 -kerning first=1039 second=1256 amount=-2 -kerning first=185 second=354 amount=-5 -kerning first=182 second=1118 amount=-1 -kerning first=300 second=266 amount=-2 -kerning first=303 second=39 amount=-3 -kerning first=62 second=1184 amount=-5 -kerning first=65 second=366 amount=-2 -kerning first=1085 second=79 amount=-2 -kerning first=205 second=970 amount=-1 -kerning first=354 second=103 amount=-2 -kerning first=251 second=355 amount=-1 -kerning first=254 second=115 amount=-1 -kerning first=374 second=267 amount=-4 -kerning first=164 second=367 amount=-1 -kerning first=161 second=1185 amount=-3 -kerning first=8217 second=230 amount=-1 -kerning first=186 second=1038 amount=-2 -kerning first=304 second=214 amount=-2 -kerning first=1083 second=945 amount=-1 -kerning first=330 second=356 amount=-5 -kerning first=112 second=380 amount=-1 -kerning first=162 second=8220 amount=-3 -kerning first=47 second=1079 amount=-1 -kerning first=53 second=89 amount=-5 -kerning first=1064 second=269 amount=-1 -kerning first=305 second=369 amount=-1 -kerning first=70 second=942 amount=-1 -kerning first=73 second=251 amount=-1 -kerning first=213 second=381 amount=-1 -kerning first=915 second=216 amount=-2 -kerning first=1176 second=106 amount=1 -kerning first=230 second=8221 amount=-1 -kerning first=113 second=1080 amount=2 -kerning first=1220 second=962 amount=-1 -kerning first=376 second=1194 amount=-3 -kerning first=1027 second=283 amount=-1 -kerning first=169 second=943 amount=-1 -kerning first=172 second=252 amount=-1 -kerning first=8224 second=333 amount=-1 -kerning first=54 second=266 amount=-2 -kerning first=57 second=39 amount=-3 -kerning first=315 second=79 amount=-1 -kerning first=916 second=371 amount=-1 -kerning first=100 second=103 amount=-1 -kerning first=1174 second=1026 amount=-2 -kerning first=240 second=253 amount=-1 -kerning first=357 second=1257 amount=-1 -kerning first=120 second=267 amount=-2 -kerning first=1298 second=218 amount=-2 -kerning first=1035 second=230 amount=-1 -kerning first=283 second=1083 amount=-1 -kerning first=8240 second=273 amount=-1 -kerning first=8260 second=45 amount=-2 -kerning first=58 second=214 amount=-2 -kerning first=8225 second=964 amount=-3 -kerning first=1069 second=372 amount=-2 -kerning first=195 second=1101 amount=-1 -kerning first=1066 second=947 amount=-1 -kerning first=313 second=945 amount=-1 -kerning first=78 second=356 amount=-5 -kerning first=221 second=268 amount=-3 -kerning first=936 second=81 amount=-2 -kerning first=1185 second=231 amount=-2 -kerning first=1299 second=373 amount=-4 -kerning first=39 second=227 amount=-1 -kerning first=178 second=357 amount=-1 -kerning first=182 second=117 amount=-1 -kerning first=294 second=269 amount=-1 -kerning first=59 second=369 amount=-1 -kerning first=8361 second=1176 amount=-1 -kerning first=8364 second=362 amount=-2 -kerning first=1107 second=244 amount=-1 -kerning first=346 second=106 amount=1 -kerning first=105 second=228 amount=-1 -kerning first=248 second=118 amount=-1 -kerning first=365 second=962 amount=-1 -kerning first=125 second=370 amount=-2 -kerning first=37 second=1256 amount=-2 -kerning first=1041 second=333 amount=-1 -kerning first=186 second=67 amount=-2 -kerning first=298 second=217 amount=-2 -kerning first=57 second=8222 amount=-1 -kerning first=1075 second=949 amount=-1 -kerning first=206 second=229 amount=-1 -kerning first=323 second=359 amount=-1 -kerning first=326 second=119 amount=-1 -kerning first=901 second=271 amount=-1 -kerning first=86 second=241 amount=-2 -kerning first=223 second=1195 amount=-1 -kerning first=103 second=1257 amount=-1 -kerning first=1187 second=1090 amount=-2 -kerning first=1044 second=964 amount=-2 -kerning first=1048 second=273 amount=-1 -kerning first=296 second=947 amount=-4 -kerning first=299 second=372 amount=-5 -kerning first=8260 second=8249 amount=-3 -kerning first=64 second=945 amount=-1 -kerning first=207 second=1240 amount=-2 -kerning first=204 second=1262 amount=-2 -kerning first=905 second=219 amount=-2 -kerning first=1117 second=347 amount=-1 -kerning first=941 second=1175 amount=-1 -kerning first=944 second=361 amount=-1 -kerning first=948 second=121 amount=-1 -kerning first=253 second=243 amount=-1 -kerning first=967 second=1028 amount=-2 -kerning first=273 second=1263 amount=-1 -kerning first=48 second=269 amount=-1 -kerning first=1062 second=220 amount=-1 -kerning first=1081 second=1176 amount=-1 -kerning first=1085 second=362 amount=-2 -kerning first=906 second=374 amount=-5 -kerning first=94 second=106 amount=1 -kerning first=952 second=71 amount=-2 -kerning first=1223 second=221 amount=-5 -kerning first=374 second=1071 amount=-2 -kerning first=280 second=333 amount=-1 -kerning first=52 second=217 amount=-2 -kerning first=1063 second=375 amount=-1 -kerning first=304 second=949 amount=-1 -kerning first=72 second=359 amount=-1 -kerning first=1083 second=8211 amount=-2 -kerning first=75 second=119 amount=-3 -kerning first=215 second=271 amount=-1 -kerning first=218 second=44 amount=-1 -kerning first=336 second=194 amount=-2 -kerning first=920 second=84 amount=-2 -kerning first=92 second=1026 amount=-5 -kerning first=95 second=286 amount=-2 -kerning first=1175 second=234 amount=-1 -kerning first=358 second=334 amount=-2 -kerning first=1224 second=376 amount=-5 -kerning first=258 second=346 amount=-1 -kerning first=281 second=964 amount=-1 -kerning first=289 second=45 amount=-2 -kerning first=50 second=947 amount=-4 -kerning first=53 second=372 amount=-5 -kerning first=196 second=287 amount=-1 -kerning first=923 second=259 amount=-1 -kerning first=931 second=34 amount=-3 -kerning first=239 second=361 amount=-1 -kerning first=1220 second=8250 amount=-1 -kerning first=200 second=232 amount=-1 -kerning first=315 second=362 amount=-1 -kerning first=80 second=244 amount=-1 -kerning first=341 second=289 amount=-1 -kerning first=1184 second=337 amount=-2 -kerning first=1187 second=99 amount=-1 -kerning first=963 second=111 amount=-1 -kerning first=960 second=351 amount=-1 -kerning first=126 second=83 amount=-1 -kerning first=1298 second=953 amount=-1 -kerning first=38 second=333 amount=-1 -kerning first=180 second=245 amount=-1 -kerning first=291 second=375 amount=-1 -kerning first=58 second=949 amount=-1 -kerning first=61 second=257 amount=-1 -kerning first=313 second=8211 amount=-3 -kerning first=8366 second=250 amount=-1 -kerning first=8363 second=941 amount=-1 -kerning first=84 second=194 amount=-6 -kerning first=345 second=234 amount=-1 -kerning first=936 second=364 amount=-2 -kerning first=101 second=1090 amount=-1 -kerning first=247 second=246 amount=-1 -kerning first=367 second=376 amount=-5 -kerning first=964 second=291 amount=-1 -kerning first=42 second=273 amount=-1 -kerning first=289 second=8249 amount=-3 -kerning first=300 second=85 amount=-2 -kerning first=205 second=335 amount=-1 -kerning first=231 second=34 amount=-1 -kerning first=931 second=8216 amount=-3 -kerning first=105 second=965 amount=-1 -kerning first=111 second=46 amount=-1 -kerning first=365 second=8250 amount=-1 -kerning first=274 second=336 amount=-2 -kerning first=46 second=220 amount=-1 -kerning first=1051 second=171 amount=-3 -kerning first=186 second=350 amount=-1 -kerning first=63 second=1176 amount=-1 -kerning first=206 second=966 amount=-1 -kerning first=212 second=47 amount=-1 -kerning first=209 second=275 amount=-1 -kerning first=8377 second=355 amount=-1 -kerning first=908 second=87 amount=-2 -kerning first=89 second=289 amount=-4 -kerning first=946 second=249 amount=-1 -kerning first=255 second=111 amount=-1 -kerning first=375 second=261 amount=-1 -kerning first=252 second=351 amount=-1 -kerning first=162 second=1177 amount=-1 -kerning first=165 second=363 amount=-1 -kerning first=275 second=967 amount=-2 -kerning first=47 second=375 amount=-1 -kerning first=190 second=290 amount=-2 -kerning first=305 second=210 amount=-2 -kerning first=64 second=8211 amount=-2 -kerning first=1084 second=941 amount=-1 -kerning first=67 second=1051 amount=-1 -kerning first=910 second=262 amount=-3 -kerning first=93 second=234 amount=-1 -kerning first=1168 second=1241 amount=-1 -kerning first=1171 second=187 amount=-1 -kerning first=356 second=277 amount=-3 -kerning first=951 second=199 amount=-2 -kerning first=113 second=376 amount=-5 -kerning first=1256 second=89 amount=-3 -kerning first=253 second=1035 amount=-5 -kerning first=256 second=291 amount=-1 -kerning first=379 second=211 amount=-1 -kerning first=973 second=339 amount=-1 -kerning first=163 second=8212 amount=-2 -kerning first=166 second=1059 amount=-2 -kerning first=1027 second=101 amount=-1 -kerning first=970 second=1098 amount=-2 -kerning first=54 second=85 amount=-2 -kerning first=1065 second=263 amount=-1 -kerning first=194 second=235 amount=-1 -kerning first=306 second=365 amount=-1 -kerning first=916 second=212 amount=-2 -kerning first=231 second=8216 amount=-1 -kerning first=952 second=354 amount=-5 -kerning first=1298 second=39 amount=-3 -kerning first=174 second=248 amount=-1 -kerning first=283 second=378 amount=-1 -kerning first=55 second=260 amount=-5 -kerning first=304 second=8217 amount=-3 -kerning first=912 second=1185 amount=-3 -kerning first=238 second=940 amount=-1 -kerning first=121 second=261 amount=-1 -kerning first=1299 second=214 amount=-2 -kerning first=1036 second=226 amount=-1 -kerning first=59 second=210 amount=-2 -kerning first=202 second=100 amount=-1 -kerning first=314 second=941 amount=-1 -kerning first=317 second=250 amount=-1 -kerning first=915 second=8220 amount=-3 -kerning first=102 second=277 amount=-1 -kerning first=125 second=211 amount=-2 -kerning first=179 second=353 amount=-1 -kerning first=183 second=113 amount=-1 -kerning first=60 second=365 amount=-1 -kerning first=1068 second=8221 amount=-2 -kerning first=1071 second=1066 amount=-5 -kerning first=8370 second=118 amount=-4 -kerning first=347 second=102 amount=-1 -kerning first=934 second=943 amount=-1 -kerning first=1184 second=1256 amount=-3 -kerning first=369 second=266 amount=-2 -kerning first=123 second=1184 amount=-5 -kerning first=126 second=366 amount=-2 -kerning first=271 second=279 amount=-1 -kerning first=299 second=213 amount=-2 -kerning first=8260 second=1195 amount=-1 -kerning first=58 second=8217 amount=-3 -kerning first=1080 second=253 amount=-1 -kerning first=207 second=225 amount=-1 -kerning first=327 second=115 amount=-1 -kerning first=902 second=267 amount=-1 -kerning first=224 second=1185 amount=-1 -kerning first=247 second=1038 amount=-2 -kerning first=964 second=1101 amount=-1 -kerning first=276 second=226 amount=-1 -kerning first=1049 second=268 amount=-2 -kerning first=300 second=368 amount=-2 -kerning first=65 second=941 amount=-1 -kerning first=332 second=65 amount=-2 -kerning first=88 second=1241 amount=-2 -kerning first=91 second=187 amount=-1 -kerning first=225 second=8220 amount=-1 -kerning first=354 second=227 amount=-2 -kerning first=108 second=1079 amount=-1 -kerning first=1210 second=269 amount=-1 -kerning first=374 second=369 amount=-2 -kerning first=968 second=973 amount=-1 -kerning first=167 second=251 amount=-1 -kerning first=49 second=263 amount=-1 -kerning first=1063 second=216 amount=-2 -kerning first=298 second=8221 amount=-3 -kerning first=301 second=1066 amount=-5 -kerning first=1095 second=118 amount=-4 -kerning first=904 second=1194 amount=-2 -kerning first=89 second=1099 amount=-3 -kerning first=1170 second=283 amount=-1 -kerning first=1224 second=217 amount=-2 -kerning first=372 second=8222 amount=-3 -kerning first=381 second=79 amount=-1 -kerning first=1026 second=229 amount=-1 -kerning first=53 second=213 amount=-2 -kerning first=1064 second=371 amount=-1 -kerning first=196 second=103 amount=-1 -kerning first=310 second=253 amount=-2 -kerning first=70 second=1119 amount=-1 -kerning first=73 second=355 amount=-1 -kerning first=1176 second=230 amount=-1 -kerning first=954 second=242 amount=-2 -kerning first=1220 second=947 amount=-4 -kerning first=1256 second=372 amount=-2 -kerning first=256 second=1101 amount=-1 -kerning first=379 second=945 amount=-1 -kerning first=34 second=226 amount=-1 -kerning first=1027 second=1240 amount=-2 -kerning first=973 second=1262 amount=-2 -kerning first=172 second=356 amount=-5 -kerning first=176 second=116 amount=-1 -kerning first=287 second=268 amount=-2 -kerning first=8230 second=219 amount=-1 -kerning first=54 second=368 amount=-2 -kerning first=1071 second=81 amount=-2 -kerning first=194 second=972 amount=-1 -kerning first=197 second=281 amount=-1 -kerning first=80 second=65 amount=-4 -kerning first=100 second=227 amount=-1 -kerning first=240 second=357 amount=-1 -kerning first=363 second=269 amount=-1 -kerning first=260 second=973 amount=-1 -kerning first=1035 second=332 amount=-2 -kerning first=291 second=216 amount=-2 -kerning first=8240 second=374 amount=-5 -kerning first=52 second=8221 amount=-1 -kerning first=55 second=1066 amount=-5 -kerning first=201 second=228 amount=-1 -kerning first=321 second=118 amount=-4 -kerning first=8366 second=71 amount=-2 -kerning first=101 second=382 amount=-1 -kerning first=1185 second=333 amount=-2 -kerning first=247 second=67 amount=-2 -kerning first=367 second=217 amount=-2 -kerning first=118 second=8222 amount=-2 -kerning first=160 second=79 amount=-2 -kerning first=1299 second=949 amount=-1 -kerning first=1036 second=963 amount=-2 -kerning first=1039 second=271 amount=-1 -kerning first=178 second=920 amount=-2 -kerning first=289 second=1195 amount=-1 -kerning first=294 second=371 amount=-1 -kerning first=62 second=253 amount=-1 -kerning first=8369 second=246 amount=-1 -kerning first=900 second=218 amount=-2 -kerning first=1186 second=964 amount=-2 -kerning first=365 second=947 amount=-4 -kerning first=965 second=287 amount=-1 -kerning first=125 second=945 amount=-1 -kerning first=43 second=268 amount=-2 -kerning first=301 second=81 amount=-2 -kerning first=1083 second=121 amount=-1 -kerning first=901 second=373 amount=-4 -kerning first=86 second=343 amount=-2 -kerning first=1206 second=220 amount=-1 -kerning first=47 second=216 amount=-1 -kerning first=1048 second=374 amount=-5 -kerning first=190 second=106 amount=1 -kerning first=70 second=118 amount=-4 -kerning first=207 second=962 amount=-1 -kerning first=8378 second=351 amount=-1 -kerning first=910 second=83 amount=-1 -kerning first=90 second=283 amount=-1 -kerning first=1168 second=233 amount=-1 -kerning first=948 second=245 amount=-1 -kerning first=113 second=217 amount=-2 -kerning first=376 second=257 amount=-4 -kerning first=373 second=949 amount=-1 -kerning first=166 second=359 amount=-1 -kerning first=169 second=119 amount=-4 -kerning first=276 second=963 amount=-1 -kerning first=48 second=371 amount=-1 -kerning first=1065 second=84 amount=-2 -kerning first=188 second=1026 amount=-5 -kerning first=191 second=286 amount=-2 -kerning first=68 second=1046 amount=-3 -kerning first=1094 second=246 amount=-1 -kerning first=214 second=218 amount=-2 -kerning first=94 second=230 amount=-1 -kerning first=357 second=273 amount=-1 -kerning first=111 second=947 amount=-1 -kerning first=49 second=1069 amount=-1 -kerning first=55 second=81 amount=-2 -kerning first=195 second=231 amount=-1 -kerning first=313 second=121 amount=-1 -kerning first=75 second=243 amount=-2 -kerning first=215 second=373 amount=-4 -kerning first=212 second=1202 amount=-3 -kerning first=92 second=1263 amount=-1 -kerning first=361 second=220 amount=-2 -kerning first=1262 second=260 amount=-2 -kerning first=1026 second=966 amount=-1 -kerning first=175 second=244 amount=-1 -kerning first=286 second=374 amount=-2 -kerning first=281 second=1203 amount=-2 -kerning first=317 second=71 amount=-2 -kerning first=8361 second=249 amount=-1 -kerning first=79 second=193 amount=-2 -kerning first=1099 second=351 amount=-1 -kerning first=216 second=1071 amount=-1 -kerning first=213 second=8230 amount=-1 -kerning first=915 second=1177 amount=-1 -kerning first=923 second=363 amount=-1 -kerning first=958 second=290 amount=-2 -kerning first=119 second=949 amount=-1 -kerning first=379 second=8211 amount=-3 -kerning first=37 second=271 amount=-1 -kerning first=34 second=963 amount=-1 -kerning first=1071 second=364 amount=-2 -kerning first=197 second=1090 amount=-3 -kerning first=200 second=334 amount=-2 -kerning first=318 second=246 amount=-1 -kerning first=8365 second=199 amount=-2 -kerning first=80 second=346 amount=-1 -kerning first=1103 second=291 amount=-1 -kerning first=916 second=8212 amount=-2 -kerning first=926 second=1059 amount=-2 -kerning first=100 second=964 amount=-3 -kerning first=103 second=273 amount=-1 -kerning first=369 second=85 amount=-2 -kerning first=963 second=235 amount=-1 -kerning first=271 second=97 amount=-1 -kerning first=41 second=219 amount=-2 -kerning first=177 second=1108 amount=-1 -kerning first=180 second=347 amount=-1 -kerning first=296 second=259 amount=-1 -kerning first=299 second=34 amount=-3 -kerning first=61 second=361 amount=-1 -kerning first=64 second=121 amount=-1 -kerning first=201 second=965 amount=-1 -kerning first=8366 second=354 amount=-5 -kerning first=8363 second=1118 amount=-1 -kerning first=902 second=86 amount=-6 -kerning first=84 second=288 amount=-1 -kerning first=244 second=1113 amount=-1 -kerning first=247 second=350 amount=-1 -kerning first=1202 second=171 amount=-1 -kerning first=370 second=260 amount=-2 -kerning first=124 second=1176 amount=-1 -kerning first=160 second=362 amount=-2 -kerning first=1299 second=8217 amount=-3 -kerning first=273 second=275 amount=-1 -kerning first=42 second=374 amount=-5 -kerning first=1049 second=87 amount=-5 -kerning first=185 second=289 amount=-1 -kerning first=1078 second=940 amount=-2 -kerning first=1081 second=249 amount=-1 -kerning first=208 second=221 amount=-3 -kerning first=325 second=351 amount=-1 -kerning first=8369 second=1038 amount=-2 -kerning first=903 second=261 amount=-1 -kerning first=900 second=953 amount=-1 -kerning first=88 second=233 amount=-2 -kerning first=108 second=375 amount=-1 -kerning first=1195 second=1078 amount=-1 -kerning first=251 second=290 amount=-2 -kerning first=374 second=210 amount=-3 -kerning first=968 second=338 amount=-2 -kerning first=125 second=8211 amount=-2 -kerning first=971 second=100 amount=-1 -kerning first=8211 second=380 amount=-2 -kerning first=49 second=84 amount=-5 -kerning first=1051 second=262 amount=-2 -kerning first=189 second=234 amount=-1 -kerning first=301 second=364 amount=-2 -kerning first=69 second=246 amount=-1 -kerning first=1087 second=199 amount=-2 -kerning first=209 second=376 amount=-5 -kerning first=330 second=291 amount=-1 -kerning first=1119 second=339 amount=-1 -kerning first=1170 second=101 amount=-1 -kerning first=950 second=113 amount=-1 -kerning first=946 second=353 amount=-1 -kerning first=1219 second=263 amount=-1 -kerning first=255 second=235 amount=-1 -kerning first=375 second=365 amount=-1 -kerning first=372 second=1179 amount=-2 -kerning first=47 second=951 amount=-1 -kerning first=53 second=34 amount=-3 -kerning first=1064 second=212 amount=-2 -kerning first=50 second=259 amount=-1 -kerning first=299 second=8216 amount=-3 -kerning first=310 second=74 amount=-1 -kerning first=1084 second=1118 amount=-1 -kerning first=207 second=8250 amount=-1 -kerning first=216 second=86 amount=-2 -kerning first=905 second=1184 amount=-5 -kerning first=93 second=336 amount=-2 -kerning first=1171 second=279 amount=-1 -kerning first=1168 second=970 amount=-1 -kerning first=236 second=248 amount=-1 -kerning first=356 second=378 amount=-1 -kerning first=34 second=47 amount=-2 -kerning first=1027 second=225 amount=-1 -kerning first=279 second=1076 amount=-1 -kerning first=287 second=87 amount=-5 -kerning first=8224 second=267 amount=-1 -kerning first=1062 second=1185 amount=-2 -kerning first=194 second=337 amount=-1 -kerning first=197 second=99 amount=-1 -kerning first=306 second=940 amount=-1 -kerning first=74 second=351 amount=-1 -kerning first=77 second=111 amount=-1 -kerning first=214 second=953 amount=-1 -kerning first=260 second=338 amount=-2 -kerning first=380 second=941 amount=-1 -kerning first=174 second=352 amount=-1 -kerning first=55 second=364 amount=-2 -kerning first=1063 second=8220 amount=-3 -kerning first=195 second=968 amount=-1 -kerning first=198 second=277 amount=-1 -kerning first=316 second=199 amount=-2 -kerning first=8363 second=117 amount=-1 -kerning first=78 second=291 amount=-1 -kerning first=221 second=211 amount=-3 -kerning first=928 second=251 amount=-1 -kerning first=1224 second=8221 amount=-3 -kerning first=121 second=365 amount=-1 -kerning first=294 second=212 amount=-2 -kerning first=8226 second=1194 amount=-2 -kerning first=53 second=8216 amount=-3 -kerning first=1074 second=252 amount=-1 -kerning first=202 second=224 amount=-1 -kerning first=314 second=1118 amount=-1 -kerning first=317 second=354 amount=-5 -kerning first=8369 second=67 amount=-2 -kerning first=900 second=39 amount=-3 -kerning first=343 second=279 amount=-1 -kerning first=105 second=171 amount=-3 -kerning first=248 second=63 amount=-2 -kerning first=965 second=103 amount=-1 -kerning first=43 second=87 amount=-5 -kerning first=1041 second=267 amount=-1 -kerning first=60 second=940 amount=-1 -kerning first=63 second=249 amount=-1 -kerning first=318 second=1038 amount=-2 -kerning first=8370 second=242 amount=-1 -kerning first=901 second=214 amount=-2 -kerning first=1103 second=1101 amount=-1 -kerning first=220 second=8218 amount=-1 -kerning first=369 second=368 amount=-2 -kerning first=963 second=972 amount=-1 -kerning first=162 second=250 amount=-1 -kerning first=126 second=941 amount=-1 -kerning first=44 second=262 amount=-1 -kerning first=184 second=1241 amount=-1 -kerning first=291 second=8220 amount=-3 -kerning first=1080 second=357 amount=-1 -kerning first=1084 second=117 amount=-1 -kerning first=204 second=1079 amount=-1 -kerning first=210 second=89 amount=-3 -kerning first=902 second=369 amount=-1 -kerning first=87 second=339 amount=-3 -kerning first=90 second=101 amount=-1 -kerning first=367 second=8221 amount=-3 -kerning first=48 second=212 amount=-2 -kerning first=1049 second=370 amount=-2 -kerning first=1046 second=1194 amount=-3 -kerning first=300 second=943 amount=-1 -kerning first=303 second=252 amount=-1 -kerning first=65 second=1118 amount=-1 -kerning first=68 second=354 amount=-2 -kerning first=214 second=39 amount=-3 -kerning first=91 second=279 amount=-1 -kerning first=88 second=970 amount=-1 -kerning first=354 second=328 amount=-2 -kerning first=1203 second=1195 amount=-1 -kerning first=1210 second=371 amount=-1 -kerning first=968 second=1257 amount=-1 -kerning first=167 second=355 amount=-1 -kerning first=170 second=115 amount=-1 -kerning first=280 second=267 amount=-1 -kerning first=49 second=367 amount=-1 -kerning first=46 second=1185 amount=-3 -kerning first=69 second=1038 amount=-2 -kerning first=1095 second=242 amount=-1 -kerning first=215 second=214 amount=-2 -kerning first=330 second=1101 amount=-1 -kerning first=95 second=226 amount=-1 -kerning first=1119 second=1262 amount=-2 -kerning first=1170 second=1240 amount=-2 -kerning first=238 second=116 amount=-1 -kerning first=358 second=268 amount=-2 -kerning first=1219 second=1069 amount=-1 -kerning first=255 second=972 amount=-1 -kerning first=258 second=281 amount=-1 -kerning first=8222 second=373 amount=-2 -kerning first=47 second=8220 amount=-3 -kerning first=196 second=227 amount=-1 -kerning first=314 second=117 amount=-1 -kerning first=310 second=357 amount=-1 -kerning first=1176 second=332 amount=-2 -kerning first=113 second=8221 amount=-3 -kerning first=958 second=106 amount=1 -kerning first=1027 second=962 amount=-1 -kerning first=176 second=240 amount=-1 -kerning first=282 second=1194 amount=-2 -kerning first=287 second=370 amount=-2 -kerning first=8220 second=8230 amount=-1 -kerning first=8250 second=83 amount=-1 -kerning first=54 second=943 amount=-1 -kerning first=57 second=252 amount=-1 -kerning first=194 second=1256 amount=-2 -kerning first=318 second=67 amount=-2 -kerning first=223 second=79 amount=-2 -kerning first=341 second=229 amount=-1 -kerning first=926 second=359 amount=-1 -kerning first=934 second=119 amount=-4 -kerning first=1184 second=271 amount=-2 -kerning first=240 second=920 amount=-2 -kerning first=363 second=371 amount=-1 -kerning first=955 second=1026 amount=-5 -kerning first=960 second=286 amount=-2 -kerning first=123 second=253 amount=-1 -kerning first=260 second=1257 amount=-1 -kerning first=38 second=267 amount=-1 -kerning first=1073 second=360 amount=-2 -kerning first=1069 second=1174 amount=-3 -kerning first=321 second=242 amount=-1 -kerning first=78 second=1101 amount=-1 -kerning first=221 second=945 amount=-4 -kerning first=964 second=231 amount=-1 -kerning first=1039 second=373 amount=-4 -kerning first=62 second=357 amount=-1 -kerning first=65 second=117 amount=-1 -kerning first=205 second=269 amount=-1 -kerning first=8369 second=350 amount=-1 -kerning first=942 second=244 amount=-1 -kerning first=108 second=216 amount=-2 -kerning first=251 second=106 amount=1 -kerning first=164 second=118 amount=-4 -kerning first=8211 second=221 amount=-4 -kerning first=40 second=1194 amount=-2 -kerning first=43 second=370 amount=-2 -kerning first=1041 second=1071 amount=-1 -kerning first=1051 second=83 amount=-1 -kerning first=186 second=283 amount=-1 -kerning first=69 second=67 amount=-2 -kerning first=1083 second=245 amount=-1 -kerning first=209 second=217 amount=-2 -kerning first=8377 second=290 amount=-2 -kerning first=901 second=949 amount=-1 -kerning first=904 second=257 amount=-1 -kerning first=89 second=229 amount=-4 -kerning first=232 second=119 amount=-1 -kerning first=355 second=44 amount=-1 -kerning first=1219 second=84 amount=-5 -kerning first=249 second=1026 amount=-5 -kerning first=252 second=286 amount=-2 -kerning first=966 second=1090 amount=-1 -kerning first=278 second=218 amount=-2 -kerning first=8212 second=376 amount=-4 -kerning first=1059 second=258 amount=-2 -kerning first=190 second=230 amount=-1 -kerning first=302 second=360 amount=-2 -kerning first=70 second=242 amount=-1 -kerning first=67 second=923 amount=-1 -kerning first=207 second=947 amount=-4 -kerning first=210 second=372 amount=-2 -kerning first=90 second=1240 amount=-1 -kerning first=1168 second=335 amount=-1 -kerning first=1171 second=97 amount=-1 -kerning first=944 second=1108 amount=-1 -kerning first=948 second=347 amount=-1 -kerning first=1220 second=259 amount=-1 -kerning first=256 second=231 amount=-1 -kerning first=376 second=361 amount=-2 -kerning first=169 second=243 amount=-1 -kerning first=279 second=373 amount=-1 -kerning first=188 second=1263 amount=-1 -kerning first=906 second=1176 amount=-1 -kerning first=94 second=332 amount=-2 -kerning first=1174 second=275 amount=-1 -kerning first=1169 second=966 amount=-1 -kerning first=237 second=244 amount=-1 -kerning first=354 second=1203 amount=-1 -kerning first=357 second=374 amount=-5 -kerning first=952 second=289 amount=-1 -kerning first=1028 second=221 amount=-2 -kerning first=277 second=8230 amount=-1 -kerning first=8225 second=261 amount=-1 -kerning first=1063 second=1177 amount=-1 -kerning first=195 second=333 amount=-1 -kerning first=313 second=245 amount=-1 -kerning first=215 second=949 amount=-1 -kerning first=333 second=1299 amount=-1 -kerning first=95 second=963 amount=-1 -kerning first=101 second=44 amount=-1 -kerning first=956 second=234 amount=-1 -kerning first=258 second=1090 amount=-3 -kerning first=36 second=218 amount=-2 -kerning first=1033 second=376 amount=-5 -kerning first=175 second=346 amount=-1 -kerning first=56 second=360 amount=-2 -kerning first=1067 second=1059 amount=-2 -kerning first=1064 second=8212 amount=-2 -kerning first=196 second=964 amount=-3 -kerning first=202 second=45 amount=-2 -kerning first=8364 second=113 amount=-1 -kerning first=8361 second=353 amount=-1 -kerning first=343 second=97 amount=-1 -kerning first=923 second=936 amount=-3 -kerning first=239 second=1108 amount=-1 -kerning first=365 second=259 amount=-1 -kerning first=125 second=121 amount=-1 -kerning first=270 second=46 amount=-1 -kerning first=37 second=373 amount=-4 -kerning first=1027 second=8250 amount=-1 -kerning first=176 second=1028 amount=-2 -kerning first=179 second=288 amount=-2 -kerning first=8230 second=1184 amount=-5 -kerning first=1075 second=248 amount=-1 -kerning first=203 second=220 amount=-2 -kerning first=318 second=350 amount=-1 -kerning first=223 second=362 amount=-2 -kerning first=341 second=966 amount=-1 -kerning first=103 second=374 amount=-5 -kerning first=963 second=337 amount=-1 -kerning first=162 second=71 amount=-2 -kerning first=271 second=221 amount=-5 -kerning first=184 second=233 amount=-1 -kerning first=296 second=363 amount=-1 -kerning first=291 second=1177 amount=-1 -kerning first=64 second=245 amount=-1 -kerning first=204 second=375 amount=-1 -kerning first=902 second=210 amount=-2 -kerning first=1117 second=100 amount=-1 -kerning first=221 second=8211 amount=-4 -kerning first=1202 second=262 amount=-1 -kerning first=250 second=234 amount=-1 -kerning first=964 second=968 amount=-1 -kerning first=967 second=277 amount=-1 -kerning first=163 second=246 amount=-1 -kerning first=273 second=376 amount=-5 -kerning first=45 second=258 amount=-2 -kerning first=1049 second=211 amount=-2 -kerning first=294 second=8212 amount=-2 -kerning first=297 second=1059 amount=-2 -kerning first=1085 second=113 amount=-1 -kerning first=1081 second=353 amount=-1 -kerning first=202 second=8249 amount=-3 -kerning first=903 second=365 amount=-1 -kerning first=91 second=97 amount=-1 -kerning first=88 second=335 amount=-2 -kerning first=1210 second=212 amount=-2 -kerning first=971 second=224 amount=-1 -kerning first=1047 second=1184 amount=-1 -kerning first=1051 second=366 amount=-2 -kerning first=189 second=336 amount=-2 -kerning first=304 second=248 amount=-1 -kerning first=69 second=350 amount=-1 -kerning first=212 second=260 amount=-2 -kerning first=901 second=8217 amount=-3 -kerning first=89 second=966 amount=-4 -kerning first=92 second=275 amount=-1 -kerning first=1170 second=225 amount=-1 -kerning first=358 second=87 amount=-5 -kerning first=1206 second=1185 amount=-2 -kerning first=1219 second=367 amount=-1 -kerning first=255 second=337 amount=-1 -kerning first=258 second=99 amount=-1 -kerning first=375 second=940 amount=-1 -kerning first=168 second=351 amount=-1 -kerning first=278 second=953 amount=-1 -kerning first=8222 second=214 amount=-1 -kerning first=47 second=1177 amount=-1 -kerning first=50 second=363 amount=-1 -kerning first=73 second=290 amount=-2 -kerning first=915 second=250 amount=-1 -kerning first=910 second=941 amount=-4 -kerning first=236 second=352 amount=-1 -kerning first=356 second=954 amount=-2 -kerning first=951 second=1241 amount=-1 -kerning first=256 second=968 amount=-1 -kerning first=973 second=1079 amount=-1 -kerning first=169 second=1035 amount=-5 -kerning first=172 second=291 amount=-1 -kerning first=1034 second=89 amount=-5 -kerning first=287 second=211 amount=-2 -kerning first=8224 second=369 amount=-1 -kerning first=48 second=8212 amount=-2 -kerning first=51 second=1059 amount=-2 -kerning first=311 second=353 amount=-1 -kerning first=315 second=113 amount=-1 -kerning first=77 second=235 amount=-1 -kerning first=363 second=212 amount=-2 -kerning first=1298 second=252 amount=-1 -kerning first=38 second=86 amount=-3 -kerning first=1035 second=266 amount=-2 -kerning first=8221 second=8222 amount=-1 -kerning first=8260 second=79 amount=-2 -kerning first=58 second=248 amount=-1 -kerning first=201 second=171 amount=-3 -kerning first=215 second=8217 amount=-3 -kerning first=928 second=355 amount=-1 -kerning first=936 second=115 amount=-1 -kerning first=98 second=1076 amount=-1 -kerning first=1185 second=267 amount=-2 -kerning first=361 second=1185 amount=-3 -kerning first=124 second=249 amount=-1 -kerning first=121 second=940 amount=-1 -kerning first=266 second=379 amount=-1 -kerning first=36 second=953 amount=-1 -kerning first=39 second=261 amount=-1 -kerning first=1039 second=214 amount=-2 -kerning first=1074 second=356 amount=-5 -kerning first=1107 second=281 amount=-1 -kerning first=105 second=262 amount=-2 -kerning first=965 second=227 amount=-1 -kerning first=161 second=199 amount=-2 -kerning first=274 second=89 amount=-5 -kerning first=43 second=211 amount=-2 -kerning first=1041 second=369 amount=-1 -kerning first=179 second=1098 amount=-3 -kerning first=183 second=339 amount=-1 -kerning first=186 second=101 amount=-1 -kerning first=298 second=251 amount=-1 -kerning first=63 second=353 amount=-1 -kerning first=206 second=263 amount=-1 -kerning first=8377 second=106 amount=1 -kerning first=1116 second=228 amount=-1 -kerning first=369 second=943 amount=-1 -kerning first=372 second=252 amount=-2 -kerning first=963 second=1256 amount=-2 -kerning first=966 second=382 amount=-1 -kerning first=126 second=1118 amount=-1 -kerning first=162 second=354 amount=-5 -kerning first=278 second=39 amount=-3 -kerning first=41 second=1184 amount=-5 -kerning first=1038 second=8222 amount=-1 -kerning first=44 second=366 amount=-1 -kerning first=184 second=970 amount=-1 -kerning first=1080 second=920 amount=-2 -kerning first=8372 second=1026 amount=-5 -kerning first=8378 second=286 amount=-2 -kerning first=905 second=253 amount=-1 -kerning first=163 second=1038 amount=-2 -kerning first=1049 second=945 amount=-1 -kerning first=191 second=226 amount=-1 -kerning first=303 second=356 amount=-5 -kerning first=306 second=116 amount=-1 -kerning first=108 second=8220 amount=-3 -kerning first=374 second=1169 amount=-3 -kerning first=280 second=369 amount=-1 -kerning first=52 second=251 amount=-1 -kerning first=209 second=8221 amount=-3 -kerning first=212 second=1066 amount=-2 -kerning first=1170 second=962 amount=-1 -kerning first=238 second=240 amount=-1 -kerning first=358 second=370 amount=-2 -kerning first=950 second=974 amount=-3 -kerning first=255 second=1256 amount=-2 -kerning first=36 second=39 amount=-3 -kerning first=289 second=79 amount=-2 -kerning first=8226 second=257 amount=-1 -kerning first=1067 second=359 amount=-1 -kerning first=310 second=920 amount=-3 -kerning first=1096 second=1026 amount=-5 -kerning first=1099 second=286 amount=-2 -kerning first=958 second=230 amount=-1 -kerning first=1256 second=1174 amount=-3 -kerning first=1263 second=360 amount=-2 -kerning first=37 second=214 amount=-2 -kerning first=1027 second=947 amount=-4 -kerning first=172 second=1101 amount=-1 -kerning first=287 second=945 amount=-1 -kerning first=57 second=356 amount=-5 -kerning first=60 second=116 amount=-1 -kerning first=200 second=268 amount=-2 -kerning first=77 second=972 amount=-1 -kerning first=80 second=281 amount=-1 -kerning first=1103 second=231 amount=-1 -kerning first=934 second=243 amount=-1 -kerning first=1184 second=373 amount=-3 -kerning first=955 second=1263 amount=-1 -kerning first=123 second=357 amount=-1 -kerning first=126 second=117 amount=-1 -kerning first=38 second=369 amount=-1 -kerning first=177 second=973 amount=-1 -kerning first=8240 second=1176 amount=-1 -kerning first=8260 second=362 amount=-2 -kerning first=1076 second=244 amount=-1 -kerning first=204 second=216 amount=-2 -kerning first=324 second=106 amount=1 -kerning first=8366 second=289 amount=-1 -kerning first=84 second=228 amount=-2 -kerning first=227 second=118 amount=-1 -kerning first=247 second=283 amount=-1 -kerning first=964 second=333 amount=-1 -kerning first=163 second=67 amount=-2 -kerning first=273 second=217 amount=-2 -kerning first=1039 second=949 amount=-1 -kerning first=1046 second=257 amount=-1 -kerning first=185 second=229 amount=-1 -kerning first=300 second=119 amount=-4 -kerning first=297 second=359 amount=-1 -kerning first=62 second=920 amount=-2 -kerning first=205 second=371 amount=-1 -kerning first=202 second=1195 amount=-1 -kerning first=322 second=1026 amount=-5 -kerning first=325 second=286 amount=-2 -kerning first=942 second=346 amount=-1 -kerning first=251 second=230 amount=-1 -kerning first=371 second=360 amount=-2 -kerning first=374 second=120 amount=-2 -kerning first=968 second=273 amount=-1 -kerning first=971 second=45 amount=-2 -kerning first=164 second=242 amount=-1 -kerning first=965 second=964 amount=-3 -kerning first=274 second=372 amount=-5 -kerning first=43 second=945 amount=-1 -kerning first=186 second=1240 amount=-2 -kerning first=183 second=1262 amount=-2 -kerning first=1083 second=347 amount=-1 -kerning first=206 second=1069 amount=-1 -kerning first=330 second=231 amount=-1 -kerning first=904 second=361 amount=-1 -kerning first=86 second=1084 amount=-2 -kerning first=89 second=331 amount=-3 -kerning first=352 second=373 amount=-1 -kerning first=946 second=288 amount=-2 -kerning first=249 second=1263 amount=-1 -kerning first=1048 second=1176 amount=-1 -kerning first=190 second=332 amount=-2 -kerning first=305 second=244 amount=-1 -kerning first=73 second=106 amount=1 -kerning first=213 second=256 amount=-2 -kerning first=915 second=71 amount=-2 -kerning first=90 second=962 amount=-1 -kerning first=1171 second=221 amount=-5 -kerning first=951 second=233 amount=-1 -kerning first=1220 second=363 amount=-1 -kerning first=256 second=333 amount=-1 -kerning first=379 second=245 amount=-1 -kerning first=973 second=375 amount=-1 -kerning first=282 second=257 amount=-1 -kerning first=8224 second=210 amount=-2 -kerning first=51 second=359 amount=-1 -kerning first=1049 second=8211 amount=-2 -kerning first=54 second=119 amount=-4 -kerning first=191 second=963 amount=-1 -kerning first=194 second=271 amount=-1 -kerning first=71 second=1026 amount=-1 -kerning first=74 second=286 amount=-2 -kerning first=1097 second=234 amount=-1 -kerning first=916 second=246 amount=-1 -kerning first=1174 second=376 amount=-2 -kerning first=237 second=346 amount=-1 -kerning first=360 second=258 amount=-2 -kerning first=117 second=360 amount=-2 -kerning first=1210 second=8212 amount=-2 -kerning first=1223 second=1059 amount=-2 -kerning first=260 second=273 amount=-1 -kerning first=257 second=964 amount=-1 -kerning first=971 second=8249 amount=-3 -kerning first=1035 second=85 amount=-2 -kerning first=174 second=287 amount=-1 -kerning first=8225 second=365 amount=-1 -kerning first=198 second=219 amount=-2 -kerning first=78 second=231 amount=-1 -kerning first=221 second=121 amount=-2 -kerning first=98 second=373 amount=-1 -kerning first=1170 second=8250 amount=-1 -kerning first=238 second=1028 amount=-2 -kerning first=956 second=336 amount=-2 -kerning first=1299 second=248 amount=-1 -kerning first=178 second=232 amount=-1 -kerning first=289 second=362 amount=-2 -kerning first=8222 second=8217 amount=-1 -kerning first=59 second=244 amount=-1 -kerning first=199 second=374 amount=-2 -kerning first=317 second=289 amount=-1 -kerning first=1107 second=99 amount=-1 -kerning first=931 second=351 amount=-1 -kerning first=105 second=83 amount=-1 -kerning first=365 second=363 amount=-1 -kerning first=125 second=245 amount=-1 -kerning first=37 second=949 amount=-1 -kerning first=40 second=257 amount=-1 -kerning first=1041 second=210 amount=-2 -kerning first=287 second=8211 amount=-2 -kerning first=206 second=84 amount=-5 -kerning first=323 second=234 amount=-1 -kerning first=8365 second=1241 amount=-1 -kerning first=8370 second=187 amount=-1 -kerning first=80 second=1090 amount=-3 -kerning first=1103 second=968 amount=-1 -kerning first=344 second=376 amount=-2 -kerning first=934 second=1035 amount=-5 -kerning first=363 second=8212 amount=-2 -kerning first=184 second=335 amount=-1 -kerning first=61 second=1108 amount=-1 -kerning first=64 second=347 amount=-1 -kerning first=207 second=259 amount=-1 -kerning first=84 second=965 amount=-2 -kerning first=1117 second=224 amount=-1 -kerning first=1194 second=1184 amount=-1 -kerning first=1202 second=366 amount=-1 -kerning first=250 second=336 amount=-2 -kerning first=373 second=248 amount=-1 -kerning first=163 second=350 amount=-1 -kerning first=42 second=1176 amount=-1 -kerning first=1046 second=1063 amount=-1 -kerning first=1039 second=8217 amount=-3 -kerning first=185 second=966 amount=-1 -kerning first=188 second=275 amount=-1 -kerning first=906 second=249 amount=-1 -kerning first=903 second=940 amount=-1 -kerning first=91 second=221 amount=-5 -kerning first=354 second=261 amount=-2 -kerning first=108 second=1177 amount=-1 -kerning first=167 second=290 amount=-2 -kerning first=280 second=210 amount=-2 -kerning first=43 second=8211 amount=-2 -kerning first=1051 second=941 amount=-1 -kerning first=1063 second=250 amount=-1 -kerning first=304 second=352 amount=-1 -kerning first=72 second=234 amount=-1 -kerning first=1087 second=1241 amount=-1 -kerning first=1095 second=187 amount=-1 -kerning first=330 second=968 amount=-1 -kerning first=912 second=199 amount=-2 -kerning first=92 second=376 amount=-5 -kerning first=1119 second=1079 amount=-1 -kerning first=358 second=211 amount=-2 -kerning first=946 second=1098 amount=-3 -kerning first=950 second=339 amount=-1 -kerning first=1224 second=251 amount=-1 -kerning first=381 second=113 amount=-1 -kerning first=972 second=955 amount=-1 -kerning first=1026 second=263 amount=-1 -kerning first=8218 second=1066 amount=-5 -kerning first=910 second=1118 amount=-2 -kerning first=915 second=354 amount=-5 -kerning first=1176 second=266 amount=-2 -kerning first=951 second=970 amount=-1 -kerning first=954 second=279 amount=-2 -kerning first=119 second=248 amount=-1 -kerning first=262 second=171 amount=-1 -kerning first=34 second=260 amount=-3 -kerning first=279 second=8217 amount=-1 -kerning first=290 second=75 amount=2 -kerning first=8230 second=253 amount=-1 -kerning first=1071 second=115 amount=-1 -kerning first=200 second=87 amount=-5 -kerning first=77 second=337 amount=-1 -kerning first=80 second=99 amount=-1 -kerning first=916 second=1038 amount=-2 -kerning first=100 second=261 amount=-1 -kerning first=1184 second=214 amount=-3 -kerning first=960 second=226 amount=-1 -kerning first=1298 second=356 amount=-5 -kerning first=268 second=88 amount=-2 -kerning first=38 second=210 amount=-2 -kerning first=1035 second=368 amount=-2 -kerning first=177 second=338 amount=-2 -kerning first=180 second=100 amount=-1 -kerning first=291 second=250 amount=-1 -kerning first=58 second=352 amount=-1 -kerning first=201 second=262 amount=-2 -kerning first=316 second=1241 amount=-1 -kerning first=321 second=187 amount=-1 -kerning first=78 second=968 amount=-1 -kerning first=241 second=1098 amount=-1 -kerning first=247 second=101 amount=-1 -kerning first=367 second=251 amount=-1 -kerning first=160 second=113 amount=-1 -kerning first=124 second=353 amount=-1 -kerning first=1033 second=8221 amount=-2 -kerning first=1078 second=240 amount=-2 -kerning first=205 second=212 amount=-2 -kerning first=8369 second=283 amount=-1 -kerning first=900 second=252 amount=-1 -kerning first=351 second=39 amount=-1 -kerning first=105 second=366 amount=-2 -kerning first=274 second=213 amount=-2 -kerning first=37 second=8217 amount=-3 -kerning first=186 second=225 amount=-1 -kerning first=298 second=355 amount=-1 -kerning first=301 second=115 amount=-1 -kerning first=203 second=1185 amount=-3 -kerning first=206 second=367 amount=-1 -kerning first=8377 second=230 amount=-1 -kerning first=947 second=945 amount=-1 -kerning first=252 second=226 amount=-1 -kerning first=375 second=116 amount=-1 -kerning first=8218 second=81 amount=-1 -kerning first=47 second=250 amount=-1 -kerning first=187 second=380 amount=-1 -kerning first=70 second=187 amount=-1 -kerning first=204 second=8220 amount=-3 -kerning first=8372 second=1263 amount=-1 -kerning first=905 second=357 amount=-1 -kerning first=910 second=117 amount=-2 -kerning first=93 second=89 amount=-5 -kerning first=1168 second=269 amount=-1 -kerning first=944 second=973 amount=-1 -kerning first=113 second=251 amount=-1 -kerning first=973 second=216 amount=-2 -kerning first=276 second=1066 amount=-5 -kerning first=273 second=8221 amount=-3 -kerning first=8220 second=256 amount=-3 -kerning first=1065 second=118 amount=-2 -kerning first=306 second=240 amount=-1 -kerning first=1094 second=283 amount=-1 -kerning first=214 second=252 amount=-1 -kerning first=916 second=67 amount=-2 -kerning first=94 second=266 amount=-2 -kerning first=97 second=39 amount=-1 -kerning first=1174 second=217 amount=-1 -kerning first=952 second=229 amount=-1 -kerning first=1223 second=359 amount=-1 -kerning first=1257 second=119 amount=-1 -kerning first=377 second=920 amount=-1 -kerning first=971 second=1195 amount=-1 -kerning first=174 second=103 amount=-1 -kerning first=52 second=355 amount=-1 -kerning first=55 second=115 amount=-1 -kerning first=195 second=267 amount=-1 -kerning first=333 second=1083 amount=-1 -kerning first=1170 second=947 amount=-4 -kerning first=358 second=945 amount=-1 -kerning first=950 second=1262 amount=-2 -kerning first=121 second=116 amount=-1 -kerning first=1026 second=1069 amount=-1 -kerning first=175 second=281 amount=-1 -kerning first=1036 second=81 amount=-3 -kerning first=8226 second=361 amount=-1 -kerning first=8361 second=288 amount=-2 -kerning first=1096 second=1263 amount=-1 -kerning first=239 second=973 amount=-1 -kerning first=958 second=332 amount=-2 -kerning first=179 second=228 amount=-1 -kerning first=295 second=118 amount=-1 -kerning first=60 second=240 amount=-1 -kerning first=197 second=1194 amount=-2 -kerning first=200 second=370 amount=-2 -kerning first=318 second=283 amount=-1 -kerning first=8365 second=233 amount=-1 -kerning first=77 second=1256 amount=-2 -kerning first=1103 second=333 amount=-1 -kerning first=220 second=1044 amount=-1 -kerning first=1184 second=949 amount=-2 -kerning first=369 second=119 amount=-4 -kerning first=960 second=963 amount=-1 -kerning first=963 second=271 amount=-1 -kerning first=123 second=920 amount=-2 -kerning first=966 second=44 amount=-1 -kerning first=41 second=253 amount=-1 -kerning first=177 second=1257 amount=-1 -kerning first=1106 second=964 amount=-1 -kerning first=1117 second=45 amount=-2 -kerning first=247 second=1240 amount=-2 -kerning first=967 second=219 amount=-2 -kerning first=276 second=81 amount=-2 -kerning first=1046 second=361 amount=-1 -kerning first=1049 second=121 amount=-1 -kerning first=300 second=243 amount=-1 -kerning first=1081 second=288 amount=-2 -kerning first=322 second=1263 amount=-1 -kerning first=88 second=269 amount=-2 -kerning first=1118 second=220 amount=-2 -kerning first=251 second=332 amount=-2 -kerning first=374 second=244 amount=-4 -kerning first=968 second=374 amount=-5 -kerning first=167 second=106 amount=1 -kerning first=49 second=118 amount=-4 -kerning first=1063 second=71 amount=-2 -kerning first=186 second=962 amount=-1 -kerning first=69 second=283 amount=-1 -kerning first=1087 second=233 amount=-1 -kerning first=330 second=333 amount=-1 -kerning first=92 second=217 amount=-2 -kerning first=1119 second=375 amount=-1 -kerning first=115 second=119 amount=-1 -kerning first=947 second=8211 amount=-1 -kerning first=252 second=963 amount=-1 -kerning first=255 second=271 amount=-1 -kerning first=1026 second=84 amount=-5 -kerning first=165 second=1026 amount=-5 -kerning first=168 second=286 amount=-2 -kerning first=8218 second=364 amount=-1 -kerning first=1064 second=246 amount=-1 -kerning first=193 second=218 amount=-2 -kerning first=305 second=346 amount=-1 -kerning first=73 second=230 amount=-1 -kerning first=210 second=1174 amount=-3 -kerning first=331 second=964 amount=-1 -kerning first=93 second=372 amount=-5 -kerning first=1117 second=8249 amount=-3 -kerning first=1176 second=85 amount=-2 -kerning first=236 second=287 amount=-1 -kerning first=951 second=335 amount=-1 -kerning first=954 second=97 amount=-1 -kerning first=376 second=1108 amount=-4 -kerning first=1027 second=259 amount=-1 -kerning first=1034 second=34 amount=-2 -kerning first=172 second=231 amount=-1 -kerning first=279 second=1175 amount=-2 -kerning first=282 second=361 amount=-1 -kerning first=287 second=121 amount=-1 -kerning first=54 second=243 amount=-1 -kerning first=1068 second=196 amount=-1 -kerning first=194 second=373 amount=-4 -kerning first=306 second=1028 amount=-2 -kerning first=1094 second=1095 amount=-2 -kerning first=338 second=220 amount=-2 -kerning first=916 second=350 amount=-1 -kerning first=240 second=232 amount=-1 -kerning first=357 second=1176 amount=-1 -kerning first=952 second=966 amount=-1 -kerning first=955 second=275 amount=-1 -kerning first=120 second=244 amount=-2 -kerning first=260 second=374 amount=-5 -kerning first=291 second=71 amount=-2 -kerning first=8225 second=940 amount=-1 -kerning first=8240 second=249 amount=-1 -kerning first=1073 second=111 amount=-1 -kerning first=201 second=83 amount=-1 -kerning first=316 second=233 amount=-1 -kerning first=78 second=333 amount=-1 -kerning first=221 second=245 amount=-4 -kerning first=928 second=290 amount=-2 -kerning first=358 second=8211 amount=-2 -kerning first=1299 second=352 amount=-1 -kerning first=178 second=334 amount=-2 -kerning first=175 second=1090 amount=-3 -kerning first=294 second=246 amount=-1 -kerning first=59 second=346 amount=-1 -kerning first=1074 second=291 amount=-1 -kerning first=1070 second=1035 amount=-2 -kerning first=8361 second=1098 amount=-3 -kerning first=8364 second=339 amount=-1 -kerning first=8369 second=101 amount=-1 -kerning first=122 second=1108 amount=-1 -kerning first=125 second=347 amount=-1 -kerning first=274 second=34 amount=-3 -kerning first=40 second=361 amount=-1 -kerning first=43 second=121 amount=-1 -kerning first=1034 second=8216 amount=-2 -kerning first=179 second=965 amount=-1 -kerning first=60 second=1028 amount=-2 -kerning first=63 second=288 amount=-2 -kerning first=323 second=336 amount=-2 -kerning first=8365 second=970 amount=-1 -kerning first=8370 second=279 amount=-1 -kerning first=901 second=248 amount=-1 -kerning first=86 second=220 amount=-2 -kerning first=103 second=1176 amount=-1 -kerning first=249 second=275 amount=-1 -kerning first=372 second=197 amount=-5 -kerning first=162 second=289 amount=-1 -kerning first=47 second=71 amount=-1 -kerning first=1044 second=940 amount=-1 -kerning first=1048 second=249 amount=-1 -kerning first=187 second=221 amount=-3 -kerning first=299 second=351 amount=-1 -kerning first=302 second=111 amount=-1 -kerning first=207 second=363 amount=-1 -kerning first=204 second=1177 amount=-1 -kerning first=8378 second=226 amount=-1 -kerning first=87 second=375 amount=-1 -kerning first=1113 second=1078 amount=-2 -kerning first=944 second=338 amount=-2 -kerning first=948 second=100 amount=-1 -kerning first=1202 second=941 amount=-1 -kerning first=376 second=112 amount=-3 -kerning first=166 second=234 amount=-1 -kerning first=276 second=364 amount=-2 -kerning first=48 second=246 amount=-1 -kerning first=1062 second=199 amount=-1 -kerning first=188 second=376 amount=-5 -kerning first=300 second=1035 amount=-5 -kerning first=303 second=291 amount=-1 -kerning first=1081 second=1098 amount=-3 -kerning first=1085 second=339 amount=-1 -kerning first=205 second=8212 amount=-2 -kerning first=1094 second=101 amount=-1 -kerning first=906 second=353 amount=-1 -kerning first=94 second=85 amount=-2 -kerning first=1169 second=263 amount=-1 -kerning first=354 second=365 amount=-2 -kerning first=274 second=8216 amount=-3 -kerning first=1051 second=1118 amount=-1 -kerning first=1063 second=354 amount=-5 -kerning first=186 second=8250 amount=-1 -kerning first=72 second=336 amount=-2 -kerning first=1095 second=279 amount=-1 -kerning first=215 second=248 amount=-1 -kerning first=1087 second=970 amount=-1 -kerning first=333 second=378 amount=-1 -kerning first=1224 second=355 amount=-1 -kerning first=972 second=1185 amount=-1 -kerning first=1026 second=367 amount=-1 -kerning first=175 second=99 amount=-1 -kerning first=56 second=111 amount=-1 -kerning first=1064 second=1038 amount=-2 -kerning first=53 second=351 amount=-1 -kerning first=196 second=261 amount=-1 -kerning first=193 second=953 amount=-1 -kerning first=1099 second=226 amount=-1 -kerning first=219 second=198 amount=-2 -kerning first=1176 second=368 amount=-2 -kerning first=239 second=338 amount=-2 -kerning first=382 second=1241 amount=-1 -kerning first=973 second=8220 amount=-3 -kerning first=172 second=968 amount=-1 -kerning first=176 second=277 amount=-1 -kerning first=8230 second=357 amount=-1 -kerning first=54 second=1035 amount=-5 -kerning first=57 second=291 amount=-1 -kerning first=200 second=211 amount=-2 -kerning first=315 second=339 amount=-1 -kerning first=318 second=101 amount=-1 -kerning first=223 second=113 amount=-1 -kerning first=341 second=263 amount=-1 -kerning first=100 second=365 amount=-1 -kerning first=1174 second=8221 amount=-2 -kerning first=1035 second=943 amount=-1 -kerning first=180 second=224 amount=-1 -kerning first=291 second=354 amount=-5 -kerning first=198 second=1184 amount=-5 -kerning first=201 second=366 amount=-2 -kerning first=321 second=279 amount=-1 -kerning first=316 second=970 amount=-1 -kerning first=8366 second=229 amount=-1 -kerning first=84 second=171 amount=-3 -kerning first=227 second=63 amount=-2 -kerning first=98 second=8217 amount=-1 -kerning first=247 second=225 amount=-1 -kerning first=367 second=355 amount=-1 -kerning first=964 second=267 amount=-1 -kerning first=42 second=249 amount=-1 -kerning first=39 second=940 amount=-1 -kerning first=294 second=1038 amount=-2 -kerning first=1074 second=1101 amount=-1 -kerning first=199 second=8218 amount=-1 -kerning first=8369 second=1240 amount=-2 -kerning first=8364 second=1262 amount=-2 -kerning first=325 second=226 amount=-1 -kerning first=900 second=356 amount=-5 -kerning first=903 second=116 amount=-1 -kerning first=942 second=281 amount=-1 -kerning first=108 second=250 amount=-1 -kerning first=105 second=941 amount=-1 -kerning first=248 second=380 amount=-1 -kerning first=374 second=65 amount=-5 -kerning first=161 second=1241 amount=-1 -kerning first=164 second=187 amount=-1 -kerning first=267 second=8220 amount=-1 -kerning first=46 second=199 amount=-1 -kerning first=1051 second=117 amount=-1 -kerning first=183 second=1079 amount=-1 -kerning first=189 second=89 amount=-5 -kerning first=63 second=1098 amount=-3 -kerning first=69 second=101 amount=-1 -kerning first=209 second=251 amount=-1 -kerning first=8377 second=332 amount=-2 -kerning first=89 second=263 amount=-4 -kerning first=1119 second=216 amount=-2 -kerning first=946 second=228 amount=-1 -kerning first=1219 second=118 amount=-4 -kerning first=375 second=240 amount=-1 -kerning first=372 second=916 amount=-5 -kerning first=278 second=252 amount=-1 -kerning first=47 second=354 amount=-5 -kerning first=44 second=1118 amount=-1 -kerning first=1064 second=67 amount=-2 -kerning first=190 second=266 amount=-2 -kerning first=193 second=39 amount=-3 -kerning first=70 second=279 amount=-1 -kerning first=8378 second=963 amount=-1 -kerning first=905 second=920 amount=-2 -kerning first=93 second=213 amount=-2 -kerning first=1117 second=1195 amount=-1 -kerning first=1168 second=371 amount=-1 -kerning first=910 second=241 amount=-3 -kerning first=236 second=103 amount=-1 -kerning first=356 second=253 amount=-2 -kerning first=944 second=1257 amount=-1 -kerning first=113 second=355 amount=-1 -kerning first=256 second=267 amount=-1 -kerning first=48 second=1038 amount=-2 -kerning first=1065 second=242 amount=-1 -kerning first=194 second=214 amount=-2 -kerning first=303 second=1101 amount=-1 -kerning first=74 second=226 amount=-1 -kerning first=1085 second=1262 amount=-2 -kerning first=214 second=356 amount=-5 -kerning first=94 second=368 amount=-2 -kerning first=237 second=281 amount=-1 -kerning first=174 second=227 amount=-1 -kerning first=195 second=369 amount=-1 -kerning first=92 second=8221 amount=-3 -kerning first=95 second=1066 amount=-5 -kerning first=928 second=106 amount=1 -kerning first=121 second=240 amount=-1 -kerning first=258 second=1194 amount=-2 -kerning first=36 second=252 amount=-1 -kerning first=294 second=67 amount=-2 -kerning first=202 second=79 amount=-2 -kerning first=317 second=229 amount=-1 -kerning first=1099 second=963 amount=-1 -kerning first=1107 second=44 amount=-3 -kerning first=923 second=1026 amount=-5 -kerning first=931 second=286 amount=-2 -kerning first=239 second=1257 amount=-1 -kerning first=962 second=218 amount=-2 -kerning first=1037 second=360 amount=-2 -kerning first=1034 second=1174 amount=-2 -kerning first=57 second=1101 amount=-1 -kerning first=200 second=945 amount=-1 -kerning first=315 second=1262 amount=-1 -kerning first=318 second=1240 amount=-2 -kerning first=8365 second=335 amount=-1 -kerning first=8370 second=97 amount=-1 -kerning first=369 second=243 amount=-1 -kerning first=963 second=373 amount=-4 -kerning first=41 second=357 amount=-1 -kerning first=44 second=117 amount=-1 -kerning first=184 second=269 amount=-1 -kerning first=61 second=973 amount=-1 -kerning first=1080 second=232 amount=-1 -kerning first=8366 second=966 amount=-1 -kerning first=902 second=244 amount=-1 -kerning first=8372 second=275 amount=-1 -kerning first=87 second=216 amount=-2 -kerning first=350 second=256 amount=-1 -kerning first=110 second=118 amount=-1 -kerning first=247 second=962 amount=-1 -kerning first=961 second=8230 amount=-1 -kerning first=163 second=283 amount=-1 -kerning first=48 second=67 amount=-2 -kerning first=1049 second=245 amount=-1 -kerning first=188 second=217 amount=-2 -kerning first=325 second=963 amount=-1 -kerning first=332 second=44 amount=-1 -kerning first=88 second=371 amount=-1 -kerning first=942 second=1090 amount=-3 -kerning first=1210 second=246 amount=-1 -kerning first=254 second=218 amount=-2 -kerning first=374 second=346 amount=-1 -kerning first=167 second=230 amount=-1 -kerning first=49 second=242 amount=-1 -kerning first=186 second=947 amount=-4 -kerning first=189 second=372 amount=-5 -kerning first=304 second=287 amount=-1 -kerning first=69 second=1240 amount=-2 -kerning first=1087 second=335 amount=-1 -kerning first=1095 second=97 amount=-1 -kerning first=904 second=1108 amount=-1 -kerning first=89 second=1069 amount=-2 -kerning first=95 second=81 amount=-2 -kerning first=1170 second=259 amount=-1 -kerning first=352 second=1175 amount=-1 -kerning first=358 second=121 amount=-1 -kerning first=946 second=965 amount=-1 -kerning first=255 second=373 amount=-4 -kerning first=375 second=1028 amount=-2 -kerning first=165 second=1263 amount=-1 -kerning first=1064 second=350 amount=-1 -kerning first=310 second=232 amount=-2 -kerning first=70 second=1085 amount=-1 -kerning first=73 second=332 amount=-2 -kerning first=1096 second=275 amount=-1 -kerning first=1090 second=966 amount=-1 -kerning first=334 second=374 amount=-3 -kerning first=915 second=289 amount=-1 -kerning first=910 second=1033 amount=-5 -kerning first=1263 second=111 amount=-1 -kerning first=382 second=233 amount=-1 -kerning first=1027 second=363 amount=-1 -kerning first=973 second=1177 amount=-1 -kerning first=172 second=333 amount=-1 -kerning first=287 second=245 amount=-1 -kerning first=194 second=949 amount=-1 -kerning first=197 second=257 amount=-1 -kerning first=74 second=963 amount=-1 -kerning first=77 second=271 amount=-1 -kerning first=80 second=44 amount=-4 -kerning first=220 second=194 amount=-2 -kerning first=926 second=234 amount=-1 -kerning first=240 second=334 amount=-2 -kerning first=237 second=1090 amount=-3 -kerning first=363 second=246 amount=-1 -kerning first=955 second=376 amount=-5 -kerning first=1298 second=291 amount=-1 -kerning first=260 second=950 amount=-1 -kerning first=35 second=360 amount=-2 -kerning first=38 second=120 amount=-2 -kerning first=177 second=273 amount=-1 -kerning first=180 second=45 amount=-2 -kerning first=174 second=964 amount=-3 -kerning first=8260 second=113 amount=-1 -kerning first=8240 second=353 amount=-1 -kerning first=58 second=287 amount=-1 -kerning first=1073 second=235 amount=-1 -kerning first=316 second=335 amount=-1 -kerning first=321 second=97 amount=-1 -kerning first=221 second=347 amount=-3 -kerning first=98 second=1175 amount=-2 -kerning first=121 second=1028 amount=-2 -kerning first=124 second=288 amount=-2 -kerning first=1039 second=248 amount=-1 -kerning first=182 second=220 amount=-2 -kerning first=294 second=350 amount=-1 -kerning first=62 second=232 amount=-1 -kerning first=202 second=362 amount=-2 -kerning first=199 second=1176 amount=1 -kerning first=317 second=966 amount=-1 -kerning first=322 second=275 amount=-1 -kerning first=8369 second=225 amount=-1 -kerning first=82 second=374 amount=-2 -kerning first=1102 second=1076 amount=-1 -kerning first=222 second=1033 amount=-1 -kerning first=942 second=99 amount=-1 -kerning first=108 second=71 amount=-2 -kerning first=1186 second=940 amount=-1 -kerning first=371 second=111 amount=-1 -kerning first=965 second=261 amount=-1 -kerning first=962 second=953 amount=-1 -kerning first=161 second=233 amount=-1 -kerning first=43 second=245 amount=-1 -kerning first=1047 second=198 amount=-1 -kerning first=183 second=375 amount=-1 -kerning first=298 second=290 amount=-2 -kerning first=200 second=8211 amount=-2 -kerning first=1083 second=100 amount=-1 -kerning first=901 second=352 amount=-1 -kerning first=1206 second=199 amount=-1 -kerning first=249 second=376 amount=-5 -kerning first=369 second=1035 amount=-5 -kerning first=372 second=291 amount=-2 -kerning first=268 second=8212 amount=-1 -kerning first=271 second=1059 amount=-2 -kerning first=1048 second=353 amount=-1 -kerning first=180 second=8249 amount=-3 -kerning first=190 second=85 amount=-2 -kerning first=302 second=235 amount=-1 -kerning first=70 second=97 amount=-1 -kerning first=93 second=34 amount=-3 -kerning first=87 second=951 amount=-2 -kerning first=1168 second=212 amount=-2 -kerning first=356 second=74 amount=-5 -kerning first=948 second=224 amount=-1 -kerning first=247 second=8250 amount=-1 -kerning first=256 second=86 amount=-6 -kerning first=967 second=1184 amount=-5 -kerning first=166 second=336 amount=-2 -kerning first=48 second=350 amount=-1 -kerning first=1065 second=63 amount=-2 -kerning first=74 second=47 amount=-1 -kerning first=1118 second=1185 amount=-3 -kerning first=237 second=99 amount=-1 -kerning first=357 second=249 amount=-1 -kerning first=354 second=940 amount=-3 -kerning first=114 second=351 amount=-1 -kerning first=117 second=111 amount=-1 -kerning first=1210 second=1038 amount=-2 -kerning first=254 second=953 amount=-1 -kerning first=8225 second=116 amount=-1 -kerning first=52 second=290 amount=-2 -kerning first=195 second=210 amount=-2 -kerning first=313 second=100 amount=-1 -kerning first=215 second=352 amount=-1 -kerning first=912 second=1241 amount=-1 -kerning first=95 second=364 amount=-2 -kerning first=1119 second=8220 amount=-3 -kerning first=238 second=277 amount=-1 -kerning first=361 second=199 amount=-2 -kerning first=950 second=1079 amount=-1 -kerning first=956 second=89 amount=-5 -kerning first=118 second=291 amount=-1 -kerning first=381 second=339 amount=-1 -kerning first=289 second=113 amount=-1 -kerning first=56 second=235 amount=-1 -kerning first=196 second=365 amount=-1 -kerning first=8361 second=228 amount=-1 -kerning first=93 second=8216 amount=-3 -kerning first=1176 second=943 amount=-1 -kerning first=958 second=266 amount=-2 -kerning first=962 second=39 amount=-3 -kerning first=37 second=248 amount=-1 -kerning first=179 second=171 amount=-3 -kerning first=295 second=63 amount=-2 -kerning first=8230 second=920 amount=-1 -kerning first=197 second=1063 amount=-3 -kerning first=194 second=8217 amount=-3 -kerning first=318 second=225 amount=-1 -kerning first=83 second=87 amount=-2 -kerning first=1103 second=267 amount=-1 -kerning first=338 second=1185 amount=-3 -kerning first=100 second=940 amount=-1 -kerning first=103 second=249 amount=-1 -kerning first=363 second=1038 amount=-2 -kerning first=963 second=214 amount=-2 -kerning first=1298 second=1101 amount=-1 -kerning first=61 second=338 amount=-2 -kerning first=64 second=100 amount=-1 -kerning first=1073 second=972 amount=-1 -kerning first=204 second=250 amount=-1 -kerning first=201 second=941 amount=-1 -kerning first=1076 second=281 amount=-1 -kerning first=84 second=262 amount=-1 -kerning first=339 second=8220 amount=-1 -kerning first=250 second=89 amount=-5 -kerning first=964 second=369 amount=-1 -kerning first=124 second=1098 amount=-3 -kerning first=160 second=339 amount=-1 -kerning first=163 second=101 amount=-1 -kerning first=273 second=251 amount=-1 -kerning first=42 second=353 amount=-1 -kerning first=185 second=263 amount=-1 -kerning first=1081 second=228 amount=-1 -kerning first=8369 second=962 amount=-1 -kerning first=903 second=240 amount=-1 -kerning first=88 second=212 amount=-3 -kerning first=105 second=1118 amount=-1 -kerning first=108 second=354 amount=-5 -kerning first=1210 second=67 amount=-2 -kerning first=251 second=266 amount=-2 -kerning first=254 second=39 amount=-3 -kerning first=971 second=79 amount=-2 -kerning first=164 second=279 amount=-1 -kerning first=161 second=970 amount=-1 -kerning first=189 second=213 amount=-2 -kerning first=304 second=103 amount=-1 -kerning first=69 second=225 amount=-1 -kerning first=209 second=355 amount=-1 -kerning first=330 second=267 amount=-1 -kerning first=86 second=1185 amount=-3 -kerning first=89 second=367 amount=-2 -kerning first=1219 second=242 amount=-1 -kerning first=255 second=214 amount=-2 -kerning first=168 second=226 amount=-1 -kerning first=278 second=356 amount=-5 -kerning first=190 second=368 amount=-2 -kerning first=302 second=972 amount=-1 -kerning first=305 second=281 amount=-1 -kerning first=70 second=380 amount=-1 -kerning first=216 second=65 amount=-2 -kerning first=910 second=343 amount=-3 -kerning first=236 second=227 amount=-1 -kerning first=951 second=269 amount=-1 -kerning first=256 second=369 amount=-1 -kerning first=376 second=973 amount=-2 -kerning first=8224 second=244 amount=-1 -kerning first=191 second=1066 amount=-5 -kerning first=188 second=8221 amount=-3 -kerning first=311 second=228 amount=-1 -kerning first=1094 second=962 amount=-1 -kerning first=916 second=283 amount=-1 -kerning first=94 second=943 amount=-1 -kerning first=363 second=67 amount=-2 -kerning first=955 second=217 amount=-2 -kerning first=1035 second=119 amount=-4 -kerning first=58 second=103 amount=-1 -kerning first=1066 second=1026 amount=-5 -kerning first=198 second=253 amount=-1 -kerning first=78 second=267 amount=-1 -kerning first=928 second=230 amount=-1 -kerning first=1178 second=360 amount=-1 -kerning first=953 second=947 amount=-2 -kerning first=956 second=372 amount=-5 -kerning first=1299 second=287 amount=-1 -kerning first=36 second=356 amount=-5 -kerning first=178 second=268 amount=-2 -kerning first=8226 second=1108 amount=-1 -kerning first=56 second=972 amount=-1 -kerning first=59 second=281 amount=-1 -kerning first=1074 second=231 amount=-1 -kerning first=8361 second=965 amount=-1 -kerning first=1102 second=373 amount=-1 -kerning first=923 second=1263 amount=-1 -kerning first=105 second=117 amount=-1 -kerning first=1041 second=244 amount=-1 -kerning first=183 second=216 amount=-2 -kerning first=298 second=106 amount=1 -kerning first=8250 second=1033 amount=-2 -kerning first=63 second=228 amount=-1 -kerning first=206 second=118 amount=-4 -kerning first=318 second=962 amount=-1 -kerning first=8370 second=221 amount=-5 -kerning first=80 second=1194 amount=-2 -kerning first=947 second=245 amount=-1 -kerning first=249 second=217 amount=-2 -kerning first=963 second=949 amount=-1 -kerning first=162 second=229 amount=-1 -kerning first=271 second=359 amount=-1 -kerning first=275 second=119 amount=-1 -kerning first=41 second=920 amount=-2 -kerning first=180 second=1195 amount=-1 -kerning first=184 second=371 amount=-1 -kerning first=296 second=1026 amount=-5 -kerning first=299 second=286 amount=-2 -kerning first=61 second=1257 amount=-1 -kerning first=1076 second=1090 amount=-2 -kerning first=1080 second=334 amount=-2 -kerning first=327 second=218 amount=-2 -kerning first=8372 second=376 amount=-5 -kerning first=902 second=346 amount=-1 -kerning first=944 second=273 amount=-1 -kerning first=948 second=45 amount=-2 -kerning first=353 second=120 amount=-1 -kerning first=247 second=947 amount=-4 -kerning first=250 second=372 amount=-5 -kerning first=373 second=287 amount=-1 -kerning first=160 second=1262 amount=-2 -kerning first=163 second=1240 amount=-2 -kerning first=1049 second=347 amount=-1 -kerning first=1046 second=1108 amount=-2 -kerning first=185 second=1069 amount=-1 -kerning first=191 second=81 amount=-2 -kerning first=303 second=231 amount=-1 -kerning first=1081 second=965 amount=-1 -kerning first=328 second=373 amount=-1 -kerning first=8369 second=8250 amount=-1 -kerning first=903 second=1028 amount=-2 -kerning first=906 second=288 amount=-2 -kerning first=1210 second=350 amount=-1 -kerning first=377 second=232 amount=-1 -kerning first=971 second=362 amount=-2 -kerning first=968 second=1176 amount=-1 -kerning first=167 second=332 amount=-2 -kerning first=280 second=244 amount=-1 -kerning first=8221 second=197 amount=-3 -kerning first=52 second=106 amount=1 -kerning first=1063 second=289 amount=-1 -kerning first=69 second=962 amount=-1 -kerning first=1095 second=221 amount=-5 -kerning first=912 second=233 amount=-1 -kerning first=1119 second=1177 amount=-1 -kerning first=1170 second=363 amount=-1 -kerning first=358 second=245 amount=-1 -kerning first=950 second=375 amount=-1 -kerning first=1224 second=290 amount=-2 -kerning first=255 second=949 amount=-1 -kerning first=258 second=257 amount=-1 -kerning first=168 second=963 amount=-1 -kerning first=50 second=1026 amount=-5 -kerning first=53 second=286 amount=-2 -kerning first=1067 second=234 amount=-1 -kerning first=305 second=1090 amount=-3 -kerning first=310 second=334 amount=-3 -kerning first=76 second=218 amount=-1 -kerning first=1096 second=376 amount=-5 -kerning first=96 second=360 amount=-2 -kerning first=1168 second=8212 amount=-2 -kerning first=1171 second=1059 amount=-2 -kerning first=99 second=120 amount=-1 -kerning first=239 second=273 amount=-1 -kerning first=236 second=964 amount=-3 -kerning first=948 second=8249 amount=-3 -kerning first=958 second=85 amount=-2 -kerning first=119 second=287 amount=-1 -kerning first=1263 second=235 amount=-1 -kerning first=382 second=335 amount=-1 -kerning first=176 second=219 amount=-2 -kerning first=282 second=1108 amount=-1 -kerning first=287 second=347 amount=-1 -kerning first=57 second=231 amount=-1 -kerning first=197 second=361 amount=-1 -kerning first=200 second=121 amount=-1 -kerning first=77 second=373 amount=-4 -kerning first=926 second=336 amount=-2 -kerning first=1184 second=248 amount=-2 -kerning first=363 second=350 amount=-1 -kerning first=123 second=232 amount=-1 -kerning first=260 second=1176 amount=-1 -kerning first=38 second=244 amount=-1 -kerning first=1038 second=197 amount=-2 -kerning first=177 second=374 amount=-5 -kerning first=291 second=289 amount=-1 -kerning first=1073 second=337 amount=-1 -kerning first=1076 second=99 amount=-1 -kerning first=204 second=71 amount=-2 -kerning first=321 second=221 amount=-5 -kerning first=84 second=83 amount=-1 -kerning first=1194 second=198 amount=-1 -kerning first=367 second=290 amount=-2 -kerning first=964 second=210 amount=-2 -kerning first=266 second=1051 amount=-1 -kerning first=1039 second=352 amount=-1 -kerning first=185 second=84 amount=-5 -kerning first=297 second=234 amount=-1 -kerning first=59 second=1090 amount=-3 -kerning first=62 second=334 amount=-2 -kerning first=1074 second=968 amount=-1 -kerning first=1078 second=277 amount=-2 -kerning first=205 second=246 amount=-1 -kerning first=322 second=376 amount=-5 -kerning first=8364 second=1079 amount=-1 -kerning first=900 second=291 amount=-1 -kerning first=85 second=258 amount=-2 -kerning first=340 second=8212 amount=-1 -kerning first=1203 second=113 amount=-1 -kerning first=251 second=85 amount=-2 -kerning first=371 second=235 amount=-1 -kerning first=965 second=365 amount=-1 -kerning first=161 second=335 amount=-1 -kerning first=164 second=97 amount=-1 -kerning first=40 second=1108 amount=-1 -kerning first=43 second=347 amount=-1 -kerning first=186 second=259 amount=-1 -kerning first=189 second=34 amount=-3 -kerning first=63 second=965 amount=-1 -kerning first=1083 second=224 amount=-1 -kerning first=318 second=8250 amount=-1 -kerning first=8377 second=266 amount=-2 -kerning first=946 second=171 amount=-3 -kerning first=963 second=8217 amount=-3 -kerning first=162 second=966 amount=-1 -kerning first=165 second=275 amount=-1 -kerning first=1241 second=1076 amount=-1 -kerning first=47 second=289 amount=-1 -kerning first=302 second=337 amount=-1 -kerning first=305 second=99 amount=-1 -kerning first=70 second=221 amount=-5 -kerning first=327 second=953 amount=-1 -kerning first=230 second=967 amount=-2 -kerning first=356 second=198 amount=-6 -kerning first=113 second=290 amount=-2 -kerning first=256 second=210 amount=-2 -kerning first=376 second=338 amount=-3 -kerning first=379 second=100 amount=-1 -kerning first=973 second=250 amount=-1 -kerning first=51 second=234 amount=-1 -kerning first=1062 second=1241 amount=-1 -kerning first=191 second=364 amount=-2 -kerning first=303 second=968 amount=-1 -kerning first=306 second=277 amount=-1 -kerning first=71 second=376 amount=-2 -kerning first=1085 second=1079 amount=-1 -kerning first=214 second=291 amount=-1 -kerning first=211 second=1035 amount=-2 -kerning first=906 second=1098 amount=-3 -kerning first=916 second=101 amount=-1 -kerning first=91 second=1059 amount=-2 -kerning first=88 second=8212 amount=-3 -kerning first=354 second=1117 amount=-2 -kerning first=357 second=353 amount=-1 -kerning first=949 second=955 amount=-1 -kerning first=952 second=263 amount=-1 -kerning first=117 second=235 amount=-1 -kerning first=8225 second=240 amount=-1 -kerning first=8221 second=916 amount=-3 -kerning first=189 second=8216 amount=-3 -kerning first=69 second=8250 amount=-1 -kerning first=1101 second=39 amount=-1 -kerning first=912 second=970 amount=-1 -kerning first=956 second=213 amount=-2 -kerning first=255 second=8217 amount=-3 -kerning first=258 second=1063 amount=-3 -kerning first=1299 second=103 amount=-1 -kerning first=178 second=87 amount=-5 -kerning first=56 second=337 amount=-1 -kerning first=59 second=99 amount=-1 -kerning first=196 second=940 amount=-1 -kerning first=334 second=8218 amount=-1 -kerning first=931 second=226 amount=-1 -kerning first=958 second=368 amount=-2 -kerning first=125 second=100 amount=-1 -kerning first=1263 second=972 amount=-1 -kerning first=37 second=352 amount=-1 -kerning first=179 second=262 amount=-2 -kerning first=57 second=968 amount=-1 -kerning first=60 second=277 amount=-1 -kerning first=203 second=199 amount=-2 -kerning first=323 second=89 amount=-5 -kerning first=8365 second=269 amount=-1 -kerning first=1103 second=369 amount=-1 -kerning first=223 second=339 amount=-1 -kerning first=103 second=353 amount=-1 -kerning first=243 second=955 amount=-1 -kerning first=960 second=1066 amount=-5 -kerning first=955 second=8221 amount=-3 -kerning first=1038 second=916 amount=-2 -kerning first=184 second=212 amount=-2 -kerning first=1044 second=240 amount=-1 -kerning first=1073 second=1256 amount=-2 -kerning first=64 second=224 amount=-1 -kerning first=201 second=1118 amount=-1 -kerning first=204 second=354 amount=-5 -kerning first=327 second=39 amount=-3 -kerning first=8372 second=217 amount=-2 -kerning first=81 second=1184 amount=-2 -kerning first=1101 second=8222 amount=-1 -kerning first=1117 second=79 amount=-2 -kerning first=110 second=63 amount=-2 -kerning first=250 second=213 amount=-2 -kerning first=373 second=103 amount=-1 -kerning first=967 second=253 amount=-1 -kerning first=163 second=225 amount=-1 -kerning first=273 second=355 amount=-1 -kerning first=276 second=115 amount=-1 -kerning first=182 second=1185 amount=-3 -kerning first=185 second=367 amount=-1 -kerning first=205 second=1038 amount=-2 -kerning first=8369 second=947 amount=-4 -kerning first=900 second=1101 amount=-1 -kerning first=251 second=368 amount=-2 -kerning first=371 second=972 amount=-1 -kerning first=374 second=281 amount=-4 -kerning first=8217 second=243 amount=-1 -kerning first=49 second=187 amount=-1 -kerning first=183 second=8220 amount=-3 -kerning first=304 second=227 amount=-1 -kerning first=72 second=89 amount=-5 -kerning first=1087 second=269 amount=-1 -kerning first=330 second=369 amount=-1 -kerning first=904 second=973 amount=-1 -kerning first=89 second=942 amount=-3 -kerning first=92 second=251 amount=-1 -kerning first=950 second=216 amount=-2 -kerning first=252 second=1066 amount=-5 -kerning first=249 second=8221 amount=-3 -kerning first=1224 second=106 amount=1 -kerning first=1026 second=118 amount=-4 -kerning first=47 second=1099 amount=-1 -kerning first=1064 second=283 amount=-1 -kerning first=190 second=943 amount=-1 -kerning first=193 second=252 amount=-1 -kerning first=302 second=1256 amount=-2 -kerning first=73 second=266 amount=-2 -kerning first=76 second=39 amount=-3 -kerning first=1096 second=217 amount=-2 -kerning first=915 second=229 amount=-1 -kerning first=1171 second=359 amount=-1 -kerning first=1176 second=119 amount=-4 -kerning first=356 second=920 amount=-1 -kerning first=948 second=1195 amount=-1 -kerning first=951 second=371 amount=-1 -kerning first=113 second=1100 amount=2 -kerning first=119 second=103 amount=-1 -kerning first=1220 second=1026 amount=-5 -kerning first=376 second=1257 amount=-4 -kerning first=34 second=115 amount=-1 -kerning first=172 second=267 amount=-1 -kerning first=8224 second=346 amount=-1 -kerning first=77 second=214 amount=-2 -kerning first=214 second=1101 amount=-1 -kerning first=916 second=1240 amount=-2 -kerning first=100 second=116 amount=-1 -kerning first=240 second=268 amount=-2 -kerning first=952 second=1069 amount=-1 -kerning first=960 second=81 amount=-2 -kerning first=117 second=972 amount=-1 -kerning first=120 second=281 amount=-2 -kerning first=1298 second=231 amount=-1 -kerning first=38 second=65 amount=-1 -kerning first=1035 second=243 amount=-1 -kerning first=8225 second=1028 amount=-2 -kerning first=8240 second=288 amount=-2 -kerning first=58 second=227 amount=-1 -kerning first=201 second=117 amount=-1 -kerning first=198 second=357 amount=-1 -kerning first=316 second=269 amount=-1 -kerning first=8363 second=220 amount=-2 -kerning first=78 second=369 amount=-1 -kerning first=928 second=332 amount=-2 -kerning first=1185 second=244 amount=-2 -kerning first=367 second=106 amount=1 -kerning first=124 second=228 amount=-1 -kerning first=1262 second=1298 amount=-1 -kerning first=269 second=118 amount=-1 -kerning first=39 second=240 amount=-1 -kerning first=175 second=1194 amount=-2 -kerning first=178 second=370 amount=-2 -kerning first=294 second=283 amount=-1 -kerning first=56 second=1256 amount=-2 -kerning first=1074 second=333 amount=-1 -kerning first=205 second=67 amount=-2 -kerning first=199 second=1044 amount=-1 -kerning first=322 second=217 amount=-2 -kerning first=8364 second=375 amount=-1 -kerning first=346 second=119 amount=-1 -kerning first=931 second=963 amount=-1 -kerning first=365 second=1026 amount=-5 -kerning first=122 second=1257 amount=-1 -kerning first=1041 second=346 amount=-1 -kerning first=298 second=230 amount=-1 -kerning first=1083 second=45 amount=-2 -kerning first=206 second=242 amount=-1 -kerning first=318 second=947 amount=-4 -kerning first=323 second=372 amount=-5 -kerning first=8377 second=85 amount=-2 -kerning first=901 second=287 amount=-1 -kerning first=223 second=1262 amount=-2 -kerning first=1187 second=1108 amount=-1 -kerning first=947 second=347 amount=-1 -kerning first=252 second=81 amount=-2 -kerning first=372 second=231 amount=-3 -kerning first=8212 second=196 amount=-2 -kerning first=1241 second=373 amount=-1 -kerning first=1048 second=288 amount=-2 -kerning first=1044 second=1028 amount=-1 -kerning first=296 second=1263 amount=-1 -kerning first=1084 second=220 amount=-2 -kerning first=905 second=232 amount=-1 -kerning first=1117 second=362 amount=-2 -kerning first=944 second=374 amount=-5 -kerning first=941 second=1203 amount=-1 -kerning first=113 second=106 amount=11 -kerning first=370 second=1298 amount=-1 -kerning first=973 second=71 amount=-2 -kerning first=163 second=962 amount=-1 -kerning first=8216 second=351 amount=-1 -kerning first=8220 second=111 amount=-1 -kerning first=48 second=283 amount=-1 -kerning first=51 second=55 amount=-1 -kerning first=1062 second=233 amount=-1 -kerning first=303 second=333 amount=-1 -kerning first=1085 second=375 amount=-1 -kerning first=91 second=359 amount=-1 -kerning first=94 second=119 amount=-4 -kerning first=952 second=84 amount=-5 -kerning first=1223 second=234 amount=-1 -kerning first=374 second=1090 amount=-2 -kerning first=377 second=334 amount=-1 -kerning first=170 second=218 amount=-2 -kerning first=280 second=346 amount=-1 -kerning first=8221 second=291 amount=-1 -kerning first=52 second=230 amount=-1 -kerning first=192 second=360 amount=-2 -kerning first=304 second=964 amount=-3 -kerning first=313 second=45 amount=-3 -kerning first=69 second=947 amount=-4 -kerning first=72 second=372 amount=-5 -kerning first=1083 second=8249 amount=-3 -kerning first=215 second=287 amount=-1 -kerning first=912 second=335 amount=-1 -kerning first=238 second=219 amount=-2 -kerning first=358 second=347 amount=-1 -kerning first=950 second=951 amount=-2 -kerning first=956 second=34 amount=-3 -kerning first=118 second=231 amount=-1 -kerning first=258 second=361 amount=-1 -kerning first=1240 second=46 amount=-1 -kerning first=1033 second=196 amount=-1 -kerning first=50 second=1263 amount=-1 -kerning first=1067 second=336 amount=-2 -kerning first=314 second=220 amount=-2 -kerning first=8361 second=171 amount=-3 -kerning first=915 second=966 amount=-1 -kerning first=923 second=275 amount=-1 -kerning first=239 second=374 amount=-5 -kerning first=1263 second=337 amount=-1 -kerning first=1037 second=111 amount=-1 -kerning first=179 second=83 amount=-1 -kerning first=57 second=333 amount=-1 -kerning first=200 second=245 amount=-1 -kerning first=315 second=375 amount=-1 -kerning first=80 second=257 amount=-1 -kerning first=77 second=949 amount=-1 -kerning first=1103 second=210 amount=-2 -kerning first=1184 second=352 amount=-1 -kerning first=960 second=364 amount=-2 -kerning first=123 second=334 amount=-2 -kerning first=1298 second=968 amount=-1 -kerning first=38 second=346 amount=-1 -kerning first=1035 second=1035 amount=-5 -kerning first=8240 second=1098 amount=-3 -kerning first=8260 second=339 amount=-1 -kerning first=61 second=273 amount=-1 -kerning first=64 second=45 amount=-2 -kerning first=58 second=964 amount=-3 -kerning first=313 second=8249 amount=-3 -kerning first=8366 second=263 amount=-1 -kerning first=221 second=1094 amount=-3 -kerning first=247 second=259 amount=-1 -kerning first=250 second=34 amount=-3 -kerning first=956 second=8216 amount=-3 -kerning first=124 second=965 amount=-1 -kerning first=42 second=288 amount=-2 -kerning first=297 second=336 amount=-2 -kerning first=65 second=220 amount=-2 -kerning first=1081 second=171 amount=-3 -kerning first=205 second=350 amount=-1 -kerning first=1102 second=8217 amount=-1 -kerning first=108 second=289 amount=-1 -kerning first=371 second=337 amount=-1 -kerning first=374 second=99 amount=-4 -kerning first=965 second=940 amount=-1 -kerning first=968 second=249 amount=-1 -kerning first=164 second=221 amount=-5 -kerning first=274 second=351 amount=-1 -kerning first=186 second=363 amount=-1 -kerning first=183 second=1177 amount=-1 -kerning first=1079 second=1078 amount=-1 -kerning first=209 second=290 amount=-2 -kerning first=330 second=210 amount=-2 -kerning first=8377 second=368 amount=-2 -kerning first=904 second=338 amount=-2 -kerning first=1119 second=250 amount=-1 -kerning first=1116 second=941 amount=-2 -kerning first=946 second=262 amount=-2 -kerning first=1219 second=187 amount=-1 -kerning first=1206 second=1241 amount=-1 -kerning first=252 second=364 amount=-2 -kerning first=375 second=277 amount=-1 -kerning first=372 second=968 amount=-2 -kerning first=165 second=376 amount=-5 -kerning first=278 second=291 amount=-1 -kerning first=1048 second=1098 amount=-3 -kerning first=184 second=8212 amount=-2 -kerning first=1064 second=101 amount=-1 -kerning first=64 second=8249 amount=-3 -kerning first=73 second=85 amount=-2 -kerning first=1090 second=263 amount=-1 -kerning first=8378 second=1066 amount=-5 -kerning first=8372 second=8221 amount=-3 -kerning first=951 second=212 amount=-2 -kerning first=250 second=8216 amount=-3 -kerning first=973 second=354 amount=-5 -kerning first=163 second=8250 amount=-1 -kerning first=51 second=336 amount=-2 -kerning first=1065 second=279 amount=-1 -kerning first=194 second=248 amount=-1 -kerning first=74 second=260 amount=-1 -kerning first=328 second=8217 amount=-1 -kerning first=916 second=225 amount=-1 -kerning first=234 second=1076 amount=-1 -kerning first=240 second=87 amount=-5 -kerning first=952 second=367 amount=-1 -kerning first=117 second=337 amount=-1 -kerning first=120 second=99 amount=-2 -kerning first=260 second=249 amount=-1 -kerning first=35 second=111 amount=-1 -kerning first=174 second=261 amount=-1 -kerning first=170 second=953 amount=-1 -kerning first=78 second=210 amount=-2 -kerning first=221 second=100 amount=-4 -kerning first=361 second=1241 amount=-1 -kerning first=950 second=8220 amount=-3 -kerning first=121 second=277 amount=-1 -kerning first=1299 second=227 amount=-1 -kerning first=36 second=291 amount=-1 -kerning first=178 second=211 amount=-2 -kerning first=289 second=339 amount=-1 -kerning first=294 second=101 amount=-1 -kerning first=8226 second=973 amount=-1 -kerning first=1070 second=381 amount=-1 -kerning first=202 second=113 amount=-1 -kerning first=317 second=263 amount=-1 -kerning first=8364 second=216 amount=-2 -kerning first=1096 second=8221 amount=-3 -kerning first=1099 second=1066 amount=-5 -kerning first=1186 second=240 amount=-1 -kerning first=958 second=943 amount=-1 -kerning first=962 second=252 amount=-1 -kerning first=125 second=224 amount=-1 -kerning first=1263 second=1256 amount=-2 -kerning first=176 second=1184 amount=-5 -kerning first=179 second=366 amount=-2 -kerning first=63 second=171 amount=-3 -kerning first=323 second=213 amount=-2 -kerning first=8365 second=371 amount=-1 -kerning first=901 second=103 amount=-1 -kerning first=77 second=8217 amount=-3 -kerning first=243 second=1185 amount=-1 -kerning first=299 second=226 amount=-1 -kerning first=8260 second=1262 amount=-2 -kerning first=67 second=88 amount=-2 -kerning first=1080 second=268 amount=-2 -kerning first=8366 second=1069 amount=-1 -kerning first=8378 second=81 amount=-2 -kerning first=902 second=281 amount=-1 -kerning first=84 second=941 amount=-3 -kerning first=87 second=250 amount=-2 -kerning first=107 second=1241 amount=-2 -kerning first=244 second=8220 amount=-1 -kerning first=373 second=227 amount=-1 -kerning first=967 second=357 amount=-1 -kerning first=160 second=1079 amount=-1 -kerning first=166 second=89 amount=-5 -kerning first=42 second=1098 amount=-3 -kerning first=48 second=101 amount=-1 -kerning first=1046 second=973 amount=-1 -kerning first=188 second=251 amount=-1 -kerning first=1085 second=216 amount=-2 -kerning first=322 second=8221 amount=-3 -kerning first=325 second=1066 amount=-5 -kerning first=906 second=228 amount=-1 -kerning first=354 second=240 amount=-3 -kerning first=942 second=1194 amount=-2 -kerning first=1210 second=283 amount=-1 -kerning first=251 second=943 amount=-1 -kerning first=254 second=252 amount=-1 -kerning first=371 second=1256 amount=-2 -kerning first=374 second=382 amount=-2 -kerning first=167 second=266 amount=-2 -kerning first=170 second=39 amount=-3 -kerning first=49 second=279 amount=-1 -kerning first=1063 second=229 amount=-1 -kerning first=72 second=213 amount=-2 -kerning first=1087 second=371 amount=-1 -kerning first=1083 second=1195 amount=-1 -kerning first=215 second=103 amount=-1 -kerning first=904 second=1257 amount=-1 -kerning first=89 second=1119 amount=-3 -kerning first=95 second=115 amount=-1 -kerning first=92 second=355 amount=-1 -kerning first=1224 second=230 amount=-1 -kerning first=1026 second=242 amount=-1 -kerning first=278 second=1101 amount=-1 -kerning first=8222 second=287 amount=-1 -kerning first=53 second=226 amount=-1 -kerning first=1064 second=1240 amount=-2 -kerning first=193 second=356 amount=-5 -kerning first=196 second=116 amount=-1 -kerning first=310 second=268 amount=-3 -kerning first=73 second=368 amount=-2 -kerning first=1099 second=81 amount=-2 -kerning first=910 second=1084 amount=-3 -kerning first=1176 second=243 amount=-1 -kerning first=356 second=1102 amount=-2 -kerning first=119 second=227 amount=-1 -kerning first=1220 second=1263 amount=-1 -kerning first=382 second=269 amount=-1 -kerning first=172 second=369 amount=-1 -kerning first=282 second=973 amount=-1 -kerning first=315 second=216 amount=-1 -kerning first=74 second=1066 amount=-5 -kerning first=916 second=962 amount=-1 -kerning first=100 second=240 amount=-1 -kerning first=237 second=1194 amount=-2 -kerning first=240 second=370 amount=-2 -kerning first=363 second=283 amount=-1 -kerning first=117 second=1256 amount=-2 -kerning first=1298 second=333 amount=-1 -kerning first=180 second=79 amount=-2 -kerning first=291 second=229 amount=-1 -kerning first=1073 second=271 amount=-1 -kerning first=198 second=920 amount=-2 -kerning first=316 second=371 amount=-1 -kerning first=313 second=1195 amount=-1 -kerning first=8366 second=84 amount=-5 -kerning first=936 second=218 amount=-2 -kerning first=367 second=230 amount=-1 -kerning first=1299 second=964 amount=-3 -kerning first=266 second=923 amount=-1 -kerning first=36 second=1101 amount=-1 -kerning first=1039 second=287 amount=-1 -kerning first=178 second=945 amount=-1 -kerning first=294 second=1240 amount=-2 -kerning first=289 second=1262 amount=-2 -kerning first=62 second=268 amount=-2 -kerning first=317 second=1069 amount=-1 -kerning first=325 second=81 amount=-2 -kerning first=900 second=231 amount=-1 -kerning first=8369 second=259 amount=-1 -kerning first=1102 second=1175 amount=-2 -kerning first=1186 second=1028 amount=-1 -kerning first=365 second=1263 amount=-1 -kerning first=161 second=269 amount=-1 -kerning first=40 second=973 amount=-1 -kerning first=46 second=54 amount=-1 -kerning first=298 second=332 amount=-2 -kerning first=209 second=106 amount=1 -kerning first=89 second=118 amount=-2 -kerning first=1119 second=71 amount=-2 -kerning first=352 second=193 amount=-1 -kerning first=946 second=83 amount=-1 -kerning first=1206 second=233 amount=-1 -kerning first=372 second=333 amount=-3 -kerning first=165 second=217 amount=-2 -kerning first=47 second=229 amount=-2 -kerning first=190 second=119 amount=-4 -kerning first=299 second=963 amount=-1 -kerning first=302 second=271 amount=-1 -kerning first=64 second=1195 amount=-1 -kerning first=207 second=1026 amount=-5 -kerning first=8378 second=364 amount=-2 -kerning first=905 second=334 amount=-2 -kerning first=902 second=1090 amount=-3 -kerning first=1168 second=246 amount=-1 -kerning first=113 second=230 amount=-1 -kerning first=253 second=360 amount=-2 -kerning first=376 second=273 amount=-4 -kerning first=379 second=45 amount=-3 -kerning first=163 second=947 amount=-4 -kerning first=166 second=372 amount=-5 -kerning first=8220 second=235 amount=-1 -kerning first=48 second=1240 amount=-2 -kerning first=1062 second=335 amount=-1 -kerning first=306 second=219 amount=-2 -kerning first=74 second=81 amount=-2 -kerning first=214 second=231 amount=-1 -kerning first=906 second=965 amount=-1 -kerning first=94 second=243 amount=-1 -kerning first=234 second=373 amount=-1 -kerning first=357 second=288 amount=-2 -kerning first=354 second=1028 amount=-1 -kerning first=1223 second=336 amount=-2 -kerning first=52 second=332 amount=-2 -kerning first=1063 second=966 amount=-1 -kerning first=1069 second=47 amount=-1 -kerning first=195 second=244 amount=-1 -kerning first=212 second=1298 amount=-1 -kerning first=920 second=221 amount=-3 -kerning first=1178 second=111 amount=-1 -kerning first=232 second=8230 amount=-1 -kerning first=361 second=233 amount=-1 -kerning first=950 second=1177 amount=-1 -kerning first=118 second=333 amount=-1 -kerning first=175 second=257 amount=-1 -kerning first=281 second=1299 amount=-1 -kerning first=8226 second=338 amount=-2 -kerning first=53 second=963 amount=-1 -kerning first=56 second=271 amount=-1 -kerning first=199 second=194 amount=-1 -kerning first=317 second=84 amount=-5 -kerning first=8361 second=262 amount=-2 -kerning first=1099 second=364 amount=-2 -kerning first=923 second=376 amount=-5 -kerning first=1176 second=1035 amount=-5 -kerning first=951 second=8212 amount=-2 -kerning first=122 second=273 amount=-1 -kerning first=125 second=45 amount=-2 -kerning first=37 second=287 amount=-1 -kerning first=1037 second=235 amount=-1 -kerning first=60 second=219 amount=-2 -kerning first=197 second=1108 amount=-1 -kerning first=200 second=347 amount=-1 -kerning first=323 second=34 amount=-3 -kerning first=318 second=259 amount=-1 -kerning first=8365 second=212 amount=-2 -kerning first=80 second=361 amount=-1 -kerning first=916 second=8250 amount=-1 -kerning first=100 second=1028 amount=-2 -kerning first=103 second=288 amount=-2 -kerning first=963 second=248 amount=-1 -kerning first=126 second=220 amount=-2 -kerning first=41 second=232 amount=-1 -kerning first=177 second=1176 amount=-1 -kerning first=180 second=362 amount=-2 -kerning first=291 second=966 amount=-1 -kerning first=296 second=275 amount=-1 -kerning first=61 second=374 amount=-5 -kerning first=1073 second=1076 amount=-1 -kerning first=204 second=289 amount=-1 -kerning first=1080 second=87 amount=-5 -kerning first=8366 second=367 amount=-1 -kerning first=8363 second=1185 amount=-3 -kerning first=902 second=99 amount=-1 -kerning first=87 second=71 amount=-2 -kerning first=345 second=351 amount=-1 -kerning first=936 second=953 amount=-1 -kerning first=107 second=233 amount=-2 -kerning first=247 second=363 amount=-1 -kerning first=160 second=375 amount=-1 -kerning first=273 second=290 amount=-2 -kerning first=1046 second=338 amount=-3 -kerning first=178 second=8211 amount=-2 -kerning first=1049 second=100 amount=-1 -kerning first=1081 second=262 amount=-2 -kerning first=68 second=84 amount=-2 -kerning first=325 second=364 amount=-2 -kerning first=8364 second=8220 amount=-3 -kerning first=900 second=968 amount=-1 -kerning first=903 second=277 amount=-1 -kerning first=88 second=246 amount=-2 -kerning first=1118 second=199 amount=-2 -kerning first=346 second=1035 amount=-1 -kerning first=1210 second=101 amount=-1 -kerning first=1203 second=339 amount=-1 -kerning first=968 second=353 amount=-1 -kerning first=971 second=113 amount=-1 -kerning first=125 second=8249 amount=-3 -kerning first=167 second=85 amount=-2 -kerning first=49 second=97 amount=-1 -kerning first=69 second=259 amount=-1 -kerning first=72 second=34 amount=-3 -kerning first=1087 second=212 amount=-2 -kerning first=323 second=8216 amount=-3 -kerning first=8377 second=943 amount=-1 -kerning first=1119 second=354 amount=-5 -kerning first=946 second=366 amount=-2 -kerning first=1219 second=279 amount=-1 -kerning first=255 second=248 amount=-1 -kerning first=8222 second=103 amount=-1 -kerning first=1241 second=8217 amount=-1 -kerning first=47 second=966 amount=-1 -kerning first=50 second=275 amount=-1 -kerning first=1064 second=225 amount=-1 -kerning first=1084 second=1185 amount=-3 -kerning first=93 second=351 amount=-1 -kerning first=1168 second=1038 amount=-2 -kerning first=96 second=111 amount=-1 -kerning first=236 second=261 amount=-1 -kerning first=376 second=1078 amount=-2 -kerning first=172 second=210 amount=-2 -kerning first=282 second=338 amount=-2 -kerning first=287 second=100 amount=-1 -kerning first=8230 second=53 amount=-1 -kerning first=8224 second=281 amount=-1 -kerning first=8220 second=972 amount=-1 -kerning first=194 second=352 amount=-1 -kerning first=74 second=364 amount=-2 -kerning first=1085 second=8220 amount=-3 -kerning first=214 second=968 amount=-1 -kerning first=338 second=199 amount=-2 -kerning first=94 second=1035 amount=-5 -kerning first=926 second=89 amount=-5 -kerning first=240 second=211 amount=-2 -kerning first=357 second=1098 amount=-3 -kerning first=363 second=101 amount=-1 -kerning first=955 second=251 amount=-1 -kerning first=260 second=353 amount=-1 -kerning first=35 second=235 amount=-1 -kerning first=174 second=365 amount=-1 -kerning first=8240 second=228 amount=-1 -kerning first=316 second=212 amount=-2 -kerning first=72 second=8216 amount=-3 -kerning first=221 second=224 amount=-4 -kerning first=928 second=266 amount=-2 -kerning first=936 second=39 amount=-3 -kerning first=238 second=1184 amount=-5 -kerning first=361 second=970 amount=-1 -kerning first=124 second=171 amount=-3 -kerning first=269 second=63 amount=-1 -kerning first=1039 second=103 amount=-1 -kerning first=294 second=225 amount=-1 -kerning first=8226 second=1257 amount=-1 -kerning first=1074 second=267 amount=-1 -kerning first=62 second=87 amount=-5 -kerning first=314 second=1185 amount=-3 -kerning first=317 second=367 amount=-1 -kerning first=222 second=379 amount=-1 -kerning first=962 second=356 amount=-5 -kerning first=965 second=116 amount=-1 -kerning first=40 second=338 amount=-2 -kerning first=43 second=100 amount=-1 -kerning first=1037 second=972 amount=-1 -kerning first=183 second=250 amount=-1 -kerning first=179 second=941 amount=-1 -kerning first=1041 second=281 amount=-1 -kerning first=63 second=262 amount=-2 -kerning first=203 second=1241 amount=-1 -kerning first=206 second=187 amount=-1 -kerning first=315 second=8220 amount=-3 -kerning first=901 second=227 amount=-1 -kerning first=86 second=199 amount=-2 -kerning first=223 second=1079 amount=-1 -kerning first=103 second=1098 amount=-3 -kerning first=249 second=251 amount=-1 -kerning first=162 second=263 amount=-1 -kerning first=1048 second=228 amount=-1 -kerning first=1080 second=370 amount=-2 -kerning first=327 second=252 amount=-1 -kerning first=84 second=1118 amount=-2 -kerning first=1168 second=67 amount=-2 -kerning first=233 second=39 amount=-1 -kerning first=948 second=79 amount=-2 -kerning first=967 second=920 amount=-2 -kerning first=166 second=213 amount=-2 -kerning first=8220 second=56 amount=-1 -kerning first=48 second=225 amount=-1 -kerning first=1046 second=1257 amount=-2 -kerning first=188 second=355 amount=-1 -kerning first=191 second=115 amount=-1 -kerning first=303 second=267 amount=-1 -kerning first=65 second=1185 amount=-3 -kerning first=1169 second=242 amount=-1 -kerning first=114 second=226 amount=-1 -kerning first=1210 second=1240 amount=-2 -kerning first=254 second=356 amount=-5 -kerning first=377 second=268 amount=-1 -kerning first=167 second=368 amount=-2 -kerning first=280 second=281 amount=-1 -kerning first=8221 second=231 amount=-1 -kerning first=215 second=227 amount=-1 -kerning first=912 second=269 amount=-1 -kerning first=1224 second=332 amount=-2 -kerning first=381 second=216 amount=-1 -kerning first=168 second=1066 amount=-5 -kerning first=165 second=8221 amount=-3 -kerning first=1064 second=962 amount=-1 -kerning first=196 second=240 amount=-1 -kerning first=305 second=1194 amount=-2 -kerning first=8361 second=83 amount=-1 -kerning first=73 second=943 amount=-1 -kerning first=76 second=252 amount=-1 -kerning first=334 second=1044 amount=-1 -kerning first=923 second=217 amount=-2 -kerning first=233 second=8222 amount=-1 -kerning first=958 second=119 amount=-4 -kerning first=1263 second=271 amount=-1 -kerning first=379 second=1195 amount=-1 -kerning first=37 second=103 amount=-1 -kerning first=1027 second=1026 amount=-5 -kerning first=176 second=253 amount=-1 -kerning first=282 second=1257 amount=-1 -kerning first=8224 second=1090 amount=-3 -kerning first=8230 second=334 amount=-1 -kerning first=57 second=267 amount=-1 -kerning first=1071 second=218 amount=-2 -kerning first=341 second=242 amount=-1 -kerning first=916 second=947 amount=-4 -kerning first=926 second=372 amount=-5 -kerning first=1184 second=287 amount=-1 -kerning first=240 second=945 amount=-1 -kerning first=363 second=1240 amount=-2 -kerning first=123 second=268 amount=-2 -kerning first=35 second=972 amount=-1 -kerning first=38 second=281 amount=-1 -kerning first=8240 second=965 amount=-1 -kerning first=1069 second=1202 amount=-3 -kerning first=1073 second=373 amount=-4 -kerning first=84 second=117 amount=-2 -kerning first=221 second=961 amount=-5 -kerning first=367 second=332 amount=-2 -kerning first=964 second=244 amount=-1 -kerning first=160 second=216 amount=-2 -kerning first=273 second=106 amount=1 -kerning first=42 second=228 amount=-1 -kerning first=185 second=118 amount=-4 -kerning first=294 second=962 amount=-1 -kerning first=59 second=1194 amount=-2 -kerning first=62 second=370 amount=-2 -kerning first=1070 second=8230 amount=-1 -kerning first=1081 second=83 amount=-1 -kerning first=205 second=283 amount=-1 -kerning first=8364 second=1177 amount=-1 -kerning first=8369 second=363 amount=-1 -kerning first=900 second=333 amount=-1 -kerning first=88 second=67 amount=-3 -kerning first=942 second=257 amount=-1 -kerning first=108 second=229 amount=-1 -kerning first=251 second=119 amount=-4 -kerning first=371 second=271 amount=-1 -kerning first=374 second=44 amount=-4 -kerning first=125 second=1195 amount=-1 -kerning first=161 second=371 amount=-1 -kerning first=274 second=286 amount=-2 -kerning first=270 second=1026 amount=-2 -kerning first=40 second=1257 amount=-1 -kerning first=1041 second=1090 amount=-3 -kerning first=301 second=218 amount=-2 -kerning first=209 second=230 amount=-1 -kerning first=8365 second=8212 amount=-2 -kerning first=8370 second=1059 amount=-2 -kerning first=904 second=273 amount=-1 -kerning first=901 second=964 amount=-3 -kerning first=86 second=923 amount=-6 -kerning first=89 second=242 amount=-4 -kerning first=226 second=947 amount=-1 -kerning first=1206 second=335 amount=-1 -kerning first=1219 second=97 amount=-1 -kerning first=375 second=219 amount=-2 -kerning first=162 second=1069 amount=-1 -kerning first=168 second=81 amount=-2 -kerning first=278 second=231 amount=-1 -kerning first=1241 second=1175 amount=-2 -kerning first=47 second=331 amount=-1 -kerning first=1048 second=965 amount=-1 -kerning first=190 second=243 amount=-1 -kerning first=302 second=373 amount=-4 -kerning first=207 second=1263 amount=-1 -kerning first=1168 second=350 amount=-1 -kerning first=356 second=232 amount=-3 -kerning first=944 second=1176 amount=-1 -kerning first=948 second=362 amount=-2 -kerning first=113 second=332 amount=-2 -kerning first=1256 second=47 amount=-1 -kerning first=256 second=244 amount=-1 -kerning first=1220 second=275 amount=-1 -kerning first=1207 second=966 amount=-1 -kerning first=973 second=289 amount=-1 -kerning first=8220 second=337 amount=-1 -kerning first=8224 second=99 amount=-1 -kerning first=48 second=962 amount=-1 -kerning first=1065 second=221 amount=-2 -kerning first=1085 second=1177 amount=-1 -kerning first=214 second=333 amount=-1 -kerning first=1174 second=290 amount=-1 -kerning first=237 second=257 amount=-1 -kerning first=114 second=963 amount=-1 -kerning first=117 second=271 amount=-1 -kerning first=280 second=1090 amount=-3 -kerning first=8225 second=277 amount=-1 -kerning first=55 second=218 amount=-2 -kerning first=1066 second=376 amount=-5 -kerning first=195 second=346 amount=-1 -kerning first=1087 second=8212 amount=-2 -kerning first=1095 second=1059 amount=-2 -kerning first=215 second=964 amount=-3 -kerning first=221 second=45 amount=-4 -kerning first=928 second=85 amount=-2 -kerning first=1178 second=235 amount=-1 -kerning first=361 second=335 amount=-1 -kerning first=121 second=219 amount=-2 -kerning first=258 second=1108 amount=-1 -kerning first=36 second=231 amount=-1 -kerning first=171 second=1175 amount=-1 -kerning first=175 second=361 amount=-1 -kerning first=178 second=121 amount=-1 -kerning first=56 second=373 amount=-4 -kerning first=1064 second=8250 amount=-1 -kerning first=196 second=1028 amount=-2 -kerning first=8361 second=366 amount=-2 -kerning first=337 second=1113 amount=-1 -kerning first=102 second=232 amount=-1 -kerning first=239 second=1176 amount=-1 -kerning first=245 second=122 amount=-1 -kerning first=365 second=275 amount=-1 -kerning first=262 second=1033 amount=-1 -kerning first=34 second=1298 amount=-3 -kerning first=1037 second=337 amount=-1 -kerning first=1041 second=99 amount=-1 -kerning first=183 second=71 amount=-2 -kerning first=54 second=8230 amount=-1 -kerning first=63 second=83 amount=-1 -kerning first=1071 second=953 amount=-1 -kerning first=203 second=233 amount=-1 -kerning first=318 second=363 amount=-1 -kerning first=223 second=375 amount=-1 -kerning first=947 second=100 amount=-1 -kerning first=240 second=8211 amount=-2 -kerning first=963 second=352 amount=-1 -kerning first=162 second=84 amount=-5 -kerning first=271 second=234 amount=-1 -kerning first=41 second=334 amount=-2 -kerning first=38 second=1090 amount=-3 -kerning first=184 second=246 amount=-1 -kerning first=1044 second=277 amount=-1 -kerning first=296 second=376 amount=-5 -kerning first=8260 second=1079 amount=-1 -kerning first=1080 second=211 amount=-2 -kerning first=321 second=1059 amount=-2 -kerning first=316 second=8212 amount=-2 -kerning first=8372 second=251 amount=-1 -kerning first=1117 second=113 amount=-1 -kerning first=221 second=8249 amount=-3 -kerning first=107 second=335 amount=-2 -kerning first=163 second=259 amount=-1 -kerning first=166 second=34 amount=-3 -kerning first=42 second=965 amount=-1 -kerning first=48 second=46 amount=-1 -kerning first=1049 second=224 amount=-1 -kerning first=294 second=8250 amount=-1 -kerning first=1081 second=366 amount=-2 -kerning first=906 second=171 amount=-3 -kerning first=88 second=350 amount=-1 -kerning first=108 second=966 amount=-1 -kerning first=114 second=47 amount=-2 -kerning first=1210 second=225 amount=-1 -kerning first=374 second=324 amount=-3 -kerning first=280 second=99 amount=-1 -kerning first=8221 second=52 amount=-1 -kerning first=49 second=221 amount=-5 -kerning first=192 second=111 amount=-1 -kerning first=189 second=351 amount=-1 -kerning first=304 second=261 amount=-1 -kerning first=301 second=953 amount=-1 -kerning first=69 second=363 amount=-1 -kerning first=92 second=290 amount=-2 -kerning first=358 second=100 amount=-1 -kerning first=950 second=250 amount=-1 -kerning first=946 second=941 amount=-1 -kerning first=255 second=352 amount=-1 -kerning first=1026 second=187 amount=-1 -kerning first=168 second=364 amount=-2 -kerning first=278 second=968 amount=-1 -kerning first=50 second=376 amount=-5 -kerning first=1067 second=89 amount=-5 -kerning first=190 second=1035 amount=-5 -kerning first=193 second=291 amount=-1 -kerning first=310 second=211 amount=-3 -kerning first=70 second=1059 amount=-2 -kerning first=1096 second=251 amount=-1 -kerning first=67 second=8212 amount=-1 -kerning first=910 second=955 amount=-2 -kerning first=923 second=38 amount=-1 -kerning first=96 second=235 amount=-1 -kerning first=915 second=263 amount=-1 -kerning first=236 second=365 amount=-1 -kerning first=166 second=8216 amount=-3 -kerning first=287 second=224 amount=-1 -kerning first=48 second=8250 amount=-1 -kerning first=1071 second=39 amount=-3 -kerning first=306 second=1184 amount=-5 -kerning first=77 second=248 amount=-1 -kerning first=926 second=213 amount=-2 -kerning first=1184 second=103 amount=-1 -kerning first=234 second=8217 amount=-1 -kerning first=363 second=225 amount=-1 -kerning first=955 second=355 amount=-1 -kerning first=960 second=115 amount=-1 -kerning first=1298 second=267 amount=-1 -kerning first=123 second=87 amount=-5 -kerning first=35 second=337 amount=-1 -kerning first=38 second=99 amount=-1 -kerning first=177 second=249 amount=-1 -kerning first=174 second=940 amount=-1 -kerning first=58 second=261 amount=-1 -kerning first=55 second=953 amount=-1 -kerning first=1073 second=214 amount=-2 -kerning first=81 second=198 amount=-2 -kerning first=928 second=368 amount=-2 -kerning first=1185 second=281 amount=-2 -kerning first=1178 second=972 amount=-1 -kerning first=124 second=262 amount=-2 -kerning first=36 second=968 amount=-1 -kerning first=39 second=277 amount=-1 -kerning first=1039 second=227 amount=-1 -kerning first=182 second=199 amount=-2 -kerning first=289 second=1079 amount=-1 -kerning first=297 second=89 amount=-5 -kerning first=62 second=211 amount=-2 -kerning first=1074 second=369 amount=-1 -kerning first=202 second=339 amount=-1 -kerning first=205 second=101 amount=-1 -kerning first=322 second=251 amount=-1 -kerning first=222 second=955 amount=-2 -kerning first=931 second=1066 amount=-5 -kerning first=923 second=8221 amount=-3 -kerning first=965 second=240 amount=-1 -kerning first=161 second=212 amount=-2 -kerning first=8211 second=55 amount=-3 -kerning first=43 second=224 amount=-1 -kerning first=1037 second=1256 amount=-2 -kerning first=183 second=354 amount=-5 -kerning first=179 second=1118 amount=-1 -kerning first=298 second=266 amount=-2 -kerning first=301 second=39 amount=-3 -kerning first=60 second=1184 amount=-5 -kerning first=63 second=366 amount=-2 -kerning first=1083 second=79 amount=-2 -kerning first=206 second=279 amount=-1 -kerning first=203 second=970 amount=-1 -kerning first=8370 second=359 amount=-1 -kerning first=8377 second=119 amount=-4 -kerning first=89 second=63 amount=-1 -kerning first=1187 second=1257 amount=-1 -kerning first=249 second=355 amount=-1 -kerning first=252 second=115 amount=-1 -kerning first=372 second=267 amount=-3 -kerning first=162 second=367 amount=-1 -kerning first=126 second=1185 amount=-3 -kerning first=184 second=1038 amount=-2 -kerning first=302 second=214 amount=-2 -kerning first=1080 second=945 amount=-1 -kerning first=327 second=356 amount=-5 -kerning first=905 second=268 amount=-2 -kerning first=160 second=8220 amount=-3 -kerning first=51 second=89 amount=-5 -kerning first=1062 second=269 amount=-1 -kerning first=303 second=369 amount=-1 -kerning first=211 second=381 amount=-1 -kerning first=228 second=8221 amount=-1 -kerning first=1174 second=106 amount=7 -kerning first=357 second=228 amount=-1 -kerning first=952 second=118 amount=-4 -kerning first=1210 second=962 amount=-1 -kerning first=374 second=1194 amount=-3 -kerning first=167 second=943 amount=-1 -kerning first=170 second=252 amount=-1 -kerning first=8221 second=333 amount=-1 -kerning first=52 second=266 amount=-2 -kerning first=55 second=39 amount=-3 -kerning first=313 second=79 amount=-1 -kerning first=1095 second=359 amount=-1 -kerning first=912 second=371 amount=-1 -kerning first=1170 second=1026 amount=-5 -kerning first=238 second=253 amount=-1 -kerning first=118 second=267 amount=-1 -kerning first=281 second=1083 amount=-1 -kerning first=8222 second=964 amount=-3 -kerning first=8226 second=273 amount=-1 -kerning first=56 second=214 amount=-2 -kerning first=1064 second=947 amount=-4 -kerning first=1067 second=372 amount=-5 -kerning first=193 second=1101 amount=-1 -kerning first=310 second=945 amount=-2 -kerning first=76 second=356 amount=-6 -kerning first=915 second=1069 amount=-1 -kerning first=931 second=81 amount=-2 -kerning first=96 second=972 amount=-1 -kerning first=1179 second=231 amount=-1 -kerning first=958 second=243 amount=-1 -kerning first=1263 second=373 amount=-4 -kerning first=1256 second=1202 amount=-3 -kerning first=1027 second=1263 amount=-1 -kerning first=37 second=227 amount=-1 -kerning first=176 second=357 amount=-1 -kerning first=179 second=117 amount=-1 -kerning first=57 second=369 amount=-1 -kerning first=197 second=973 amount=-1 -kerning first=1103 second=244 amount=-1 -kerning first=223 second=216 amount=-2 -kerning first=344 second=106 amount=2 -kerning first=103 second=228 amount=-1 -kerning first=246 second=118 amount=-1 -kerning first=363 second=962 amount=-1 -kerning first=123 second=370 amount=-2 -kerning first=1257 second=8230 amount=-1 -kerning first=35 second=1256 amount=-2 -kerning first=184 second=67 amount=-2 -kerning first=296 second=217 amount=-2 -kerning first=8260 second=375 amount=-1 -kerning first=55 second=8222 amount=-4 -kerning first=64 second=79 amount=-2 -kerning first=1073 second=949 amount=-1 -kerning first=204 second=229 amount=-1 -kerning first=321 second=359 amount=-1 -kerning first=324 second=119 amount=-1 -kerning first=84 second=241 amount=-2 -kerning first=221 second=1195 amount=-4 -kerning first=964 second=346 amount=-1 -kerning first=273 second=230 amount=-1 -kerning first=1039 second=964 amount=-3 -kerning first=1049 second=45 amount=-2 -kerning first=185 second=242 amount=-1 -kerning first=1046 second=273 amount=-2 -kerning first=294 second=947 amount=-4 -kerning first=297 second=372 amount=-5 -kerning first=62 second=945 amount=-1 -kerning first=205 second=1240 amount=-2 -kerning first=202 second=1262 amount=-2 -kerning first=903 second=219 amount=-2 -kerning first=1107 second=1108 amount=-1 -kerning first=942 second=361 amount=-1 -kerning first=251 second=243 amount=-1 -kerning first=371 second=373 amount=-4 -kerning first=965 second=1028 amount=-2 -kerning first=968 second=288 amount=-2 -kerning first=1051 second=220 amount=-2 -kerning first=1083 second=362 amount=-2 -kerning first=209 second=332 amount=-2 -kerning first=330 second=244 amount=-1 -kerning first=904 second=374 amount=-5 -kerning first=92 second=106 amount=1 -kerning first=1119 second=289 amount=-1 -kerning first=950 second=71 amount=-2 -kerning first=1219 second=221 amount=-5 -kerning first=278 second=333 amount=-1 -kerning first=8222 second=48 amount=-1 -kerning first=50 second=217 amount=-2 -kerning first=302 second=949 amount=-1 -kerning first=305 second=257 amount=-1 -kerning first=73 second=119 amount=-4 -kerning first=1080 second=8211 amount=-2 -kerning first=70 second=359 amount=-1 -kerning first=216 second=44 amount=-1 -kerning first=334 second=194 amount=-2 -kerning first=915 second=84 amount=-5 -kerning first=93 second=286 amount=-2 -kerning first=1171 second=234 amount=-1 -kerning first=356 second=334 amount=-1 -kerning first=951 second=246 amount=-1 -kerning first=1220 second=376 amount=-5 -kerning first=256 second=346 amount=-1 -kerning first=376 second=950 amount=-2 -kerning first=169 second=360 amount=-2 -kerning first=282 second=273 amount=-1 -kerning first=287 second=45 amount=-2 -kerning first=279 second=964 amount=-1 -kerning first=48 second=947 amount=-4 -kerning first=51 second=372 amount=-5 -kerning first=1049 second=8249 amount=-3 -kerning first=194 second=287 amount=-1 -kerning first=916 second=259 amount=-1 -kerning first=926 second=34 amount=-3 -kerning first=234 second=1175 amount=-2 -kerning first=237 second=361 amount=-1 -kerning first=240 second=121 amount=-1 -kerning first=357 second=965 amount=-1 -kerning first=117 second=373 amount=-4 -kerning first=1210 second=8250 amount=-1 -kerning first=260 second=288 amount=-2 -kerning first=8240 second=171 amount=-3 -kerning first=1069 second=260 amount=-2 -kerning first=198 second=232 amount=-1 -kerning first=313 second=362 amount=-1 -kerning first=78 second=244 amount=-1 -kerning first=336 second=1033 amount=-1 -kerning first=1185 second=99 amount=-2 -kerning first=1178 second=337 amount=-1 -kerning first=956 second=351 amount=-1 -kerning first=124 second=83 amount=-1 -kerning first=1299 second=261 amount=-1 -kerning first=36 second=333 amount=-1 -kerning first=178 second=245 amount=-1 -kerning first=289 second=375 amount=-1 -kerning first=56 second=949 amount=-1 -kerning first=59 second=257 amount=-1 -kerning first=1074 second=210 amount=-2 -kerning first=310 second=8211 amount=-4 -kerning first=8364 second=250 amount=-1 -kerning first=8361 second=941 amount=-1 -kerning first=343 second=234 amount=-1 -kerning first=931 second=364 amount=-2 -kerning first=1186 second=277 amount=-1 -kerning first=365 second=376 amount=-5 -kerning first=958 second=1035 amount=-5 -kerning first=962 second=291 amount=-1 -kerning first=40 second=273 amount=-1 -kerning first=43 second=45 amount=-2 -kerning first=37 second=964 amount=-3 -kerning first=287 second=8249 amount=-3 -kerning first=298 second=85 amount=-2 -kerning first=203 second=335 amount=-1 -kerning first=206 second=97 amount=-1 -kerning first=80 second=1108 amount=-1 -kerning first=86 second=109 amount=-2 -kerning first=229 second=34 amount=-1 -kerning first=926 second=8216 amount=-3 -kerning first=103 second=965 amount=-1 -kerning first=947 second=224 amount=-1 -kerning first=363 second=8250 amount=-1 -kerning first=271 second=336 amount=-2 -kerning first=8212 second=51 amount=-2 -kerning first=44 second=220 amount=-1 -kerning first=1048 second=171 amount=-3 -kerning first=184 second=350 amount=-1 -kerning first=64 second=362 amount=-2 -kerning first=1073 second=8217 amount=-3 -kerning first=61 second=1176 amount=-1 -kerning first=204 second=966 amount=-1 -kerning first=210 second=47 amount=-1 -kerning first=207 second=275 amount=-1 -kerning first=8372 second=355 amount=-1 -kerning first=8378 second=115 amount=-1 -kerning first=905 second=87 amount=-5 -kerning first=84 second=1033 amount=-4 -kerning first=87 second=289 amount=-2 -kerning first=944 second=249 amount=-1 -kerning first=253 second=111 amount=-1 -kerning first=250 second=351 amount=-1 -kerning first=373 second=261 amount=-1 -kerning first=160 second=1177 amount=-1 -kerning first=163 second=363 amount=-1 -kerning first=8216 second=226 amount=-1 -kerning first=188 second=290 amount=-2 -kerning first=303 second=210 amount=-2 -kerning first=62 second=8211 amount=-2 -kerning first=1085 second=250 amount=-1 -kerning first=1081 second=941 amount=-1 -kerning first=906 second=262 amount=-2 -kerning first=91 second=234 amount=-1 -kerning first=1118 second=1241 amount=-1 -kerning first=354 second=277 amount=-3 -kerning first=1223 second=89 amount=-5 -kerning first=251 second=1035 amount=-5 -kerning first=254 second=291 amount=-1 -kerning first=377 second=211 amount=-1 -kerning first=971 second=339 amount=-1 -kerning first=161 second=8212 amount=-2 -kerning first=164 second=1059 amount=-2 -kerning first=968 second=1098 amount=-3 -kerning first=43 second=8249 amount=-3 -kerning first=52 second=85 amount=-2 -kerning first=1063 second=263 amount=-1 -kerning first=192 second=235 amount=-1 -kerning first=304 second=365 amount=-1 -kerning first=212 second=377 amount=-1 -kerning first=912 second=212 amount=-2 -kerning first=229 second=8216 amount=-1 -kerning first=358 second=224 amount=-1 -kerning first=950 second=354 amount=-5 -kerning first=946 second=1118 amount=-1 -kerning first=1224 second=266 amount=-2 -kerning first=375 second=1184 amount=-5 -kerning first=1026 second=279 amount=-1 -kerning first=281 second=378 amount=-1 -kerning first=1067 second=213 amount=-2 -kerning first=302 second=8217 amount=-3 -kerning first=1099 second=115 amount=-1 -kerning first=1096 second=355 amount=-1 -kerning first=915 second=367 amount=-1 -kerning first=910 second=1185 amount=-2 -kerning first=96 second=337 amount=-1 -kerning first=236 second=940 amount=-1 -kerning first=239 second=249 amount=-1 -kerning first=356 second=1220 amount=-2 -kerning first=951 second=1038 amount=-2 -kerning first=119 second=261 amount=-1 -kerning first=1263 second=214 amount=-2 -kerning first=376 second=8218 amount=-4 -kerning first=8230 second=268 amount=-1 -kerning first=57 second=210 amount=-2 -kerning first=197 second=338 amount=-2 -kerning first=200 second=100 amount=-1 -kerning first=315 second=250 amount=-1 -kerning first=311 second=941 amount=-2 -kerning first=77 second=352 amount=-1 -kerning first=338 second=1241 amount=-1 -kerning first=100 second=277 amount=-1 -kerning first=1184 second=227 amount=-1 -kerning first=123 second=211 amount=-2 -kerning first=1298 second=369 amount=-1 -kerning first=260 second=1098 amount=-3 -kerning first=177 second=353 amount=-1 -kerning first=180 second=113 amount=-1 -kerning first=291 second=263 amount=-1 -kerning first=8260 second=216 amount=-2 -kerning first=58 second=365 amount=-1 -kerning first=1066 second=8221 amount=-2 -kerning first=1069 second=1066 amount=-2 -kerning first=8366 second=118 amount=-4 -kerning first=928 second=943 amount=-1 -kerning first=936 second=252 amount=-1 -kerning first=1178 second=1256 amount=-1 -kerning first=367 second=266 amount=-2 -kerning first=121 second=1184 amount=-5 -kerning first=124 second=366 amount=-2 -kerning first=1262 second=8222 amount=-1 -kerning first=42 second=171 amount=-3 -kerning first=297 second=213 amount=-2 -kerning first=56 second=8217 amount=-3 -kerning first=205 second=225 amount=-1 -kerning first=325 second=115 amount=-1 -kerning first=322 second=355 amount=-1 -kerning first=900 second=267 amount=-1 -kerning first=371 second=214 amount=-2 -kerning first=962 second=1101 amount=-1 -kerning first=274 second=226 amount=-1 -kerning first=298 second=368 amount=-2 -kerning first=63 second=941 amount=-1 -kerning first=8377 second=243 amount=-1 -kerning first=86 second=1241 amount=-1 -kerning first=89 second=187 amount=-2 -kerning first=223 second=8220 amount=-3 -kerning first=946 second=117 amount=-1 -kerning first=947 second=961 amount=-2 -kerning first=1206 second=269 amount=-1 -kerning first=372 second=369 amount=-2 -kerning first=165 second=251 amount=-1 -kerning first=47 second=263 amount=-1 -kerning first=296 second=8221 amount=-3 -kerning first=299 second=1066 amount=-5 -kerning first=213 second=90 amount=-1 -kerning first=902 second=1194 amount=-2 -kerning first=905 second=370 amount=-2 -kerning first=87 second=1099 amount=-2 -kerning first=1168 second=283 amount=-1 -kerning first=951 second=67 amount=-2 -kerning first=113 second=266 amount=-2 -kerning first=1220 second=217 amount=-2 -kerning first=370 second=8222 amount=-1 -kerning first=379 second=79 amount=-1 -kerning first=973 second=229 amount=-1 -kerning first=8216 second=963 amount=-1 -kerning first=8220 second=271 amount=-1 -kerning first=51 second=213 amount=-2 -kerning first=1049 second=1195 amount=-1 -kerning first=194 second=103 amount=-1 -kerning first=306 second=253 amount=-1 -kerning first=74 second=115 amount=-1 -kerning first=214 second=267 amount=-1 -kerning first=952 second=242 amount=-1 -kerning first=117 second=214 amount=-2 -kerning first=1210 second=947 amount=-4 -kerning first=1223 second=372 amount=-5 -kerning first=254 second=1101 amount=-1 -kerning first=377 second=945 amount=-1 -kerning first=971 second=1262 amount=-2 -kerning first=170 second=356 amount=-5 -kerning first=174 second=116 amount=-1 -kerning first=8225 second=219 amount=-2 -kerning first=52 second=368 amount=-2 -kerning first=1063 second=1069 amount=-1 -kerning first=192 second=972 amount=-1 -kerning first=195 second=281 amount=-1 -kerning first=1170 second=1263 amount=-1 -kerning first=238 second=357 amount=-1 -kerning first=361 second=269 amount=-1 -kerning first=258 second=973 amount=-1 -kerning first=289 second=216 amount=-2 -kerning first=8226 second=374 amount=-5 -kerning first=53 second=1066 amount=-5 -kerning first=50 second=8221 amount=-3 -kerning first=1070 second=256 amount=-2 -kerning first=317 second=118 amount=-4 -kerning first=8364 second=71 amount=-2 -kerning first=96 second=1256 amount=-2 -kerning first=1179 second=333 amount=-1 -kerning first=365 second=217 amount=-2 -kerning first=116 second=8222 amount=-1 -kerning first=125 second=79 amount=-2 -kerning first=1263 second=949 amount=-1 -kerning first=1037 second=271 amount=-1 -kerning first=176 second=920 amount=-2 -kerning first=287 second=1195 amount=-1 -kerning first=60 second=253 amount=-1 -kerning first=197 second=1257 amount=-1 -kerning first=8365 second=246 amount=-1 -kerning first=1103 second=346 amount=-1 -kerning first=934 second=360 amount=-2 -kerning first=1184 second=964 amount=-4 -kerning first=1187 second=273 amount=-1 -kerning first=947 second=45 amount=-1 -kerning first=363 second=947 amount=-4 -kerning first=963 second=287 amount=-1 -kerning first=123 second=945 amount=-1 -kerning first=41 second=268 amount=-2 -kerning first=1044 second=219 amount=-1 -kerning first=291 second=1069 amount=-1 -kerning first=299 second=81 amount=-2 -kerning first=1073 second=1175 amount=-2 -kerning first=1080 second=121 amount=-1 -kerning first=84 second=343 amount=-2 -kerning first=107 second=269 amount=-2 -kerning first=1202 second=220 amount=-1 -kerning first=967 second=232 amount=-1 -kerning first=273 second=332 amount=-2 -kerning first=8216 second=47 amount=-2 -kerning first=188 second=106 amount=1 -kerning first=1085 second=71 amount=-2 -kerning first=205 second=962 amount=-1 -kerning first=906 second=83 amount=-1 -kerning first=88 second=283 amount=-2 -kerning first=1118 second=233 amount=-1 -kerning first=371 second=949 amount=-1 -kerning first=374 second=257 amount=-4 -kerning first=164 second=359 amount=-1 -kerning first=167 second=119 amount=-4 -kerning first=274 second=963 amount=-1 -kerning first=43 second=1195 amount=-1 -kerning first=46 second=371 amount=-1 -kerning first=1063 second=84 amount=-5 -kerning first=186 second=1026 amount=-5 -kerning first=189 second=286 amount=-2 -kerning first=66 second=1046 amount=-2 -kerning first=1087 second=246 amount=-1 -kerning first=330 second=346 amount=-1 -kerning first=8377 second=1035 amount=-5 -kerning first=908 second=258 amount=-2 -kerning first=92 second=230 amount=-1 -kerning first=235 second=120 amount=-2 -kerning first=358 second=45 amount=-2 -kerning first=109 second=947 amount=-1 -kerning first=947 second=8249 amount=-1 -kerning first=1224 second=85 amount=-2 -kerning first=255 second=287 amount=-1 -kerning first=1026 second=97 amount=-1 -kerning first=47 second=1069 amount=-1 -kerning first=53 second=81 amount=-2 -kerning first=1067 second=34 amount=-3 -kerning first=1064 second=259 amount=-1 -kerning first=193 second=231 amount=-1 -kerning first=305 second=361 amount=-1 -kerning first=310 second=121 amount=-2 -kerning first=73 second=243 amount=-1 -kerning first=210 second=1202 amount=-3 -kerning first=1171 second=336 amount=-2 -kerning first=951 second=350 amount=-1 -kerning first=1256 second=260 amount=-2 -kerning first=376 second=1176 amount=-2 -kerning first=973 second=966 amount=-1 -kerning first=1027 second=275 amount=-1 -kerning first=172 second=244 amount=-1 -kerning first=282 second=374 amount=-5 -kerning first=279 second=1203 amount=-2 -kerning first=8230 second=87 amount=-3 -kerning first=315 second=71 amount=-1 -kerning first=211 second=8230 amount=-1 -kerning first=338 second=233 amount=-1 -kerning first=916 second=363 amount=-1 -kerning first=240 second=245 amount=-1 -kerning first=955 second=290 amount=-2 -kerning first=117 second=949 amount=-1 -kerning first=120 second=257 amount=-1 -kerning first=1298 second=210 amount=-2 -kerning first=377 second=8211 amount=-3 -kerning first=35 second=271 amount=-1 -kerning first=291 second=84 amount=-5 -kerning first=8240 second=262 amount=-2 -kerning first=195 second=1090 amount=-3 -kerning first=198 second=334 amount=-2 -kerning first=316 second=246 amount=-1 -kerning first=8363 second=199 amount=-2 -kerning first=78 second=346 amount=-1 -kerning first=221 second=258 amount=-5 -kerning first=912 second=8212 amount=-2 -kerning first=98 second=964 amount=-1 -kerning first=358 second=8249 amount=-3 -kerning first=367 second=85 amount=-2 -kerning first=1299 second=365 amount=-1 -kerning first=175 second=1108 amount=-1 -kerning first=178 second=347 amount=-1 -kerning first=294 second=259 amount=-1 -kerning first=297 second=34 amount=-3 -kerning first=59 second=361 amount=-1 -kerning first=1067 second=8216 amount=-3 -kerning first=62 second=121 amount=-1 -kerning first=8364 second=354 amount=-5 -kerning first=8361 second=1118 amount=-1 -kerning first=105 second=220 amount=-2 -kerning first=242 second=1113 amount=-1 -kerning first=368 second=260 amount=-2 -kerning first=125 second=362 amount=-2 -kerning first=1263 second=8217 amount=-3 -kerning first=40 second=374 amount=-5 -kerning first=1047 second=87 amount=-1 -kerning first=183 second=289 amount=-1 -kerning first=1075 second=940 amount=-1 -kerning first=206 second=221 amount=-5 -kerning first=323 second=351 amount=-1 -kerning first=8365 second=1038 amount=-2 -kerning first=901 second=261 amount=-1 -kerning first=86 second=233 amount=-3 -kerning first=223 second=1177 amount=-1 -kerning first=249 second=290 amount=-2 -kerning first=372 second=210 amount=-2 -kerning first=123 second=8211 amount=-2 -kerning first=47 second=84 amount=-5 -kerning first=1048 second=262 amount=-2 -kerning first=299 second=364 amount=-2 -kerning first=8260 second=8220 amount=-3 -kerning first=1084 second=199 amount=-2 -kerning first=207 second=376 amount=-5 -kerning first=327 second=291 amount=-1 -kerning first=905 second=211 amount=-2 -kerning first=1117 second=339 amount=-1 -kerning first=1168 second=101 amount=-1 -kerning first=948 second=113 amount=-1 -kerning first=944 second=353 amount=-1 -kerning first=113 second=85 amount=-2 -kerning first=1207 second=263 amount=-1 -kerning first=253 second=235 amount=-1 -kerning first=967 second=969 amount=-1 -kerning first=48 second=259 amount=-1 -kerning first=51 second=34 amount=-3 -kerning first=1062 second=212 amount=-1 -kerning first=297 second=8216 amount=-3 -kerning first=1081 second=1118 amount=-1 -kerning first=1085 second=354 amount=-5 -kerning first=205 second=8250 amount=-1 -kerning first=903 second=1184 amount=-5 -kerning first=906 second=366 amount=-2 -kerning first=91 second=336 amount=-2 -kerning first=1118 second=970 amount=-1 -kerning first=1169 second=279 amount=-1 -kerning first=354 second=378 amount=-1 -kerning first=357 second=171 amount=-3 -kerning first=1223 second=213 amount=-2 -kerning first=371 second=8217 amount=-3 -kerning first=277 second=1076 amount=-1 -kerning first=8221 second=267 amount=-1 -kerning first=1051 second=1185 amount=-3 -kerning first=1063 second=367 amount=-1 -kerning first=192 second=337 amount=-1 -kerning first=195 second=99 amount=-1 -kerning first=304 second=940 amount=-1 -kerning first=72 second=351 amount=-1 -kerning first=1087 second=1038 amount=-2 -kerning first=75 second=111 amount=-2 -kerning first=215 second=261 amount=-1 -kerning first=1224 second=368 amount=-2 -kerning first=258 second=338 amount=-2 -kerning first=378 second=941 amount=-1 -kerning first=53 second=364 amount=-2 -kerning first=193 second=968 amount=-1 -kerning first=196 second=277 amount=-1 -kerning first=314 second=199 amount=-2 -kerning first=8361 second=117 amount=-1 -kerning first=73 second=1035 amount=-5 -kerning first=76 second=291 amount=-1 -kerning first=923 second=251 amount=-1 -kerning first=239 second=353 amount=-1 -kerning first=359 second=955 amount=-1 -kerning first=1220 second=8221 amount=-3 -kerning first=1256 second=1066 amount=-2 -kerning first=8224 second=1194 amount=-2 -kerning first=8230 second=370 amount=-1 -kerning first=51 second=8216 amount=-3 -kerning first=1071 second=252 amount=-1 -kerning first=200 second=224 amount=-1 -kerning first=315 second=354 amount=-6 -kerning first=8365 second=67 amount=-2 -kerning first=338 second=970 amount=-1 -kerning first=341 second=279 amount=-1 -kerning first=103 second=171 amount=-3 -kerning first=246 second=63 amount=-2 -kerning first=117 second=8217 amount=-3 -kerning first=963 second=103 amount=-1 -kerning first=41 second=87 amount=-5 -kerning first=291 second=367 amount=-1 -kerning first=61 second=249 amount=-1 -kerning first=58 second=940 amount=-1 -kerning first=316 second=1038 amount=-2 -kerning first=8366 second=242 amount=-1 -kerning first=218 second=8218 amount=-1 -kerning first=936 second=356 amount=-5 -kerning first=345 second=226 amount=-1 -kerning first=101 second=1078 amount=-2 -kerning first=367 second=368 amount=-2 -kerning first=964 second=281 amount=-1 -kerning first=160 second=250 amount=-1 -kerning first=124 second=941 amount=-1 -kerning first=42 second=262 amount=-2 -kerning first=182 second=1241 amount=-1 -kerning first=185 second=187 amount=-1 -kerning first=289 second=8220 amount=-3 -kerning first=65 second=199 amount=-2 -kerning first=1081 second=117 amount=-1 -kerning first=202 second=1079 amount=-1 -kerning first=208 second=89 amount=-3 -kerning first=900 second=369 amount=-1 -kerning first=88 second=101 amount=-2 -kerning first=108 second=263 amount=-1 -kerning first=365 second=8221 amount=-3 -kerning first=968 second=228 amount=-1 -kerning first=46 second=212 amount=-1 -kerning first=1041 second=1194 amount=-2 -kerning first=298 second=943 amount=-1 -kerning first=301 second=252 amount=-1 -kerning first=63 second=1118 amount=-1 -kerning first=66 second=354 amount=-1 -kerning first=1087 second=67 amount=-2 -kerning first=209 second=266 amount=-2 -kerning first=86 second=970 amount=-1 -kerning first=89 second=279 amount=-4 -kerning first=1119 second=229 amount=-1 -kerning first=947 second=1195 amount=-1 -kerning first=255 second=103 amount=-1 -kerning first=375 second=253 amount=-1 -kerning first=165 second=355 amount=-1 -kerning first=168 second=115 amount=-1 -kerning first=278 second=267 amount=-1 -kerning first=8218 second=218 amount=-1 -kerning first=47 second=367 amount=-1 -kerning first=44 second=1185 amount=-3 -kerning first=1090 second=242 amount=-1 -kerning first=327 second=1101 amount=-1 -kerning first=905 second=945 amount=-1 -kerning first=93 second=226 amount=-1 -kerning first=1117 second=1262 amount=-2 -kerning first=1168 second=1240 amount=-2 -kerning first=236 second=116 amount=-1 -kerning first=356 second=268 amount=-1 -kerning first=113 second=368 amount=-2 -kerning first=253 second=972 amount=-1 -kerning first=256 second=281 amount=-1 -kerning first=194 second=227 amount=-1 -kerning first=306 second=357 amount=-1 -kerning first=214 second=369 amount=-1 -kerning first=1174 second=332 amount=-1 -kerning first=955 second=106 amount=1 -kerning first=111 second=8221 amount=-1 -kerning first=260 second=228 amount=-1 -kerning first=174 second=240 amount=-1 -kerning first=280 second=1194 amount=-2 -kerning first=8217 second=8230 amount=-1 -kerning first=8240 second=83 amount=-1 -kerning first=52 second=943 amount=-1 -kerning first=55 second=252 amount=-1 -kerning first=192 second=1256 amount=-2 -kerning first=316 second=67 amount=-2 -kerning first=212 second=8222 amount=-1 -kerning first=221 second=79 amount=-3 -kerning first=928 second=119 amount=-4 -kerning first=1178 second=271 amount=-1 -kerning first=1175 second=963 amount=-1 -kerning first=238 second=920 amount=-2 -kerning first=358 second=1195 amount=-1 -kerning first=361 second=371 amount=-1 -kerning first=956 second=286 amount=-2 -kerning first=121 second=253 amount=-1 -kerning first=258 second=1257 amount=-1 -kerning first=36 second=267 amount=-1 -kerning first=8249 second=258 amount=-1 -kerning first=1074 second=120 amount=-1 -kerning first=317 second=242 amount=-1 -kerning first=1186 second=219 amount=-1 -kerning first=962 second=231 amount=-1 -kerning first=1037 second=373 amount=-4 -kerning first=1034 second=1202 amount=-2 -kerning first=60 second=357 amount=-1 -kerning first=63 second=117 amount=-1 -kerning first=203 second=269 amount=-1 -kerning first=8365 second=350 amount=-1 -kerning first=80 second=973 amount=-1 -kerning first=249 second=106 amount=1 -kerning first=162 second=118 amount=-4 -kerning first=38 second=1194 amount=-2 -kerning first=41 second=370 amount=-2 -kerning first=1048 second=83 amount=-1 -kerning first=184 second=283 amount=-1 -kerning first=8260 second=1177 amount=-1 -kerning first=1080 second=245 amount=-1 -kerning first=207 second=217 amount=-2 -kerning first=8372 second=290 amount=-2 -kerning first=902 second=257 amount=-1 -kerning first=87 second=229 amount=-2 -kerning first=230 second=119 amount=-1 -kerning first=345 second=963 amount=-1 -kerning first=247 second=1026 amount=-5 -kerning first=250 second=286 amount=-2 -kerning first=964 second=1090 amount=-3 -kerning first=967 second=334 amount=-2 -kerning first=276 second=218 amount=-2 -kerning first=1046 second=950 amount=-2 -kerning first=188 second=230 amount=-1 -kerning first=300 second=360 amount=-2 -kerning first=205 second=947 amount=-4 -kerning first=208 second=372 amount=-2 -kerning first=88 second=1240 amount=-3 -kerning first=1118 second=335 amount=-1 -kerning first=942 second=1108 amount=-1 -kerning first=108 second=1069 amount=-1 -kerning first=1210 second=259 amount=-1 -kerning first=1223 second=34 amount=-3 -kerning first=254 second=231 amount=-1 -kerning first=374 second=361 amount=-2 -kerning first=968 second=965 amount=-1 -kerning first=167 second=243 amount=-1 -kerning first=277 second=373 amount=-1 -kerning first=186 second=1263 amount=-1 -kerning first=1087 second=350 amount=-1 -kerning first=904 second=1176 amount=-1 -kerning first=89 second=1085 amount=-3 -kerning first=92 second=332 amount=-2 -kerning first=1119 second=966 amount=-1 -kerning first=1170 second=275 amount=-1 -kerning first=352 second=1203 amount=-1 -kerning first=950 second=289 amount=-1 -kerning first=381 second=71 amount=-1 -kerning first=1026 second=221 amount=-5 -kerning first=171 second=193 amount=-1 -kerning first=275 second=8230 amount=-1 -kerning first=1064 second=363 amount=-1 -kerning first=193 second=333 amount=-1 -kerning first=310 second=245 amount=-2 -kerning first=1096 second=290 amount=-2 -kerning first=905 second=8211 amount=-2 -kerning first=93 second=963 amount=-1 -kerning first=96 second=271 amount=-1 -kerning first=910 second=1051 amount=-5 -kerning first=954 second=234 amount=-2 -kerning first=256 second=1090 amount=-3 -kerning first=382 second=246 amount=-1 -kerning first=1027 second=376 amount=-5 -kerning first=172 second=346 amount=-1 -kerning first=8230 second=211 amount=-1 -kerning first=54 second=360 amount=-2 -kerning first=1065 second=1059 amount=-1 -kerning first=1062 second=8212 amount=-2 -kerning first=197 second=273 amount=-1 -kerning first=200 second=45 amount=-2 -kerning first=194 second=964 amount=-3 -kerning first=77 second=287 amount=-1 -kerning first=338 second=335 amount=-1 -kerning first=341 second=97 amount=-1 -kerning first=916 second=936 amount=-3 -kerning first=100 second=219 amount=-2 -kerning first=237 second=1108 amount=-1 -kerning first=240 second=347 amount=-1 -kerning first=363 second=259 amount=-1 -kerning first=1223 second=8216 amount=-3 -kerning first=123 second=121 amount=-1 -kerning first=260 second=965 amount=-1 -kerning first=268 second=46 amount=-1 -kerning first=35 second=373 amount=-4 -kerning first=174 second=1028 amount=-2 -kerning first=177 second=288 amount=-2 -kerning first=8225 second=1184 amount=-5 -kerning first=8240 second=366 amount=-2 -kerning first=1073 second=248 amount=-1 -kerning first=201 second=220 amount=-2 -kerning first=316 second=350 amount=-1 -kerning first=345 second=47 amount=-2 -kerning first=936 second=197 amount=-3 -kerning first=98 second=1203 amount=-2 -kerning first=1194 second=87 amount=-1 -kerning first=964 second=99 amount=-1 -kerning first=160 second=71 amount=-2 -kerning first=1299 second=940 amount=-1 -kerning first=42 second=83 amount=-1 -kerning first=1039 second=261 amount=-1 -kerning first=182 second=233 amount=-1 -kerning first=294 second=363 amount=-1 -kerning first=289 second=1177 amount=-1 -kerning first=62 second=245 amount=-1 -kerning first=202 second=375 amount=-1 -kerning first=322 second=290 amount=-2 -kerning first=900 second=210 amount=-2 -kerning first=222 second=1051 amount=-1 -kerning first=108 second=84 amount=-5 -kerning first=962 second=968 amount=-1 -kerning first=965 second=277 amount=-1 -kerning first=161 second=246 amount=-1 -kerning first=270 second=376 amount=-3 -kerning first=8211 second=89 amount=-4 -kerning first=1083 second=113 amount=-1 -kerning first=200 second=8249 amount=-3 -kerning first=209 second=85 amount=-2 -kerning first=901 second=365 amount=-1 -kerning first=86 second=335 amount=-1 -kerning first=89 second=97 amount=-4 -kerning first=112 second=34 amount=-1 -kerning first=1206 second=212 amount=-1 -kerning first=8218 second=39 amount=-1 -kerning first=1044 second=1184 amount=-2 -kerning first=1048 second=366 amount=-2 -kerning first=302 second=248 amount=-1 -kerning first=70 second=110 amount=-1 -kerning first=210 second=260 amount=-2 -kerning first=902 second=1063 amount=-3 -kerning first=87 second=966 amount=-3 -kerning first=90 second=275 amount=-1 -kerning first=1168 second=225 amount=-1 -kerning first=1202 second=1185 amount=-2 -kerning first=253 second=337 amount=-1 -kerning first=256 second=99 amount=-1 -kerning first=376 second=249 amount=-2 -kerning first=373 second=940 amount=-1 -kerning first=169 second=111 amount=-1 -kerning first=166 second=351 amount=-1 -kerning first=276 second=953 amount=-1 -kerning first=48 second=363 amount=-1 -kerning first=214 second=210 amount=-2 -kerning first=906 second=941 amount=-1 -kerning first=357 second=262 amount=-2 -kerning first=354 second=954 amount=-2 -kerning first=952 second=187 amount=-1 -kerning first=254 second=968 amount=-1 -kerning first=971 second=1079 amount=-1 -kerning first=167 second=1035 amount=-5 -kerning first=170 second=291 amount=-1 -kerning first=1028 second=89 amount=-2 -kerning first=49 second=1059 amount=-2 -kerning first=46 second=8212 amount=-1 -kerning first=313 second=113 amount=-1 -kerning first=75 second=235 amount=-2 -kerning first=215 second=365 amount=-1 -kerning first=361 second=212 amount=-2 -kerning first=950 second=1099 amount=-2 -kerning first=112 second=8216 amount=-1 -kerning first=1224 second=943 amount=-1 -kerning first=56 second=248 amount=-1 -kerning first=199 second=171 amount=-1 -kerning first=923 second=355 amount=-1 -kerning first=931 second=115 amount=-1 -kerning first=1179 second=267 amount=-1 -kerning first=119 second=940 amount=-1 -kerning first=262 second=379 amount=-1 -kerning first=37 second=261 amount=-1 -kerning first=1037 second=214 amount=-2 -kerning first=1071 second=356 amount=-5 -kerning first=80 second=338 amount=-2 -kerning first=1103 second=281 amount=-1 -kerning first=223 second=250 amount=-1 -kerning first=103 second=262 amount=-2 -kerning first=963 second=227 amount=-1 -kerning first=126 second=199 amount=-2 -kerning first=271 second=89 amount=-5 -kerning first=41 second=211 amount=-2 -kerning first=177 second=1098 amount=-3 -kerning first=180 second=339 amount=-1 -kerning first=184 second=101 amount=-1 -kerning first=296 second=251 amount=-1 -kerning first=61 second=353 amount=-1 -kerning first=64 second=113 amount=-1 -kerning first=204 second=263 amount=-1 -kerning first=8372 second=106 amount=1 -kerning first=936 second=916 amount=-3 -kerning first=367 second=943 amount=-1 -kerning first=124 second=1118 amount=-1 -kerning first=160 second=354 amount=-5 -kerning first=273 second=266 amount=-2 -kerning first=276 second=39 amount=-3 -kerning first=42 second=366 amount=-2 -kerning first=1049 second=79 amount=-2 -kerning first=185 second=279 amount=-1 -kerning first=182 second=970 amount=-1 -kerning first=8369 second=1026 amount=-5 -kerning first=903 second=253 amount=-1 -kerning first=88 second=225 amount=-1 -kerning first=1107 second=1257 amount=-1 -kerning first=108 second=367 amount=-1 -kerning first=105 second=1185 amount=-3 -kerning first=161 second=1038 amount=-2 -kerning first=8211 second=372 amount=-2 -kerning first=189 second=226 amount=-1 -kerning first=301 second=356 amount=-5 -kerning first=304 second=116 amount=-1 -kerning first=209 second=368 amount=-2 -kerning first=330 second=281 amount=-1 -kerning first=89 second=380 amount=-2 -kerning first=255 second=227 amount=-1 -kerning first=375 second=357 amount=-1 -kerning first=372 second=1169 amount=-2 -kerning first=278 second=369 amount=-1 -kerning first=47 second=942 amount=-1 -kerning first=50 second=251 amount=-1 -kerning first=207 second=8221 amount=-3 -kerning first=1096 second=106 amount=1 -kerning first=210 second=1066 amount=-2 -kerning first=915 second=118 amount=-4 -kerning first=1168 second=962 amount=-1 -kerning first=236 second=240 amount=-1 -kerning first=951 second=283 amount=-1 -kerning first=113 second=943 amount=-1 -kerning first=253 second=1256 amount=-2 -kerning first=376 second=1044 amount=-5 -kerning first=1027 second=217 amount=-2 -kerning first=287 second=79 amount=-2 -kerning first=8220 second=949 amount=-1 -kerning first=8224 second=257 amount=-1 -kerning first=1068 second=119 amount=-1 -kerning first=306 second=920 amount=-2 -kerning first=77 second=103 amount=-1 -kerning first=955 second=230 amount=-1 -kerning first=35 second=214 amount=-2 -kerning first=1028 second=372 amount=-1 -kerning first=170 second=1101 amount=-1 -kerning first=55 second=356 amount=-5 -kerning first=58 second=116 amount=-1 -kerning first=198 second=268 amount=-2 -kerning first=78 second=281 amount=-1 -kerning first=75 second=972 amount=-2 -kerning first=928 second=243 amount=-1 -kerning first=1178 second=373 amount=-2 -kerning first=121 second=357 amount=-1 -kerning first=124 second=117 amount=-1 -kerning first=36 second=369 amount=-1 -kerning first=175 second=973 amount=-1 -kerning first=8226 second=1176 amount=-1 -kerning first=1074 second=244 amount=-1 -kerning first=202 second=216 amount=-2 -kerning first=322 second=106 amount=1 -kerning first=8364 second=289 amount=-1 -kerning first=225 second=118 amount=-1 -kerning first=962 second=333 amount=-1 -kerning first=161 second=67 amount=-2 -kerning first=34 second=8222 amount=-1 -kerning first=43 second=79 amount=-2 -kerning first=1037 second=949 amount=-1 -kerning first=1041 second=257 amount=-1 -kerning first=183 second=229 amount=-1 -kerning first=298 second=119 amount=-4 -kerning first=8230 second=8211 amount=-1 -kerning first=8250 second=1051 amount=-2 -kerning first=60 second=920 amount=-2 -kerning first=203 second=371 amount=-1 -kerning first=200 second=1195 amount=-1 -kerning first=318 second=1026 amount=-5 -kerning first=323 second=286 amount=-2 -kerning first=8370 second=234 amount=-1 -kerning first=80 second=1257 amount=-1 -kerning first=1103 second=1090 amount=-3 -kerning first=249 second=230 amount=-1 -kerning first=369 second=360 amount=-2 -kerning first=372 second=120 amount=-1 -kerning first=963 second=964 amount=-3 -kerning first=162 second=242 amount=-1 -kerning first=271 second=372 amount=-5 -kerning first=41 second=945 amount=-1 -kerning first=184 second=1240 amount=-2 -kerning first=180 second=1262 amount=-2 -kerning first=1080 second=347 amount=-1 -kerning first=1076 second=1108 amount=-1 -kerning first=204 second=1069 amount=-1 -kerning first=327 second=231 amount=-1 -kerning first=902 second=361 amount=-1 -kerning first=905 second=121 amount=-1 -kerning first=84 second=1084 amount=-2 -kerning first=87 second=331 amount=-2 -kerning first=350 second=373 amount=-1 -kerning first=944 second=288 amount=-2 -kerning first=247 second=1263 amount=-1 -kerning first=8216 second=260 amount=-3 -kerning first=1049 second=362 amount=-2 -kerning first=1046 second=1176 amount=-2 -kerning first=188 second=332 amount=-2 -kerning first=303 second=244 amount=-1 -kerning first=71 second=106 amount=2 -kerning first=1085 second=289 amount=-1 -kerning first=211 second=256 amount=-2 -kerning first=88 second=962 amount=-2 -kerning first=357 second=83 amount=-1 -kerning first=1210 second=363 amount=-1 -kerning first=254 second=333 amount=-1 -kerning first=377 second=245 amount=-1 -kerning first=971 second=375 amount=-1 -kerning first=280 second=257 amount=-1 -kerning first=49 second=359 amount=-1 -kerning first=52 second=119 amount=-4 -kerning first=189 second=963 amount=-1 -kerning first=192 second=271 amount=-1 -kerning first=69 second=1026 amount=-5 -kerning first=72 second=286 amount=-2 -kerning first=1095 second=234 amount=-1 -kerning first=330 second=1090 amount=-3 -kerning first=912 second=246 amount=-1 -kerning first=95 second=218 amount=-2 -kerning first=1170 second=376 amount=-5 -kerning first=1206 second=8212 amount=-2 -kerning first=1219 second=1059 amount=-2 -kerning first=258 second=273 amount=-1 -kerning first=255 second=964 amount=-3 -kerning first=8222 second=365 amount=-1 -kerning first=196 second=219 amount=-2 -kerning first=305 second=1108 amount=-1 -kerning first=76 second=231 amount=-1 -kerning first=96 second=373 amount=-4 -kerning first=1168 second=8250 amount=-1 -kerning first=236 second=1028 amount=-2 -kerning first=239 second=288 amount=-2 -kerning first=1263 second=248 amount=-1 -kerning first=1034 second=260 amount=-1 -kerning first=176 second=232 amount=-1 -kerning first=287 second=362 amount=-2 -kerning first=282 second=1176 amount=-1 -kerning first=57 second=244 amount=-1 -kerning first=197 second=374 amount=-5 -kerning first=315 second=289 amount=-1 -kerning first=1103 second=99 amount=-1 -kerning first=223 second=71 amount=-2 -kerning first=934 second=111 amount=-1 -kerning first=926 second=351 amount=-1 -kerning first=103 second=83 amount=-1 -kerning first=1184 second=261 amount=-1 -kerning first=363 second=363 amount=-1 -kerning first=955 second=967 amount=-3 -kerning first=123 second=245 amount=-1 -kerning first=35 second=949 amount=-1 -kerning first=38 second=257 amount=-1 -kerning first=8260 second=250 amount=-1 -kerning first=8240 second=941 amount=-1 -kerning first=1073 second=352 amount=-1 -kerning first=204 second=84 amount=-5 -kerning first=321 second=234 amount=-1 -kerning first=8363 second=1241 amount=-1 -kerning first=8366 second=187 amount=-1 -kerning first=78 second=1090 amount=-3 -kerning first=342 second=376 amount=-2 -kerning first=928 second=1035 amount=-5 -kerning first=936 second=291 amount=-1 -kerning first=361 second=8212 amount=-2 -kerning first=273 second=85 amount=-2 -kerning first=1039 second=365 amount=-1 -kerning first=182 second=335 amount=-1 -kerning first=185 second=97 amount=-1 -kerning first=59 second=1108 amount=-1 -kerning first=62 second=347 amount=-1 -kerning first=205 second=259 amount=-1 -kerning first=1186 second=1184 amount=-2 -kerning first=371 second=248 amount=-1 -kerning first=968 second=171 amount=-3 -kerning first=161 second=350 amount=-1 -kerning first=40 second=1176 amount=-1 -kerning first=43 second=362 amount=-2 -kerning first=1041 second=1063 amount=-1 -kerning first=1037 second=8217 amount=-3 -kerning first=183 second=966 amount=-1 -kerning first=186 second=275 amount=-1 -kerning first=330 second=99 amount=-1 -kerning first=901 second=940 amount=-1 -kerning first=904 second=249 amount=-1 -kerning first=966 second=1078 amount=-2 -kerning first=165 second=290 amount=-2 -kerning first=278 second=210 amount=-2 -kerning first=41 second=8211 amount=-2 -kerning first=1048 second=941 amount=-1 -kerning first=302 second=352 amount=-1 -kerning first=70 second=234 amount=-1 -kerning first=1084 second=1241 amount=-1 -kerning first=327 second=968 amount=-1 -kerning first=910 second=199 amount=-3 -kerning first=1117 second=1079 amount=-1 -kerning first=1171 second=89 amount=-5 -kerning first=356 second=211 amount=-1 -kerning first=944 second=1098 amount=-3 -kerning first=948 second=339 amount=-1 -kerning first=951 second=101 amount=-1 -kerning first=107 second=8212 amount=-3 -kerning first=1220 second=251 amount=-1 -kerning first=376 second=353 amount=-3 -kerning first=379 second=113 amount=-1 -kerning first=973 second=263 amount=-1 -kerning first=169 second=235 amount=-1 -kerning first=906 second=1118 amount=-1 -kerning first=88 second=8250 amount=-1 -kerning first=1174 second=266 amount=-1 -kerning first=357 second=366 amount=-2 -kerning first=952 second=279 amount=-1 -kerning first=117 second=248 amount=-1 -kerning first=260 second=171 amount=-3 -kerning first=277 second=8217 amount=-1 -kerning first=288 second=75 amount=2 -kerning first=8225 second=253 amount=-1 -kerning first=55 second=197 amount=-5 -kerning first=198 second=87 amount=-5 -kerning first=78 second=99 amount=-1 -kerning first=75 second=337 amount=-2 -kerning first=215 second=940 amount=-1 -kerning first=336 second=379 amount=-1 -kerning first=912 second=1038 amount=-2 -kerning first=95 second=953 amount=-1 -kerning first=1178 second=214 amount=-1 -kerning first=355 second=8218 amount=-1 -kerning first=956 second=226 amount=-1 -kerning first=1299 second=116 amount=-1 -kerning first=266 second=88 amount=-2 -kerning first=36 second=210 amount=-2 -kerning first=175 second=338 amount=-2 -kerning first=178 second=100 amount=-1 -kerning first=289 second=250 amount=-1 -kerning first=56 second=352 amount=-1 -kerning first=314 second=1241 amount=-1 -kerning first=317 second=187 amount=-1 -kerning first=76 second=968 amount=-1 -kerning first=239 second=1098 amount=-3 -kerning first=365 second=251 amount=-1 -kerning first=125 second=113 amount=-1 -kerning first=37 second=365 amount=-1 -kerning first=1027 second=8221 amount=-3 -kerning first=1034 second=1066 amount=-5 -kerning first=1075 second=240 amount=-1 -kerning first=203 second=212 amount=-2 -kerning first=8365 second=283 amount=-1 -kerning first=223 second=354 amount=-5 -kerning first=347 second=39 amount=-1 -kerning first=100 second=1184 amount=-5 -kerning first=103 second=366 amount=-2 -kerning first=271 second=213 amount=-2 -kerning first=35 second=8217 amount=-3 -kerning first=184 second=225 amount=-1 -kerning first=296 second=355 amount=-1 -kerning first=299 second=115 amount=-1 -kerning first=201 second=1185 amount=-3 -kerning first=204 second=367 amount=-1 -kerning first=8372 second=230 amount=-1 -kerning first=936 second=1101 amount=-1 -kerning first=101 second=8218 amount=-1 -kerning first=250 second=226 amount=-1 -kerning first=967 second=268 amount=-2 -kerning first=273 second=368 amount=-2 -kerning first=42 second=941 amount=-1 -kerning first=65 second=1241 amount=-1 -kerning first=202 second=8220 amount=-3 -kerning first=8369 second=1263 amount=-1 -kerning first=903 second=357 amount=-1 -kerning first=906 second=117 amount=-1 -kerning first=91 second=89 amount=-5 -kerning first=1118 second=269 amount=-1 -kerning first=942 second=973 amount=-1 -kerning first=971 second=216 amount=-2 -kerning first=274 second=1066 amount=-5 -kerning first=8217 second=256 amount=-3 -kerning first=1063 second=118 amount=-4 -kerning first=304 second=240 amount=-1 -kerning first=1087 second=283 amount=-1 -kerning first=209 second=943 amount=-1 -kerning first=92 second=266 amount=-2 -kerning first=912 second=67 amount=-2 -kerning first=1170 second=217 amount=-2 -kerning first=95 second=39 amount=-3 -kerning first=358 second=79 amount=-2 -kerning first=950 second=229 amount=-1 -kerning first=1224 second=119 amount=-4 -kerning first=1219 second=359 amount=-1 -kerning first=375 second=920 amount=-2 -kerning first=47 second=1119 amount=-1 -kerning first=53 second=115 amount=-1 -kerning first=50 second=355 amount=-1 -kerning first=193 second=267 amount=-1 -kerning first=1096 second=230 amount=-1 -kerning first=915 second=242 amount=-1 -kerning first=96 second=214 amount=-2 -kerning first=1168 second=947 amount=-4 -kerning first=1171 second=372 amount=-5 -kerning first=910 second=923 amount=-5 -kerning first=356 second=945 amount=-3 -kerning first=951 second=1240 amount=-2 -kerning first=948 second=1262 amount=-2 -kerning first=973 second=1069 amount=-1 -kerning first=169 second=972 amount=-1 -kerning first=172 second=281 amount=-1 -kerning first=8224 second=361 amount=-1 -kerning first=8230 second=121 amount=-1 -kerning first=77 second=227 amount=-1 -kerning first=338 second=269 amount=-1 -kerning first=237 second=973 amount=-1 -kerning first=955 second=332 amount=-2 -kerning first=1298 second=244 amount=-1 -kerning first=177 second=228 amount=-1 -kerning first=291 second=118 amount=-4 -kerning first=8260 second=71 amount=-2 -kerning first=55 second=916 amount=-5 -kerning first=58 second=240 amount=-1 -kerning first=195 second=1194 amount=-2 -kerning first=198 second=370 amount=-2 -kerning first=316 second=283 amount=-1 -kerning first=8363 second=233 amount=-1 -kerning first=75 second=1256 amount=-3 -kerning first=218 second=1044 amount=-1 -kerning first=1185 second=257 amount=-1 -kerning first=1178 second=949 amount=-1 -kerning first=367 second=119 amount=-4 -kerning first=956 second=963 amount=-1 -kerning first=121 second=920 amount=-2 -kerning first=1240 second=1026 amount=-2 -kerning first=175 second=1257 amount=-1 -kerning first=1074 second=346 amount=-1 -kerning first=322 second=230 amount=-1 -kerning first=1102 second=964 amount=-1 -kerning first=1107 second=273 amount=-1 -kerning first=222 second=923 amount=-2 -kerning first=102 second=945 amount=-1 -kerning first=965 second=219 amount=-2 -kerning first=274 second=81 amount=-2 -kerning first=1041 second=361 amount=-1 -kerning first=298 second=243 amount=-1 -kerning first=318 second=1263 amount=-1 -kerning first=8370 second=336 amount=-2 -kerning first=86 second=269 amount=-1 -kerning first=249 second=332 amount=-2 -kerning first=372 second=244 amount=-3 -kerning first=165 second=106 amount=1 -kerning first=47 second=118 amount=-4 -kerning first=184 second=962 amount=-1 -kerning first=1084 second=233 amount=-1 -kerning first=327 second=333 amount=-1 -kerning first=905 second=245 amount=-1 -kerning first=1117 second=375 amount=-1 -kerning first=113 second=119 amount=-4 -kerning first=1194 second=8211 amount=-1 -kerning first=250 second=963 amount=-1 -kerning first=253 second=271 amount=-1 -kerning first=376 second=194 amount=-5 -kerning first=973 second=84 amount=-5 -kerning first=163 second=1026 amount=-5 -kerning first=166 second=286 amount=-2 -kerning first=45 second=1046 amount=-3 -kerning first=1062 second=246 amount=-1 -kerning first=191 second=218 amount=-2 -kerning first=303 second=346 amount=-1 -kerning first=208 second=1174 amount=-3 -kerning first=328 second=964 amount=-1 -kerning first=91 second=372 amount=-5 -kerning first=88 second=947 amount=-3 -kerning first=1174 second=85 amount=-1 -kerning first=952 second=97 amount=-1 -kerning first=374 second=1108 amount=-4 -kerning first=170 second=231 amount=-1 -kerning first=277 second=1175 amount=-2 -kerning first=280 second=361 amount=-1 -kerning first=52 second=243 amount=-1 -kerning first=1066 second=196 amount=-1 -kerning first=192 second=373 amount=-4 -kerning first=304 second=1028 amount=-2 -kerning first=69 second=1263 amount=-1 -kerning first=1095 second=336 amount=-2 -kerning first=912 second=350 amount=-1 -kerning first=238 second=232 amount=-1 -kerning first=358 second=362 amount=-2 -kerning first=950 second=966 amount=-1 -kerning first=118 second=244 amount=-1 -kerning first=1262 second=197 amount=-2 -kerning first=258 second=374 amount=-5 -kerning first=289 second=71 amount=-2 -kerning first=8226 second=249 amount=-1 -kerning first=1067 second=351 amount=-1 -kerning first=314 second=233 amount=-1 -kerning first=76 second=333 amount=-1 -kerning first=923 second=290 amount=-2 -kerning first=96 second=949 amount=-1 -kerning first=356 second=8211 amount=-4 -kerning first=1263 second=352 amount=-1 -kerning first=176 second=334 amount=-2 -kerning first=172 second=1090 amount=-3 -kerning first=57 second=346 amount=-1 -kerning first=1068 second=1035 amount=-5 -kerning first=1071 second=291 amount=-1 -kerning first=197 second=950 amount=-1 -kerning first=80 second=273 amount=-1 -kerning first=8365 second=101 amount=-1 -kerning first=77 second=964 amount=-3 -kerning first=934 second=235 amount=-1 -kerning first=1184 second=365 amount=-1 -kerning first=120 second=1108 amount=-2 -kerning first=123 second=347 amount=-1 -kerning first=271 second=34 amount=-3 -kerning first=38 second=361 amount=-1 -kerning first=41 second=121 amount=-1 -kerning first=177 second=965 amount=-1 -kerning first=8240 second=1118 amount=-1 -kerning first=8260 second=354 amount=-5 -kerning first=58 second=1028 amount=-2 -kerning first=61 second=288 amount=-2 -kerning first=321 second=336 amount=-2 -kerning first=8363 second=970 amount=-1 -kerning first=8366 second=279 amount=-1 -kerning first=1178 second=8217 amount=-2 -kerning first=247 second=275 amount=-1 -kerning first=370 second=197 amount=-2 -kerning first=961 second=1076 amount=-1 -kerning first=160 second=289 amount=-1 -kerning first=967 second=87 amount=-5 -kerning first=1039 second=940 amount=-1 -kerning first=1046 second=249 amount=-1 -kerning first=185 second=221 amount=-5 -kerning first=297 second=351 amount=-1 -kerning first=300 second=111 amount=-1 -kerning first=65 second=233 amount=-1 -kerning first=205 second=363 amount=-1 -kerning first=202 second=1177 amount=-1 -kerning first=942 second=338 amount=-2 -kerning first=102 second=8211 amount=-2 -kerning first=371 second=352 amount=-1 -kerning first=374 second=112 amount=-3 -kerning first=968 second=262 amount=-2 -kerning first=164 second=234 amount=-1 -kerning first=274 second=364 amount=-2 -kerning first=1051 second=199 amount=-2 -kerning first=186 second=376 amount=-5 -kerning first=298 second=1035 amount=-5 -kerning first=301 second=291 amount=-1 -kerning first=1079 second=1098 amount=-1 -kerning first=1083 second=339 amount=-1 -kerning first=206 second=1059 amount=-2 -kerning first=203 second=8212 amount=-2 -kerning first=1087 second=101 amount=-1 -kerning first=904 second=353 amount=-1 -kerning first=86 second=1074 amount=-2 -kerning first=92 second=85 amount=-2 -kerning first=1119 second=263 amount=-1 -kerning first=271 second=8216 amount=-3 -kerning first=8218 second=252 amount=-1 -kerning first=1048 second=1118 amount=-1 -kerning first=184 second=8250 amount=-1 -kerning first=193 second=86 amount=-6 -kerning first=70 second=336 amount=-2 -kerning first=1084 second=970 amount=-1 -kerning first=1090 second=279 amount=-1 -kerning first=1171 second=213 amount=-2 -kerning first=951 second=225 amount=-1 -kerning first=1220 second=355 amount=-1 -kerning first=970 second=1185 amount=-2 -kerning first=973 second=367 amount=-1 -kerning first=169 second=337 amount=-1 -kerning first=172 second=99 amount=-1 -kerning first=282 second=249 amount=-1 -kerning first=54 second=111 amount=-1 -kerning first=51 second=351 amount=-1 -kerning first=194 second=261 amount=-1 -kerning first=191 second=953 amount=-1 -kerning first=1062 second=1038 amount=-1 -kerning first=217 second=198 amount=-2 -kerning first=1174 second=368 amount=-1 -kerning first=237 second=338 amount=-2 -kerning first=240 second=100 amount=-1 -kerning first=357 second=941 amount=-1 -kerning first=117 second=352 amount=-1 -kerning first=260 second=262 amount=-2 -kerning first=380 second=1241 amount=-1 -kerning first=971 second=8220 amount=-3 -kerning first=170 second=968 amount=-1 -kerning first=174 second=277 amount=-1 -kerning first=8225 second=357 amount=-1 -kerning first=8240 second=117 amount=-1 -kerning first=52 second=1035 amount=-5 -kerning first=55 second=291 amount=-1 -kerning first=198 second=211 amount=-2 -kerning first=313 second=339 amount=-1 -kerning first=316 second=101 amount=-1 -kerning first=221 second=113 amount=-4 -kerning first=336 second=955 amount=-2 -kerning first=1170 second=8221 amount=-3 -kerning first=1299 second=240 amount=-1 -kerning first=1262 second=916 amount=-2 -kerning first=39 second=74 amount=-4 -kerning first=1036 second=252 amount=-1 -kerning first=178 second=224 amount=-1 -kerning first=289 second=354 amount=-5 -kerning first=196 second=1184 amount=-5 -kerning first=317 second=279 amount=-1 -kerning first=314 second=970 amount=-1 -kerning first=8364 second=229 amount=-1 -kerning first=82 second=171 amount=-1 -kerning first=225 second=63 amount=-2 -kerning first=96 second=8217 amount=-3 -kerning first=365 second=355 amount=-1 -kerning first=962 second=267 amount=-1 -kerning first=40 second=249 amount=-1 -kerning first=37 second=940 amount=-1 -kerning first=8250 second=923 amount=-3 -kerning first=1071 second=1101 amount=-1 -kerning first=8365 second=1240 amount=-2 -kerning first=323 second=226 amount=-1 -kerning first=901 second=116 amount=-1 -kerning first=103 second=941 amount=-1 -kerning first=934 second=972 amount=-1 -kerning first=246 second=380 amount=-1 -kerning first=372 second=65 amount=-5 -kerning first=126 second=1241 amount=-1 -kerning first=162 second=187 amount=-1 -kerning first=263 second=8220 amount=-1 -kerning first=44 second=199 amount=-1 -kerning first=1048 second=117 amount=-1 -kerning first=180 second=1079 amount=-1 -kerning first=187 second=89 amount=-3 -kerning first=61 second=1098 amount=-3 -kerning first=64 second=339 amount=-1 -kerning first=207 second=251 amount=-1 -kerning first=8372 second=332 amount=-2 -kerning first=87 second=263 amount=-3 -kerning first=1117 second=216 amount=-2 -kerning first=944 second=228 amount=-1 -kerning first=370 second=916 amount=-2 -kerning first=373 second=240 amount=-1 -kerning first=964 second=1194 amount=-2 -kerning first=967 second=370 amount=-2 -kerning first=273 second=943 amount=-1 -kerning first=276 second=252 amount=-1 -kerning first=42 second=1118 amount=-1 -kerning first=45 second=354 amount=-4 -kerning first=1062 second=67 amount=-1 -kerning first=188 second=266 amount=-2 -kerning first=191 second=39 amount=-3 -kerning first=65 second=970 amount=-1 -kerning first=1085 second=229 amount=-1 -kerning first=903 second=920 amount=-2 -kerning first=91 second=213 amount=-2 -kerning first=1118 second=371 amount=-1 -kerning first=354 second=253 amount=-2 -kerning first=942 second=1257 amount=-1 -kerning first=114 second=115 amount=-1 -kerning first=254 second=267 amount=-1 -kerning first=8211 second=1174 amount=-3 -kerning first=46 second=1038 amount=-1 -kerning first=1063 second=242 amount=-1 -kerning first=192 second=214 amount=-2 -kerning first=301 second=1101 amount=-1 -kerning first=72 second=226 amount=-1 -kerning first=1083 second=1262 amount=-2 -kerning first=1087 second=1240 amount=-2 -kerning first=215 second=116 amount=-1 -kerning first=212 second=356 amount=-2 -kerning first=92 second=368 amount=-2 -kerning first=1119 second=1069 amount=-1 -kerning first=950 second=331 amount=-2 -kerning first=1224 second=243 amount=-1 -kerning first=193 second=369 amount=-1 -kerning first=305 second=973 amount=-1 -kerning first=70 second=1224 amount=-1 -kerning first=1096 second=332 amount=-2 -kerning first=923 second=106 amount=1 -kerning first=93 second=1066 amount=-5 -kerning first=239 second=228 amount=-1 -kerning first=951 second=962 amount=-1 -kerning first=119 second=240 amount=-1 -kerning first=256 second=1194 amount=-2 -kerning first=382 second=283 amount=-1 -kerning first=169 second=1256 amount=-2 -kerning first=200 second=79 amount=-2 -kerning first=1097 second=963 amount=-1 -kerning first=338 second=371 amount=-1 -kerning first=916 second=1026 amount=-5 -kerning first=926 second=286 amount=-2 -kerning first=100 second=253 amount=-1 -kerning first=237 second=1257 amount=-1 -kerning first=960 second=218 amount=-2 -kerning first=1298 second=346 amount=-1 -kerning first=1035 second=360 amount=-2 -kerning first=1028 second=1174 amount=-2 -kerning first=291 second=242 amount=-1 -kerning first=55 second=1101 amount=-1 -kerning first=1073 second=287 amount=-1 -kerning first=198 second=945 amount=-1 -kerning first=313 second=1262 amount=-1 -kerning first=316 second=1240 amount=-2 -kerning first=8363 second=335 amount=-1 -kerning first=8366 second=97 amount=-1 -kerning first=936 second=231 amount=-1 -kerning first=367 second=243 amount=-1 -kerning first=961 second=373 amount=-1 -kerning first=1299 second=1028 amount=-2 -kerning first=42 second=117 amount=-1 -kerning first=182 second=269 amount=-1 -kerning first=59 second=973 amount=-1 -kerning first=1078 second=232 amount=-2 -kerning first=322 second=332 amount=-2 -kerning first=8364 second=966 amount=-1 -kerning first=900 second=244 amount=-1 -kerning first=8369 second=275 amount=-1 -kerning first=1102 second=1203 amount=-2 -kerning first=228 second=106 amount=1 -kerning first=346 second=256 amount=-1 -kerning first=108 second=118 amount=-4 -kerning first=968 second=83 amount=-1 -kerning first=161 second=283 amount=-1 -kerning first=46 second=67 amount=-1 -kerning first=186 second=217 amount=-2 -kerning first=1075 second=1299 amount=-3 -kerning first=209 second=119 amount=-4 -kerning first=206 second=359 amount=-1 -kerning first=323 second=963 amount=-1 -kerning first=86 second=371 amount=-1 -kerning first=1119 second=84 amount=-5 -kerning first=940 second=1090 amount=-2 -kerning first=1206 second=246 amount=-1 -kerning first=252 second=218 amount=-2 -kerning first=372 second=346 amount=-1 -kerning first=165 second=230 amount=-1 -kerning first=1241 second=964 amount=-1 -kerning first=47 second=242 amount=-2 -kerning first=184 second=947 amount=-4 -kerning first=187 second=372 amount=-3 -kerning first=302 second=287 amount=-1 -kerning first=64 second=1262 amount=-2 -kerning first=1084 second=335 amount=-1 -kerning first=902 second=1108 amount=-1 -kerning first=905 second=347 amount=-1 -kerning first=910 second=109 amount=-3 -kerning first=93 second=81 amount=-2 -kerning first=1168 second=259 amount=-1 -kerning first=1171 second=34 amount=-3 -kerning first=350 second=1175 amount=-1 -kerning first=356 second=121 amount=-2 -kerning first=944 second=965 amount=-1 -kerning first=113 second=243 amount=-1 -kerning first=253 second=373 amount=-4 -kerning first=376 second=288 amount=-3 -kerning first=163 second=1263 amount=-1 -kerning first=8220 second=248 amount=-1 -kerning first=306 second=232 amount=-1 -kerning first=1085 second=966 amount=-1 -kerning first=1094 second=275 amount=-1 -kerning first=214 second=244 amount=-1 -kerning first=332 second=374 amount=-3 -kerning first=952 second=221 amount=-5 -kerning first=1223 second=351 amount=-1 -kerning first=260 second=83 amount=-1 -kerning first=380 second=233 amount=-1 -kerning first=971 second=1177 amount=-1 -kerning first=170 second=333 amount=-1 -kerning first=192 second=949 amount=-1 -kerning first=195 second=257 amount=-1 -kerning first=72 second=963 amount=-1 -kerning first=75 second=271 amount=-2 -kerning first=218 second=194 amount=-2 -kerning first=238 second=334 amount=-2 -kerning first=235 second=1090 amount=-1 -kerning first=361 second=246 amount=-1 -kerning first=1224 second=1035 amount=-5 -kerning first=258 second=950 amount=-1 -kerning first=1026 second=1059 amount=-2 -kerning first=175 second=273 amount=-1 -kerning first=178 second=45 amount=-2 -kerning first=8226 second=353 amount=-1 -kerning first=56 second=287 amount=-1 -kerning first=314 second=335 amount=-1 -kerning first=317 second=97 amount=-1 -kerning first=1171 second=8216 amount=-3 -kerning first=239 second=965 amount=-1 -kerning first=245 second=46 amount=-1 -kerning first=951 second=8250 amount=-1 -kerning first=1037 second=248 amount=-1 -kerning first=179 second=220 amount=-2 -kerning first=60 second=232 amount=-1 -kerning first=200 second=362 amount=-2 -kerning first=197 second=1176 amount=-1 -kerning first=315 second=966 amount=-1 -kerning first=318 second=275 amount=-1 -kerning first=8365 second=225 amount=-1 -kerning first=80 second=374 amount=-5 -kerning first=223 second=289 amount=-1 -kerning first=220 second=1033 amount=-1 -kerning first=934 second=337 amount=-1 -kerning first=1184 second=940 amount=-2 -kerning first=369 second=111 amount=-1 -kerning first=963 second=261 amount=-1 -kerning first=960 second=953 amount=-1 -kerning first=126 second=233 amount=-1 -kerning first=41 second=245 amount=-1 -kerning first=180 second=375 amount=-1 -kerning first=296 second=290 amount=-2 -kerning first=198 second=8211 amount=-2 -kerning first=1080 second=100 amount=-1 -kerning first=936 second=968 amount=-1 -kerning first=107 second=246 amount=-2 -kerning first=1202 second=199 amount=-1 -kerning first=247 second=376 amount=-5 -kerning first=367 second=1035 amount=-5 -kerning first=967 second=211 amount=-2 -kerning first=266 second=8212 amount=-1 -kerning first=1046 second=353 amount=-1 -kerning first=1049 second=113 amount=-1 -kerning first=178 second=8249 amount=-3 -kerning first=188 second=85 amount=-2 -kerning first=300 second=235 amount=-1 -kerning first=65 second=335 amount=-1 -kerning first=1078 second=969 amount=-1 -kerning first=91 second=34 amount=-3 -kerning first=88 second=259 amount=-1 -kerning first=1118 second=212 amount=-2 -kerning first=354 second=74 amount=-5 -kerning first=965 second=1184 amount=-5 -kerning first=968 second=366 amount=-2 -kerning first=164 second=336 amount=-2 -kerning first=69 second=275 amount=-1 -kerning first=1087 second=225 amount=-1 -kerning first=212 second=197 amount=-2 -kerning first=1119 second=367 amount=-1 -kerning first=1206 second=1038 amount=-1 -kerning first=255 second=261 amount=-1 -kerning first=252 second=953 amount=-1 -kerning first=966 second=8218 amount=-1 -kerning first=8218 second=356 amount=-5 -kerning first=8222 second=116 amount=-1 -kerning first=50 second=290 amount=-2 -kerning first=193 second=210 amount=-2 -kerning first=305 second=338 amount=-2 -kerning first=310 second=100 amount=-2 -kerning first=910 second=1241 amount=-4 -kerning first=915 second=187 amount=-1 -kerning first=93 second=364 amount=-2 -kerning first=1117 second=8220 amount=-3 -kerning first=236 second=277 amount=-1 -kerning first=948 second=1079 amount=-1 -kerning first=113 second=1035 amount=-5 -kerning first=376 second=1098 amount=-2 -kerning first=379 second=339 amount=-1 -kerning first=382 second=101 amount=-1 -kerning first=1027 second=251 amount=-1 -kerning first=282 second=353 amount=-1 -kerning first=287 second=113 amount=-1 -kerning first=54 second=235 amount=-1 -kerning first=194 second=365 amount=-1 -kerning first=338 second=212 amount=-2 -kerning first=91 second=8216 amount=-3 -kerning first=240 second=224 amount=-1 -kerning first=357 second=1118 amount=-1 -kerning first=955 second=266 amount=-2 -kerning first=960 second=39 amount=-3 -kerning first=260 second=366 amount=-2 -kerning first=35 second=248 amount=-1 -kerning first=177 second=171 amount=-3 -kerning first=8225 second=920 amount=-2 -kerning first=192 second=8217 amount=-3 -kerning first=1073 second=103 amount=-1 -kerning first=316 second=225 amount=-1 -kerning first=81 second=87 amount=-2 -kerning first=361 second=1038 amount=-2 -kerning first=39 second=198 amount=-3 -kerning first=1039 second=116 amount=-1 -kerning first=59 second=338 amount=-2 -kerning first=62 second=100 amount=-1 -kerning first=202 second=250 amount=-1 -kerning first=1074 second=281 amount=-1 -kerning first=337 second=8220 amount=-1 -kerning first=105 second=199 amount=-2 -kerning first=962 second=369 amount=-1 -kerning first=125 second=339 amount=-1 -kerning first=161 second=101 amount=-1 -kerning first=43 second=113 amount=-1 -kerning first=40 second=353 amount=-1 -kerning first=183 second=263 amount=-1 -kerning first=8365 second=962 amount=-1 -kerning first=901 second=240 amount=-1 -kerning first=86 second=212 amount=-2 -kerning first=1103 second=1194 amount=-2 -kerning first=229 second=102 amount=-1 -kerning first=934 second=1256 amount=-2 -kerning first=103 second=1118 amount=-1 -kerning first=1206 second=67 amount=-1 -kerning first=249 second=266 amount=-2 -kerning first=252 second=39 amount=-3 -kerning first=162 second=279 amount=-1 -kerning first=126 second=970 amount=-1 -kerning first=8212 second=119 amount=-1 -kerning first=1044 second=920 amount=-1 -kerning first=302 second=103 amount=-1 -kerning first=1076 second=1257 amount=-1 -kerning first=207 second=355 amount=-1 -kerning first=327 second=267 amount=-1 -kerning first=8378 second=218 amount=-2 -kerning first=87 second=367 amount=-2 -kerning first=1207 second=242 amount=-1 -kerning first=253 second=214 amount=-2 -kerning first=967 second=945 amount=-1 -kerning first=276 second=356 amount=-5 -kerning first=166 second=226 amount=-1 -kerning first=188 second=368 amount=-2 -kerning first=300 second=972 amount=-1 -kerning first=303 second=281 amount=-1 -kerning first=357 second=117 amount=-1 -kerning first=254 second=369 amount=-1 -kerning first=374 second=973 amount=-2 -kerning first=8221 second=244 amount=-1 -kerning first=189 second=1066 amount=-5 -kerning first=186 second=8221 amount=-3 -kerning first=1087 second=962 amount=-1 -kerning first=212 second=916 amount=-2 -kerning first=215 second=240 amount=-1 -kerning first=330 second=1194 amount=-2 -kerning first=912 second=283 amount=-1 -kerning first=95 second=252 amount=-1 -kerning first=92 second=943 amount=-1 -kerning first=235 second=382 amount=-1 -kerning first=361 second=67 amount=-2 -kerning first=1026 second=359 amount=-1 -kerning first=1033 second=119 amount=-1 -kerning first=56 second=103 amount=-1 -kerning first=1064 second=1026 amount=-5 -kerning first=1067 second=286 amount=-2 -kerning first=196 second=253 amount=-1 -kerning first=305 second=1257 amount=-1 -kerning first=76 second=267 amount=-1 -kerning first=1099 second=218 amount=-2 -kerning first=923 second=230 amount=-1 -kerning first=1176 second=360 amount=-2 -kerning first=951 second=947 amount=-4 -kerning first=1263 second=287 amount=-1 -kerning first=37 second=116 amount=-1 -kerning first=176 second=268 amount=-2 -kerning first=8224 second=1108 amount=-1 -kerning first=54 second=972 amount=-1 -kerning first=57 second=281 amount=-1 -kerning first=1071 second=231 amount=-1 -kerning first=916 second=1263 amount=-1 -kerning first=103 second=117 amount=-1 -kerning first=100 second=357 amount=-1 -kerning first=180 second=216 amount=-2 -kerning first=8260 second=289 amount=-1 -kerning first=296 second=106 amount=1 -kerning first=61 second=228 amount=-1 -kerning first=1069 second=1298 amount=-1 -kerning first=204 second=118 amount=-4 -kerning first=316 second=962 amount=-1 -kerning first=8366 second=221 amount=-5 -kerning first=78 second=1194 amount=-2 -kerning first=221 second=974 amount=-4 -kerning first=936 second=333 amount=-1 -kerning first=247 second=217 amount=-2 -kerning first=964 second=257 amount=-1 -kerning first=160 second=229 amount=-1 -kerning first=273 second=119 amount=-4 -kerning first=178 second=1195 amount=-1 -kerning first=182 second=371 amount=-1 -kerning first=294 second=1026 amount=-5 -kerning first=297 second=286 amount=-2 -kerning first=59 second=1257 amount=-1 -kerning first=1074 second=1090 amount=-3 -kerning first=325 second=218 amount=-2 -kerning first=8369 second=376 amount=-5 -kerning first=900 second=346 amount=-1 -kerning first=942 second=273 amount=-1 -kerning first=108 second=242 amount=-1 -kerning first=351 second=120 amount=-1 -kerning first=245 second=947 amount=-1 -kerning first=371 second=287 amount=-1 -kerning first=125 second=1262 amount=-2 -kerning first=161 second=1240 amount=-2 -kerning first=1041 second=1108 amount=-1 -kerning first=183 second=1069 amount=-1 -kerning first=189 second=81 amount=-2 -kerning first=301 second=231 amount=-1 -kerning first=209 second=243 amount=-1 -kerning first=326 second=373 amount=-1 -kerning first=8365 second=8250 amount=-1 -kerning first=901 second=1028 amount=-2 -kerning first=904 second=288 amount=-2 -kerning first=946 second=220 amount=-2 -kerning first=375 second=232 amount=-1 -kerning first=972 second=122 amount=-1 -kerning first=165 second=332 amount=-2 -kerning first=278 second=244 amount=-1 -kerning first=1241 second=1203 amount=-2 -kerning first=50 second=106 amount=1 -kerning first=213 second=193 amount=-2 -kerning first=8378 second=953 amount=-1 -kerning first=910 second=233 amount=-4 -kerning first=1117 second=1177 amount=-1 -kerning first=1168 second=363 amount=-1 -kerning first=356 second=245 amount=-3 -kerning first=948 second=375 amount=-1 -kerning first=113 second=345 amount=2 -kerning first=1220 second=290 amount=-2 -kerning first=253 second=949 amount=-1 -kerning first=256 second=257 amount=-1 -kerning first=967 second=8211 amount=-2 -kerning first=166 second=963 amount=-1 -kerning first=169 second=271 amount=-1 -kerning first=48 second=1026 amount=-5 -kerning first=51 second=286 amount=-2 -kerning first=1065 second=234 amount=-1 -kerning first=303 second=1090 amount=-3 -kerning first=306 second=334 amount=-2 -kerning first=74 second=218 amount=-2 -kerning first=214 second=346 amount=-1 -kerning first=94 second=360 amount=-2 -kerning first=1118 second=8212 amount=-2 -kerning first=237 second=273 amount=-1 -kerning first=240 second=45 amount=-2 -kerning first=234 second=964 amount=-1 -kerning first=955 second=85 amount=-2 -kerning first=117 second=287 amount=-1 -kerning first=380 second=335 amount=-1 -kerning first=174 second=219 amount=-2 -kerning first=280 second=1108 amount=-1 -kerning first=55 second=231 amount=-1 -kerning first=195 second=361 amount=-1 -kerning first=198 second=121 amount=-1 -kerning first=75 second=373 amount=-3 -kerning first=1087 second=8250 amount=-1 -kerning first=215 second=1028 amount=-2 -kerning first=1178 second=248 amount=-1 -kerning first=361 second=350 amount=-1 -kerning first=121 second=232 amount=-1 -kerning first=258 second=1176 amount=-1 -kerning first=381 second=966 amount=-1 -kerning first=36 second=244 amount=-1 -kerning first=175 second=374 amount=-5 -kerning first=171 second=1203 amount=-1 -kerning first=289 second=289 amount=-1 -kerning first=1074 second=99 amount=-1 -kerning first=202 second=71 amount=-2 -kerning first=317 second=221 amount=-5 -kerning first=1099 second=953 amount=-1 -kerning first=102 second=245 amount=-1 -kerning first=365 second=290 amount=-2 -kerning first=962 second=210 amount=-2 -kerning first=262 second=1051 amount=-1 -kerning first=1037 second=352 amount=-1 -kerning first=183 second=84 amount=-5 -kerning first=57 second=1090 amount=-3 -kerning first=60 second=334 amount=-2 -kerning first=1071 second=968 amount=-1 -kerning first=203 second=246 amount=-1 -kerning first=1075 second=277 amount=-1 -kerning first=318 second=376 amount=-5 -kerning first=8370 second=89 amount=-5 -kerning first=80 second=950 amount=-1 -kerning first=83 second=258 amount=-1 -kerning first=338 second=8212 amount=-2 -kerning first=240 second=8249 amount=-3 -kerning first=947 second=113 amount=-1 -kerning first=249 second=85 amount=-2 -kerning first=369 second=235 amount=-1 -kerning first=963 second=365 amount=-1 -kerning first=126 second=335 amount=-1 -kerning first=162 second=97 amount=-1 -kerning first=38 second=1108 amount=-1 -kerning first=41 second=347 amount=-1 -kerning first=184 second=259 amount=-1 -kerning first=61 second=965 amount=-1 -kerning first=1080 second=224 amount=-1 -kerning first=67 second=46 amount=-1 -kerning first=316 second=8250 amount=-1 -kerning first=8372 second=266 amount=-2 -kerning first=8378 second=39 amount=-3 -kerning first=944 second=171 amount=-3 -kerning first=961 second=8217 amount=-1 -kerning first=160 second=966 amount=-1 -kerning first=163 second=275 amount=-1 -kerning first=8216 second=115 amount=-1 -kerning first=300 second=337 amount=-1 -kerning first=303 second=99 amount=-1 -kerning first=68 second=221 amount=-3 -kerning first=325 second=953 amount=-1 -kerning first=88 second=363 amount=-1 -kerning first=1107 second=8218 amount=-3 -kerning first=354 second=198 amount=-6 -kerning first=254 second=210 amount=-2 -kerning first=374 second=338 amount=-3 -kerning first=377 second=100 amount=-1 -kerning first=971 second=250 amount=-1 -kerning first=968 second=941 amount=-1 -kerning first=8221 second=65 amount=-3 -kerning first=49 second=234 amount=-1 -kerning first=1051 second=1241 amount=-1 -kerning first=1063 second=187 amount=-1 -kerning first=189 second=364 amount=-2 -kerning first=301 second=968 amount=-1 -kerning first=304 second=277 amount=-1 -kerning first=69 second=376 amount=-5 -kerning first=1083 second=1079 amount=-1 -kerning first=209 second=1035 amount=-5 -kerning first=1095 second=89 amount=-5 -kerning first=904 second=1098 amount=-3 -kerning first=86 second=8212 amount=-2 -kerning first=912 second=101 amount=-1 -kerning first=1170 second=251 amount=-1 -kerning first=358 second=113 amount=-1 -kerning first=950 second=263 amount=-1 -kerning first=255 second=365 amount=-1 -kerning first=196 second=74 amount=-1 -kerning first=310 second=224 amount=-1 -kerning first=70 second=1075 amount=-1 -kerning first=76 second=86 amount=-5 -kerning first=1096 second=266 amount=-2 -kerning first=1099 second=39 amount=-3 -kerning first=915 second=279 amount=-1 -kerning first=910 second=970 amount=-2 -kerning first=96 second=248 amount=-1 -kerning first=239 second=171 amount=-3 -kerning first=253 second=8217 amount=-3 -kerning first=256 second=1063 amount=-3 -kerning first=1263 second=103 amount=-1 -kerning first=34 second=197 amount=-3 -kerning first=1027 second=355 amount=-1 -kerning first=176 second=87 amount=-5 -kerning first=54 second=337 amount=-1 -kerning first=57 second=99 amount=-1 -kerning first=194 second=940 amount=-1 -kerning first=197 second=249 amount=-1 -kerning first=74 second=953 amount=-1 -kerning first=77 second=261 amount=-1 -kerning first=332 second=8218 amount=-1 -kerning first=926 second=226 amount=-1 -kerning first=1184 second=116 amount=-1 -kerning first=955 second=368 amount=-2 -kerning first=123 second=100 amount=-1 -kerning first=1298 second=281 amount=-1 -kerning first=260 second=941 amount=-1 -kerning first=35 second=352 amount=-1 -kerning first=1038 second=65 amount=-2 -kerning first=177 second=262 amount=-2 -kerning first=291 second=187 amount=-1 -kerning first=55 second=968 amount=-1 -kerning first=58 second=277 amount=-1 -kerning first=1073 second=227 amount=-1 -kerning first=201 second=199 amount=-2 -kerning first=321 second=89 amount=-5 -kerning first=8363 second=269 amount=-1 -kerning first=221 second=339 amount=-4 -kerning first=956 second=1066 amount=-5 -kerning first=1039 second=240 amount=-1 -kerning first=182 second=212 amount=-2 -kerning first=62 second=224 amount=-1 -kerning first=202 second=354 amount=-5 -kerning first=322 second=266 amount=-2 -kerning first=325 second=39 amount=-3 -kerning first=8369 second=217 amount=-2 -kerning first=79 second=1184 amount=-2 -kerning first=1186 second=920 amount=-1 -kerning first=371 second=103 amount=-1 -kerning first=965 second=253 amount=-1 -kerning first=161 second=225 amount=-1 -kerning first=274 second=115 amount=-1 -kerning first=179 second=1185 amount=-3 -kerning first=183 second=367 amount=-1 -kerning first=1075 second=1083 amount=-3 -kerning first=203 second=1038 amount=-2 -kerning first=8365 second=947 amount=-4 -kerning first=8370 second=372 amount=-5 -kerning first=80 second=8218 amount=-4 -kerning first=249 second=368 amount=-2 -kerning first=369 second=972 amount=-1 -kerning first=372 second=281 amount=-3 -kerning first=47 second=187 amount=-1 -kerning first=180 second=8220 amount=-3 -kerning first=302 second=227 amount=-1 -kerning first=70 second=89 amount=-5 -kerning first=64 second=1079 amount=-1 -kerning first=1084 second=269 amount=-1 -kerning first=327 second=369 amount=-1 -kerning first=902 second=973 amount=-1 -kerning first=87 second=942 amount=-2 -kerning first=948 second=216 amount=-2 -kerning first=250 second=1066 amount=-5 -kerning first=247 second=8221 amount=-3 -kerning first=1220 second=106 amount=1 -kerning first=376 second=228 amount=-4 -kerning first=973 second=118 amount=-4 -kerning first=8220 second=193 amount=-3 -kerning first=1062 second=283 amount=-1 -kerning first=188 second=943 amount=-1 -kerning first=191 second=252 amount=-1 -kerning first=300 second=1256 amount=-2 -kerning first=74 second=39 amount=-3 -kerning first=1174 second=119 amount=-2 -kerning first=354 second=920 amount=-1 -kerning first=117 second=103 amount=-1 -kerning first=1210 second=1026 amount=-5 -kerning first=1223 second=286 amount=-2 -kerning first=374 second=1257 amount=-4 -kerning first=170 second=267 amount=-1 -kerning first=55 second=52 amount=-4 -kerning first=1087 second=947 amount=-4 -kerning first=1095 second=372 amount=-5 -kerning first=75 second=214 amount=-3 -kerning first=912 second=1240 amount=-2 -kerning first=95 second=356 amount=-5 -kerning first=238 second=268 amount=-2 -kerning first=950 second=1069 amount=-1 -kerning first=956 second=81 amount=-2 -kerning first=118 second=281 amount=-1 -kerning first=8226 second=288 amount=-2 -kerning first=8222 second=1028 amount=-1 -kerning first=56 second=227 amount=-1 -kerning first=1064 second=1263 amount=-1 -kerning first=196 second=357 amount=-1 -kerning first=314 second=269 amount=-1 -kerning first=8361 second=220 amount=-2 -kerning first=76 second=369 amount=-1 -kerning first=923 second=332 amount=-2 -kerning first=1179 second=244 amount=-1 -kerning first=365 second=106 amount=1 -kerning first=1256 second=1298 amount=-1 -kerning first=267 second=118 amount=-1 -kerning first=382 second=962 amount=-1 -kerning first=37 second=240 amount=-1 -kerning first=34 second=916 amount=-3 -kerning first=172 second=1194 amount=-2 -kerning first=176 second=370 amount=-2 -kerning first=54 second=1256 amount=-2 -kerning first=1071 second=333 amount=-1 -kerning first=203 second=67 amount=-2 -kerning first=318 second=217 amount=-2 -kerning first=74 second=8222 amount=-1 -kerning first=1103 second=257 amount=-1 -kerning first=223 second=229 amount=-1 -kerning first=926 second=963 amount=-1 -kerning first=934 second=271 amount=-1 -kerning first=100 second=920 amount=-2 -kerning first=240 second=1195 amount=-1 -kerning first=363 second=1026 amount=-5 -kerning first=120 second=1257 amount=-2 -kerning first=1298 second=1090 amount=-3 -kerning first=296 second=230 amount=-1 -kerning first=1073 second=964 amount=-3 -kerning first=1080 second=45 amount=-2 -kerning first=204 second=242 amount=-1 -kerning first=1076 second=273 amount=-1 -kerning first=316 second=947 amount=-4 -kerning first=321 second=372 amount=-5 -kerning first=8372 second=85 amount=-2 -kerning first=1185 second=1108 amount=-2 -kerning first=250 second=81 amount=-2 -kerning first=961 second=1175 amount=-2 -kerning first=964 second=361 amount=-1 -kerning first=967 second=121 amount=-1 -kerning first=273 second=243 amount=-1 -kerning first=1039 second=1028 amount=-2 -kerning first=1046 second=288 amount=-3 -kerning first=294 second=1263 amount=-1 -kerning first=65 second=269 amount=-1 -kerning first=1081 second=220 amount=-2 -kerning first=903 second=232 amount=-1 -kerning first=942 second=374 amount=-5 -kerning first=368 second=1298 amount=-1 -kerning first=971 second=71 amount=-2 -kerning first=161 second=962 amount=-1 -kerning first=8217 second=111 amount=-1 -kerning first=1051 second=233 amount=-1 -kerning first=301 second=333 amount=-1 -kerning first=69 second=217 amount=-2 -kerning first=1083 second=375 amount=-1 -kerning first=330 second=257 amount=-1 -kerning first=92 second=119 amount=-4 -kerning first=235 second=44 amount=-1 -kerning first=950 second=84 amount=-5 -kerning first=1219 second=234 amount=-1 -kerning first=375 second=334 amount=-2 -kerning first=168 second=218 amount=-2 -kerning first=278 second=346 amount=-1 -kerning first=8212 second=1035 amount=-4 -kerning first=8218 second=291 amount=-1 -kerning first=50 second=230 amount=-1 -kerning first=187 second=1174 amount=-3 -kerning first=190 second=360 amount=-2 -kerning first=305 second=273 amount=-1 -kerning first=302 second=964 amount=-3 -kerning first=310 second=45 amount=-4 -kerning first=70 second=372 amount=-5 -kerning first=1080 second=8249 amount=-3 -kerning first=1096 second=85 amount=-2 -kerning first=910 second=335 amount=-4 -kerning first=915 second=97 amount=-1 -kerning first=236 second=219 amount=-2 -kerning first=356 second=347 amount=-3 -kerning first=951 second=259 amount=-1 -kerning first=256 second=361 amount=-1 -kerning first=376 second=965 amount=-2 -kerning first=169 second=373 amount=-4 -kerning first=282 second=288 amount=-2 -kerning first=48 second=1263 amount=-1 -kerning first=1065 second=336 amount=-1 -kerning first=916 second=275 amount=-1 -kerning first=234 second=1203 amount=-2 -kerning first=237 second=374 amount=-5 -kerning first=1298 second=99 amount=-1 -kerning first=1035 second=111 amount=-1 -kerning first=177 second=83 amount=-1 -kerning first=55 second=333 amount=-1 -kerning first=198 second=245 amount=-1 -kerning first=313 second=375 amount=-1 -kerning first=78 second=257 amount=-1 -kerning first=75 second=949 amount=-2 -kerning first=336 second=1051 amount=-1 -kerning first=956 second=364 amount=-2 -kerning first=121 second=334 amount=-2 -kerning first=1299 second=277 amount=-1 -kerning first=1240 second=376 amount=-3 -kerning first=36 second=346 amount=-1 -kerning first=1036 second=291 amount=-1 -kerning first=1033 second=1035 amount=-5 -kerning first=8226 second=1098 amount=-3 -kerning first=59 second=273 amount=-1 -kerning first=62 second=45 amount=-2 -kerning first=56 second=964 amount=-3 -kerning first=310 second=8249 amount=-3 -kerning first=322 second=85 amount=-2 -kerning first=8364 second=263 amount=-1 -kerning first=102 second=347 amount=-1 -kerning first=248 second=34 amount=-1 -kerning first=270 second=196 amount=-2 -kerning first=37 second=1028 amount=-2 -kerning first=40 second=288 amount=-2 -kerning first=63 second=220 amount=-2 -kerning first=203 second=350 amount=-1 -kerning first=8370 second=213 amount=-2 -kerning first=80 second=1176 amount=-1 -kerning first=86 second=122 amount=-2 -kerning first=223 second=966 amount=-1 -kerning first=369 second=337 amount=-1 -kerning first=372 second=99 amount=-3 -kerning first=963 second=940 amount=-1 -kerning first=162 second=221 amount=-5 -kerning first=271 second=351 amount=-1 -kerning first=184 second=363 amount=-1 -kerning first=180 second=1177 amount=-1 -kerning first=64 second=375 amount=-1 -kerning first=207 second=290 amount=-2 -kerning first=327 second=210 amount=-2 -kerning first=8372 second=368 amount=-2 -kerning first=902 second=338 amount=-2 -kerning first=905 second=100 amount=-1 -kerning first=84 second=1051 amount=-4 -kerning first=1117 second=250 amount=-1 -kerning first=944 second=262 amount=-2 -kerning first=1202 second=1241 amount=-1 -kerning first=250 second=364 amount=-2 -kerning first=373 second=277 amount=-1 -kerning first=163 second=376 amount=-5 -kerning first=273 second=1035 amount=-5 -kerning first=276 second=291 amount=-1 -kerning first=1049 second=339 amount=-1 -kerning first=182 second=8212 amount=-2 -kerning first=185 second=1059 amount=-2 -kerning first=1046 second=1098 amount=-3 -kerning first=1062 second=101 amount=-1 -kerning first=62 second=8249 amount=-3 -kerning first=1085 second=263 amount=-1 -kerning first=8369 second=8221 amount=-3 -kerning first=248 second=8216 amount=-1 -kerning first=971 second=354 amount=-5 -kerning first=968 second=1118 amount=-1 -kerning first=161 second=8250 amount=-1 -kerning first=49 second=336 amount=-2 -kerning first=1063 second=279 amount=-1 -kerning first=192 second=248 amount=-1 -kerning first=1051 second=970 amount=-1 -kerning first=1095 second=213 amount=-2 -kerning first=326 second=8217 amount=-1 -kerning first=912 second=225 amount=-1 -kerning first=1170 second=355 amount=-1 -kerning first=232 second=1076 amount=-1 -kerning first=238 second=87 amount=-5 -kerning first=950 second=367 amount=-1 -kerning first=946 second=1185 amount=-3 -kerning first=118 second=99 amount=-1 -kerning first=258 second=249 amount=-1 -kerning first=255 second=940 amount=-1 -kerning first=168 second=953 amount=-1 -kerning first=1067 second=226 amount=-1 -kerning first=76 second=210 amount=-1 -kerning first=1096 second=368 amount=-2 -kerning first=96 second=352 amount=-1 -kerning first=239 second=262 amount=-2 -kerning first=948 second=8220 amount=-3 -kerning first=119 second=277 amount=-1 -kerning first=1263 second=227 amount=-1 -kerning first=34 second=291 amount=-1 -kerning first=176 second=211 amount=-2 -kerning first=282 second=1098 amount=-3 -kerning first=287 second=339 amount=-1 -kerning first=8224 second=973 amount=-1 -kerning first=197 second=353 amount=-1 -kerning first=200 second=113 amount=-1 -kerning first=315 second=263 amount=-1 -kerning first=77 second=365 amount=-1 -kerning first=1184 second=240 amount=-2 -kerning first=955 second=943 amount=-1 -kerning first=960 second=252 amount=-1 -kerning first=123 second=224 amount=-1 -kerning first=260 second=1118 amount=-1 -kerning first=174 second=1184 amount=-5 -kerning first=177 second=366 amount=-2 -kerning first=291 second=279 amount=-1 -kerning first=8260 second=229 amount=-1 -kerning first=61 second=171 amount=-3 -kerning first=321 second=213 amount=-2 -kerning first=8363 second=371 amount=-1 -kerning first=345 second=115 amount=-1 -kerning first=936 second=267 amount=-1 -kerning first=241 second=1185 amount=-1 -kerning first=1036 second=1101 amount=-1 -kerning first=297 second=226 amount=-1 -kerning first=322 second=368 amount=-2 -kerning first=8364 second=1069 amount=-1 -kerning first=900 second=281 amount=-1 -kerning first=105 second=1241 amount=-1 -kerning first=108 second=187 amount=-1 -kerning first=242 second=8220 amount=-1 -kerning first=371 second=227 amount=-1 -kerning first=965 second=357 amount=-1 -kerning first=968 second=117 amount=-1 -kerning first=125 second=1079 amount=-1 -kerning first=164 second=89 amount=-5 -kerning first=40 second=1098 amount=-3 -kerning first=43 second=339 amount=-1 -kerning first=1041 second=973 amount=-1 -kerning first=186 second=251 amount=-1 -kerning first=1083 second=216 amount=-2 -kerning first=318 second=8221 amount=-3 -kerning first=323 second=1066 amount=-5 -kerning first=904 second=228 amount=-1 -kerning first=1119 second=118 amount=-4 -kerning first=112 second=102 amount=-1 -kerning first=947 second=974 amount=-1 -kerning first=249 second=943 amount=-1 -kerning first=252 second=252 amount=-1 -kerning first=1206 second=283 amount=-1 -kerning first=369 second=1256 amount=-2 -kerning first=372 second=382 amount=-1 -kerning first=165 second=266 amount=-2 -kerning first=168 second=39 amount=-3 -kerning first=47 second=279 amount=-1 -kerning first=70 second=213 amount=-1 -kerning first=1084 second=371 amount=-1 -kerning first=1080 second=1195 amount=-1 -kerning first=902 second=1257 amount=-1 -kerning first=87 second=1119 amount=-2 -kerning first=93 second=115 amount=-1 -kerning first=1220 second=230 amount=-1 -kerning first=973 second=242 amount=-1 -kerning first=169 second=214 amount=-2 -kerning first=276 second=1101 amount=-1 -kerning first=8220 second=287 amount=-1 -kerning first=51 second=226 amount=-1 -kerning first=1049 second=1262 amount=-2 -kerning first=1062 second=1240 amount=-1 -kerning first=191 second=356 amount=-5 -kerning first=194 second=116 amount=-1 -kerning first=306 second=268 amount=-2 -kerning first=1085 second=1069 amount=-1 -kerning first=214 second=281 amount=-1 -kerning first=1174 second=243 amount=-1 -kerning first=354 second=1102 amount=-2 -kerning first=117 second=227 amount=-1 -kerning first=1210 second=1263 amount=-1 -kerning first=260 second=117 amount=-1 -kerning first=380 second=269 amount=-1 -kerning first=170 second=369 amount=-1 -kerning first=280 second=973 amount=-1 -kerning first=8225 second=232 amount=-1 -kerning first=313 second=216 amount=-1 -kerning first=69 second=8221 amount=-3 -kerning first=72 second=1066 amount=-5 -kerning first=339 second=118 amount=-1 -kerning first=912 second=962 amount=-1 -kerning first=238 second=370 amount=-2 -kerning first=361 second=283 amount=-1 -kerning first=178 second=79 amount=-2 -kerning first=289 second=229 amount=-1 -kerning first=1067 second=963 amount=-1 -kerning first=196 second=920 amount=-2 -kerning first=314 second=371 amount=-1 -kerning first=310 second=1195 amount=-2 -kerning first=8364 second=84 amount=-5 -kerning first=931 second=218 amount=-2 -kerning first=365 second=230 amount=-1 -kerning first=958 second=360 amount=-2 -kerning first=1263 second=964 amount=-3 -kerning first=262 second=923 amount=-1 -kerning first=1037 second=287 amount=-1 -kerning first=176 second=945 amount=-1 -kerning first=287 second=1262 amount=-2 -kerning first=60 second=268 amount=-2 -kerning first=323 second=81 amount=-2 -kerning first=8370 second=34 amount=-3 -kerning first=8365 second=259 amount=-1 -kerning first=1100 second=1175 amount=-2 -kerning first=1103 second=361 amount=-1 -kerning first=934 second=373 amount=-4 -kerning first=1184 second=1028 amount=-3 -kerning first=363 second=1263 amount=-1 -kerning first=126 second=269 amount=-1 -kerning first=38 second=973 amount=-1 -kerning first=44 second=54 amount=-1 -kerning first=1044 second=232 amount=-1 -kerning first=296 second=332 amount=-2 -kerning first=8260 second=966 amount=-1 -kerning first=64 second=216 amount=-2 -kerning first=1073 second=1203 amount=-2 -kerning first=207 second=106 amount=1 -kerning first=87 second=118 amount=-1 -kerning first=1117 second=71 amount=-2 -kerning first=350 second=193 amount=-1 -kerning first=944 second=83 amount=-1 -kerning first=107 second=283 amount=-2 -kerning first=1202 second=233 amount=-1 -kerning first=967 second=245 amount=-1 -kerning first=163 second=217 amount=-2 -kerning first=188 second=119 amount=-4 -kerning first=185 second=359 amount=-1 -kerning first=297 second=963 amount=-1 -kerning first=300 second=271 amount=-1 -kerning first=62 second=1195 amount=-1 -kerning first=65 second=371 amount=-1 -kerning first=1078 second=1073 amount=-1 -kerning first=1085 second=84 amount=-5 -kerning first=205 second=1026 amount=-5 -kerning first=903 second=334 amount=-2 -kerning first=900 second=1090 amount=-3 -kerning first=1118 second=246 amount=-1 -kerning first=251 second=360 amount=-2 -kerning first=371 second=964 amount=-3 -kerning first=374 second=273 amount=-4 -kerning first=377 second=45 amount=-3 -kerning first=161 second=947 amount=-4 -kerning first=164 second=372 amount=-5 -kerning first=8217 second=235 amount=-1 -kerning first=43 second=1262 amount=-2 -kerning first=46 second=1240 amount=-1 -kerning first=1051 second=335 amount=-1 -kerning first=1063 second=97 amount=-1 -kerning first=304 second=219 amount=-2 -kerning first=72 second=81 amount=-2 -kerning first=1095 second=34 amount=-3 -kerning first=1087 second=259 amount=-1 -kerning first=330 second=361 amount=-1 -kerning first=8370 second=8216 amount=-3 -kerning first=904 second=965 amount=-1 -kerning first=92 second=243 amount=-1 -kerning first=232 second=373 amount=-1 -kerning first=1219 second=336 amount=-2 -kerning first=47 second=1085 amount=-1 -kerning first=50 second=332 amount=-2 -kerning first=1064 second=275 amount=-1 -kerning first=193 second=244 amount=-1 -kerning first=305 second=374 amount=-5 -kerning first=210 second=1298 amount=-1 -kerning first=915 second=221 amount=-5 -kerning first=1176 second=111 amount=-1 -kerning first=1171 second=351 amount=-1 -kerning first=239 second=83 amount=-1 -kerning first=230 second=8230 amount=-1 -kerning first=951 second=363 amount=-1 -kerning first=948 second=1177 amount=-1 -kerning first=113 second=1087 amount=2 -kerning first=1027 second=290 amount=-2 -kerning first=169 second=949 amount=-1 -kerning first=172 second=257 amount=-1 -kerning first=279 second=1299 amount=-1 -kerning first=8224 second=338 amount=-2 -kerning first=51 second=963 amount=-1 -kerning first=57 second=44 amount=-1 -kerning first=54 second=271 amount=-1 -kerning first=315 second=84 amount=-6 -kerning first=214 second=1090 amount=-3 -kerning first=338 second=246 amount=-1 -kerning first=916 second=376 amount=-5 -kerning first=1174 second=1035 amount=-2 -kerning first=952 second=1059 amount=-2 -kerning first=117 second=964 amount=-3 -kerning first=123 second=45 amount=-2 -kerning first=120 second=273 amount=-2 -kerning first=35 second=287 amount=-1 -kerning first=1035 second=235 amount=-1 -kerning first=291 second=97 amount=-1 -kerning first=58 second=219 amount=-2 -kerning first=1069 second=377 amount=-1 -kerning first=195 second=1108 amount=-1 -kerning first=198 second=347 amount=-1 -kerning first=321 second=34 amount=-3 -kerning first=316 second=259 amount=-1 -kerning first=8363 second=212 amount=-2 -kerning first=78 second=361 amount=-1 -kerning first=1095 second=8216 amount=-3 -kerning first=912 second=8250 amount=-1 -kerning first=124 second=220 amount=-2 -kerning first=39 second=232 amount=-1 -kerning first=175 second=1176 amount=-1 -kerning first=178 second=362 amount=-2 -kerning first=289 second=966 amount=-1 -kerning first=294 second=275 amount=-1 -kerning first=59 second=374 amount=-5 -kerning first=199 second=1033 amount=-1 -kerning first=202 second=289 amount=-1 -kerning first=8364 second=367 amount=-1 -kerning first=8361 second=1185 amount=-3 -kerning first=900 second=99 amount=-1 -kerning first=343 second=351 amount=-1 -kerning first=931 second=953 amount=-1 -kerning first=105 second=233 amount=-1 -kerning first=125 second=375 amount=-1 -kerning first=1041 second=338 amount=-2 -kerning first=176 second=8211 amount=-2 -kerning first=66 second=84 amount=-1 -kerning first=206 second=234 amount=-1 -kerning first=323 second=364 amount=-2 -kerning first=86 second=246 amount=-3 -kerning first=901 second=277 amount=-1 -kerning first=1187 second=1098 amount=-2 -kerning first=947 second=339 amount=-1 -kerning first=1206 second=101 amount=-1 -kerning first=123 second=8249 amount=-3 -kerning first=165 second=85 amount=-2 -kerning first=47 second=97 amount=-2 -kerning first=70 second=34 amount=-3 -kerning first=1084 second=212 amount=-2 -kerning first=321 second=8216 amount=-3 -kerning first=8372 second=943 amount=-1 -kerning first=8378 second=252 amount=-1 -kerning first=905 second=224 amount=-1 -kerning first=1117 second=354 amount=-5 -kerning first=944 second=366 amount=-2 -kerning first=1207 second=279 amount=-1 -kerning first=253 second=248 amount=-1 -kerning first=376 second=171 amount=-3 -kerning first=8220 second=103 amount=-1 -kerning first=48 second=275 amount=-1 -kerning first=306 second=87 amount=-5 -kerning first=1085 second=367 amount=-1 -kerning first=1081 second=1185 amount=-3 -kerning first=214 second=99 amount=-1 -kerning first=91 second=351 amount=-1 -kerning first=94 second=111 amount=-1 -kerning first=1118 second=1038 amount=-2 -kerning first=111 second=967 amount=-2 -kerning first=1223 second=226 amount=-1 -kerning first=374 second=1078 amount=-2 -kerning first=170 second=210 amount=-2 -kerning first=280 second=338 amount=-2 -kerning first=8217 second=972 amount=-1 -kerning first=8221 second=281 amount=-1 -kerning first=192 second=352 amount=-1 -kerning first=72 second=364 amount=-2 -kerning first=1083 second=8220 amount=-3 -kerning first=215 second=277 amount=-1 -kerning first=920 second=89 amount=-3 -kerning first=92 second=1035 amount=-5 -kerning first=95 second=291 amount=-1 -kerning first=238 second=211 amount=-2 -kerning first=358 second=339 amount=-1 -kerning first=950 second=942 amount=-2 -kerning first=361 second=101 amount=-1 -kerning first=258 second=353 amount=-1 -kerning first=381 second=263 amount=-1 -kerning first=8226 second=228 amount=-1 -kerning first=1070 second=90 amount=-1 -kerning first=314 second=212 amount=-2 -kerning first=70 second=8216 amount=-3 -kerning first=1099 second=252 amount=-1 -kerning first=1096 second=943 amount=-1 -kerning first=923 second=266 amount=-2 -kerning first=931 second=39 amount=-3 -kerning first=236 second=1184 amount=-5 -kerning first=239 second=366 amount=-2 -kerning first=267 second=63 amount=-1 -kerning first=169 second=8217 amount=-3 -kerning first=1037 second=103 amount=-1 -kerning first=8224 second=1257 amount=-1 -kerning first=60 second=87 amount=-5 -kerning first=1071 second=267 amount=-1 -kerning first=315 second=367 amount=-1 -kerning first=77 second=940 amount=-1 -kerning first=80 second=249 amount=-1 -kerning first=338 second=1038 amount=-2 -kerning first=934 second=214 amount=-2 -kerning first=960 second=356 amount=-5 -kerning first=963 second=116 amount=-1 -kerning first=38 second=338 amount=-2 -kerning first=41 second=100 amount=-1 -kerning first=1035 second=972 amount=-1 -kerning first=180 second=250 amount=-1 -kerning first=177 second=941 amount=-1 -kerning first=61 second=262 amount=-2 -kerning first=201 second=1241 amount=-1 -kerning first=204 second=187 amount=-1 -kerning first=313 second=8220 amount=-3 -kerning first=84 second=199 amount=-1 -kerning first=221 second=1079 amount=-4 -kerning first=936 second=369 amount=-1 -kerning first=101 second=1098 amount=-1 -kerning first=107 second=101 amount=-2 -kerning first=247 second=251 amount=-1 -kerning first=160 second=263 amount=-1 -kerning first=45 second=50 amount=-2 -kerning first=1046 second=228 amount=-1 -kerning first=65 second=212 amount=-2 -kerning first=1074 second=1194 amount=-2 -kerning first=325 second=252 amount=-1 -kerning first=322 second=943 amount=-1 -kerning first=1118 second=67 amount=-2 -kerning first=231 second=39 amount=-1 -kerning first=105 second=970 amount=-1 -kerning first=108 second=279 amount=-1 -kerning first=965 second=920 amount=-2 -kerning first=164 second=213 amount=-2 -kerning first=8217 second=56 amount=-1 -kerning first=1041 second=1257 amount=-1 -kerning first=186 second=355 amount=-1 -kerning first=189 second=115 amount=-1 -kerning first=301 second=267 amount=-1 -kerning first=63 second=1185 amount=-3 -kerning first=8377 second=360 amount=-2 -kerning first=86 second=1038 amount=-2 -kerning first=1119 second=242 amount=-1 -kerning first=1206 second=1240 amount=-1 -kerning first=252 second=356 amount=-5 -kerning first=255 second=116 amount=-1 -kerning first=375 second=268 amount=-2 -kerning first=165 second=368 amount=-2 -kerning first=278 second=281 amount=-1 -kerning first=47 second=380 amount=-2 -kerning first=64 second=8220 amount=-3 -kerning first=910 second=269 amount=-4 -kerning first=1220 second=332 amount=-2 -kerning first=379 second=216 amount=-1 -kerning first=166 second=1066 amount=-5 -kerning first=163 second=8221 amount=-3 -kerning first=1027 second=106 amount=1 -kerning first=282 second=228 amount=-1 -kerning first=8216 second=1298 amount=-3 -kerning first=1062 second=962 amount=-1 -kerning first=194 second=240 amount=-1 -kerning first=303 second=1194 amount=-2 -kerning first=306 second=370 amount=-2 -kerning first=74 second=252 amount=-1 -kerning first=332 second=1044 amount=-1 -kerning first=338 second=67 amount=-2 -kerning first=916 second=217 amount=-2 -kerning first=240 second=79 amount=-2 -kerning first=955 second=119 amount=-4 -kerning first=952 second=359 amount=-1 -kerning first=1223 second=963 amount=-1 -kerning first=377 second=1195 amount=-1 -kerning first=35 second=103 amount=-1 -kerning first=174 second=253 amount=-1 -kerning first=280 second=1257 amount=-1 -kerning first=8225 second=334 amount=-2 -kerning first=55 second=267 amount=-1 -kerning first=1101 second=120 amount=-2 -kerning first=336 second=923 amount=-2 -kerning first=912 second=947 amount=-4 -kerning first=920 second=372 amount=-2 -kerning first=95 second=1101 amount=-1 -kerning first=238 second=945 amount=-1 -kerning first=358 second=1262 amount=-2 -kerning first=361 second=1240 amount=-2 -kerning first=121 second=268 amount=-2 -kerning first=1299 second=219 amount=-2 -kerning first=36 second=281 amount=-1 -kerning first=1036 second=231 amount=-2 -kerning first=8226 second=965 amount=-1 -kerning first=1186 second=232 amount=-1 -kerning first=365 second=332 amount=-2 -kerning first=962 second=244 amount=-1 -kerning first=125 second=216 amount=-2 -kerning first=40 second=228 amount=-1 -kerning first=183 second=118 amount=-4 -kerning first=57 second=1194 amount=-2 -kerning first=60 second=370 amount=-2 -kerning first=203 second=283 amount=-1 -kerning first=8365 second=363 amount=-1 -kerning first=86 second=67 amount=-2 -kerning first=934 second=949 amount=-1 -kerning first=249 second=119 amount=-4 -kerning first=369 second=271 amount=-1 -kerning first=372 second=44 amount=-3 -kerning first=123 second=1195 amount=-1 -kerning first=126 second=371 amount=-1 -kerning first=268 second=1026 amount=-1 -kerning first=271 second=286 amount=-2 -kerning first=38 second=1257 amount=-1 -kerning first=1044 second=334 amount=-1 -kerning first=299 second=218 amount=-2 -kerning first=207 second=230 amount=-1 -kerning first=8363 second=8212 amount=-2 -kerning first=8366 second=1059 amount=-2 -kerning first=902 second=273 amount=-1 -kerning first=905 second=45 amount=-2 -kerning first=84 second=923 amount=-6 -kerning first=87 second=242 amount=-3 -kerning first=224 second=947 amount=-1 -kerning first=1202 second=335 amount=-1 -kerning first=964 second=1108 amount=-1 -kerning first=967 second=347 amount=-1 -kerning first=160 second=1069 amount=-1 -kerning first=166 second=81 amount=-2 -kerning first=276 second=231 amount=-1 -kerning first=1046 second=965 amount=-1 -kerning first=188 second=243 amount=-1 -kerning first=300 second=373 amount=-4 -kerning first=205 second=1263 amount=-1 -kerning first=906 second=220 amount=-2 -kerning first=1118 second=350 amount=-1 -kerning first=354 second=232 amount=-3 -kerning first=942 second=1176 amount=-1 -kerning first=1203 second=966 amount=-1 -kerning first=1210 second=275 amount=-1 -kerning first=254 second=244 amount=-1 -kerning first=971 second=289 amount=-1 -kerning first=8217 second=337 amount=-1 -kerning first=8221 second=99 amount=-1 -kerning first=1063 second=221 amount=-5 -kerning first=1083 second=1177 amount=-1 -kerning first=1087 second=363 amount=-1 -kerning first=1170 second=290 amount=-2 -kerning first=118 second=44 amount=-2 -kerning first=1026 second=234 amount=-1 -kerning first=278 second=1090 amount=-3 -kerning first=8218 second=968 amount=-1 -kerning first=53 second=218 amount=-2 -kerning first=1064 second=376 amount=-5 -kerning first=193 second=346 amount=-1 -kerning first=73 second=360 amount=-2 -kerning first=1084 second=8212 amount=-2 -kerning first=905 second=8249 amount=-3 -kerning first=923 second=85 amount=-2 -kerning first=96 second=287 amount=-1 -kerning first=910 second=1074 amount=-3 -kerning first=1176 second=235 amount=-1 -kerning first=356 second=1094 amount=-2 -kerning first=1256 second=377 amount=-1 -kerning first=256 second=1108 amount=-1 -kerning first=34 second=231 amount=-1 -kerning first=172 second=361 amount=-1 -kerning first=176 second=121 amount=-1 -kerning first=282 second=965 amount=-1 -kerning first=54 second=373 amount=-4 -kerning first=194 second=1028 amount=-2 -kerning first=197 second=288 amount=-2 -kerning first=338 second=350 amount=-1 -kerning first=335 second=1113 amount=-1 -kerning first=100 second=232 amount=-1 -kerning first=237 second=1176 amount=-1 -kerning first=240 second=362 amount=-2 -kerning first=243 second=122 amount=-1 -kerning first=363 second=275 amount=-1 -kerning first=1257 second=1076 amount=-1 -kerning first=1035 second=337 amount=-1 -kerning first=180 second=71 amount=-2 -kerning first=291 second=221 amount=-5 -kerning first=61 second=83 amount=-1 -kerning first=1073 second=261 amount=-1 -kerning first=201 second=233 amount=-1 -kerning first=316 second=363 amount=-1 -kerning first=221 second=375 amount=-2 -kerning first=936 second=210 amount=-2 -kerning first=98 second=1299 amount=-1 -kerning first=238 second=8211 amount=-2 -kerning first=160 second=84 amount=-5 -kerning first=36 second=1090 amount=-3 -kerning first=1039 second=277 amount=-1 -kerning first=182 second=246 amount=-1 -kerning first=1036 second=968 amount=-1 -kerning first=294 second=376 amount=-5 -kerning first=317 second=1059 amount=-2 -kerning first=314 second=8212 amount=-2 -kerning first=8369 second=251 amount=-1 -kerning first=105 second=335 amount=-1 -kerning first=108 second=97 amount=-1 -kerning first=161 second=259 amount=-1 -kerning first=164 second=34 amount=-3 -kerning first=8211 second=102 amount=-2 -kerning first=40 second=965 amount=-1 -kerning first=206 second=336 amount=-2 -kerning first=904 second=171 amount=-3 -kerning first=86 second=350 amount=-1 -kerning first=89 second=110 amount=-3 -kerning first=934 second=8217 amount=-3 -kerning first=112 second=47 amount=-1 -kerning first=372 second=324 amount=-2 -kerning first=375 second=87 amount=-5 -kerning first=278 second=99 amount=-1 -kerning first=8218 second=52 amount=-1 -kerning first=47 second=221 amount=-5 -kerning first=190 second=111 amount=-1 -kerning first=302 second=261 amount=-1 -kerning first=299 second=953 amount=-1 -kerning first=64 second=1177 amount=-1 -kerning first=8378 second=356 amount=-5 -kerning first=90 second=290 amount=-1 -kerning first=948 second=250 amount=-1 -kerning first=944 second=941 amount=-1 -kerning first=356 second=100 amount=-3 -kerning first=253 second=352 amount=-1 -kerning first=376 second=262 amount=-3 -kerning first=973 second=187 amount=-1 -kerning first=166 second=364 amount=-2 -kerning first=276 second=968 amount=-1 -kerning first=8220 second=227 amount=-1 -kerning first=48 second=376 amount=-5 -kerning first=1049 second=1079 amount=-1 -kerning first=188 second=1035 amount=-5 -kerning first=191 second=291 amount=-1 -kerning first=1065 second=89 amount=-2 -kerning first=306 second=211 amount=-2 -kerning first=65 second=8212 amount=-2 -kerning first=916 second=38 amount=-1 -kerning first=94 second=235 amount=-1 -kerning first=164 second=8216 amount=-3 -kerning first=304 second=1184 amount=-5 -kerning first=75 second=248 amount=-2 -kerning first=339 second=63 amount=-2 -kerning first=232 second=8217 amount=-1 -kerning first=361 second=225 amount=-1 -kerning first=950 second=1119 amount=-2 -kerning first=956 second=115 amount=-1 -kerning first=121 second=87 amount=-5 -kerning first=36 second=99 amount=-1 -kerning first=175 second=249 amount=-1 -kerning first=56 second=261 amount=-1 -kerning first=53 second=953 amount=-1 -kerning first=79 second=198 amount=-2 -kerning first=1099 second=356 amount=-5 -kerning first=222 second=88 amount=-3 -kerning first=923 second=368 amount=-2 -kerning first=1176 second=972 amount=-1 -kerning first=239 second=941 amount=-1 -kerning first=102 second=100 amount=-1 -kerning first=1179 second=281 amount=-1 -kerning first=37 second=277 amount=-1 -kerning first=1037 second=227 amount=-1 -kerning first=179 second=199 amount=-2 -kerning first=287 second=1079 amount=-1 -kerning first=60 second=211 amount=-2 -kerning first=1071 second=369 amount=-1 -kerning first=200 second=339 amount=-1 -kerning first=203 second=101 amount=-1 -kerning first=197 second=1098 amount=-3 -kerning first=318 second=251 amount=-1 -kerning first=80 second=353 amount=-1 -kerning first=223 second=263 amount=-1 -kerning first=926 second=1066 amount=-5 -kerning first=916 second=8221 amount=-3 -kerning first=963 second=240 amount=-1 -kerning first=126 second=212 amount=-2 -kerning first=1298 second=1194 amount=-2 -kerning first=41 second=224 amount=-1 -kerning first=1035 second=1256 amount=-2 -kerning first=180 second=354 amount=-5 -kerning first=177 second=1118 amount=-1 -kerning first=296 second=266 amount=-2 -kerning first=299 second=39 amount=-3 -kerning first=58 second=1184 amount=-5 -kerning first=61 second=366 amount=-2 -kerning first=1069 second=8222 amount=-1 -kerning first=1080 second=79 amount=-2 -kerning first=204 second=279 amount=-1 -kerning first=201 second=970 amount=-1 -kerning first=8366 second=359 amount=-1 -kerning first=8372 second=119 amount=-4 -kerning first=87 second=63 amount=-1 -kerning first=107 second=225 amount=-1 -kerning first=1185 second=1257 amount=-2 -kerning first=250 second=115 amount=-1 -kerning first=247 second=355 amount=-1 -kerning first=160 second=367 amount=-1 -kerning first=124 second=1185 amount=-3 -kerning first=182 second=1038 amount=-2 -kerning first=300 second=214 amount=-2 -kerning first=1078 second=945 amount=-2 -kerning first=325 second=356 amount=-5 -kerning first=903 second=268 amount=-2 -kerning first=125 second=8220 amount=-3 -kerning first=43 second=1079 amount=-1 -kerning first=1051 second=269 amount=-1 -kerning first=49 second=89 amount=-5 -kerning first=301 second=369 amount=-1 -kerning first=69 second=251 amount=-1 -kerning first=1170 second=106 amount=1 -kerning first=226 second=8221 amount=-1 -kerning first=950 second=118 amount=-4 -kerning first=1206 second=962 amount=-1 -kerning first=255 second=240 amount=-1 -kerning first=372 second=1194 amount=-2 -kerning first=375 second=370 amount=-2 -kerning first=165 second=943 amount=-1 -kerning first=168 second=252 amount=-1 -kerning first=50 second=266 amount=-2 -kerning first=53 second=39 amount=-3 -kerning first=1064 second=217 amount=-2 -kerning first=310 second=79 amount=-3 -kerning first=1096 second=119 amount=-4 -kerning first=905 second=1195 amount=-1 -kerning first=910 second=371 amount=-2 -kerning first=1168 second=1026 amount=-5 -kerning first=1171 second=286 amount=-2 -kerning first=96 second=103 amount=-1 -kerning first=236 second=253 amount=-1 -kerning first=34 second=52 amount=-1 -kerning first=1027 second=230 amount=-1 -kerning first=279 second=1083 amount=-1 -kerning first=8224 second=273 amount=-1 -kerning first=8230 second=45 amount=-1 -kerning first=54 second=214 amount=-2 -kerning first=1062 second=947 amount=-2 -kerning first=191 second=1101 amount=-1 -kerning first=306 second=945 amount=-1 -kerning first=74 second=356 amount=-5 -kerning first=77 second=116 amount=-1 -kerning first=926 second=81 amount=-2 -kerning first=94 second=972 amount=-1 -kerning first=955 second=243 amount=-1 -kerning first=1257 second=373 amount=-1 -kerning first=35 second=227 amount=-1 -kerning first=174 second=357 amount=-1 -kerning first=177 second=117 amount=-1 -kerning first=8240 second=220 amount=-2 -kerning first=55 second=369 amount=-1 -kerning first=195 second=973 amount=-1 -kerning first=221 second=216 amount=-3 -kerning first=342 second=106 amount=2 -kerning first=244 second=118 amount=-1 -kerning first=361 second=962 amount=-1 -kerning first=121 second=370 amount=-2 -kerning first=1036 second=333 amount=-2 -kerning first=182 second=67 amount=-2 -kerning first=294 second=217 amount=-2 -kerning first=53 second=8222 amount=-1 -kerning first=62 second=79 amount=-2 -kerning first=1074 second=257 amount=-1 -kerning first=202 second=229 amount=-1 -kerning first=317 second=359 amount=-1 -kerning first=322 second=119 amount=-4 -kerning first=1186 second=334 amount=-1 -kerning first=1179 second=1090 amount=-2 -kerning first=962 second=346 amount=-1 -kerning first=1037 second=964 amount=-3 -kerning first=1041 second=273 amount=-1 -kerning first=183 second=242 amount=-1 -kerning first=60 second=945 amount=-1 -kerning first=203 second=1240 amount=-2 -kerning first=200 second=1262 amount=-2 -kerning first=901 second=219 amount=-2 -kerning first=1103 second=1108 amount=-1 -kerning first=223 second=1069 amount=-1 -kerning first=249 second=243 amount=-1 -kerning first=369 second=373 amount=-4 -kerning first=963 second=1028 amount=-2 -kerning first=1048 second=220 amount=-2 -kerning first=1080 second=362 amount=-2 -kerning first=207 second=332 amount=-2 -kerning first=327 second=244 amount=-1 -kerning first=902 second=374 amount=-5 -kerning first=1117 second=289 amount=-1 -kerning first=948 second=71 amount=-2 -kerning first=107 second=962 amount=-2 -kerning first=376 second=83 amount=-1 -kerning first=276 second=333 amount=-1 -kerning first=48 second=217 amount=-2 -kerning first=1049 second=375 amount=-1 -kerning first=300 second=949 amount=-1 -kerning first=303 second=257 amount=-1 -kerning first=1078 second=8211 amount=-3 -kerning first=332 second=194 amount=-2 -kerning first=91 second=286 amount=-2 -kerning first=1169 second=234 amount=-1 -kerning first=354 second=334 amount=-1 -kerning first=1210 second=376 amount=-5 -kerning first=254 second=346 amount=-1 -kerning first=374 second=950 amount=-2 -kerning first=167 second=360 amount=-2 -kerning first=280 second=273 amount=-1 -kerning first=277 second=964 amount=-1 -kerning first=46 second=947 amount=-2 -kerning first=49 second=372 amount=-5 -kerning first=192 second=287 amount=-1 -kerning first=215 second=219 amount=-2 -kerning first=330 second=1108 amount=-1 -kerning first=912 second=259 amount=-1 -kerning first=95 second=231 amount=-1 -kerning first=232 second=1175 amount=-2 -kerning first=238 second=121 amount=-1 -kerning first=115 second=373 amount=-1 -kerning first=255 second=1028 amount=-2 -kerning first=258 second=288 amount=-2 -kerning first=1026 second=336 amount=-2 -kerning first=8226 second=171 amount=-3 -kerning first=196 second=232 amount=-1 -kerning first=305 second=1176 amount=-1 -kerning first=76 second=244 amount=-1 -kerning first=216 second=374 amount=-3 -kerning first=334 second=1033 amount=-1 -kerning first=1176 second=337 amount=-1 -kerning first=1179 second=99 amount=-1 -kerning first=113 second=8230 amount=2 -kerning first=958 second=111 amount=-1 -kerning first=954 second=351 amount=-1 -kerning first=1263 second=261 amount=-1 -kerning first=34 second=333 amount=-1 -kerning first=176 second=245 amount=-1 -kerning first=287 second=375 amount=-1 -kerning first=8250 second=88 amount=-3 -kerning first=54 second=949 amount=-1 -kerning first=57 second=257 amount=-1 -kerning first=1071 second=210 amount=-2 -kerning first=306 second=8211 amount=-2 -kerning first=80 second=194 amount=-4 -kerning first=223 second=84 amount=-5 -kerning first=341 second=234 amount=-1 -kerning first=926 second=364 amount=-2 -kerning first=97 second=1090 amount=-1 -kerning first=100 second=334 amount=-2 -kerning first=1184 second=277 amount=-2 -kerning first=363 second=376 amount=-5 -kerning first=955 second=1035 amount=-5 -kerning first=960 second=291 amount=-1 -kerning first=38 second=273 amount=-1 -kerning first=41 second=45 amount=-2 -kerning first=35 second=964 amount=-3 -kerning first=296 second=85 amount=-2 -kerning first=8260 second=263 amount=-1 -kerning first=1073 second=365 amount=-1 -kerning first=201 second=335 amount=-1 -kerning first=204 second=97 amount=-1 -kerning first=78 second=1108 amount=-1 -kerning first=84 second=109 amount=-2 -kerning first=221 second=951 amount=-3 -kerning first=227 second=34 amount=-1 -kerning first=361 second=8250 amount=-1 -kerning first=1299 second=1184 amount=-5 -kerning first=42 second=220 amount=-2 -kerning first=1046 second=171 amount=-3 -kerning first=182 second=350 amount=-1 -kerning first=62 second=362 amount=-2 -kerning first=59 second=1176 amount=-1 -kerning first=202 second=966 amount=-1 -kerning first=208 second=47 amount=-1 -kerning first=205 second=275 amount=-1 -kerning first=8369 second=355 amount=-1 -kerning first=903 second=87 amount=-5 -kerning first=942 second=249 amount=-1 -kerning first=108 second=221 amount=-5 -kerning first=251 second=111 amount=-1 -kerning first=371 second=261 amount=-1 -kerning first=125 second=1177 amount=-1 -kerning first=161 second=363 amount=-1 -kerning first=270 second=967 amount=-1 -kerning first=43 second=375 amount=-1 -kerning first=186 second=290 amount=-2 -kerning first=301 second=210 amount=-2 -kerning first=60 second=8211 amount=-2 -kerning first=1083 second=250 amount=-1 -kerning first=904 second=262 amount=-2 -kerning first=89 second=234 amount=-4 -kerning first=1119 second=187 amount=-1 -kerning first=1116 second=1241 amount=-2 -kerning first=946 second=199 amount=-2 -kerning first=1219 second=89 amount=-5 -kerning first=249 second=1035 amount=-5 -kerning first=252 second=291 amount=-1 -kerning first=375 second=211 amount=-2 -kerning first=966 second=1098 amount=-1 -kerning first=126 second=8212 amount=-2 -kerning first=162 second=1059 amount=-2 -kerning first=8212 second=381 amount=-2 -kerning first=41 second=8249 amount=-3 -kerning first=50 second=85 amount=-2 -kerning first=190 second=235 amount=-1 -kerning first=302 second=365 amount=-1 -kerning first=210 second=377 amount=-1 -kerning first=910 second=212 amount=-3 -kerning first=227 second=8216 amount=-1 -kerning first=356 second=224 amount=-2 -kerning first=948 second=354 amount=-5 -kerning first=944 second=1118 amount=-1 -kerning first=1220 second=266 amount=-2 -kerning first=973 second=279 amount=-1 -kerning first=169 second=248 amount=-1 -kerning first=279 second=378 amount=-1 -kerning first=282 second=171 amount=-3 -kerning first=1065 second=213 amount=-1 -kerning first=300 second=8217 amount=-3 -kerning first=74 second=197 amount=-1 -kerning first=906 second=1185 amount=-3 -kerning first=94 second=337 amount=-1 -kerning first=237 second=249 amount=-1 -kerning first=354 second=1220 amount=-2 -kerning first=117 second=261 amount=-1 -kerning first=374 second=8218 amount=-4 -kerning first=8225 second=268 amount=-2 -kerning first=55 second=210 amount=-2 -kerning first=195 second=338 amount=-2 -kerning first=198 second=100 amount=-1 -kerning first=313 second=250 amount=-1 -kerning first=75 second=352 amount=-1 -kerning first=95 second=968 amount=-1 -kerning first=358 second=1079 amount=-1 -kerning first=121 second=211 amount=-2 -kerning first=258 second=1098 amount=-3 -kerning first=178 second=113 amount=-1 -kerning first=175 second=353 amount=-1 -kerning first=289 second=263 amount=-1 -kerning first=56 second=365 amount=-1 -kerning first=1064 second=8221 amount=-3 -kerning first=1067 second=1066 amount=-5 -kerning first=8364 second=118 amount=-4 -kerning first=923 second=943 amount=-1 -kerning first=931 second=252 amount=-1 -kerning first=102 second=224 amount=-1 -kerning first=1176 second=1256 amount=-2 -kerning first=239 second=1118 amount=-1 -kerning first=365 second=266 amount=-2 -kerning first=1256 second=8222 amount=-1 -kerning first=40 second=171 amount=-3 -kerning first=54 second=8217 amount=-3 -kerning first=203 second=225 amount=-1 -kerning first=323 second=115 amount=-1 -kerning first=318 second=355 amount=-1 -kerning first=223 second=367 amount=-1 -kerning first=369 second=214 amount=-2 -kerning first=960 second=1101 amount=-1 -kerning first=271 second=226 amount=-1 -kerning first=38 second=1078 amount=-2 -kerning first=1044 second=268 amount=-1 -kerning first=296 second=368 amount=-2 -kerning first=8260 second=1069 amount=-1 -kerning first=64 second=250 amount=-1 -kerning first=61 second=941 amount=-1 -kerning first=8372 second=243 amount=-1 -kerning first=84 second=1241 amount=-3 -kerning first=87 second=187 amount=-2 -kerning first=944 second=117 amount=-1 -kerning first=1202 second=269 amount=-1 -kerning first=964 second=973 amount=-1 -kerning first=163 second=251 amount=-1 -kerning first=1049 second=216 amount=-2 -kerning first=294 second=8221 amount=-3 -kerning first=297 second=1066 amount=-5 -kerning first=1085 second=118 amount=-4 -kerning first=211 second=90 amount=-1 -kerning first=900 second=1194 amount=-2 -kerning first=903 second=370 amount=-2 -kerning first=1118 second=283 amount=-1 -kerning first=1210 second=217 amount=-2 -kerning first=368 second=8222 amount=-1 -kerning first=377 second=79 amount=-1 -kerning first=971 second=229 amount=-1 -kerning first=8217 second=271 amount=-1 -kerning first=8221 second=44 amount=-1 -kerning first=49 second=213 amount=-2 -kerning first=1051 second=371 amount=-1 -kerning first=192 second=103 amount=-1 -kerning first=304 second=253 amount=-1 -kerning first=69 second=355 amount=-1 -kerning first=72 second=115 amount=-1 -kerning first=1170 second=230 amount=-1 -kerning first=950 second=242 amount=-1 -kerning first=1219 second=372 amount=-5 -kerning first=1206 second=947 amount=-2 -kerning first=252 second=1101 amount=-1 -kerning first=375 second=945 amount=-1 -kerning first=168 second=356 amount=-5 -kerning first=8222 second=219 amount=-1 -kerning first=50 second=368 amount=-2 -kerning first=1067 second=81 amount=-2 -kerning first=190 second=972 amount=-1 -kerning first=193 second=281 amount=-1 -kerning first=1096 second=243 amount=-1 -kerning first=96 second=227 amount=-1 -kerning first=1168 second=1263 amount=-1 -kerning first=236 second=357 amount=-1 -kerning first=239 second=117 amount=-1 -kerning first=113 second=1187 amount=2 -kerning first=256 second=973 amount=-1 -kerning first=1027 second=332 amount=-2 -kerning first=287 second=216 amount=-2 -kerning first=8224 second=374 amount=-5 -kerning first=51 second=1066 amount=-5 -kerning first=48 second=8221 amount=-3 -kerning first=1068 second=256 amount=-1 -kerning first=197 second=228 amount=-1 -kerning first=315 second=118 amount=-3 -kerning first=74 second=916 amount=-1 -kerning first=77 second=240 amount=-1 -kerning first=214 second=1194 amount=-2 -kerning first=338 second=283 amount=-1 -kerning first=94 second=1256 amount=-2 -kerning first=363 second=217 amount=-2 -kerning first=114 second=8222 amount=-3 -kerning first=123 second=79 amount=-2 -kerning first=1298 second=257 amount=-1 -kerning first=1035 second=271 amount=-1 -kerning first=174 second=920 amount=-2 -kerning first=1038 second=44 amount=-1 -kerning first=8260 second=84 amount=-5 -kerning first=58 second=253 amount=-1 -kerning first=195 second=1257 amount=-1 -kerning first=8363 second=246 amount=-1 -kerning first=920 second=1174 amount=-3 -kerning first=928 second=360 amount=-2 -kerning first=98 second=1083 amount=-1 -kerning first=1185 second=273 amount=-2 -kerning first=1194 second=45 amount=-1 -kerning first=1178 second=964 amount=-2 -kerning first=361 second=947 amount=-4 -kerning first=121 second=945 amount=-1 -kerning first=1039 second=219 amount=-2 -kerning first=289 second=1069 amount=-1 -kerning first=297 second=81 amount=-2 -kerning first=1074 second=361 amount=-1 -kerning first=322 second=243 amount=-1 -kerning first=105 second=269 amount=-1 -kerning first=965 second=232 amount=-1 -kerning first=8211 second=47 amount=-1 -kerning first=43 second=216 amount=-2 -kerning first=1041 second=374 amount=-5 -kerning first=186 second=106 amount=1 -kerning first=1083 second=71 amount=-2 -kerning first=203 second=962 amount=-1 -kerning first=8377 second=111 amount=-1 -kerning first=8370 second=351 amount=-1 -kerning first=904 second=83 amount=-1 -kerning first=86 second=283 amount=-1 -kerning first=1116 second=233 amount=-2 -kerning first=369 second=949 amount=-1 -kerning first=372 second=257 amount=-2 -kerning first=162 second=359 amount=-1 -kerning first=165 second=119 amount=-4 -kerning first=271 second=963 amount=-1 -kerning first=41 second=1195 amount=-1 -kerning first=44 second=371 amount=-1 -kerning first=184 second=1026 amount=-5 -kerning first=1084 second=246 amount=-1 -kerning first=327 second=346 amount=-1 -kerning first=8372 second=1035 amount=-5 -kerning first=8378 second=291 amount=-1 -kerning first=902 second=950 amount=-1 -kerning first=233 second=120 amount=-2 -kerning first=356 second=45 amount=-4 -kerning first=1194 second=8249 amount=-1 -kerning first=1220 second=85 amount=-2 -kerning first=253 second=287 amount=-1 -kerning first=973 second=97 amount=-1 -kerning first=45 second=1069 amount=-1 -kerning first=51 second=81 amount=-2 -kerning first=1065 second=34 amount=-2 -kerning first=191 second=231 amount=-1 -kerning first=303 second=361 amount=-1 -kerning first=306 second=121 amount=-1 -kerning first=208 second=1202 amount=-3 -kerning first=88 second=1263 amount=-1 -kerning first=357 second=220 amount=-2 -kerning first=374 second=1176 amount=-2 -kerning first=1028 second=47 amount=-1 -kerning first=170 second=244 amount=-1 -kerning first=971 second=966 amount=-1 -kerning first=280 second=374 amount=-5 -kerning first=277 second=1203 amount=-2 -kerning first=8225 second=87 amount=-5 -kerning first=313 second=71 amount=-1 -kerning first=1095 second=351 amount=-1 -kerning first=212 second=1071 amount=-1 -kerning first=912 second=363 amount=-1 -kerning first=95 second=333 amount=-1 -kerning first=238 second=245 amount=-1 -kerning first=358 second=375 amount=-1 -kerning first=118 second=257 amount=-1 -kerning first=375 second=8211 amount=-2 -kerning first=289 second=84 amount=-5 -kerning first=8226 second=262 amount=-2 -kerning first=1067 second=364 amount=-2 -kerning first=193 second=1090 amount=-3 -kerning first=196 second=334 amount=-2 -kerning first=314 second=246 amount=-1 -kerning first=8361 second=199 amount=-2 -kerning first=1096 second=1035 amount=-5 -kerning first=1099 second=291 amount=-1 -kerning first=219 second=258 amount=-2 -kerning first=915 second=1059 amount=-2 -kerning first=96 second=964 amount=-3 -kerning first=910 second=8212 amount=-4 -kerning first=102 second=45 amount=-2 -kerning first=356 second=8249 amount=-3 -kerning first=365 second=85 amount=-2 -kerning first=958 second=235 amount=-1 -kerning first=1263 second=365 amount=-1 -kerning first=37 second=219 amount=-2 -kerning first=172 second=1108 amount=-1 -kerning first=176 second=347 amount=-1 -kerning first=295 second=34 amount=-1 -kerning first=57 second=361 amount=-1 -kerning first=60 second=121 amount=-1 -kerning first=1065 second=8216 amount=-2 -kerning first=197 second=965 amount=-1 -kerning first=77 second=1028 amount=-2 -kerning first=80 second=288 amount=-2 -kerning first=934 second=248 amount=-1 -kerning first=103 second=220 amount=-2 -kerning first=366 second=260 amount=-2 -kerning first=123 second=362 amount=-2 -kerning first=1257 second=8217 amount=-1 -kerning first=38 second=374 amount=-5 -kerning first=180 second=289 amount=-1 -kerning first=8260 second=367 amount=-1 -kerning first=8240 second=1185 amount=-3 -kerning first=64 second=71 amount=-2 -kerning first=1073 second=940 amount=-1 -kerning first=204 second=221 amount=-5 -kerning first=321 second=351 amount=-1 -kerning first=8363 second=1038 amount=-2 -kerning first=84 second=233 amount=-3 -kerning first=221 second=1177 amount=-4 -kerning first=247 second=290 amount=-2 -kerning first=967 second=100 amount=-1 -kerning first=964 second=338 amount=-2 -kerning first=121 second=8211 amount=-2 -kerning first=45 second=84 amount=-4 -kerning first=1046 second=262 amount=-3 -kerning first=185 second=234 amount=-1 -kerning first=297 second=364 amount=-2 -kerning first=65 second=246 amount=-1 -kerning first=1081 second=199 amount=-2 -kerning first=205 second=376 amount=-5 -kerning first=322 second=1035 amount=-5 -kerning first=325 second=291 amount=-1 -kerning first=903 second=211 amount=-2 -kerning first=1118 second=101 amount=-1 -kerning first=942 second=353 amount=-1 -kerning first=1195 second=955 amount=-1 -kerning first=1203 second=263 amount=-1 -kerning first=251 second=235 amount=-1 -kerning first=371 second=365 amount=-1 -kerning first=49 second=34 amount=-3 -kerning first=1051 second=212 amount=-2 -kerning first=295 second=8216 amount=-1 -kerning first=1083 second=354 amount=-5 -kerning first=203 second=8250 amount=-1 -kerning first=212 second=86 amount=-2 -kerning first=901 second=1184 amount=-5 -kerning first=904 second=366 amount=-2 -kerning first=89 second=336 amount=-3 -kerning first=1119 second=279 amount=-1 -kerning first=1219 second=213 amount=-2 -kerning first=369 second=8217 amount=-3 -kerning first=275 second=1076 amount=-1 -kerning first=1048 second=1185 amount=-3 -kerning first=190 second=337 amount=-1 -kerning first=193 second=99 amount=-1 -kerning first=302 second=940 amount=-1 -kerning first=305 second=249 amount=-1 -kerning first=70 second=351 amount=-1 -kerning first=1084 second=1038 amount=-2 -kerning first=73 second=111 amount=-1 -kerning first=8378 second=1101 amount=-1 -kerning first=1171 second=226 amount=-1 -kerning first=353 second=1078 amount=-1 -kerning first=1220 second=368 amount=-2 -kerning first=256 second=338 amount=-2 -kerning first=376 second=941 amount=-4 -kerning first=169 second=352 amount=-1 -kerning first=282 second=262 amount=-2 -kerning first=51 second=364 amount=-2 -kerning first=1049 second=8220 amount=-3 -kerning first=191 second=968 amount=-1 -kerning first=194 second=277 amount=-1 -kerning first=74 second=291 amount=-1 -kerning first=71 second=1035 amount=-1 -kerning first=338 second=101 amount=-1 -kerning first=916 second=251 amount=-1 -kerning first=240 second=113 amount=-1 -kerning first=237 second=353 amount=-1 -kerning first=117 second=365 amount=-1 -kerning first=1223 second=1066 amount=-5 -kerning first=1210 second=8221 amount=-3 -kerning first=8225 second=370 amount=-2 -kerning first=49 second=8216 amount=-3 -kerning first=198 second=224 amount=-1 -kerning first=313 second=354 amount=-6 -kerning first=8363 second=67 amount=-2 -kerning first=215 second=1184 amount=-5 -kerning first=98 second=378 amount=-1 -kerning first=244 second=63 amount=-2 -kerning first=115 second=8217 amount=-1 -kerning first=1299 second=253 amount=-1 -kerning first=1036 second=267 amount=-2 -kerning first=289 second=367 amount=-1 -kerning first=59 second=249 amount=-1 -kerning first=56 second=940 amount=-1 -kerning first=199 second=379 amount=-1 -kerning first=314 second=1038 amount=-2 -kerning first=8364 second=242 amount=-1 -kerning first=1099 second=1101 amount=-1 -kerning first=216 second=8218 amount=-1 -kerning first=931 second=356 amount=-5 -kerning first=343 second=226 amount=-1 -kerning first=99 second=1078 amount=-1 -kerning first=1186 second=268 amount=-1 -kerning first=365 second=368 amount=-2 -kerning first=958 second=972 amount=-1 -kerning first=962 second=281 amount=-1 -kerning first=125 second=250 amount=-1 -kerning first=122 second=941 amount=-1 -kerning first=40 second=262 amount=-2 -kerning first=179 second=1241 amount=-1 -kerning first=183 second=187 amount=-1 -kerning first=287 second=8220 amount=-3 -kerning first=63 second=199 amount=-2 -kerning first=200 second=1079 amount=-1 -kerning first=206 second=89 amount=-5 -kerning first=80 second=1098 amount=-3 -kerning first=86 second=101 amount=-3 -kerning first=1103 second=973 amount=-1 -kerning first=363 second=8221 amount=-3 -kerning first=44 second=212 amount=-1 -kerning first=1044 second=370 amount=-1 -kerning first=296 second=943 amount=-1 -kerning first=299 second=252 amount=-1 -kerning first=64 second=354 amount=-5 -kerning first=61 second=1118 amount=-1 -kerning first=1084 second=67 amount=-2 -kerning first=207 second=266 amount=-2 -kerning first=905 second=79 amount=-2 -kerning first=87 second=279 amount=-3 -kerning first=1117 second=229 amount=-1 -kerning first=253 second=103 amount=-1 -kerning first=964 second=1257 amount=-1 -kerning first=163 second=355 amount=-1 -kerning first=166 second=115 amount=-1 -kerning first=276 second=267 amount=-1 -kerning first=42 second=1185 amount=-3 -kerning first=65 second=1038 amount=-2 -kerning first=1085 second=242 amount=-1 -kerning first=325 second=1101 amount=-1 -kerning first=903 second=945 amount=-1 -kerning first=91 second=226 amount=-1 -kerning first=1118 second=1240 amount=-2 -kerning first=354 second=268 amount=-1 -kerning first=1223 second=81 amount=-2 -kerning first=251 second=972 amount=-1 -kerning first=254 second=281 amount=-1 -kerning first=8211 second=1202 amount=-3 -kerning first=43 second=8220 amount=-3 -kerning first=192 second=227 amount=-1 -kerning first=304 second=357 amount=-1 -kerning first=330 second=973 amount=-1 -kerning first=89 second=1224 amount=-3 -kerning first=1170 second=332 amount=-2 -kerning first=358 second=216 amount=-2 -kerning first=109 second=8221 amount=-1 -kerning first=258 second=228 amount=-1 -kerning first=278 second=1194 amount=-2 -kerning first=8212 second=8230 amount=-1 -kerning first=8226 second=83 amount=-1 -kerning first=50 second=943 amount=-1 -kerning first=53 second=252 amount=-1 -kerning first=190 second=1256 amount=-2 -kerning first=314 second=67 amount=-2 -kerning first=210 second=8222 amount=-1 -kerning first=915 second=359 amount=-1 -kerning first=923 second=119 amount=-4 -kerning first=1171 second=963 amount=-1 -kerning first=1176 second=271 amount=-1 -kerning first=236 second=920 amount=-2 -kerning first=356 second=1195 amount=-3 -kerning first=951 second=1026 amount=-5 -kerning first=256 second=1257 amount=-1 -kerning first=34 second=267 amount=-1 -kerning first=315 second=242 amount=-1 -kerning first=74 second=1101 amount=-1 -kerning first=338 second=1240 amount=-2 -kerning first=100 second=268 amount=-2 -kerning first=960 second=231 amount=-1 -kerning first=1298 second=361 amount=-1 -kerning first=1257 second=1175 amount=-2 -kerning first=1035 second=373 amount=-4 -kerning first=1028 second=1202 amount=-2 -kerning first=58 second=357 amount=-1 -kerning first=61 second=117 amount=-1 -kerning first=201 second=269 amount=-1 -kerning first=8363 second=350 amount=-1 -kerning first=78 second=973 amount=-1 -kerning first=936 second=244 amount=-1 -kerning first=247 second=106 amount=1 -kerning first=160 second=118 amount=-4 -kerning first=36 second=1194 amount=-2 -kerning first=182 second=283 amount=-1 -kerning first=1046 second=83 amount=-1 -kerning first=65 second=67 amount=-2 -kerning first=1078 second=245 amount=-2 -kerning first=205 second=217 amount=-2 -kerning first=8369 second=290 amount=-2 -kerning first=900 second=257 amount=-1 -kerning first=1102 second=1299 amount=-1 -kerning first=228 second=119 amount=-1 -kerning first=343 second=963 amount=-1 -kerning first=105 second=371 amount=-1 -kerning first=102 second=1195 amount=-1 -kerning first=962 second=1090 amount=-3 -kerning first=965 second=334 amount=-2 -kerning first=274 second=218 amount=-2 -kerning first=1047 second=258 amount=-1 -kerning first=186 second=230 amount=-1 -kerning first=298 second=360 amount=-2 -kerning first=203 second=947 amount=-4 -kerning first=206 second=372 amount=-5 -kerning first=8377 second=235 amount=-1 -kerning first=86 second=1240 amount=-2 -kerning first=1116 second=335 amount=-2 -kerning first=1119 second=97 amount=-1 -kerning first=1219 second=34 amount=-3 -kerning first=252 second=231 amount=-1 -kerning first=375 second=121 amount=-1 -kerning first=372 second=361 amount=-2 -kerning first=972 second=46 amount=-1 -kerning first=165 second=243 amount=-1 -kerning first=275 second=373 amount=-1 -kerning first=8218 second=86 amount=-4 -kerning first=184 second=1263 amount=-1 -kerning first=1084 second=350 amount=-1 -kerning first=902 second=1176 amount=-1 -kerning first=905 second=362 amount=-2 -kerning first=87 second=1085 amount=-2 -kerning first=910 second=122 amount=-2 -kerning first=1117 second=966 amount=-1 -kerning first=1168 second=275 amount=-1 -kerning first=90 second=332 amount=-1 -kerning first=350 second=1203 amount=-1 -kerning first=948 second=289 amount=-1 -kerning first=379 second=71 amount=-1 -kerning first=973 second=221 amount=-5 -kerning first=282 second=83 amount=-1 -kerning first=8220 second=261 amount=-1 -kerning first=1049 second=1177 amount=-1 -kerning first=191 second=333 amount=-1 -kerning first=306 second=245 amount=-1 -kerning first=214 second=257 amount=-1 -kerning first=903 second=8211 amount=-2 -kerning first=91 second=963 amount=-1 -kerning first=94 second=271 amount=-1 -kerning first=952 second=234 amount=-1 -kerning first=1223 second=364 amount=-2 -kerning first=254 second=1090 amount=-3 -kerning first=380 second=246 amount=-1 -kerning first=170 second=346 amount=-1 -kerning first=8225 second=211 amount=-2 -kerning first=52 second=360 amount=-2 -kerning first=1063 second=1059 amount=-2 -kerning first=1051 second=8212 amount=-2 -kerning first=195 second=273 amount=-1 -kerning first=198 second=45 amount=-2 -kerning first=192 second=964 amount=-3 -kerning first=75 second=287 amount=-1 -kerning first=238 second=347 amount=-1 -kerning first=361 second=259 amount=-1 -kerning first=115 second=1175 amount=-1 -kerning first=1219 second=8216 amount=-3 -kerning first=121 second=121 amount=-1 -kerning first=258 second=965 amount=-1 -kerning first=266 second=46 amount=-1 -kerning first=1240 second=196 amount=-2 -kerning first=175 second=288 amount=-2 -kerning first=8222 second=1184 amount=-5 -kerning first=8226 second=366 amount=-2 -kerning first=314 second=350 amount=-1 -kerning first=343 second=47 amount=-2 -kerning first=958 second=337 amount=-1 -kerning first=962 second=99 amount=-1 -kerning first=125 second=71 amount=-2 -kerning first=1263 second=940 amount=-1 -kerning first=40 second=83 amount=-1 -kerning first=1037 second=261 amount=-1 -kerning first=179 second=233 amount=-1 -kerning first=287 second=1177 amount=-1 -kerning first=60 second=245 amount=-1 -kerning first=200 second=375 amount=-1 -kerning first=318 second=290 amount=-2 -kerning first=1103 second=338 amount=-2 -kerning first=220 second=1051 amount=-1 -kerning first=934 second=352 amount=-1 -kerning first=960 second=968 amount=-1 -kerning first=963 second=277 amount=-1 -kerning first=126 second=246 amount=-1 -kerning first=268 second=376 amount=-2 -kerning first=1044 second=211 amount=-1 -kerning first=291 second=1059 amount=-2 -kerning first=1080 second=113 amount=-1 -kerning first=198 second=8249 amount=-3 -kerning first=207 second=85 amount=-2 -kerning first=84 second=335 amount=-3 -kerning first=87 second=97 amount=-2 -kerning first=107 second=259 amount=-1 -kerning first=110 second=34 amount=-1 -kerning first=1202 second=212 amount=-1 -kerning first=967 second=224 amount=-1 -kerning first=1039 second=1184 amount=-5 -kerning first=185 second=336 amount=-2 -kerning first=300 second=248 amount=-1 -kerning first=65 second=350 amount=-1 -kerning first=208 second=260 amount=-2 -kerning first=88 second=275 amount=-2 -kerning first=1118 second=225 amount=-1 -kerning first=251 second=337 amount=-1 -kerning first=254 second=99 amount=-1 -kerning first=371 second=940 amount=-1 -kerning first=374 second=249 amount=-2 -kerning first=167 second=111 amount=-1 -kerning first=164 second=351 amount=-1 -kerning first=274 second=953 amount=-1 -kerning first=43 second=1177 amount=-1 -kerning first=46 second=363 amount=-1 -kerning first=69 second=290 amount=-2 -kerning first=330 second=338 amount=-2 -kerning first=8377 second=972 amount=-1 -kerning first=904 second=941 amount=-1 -kerning first=946 second=1241 amount=-1 -kerning first=950 second=187 amount=-1 -kerning first=252 second=968 amount=-1 -kerning first=255 second=277 amount=-1 -kerning first=165 second=1035 amount=-5 -kerning first=168 second=291 amount=-1 -kerning first=1026 second=89 amount=-5 -kerning first=8218 second=369 amount=-1 -kerning first=47 second=1059 amount=-2 -kerning first=44 second=8212 amount=-1 -kerning first=1064 second=251 amount=-1 -kerning first=305 second=353 amount=-1 -kerning first=310 second=113 amount=-2 -kerning first=73 second=235 amount=-1 -kerning first=110 second=8216 amount=-1 -kerning first=1220 second=943 amount=-1 -kerning first=376 second=1118 amount=-2 -kerning first=1027 second=266 amount=-2 -kerning first=1034 second=39 amount=-2 -kerning first=282 second=366 amount=-2 -kerning first=8216 second=8222 amount=-1 -kerning first=8230 second=79 amount=-1 -kerning first=54 second=248 amount=-1 -kerning first=197 second=171 amount=-3 -kerning first=315 second=63 amount=-4 -kerning first=338 second=225 amount=-1 -kerning first=916 second=355 amount=-1 -kerning first=926 second=115 amount=-1 -kerning first=100 second=87 amount=-5 -kerning first=357 second=1185 amount=-3 -kerning first=117 second=940 amount=-1 -kerning first=35 second=261 amount=-1 -kerning first=1035 second=214 amount=-2 -kerning first=8225 second=945 amount=-1 -kerning first=1073 second=116 amount=-1 -kerning first=1069 second=356 amount=-2 -kerning first=78 second=338 amount=-2 -kerning first=221 second=250 amount=-2 -kerning first=339 second=380 amount=-1 -kerning first=936 second=65 amount=-3 -kerning first=358 second=8220 amount=-3 -kerning first=124 second=199 amount=-2 -kerning first=1299 second=357 amount=-1 -kerning first=1036 second=369 amount=-1 -kerning first=175 second=1098 amount=-3 -kerning first=178 second=339 amount=-1 -kerning first=182 second=101 amount=-1 -kerning first=294 second=251 amount=-1 -kerning first=59 second=353 amount=-1 -kerning first=62 second=113 amount=-1 -kerning first=202 second=263 amount=-1 -kerning first=8369 second=106 amount=1 -kerning first=105 second=212 amount=-2 -kerning first=1186 second=370 amount=-1 -kerning first=248 second=102 amount=-1 -kerning first=365 second=943 amount=-1 -kerning first=958 second=1256 amount=-2 -kerning first=125 second=354 amount=-5 -kerning first=274 second=39 amount=-3 -kerning first=37 second=1184 amount=-5 -kerning first=40 second=366 amount=-2 -kerning first=179 second=970 amount=-1 -kerning first=183 second=279 amount=-1 -kerning first=206 second=213 amount=-2 -kerning first=8365 second=1026 amount=-5 -kerning first=8370 second=286 amount=-2 -kerning first=901 second=253 amount=-1 -kerning first=86 second=225 amount=-3 -kerning first=1103 second=1257 amount=-1 -kerning first=103 second=1185 amount=-3 -kerning first=126 second=1038 amount=-2 -kerning first=1044 second=945 amount=-1 -kerning first=299 second=356 amount=-5 -kerning first=302 second=116 amount=-1 -kerning first=207 second=368 amount=-2 -kerning first=327 second=281 amount=-1 -kerning first=8378 second=231 amount=-1 -kerning first=87 second=380 amount=-1 -kerning first=104 second=8220 amount=-1 -kerning first=253 second=227 amount=-1 -kerning first=376 second=117 amount=-2 -kerning first=276 second=369 amount=-1 -kerning first=48 second=251 amount=-1 -kerning first=205 second=8221 amount=-3 -kerning first=208 second=1066 amount=-2 -kerning first=1118 second=962 amount=-1 -kerning first=251 second=1256 amount=-2 -kerning first=374 second=1044 amount=-5 -kerning first=8217 second=949 amount=-1 -kerning first=8221 second=257 amount=-1 -kerning first=1063 second=359 amount=-1 -kerning first=1066 second=119 amount=-1 -kerning first=304 second=920 amount=-2 -kerning first=1087 second=1026 amount=-5 -kerning first=1095 second=286 amount=-2 -kerning first=215 second=253 amount=-1 -kerning first=75 second=103 amount=-1 -kerning first=330 second=1257 amount=-1 -kerning first=908 second=1046 amount=-3 -kerning first=95 second=267 amount=-1 -kerning first=1224 second=360 amount=-2 -kerning first=381 second=242 amount=-1 -kerning first=1026 second=372 amount=-5 -kerning first=972 second=947 amount=-1 -kerning first=168 second=1101 amount=-1 -kerning first=53 second=356 amount=-5 -kerning first=56 second=116 amount=-1 -kerning first=196 second=268 amount=-2 -kerning first=73 second=972 amount=-1 -kerning first=1099 second=231 amount=-1 -kerning first=76 second=281 amount=-1 -kerning first=923 second=243 amount=-1 -kerning first=1176 second=373 amount=-4 -kerning first=951 second=1263 amount=-1 -kerning first=172 second=973 amount=-1 -kerning first=8224 second=1176 amount=-1 -kerning first=8230 second=362 amount=-1 -kerning first=8250 second=122 amount=-1 -kerning first=1071 second=244 amount=-1 -kerning first=200 second=216 amount=-2 -kerning first=318 second=106 amount=1 -kerning first=80 second=228 amount=-1 -kerning first=223 second=118 amount=-4 -kerning first=338 second=962 amount=-1 -kerning first=100 second=370 amount=-2 -kerning first=960 second=333 amount=-1 -kerning first=126 second=67 amount=-2 -kerning first=41 second=79 amount=-2 -kerning first=1035 second=949 amount=-1 -kerning first=180 second=229 amount=-1 -kerning first=296 second=119 amount=-4 -kerning first=8225 second=8211 amount=-2 -kerning first=291 second=359 amount=-1 -kerning first=58 second=920 amount=-2 -kerning first=201 second=371 amount=-1 -kerning first=198 second=1195 amount=-1 -kerning first=316 second=1026 amount=-5 -kerning first=321 second=286 amount=-2 -kerning first=8366 second=234 amount=-1 -kerning first=78 second=1257 amount=-1 -kerning first=1101 second=1090 amount=-1 -kerning first=936 second=346 amount=-1 -kerning first=1194 second=258 amount=-1 -kerning first=247 second=230 amount=-1 -kerning first=367 second=360 amount=-2 -kerning first=964 second=273 amount=-1 -kerning first=967 second=45 amount=-2 -kerning first=160 second=242 amount=-1 -kerning first=961 second=964 amount=-1 -kerning first=39 second=945 amount=-1 -kerning first=182 second=1240 amount=-2 -kerning first=178 second=1262 amount=-2 -kerning first=1074 second=1108 amount=-1 -kerning first=1078 second=347 amount=-1 -kerning first=202 second=1069 amount=-1 -kerning first=325 second=231 amount=-1 -kerning first=900 second=361 amount=-1 -kerning first=903 second=121 amount=-1 -kerning first=346 second=373 amount=-1 -kerning first=942 second=288 amount=-2 -kerning first=968 second=220 amount=-2 -kerning first=8211 second=260 amount=-2 -kerning first=1041 second=1176 amount=-1 -kerning first=186 second=332 amount=-2 -kerning first=301 second=244 amount=-1 -kerning first=69 second=106 amount=1 -kerning first=1083 second=289 amount=-1 -kerning first=8377 second=337 amount=-1 -kerning first=86 second=962 amount=-1 -kerning first=1119 second=221 amount=-5 -kerning first=946 second=233 amount=-1 -kerning first=252 second=333 amount=-1 -kerning first=375 second=245 amount=-1 -kerning first=278 second=257 amount=-1 -kerning first=8218 second=210 amount=-1 -kerning first=1241 second=1299 amount=-1 -kerning first=47 second=359 amount=-1 -kerning first=50 second=119 amount=-4 -kerning first=1044 second=8211 amount=-2 -kerning first=190 second=271 amount=-1 -kerning first=70 second=286 amount=-2 -kerning first=67 second=1026 amount=-1 -kerning first=1090 second=234 amount=-1 -kerning first=327 second=1090 amount=-3 -kerning first=8378 second=968 amount=-1 -kerning first=93 second=218 amount=-2 -kerning first=1168 second=376 amount=-5 -kerning first=910 second=246 amount=-4 -kerning first=356 second=258 amount=-6 -kerning first=113 second=360 amount=-2 -kerning first=1202 second=8212 amount=-2 -kerning first=256 second=273 amount=-1 -kerning first=253 second=964 amount=-3 -kerning first=967 second=8249 amount=-3 -kerning first=1027 second=85 amount=-2 -kerning first=169 second=287 amount=-1 -kerning first=194 second=219 amount=-2 -kerning first=303 second=1108 amount=-1 -kerning first=306 second=347 amount=-1 -kerning first=74 second=231 amount=-1 -kerning first=214 second=361 amount=-1 -kerning first=94 second=373 amount=-4 -kerning first=1118 second=8250 amount=-1 -kerning first=237 second=288 amount=-2 -kerning first=952 second=336 amount=-2 -kerning first=260 second=220 amount=-2 -kerning first=1028 second=260 amount=-1 -kerning first=174 second=232 amount=-1 -kerning first=280 second=1176 amount=-1 -kerning first=55 second=244 amount=-1 -kerning first=1069 second=197 amount=-2 -kerning first=195 second=374 amount=-5 -kerning first=313 second=289 amount=-1 -kerning first=221 second=71 amount=-3 -kerning first=928 second=111 amount=-1 -kerning first=358 second=1177 amount=-1 -kerning first=361 second=363 amount=-1 -kerning first=953 second=967 amount=-2 -kerning first=121 second=245 amount=-1 -kerning first=36 second=257 amount=-1 -kerning first=1036 second=210 amount=-3 -kerning first=8226 second=941 amount=-1 -kerning first=202 second=84 amount=-5 -kerning first=317 second=234 amount=-1 -kerning first=8361 second=1241 amount=-1 -kerning first=8364 second=187 amount=-1 -kerning first=1099 second=968 amount=-1 -kerning first=340 second=376 amount=-2 -kerning first=923 second=1035 amount=-5 -kerning first=931 second=291 amount=-1 -kerning first=1186 second=211 amount=-1 -kerning first=1037 second=365 amount=-1 -kerning first=179 second=335 amount=-1 -kerning first=183 second=97 amount=-1 -kerning first=57 second=1108 amount=-1 -kerning first=60 second=347 amount=-1 -kerning first=203 second=259 amount=-1 -kerning first=206 second=34 amount=-3 -kerning first=86 second=46 amount=-4 -kerning first=80 second=965 amount=-1 -kerning first=338 second=8250 amount=-1 -kerning first=369 second=248 amount=-1 -kerning first=126 second=350 amount=-1 -kerning first=38 second=1176 amount=-1 -kerning first=41 second=362 amount=-2 -kerning first=1035 second=8217 amount=-3 -kerning first=180 second=966 amount=-1 -kerning first=184 second=275 amount=-1 -kerning first=64 second=289 amount=-1 -kerning first=327 second=99 amount=-1 -kerning first=902 second=249 amount=-1 -kerning first=163 second=290 amount=-2 -kerning first=276 second=210 amount=-2 -kerning first=1049 second=250 amount=-1 -kerning first=1046 second=941 amount=-2 -kerning first=300 second=352 amount=-1 -kerning first=1081 second=1241 amount=-1 -kerning first=1085 second=187 amount=-1 -kerning first=325 second=968 amount=-1 -kerning first=906 second=199 amount=-2 -kerning first=354 second=211 amount=-1 -kerning first=942 second=1098 amount=-3 -kerning first=108 second=1059 amount=-2 -kerning first=105 second=8212 amount=-2 -kerning first=1210 second=251 amount=-1 -kerning first=374 second=353 amount=-3 -kerning first=377 second=113 amount=-1 -kerning first=971 second=263 amount=-1 -kerning first=167 second=235 amount=-1 -kerning first=8211 second=1066 amount=-4 -kerning first=206 second=8216 amount=-3 -kerning first=8377 second=1256 amount=-2 -kerning first=904 second=1118 amount=-1 -kerning first=86 second=8250 amount=-2 -kerning first=908 second=354 amount=-2 -kerning first=89 second=1075 amount=-3 -kerning first=1170 second=266 amount=-2 -kerning first=352 second=1184 amount=-1 -kerning first=946 second=970 amount=-1 -kerning first=950 second=279 amount=-1 -kerning first=258 second=171 amount=-3 -kerning first=1026 second=213 amount=-2 -kerning first=275 second=8217 amount=-1 -kerning first=286 second=75 amount=2 -kerning first=8222 second=253 amount=-1 -kerning first=1067 second=115 amount=-1 -kerning first=1064 second=355 amount=-1 -kerning first=196 second=87 amount=-5 -kerning first=70 second=1096 amount=-1 -kerning first=73 second=337 amount=-1 -kerning first=76 second=99 amount=-1 -kerning first=334 second=379 amount=-1 -kerning first=93 second=953 amount=-1 -kerning first=96 second=261 amount=-1 -kerning first=1176 second=214 amount=-2 -kerning first=954 second=226 amount=-1 -kerning first=1256 second=356 amount=-2 -kerning first=1263 second=116 amount=-1 -kerning first=262 second=88 amount=-2 -kerning first=1027 second=368 amount=-2 -kerning first=172 second=338 amount=-2 -kerning first=176 second=100 amount=-1 -kerning first=282 second=941 amount=-1 -kerning first=287 second=250 amount=-1 -kerning first=54 second=352 amount=-1 -kerning first=197 second=262 amount=-2 -kerning first=311 second=1241 amount=-2 -kerning first=74 second=968 amount=-1 -kerning first=77 second=277 amount=-1 -kerning first=100 second=211 amount=-2 -kerning first=237 second=1098 amount=-3 -kerning first=240 second=339 amount=-1 -kerning first=363 second=251 amount=-1 -kerning first=123 second=113 amount=-1 -kerning first=120 second=353 amount=-1 -kerning first=35 second=365 amount=-1 -kerning first=1028 second=1066 amount=-1 -kerning first=8260 second=118 amount=-4 -kerning first=1069 second=916 amount=-2 -kerning first=1073 second=240 amount=-1 -kerning first=201 second=212 amount=-2 -kerning first=8363 second=283 amount=-1 -kerning first=1101 second=382 amount=-1 -kerning first=1299 second=920 amount=-2 -kerning first=1039 second=253 amount=-1 -kerning first=182 second=225 amount=-1 -kerning first=294 second=355 amount=-1 -kerning first=297 second=115 amount=-1 -kerning first=8249 second=1046 amount=-1 -kerning first=202 second=367 amount=-1 -kerning first=8369 second=230 amount=-1 -kerning first=1102 second=1083 amount=-1 -kerning first=931 second=1101 amount=-1 -kerning first=1186 second=945 amount=-1 -kerning first=371 second=116 amount=-1 -kerning first=965 second=268 amount=-2 -kerning first=43 second=250 amount=-1 -kerning first=40 second=941 amount=-1 -kerning first=63 second=1241 amount=-1 -kerning first=200 second=8220 amount=-3 -kerning first=8365 second=1263 amount=-1 -kerning first=901 second=357 amount=-1 -kerning first=904 second=117 amount=-1 -kerning first=86 second=326 amount=-2 -kerning first=1116 second=269 amount=-2 -kerning first=271 second=1066 amount=-5 -kerning first=8212 second=256 amount=-2 -kerning first=302 second=240 amount=-1 -kerning first=1084 second=283 amount=-1 -kerning first=207 second=943 amount=-1 -kerning first=8378 second=333 amount=-1 -kerning first=910 second=67 amount=-3 -kerning first=93 second=39 amount=-3 -kerning first=1168 second=217 amount=-2 -kerning first=90 second=266 amount=-1 -kerning first=345 second=8222 amount=-3 -kerning first=948 second=229 amount=-1 -kerning first=356 second=79 amount=-1 -kerning first=1220 second=119 amount=-4 -kerning first=376 second=241 amount=-3 -kerning first=967 second=1195 amount=-1 -kerning first=169 second=103 amount=-1 -kerning first=48 second=355 amount=-1 -kerning first=51 second=115 amount=-1 -kerning first=191 second=267 amount=-1 -kerning first=94 second=214 amount=-2 -kerning first=1118 second=947 amount=-4 -kerning first=354 second=945 amount=-3 -kerning first=117 second=116 amount=-1 -kerning first=971 second=1069 amount=-1 -kerning first=167 second=972 amount=-1 -kerning first=170 second=281 amount=-1 -kerning first=8225 second=121 amount=-1 -kerning first=55 second=65 amount=-5 -kerning first=1087 second=1263 amount=-1 -kerning first=75 second=227 amount=-1 -kerning first=215 second=357 amount=-1 -kerning first=95 second=369 amount=-1 -kerning first=950 second=1085 amount=-2 -kerning first=1033 second=256 amount=-1 -kerning first=175 second=228 amount=-1 -kerning first=289 second=118 amount=-4 -kerning first=56 second=240 amount=-1 -kerning first=1070 second=193 amount=-2 -kerning first=193 second=1194 amount=-2 -kerning first=196 second=370 amount=-2 -kerning first=314 second=283 amount=-1 -kerning first=8361 second=233 amount=-1 -kerning first=73 second=1256 amount=-2 -kerning first=1099 second=333 amount=-1 -kerning first=216 second=1044 amount=-1 -kerning first=1176 second=949 amount=-1 -kerning first=365 second=119 amount=-4 -kerning first=958 second=271 amount=-1 -kerning first=954 second=963 amount=-2 -kerning first=37 second=253 amount=-1 -kerning first=172 second=1257 amount=-1 -kerning first=1071 second=346 amount=-1 -kerning first=318 second=230 amount=-1 -kerning first=1103 second=273 amount=-1 -kerning first=223 second=242 amount=-1 -kerning first=220 second=923 amount=-2 -kerning first=338 second=947 amount=-4 -kerning first=934 second=287 amount=-1 -kerning first=100 second=945 amount=-1 -kerning first=240 second=1262 amount=-2 -kerning first=963 second=219 amount=-2 -kerning first=1298 second=1108 amount=-1 -kerning first=271 second=81 amount=-2 -kerning first=296 second=243 amount=-1 -kerning first=1073 second=1028 amount=-2 -kerning first=316 second=1263 amount=-1 -kerning first=8366 second=336 amount=-2 -kerning first=84 second=269 amount=-3 -kerning first=247 second=332 amount=-2 -kerning first=964 second=374 amount=-5 -kerning first=961 second=1203 amount=-2 -kerning first=163 second=106 amount=1 -kerning first=45 second=118 amount=-1 -kerning first=1049 second=71 amount=-2 -kerning first=182 second=962 amount=-1 -kerning first=65 second=283 amount=-1 -kerning first=1081 second=233 amount=-1 -kerning first=325 second=333 amount=-1 -kerning first=903 second=245 amount=-1 -kerning first=108 second=359 amount=-1 -kerning first=111 second=119 amount=-1 -kerning first=1186 second=8211 amount=-2 -kerning first=251 second=271 amount=-1 -kerning first=374 second=194 amount=-5 -kerning first=971 second=84 amount=-5 -kerning first=161 second=1026 amount=-5 -kerning first=164 second=286 amount=-2 -kerning first=1051 second=246 amount=-1 -kerning first=189 second=218 amount=-2 -kerning first=301 second=346 amount=-1 -kerning first=69 second=230 amount=-1 -kerning first=209 second=360 amount=-2 -kerning first=326 second=964 amount=-1 -kerning first=330 second=273 amount=-1 -kerning first=86 second=947 amount=-4 -kerning first=1170 second=85 amount=-2 -kerning first=946 second=335 amount=-1 -kerning first=950 second=97 amount=-1 -kerning first=255 second=219 amount=-2 -kerning first=372 second=1108 amount=-3 -kerning first=375 second=347 amount=-1 -kerning first=1026 second=34 amount=-3 -kerning first=168 second=231 amount=-1 -kerning first=275 second=1175 amount=-2 -kerning first=278 second=361 amount=-1 -kerning first=50 second=243 amount=-1 -kerning first=190 second=373 amount=-4 -kerning first=187 second=1202 amount=-3 -kerning first=302 second=1028 amount=-2 -kerning first=305 second=288 amount=-2 -kerning first=910 second=350 amount=-1 -kerning first=236 second=232 amount=-1 -kerning first=948 second=966 amount=-1 -kerning first=951 second=275 amount=-1 -kerning first=1256 second=197 amount=-2 -kerning first=256 second=374 amount=-5 -kerning first=376 second=1033 amount=-5 -kerning first=287 second=71 amount=-2 -kerning first=8220 second=940 amount=-1 -kerning first=8224 second=249 amount=-1 -kerning first=197 second=83 amount=-1 -kerning first=311 second=233 amount=-2 -kerning first=74 second=333 amount=-1 -kerning first=916 second=290 amount=-2 -kerning first=94 second=949 amount=-1 -kerning first=234 second=1299 amount=-1 -kerning first=354 second=8211 amount=-4 -kerning first=174 second=334 amount=-2 -kerning first=170 second=1090 amount=-3 -kerning first=8240 second=199 amount=-2 -kerning first=55 second=346 amount=-1 -kerning first=1066 second=1035 amount=-5 -kerning first=78 second=273 amount=-1 -kerning first=8363 second=101 amount=-1 -kerning first=75 second=964 amount=-4 -kerning first=928 second=235 amount=-1 -kerning first=121 second=347 amount=-1 -kerning first=118 second=1108 amount=-1 -kerning first=269 second=34 amount=-1 -kerning first=36 second=361 amount=-1 -kerning first=1026 second=8216 amount=-3 -kerning first=175 second=965 amount=-1 -kerning first=8226 second=1118 amount=-1 -kerning first=8249 second=354 amount=-1 -kerning first=56 second=1028 amount=-2 -kerning first=59 second=288 amount=-2 -kerning first=317 second=336 amount=-2 -kerning first=8364 second=279 amount=-1 -kerning first=8361 second=970 amount=-1 -kerning first=1102 second=378 amount=-1 -kerning first=1176 second=8217 amount=-3 -kerning first=248 second=47 amount=-1 -kerning first=368 second=197 amount=-2 -kerning first=965 second=87 amount=-5 -kerning first=125 second=289 amount=-1 -kerning first=43 second=71 amount=-2 -kerning first=1037 second=940 amount=-1 -kerning first=1041 second=249 amount=-1 -kerning first=183 second=221 amount=-5 -kerning first=298 second=111 amount=-1 -kerning first=63 second=233 amount=-1 -kerning first=203 second=363 amount=-1 -kerning first=200 second=1177 amount=-1 -kerning first=8370 second=226 amount=-1 -kerning first=100 second=8211 amount=-2 -kerning first=1187 second=941 amount=-1 -kerning first=369 second=352 amount=-1 -kerning first=372 second=112 amount=-2 -kerning first=162 second=234 amount=-1 -kerning first=271 second=364 amount=-2 -kerning first=1048 second=199 amount=-2 -kerning first=184 second=376 amount=-5 -kerning first=296 second=1035 amount=-5 -kerning first=299 second=291 amount=-1 -kerning first=1076 second=1098 amount=-2 -kerning first=1080 second=339 amount=-1 -kerning first=204 second=1059 amount=-2 -kerning first=201 second=8212 amount=-2 -kerning first=1084 second=101 amount=-1 -kerning first=905 second=113 amount=-1 -kerning first=902 second=353 amount=-1 -kerning first=84 second=1074 amount=-2 -kerning first=1117 second=263 amount=-1 -kerning first=269 second=8216 amount=-1 -kerning first=1046 second=1118 amount=-1 -kerning first=1049 second=354 amount=-5 -kerning first=182 second=8250 amount=-1 -kerning first=1081 second=970 amount=-1 -kerning first=1085 second=279 amount=-1 -kerning first=88 second=952 amount=-2 -kerning first=1210 second=355 amount=-1 -kerning first=1223 second=115 amount=-1 -kerning first=968 second=1185 amount=-3 -kerning first=971 second=367 amount=-1 -kerning first=167 second=337 amount=-1 -kerning first=170 second=99 amount=-1 -kerning first=280 second=249 amount=-1 -kerning first=52 second=111 amount=-1 -kerning first=1051 second=1038 amount=-2 -kerning first=49 second=351 amount=-1 -kerning first=192 second=261 amount=-1 -kerning first=189 second=953 amount=-1 -kerning first=1095 second=226 amount=-1 -kerning first=336 second=88 amount=-3 -kerning first=95 second=210 amount=-2 -kerning first=1170 second=368 amount=-2 -kerning first=238 second=100 amount=-1 -kerning first=358 second=250 amount=-1 -kerning first=258 second=262 amount=-2 -kerning first=1262 second=65 amount=-2 -kerning first=378 second=1241 amount=-1 -kerning first=168 second=968 amount=-1 -kerning first=8222 second=357 amount=-1 -kerning first=8226 second=117 amount=-1 -kerning first=50 second=1035 amount=-5 -kerning first=53 second=291 amount=-1 -kerning first=196 second=211 amount=-2 -kerning first=305 second=1098 amount=-3 -kerning first=314 second=101 amount=-1 -kerning first=310 second=339 amount=-2 -kerning first=334 second=955 amount=-2 -kerning first=96 second=365 amount=-1 -kerning first=1171 second=1066 amount=-5 -kerning first=1168 second=8221 amount=-3 -kerning first=1263 second=240 amount=-1 -kerning first=1256 second=916 amount=-2 -kerning first=1027 second=943 amount=-1 -kerning first=176 second=224 amount=-1 -kerning first=287 second=354 amount=-5 -kerning first=282 second=1118 amount=-1 -kerning first=194 second=1184 amount=-5 -kerning first=197 second=366 amount=-2 -kerning first=315 second=279 amount=-1 -kerning first=80 second=171 amount=-3 -kerning first=94 second=8217 amount=-3 -kerning first=934 second=103 amount=-1 -kerning first=1184 second=253 amount=-2 -kerning first=363 second=355 amount=-1 -kerning first=960 second=267 amount=-1 -kerning first=260 second=1185 amount=-3 -kerning first=38 second=249 amount=-1 -kerning first=35 second=940 amount=-1 -kerning first=8260 second=242 amount=-1 -kerning first=8363 second=1240 amount=-2 -kerning first=321 second=226 amount=-1 -kerning first=928 second=972 amount=-1 -kerning first=936 second=281 amount=-1 -kerning first=244 second=380 amount=-1 -kerning first=370 second=65 amount=-2 -kerning first=124 second=1241 amount=-1 -kerning first=160 second=187 amount=-1 -kerning first=261 second=8220 amount=-1 -kerning first=42 second=199 amount=-2 -kerning first=1039 second=357 amount=-1 -kerning first=178 second=1079 amount=-1 -kerning first=185 second=89 amount=-5 -kerning first=1046 second=117 amount=-1 -kerning first=59 second=1098 amount=-3 -kerning first=62 second=339 amount=-1 -kerning first=1074 second=973 amount=-1 -kerning first=65 second=101 amount=-1 -kerning first=205 second=251 amount=-1 -kerning first=8369 second=332 amount=-2 -kerning first=88 second=38 amount=-2 -kerning first=942 second=228 amount=-1 -kerning first=371 second=240 amount=-1 -kerning first=368 second=916 amount=-2 -kerning first=962 second=1194 amount=-2 -kerning first=965 second=370 amount=-2 -kerning first=274 second=252 amount=-1 -kerning first=43 second=354 amount=-5 -kerning first=40 second=1118 amount=-1 -kerning first=1051 second=67 amount=-2 -kerning first=186 second=266 amount=-2 -kerning first=189 second=39 amount=-3 -kerning first=63 second=970 amount=-1 -kerning first=1083 second=229 amount=-1 -kerning first=8370 second=963 amount=-1 -kerning first=8377 second=271 amount=-1 -kerning first=901 second=920 amount=-2 -kerning first=89 second=213 amount=-3 -kerning first=252 second=267 amount=-1 -kerning first=1241 second=1083 amount=-1 -kerning first=44 second=1038 amount=-1 -kerning first=190 second=214 amount=-2 -kerning first=299 second=1101 amount=-1 -kerning first=70 second=226 amount=-1 -kerning first=1080 second=1262 amount=-2 -kerning first=1084 second=1240 amount=-2 -kerning first=210 second=356 amount=-2 -kerning first=1117 second=1069 amount=-1 -kerning first=1171 second=81 amount=-2 -kerning first=1220 second=243 amount=-1 -kerning first=376 second=343 amount=-3 -kerning first=169 second=227 amount=-1 -kerning first=282 second=117 amount=-1 -kerning first=191 second=369 amount=-1 -kerning first=303 second=973 amount=-1 -kerning first=916 second=106 amount=1 -kerning first=91 second=1066 amount=-5 -kerning first=237 second=228 amount=-1 -kerning first=117 second=240 amount=-1 -kerning first=254 second=1194 amount=-2 -kerning first=380 second=283 amount=-1 -kerning first=167 second=1256 amount=-2 -kerning first=8225 second=245 amount=-1 -kerning first=198 second=79 amount=-2 -kerning first=1095 second=963 amount=-1 -kerning first=1101 second=44 amount=-1 -kerning first=215 second=920 amount=-2 -kerning first=912 second=1026 amount=-5 -kerning first=956 second=218 amount=-2 -kerning first=289 second=242 amount=-1 -kerning first=53 second=1101 amount=-1 -kerning first=196 second=945 amount=-1 -kerning first=314 second=1240 amount=-2 -kerning first=8361 second=335 amount=-1 -kerning first=8364 second=97 amount=-1 -kerning first=931 second=231 amount=-1 -kerning first=365 second=243 amount=-1 -kerning first=958 second=373 amount=-4 -kerning first=1263 second=1028 amount=-2 -kerning first=37 second=357 amount=-1 -kerning first=40 second=117 amount=-1 -kerning first=179 second=269 amount=-1 -kerning first=8250 second=350 amount=-1 -kerning first=57 second=973 amount=-1 -kerning first=1075 second=232 amount=-1 -kerning first=318 second=332 amount=-2 -kerning first=8365 second=275 amount=-1 -kerning first=1100 second=1203 amount=-2 -kerning first=1103 second=374 amount=-5 -kerning first=226 second=106 amount=1 -kerning first=126 second=283 amount=-1 -kerning first=44 second=67 amount=-1 -kerning first=1044 second=245 amount=-1 -kerning first=184 second=217 amount=-2 -kerning first=64 second=229 amount=-1 -kerning first=1073 second=1299 amount=-1 -kerning first=207 second=119 amount=-4 -kerning first=204 second=359 amount=-1 -kerning first=321 second=963 amount=-1 -kerning first=84 second=371 amount=-2 -kerning first=1117 second=84 amount=-5 -kerning first=936 second=1090 amount=-3 -kerning first=1202 second=246 amount=-1 -kerning first=250 second=218 amount=-2 -kerning first=163 second=230 amount=-1 -kerning first=273 second=360 amount=-2 -kerning first=182 second=947 amount=-4 -kerning first=185 second=372 amount=-5 -kerning first=300 second=287 amount=-1 -kerning first=65 second=1240 amount=-2 -kerning first=62 second=1262 amount=-2 -kerning first=1081 second=335 amount=-1 -kerning first=1085 second=97 amount=-1 -kerning first=900 second=1108 amount=-1 -kerning first=903 second=347 amount=-1 -kerning first=91 second=81 amount=-2 -kerning first=1118 second=259 amount=-1 -kerning first=346 second=1175 amount=-1 -kerning first=354 second=121 amount=-2 -kerning first=942 second=965 amount=-1 -kerning first=251 second=373 amount=-4 -kerning first=371 second=1028 amount=-2 -kerning first=374 second=288 amount=-3 -kerning first=161 second=1263 amount=-1 -kerning first=8217 second=248 amount=-1 -kerning first=1051 second=350 amount=-1 -kerning first=304 second=232 amount=-1 -kerning first=69 second=332 amount=-2 -kerning first=1083 second=966 amount=-1 -kerning first=1087 second=275 amount=-1 -kerning first=330 second=374 amount=-5 -kerning first=358 second=71 amount=-2 -kerning first=950 second=221 amount=-5 -kerning first=1224 second=111 amount=-1 -kerning first=1219 second=351 amount=-1 -kerning first=258 second=83 amount=-1 -kerning first=378 second=233 amount=-1 -kerning first=168 second=333 amount=-1 -kerning first=1064 second=290 amount=-2 -kerning first=190 second=949 amount=-1 -kerning first=193 second=257 amount=-1 -kerning first=70 second=963 amount=-1 -kerning first=73 second=271 amount=-1 -kerning first=216 second=194 amount=-2 -kerning first=915 second=234 amount=-1 -kerning first=1171 second=364 amount=-2 -kerning first=233 second=1090 amount=-1 -kerning first=236 second=334 amount=-2 -kerning first=951 second=376 amount=-5 -kerning first=113 second=1107 amount=2 -kerning first=1220 second=1035 amount=-5 -kerning first=256 second=950 amount=-1 -kerning first=973 second=1059 amount=-2 -kerning first=172 second=273 amount=-1 -kerning first=176 second=45 amount=-2 -kerning first=169 second=964 amount=-3 -kerning first=8224 second=353 amount=-1 -kerning first=54 second=287 amount=-1 -kerning first=311 second=335 amount=-2 -kerning first=77 second=219 amount=-2 -kerning first=214 second=1108 amount=-1 -kerning first=338 second=259 amount=-1 -kerning first=100 second=121 amount=-1 -kerning first=1184 second=74 amount=-1 -kerning first=237 second=965 amount=-1 -kerning first=243 second=46 amount=-1 -kerning first=117 second=1028 amount=-2 -kerning first=1035 second=248 amount=-1 -kerning first=177 second=220 amount=-2 -kerning first=283 second=1113 amount=-1 -kerning first=58 second=232 amount=-1 -kerning first=198 second=362 amount=-2 -kerning first=195 second=1176 amount=-1 -kerning first=313 second=966 amount=-1 -kerning first=316 second=275 amount=-1 -kerning first=8363 second=225 amount=-1 -kerning first=78 second=374 amount=-5 -kerning first=218 second=1033 amount=-1 -kerning first=221 second=289 amount=-4 -kerning first=928 second=337 amount=-1 -kerning first=936 second=99 amount=-1 -kerning first=1178 second=940 amount=-1 -kerning first=367 second=111 amount=-1 -kerning first=956 second=953 amount=-1 -kerning first=124 second=233 amount=-1 -kerning first=1240 second=967 amount=-1 -kerning first=39 second=245 amount=-1 -kerning first=178 second=375 amount=-1 -kerning first=294 second=290 amount=-2 -kerning first=1074 second=338 amount=-2 -kerning first=196 second=8211 amount=-2 -kerning first=199 second=1051 amount=-1 -kerning first=1078 second=100 amount=-2 -kerning first=931 second=968 amount=-1 -kerning first=105 second=246 amount=-1 -kerning first=365 second=1035 amount=-5 -kerning first=965 second=211 amount=-2 -kerning first=262 second=8212 amount=-1 -kerning first=1041 second=353 amount=-1 -kerning first=176 second=8249 amount=-3 -kerning first=186 second=85 amount=-2 -kerning first=298 second=235 amount=-1 -kerning first=63 second=335 amount=-1 -kerning first=86 second=259 amount=-1 -kerning first=963 second=1184 amount=-5 -kerning first=162 second=336 amount=-2 -kerning first=1241 second=378 amount=-1 -kerning first=47 second=110 amount=-1 -kerning first=187 second=260 amount=-3 -kerning first=70 second=47 amount=-2 -kerning first=64 second=966 amount=-1 -kerning first=1084 second=225 amount=-1 -kerning first=210 second=197 amount=-2 -kerning first=8378 second=267 amount=-1 -kerning first=1117 second=367 amount=-1 -kerning first=113 second=111 amount=-1 -kerning first=1202 second=1038 amount=-1 -kerning first=253 second=261 amount=-1 -kerning first=250 second=953 amount=-1 -kerning first=48 second=290 amount=-2 -kerning first=191 second=210 amount=-2 -kerning first=303 second=338 amount=-2 -kerning first=306 second=100 amount=-1 -kerning first=906 second=1241 amount=-1 -kerning first=91 second=364 amount=-2 -kerning first=357 second=199 amount=-2 -kerning first=952 second=89 amount=-5 -kerning first=114 second=291 amount=-1 -kerning first=374 second=1098 amount=-2 -kerning first=377 second=339 amount=-1 -kerning first=380 second=101 amount=-1 -kerning first=280 second=353 amount=-1 -kerning first=52 second=235 amount=-1 -kerning first=192 second=365 amount=-1 -kerning first=1170 second=943 amount=-1 -kerning first=238 second=224 amount=-1 -kerning first=358 second=354 amount=-5 -kerning first=956 second=39 amount=-3 -kerning first=255 second=1184 amount=-5 -kerning first=258 second=366 amount=-2 -kerning first=381 second=279 amount=-1 -kerning first=175 second=171 amount=-3 -kerning first=8222 second=920 amount=-1 -kerning first=193 second=1063 amount=-3 -kerning first=190 second=8217 amount=-3 -kerning first=314 second=225 amount=-1 -kerning first=79 second=87 amount=-2 -kerning first=1099 second=267 amount=-1 -kerning first=96 second=940 amount=-1 -kerning first=958 second=214 amount=-2 -kerning first=1037 second=116 amount=-1 -kerning first=1034 second=356 amount=-5 -kerning first=57 second=338 amount=-2 -kerning first=60 second=100 amount=-1 -kerning first=1071 second=281 amount=-1 -kerning first=200 second=250 amount=-1 -kerning first=197 second=941 amount=-1 -kerning first=80 second=262 amount=-2 -kerning first=223 second=187 amount=-1 -kerning first=335 second=8220 amount=-1 -kerning first=934 second=227 amount=-1 -kerning first=103 second=199 amount=-2 -kerning first=1184 second=357 amount=-1 -kerning first=240 second=1079 amount=-1 -kerning first=960 second=369 amount=-1 -kerning first=123 second=339 amount=-1 -kerning first=1298 second=973 amount=-1 -kerning first=126 second=101 amount=-1 -kerning first=41 second=113 amount=-1 -kerning first=38 second=353 amount=-1 -kerning first=180 second=263 amount=-1 -kerning first=8363 second=962 amount=-1 -kerning first=84 second=212 amount=-1 -kerning first=221 second=1099 amount=-3 -kerning first=227 second=102 amount=-1 -kerning first=928 second=1256 amount=-2 -kerning first=1202 second=67 amount=-1 -kerning first=247 second=266 amount=-2 -kerning first=250 second=39 amount=-3 -kerning first=967 second=79 amount=-2 -kerning first=160 second=279 amount=-1 -kerning first=124 second=970 amount=-1 -kerning first=1039 second=920 amount=-2 -kerning first=185 second=213 amount=-2 -kerning first=300 second=103 amount=-1 -kerning first=65 second=225 amount=-1 -kerning first=1074 second=1257 amount=-1 -kerning first=205 second=355 amount=-1 -kerning first=325 second=267 amount=-1 -kerning first=105 second=1038 amount=-2 -kerning first=1203 second=242 amount=-1 -kerning first=251 second=214 amount=-2 -kerning first=965 second=945 amount=-1 -kerning first=164 second=226 amount=-1 -kerning first=274 second=356 amount=-5 -kerning first=186 second=368 amount=-2 -kerning first=298 second=972 amount=-1 -kerning first=301 second=281 amount=-1 -kerning first=212 second=65 amount=-2 -kerning first=8377 second=373 amount=-4 -kerning first=946 second=269 amount=-1 -kerning first=252 second=369 amount=-1 -kerning first=372 second=973 amount=-2 -kerning first=1064 second=106 amount=1 -kerning first=184 second=8221 amount=-3 -kerning first=187 second=1066 amount=-3 -kerning first=305 second=228 amount=-1 -kerning first=1084 second=962 amount=-1 -kerning first=210 second=916 amount=-2 -kerning first=327 second=1194 amount=-2 -kerning first=910 second=283 amount=-4 -kerning first=93 second=252 amount=-1 -kerning first=233 second=382 amount=-1 -kerning first=951 second=217 amount=-2 -kerning first=1027 second=119 amount=-4 -kerning first=973 second=359 amount=-1 -kerning first=54 second=103 amount=-1 -kerning first=1062 second=1026 amount=-2 -kerning first=1065 second=286 amount=-1 -kerning first=194 second=253 amount=-1 -kerning first=303 second=1257 amount=-1 -kerning first=74 second=267 amount=-1 -kerning first=916 second=230 amount=-1 -kerning first=1174 second=360 amount=-1 -kerning first=234 second=1083 amount=-1 -kerning first=1177 second=120 amount=-1 -kerning first=949 second=947 amount=-1 -kerning first=952 second=372 amount=-5 -kerning first=35 second=116 amount=-1 -kerning first=174 second=268 amount=-2 -kerning first=8225 second=347 amount=-1 -kerning first=8221 second=1108 amount=-1 -kerning first=52 second=972 amount=-1 -kerning first=55 second=281 amount=-1 -kerning first=912 second=1263 amount=-1 -kerning first=1299 second=232 amount=-1 -kerning first=1036 second=244 amount=-2 -kerning first=178 second=216 amount=-2 -kerning first=294 second=106 amount=1 -kerning first=59 second=228 amount=-1 -kerning first=202 second=118 amount=-4 -kerning first=314 second=962 amount=-1 -kerning first=8364 second=221 amount=-5 -kerning first=76 second=1194 amount=-1 -kerning first=931 second=333 amount=-1 -kerning first=105 second=67 amount=-2 -kerning first=1186 second=245 amount=-1 -kerning first=958 second=949 amount=-1 -kerning first=962 second=257 amount=-1 -kerning first=125 second=229 amount=-1 -kerning first=37 second=920 amount=-2 -kerning first=176 second=1195 amount=-1 -kerning first=179 second=371 amount=-1 -kerning first=290 second=1026 amount=-1 -kerning first=57 second=1257 amount=-1 -kerning first=1071 second=1090 amount=-3 -kerning first=323 second=218 amount=-2 -kerning first=8365 second=376 amount=-5 -kerning first=934 second=964 amount=-3 -kerning first=347 second=120 amount=-1 -kerning first=243 second=947 amount=-1 -kerning first=369 second=287 amount=-1 -kerning first=123 second=1262 amount=-2 -kerning first=126 second=1240 amount=-2 -kerning first=180 second=1069 amount=-1 -kerning first=299 second=231 amount=-1 -kerning first=207 second=243 amount=-1 -kerning first=324 second=373 amount=-1 -kerning first=8363 second=8250 amount=-1 -kerning first=902 second=288 amount=-2 -kerning first=944 second=220 amount=-2 -kerning first=373 second=232 amount=-1 -kerning first=967 second=362 amount=-2 -kerning first=964 second=1176 amount=-1 -kerning first=163 second=332 amount=-2 -kerning first=276 second=244 amount=-1 -kerning first=8216 second=197 amount=-3 -kerning first=1049 second=289 amount=-1 -kerning first=48 second=106 amount=1 -kerning first=65 second=962 amount=-1 -kerning first=1085 second=221 amount=-5 -kerning first=211 second=193 amount=-2 -kerning first=906 second=233 amount=-1 -kerning first=1118 second=363 amount=-1 -kerning first=354 second=245 amount=-3 -kerning first=1210 second=290 amount=-2 -kerning first=251 second=949 amount=-1 -kerning first=254 second=257 amount=-1 -kerning first=965 second=8211 amount=-2 -kerning first=164 second=963 amount=-1 -kerning first=167 second=271 amount=-1 -kerning first=49 second=286 amount=-2 -kerning first=1063 second=234 amount=-1 -kerning first=46 second=1026 amount=-5 -kerning first=301 second=1090 amount=-3 -kerning first=304 second=334 amount=-2 -kerning first=72 second=218 amount=-2 -kerning first=1087 second=376 amount=-5 -kerning first=92 second=360 amount=-2 -kerning first=1116 second=8212 amount=-3 -kerning first=1119 second=1059 amount=-2 -kerning first=232 second=964 amount=-1 -kerning first=238 second=45 amount=-2 -kerning first=1224 second=235 amount=-1 -kerning first=378 second=335 amount=-1 -kerning first=278 second=1108 amount=-1 -kerning first=53 second=231 amount=-1 -kerning first=193 second=361 amount=-1 -kerning first=305 second=965 amount=-1 -kerning first=196 second=121 amount=-1 -kerning first=73 second=373 amount=-4 -kerning first=1084 second=8250 amount=-1 -kerning first=915 second=336 amount=-2 -kerning first=1176 second=248 amount=-1 -kerning first=239 second=220 amount=-2 -kerning first=119 second=232 amount=-1 -kerning first=256 second=1176 amount=-1 -kerning first=379 second=966 amount=-1 -kerning first=382 second=275 amount=-1 -kerning first=34 second=244 amount=-1 -kerning first=1034 second=197 amount=-1 -kerning first=172 second=374 amount=-5 -kerning first=287 second=289 amount=-1 -kerning first=1071 second=99 amount=-1 -kerning first=200 second=71 amount=-2 -kerning first=315 second=221 amount=-6 -kerning first=80 second=83 amount=-1 -kerning first=338 second=363 amount=-1 -kerning first=100 second=245 amount=-1 -kerning first=240 second=375 amount=-1 -kerning first=363 second=290 amount=-2 -kerning first=960 second=210 amount=-2 -kerning first=1298 second=338 amount=-2 -kerning first=38 second=194 amount=-1 -kerning first=1035 second=352 amount=-1 -kerning first=180 second=84 amount=-5 -kerning first=291 second=234 amount=-1 -kerning first=8240 second=1241 amount=-1 -kerning first=8260 second=187 amount=-1 -kerning first=55 second=1090 amount=-3 -kerning first=58 second=334 amount=-2 -kerning first=1073 second=277 amount=-1 -kerning first=201 second=246 amount=-1 -kerning first=316 second=376 amount=-5 -kerning first=8366 second=89 amount=-5 -kerning first=81 second=258 amount=-2 -kerning first=1185 second=353 amount=-1 -kerning first=238 second=8249 amount=-3 -kerning first=247 second=85 amount=-2 -kerning first=367 second=235 amount=-1 -kerning first=124 second=335 amount=-1 -kerning first=160 second=97 amount=-1 -kerning first=36 second=1108 amount=-1 -kerning first=39 second=347 amount=-1 -kerning first=182 second=259 amount=-1 -kerning first=185 second=34 amount=-3 -kerning first=59 second=965 amount=-1 -kerning first=1078 second=224 amount=-1 -kerning first=314 second=8250 amount=-1 -kerning first=8369 second=266 amount=-2 -kerning first=942 second=171 amount=-3 -kerning first=105 second=350 amount=-1 -kerning first=958 second=8217 amount=-3 -kerning first=125 second=966 amount=-1 -kerning first=161 second=275 amount=-1 -kerning first=43 second=289 amount=-1 -kerning first=298 second=337 amount=-1 -kerning first=301 second=99 amount=-1 -kerning first=66 second=221 amount=-2 -kerning first=206 second=351 amount=-1 -kerning first=209 second=111 amount=-1 -kerning first=323 second=953 amount=-1 -kerning first=8377 second=214 amount=-2 -kerning first=86 second=363 amount=-1 -kerning first=352 second=198 amount=-1 -kerning first=252 second=210 amount=-2 -kerning first=375 second=100 amount=-1 -kerning first=372 second=338 amount=-2 -kerning first=47 second=234 amount=-2 -kerning first=1048 second=1241 amount=-1 -kerning first=299 second=968 amount=-1 -kerning first=302 second=277 amount=-1 -kerning first=67 second=376 amount=-2 -kerning first=1080 second=1079 amount=-1 -kerning first=207 second=1035 amount=-5 -kerning first=8378 second=369 amount=-1 -kerning first=902 second=1098 amount=-3 -kerning first=905 second=339 amount=-1 -kerning first=84 second=8212 amount=-4 -kerning first=910 second=101 amount=-4 -kerning first=1168 second=251 amount=-1 -kerning first=356 second=113 amount=-3 -kerning first=948 second=263 amount=-1 -kerning first=113 second=235 amount=-1 -kerning first=253 second=365 amount=-1 -kerning first=373 second=969 amount=-1 -kerning first=8216 second=916 amount=-3 -kerning first=8220 second=240 amount=-1 -kerning first=185 second=8216 amount=-3 -kerning first=194 second=74 amount=-1 -kerning first=306 second=224 amount=-1 -kerning first=65 second=8250 amount=-1 -kerning first=906 second=970 amount=-1 -kerning first=94 second=248 amount=-1 -kerning first=234 second=378 amount=-1 -kerning first=237 second=171 amount=-3 -kerning first=952 second=213 amount=-2 -kerning first=251 second=8217 amount=-3 -kerning first=174 second=87 amount=-5 -kerning first=52 second=337 amount=-1 -kerning first=55 second=99 amount=-1 -kerning first=192 second=940 amount=-1 -kerning first=195 second=249 amount=-1 -kerning first=72 second=953 amount=-1 -kerning first=75 second=261 amount=-1 -kerning first=235 second=1078 amount=-2 -kerning first=121 second=100 amount=-1 -kerning first=258 second=941 amount=-1 -kerning first=1224 second=972 amount=-1 -kerning first=175 second=262 amount=-2 -kerning first=289 second=187 amount=-1 -kerning first=53 second=968 amount=-1 -kerning first=56 second=277 amount=-1 -kerning first=310 second=1079 amount=-1 -kerning first=317 second=89 amount=-5 -kerning first=8361 second=269 amount=-1 -kerning first=1099 second=369 amount=-1 -kerning first=102 second=113 amount=-1 -kerning first=951 second=8221 amount=-3 -kerning first=119 second=969 amount=-1 -kerning first=1037 second=240 amount=-1 -kerning first=179 second=212 amount=-2 -kerning first=1034 second=916 amount=-1 -kerning first=295 second=102 amount=-1 -kerning first=60 second=224 amount=-1 -kerning first=200 second=354 amount=-5 -kerning first=197 second=1118 amount=-1 -kerning first=318 second=266 amount=-2 -kerning first=323 second=39 amount=-3 -kerning first=8365 second=217 amount=-2 -kerning first=77 second=1184 amount=-5 -kerning first=80 second=366 amount=-2 -kerning first=223 second=279 amount=-1 -kerning first=1184 second=920 amount=-3 -kerning first=369 second=103 amount=-1 -kerning first=963 second=253 amount=-1 -kerning first=126 second=225 amount=-1 -kerning first=1298 second=1257 amount=-1 -kerning first=271 second=115 amount=-1 -kerning first=177 second=1185 amount=-3 -kerning first=180 second=367 amount=-1 -kerning first=1073 second=1083 amount=-1 -kerning first=201 second=1038 amount=-2 -kerning first=8363 second=947 amount=-4 -kerning first=8366 second=372 amount=-5 -kerning first=247 second=368 amount=-2 -kerning first=367 second=972 amount=-1 -kerning first=42 second=1241 amount=-1 -kerning first=178 second=8220 amount=-3 -kerning first=300 second=227 amount=-1 -kerning first=62 second=1079 amount=-1 -kerning first=1081 second=269 amount=-1 -kerning first=68 second=89 amount=-3 -kerning first=325 second=369 amount=-1 -kerning first=900 second=973 amount=-1 -kerning first=88 second=251 amount=-1 -kerning first=1210 second=106 amount=1 -kerning first=245 second=8221 amount=-1 -kerning first=374 second=228 amount=-4 -kerning first=971 second=118 amount=-4 -kerning first=8217 second=193 amount=-3 -kerning first=1051 second=283 amount=-1 -kerning first=186 second=943 amount=-1 -kerning first=189 second=252 amount=-1 -kerning first=298 second=1256 amount=-2 -kerning first=69 second=266 amount=-2 -kerning first=72 second=39 amount=-3 -kerning first=1087 second=217 amount=-2 -kerning first=8377 second=949 amount=-1 -kerning first=1119 second=359 amount=-1 -kerning first=1170 second=119 amount=-4 -kerning first=946 second=371 amount=-1 -kerning first=1206 second=1026 amount=-2 -kerning first=1219 second=286 amount=-2 -kerning first=255 second=253 amount=-1 -kerning first=372 second=1257 amount=-3 -kerning first=168 second=267 amount=-1 -kerning first=1064 second=230 amount=-1 -kerning first=73 second=214 amount=-2 -kerning first=1084 second=947 amount=-4 -kerning first=905 second=1262 amount=-2 -kerning first=910 second=1240 amount=-3 -kerning first=93 second=356 amount=-5 -kerning first=96 second=116 amount=-1 -kerning first=236 second=268 amount=-2 -kerning first=948 second=1069 amount=-1 -kerning first=113 second=972 amount=-1 -kerning first=376 second=1084 amount=-3 -kerning first=34 second=65 amount=-3 -kerning first=1027 second=243 amount=-1 -kerning first=8224 second=288 amount=-2 -kerning first=54 second=227 amount=-1 -kerning first=194 second=357 amount=-1 -kerning first=197 second=117 amount=-1 -kerning first=311 second=269 amount=-2 -kerning first=74 second=369 amount=-1 -kerning first=214 second=973 amount=-1 -kerning first=916 second=332 amount=-2 -kerning first=240 second=216 amount=-2 -kerning first=363 second=106 amount=1 -kerning first=120 second=228 amount=-1 -kerning first=263 second=118 amount=-1 -kerning first=380 second=962 amount=-1 -kerning first=35 second=240 amount=-1 -kerning first=170 second=1194 amount=-2 -kerning first=174 second=370 amount=-2 -kerning first=8240 second=233 amount=-1 -kerning first=52 second=1256 amount=-2 -kerning first=201 second=67 amount=-2 -kerning first=316 second=217 amount=-2 -kerning first=221 second=229 amount=-4 -kerning first=928 second=271 amount=-1 -kerning first=238 second=1195 amount=-1 -kerning first=361 second=1026 amount=-5 -kerning first=118 second=1257 amount=-1 -kerning first=1299 second=334 amount=-2 -kerning first=1036 second=346 amount=-1 -kerning first=294 second=230 amount=-1 -kerning first=1074 second=273 amount=-1 -kerning first=202 second=242 amount=-1 -kerning first=199 second=923 amount=-1 -kerning first=1078 second=45 amount=-3 -kerning first=314 second=947 amount=-4 -kerning first=317 second=372 amount=-5 -kerning first=8369 second=85 amount=-2 -kerning first=1179 second=1108 amount=-1 -kerning first=962 second=361 amount=-1 -kerning first=965 second=121 amount=-1 -kerning first=1037 second=1028 amount=-2 -kerning first=1041 second=288 amount=-2 -kerning first=63 second=269 amount=-1 -kerning first=901 second=232 amount=-1 -kerning first=1103 second=1176 amount=-1 -kerning first=109 second=106 amount=1 -kerning first=947 second=289 amount=-1 -kerning first=366 second=1298 amount=-1 -kerning first=126 second=962 amount=-1 -kerning first=1048 second=233 amount=-1 -kerning first=299 second=333 amount=-1 -kerning first=1080 second=375 amount=-1 -kerning first=327 second=257 amount=-1 -kerning first=8378 second=210 amount=-2 -kerning first=233 second=44 amount=-1 -kerning first=948 second=84 amount=-5 -kerning first=1207 second=234 amount=-1 -kerning first=166 second=218 amount=-2 -kerning first=276 second=346 amount=-1 -kerning first=8216 second=291 amount=-1 -kerning first=48 second=230 amount=-1 -kerning first=188 second=360 amount=-2 -kerning first=306 second=45 amount=-2 -kerning first=303 second=273 amount=-1 -kerning first=300 second=964 amount=-3 -kerning first=65 second=947 amount=-4 -kerning first=68 second=372 amount=-2 -kerning first=1078 second=8249 amount=-2 -kerning first=906 second=335 amount=-1 -kerning first=88 second=1047 amount=-2 -kerning first=354 second=347 amount=-3 -kerning first=952 second=34 amount=-3 -kerning first=114 second=231 amount=-1 -kerning first=254 second=361 amount=-1 -kerning first=374 second=965 amount=-2 -kerning first=167 second=373 amount=-4 -kerning first=280 second=288 amount=-2 -kerning first=46 second=1263 amount=-1 -kerning first=1063 second=336 amount=-2 -kerning first=215 second=232 amount=-1 -kerning first=330 second=1176 amount=-1 -kerning first=8377 second=8217 amount=-3 -kerning first=912 second=275 amount=-1 -kerning first=920 second=47 amount=-1 -kerning first=95 second=244 amount=-1 -kerning first=232 second=1203 amount=-2 -kerning first=358 second=289 amount=-1 -kerning first=1224 second=337 amount=-1 -kerning first=1026 second=351 amount=-1 -kerning first=175 second=83 amount=-1 -kerning first=53 second=333 amount=-1 -kerning first=196 second=245 amount=-1 -kerning first=310 second=375 amount=-2 -kerning first=73 second=949 amount=-1 -kerning first=1099 second=210 amount=-2 -kerning first=334 second=1051 amount=-1 -kerning first=1176 second=352 amount=-1 -kerning first=1263 second=277 amount=-1 -kerning first=1027 second=1035 amount=-5 -kerning first=8224 second=1098 amount=-3 -kerning first=57 second=273 amount=-1 -kerning first=60 second=45 amount=-2 -kerning first=54 second=964 amount=-3 -kerning first=306 second=8249 amount=-3 -kerning first=318 second=85 amount=-2 -kerning first=223 second=97 amount=-1 -kerning first=100 second=347 amount=-1 -kerning first=246 second=34 amount=-1 -kerning first=952 second=8216 amount=-3 -kerning first=268 second=196 amount=-1 -kerning first=35 second=1028 amount=-2 -kerning first=38 second=288 amount=-2 -kerning first=291 second=336 amount=-2 -kerning first=8260 second=279 amount=-1 -kerning first=61 second=220 amount=-2 -kerning first=8240 second=970 amount=-1 -kerning first=201 second=350 amount=-1 -kerning first=8366 second=213 amount=-2 -kerning first=78 second=1176 amount=-1 -kerning first=84 second=122 amount=-1 -kerning first=221 second=966 amount=-4 -kerning first=367 second=337 amount=-1 -kerning first=964 second=249 amount=-1 -kerning first=160 second=221 amount=-5 -kerning first=273 second=111 amount=-1 -kerning first=42 second=233 amount=-1 -kerning first=182 second=363 amount=-1 -kerning first=178 second=1177 amount=-1 -kerning first=62 second=375 amount=-1 -kerning first=1074 second=1078 amount=-1 -kerning first=205 second=290 amount=-2 -kerning first=325 second=210 amount=-2 -kerning first=8369 second=368 amount=-2 -kerning first=900 second=338 amount=-2 -kerning first=903 second=100 amount=-1 -kerning first=1107 second=941 amount=-1 -kerning first=942 second=262 amount=-2 -kerning first=108 second=234 amount=-1 -kerning first=371 second=277 amount=-1 -kerning first=968 second=199 amount=-2 -kerning first=161 second=376 amount=-5 -kerning first=270 second=1035 amount=-2 -kerning first=274 second=291 amount=-1 -kerning first=1041 second=1098 amount=-3 -kerning first=179 second=8212 amount=-2 -kerning first=183 second=1059 amount=-2 -kerning first=1051 second=101 amount=-1 -kerning first=60 second=8249 amount=-3 -kerning first=69 second=85 amount=-2 -kerning first=1083 second=263 amount=-1 -kerning first=209 second=235 amount=-1 -kerning first=8370 second=1066 amount=-5 -kerning first=8365 second=8221 amount=-3 -kerning first=946 second=212 amount=-2 -kerning first=246 second=8216 amount=-1 -kerning first=375 second=224 amount=-1 -kerning first=126 second=8250 amount=-1 -kerning first=47 second=336 amount=-2 -kerning first=1048 second=970 amount=-1 -kerning first=190 second=248 amount=-1 -kerning first=305 second=171 amount=-3 -kerning first=70 second=260 amount=-4 -kerning first=324 second=8217 amount=-1 -kerning first=910 second=225 amount=-4 -kerning first=1168 second=355 amount=-1 -kerning first=1171 second=115 amount=-1 -kerning first=230 second=1076 amount=-1 -kerning first=236 second=87 amount=-5 -kerning first=948 second=367 amount=-1 -kerning first=944 second=1185 amount=-3 -kerning first=113 second=337 amount=-1 -kerning first=256 second=249 amount=-1 -kerning first=253 second=940 amount=-1 -kerning first=169 second=261 amount=-1 -kerning first=166 second=953 amount=-1 -kerning first=74 second=210 amount=-2 -kerning first=214 second=338 amount=-2 -kerning first=94 second=352 amount=-1 -kerning first=237 second=262 amount=-2 -kerning first=357 second=1241 amount=-1 -kerning first=117 second=277 amount=-1 -kerning first=260 second=199 amount=-2 -kerning first=174 second=211 amount=-2 -kerning first=280 second=1098 amount=-3 -kerning first=195 second=353 amount=-1 -kerning first=198 second=113 amount=-1 -kerning first=313 second=263 amount=-1 -kerning first=75 second=365 amount=-1 -kerning first=1087 second=8221 amount=-3 -kerning first=1095 second=1066 amount=-5 -kerning first=1178 second=240 amount=-1 -kerning first=956 second=252 amount=-1 -kerning first=121 second=224 amount=-1 -kerning first=1224 second=1256 amount=-2 -kerning first=258 second=1118 amount=-1 -kerning first=175 second=366 amount=-2 -kerning first=171 second=1184 amount=-1 -kerning first=289 second=279 amount=-1 -kerning first=59 second=171 amount=-3 -kerning first=317 second=213 amount=-2 -kerning first=8361 second=371 amount=-1 -kerning first=73 second=8217 amount=-3 -kerning first=343 second=115 amount=-1 -kerning first=931 second=267 amount=-1 -kerning first=239 second=1185 amount=-3 -kerning first=8230 second=1262 amount=-1 -kerning first=318 second=368 amount=-2 -kerning first=8370 second=81 amount=-2 -kerning first=80 second=941 amount=-1 -kerning first=103 second=1241 amount=-1 -kerning first=240 second=8220 amount=-3 -kerning first=369 second=227 amount=-1 -kerning first=963 second=357 amount=-1 -kerning first=123 second=1079 amount=-1 -kerning first=162 second=89 amount=-5 -kerning first=38 second=1098 amount=-3 -kerning first=41 second=339 amount=-1 -kerning first=184 second=251 amount=-1 -kerning first=64 second=263 amount=-1 -kerning first=1080 second=216 amount=-2 -kerning first=316 second=8221 amount=-3 -kerning first=321 second=1066 amount=-5 -kerning first=902 second=228 amount=-1 -kerning first=1117 second=118 amount=-4 -kerning first=936 second=1194 amount=-2 -kerning first=110 second=102 amount=-1 -kerning first=1202 second=283 amount=-1 -kerning first=250 second=252 amount=-1 -kerning first=247 second=943 amount=-1 -kerning first=367 second=1256 amount=-2 -kerning first=163 second=266 amount=-2 -kerning first=166 second=39 amount=-3 -kerning first=42 second=970 amount=-1 -kerning first=1049 second=229 amount=-1 -kerning first=1078 second=1195 amount=-2 -kerning first=1081 second=371 amount=-1 -kerning first=900 second=1257 amount=-1 -kerning first=91 second=115 amount=-1 -kerning first=88 second=355 amount=-1 -kerning first=1210 second=230 amount=-1 -kerning first=971 second=242 amount=-1 -kerning first=167 second=214 amount=-2 -kerning first=274 second=1101 amount=-1 -kerning first=8217 second=287 amount=-1 -kerning first=1051 second=1240 amount=-2 -kerning first=49 second=226 amount=-1 -kerning first=189 second=356 amount=-5 -kerning first=192 second=116 amount=-1 -kerning first=304 second=268 amount=-2 -kerning first=69 second=368 amount=-2 -kerning first=1083 second=1069 amount=-1 -kerning first=1095 second=81 amount=-2 -kerning first=209 second=972 amount=-1 -kerning first=1170 second=243 amount=-1 -kerning first=255 second=357 amount=-1 -kerning first=258 second=117 amount=-1 -kerning first=378 second=269 amount=-1 -kerning first=168 second=369 amount=-1 -kerning first=278 second=973 amount=-1 -kerning first=47 second=1224 amount=-1 -kerning first=1064 second=332 amount=-2 -kerning first=310 second=216 amount=-3 -kerning first=70 second=1066 amount=-5 -kerning first=337 second=118 amount=-1 -kerning first=910 second=962 amount=-4 -kerning first=96 second=240 amount=-1 -kerning first=236 second=370 amount=-2 -kerning first=113 second=1256 amount=-2 -kerning first=176 second=79 amount=-2 -kerning first=287 second=229 amount=-1 -kerning first=1065 second=963 amount=-1 -kerning first=194 second=920 amount=-2 -kerning first=306 second=1195 amount=-1 -kerning first=77 second=253 amount=-1 -kerning first=214 second=1257 amount=-1 -kerning first=926 second=218 amount=-2 -kerning first=363 second=230 amount=-1 -kerning first=955 second=360 amount=-2 -kerning first=1298 second=273 amount=-1 -kerning first=1257 second=964 amount=-1 -kerning first=1035 second=287 amount=-1 -kerning first=174 second=945 amount=-1 -kerning first=8240 second=335 amount=-1 -kerning first=8260 second=97 amount=-1 -kerning first=58 second=268 amount=-2 -kerning first=1073 second=219 amount=-2 -kerning first=321 second=81 amount=-2 -kerning first=8366 second=34 amount=-3 -kerning first=8363 second=259 amount=-1 -kerning first=1098 second=1175 amount=-2 -kerning first=221 second=331 amount=-3 -kerning first=920 second=1202 amount=-3 -kerning first=928 second=373 amount=-4 -kerning first=1178 second=1028 amount=-1 -kerning first=361 second=1263 amount=-1 -kerning first=124 second=269 amount=-1 -kerning first=36 second=973 amount=-1 -kerning first=1039 second=232 amount=-1 -kerning first=294 second=332 amount=-2 -kerning first=62 second=216 amount=-2 -kerning first=1074 second=374 amount=-5 -kerning first=205 second=106 amount=1 -kerning first=346 second=193 amount=-1 -kerning first=942 second=83 amount=-1 -kerning first=105 second=283 amount=-1 -kerning first=965 second=245 amount=-1 -kerning first=161 second=217 amount=-2 -kerning first=43 second=229 amount=-1 -kerning first=186 second=119 amount=-4 -kerning first=183 second=359 amount=-1 -kerning first=298 second=271 amount=-1 -kerning first=60 second=1195 amount=-1 -kerning first=63 second=371 amount=-1 -kerning first=1083 second=84 amount=-5 -kerning first=203 second=1026 amount=-5 -kerning first=206 second=286 amount=-2 -kerning first=8370 second=364 amount=-2 -kerning first=901 second=334 amount=-2 -kerning first=83 second=1046 amount=-1 -kerning first=1116 second=246 amount=-2 -kerning first=249 second=360 amount=-2 -kerning first=369 second=964 amount=-3 -kerning first=375 second=45 amount=-2 -kerning first=372 second=273 amount=-3 -kerning first=126 second=947 amount=-4 -kerning first=162 second=372 amount=-5 -kerning first=41 second=1262 amount=-2 -kerning first=44 second=1240 amount=-1 -kerning first=1048 second=335 amount=-1 -kerning first=302 second=219 amount=-2 -kerning first=64 second=1069 amount=-1 -kerning first=70 second=81 amount=-1 -kerning first=1084 second=259 amount=-1 -kerning first=327 second=361 amount=-1 -kerning first=8366 second=8216 amount=-3 -kerning first=902 second=965 amount=-1 -kerning first=910 second=46 amount=-4 -kerning first=90 second=243 amount=-1 -kerning first=230 second=373 amount=-1 -kerning first=48 second=332 amount=-2 -kerning first=1049 second=966 amount=-1 -kerning first=1062 second=275 amount=-1 -kerning first=191 second=244 amount=-1 -kerning first=303 second=374 amount=-5 -kerning first=208 second=1298 amount=-1 -kerning first=911 second=221 amount=-2 -kerning first=1174 second=111 amount=-1 -kerning first=237 second=83 amount=-1 -kerning first=357 second=233 amount=-1 -kerning first=114 second=333 amount=-1 -kerning first=167 second=949 amount=-1 -kerning first=170 second=257 amount=-1 -kerning first=277 second=1299 amount=-1 -kerning first=8225 second=100 amount=-1 -kerning first=49 second=963 amount=-1 -kerning first=55 second=44 amount=-4 -kerning first=52 second=271 amount=-1 -kerning first=313 second=84 amount=-6 -kerning first=1095 second=364 amount=-2 -kerning first=215 second=334 amount=-2 -kerning first=912 second=376 amount=-5 -kerning first=95 second=346 amount=-1 -kerning first=1170 second=1035 amount=-5 -kerning first=946 second=8212 amount=-2 -kerning first=950 second=1059 amount=-2 -kerning first=121 second=45 amount=-2 -kerning first=118 second=273 amount=-1 -kerning first=375 second=8249 amount=-3 -kerning first=289 second=97 amount=-1 -kerning first=56 second=219 amount=-2 -kerning first=193 second=1108 amount=-1 -kerning first=196 second=347 amount=-1 -kerning first=317 second=34 amount=-3 -kerning first=314 second=259 amount=-1 -kerning first=8361 second=212 amount=-2 -kerning first=76 second=361 amount=-1 -kerning first=222 second=46 amount=-1 -kerning first=910 second=8250 amount=-2 -kerning first=96 second=1028 amount=-2 -kerning first=958 second=248 amount=-1 -kerning first=37 second=232 amount=-1 -kerning first=172 second=1176 amount=-1 -kerning first=176 second=362 amount=-2 -kerning first=287 second=966 amount=-1 -kerning first=57 second=374 amount=-5 -kerning first=200 second=289 amount=-1 -kerning first=1103 second=249 amount=-1 -kerning first=223 second=221 amount=-5 -kerning first=341 second=351 amount=-1 -kerning first=934 second=261 amount=-1 -kerning first=926 second=953 amount=-1 -kerning first=103 second=233 amount=-1 -kerning first=240 second=1177 amount=-1 -kerning first=123 second=375 amount=-1 -kerning first=174 second=8211 amount=-2 -kerning first=1044 second=100 amount=-1 -kerning first=64 second=84 amount=-5 -kerning first=204 second=234 amount=-1 -kerning first=321 second=364 amount=-2 -kerning first=84 second=246 amount=-3 -kerning first=345 second=291 amount=-1 -kerning first=1202 second=101 amount=-1 -kerning first=964 second=353 amount=-1 -kerning first=967 second=113 amount=-1 -kerning first=121 second=8249 amount=-3 -kerning first=163 second=85 amount=-2 -kerning first=273 second=235 amount=-1 -kerning first=42 second=335 amount=-1 -kerning first=65 second=259 amount=-1 -kerning first=1081 second=212 amount=-2 -kerning first=317 second=8216 amount=-3 -kerning first=8369 second=943 amount=-1 -kerning first=903 second=224 amount=-1 -kerning first=942 second=366 amount=-2 -kerning first=108 second=336 amount=-2 -kerning first=1203 second=279 amount=-1 -kerning first=251 second=248 amount=-1 -kerning first=374 second=171 amount=-3 -kerning first=8217 second=103 amount=-1 -kerning first=43 second=966 amount=-1 -kerning first=1051 second=225 amount=-1 -kerning first=304 second=87 amount=-5 -kerning first=1083 second=367 amount=-1 -kerning first=1079 second=1185 amount=-1 -kerning first=209 second=337 amount=-1 -kerning first=330 second=249 amount=-1 -kerning first=86 second=1114 amount=-2 -kerning first=92 second=111 amount=-1 -kerning first=89 second=351 amount=-3 -kerning first=1219 second=226 amount=-1 -kerning first=372 second=1078 amount=-1 -kerning first=168 second=210 amount=-2 -kerning first=278 second=338 amount=-2 -kerning first=8222 second=53 amount=-1 -kerning first=190 second=352 amount=-1 -kerning first=305 second=262 amount=-2 -kerning first=70 second=364 amount=-2 -kerning first=1080 second=8220 amount=-3 -kerning first=905 second=1079 amount=-1 -kerning first=915 second=89 amount=-5 -kerning first=93 second=291 amount=-1 -kerning first=910 second=326 amount=-3 -kerning first=236 second=211 amount=-2 -kerning first=356 second=339 amount=-3 -kerning first=951 second=251 amount=-1 -kerning first=256 second=353 amount=-1 -kerning first=376 second=955 amount=-2 -kerning first=379 second=263 amount=-1 -kerning first=169 second=365 amount=-1 -kerning first=8224 second=228 amount=-1 -kerning first=916 second=266 amount=-2 -kerning first=926 second=39 amount=-3 -kerning first=237 second=366 amount=-2 -kerning first=357 second=970 amount=-1 -kerning first=120 second=171 amount=-2 -kerning first=263 second=63 amount=-1 -kerning first=167 second=8217 amount=-3 -kerning first=1035 second=103 amount=-1 -kerning first=8221 second=1257 amount=-1 -kerning first=58 second=87 amount=-5 -kerning first=313 second=367 amount=-1 -kerning first=75 second=940 amount=-2 -kerning first=78 second=249 amount=-1 -kerning first=928 second=214 amount=-2 -kerning first=235 second=8218 amount=-1 -kerning first=956 second=356 amount=-5 -kerning first=1299 second=268 amount=-2 -kerning first=36 second=338 amount=-2 -kerning first=1036 second=281 amount=-2 -kerning first=39 second=100 amount=-1 -kerning first=178 second=250 amount=-1 -kerning first=175 second=941 amount=-1 -kerning first=59 second=262 amount=-2 -kerning first=202 second=187 amount=-1 -kerning first=931 second=369 amount=-1 -kerning first=102 second=339 amount=-1 -kerning first=105 second=101 amount=-1 -kerning first=125 second=263 amount=-1 -kerning first=1041 second=228 amount=-1 -kerning first=63 second=212 amount=-2 -kerning first=1071 second=1194 amount=-2 -kerning first=323 second=252 amount=-1 -kerning first=318 second=943 amount=-1 -kerning first=80 second=1118 amount=-1 -kerning first=83 second=354 amount=-1 -kerning first=86 second=114 amount=-2 -kerning first=229 second=39 amount=-1 -kerning first=103 second=970 amount=-1 -kerning first=947 second=229 amount=-1 -kerning first=963 second=920 amount=-2 -kerning first=162 second=213 amount=-2 -kerning first=184 second=355 amount=-1 -kerning first=299 second=267 amount=-1 -kerning first=61 second=1185 amount=-3 -kerning first=64 second=367 amount=-1 -kerning first=8372 second=360 amount=-2 -kerning first=1117 second=242 amount=-1 -kerning first=1202 second=1240 amount=-1 -kerning first=250 second=356 amount=-5 -kerning first=253 second=116 amount=-1 -kerning first=163 second=368 amount=-2 -kerning first=273 second=972 amount=-1 -kerning first=276 second=281 amount=-1 -kerning first=8216 second=231 amount=-1 -kerning first=45 second=380 amount=-2 -kerning first=62 second=8220 amount=-3 -kerning first=906 second=269 amount=-1 -kerning first=1210 second=332 amount=-2 -kerning first=377 second=216 amount=-1 -kerning first=164 second=1066 amount=-5 -kerning first=161 second=8221 amount=-3 -kerning first=280 second=228 amount=-1 -kerning first=8211 second=1298 amount=-4 -kerning first=1051 second=962 amount=-1 -kerning first=192 second=240 amount=-1 -kerning first=301 second=1194 amount=-2 -kerning first=304 second=370 amount=-2 -kerning first=69 second=943 amount=-1 -kerning first=72 second=252 amount=-1 -kerning first=209 second=1256 amount=-2 -kerning first=912 second=217 amount=-2 -kerning first=238 second=79 amount=-2 -kerning first=358 second=229 amount=-1 -kerning first=950 second=359 amount=-1 -kerning first=953 second=119 amount=-2 -kerning first=1219 second=963 amount=-1 -kerning first=1224 second=271 amount=-1 -kerning first=1262 second=44 amount=-1 -kerning first=255 second=920 amount=-2 -kerning first=375 second=1195 amount=-1 -kerning first=1026 second=286 amount=-2 -kerning first=278 second=1257 amount=-1 -kerning first=8218 second=1090 amount=-3 -kerning first=8222 second=334 amount=-1 -kerning first=53 second=267 amount=-1 -kerning first=1067 second=218 amount=-2 -kerning first=1096 second=360 amount=-2 -kerning first=334 second=923 amount=-2 -kerning first=910 second=947 amount=-2 -kerning first=915 second=372 amount=-5 -kerning first=93 second=1101 amount=-1 -kerning first=1176 second=287 amount=-1 -kerning first=236 second=945 amount=-1 -kerning first=1263 second=219 amount=-2 -kerning first=34 second=281 amount=-1 -kerning first=8224 second=965 amount=-1 -kerning first=1068 second=373 amount=-1 -kerning first=80 second=117 amount=-1 -kerning first=77 second=357 amount=-1 -kerning first=1184 second=232 amount=-2 -kerning first=363 second=332 amount=-2 -kerning first=960 second=244 amount=-1 -kerning first=123 second=216 amount=-2 -kerning first=1298 second=374 amount=-5 -kerning first=1257 second=1203 amount=-2 -kerning first=268 second=106 amount=1 -kerning first=38 second=228 amount=-1 -kerning first=1028 second=1298 amount=-1 -kerning first=180 second=118 amount=-4 -kerning first=8260 second=221 amount=-5 -kerning first=55 second=1194 amount=-2 -kerning first=58 second=370 amount=-2 -kerning first=1069 second=1071 amount=-1 -kerning first=201 second=283 amount=-1 -kerning first=8363 second=363 amount=-1 -kerning first=84 second=67 amount=-1 -kerning first=928 second=949 amount=-1 -kerning first=936 second=257 amount=-1 -kerning first=247 second=119 amount=-4 -kerning first=367 second=271 amount=-1 -kerning first=370 second=44 amount=-1 -kerning first=121 second=1195 amount=-1 -kerning first=124 second=371 amount=-1 -kerning first=266 second=1026 amount=-1 -kerning first=36 second=1257 amount=-1 -kerning first=1036 second=1090 amount=-4 -kerning first=1039 second=334 amount=-2 -kerning first=297 second=218 amount=-2 -kerning first=205 second=230 amount=-1 -kerning first=322 second=360 amount=-2 -kerning first=8361 second=8212 amount=-2 -kerning first=8364 second=1059 amount=-2 -kerning first=900 second=273 amount=-1 -kerning first=903 second=45 amount=-2 -kerning first=105 second=1240 amount=-2 -kerning first=371 second=219 amount=-2 -kerning first=962 second=1108 amount=-1 -kerning first=965 second=347 amount=-1 -kerning first=125 second=1069 amount=-1 -kerning first=164 second=81 amount=-2 -kerning first=274 second=231 amount=-1 -kerning first=1041 second=965 amount=-1 -kerning first=186 second=243 amount=-1 -kerning first=298 second=373 amount=-4 -kerning first=203 second=1263 amount=-1 -kerning first=8377 second=248 amount=-1 -kerning first=904 second=220 amount=-2 -kerning first=947 second=966 amount=-1 -kerning first=1206 second=275 amount=-1 -kerning first=252 second=244 amount=-1 -kerning first=305 second=83 amount=-1 -kerning first=1080 second=1177 amount=-1 -kerning first=1084 second=363 amount=-1 -kerning first=905 second=375 amount=-1 -kerning first=1168 second=290 amount=-2 -kerning first=113 second=271 amount=-1 -kerning first=116 second=44 amount=-1 -kerning first=973 second=234 amount=-1 -kerning first=276 second=1090 amount=-3 -kerning first=8220 second=277 amount=-1 -kerning first=51 second=218 amount=-2 -kerning first=1062 second=376 amount=-2 -kerning first=191 second=346 amount=-1 -kerning first=68 second=1174 amount=-3 -kerning first=1085 second=1059 amount=-2 -kerning first=1081 second=8212 amount=-2 -kerning first=214 second=273 amount=-1 -kerning first=903 second=8249 amount=-3 -kerning first=916 second=85 amount=-2 -kerning first=94 second=287 amount=-1 -kerning first=1174 second=235 amount=-1 -kerning first=357 second=335 amount=-1 -kerning first=354 second=1094 amount=-2 -kerning first=117 second=219 amount=-2 -kerning first=254 second=1108 amount=-1 -kerning first=170 second=361 amount=-1 -kerning first=174 second=121 amount=-1 -kerning first=280 second=965 amount=-1 -kerning first=8225 second=224 amount=-1 -kerning first=52 second=373 amount=-4 -kerning first=1051 second=8250 amount=-1 -kerning first=1069 second=86 amount=-2 -kerning first=192 second=1028 amount=-2 -kerning first=195 second=288 amount=-2 -kerning first=333 second=1113 amount=-1 -kerning first=920 second=260 amount=-2 -kerning first=238 second=362 amount=-2 -kerning first=358 second=966 amount=-1 -kerning first=361 second=275 amount=-1 -kerning first=115 second=1203 amount=-1 -kerning first=1299 second=87 amount=-5 -kerning first=1036 second=99 amount=-2 -kerning first=178 second=71 amount=-2 -kerning first=289 second=221 amount=-5 -kerning first=59 second=83 amount=-1 -kerning first=1067 second=953 amount=-1 -kerning first=314 second=363 amount=-1 -kerning first=310 second=1177 amount=-1 -kerning first=931 second=210 amount=-2 -kerning first=1186 second=100 amount=-1 -kerning first=236 second=8211 amount=-2 -kerning first=958 second=352 amount=-1 -kerning first=125 second=84 amount=-5 -kerning first=37 second=334 amount=-2 -kerning first=1037 second=277 amount=-1 -kerning first=179 second=246 amount=-1 -kerning first=290 second=376 amount=-2 -kerning first=315 second=1059 amount=-1 -kerning first=311 second=8212 amount=-3 -kerning first=8365 second=251 amount=-1 -kerning first=1103 second=353 amount=-1 -kerning first=934 second=365 amount=-1 -kerning first=103 second=335 amount=-1 -kerning first=126 second=259 amount=-1 -kerning first=162 second=34 amount=-3 -kerning first=38 second=965 amount=-1 -kerning first=1073 second=1184 amount=-5 -kerning first=204 second=336 amount=-2 -kerning first=902 second=171 amount=-3 -kerning first=84 second=350 amount=-1 -kerning first=87 second=110 amount=-2 -kerning first=928 second=8217 amount=-3 -kerning first=107 second=275 amount=-2 -kerning first=273 second=337 amount=-1 -kerning first=276 second=99 amount=-1 -kerning first=8216 second=52 amount=-1 -kerning first=45 second=221 amount=-4 -kerning first=188 second=111 amount=-1 -kerning first=185 second=351 amount=-1 -kerning first=300 second=261 amount=-1 -kerning first=297 second=953 amount=-1 -kerning first=65 second=363 amount=-1 -kerning first=62 second=1177 amount=-1 -kerning first=88 second=290 amount=-3 -kerning first=942 second=941 amount=-1 -kerning first=354 second=100 amount=-3 -kerning first=251 second=352 amount=-1 -kerning first=374 second=262 amount=-3 -kerning first=968 second=1241 amount=-1 -kerning first=971 second=187 amount=-1 -kerning first=164 second=364 amount=-2 -kerning first=274 second=968 amount=-1 -kerning first=8217 second=227 amount=-1 -kerning first=46 second=376 amount=-4 -kerning first=186 second=1035 amount=-5 -kerning first=189 second=291 amount=-1 -kerning first=1063 second=89 amount=-5 -kerning first=304 second=211 amount=-2 -kerning first=63 second=8212 amount=-2 -kerning first=1087 second=251 amount=-1 -kerning first=330 second=353 amount=-1 -kerning first=92 second=235 amount=-1 -kerning first=162 second=8216 amount=-3 -kerning first=47 second=1075 amount=-1 -kerning first=1064 second=266 amount=-2 -kerning first=1067 second=39 amount=-3 -kerning first=302 second=1184 amount=-5 -kerning first=305 second=366 amount=-2 -kerning first=73 second=248 amount=-1 -kerning first=337 second=63 amount=-2 -kerning first=915 second=213 amount=-2 -kerning first=1176 second=103 amount=-1 -kerning first=230 second=8217 amount=-1 -kerning first=951 second=355 amount=-1 -kerning first=954 second=115 amount=-1 -kerning first=376 second=1185 amount=-2 -kerning first=34 second=99 amount=-1 -kerning first=172 second=249 amount=-1 -kerning first=169 second=940 amount=-1 -kerning first=54 second=261 amount=-1 -kerning first=51 second=953 amount=-1 -kerning first=916 second=368 amount=-2 -kerning first=100 second=100 amount=-1 -kerning first=1174 second=972 amount=-1 -kerning first=240 second=250 amount=-1 -kerning first=237 second=941 amount=-1 -kerning first=260 second=1241 amount=-1 -kerning first=35 second=277 amount=-1 -kerning first=1035 second=227 amount=-1 -kerning first=177 second=199 amount=-2 -kerning first=291 second=89 amount=-5 -kerning first=8240 second=269 amount=-1 -kerning first=58 second=211 amount=-2 -kerning first=198 second=339 amount=-1 -kerning first=201 second=101 amount=-1 -kerning first=195 second=1098 amount=-3 -kerning first=316 second=251 amount=-1 -kerning first=78 second=353 amount=-1 -kerning first=221 second=263 amount=-4 -kerning first=912 second=8221 amount=-3 -kerning first=920 second=1066 amount=-2 -kerning first=1185 second=228 amount=-1 -kerning first=124 second=212 amount=-2 -kerning first=1299 second=370 amount=-2 -kerning first=39 second=224 amount=-1 -kerning first=178 second=354 amount=-5 -kerning first=175 second=1118 amount=-1 -kerning first=294 second=266 amount=-2 -kerning first=297 second=39 amount=-3 -kerning first=56 second=1184 amount=-5 -kerning first=59 second=366 amount=-2 -kerning first=202 second=279 amount=-1 -kerning first=8364 second=359 amount=-1 -kerning first=8369 second=119 amount=-4 -kerning first=105 second=225 amount=-1 -kerning first=1179 second=1257 amount=-1 -kerning first=125 second=367 amount=-1 -kerning first=179 second=1038 amount=-2 -kerning first=298 second=214 amount=-2 -kerning first=57 second=8218 amount=-1 -kerning first=1075 second=945 amount=-1 -kerning first=206 second=226 amount=-1 -kerning first=323 second=356 amount=-5 -kerning first=901 second=268 amount=-2 -kerning first=123 second=8220 amount=-3 -kerning first=41 second=1079 amount=-1 -kerning first=47 second=89 amount=-5 -kerning first=1048 second=269 amount=-1 -kerning first=299 second=369 amount=-1 -kerning first=8378 second=244 amount=-1 -kerning first=905 second=216 amount=-2 -kerning first=1168 second=106 amount=1 -kerning first=224 second=8221 amount=-1 -kerning first=948 second=118 amount=-4 -kerning first=1202 second=962 amount=-1 -kerning first=253 second=240 amount=-1 -kerning first=967 second=974 amount=-1 -kerning first=163 second=943 amount=-1 -kerning first=166 second=252 amount=-1 -kerning first=273 second=1256 amount=-2 -kerning first=8216 second=333 amount=-1 -kerning first=48 second=266 amount=-2 -kerning first=51 second=39 amount=-3 -kerning first=1062 second=217 amount=-1 -kerning first=306 second=79 amount=-2 -kerning first=1085 second=359 amount=-1 -kerning first=903 second=1195 amount=-1 -kerning first=906 second=371 amount=-1 -kerning first=94 second=103 amount=-1 -kerning first=1118 second=1026 amount=-5 -kerning first=114 second=267 amount=-1 -kerning first=1223 second=218 amount=-2 -kerning first=277 second=1083 amount=-1 -kerning first=8225 second=45 amount=-2 -kerning first=8221 second=273 amount=-1 -kerning first=52 second=214 amount=-2 -kerning first=1051 second=947 amount=-4 -kerning first=1063 second=372 amount=-5 -kerning first=189 second=1101 amount=-1 -kerning first=304 second=945 amount=-1 -kerning first=72 second=356 amount=-5 -kerning first=75 second=116 amount=-1 -kerning first=215 second=268 amount=-2 -kerning first=92 second=972 amount=-1 -kerning first=95 second=281 amount=-1 -kerning first=1175 second=231 amount=-1 -kerning first=1224 second=373 amount=-4 -kerning first=175 second=117 amount=-1 -kerning first=8226 second=220 amount=-2 -kerning first=53 second=369 amount=-1 -kerning first=193 second=973 amount=-1 -kerning first=1099 second=244 amount=-1 -kerning first=340 second=106 amount=2 -kerning first=242 second=118 amount=-1 -kerning first=1256 second=1071 amount=-1 -kerning first=179 second=67 amount=-2 -kerning first=8230 second=375 amount=-1 -kerning first=51 second=8222 amount=-1 -kerning first=60 second=79 amount=-2 -kerning first=1071 second=257 amount=-1 -kerning first=200 second=229 amount=-1 -kerning first=315 second=359 amount=-1 -kerning first=318 second=119 amount=-4 -kerning first=77 second=920 amount=-2 -kerning first=338 second=1026 amount=-5 -kerning first=1184 second=334 amount=-3 -kerning first=1177 second=1090 amount=-1 -kerning first=960 second=346 amount=-1 -kerning first=1035 second=964 amount=-3 -kerning first=1044 second=45 amount=-2 -kerning first=180 second=242 amount=-1 -kerning first=291 second=372 amount=-5 -kerning first=8225 second=8249 amount=-3 -kerning first=58 second=945 amount=-1 -kerning first=201 second=1240 amount=-2 -kerning first=198 second=1262 amount=-2 -kerning first=221 second=1069 amount=-2 -kerning first=345 second=231 amount=-1 -kerning first=936 second=361 amount=-1 -kerning first=247 second=243 amount=-1 -kerning first=367 second=373 amount=-4 -kerning first=964 second=288 amount=-2 -kerning first=42 second=269 amount=-1 -kerning first=1074 second=1176 amount=-1 -kerning first=205 second=332 amount=-2 -kerning first=325 second=244 amount=-1 -kerning first=900 second=374 amount=-5 -kerning first=105 second=962 amount=-1 -kerning first=374 second=83 amount=-1 -kerning first=968 second=233 amount=-1 -kerning first=274 second=333 amount=-1 -kerning first=46 second=217 amount=-1 -kerning first=298 second=949 amount=-1 -kerning first=301 second=257 amount=-1 -kerning first=69 second=119 amount=-4 -kerning first=206 second=963 amount=-1 -kerning first=209 second=271 amount=-1 -kerning first=212 second=44 amount=-1 -kerning first=8377 second=352 amount=-1 -kerning first=908 second=84 amount=-2 -kerning first=86 second=1026 amount=-5 -kerning first=89 second=286 amount=-3 -kerning first=1119 second=234 amount=-1 -kerning first=946 second=246 amount=-1 -kerning first=1206 second=376 amount=-2 -kerning first=252 second=346 amount=-1 -kerning first=165 second=360 amount=-2 -kerning first=278 second=273 amount=-1 -kerning first=275 second=964 amount=-1 -kerning first=44 second=947 amount=-2 -kerning first=47 second=372 amount=-5 -kerning first=1044 second=8249 amount=-1 -kerning first=1064 second=85 amount=-2 -kerning first=190 second=287 amount=-1 -kerning first=327 second=1108 amount=-1 -kerning first=910 second=259 amount=-4 -kerning first=915 second=34 amount=-3 -kerning first=93 second=231 amount=-1 -kerning first=230 second=1175 amount=-2 -kerning first=236 second=121 amount=-1 -kerning first=359 second=46 amount=-1 -kerning first=113 second=373 amount=-4 -kerning first=1256 second=86 amount=-2 -kerning first=253 second=1028 amount=-2 -kerning first=256 second=288 amount=-2 -kerning first=973 second=336 amount=-2 -kerning first=282 second=220 amount=-2 -kerning first=8224 second=171 amount=-3 -kerning first=194 second=232 amount=-1 -kerning first=306 second=362 amount=-2 -kerning first=303 second=1176 amount=-1 -kerning first=74 second=244 amount=-1 -kerning first=214 second=374 amount=-5 -kerning first=332 second=1033 amount=-1 -kerning first=1174 second=337 amount=-1 -kerning first=240 second=71 amount=-2 -kerning first=955 second=111 amount=-1 -kerning first=952 second=351 amount=-1 -kerning first=111 second=8230 amount=-1 -kerning first=1223 second=953 amount=-1 -kerning first=260 second=233 amount=-1 -kerning first=974 second=967 amount=-1 -kerning first=174 second=245 amount=-1 -kerning first=52 second=949 amount=-1 -kerning first=55 second=257 amount=-1 -kerning first=304 second=8211 amount=-2 -kerning first=95 second=1090 amount=-3 -kerning first=1178 second=277 amount=-1 -kerning first=361 second=376 amount=-5 -kerning first=956 second=291 amount=-1 -kerning first=118 second=950 amount=-2 -kerning first=1299 second=211 amount=-2 -kerning first=36 second=273 amount=-1 -kerning first=294 second=85 amount=-2 -kerning first=202 second=97 amount=-1 -kerning first=76 second=1108 amount=-1 -kerning first=225 second=34 amount=-1 -kerning first=915 second=8216 amount=-3 -kerning first=1263 second=1184 amount=-5 -kerning first=40 second=220 amount=-2 -kerning first=1041 second=171 amount=-3 -kerning first=179 second=350 amount=-1 -kerning first=57 second=1176 amount=-1 -kerning first=60 second=362 amount=-2 -kerning first=1068 second=8217 amount=-2 -kerning first=200 second=966 amount=-1 -kerning first=203 second=275 amount=-1 -kerning first=8365 second=355 amount=-1 -kerning first=8370 second=115 amount=-1 -kerning first=901 second=87 amount=-5 -kerning first=934 second=940 amount=-1 -kerning first=249 second=111 amount=-1 -kerning first=369 second=261 amount=-1 -kerning first=123 second=1177 amount=-1 -kerning first=126 second=363 amount=-1 -kerning first=41 second=375 amount=-1 -kerning first=184 second=290 amount=-2 -kerning first=299 second=210 amount=-2 -kerning first=58 second=8211 amount=-2 -kerning first=1080 second=250 amount=-1 -kerning first=1076 second=941 amount=-1 -kerning first=902 second=262 amount=-2 -kerning first=87 second=234 amount=-3 -kerning first=1117 second=187 amount=-1 -kerning first=944 second=199 amount=-2 -kerning first=247 second=1035 amount=-5 -kerning first=250 second=291 amount=-1 -kerning first=967 second=339 amount=-1 -kerning first=124 second=8212 amount=-2 -kerning first=160 second=1059 amount=-2 -kerning first=964 second=1098 amount=-3 -kerning first=48 second=85 amount=-2 -kerning first=1049 second=263 amount=-1 -kerning first=188 second=235 amount=-1 -kerning first=300 second=365 amount=-1 -kerning first=65 second=936 amount=-3 -kerning first=208 second=377 amount=-1 -kerning first=906 second=212 amount=-2 -kerning first=225 second=8216 amount=-1 -kerning first=354 second=224 amount=-2 -kerning first=942 second=1118 amount=-1 -kerning first=105 second=8250 amount=-1 -kerning first=1210 second=266 amount=-2 -kerning first=1223 second=39 amount=-3 -kerning first=371 second=1184 amount=-5 -kerning first=971 second=279 amount=-1 -kerning first=167 second=248 amount=-1 -kerning first=968 second=970 amount=-1 -kerning first=277 second=378 amount=-1 -kerning first=280 second=171 amount=-3 -kerning first=1063 second=213 amount=-2 -kerning first=298 second=8217 amount=-3 -kerning first=1095 second=115 amount=-1 -kerning first=1087 second=355 amount=-1 -kerning first=215 second=87 amount=-5 -kerning first=904 second=1185 amount=-3 -kerning first=92 second=337 amount=-1 -kerning first=95 second=99 amount=-1 -kerning first=89 second=1096 amount=-3 -kerning first=946 second=1038 amount=-2 -kerning first=1224 second=214 amount=-2 -kerning first=372 second=8218 amount=-3 -kerning first=1026 second=226 amount=-1 -kerning first=171 second=198 amount=-1 -kerning first=8222 second=268 amount=-1 -kerning first=53 second=210 amount=-2 -kerning first=1064 second=368 amount=-2 -kerning first=193 second=338 amount=-2 -kerning first=196 second=100 amount=-1 -kerning first=305 second=941 amount=-1 -kerning first=310 second=250 amount=-1 -kerning first=70 second=1116 amount=-1 -kerning first=73 second=352 amount=-1 -kerning first=905 second=8220 amount=-3 -kerning first=93 second=968 amount=-1 -kerning first=96 second=277 amount=-1 -kerning first=1176 second=227 amount=-1 -kerning first=239 second=199 amount=-2 -kerning first=356 second=1079 amount=-2 -kerning first=256 second=1098 amount=-3 -kerning first=176 second=113 amount=-1 -kerning first=172 second=353 amount=-1 -kerning first=287 second=263 amount=-1 -kerning first=8230 second=216 amount=-1 -kerning first=54 second=365 amount=-1 -kerning first=1062 second=8221 amount=-2 -kerning first=1065 second=1066 amount=-2 -kerning first=916 second=943 amount=-1 -kerning first=926 second=252 amount=-1 -kerning first=100 second=224 amount=-1 -kerning first=1174 second=1256 amount=-1 -kerning first=237 second=1118 amount=-1 -kerning first=240 second=354 amount=-5 -kerning first=363 second=266 amount=-2 -kerning first=117 second=1184 amount=-5 -kerning first=260 second=970 amount=-1 -kerning first=38 second=171 amount=-3 -kerning first=291 second=213 amount=-2 -kerning first=8240 second=371 amount=-1 -kerning first=8225 second=1195 amount=-1 -kerning first=52 second=8217 amount=-1 -kerning first=1073 second=253 amount=-1 -kerning first=201 second=225 amount=-1 -kerning first=321 second=115 amount=-1 -kerning first=316 second=355 amount=-1 -kerning first=221 second=367 amount=-2 -kerning first=367 second=214 amount=-2 -kerning first=956 second=1101 amount=-1 -kerning first=118 second=8218 amount=-2 -kerning first=1299 second=945 amount=-1 -kerning first=1039 second=268 amount=-2 -kerning first=294 second=368 amount=-2 -kerning first=62 second=250 amount=-1 -kerning first=59 second=941 amount=-1 -kerning first=8369 second=243 amount=-1 -kerning first=942 second=117 amount=-1 -kerning first=108 second=89 amount=-5 -kerning first=962 second=973 amount=-1 -kerning first=161 second=251 amount=-1 -kerning first=270 second=381 amount=-1 -kerning first=43 second=263 amount=-1 -kerning first=1083 second=118 amount=-4 -kerning first=901 second=370 amount=-2 -kerning first=1116 second=283 amount=-2 -kerning first=946 second=67 amount=-2 -kerning first=112 second=39 amount=-1 -kerning first=1206 second=217 amount=-1 -kerning first=366 second=8222 amount=-1 -kerning first=375 second=79 amount=-2 -kerning first=47 second=213 amount=-1 -kerning first=1048 second=371 amount=-1 -kerning first=1044 second=1195 amount=-1 -kerning first=190 second=103 amount=-1 -kerning first=302 second=253 amount=-1 -kerning first=70 second=115 amount=-1 -kerning first=8378 second=346 amount=-1 -kerning first=1168 second=230 amount=-1 -kerning first=948 second=242 amount=-1 -kerning first=113 second=214 amount=-2 -kerning first=1202 second=947 amount=-2 -kerning first=250 second=1101 amount=-1 -kerning first=373 second=945 amount=-1 -kerning first=967 second=1262 amount=-2 -kerning first=166 second=356 amount=-5 -kerning first=169 second=116 amount=-1 -kerning first=48 second=368 amount=-2 -kerning first=1049 second=1069 amount=-1 -kerning first=188 second=972 amount=-1 -kerning first=191 second=281 amount=-1 -kerning first=1065 second=81 amount=-1 -kerning first=74 second=65 amount=-1 -kerning first=1094 second=243 amount=-1 -kerning first=94 second=227 amount=-1 -kerning first=1118 second=1263 amount=-1 -kerning first=237 second=117 amount=-1 -kerning first=357 second=269 amount=-1 -kerning first=254 second=973 amount=-1 -kerning first=49 second=1066 amount=-5 -kerning first=46 second=8221 amount=-1 -kerning first=1066 second=256 amount=-1 -kerning first=195 second=228 amount=-1 -kerning first=313 second=118 amount=-3 -kerning first=75 second=240 amount=-2 -kerning first=215 second=370 amount=-2 -kerning first=92 second=1256 amount=-2 -kerning first=1175 second=333 amount=-1 -kerning first=361 second=217 amount=-2 -kerning first=112 second=8222 amount=-1 -kerning first=121 second=79 amount=-2 -kerning first=1224 second=949 amount=-1 -kerning first=1026 second=963 amount=-1 -kerning first=8249 second=84 amount=-1 -kerning first=56 second=253 amount=-1 -kerning first=193 second=1257 amount=-1 -kerning first=8361 second=246 amount=-1 -kerning first=1099 second=346 amount=-1 -kerning first=923 second=360 amount=-2 -kerning first=1176 second=964 amount=-3 -kerning first=1186 second=45 amount=-2 -kerning first=1179 second=273 amount=-1 -kerning first=958 second=287 amount=-1 -kerning first=119 second=945 amount=-1 -kerning first=37 second=268 amount=-2 -kerning first=1037 second=219 amount=-2 -kerning first=287 second=1069 amount=-1 -kerning first=1071 second=361 amount=-1 -kerning first=318 second=243 amount=-1 -kerning first=1103 second=288 amount=-2 -kerning first=338 second=1263 amount=-1 -kerning first=103 second=269 amount=-1 -kerning first=963 second=232 amount=-1 -kerning first=1298 second=1176 amount=-1 -kerning first=41 second=216 amount=-2 -kerning first=184 second=106 amount=1 -kerning first=64 second=118 amount=-4 -kerning first=1080 second=71 amount=-2 -kerning first=201 second=962 amount=-1 -kerning first=8372 second=111 amount=-1 -kerning first=8366 second=351 amount=-1 -kerning first=902 second=83 amount=-1 -kerning first=84 second=283 amount=-3 -kerning first=345 second=333 amount=-1 -kerning first=367 second=949 amount=-1 -kerning first=961 second=1299 amount=-1 -kerning first=160 second=359 amount=-1 -kerning first=1299 second=8211 amount=-2 -kerning first=163 second=119 amount=-4 -kerning first=273 second=271 amount=-1 -kerning first=39 second=1195 amount=-1 -kerning first=42 second=371 amount=-1 -kerning first=182 second=1026 amount=-5 -kerning first=1049 second=84 amount=-5 -kerning first=185 second=286 amount=-2 -kerning first=1081 second=246 amount=-1 -kerning first=325 second=346 amount=-1 -kerning first=8369 second=1035 amount=-5 -kerning first=88 second=230 amount=-1 -kerning first=231 second=120 amount=-1 -kerning first=354 second=45 amount=-4 -kerning first=105 second=947 amount=-4 -kerning first=108 second=372 amount=-5 -kerning first=1186 second=8249 amount=-1 -kerning first=1210 second=85 amount=-2 -kerning first=251 second=287 amount=-1 -kerning first=968 second=335 amount=-1 -kerning first=971 second=97 amount=-1 -kerning first=8211 second=377 amount=-2 -kerning first=43 second=1069 amount=-1 -kerning first=49 second=81 amount=-2 -kerning first=1063 second=34 amount=-3 -kerning first=1051 second=259 amount=-1 -kerning first=189 second=231 amount=-1 -kerning first=301 second=361 amount=-1 -kerning first=304 second=121 amount=-1 -kerning first=69 second=243 amount=-1 -kerning first=209 second=373 amount=-4 -kerning first=330 second=288 amount=-2 -kerning first=86 second=1263 amount=-1 -kerning first=1119 second=336 amount=-2 -kerning first=950 second=110 amount=-2 -kerning first=946 second=350 amount=-1 -kerning first=255 second=232 amount=-1 -kerning first=375 second=362 amount=-2 -kerning first=168 second=244 amount=-1 -kerning first=278 second=374 amount=-5 -kerning first=275 second=1203 amount=-2 -kerning first=8222 second=87 amount=-3 -kerning first=187 second=1298 amount=-2 -kerning first=310 second=71 amount=-3 -kerning first=210 second=1071 amount=-1 -kerning first=1096 second=111 amount=-1 -kerning first=905 second=1177 amount=-1 -kerning first=910 second=363 amount=-2 -kerning first=93 second=333 amount=-1 -kerning first=236 second=245 amount=-1 -kerning first=356 second=375 amount=-2 -kerning first=951 second=290 amount=-2 -kerning first=113 second=949 amount=-1 -kerning first=376 second=1051 amount=-5 -kerning first=373 second=8211 amount=-1 -kerning first=34 second=44 amount=-1 -kerning first=287 second=84 amount=-5 -kerning first=8224 second=262 amount=-2 -kerning first=1065 second=364 amount=-1 -kerning first=191 second=1090 amount=-3 -kerning first=194 second=334 amount=-2 -kerning first=311 second=246 amount=-2 -kerning first=74 second=346 amount=-1 -kerning first=217 second=258 amount=-2 -kerning first=906 second=8212 amount=-2 -kerning first=100 second=45 amount=-2 -kerning first=94 second=964 amount=-3 -kerning first=354 second=8249 amount=-3 -kerning first=363 second=85 amount=-2 -kerning first=955 second=235 amount=-1 -kerning first=260 second=335 amount=-1 -kerning first=35 second=219 amount=-2 -kerning first=1028 second=377 amount=-1 -kerning first=170 second=1108 amount=-1 -kerning first=174 second=347 amount=-1 -kerning first=291 second=34 amount=-3 -kerning first=8240 second=212 amount=-2 -kerning first=55 second=361 amount=-1 -kerning first=1063 second=8216 amount=-3 -kerning first=58 second=121 amount=-1 -kerning first=195 second=965 amount=-1 -kerning first=75 second=1028 amount=-3 -kerning first=78 second=288 amount=-2 -kerning first=928 second=248 amount=-1 -kerning first=364 second=260 amount=-2 -kerning first=121 second=362 amount=-2 -kerning first=1224 second=8217 amount=-3 -kerning first=36 second=374 amount=-5 -kerning first=1039 second=87 amount=-5 -kerning first=178 second=289 amount=-1 -kerning first=8226 second=1185 amount=-3 -kerning first=62 second=71 amount=-2 -kerning first=1074 second=249 amount=-1 -kerning first=202 second=221 amount=-5 -kerning first=317 second=351 amount=-1 -kerning first=8361 second=1038 amount=-2 -kerning first=322 second=111 amount=-1 -kerning first=962 second=338 amount=-2 -kerning first=965 second=100 amount=-1 -kerning first=119 second=8211 amount=-1 -kerning first=43 second=84 amount=-5 -kerning first=1041 second=262 amount=-2 -kerning first=183 second=234 amount=-1 -kerning first=8230 second=8220 amount=-1 -kerning first=63 second=246 amount=-1 -kerning first=203 second=376 amount=-5 -kerning first=318 second=1035 amount=-5 -kerning first=323 second=291 amount=-1 -kerning first=901 second=211 amount=-2 -kerning first=1103 second=1098 amount=-3 -kerning first=1116 second=101 amount=-2 -kerning first=223 second=1059 amount=-2 -kerning first=100 second=8249 amount=-3 -kerning first=947 second=263 amount=-1 -kerning first=249 second=235 amount=-1 -kerning first=369 second=365 amount=-1 -kerning first=8212 second=90 amount=-2 -kerning first=47 second=34 amount=-3 -kerning first=1048 second=212 amount=-2 -kerning first=291 second=8216 amount=-3 -kerning first=67 second=196 amount=-1 -kerning first=1080 second=354 amount=-5 -kerning first=201 second=8250 amount=-1 -kerning first=210 second=86 amount=-2 -kerning first=902 second=366 amount=-2 -kerning first=87 second=336 amount=-2 -kerning first=1117 second=279 amount=-1 -kerning first=367 second=8217 amount=-3 -kerning first=8216 second=267 amount=-1 -kerning first=1046 second=1185 amount=-3 -kerning first=1049 second=367 amount=-1 -kerning first=188 second=337 amount=-1 -kerning first=191 second=99 amount=-1 -kerning first=300 second=940 amount=-1 -kerning first=303 second=249 amount=-1 -kerning first=1081 second=1038 amount=-2 -kerning first=88 second=967 amount=-2 -kerning first=351 second=1078 amount=-1 -kerning first=1210 second=368 amount=-2 -kerning first=254 second=338 amount=-2 -kerning first=374 second=941 amount=-4 -kerning first=167 second=352 amount=-1 -kerning first=280 second=262 amount=-2 -kerning first=49 second=364 amount=-2 -kerning first=189 second=968 amount=-1 -kerning first=192 second=277 amount=-1 -kerning first=69 second=1035 amount=-5 -kerning first=72 second=291 amount=-1 -kerning first=215 second=211 amount=-2 -kerning first=330 second=1098 amount=-3 -kerning first=912 second=251 amount=-1 -kerning first=238 second=113 amount=-1 -kerning first=355 second=955 amount=-1 -kerning first=358 second=263 amount=-1 -kerning first=1219 second=1066 amount=-5 -kerning first=1206 second=8221 amount=-2 -kerning first=8218 second=1194 amount=-1 -kerning first=8222 second=370 amount=-1 -kerning first=47 second=8216 amount=-3 -kerning first=1067 second=252 amount=-1 -kerning first=196 second=224 amount=-1 -kerning first=1064 second=943 amount=-1 -kerning first=305 second=1118 amount=-1 -kerning first=8361 second=67 amount=-2 -kerning first=213 second=1184 amount=-2 -kerning first=242 second=63 amount=-2 -kerning first=113 second=8217 amount=-3 -kerning first=958 second=103 amount=-1 -kerning first=1263 second=253 amount=-1 -kerning first=37 second=87 amount=-5 -kerning first=282 second=1185 amount=-3 -kerning first=287 second=367 amount=-1 -kerning first=57 second=249 amount=-1 -kerning first=54 second=940 amount=-1 -kerning first=926 second=356 amount=-5 -kerning first=934 second=116 amount=-1 -kerning first=341 second=226 amount=-1 -kerning first=1184 second=268 amount=-3 -kerning first=363 second=368 amount=-2 -kerning first=955 second=972 amount=-1 -kerning first=123 second=250 amount=-1 -kerning first=960 second=281 amount=-1 -kerning first=120 second=941 amount=-2 -kerning first=38 second=262 amount=-2 -kerning first=177 second=1241 amount=-1 -kerning first=180 second=187 amount=-1 -kerning first=283 second=8220 amount=-1 -kerning first=61 second=199 amount=-2 -kerning first=1073 second=357 amount=-1 -kerning first=198 second=1079 amount=-1 -kerning first=204 second=89 amount=-5 -kerning first=78 second=1098 amount=-3 -kerning first=84 second=101 amount=-3 -kerning first=221 second=942 amount=-3 -kerning first=101 second=955 amount=-1 -kerning first=361 second=8221 amount=-3 -kerning first=964 second=228 amount=-1 -kerning first=42 second=212 amount=-2 -kerning first=1039 second=370 amount=-2 -kerning first=1036 second=1194 amount=-3 -kerning first=294 second=943 amount=-1 -kerning first=297 second=252 amount=-1 -kerning first=62 second=354 amount=-5 -kerning first=59 second=1118 amount=-1 -kerning first=1081 second=67 amount=-2 -kerning first=205 second=266 amount=-2 -kerning first=903 second=79 amount=-2 -kerning first=108 second=213 amount=-2 -kerning first=1186 second=1195 amount=-1 -kerning first=251 second=103 amount=-1 -kerning first=371 second=253 amount=-1 -kerning first=962 second=1257 amount=-1 -kerning first=161 second=355 amount=-1 -kerning first=164 second=115 amount=-1 -kerning first=274 second=267 amount=-1 -kerning first=43 second=367 amount=-1 -kerning first=40 second=1185 amount=-3 -kerning first=63 second=1038 amount=-2 -kerning first=1083 second=242 amount=-1 -kerning first=209 second=214 amount=-2 -kerning first=323 second=1101 amount=-1 -kerning first=8377 second=287 amount=-1 -kerning first=901 second=945 amount=-1 -kerning first=89 second=226 amount=-4 -kerning first=1219 second=81 amount=-2 -kerning first=249 second=972 amount=-1 -kerning first=252 second=281 amount=-1 -kerning first=8212 second=373 amount=-1 -kerning first=41 second=8220 amount=-3 -kerning first=190 second=227 amount=-1 -kerning first=305 second=117 amount=-1 -kerning first=302 second=357 amount=-1 -kerning first=327 second=973 amount=-1 -kerning first=87 second=1224 amount=-2 -kerning first=90 second=381 amount=1 -kerning first=1168 second=332 amount=-2 -kerning first=356 second=216 amount=-1 -kerning first=951 second=106 amount=1 -kerning first=256 second=228 amount=-1 -kerning first=169 second=240 amount=-1 -kerning first=276 second=1194 amount=-2 -kerning first=8224 second=83 amount=-1 -kerning first=48 second=943 amount=-1 -kerning first=51 second=252 amount=-1 -kerning first=188 second=1256 amount=-2 -kerning first=208 second=8222 amount=-1 -kerning first=916 second=119 amount=-4 -kerning first=1174 second=271 amount=-1 -kerning first=1169 second=963 amount=-1 -kerning first=354 second=1195 amount=-3 -kerning first=357 second=371 amount=-1 -kerning first=952 second=286 amount=-2 -kerning first=117 second=253 amount=-1 -kerning first=254 second=1257 amount=-1 -kerning first=313 second=242 amount=-1 -kerning first=72 second=1101 amount=-1 -kerning first=215 second=945 amount=-1 -kerning first=1178 second=219 amount=-1 -kerning first=358 second=1069 amount=-1 -kerning first=956 second=231 amount=-1 -kerning first=1299 second=121 amount=-1 -kerning first=1033 second=373 amount=-1 -kerning first=56 second=357 amount=-1 -kerning first=59 second=117 amount=-1 -kerning first=8361 second=350 amount=-1 -kerning first=76 second=973 amount=-1 -kerning first=931 second=244 amount=-1 -kerning first=125 second=118 amount=-4 -kerning first=37 second=370 amount=-2 -kerning first=1034 second=1071 amount=-1 -kerning first=1041 second=83 amount=-1 -kerning first=179 second=283 amount=-1 -kerning first=63 second=67 amount=-2 -kerning first=1075 second=245 amount=-1 -kerning first=203 second=217 amount=-2 -kerning first=8365 second=290 amount=-2 -kerning first=223 second=359 amount=-1 -kerning first=226 second=119 amount=-1 -kerning first=341 second=963 amount=-1 -kerning first=103 second=371 amount=-1 -kerning first=100 second=1195 amount=-1 -kerning first=960 second=1090 amount=-3 -kerning first=963 second=334 amount=-2 -kerning first=271 second=218 amount=-2 -kerning first=184 second=230 amount=-1 -kerning first=296 second=360 amount=-2 -kerning first=8260 second=1059 amount=-2 -kerning first=8240 second=8212 amount=-2 -kerning first=64 second=242 amount=-1 -kerning first=201 second=947 amount=-4 -kerning first=204 second=372 amount=-5 -kerning first=8372 second=235 amount=-1 -kerning first=84 second=1240 amount=-1 -kerning first=1117 second=97 amount=-1 -kerning first=936 second=1108 amount=-1 -kerning first=250 second=231 amount=-1 -kerning first=964 second=965 amount=-1 -kerning first=163 second=243 amount=-1 -kerning first=273 second=373 amount=-4 -kerning first=182 second=1263 amount=-1 -kerning first=1081 second=350 amount=-1 -kerning first=900 second=1176 amount=-1 -kerning first=903 second=362 amount=-2 -kerning first=88 second=332 amount=-3 -kerning first=1118 second=275 amount=-1 -kerning first=1169 second=47 amount=-2 -kerning first=346 second=1203 amount=-1 -kerning first=377 second=71 amount=-1 -kerning first=971 second=221 amount=-5 -kerning first=270 second=8230 amount=-1 -kerning first=280 second=83 amount=-1 -kerning first=8217 second=261 amount=-1 -kerning first=1051 second=363 amount=-1 -kerning first=189 second=333 amount=-1 -kerning first=304 second=245 amount=-1 -kerning first=1087 second=290 amount=-2 -kerning first=209 second=949 amount=-1 -kerning first=901 second=8211 amount=-2 -kerning first=92 second=271 amount=-1 -kerning first=89 second=963 amount=-4 -kerning first=358 second=84 amount=-5 -kerning first=950 second=234 amount=-1 -kerning first=1219 second=364 amount=-2 -kerning first=255 second=334 amount=-2 -kerning first=252 second=1090 amount=-3 -kerning first=378 second=246 amount=-1 -kerning first=168 second=346 amount=-1 -kerning first=8222 second=211 amount=-1 -kerning first=50 second=360 amount=-2 -kerning first=1048 second=8212 amount=-2 -kerning first=190 second=964 amount=-3 -kerning first=193 second=273 amount=-1 -kerning first=196 second=45 amount=-2 -kerning first=73 second=287 amount=-1 -kerning first=1096 second=235 amount=-1 -kerning first=96 second=219 amount=-2 -kerning first=236 second=347 amount=-1 -kerning first=356 second=951 amount=-2 -kerning first=256 second=965 amount=-1 -kerning first=262 second=46 amount=-1 -kerning first=169 second=1028 amount=-2 -kerning first=172 second=288 amount=-2 -kerning first=8224 second=366 amount=-2 -kerning first=197 second=220 amount=-2 -kerning first=77 second=232 amount=-1 -kerning first=214 second=1176 amount=-1 -kerning first=338 second=275 amount=-1 -kerning first=341 second=47 amount=-2 -kerning first=240 second=289 amount=-1 -kerning first=955 second=337 amount=-1 -kerning first=960 second=99 amount=-1 -kerning first=123 second=71 amount=-2 -kerning first=1298 second=249 amount=-1 -kerning first=38 second=83 amount=-1 -kerning first=1035 second=261 amount=-1 -kerning first=177 second=233 amount=-1 -kerning first=8221 second=8218 amount=-1 -kerning first=58 second=245 amount=-1 -kerning first=198 second=375 amount=-1 -kerning first=316 second=290 amount=-2 -kerning first=215 second=8211 amount=-2 -kerning first=218 second=1051 amount=-1 -kerning first=928 second=352 amount=-1 -kerning first=956 second=968 amount=-1 -kerning first=124 second=246 amount=-1 -kerning first=266 second=376 amount=-2 -kerning first=1240 second=1035 amount=-2 -kerning first=39 second=258 amount=-3 -kerning first=1039 second=211 amount=-2 -kerning first=289 second=1059 amount=-2 -kerning first=1074 second=353 amount=-1 -kerning first=196 second=8249 amount=-3 -kerning first=1078 second=113 amount=-2 -kerning first=205 second=85 amount=-2 -kerning first=322 second=235 amount=-1 -kerning first=108 second=34 amount=-3 -kerning first=105 second=259 amount=-1 -kerning first=965 second=224 amount=-1 -kerning first=1037 second=1184 amount=-5 -kerning first=1041 second=366 amount=-2 -kerning first=183 second=336 amount=-2 -kerning first=298 second=248 amount=-1 -kerning first=63 second=350 amount=-1 -kerning first=8377 second=103 amount=-1 -kerning first=89 second=47 amount=-4 -kerning first=86 second=275 amount=-1 -kerning first=1116 second=225 amount=-1 -kerning first=352 second=87 amount=-2 -kerning first=1187 second=1185 amount=-2 -kerning first=249 second=337 amount=-1 -kerning first=252 second=99 amount=-1 -kerning first=369 second=940 amount=-1 -kerning first=372 second=249 amount=-2 -kerning first=165 second=111 amount=-1 -kerning first=162 second=351 amount=-1 -kerning first=271 second=953 amount=-1 -kerning first=41 second=1177 amount=-1 -kerning first=44 second=363 amount=-1 -kerning first=1038 second=8218 amount=-1 -kerning first=327 second=338 amount=-2 -kerning first=8372 second=972 amount=-1 -kerning first=905 second=250 amount=-1 -kerning first=902 second=941 amount=-1 -kerning first=8378 second=281 amount=-1 -kerning first=944 second=1241 amount=-1 -kerning first=948 second=187 amount=-1 -kerning first=250 second=968 amount=-1 -kerning first=253 second=277 amount=-1 -kerning first=376 second=199 amount=-3 -kerning first=967 second=1079 amount=-1 -kerning first=163 second=1035 amount=-5 -kerning first=166 second=291 amount=-1 -kerning first=973 second=89 amount=-5 -kerning first=42 second=8212 amount=-2 -kerning first=303 second=353 amount=-1 -kerning first=306 second=113 amount=-1 -kerning first=357 second=212 amount=-2 -kerning first=108 second=8216 amount=-3 -kerning first=1210 second=943 amount=-1 -kerning first=1223 second=252 amount=-1 -kerning first=374 second=1118 amount=-2 -kerning first=280 second=366 amount=-2 -kerning first=8211 second=8222 amount=-1 -kerning first=8225 second=79 amount=-2 -kerning first=52 second=248 amount=-1 -kerning first=195 second=171 amount=-3 -kerning first=313 second=63 amount=-4 -kerning first=209 second=8217 amount=-3 -kerning first=912 second=355 amount=-1 -kerning first=1175 second=267 amount=-1 -kerning first=358 second=367 amount=-1 -kerning first=1067 second=356 amount=-5 -kerning first=199 second=88 amount=-2 -kerning first=76 second=338 amount=-1 -kerning first=1096 second=972 amount=-1 -kerning first=1099 second=281 amount=-1 -kerning first=337 second=380 amount=-1 -kerning first=239 second=1241 amount=-1 -kerning first=958 second=227 amount=-1 -kerning first=1263 second=357 amount=-1 -kerning first=37 second=211 amount=-2 -kerning first=172 second=1098 amount=-3 -kerning first=176 second=339 amount=-1 -kerning first=179 second=101 amount=-1 -kerning first=57 second=353 amount=-1 -kerning first=60 second=113 amount=-1 -kerning first=200 second=263 amount=-1 -kerning first=8365 second=106 amount=1 -kerning first=1103 second=228 amount=-1 -kerning first=934 second=240 amount=-1 -kerning first=103 second=212 amount=-2 -kerning first=246 second=102 amount=-1 -kerning first=363 second=943 amount=-1 -kerning first=955 second=1256 amount=-2 -kerning first=123 second=354 amount=-5 -kerning first=271 second=39 amount=-3 -kerning first=35 second=1184 amount=-5 -kerning first=38 second=366 amount=-2 -kerning first=1028 second=8222 amount=-1 -kerning first=177 second=970 amount=-1 -kerning first=180 second=279 amount=-1 -kerning first=1044 second=79 amount=-1 -kerning first=8260 second=359 amount=-1 -kerning first=1073 second=920 amount=-2 -kerning first=204 second=213 amount=-2 -kerning first=8363 second=1026 amount=-5 -kerning first=8366 second=286 amount=-2 -kerning first=84 second=225 amount=-2 -kerning first=221 second=1119 amount=-3 -kerning first=345 second=267 amount=-1 -kerning first=101 second=1185 amount=-1 -kerning first=961 second=1083 amount=-1 -kerning first=124 second=1038 amount=-2 -kerning first=273 second=214 amount=-2 -kerning first=1039 second=945 amount=-1 -kerning first=185 second=226 amount=-1 -kerning first=297 second=356 amount=-5 -kerning first=300 second=116 amount=-1 -kerning first=205 second=368 amount=-2 -kerning first=322 second=972 amount=-1 -kerning first=325 second=281 amount=-1 -kerning first=251 second=227 amount=-1 -kerning first=371 second=357 amount=-1 -kerning first=374 second=117 amount=-2 -kerning first=968 second=269 amount=-1 -kerning first=274 second=369 amount=-1 -kerning first=46 second=251 amount=-1 -kerning first=203 second=8221 amount=-3 -kerning first=206 second=1066 amount=-5 -kerning first=1087 second=106 amount=1 -kerning first=330 second=228 amount=-1 -kerning first=86 second=1080 amount=-2 -kerning first=1116 second=962 amount=-2 -kerning first=946 second=283 amount=-1 -kerning first=249 second=1256 amount=-2 -kerning first=1064 second=119 amount=-4 -kerning first=302 second=920 amount=-2 -kerning first=70 second=341 amount=-1 -kerning first=1084 second=1026 amount=-5 -kerning first=73 second=103 amount=-1 -kerning first=327 second=1257 amount=-1 -kerning first=8378 second=1090 amount=-3 -kerning first=93 second=267 amount=-1 -kerning first=1171 second=218 amount=-2 -kerning first=951 second=230 amount=-1 -kerning first=1220 second=360 amount=-2 -kerning first=376 second=923 amount=-5 -kerning first=379 second=242 amount=-1 -kerning first=973 second=372 amount=-5 -kerning first=970 second=947 amount=-2 -kerning first=166 second=1101 amount=-1 -kerning first=51 second=356 amount=-5 -kerning first=54 second=116 amount=-1 -kerning first=194 second=268 amount=-2 -kerning first=74 second=281 amount=-1 -kerning first=1097 second=231 amount=-1 -kerning first=916 second=243 amount=-1 -kerning first=1174 second=373 amount=-2 -kerning first=117 second=357 amount=-1 -kerning first=260 second=269 amount=-1 -kerning first=170 second=973 amount=-1 -kerning first=8225 second=362 amount=-2 -kerning first=198 second=216 amount=-2 -kerning first=316 second=106 amount=1 -kerning first=78 second=228 amount=-1 -kerning first=221 second=118 amount=-2 -kerning first=95 second=1194 amount=-2 -kerning first=956 second=333 amount=-1 -kerning first=124 second=67 amount=-2 -kerning first=1299 second=245 amount=-1 -kerning first=1036 second=257 amount=-1 -kerning first=178 second=229 amount=-1 -kerning first=294 second=119 amount=-4 -kerning first=289 second=359 amount=-1 -kerning first=8222 second=8211 amount=-1 -kerning first=56 second=920 amount=-2 -kerning first=196 second=1195 amount=-1 -kerning first=314 second=1026 amount=-5 -kerning first=317 second=286 amount=-2 -kerning first=8364 second=234 amount=-1 -kerning first=76 second=1257 amount=-1 -kerning first=1099 second=1090 amount=-3 -kerning first=931 second=346 amount=-1 -kerning first=365 second=360 amount=-2 -kerning first=958 second=964 amount=-3 -kerning first=962 second=273 amount=-1 -kerning first=965 second=45 amount=-2 -kerning first=125 second=242 amount=-1 -kerning first=37 second=945 amount=-1 -kerning first=179 second=1240 amount=-2 -kerning first=176 second=1262 amount=-2 -kerning first=1071 second=1108 amount=-1 -kerning first=200 second=1069 amount=-1 -kerning first=206 second=81 amount=-2 -kerning first=323 second=231 amount=-1 -kerning first=901 second=121 amount=-1 -kerning first=1103 second=965 amount=-1 -kerning first=934 second=1028 amount=-2 -kerning first=1044 second=362 amount=-1 -kerning first=184 second=332 amount=-2 -kerning first=299 second=244 amount=-1 -kerning first=1080 second=289 amount=-1 -kerning first=67 second=106 amount=1 -kerning first=8372 second=337 amount=-1 -kerning first=8378 second=99 amount=-1 -kerning first=905 second=71 amount=-2 -kerning first=84 second=962 amount=-3 -kerning first=1117 second=221 amount=-5 -kerning first=944 second=233 amount=-1 -kerning first=250 second=333 amount=-1 -kerning first=373 second=245 amount=-1 -kerning first=967 second=375 amount=-1 -kerning first=273 second=949 amount=-1 -kerning first=276 second=257 amount=-1 -kerning first=1039 second=8211 amount=-2 -kerning first=48 second=119 amount=-4 -kerning first=185 second=963 amount=-1 -kerning first=188 second=271 amount=-1 +kerning first=56 second=8220 amount=-1 +kerning first=56 second=8221 amount=-1 +kerning first=56 second=8222 amount=-1 +kerning first=56 second=8230 amount=-1 +kerning first=57 second=44 amount=-1 +kerning first=57 second=46 amount=-1 +kerning first=57 second=55 amount=-1 +kerning first=57 second=8218 amount=-1 +kerning first=57 second=8222 amount=-1 +kerning first=57 second=8230 amount=-1 +kerning first=110 second=34 amount=-1 +kerning first=110 second=39 amount=-1 +kerning first=110 second=63 amount=-2 +kerning first=110 second=102 amount=-1 +kerning first=110 second=106 amount=1 +kerning first=110 second=118 amount=-1 +kerning first=110 second=119 amount=-1 +kerning first=110 second=373 amount=-1 +kerning first=110 second=947 amount=-1 +kerning first=110 second=957 amount=-1 +kerning first=110 second=964 amount=-1 +kerning first=110 second=1090 amount=-1 +kerning first=110 second=1098 amount=-1 +kerning first=110 second=1112 amount=1 +kerning first=110 second=1185 amount=-1 +kerning first=110 second=1199 amount=-1 +kerning first=110 second=8216 amount=-1 +kerning first=110 second=8217 amount=-1 +kerning first=110 second=8220 amount=-1 +kerning first=110 second=8221 amount=-1 +kerning first=64 second=106 amount=5 +kerning first=64 second=1112 amount=5 +kerning first=65 second=34 amount=-3 +kerning first=65 second=38 amount=-1 +kerning first=65 second=39 amount=-3 +kerning first=65 second=45 amount=-2 +kerning first=65 second=63 amount=-5 +kerning first=65 second=67 amount=-2 +kerning first=65 second=71 amount=-2 +kerning first=65 second=74 amount=-1 +kerning first=65 second=79 amount=-2 +kerning first=65 second=81 amount=-2 +kerning first=65 second=83 amount=-1 +kerning first=65 second=84 amount=-5 +kerning first=65 second=85 amount=-2 +kerning first=65 second=86 amount=-6 +kerning first=65 second=87 amount=-5 +kerning first=65 second=89 amount=-5 +kerning first=65 second=97 amount=-1 +kerning first=65 second=99 amount=-1 +kerning first=65 second=100 amount=-1 +kerning first=65 second=101 amount=-1 +kerning first=65 second=102 amount=-2 +kerning first=65 second=103 amount=-1 +kerning first=65 second=106 amount=1 +kerning first=65 second=111 amount=-1 +kerning first=65 second=113 amount=-1 +kerning first=65 second=115 amount=-1 +kerning first=65 second=116 amount=-1 +kerning first=65 second=117 amount=-1 +kerning first=65 second=118 amount=-4 +kerning first=65 second=119 amount=-4 +kerning first=65 second=121 amount=-1 +kerning first=65 second=171 amount=-3 +kerning first=65 second=173 amount=-2 +kerning first=65 second=187 amount=-1 +kerning first=65 second=199 amount=-2 +kerning first=65 second=210 amount=-2 +kerning first=65 second=211 amount=-2 +kerning first=65 second=212 amount=-2 +kerning first=65 second=213 amount=-2 +kerning first=65 second=214 amount=-2 +kerning first=65 second=216 amount=-2 +kerning first=65 second=217 amount=-2 +kerning first=65 second=218 amount=-2 +kerning first=65 second=219 amount=-2 +kerning first=65 second=220 amount=-2 +kerning first=65 second=221 amount=-5 +kerning first=65 second=224 amount=-1 +kerning first=65 second=225 amount=-1 +kerning first=65 second=226 amount=-1 +kerning first=65 second=227 amount=-1 +kerning first=65 second=228 amount=-1 +kerning first=65 second=229 amount=-1 +kerning first=65 second=230 amount=-1 +kerning first=65 second=231 amount=-1 +kerning first=65 second=232 amount=-1 +kerning first=65 second=233 amount=-1 +kerning first=65 second=234 amount=-1 +kerning first=65 second=235 amount=-1 +kerning first=65 second=240 amount=-1 +kerning first=65 second=242 amount=-1 +kerning first=65 second=243 amount=-1 +kerning first=65 second=244 amount=-1 +kerning first=65 second=245 amount=-1 +kerning first=65 second=246 amount=-1 +kerning first=65 second=248 amount=-1 +kerning first=65 second=249 amount=-1 +kerning first=65 second=250 amount=-1 +kerning first=65 second=251 amount=-1 +kerning first=65 second=252 amount=-1 +kerning first=65 second=253 amount=-1 +kerning first=65 second=257 amount=-1 +kerning first=65 second=259 amount=-1 +kerning first=65 second=261 amount=-1 +kerning first=65 second=262 amount=-2 +kerning first=65 second=263 amount=-1 +kerning first=65 second=266 amount=-2 +kerning first=65 second=267 amount=-1 +kerning first=65 second=268 amount=-2 +kerning first=65 second=269 amount=-1 +kerning first=65 second=271 amount=-1 +kerning first=65 second=273 amount=-1 +kerning first=65 second=275 amount=-1 +kerning first=65 second=277 amount=-1 +kerning first=65 second=279 amount=-1 +kerning first=65 second=281 amount=-1 +kerning first=65 second=283 amount=-1 +kerning first=65 second=286 amount=-2 +kerning first=65 second=287 amount=-1 +kerning first=65 second=288 amount=-2 +kerning first=65 second=289 amount=-1 +kerning first=65 second=290 amount=-2 +kerning first=65 second=291 amount=-1 +kerning first=65 second=332 amount=-2 +kerning first=65 second=333 amount=-1 +kerning first=65 second=334 amount=-2 +kerning first=65 second=335 amount=-1 +kerning first=65 second=336 amount=-2 +kerning first=65 second=337 amount=-1 +kerning first=65 second=338 amount=-2 +kerning first=65 second=339 amount=-1 +kerning first=65 second=346 amount=-1 +kerning first=65 second=347 amount=-1 +kerning first=65 second=350 amount=-1 +kerning first=65 second=351 amount=-1 +kerning first=65 second=352 amount=-1 +kerning first=65 second=353 amount=-1 +kerning first=65 second=354 amount=-5 +kerning first=65 second=355 amount=-1 +kerning first=65 second=356 amount=-5 +kerning first=65 second=357 amount=-1 +kerning first=65 second=359 amount=-1 +kerning first=65 second=360 amount=-2 +kerning first=65 second=361 amount=-1 +kerning first=65 second=362 amount=-2 +kerning first=65 second=363 amount=-1 +kerning first=65 second=364 amount=-2 +kerning first=65 second=365 amount=-1 +kerning first=65 second=366 amount=-2 +kerning first=65 second=367 amount=-1 +kerning first=65 second=368 amount=-2 +kerning first=65 second=369 amount=-1 +kerning first=65 second=370 amount=-2 +kerning first=65 second=371 amount=-1 +kerning first=65 second=372 amount=-5 +kerning first=65 second=373 amount=-4 +kerning first=65 second=374 amount=-5 +kerning first=65 second=375 amount=-1 +kerning first=65 second=376 amount=-5 +kerning first=65 second=920 amount=-2 +kerning first=65 second=927 amount=-2 +kerning first=65 second=932 amount=-5 +kerning first=65 second=933 amount=-5 +kerning first=65 second=936 amount=-3 +kerning first=65 second=939 amount=-5 +kerning first=65 second=940 amount=-1 +kerning first=65 second=941 amount=-1 +kerning first=65 second=943 amount=-1 +kerning first=65 second=945 amount=-1 +kerning first=65 second=947 amount=-4 +kerning first=65 second=949 amount=-1 +kerning first=65 second=950 amount=-1 +kerning first=65 second=953 amount=-1 +kerning first=65 second=957 amount=-4 +kerning first=65 second=959 amount=-1 +kerning first=65 second=962 amount=-1 +kerning first=65 second=963 amount=-1 +kerning first=65 second=964 amount=-3 +kerning first=65 second=965 amount=-1 +kerning first=65 second=966 amount=-1 +kerning first=65 second=968 amount=-1 +kerning first=65 second=970 amount=-1 +kerning first=65 second=972 amount=-1 +kerning first=65 second=973 amount=-1 kerning first=65 second=1026 amount=-5 -kerning first=1085 second=234 amount=-1 -kerning first=325 second=1090 amount=-3 -kerning first=906 second=246 amount=-1 -kerning first=91 second=218 amount=-2 -kerning first=1118 second=376 amount=-5 -kerning first=354 second=258 amount=-6 -kerning first=254 second=273 amount=-1 -kerning first=251 second=964 amount=-3 -kerning first=965 second=8249 amount=-3 -kerning first=167 second=287 amount=-1 -kerning first=192 second=219 amount=-2 -kerning first=301 second=1108 amount=-1 -kerning first=304 second=347 amount=-1 -kerning first=72 second=231 amount=-1 -kerning first=215 second=121 amount=-1 -kerning first=330 second=965 amount=-1 -kerning first=336 second=46 amount=-1 -kerning first=92 second=373 amount=-4 -kerning first=950 second=336 amount=-2 -kerning first=1224 second=248 amount=-1 -kerning first=258 second=220 amount=-2 -kerning first=278 second=1176 amount=-1 -kerning first=8218 second=1063 amount=-3 -kerning first=53 second=244 amount=-1 -kerning first=193 second=374 amount=-5 -kerning first=310 second=289 amount=-1 -kerning first=1096 second=337 amount=-1 -kerning first=1099 second=99 amount=-1 -kerning first=910 second=1114 amount=-3 -kerning first=923 second=111 amount=-1 -kerning first=915 second=351 amount=-1 -kerning first=1176 second=261 amount=-1 -kerning first=1171 second=953 amount=-1 -kerning first=239 second=233 amount=-1 -kerning first=356 second=1177 amount=-2 -kerning first=119 second=245 amount=-1 -kerning first=34 second=257 amount=-1 -kerning first=8224 second=941 amount=-1 -kerning first=8230 second=250 amount=-1 -kerning first=200 second=84 amount=-5 -kerning first=74 second=1090 amount=-3 -kerning first=77 second=334 amount=-2 -kerning first=315 second=234 amount=-1 -kerning first=338 second=376 amount=-5 -kerning first=916 second=1035 amount=-5 -kerning first=926 second=291 amount=-1 -kerning first=1184 second=211 amount=-3 -kerning first=357 second=8212 amount=-2 -kerning first=1298 second=353 amount=-1 -kerning first=1035 second=365 amount=-1 -kerning first=177 second=335 amount=-1 -kerning first=180 second=97 amount=-1 -kerning first=55 second=1108 amount=-1 -kerning first=58 second=347 amount=-1 -kerning first=201 second=259 amount=-1 -kerning first=204 second=34 amount=-3 -kerning first=78 second=965 amount=-1 -kerning first=84 second=46 amount=-3 -kerning first=1178 second=1184 amount=-2 -kerning first=367 second=248 amount=-1 -kerning first=961 second=378 amount=-1 -kerning first=964 second=171 amount=-3 -kerning first=124 second=350 amount=-1 -kerning first=36 second=1176 amount=-1 -kerning first=1033 second=8217 amount=-2 -kerning first=178 second=966 amount=-1 -kerning first=182 second=275 amount=-1 -kerning first=62 second=289 amount=-1 -kerning first=322 second=337 amount=-1 -kerning first=325 second=99 amount=-1 -kerning first=900 second=249 amount=-1 -kerning first=105 second=363 amount=-1 -kerning first=245 second=967 amount=-2 -kerning first=161 second=290 amount=-2 -kerning first=274 second=210 amount=-2 -kerning first=37 second=8211 amount=-2 -kerning first=1041 second=941 amount=-1 -kerning first=298 second=352 amount=-1 -kerning first=1083 second=187 amount=-1 -kerning first=206 second=364 amount=-2 -kerning first=323 second=968 amount=-1 -kerning first=8377 second=227 amount=-1 -kerning first=904 second=199 amount=-2 -kerning first=86 second=376 amount=-5 -kerning first=1119 second=89 amount=-5 -kerning first=940 second=1098 amount=-2 -kerning first=946 second=101 amount=-1 -kerning first=103 second=8212 amount=-2 -kerning first=372 second=353 amount=-2 -kerning first=375 second=113 amount=-1 -kerning first=966 second=955 amount=-1 -kerning first=165 second=235 amount=-1 -kerning first=204 second=8216 amount=-3 -kerning first=8372 second=1256 amount=-2 -kerning first=902 second=1118 amount=-1 -kerning first=905 second=354 amount=-5 -kerning first=84 second=8250 amount=-1 -kerning first=87 second=1075 amount=-2 -kerning first=910 second=114 amount=-3 -kerning first=1168 second=266 amount=-2 -kerning first=1171 second=39 amount=-3 -kerning first=350 second=1184 amount=-1 -kerning first=944 second=970 amount=-1 -kerning first=948 second=279 amount=-1 -kerning first=113 second=248 amount=-1 -kerning first=256 second=171 amount=-3 -kerning first=973 second=213 amount=-2 -kerning first=273 second=8217 amount=-3 -kerning first=194 second=87 amount=-5 -kerning first=74 second=99 amount=-1 -kerning first=214 second=249 amount=-1 -kerning first=332 second=379 amount=-1 -kerning first=906 second=1038 amount=-2 -kerning first=91 second=953 amount=-1 -kerning first=94 second=261 amount=-1 -kerning first=1174 second=214 amount=-1 -kerning first=952 second=226 amount=-1 -kerning first=1223 second=356 amount=-5 -kerning first=170 second=338 amount=-2 -kerning first=174 second=100 amount=-1 -kerning first=280 second=941 amount=-1 -kerning first=52 second=352 amount=-1 -kerning first=1069 second=65 amount=-2 -kerning first=195 second=262 amount=-2 -kerning first=72 second=968 amount=-1 -kerning first=75 second=277 amount=-2 -kerning first=235 second=1098 amount=-1 -kerning first=238 second=339 amount=-1 -kerning first=361 second=251 amount=-1 -kerning first=950 second=1224 amount=-2 -kerning first=121 second=113 amount=-1 -kerning first=118 second=353 amount=-1 -kerning first=972 second=8221 amount=-1 -kerning first=1026 second=1066 amount=-5 -kerning first=8361 second=283 amount=-1 -kerning first=1096 second=1256 amount=-2 -kerning first=96 second=1184 amount=-5 -kerning first=1186 second=79 amount=-1 -kerning first=239 second=970 amount=-1 -kerning first=1263 second=920 amount=-2 -kerning first=1037 second=253 amount=-1 -kerning first=179 second=225 amount=-1 -kerning first=197 second=1185 amount=-3 -kerning first=200 second=367 amount=-1 -kerning first=8365 second=230 amount=-1 -kerning first=80 second=379 amount=-1 -kerning first=926 second=1101 amount=-1 -kerning first=1184 second=945 amount=-2 -kerning first=369 second=116 amount=-1 -kerning first=963 second=268 amount=-2 -kerning first=41 second=250 amount=-1 -kerning first=38 second=941 amount=-1 -kerning first=61 second=1241 amount=-1 -kerning first=64 second=187 amount=-1 -kerning first=198 second=8220 amount=-3 -kerning first=8363 second=1263 amount=-1 -kerning first=902 second=117 amount=-1 -kerning first=84 second=326 amount=-2 -kerning first=936 second=973 amount=-1 -kerning first=967 second=216 amount=-2 -kerning first=1049 second=118 amount=-4 -kerning first=300 second=240 amount=-1 -kerning first=1078 second=974 amount=-1 -kerning first=1081 second=283 amount=-1 -kerning first=205 second=943 amount=-1 -kerning first=322 second=1256 amount=-2 -kerning first=906 second=67 amount=-2 -kerning first=88 second=266 amount=-3 -kerning first=91 second=39 amount=-3 -kerning first=1118 second=217 amount=-2 -kerning first=343 second=8222 amount=-3 -kerning first=354 second=79 amount=-1 -kerning first=1210 second=119 amount=-4 -kerning first=371 second=920 amount=-2 -kerning first=374 second=241 amount=-3 -kerning first=965 second=1195 amount=-1 -kerning first=968 second=371 amount=-1 -kerning first=167 second=103 amount=-1 -kerning first=46 second=355 amount=-1 -kerning first=49 second=115 amount=-1 -kerning first=1047 second=1046 amount=-2 -kerning first=189 second=267 amount=-1 -kerning first=1087 second=230 amount=-1 -kerning first=92 second=214 amount=-2 -kerning first=8377 second=964 amount=-3 -kerning first=1119 second=372 amount=-5 -kerning first=946 second=1240 amount=-2 -kerning first=255 second=268 amount=-2 -kerning first=1026 second=81 amount=-2 -kerning first=165 second=972 amount=-1 -kerning first=168 second=281 amount=-1 -kerning first=8212 second=1175 amount=-2 -kerning first=8218 second=361 amount=-1 -kerning first=8222 second=121 amount=-1 -kerning first=1064 second=243 amount=-1 -kerning first=73 second=227 amount=-1 -kerning first=1084 second=1263 amount=-1 -kerning first=93 second=369 amount=-1 -kerning first=951 second=332 amount=-2 -kerning first=172 second=228 amount=-1 -kerning first=287 second=118 amount=-4 -kerning first=8230 second=71 amount=-1 -kerning first=54 second=240 amount=-1 -kerning first=1068 second=193 amount=-1 -kerning first=191 second=1194 amount=-2 -kerning first=194 second=370 amount=-2 -kerning first=311 second=283 amount=-2 -kerning first=1097 second=333 amount=-1 -kerning first=338 second=217 amount=-2 -kerning first=100 second=79 amount=-2 -kerning first=1174 second=949 amount=-1 -kerning first=240 second=229 amount=-1 -kerning first=363 second=119 amount=-4 -kerning first=955 second=271 amount=-1 -kerning first=952 second=963 amount=-1 -kerning first=117 second=920 amount=-2 -kerning first=260 second=371 amount=-1 -kerning first=35 second=253 amount=-1 -kerning first=170 second=1257 amount=-1 -kerning first=8240 second=246 amount=-1 -kerning first=316 second=230 amount=-1 -kerning first=218 second=923 amount=-2 -kerning first=221 second=242 amount=-4 -kerning first=928 second=287 amount=-1 -kerning first=238 second=1262 amount=-2 -kerning first=1299 second=347 amount=-1 -kerning first=1036 second=361 amount=-1 -kerning first=1039 second=121 amount=-1 -kerning first=294 second=243 amount=-1 -kerning first=1074 second=288 amount=-2 -kerning first=314 second=1263 amount=-1 -kerning first=8364 second=336 amount=-2 -kerning first=1186 second=362 amount=-1 -kerning first=962 second=374 amount=-5 -kerning first=161 second=106 amount=1 -kerning first=270 second=256 amount=-2 -kerning first=43 second=118 amount=-4 -kerning first=179 second=962 amount=-1 -kerning first=63 second=283 amount=-1 -kerning first=323 second=333 amount=-1 -kerning first=901 second=245 amount=-1 -kerning first=86 second=217 amount=-2 -kerning first=1184 second=8211 amount=-4 -kerning first=109 second=119 amount=-1 -kerning first=249 second=271 amount=-1 -kerning first=372 second=194 amount=-5 -kerning first=126 second=1026 amount=-5 -kerning first=162 second=286 amount=-2 -kerning first=1044 second=934 amount=-2 -kerning first=1048 second=246 amount=-1 -kerning first=299 second=346 amount=-1 -kerning first=207 second=360 amount=-2 -kerning first=324 second=964 amount=-1 -kerning first=327 second=273 amount=-1 -kerning first=84 second=947 amount=-2 -kerning first=1168 second=85 amount=-2 -kerning first=944 second=335 amount=-1 -kerning first=948 second=97 amount=-1 -kerning first=253 second=219 amount=-2 -kerning first=376 second=109 amount=-3 -kerning first=373 second=347 amount=-1 -kerning first=973 second=34 amount=-3 -kerning first=166 second=231 amount=-1 -kerning first=276 second=361 amount=-1 -kerning first=8220 second=74 amount=-4 -kerning first=48 second=243 amount=-1 -kerning first=188 second=373 amount=-4 -kerning first=300 second=1028 amount=-2 -kerning first=303 second=288 amount=-2 +kerning first=65 second=1028 amount=-2 +kerning first=65 second=1029 amount=-1 +kerning first=65 second=1032 amount=-1 +kerning first=65 second=1035 amount=-5 +kerning first=65 second=1038 amount=-2 +kerning first=65 second=1054 amount=-2 +kerning first=65 second=1057 amount=-2 +kerning first=65 second=1058 amount=-5 +kerning first=65 second=1059 amount=-2 +kerning first=65 second=1063 amount=-3 +kerning first=65 second=1066 amount=-5 +kerning first=65 second=1069 amount=-1 +kerning first=65 second=1072 amount=-1 +kerning first=65 second=1077 amount=-1 +kerning first=65 second=1079 amount=-1 +kerning first=65 second=1086 amount=-1 +kerning first=65 second=1089 amount=-1 +kerning first=65 second=1090 amount=-3 +kerning first=65 second=1091 amount=-1 +kerning first=65 second=1092 amount=-1 +kerning first=65 second=1098 amount=-3 +kerning first=65 second=1101 amount=-1 +kerning first=65 second=1104 amount=-1 +kerning first=65 second=1105 amount=-1 +kerning first=65 second=1108 amount=-1 +kerning first=65 second=1109 amount=-1 +kerning first=65 second=1112 amount=1 +kerning first=65 second=1118 amount=-1 +kerning first=65 second=1176 amount=-1 +kerning first=65 second=1177 amount=-1 +kerning first=65 second=1184 amount=-5 +kerning first=65 second=1185 amount=-3 +kerning first=65 second=1194 amount=-2 +kerning first=65 second=1195 amount=-1 +kerning first=65 second=1198 amount=-5 +kerning first=65 second=1199 amount=-4 +kerning first=65 second=1240 amount=-2 +kerning first=65 second=1241 amount=-1 +kerning first=65 second=1256 amount=-2 +kerning first=65 second=1257 amount=-1 +kerning first=65 second=1262 amount=-2 kerning first=65 second=1263 amount=-1 -kerning first=1085 second=336 amount=-2 -kerning first=906 second=350 amount=-1 +kerning first=65 second=8211 amount=-2 +kerning first=65 second=8212 amount=-2 +kerning first=65 second=8216 amount=-3 +kerning first=65 second=8217 amount=-3 +kerning first=65 second=8220 amount=-3 +kerning first=65 second=8221 amount=-3 +kerning first=65 second=8249 amount=-3 +kerning first=65 second=8250 amount=-1 +kerning first=66 second=65 amount=-1 +kerning first=66 second=84 amount=-1 +kerning first=66 second=86 amount=-1 +kerning first=66 second=87 amount=-1 +kerning first=66 second=88 amount=-2 +kerning first=66 second=89 amount=-2 +kerning first=66 second=193 amount=-1 +kerning first=66 second=194 amount=-1 +kerning first=66 second=196 amount=-1 +kerning first=66 second=197 amount=-1 +kerning first=66 second=198 amount=-1 +kerning first=66 second=221 amount=-2 +kerning first=66 second=256 amount=-1 +kerning first=66 second=258 amount=-1 +kerning first=66 second=260 amount=-1 +kerning first=66 second=354 amount=-1 +kerning first=66 second=356 amount=-1 +kerning first=66 second=372 amount=-1 +kerning first=66 second=374 amount=-2 +kerning first=66 second=376 amount=-2 +kerning first=66 second=913 amount=-1 +kerning first=66 second=916 amount=-1 +kerning first=66 second=923 amount=-1 +kerning first=66 second=932 amount=-1 +kerning first=66 second=933 amount=-2 +kerning first=66 second=935 amount=-2 +kerning first=66 second=939 amount=-2 +kerning first=66 second=955 amount=-1 +kerning first=66 second=1026 amount=-1 +kerning first=66 second=1035 amount=-1 +kerning first=66 second=1040 amount=-1 +kerning first=66 second=1046 amount=-2 +kerning first=66 second=1058 amount=-1 +kerning first=66 second=1061 amount=-2 +kerning first=66 second=1066 amount=-1 +kerning first=66 second=1174 amount=-2 +kerning first=66 second=1184 amount=-1 +kerning first=66 second=1198 amount=-2 +kerning first=66 second=1202 amount=-2 +kerning first=67 second=44 amount=-1 +kerning first=67 second=45 amount=-1 +kerning first=67 second=46 amount=-1 +kerning first=67 second=47 amount=-1 +kerning first=67 second=65 amount=-1 +kerning first=67 second=84 amount=-1 +kerning first=67 second=86 amount=-1 +kerning first=67 second=87 amount=-1 +kerning first=67 second=88 amount=-2 +kerning first=67 second=89 amount=-2 +kerning first=67 second=90 amount=-1 +kerning first=67 second=106 amount=1 +kerning first=67 second=171 amount=-1 +kerning first=67 second=173 amount=-1 +kerning first=67 second=193 amount=-1 +kerning first=67 second=194 amount=-1 +kerning first=67 second=196 amount=-1 +kerning first=67 second=197 amount=-1 +kerning first=67 second=198 amount=-1 +kerning first=67 second=221 amount=-2 +kerning first=67 second=256 amount=-1 +kerning first=67 second=258 amount=-1 +kerning first=67 second=260 amount=-1 +kerning first=67 second=354 amount=-1 +kerning first=67 second=356 amount=-1 +kerning first=67 second=372 amount=-1 +kerning first=67 second=374 amount=-2 +kerning first=67 second=376 amount=-2 +kerning first=67 second=377 amount=-1 +kerning first=67 second=379 amount=-1 +kerning first=67 second=381 amount=-1 +kerning first=67 second=913 amount=-1 +kerning first=67 second=916 amount=-1 +kerning first=67 second=918 amount=-1 +kerning first=67 second=923 amount=-1 +kerning first=67 second=932 amount=-1 +kerning first=67 second=933 amount=-2 +kerning first=67 second=935 amount=-2 +kerning first=67 second=939 amount=-2 +kerning first=67 second=1026 amount=-1 +kerning first=67 second=1033 amount=-1 +kerning first=67 second=1035 amount=-1 +kerning first=67 second=1040 amount=-1 +kerning first=67 second=1044 amount=-1 +kerning first=67 second=1046 amount=-2 +kerning first=67 second=1051 amount=-1 +kerning first=67 second=1058 amount=-1 +kerning first=67 second=1061 amount=-2 +kerning first=67 second=1066 amount=-1 +kerning first=67 second=1069 amount=1 +kerning first=67 second=1112 amount=1 +kerning first=67 second=1174 amount=-2 +kerning first=67 second=1176 amount=1 +kerning first=67 second=1184 amount=-1 +kerning first=67 second=1198 amount=-2 +kerning first=67 second=1202 amount=-2 +kerning first=67 second=1298 amount=-1 +kerning first=67 second=8211 amount=-1 +kerning first=67 second=8212 amount=-1 +kerning first=67 second=8218 amount=-1 +kerning first=67 second=8222 amount=-1 +kerning first=67 second=8230 amount=-1 +kerning first=67 second=8249 amount=-1 +kerning first=68 second=44 amount=-1 +kerning first=68 second=46 amount=-1 +kerning first=68 second=47 amount=-1 +kerning first=68 second=65 amount=-2 +kerning first=68 second=84 amount=-2 +kerning first=68 second=86 amount=-2 +kerning first=68 second=87 amount=-2 +kerning first=68 second=88 amount=-3 +kerning first=68 second=89 amount=-3 +kerning first=68 second=90 amount=-1 +kerning first=68 second=193 amount=-2 +kerning first=68 second=194 amount=-2 +kerning first=68 second=196 amount=-2 +kerning first=68 second=197 amount=-2 +kerning first=68 second=198 amount=-2 +kerning first=68 second=221 amount=-3 +kerning first=68 second=256 amount=-2 +kerning first=68 second=258 amount=-2 +kerning first=68 second=260 amount=-2 +kerning first=68 second=354 amount=-2 +kerning first=68 second=356 amount=-2 +kerning first=68 second=372 amount=-2 +kerning first=68 second=374 amount=-3 +kerning first=68 second=376 amount=-3 +kerning first=68 second=377 amount=-1 +kerning first=68 second=379 amount=-1 +kerning first=68 second=381 amount=-1 +kerning first=68 second=913 amount=-2 +kerning first=68 second=916 amount=-2 +kerning first=68 second=918 amount=-1 +kerning first=68 second=923 amount=-2 +kerning first=68 second=932 amount=-2 +kerning first=68 second=933 amount=-3 +kerning first=68 second=935 amount=-3 +kerning first=68 second=939 amount=-3 +kerning first=68 second=955 amount=-2 +kerning first=68 second=967 amount=-1 +kerning first=68 second=1026 amount=-2 +kerning first=68 second=1033 amount=-1 +kerning first=68 second=1035 amount=-2 +kerning first=68 second=1040 amount=-2 +kerning first=68 second=1044 amount=-1 +kerning first=68 second=1046 amount=-3 +kerning first=68 second=1051 amount=-1 +kerning first=68 second=1058 amount=-2 +kerning first=68 second=1061 amount=-3 +kerning first=68 second=1066 amount=-2 +kerning first=68 second=1071 amount=-1 +kerning first=68 second=1174 amount=-3 +kerning first=68 second=1184 amount=-2 +kerning first=68 second=1198 amount=-3 +kerning first=68 second=1202 amount=-3 +kerning first=68 second=1298 amount=-1 +kerning first=68 second=8218 amount=-1 +kerning first=68 second=8222 amount=-1 +kerning first=68 second=8230 amount=-1 +kerning first=70 second=44 amount=-4 +kerning first=70 second=46 amount=-4 +kerning first=70 second=47 amount=-2 +kerning first=70 second=110 amount=-1 +kerning first=70 second=65 amount=-4 +kerning first=70 second=67 amount=-1 +kerning first=70 second=114 amount=-1 +kerning first=70 second=71 amount=-1 +kerning first=70 second=74 amount=-6 +kerning first=70 second=79 amount=-1 +kerning first=70 second=81 amount=-1 +kerning first=70 second=97 amount=-1 +kerning first=70 second=99 amount=-1 +kerning first=70 second=100 amount=-1 +kerning first=70 second=101 amount=-1 +kerning first=70 second=103 amount=-1 +kerning first=70 second=109 amount=-1 +kerning first=70 second=111 amount=-1 +kerning first=70 second=112 amount=-1 +kerning first=70 second=113 amount=-1 +kerning first=70 second=115 amount=-1 +kerning first=70 second=117 amount=-1 +kerning first=70 second=121 amount=-1 +kerning first=70 second=122 amount=-1 +kerning first=70 second=193 amount=-4 +kerning first=70 second=194 amount=-4 +kerning first=70 second=196 amount=-4 +kerning first=70 second=197 amount=-4 +kerning first=70 second=198 amount=-4 +kerning first=70 second=199 amount=-1 +kerning first=70 second=210 amount=-1 +kerning first=70 second=211 amount=-1 +kerning first=70 second=212 amount=-1 +kerning first=70 second=213 amount=-1 +kerning first=70 second=214 amount=-1 +kerning first=70 second=216 amount=-1 +kerning first=70 second=224 amount=-1 +kerning first=70 second=225 amount=-1 +kerning first=70 second=226 amount=-1 +kerning first=70 second=227 amount=-1 +kerning first=70 second=228 amount=-1 +kerning first=70 second=229 amount=-1 +kerning first=70 second=230 amount=-1 +kerning first=70 second=231 amount=-1 +kerning first=70 second=232 amount=-1 +kerning first=70 second=233 amount=-1 +kerning first=70 second=234 amount=-1 +kerning first=70 second=235 amount=-1 +kerning first=70 second=240 amount=-1 +kerning first=70 second=241 amount=-1 +kerning first=70 second=242 amount=-1 +kerning first=70 second=243 amount=-1 +kerning first=70 second=244 amount=-1 +kerning first=70 second=245 amount=-1 +kerning first=70 second=246 amount=-1 +kerning first=70 second=248 amount=-1 +kerning first=70 second=249 amount=-1 +kerning first=70 second=250 amount=-1 +kerning first=70 second=251 amount=-1 +kerning first=70 second=252 amount=-1 +kerning first=70 second=253 amount=-1 +kerning first=70 second=256 amount=-4 +kerning first=70 second=257 amount=-1 +kerning first=70 second=258 amount=-4 +kerning first=70 second=259 amount=-1 +kerning first=70 second=260 amount=-4 +kerning first=70 second=261 amount=-1 +kerning first=70 second=262 amount=-1 +kerning first=70 second=263 amount=-1 +kerning first=70 second=266 amount=-1 +kerning first=70 second=267 amount=-1 +kerning first=70 second=268 amount=-1 +kerning first=70 second=269 amount=-1 +kerning first=70 second=271 amount=-1 +kerning first=70 second=273 amount=-1 +kerning first=70 second=275 amount=-1 +kerning first=70 second=277 amount=-1 +kerning first=70 second=279 amount=-1 +kerning first=70 second=281 amount=-1 +kerning first=70 second=283 amount=-1 +kerning first=70 second=286 amount=-1 +kerning first=70 second=287 amount=-1 +kerning first=70 second=288 amount=-1 +kerning first=70 second=289 amount=-1 +kerning first=70 second=290 amount=-1 +kerning first=70 second=291 amount=-1 +kerning first=70 second=324 amount=-1 +kerning first=70 second=326 amount=-1 +kerning first=70 second=328 amount=-1 +kerning first=70 second=331 amount=-1 +kerning first=70 second=332 amount=-1 +kerning first=70 second=333 amount=-1 +kerning first=70 second=334 amount=-1 +kerning first=70 second=335 amount=-1 +kerning first=70 second=336 amount=-1 +kerning first=70 second=337 amount=-1 +kerning first=70 second=338 amount=-1 +kerning first=70 second=339 amount=-1 +kerning first=70 second=341 amount=-1 +kerning first=70 second=343 amount=-1 +kerning first=70 second=345 amount=-1 +kerning first=70 second=347 amount=-1 +kerning first=70 second=351 amount=-1 +kerning first=70 second=353 amount=-1 +kerning first=70 second=361 amount=-1 +kerning first=70 second=363 amount=-1 +kerning first=70 second=365 amount=-1 +kerning first=70 second=367 amount=-1 +kerning first=70 second=369 amount=-1 +kerning first=70 second=371 amount=-1 +kerning first=70 second=375 amount=-1 +kerning first=70 second=378 amount=-1 +kerning first=70 second=380 amount=-1 +kerning first=70 second=382 amount=-1 +kerning first=70 second=913 amount=-4 +kerning first=70 second=916 amount=-4 +kerning first=70 second=920 amount=-1 +kerning first=70 second=923 amount=-4 +kerning first=70 second=927 amount=-1 +kerning first=70 second=940 amount=-1 +kerning first=70 second=941 amount=-1 +kerning first=70 second=942 amount=-1 +kerning first=70 second=945 amount=-1 +kerning first=70 second=949 amount=-1 +kerning first=70 second=951 amount=-1 +kerning first=70 second=954 amount=-1 +kerning first=70 second=959 amount=-1 +kerning first=70 second=962 amount=-1 +kerning first=70 second=963 amount=-1 +kerning first=70 second=965 amount=-1 +kerning first=70 second=966 amount=-1 +kerning first=70 second=968 amount=-1 +kerning first=70 second=972 amount=-1 +kerning first=70 second=973 amount=-1 +kerning first=70 second=1028 amount=-1 +kerning first=70 second=1032 amount=-6 +kerning first=70 second=1040 amount=-4 +kerning first=70 second=1054 amount=-1 +kerning first=70 second=1057 amount=-1 +kerning first=70 second=1072 amount=-1 +kerning first=70 second=1074 amount=-1 +kerning first=70 second=1075 amount=-1 +kerning first=70 second=1077 amount=-1 +kerning first=70 second=1079 amount=-1 +kerning first=70 second=1080 amount=-1 +kerning first=70 second=1081 amount=-1 +kerning first=70 second=1082 amount=-1 +kerning first=70 second=1084 amount=-1 +kerning first=70 second=1085 amount=-1 +kerning first=70 second=1086 amount=-1 +kerning first=70 second=1087 amount=-1 +kerning first=70 second=1088 amount=-1 +kerning first=70 second=1089 amount=-1 +kerning first=70 second=1091 amount=-1 +kerning first=70 second=1092 amount=-1 +kerning first=70 second=1094 amount=-1 +kerning first=70 second=1096 amount=-1 +kerning first=70 second=1097 amount=-1 +kerning first=70 second=1099 amount=-1 +kerning first=70 second=1100 amount=-1 +kerning first=70 second=1101 amount=-1 +kerning first=70 second=1102 amount=-1 +kerning first=70 second=1104 amount=-1 +kerning first=70 second=1105 amount=-1 +kerning first=70 second=1107 amount=-1 +kerning first=70 second=1108 amount=-1 +kerning first=70 second=1109 amount=-1 +kerning first=70 second=1114 amount=-1 +kerning first=70 second=1116 amount=-1 +kerning first=70 second=1117 amount=-1 +kerning first=70 second=1118 amount=-1 +kerning first=70 second=1119 amount=-1 +kerning first=70 second=1169 amount=-1 +kerning first=70 second=1177 amount=-1 +kerning first=70 second=1179 amount=-1 +kerning first=70 second=1187 amount=-1 +kerning first=70 second=1194 amount=-1 +kerning first=70 second=1195 amount=-1 +kerning first=70 second=1220 amount=-1 +kerning first=70 second=1224 amount=-1 +kerning first=70 second=1240 amount=-1 +kerning first=70 second=1241 amount=-1 +kerning first=70 second=1256 amount=-1 +kerning first=70 second=1257 amount=-1 +kerning first=70 second=1263 amount=-1 +kerning first=70 second=8218 amount=-4 +kerning first=70 second=8222 amount=-4 +kerning first=70 second=8230 amount=-4 +kerning first=114 second=44 amount=-3 +kerning first=114 second=45 amount=-1 +kerning first=114 second=46 amount=-3 +kerning first=114 second=47 amount=-2 +kerning first=114 second=97 amount=-1 +kerning first=114 second=99 amount=-1 +kerning first=114 second=100 amount=-1 +kerning first=114 second=101 amount=-1 +kerning first=114 second=103 amount=-1 +kerning first=114 second=111 amount=-1 +kerning first=114 second=113 amount=-1 +kerning first=114 second=115 amount=-1 +kerning first=114 second=173 amount=-1 +kerning first=114 second=224 amount=-1 +kerning first=114 second=225 amount=-1 +kerning first=114 second=226 amount=-1 +kerning first=114 second=227 amount=-1 +kerning first=114 second=228 amount=-1 +kerning first=114 second=229 amount=-1 +kerning first=114 second=230 amount=-1 +kerning first=114 second=231 amount=-1 +kerning first=114 second=232 amount=-1 +kerning first=114 second=233 amount=-1 +kerning first=114 second=234 amount=-1 +kerning first=114 second=235 amount=-1 +kerning first=114 second=240 amount=-1 +kerning first=114 second=242 amount=-1 +kerning first=114 second=243 amount=-1 kerning first=114 second=244 amount=-1 -kerning first=254 second=374 amount=-5 -kerning first=374 second=1033 amount=-5 -kerning first=8217 second=940 amount=-1 -kerning first=1063 second=351 amount=-1 -kerning first=195 second=83 amount=-1 -kerning first=72 second=333 amount=-1 -kerning first=215 second=245 amount=-1 -kerning first=912 second=290 amount=-2 -kerning first=92 second=949 amount=-1 -kerning first=95 second=257 amount=-1 -kerning first=232 second=1299 amount=-1 -kerning first=1224 second=352 amount=-1 -kerning first=381 second=234 amount=-1 -kerning first=1026 second=364 amount=-2 -kerning first=168 second=1090 amount=-3 -kerning first=8226 second=199 amount=-2 -kerning first=53 second=346 amount=-1 -kerning first=1064 second=1035 amount=-5 -kerning first=1067 second=291 amount=-1 -kerning first=193 second=950 amount=-1 -kerning first=8361 second=101 amount=-1 -kerning first=73 second=964 amount=-3 +kerning first=114 second=245 amount=-1 +kerning first=114 second=246 amount=-1 +kerning first=114 second=248 amount=-1 +kerning first=114 second=257 amount=-1 +kerning first=114 second=259 amount=-1 +kerning first=114 second=261 amount=-1 +kerning first=114 second=263 amount=-1 +kerning first=114 second=267 amount=-1 +kerning first=114 second=269 amount=-1 +kerning first=114 second=271 amount=-1 +kerning first=114 second=273 amount=-1 +kerning first=114 second=275 amount=-1 +kerning first=114 second=277 amount=-1 +kerning first=114 second=279 amount=-1 +kerning first=114 second=281 amount=-1 +kerning first=114 second=283 amount=-1 +kerning first=114 second=287 amount=-1 +kerning first=114 second=289 amount=-1 +kerning first=114 second=291 amount=-1 +kerning first=114 second=333 amount=-1 +kerning first=114 second=335 amount=-1 +kerning first=114 second=337 amount=-1 +kerning first=114 second=339 amount=-1 +kerning first=114 second=347 amount=-1 +kerning first=114 second=351 amount=-1 +kerning first=114 second=353 amount=-1 +kerning first=114 second=940 amount=-1 +kerning first=114 second=941 amount=-1 +kerning first=114 second=945 amount=-1 +kerning first=114 second=949 amount=-1 +kerning first=114 second=955 amount=-3 +kerning first=114 second=959 amount=-1 +kerning first=114 second=962 amount=-1 +kerning first=114 second=963 amount=-1 +kerning first=114 second=966 amount=-1 +kerning first=114 second=972 amount=-1 +kerning first=114 second=1072 amount=-1 +kerning first=114 second=1077 amount=-1 +kerning first=114 second=1086 amount=-1 +kerning first=114 second=1089 amount=-1 +kerning first=114 second=1092 amount=-1 +kerning first=114 second=1104 amount=-1 +kerning first=114 second=1105 amount=-1 +kerning first=114 second=1108 amount=-1 +kerning first=114 second=1109 amount=-1 +kerning first=114 second=1195 amount=-1 +kerning first=114 second=1241 amount=-1 +kerning first=114 second=1257 amount=-1 +kerning first=114 second=8211 amount=-1 +kerning first=114 second=8212 amount=-1 +kerning first=114 second=8218 amount=-3 +kerning first=114 second=8222 amount=-3 +kerning first=114 second=8230 amount=-3 +kerning first=71 second=75 amount=2 +kerning first=71 second=84 amount=-1 +kerning first=71 second=86 amount=-2 +kerning first=71 second=87 amount=-1 +kerning first=71 second=89 amount=-2 +kerning first=71 second=106 amount=2 +kerning first=71 second=221 amount=-2 +kerning first=71 second=354 amount=-1 +kerning first=71 second=356 amount=-1 +kerning first=71 second=372 amount=-1 +kerning first=71 second=374 amount=-2 +kerning first=71 second=376 amount=-2 +kerning first=71 second=922 amount=2 +kerning first=71 second=932 amount=-1 +kerning first=71 second=933 amount=-2 +kerning first=71 second=939 amount=-2 +kerning first=71 second=1026 amount=-1 +kerning first=71 second=1035 amount=-1 +kerning first=71 second=1050 amount=2 +kerning first=71 second=1058 amount=-1 +kerning first=71 second=1066 amount=-1 +kerning first=71 second=1112 amount=2 +kerning first=71 second=1184 amount=-1 +kerning first=71 second=1198 amount=-2 +kerning first=74 second=44 amount=-1 +kerning first=74 second=46 amount=-1 +kerning first=74 second=47 amount=-1 +kerning first=74 second=65 amount=-1 +kerning first=74 second=193 amount=-1 +kerning first=74 second=194 amount=-1 +kerning first=74 second=196 amount=-1 +kerning first=74 second=197 amount=-1 +kerning first=74 second=198 amount=-1 +kerning first=74 second=256 amount=-1 +kerning first=74 second=258 amount=-1 +kerning first=74 second=260 amount=-1 +kerning first=74 second=913 amount=-1 +kerning first=74 second=916 amount=-1 +kerning first=74 second=923 amount=-1 +kerning first=74 second=1040 amount=-1 +kerning first=74 second=8218 amount=-1 +kerning first=74 second=8222 amount=-1 +kerning first=74 second=8230 amount=-1 +kerning first=75 second=38 amount=-2 +kerning first=75 second=45 amount=-4 +kerning first=75 second=63 amount=-2 +kerning first=75 second=67 amount=-3 +kerning first=75 second=71 amount=-3 +kerning first=75 second=74 amount=-1 +kerning first=75 second=79 amount=-3 +kerning first=75 second=81 amount=-3 +kerning first=75 second=83 amount=-1 +kerning first=75 second=97 amount=-1 +kerning first=75 second=99 amount=-2 +kerning first=75 second=100 amount=-2 +kerning first=75 second=101 amount=-2 +kerning first=75 second=102 amount=-2 +kerning first=75 second=103 amount=-1 +kerning first=75 second=111 amount=-2 +kerning first=75 second=113 amount=-2 +kerning first=75 second=116 amount=-1 +kerning first=75 second=117 amount=-1 +kerning first=75 second=118 amount=-3 +kerning first=75 second=119 amount=-3 +kerning first=75 second=121 amount=-2 +kerning first=75 second=171 amount=-3 +kerning first=75 second=173 amount=-4 +kerning first=75 second=187 amount=-2 +kerning first=75 second=199 amount=-3 +kerning first=75 second=210 amount=-3 +kerning first=75 second=211 amount=-3 +kerning first=75 second=212 amount=-3 +kerning first=75 second=213 amount=-3 +kerning first=75 second=214 amount=-3 +kerning first=75 second=216 amount=-3 +kerning first=75 second=224 amount=-1 +kerning first=75 second=225 amount=-1 +kerning first=75 second=226 amount=-1 +kerning first=75 second=227 amount=-1 +kerning first=75 second=228 amount=-1 +kerning first=75 second=229 amount=-1 +kerning first=75 second=230 amount=-1 +kerning first=75 second=231 amount=-2 +kerning first=75 second=232 amount=-2 +kerning first=75 second=233 amount=-2 +kerning first=75 second=234 amount=-2 +kerning first=75 second=235 amount=-2 +kerning first=75 second=240 amount=-2 +kerning first=75 second=242 amount=-2 +kerning first=75 second=243 amount=-2 +kerning first=75 second=244 amount=-2 +kerning first=75 second=245 amount=-2 +kerning first=75 second=246 amount=-2 +kerning first=75 second=248 amount=-2 +kerning first=75 second=249 amount=-1 +kerning first=75 second=250 amount=-1 +kerning first=75 second=251 amount=-1 +kerning first=75 second=252 amount=-1 +kerning first=75 second=253 amount=-2 +kerning first=75 second=257 amount=-1 +kerning first=75 second=259 amount=-1 +kerning first=75 second=261 amount=-1 +kerning first=75 second=262 amount=-3 +kerning first=75 second=263 amount=-2 +kerning first=75 second=266 amount=-3 +kerning first=75 second=267 amount=-2 +kerning first=75 second=268 amount=-3 +kerning first=75 second=269 amount=-2 +kerning first=75 second=271 amount=-2 +kerning first=75 second=273 amount=-2 +kerning first=75 second=275 amount=-2 +kerning first=75 second=277 amount=-2 +kerning first=75 second=279 amount=-2 +kerning first=75 second=281 amount=-2 +kerning first=75 second=283 amount=-2 +kerning first=75 second=286 amount=-3 +kerning first=75 second=287 amount=-1 +kerning first=75 second=288 amount=-3 +kerning first=75 second=289 amount=-1 +kerning first=75 second=290 amount=-3 +kerning first=75 second=291 amount=-1 +kerning first=75 second=332 amount=-3 +kerning first=75 second=333 amount=-2 +kerning first=75 second=334 amount=-3 +kerning first=75 second=335 amount=-2 +kerning first=75 second=336 amount=-3 +kerning first=75 second=337 amount=-2 +kerning first=75 second=338 amount=-3 +kerning first=75 second=339 amount=-2 +kerning first=75 second=346 amount=-1 +kerning first=75 second=350 amount=-1 +kerning first=75 second=352 amount=-1 +kerning first=75 second=355 amount=-1 +kerning first=75 second=357 amount=-1 +kerning first=75 second=359 amount=-1 +kerning first=75 second=361 amount=-1 +kerning first=75 second=363 amount=-1 +kerning first=75 second=365 amount=-1 +kerning first=75 second=367 amount=-1 +kerning first=75 second=369 amount=-1 +kerning first=75 second=371 amount=-1 +kerning first=75 second=373 amount=-3 +kerning first=75 second=375 amount=-2 +kerning first=75 second=920 amount=-3 +kerning first=75 second=927 amount=-3 +kerning first=75 second=940 amount=-2 +kerning first=75 second=941 amount=-2 +kerning first=75 second=945 amount=-2 +kerning first=75 second=947 amount=-3 +kerning first=75 second=949 amount=-2 +kerning first=75 second=957 amount=-3 +kerning first=75 second=959 amount=-2 +kerning first=75 second=962 amount=-2 +kerning first=75 second=963 amount=-2 +kerning first=75 second=964 amount=-4 +kerning first=75 second=965 amount=-1 +kerning first=75 second=966 amount=-2 +kerning first=75 second=968 amount=-1 +kerning first=75 second=972 amount=-2 +kerning first=75 second=973 amount=-1 +kerning first=75 second=1028 amount=-3 +kerning first=75 second=1029 amount=-1 +kerning first=75 second=1032 amount=-1 +kerning first=75 second=1054 amount=-3 +kerning first=75 second=1057 amount=-3 +kerning first=75 second=1069 amount=-2 +kerning first=75 second=1072 amount=-1 +kerning first=75 second=1077 amount=-2 +kerning first=75 second=1079 amount=-1 +kerning first=75 second=1086 amount=-2 +kerning first=75 second=1089 amount=-2 +kerning first=75 second=1090 amount=-4 +kerning first=75 second=1091 amount=-2 +kerning first=75 second=1092 amount=-2 +kerning first=75 second=1098 amount=-4 +kerning first=75 second=1101 amount=-1 +kerning first=75 second=1104 amount=-2 +kerning first=75 second=1105 amount=-2 +kerning first=75 second=1108 amount=-2 +kerning first=75 second=1118 amount=-2 +kerning first=75 second=1176 amount=-2 +kerning first=75 second=1177 amount=-1 +kerning first=75 second=1185 amount=-4 +kerning first=75 second=1194 amount=-3 +kerning first=75 second=1195 amount=-2 +kerning first=75 second=1199 amount=-3 +kerning first=75 second=1240 amount=-3 +kerning first=75 second=1241 amount=-2 +kerning first=75 second=1256 amount=-3 +kerning first=75 second=1257 amount=-2 +kerning first=75 second=1263 amount=-2 +kerning first=75 second=8211 amount=-4 +kerning first=75 second=8212 amount=-4 +kerning first=75 second=8249 amount=-3 +kerning first=75 second=8250 amount=-2 +kerning first=76 second=34 amount=-3 +kerning first=76 second=39 amount=-3 +kerning first=76 second=45 amount=-3 +kerning first=76 second=63 amount=-4 +kerning first=76 second=67 amount=-1 +kerning first=76 second=71 amount=-1 +kerning first=76 second=79 amount=-1 +kerning first=76 second=81 amount=-1 +kerning first=76 second=84 amount=-6 +kerning first=76 second=85 amount=-1 +kerning first=76 second=86 amount=-5 +kerning first=76 second=87 amount=-4 +kerning first=76 second=89 amount=-6 +kerning first=76 second=99 amount=-1 +kerning first=76 second=100 amount=-1 +kerning first=76 second=101 amount=-1 +kerning first=76 second=103 amount=-1 +kerning first=76 second=111 amount=-1 +kerning first=76 second=113 amount=-1 +kerning first=76 second=116 amount=-1 +kerning first=76 second=117 amount=-1 +kerning first=76 second=118 amount=-3 +kerning first=76 second=119 amount=-3 +kerning first=76 second=121 amount=-1 +kerning first=76 second=171 amount=-3 +kerning first=76 second=173 amount=-3 +kerning first=76 second=199 amount=-1 +kerning first=76 second=210 amount=-1 +kerning first=76 second=211 amount=-1 +kerning first=76 second=212 amount=-1 +kerning first=76 second=213 amount=-1 +kerning first=76 second=214 amount=-1 +kerning first=76 second=216 amount=-1 +kerning first=76 second=217 amount=-1 +kerning first=76 second=218 amount=-1 +kerning first=76 second=219 amount=-1 +kerning first=76 second=220 amount=-1 +kerning first=76 second=221 amount=-6 +kerning first=76 second=231 amount=-1 +kerning first=76 second=232 amount=-1 +kerning first=76 second=233 amount=-1 +kerning first=76 second=234 amount=-1 +kerning first=76 second=235 amount=-1 +kerning first=76 second=240 amount=-1 +kerning first=76 second=242 amount=-1 +kerning first=76 second=243 amount=-1 +kerning first=76 second=244 amount=-1 +kerning first=76 second=245 amount=-1 +kerning first=76 second=246 amount=-1 +kerning first=76 second=248 amount=-1 +kerning first=76 second=249 amount=-1 +kerning first=76 second=250 amount=-1 +kerning first=76 second=251 amount=-1 +kerning first=76 second=252 amount=-1 +kerning first=76 second=253 amount=-1 +kerning first=76 second=262 amount=-1 +kerning first=76 second=263 amount=-1 +kerning first=76 second=266 amount=-1 +kerning first=76 second=267 amount=-1 +kerning first=76 second=268 amount=-1 +kerning first=76 second=269 amount=-1 +kerning first=76 second=271 amount=-1 kerning first=76 second=273 amount=-1 -kerning first=923 second=235 amount=-1 -kerning first=1176 second=365 amount=-1 -kerning first=239 second=335 amount=-1 -kerning first=119 second=347 amount=-1 -kerning first=267 second=34 amount=-1 -kerning first=37 second=121 amount=-1 -kerning first=973 second=8216 amount=-3 -kerning first=172 second=965 amount=-1 -kerning first=8224 second=1118 amount=-1 -kerning first=8230 second=354 amount=-5 -kerning first=54 second=1028 amount=-2 -kerning first=57 second=288 amount=-2 -kerning first=80 second=220 amount=-2 -kerning first=315 second=336 amount=-1 -kerning first=1103 second=171 amount=-3 -kerning first=100 second=362 amount=-2 -kerning first=1174 second=8217 amount=-2 -kerning first=240 second=966 amount=-1 -kerning first=246 second=47 amount=-1 -kerning first=366 second=197 amount=-2 -kerning first=123 second=289 amount=-1 -kerning first=963 second=87 amount=-5 -kerning first=41 second=71 amount=-2 -kerning first=1035 second=940 amount=-1 -kerning first=180 second=221 amount=-5 -kerning first=291 second=351 amount=-1 -kerning first=8240 second=1038 amount=-2 -kerning first=296 second=111 amount=-1 -kerning first=61 second=233 amount=-1 -kerning first=201 second=363 amount=-1 -kerning first=198 second=1177 amount=-1 -kerning first=8366 second=226 amount=-1 -kerning first=1101 second=1078 amount=-2 -kerning first=936 second=338 amount=-2 -kerning first=1185 second=941 amount=-2 -kerning first=367 second=352 amount=-1 -kerning first=964 second=262 amount=-2 -kerning first=160 second=234 amount=-1 -kerning first=42 second=246 amount=-1 -kerning first=1046 second=199 amount=-3 -kerning first=182 second=376 amount=-5 -kerning first=294 second=1035 amount=-5 -kerning first=297 second=291 amount=-1 -kerning first=1074 second=1098 amount=-3 -kerning first=1078 second=339 amount=-2 -kerning first=1081 second=101 amount=-1 -kerning first=202 second=1059 amount=-2 -kerning first=199 second=8212 amount=-1 -kerning first=903 second=113 amount=-1 -kerning first=900 second=353 amount=-1 -kerning first=1107 second=955 amount=-4 -kerning first=968 second=212 amount=-2 -kerning first=267 second=8216 amount=-1 -kerning first=1041 second=1118 amount=-1 -kerning first=1047 second=354 amount=-1 -kerning first=179 second=8250 amount=-1 -kerning first=1083 second=279 amount=-1 -kerning first=209 second=248 amount=-1 -kerning first=330 second=171 amount=-3 -kerning first=89 second=260 amount=-5 -kerning first=1119 second=213 amount=-2 -kerning first=946 second=225 amount=-1 -kerning first=1219 second=115 amount=-1 -kerning first=255 second=87 amount=-5 -kerning first=966 second=1185 amount=-1 -kerning first=165 second=337 amount=-1 -kerning first=168 second=99 amount=-1 -kerning first=278 second=249 amount=-1 -kerning first=47 second=351 amount=-1 -kerning first=1048 second=1038 amount=-2 -kerning first=50 second=111 amount=-1 -kerning first=190 second=261 amount=-1 -kerning first=213 second=198 amount=-2 -kerning first=334 second=88 amount=-3 -kerning first=93 second=210 amount=-2 -kerning first=1168 second=368 amount=-2 -kerning first=236 second=100 amount=-1 -kerning first=356 second=250 amount=-2 -kerning first=113 second=352 amount=-1 -kerning first=256 second=262 amount=-2 -kerning first=1256 second=65 amount=-2 -kerning first=376 second=1241 amount=-4 -kerning first=967 second=8220 amount=-3 -kerning first=166 second=968 amount=-1 -kerning first=169 second=277 amount=-1 -kerning first=282 second=199 amount=-2 -kerning first=8224 second=117 amount=-1 -kerning first=48 second=1035 amount=-5 -kerning first=51 second=291 amount=-1 -kerning first=194 second=211 amount=-2 -kerning first=306 second=339 amount=-1 -kerning first=303 second=1098 amount=-3 -kerning first=311 second=101 amount=-2 -kerning first=214 second=353 amount=-1 -kerning first=332 second=955 amount=-2 -kerning first=94 second=365 amount=-1 -kerning first=1118 second=8221 amount=-3 -kerning first=260 second=212 amount=-2 -kerning first=174 second=224 amount=-1 -kerning first=280 second=1118 amount=-1 -kerning first=8221 second=1044 amount=-3 -kerning first=8240 second=67 amount=-2 -kerning first=192 second=1184 amount=-5 -kerning first=195 second=366 amount=-2 -kerning first=313 second=279 amount=-1 -kerning first=78 second=171 amount=-3 -kerning first=221 second=63 amount=-1 -kerning first=928 second=103 amount=-1 -kerning first=92 second=8217 amount=-3 -kerning first=361 second=355 amount=-1 -kerning first=956 second=267 amount=-1 -kerning first=258 second=1185 amount=-3 -kerning first=36 second=249 amount=-1 -kerning first=1067 second=1101 amount=-1 -kerning first=8361 second=1240 amount=-2 -kerning first=317 second=226 amount=-1 -kerning first=923 second=972 amount=-1 -kerning first=931 second=281 amount=-1 -kerning first=242 second=380 amount=-1 -kerning first=368 second=65 amount=-2 -kerning first=125 second=187 amount=-1 -kerning first=122 second=1241 amount=-1 -kerning first=259 second=8220 amount=-1 -kerning first=40 second=199 amount=-2 -kerning first=1041 second=117 amount=-1 -kerning first=1037 second=357 amount=-1 -kerning first=183 second=89 amount=-5 -kerning first=176 second=1079 amount=-1 -kerning first=57 second=1098 amount=-3 -kerning first=60 second=339 amount=-1 -kerning first=1071 second=973 amount=-1 -kerning first=63 second=101 amount=-1 -kerning first=203 second=251 amount=-1 -kerning first=8365 second=332 amount=-2 -kerning first=80 second=955 amount=-3 -kerning first=86 second=38 amount=-1 -kerning first=338 second=8221 amount=-3 -kerning first=369 second=240 amount=-1 -kerning first=366 second=916 amount=-2 -kerning first=960 second=1194 amount=-2 -kerning first=963 second=370 amount=-2 -kerning first=271 second=252 amount=-1 -kerning first=38 second=1118 amount=-1 -kerning first=41 second=354 amount=-5 -kerning first=1048 second=67 amount=-2 -kerning first=184 second=266 amount=-2 -kerning first=1038 second=1044 amount=-1 -kerning first=64 second=279 amount=-1 -kerning first=61 second=970 amount=-1 -kerning first=1080 second=229 amount=-1 -kerning first=8366 second=963 amount=-1 -kerning first=8372 second=271 amount=-1 -kerning first=87 second=213 amount=-2 -kerning first=936 second=1257 amount=-1 -kerning first=1194 second=1046 amount=-2 -kerning first=250 second=267 amount=-1 -kerning first=42 second=1038 amount=-2 -kerning first=1049 second=242 amount=-1 -kerning first=188 second=214 amount=-2 -kerning first=297 second=1101 amount=-1 -kerning first=1081 second=1240 amount=-2 -kerning first=208 second=356 amount=-2 -kerning first=1210 second=243 amount=-1 -kerning first=374 second=343 amount=-3 -kerning first=167 second=227 amount=-1 -kerning first=280 second=117 amount=-1 -kerning first=189 second=369 amount=-1 -kerning first=301 second=973 amount=-1 -kerning first=1087 second=332 amount=-2 -kerning first=86 second=8221 amount=-3 -kerning first=912 second=106 amount=1 -kerning first=358 second=118 amount=-4 -kerning first=946 second=962 amount=-1 -kerning first=252 second=1194 amount=-2 -kerning first=255 second=370 amount=-2 -kerning first=378 second=283 amount=-1 -kerning first=165 second=1256 amount=-2 -kerning first=196 second=79 amount=-2 -kerning first=310 second=229 amount=-1 -kerning first=70 second=1081 amount=-1 -kerning first=1090 second=963 amount=-1 -kerning first=1096 second=271 amount=-1 -kerning first=915 second=286 amount=-2 -kerning first=96 second=253 amount=-1 -kerning first=1027 second=360 amount=-2 -kerning first=287 second=242 amount=-1 -kerning first=51 second=1101 amount=-1 -kerning first=194 second=945 amount=-1 -kerning first=306 second=1262 amount=-2 -kerning first=77 second=268 amount=-2 -kerning first=926 second=231 amount=-1 -kerning first=1184 second=121 amount=-2 -kerning first=363 second=243 amount=-1 -kerning first=955 second=373 amount=-4 -kerning first=1298 second=288 amount=-2 -kerning first=35 second=357 amount=-1 -kerning first=38 second=117 amount=-1 -kerning first=177 second=269 amount=-1 -kerning first=8240 second=350 amount=-1 -kerning first=55 second=973 amount=-1 -kerning first=1073 second=232 amount=-1 -kerning first=316 second=332 amount=-2 -kerning first=8363 second=275 amount=-1 -kerning first=1098 second=1203 amount=-2 -kerning first=224 second=106 amount=1 -kerning first=920 second=1298 amount=-1 -kerning first=104 second=118 amount=-1 -kerning first=964 second=83 amount=-1 -kerning first=124 second=283 amount=-1 -kerning first=42 second=67 amount=-2 -kerning first=1039 second=245 amount=-1 -kerning first=182 second=217 amount=-2 -kerning first=62 second=229 amount=-1 -kerning first=205 second=119 amount=-4 -kerning first=202 second=359 amount=-1 -kerning first=317 second=963 amount=-1 -kerning first=322 second=271 amount=-1 -kerning first=222 second=1026 amount=-2 -kerning first=931 second=1090 amount=-3 -kerning first=1186 second=934 amount=-2 -kerning first=161 second=230 amount=-1 -kerning first=43 second=242 amount=-1 -kerning first=179 second=947 amount=-4 -kerning first=183 second=372 amount=-5 -kerning first=298 second=287 amount=-1 -kerning first=63 second=1240 amount=-2 -kerning first=60 second=1262 amount=-2 -kerning first=1083 second=97 amount=-1 -kerning first=901 second=347 amount=-1 -kerning first=89 second=81 amount=-3 -kerning first=1119 second=34 amount=-3 -kerning first=1116 second=259 amount=-1 -kerning first=249 second=373 amount=-4 -kerning first=369 second=1028 amount=-2 -kerning first=372 second=288 amount=-2 -kerning first=126 second=1263 amount=-1 -kerning first=1048 second=350 amount=-1 -kerning first=302 second=232 amount=-1 -kerning first=1080 second=966 amount=-1 -kerning first=1090 second=47 amount=-2 -kerning first=1084 second=275 amount=-1 -kerning first=327 second=374 amount=-5 -kerning first=905 second=289 amount=-1 -kerning first=356 second=71 amount=-1 -kerning first=948 second=221 amount=-5 -kerning first=1220 second=111 amount=-1 -kerning first=256 second=83 amount=-1 -kerning first=376 second=233 amount=-4 -kerning first=967 second=1177 amount=-1 -kerning first=166 second=333 amount=-1 -kerning first=8220 second=198 amount=-3 -kerning first=1062 second=290 amount=-1 -kerning first=188 second=949 amount=-1 -kerning first=191 second=257 amount=-1 -kerning first=74 second=44 amount=-1 -kerning first=357 second=246 amount=-1 -kerning first=1210 second=1035 amount=-5 -kerning first=1223 second=291 amount=-1 -kerning first=968 second=8212 amount=-2 -kerning first=971 second=1059 amount=-2 -kerning first=170 second=273 amount=-1 -kerning first=174 second=45 amount=-2 -kerning first=167 second=964 amount=-3 -kerning first=8225 second=113 amount=-1 -kerning first=8221 second=353 amount=-1 -kerning first=52 second=287 amount=-1 -kerning first=55 second=57 amount=-1 -kerning first=215 second=347 amount=-1 -kerning first=339 second=34 amount=-1 -kerning first=95 second=361 amount=-1 -kerning first=1119 second=8216 amount=-3 -kerning first=946 second=8250 amount=-1 -kerning first=950 second=1075 amount=-2 -kerning first=381 second=336 amount=-1 -kerning first=175 second=220 amount=-2 -kerning first=281 second=1113 amount=-1 -kerning first=56 second=232 amount=-1 -kerning first=196 second=362 amount=-2 -kerning first=193 second=1176 amount=-1 -kerning first=310 second=966 amount=-2 -kerning first=314 second=275 amount=-1 -kerning first=8361 second=225 amount=-1 -kerning first=76 second=374 amount=-6 -kerning first=216 second=1033 amount=-1 -kerning first=923 second=337 amount=-1 -kerning first=931 second=99 amount=-1 -kerning first=1176 second=940 amount=-1 -kerning first=365 second=111 amount=-1 -kerning first=958 second=261 amount=-1 -kerning first=122 second=233 amount=-1 -kerning first=37 second=245 amount=-1 -kerning first=176 second=375 amount=-1 -kerning first=1071 second=338 amount=-2 -kerning first=194 second=8211 amount=-2 -kerning first=1075 second=100 amount=-1 -kerning first=83 second=84 amount=-1 -kerning first=1103 second=262 amount=-2 -kerning first=223 second=234 amount=-1 -kerning first=926 second=968 amount=-1 -kerning first=934 second=277 amount=-1 -kerning first=103 second=246 amount=-1 -kerning first=363 second=1035 amount=-5 -kerning first=963 second=211 amount=-2 -kerning first=1298 second=1098 amount=-3 -kerning first=260 second=8212 amount=-2 -kerning first=174 second=8249 amount=-3 -kerning first=1044 second=113 amount=-1 -kerning first=184 second=85 amount=-2 -kerning first=296 second=235 amount=-1 -kerning first=61 second=335 amount=-1 -kerning first=64 second=97 amount=-1 -kerning first=84 second=259 amount=-2 -kerning first=339 second=8216 amount=-1 -kerning first=1194 second=354 amount=-1 -kerning first=964 second=366 amount=-2 -kerning first=160 second=336 amount=-2 -kerning first=273 second=248 amount=-1 -kerning first=42 second=350 amount=-1 -kerning first=68 second=47 amount=-1 -kerning first=62 second=966 amount=-1 -kerning first=65 second=275 amount=-1 -kerning first=1081 second=225 amount=-1 -kerning first=208 second=197 amount=-2 -kerning first=108 second=351 amount=-1 -kerning first=251 second=261 amount=-1 -kerning first=8211 second=356 amount=-4 -kerning first=46 second=290 amount=-1 -kerning first=189 second=210 amount=-2 -kerning first=301 second=338 amount=-2 -kerning first=304 second=100 amount=-1 -kerning first=209 second=352 amount=-1 -kerning first=330 second=262 amount=-2 -kerning first=904 second=1241 amount=-1 -kerning first=1108 second=8220 amount=-1 -kerning first=950 second=89 amount=-5 -kerning first=255 second=211 amount=-2 -kerning first=375 second=339 amount=-1 -kerning first=378 second=101 amount=-1 -kerning first=278 second=353 amount=-1 -kerning first=50 second=235 amount=-1 -kerning first=190 second=365 amount=-1 -kerning first=8378 second=1194 amount=-2 -kerning first=1168 second=943 amount=-1 -kerning first=1171 second=252 amount=-1 -kerning first=236 second=224 amount=-1 -kerning first=951 second=266 amount=-2 -kerning first=253 second=1184 amount=-5 -kerning first=256 second=366 amount=-2 -kerning first=376 second=970 amount=-2 -kerning first=379 second=279 amount=-1 -kerning first=172 second=171 amount=-3 -kerning first=188 second=8217 amount=-3 -kerning first=311 second=225 amount=-1 -kerning first=77 second=87 amount=-5 -kerning first=1097 second=267 amount=-1 -kerning first=94 second=940 amount=-1 -kerning first=357 second=1038 amount=-2 -kerning first=955 second=214 amount=-2 -kerning first=1223 second=1101 amount=-1 -kerning first=1028 second=356 amount=-1 -kerning first=1035 second=116 amount=-1 -kerning first=55 second=338 amount=-2 -kerning first=58 second=100 amount=-1 -kerning first=198 second=250 amount=-1 -kerning first=195 second=941 amount=-1 -kerning first=78 second=262 amount=-2 -kerning first=221 second=187 amount=-2 -kerning first=333 second=8220 amount=-1 -kerning first=928 second=227 amount=-1 -kerning first=238 second=1079 amount=-1 -kerning first=956 second=369 amount=-1 -kerning first=121 second=339 amount=-1 -kerning first=124 second=101 amount=-1 -kerning first=1240 second=381 amount=-1 -kerning first=36 second=353 amount=-1 -kerning first=39 second=113 amount=-1 -kerning first=178 second=263 amount=-1 -kerning first=1074 second=228 amount=-1 -kerning first=8361 second=962 amount=-1 -kerning first=1099 second=1194 amount=-2 -kerning first=225 second=102 amount=-1 -kerning first=923 second=1256 amount=-2 -kerning first=248 second=39 amount=-1 -kerning first=965 second=79 amount=-2 -kerning first=125 second=279 amount=-1 -kerning first=1037 second=920 amount=-2 -kerning first=183 second=213 amount=-2 -kerning first=298 second=103 amount=-1 -kerning first=8250 second=1026 amount=-3 -kerning first=63 second=225 amount=-1 -kerning first=1071 second=1257 amount=-1 -kerning first=203 second=355 amount=-1 -kerning first=206 second=115 amount=-1 -kerning first=323 second=267 amount=-1 -kerning first=8370 second=218 amount=-2 -kerning first=80 second=1185 amount=-3 -kerning first=103 second=1038 amount=-2 -kerning first=947 second=242 amount=-1 -kerning first=249 second=214 amount=-2 -kerning first=963 second=945 amount=-1 -kerning first=162 second=226 amount=-1 -kerning first=271 second=356 amount=-5 -kerning first=184 second=368 amount=-2 -kerning first=296 second=972 amount=-1 -kerning first=299 second=281 amount=-1 -kerning first=210 second=65 amount=-2 -kerning first=8372 second=373 amount=-4 -kerning first=944 second=269 amount=-1 -kerning first=250 second=369 amount=-1 -kerning first=8216 second=244 amount=-1 -kerning first=1062 second=106 amount=7 -kerning first=185 second=1066 amount=-5 -kerning first=182 second=8221 amount=-3 -kerning first=303 second=228 amount=-1 -kerning first=1081 second=962 amount=-1 -kerning first=208 second=916 amount=-2 -kerning first=325 second=1194 amount=-2 -kerning first=906 second=283 amount=-1 -kerning first=91 second=252 amount=-1 -kerning first=88 second=943 amount=-1 -kerning first=357 second=67 amount=-2 -kerning first=248 second=8222 amount=-1 -kerning first=971 second=359 amount=-1 -kerning first=8221 second=194 amount=-3 -kerning first=52 second=103 amount=-1 -kerning first=1051 second=1026 amount=-5 -kerning first=1063 second=286 amount=-2 -kerning first=192 second=253 amount=-1 -kerning first=301 second=1257 amount=-1 -kerning first=72 second=267 amount=-1 -kerning first=1095 second=218 amount=-2 -kerning first=912 second=230 amount=-1 -kerning first=1170 second=360 amount=-2 -kerning first=232 second=1083 amount=-1 -kerning first=358 second=242 amount=-1 -kerning first=946 second=947 amount=-4 -kerning first=950 second=372 amount=-5 -kerning first=1224 second=287 amount=-1 -kerning first=255 second=945 amount=-1 -kerning first=375 second=1262 amount=-2 -kerning first=50 second=972 amount=-1 -kerning first=53 second=281 amount=-1 -kerning first=1067 second=231 amount=-1 -kerning first=1096 second=373 amount=-4 -kerning first=910 second=1263 amount=-2 -kerning first=96 second=357 amount=-1 -kerning first=239 second=269 amount=-1 -kerning first=1263 second=232 amount=-1 -kerning first=176 second=216 amount=-2 -kerning first=290 second=106 amount=2 -kerning first=8230 second=289 amount=-1 -kerning first=57 second=228 amount=-1 -kerning first=200 second=118 amount=-4 -kerning first=311 second=962 amount=-2 -kerning first=74 second=1194 amount=-2 -kerning first=77 second=370 amount=-2 -kerning first=1103 second=83 amount=-1 -kerning first=926 second=333 amount=-1 -kerning first=103 second=67 amount=-2 -kerning first=1184 second=245 amount=-2 -kerning first=955 second=949 amount=-1 -kerning first=960 second=257 amount=-1 -kerning first=123 second=229 amount=-1 -kerning first=1257 second=1299 amount=-1 -kerning first=35 second=920 amount=-2 -kerning first=174 second=1195 amount=-1 -kerning first=177 second=371 amount=-1 -kerning first=1038 second=194 amount=-2 -kerning first=288 second=1026 amount=-1 -kerning first=291 second=286 amount=-2 -kerning first=8260 second=234 amount=-1 -kerning first=55 second=1257 amount=-1 -kerning first=1073 second=334 amount=-2 -kerning first=321 second=218 amount=-2 -kerning first=8363 second=376 amount=-5 -kerning first=936 second=273 amount=-1 -kerning first=928 second=964 amount=-3 -kerning first=241 second=947 amount=-1 -kerning first=367 second=287 amount=-1 -kerning first=121 second=1262 amount=-2 -kerning first=124 second=1240 amount=-2 -kerning first=1036 second=1108 amount=-2 -kerning first=1039 second=347 amount=-1 -kerning first=178 second=1069 amount=-1 -kerning first=185 second=81 amount=-2 -kerning first=297 second=231 amount=-1 -kerning first=1074 second=965 amount=-1 -kerning first=205 second=243 amount=-1 -kerning first=322 second=373 amount=-4 -kerning first=8361 second=8250 amount=-1 -kerning first=900 second=288 amount=-2 -kerning first=942 second=220 amount=-2 -kerning first=371 second=232 amount=-1 -kerning first=965 second=362 amount=-2 -kerning first=962 second=1176 amount=-1 -kerning first=161 second=332 amount=-2 -kerning first=274 second=244 amount=-1 -kerning first=8211 second=197 amount=-2 -kerning first=46 second=106 amount=2 -kerning first=63 second=962 amount=-1 -kerning first=1083 second=221 amount=-5 -kerning first=330 second=83 amount=-1 -kerning first=8377 second=261 amount=-1 -kerning first=904 second=233 amount=-1 -kerning first=8370 second=953 amount=-1 -kerning first=1206 second=290 amount=-1 -kerning first=249 second=949 amount=-1 -kerning first=252 second=257 amount=-1 -kerning first=963 second=8211 amount=-2 -kerning first=162 second=963 amount=-1 -kerning first=165 second=271 amount=-1 -kerning first=8212 second=352 amount=-1 -kerning first=47 second=286 amount=-2 -kerning first=44 second=1026 amount=-5 -kerning first=299 second=1090 amount=-3 -kerning first=302 second=334 amount=-2 -kerning first=70 second=218 amount=-2 -kerning first=1084 second=376 amount=-5 -kerning first=1117 second=1059 amount=-2 -kerning first=230 second=964 amount=-1 -kerning first=236 second=45 amount=-2 -kerning first=951 second=85 amount=-2 -kerning first=113 second=287 amount=-1 -kerning first=1220 second=235 amount=-1 -kerning first=376 second=335 amount=-4 -kerning first=169 second=219 amount=-2 -kerning first=276 second=1108 amount=-1 -kerning first=51 second=231 amount=-1 -kerning first=191 second=361 amount=-1 -kerning first=194 second=121 amount=-1 -kerning first=303 second=965 amount=-1 -kerning first=68 second=1202 amount=-3 -kerning first=1081 second=8250 amount=-1 -kerning first=214 second=288 amount=-2 -kerning first=1174 second=248 amount=-1 -kerning first=237 second=220 amount=-2 -kerning first=357 second=350 amount=-1 -kerning first=117 second=232 amount=-1 -kerning first=254 second=1176 amount=-1 -kerning first=377 second=966 amount=-1 -kerning first=380 second=275 amount=-1 -kerning first=1028 second=197 amount=-1 -kerning first=170 second=374 amount=-5 -kerning first=198 second=71 amount=-2 -kerning first=313 second=221 amount=-6 -kerning first=78 second=83 amount=-1 -kerning first=1095 second=953 amount=-1 -kerning first=238 second=375 amount=-1 -kerning first=361 second=290 amount=-2 -kerning first=956 second=210 amount=-2 -kerning first=255 second=8211 amount=-2 -kerning first=1299 second=100 amount=-1 -kerning first=178 second=84 amount=-5 -kerning first=289 second=234 amount=-1 -kerning first=8226 second=1241 amount=-1 -kerning first=56 second=334 amount=-2 -kerning first=1067 second=968 amount=-1 -kerning first=53 second=1090 amount=-3 -kerning first=314 second=376 amount=-5 -kerning first=8364 second=89 amount=-5 +kerning first=76 second=275 amount=-1 +kerning first=76 second=277 amount=-1 +kerning first=76 second=279 amount=-1 +kerning first=76 second=281 amount=-1 +kerning first=76 second=283 amount=-1 +kerning first=76 second=286 amount=-1 +kerning first=76 second=287 amount=-1 +kerning first=76 second=288 amount=-1 +kerning first=76 second=289 amount=-1 +kerning first=76 second=290 amount=-1 +kerning first=76 second=291 amount=-1 +kerning first=76 second=332 amount=-1 +kerning first=76 second=333 amount=-1 +kerning first=76 second=334 amount=-1 +kerning first=76 second=335 amount=-1 +kerning first=76 second=336 amount=-1 +kerning first=76 second=337 amount=-1 +kerning first=76 second=338 amount=-1 +kerning first=76 second=339 amount=-1 +kerning first=76 second=354 amount=-6 +kerning first=76 second=355 amount=-1 +kerning first=76 second=356 amount=-6 +kerning first=76 second=357 amount=-1 +kerning first=76 second=359 amount=-1 +kerning first=76 second=360 amount=-1 +kerning first=76 second=361 amount=-1 +kerning first=76 second=362 amount=-1 +kerning first=76 second=363 amount=-1 +kerning first=76 second=364 amount=-1 +kerning first=76 second=365 amount=-1 +kerning first=76 second=366 amount=-1 +kerning first=76 second=367 amount=-1 +kerning first=76 second=368 amount=-1 +kerning first=76 second=369 amount=-1 +kerning first=76 second=370 amount=-1 +kerning first=76 second=371 amount=-1 +kerning first=76 second=372 amount=-4 +kerning first=76 second=373 amount=-3 +kerning first=76 second=374 amount=-6 +kerning first=76 second=375 amount=-1 +kerning first=76 second=376 amount=-6 +kerning first=76 second=920 amount=-1 +kerning first=76 second=927 amount=-1 +kerning first=76 second=932 amount=-6 +kerning first=76 second=933 amount=-6 +kerning first=76 second=939 amount=-6 +kerning first=76 second=940 amount=-1 +kerning first=76 second=941 amount=-1 +kerning first=76 second=945 amount=-1 +kerning first=76 second=947 amount=-3 +kerning first=76 second=949 amount=-1 +kerning first=76 second=957 amount=-3 +kerning first=76 second=959 amount=-1 +kerning first=76 second=962 amount=-1 +kerning first=76 second=963 amount=-1 +kerning first=76 second=965 amount=-1 +kerning first=76 second=966 amount=-1 +kerning first=76 second=968 amount=-1 +kerning first=76 second=972 amount=-1 +kerning first=76 second=973 amount=-1 +kerning first=76 second=1026 amount=-6 +kerning first=76 second=1028 amount=-1 +kerning first=76 second=1035 amount=-6 +kerning first=76 second=1038 amount=-1 +kerning first=76 second=1054 amount=-1 +kerning first=76 second=1057 amount=-1 +kerning first=76 second=1058 amount=-6 +kerning first=76 second=1059 amount=-1 +kerning first=76 second=1066 amount=-6 +kerning first=76 second=1077 amount=-1 +kerning first=76 second=1086 amount=-1 +kerning first=76 second=1089 amount=-1 +kerning first=76 second=1091 amount=-1 +kerning first=76 second=1092 amount=-1 +kerning first=76 second=1104 amount=-1 +kerning first=76 second=1105 amount=-1 +kerning first=76 second=1108 amount=-1 +kerning first=76 second=1118 amount=-1 +kerning first=76 second=1184 amount=-6 +kerning first=76 second=1194 amount=-1 +kerning first=76 second=1195 amount=-1 +kerning first=76 second=1198 amount=-6 +kerning first=76 second=1199 amount=-3 +kerning first=76 second=1240 amount=-1 +kerning first=76 second=1241 amount=-1 +kerning first=76 second=1256 amount=-1 +kerning first=76 second=1257 amount=-1 +kerning first=76 second=1262 amount=-1 +kerning first=76 second=1263 amount=-1 +kerning first=76 second=8211 amount=-3 +kerning first=76 second=8212 amount=-3 +kerning first=76 second=8216 amount=-3 +kerning first=76 second=8217 amount=-3 +kerning first=76 second=8220 amount=-3 +kerning first=76 second=8221 amount=-3 +kerning first=76 second=8249 amount=-3 +kerning first=79 second=44 amount=-1 +kerning first=79 second=46 amount=-1 +kerning first=79 second=47 amount=-1 +kerning first=79 second=65 amount=-2 +kerning first=79 second=84 amount=-2 +kerning first=79 second=86 amount=-2 +kerning first=79 second=87 amount=-2 +kerning first=79 second=88 amount=-3 +kerning first=79 second=89 amount=-3 +kerning first=79 second=90 amount=-1 +kerning first=79 second=193 amount=-2 +kerning first=79 second=194 amount=-2 +kerning first=79 second=196 amount=-2 +kerning first=79 second=197 amount=-2 +kerning first=79 second=198 amount=-2 +kerning first=79 second=221 amount=-3 +kerning first=79 second=256 amount=-2 kerning first=79 second=258 amount=-2 -kerning first=236 second=8249 amount=-3 -kerning first=1186 second=113 amount=-1 -kerning first=365 second=235 amount=-1 -kerning first=958 second=365 amount=-1 -kerning first=122 second=335 amount=-1 -kerning first=125 second=97 amount=-1 -kerning first=34 second=1108 amount=-1 -kerning first=37 second=347 amount=-1 -kerning first=179 second=259 amount=-1 -kerning first=183 second=34 amount=-3 -kerning first=57 second=965 amount=-1 -kerning first=8365 second=266 amount=-2 -kerning first=8370 second=39 amount=-3 -kerning first=1103 second=366 amount=-2 -kerning first=223 second=336 amount=-2 -kerning first=103 second=350 amount=-1 -kerning first=955 second=8217 amount=-3 -kerning first=123 second=966 amount=-1 -kerning first=126 second=275 amount=-1 -kerning first=41 second=289 amount=-1 -kerning first=296 second=337 amount=-1 -kerning first=299 second=99 amount=-1 -kerning first=64 second=221 amount=-5 -kerning first=204 second=351 amount=-1 -kerning first=207 second=111 amount=-1 -kerning first=321 second=953 amount=-1 -kerning first=8372 second=214 amount=-2 -kerning first=84 second=363 amount=-2 -kerning first=1101 second=8218 amount=-1 -kerning first=350 second=198 amount=-1 -kerning first=250 second=210 amount=-2 -kerning first=373 second=100 amount=-1 -kerning first=964 second=941 amount=-1 -kerning first=967 second=250 amount=-1 -kerning first=273 second=352 amount=-1 -kerning first=8216 second=65 amount=-3 -kerning first=1049 second=187 amount=-1 -kerning first=185 second=364 amount=-2 -kerning first=1046 second=1241 amount=-2 -kerning first=297 second=968 amount=-1 -kerning first=300 second=277 amount=-1 -kerning first=65 second=376 amount=-5 -kerning first=205 second=1035 amount=-5 -kerning first=1085 second=89 amount=-5 -kerning first=900 second=1098 amount=-3 -kerning first=903 second=339 amount=-1 -kerning first=906 second=101 amount=-1 -kerning first=82 second=8212 amount=-1 -kerning first=1118 second=251 amount=-1 -kerning first=354 second=113 amount=-3 -kerning first=251 second=365 amount=-1 -kerning first=8211 second=916 amount=-2 -kerning first=8217 second=240 amount=-1 -kerning first=183 second=8216 amount=-3 -kerning first=304 second=224 amount=-1 -kerning first=63 second=8250 amount=-1 -kerning first=1087 second=266 amount=-2 -kerning first=1095 second=39 amount=-3 -kerning first=330 second=366 amount=-2 -kerning first=904 second=970 amount=-1 -kerning first=89 second=937 amount=-2 -kerning first=92 second=248 amount=-1 -kerning first=232 second=378 amount=-1 -kerning first=950 second=213 amount=-2 -kerning first=249 second=8217 amount=-3 -kerning first=1224 second=103 amount=-1 -kerning first=1026 second=115 amount=-1 -kerning first=47 second=1096 amount=-1 -kerning first=50 second=337 amount=-1 -kerning first=53 second=99 amount=-1 -kerning first=190 second=940 amount=-1 -kerning first=193 second=249 amount=-1 -kerning first=70 second=953 amount=-1 -kerning first=73 second=261 amount=-1 -kerning first=1096 second=214 amount=-2 -kerning first=915 second=226 amount=-1 -kerning first=1171 second=356 amount=-5 -kerning first=1176 second=116 amount=-1 -kerning first=233 second=1078 amount=-2 -kerning first=951 second=368 amount=-2 -kerning first=113 second=1097 amount=2 -kerning first=119 second=100 amount=-1 -kerning first=1220 second=972 amount=-1 -kerning first=256 second=941 amount=-1 -kerning first=172 second=262 amount=-2 -kerning first=1034 second=65 amount=-1 -kerning first=282 second=1241 amount=-1 -kerning first=287 second=187 amount=-1 -kerning first=51 second=968 amount=-1 -kerning first=54 second=277 amount=-1 -kerning first=197 second=199 amount=-2 -kerning first=306 second=1079 amount=-1 -kerning first=315 second=89 amount=-6 -kerning first=77 second=211 amount=-2 -kerning first=214 second=1098 amount=-3 -kerning first=338 second=251 amount=-1 -kerning first=100 second=113 amount=-1 -kerning first=240 second=263 amount=-1 -kerning first=952 second=1066 amount=-5 -kerning first=949 second=8221 amount=-1 -kerning first=1298 second=228 amount=-1 -kerning first=1028 second=916 amount=-1 -kerning first=1035 second=240 amount=-1 -kerning first=177 second=212 amount=-2 -kerning first=8240 second=283 amount=-1 -kerning first=58 second=224 amount=-1 -kerning first=198 second=354 amount=-5 -kerning first=195 second=1118 amount=-1 -kerning first=316 second=266 amount=-2 -kerning first=321 second=39 amount=-3 -kerning first=8363 second=217 amount=-2 -kerning first=78 second=366 amount=-2 -kerning first=221 second=279 amount=-4 -kerning first=104 second=63 amount=-2 -kerning first=1178 second=920 amount=-1 -kerning first=367 second=103 amount=-1 -kerning first=124 second=225 amount=-1 -kerning first=175 second=1185 amount=-3 -kerning first=178 second=367 amount=-1 -kerning first=322 second=214 amount=-2 -kerning first=8361 second=947 amount=-4 -kerning first=8364 second=372 amount=-5 -kerning first=365 second=972 amount=-1 -kerning first=40 second=1241 amount=-1 -kerning first=43 second=187 amount=-1 -kerning first=176 second=8220 amount=-3 -kerning first=298 second=227 amount=-1 -kerning first=60 second=1079 amount=-1 -kerning first=66 second=89 amount=-2 -kerning first=323 second=369 amount=-1 -kerning first=86 second=251 amount=-2 -kerning first=243 second=8221 amount=-1 -kerning first=1206 second=106 amount=7 -kerning first=372 second=228 amount=-2 -kerning first=8212 second=193 amount=-2 -kerning first=47 second=102 amount=-1 -kerning first=1048 second=283 amount=-1 -kerning first=184 second=943 amount=-1 -kerning first=296 second=1256 amount=-2 -kerning first=70 second=39 amount=-3 -kerning first=1084 second=217 amount=-2 -kerning first=8372 second=949 amount=-1 -kerning first=8378 second=257 amount=-1 -kerning first=905 second=229 amount=-1 -kerning first=1117 second=359 amount=-1 -kerning first=1168 second=119 amount=-4 -kerning first=944 second=371 amount=-1 -kerning first=113 second=103 amount=3 -kerning first=1202 second=1026 amount=-2 -kerning first=253 second=253 amount=-1 -kerning first=166 second=267 amount=-1 -kerning first=1081 second=947 amount=-4 -kerning first=1085 second=372 amount=-5 -kerning first=903 second=1262 amount=-2 -kerning first=906 second=1240 amount=-2 -kerning first=91 second=356 amount=-5 -kerning first=94 second=116 amount=-1 -kerning first=952 second=81 amount=-2 -kerning first=114 second=281 amount=-1 -kerning first=1223 second=231 amount=-1 -kerning first=374 second=1084 amount=-3 -kerning first=52 second=227 amount=-1 -kerning first=1051 second=1263 amount=-1 -kerning first=192 second=357 amount=-1 -kerning first=195 second=117 amount=-1 -kerning first=72 second=369 amount=-1 -kerning first=912 second=332 amount=-2 -kerning first=1175 second=244 amount=-1 -kerning first=238 second=216 amount=-2 -kerning first=361 second=106 amount=1 -kerning first=118 second=228 amount=-1 -kerning first=261 second=118 amount=-1 -kerning first=378 second=962 amount=-1 -kerning first=1033 second=193 amount=-1 -kerning first=168 second=1194 amount=-2 -kerning first=8226 second=233 amount=-1 -kerning first=50 second=1256 amount=-2 -kerning first=1067 second=333 amount=-1 -kerning first=314 second=217 amount=-2 -kerning first=70 second=8222 amount=-4 -kerning first=1096 second=949 amount=-1 -kerning first=1099 second=257 amount=-1 -kerning first=915 second=963 amount=-1 -kerning first=923 second=271 amount=-1 -kerning first=96 second=920 amount=-2 -kerning first=236 second=1195 amount=-1 -kerning first=239 second=371 amount=-1 -kerning first=1263 second=334 amount=-2 -kerning first=1068 second=964 amount=-2 -kerning first=1071 second=273 amount=-1 -kerning first=200 second=242 amount=-1 -kerning first=315 second=372 amount=-4 -kerning first=8365 second=85 amount=-2 -kerning first=77 second=945 amount=-1 -kerning first=934 second=219 amount=-2 -kerning first=240 second=1069 amount=-1 -kerning first=960 second=361 amount=-1 -kerning first=963 second=121 amount=-1 -kerning first=1298 second=965 amount=-1 -kerning first=1035 second=1028 amount=-2 -kerning first=8260 second=336 amount=-2 -kerning first=61 second=269 amount=-1 -kerning first=221 second=1085 amount=-3 -kerning first=345 second=244 amount=-1 -kerning first=936 second=374 amount=-5 -kerning first=107 second=106 amount=1 -kerning first=364 second=1298 amount=-1 -kerning first=967 second=71 amount=-2 -kerning first=124 second=962 amount=-1 -kerning first=1240 second=8230 amount=-1 -kerning first=42 second=283 amount=-1 -kerning first=45 second=55 amount=-3 -kerning first=1046 second=233 amount=-2 -kerning first=297 second=333 amount=-1 -kerning first=65 second=217 amount=-2 -kerning first=322 second=949 amount=-1 -kerning first=325 second=257 amount=-1 -kerning first=88 second=119 amount=-3 -kerning first=105 second=1026 amount=-5 -kerning first=108 second=286 amount=-2 -kerning first=1203 second=234 amount=-1 -kerning first=371 second=334 amount=-2 -kerning first=968 second=246 amount=-1 -kerning first=164 second=218 amount=-2 -kerning first=274 second=346 amount=-1 -kerning first=186 second=360 amount=-2 -kerning first=298 second=964 amount=-3 -kerning first=304 second=45 amount=-2 -kerning first=301 second=273 amount=-1 -kerning first=63 second=947 amount=-4 -kerning first=66 second=372 amount=-1 -kerning first=1087 second=85 amount=-2 -kerning first=209 second=287 amount=-1 -kerning first=8377 second=365 amount=-1 -kerning first=904 second=335 amount=-1 -kerning first=946 second=259 amount=-1 -kerning first=950 second=34 amount=-3 -kerning first=252 second=361 amount=-1 -kerning first=255 second=121 amount=-1 -kerning first=372 second=965 amount=-2 -kerning first=165 second=373 amount=-4 -kerning first=278 second=288 amount=-2 -kerning first=44 second=1263 amount=-1 -kerning first=305 second=220 amount=-2 -kerning first=327 second=1176 amount=-1 -kerning first=8372 second=8217 amount=-3 -kerning first=905 second=966 amount=-1 -kerning first=93 second=244 amount=-1 -kerning first=910 second=275 amount=-4 -kerning first=230 second=1203 amount=-2 -kerning first=356 second=289 amount=-2 -kerning first=1220 second=337 amount=-1 -kerning first=973 second=351 amount=-1 -kerning first=1027 second=111 amount=-1 -kerning first=172 second=83 amount=-1 -kerning first=282 second=233 amount=-1 -kerning first=51 second=333 amount=-1 -kerning first=194 second=245 amount=-1 -kerning first=306 second=375 amount=-1 -kerning first=74 second=257 amount=-1 -kerning first=332 second=1051 amount=-1 -kerning first=240 second=84 amount=-5 -kerning first=952 second=364 amount=-2 -kerning first=117 second=334 amount=-2 -kerning first=1223 second=968 amount=-1 -kerning first=260 second=246 amount=-1 -kerning first=8225 second=339 amount=-1 -kerning first=55 second=273 amount=-1 -kerning first=58 second=45 amount=-2 -kerning first=8240 second=101 amount=-1 -kerning first=52 second=964 amount=-3 -kerning first=304 second=8249 amount=-3 -kerning first=316 second=85 amount=-2 -kerning first=221 second=97 amount=-4 -kerning first=920 second=377 amount=-1 -kerning first=95 second=1108 amount=-1 -kerning first=244 second=34 amount=-1 -kerning first=950 second=8216 amount=-3 -kerning first=1299 second=224 amount=-1 -kerning first=266 second=196 amount=-1 -kerning first=36 second=288 amount=-2 -kerning first=289 second=336 amount=-2 -kerning first=8226 second=970 amount=-1 -kerning first=59 second=220 amount=-2 -kerning first=1074 second=171 amount=-3 -kerning first=8364 second=213 amount=-2 -kerning first=1096 second=8217 amount=-3 -kerning first=102 second=289 amount=-1 -kerning first=365 second=337 amount=-1 -kerning first=962 second=249 amount=-1 -kerning first=958 second=940 amount=-1 -kerning first=125 second=221 amount=-5 -kerning first=40 second=233 amount=-1 -kerning first=179 second=363 amount=-1 -kerning first=176 second=1177 amount=-1 -kerning first=60 second=375 amount=-1 -kerning first=203 second=290 amount=-2 -kerning first=323 second=210 amount=-2 -kerning first=8365 second=368 amount=-2 -kerning first=77 second=8211 amount=-2 -kerning first=901 second=100 amount=-1 -kerning first=1103 second=941 amount=-1 -kerning first=1187 second=1241 amount=-1 -kerning first=369 second=277 amount=-1 -kerning first=126 second=376 amount=-5 -kerning first=268 second=1035 amount=-1 -kerning first=271 second=291 amount=-1 -kerning first=1044 second=339 amount=-1 -kerning first=177 second=8212 amount=-2 -kerning first=180 second=1059 amount=-2 -kerning first=1048 second=101 amount=-1 -kerning first=58 second=8249 amount=-3 -kerning first=1080 second=263 amount=-1 -kerning first=207 second=235 amount=-1 -kerning first=8366 second=1066 amount=-5 -kerning first=8363 second=8221 amount=-3 -kerning first=944 second=212 amount=-2 -kerning first=244 second=8216 amount=-1 -kerning first=373 second=224 amount=-1 -kerning first=967 second=354 amount=-5 -kerning first=964 second=1118 amount=-1 -kerning first=124 second=8250 amount=-1 -kerning first=1049 second=279 amount=-1 -kerning first=188 second=248 amount=-1 -kerning first=1046 second=970 amount=-1 -kerning first=303 second=171 amount=-3 -kerning first=68 second=260 amount=-2 -kerning first=1085 second=213 amount=-2 -kerning first=322 second=8217 amount=-3 -kerning first=906 second=225 amount=-1 -kerning first=1118 second=355 amount=-1 -kerning first=942 second=1185 amount=-3 -kerning first=114 second=99 amount=-1 -kerning first=254 second=249 amount=-1 -kerning first=251 second=940 amount=-1 -kerning first=968 second=1038 amount=-2 -kerning first=167 second=261 amount=-1 -kerning first=164 second=953 amount=-1 -kerning first=1063 second=226 amount=-1 -kerning first=72 second=210 amount=-2 -kerning first=1087 second=368 amount=-2 -kerning first=215 second=100 amount=-1 -kerning first=330 second=941 amount=-1 -kerning first=92 second=352 amount=-1 -kerning first=89 second=1116 amount=-3 -kerning first=358 second=187 amount=-1 -kerning first=1224 second=227 amount=-1 -kerning first=258 second=199 amount=-2 -kerning first=375 second=1079 amount=-1 -kerning first=278 second=1098 amount=-3 -kerning first=8218 second=973 amount=-1 -kerning first=193 second=353 amount=-1 -kerning first=196 second=113 amount=-1 -kerning first=310 second=263 amount=-2 -kerning first=70 second=1179 amount=-1 -kerning first=73 second=365 amount=-1 -kerning first=1084 second=8221 amount=-3 -kerning first=910 second=1080 amount=-3 -kerning first=1176 second=240 amount=-1 -kerning first=239 second=212 amount=-2 -kerning first=356 second=1099 amount=-2 -kerning first=951 second=943 amount=-1 -kerning first=119 second=224 amount=-1 -kerning first=1220 second=1256 amount=-2 -kerning first=256 second=1118 amount=-1 -kerning first=169 second=1184 amount=-5 -kerning first=172 second=366 amount=-2 -kerning first=287 second=279 amount=-1 -kerning first=282 second=970 amount=-1 -kerning first=57 second=171 amount=-3 -kerning first=315 second=213 amount=-1 -kerning first=338 second=355 amount=-1 -kerning first=341 second=115 amount=-1 -kerning first=926 second=267 amount=-1 -kerning first=240 second=367 amount=-1 -kerning first=237 second=1185 amount=-3 -kerning first=1257 second=1083 amount=-1 -kerning first=260 second=1038 amount=-2 -kerning first=291 second=226 amount=-1 -kerning first=8225 second=1262 amount=-2 -kerning first=8240 second=1240 amount=-2 -kerning first=1073 second=268 amount=-2 -kerning first=316 second=368 amount=-2 -kerning first=8366 second=81 amount=-2 -kerning first=78 second=941 amount=-1 -kerning first=221 second=380 amount=-2 -kerning first=238 second=8220 amount=-3 -kerning first=367 second=227 amount=-1 -kerning first=964 second=117 amount=-1 -kerning first=121 second=1079 amount=-1 -kerning first=160 second=89 amount=-5 -kerning first=36 second=1098 amount=-3 -kerning first=42 second=101 amount=-1 -kerning first=1036 second=973 amount=-1 -kerning first=39 second=339 amount=-1 -kerning first=182 second=251 amount=-1 -kerning first=65 second=38 amount=-1 -kerning first=62 second=263 amount=-1 -kerning first=314 second=8221 amount=-3 -kerning first=317 second=1066 amount=-5 -kerning first=900 second=228 amount=-1 -kerning first=931 second=1194 amount=-2 -kerning first=365 second=1256 amount=-2 -kerning first=968 second=67 amount=-2 -kerning first=161 second=266 amount=-2 -kerning first=164 second=39 amount=-3 -kerning first=46 second=51 amount=-1 -kerning first=43 second=279 amount=-1 -kerning first=40 second=970 amount=-1 -kerning first=1075 second=1195 amount=-1 -kerning first=209 second=103 amount=-1 -kerning first=86 second=355 amount=-1 -kerning first=89 second=115 amount=-3 -kerning first=165 second=214 amount=-2 -kerning first=271 second=1101 amount=-1 -kerning first=47 second=226 amount=-2 -kerning first=1048 second=1240 amount=-2 -kerning first=1044 second=1262 amount=-1 -kerning first=187 second=356 amount=-3 -kerning first=190 second=116 amount=-1 -kerning first=302 second=268 amount=-2 -kerning first=1080 second=1069 amount=-1 -kerning first=207 second=972 amount=-1 -kerning first=8378 second=361 amount=-1 -kerning first=1168 second=243 amount=-1 -kerning first=113 second=227 amount=-1 -kerning first=253 second=357 amount=-1 -kerning first=256 second=117 amount=-1 -kerning first=373 second=961 amount=-2 -kerning first=376 second=269 amount=-4 -kerning first=166 second=369 amount=-1 -kerning first=276 second=973 amount=-1 -kerning first=8220 second=232 amount=-1 -kerning first=1062 second=332 amount=-1 -kerning first=306 second=216 amount=-2 -kerning first=65 second=8221 amount=-3 -kerning first=68 second=1066 amount=-2 -kerning first=214 second=228 amount=-1 -kerning first=335 second=118 amount=-1 -kerning first=906 second=962 amount=-1 -kerning first=94 second=240 amount=-1 -kerning first=357 second=283 amount=-1 -kerning first=1223 second=333 amount=-1 -kerning first=260 second=67 amount=-2 -kerning first=174 second=79 amount=-2 -kerning first=1063 second=963 amount=-1 -kerning first=192 second=920 amount=-2 -kerning first=1069 second=44 amount=-1 -kerning first=304 second=1195 amount=-1 -kerning first=75 second=253 amount=-2 -kerning first=361 second=230 amount=-1 -kerning first=1224 second=964 amount=-3 -kerning first=1299 second=45 amount=-2 -kerning first=8226 second=335 amount=-1 -kerning first=56 second=268 amount=-2 -kerning first=310 second=1069 amount=-2 -kerning first=317 second=81 amount=-2 -kerning first=8364 second=34 amount=-3 -kerning first=8361 second=259 amount=-1 -kerning first=1099 second=361 amount=-1 -kerning first=923 second=373 amount=-4 -kerning first=1176 second=1028 amount=-2 -kerning first=119 second=961 amount=-2 -kerning first=122 second=269 amount=-1 -kerning first=1037 second=232 amount=-1 -kerning first=60 second=216 amount=-2 -kerning first=1071 second=374 amount=-5 -kerning first=203 second=106 amount=1 -kerning first=83 second=118 amount=-1 -kerning first=103 second=283 amount=-1 -kerning first=1187 second=233 amount=-1 -kerning first=963 second=245 amount=-1 -kerning first=126 second=217 amount=-2 -kerning first=41 second=229 amount=-1 -kerning first=184 second=119 amount=-4 -kerning first=180 second=359 amount=-1 -kerning first=291 second=963 amount=-1 -kerning first=296 second=271 amount=-1 -kerning first=58 second=1195 amount=-1 -kerning first=61 second=371 amount=-1 -kerning first=1080 second=84 amount=-5 -kerning first=201 second=1026 amount=-5 -kerning first=204 second=286 amount=-2 -kerning first=8366 second=364 amount=-2 +kerning first=79 second=260 amount=-2 +kerning first=79 second=354 amount=-2 +kerning first=79 second=356 amount=-2 +kerning first=79 second=372 amount=-2 +kerning first=79 second=374 amount=-3 +kerning first=79 second=376 amount=-3 +kerning first=79 second=377 amount=-1 +kerning first=79 second=379 amount=-1 +kerning first=79 second=381 amount=-1 +kerning first=79 second=913 amount=-2 +kerning first=79 second=916 amount=-2 +kerning first=79 second=918 amount=-1 +kerning first=79 second=923 amount=-2 +kerning first=79 second=932 amount=-2 +kerning first=79 second=933 amount=-3 +kerning first=79 second=935 amount=-3 +kerning first=79 second=939 amount=-3 +kerning first=79 second=955 amount=-2 +kerning first=79 second=967 amount=-1 +kerning first=79 second=1026 amount=-2 +kerning first=79 second=1033 amount=-1 +kerning first=79 second=1035 amount=-2 +kerning first=79 second=1040 amount=-2 +kerning first=79 second=1044 amount=-1 +kerning first=79 second=1046 amount=-3 +kerning first=79 second=1051 amount=-1 +kerning first=79 second=1058 amount=-2 +kerning first=79 second=1061 amount=-3 +kerning first=79 second=1066 amount=-2 +kerning first=79 second=1071 amount=-1 +kerning first=79 second=1174 amount=-3 +kerning first=79 second=1184 amount=-2 +kerning first=79 second=1198 amount=-3 +kerning first=79 second=1202 amount=-3 +kerning first=79 second=1298 amount=-1 +kerning first=79 second=8218 amount=-1 +kerning first=79 second=8222 amount=-1 +kerning first=79 second=8230 amount=-1 +kerning first=80 second=44 amount=-4 +kerning first=80 second=45 amount=-1 +kerning first=80 second=46 amount=-4 +kerning first=80 second=47 amount=-3 +kerning first=80 second=65 amount=-4 +kerning first=80 second=74 amount=-3 +kerning first=80 second=86 amount=-1 +kerning first=80 second=87 amount=-1 +kerning first=80 second=88 amount=-2 +kerning first=80 second=89 amount=-2 +kerning first=80 second=90 amount=-1 +kerning first=80 second=97 amount=-1 +kerning first=80 second=103 amount=-1 +kerning first=80 second=173 amount=-1 +kerning first=80 second=193 amount=-4 +kerning first=80 second=194 amount=-4 +kerning first=80 second=196 amount=-4 +kerning first=80 second=197 amount=-4 +kerning first=80 second=198 amount=-4 +kerning first=80 second=221 amount=-2 +kerning first=80 second=224 amount=-1 +kerning first=80 second=225 amount=-1 +kerning first=80 second=226 amount=-1 +kerning first=80 second=227 amount=-1 +kerning first=80 second=228 amount=-1 +kerning first=80 second=229 amount=-1 +kerning first=80 second=230 amount=-1 +kerning first=80 second=256 amount=-4 +kerning first=80 second=257 amount=-1 +kerning first=80 second=258 amount=-4 +kerning first=80 second=259 amount=-1 +kerning first=80 second=260 amount=-4 +kerning first=80 second=261 amount=-1 +kerning first=80 second=287 amount=-1 +kerning first=80 second=289 amount=-1 +kerning first=80 second=291 amount=-1 +kerning first=80 second=372 amount=-1 +kerning first=80 second=374 amount=-2 +kerning first=80 second=376 amount=-2 +kerning first=80 second=377 amount=-1 +kerning first=80 second=379 amount=-1 +kerning first=80 second=381 amount=-1 +kerning first=80 second=913 amount=-4 +kerning first=80 second=916 amount=-4 +kerning first=80 second=918 amount=-1 +kerning first=80 second=923 amount=-4 +kerning first=80 second=933 amount=-2 +kerning first=80 second=935 amount=-2 +kerning first=80 second=939 amount=-2 +kerning first=80 second=950 amount=-1 +kerning first=80 second=955 amount=-3 +kerning first=80 second=961 amount=-1 +kerning first=80 second=1032 amount=-3 +kerning first=80 second=1040 amount=-4 +kerning first=80 second=1046 amount=-2 +kerning first=80 second=1061 amount=-2 +kerning first=80 second=1072 amount=-1 +kerning first=80 second=1174 amount=-2 +kerning first=80 second=1198 amount=-2 +kerning first=80 second=1202 amount=-2 +kerning first=80 second=8211 amount=-1 +kerning first=80 second=8212 amount=-1 +kerning first=80 second=8218 amount=-4 +kerning first=80 second=8222 amount=-4 +kerning first=80 second=8230 amount=-4 +kerning first=81 second=44 amount=-1 +kerning first=81 second=46 amount=-1 +kerning first=81 second=47 amount=-1 +kerning first=81 second=65 amount=-2 +kerning first=81 second=84 amount=-2 +kerning first=81 second=86 amount=-2 +kerning first=81 second=87 amount=-2 +kerning first=81 second=88 amount=-3 +kerning first=81 second=89 amount=-3 +kerning first=81 second=90 amount=-1 +kerning first=81 second=193 amount=-2 +kerning first=81 second=194 amount=-2 +kerning first=81 second=196 amount=-2 +kerning first=81 second=197 amount=-2 +kerning first=81 second=198 amount=-2 +kerning first=81 second=221 amount=-3 +kerning first=81 second=256 amount=-2 +kerning first=81 second=258 amount=-2 +kerning first=81 second=260 amount=-2 +kerning first=81 second=354 amount=-2 +kerning first=81 second=356 amount=-2 +kerning first=81 second=372 amount=-2 +kerning first=81 second=374 amount=-3 +kerning first=81 second=376 amount=-3 +kerning first=81 second=377 amount=-1 +kerning first=81 second=379 amount=-1 +kerning first=81 second=381 amount=-1 +kerning first=81 second=913 amount=-2 +kerning first=81 second=916 amount=-2 +kerning first=81 second=918 amount=-1 +kerning first=81 second=923 amount=-2 +kerning first=81 second=932 amount=-2 +kerning first=81 second=933 amount=-3 +kerning first=81 second=935 amount=-3 +kerning first=81 second=939 amount=-3 +kerning first=81 second=955 amount=-2 +kerning first=81 second=967 amount=-1 +kerning first=81 second=1026 amount=-2 +kerning first=81 second=1033 amount=-1 +kerning first=81 second=1035 amount=-2 +kerning first=81 second=1040 amount=-2 +kerning first=81 second=1044 amount=-1 kerning first=81 second=1046 amount=-3 -kerning first=936 second=950 amount=-1 -kerning first=107 second=230 amount=-1 -kerning first=247 second=360 amount=-2 -kerning first=367 second=964 amount=-3 -kerning first=373 second=45 amount=-1 -kerning first=124 second=947 amount=-4 -kerning first=160 second=372 amount=-5 -kerning first=1299 second=8249 amount=-3 -kerning first=273 second=287 amount=-1 -kerning first=42 second=1240 amount=-2 -kerning first=1049 second=97 amount=-1 -kerning first=1046 second=335 amount=-2 -kerning first=300 second=219 amount=-2 -kerning first=62 second=1069 amount=-1 -kerning first=1085 second=34 amount=-3 -kerning first=1081 second=259 amount=-1 -kerning first=325 second=361 amount=-1 -kerning first=8364 second=8216 amount=-3 -kerning first=900 second=965 amount=-1 -kerning first=88 second=243 amount=-2 -kerning first=228 second=373 amount=-1 -kerning first=105 second=1263 amount=-1 -kerning first=968 second=350 amount=-1 -kerning first=46 second=332 amount=-1 -kerning first=1051 second=275 amount=-1 -kerning first=189 second=244 amount=-1 -kerning first=301 second=374 amount=-5 -kerning first=8377 second=940 amount=-1 -kerning first=908 second=221 amount=-3 -kerning first=1170 second=111 amount=-1 -kerning first=1119 second=351 amount=-1 -kerning first=946 second=363 amount=-1 -kerning first=255 second=245 amount=-1 -kerning first=375 second=375 amount=-1 -kerning first=165 second=949 amount=-1 -kerning first=168 second=257 amount=-1 -kerning first=275 second=1299 amount=-1 -kerning first=8218 second=338 amount=-1 -kerning first=47 second=963 amount=-1 -kerning first=53 second=44 amount=-1 -kerning first=50 second=271 amount=-1 -kerning first=93 second=346 amount=-1 -kerning first=1168 second=1035 amount=-5 -kerning first=1171 second=291 amount=-1 -kerning first=944 second=8212 amount=-2 -kerning first=948 second=1059 amount=-2 -kerning first=113 second=964 amount=-3 -kerning first=119 second=45 amount=-1 -kerning first=376 second=1074 amount=-3 -kerning first=373 second=8249 amount=-1 -kerning first=1027 second=235 amount=-1 -kerning first=282 second=335 amount=-1 -kerning first=287 second=97 amount=-1 -kerning first=54 second=219 amount=-2 -kerning first=191 second=1108 amount=-1 -kerning first=194 second=347 amount=-1 -kerning first=315 second=34 amount=-3 -kerning first=311 second=259 amount=-1 -kerning first=74 second=361 amount=-1 -kerning first=1085 second=8216 amount=-3 -kerning first=77 second=121 amount=-1 -kerning first=214 second=965 amount=-1 -kerning first=220 second=46 amount=-1 -kerning first=906 second=8250 amount=-1 -kerning first=94 second=1028 amount=-2 -kerning first=955 second=248 amount=-1 -kerning first=1298 second=171 amount=-3 -kerning first=1257 second=378 amount=-1 -kerning first=260 second=350 amount=-1 -kerning first=35 second=232 amount=-1 -kerning first=170 second=1176 amount=-1 -kerning first=174 second=362 amount=-2 -kerning first=8240 second=225 amount=-1 -kerning first=55 second=374 amount=-5 -kerning first=1073 second=87 amount=-5 -kerning first=198 second=289 amount=-1 -kerning first=928 second=261 amount=-1 -kerning first=238 second=1177 amount=-1 -kerning first=121 second=375 amount=-1 -kerning first=1036 second=338 amount=-3 -kerning first=1039 second=100 amount=-1 -kerning first=62 second=84 amount=-5 -kerning first=1074 second=262 amount=-2 -kerning first=202 second=234 amount=-1 -kerning first=317 second=364 amount=-2 -kerning first=222 second=376 amount=-3 -kerning first=343 second=291 amount=-1 -kerning first=1179 second=1098 amount=-2 -kerning first=239 second=8212 amount=-2 -kerning first=1186 second=339 amount=-1 -kerning first=962 second=353 amount=-1 -kerning first=965 second=113 amount=-1 -kerning first=119 second=8249 amount=-1 -kerning first=161 second=85 amount=-2 -kerning first=40 second=335 amount=-1 -kerning first=43 second=97 amount=-1 -kerning first=63 second=259 amount=-1 -kerning first=315 second=8216 amount=-3 -kerning first=8365 second=943 amount=-1 -kerning first=8370 second=252 amount=-1 -kerning first=901 second=224 amount=-1 -kerning first=86 second=196 amount=-6 -kerning first=1103 second=1118 amount=-1 -kerning first=934 second=1184 amount=-5 -kerning first=947 second=279 amount=-1 -kerning first=249 second=248 amount=-1 -kerning first=372 second=171 amount=-2 -kerning first=41 second=966 amount=-1 -kerning first=1048 second=225 amount=-1 -kerning first=187 second=197 amount=-3 -kerning first=302 second=87 amount=-5 -kerning first=1080 second=367 amount=-1 -kerning first=1076 second=1185 amount=-2 -kerning first=207 second=337 amount=-1 -kerning first=327 second=249 amount=-1 +kerning first=81 second=1051 amount=-1 +kerning first=81 second=1058 amount=-2 +kerning first=81 second=1061 amount=-3 +kerning first=81 second=1066 amount=-2 +kerning first=81 second=1071 amount=-1 +kerning first=81 second=1174 amount=-3 +kerning first=81 second=1184 amount=-2 +kerning first=81 second=1198 amount=-3 +kerning first=81 second=1202 amount=-3 +kerning first=81 second=1298 amount=-1 +kerning first=81 second=8218 amount=-1 +kerning first=81 second=8222 amount=-1 +kerning first=81 second=8230 amount=-1 +kerning first=82 second=45 amount=-1 +kerning first=82 second=86 amount=-1 +kerning first=82 second=87 amount=-1 +kerning first=82 second=89 amount=-2 +kerning first=82 second=106 amount=2 +kerning first=82 second=171 amount=-1 +kerning first=82 second=173 amount=-1 +kerning first=82 second=221 amount=-2 +kerning first=82 second=372 amount=-1 +kerning first=82 second=374 amount=-2 +kerning first=82 second=376 amount=-2 +kerning first=82 second=933 amount=-2 +kerning first=82 second=939 amount=-2 +kerning first=82 second=1112 amount=2 +kerning first=82 second=1198 amount=-2 +kerning first=82 second=8211 amount=-1 +kerning first=82 second=8212 amount=-1 +kerning first=82 second=8249 amount=-1 +kerning first=83 second=65 amount=-1 +kerning first=83 second=84 amount=-1 +kerning first=83 second=86 amount=-2 +kerning first=83 second=87 amount=-2 +kerning first=83 second=88 amount=-1 +kerning first=83 second=89 amount=-2 +kerning first=83 second=106 amount=1 +kerning first=83 second=118 amount=-1 +kerning first=83 second=119 amount=-1 +kerning first=83 second=120 amount=-1 +kerning first=83 second=193 amount=-1 +kerning first=83 second=194 amount=-1 +kerning first=83 second=196 amount=-1 +kerning first=83 second=197 amount=-1 +kerning first=83 second=198 amount=-1 +kerning first=83 second=221 amount=-2 +kerning first=83 second=256 amount=-1 +kerning first=83 second=258 amount=-1 +kerning first=83 second=260 amount=-1 +kerning first=83 second=354 amount=-1 +kerning first=83 second=356 amount=-1 +kerning first=83 second=372 amount=-2 +kerning first=83 second=373 amount=-1 +kerning first=83 second=374 amount=-2 +kerning first=83 second=376 amount=-2 +kerning first=83 second=913 amount=-1 +kerning first=83 second=916 amount=-1 +kerning first=83 second=923 amount=-1 +kerning first=83 second=932 amount=-1 +kerning first=83 second=933 amount=-2 +kerning first=83 second=935 amount=-1 +kerning first=83 second=939 amount=-2 +kerning first=83 second=947 amount=-1 +kerning first=83 second=957 amount=-1 +kerning first=83 second=1026 amount=-1 +kerning first=83 second=1035 amount=-1 +kerning first=83 second=1040 amount=-1 +kerning first=83 second=1046 amount=-1 +kerning first=83 second=1058 amount=-1 +kerning first=83 second=1061 amount=-1 +kerning first=83 second=1066 amount=-1 +kerning first=83 second=1078 amount=-1 +kerning first=83 second=1093 amount=-1 +kerning first=83 second=1112 amount=1 +kerning first=83 second=1174 amount=-1 +kerning first=83 second=1175 amount=-1 +kerning first=83 second=1184 amount=-1 +kerning first=83 second=1198 amount=-2 +kerning first=83 second=1199 amount=-1 +kerning first=83 second=1202 amount=-1 +kerning first=83 second=1203 amount=-1 +kerning first=84 second=44 amount=-3 +kerning first=84 second=45 amount=-4 +kerning first=84 second=46 amount=-3 +kerning first=84 second=47 amount=-4 +kerning first=84 second=110 amount=-2 +kerning first=84 second=65 amount=-6 +kerning first=84 second=67 amount=-1 +kerning first=84 second=114 amount=-2 +kerning first=84 second=71 amount=-1 +kerning first=84 second=74 amount=-5 +kerning first=84 second=79 amount=-1 +kerning first=84 second=81 amount=-1 +kerning first=84 second=83 amount=-1 +kerning first=84 second=97 amount=-2 +kerning first=84 second=99 amount=-3 +kerning first=84 second=100 amount=-3 +kerning first=84 second=101 amount=-3 +kerning first=84 second=103 amount=-2 +kerning first=84 second=109 amount=-2 +kerning first=84 second=111 amount=-3 +kerning first=84 second=112 amount=-2 +kerning first=84 second=113 amount=-3 +kerning first=84 second=115 amount=-3 +kerning first=84 second=117 amount=-2 +kerning first=84 second=118 amount=-2 +kerning first=84 second=119 amount=-2 +kerning first=84 second=120 amount=-1 +kerning first=84 second=121 amount=-2 +kerning first=84 second=122 amount=-1 +kerning first=84 second=171 amount=-3 +kerning first=84 second=173 amount=-4 +kerning first=84 second=187 amount=-1 +kerning first=84 second=193 amount=-6 +kerning first=84 second=194 amount=-6 +kerning first=84 second=196 amount=-6 +kerning first=84 second=197 amount=-6 +kerning first=84 second=198 amount=-6 +kerning first=84 second=199 amount=-1 +kerning first=84 second=210 amount=-1 +kerning first=84 second=211 amount=-1 +kerning first=84 second=212 amount=-1 +kerning first=84 second=213 amount=-1 +kerning first=84 second=214 amount=-1 +kerning first=84 second=216 amount=-1 +kerning first=84 second=224 amount=-2 +kerning first=84 second=225 amount=-2 +kerning first=84 second=226 amount=-2 +kerning first=84 second=227 amount=-2 +kerning first=84 second=228 amount=-2 +kerning first=84 second=229 amount=-2 +kerning first=84 second=230 amount=-2 +kerning first=84 second=231 amount=-3 +kerning first=84 second=232 amount=-3 +kerning first=84 second=233 amount=-3 +kerning first=84 second=234 amount=-3 +kerning first=84 second=235 amount=-3 +kerning first=84 second=240 amount=-3 +kerning first=84 second=241 amount=-2 +kerning first=84 second=242 amount=-3 +kerning first=84 second=243 amount=-3 +kerning first=84 second=244 amount=-3 +kerning first=84 second=245 amount=-3 +kerning first=84 second=246 amount=-3 +kerning first=84 second=248 amount=-3 +kerning first=84 second=249 amount=-2 +kerning first=84 second=250 amount=-2 +kerning first=84 second=251 amount=-2 +kerning first=84 second=252 amount=-2 +kerning first=84 second=253 amount=-2 +kerning first=84 second=256 amount=-6 +kerning first=84 second=257 amount=-2 +kerning first=84 second=258 amount=-6 +kerning first=84 second=259 amount=-2 +kerning first=84 second=260 amount=-6 +kerning first=84 second=261 amount=-2 +kerning first=84 second=262 amount=-1 +kerning first=84 second=263 amount=-3 +kerning first=84 second=266 amount=-1 +kerning first=84 second=267 amount=-3 +kerning first=84 second=268 amount=-1 +kerning first=84 second=269 amount=-3 +kerning first=84 second=271 amount=-3 +kerning first=84 second=273 amount=-3 +kerning first=84 second=275 amount=-3 +kerning first=84 second=277 amount=-3 +kerning first=84 second=279 amount=-3 +kerning first=84 second=281 amount=-3 +kerning first=84 second=283 amount=-3 +kerning first=84 second=286 amount=-1 +kerning first=84 second=287 amount=-2 +kerning first=84 second=288 amount=-1 +kerning first=84 second=289 amount=-2 +kerning first=84 second=290 amount=-1 +kerning first=84 second=291 amount=-2 +kerning first=84 second=324 amount=-2 +kerning first=84 second=326 amount=-2 +kerning first=84 second=328 amount=-2 +kerning first=84 second=331 amount=-2 +kerning first=84 second=332 amount=-1 +kerning first=84 second=333 amount=-3 +kerning first=84 second=334 amount=-1 +kerning first=84 second=335 amount=-3 +kerning first=84 second=336 amount=-1 +kerning first=84 second=337 amount=-3 +kerning first=84 second=338 amount=-1 +kerning first=84 second=339 amount=-3 +kerning first=84 second=341 amount=-2 +kerning first=84 second=343 amount=-2 +kerning first=84 second=345 amount=-2 +kerning first=84 second=346 amount=-1 +kerning first=84 second=347 amount=-3 +kerning first=84 second=350 amount=-1 +kerning first=84 second=351 amount=-3 +kerning first=84 second=352 amount=-1 +kerning first=84 second=353 amount=-3 +kerning first=84 second=361 amount=-2 +kerning first=84 second=363 amount=-2 +kerning first=84 second=365 amount=-2 +kerning first=84 second=367 amount=-2 +kerning first=84 second=369 amount=-2 +kerning first=84 second=371 amount=-2 +kerning first=84 second=373 amount=-2 +kerning first=84 second=375 amount=-2 +kerning first=84 second=378 amount=-1 +kerning first=84 second=380 amount=-1 +kerning first=84 second=382 amount=-1 +kerning first=84 second=913 amount=-6 +kerning first=84 second=916 amount=-6 +kerning first=84 second=920 amount=-1 +kerning first=84 second=923 amount=-6 +kerning first=84 second=927 amount=-1 +kerning first=84 second=940 amount=-3 +kerning first=84 second=941 amount=-3 +kerning first=84 second=942 amount=-2 +kerning first=84 second=945 amount=-3 +kerning first=84 second=947 amount=-2 +kerning first=84 second=949 amount=-3 +kerning first=84 second=951 amount=-2 +kerning first=84 second=954 amount=-2 +kerning first=84 second=957 amount=-2 +kerning first=84 second=959 amount=-3 +kerning first=84 second=962 amount=-3 +kerning first=84 second=963 amount=-3 +kerning first=84 second=965 amount=-2 +kerning first=84 second=966 amount=-3 +kerning first=84 second=968 amount=-2 +kerning first=84 second=972 amount=-3 +kerning first=84 second=973 amount=-2 +kerning first=84 second=1028 amount=-1 +kerning first=84 second=1029 amount=-1 +kerning first=84 second=1032 amount=-5 +kerning first=84 second=1033 amount=-4 +kerning first=84 second=1040 amount=-6 +kerning first=84 second=1044 amount=-4 +kerning first=84 second=1051 amount=-4 +kerning first=84 second=1054 amount=-1 +kerning first=84 second=1057 amount=-1 +kerning first=84 second=1072 amount=-2 +kerning first=84 second=1074 amount=-2 +kerning first=84 second=1075 amount=-2 +kerning first=84 second=1077 amount=-3 +kerning first=84 second=1078 amount=-1 +kerning first=84 second=1079 amount=-2 +kerning first=84 second=1080 amount=-2 +kerning first=84 second=1081 amount=-2 +kerning first=84 second=1082 amount=-2 +kerning first=84 second=1084 amount=-2 +kerning first=84 second=1085 amount=-2 +kerning first=84 second=1086 amount=-3 +kerning first=84 second=1087 amount=-2 +kerning first=84 second=1088 amount=-2 +kerning first=84 second=1089 amount=-3 +kerning first=84 second=1091 amount=-2 +kerning first=84 second=1092 amount=-3 +kerning first=84 second=1093 amount=-1 +kerning first=84 second=1094 amount=-2 +kerning first=84 second=1096 amount=-2 +kerning first=84 second=1097 amount=-2 +kerning first=84 second=1099 amount=-2 +kerning first=84 second=1100 amount=-2 +kerning first=84 second=1101 amount=-2 +kerning first=84 second=1102 amount=-2 +kerning first=84 second=1104 amount=-3 +kerning first=84 second=1105 amount=-3 +kerning first=84 second=1107 amount=-2 +kerning first=84 second=1108 amount=-3 +kerning first=84 second=1109 amount=-3 kerning first=84 second=1114 amount=-2 -kerning first=87 second=351 amount=-2 -kerning first=90 second=111 amount=-1 -kerning first=166 second=210 amount=-2 -kerning first=276 second=338 amount=-2 -kerning first=8216 second=281 amount=-1 -kerning first=188 second=352 amount=-1 -kerning first=303 second=262 amount=-2 -kerning first=903 second=1079 amount=-1 -kerning first=911 second=89 amount=-2 -kerning first=91 second=291 amount=-1 -kerning first=357 second=101 amount=-1 -kerning first=354 second=339 amount=-3 -kerning first=254 second=353 amount=-1 -kerning first=374 second=955 amount=-2 -kerning first=377 second=263 amount=-1 -kerning first=167 second=365 amount=-1 -kerning first=8221 second=228 amount=-1 -kerning first=75 second=74 amount=-1 -kerning first=1095 second=252 amount=-1 -kerning first=215 second=224 amount=-1 -kerning first=1087 second=943 amount=-1 -kerning first=330 second=1118 amount=-1 -kerning first=912 second=266 amount=-2 -kerning first=358 second=279 amount=-1 -kerning first=118 second=171 amount=-1 -kerning first=261 second=63 amount=-2 -kerning first=381 second=213 amount=-1 -kerning first=165 second=8217 amount=-3 -kerning first=56 second=87 amount=-5 -kerning first=1067 second=267 amount=-1 -kerning first=305 second=1185 amount=-3 -kerning first=310 second=367 amount=-1 -kerning first=73 second=940 amount=-1 -kerning first=76 second=249 amount=-1 -kerning first=216 second=379 amount=-1 -kerning first=923 second=214 amount=-2 -kerning first=1171 second=1101 amount=-1 -kerning first=233 second=8218 amount=-1 -kerning first=958 second=116 amount=-1 -kerning first=1263 second=268 amount=-2 -kerning first=37 second=100 amount=-1 -kerning first=176 second=250 amount=-1 -kerning first=172 second=941 amount=-1 -kerning first=1027 second=972 amount=-1 -kerning first=57 second=262 amount=-2 -kerning first=197 second=1241 amount=-1 -kerning first=200 second=187 amount=-1 -kerning first=306 second=8220 amount=-3 -kerning first=80 second=199 amount=-2 -kerning first=1103 second=117 amount=-1 -kerning first=223 second=89 amount=-5 -kerning first=926 second=369 amount=-1 -kerning first=100 second=339 amount=-1 -kerning first=103 second=101 amount=-1 -kerning first=97 second=1098 amount=-1 -kerning first=123 second=263 amount=-1 -kerning first=8240 second=962 amount=-1 -kerning first=61 second=212 amount=-2 -kerning first=1073 second=370 amount=-2 -kerning first=321 second=252 amount=-1 -kerning first=316 second=943 amount=-1 -kerning first=78 second=1118 amount=-1 -kerning first=81 second=354 amount=-2 -kerning first=84 second=114 amount=-2 -kerning first=227 second=39 amount=-1 -kerning first=920 second=8222 amount=-1 -kerning first=160 second=213 amount=-2 -kerning first=1299 second=1195 amount=-1 -kerning first=273 second=103 amount=-1 -kerning first=42 second=225 amount=-1 -kerning first=1036 second=1257 amount=-2 -kerning first=182 second=355 amount=-1 -kerning first=185 second=115 amount=-1 -kerning first=297 second=267 amount=-1 -kerning first=59 second=1185 amount=-3 -kerning first=62 second=367 amount=-1 -kerning first=8369 second=360 amount=-2 -kerning first=108 second=226 amount=-1 -kerning first=1186 second=1262 amount=-1 -kerning first=251 second=116 amount=-1 -kerning first=371 second=268 amount=-2 -kerning first=161 second=368 amount=-2 -kerning first=274 second=281 amount=-1 -kerning first=60 second=8220 amount=-3 -kerning first=209 second=227 amount=-1 -kerning first=330 second=117 amount=-1 -kerning first=904 second=269 amount=-1 -kerning first=1206 second=332 amount=-1 -kerning first=375 second=216 amount=-2 -kerning first=162 second=1066 amount=-5 -kerning first=126 second=8221 amount=-3 -kerning first=278 second=228 amount=-1 -kerning first=1048 second=962 amount=-1 -kerning first=190 second=240 amount=-1 -kerning first=187 second=916 amount=-3 -kerning first=299 second=1194 amount=-2 -kerning first=302 second=370 amount=-2 -kerning first=70 second=252 amount=-1 -kerning first=207 second=1256 amount=-2 -kerning first=236 second=79 amount=-2 -kerning first=356 second=229 amount=-2 -kerning first=948 second=359 amount=-1 -kerning first=951 second=119 amount=-4 -kerning first=113 second=328 amount=2 -kerning first=1220 second=271 amount=-1 -kerning first=1256 second=44 amount=-1 -kerning first=253 second=920 amount=-2 -kerning first=1207 second=963 amount=-1 -kerning first=373 second=1195 amount=-1 -kerning first=376 second=371 amount=-2 -kerning first=973 second=286 amount=-2 -kerning first=169 second=253 amount=-1 -kerning first=276 second=1257 amount=-1 -kerning first=51 second=267 amount=-1 -kerning first=1065 second=218 amount=-1 -kerning first=332 second=923 amount=-2 -kerning first=906 second=947 amount=-4 -kerning first=91 second=1101 amount=-1 -kerning first=357 second=1240 amount=-2 -kerning first=117 second=268 amount=-2 -kerning first=1066 second=373 amount=-1 -kerning first=78 second=117 amount=-1 -kerning first=75 second=357 amount=-1 -kerning first=95 second=973 amount=-1 -kerning first=1178 second=232 amount=-1 -kerning first=361 second=332 amount=-2 -kerning first=956 second=244 amount=-1 -kerning first=121 second=216 amount=-2 -kerning first=266 second=106 amount=1 -kerning first=1240 second=256 amount=-2 -kerning first=36 second=228 amount=-1 -kerning first=178 second=118 amount=-4 -kerning first=8249 second=221 amount=-2 -kerning first=53 second=1194 amount=-2 -kerning first=56 second=370 amount=-2 -kerning first=1074 second=83 amount=-1 -kerning first=8361 second=363 amount=-1 -kerning first=923 second=949 amount=-1 -kerning first=931 second=257 amount=-1 -kerning first=102 second=229 amount=-1 -kerning first=245 second=119 amount=-1 -kerning first=365 second=271 amount=-1 -kerning first=368 second=44 amount=-1 -kerning first=119 second=1195 amount=-1 -kerning first=262 second=1026 amount=-1 -kerning first=34 second=1257 amount=-1 -kerning first=1034 second=1090 amount=-2 -kerning first=1037 second=334 amount=-2 -kerning first=8250 second=376 amount=-3 -kerning first=203 second=230 amount=-1 -kerning first=318 second=360 amount=-2 -kerning first=901 second=45 amount=-2 -kerning first=80 second=923 amount=-4 -kerning first=223 second=372 amount=-5 -kerning first=100 second=1262 amount=-2 -kerning first=103 second=1240 amount=-2 -kerning first=1187 second=335 amount=-1 -kerning first=947 second=97 amount=-1 -kerning first=369 second=219 amount=-2 -kerning first=960 second=1108 amount=-1 -kerning first=963 second=347 amount=-1 -kerning first=123 second=1069 amount=-1 -kerning first=162 second=81 amount=-2 -kerning first=271 second=231 amount=-1 -kerning first=184 second=243 amount=-1 -kerning first=296 second=373 amount=-4 -kerning first=8240 second=8250 amount=-1 -kerning first=201 second=1263 amount=-1 -kerning first=8372 second=248 amount=-1 -kerning first=902 second=220 amount=-2 -kerning first=936 second=1176 amount=-1 -kerning first=1202 second=275 amount=-1 -kerning first=250 second=244 amount=-1 -kerning first=967 second=289 amount=-1 -kerning first=42 second=962 amount=-1 -kerning first=8216 second=99 amount=-1 -kerning first=1049 second=221 amount=-5 -kerning first=303 second=83 amount=-1 -kerning first=1081 second=363 amount=-1 -kerning first=903 second=375 amount=-1 -kerning first=1118 second=290 amount=-2 -kerning first=108 second=963 amount=-1 -kerning first=114 second=44 amount=-3 -kerning first=971 second=234 amount=-1 -kerning first=274 second=1090 amount=-3 -kerning first=8217 second=277 amount=-1 -kerning first=49 second=218 amount=-2 -kerning first=1051 second=376 amount=-5 -kerning first=189 second=346 amount=-1 -kerning first=66 second=1174 amount=-2 -kerning first=69 second=360 amount=-2 -kerning first=1083 second=1059 amount=-2 -kerning first=215 second=45 amount=-2 -kerning first=209 second=964 amount=-3 -kerning first=901 second=8249 amount=-3 -kerning first=912 second=85 amount=-2 -kerning first=92 second=287 amount=-1 -kerning first=1170 second=235 amount=-1 -kerning first=358 second=97 amount=-1 -kerning first=252 second=1108 amount=-1 -kerning first=255 second=347 amount=-1 -kerning first=168 second=361 amount=-1 -kerning first=278 second=965 amount=-1 -kerning first=50 second=373 amount=-4 -kerning first=1048 second=8250 amount=-1 -kerning first=190 second=1028 amount=-2 -kerning first=193 second=288 amount=-2 -kerning first=1096 second=248 amount=-1 -kerning first=910 second=952 amount=-2 -kerning first=96 second=232 amount=-1 -kerning first=236 second=362 amount=-2 -kerning first=356 second=966 amount=-3 -kerning first=1263 second=87 amount=-5 -kerning first=1027 second=337 amount=-1 -kerning first=176 second=71 amount=-2 -kerning first=287 second=221 amount=-5 -kerning first=48 second=8230 amount=-1 -kerning first=57 second=83 amount=-1 -kerning first=197 second=233 amount=-1 -kerning first=306 second=1177 amount=-1 -kerning first=77 second=245 amount=-1 -kerning first=338 second=290 amount=-2 -kerning first=926 second=210 amount=-2 -kerning first=1184 second=100 amount=-2 -kerning first=955 second=352 amount=-1 -kerning first=123 second=84 amount=-5 -kerning first=1298 second=262 amount=-2 -kerning first=35 second=334 amount=-2 -kerning first=1035 second=277 amount=-1 -kerning first=177 second=246 amount=-1 -kerning first=288 second=376 amount=-2 -kerning first=8225 second=1079 amount=-1 -kerning first=8260 second=89 amount=-5 -kerning first=1073 second=211 amount=-2 -kerning first=313 second=1059 amount=-1 -kerning first=8363 second=251 amount=-1 -kerning first=215 second=8249 amount=-3 -kerning first=928 second=365 amount=-1 -kerning first=124 second=259 amount=-1 -kerning first=160 second=34 amount=-3 -kerning first=36 second=965 amount=-1 -kerning first=1039 second=224 amount=-1 -kerning first=1070 second=1184 amount=-2 -kerning first=1074 second=366 amount=-2 -kerning first=202 second=336 amount=-2 -kerning first=322 second=248 amount=-1 -kerning first=900 second=171 amount=-3 -kerning first=923 second=8217 amount=-3 -kerning first=105 second=275 amount=-1 -kerning first=102 second=966 amount=-1 -kerning first=371 second=87 amount=-5 -kerning first=274 second=99 amount=-1 -kerning first=43 second=221 amount=-5 -kerning first=186 second=111 amount=-1 -kerning first=183 second=351 amount=-1 -kerning first=298 second=261 amount=-1 -kerning first=63 second=363 amount=-1 -kerning first=60 second=1177 amount=-1 -kerning first=8370 second=356 amount=-5 -kerning first=8377 second=116 amount=-1 +kerning first=84 second=1116 amount=-2 +kerning first=84 second=1117 amount=-2 +kerning first=84 second=1118 amount=-2 +kerning first=84 second=1119 amount=-2 +kerning first=84 second=1169 amount=-2 +kerning first=84 second=1175 amount=-1 +kerning first=84 second=1177 amount=-2 +kerning first=84 second=1179 amount=-2 +kerning first=84 second=1187 amount=-2 +kerning first=84 second=1194 amount=-1 +kerning first=84 second=1195 amount=-3 +kerning first=84 second=1199 amount=-2 +kerning first=84 second=1203 amount=-1 +kerning first=84 second=1220 amount=-2 +kerning first=84 second=1224 amount=-2 +kerning first=84 second=1240 amount=-1 +kerning first=84 second=1241 amount=-3 +kerning first=84 second=1256 amount=-1 +kerning first=84 second=1257 amount=-3 +kerning first=84 second=1263 amount=-2 +kerning first=84 second=1298 amount=-4 +kerning first=84 second=8211 amount=-4 +kerning first=84 second=8212 amount=-4 +kerning first=84 second=8218 amount=-3 +kerning first=84 second=8222 amount=-3 +kerning first=84 second=8230 amount=-3 +kerning first=84 second=8249 amount=-3 +kerning first=84 second=8250 amount=-1 +kerning first=85 second=44 amount=-1 +kerning first=85 second=46 amount=-1 +kerning first=85 second=65 amount=-2 +kerning first=85 second=193 amount=-2 +kerning first=85 second=194 amount=-2 +kerning first=85 second=196 amount=-2 +kerning first=85 second=197 amount=-2 +kerning first=85 second=198 amount=-2 +kerning first=85 second=256 amount=-2 +kerning first=85 second=258 amount=-2 +kerning first=85 second=260 amount=-2 +kerning first=85 second=913 amount=-2 +kerning first=85 second=916 amount=-2 +kerning first=85 second=923 amount=-2 +kerning first=85 second=1033 amount=-1 +kerning first=85 second=1040 amount=-2 +kerning first=85 second=1044 amount=-1 +kerning first=85 second=1051 amount=-1 +kerning first=85 second=1298 amount=-1 +kerning first=85 second=8218 amount=-1 +kerning first=85 second=8222 amount=-1 +kerning first=85 second=8230 amount=-1 +kerning first=86 second=38 amount=-1 +kerning first=86 second=44 amount=-4 +kerning first=86 second=45 amount=-2 +kerning first=86 second=46 amount=-4 +kerning first=86 second=47 amount=-4 +kerning first=86 second=110 amount=-2 +kerning first=86 second=63 amount=-1 +kerning first=86 second=65 amount=-6 +kerning first=86 second=67 amount=-2 +kerning first=86 second=114 amount=-2 +kerning first=86 second=71 amount=-2 +kerning first=86 second=74 amount=-4 +kerning first=86 second=79 amount=-2 +kerning first=86 second=81 amount=-2 +kerning first=86 second=83 amount=-1 +kerning first=86 second=97 amount=-3 +kerning first=86 second=99 amount=-3 +kerning first=86 second=100 amount=-3 +kerning first=86 second=101 amount=-3 +kerning first=86 second=102 amount=-1 +kerning first=86 second=103 amount=-3 +kerning first=86 second=109 amount=-2 +kerning first=86 second=111 amount=-3 +kerning first=86 second=112 amount=-2 +kerning first=86 second=113 amount=-3 +kerning first=86 second=115 amount=-3 +kerning first=86 second=117 amount=-2 +kerning first=86 second=118 amount=-1 +kerning first=86 second=119 amount=-1 +kerning first=86 second=120 amount=-2 +kerning first=86 second=121 amount=-2 +kerning first=86 second=122 amount=-2 +kerning first=86 second=171 amount=-3 +kerning first=86 second=173 amount=-2 +kerning first=86 second=187 amount=-2 +kerning first=86 second=193 amount=-6 +kerning first=86 second=194 amount=-6 +kerning first=86 second=196 amount=-6 +kerning first=86 second=197 amount=-6 +kerning first=86 second=198 amount=-6 +kerning first=86 second=199 amount=-2 +kerning first=86 second=210 amount=-2 +kerning first=86 second=211 amount=-2 +kerning first=86 second=212 amount=-2 +kerning first=86 second=213 amount=-2 +kerning first=86 second=214 amount=-2 +kerning first=86 second=216 amount=-2 +kerning first=86 second=224 amount=-3 +kerning first=86 second=225 amount=-3 +kerning first=86 second=226 amount=-3 +kerning first=86 second=227 amount=-3 +kerning first=86 second=228 amount=-3 +kerning first=86 second=229 amount=-3 +kerning first=86 second=230 amount=-3 +kerning first=86 second=231 amount=-3 +kerning first=86 second=232 amount=-3 +kerning first=86 second=233 amount=-3 +kerning first=86 second=234 amount=-3 +kerning first=86 second=235 amount=-3 +kerning first=86 second=240 amount=-3 +kerning first=86 second=241 amount=-2 +kerning first=86 second=242 amount=-3 +kerning first=86 second=243 amount=-3 +kerning first=86 second=244 amount=-3 +kerning first=86 second=245 amount=-3 +kerning first=86 second=246 amount=-3 +kerning first=86 second=248 amount=-3 +kerning first=86 second=249 amount=-2 +kerning first=86 second=250 amount=-2 +kerning first=86 second=251 amount=-2 +kerning first=86 second=252 amount=-2 +kerning first=86 second=253 amount=-2 +kerning first=86 second=256 amount=-6 +kerning first=86 second=257 amount=-3 +kerning first=86 second=258 amount=-6 +kerning first=86 second=259 amount=-3 +kerning first=86 second=260 amount=-6 +kerning first=86 second=261 amount=-3 +kerning first=86 second=262 amount=-2 +kerning first=86 second=263 amount=-3 +kerning first=86 second=266 amount=-2 +kerning first=86 second=267 amount=-3 +kerning first=86 second=268 amount=-2 +kerning first=86 second=269 amount=-3 +kerning first=86 second=271 amount=-3 +kerning first=86 second=273 amount=-3 +kerning first=86 second=275 amount=-3 +kerning first=86 second=277 amount=-3 +kerning first=86 second=279 amount=-3 +kerning first=86 second=281 amount=-3 +kerning first=86 second=283 amount=-3 +kerning first=86 second=286 amount=-2 +kerning first=86 second=287 amount=-3 +kerning first=86 second=288 amount=-2 +kerning first=86 second=289 amount=-3 kerning first=86 second=290 amount=-2 -kerning first=249 second=352 amount=-1 -kerning first=372 second=262 amount=-2 -kerning first=162 second=364 amount=-2 -kerning first=271 second=968 amount=-1 -kerning first=44 second=376 amount=-4 -kerning first=184 second=1035 amount=-5 -kerning first=302 second=211 amount=-2 -kerning first=61 second=8212 amount=-2 -kerning first=64 second=1059 amount=-2 -kerning first=1084 second=251 amount=-1 -kerning first=327 second=353 amount=-1 -kerning first=905 second=263 amount=-1 -kerning first=910 second=38 amount=-2 -kerning first=90 second=235 amount=-1 -kerning first=376 second=212 amount=-3 -kerning first=160 second=8216 amount=-3 -kerning first=42 second=8250 amount=-1 -kerning first=1062 second=266 amount=-1 -kerning first=1065 second=39 amount=-2 -kerning first=300 second=1184 amount=-5 -kerning first=303 second=366 amount=-2 -kerning first=214 second=171 amount=-3 -kerning first=335 second=63 amount=-2 -kerning first=228 second=8217 amount=-1 -kerning first=357 second=225 amount=-1 -kerning first=952 second=115 amount=-1 -kerning first=111 second=1076 amount=-1 -kerning first=117 second=87 amount=-5 -kerning first=1223 second=267 amount=-1 -kerning first=374 second=1185 amount=-2 -kerning first=170 second=249 amount=-1 -kerning first=167 second=940 amount=-1 -kerning first=49 second=953 amount=-1 -kerning first=52 second=261 amount=-1 -kerning first=1095 second=356 amount=-5 -kerning first=912 second=368 amount=-2 -kerning first=95 second=338 amount=-2 -kerning first=1170 second=972 amount=-1 -kerning first=1175 second=281 amount=-1 -kerning first=238 second=250 amount=-1 -kerning first=258 second=1241 amount=-1 -kerning first=375 second=8220 amount=-3 -kerning first=175 second=199 amount=-2 -kerning first=289 second=89 amount=-5 -kerning first=8226 second=269 amount=-1 -kerning first=56 second=211 amount=-2 -kerning first=1067 second=369 amount=-1 -kerning first=196 second=339 amount=-1 -kerning first=193 second=1098 amount=-3 -kerning first=314 second=251 amount=-1 -kerning first=216 second=955 amount=-2 -kerning first=915 second=1066 amount=-5 -kerning first=958 second=240 amount=-1 -kerning first=1263 second=370 amount=-2 -kerning first=37 second=224 amount=-1 -kerning first=1027 second=1256 amount=-2 -kerning first=176 second=354 amount=-5 -kerning first=172 second=1118 amount=-1 -kerning first=295 second=39 amount=-1 -kerning first=54 second=1184 amount=-5 -kerning first=57 second=366 amount=-2 -kerning first=200 second=279 amount=-1 -kerning first=197 second=970 amount=-1 -kerning first=8365 second=119 amount=-4 -kerning first=223 second=213 amount=-2 -kerning first=934 second=253 amount=-1 -kerning first=103 second=225 amount=-1 -kerning first=123 second=367 amount=-1 -kerning first=177 second=1038 amount=-2 -kerning first=296 second=214 amount=-2 -kerning first=8240 second=947 amount=-4 -kerning first=8260 second=372 amount=-5 -kerning first=55 second=8218 amount=-4 -kerning first=1073 second=945 amount=-1 -kerning first=204 second=226 amount=-1 -kerning first=321 second=356 amount=-5 -kerning first=345 second=281 amount=-1 -kerning first=121 second=8220 amount=-3 -kerning first=273 second=227 amount=-1 -kerning first=1046 second=269 amount=-2 -kerning first=45 second=89 amount=-4 -kerning first=297 second=369 amount=-1 -kerning first=65 second=251 amount=-1 -kerning first=903 second=216 amount=-2 -kerning first=1118 second=106 amount=1 -kerning first=945 second=118 amount=-2 -kerning first=251 second=240 amount=-1 -kerning first=371 second=370 amount=-2 -kerning first=968 second=283 amount=-1 -kerning first=161 second=943 amount=-1 -kerning first=164 second=252 amount=-1 -kerning first=49 second=39 amount=-3 -kerning first=46 second=266 amount=-1 -kerning first=1051 second=217 amount=-2 -kerning first=304 second=79 amount=-2 -kerning first=1083 second=359 amount=-1 -kerning first=1087 second=119 amount=-4 -kerning first=901 second=1195 amount=-1 -kerning first=904 second=371 amount=-1 +kerning first=86 second=291 amount=-3 +kerning first=86 second=324 amount=-2 +kerning first=86 second=326 amount=-2 +kerning first=86 second=328 amount=-2 +kerning first=86 second=331 amount=-2 +kerning first=86 second=332 amount=-2 +kerning first=86 second=333 amount=-3 +kerning first=86 second=334 amount=-2 +kerning first=86 second=335 amount=-3 +kerning first=86 second=336 amount=-2 +kerning first=86 second=337 amount=-3 +kerning first=86 second=338 amount=-2 +kerning first=86 second=339 amount=-3 +kerning first=86 second=341 amount=-2 +kerning first=86 second=343 amount=-2 +kerning first=86 second=345 amount=-2 +kerning first=86 second=346 amount=-1 +kerning first=86 second=347 amount=-3 +kerning first=86 second=350 amount=-1 +kerning first=86 second=351 amount=-3 +kerning first=86 second=352 amount=-1 +kerning first=86 second=353 amount=-3 +kerning first=86 second=361 amount=-2 +kerning first=86 second=363 amount=-2 +kerning first=86 second=365 amount=-2 +kerning first=86 second=367 amount=-2 +kerning first=86 second=369 amount=-2 +kerning first=86 second=371 amount=-2 +kerning first=86 second=373 amount=-1 +kerning first=86 second=375 amount=-2 +kerning first=86 second=378 amount=-2 +kerning first=86 second=380 amount=-2 +kerning first=86 second=382 amount=-2 +kerning first=86 second=913 amount=-6 +kerning first=86 second=916 amount=-6 +kerning first=86 second=920 amount=-2 +kerning first=86 second=923 amount=-6 +kerning first=86 second=927 amount=-2 +kerning first=86 second=940 amount=-3 +kerning first=86 second=941 amount=-3 +kerning first=86 second=942 amount=-2 +kerning first=86 second=945 amount=-3 +kerning first=86 second=947 amount=-1 +kerning first=86 second=949 amount=-3 +kerning first=86 second=951 amount=-2 +kerning first=86 second=954 amount=-2 +kerning first=86 second=957 amount=-1 +kerning first=86 second=959 amount=-3 +kerning first=86 second=962 amount=-3 +kerning first=86 second=963 amount=-3 +kerning first=86 second=965 amount=-2 +kerning first=86 second=966 amount=-3 +kerning first=86 second=968 amount=-2 +kerning first=86 second=972 amount=-3 +kerning first=86 second=973 amount=-2 +kerning first=86 second=1028 amount=-2 +kerning first=86 second=1029 amount=-1 +kerning first=86 second=1032 amount=-4 +kerning first=86 second=1040 amount=-6 +kerning first=86 second=1054 amount=-2 +kerning first=86 second=1057 amount=-2 +kerning first=86 second=1072 amount=-3 +kerning first=86 second=1074 amount=-2 +kerning first=86 second=1075 amount=-2 +kerning first=86 second=1077 amount=-3 +kerning first=86 second=1078 amount=-2 +kerning first=86 second=1079 amount=-2 +kerning first=86 second=1080 amount=-2 +kerning first=86 second=1081 amount=-2 +kerning first=86 second=1082 amount=-2 +kerning first=86 second=1084 amount=-2 +kerning first=86 second=1085 amount=-2 +kerning first=86 second=1086 amount=-3 +kerning first=86 second=1087 amount=-2 +kerning first=86 second=1088 amount=-2 +kerning first=86 second=1089 amount=-3 +kerning first=86 second=1091 amount=-2 +kerning first=86 second=1092 amount=-3 +kerning first=86 second=1093 amount=-2 +kerning first=86 second=1094 amount=-2 +kerning first=86 second=1096 amount=-2 +kerning first=86 second=1097 amount=-2 +kerning first=86 second=1099 amount=-2 kerning first=86 second=1100 amount=-2 -kerning first=89 second=341 amount=-3 -kerning first=92 second=103 amount=-1 -kerning first=1119 second=286 amount=-2 -kerning first=1219 second=218 amount=-2 -kerning first=275 second=1083 amount=-1 -kerning first=8222 second=45 amount=-1 -kerning first=50 second=214 amount=-2 -kerning first=1048 second=947 amount=-4 -kerning first=302 second=945 amount=-1 -kerning first=70 second=356 amount=-5 -kerning first=73 second=116 amount=-1 -kerning first=8378 second=1108 amount=-1 -kerning first=905 second=1069 amount=-1 -kerning first=915 second=81 amount=-2 -kerning first=93 second=281 amount=-1 -kerning first=90 second=972 amount=-1 -kerning first=1171 second=231 amount=-1 -kerning first=356 second=331 amount=-2 -kerning first=951 second=243 amount=-1 -kerning first=1220 second=373 amount=-4 -kerning first=169 second=357 amount=-1 -kerning first=172 second=117 amount=-1 -kerning first=282 second=269 amount=-1 -kerning first=8224 second=220 amount=-2 -kerning first=51 second=369 amount=-1 -kerning first=191 second=973 amount=-1 -kerning first=1097 second=244 amount=-1 -kerning first=338 second=106 amount=1 -kerning first=240 second=118 amount=-4 -kerning first=357 second=962 amount=-1 -kerning first=117 second=370 amount=-2 -kerning first=1298 second=83 amount=-1 -kerning first=260 second=283 amount=-1 -kerning first=177 second=67 amount=-2 -kerning first=8225 second=375 amount=-1 -kerning first=58 second=79 amount=-2 -kerning first=198 second=229 amount=-1 -kerning first=316 second=119 amount=-4 -kerning first=75 second=920 amount=-3 -kerning first=313 second=359 amount=-1 -kerning first=215 second=1195 amount=-1 -kerning first=336 second=1026 amount=-2 -kerning first=95 second=1257 amount=-1 -kerning first=1178 second=334 amount=-1 -kerning first=1175 second=1090 amount=-2 -kerning first=956 second=346 amount=-1 -kerning first=1039 second=45 amount=-2 -kerning first=1036 second=273 amount=-2 -kerning first=178 second=242 amount=-1 -kerning first=1033 second=964 amount=-2 -kerning first=289 second=372 amount=-5 -kerning first=56 second=945 amount=-1 -kerning first=196 second=1262 amount=-2 -kerning first=1099 second=1108 amount=-1 -kerning first=343 second=231 amount=-1 -kerning first=931 second=361 amount=-1 -kerning first=365 second=373 amount=-4 -kerning first=958 second=1028 amount=-2 -kerning first=962 second=288 amount=-2 -kerning first=40 second=269 amount=-1 -kerning first=1041 second=220 amount=-2 -kerning first=1071 second=1176 amount=-1 -kerning first=203 second=332 amount=-2 -kerning first=323 second=244 amount=-1 -kerning first=86 second=106 amount=1 -kerning first=103 second=962 amount=-1 -kerning first=372 second=83 amount=-1 -kerning first=271 second=333 amount=-1 -kerning first=44 second=217 amount=-1 -kerning first=296 second=949 amount=-1 -kerning first=299 second=257 amount=-1 -kerning first=64 second=359 amount=-1 -kerning first=1073 second=8211 amount=-2 -kerning first=204 second=963 amount=-1 -kerning first=207 second=271 amount=-1 -kerning first=210 second=44 amount=-1 -kerning first=8372 second=352 amount=-1 -kerning first=905 second=84 amount=-5 -kerning first=87 second=286 amount=-2 -kerning first=1117 second=234 amount=-1 -kerning first=944 second=246 amount=-1 -kerning first=1202 second=376 amount=-2 -kerning first=250 second=346 amount=-1 -kerning first=163 second=360 amount=-2 -kerning first=273 second=964 amount=-3 -kerning first=276 second=273 amount=-1 -kerning first=42 second=947 amount=-4 -kerning first=45 second=372 amount=-2 -kerning first=1039 second=8249 amount=-3 -kerning first=1062 second=85 amount=-1 -kerning first=188 second=287 amount=-1 -kerning first=325 second=1108 amount=-1 -kerning first=906 second=259 amount=-1 -kerning first=91 second=231 amount=-1 -kerning first=111 second=373 amount=-1 -kerning first=251 second=1028 amount=-2 -kerning first=254 second=288 amount=-2 -kerning first=971 second=336 amount=-2 -kerning first=280 second=220 amount=-2 -kerning first=192 second=232 amount=-1 -kerning first=304 second=362 amount=-2 -kerning first=301 second=1176 amount=-1 -kerning first=72 second=244 amount=-1 -kerning first=212 second=374 amount=-3 -kerning first=89 second=1298 amount=-5 -kerning first=1170 second=337 amount=-1 -kerning first=1175 second=99 amount=-1 -kerning first=238 second=71 amount=-2 -kerning first=358 second=221 amount=-5 -kerning first=950 second=351 amount=-1 -kerning first=1219 second=953 amount=-1 -kerning first=1224 second=261 amount=-1 -kerning first=258 second=233 amount=-1 -kerning first=375 second=1177 amount=-1 -kerning first=972 second=967 amount=-2 -kerning first=50 second=949 amount=-1 -kerning first=53 second=257 amount=-1 -kerning first=1067 second=210 amount=-2 -kerning first=302 second=8211 amount=-2 -kerning first=1096 second=352 amount=-1 -kerning first=915 second=364 amount=-2 -kerning first=93 second=1090 amount=-3 -kerning first=96 second=334 amount=-2 -kerning first=1171 second=968 amount=-1 -kerning first=1176 second=277 amount=-1 -kerning first=239 second=246 amount=-1 -kerning first=951 second=1035 amount=-5 -kerning first=954 second=291 amount=-2 -kerning first=1263 second=211 amount=-2 -kerning first=376 second=8212 amount=-4 -kerning first=34 second=273 amount=-1 -kerning first=37 second=45 amount=-2 -kerning first=197 second=335 amount=-1 -kerning first=200 second=97 amount=-1 -kerning first=74 second=1108 amount=-1 -kerning first=77 second=347 amount=-1 -kerning first=223 second=34 amount=-3 -kerning first=1184 second=224 amount=-1 -kerning first=357 second=8250 amount=-1 -kerning first=1298 second=366 amount=-2 -kerning first=38 second=220 amount=-2 -kerning first=177 second=350 amount=-1 -kerning first=8260 second=213 amount=-2 -kerning first=55 second=1176 amount=-1 -kerning first=58 second=362 amount=-2 -kerning first=1066 second=8217 amount=-2 -kerning first=198 second=966 amount=-1 -kerning first=201 second=275 amount=-1 -kerning first=8363 second=355 amount=-1 -kerning first=8366 second=115 amount=-1 -kerning first=345 second=99 amount=-1 -kerning first=936 second=249 amount=-1 -kerning first=928 second=940 amount=-1 -kerning first=247 second=111 amount=-1 -kerning first=367 second=261 amount=-1 -kerning first=121 second=1177 amount=-1 -kerning first=124 second=363 amount=-1 -kerning first=1262 second=8218 amount=-1 -kerning first=182 second=290 amount=-2 -kerning first=297 second=210 amount=-2 -kerning first=56 second=8211 amount=-2 -kerning first=1074 second=941 amount=-1 -kerning first=322 second=352 amount=-1 -kerning first=900 second=262 amount=-2 -kerning first=1107 second=1241 amount=-1 -kerning first=942 second=199 amount=-2 -kerning first=105 second=376 amount=-5 -kerning first=371 second=211 amount=-2 -kerning first=962 second=1098 amount=-3 -kerning first=965 second=339 amount=-1 -kerning first=125 second=1059 amount=-2 -kerning first=968 second=101 amount=-1 -kerning first=37 second=8249 amount=-3 -kerning first=46 second=85 amount=-1 -kerning first=186 second=235 amount=-1 -kerning first=298 second=365 amount=-1 -kerning first=8377 second=240 amount=-1 -kerning first=904 second=212 amount=-2 -kerning first=223 second=8216 amount=-3 -kerning first=103 second=8250 amount=-1 -kerning first=1219 second=39 amount=-3 -kerning first=1206 second=266 amount=-1 -kerning first=369 second=1184 amount=-5 -kerning first=165 second=248 amount=-1 -kerning first=275 second=378 amount=-1 -kerning first=278 second=171 amount=-3 -kerning first=47 second=260 amount=-5 -kerning first=296 second=8217 amount=-3 -kerning first=70 second=197 amount=-4 -kerning first=1084 second=355 amount=-1 -kerning first=213 second=87 amount=-2 -kerning first=905 second=367 amount=-1 -kerning first=902 second=1185 amount=-3 -kerning first=87 second=1096 amount=-2 -kerning first=93 second=99 amount=-1 -kerning first=90 second=337 amount=-1 -kerning first=944 second=1038 amount=-2 -kerning first=113 second=261 amount=-1 -kerning first=1220 second=214 amount=-2 -kerning first=370 second=8218 amount=-1 -kerning first=973 second=226 amount=-1 -kerning first=51 second=210 amount=-2 -kerning first=1062 second=368 amount=-1 -kerning first=191 second=338 amount=-2 -kerning first=194 second=100 amount=-1 -kerning first=306 second=250 amount=-1 -kerning first=303 second=941 amount=-1 -kerning first=214 second=262 amount=-2 -kerning first=903 second=8220 amount=-3 -kerning first=91 second=968 amount=-1 -kerning first=94 second=277 amount=-1 -kerning first=237 second=199 amount=-2 -kerning first=354 second=1079 amount=-2 -kerning first=117 second=211 amount=-2 -kerning first=1223 second=369 amount=-1 -kerning first=254 second=1098 amount=-3 -kerning first=260 second=101 amount=-1 -kerning first=174 second=113 amount=-1 -kerning first=170 second=353 amount=-1 -kerning first=8225 second=216 amount=-2 -kerning first=52 second=365 amount=-1 -kerning first=1051 second=8221 amount=-3 -kerning first=1063 second=1066 amount=-5 -kerning first=339 second=102 amount=-1 -kerning first=912 second=943 amount=-1 -kerning first=1170 second=1256 amount=-2 -kerning first=238 second=354 amount=-5 -kerning first=361 second=266 amount=-2 -kerning first=1299 second=79 amount=-2 -kerning first=258 second=970 amount=-1 -kerning first=36 second=171 amount=-3 -kerning first=289 second=213 amount=-2 -kerning first=8226 second=371 amount=-1 -kerning first=50 second=8217 amount=-3 -kerning first=317 second=115 amount=-1 -kerning first=314 second=355 amount=-1 -kerning first=239 second=1038 amount=-2 -kerning first=365 second=214 amount=-2 -kerning first=116 second=8218 amount=-1 -kerning first=1263 second=945 amount=-1 -kerning first=1037 second=268 amount=-2 -kerning first=8230 second=1069 amount=-1 -kerning first=60 second=250 amount=-1 -kerning first=57 second=941 amount=-1 -kerning first=8365 second=243 amount=-1 -kerning first=80 second=1241 amount=-1 -kerning first=934 second=357 amount=-1 -kerning first=100 second=1079 amount=-1 -kerning first=1187 second=269 amount=-1 -kerning first=960 second=973 amount=-1 -kerning first=126 second=251 amount=-1 -kerning first=268 second=381 amount=-1 -kerning first=41 second=263 amount=-1 -kerning first=1044 second=216 amount=-1 -kerning first=291 second=1066 amount=-5 -kerning first=1080 second=118 amount=-4 +kerning first=86 second=1101 amount=-2 +kerning first=86 second=1102 amount=-2 +kerning first=86 second=1104 amount=-3 +kerning first=86 second=1105 amount=-3 +kerning first=86 second=1107 amount=-2 +kerning first=86 second=1108 amount=-3 +kerning first=86 second=1109 amount=-3 +kerning first=86 second=1114 amount=-2 +kerning first=86 second=1116 amount=-2 +kerning first=86 second=1117 amount=-2 +kerning first=86 second=1118 amount=-2 +kerning first=86 second=1119 amount=-2 +kerning first=86 second=1169 amount=-2 +kerning first=86 second=1175 amount=-2 +kerning first=86 second=1177 amount=-2 +kerning first=86 second=1179 amount=-2 +kerning first=86 second=1187 amount=-2 +kerning first=86 second=1194 amount=-2 +kerning first=86 second=1195 amount=-3 +kerning first=86 second=1199 amount=-1 +kerning first=86 second=1203 amount=-2 +kerning first=86 second=1220 amount=-2 +kerning first=86 second=1224 amount=-2 +kerning first=86 second=1240 amount=-2 +kerning first=86 second=1241 amount=-3 +kerning first=86 second=1256 amount=-2 +kerning first=86 second=1257 amount=-3 +kerning first=86 second=1263 amount=-2 +kerning first=86 second=8211 amount=-2 +kerning first=86 second=8212 amount=-2 +kerning first=86 second=8218 amount=-4 +kerning first=86 second=8222 amount=-4 +kerning first=86 second=8230 amount=-4 +kerning first=86 second=8249 amount=-3 +kerning first=86 second=8250 amount=-2 +kerning first=87 second=38 amount=-1 +kerning first=87 second=44 amount=-3 +kerning first=87 second=45 amount=-2 +kerning first=87 second=46 amount=-3 +kerning first=87 second=47 amount=-3 +kerning first=87 second=110 amount=-2 +kerning first=87 second=63 amount=-1 +kerning first=87 second=65 amount=-5 +kerning first=87 second=67 amount=-2 +kerning first=87 second=114 amount=-2 +kerning first=87 second=71 amount=-2 +kerning first=87 second=74 amount=-3 +kerning first=87 second=79 amount=-2 +kerning first=87 second=81 amount=-2 +kerning first=87 second=83 amount=-1 +kerning first=87 second=97 amount=-2 +kerning first=87 second=99 amount=-3 +kerning first=87 second=100 amount=-3 +kerning first=87 second=101 amount=-3 kerning first=87 second=102 amount=-1 -kerning first=944 second=67 amount=-2 -kerning first=110 second=39 amount=-1 -kerning first=1202 second=217 amount=-1 -kerning first=364 second=8222 amount=-1 -kerning first=967 second=229 amount=-1 -kerning first=8216 second=44 amount=-1 -kerning first=1039 second=1195 amount=-1 -kerning first=1046 second=371 amount=-1 -kerning first=188 second=103 amount=-1 -kerning first=300 second=253 amount=-1 -kerning first=65 second=355 amount=-1 -kerning first=1118 second=230 amount=-1 -kerning first=1195 second=947 amount=-1 -kerning first=371 second=945 amount=-1 -kerning first=968 second=1240 amount=-2 -kerning first=965 second=1262 amount=-2 -kerning first=164 second=356 amount=-5 -kerning first=167 second=116 amount=-1 -kerning first=46 second=368 amount=-1 -kerning first=1063 second=81 amount=-2 -kerning first=186 second=972 amount=-1 -kerning first=189 second=281 amount=-1 -kerning first=1087 second=243 amount=-1 -kerning first=8377 second=1028 amount=-2 -kerning first=92 second=227 amount=-1 -kerning first=252 second=973 amount=-1 -kerning first=8212 second=1203 amount=-2 -kerning first=8218 second=374 amount=-4 -kerning first=47 second=1066 amount=-5 -kerning first=44 second=8221 amount=-1 -kerning first=193 second=228 amount=-1 -kerning first=310 second=118 amount=-3 -kerning first=70 second=916 amount=-4 -kerning first=73 second=240 amount=-1 -kerning first=90 second=1256 amount=-1 -kerning first=1171 second=333 amount=-1 -kerning first=239 second=67 amount=-2 -kerning first=1220 second=949 amount=-1 -kerning first=973 second=963 amount=-1 -kerning first=1027 second=271 amount=-1 -kerning first=169 second=920 amount=-2 -kerning first=282 second=371 amount=-1 -kerning first=8230 second=84 amount=-5 -kerning first=54 second=253 amount=-1 -kerning first=191 second=1257 amount=-1 -kerning first=338 second=230 amount=-1 -kerning first=916 second=360 amount=-2 -kerning first=1174 second=964 amount=-2 -kerning first=1184 second=45 amount=-4 -kerning first=240 second=242 amount=-1 -kerning first=357 second=947 amount=-4 -kerning first=955 second=287 amount=-1 -kerning first=117 second=945 amount=-1 -kerning first=260 second=1240 amount=-2 -kerning first=35 second=268 amount=-2 -kerning first=1035 second=219 amount=-2 -kerning first=291 second=81 amount=-2 -kerning first=8260 second=34 amount=-3 -kerning first=8240 second=259 amount=-1 -kerning first=1073 second=121 amount=-1 -kerning first=316 second=243 amount=-1 -kerning first=1299 second=362 amount=-2 -kerning first=182 second=106 amount=1 -kerning first=62 second=118 amount=-4 -kerning first=8369 second=111 amount=-1 -kerning first=8364 second=351 amount=-1 -kerning first=900 second=83 amount=-1 -kerning first=1107 second=233 amount=-1 -kerning first=343 second=333 amount=-1 -kerning first=105 second=217 amount=-2 -kerning first=365 second=949 amount=-1 -kerning first=125 second=359 amount=-1 -kerning first=1263 second=8211 amount=-2 -kerning first=161 second=119 amount=-4 -kerning first=37 second=1195 amount=-1 -kerning first=40 second=371 amount=-1 -kerning first=179 second=1026 amount=-5 -kerning first=183 second=286 amount=-2 -kerning first=1047 second=84 amount=-1 -kerning first=206 second=218 amount=-2 -kerning first=323 second=346 amount=-1 -kerning first=8365 second=1035 amount=-5 -kerning first=8370 second=291 amount=-1 -kerning first=86 second=230 amount=-3 -kerning first=103 second=947 amount=-4 -kerning first=1184 second=8249 amount=-3 -kerning first=1206 second=85 amount=-1 -kerning first=249 second=287 amount=-1 -kerning first=41 second=1069 amount=-1 -kerning first=47 second=81 amount=-1 -kerning first=1048 second=259 amount=-1 -kerning first=299 second=361 amount=-1 -kerning first=8260 second=8216 amount=-3 -kerning first=302 second=121 amount=-1 -kerning first=207 second=373 amount=-4 -kerning first=327 second=288 amount=-2 -kerning first=84 second=1263 amount=-2 -kerning first=1113 second=1095 amount=-1 -kerning first=1117 second=336 amount=-2 -kerning first=944 second=350 amount=-1 -kerning first=253 second=232 amount=-1 -kerning first=376 second=122 amount=-2 -kerning first=967 second=966 amount=-1 -kerning first=166 second=244 amount=-1 -kerning first=276 second=374 amount=-5 -kerning first=306 second=71 amount=-2 -kerning first=1085 second=351 amount=-1 -kerning first=208 second=1071 amount=-1 -kerning first=1094 second=111 amount=-1 -kerning first=214 second=83 amount=-1 -kerning first=903 second=1177 amount=-1 -kerning first=906 second=363 amount=-1 -kerning first=91 second=333 amount=-1 -kerning first=354 second=375 amount=-2 -kerning first=114 second=257 amount=-1 -kerning first=1223 second=210 amount=-2 -kerning first=371 second=8211 amount=-2 -kerning first=374 second=1051 amount=-5 -kerning first=1063 second=364 amount=-2 -kerning first=189 second=1090 amount=-3 -kerning first=192 second=334 amount=-2 -kerning first=72 second=346 amount=-1 -kerning first=1087 second=1035 amount=-5 -kerning first=1095 second=291 amount=-1 -kerning first=904 second=8212 amount=-2 -kerning first=92 second=964 amount=-3 -kerning first=95 second=273 amount=-1 -kerning first=361 second=85 amount=-2 -kerning first=1224 second=365 amount=-1 -kerning first=258 second=335 amount=-1 -kerning first=168 second=1108 amount=-1 -kerning first=289 second=34 amount=-3 -kerning first=8226 second=212 amount=-2 -kerning first=53 second=361 amount=-1 -kerning first=56 second=121 amount=-1 -kerning first=193 second=965 amount=-1 -kerning first=199 second=46 amount=-1 -kerning first=73 second=1028 amount=-2 -kerning first=76 second=288 amount=-1 -kerning first=923 second=248 amount=-1 -kerning first=239 second=350 amount=-1 -kerning first=362 second=260 amount=-2 -kerning first=1220 second=8217 amount=-3 -kerning first=1037 second=87 amount=-5 -kerning first=176 second=289 amount=-1 -kerning first=8224 second=1185 amount=-3 -kerning first=8230 second=367 amount=-1 -kerning first=60 second=71 amount=-2 -kerning first=1071 second=249 amount=-1 -kerning first=200 second=221 amount=-5 -kerning first=318 second=111 amount=-1 -kerning first=80 second=233 amount=-1 -kerning first=100 second=375 amount=-1 -kerning first=1177 second=1078 amount=-1 -kerning first=960 second=338 amount=-2 -kerning first=117 second=8211 amount=-2 -kerning first=963 second=100 amount=-1 -kerning first=1298 second=941 amount=-1 -kerning first=41 second=84 amount=-5 -kerning first=180 second=234 amount=-1 -kerning first=291 second=364 amount=-2 -kerning first=8225 second=8220 amount=-3 -kerning first=61 second=246 amount=-1 -kerning first=201 second=376 amount=-5 -kerning first=316 second=1035 amount=-5 -kerning first=321 second=291 amount=-1 -kerning first=1101 second=1098 amount=-1 -kerning first=936 second=353 amount=-1 -kerning first=247 second=235 amount=-1 -kerning first=367 second=365 amount=-1 -kerning first=42 second=259 amount=-1 -kerning first=1046 second=212 amount=-3 -kerning first=289 second=8216 amount=-3 -kerning first=1074 second=1118 amount=-1 -kerning first=208 second=86 amount=-2 -kerning first=900 second=366 amount=-2 -kerning first=365 second=8217 amount=-3 -kerning first=968 second=225 amount=-1 -kerning first=1041 second=1185 amount=-3 -kerning first=186 second=337 amount=-1 -kerning first=189 second=99 amount=-1 -kerning first=298 second=940 amount=-1 -kerning first=301 second=249 amount=-1 -kerning first=69 second=111 amount=-1 -kerning first=206 second=953 amount=-1 -kerning first=209 second=261 amount=-1 -kerning first=8370 second=1101 amount=-1 -kerning first=1119 second=226 amount=-1 -kerning first=347 second=1078 amount=-1 -kerning first=1206 second=368 amount=-1 -kerning first=252 second=338 amount=-2 -kerning first=255 second=100 amount=-1 -kerning first=375 second=250 amount=-1 -kerning first=372 second=941 amount=-3 -kerning first=165 second=352 amount=-1 -kerning first=278 second=262 amount=-2 -kerning first=47 second=364 amount=-2 -kerning first=1044 second=8220 amount=-2 -kerning first=190 second=277 amount=-1 -kerning first=305 second=199 amount=-2 -kerning first=70 second=291 amount=-1 -kerning first=67 second=1035 amount=-1 -kerning first=327 second=1098 amount=-3 -kerning first=8378 second=973 amount=-1 -kerning first=910 second=251 amount=-2 -kerning first=236 second=113 amount=-1 -kerning first=356 second=263 amount=-3 -kerning first=113 second=365 amount=-1 -kerning first=1202 second=8221 amount=-2 -kerning first=282 second=212 amount=-2 -kerning first=194 second=224 amount=-1 -kerning first=303 second=1118 amount=-1 -kerning first=306 second=354 amount=-5 -kerning first=211 second=1184 amount=-2 -kerning first=214 second=366 amount=-2 -kerning first=955 second=103 amount=-1 -kerning first=111 second=8217 amount=-1 -kerning first=260 second=225 amount=-1 -kerning first=35 second=87 amount=-5 -kerning first=280 second=1185 amount=-3 -kerning first=55 second=249 amount=-1 -kerning first=52 second=940 amount=-1 -kerning first=1095 second=1101 amount=-1 -kerning first=212 second=8218 amount=-1 -kerning first=920 second=356 amount=-2 -kerning first=928 second=116 amount=-1 -kerning first=1178 second=268 amount=-1 -kerning first=361 second=368 amount=-2 -kerning first=956 second=281 amount=-1 -kerning first=121 second=250 amount=-1 -kerning first=118 second=941 amount=-1 -kerning first=36 second=262 amount=-2 -kerning first=175 second=1241 amount=-1 -kerning first=178 second=187 amount=-1 -kerning first=281 second=8220 amount=-1 -kerning first=59 second=199 amount=-2 -kerning first=1074 second=117 amount=-1 -kerning first=196 second=1079 amount=-1 -kerning first=202 second=89 amount=-5 -kerning first=1099 second=973 amount=-1 -kerning first=99 second=955 amount=-1 -kerning first=102 second=263 amount=-1 -kerning first=1186 second=216 amount=-1 -kerning first=962 second=228 amount=-1 -kerning first=270 second=90 amount=-1 -kerning first=40 second=212 amount=-2 -kerning first=1037 second=370 amount=-2 -kerning first=60 second=354 amount=-5 -kerning first=57 second=1118 amount=-1 -kerning first=203 second=266 amount=-2 -kerning first=206 second=39 amount=-3 -kerning first=901 second=79 amount=-2 -kerning first=80 second=970 amount=-1 -kerning first=934 second=920 amount=-2 -kerning first=1184 second=1195 amount=-2 -kerning first=249 second=103 amount=-1 -kerning first=369 second=253 amount=-1 -kerning first=960 second=1257 amount=-1 -kerning first=126 second=355 amount=-1 -kerning first=162 second=115 amount=-1 -kerning first=271 second=267 amount=-1 -kerning first=41 second=367 amount=-1 -kerning first=38 second=1185 amount=-3 -kerning first=61 second=1038 amount=-2 -kerning first=1080 second=242 amount=-1 -kerning first=207 second=214 amount=-2 -kerning first=321 second=1101 amount=-1 -kerning first=8372 second=287 amount=-1 +kerning first=87 second=103 amount=-2 +kerning first=87 second=109 amount=-2 +kerning first=87 second=111 amount=-3 +kerning first=87 second=112 amount=-2 +kerning first=87 second=113 amount=-3 +kerning first=87 second=115 amount=-2 +kerning first=87 second=117 amount=-2 +kerning first=87 second=118 amount=-1 +kerning first=87 second=119 amount=-1 +kerning first=87 second=120 amount=-1 +kerning first=87 second=121 amount=-1 +kerning first=87 second=122 amount=-1 +kerning first=87 second=171 amount=-2 +kerning first=87 second=173 amount=-2 +kerning first=87 second=187 amount=-2 +kerning first=87 second=193 amount=-5 +kerning first=87 second=194 amount=-5 +kerning first=87 second=196 amount=-5 +kerning first=87 second=197 amount=-5 +kerning first=87 second=198 amount=-5 +kerning first=87 second=199 amount=-2 +kerning first=87 second=210 amount=-2 +kerning first=87 second=211 amount=-2 +kerning first=87 second=212 amount=-2 +kerning first=87 second=213 amount=-2 +kerning first=87 second=214 amount=-2 +kerning first=87 second=216 amount=-2 +kerning first=87 second=224 amount=-2 +kerning first=87 second=225 amount=-2 kerning first=87 second=226 amount=-2 -kerning first=1194 second=1069 amount=1 -kerning first=247 second=972 amount=-1 -kerning first=250 second=281 amount=-1 -kerning first=188 second=227 amount=-1 -kerning first=303 second=117 amount=-1 -kerning first=300 second=357 amount=-1 -kerning first=325 second=973 amount=-1 -kerning first=1118 second=332 amount=-2 -kerning first=354 second=216 amount=-1 -kerning first=105 second=8221 amount=-3 -kerning first=108 second=1066 amount=-5 -kerning first=254 second=228 amount=-1 -kerning first=968 second=962 amount=-1 -kerning first=167 second=240 amount=-1 -kerning first=274 second=1194 amount=-2 -kerning first=8211 second=1071 amount=-1 -kerning first=49 second=252 amount=-1 -kerning first=186 second=1256 amount=-2 -kerning first=215 second=79 amount=-2 -kerning first=912 second=119 amount=-4 -kerning first=89 second=1081 amount=-3 -kerning first=1119 second=963 amount=-1 -kerning first=1170 second=271 amount=-1 -kerning first=946 second=1026 amount=-5 -kerning first=950 second=286 amount=-2 -kerning first=252 second=1257 amount=-1 -kerning first=1026 second=218 amount=-2 -kerning first=1064 second=360 amount=-2 -kerning first=310 second=242 amount=-2 -kerning first=70 second=1101 amount=-1 -kerning first=1096 second=287 amount=-1 -kerning first=96 second=268 amount=-2 -kerning first=1176 second=219 amount=-2 -kerning first=954 second=231 amount=-2 -kerning first=1263 second=121 amount=-1 -kerning first=382 second=243 amount=-1 -kerning first=1027 second=373 amount=-4 -kerning first=54 second=357 amount=-1 -kerning first=57 second=117 amount=-1 -kerning first=197 second=269 amount=-1 -kerning first=74 second=973 amount=-1 -kerning first=338 second=332 amount=-2 -kerning first=926 second=244 amount=-1 -kerning first=100 second=216 amount=-2 -kerning first=123 second=118 amount=-4 -kerning first=260 second=962 amount=-1 -kerning first=35 second=370 amount=-2 -kerning first=177 second=283 amount=-1 -kerning first=8225 second=1177 amount=-1 -kerning first=8240 second=363 amount=-1 -kerning first=61 second=67 amount=-2 -kerning first=1073 second=245 amount=-1 -kerning first=201 second=217 amount=-2 -kerning first=8363 second=290 amount=-2 -kerning first=224 second=119 amount=-1 -kerning first=345 second=44 amount=-3 -kerning first=936 second=194 amount=-3 -kerning first=1194 second=84 amount=-1 -kerning first=956 second=1090 amount=-3 -kerning first=182 second=230 amount=-1 -kerning first=294 second=360 amount=-2 -kerning first=8226 second=8212 amount=-2 -kerning first=62 second=242 amount=-1 -kerning first=202 second=372 amount=-5 -kerning first=322 second=287 amount=-1 -kerning first=8369 second=235 amount=-1 -kerning first=1107 second=335 amount=-1 -kerning first=931 second=1108 amount=-1 -kerning first=108 second=81 amount=-2 -kerning first=371 second=121 amount=-1 -kerning first=962 second=965 amount=-1 -kerning first=161 second=243 amount=-1 -kerning first=8211 second=86 amount=-3 -kerning first=179 second=1263 amount=-1 -kerning first=1075 second=1113 amount=-3 -kerning first=901 second=362 amount=-2 -kerning first=86 second=332 amount=-2 -kerning first=1116 second=275 amount=-2 -kerning first=375 second=71 amount=-2 -kerning first=268 second=8230 amount=-1 -kerning first=278 second=83 amount=-1 -kerning first=1048 second=363 amount=-1 -kerning first=302 second=245 amount=-1 -kerning first=1084 second=290 amount=-2 -kerning first=207 second=949 amount=-1 -kerning first=8378 second=338 amount=-2 +kerning first=87 second=227 amount=-2 +kerning first=87 second=228 amount=-2 +kerning first=87 second=229 amount=-2 +kerning first=87 second=230 amount=-2 +kerning first=87 second=231 amount=-3 +kerning first=87 second=232 amount=-3 +kerning first=87 second=233 amount=-3 +kerning first=87 second=234 amount=-3 +kerning first=87 second=235 amount=-3 +kerning first=87 second=240 amount=-3 +kerning first=87 second=241 amount=-2 +kerning first=87 second=242 amount=-3 +kerning first=87 second=243 amount=-3 +kerning first=87 second=244 amount=-3 +kerning first=87 second=245 amount=-3 +kerning first=87 second=246 amount=-3 +kerning first=87 second=248 amount=-3 +kerning first=87 second=249 amount=-2 +kerning first=87 second=250 amount=-2 +kerning first=87 second=251 amount=-2 +kerning first=87 second=252 amount=-2 +kerning first=87 second=253 amount=-1 +kerning first=87 second=256 amount=-5 +kerning first=87 second=257 amount=-2 +kerning first=87 second=258 amount=-5 +kerning first=87 second=259 amount=-2 +kerning first=87 second=260 amount=-5 +kerning first=87 second=261 amount=-2 +kerning first=87 second=262 amount=-2 +kerning first=87 second=263 amount=-3 +kerning first=87 second=266 amount=-2 +kerning first=87 second=267 amount=-3 +kerning first=87 second=268 amount=-2 +kerning first=87 second=269 amount=-3 +kerning first=87 second=271 amount=-3 +kerning first=87 second=273 amount=-3 +kerning first=87 second=275 amount=-3 +kerning first=87 second=277 amount=-3 +kerning first=87 second=279 amount=-3 +kerning first=87 second=281 amount=-3 +kerning first=87 second=283 amount=-3 +kerning first=87 second=286 amount=-2 +kerning first=87 second=287 amount=-2 +kerning first=87 second=288 amount=-2 +kerning first=87 second=289 amount=-2 +kerning first=87 second=290 amount=-2 +kerning first=87 second=291 amount=-2 +kerning first=87 second=324 amount=-2 +kerning first=87 second=326 amount=-2 +kerning first=87 second=328 amount=-2 +kerning first=87 second=331 amount=-2 +kerning first=87 second=332 amount=-2 +kerning first=87 second=333 amount=-3 +kerning first=87 second=334 amount=-2 +kerning first=87 second=335 amount=-3 +kerning first=87 second=336 amount=-2 +kerning first=87 second=337 amount=-3 +kerning first=87 second=338 amount=-2 +kerning first=87 second=339 amount=-3 +kerning first=87 second=341 amount=-2 +kerning first=87 second=343 amount=-2 +kerning first=87 second=345 amount=-2 +kerning first=87 second=346 amount=-1 +kerning first=87 second=347 amount=-2 +kerning first=87 second=350 amount=-1 +kerning first=87 second=351 amount=-2 +kerning first=87 second=352 amount=-1 +kerning first=87 second=353 amount=-2 +kerning first=87 second=361 amount=-2 +kerning first=87 second=363 amount=-2 +kerning first=87 second=365 amount=-2 +kerning first=87 second=367 amount=-2 +kerning first=87 second=369 amount=-2 +kerning first=87 second=371 amount=-2 +kerning first=87 second=373 amount=-1 +kerning first=87 second=375 amount=-1 +kerning first=87 second=378 amount=-1 +kerning first=87 second=380 amount=-1 +kerning first=87 second=382 amount=-1 +kerning first=87 second=913 amount=-5 +kerning first=87 second=916 amount=-5 +kerning first=87 second=920 amount=-2 +kerning first=87 second=923 amount=-5 +kerning first=87 second=927 amount=-2 +kerning first=87 second=940 amount=-3 +kerning first=87 second=941 amount=-3 +kerning first=87 second=942 amount=-2 +kerning first=87 second=945 amount=-3 +kerning first=87 second=947 amount=-1 +kerning first=87 second=949 amount=-3 +kerning first=87 second=951 amount=-2 +kerning first=87 second=954 amount=-2 +kerning first=87 second=957 amount=-1 +kerning first=87 second=959 amount=-3 +kerning first=87 second=962 amount=-3 kerning first=87 second=963 amount=-3 -kerning first=90 second=271 amount=-1 -kerning first=948 second=234 amount=-1 -kerning first=253 second=334 amount=-2 -kerning first=250 second=1090 amount=-3 -kerning first=376 second=246 amount=-4 -kerning first=166 second=346 amount=-1 -kerning first=45 second=1174 amount=-3 -kerning first=48 second=360 amount=-2 -kerning first=1049 second=1059 amount=-2 -kerning first=1046 second=8212 amount=-3 -kerning first=191 second=273 amount=-1 -kerning first=194 second=45 amount=-2 -kerning first=188 second=964 amount=-3 -kerning first=1094 second=235 amount=-1 -kerning first=94 second=219 amount=-2 -kerning first=357 second=259 amount=-1 -kerning first=354 second=951 amount=-2 -kerning first=111 second=1175 amount=-2 -kerning first=117 second=121 amount=-1 -kerning first=254 second=965 amount=-1 -kerning first=968 second=8250 amount=-1 -kerning first=1028 second=86 amount=-1 -kerning first=167 second=1028 amount=-2 -kerning first=170 second=288 amount=-2 -kerning first=195 second=220 amount=-2 -kerning first=75 second=232 amount=-2 -kerning first=215 second=362 amount=-2 -kerning first=339 second=47 amount=-1 -kerning first=920 second=197 amount=-2 -kerning first=95 second=374 amount=-5 -kerning first=238 second=289 amount=-1 -kerning first=950 second=1096 amount=-2 -kerning first=956 second=99 amount=-1 -kerning first=121 second=71 amount=-2 -kerning first=1224 second=940 amount=-1 -kerning first=36 second=83 amount=-1 -kerning first=1026 second=953 amount=-1 -kerning first=175 second=233 amount=-1 -kerning first=56 second=245 amount=-1 -kerning first=1070 second=198 amount=-2 -kerning first=196 second=375 amount=-1 -kerning first=314 second=290 amount=-2 -kerning first=1099 second=338 amount=-2 -kerning first=216 second=1051 amount=-1 -kerning first=923 second=352 amount=-1 -kerning first=958 second=277 amount=-1 -kerning first=122 second=246 amount=-1 -kerning first=262 second=376 amount=-2 -kerning first=1037 second=211 amount=-2 -kerning first=282 second=8212 amount=-2 -kerning first=287 second=1059 amount=-2 -kerning first=1071 second=353 amount=-1 -kerning first=194 second=8249 amount=-3 -kerning first=1075 second=113 amount=-1 -kerning first=203 second=85 amount=-2 -kerning first=318 second=235 amount=-1 -kerning first=80 second=335 amount=-1 -kerning first=103 second=259 amount=-1 -kerning first=963 second=224 amount=-1 -kerning first=1298 second=1118 amount=-1 -kerning first=260 second=8250 amount=-1 -kerning first=1035 second=1184 amount=-5 -kerning first=180 second=336 amount=-2 -kerning first=296 second=248 amount=-1 -kerning first=61 second=350 amount=-1 -kerning first=8372 second=103 amount=-1 -kerning first=87 second=47 amount=-3 -kerning first=84 second=275 amount=-3 -kerning first=350 second=87 amount=-2 -kerning first=247 second=337 amount=-1 -kerning first=250 second=99 amount=-1 -kerning first=367 second=940 amount=-1 -kerning first=163 second=111 amount=-1 -kerning first=160 second=351 amount=-1 -kerning first=273 second=261 amount=-1 -kerning first=42 second=363 amount=-1 -kerning first=65 second=290 amount=-2 -kerning first=325 second=338 amount=-2 -kerning first=8369 second=972 amount=-1 -kerning first=903 second=250 amount=-1 -kerning first=900 second=941 amount=-1 -kerning first=942 second=1241 amount=-1 -kerning first=108 second=364 amount=-2 -kerning first=1186 second=8220 amount=-2 -kerning first=251 second=277 amount=-1 -kerning first=374 second=199 amount=-3 -kerning first=965 second=1079 amount=-1 -kerning first=971 second=89 amount=-5 -kerning first=161 second=1035 amount=-5 -kerning first=164 second=291 amount=-1 -kerning first=40 second=8212 amount=-2 -kerning first=43 second=1059 amount=-2 -kerning first=1051 second=251 amount=-1 -kerning first=301 second=353 amount=-1 -kerning first=304 second=113 amount=-1 -kerning first=69 second=235 amount=-1 -kerning first=209 second=365 amount=-1 -kerning first=1219 second=252 amount=-1 -kerning first=255 second=224 amount=-1 -kerning first=375 second=354 amount=-5 -kerning first=372 second=1118 amount=-1 -kerning first=1026 second=39 amount=-3 -kerning first=278 second=366 amount=-2 -kerning first=8222 second=79 amount=-1 -kerning first=50 second=248 amount=-1 -kerning first=193 second=171 amount=-3 -kerning first=310 second=63 amount=-2 -kerning first=1096 second=103 amount=-1 -kerning first=207 second=8217 amount=-3 -kerning first=8378 second=1257 amount=-1 -kerning first=915 second=115 amount=-1 -kerning first=96 second=87 amount=-5 -kerning first=1171 second=267 amount=-1 -kerning first=356 second=367 amount=-2 -kerning first=113 second=940 amount=-1 -kerning first=1027 second=214 amount=-2 -kerning first=8220 second=945 amount=-1 -kerning first=1065 second=356 amount=-2 -kerning first=74 second=338 amount=-2 -kerning first=77 second=100 amount=-1 -kerning first=214 second=941 amount=-1 -kerning first=1094 second=972 amount=-1 -kerning first=1097 second=281 amount=-1 -kerning first=335 second=380 amount=-1 -kerning first=237 second=1241 amount=-1 -kerning first=240 second=187 amount=-1 -kerning first=955 second=227 amount=-1 -kerning first=1298 second=117 amount=-1 -kerning first=35 second=211 amount=-2 -kerning first=170 second=1098 amount=-3 -kerning first=174 second=339 amount=-1 -kerning first=177 second=101 amount=-1 -kerning first=55 second=353 amount=-1 -kerning first=58 second=113 amount=-1 -kerning first=198 second=263 amount=-1 -kerning first=8363 second=106 amount=1 -kerning first=928 second=240 amount=-1 -kerning first=920 second=916 amount=-2 -kerning first=1178 second=370 amount=-1 -kerning first=244 second=102 amount=-1 -kerning first=361 second=943 amount=-1 -kerning first=121 second=354 amount=-5 -kerning first=1262 second=1044 amount=-1 -kerning first=269 second=39 amount=-1 -kerning first=36 second=366 amount=-2 -kerning first=1039 second=79 amount=-2 -kerning first=175 second=970 amount=-1 -kerning first=178 second=279 amount=-1 -kerning first=202 second=213 amount=-2 -kerning first=8361 second=1026 amount=-5 -kerning first=8364 second=286 amount=-2 -kerning first=322 second=103 amount=-1 -kerning first=1099 second=1257 amount=-1 -kerning first=343 second=267 amount=-1 -kerning first=34 second=8218 amount=-1 -kerning first=1037 second=945 amount=-1 -kerning first=183 second=226 amount=-1 -kerning first=298 second=116 amount=-1 -kerning first=203 second=368 amount=-2 -kerning first=318 second=972 amount=-1 -kerning first=323 second=281 amount=-1 -kerning first=8370 second=231 amount=-1 -kerning first=100 second=8220 amount=-3 -kerning first=249 second=227 amount=-1 -kerning first=369 second=357 amount=-1 -kerning first=372 second=117 amount=-2 -kerning first=271 second=369 amount=-1 -kerning first=44 second=251 amount=-1 -kerning first=201 second=8221 amount=-3 -kerning first=204 second=1066 amount=-5 -kerning first=1084 second=106 amount=1 -kerning first=327 second=228 amount=-1 -kerning first=905 second=118 amount=-4 -kerning first=84 second=1080 amount=-2 -kerning first=90 second=90 amount=1 -kerning first=944 second=283 amount=-1 -kerning first=247 second=1256 amount=-2 -kerning first=370 second=1044 amount=-1 -kerning first=376 second=67 amount=-3 -kerning first=8216 second=257 amount=-1 -kerning first=1049 second=359 amount=-1 -kerning first=1062 second=119 amount=-2 -kerning first=300 second=920 amount=-2 -kerning first=1081 second=1026 amount=-5 -kerning first=1085 second=286 amount=-2 -kerning first=325 second=1257 amount=-1 -kerning first=91 second=267 amount=-1 -kerning first=1210 second=360 amount=-2 -kerning first=374 second=923 amount=-5 -kerning first=968 second=947 amount=-4 -kerning first=971 second=372 amount=-5 -kerning first=164 second=1101 amount=-1 -kerning first=377 second=242 amount=-1 -kerning first=49 second=356 amount=-5 -kerning first=52 second=116 amount=-1 -kerning first=192 second=268 amount=-2 -kerning first=69 second=972 amount=-1 -kerning first=72 second=281 amount=-1 -kerning first=1095 second=231 amount=-1 -kerning first=912 second=243 amount=-1 -kerning first=1170 second=373 amount=-4 -kerning first=946 second=1263 amount=-1 -kerning first=258 second=269 amount=-1 -kerning first=168 second=973 amount=-1 -kerning first=8218 second=1176 amount=-1 -kerning first=8222 second=362 amount=-1 -kerning first=1067 second=244 amount=-1 -kerning first=196 second=216 amount=-2 -kerning first=314 second=106 amount=1 -kerning first=93 second=1194 amount=-2 -kerning first=96 second=370 amount=-2 -kerning first=239 second=283 amount=-1 -kerning first=954 second=333 amount=-2 -kerning first=1263 second=245 amount=-1 -kerning first=37 second=79 amount=-2 -kerning first=1027 second=949 amount=-1 -kerning first=176 second=229 amount=-1 -kerning first=287 second=359 amount=-1 -kerning first=54 second=920 amount=-2 -kerning first=194 second=1195 amount=-1 -kerning first=197 second=371 amount=-1 -kerning first=315 second=286 amount=-1 -kerning first=74 second=1257 amount=-1 -kerning first=1097 second=1090 amount=-2 -kerning first=926 second=346 amount=-1 -kerning first=363 second=360 amount=-2 -kerning first=955 second=964 amount=-3 -kerning first=963 second=45 amount=-2 -kerning first=123 second=242 amount=-1 -kerning first=960 second=273 amount=-1 -kerning first=260 second=947 amount=-4 -kerning first=35 second=945 amount=-1 -kerning first=177 second=1240 amount=-2 -kerning first=174 second=1262 amount=-2 -kerning first=1073 second=347 amount=-1 -kerning first=198 second=1069 amount=-1 -kerning first=204 second=81 amount=-2 -kerning first=321 second=231 amount=-1 -kerning first=928 second=1028 amount=-2 -kerning first=936 second=288 amount=-2 -kerning first=964 second=220 amount=-2 -kerning first=1039 second=362 amount=-2 -kerning first=1036 second=1176 amount=-2 -kerning first=182 second=332 amount=-2 -kerning first=297 second=244 amount=-1 -kerning first=65 second=106 amount=1 -kerning first=1078 second=289 amount=-1 -kerning first=8369 second=337 amount=-1 -kerning first=903 second=71 amount=-2 -kerning first=942 second=233 amount=-1 -kerning first=371 second=245 amount=-1 -kerning first=965 second=375 amount=-1 -kerning first=274 second=257 amount=-1 -kerning first=43 second=359 amount=-1 -kerning first=1037 second=8211 amount=-2 -kerning first=46 second=119 amount=-2 -kerning first=183 second=963 amount=-1 -kerning first=186 second=271 amount=-1 -kerning first=63 second=1026 amount=-5 -kerning first=1083 second=234 amount=-1 -kerning first=323 second=1090 amount=-3 -kerning first=8370 second=968 amount=-1 -kerning first=904 second=246 amount=-1 -kerning first=8377 second=277 amount=-1 -kerning first=352 second=258 amount=-1 -kerning first=112 second=120 amount=-2 -kerning first=252 second=273 amount=-1 -kerning first=255 second=45 amount=-2 -kerning first=249 second=964 amount=-3 -kerning first=963 second=8249 amount=-3 -kerning first=165 second=287 amount=-1 -kerning first=190 second=219 amount=-2 -kerning first=299 second=1108 amount=-1 -kerning first=302 second=347 amount=-1 -kerning first=70 second=231 amount=-1 -kerning first=327 second=965 amount=-1 -kerning first=334 second=46 amount=-1 -kerning first=910 second=196 amount=-5 -kerning first=948 second=336 amount=-2 -kerning first=1220 second=248 amount=-1 -kerning first=256 second=220 amount=-2 -kerning first=376 second=350 amount=-1 -kerning first=169 second=232 amount=-1 -kerning first=276 second=1176 amount=-1 -kerning first=51 second=244 amount=-1 -kerning first=191 second=374 amount=-5 -kerning first=306 second=289 amount=-1 -kerning first=68 second=1298 amount=-1 -kerning first=1094 second=337 amount=-1 -kerning first=1097 second=99 amount=-1 -kerning first=916 second=111 amount=-1 -kerning first=237 second=233 amount=-1 -kerning first=354 second=1177 amount=-2 -kerning first=357 second=363 amount=-1 -kerning first=117 second=245 amount=-1 -kerning first=8225 second=250 amount=-1 -kerning first=8221 second=941 amount=-1 -kerning first=55 second=194 amount=-5 -kerning first=198 second=84 amount=-5 -kerning first=72 second=1090 amount=-3 -kerning first=75 second=334 amount=-3 -kerning first=1095 second=968 amount=-1 -kerning first=313 second=234 amount=-1 -kerning first=336 second=376 amount=-3 -kerning first=912 second=1035 amount=-5 -kerning first=1178 second=211 amount=-1 -kerning first=358 second=1059 amount=-2 -kerning first=1299 second=113 amount=-1 -kerning first=255 second=8249 amount=-3 -kerning first=175 second=335 amount=-1 -kerning first=178 second=97 amount=-1 -kerning first=53 second=1108 amount=-1 -kerning first=56 second=347 amount=-1 -kerning first=202 second=34 amount=-3 -kerning first=76 second=965 amount=-1 -kerning first=222 second=196 amount=-2 -kerning first=1176 second=1184 amount=-5 -kerning first=365 second=248 amount=-1 -kerning first=962 second=171 amount=-3 -kerning first=37 second=362 amount=-2 -kerning first=1034 second=1063 amount=-1 -kerning first=1027 second=8217 amount=-3 -kerning first=176 second=966 amount=-1 -kerning first=179 second=275 amount=-1 -kerning first=60 second=289 amount=-1 -kerning first=318 second=337 amount=-1 -kerning first=323 second=99 amount=-1 -kerning first=83 second=221 amount=-2 -kerning first=223 second=351 amount=-1 -kerning first=100 second=1177 amount=-1 -kerning first=103 second=363 amount=-1 -kerning first=243 second=967 amount=-2 -kerning first=126 second=290 amount=-2 -kerning first=271 second=210 amount=-2 -kerning first=35 second=8211 amount=-2 -kerning first=296 second=352 amount=-1 -kerning first=64 second=234 amount=-1 -kerning first=1080 second=187 amount=-1 -kerning first=204 second=364 amount=-2 -kerning first=1076 second=1241 amount=-1 -kerning first=321 second=968 amount=-1 -kerning first=8372 second=227 amount=-1 -kerning first=902 second=199 amount=-2 -kerning first=1117 second=89 amount=-5 -kerning first=936 second=1098 amount=-3 -kerning first=944 second=101 amount=-1 -kerning first=373 second=113 amount=-1 -kerning first=967 second=263 amount=-1 -kerning first=163 second=235 amount=-1 -kerning first=273 second=365 amount=-1 -kerning first=202 second=8216 amount=-3 -kerning first=8369 second=1256 amount=-2 -kerning first=900 second=1118 amount=-1 -kerning first=903 second=354 amount=-5 -kerning first=1118 second=266 amount=-2 -kerning first=346 second=1184 amount=-1 -kerning first=942 second=970 amount=-1 -kerning first=254 second=171 amount=-3 -kerning first=971 second=213 amount=-2 -kerning first=1063 second=115 amount=-1 -kerning first=1051 second=355 amount=-1 -kerning first=192 second=87 amount=-5 -kerning first=69 second=337 amount=-1 -kerning first=72 second=99 amount=-1 -kerning first=209 second=940 amount=-1 -kerning first=904 second=1038 amount=-2 +kerning first=87 second=965 amount=-2 +kerning first=87 second=966 amount=-3 +kerning first=87 second=968 amount=-2 +kerning first=87 second=972 amount=-3 +kerning first=87 second=973 amount=-2 +kerning first=87 second=1028 amount=-2 +kerning first=87 second=1029 amount=-1 +kerning first=87 second=1032 amount=-3 +kerning first=87 second=1040 amount=-5 +kerning first=87 second=1054 amount=-2 +kerning first=87 second=1057 amount=-2 +kerning first=87 second=1072 amount=-2 +kerning first=87 second=1074 amount=-2 +kerning first=87 second=1075 amount=-2 +kerning first=87 second=1077 amount=-3 +kerning first=87 second=1078 amount=-1 +kerning first=87 second=1080 amount=-2 +kerning first=87 second=1081 amount=-2 +kerning first=87 second=1082 amount=-2 +kerning first=87 second=1084 amount=-2 +kerning first=87 second=1085 amount=-2 +kerning first=87 second=1086 amount=-3 +kerning first=87 second=1087 amount=-2 +kerning first=87 second=1088 amount=-2 +kerning first=87 second=1089 amount=-3 +kerning first=87 second=1091 amount=-1 +kerning first=87 second=1092 amount=-3 +kerning first=87 second=1093 amount=-1 +kerning first=87 second=1094 amount=-2 +kerning first=87 second=1096 amount=-2 +kerning first=87 second=1097 amount=-2 +kerning first=87 second=1099 amount=-2 +kerning first=87 second=1100 amount=-2 +kerning first=87 second=1102 amount=-2 +kerning first=87 second=1104 amount=-3 +kerning first=87 second=1105 amount=-3 +kerning first=87 second=1107 amount=-2 +kerning first=87 second=1108 amount=-3 +kerning first=87 second=1109 amount=-2 +kerning first=87 second=1114 amount=-2 +kerning first=87 second=1116 amount=-2 +kerning first=87 second=1117 amount=-2 +kerning first=87 second=1118 amount=-1 +kerning first=87 second=1119 amount=-2 +kerning first=87 second=1169 amount=-2 +kerning first=87 second=1175 amount=-1 +kerning first=87 second=1179 amount=-2 +kerning first=87 second=1187 amount=-2 +kerning first=87 second=1194 amount=-2 +kerning first=87 second=1195 amount=-3 +kerning first=87 second=1199 amount=-1 +kerning first=87 second=1203 amount=-1 +kerning first=87 second=1220 amount=-2 +kerning first=87 second=1224 amount=-2 +kerning first=87 second=1240 amount=-2 +kerning first=87 second=1241 amount=-3 +kerning first=87 second=1256 amount=-2 +kerning first=87 second=1257 amount=-3 +kerning first=87 second=1263 amount=-1 +kerning first=87 second=8211 amount=-2 +kerning first=87 second=8212 amount=-2 +kerning first=87 second=8218 amount=-3 +kerning first=87 second=8222 amount=-3 +kerning first=87 second=8230 amount=-3 +kerning first=87 second=8249 amount=-2 +kerning first=87 second=8250 amount=-2 +kerning first=88 second=38 amount=-2 +kerning first=88 second=45 amount=-3 +kerning first=88 second=63 amount=-2 +kerning first=88 second=67 amount=-3 +kerning first=88 second=71 amount=-3 +kerning first=88 second=74 amount=-1 +kerning first=88 second=79 amount=-3 +kerning first=88 second=81 amount=-3 +kerning first=88 second=83 amount=-1 +kerning first=88 second=97 amount=-1 +kerning first=88 second=99 amount=-2 +kerning first=88 second=100 amount=-2 +kerning first=88 second=101 amount=-2 +kerning first=88 second=111 amount=-2 +kerning first=88 second=113 amount=-2 +kerning first=88 second=115 amount=-1 +kerning first=88 second=116 amount=-1 +kerning first=88 second=117 amount=-1 +kerning first=88 second=118 amount=-3 +kerning first=88 second=119 amount=-3 +kerning first=88 second=121 amount=-1 +kerning first=88 second=171 amount=-3 +kerning first=88 second=173 amount=-3 +kerning first=88 second=187 amount=-1 +kerning first=88 second=199 amount=-3 +kerning first=88 second=210 amount=-3 +kerning first=88 second=211 amount=-3 +kerning first=88 second=212 amount=-3 +kerning first=88 second=213 amount=-3 +kerning first=88 second=214 amount=-3 +kerning first=88 second=216 amount=-3 +kerning first=88 second=224 amount=-1 +kerning first=88 second=225 amount=-1 +kerning first=88 second=226 amount=-1 +kerning first=88 second=227 amount=-1 +kerning first=88 second=228 amount=-1 +kerning first=88 second=229 amount=-1 +kerning first=88 second=230 amount=-1 +kerning first=88 second=231 amount=-2 +kerning first=88 second=232 amount=-2 +kerning first=88 second=233 amount=-2 +kerning first=88 second=234 amount=-2 +kerning first=88 second=235 amount=-2 +kerning first=88 second=240 amount=-2 +kerning first=88 second=242 amount=-2 +kerning first=88 second=243 amount=-2 +kerning first=88 second=244 amount=-2 +kerning first=88 second=245 amount=-2 +kerning first=88 second=246 amount=-2 +kerning first=88 second=248 amount=-2 +kerning first=88 second=249 amount=-1 +kerning first=88 second=250 amount=-1 +kerning first=88 second=251 amount=-1 +kerning first=88 second=252 amount=-1 +kerning first=88 second=253 amount=-1 +kerning first=88 second=257 amount=-1 +kerning first=88 second=259 amount=-1 +kerning first=88 second=261 amount=-1 +kerning first=88 second=262 amount=-3 +kerning first=88 second=263 amount=-2 +kerning first=88 second=266 amount=-3 +kerning first=88 second=267 amount=-2 +kerning first=88 second=268 amount=-3 +kerning first=88 second=269 amount=-2 +kerning first=88 second=271 amount=-2 +kerning first=88 second=273 amount=-2 +kerning first=88 second=275 amount=-2 +kerning first=88 second=277 amount=-2 +kerning first=88 second=279 amount=-2 +kerning first=88 second=281 amount=-2 +kerning first=88 second=283 amount=-2 +kerning first=88 second=286 amount=-3 +kerning first=88 second=288 amount=-3 +kerning first=88 second=290 amount=-3 +kerning first=88 second=332 amount=-3 +kerning first=88 second=333 amount=-2 +kerning first=88 second=334 amount=-3 +kerning first=88 second=335 amount=-2 +kerning first=88 second=336 amount=-3 +kerning first=88 second=337 amount=-2 +kerning first=88 second=338 amount=-3 +kerning first=88 second=339 amount=-2 +kerning first=88 second=346 amount=-1 +kerning first=88 second=347 amount=-1 +kerning first=88 second=350 amount=-1 +kerning first=88 second=351 amount=-1 +kerning first=88 second=352 amount=-1 +kerning first=88 second=353 amount=-1 +kerning first=88 second=355 amount=-1 +kerning first=88 second=357 amount=-1 +kerning first=88 second=359 amount=-1 +kerning first=88 second=361 amount=-1 +kerning first=88 second=363 amount=-1 +kerning first=88 second=365 amount=-1 +kerning first=88 second=367 amount=-1 +kerning first=88 second=369 amount=-1 +kerning first=88 second=371 amount=-1 +kerning first=88 second=373 amount=-3 +kerning first=88 second=375 amount=-1 +kerning first=88 second=920 amount=-3 +kerning first=88 second=927 amount=-3 +kerning first=88 second=934 amount=-5 +kerning first=88 second=940 amount=-2 +kerning first=88 second=941 amount=-2 +kerning first=88 second=943 amount=-1 +kerning first=88 second=945 amount=-2 +kerning first=88 second=947 amount=-3 +kerning first=88 second=949 amount=-2 +kerning first=88 second=950 amount=-2 +kerning first=88 second=952 amount=-2 +kerning first=88 second=953 amount=-1 +kerning first=88 second=957 amount=-3 +kerning first=88 second=959 amount=-2 +kerning first=88 second=962 amount=-2 +kerning first=88 second=963 amount=-2 +kerning first=88 second=964 amount=-3 +kerning first=88 second=965 amount=-1 +kerning first=88 second=966 amount=-2 +kerning first=88 second=967 amount=-2 +kerning first=88 second=968 amount=-1 +kerning first=88 second=969 amount=-2 +kerning first=88 second=970 amount=-1 +kerning first=88 second=972 amount=-2 +kerning first=88 second=973 amount=-1 +kerning first=88 second=974 amount=-2 +kerning first=88 second=1028 amount=-3 +kerning first=88 second=1029 amount=-1 +kerning first=88 second=1032 amount=-1 +kerning first=88 second=1047 amount=-2 +kerning first=88 second=1054 amount=-3 +kerning first=88 second=1057 amount=-3 +kerning first=88 second=1060 amount=-5 +kerning first=88 second=1063 amount=-1 +kerning first=88 second=1069 amount=-2 +kerning first=88 second=1072 amount=-1 +kerning first=88 second=1077 amount=-2 +kerning first=88 second=1079 amount=-2 +kerning first=88 second=1086 amount=-2 +kerning first=88 second=1089 amount=-2 +kerning first=88 second=1090 amount=-3 +kerning first=88 second=1091 amount=-1 +kerning first=88 second=1092 amount=-2 +kerning first=88 second=1098 amount=-3 +kerning first=88 second=1101 amount=-2 +kerning first=88 second=1104 amount=-2 +kerning first=88 second=1105 amount=-2 +kerning first=88 second=1108 amount=-2 +kerning first=88 second=1109 amount=-1 +kerning first=88 second=1118 amount=-1 +kerning first=88 second=1176 amount=-2 +kerning first=88 second=1177 amount=-2 +kerning first=88 second=1185 amount=-3 +kerning first=88 second=1194 amount=-3 +kerning first=88 second=1195 amount=-2 +kerning first=88 second=1199 amount=-3 +kerning first=88 second=1240 amount=-3 +kerning first=88 second=1241 amount=-2 +kerning first=88 second=1256 amount=-3 +kerning first=88 second=1257 amount=-2 +kerning first=88 second=1263 amount=-1 +kerning first=88 second=8211 amount=-3 +kerning first=88 second=8212 amount=-3 +kerning first=88 second=8249 amount=-3 +kerning first=88 second=8250 amount=-1 +kerning first=89 second=38 amount=-2 +kerning first=89 second=44 amount=-4 +kerning first=89 second=45 amount=-4 +kerning first=89 second=46 amount=-4 +kerning first=89 second=47 amount=-4 +kerning first=89 second=110 amount=-3 +kerning first=89 second=63 amount=-1 +kerning first=89 second=65 amount=-5 +kerning first=89 second=67 amount=-3 +kerning first=89 second=114 amount=-3 +kerning first=89 second=71 amount=-3 +kerning first=89 second=74 amount=-6 +kerning first=89 second=79 amount=-3 +kerning first=89 second=81 amount=-3 +kerning first=89 second=83 amount=-1 +kerning first=89 second=97 amount=-4 +kerning first=89 second=99 amount=-4 +kerning first=89 second=100 amount=-4 +kerning first=89 second=101 amount=-4 +kerning first=89 second=103 amount=-4 +kerning first=89 second=109 amount=-3 +kerning first=89 second=111 amount=-4 +kerning first=89 second=112 amount=-3 +kerning first=89 second=113 amount=-4 +kerning first=89 second=115 amount=-3 +kerning first=89 second=117 amount=-2 +kerning first=89 second=118 amount=-2 +kerning first=89 second=119 amount=-2 +kerning first=89 second=120 amount=-2 +kerning first=89 second=121 amount=-2 +kerning first=89 second=122 amount=-2 +kerning first=89 second=171 amount=-3 +kerning first=89 second=173 amount=-4 +kerning first=89 second=187 amount=-2 +kerning first=89 second=193 amount=-5 +kerning first=89 second=194 amount=-5 +kerning first=89 second=196 amount=-5 +kerning first=89 second=197 amount=-5 +kerning first=89 second=198 amount=-5 +kerning first=89 second=199 amount=-3 +kerning first=89 second=210 amount=-3 +kerning first=89 second=211 amount=-3 +kerning first=89 second=212 amount=-3 +kerning first=89 second=213 amount=-3 +kerning first=89 second=214 amount=-3 +kerning first=89 second=216 amount=-3 +kerning first=89 second=224 amount=-4 +kerning first=89 second=225 amount=-4 +kerning first=89 second=226 amount=-4 +kerning first=89 second=227 amount=-4 +kerning first=89 second=228 amount=-4 +kerning first=89 second=229 amount=-4 +kerning first=89 second=230 amount=-4 +kerning first=89 second=231 amount=-4 +kerning first=89 second=232 amount=-4 +kerning first=89 second=233 amount=-4 +kerning first=89 second=234 amount=-4 +kerning first=89 second=235 amount=-4 +kerning first=89 second=240 amount=-4 +kerning first=89 second=241 amount=-3 +kerning first=89 second=242 amount=-4 +kerning first=89 second=243 amount=-4 +kerning first=89 second=244 amount=-4 +kerning first=89 second=245 amount=-4 +kerning first=89 second=246 amount=-4 +kerning first=89 second=248 amount=-4 +kerning first=89 second=249 amount=-2 +kerning first=89 second=250 amount=-2 +kerning first=89 second=251 amount=-2 +kerning first=89 second=252 amount=-2 +kerning first=89 second=253 amount=-2 +kerning first=89 second=256 amount=-5 +kerning first=89 second=257 amount=-4 +kerning first=89 second=258 amount=-5 +kerning first=89 second=259 amount=-4 +kerning first=89 second=260 amount=-5 +kerning first=89 second=261 amount=-4 +kerning first=89 second=262 amount=-3 +kerning first=89 second=263 amount=-4 +kerning first=89 second=266 amount=-3 +kerning first=89 second=267 amount=-4 +kerning first=89 second=268 amount=-3 +kerning first=89 second=269 amount=-4 +kerning first=89 second=271 amount=-4 +kerning first=89 second=273 amount=-4 +kerning first=89 second=275 amount=-4 +kerning first=89 second=277 amount=-4 +kerning first=89 second=279 amount=-4 +kerning first=89 second=281 amount=-4 +kerning first=89 second=283 amount=-4 +kerning first=89 second=286 amount=-3 +kerning first=89 second=287 amount=-4 +kerning first=89 second=288 amount=-3 +kerning first=89 second=289 amount=-4 +kerning first=89 second=290 amount=-3 +kerning first=89 second=291 amount=-4 +kerning first=89 second=324 amount=-3 +kerning first=89 second=326 amount=-3 +kerning first=89 second=328 amount=-3 +kerning first=89 second=331 amount=-3 +kerning first=89 second=332 amount=-3 +kerning first=89 second=333 amount=-4 +kerning first=89 second=334 amount=-3 +kerning first=89 second=335 amount=-4 +kerning first=89 second=336 amount=-3 +kerning first=89 second=337 amount=-4 +kerning first=89 second=338 amount=-3 +kerning first=89 second=339 amount=-4 +kerning first=89 second=341 amount=-3 +kerning first=89 second=343 amount=-3 +kerning first=89 second=345 amount=-3 +kerning first=89 second=346 amount=-1 +kerning first=89 second=347 amount=-3 +kerning first=89 second=350 amount=-1 +kerning first=89 second=351 amount=-3 +kerning first=89 second=352 amount=-1 +kerning first=89 second=353 amount=-3 +kerning first=89 second=361 amount=-2 +kerning first=89 second=363 amount=-2 +kerning first=89 second=365 amount=-2 +kerning first=89 second=367 amount=-2 +kerning first=89 second=369 amount=-2 +kerning first=89 second=371 amount=-2 +kerning first=89 second=373 amount=-2 +kerning first=89 second=375 amount=-2 +kerning first=89 second=378 amount=-2 +kerning first=89 second=380 amount=-2 +kerning first=89 second=382 amount=-2 +kerning first=89 second=913 amount=-5 +kerning first=89 second=916 amount=-5 +kerning first=89 second=920 amount=-3 +kerning first=89 second=923 amount=-5 +kerning first=89 second=927 amount=-3 +kerning first=89 second=937 amount=-2 +kerning first=89 second=940 amount=-4 +kerning first=89 second=941 amount=-4 +kerning first=89 second=942 amount=-3 +kerning first=89 second=943 amount=-2 +kerning first=89 second=945 amount=-4 +kerning first=89 second=947 amount=-2 +kerning first=89 second=949 amount=-4 +kerning first=89 second=950 amount=-2 +kerning first=89 second=951 amount=-3 +kerning first=89 second=952 amount=-2 kerning first=89 second=953 amount=-2 -kerning first=92 second=261 amount=-1 -kerning first=1170 second=214 amount=-2 -kerning first=950 second=226 amount=-1 -kerning first=1219 second=356 amount=-5 -kerning first=1224 second=116 amount=-1 -kerning first=168 second=338 amount=-2 -kerning first=278 second=941 amount=-1 -kerning first=47 second=1116 amount=-1 -kerning first=50 second=352 amount=-1 -kerning first=193 second=262 amount=-2 -kerning first=305 second=1241 amount=-1 -kerning first=310 second=187 amount=-2 -kerning first=70 second=968 amount=-1 -kerning first=73 second=277 amount=-1 -kerning first=1096 second=227 amount=-1 -kerning first=96 second=211 amount=-2 -kerning first=1171 second=369 amount=-1 -kerning first=233 second=1098 amount=-1 -kerning first=236 second=339 amount=-1 -kerning first=239 second=101 amount=-1 -kerning first=356 second=942 amount=-2 -kerning first=113 second=1117 amount=2 -kerning first=119 second=113 amount=-1 -kerning first=973 second=1066 amount=-5 -kerning first=8230 second=118 amount=-2 -kerning first=197 second=212 amount=-2 -kerning first=77 second=224 amount=-1 -kerning first=214 second=1118 amount=-1 -kerning first=338 second=266 amount=-2 -kerning first=94 second=1184 amount=-5 -kerning first=1169 second=8222 amount=-3 -kerning first=1184 second=79 amount=-3 -kerning first=237 second=970 amount=-1 -kerning first=240 second=279 amount=-1 -kerning first=1035 second=253 amount=-1 -kerning first=177 second=225 amount=-1 -kerning first=291 second=115 amount=-1 -kerning first=195 second=1185 amount=-3 -kerning first=198 second=367 amount=-1 -kerning first=8363 second=230 amount=-1 -kerning first=1178 second=945 amount=-1 -kerning first=367 second=116 amount=-1 -kerning first=36 second=941 amount=-1 -kerning first=59 second=1241 amount=-1 -kerning first=62 second=187 amount=-1 -kerning first=196 second=8220 amount=-3 -kerning first=322 second=227 amount=-1 -kerning first=8361 second=1263 amount=-1 -kerning first=900 second=117 amount=-1 -kerning first=1107 second=269 amount=-1 -kerning first=931 second=973 amount=-1 -kerning first=105 second=251 amount=-1 -kerning first=965 second=216 amount=-2 -kerning first=298 second=240 amount=-1 -kerning first=203 second=943 amount=-1 -kerning first=206 second=252 amount=-1 -kerning first=318 second=1256 amount=-2 -kerning first=8370 second=333 amount=-1 -kerning first=904 second=67 amount=-2 -kerning first=86 second=266 amount=-2 -kerning first=341 second=8222 amount=-3 -kerning first=1206 second=119 amount=-2 -kerning first=369 second=920 amount=-2 -kerning first=372 second=241 amount=-2 -kerning first=963 second=1195 amount=-1 -kerning first=165 second=103 amount=-1 -kerning first=44 second=355 amount=-1 -kerning first=47 second=115 amount=-2 -kerning first=1084 second=230 amount=-1 -kerning first=8378 second=273 amount=-1 -kerning first=905 second=242 amount=-1 -kerning first=8372 second=964 amount=-3 -kerning first=1117 second=372 amount=-5 -kerning first=90 second=214 amount=-1 -kerning first=944 second=1240 amount=-2 -kerning first=113 second=116 amount=-1 -kerning first=253 second=268 amount=-2 -kerning first=967 second=1069 amount=-1 -kerning first=973 second=81 amount=-2 -kerning first=163 second=972 amount=-1 -kerning first=166 second=281 amount=-1 -kerning first=1062 second=243 amount=-1 -kerning first=1081 second=1263 amount=-1 -kerning first=214 second=117 amount=-1 -kerning first=91 second=369 amount=-1 -kerning first=1223 second=244 amount=-1 -kerning first=170 second=228 amount=-1 -kerning first=283 second=118 amount=-1 -kerning first=8225 second=71 amount=-2 -kerning first=52 second=240 amount=-1 -kerning first=1066 second=193 amount=-1 -kerning first=189 second=1194 amount=-2 -kerning first=192 second=370 amount=-2 -kerning first=69 second=1256 amount=-2 -kerning first=1095 second=333 amount=-1 -kerning first=212 second=1044 amount=-1 +kerning first=89 second=954 amount=-3 +kerning first=89 second=955 amount=-2 +kerning first=89 second=957 amount=-2 +kerning first=89 second=959 amount=-4 +kerning first=89 second=961 amount=-5 +kerning first=89 second=962 amount=-4 +kerning first=89 second=963 amount=-4 +kerning first=89 second=964 amount=-2 +kerning first=89 second=965 amount=-2 +kerning first=89 second=966 amount=-4 +kerning first=89 second=967 amount=-2 +kerning first=89 second=968 amount=-2 +kerning first=89 second=969 amount=-4 +kerning first=89 second=970 amount=-2 +kerning first=89 second=972 amount=-4 +kerning first=89 second=973 amount=-2 +kerning first=89 second=974 amount=-4 +kerning first=89 second=1028 amount=-3 +kerning first=89 second=1029 amount=-1 +kerning first=89 second=1032 amount=-6 +kerning first=89 second=1033 amount=-5 +kerning first=89 second=1040 amount=-5 +kerning first=89 second=1044 amount=-5 +kerning first=89 second=1051 amount=-5 +kerning first=89 second=1054 amount=-3 +kerning first=89 second=1057 amount=-3 +kerning first=89 second=1069 amount=-2 +kerning first=89 second=1071 amount=-2 +kerning first=89 second=1072 amount=-4 +kerning first=89 second=1074 amount=-3 +kerning first=89 second=1075 amount=-3 +kerning first=89 second=1077 amount=-4 +kerning first=89 second=1078 amount=-2 +kerning first=89 second=1079 amount=-4 +kerning first=89 second=1080 amount=-3 +kerning first=89 second=1081 amount=-3 +kerning first=89 second=1082 amount=-3 +kerning first=89 second=1084 amount=-3 +kerning first=89 second=1085 amount=-3 +kerning first=89 second=1086 amount=-4 +kerning first=89 second=1087 amount=-3 +kerning first=89 second=1088 amount=-3 +kerning first=89 second=1089 amount=-4 +kerning first=89 second=1090 amount=-2 +kerning first=89 second=1091 amount=-2 +kerning first=89 second=1092 amount=-4 +kerning first=89 second=1093 amount=-2 +kerning first=89 second=1094 amount=-3 +kerning first=89 second=1096 amount=-3 +kerning first=89 second=1097 amount=-3 +kerning first=89 second=1098 amount=-2 +kerning first=89 second=1099 amount=-3 +kerning first=89 second=1100 amount=-3 +kerning first=89 second=1101 amount=-4 +kerning first=89 second=1102 amount=-3 +kerning first=89 second=1104 amount=-4 +kerning first=89 second=1105 amount=-4 +kerning first=89 second=1107 amount=-3 +kerning first=89 second=1108 amount=-4 +kerning first=89 second=1109 amount=-3 +kerning first=89 second=1114 amount=-3 +kerning first=89 second=1116 amount=-3 +kerning first=89 second=1117 amount=-3 +kerning first=89 second=1118 amount=-2 +kerning first=89 second=1119 amount=-3 +kerning first=89 second=1169 amount=-3 +kerning first=89 second=1175 amount=-2 +kerning first=89 second=1176 amount=-2 +kerning first=89 second=1177 amount=-4 +kerning first=89 second=1179 amount=-3 +kerning first=89 second=1185 amount=-2 +kerning first=89 second=1187 amount=-3 +kerning first=89 second=1194 amount=-3 +kerning first=89 second=1195 amount=-4 +kerning first=89 second=1199 amount=-2 +kerning first=89 second=1203 amount=-2 +kerning first=89 second=1220 amount=-3 +kerning first=89 second=1224 amount=-3 +kerning first=89 second=1240 amount=-3 +kerning first=89 second=1241 amount=-4 +kerning first=89 second=1256 amount=-3 +kerning first=89 second=1257 amount=-4 +kerning first=89 second=1263 amount=-2 +kerning first=89 second=1298 amount=-5 +kerning first=89 second=8211 amount=-4 +kerning first=89 second=8212 amount=-4 +kerning first=89 second=8218 amount=-4 kerning first=89 second=8222 amount=-4 -kerning first=1170 second=949 amount=-1 -kerning first=238 second=229 amount=-1 -kerning first=358 second=359 amount=-1 -kerning first=361 second=119 amount=-4 -kerning first=950 second=963 amount=-1 -kerning first=255 second=1195 amount=-1 -kerning first=258 second=371 amount=-1 -kerning first=1262 second=194 amount=-2 -kerning first=381 second=286 amount=-1 -kerning first=168 second=1257 amount=-1 -kerning first=8226 second=246 amount=-1 -kerning first=1067 second=346 amount=-1 -kerning first=314 second=230 amount=-1 -kerning first=1099 second=273 amount=-1 -kerning first=1096 second=964 amount=-3 -kerning first=216 second=923 amount=-2 -kerning first=923 second=287 amount=-1 -kerning first=96 second=945 amount=-1 -kerning first=236 second=1262 amount=-2 -kerning first=239 second=1240 amount=-2 -kerning first=958 second=219 amount=-2 -kerning first=1263 second=347 amount=-1 -kerning first=1037 second=121 amount=-1 -kerning first=8250 second=196 amount=-3 -kerning first=1071 second=288 amount=-2 -kerning first=80 second=269 amount=-1 -kerning first=1103 second=220 amount=-2 -kerning first=934 second=232 amount=-1 -kerning first=960 second=374 amount=-5 -kerning first=126 second=106 amount=1 -kerning first=268 second=256 amount=-1 -kerning first=41 second=118 amount=-4 -kerning first=177 second=962 amount=-1 -kerning first=1044 second=71 amount=-1 -kerning first=8260 second=351 amount=-1 -kerning first=61 second=283 amount=-1 -kerning first=1076 second=233 amount=-1 -kerning first=321 second=333 amount=-1 -kerning first=345 second=257 amount=-1 -kerning first=1178 second=8211 amount=-2 -kerning first=247 second=271 amount=-1 -kerning first=370 second=194 amount=-2 -kerning first=967 second=84 amount=-5 -kerning first=124 second=1026 amount=-5 -kerning first=160 second=286 amount=-2 -kerning first=1046 second=246 amount=-2 -kerning first=185 second=218 amount=-2 -kerning first=297 second=346 amount=-1 -kerning first=65 second=230 amount=-1 -kerning first=205 second=360 amount=-2 -kerning first=322 second=964 amount=-3 -kerning first=325 second=273 amount=-1 -kerning first=1118 second=85 amount=-2 -kerning first=942 second=335 amount=-1 -kerning first=251 second=219 amount=-2 -kerning first=371 second=347 amount=-1 -kerning first=374 second=109 amount=-3 -kerning first=968 second=259 amount=-1 -kerning first=971 second=34 amount=-3 -kerning first=164 second=231 amount=-1 -kerning first=274 second=361 amount=-1 -kerning first=8217 second=74 amount=-4 -kerning first=186 second=373 amount=-4 -kerning first=298 second=1028 amount=-2 -kerning first=301 second=288 amount=-2 -kerning first=63 second=1263 amount=-1 -kerning first=1083 second=336 amount=-2 -kerning first=330 second=220 amount=-2 -kerning first=904 second=350 amount=-1 -kerning first=946 second=275 amount=-1 -kerning first=252 second=374 amount=-5 -kerning first=375 second=289 amount=-1 -kerning first=8218 second=249 amount=-1 -kerning first=1064 second=111 amount=-1 -kerning first=187 second=1071 amount=-1 -kerning first=193 second=83 amount=-1 -kerning first=305 second=233 amount=-1 -kerning first=70 second=333 amount=-1 -kerning first=910 second=290 amount=-3 -kerning first=93 second=257 amount=-1 +kerning first=89 second=8230 amount=-4 +kerning first=89 second=8249 amount=-3 +kerning first=89 second=8250 amount=-2 +kerning first=90 second=45 amount=-3 +kerning first=90 second=67 amount=-1 +kerning first=90 second=71 amount=-1 +kerning first=90 second=79 amount=-1 +kerning first=90 second=81 amount=-1 +kerning first=90 second=90 amount=1 +kerning first=90 second=99 amount=-1 +kerning first=90 second=100 amount=-1 +kerning first=90 second=101 amount=-1 +kerning first=90 second=111 amount=-1 +kerning first=90 second=113 amount=-1 +kerning first=90 second=173 amount=-3 +kerning first=90 second=199 amount=-1 +kerning first=90 second=210 amount=-1 +kerning first=90 second=211 amount=-1 +kerning first=90 second=212 amount=-1 +kerning first=90 second=213 amount=-1 +kerning first=90 second=214 amount=-1 +kerning first=90 second=216 amount=-1 +kerning first=90 second=231 amount=-1 +kerning first=90 second=232 amount=-1 +kerning first=90 second=233 amount=-1 +kerning first=90 second=234 amount=-1 +kerning first=90 second=235 amount=-1 +kerning first=90 second=240 amount=-1 +kerning first=90 second=242 amount=-1 +kerning first=90 second=243 amount=-1 +kerning first=90 second=244 amount=-1 +kerning first=90 second=245 amount=-1 +kerning first=90 second=246 amount=-1 +kerning first=90 second=248 amount=-1 +kerning first=90 second=262 amount=-1 +kerning first=90 second=263 amount=-1 +kerning first=90 second=266 amount=-1 +kerning first=90 second=267 amount=-1 +kerning first=90 second=268 amount=-1 +kerning first=90 second=269 amount=-1 +kerning first=90 second=271 amount=-1 +kerning first=90 second=273 amount=-1 +kerning first=90 second=275 amount=-1 +kerning first=90 second=277 amount=-1 +kerning first=90 second=279 amount=-1 +kerning first=90 second=281 amount=-1 +kerning first=90 second=283 amount=-1 +kerning first=90 second=286 amount=-1 +kerning first=90 second=288 amount=-1 +kerning first=90 second=290 amount=-1 +kerning first=90 second=332 amount=-1 +kerning first=90 second=333 amount=-1 +kerning first=90 second=334 amount=-1 +kerning first=90 second=335 amount=-1 +kerning first=90 second=336 amount=-1 +kerning first=90 second=337 amount=-1 +kerning first=90 second=338 amount=-1 +kerning first=90 second=339 amount=-1 +kerning first=90 second=377 amount=1 +kerning first=90 second=379 amount=1 +kerning first=90 second=381 amount=1 +kerning first=90 second=918 amount=1 +kerning first=90 second=920 amount=-1 +kerning first=90 second=927 amount=-1 +kerning first=90 second=940 amount=-1 +kerning first=90 second=941 amount=-1 +kerning first=90 second=945 amount=-1 kerning first=90 second=949 amount=-1 -kerning first=1171 second=210 amount=-2 -kerning first=230 second=1299 amount=-1 -kerning first=1220 second=352 amount=-1 -kerning first=379 second=234 amount=-1 -kerning first=973 second=364 amount=-2 -kerning first=169 second=334 amount=-2 -kerning first=282 second=246 amount=-1 -kerning first=166 second=1090 amount=-3 -kerning first=8224 second=199 amount=-2 -kerning first=51 second=346 amount=-1 -kerning first=1062 second=1035 amount=-2 -kerning first=74 second=273 amount=-1 -kerning first=77 second=45 amount=-2 -kerning first=338 second=85 amount=-2 -kerning first=916 second=235 amount=-1 -kerning first=237 second=335 amount=-1 -kerning first=240 second=97 amount=-1 -kerning first=117 second=347 amount=-1 -kerning first=114 second=1108 amount=-1 -kerning first=260 second=259 amount=-1 -kerning first=263 second=34 amount=-1 -kerning first=971 second=8216 amount=-3 -kerning first=35 second=121 amount=-1 -kerning first=170 second=965 amount=-1 -kerning first=8225 second=354 amount=-5 -kerning first=52 second=1028 amount=-2 -kerning first=55 second=288 amount=-2 -kerning first=78 second=220 amount=-2 -kerning first=313 second=336 amount=-1 -kerning first=221 second=110 amount=-3 -kerning first=95 second=1176 amount=-1 -kerning first=1170 second=8217 amount=-3 +kerning first=90 second=959 amount=-1 +kerning first=90 second=962 amount=-1 +kerning first=90 second=963 amount=-1 +kerning first=90 second=966 amount=-1 +kerning first=90 second=972 amount=-1 +kerning first=90 second=1028 amount=-1 +kerning first=90 second=1054 amount=-1 +kerning first=90 second=1057 amount=-1 +kerning first=90 second=1077 amount=-1 +kerning first=90 second=1086 amount=-1 +kerning first=90 second=1089 amount=-1 +kerning first=90 second=1092 amount=-1 +kerning first=90 second=1104 amount=-1 +kerning first=90 second=1105 amount=-1 +kerning first=90 second=1108 amount=-1 +kerning first=90 second=1194 amount=-1 +kerning first=90 second=1195 amount=-1 +kerning first=90 second=1240 amount=-1 +kerning first=90 second=1241 amount=-1 +kerning first=90 second=1256 amount=-1 +kerning first=90 second=1257 amount=-1 +kerning first=90 second=8211 amount=-3 +kerning first=90 second=8212 amount=-3 +kerning first=91 second=106 amount=7 +kerning first=91 second=1112 amount=7 +kerning first=97 second=34 amount=-1 +kerning first=97 second=39 amount=-1 +kerning first=97 second=63 amount=-2 +kerning first=97 second=102 amount=-1 +kerning first=97 second=106 amount=1 +kerning first=97 second=118 amount=-1 +kerning first=97 second=119 amount=-1 +kerning first=97 second=373 amount=-1 +kerning first=97 second=947 amount=-1 +kerning first=97 second=957 amount=-1 +kerning first=97 second=964 amount=-1 +kerning first=97 second=1090 amount=-1 +kerning first=97 second=1098 amount=-1 +kerning first=97 second=1112 amount=1 +kerning first=97 second=1185 amount=-1 +kerning first=97 second=1199 amount=-1 +kerning first=97 second=8216 amount=-1 +kerning first=97 second=8217 amount=-1 +kerning first=97 second=8220 amount=-1 +kerning first=97 second=8221 amount=-1 +kerning first=98 second=34 amount=-1 +kerning first=98 second=39 amount=-1 +kerning first=98 second=44 amount=-1 +kerning first=98 second=46 amount=-1 +kerning first=98 second=47 amount=-1 +kerning first=98 second=63 amount=-2 +kerning first=98 second=102 amount=-1 +kerning first=98 second=118 amount=-1 +kerning first=98 second=119 amount=-1 +kerning first=98 second=120 amount=-2 +kerning first=98 second=122 amount=-1 +kerning first=98 second=373 amount=-1 +kerning first=98 second=378 amount=-1 +kerning first=98 second=380 amount=-1 +kerning first=98 second=382 amount=-1 +kerning first=98 second=947 amount=-1 +kerning first=98 second=955 amount=-1 +kerning first=98 second=957 amount=-1 +kerning first=98 second=964 amount=-1 +kerning first=98 second=967 amount=-2 +kerning first=98 second=1076 amount=-1 +kerning first=98 second=1078 amount=-2 +kerning first=98 second=1083 amount=-1 +kerning first=98 second=1090 amount=-1 +kerning first=98 second=1093 amount=-2 +kerning first=98 second=1098 amount=-1 +kerning first=98 second=1113 amount=-1 +kerning first=98 second=1175 amount=-2 +kerning first=98 second=1185 amount=-1 +kerning first=98 second=1199 amount=-1 +kerning first=98 second=1203 amount=-2 +kerning first=98 second=1299 amount=-1 +kerning first=98 second=8216 amount=-1 +kerning first=98 second=8217 amount=-1 +kerning first=98 second=8218 amount=-1 +kerning first=98 second=8220 amount=-1 +kerning first=98 second=8221 amount=-1 +kerning first=98 second=8222 amount=-1 +kerning first=98 second=8230 amount=-1 +kerning first=99 second=34 amount=-1 +kerning first=99 second=39 amount=-1 +kerning first=99 second=63 amount=-1 +kerning first=99 second=118 amount=-1 +kerning first=99 second=119 amount=-1 +kerning first=99 second=120 amount=-1 +kerning first=99 second=373 amount=-1 +kerning first=99 second=947 amount=-1 +kerning first=99 second=955 amount=-1 +kerning first=99 second=957 amount=-1 +kerning first=99 second=1078 amount=-1 +kerning first=99 second=1093 amount=-1 +kerning first=99 second=1175 amount=-1 +kerning first=99 second=1199 amount=-1 +kerning first=99 second=1203 amount=-1 +kerning first=99 second=8216 amount=-1 +kerning first=99 second=8217 amount=-1 +kerning first=99 second=8220 amount=-1 +kerning first=99 second=8221 amount=-1 +kerning first=101 second=34 amount=-1 +kerning first=101 second=39 amount=-1 +kerning first=101 second=44 amount=-1 +kerning first=101 second=46 amount=-1 +kerning first=101 second=47 amount=-1 +kerning first=101 second=63 amount=-2 +kerning first=101 second=102 amount=-1 +kerning first=101 second=118 amount=-1 +kerning first=101 second=119 amount=-1 +kerning first=101 second=120 amount=-2 kerning first=101 second=122 amount=-1 -kerning first=238 second=966 amount=-1 -kerning first=244 second=47 amount=-1 -kerning first=364 second=197 amount=-2 -kerning first=121 second=289 amount=-1 -kerning first=1036 second=249 amount=-1 -kerning first=178 second=221 amount=-5 -kerning first=294 second=111 amount=-1 -kerning first=8226 second=1038 amount=-2 -kerning first=289 second=351 amount=-1 -kerning first=59 second=233 amount=-1 -kerning first=196 second=1177 amount=-1 -kerning first=8364 second=226 amount=-1 -kerning first=931 second=338 amount=-2 -kerning first=96 second=8211 amount=-2 -kerning first=1179 second=941 amount=-1 -kerning first=365 second=352 amount=-1 -kerning first=962 second=262 amount=-2 -kerning first=125 second=234 amount=-1 -kerning first=40 second=246 amount=-1 -kerning first=1041 second=199 amount=-2 -kerning first=179 second=376 amount=-5 -kerning first=290 second=1035 amount=-1 -kerning first=1071 second=1098 amount=-3 -kerning first=1075 second=339 amount=-1 -kerning first=197 second=8212 amount=-2 -kerning first=200 second=1059 amount=-2 -kerning first=901 second=113 amount=-1 -kerning first=86 second=85 amount=-2 -kerning first=77 second=8249 amount=-3 -kerning first=263 second=8216 amount=-1 -kerning first=1044 second=354 amount=-2 -kerning first=177 second=8250 amount=-1 -kerning first=187 second=86 amount=-2 -kerning first=64 second=336 amount=-2 -kerning first=1080 second=279 amount=-1 -kerning first=207 second=248 amount=-1 -kerning first=327 second=171 amount=-3 -kerning first=87 second=260 amount=-5 -kerning first=1117 second=213 amount=-2 -kerning first=944 second=225 amount=-1 -kerning first=253 second=87 amount=-5 -kerning first=964 second=1185 amount=-3 -kerning first=967 second=367 amount=-1 -kerning first=163 second=337 amount=-1 -kerning first=166 second=99 amount=-1 -kerning first=276 second=249 amount=-1 -kerning first=273 second=940 amount=-1 -kerning first=48 second=111 amount=-1 -kerning first=188 second=261 amount=-1 -kerning first=185 second=953 amount=-1 -kerning first=1085 second=226 amount=-1 -kerning first=211 second=198 amount=-2 -kerning first=332 second=88 amount=-3 -kerning first=91 second=210 amount=-2 -kerning first=1118 second=368 amount=-2 -kerning first=354 second=250 amount=-2 -kerning first=254 second=262 amount=-2 -kerning first=374 second=1241 amount=-4 -kerning first=965 second=8220 amount=-3 -kerning first=164 second=968 amount=-1 -kerning first=167 second=277 amount=-1 -kerning first=280 second=199 amount=-2 -kerning first=49 second=291 amount=-1 -kerning first=46 second=1035 amount=-5 -kerning first=192 second=211 amount=-2 -kerning first=304 second=339 amount=-1 -kerning first=301 second=1098 amount=-3 -kerning first=215 second=113 amount=-1 -kerning first=89 second=1179 amount=-3 -kerning first=92 second=365 amount=-1 -kerning first=1119 second=1066 amount=-5 -kerning first=1224 second=240 amount=-1 -kerning first=258 second=212 amount=-2 -kerning first=1026 second=252 amount=-1 -kerning first=278 second=1118 amount=-1 -kerning first=8226 second=67 amount=-2 -kerning first=190 second=1184 amount=-5 -kerning first=193 second=366 amount=-2 -kerning first=305 second=970 amount=-1 -kerning first=310 second=279 amount=-2 -kerning first=76 second=171 amount=-3 -kerning first=910 second=1100 amount=-3 -kerning first=923 second=103 amount=-1 -kerning first=1176 second=253 amount=-1 -kerning first=239 second=225 amount=-1 -kerning first=356 second=1119 amount=-2 -kerning first=954 second=267 amount=-2 -kerning first=256 second=1185 amount=-3 -kerning first=282 second=1038 amount=-2 -kerning first=80 second=88 amount=-2 -kerning first=338 second=368 amount=-2 -kerning first=916 second=972 amount=-1 -kerning first=926 second=281 amount=-1 -kerning first=100 second=250 amount=-1 -kerning first=366 second=65 amount=-2 -kerning first=120 second=1241 amount=-2 -kerning first=123 second=187 amount=-1 -kerning first=257 second=8220 amount=-1 -kerning first=38 second=199 amount=-2 -kerning first=1035 second=357 amount=-1 -kerning first=174 second=1079 amount=-1 -kerning first=180 second=89 amount=-5 -kerning first=55 second=1098 amount=-3 -kerning first=58 second=339 amount=-1 -kerning first=61 second=101 amount=-1 -kerning first=201 second=251 amount=-1 -kerning first=8363 second=332 amount=-2 -kerning first=936 second=228 amount=-1 -kerning first=367 second=240 amount=-1 -kerning first=364 second=916 amount=-2 -kerning first=956 second=1194 amount=-2 -kerning first=36 second=1118 amount=-1 -kerning first=1046 second=67 amount=-3 -kerning first=182 second=266 amount=-2 -kerning first=185 second=39 amount=-3 -kerning first=62 second=279 amount=-1 -kerning first=59 second=970 amount=-1 -kerning first=1078 second=229 amount=-1 -kerning first=8364 second=963 amount=-1 -kerning first=8369 second=271 amount=-1 -kerning first=931 second=1257 amount=-1 -kerning first=108 second=115 amount=-1 -kerning first=105 second=355 amount=-1 -kerning first=8211 second=120 amount=-2 -kerning first=40 second=1038 amount=-2 -kerning first=186 second=214 amount=-2 -kerning first=206 second=356 amount=-5 -kerning first=209 second=116 amount=-1 -kerning first=8377 second=219 amount=-2 -kerning first=86 second=368 amount=-2 -kerning first=1119 second=81 amount=-2 -kerning first=1206 second=243 amount=-1 -kerning first=372 second=343 amount=-2 -kerning first=165 second=227 amount=-1 -kerning first=278 second=117 amount=-1 -kerning first=299 second=973 amount=-1 -kerning first=67 second=381 amount=-1 -kerning first=1084 second=332 amount=-2 -kerning first=8378 second=374 amount=-5 -kerning first=356 second=118 amount=-2 -kerning first=944 second=962 amount=-1 -kerning first=113 second=240 amount=-1 -kerning first=250 second=1194 amount=-2 -kerning first=253 second=370 amount=-2 -kerning first=376 second=283 amount=-4 -kerning first=373 second=974 amount=-1 -kerning first=163 second=1256 amount=-2 -kerning first=282 second=67 amount=-2 -kerning first=8220 second=245 amount=-1 -kerning first=194 second=79 amount=-2 -kerning first=306 second=229 amount=-1 -kerning first=1085 second=963 amount=-1 -kerning first=1094 second=271 amount=-1 -kerning first=906 second=1026 amount=-5 -kerning first=94 second=253 amount=-1 -kerning first=952 second=218 amount=-2 -kerning first=1223 second=346 amount=-1 -kerning first=49 second=1101 amount=-1 -kerning first=192 second=945 amount=-1 -kerning first=304 second=1262 amount=-2 -kerning first=75 second=268 amount=-3 -kerning first=361 second=243 amount=-1 -kerning first=953 second=373 amount=-2 -kerning first=1224 second=1028 amount=-2 -kerning first=36 second=117 amount=-1 -kerning first=175 second=269 amount=-1 -kerning first=8226 second=350 amount=-1 -kerning first=53 second=973 amount=-1 -kerning first=314 second=332 amount=-2 -kerning first=8361 second=275 amount=-1 -kerning first=1099 second=374 amount=-5 -kerning first=915 second=1298 amount=-5 -kerning first=239 second=962 amount=-1 -kerning first=1186 second=71 amount=-1 -kerning first=962 second=83 amount=-1 -kerning first=119 second=974 amount=-1 -kerning first=122 second=283 amount=-1 -kerning first=34 second=1044 amount=-3 -kerning first=40 second=67 amount=-2 -kerning first=1037 second=245 amount=-1 -kerning first=179 second=217 amount=-2 -kerning first=60 second=229 amount=-1 -kerning first=203 second=119 amount=-4 -kerning first=200 second=359 amount=-1 -kerning first=315 second=963 amount=-1 -kerning first=318 second=271 amount=-1 -kerning first=80 second=371 amount=-1 -kerning first=77 second=1195 amount=-1 -kerning first=223 second=286 amount=-2 -kerning first=934 second=334 amount=-2 -kerning first=926 second=1090 amount=-3 -kerning first=1187 second=246 amount=-1 -kerning first=126 second=230 amount=-1 -kerning first=38 second=923 amount=-1 -kerning first=41 second=242 amount=-1 -kerning first=177 second=947 amount=-4 -kerning first=180 second=372 amount=-5 -kerning first=296 second=287 amount=-1 -kerning first=61 second=1240 amount=-2 -kerning first=58 second=1262 amount=-2 -kerning first=1076 second=335 amount=-1 -kerning first=1080 second=97 amount=-1 -kerning first=87 second=81 amount=-2 -kerning first=1117 second=34 amount=-3 -kerning first=936 second=965 amount=-1 +kerning first=101 second=373 amount=-1 +kerning first=101 second=378 amount=-1 +kerning first=101 second=380 amount=-1 +kerning first=101 second=382 amount=-1 +kerning first=101 second=947 amount=-1 +kerning first=101 second=955 amount=-1 +kerning first=101 second=957 amount=-1 +kerning first=101 second=964 amount=-1 +kerning first=101 second=967 amount=-2 +kerning first=101 second=1076 amount=-1 +kerning first=101 second=1078 amount=-2 +kerning first=101 second=1083 amount=-1 +kerning first=101 second=1090 amount=-1 +kerning first=101 second=1093 amount=-2 +kerning first=101 second=1098 amount=-1 +kerning first=101 second=1113 amount=-1 +kerning first=101 second=1175 amount=-2 +kerning first=101 second=1185 amount=-1 +kerning first=101 second=1199 amount=-1 +kerning first=101 second=1203 amount=-2 +kerning first=101 second=1299 amount=-1 +kerning first=101 second=8216 amount=-1 +kerning first=101 second=8217 amount=-1 +kerning first=101 second=8218 amount=-1 +kerning first=101 second=8220 amount=-1 +kerning first=101 second=8221 amount=-1 +kerning first=101 second=8222 amount=-1 +kerning first=101 second=8230 amount=-1 +kerning first=102 second=44 amount=-2 +kerning first=102 second=45 amount=-2 +kerning first=102 second=46 amount=-2 +kerning first=102 second=97 amount=-1 +kerning first=102 second=99 amount=-1 +kerning first=102 second=100 amount=-1 +kerning first=102 second=101 amount=-1 +kerning first=102 second=103 amount=-1 +kerning first=102 second=111 amount=-1 +kerning first=102 second=113 amount=-1 +kerning first=102 second=115 amount=-1 +kerning first=102 second=173 amount=-2 +kerning first=102 second=224 amount=-1 +kerning first=102 second=225 amount=-1 +kerning first=102 second=226 amount=-1 +kerning first=102 second=227 amount=-1 +kerning first=102 second=228 amount=-1 +kerning first=102 second=229 amount=-1 +kerning first=102 second=230 amount=-1 +kerning first=102 second=231 amount=-1 +kerning first=102 second=232 amount=-1 +kerning first=102 second=233 amount=-1 +kerning first=102 second=234 amount=-1 +kerning first=102 second=235 amount=-1 +kerning first=102 second=240 amount=-1 +kerning first=102 second=242 amount=-1 +kerning first=102 second=243 amount=-1 +kerning first=102 second=244 amount=-1 +kerning first=102 second=245 amount=-1 +kerning first=102 second=246 amount=-1 +kerning first=102 second=248 amount=-1 +kerning first=102 second=257 amount=-1 +kerning first=102 second=259 amount=-1 +kerning first=102 second=261 amount=-1 +kerning first=102 second=263 amount=-1 +kerning first=102 second=267 amount=-1 +kerning first=102 second=269 amount=-1 +kerning first=102 second=271 amount=-1 +kerning first=102 second=273 amount=-1 +kerning first=102 second=275 amount=-1 +kerning first=102 second=277 amount=-1 +kerning first=102 second=279 amount=-1 +kerning first=102 second=281 amount=-1 +kerning first=102 second=283 amount=-1 +kerning first=102 second=287 amount=-1 +kerning first=102 second=289 amount=-1 +kerning first=102 second=291 amount=-1 +kerning first=102 second=333 amount=-1 +kerning first=102 second=335 amount=-1 +kerning first=102 second=337 amount=-1 +kerning first=102 second=339 amount=-1 +kerning first=102 second=347 amount=-1 +kerning first=102 second=351 amount=-1 +kerning first=102 second=353 amount=-1 +kerning first=102 second=940 amount=-1 +kerning first=102 second=941 amount=-1 +kerning first=102 second=945 amount=-1 +kerning first=102 second=949 amount=-1 +kerning first=102 second=959 amount=-1 +kerning first=102 second=962 amount=-1 +kerning first=102 second=963 amount=-1 +kerning first=102 second=966 amount=-1 +kerning first=102 second=972 amount=-1 +kerning first=102 second=1072 amount=-1 +kerning first=102 second=1077 amount=-1 +kerning first=102 second=1086 amount=-1 +kerning first=102 second=1089 amount=-1 +kerning first=102 second=1092 amount=-1 +kerning first=102 second=1104 amount=-1 +kerning first=102 second=1105 amount=-1 +kerning first=102 second=1108 amount=-1 +kerning first=102 second=1109 amount=-1 +kerning first=102 second=1195 amount=-1 +kerning first=102 second=1241 amount=-1 +kerning first=102 second=1257 amount=-1 +kerning first=102 second=8211 amount=-2 +kerning first=102 second=8212 amount=-2 +kerning first=102 second=8218 amount=-2 +kerning first=102 second=8222 amount=-2 +kerning first=102 second=8230 amount=-2 +kerning first=103 second=63 amount=-1 +kerning first=103 second=106 amount=7 +kerning first=103 second=1112 amount=7 +kerning first=104 second=34 amount=-1 +kerning first=104 second=39 amount=-1 +kerning first=104 second=63 amount=-2 +kerning first=104 second=102 amount=-1 +kerning first=104 second=106 amount=1 +kerning first=104 second=118 amount=-1 +kerning first=104 second=119 amount=-1 +kerning first=104 second=373 amount=-1 +kerning first=104 second=947 amount=-1 +kerning first=104 second=957 amount=-1 +kerning first=104 second=964 amount=-1 +kerning first=104 second=1090 amount=-1 +kerning first=104 second=1098 amount=-1 +kerning first=104 second=1112 amount=1 +kerning first=104 second=1185 amount=-1 +kerning first=104 second=1199 amount=-1 +kerning first=104 second=8216 amount=-1 +kerning first=104 second=8217 amount=-1 +kerning first=104 second=8220 amount=-1 +kerning first=104 second=8221 amount=-1 +kerning first=106 second=106 amount=7 +kerning first=106 second=1112 amount=7 +kerning first=107 second=45 amount=-3 +kerning first=107 second=97 amount=-1 +kerning first=107 second=99 amount=-2 +kerning first=107 second=100 amount=-2 +kerning first=107 second=101 amount=-2 +kerning first=107 second=103 amount=-2 +kerning first=107 second=106 amount=1 +kerning first=107 second=111 amount=-2 +kerning first=107 second=113 amount=-2 +kerning first=107 second=115 amount=-1 +kerning first=107 second=173 amount=-3 +kerning first=107 second=224 amount=-1 +kerning first=107 second=225 amount=-1 +kerning first=107 second=226 amount=-1 +kerning first=107 second=227 amount=-1 +kerning first=107 second=228 amount=-1 +kerning first=107 second=229 amount=-1 +kerning first=107 second=230 amount=-1 +kerning first=107 second=231 amount=-2 +kerning first=107 second=232 amount=-2 +kerning first=107 second=233 amount=-2 +kerning first=107 second=234 amount=-2 +kerning first=107 second=235 amount=-2 +kerning first=107 second=240 amount=-2 +kerning first=107 second=242 amount=-2 kerning first=107 second=243 amount=-2 -kerning first=247 second=373 amount=-4 -kerning first=367 second=1028 amount=-2 -kerning first=124 second=1263 amount=-1 -kerning first=1046 second=350 amount=-1 -kerning first=300 second=232 amount=-1 -kerning first=65 second=332 amount=-2 -kerning first=1081 second=275 amount=-1 -kerning first=1078 second=966 amount=-2 -kerning first=325 second=374 amount=-5 -kerning first=903 second=289 amount=-1 -kerning first=354 second=71 amount=-1 -kerning first=1210 second=111 amount=-1 -kerning first=245 second=8230 amount=-1 -kerning first=254 second=83 amount=-1 -kerning first=374 second=233 amount=-4 -kerning first=968 second=363 amount=-1 -kerning first=965 second=1177 amount=-1 -kerning first=164 second=333 amount=-1 -kerning first=8217 second=198 amount=-3 -kerning first=1051 second=290 amount=-2 -kerning first=186 second=949 amount=-1 -kerning first=189 second=257 amount=-1 -kerning first=69 second=271 amount=-1 -kerning first=212 second=194 amount=-2 -kerning first=1119 second=364 amount=-2 -kerning first=229 second=1090 amount=-1 -kerning first=946 second=376 amount=-5 -kerning first=1219 second=291 amount=-1 -kerning first=1206 second=1035 amount=-2 -kerning first=168 second=273 amount=-1 -kerning first=165 second=964 amount=-3 -kerning first=50 second=287 amount=-1 -kerning first=1064 second=235 amount=-1 -kerning first=305 second=335 amount=-1 -kerning first=310 second=97 amount=-1 -kerning first=73 second=219 amount=-2 -kerning first=337 second=34 amount=-1 -kerning first=93 second=361 amount=-1 -kerning first=1117 second=8216 amount=-3 -kerning first=96 second=121 amount=-1 -kerning first=944 second=8250 amount=-1 -kerning first=113 second=1028 amount=-2 -kerning first=379 second=336 amount=-1 -kerning first=1027 second=248 amount=-1 -kerning first=172 second=220 amount=-2 -kerning first=279 second=1113 amount=-1 -kerning first=282 second=350 amount=-1 -kerning first=54 second=232 amount=-1 -kerning first=194 second=362 amount=-2 -kerning first=191 second=1176 amount=-1 -kerning first=306 second=966 amount=-1 -kerning first=311 second=275 amount=-2 -kerning first=74 second=374 amount=-5 -kerning first=916 second=337 amount=-1 -kerning first=926 second=99 amount=-1 -kerning first=100 second=71 amount=-2 -kerning first=1174 second=940 amount=-1 -kerning first=240 second=221 amount=-5 -kerning first=363 second=111 amount=-1 -kerning first=952 second=953 amount=-1 -kerning first=955 second=261 amount=-1 -kerning first=120 second=233 amount=-2 -kerning first=260 second=363 amount=-1 -kerning first=35 second=245 amount=-1 -kerning first=174 second=375 amount=-1 -kerning first=192 second=8211 amount=-2 -kerning first=1073 second=100 amount=-1 -kerning first=81 second=84 amount=-2 -kerning first=221 second=234 amount=-4 -kerning first=928 second=277 amount=-1 -kerning first=361 second=1035 amount=-5 -kerning first=1299 second=339 amount=-1 -kerning first=258 second=8212 amount=-2 -kerning first=1039 second=113 amount=-1 -kerning first=182 second=85 amount=-2 -kerning first=294 second=235 amount=-1 -kerning first=59 second=335 amount=-1 -kerning first=62 second=97 amount=-1 -kerning first=337 second=8216 amount=-1 -kerning first=1186 second=354 amount=-2 -kerning first=239 second=8250 amount=-1 -kerning first=958 second=1184 amount=-5 -kerning first=962 second=366 amount=-2 -kerning first=125 second=336 amount=-2 -kerning first=40 second=350 amount=-1 -kerning first=60 second=966 amount=-1 -kerning first=63 second=275 amount=-1 -kerning first=8370 second=267 amount=-1 -kerning first=1103 second=1185 amount=-3 -kerning first=249 second=261 amount=-1 -kerning first=44 second=290 amount=-1 -kerning first=299 second=338 amount=-2 -kerning first=302 second=100 amount=-1 -kerning first=207 second=352 amount=-1 -kerning first=327 second=262 amount=-2 -kerning first=902 second=1241 amount=-1 -kerning first=905 second=187 amount=-1 -kerning first=1106 second=8220 amount=-1 -kerning first=948 second=89 amount=-5 -kerning first=253 second=211 amount=-2 -kerning first=376 second=101 amount=-4 -kerning first=373 second=339 amount=-1 -kerning first=276 second=353 amount=-1 -kerning first=48 second=235 amount=-1 -kerning first=188 second=365 amount=-1 -kerning first=68 second=377 amount=-1 -kerning first=1118 second=943 amount=-1 -kerning first=952 second=39 amount=-3 -kerning first=251 second=1184 amount=-5 -kerning first=254 second=366 amount=-2 -kerning first=374 second=970 amount=-2 -kerning first=377 second=279 amount=-1 -kerning first=170 second=171 amount=-3 -kerning first=283 second=63 amount=-2 -kerning first=186 second=8217 amount=-3 -kerning first=1095 second=267 amount=-1 -kerning first=330 second=1185 amount=-3 -kerning first=92 second=940 amount=-1 -kerning first=95 second=249 amount=-1 -kerning first=1219 second=1101 amount=-1 -kerning first=1026 second=356 amount=-5 -kerning first=53 second=338 amount=-2 -kerning first=56 second=100 amount=-1 -kerning first=1064 second=972 amount=-1 -kerning first=196 second=250 amount=-1 -kerning first=193 second=941 amount=-1 -kerning first=1067 second=281 amount=-1 -kerning first=76 second=262 amount=-1 -kerning first=331 second=8220 amount=-1 -kerning first=923 second=227 amount=-1 -kerning first=1176 second=357 amount=-1 -kerning first=236 second=1079 amount=-1 -kerning first=119 second=339 amount=-1 -kerning first=122 second=101 amount=-1 -kerning first=37 second=113 amount=-1 -kerning first=34 second=353 amount=-1 -kerning first=176 second=263 amount=-1 -kerning first=8250 second=106 amount=1 -kerning first=1071 second=228 amount=-1 -kerning first=80 second=212 amount=-2 -kerning first=338 second=943 amount=-1 -kerning first=916 second=1256 amount=-2 -kerning first=100 second=354 amount=-5 -kerning first=246 second=39 amount=-1 -kerning first=963 second=79 amount=-2 -kerning first=123 second=279 amount=-1 -kerning first=1035 second=920 amount=-2 -kerning first=180 second=213 amount=-2 -kerning first=8240 second=1026 amount=-5 -kerning first=8260 second=286 amount=-2 -kerning first=296 second=103 amount=-1 -kerning first=61 second=225 amount=-1 -kerning first=201 second=355 amount=-1 -kerning first=204 second=115 amount=-1 -kerning first=321 second=267 amount=-1 -kerning first=8366 second=218 amount=-2 -kerning first=78 second=1185 amount=-3 -kerning first=247 second=214 amount=-2 -kerning first=160 second=226 amount=-1 -kerning first=1299 second=1262 amount=-2 -kerning first=273 second=116 amount=-1 -kerning first=182 second=368 amount=-2 -kerning first=294 second=972 amount=-1 -kerning first=297 second=281 amount=-1 -kerning first=208 second=65 amount=-2 -kerning first=8369 second=373 amount=-4 -kerning first=942 second=269 amount=-1 -kerning first=1051 second=106 amount=1 -kerning first=183 second=1066 amount=-5 -kerning first=179 second=8221 amount=-3 -kerning first=301 second=228 amount=-1 -kerning first=209 second=240 amount=-1 -kerning first=323 second=1194 amount=-2 -kerning first=904 second=283 amount=-1 -kerning first=86 second=943 amount=-1 -kerning first=89 second=252 amount=-2 -kerning first=946 second=217 amount=-2 -kerning first=246 second=8222 amount=-1 -kerning first=255 second=79 amount=-2 -kerning first=375 second=229 amount=-1 -kerning first=972 second=119 amount=-1 -kerning first=47 second=341 amount=-1 -kerning first=1048 second=1026 amount=-5 -kerning first=50 second=103 amount=-1 -kerning first=190 second=253 amount=-1 -kerning first=299 second=1257 amount=-1 -kerning first=70 second=267 amount=-1 -kerning first=910 second=230 amount=-4 -kerning first=1168 second=360 amount=-2 -kerning first=230 second=1083 amount=-1 -kerning first=356 second=242 amount=-3 -kerning first=944 second=947 amount=-4 -kerning first=948 second=372 amount=-5 -kerning first=1220 second=287 amount=-1 -kerning first=253 second=945 amount=-1 -kerning first=376 second=1240 amount=-3 -kerning first=169 second=268 amount=-2 -kerning first=8216 second=1108 amount=-1 -kerning first=8220 second=347 amount=-1 -kerning first=48 second=972 amount=-1 -kerning first=51 second=281 amount=-1 -kerning first=1065 second=231 amount=-1 -kerning first=906 second=1263 amount=-1 -kerning first=94 second=357 amount=-1 -kerning first=237 second=269 amount=-1 -kerning first=174 second=216 amount=-2 -kerning first=288 second=106 amount=2 -kerning first=8225 second=289 amount=-1 -kerning first=8221 second=1033 amount=-3 -kerning first=55 second=228 amount=-1 -kerning first=198 second=118 amount=-4 -kerning first=72 second=1194 amount=-2 -kerning first=1178 second=245 amount=-1 -kerning first=956 second=257 amount=-1 -kerning first=121 second=229 amount=-1 -kerning first=381 second=963 amount=-1 -kerning first=175 second=371 amount=-1 -kerning first=286 second=1026 amount=-1 -kerning first=289 second=286 amount=-2 -kerning first=53 second=1257 amount=-1 -kerning first=1067 second=1090 amount=-3 -kerning first=317 second=218 amount=-2 -kerning first=8361 second=376 amount=-5 -kerning first=931 second=273 amount=-1 -kerning first=923 second=964 amount=-3 -kerning first=102 second=242 amount=-1 -kerning first=239 second=947 amount=-4 -kerning first=365 second=287 amount=-1 -kerning first=1037 second=347 amount=-1 -kerning first=176 second=1069 amount=-1 -kerning first=183 second=81 amount=-2 -kerning first=1071 second=965 amount=-1 -kerning first=203 second=243 amount=-1 -kerning first=318 second=373 amount=-4 -kerning first=369 second=232 amount=-1 -kerning first=963 second=362 amount=-2 -kerning first=960 second=1176 amount=-1 -kerning first=966 second=122 amount=-1 -kerning first=126 second=332 amount=-2 -kerning first=271 second=244 amount=-1 -kerning first=1038 second=1033 amount=-1 -kerning first=44 second=106 amount=2 -kerning first=61 second=962 amount=-1 -kerning first=1080 second=221 amount=-5 -kerning first=327 second=83 amount=-1 -kerning first=8372 second=261 amount=-1 -kerning first=902 second=233 amount=-1 -kerning first=8366 second=953 amount=-1 -kerning first=1202 second=290 amount=-1 -kerning first=247 second=949 amount=-1 -kerning first=250 second=257 amount=-1 -kerning first=160 second=963 amount=-1 -kerning first=163 second=271 amount=-1 -kerning first=42 second=1026 amount=-5 -kerning first=1049 second=234 amount=-1 -kerning first=297 second=1090 amount=-3 -kerning first=300 second=334 amount=-2 -kerning first=1081 second=376 amount=-5 -kerning first=228 second=964 amount=-1 -kerning first=1210 second=235 amount=-1 -kerning first=374 second=335 amount=-4 -kerning first=167 second=219 amount=-2 -kerning first=274 second=1108 amount=-1 -kerning first=49 second=231 amount=-1 -kerning first=189 second=361 amount=-1 -kerning first=192 second=121 amount=-1 -kerning first=301 second=965 amount=-1 -kerning first=69 second=373 amount=-4 -kerning first=66 second=1202 amount=-2 -kerning first=209 second=1028 amount=-2 -kerning first=8377 second=1184 amount=-5 -kerning first=1170 second=248 amount=-1 -kerning first=252 second=1176 amount=-1 -kerning first=255 second=362 amount=-2 -kerning first=375 second=966 amount=-1 -kerning first=378 second=275 amount=-1 -kerning first=168 second=374 amount=-5 -kerning first=47 second=1298 amount=-4 -kerning first=1064 second=337 amount=-1 -kerning first=1067 second=99 amount=-1 -kerning first=196 second=71 amount=-2 -kerning first=67 second=8230 amount=-1 -kerning first=1096 second=261 amount=-1 -kerning first=910 second=967 amount=-2 -kerning first=96 second=245 amount=-1 -kerning first=236 second=375 amount=-1 -kerning first=253 second=8211 amount=-2 -kerning first=1263 second=100 amount=-1 -kerning first=34 second=194 amount=-3 -kerning first=1027 second=352 amount=-1 -kerning first=176 second=84 amount=-5 -kerning first=287 second=234 amount=-1 -kerning first=8224 second=1241 amount=-1 -kerning first=54 second=334 amount=-2 -kerning first=51 second=1090 amount=-3 -kerning first=197 second=246 amount=-1 -kerning first=1184 second=113 amount=-2 -kerning first=363 second=235 amount=-1 -kerning first=955 second=365 amount=-1 -kerning first=120 second=335 amount=-2 -kerning first=123 second=97 amount=-1 -kerning first=260 second=936 amount=-3 -kerning first=35 second=347 amount=-1 -kerning first=177 second=259 amount=-1 -kerning first=180 second=34 amount=-3 -kerning first=55 second=965 amount=-1 -kerning first=1073 second=224 amount=-1 -kerning first=8363 second=266 amount=-2 -kerning first=8366 second=39 amount=-3 -kerning first=221 second=336 amount=-3 -kerning first=936 second=171 amount=-3 -kerning first=98 second=1113 amount=-1 -kerning first=121 second=966 amount=-1 -kerning first=124 second=275 amount=-1 -kerning first=39 second=289 amount=-1 -kerning first=294 second=337 amount=-1 -kerning first=297 second=99 amount=-1 -kerning first=62 second=221 amount=-5 -kerning first=202 second=351 amount=-1 -kerning first=205 second=111 amount=-1 -kerning first=317 second=953 amount=-1 -kerning first=322 second=261 amount=-1 -kerning first=8369 second=214 amount=-2 -kerning first=222 second=967 amount=-1 -kerning first=346 second=198 amount=-1 -kerning first=105 second=290 amount=-2 -kerning first=371 second=100 amount=-1 -kerning first=965 second=250 amount=-1 -kerning first=962 second=941 amount=-1 -kerning first=8211 second=65 amount=-2 -kerning first=43 second=234 amount=-1 -kerning first=1041 second=1241 amount=-1 -kerning first=183 second=364 amount=-2 -kerning first=298 second=277 amount=-1 -kerning first=63 second=376 amount=-5 -kerning first=203 second=1035 amount=-5 -kerning first=206 second=291 amount=-1 -kerning first=1083 second=89 amount=-5 -kerning first=8370 second=369 amount=-1 -kerning first=901 second=339 amount=-1 -kerning first=80 second=8212 amount=-2 -kerning first=904 second=101 amount=-1 -kerning first=249 second=365 amount=-1 -kerning first=180 second=8216 amount=-3 -kerning first=302 second=224 amount=-1 -kerning first=61 second=8250 amount=-1 -kerning first=1084 second=266 amount=-2 -kerning first=327 second=366 amount=-2 -kerning first=905 second=279 amount=-1 -kerning first=902 second=970 amount=-1 -kerning first=90 second=248 amount=-1 -kerning first=230 second=378 amount=-1 -kerning first=948 second=213 amount=-2 -kerning first=247 second=8217 amount=-3 -kerning first=1220 second=103 amount=-1 -kerning first=376 second=225 amount=-4 -kerning first=973 second=115 amount=-1 -kerning first=169 second=87 amount=-5 -kerning first=48 second=337 amount=-1 -kerning first=51 second=99 amount=-1 -kerning first=188 second=940 amount=-1 -kerning first=191 second=249 amount=-1 -kerning first=231 second=1078 amount=-1 -kerning first=117 second=100 amount=-1 -kerning first=1210 second=972 amount=-1 -kerning first=254 second=941 amount=-1 -kerning first=1223 second=281 amount=-1 -kerning first=170 second=262 amount=-2 -kerning first=1028 second=65 amount=-1 -kerning first=280 second=1241 amount=-1 -kerning first=49 second=968 amount=-1 -kerning first=52 second=277 amount=-1 -kerning first=195 second=199 amount=-2 -kerning first=304 second=1079 amount=-1 -kerning first=313 second=89 amount=-6 -kerning first=75 second=211 amount=-3 -kerning first=1095 second=369 amount=-1 -kerning first=215 second=339 amount=-1 -kerning first=95 second=353 amount=-1 -kerning first=235 second=955 amount=-1 -kerning first=238 second=263 amount=-1 -kerning first=950 second=1066 amount=-5 -kerning first=946 second=8221 amount=-3 -kerning first=1240 second=90 amount=-1 -kerning first=175 second=212 amount=-2 -kerning first=8226 second=283 amount=-1 -kerning first=56 second=224 amount=-1 -kerning first=1064 second=1256 amount=-2 -kerning first=196 second=354 amount=-5 -kerning first=193 second=1118 amount=-1 -kerning first=314 second=266 amount=-2 -kerning first=317 second=39 amount=-3 -kerning first=8361 second=217 amount=-2 -kerning first=73 second=1184 amount=-5 -kerning first=76 second=366 amount=-1 -kerning first=1090 second=8222 amount=-3 -kerning first=1176 second=920 amount=-2 -kerning first=365 second=103 amount=-1 -kerning first=958 second=253 amount=-1 -kerning first=176 second=367 amount=-1 -kerning first=172 second=1185 amount=-3 -kerning first=197 second=1038 amount=-2 -kerning first=318 second=214 amount=-2 -kerning first=74 second=8218 amount=-1 -kerning first=223 second=226 amount=-1 -kerning first=934 second=268 amount=-2 -kerning first=363 second=972 amount=-1 -kerning first=38 second=1241 amount=-1 -kerning first=41 second=187 amount=-1 -kerning first=174 second=8220 amount=-3 -kerning first=296 second=227 amount=-1 -kerning first=8240 second=1263 amount=-1 -kerning first=64 second=89 amount=-5 -kerning first=58 second=1079 amount=-1 -kerning first=1076 second=269 amount=-1 -kerning first=321 second=369 amount=-1 -kerning first=84 second=251 amount=-2 -kerning first=221 second=1224 amount=-3 -kerning first=241 second=8221 amount=-1 -kerning first=1202 second=106 amount=7 -kerning first=967 second=118 amount=-4 -kerning first=273 second=240 amount=-1 -kerning first=45 second=102 amount=-2 -kerning first=1046 second=283 amount=-2 -kerning first=182 second=943 amount=-1 -kerning first=185 second=252 amount=-1 -kerning first=294 second=1256 amount=-2 -kerning first=65 second=266 amount=-2 -kerning first=1081 second=217 amount=-2 -kerning first=8369 second=949 amount=-1 -kerning first=903 second=229 amount=-1 -kerning first=1118 second=119 amount=-4 -kerning first=942 second=371 amount=-1 -kerning first=251 second=253 amount=-1 -kerning first=164 second=267 amount=-1 -kerning first=8211 second=346 amount=-1 -kerning first=1051 second=230 amount=-1 -kerning first=69 second=214 amount=-2 -kerning first=1083 second=372 amount=-5 -kerning first=206 second=1101 amount=-1 -kerning first=901 second=1262 amount=-2 -kerning first=904 second=1240 amount=-2 -kerning first=92 second=116 amount=-1 -kerning first=950 second=81 amount=-2 -kerning first=1219 second=231 amount=-1 -kerning first=372 second=1084 amount=-2 -kerning first=8218 second=288 amount=-1 -kerning first=50 second=227 amount=-1 -kerning first=1048 second=1263 amount=-1 -kerning first=190 second=357 amount=-1 -kerning first=193 second=117 amount=-1 -kerning first=305 second=269 amount=-1 -kerning first=70 second=369 amount=-1 -kerning first=8378 second=1176 amount=-1 -kerning first=910 second=332 amount=-3 -kerning first=1171 second=244 amount=-1 -kerning first=236 second=216 amount=-2 -kerning first=259 second=118 amount=-1 -kerning first=376 second=962 amount=-4 -kerning first=166 second=1194 amount=-2 -kerning first=169 second=370 amount=-2 -kerning first=282 second=283 amount=-1 -kerning first=8224 second=233 amount=-1 -kerning first=48 second=1256 amount=-2 -kerning first=1065 second=333 amount=-1 -kerning first=197 second=67 amount=-2 -kerning first=68 second=8222 amount=-1 -kerning first=77 second=79 amount=-2 -kerning first=1094 second=949 amount=-1 -kerning first=338 second=119 amount=-4 -kerning first=916 second=271 amount=-1 -kerning first=94 second=920 amount=-2 -kerning first=237 second=371 amount=-1 -kerning first=357 second=1026 amount=-5 -kerning first=114 second=1257 amount=-1 -kerning first=1223 second=1090 amount=-3 -kerning first=1066 second=964 amount=-2 -kerning first=1073 second=45 amount=-2 -kerning first=198 second=242 amount=-1 -kerning first=313 second=372 amount=-4 -kerning first=8363 second=85 amount=-2 -kerning first=75 second=945 amount=-2 -kerning first=215 second=1262 amount=-2 -kerning first=928 second=219 amount=-2 -kerning first=1175 second=1108 amount=-1 -kerning first=238 second=1069 amount=-1 -kerning first=956 second=361 amount=-1 -kerning first=1036 second=288 amount=-3 -kerning first=59 second=269 amount=-1 -kerning first=1074 second=220 amount=-2 -kerning first=1099 second=1176 amount=-1 -kerning first=343 second=244 amount=-1 -kerning first=931 second=374 amount=-5 -kerning first=105 second=106 amount=1 -kerning first=362 second=1298 amount=-1 -kerning first=965 second=71 amount=-2 -kerning first=122 second=962 amount=-1 -kerning first=270 second=193 amount=-2 -kerning first=40 second=283 amount=-1 -kerning first=1041 second=233 amount=-1 -kerning first=63 second=217 amount=-2 -kerning first=318 second=949 amount=-1 -kerning first=323 second=257 amount=-1 -kerning first=8370 second=210 amount=-2 -kerning first=86 second=119 amount=-1 -kerning first=223 second=963 amount=-1 -kerning first=103 second=1026 amount=-5 -kerning first=947 second=234 amount=-1 -kerning first=369 second=334 amount=-2 -kerning first=162 second=218 amount=-2 -kerning first=271 second=346 amount=-1 -kerning first=184 second=360 amount=-2 -kerning first=187 second=120 amount=-2 -kerning first=302 second=45 amount=-2 -kerning first=299 second=273 amount=-1 -kerning first=296 second=964 amount=-3 -kerning first=61 second=947 amount=-4 -kerning first=64 second=372 amount=-5 -kerning first=1073 second=8249 amount=-3 -kerning first=1084 second=85 amount=-2 -kerning first=207 second=287 amount=-1 -kerning first=8372 second=365 amount=-1 -kerning first=902 second=335 amount=-1 -kerning first=905 second=97 amount=-1 -kerning first=345 second=1108 amount=-1 -kerning first=944 second=259 amount=-1 -kerning first=948 second=34 amount=-3 -kerning first=250 second=361 amount=-1 -kerning first=253 second=121 amount=-1 -kerning first=376 second=46 amount=-4 -kerning first=163 second=373 amount=-4 -kerning first=273 second=1028 amount=-2 -kerning first=276 second=288 amount=-2 -kerning first=42 second=1263 amount=-1 -kerning first=1049 second=336 amount=-2 -kerning first=303 second=220 amount=-2 -kerning first=325 second=1176 amount=-1 -kerning first=8369 second=8217 amount=-3 -kerning first=903 second=966 amount=-1 -kerning first=906 second=275 amount=-1 -kerning first=91 second=244 amount=-1 -kerning first=354 second=289 amount=-2 -kerning first=1210 second=337 amount=-1 -kerning first=1223 second=99 amount=-1 -kerning first=971 second=351 amount=-1 -kerning first=170 second=83 amount=-1 -kerning first=280 second=233 amount=-1 -kerning first=49 second=333 amount=-1 -kerning first=192 second=245 amount=-1 -kerning first=304 second=375 amount=-1 -kerning first=69 second=949 amount=-1 -kerning first=72 second=257 amount=-1 -kerning first=1095 second=210 amount=-2 -kerning first=1170 second=352 amount=-1 -kerning first=238 second=84 amount=-5 -kerning first=358 second=234 amount=-1 -kerning first=950 second=364 amount=-2 -kerning first=112 second=1090 amount=-1 -kerning first=1219 second=968 amount=-1 -kerning first=1224 second=277 amount=-1 -kerning first=258 second=246 amount=-1 -kerning first=1026 second=291 amount=-1 -kerning first=171 second=258 amount=-1 -kerning first=8218 second=1098 amount=-3 -kerning first=8226 second=101 amount=-1 -kerning first=53 second=273 amount=-1 -kerning first=56 second=45 amount=-2 -kerning first=50 second=964 amount=-3 -kerning first=302 second=8249 amount=-3 -kerning first=314 second=85 amount=-2 -kerning first=1096 second=365 amount=-1 -kerning first=93 second=1108 amount=-1 -kerning first=96 second=347 amount=-1 -kerning first=239 second=259 amount=-1 -kerning first=242 second=34 amount=-1 -kerning first=948 second=8216 amount=-3 -kerning first=1263 second=224 amount=-1 -kerning first=262 second=196 amount=-1 -kerning first=376 second=8250 amount=-2 -kerning first=287 second=336 amount=-2 -kerning first=8224 second=970 amount=-1 -kerning first=57 second=220 amount=-2 -kerning first=1071 second=171 amount=-3 -kerning first=197 second=350 amount=-1 -kerning first=77 second=362 amount=-2 -kerning first=74 second=1176 amount=-1 -kerning first=100 second=289 amount=-1 -kerning first=934 second=87 amount=-5 -kerning first=363 second=337 amount=-1 -kerning first=955 second=940 amount=-1 -kerning first=960 second=249 amount=-1 -kerning first=123 second=221 amount=-5 -kerning first=38 second=233 amount=-1 -kerning first=177 second=363 amount=-1 -kerning first=174 second=1177 amount=-1 -kerning first=8260 second=226 amount=-1 -kerning first=58 second=375 amount=-1 -kerning first=201 second=290 amount=-2 -kerning first=321 second=210 amount=-2 -kerning first=8363 second=368 amount=-2 -kerning first=75 second=8211 amount=-4 -kerning first=936 second=262 amount=-2 -kerning first=1185 second=1241 amount=-2 -kerning first=367 second=277 amount=-1 -kerning first=964 second=199 amount=-2 -kerning first=124 second=376 amount=-5 -kerning first=1299 second=1079 amount=-1 -kerning first=266 second=1035 amount=-1 -kerning first=1039 second=339 amount=-1 -kerning first=175 second=8212 amount=-2 -kerning first=178 second=1059 amount=-2 -kerning first=1036 second=1098 amount=-4 -kerning first=1046 second=101 amount=-2 -kerning first=56 second=8249 amount=-3 -kerning first=65 second=85 amount=-2 -kerning first=1078 second=263 amount=-2 -kerning first=205 second=235 amount=-1 -kerning first=322 second=365 amount=-1 -kerning first=8364 second=1066 amount=-5 -kerning first=8361 second=8221 amount=-3 -kerning first=942 second=212 amount=-2 -kerning first=242 second=8216 amount=-1 -kerning first=371 second=224 amount=-1 -kerning first=965 second=354 amount=-5 -kerning first=962 second=1118 amount=-1 -kerning first=43 second=336 amount=-2 -kerning first=1041 second=970 amount=-1 -kerning first=186 second=248 amount=-1 -kerning first=301 second=171 amount=-3 -kerning first=66 second=260 amount=-1 -kerning first=1083 second=213 amount=-2 -kerning first=318 second=8217 amount=-3 -kerning first=8377 second=253 amount=-1 -kerning first=904 second=225 amount=-1 -kerning first=89 second=197 amount=-5 -kerning first=1119 second=115 amount=-1 -kerning first=940 second=1185 amount=-2 -kerning first=252 second=249 amount=-1 -kerning first=249 second=940 amount=-1 -kerning first=165 second=261 amount=-1 -kerning first=162 second=953 amount=-1 -kerning first=70 second=210 amount=-1 -kerning first=1084 second=368 amount=-2 -kerning first=327 second=941 amount=-1 -kerning first=87 second=1116 amount=-2 -kerning first=356 second=187 amount=-1 -kerning first=941 second=8220 amount=-1 -kerning first=113 second=277 amount=-1 -kerning first=1220 second=227 amount=-1 -kerning first=256 second=199 amount=-2 -kerning first=376 second=326 amount=-3 -kerning first=169 second=211 amount=-2 -kerning first=276 second=1098 amount=-3 -kerning first=282 second=101 amount=-1 -kerning first=191 second=353 amount=-1 -kerning first=194 second=113 amount=-1 -kerning first=306 second=263 amount=-1 -kerning first=1081 second=8221 amount=-3 -kerning first=1085 second=1066 amount=-5 -kerning first=1174 second=240 amount=-1 -kerning first=237 second=212 amount=-2 -kerning first=354 second=1099 amount=-2 -kerning first=952 second=252 amount=-1 -kerning first=117 second=224 amount=-1 -kerning first=1210 second=1256 amount=-2 -kerning first=254 second=1118 amount=-1 -kerning first=167 second=1184 amount=-5 -kerning first=170 second=366 amount=-2 -kerning first=280 second=970 amount=-1 -kerning first=8225 second=229 amount=-1 -kerning first=55 second=171 amount=-2 -kerning first=313 second=213 amount=-1 -kerning first=69 second=8217 amount=-3 -kerning first=238 second=367 amount=-1 -kerning first=235 second=1185 amount=-1 -kerning first=258 second=1038 amount=-2 -kerning first=1026 second=1101 amount=-1 -kerning first=289 second=226 amount=-1 -kerning first=8222 second=1262 amount=-1 -kerning first=8226 second=1240 amount=-2 -kerning first=314 second=368 amount=-2 -kerning first=8364 second=81 amount=-2 -kerning first=76 second=941 amount=-1 -kerning first=236 second=8220 amount=-3 -kerning first=365 second=227 amount=-1 -kerning first=958 second=357 amount=-1 -kerning first=962 second=117 amount=-1 -kerning first=125 second=89 amount=-5 -kerning first=37 second=339 amount=-1 -kerning first=40 second=101 amount=-1 -kerning first=179 second=251 amount=-1 -kerning first=60 second=263 amount=-1 -kerning first=315 second=1066 amount=-6 -kerning first=1108 second=118 amount=-1 -kerning first=926 second=1194 amount=-2 -kerning first=934 second=370 amount=-2 -kerning first=1187 second=283 amount=-1 -kerning first=363 second=1256 amount=-2 -kerning first=126 second=266 amount=-2 -kerning first=162 second=39 amount=-3 -kerning first=38 second=970 amount=-1 -kerning first=44 second=51 amount=-1 -kerning first=41 second=279 amount=-1 -kerning first=8260 second=963 amount=-1 -kerning first=64 second=213 amount=-2 -kerning first=1073 second=1195 amount=-1 -kerning first=207 second=103 amount=-1 -kerning first=87 second=115 amount=-2 -kerning first=967 second=242 amount=-1 -kerning first=163 second=214 amount=-2 -kerning first=1039 second=1262 amount=-2 -kerning first=1046 second=1240 amount=-3 -kerning first=185 second=356 amount=-5 -kerning first=188 second=116 amount=-1 -kerning first=300 second=268 amount=-2 -kerning first=65 second=368 amount=-2 -kerning first=1085 second=81 amount=-2 -kerning first=205 second=972 amount=-1 -kerning first=1118 second=243 amount=-1 -kerning first=251 second=357 amount=-1 -kerning first=254 second=117 amount=-1 -kerning first=374 second=269 amount=-4 -kerning first=164 second=369 amount=-1 -kerning first=274 second=973 amount=-1 -kerning first=8217 second=232 amount=-1 -kerning first=1051 second=332 amount=-2 -kerning first=304 second=216 amount=-2 -kerning first=63 second=8221 amount=-3 -kerning first=66 second=1066 amount=-1 -kerning first=333 second=118 amount=-1 -kerning first=904 second=962 amount=-1 -kerning first=92 second=240 amount=-1 -kerning first=89 second=916 amount=-5 +kerning first=107 second=244 amount=-2 +kerning first=107 second=245 amount=-2 +kerning first=107 second=246 amount=-2 +kerning first=107 second=248 amount=-2 +kerning first=107 second=257 amount=-1 +kerning first=107 second=259 amount=-1 +kerning first=107 second=261 amount=-1 +kerning first=107 second=263 amount=-2 +kerning first=107 second=267 amount=-2 +kerning first=107 second=269 amount=-2 +kerning first=107 second=271 amount=-2 +kerning first=107 second=273 amount=-2 +kerning first=107 second=275 amount=-2 +kerning first=107 second=277 amount=-2 +kerning first=107 second=279 amount=-2 +kerning first=107 second=281 amount=-2 +kerning first=107 second=283 amount=-2 +kerning first=107 second=287 amount=-2 +kerning first=107 second=289 amount=-2 +kerning first=107 second=291 amount=-2 +kerning first=107 second=333 amount=-2 +kerning first=107 second=335 amount=-2 +kerning first=107 second=337 amount=-2 +kerning first=107 second=339 amount=-2 +kerning first=107 second=347 amount=-1 +kerning first=107 second=351 amount=-1 +kerning first=107 second=353 amount=-1 +kerning first=107 second=940 amount=-2 +kerning first=107 second=941 amount=-2 +kerning first=107 second=945 amount=-2 +kerning first=107 second=949 amount=-2 +kerning first=107 second=959 amount=-2 +kerning first=107 second=962 amount=-2 +kerning first=107 second=963 amount=-2 +kerning first=107 second=966 amount=-2 +kerning first=107 second=972 amount=-2 +kerning first=107 second=1072 amount=-1 +kerning first=107 second=1077 amount=-2 +kerning first=107 second=1086 amount=-2 +kerning first=107 second=1089 amount=-2 +kerning first=107 second=1092 amount=-2 +kerning first=107 second=1104 amount=-2 +kerning first=107 second=1105 amount=-2 +kerning first=107 second=1108 amount=-2 +kerning first=107 second=1109 amount=-1 +kerning first=107 second=1112 amount=1 +kerning first=107 second=1195 amount=-2 +kerning first=107 second=1241 amount=-2 +kerning first=107 second=1257 amount=-2 +kerning first=107 second=8211 amount=-3 +kerning first=107 second=8212 amount=-3 +kerning first=108 second=106 amount=2 +kerning first=108 second=1112 amount=2 +kerning first=109 second=34 amount=-1 +kerning first=109 second=39 amount=-1 +kerning first=109 second=63 amount=-2 +kerning first=109 second=102 amount=-1 +kerning first=109 second=106 amount=1 +kerning first=109 second=118 amount=-1 +kerning first=109 second=119 amount=-1 +kerning first=109 second=373 amount=-1 +kerning first=109 second=947 amount=-1 +kerning first=109 second=957 amount=-1 +kerning first=109 second=964 amount=-1 +kerning first=109 second=1090 amount=-1 +kerning first=109 second=1098 amount=-1 +kerning first=109 second=1112 amount=1 +kerning first=109 second=1185 amount=-1 +kerning first=109 second=1199 amount=-1 +kerning first=109 second=8216 amount=-1 +kerning first=109 second=8217 amount=-1 +kerning first=109 second=8220 amount=-1 +kerning first=109 second=8221 amount=-1 +kerning first=111 second=34 amount=-1 +kerning first=111 second=39 amount=-1 +kerning first=111 second=44 amount=-1 +kerning first=111 second=46 amount=-1 +kerning first=111 second=47 amount=-1 +kerning first=111 second=63 amount=-2 +kerning first=111 second=102 amount=-1 +kerning first=111 second=118 amount=-1 +kerning first=111 second=119 amount=-1 +kerning first=111 second=120 amount=-2 +kerning first=111 second=122 amount=-1 +kerning first=111 second=373 amount=-1 +kerning first=111 second=378 amount=-1 +kerning first=111 second=380 amount=-1 +kerning first=111 second=382 amount=-1 +kerning first=111 second=947 amount=-1 +kerning first=111 second=955 amount=-1 +kerning first=111 second=957 amount=-1 +kerning first=111 second=964 amount=-1 +kerning first=111 second=967 amount=-2 +kerning first=111 second=1076 amount=-1 +kerning first=111 second=1078 amount=-2 +kerning first=111 second=1083 amount=-1 +kerning first=111 second=1090 amount=-1 +kerning first=111 second=1093 amount=-2 +kerning first=111 second=1098 amount=-1 +kerning first=111 second=1113 amount=-1 +kerning first=111 second=1175 amount=-2 +kerning first=111 second=1185 amount=-1 +kerning first=111 second=1199 amount=-1 +kerning first=111 second=1203 amount=-2 +kerning first=111 second=1299 amount=-1 +kerning first=111 second=8216 amount=-1 +kerning first=111 second=8217 amount=-1 +kerning first=111 second=8218 amount=-1 +kerning first=111 second=8220 amount=-1 +kerning first=111 second=8221 amount=-1 +kerning first=111 second=8222 amount=-1 +kerning first=111 second=8230 amount=-1 +kerning first=112 second=34 amount=-1 +kerning first=112 second=39 amount=-1 +kerning first=112 second=44 amount=-1 +kerning first=112 second=46 amount=-1 +kerning first=112 second=47 amount=-1 +kerning first=112 second=63 amount=-2 +kerning first=112 second=102 amount=-1 +kerning first=112 second=118 amount=-1 +kerning first=112 second=119 amount=-1 +kerning first=112 second=120 amount=-2 +kerning first=112 second=122 amount=-1 +kerning first=112 second=373 amount=-1 +kerning first=112 second=378 amount=-1 +kerning first=112 second=380 amount=-1 kerning first=112 second=382 amount=-1 -kerning first=1219 second=333 amount=-1 -kerning first=258 second=67 amount=-2 -kerning first=47 second=1081 amount=-1 -kerning first=1064 second=271 amount=-1 -kerning first=190 second=920 amount=-2 -kerning first=305 second=371 amount=-1 -kerning first=302 second=1195 amount=-1 -kerning first=73 second=253 amount=-1 -kerning first=915 second=218 amount=-2 -kerning first=1171 second=346 amount=-1 -kerning first=951 second=360 amount=-2 -kerning first=1220 second=964 amount=-3 -kerning first=1263 second=45 amount=-2 -kerning first=376 second=947 amount=-2 -kerning first=1027 second=287 amount=-1 -kerning first=169 second=945 amount=-1 -kerning first=282 second=1240 amount=-2 -kerning first=8224 second=335 amount=-1 -kerning first=54 second=268 amount=-2 -kerning first=306 second=1069 amount=-1 -kerning first=315 second=81 amount=-1 -kerning first=338 second=243 amount=-1 -kerning first=916 second=373 amount=-4 -kerning first=1174 second=1028 amount=-1 -kerning first=357 second=1263 amount=-1 +kerning first=112 second=947 amount=-1 +kerning first=112 second=955 amount=-1 +kerning first=112 second=957 amount=-1 +kerning first=112 second=964 amount=-1 +kerning first=112 second=967 amount=-2 +kerning first=112 second=1076 amount=-1 +kerning first=112 second=1078 amount=-2 +kerning first=112 second=1083 amount=-1 +kerning first=112 second=1090 amount=-1 +kerning first=112 second=1093 amount=-2 +kerning first=112 second=1098 amount=-1 +kerning first=112 second=1113 amount=-1 +kerning first=112 second=1175 amount=-2 +kerning first=112 second=1185 amount=-1 +kerning first=112 second=1199 amount=-1 +kerning first=112 second=1203 amount=-2 +kerning first=112 second=1299 amount=-1 +kerning first=112 second=8216 amount=-1 +kerning first=112 second=8217 amount=-1 +kerning first=112 second=8218 amount=-1 +kerning first=112 second=8220 amount=-1 +kerning first=112 second=8221 amount=-1 +kerning first=112 second=8222 amount=-1 +kerning first=112 second=8230 amount=-1 +kerning first=113 second=44 amount=2 +kerning first=113 second=46 amount=2 +kerning first=113 second=110 amount=2 +kerning first=113 second=114 amount=2 +kerning first=113 second=102 amount=1 +kerning first=113 second=103 amount=3 +kerning first=113 second=106 amount=11 +kerning first=113 second=108 amount=2 +kerning first=113 second=109 amount=2 +kerning first=113 second=112 amount=2 +kerning first=113 second=121 amount=2 +kerning first=113 second=241 amount=2 +kerning first=113 second=253 amount=2 +kerning first=113 second=287 amount=3 +kerning first=113 second=289 amount=3 +kerning first=113 second=291 amount=3 +kerning first=113 second=324 amount=2 +kerning first=113 second=326 amount=2 +kerning first=113 second=328 amount=2 +kerning first=113 second=331 amount=2 +kerning first=113 second=341 amount=2 +kerning first=113 second=343 amount=2 +kerning first=113 second=345 amount=2 +kerning first=113 second=375 amount=2 +kerning first=113 second=942 amount=2 +kerning first=113 second=951 amount=2 +kerning first=113 second=954 amount=2 +kerning first=113 second=1074 amount=2 +kerning first=113 second=1075 amount=2 +kerning first=113 second=1080 amount=2 +kerning first=113 second=1081 amount=2 +kerning first=113 second=1082 amount=2 +kerning first=113 second=1084 amount=2 +kerning first=113 second=1085 amount=2 +kerning first=113 second=1087 amount=2 +kerning first=113 second=1088 amount=2 +kerning first=113 second=1091 amount=2 +kerning first=113 second=1094 amount=2 +kerning first=113 second=1096 amount=2 +kerning first=113 second=1097 amount=2 +kerning first=113 second=1099 amount=2 +kerning first=113 second=1100 amount=2 +kerning first=113 second=1102 amount=2 +kerning first=113 second=1107 amount=2 +kerning first=113 second=1112 amount=11 +kerning first=113 second=1114 amount=2 +kerning first=113 second=1116 amount=2 +kerning first=113 second=1117 amount=2 +kerning first=113 second=1118 amount=2 +kerning first=113 second=1119 amount=2 +kerning first=113 second=1169 amount=2 +kerning first=113 second=1179 amount=2 +kerning first=113 second=1187 amount=2 +kerning first=113 second=1220 amount=2 +kerning first=113 second=1224 amount=2 +kerning first=113 second=1263 amount=2 +kerning first=113 second=8218 amount=2 +kerning first=113 second=8222 amount=2 +kerning first=113 second=8230 amount=2 +kerning first=115 second=34 amount=-1 +kerning first=115 second=39 amount=-1 +kerning first=115 second=63 amount=-2 +kerning first=115 second=102 amount=-1 +kerning first=115 second=118 amount=-1 +kerning first=115 second=119 amount=-1 +kerning first=115 second=120 amount=-1 +kerning first=115 second=373 amount=-1 +kerning first=115 second=947 amount=-1 +kerning first=115 second=957 amount=-1 +kerning first=115 second=1078 amount=-1 +kerning first=115 second=1093 amount=-1 +kerning first=115 second=1175 amount=-1 +kerning first=115 second=1199 amount=-1 +kerning first=115 second=1203 amount=-1 +kerning first=115 second=8216 amount=-1 +kerning first=115 second=8217 amount=-1 +kerning first=115 second=8220 amount=-1 +kerning first=115 second=8221 amount=-1 +kerning first=116 second=44 amount=-1 +kerning first=116 second=46 amount=-1 +kerning first=116 second=47 amount=-1 +kerning first=116 second=955 amount=-1 +kerning first=116 second=8218 amount=-1 +kerning first=116 second=8222 amount=-1 +kerning first=116 second=8230 amount=-1 +kerning first=118 second=44 amount=-2 +kerning first=118 second=45 amount=-1 +kerning first=118 second=46 amount=-2 +kerning first=118 second=47 amount=-3 +kerning first=118 second=97 amount=-1 +kerning first=118 second=99 amount=-1 +kerning first=118 second=100 amount=-1 +kerning first=118 second=101 amount=-1 +kerning first=118 second=103 amount=-1 +kerning first=118 second=111 amount=-1 +kerning first=118 second=113 amount=-1 +kerning first=118 second=115 amount=-1 +kerning first=118 second=171 amount=-1 +kerning first=118 second=173 amount=-1 +kerning first=118 second=224 amount=-1 +kerning first=118 second=225 amount=-1 +kerning first=118 second=226 amount=-1 +kerning first=118 second=227 amount=-1 +kerning first=118 second=228 amount=-1 +kerning first=118 second=229 amount=-1 +kerning first=118 second=230 amount=-1 +kerning first=118 second=231 amount=-1 +kerning first=118 second=232 amount=-1 +kerning first=118 second=233 amount=-1 +kerning first=118 second=234 amount=-1 +kerning first=118 second=235 amount=-1 +kerning first=118 second=240 amount=-1 +kerning first=118 second=242 amount=-1 +kerning first=118 second=243 amount=-1 +kerning first=118 second=244 amount=-1 +kerning first=118 second=245 amount=-1 +kerning first=118 second=246 amount=-1 +kerning first=118 second=248 amount=-1 +kerning first=118 second=257 amount=-1 +kerning first=118 second=259 amount=-1 +kerning first=118 second=261 amount=-1 +kerning first=118 second=263 amount=-1 +kerning first=118 second=267 amount=-1 +kerning first=118 second=269 amount=-1 +kerning first=118 second=271 amount=-1 +kerning first=118 second=273 amount=-1 +kerning first=118 second=275 amount=-1 +kerning first=118 second=277 amount=-1 +kerning first=118 second=279 amount=-1 +kerning first=118 second=281 amount=-1 +kerning first=118 second=283 amount=-1 +kerning first=118 second=287 amount=-1 +kerning first=118 second=289 amount=-1 +kerning first=118 second=291 amount=-1 +kerning first=118 second=333 amount=-1 +kerning first=118 second=335 amount=-1 +kerning first=118 second=337 amount=-1 +kerning first=118 second=339 amount=-1 +kerning first=118 second=347 amount=-1 +kerning first=118 second=351 amount=-1 +kerning first=118 second=353 amount=-1 +kerning first=118 second=940 amount=-1 +kerning first=118 second=941 amount=-1 +kerning first=118 second=945 amount=-1 +kerning first=118 second=949 amount=-1 +kerning first=118 second=950 amount=-2 +kerning first=118 second=955 amount=-4 +kerning first=118 second=959 amount=-1 +kerning first=118 second=961 amount=-2 +kerning first=118 second=962 amount=-1 +kerning first=118 second=963 amount=-1 +kerning first=118 second=966 amount=-1 +kerning first=118 second=969 amount=-1 +kerning first=118 second=972 amount=-1 +kerning first=118 second=974 amount=-1 +kerning first=118 second=1072 amount=-1 +kerning first=118 second=1077 amount=-1 +kerning first=118 second=1086 amount=-1 +kerning first=118 second=1089 amount=-1 +kerning first=118 second=1092 amount=-1 +kerning first=118 second=1104 amount=-1 +kerning first=118 second=1105 amount=-1 +kerning first=118 second=1108 amount=-1 +kerning first=118 second=1109 amount=-1 +kerning first=118 second=1195 amount=-1 +kerning first=118 second=1241 amount=-1 +kerning first=118 second=1257 amount=-1 +kerning first=118 second=8211 amount=-1 +kerning first=118 second=8212 amount=-1 +kerning first=118 second=8218 amount=-2 +kerning first=118 second=8222 amount=-2 +kerning first=118 second=8230 amount=-2 +kerning first=118 second=8249 amount=-1 +kerning first=119 second=44 amount=-2 +kerning first=119 second=45 amount=-1 +kerning first=119 second=46 amount=-2 +kerning first=119 second=47 amount=-3 +kerning first=119 second=97 amount=-1 +kerning first=119 second=99 amount=-1 +kerning first=119 second=100 amount=-1 +kerning first=119 second=101 amount=-1 +kerning first=119 second=103 amount=-1 +kerning first=119 second=111 amount=-1 +kerning first=119 second=113 amount=-1 +kerning first=119 second=115 amount=-1 +kerning first=119 second=171 amount=-1 +kerning first=119 second=173 amount=-1 +kerning first=119 second=224 amount=-1 +kerning first=119 second=225 amount=-1 +kerning first=119 second=226 amount=-1 +kerning first=119 second=227 amount=-1 +kerning first=119 second=228 amount=-1 +kerning first=119 second=229 amount=-1 +kerning first=119 second=230 amount=-1 +kerning first=119 second=231 amount=-1 +kerning first=119 second=232 amount=-1 +kerning first=119 second=233 amount=-1 +kerning first=119 second=234 amount=-1 +kerning first=119 second=235 amount=-1 +kerning first=119 second=240 amount=-1 +kerning first=119 second=242 amount=-1 +kerning first=119 second=243 amount=-1 +kerning first=119 second=244 amount=-1 +kerning first=119 second=245 amount=-1 +kerning first=119 second=246 amount=-1 +kerning first=119 second=248 amount=-1 +kerning first=119 second=257 amount=-1 +kerning first=119 second=259 amount=-1 +kerning first=119 second=261 amount=-1 +kerning first=119 second=263 amount=-1 +kerning first=119 second=267 amount=-1 +kerning first=119 second=269 amount=-1 +kerning first=119 second=271 amount=-1 +kerning first=119 second=273 amount=-1 +kerning first=119 second=275 amount=-1 +kerning first=119 second=277 amount=-1 +kerning first=119 second=279 amount=-1 +kerning first=119 second=281 amount=-1 +kerning first=119 second=283 amount=-1 +kerning first=119 second=287 amount=-1 +kerning first=119 second=289 amount=-1 +kerning first=119 second=291 amount=-1 +kerning first=119 second=333 amount=-1 +kerning first=119 second=335 amount=-1 +kerning first=119 second=337 amount=-1 +kerning first=119 second=339 amount=-1 +kerning first=119 second=347 amount=-1 +kerning first=119 second=351 amount=-1 +kerning first=119 second=353 amount=-1 +kerning first=119 second=940 amount=-1 +kerning first=119 second=941 amount=-1 +kerning first=119 second=945 amount=-1 +kerning first=119 second=949 amount=-1 +kerning first=119 second=950 amount=-2 +kerning first=119 second=955 amount=-4 +kerning first=119 second=959 amount=-1 +kerning first=119 second=961 amount=-2 +kerning first=119 second=962 amount=-1 +kerning first=119 second=963 amount=-1 +kerning first=119 second=966 amount=-1 +kerning first=119 second=969 amount=-1 +kerning first=119 second=972 amount=-1 +kerning first=119 second=974 amount=-1 +kerning first=119 second=1072 amount=-1 +kerning first=119 second=1077 amount=-1 +kerning first=119 second=1086 amount=-1 +kerning first=119 second=1089 amount=-1 +kerning first=119 second=1092 amount=-1 +kerning first=119 second=1104 amount=-1 +kerning first=119 second=1105 amount=-1 +kerning first=119 second=1108 amount=-1 +kerning first=119 second=1109 amount=-1 +kerning first=119 second=1195 amount=-1 +kerning first=119 second=1241 amount=-1 +kerning first=119 second=1257 amount=-1 +kerning first=119 second=8211 amount=-1 +kerning first=119 second=8212 amount=-1 +kerning first=119 second=8218 amount=-2 +kerning first=119 second=8222 amount=-2 +kerning first=119 second=8230 amount=-2 +kerning first=119 second=8249 amount=-1 +kerning first=120 second=45 amount=-3 +kerning first=120 second=97 amount=-1 +kerning first=120 second=99 amount=-2 +kerning first=120 second=100 amount=-2 +kerning first=120 second=101 amount=-2 +kerning first=120 second=103 amount=-1 +kerning first=120 second=111 amount=-2 +kerning first=120 second=113 amount=-2 +kerning first=120 second=115 amount=-1 +kerning first=120 second=171 amount=-2 +kerning first=120 second=173 amount=-3 +kerning first=120 second=187 amount=-1 +kerning first=120 second=224 amount=-1 +kerning first=120 second=225 amount=-1 +kerning first=120 second=226 amount=-1 +kerning first=120 second=227 amount=-1 +kerning first=120 second=228 amount=-1 +kerning first=120 second=229 amount=-1 +kerning first=120 second=230 amount=-1 +kerning first=120 second=231 amount=-2 +kerning first=120 second=232 amount=-2 +kerning first=120 second=233 amount=-2 +kerning first=120 second=234 amount=-2 +kerning first=120 second=235 amount=-2 +kerning first=120 second=240 amount=-2 +kerning first=120 second=242 amount=-2 +kerning first=120 second=243 amount=-2 +kerning first=120 second=244 amount=-2 +kerning first=120 second=245 amount=-2 +kerning first=120 second=246 amount=-2 +kerning first=120 second=248 amount=-2 +kerning first=120 second=257 amount=-1 +kerning first=120 second=259 amount=-1 +kerning first=120 second=261 amount=-1 +kerning first=120 second=263 amount=-2 +kerning first=120 second=267 amount=-2 kerning first=120 second=269 amount=-2 -kerning first=1298 second=220 amount=-2 -kerning first=1035 second=232 amount=-1 -kerning first=8225 second=966 amount=-1 -kerning first=8240 second=275 amount=-1 -kerning first=58 second=216 amount=-2 -kerning first=1069 second=374 amount=-3 -kerning first=201 second=106 amount=1 -kerning first=920 second=1071 amount=-1 -kerning first=936 second=83 amount=-1 -kerning first=1185 second=233 amount=-2 -kerning first=124 second=217 amount=-2 -kerning first=1299 second=375 amount=-1 -kerning first=39 second=229 amount=-1 -kerning first=182 second=119 amount=-4 -kerning first=178 second=359 amount=-1 -kerning first=289 second=963 amount=-1 -kerning first=294 second=271 amount=-1 -kerning first=56 second=1195 amount=-1 -kerning first=59 second=371 amount=-1 -kerning first=202 second=286 amount=-2 -kerning first=199 second=1026 amount=-1 -kerning first=8364 second=364 amount=-2 -kerning first=79 second=1046 amount=-3 -kerning first=1107 second=246 amount=-1 -kerning first=105 second=230 amount=-1 -kerning first=248 second=120 amount=-2 -kerning first=365 second=964 amount=-3 -kerning first=371 second=45 amount=-2 -kerning first=125 second=372 amount=-5 -kerning first=1263 second=8249 amount=-3 -kerning first=37 second=1262 amount=-2 -kerning first=40 second=1240 amount=-2 -kerning first=1041 second=335 amount=-1 -kerning first=298 second=219 amount=-2 -kerning first=60 second=1069 amount=-1 -kerning first=1083 second=34 amount=-3 -kerning first=206 second=231 amount=-1 -kerning first=323 second=361 amount=-1 -kerning first=86 second=243 amount=-3 -kerning first=226 second=373 amount=-1 -kerning first=103 second=1263 amount=-1 -kerning first=1187 second=1095 amount=-2 -kerning first=44 second=332 amount=-1 -kerning first=1044 second=966 amount=-1 -kerning first=1048 second=275 amount=-1 -kerning first=299 second=374 amount=-5 -kerning first=67 second=256 amount=-1 -kerning first=8378 second=249 amount=-1 -kerning first=8372 second=940 amount=-1 -kerning first=905 second=221 amount=-5 -kerning first=1168 second=111 amount=-1 -kerning first=1117 second=351 amount=-1 -kerning first=944 second=363 amount=-1 -kerning first=253 second=245 amount=-1 -kerning first=163 second=949 amount=-1 -kerning first=166 second=257 amount=-1 -kerning first=8220 second=100 amount=-1 -kerning first=48 second=271 amount=-1 -kerning first=51 second=44 amount=-1 -kerning first=306 second=84 amount=-5 -kerning first=1085 second=364 amount=-2 -kerning first=906 second=376 amount=-5 -kerning first=91 second=346 amount=-1 -kerning first=1118 second=1035 amount=-5 -kerning first=942 second=8212 amount=-2 -kerning first=117 second=45 amount=-2 -kerning first=111 second=964 amount=-1 -kerning first=114 second=273 amount=-1 -kerning first=371 second=8249 amount=-3 -kerning first=374 second=1074 amount=-3 -kerning first=280 second=335 amount=-1 -kerning first=52 second=219 amount=-2 -kerning first=189 second=1108 amount=-1 -kerning first=192 second=347 amount=-1 -kerning first=313 second=34 amount=-3 -kerning first=72 second=361 amount=-1 -kerning first=1083 second=8216 amount=-3 -kerning first=75 second=121 amount=-2 -kerning first=218 second=46 amount=-1 -kerning first=336 second=196 amount=-2 -kerning first=904 second=8250 amount=-1 -kerning first=920 second=86 amount=-2 -kerning first=92 second=1028 amount=-2 -kerning first=95 second=288 amount=-2 -kerning first=358 second=336 amount=-2 -kerning first=258 second=350 amount=-1 -kerning first=168 second=1176 amount=-1 -kerning first=8226 second=225 amount=-1 -kerning first=53 second=374 amount=-5 -kerning first=1070 second=87 amount=-2 -kerning first=196 second=289 amount=-1 -kerning first=1099 second=249 amount=-1 -kerning first=1096 second=940 amount=-1 -kerning first=923 second=261 amount=-1 -kerning first=915 second=953 amount=-1 -kerning first=236 second=1177 amount=-1 -kerning first=239 second=363 amount=-1 -kerning first=169 second=8211 amount=-2 -kerning first=1037 second=100 amount=-1 -kerning first=60 second=84 amount=-5 -kerning first=1071 second=262 amount=-2 -kerning first=200 second=234 amount=-1 -kerning first=315 second=364 amount=-1 -kerning first=80 second=246 amount=-1 -kerning first=1103 second=199 amount=-2 -kerning first=338 second=1035 amount=-5 -kerning first=341 second=291 amount=-1 -kerning first=934 second=211 amount=-2 -kerning first=1177 second=1098 amount=-1 -kerning first=237 second=8212 amount=-2 -kerning first=240 second=1059 amount=-2 -kerning first=1184 second=339 amount=-2 -kerning first=1187 second=101 amount=-1 -kerning first=960 second=353 amount=-1 -kerning first=963 second=113 amount=-1 -kerning first=117 second=8249 amount=-3 -kerning first=126 second=85 amount=-2 -kerning first=38 second=335 amount=-1 -kerning first=41 second=97 amount=-1 -kerning first=61 second=259 amount=-1 -kerning first=64 second=34 amount=-3 -kerning first=313 second=8216 amount=-3 -kerning first=8363 second=943 amount=-1 -kerning first=8366 second=252 amount=-1 -kerning first=84 second=196 amount=-6 -kerning first=221 second=1075 amount=-3 -kerning first=928 second=1184 amount=-5 -kerning first=936 second=366 amount=-2 -kerning first=247 second=248 amount=-1 -kerning first=45 second=47 amount=-1 -kerning first=42 second=275 amount=-1 -kerning first=1046 second=225 amount=-1 -kerning first=39 second=966 amount=-1 -kerning first=300 second=87 amount=-5 -kerning first=1074 second=1185 amount=-3 -kerning first=205 second=337 amount=-1 -kerning first=322 second=940 amount=-1 -kerning first=325 second=249 amount=-1 -kerning first=88 second=111 amount=-2 -kerning first=164 second=210 amount=-2 -kerning first=274 second=338 amount=-2 -kerning first=186 second=352 amount=-1 -kerning first=301 second=262 amount=-2 -kerning first=206 second=968 amount=-1 -kerning first=209 second=277 amount=-1 -kerning first=330 second=199 amount=-2 -kerning first=8377 second=357 amount=-1 -kerning first=901 second=1079 amount=-1 -kerning first=908 second=89 amount=-3 -kerning first=86 second=1035 amount=-5 -kerning first=89 second=291 amount=-4 -kerning first=946 second=251 amount=-1 -kerning first=255 second=113 amount=-1 -kerning first=252 second=353 amount=-1 -kerning first=375 second=263 amount=-1 -kerning first=165 second=365 amount=-1 -kerning first=305 second=212 amount=-2 -kerning first=64 second=8216 amount=-3 -kerning first=1084 second=943 amount=-1 -kerning first=327 second=1118 amount=-1 -kerning first=915 second=39 amount=-3 -kerning first=910 second=266 amount=-3 -kerning first=356 second=279 amount=-3 -kerning first=259 second=63 amount=-2 -kerning first=379 second=213 amount=-1 -kerning first=163 second=8217 amount=-3 -kerning first=1027 second=103 amount=-1 -kerning first=282 second=225 amount=-1 -kerning first=8216 second=1257 amount=-1 -kerning first=54 second=87 amount=-5 -kerning first=1065 second=267 amount=-1 -kerning first=303 second=1185 amount=-3 -kerning first=306 second=367 amount=-1 -kerning first=74 second=249 amount=-1 -kerning first=916 second=214 amount=-2 -kerning first=952 second=356 amount=-5 -kerning first=955 second=116 amount=-1 -kerning first=35 second=100 amount=-1 -kerning first=174 second=250 amount=-1 -kerning first=170 second=941 amount=-1 -kerning first=283 second=380 amount=-1 -kerning first=55 second=262 amount=-2 -kerning first=195 second=1241 amount=-1 -kerning first=198 second=187 amount=-1 -kerning first=304 second=8220 amount=-3 -kerning first=78 second=199 amount=-2 -kerning first=215 second=1079 amount=-1 -kerning first=95 second=1098 amount=-3 -kerning first=118 second=955 amount=-4 -kerning first=121 second=263 amount=-1 -kerning first=1299 second=216 amount=-2 -kerning first=1036 second=228 amount=-1 -kerning first=8226 second=962 amount=-1 -kerning first=59 second=212 amount=-2 -kerning first=1067 second=1194 amount=-2 -kerning first=317 second=252 amount=-1 -kerning first=314 second=943 amount=-1 -kerning first=76 second=1118 amount=-1 -kerning first=79 second=354 amount=-2 -kerning first=225 second=39 amount=-1 -kerning first=102 second=279 amount=-1 -kerning first=958 second=920 amount=-2 -kerning first=125 second=213 amount=-2 -kerning first=1263 second=1195 amount=-1 -kerning first=40 second=225 amount=-1 -kerning first=179 second=355 amount=-1 -kerning first=183 second=115 amount=-1 -kerning first=57 second=1185 amount=-3 -kerning first=60 second=367 amount=-1 -kerning first=8365 second=360 amount=-2 -kerning first=80 second=1038 amount=-2 -kerning first=934 second=945 amount=-1 -kerning first=249 second=116 amount=-1 -kerning first=369 second=268 amount=-2 -kerning first=126 second=368 amount=-2 -kerning first=271 second=281 amount=-1 -kerning first=187 second=65 amount=-3 -kerning first=58 second=8220 amount=-3 -kerning first=207 second=227 amount=-1 -kerning first=327 second=117 amount=-1 -kerning first=902 second=269 amount=-1 -kerning first=1202 second=332 amount=-1 -kerning first=160 second=1066 amount=-5 -kerning first=124 second=8221 amount=-3 -kerning first=276 second=228 amount=-1 -kerning first=1046 second=962 amount=-2 -kerning first=188 second=240 amount=-1 -kerning first=297 second=1194 amount=-2 -kerning first=300 second=370 amount=-2 -kerning first=65 second=943 amount=-1 -kerning first=205 second=1256 amount=-2 -kerning first=906 second=217 amount=-2 -kerning first=354 second=229 amount=-2 -kerning first=949 second=119 amount=-1 -kerning first=1210 second=271 amount=-1 -kerning first=1203 second=963 amount=-1 -kerning first=251 second=920 amount=-2 -kerning first=371 second=1195 amount=-1 -kerning first=374 second=371 amount=-2 -kerning first=968 second=1026 amount=-5 -kerning first=971 second=286 amount=-2 -kerning first=167 second=253 amount=-1 -kerning first=274 second=1257 amount=-1 -kerning first=49 second=267 amount=-1 -kerning first=1063 second=218 amount=-2 -kerning first=1087 second=360 amount=-2 -kerning first=904 second=947 amount=-4 -kerning first=908 second=372 amount=-2 -kerning first=89 second=1101 amount=-4 -kerning first=1170 second=287 amount=-1 -kerning first=1224 second=219 amount=-2 -kerning first=375 second=1069 amount=-1 -kerning first=381 second=81 amount=-1 -kerning first=1026 second=231 amount=-1 -kerning first=8218 second=965 amount=-1 -kerning first=1064 second=373 amount=-4 -kerning first=70 second=1169 amount=-1 -kerning first=73 second=357 amount=-1 -kerning first=76 second=117 amount=-1 -kerning first=93 second=973 amount=-1 -kerning first=1176 second=232 amount=-1 -kerning first=356 second=1085 amount=-2 -kerning first=954 second=244 amount=-2 -kerning first=1256 second=374 amount=-3 -kerning first=262 second=106 amount=1 -kerning first=34 second=228 amount=-1 -kerning first=176 second=118 amount=-4 -kerning first=282 second=962 amount=-1 -kerning first=8230 second=221 amount=-4 -kerning first=51 second=1194 amount=-2 -kerning first=54 second=370 amount=-2 -kerning first=1071 second=83 amount=-1 -kerning first=197 second=283 amount=-1 -kerning first=80 second=67 amount=-2 -kerning first=916 second=949 amount=-1 -kerning first=926 second=257 amount=-1 -kerning first=100 second=229 amount=-1 -kerning first=240 second=359 amount=-1 -kerning first=243 second=119 amount=-1 -kerning first=363 second=271 amount=-1 -kerning first=366 second=44 amount=-1 -kerning first=117 second=1195 amount=-1 -kerning first=260 second=1026 amount=-5 -kerning first=1035 second=334 amount=-2 -kerning first=291 second=218 amount=-2 -kerning first=8240 second=376 amount=-5 -kerning first=201 second=230 amount=-1 -kerning first=316 second=360 amount=-2 -kerning first=1185 second=335 amount=-2 -kerning first=367 second=219 amount=-2 -kerning first=956 second=1108 amount=-1 -kerning first=121 second=1069 amount=-1 -kerning first=160 second=81 amount=-2 -kerning first=1036 second=965 amount=-1 -kerning first=182 second=243 amount=-1 -kerning first=294 second=373 amount=-4 -kerning first=8226 second=8250 amount=-1 -kerning first=8369 second=248 amount=-1 -kerning first=900 second=220 amount=-2 -kerning first=1102 second=1113 amount=-1 -kerning first=931 second=1176 amount=-1 -kerning first=105 second=332 amount=-2 -kerning first=1186 second=966 amount=-1 -kerning first=965 second=289 amount=-1 -kerning first=40 second=962 amount=-1 -kerning first=1047 second=221 amount=-2 -kerning first=301 second=83 amount=-1 -kerning first=206 second=333 amount=-1 -kerning first=901 second=375 amount=-1 -kerning first=86 second=345 amount=-2 -kerning first=934 second=8211 amount=-2 -kerning first=112 second=44 amount=-1 -kerning first=375 second=84 amount=-5 -kerning first=271 second=1090 amount=-3 -kerning first=8218 second=49 amount=-4 -kerning first=47 second=218 amount=-2 -kerning first=1048 second=376 amount=-5 +kerning first=120 second=271 amount=-2 +kerning first=120 second=273 amount=-2 +kerning first=120 second=275 amount=-2 +kerning first=120 second=277 amount=-2 +kerning first=120 second=279 amount=-2 +kerning first=120 second=281 amount=-2 +kerning first=120 second=283 amount=-2 +kerning first=120 second=287 amount=-1 +kerning first=120 second=289 amount=-1 +kerning first=120 second=291 amount=-1 +kerning first=120 second=333 amount=-2 +kerning first=120 second=335 amount=-2 +kerning first=120 second=337 amount=-2 +kerning first=120 second=339 amount=-2 +kerning first=120 second=347 amount=-1 +kerning first=120 second=351 amount=-1 +kerning first=120 second=353 amount=-1 +kerning first=120 second=940 amount=-2 +kerning first=120 second=941 amount=-2 +kerning first=120 second=945 amount=-2 +kerning first=120 second=949 amount=-2 +kerning first=120 second=959 amount=-2 +kerning first=120 second=962 amount=-2 +kerning first=120 second=963 amount=-2 +kerning first=120 second=966 amount=-2 +kerning first=120 second=969 amount=-1 +kerning first=120 second=972 amount=-2 +kerning first=120 second=974 amount=-1 +kerning first=120 second=1072 amount=-1 +kerning first=120 second=1073 amount=-1 +kerning first=120 second=1077 amount=-2 +kerning first=120 second=1086 amount=-2 +kerning first=120 second=1089 amount=-2 +kerning first=120 second=1092 amount=-2 +kerning first=120 second=1095 amount=-1 +kerning first=120 second=1104 amount=-2 +kerning first=120 second=1105 amount=-2 +kerning first=120 second=1108 amount=-2 +kerning first=120 second=1109 amount=-1 +kerning first=120 second=1195 amount=-2 +kerning first=120 second=1241 amount=-2 +kerning first=120 second=1257 amount=-2 +kerning first=120 second=8211 amount=-3 +kerning first=120 second=8212 amount=-3 +kerning first=120 second=8249 amount=-2 +kerning first=120 second=8250 amount=-1 +kerning first=121 second=106 amount=7 +kerning first=121 second=1112 amount=7 +kerning first=122 second=99 amount=-1 +kerning first=122 second=100 amount=-1 +kerning first=122 second=101 amount=-1 +kerning first=122 second=111 amount=-1 +kerning first=122 second=113 amount=-1 +kerning first=122 second=231 amount=-1 +kerning first=122 second=232 amount=-1 +kerning first=122 second=233 amount=-1 +kerning first=122 second=234 amount=-1 +kerning first=122 second=235 amount=-1 +kerning first=122 second=240 amount=-1 +kerning first=122 second=242 amount=-1 +kerning first=122 second=243 amount=-1 +kerning first=122 second=244 amount=-1 +kerning first=122 second=245 amount=-1 +kerning first=122 second=246 amount=-1 +kerning first=122 second=248 amount=-1 +kerning first=122 second=263 amount=-1 +kerning first=122 second=267 amount=-1 +kerning first=122 second=269 amount=-1 +kerning first=122 second=271 amount=-1 +kerning first=122 second=273 amount=-1 +kerning first=122 second=275 amount=-1 +kerning first=122 second=277 amount=-1 +kerning first=122 second=279 amount=-1 +kerning first=122 second=281 amount=-1 +kerning first=122 second=283 amount=-1 +kerning first=122 second=333 amount=-1 +kerning first=122 second=335 amount=-1 +kerning first=122 second=337 amount=-1 +kerning first=122 second=339 amount=-1 +kerning first=122 second=940 amount=-1 +kerning first=122 second=941 amount=-1 +kerning first=122 second=945 amount=-1 +kerning first=122 second=949 amount=-1 +kerning first=122 second=959 amount=-1 +kerning first=122 second=962 amount=-1 +kerning first=122 second=963 amount=-1 +kerning first=122 second=966 amount=-1 +kerning first=122 second=972 amount=-1 +kerning first=122 second=1077 amount=-1 +kerning first=122 second=1086 amount=-1 +kerning first=122 second=1089 amount=-1 +kerning first=122 second=1092 amount=-1 +kerning first=122 second=1104 amount=-1 +kerning first=122 second=1105 amount=-1 +kerning first=122 second=1108 amount=-1 +kerning first=122 second=1195 amount=-1 +kerning first=122 second=1241 amount=-1 +kerning first=122 second=1257 amount=-1 +kerning first=123 second=106 amount=7 +kerning first=123 second=1112 amount=7 +kerning first=171 second=65 amount=-1 +kerning first=171 second=84 amount=-1 +kerning first=171 second=88 amount=-1 +kerning first=171 second=89 amount=-2 +kerning first=171 second=120 amount=-1 +kerning first=171 second=193 amount=-1 +kerning first=171 second=194 amount=-1 +kerning first=171 second=196 amount=-1 +kerning first=171 second=197 amount=-1 +kerning first=171 second=198 amount=-1 +kerning first=171 second=221 amount=-2 +kerning first=171 second=256 amount=-1 +kerning first=171 second=258 amount=-1 +kerning first=171 second=260 amount=-1 +kerning first=171 second=354 amount=-1 +kerning first=171 second=356 amount=-1 +kerning first=171 second=374 amount=-2 +kerning first=171 second=376 amount=-2 +kerning first=171 second=913 amount=-1 +kerning first=171 second=916 amount=-1 +kerning first=171 second=923 amount=-1 +kerning first=171 second=932 amount=-1 +kerning first=171 second=933 amount=-2 +kerning first=171 second=935 amount=-1 +kerning first=171 second=939 amount=-2 +kerning first=171 second=1026 amount=-1 +kerning first=171 second=1033 amount=-1 +kerning first=171 second=1035 amount=-1 +kerning first=171 second=1040 amount=-1 +kerning first=171 second=1044 amount=-1 +kerning first=171 second=1046 amount=-1 +kerning first=171 second=1051 amount=-1 +kerning first=171 second=1058 amount=-1 +kerning first=171 second=1061 amount=-1 +kerning first=171 second=1066 amount=-1 +kerning first=171 second=1078 amount=-1 +kerning first=171 second=1093 amount=-1 +kerning first=171 second=1174 amount=-1 +kerning first=171 second=1175 amount=-1 +kerning first=171 second=1184 amount=-1 +kerning first=171 second=1198 amount=-2 +kerning first=171 second=1202 amount=-1 +kerning first=171 second=1203 amount=-1 +kerning first=171 second=1298 amount=-1 +kerning first=173 second=44 amount=-1 +kerning first=173 second=46 amount=-1 +kerning first=173 second=47 amount=-1 +kerning first=173 second=49 amount=-3 +kerning first=173 second=50 amount=-2 +kerning first=173 second=51 amount=-2 +kerning first=173 second=55 amount=-3 +kerning first=173 second=65 amount=-2 +kerning first=173 second=83 amount=-1 +kerning first=173 second=84 amount=-4 +kerning first=173 second=86 amount=-3 +kerning first=173 second=87 amount=-2 +kerning first=173 second=88 amount=-3 +kerning first=173 second=89 amount=-4 +kerning first=173 second=90 amount=-2 +kerning first=173 second=102 amount=-2 +kerning first=173 second=118 amount=-1 +kerning first=173 second=119 amount=-1 +kerning first=173 second=120 amount=-2 +kerning first=173 second=122 amount=-2 +kerning first=173 second=193 amount=-2 +kerning first=173 second=194 amount=-2 +kerning first=173 second=196 amount=-2 +kerning first=173 second=197 amount=-2 +kerning first=173 second=198 amount=-2 +kerning first=173 second=221 amount=-4 +kerning first=173 second=256 amount=-2 +kerning first=173 second=258 amount=-2 +kerning first=173 second=260 amount=-2 +kerning first=173 second=346 amount=-1 +kerning first=173 second=350 amount=-1 +kerning first=173 second=352 amount=-1 +kerning first=173 second=354 amount=-4 +kerning first=173 second=356 amount=-4 +kerning first=173 second=372 amount=-2 +kerning first=173 second=373 amount=-1 +kerning first=173 second=374 amount=-4 +kerning first=173 second=376 amount=-4 +kerning first=173 second=377 amount=-2 +kerning first=173 second=378 amount=-2 +kerning first=173 second=379 amount=-2 +kerning first=173 second=380 amount=-2 +kerning first=173 second=381 amount=-2 +kerning first=173 second=382 amount=-2 +kerning first=173 second=913 amount=-2 +kerning first=173 second=916 amount=-2 +kerning first=173 second=918 amount=-2 +kerning first=173 second=923 amount=-2 +kerning first=173 second=932 amount=-4 +kerning first=173 second=933 amount=-4 +kerning first=173 second=935 amount=-3 +kerning first=173 second=939 amount=-4 +kerning first=173 second=947 amount=-1 +kerning first=173 second=957 amount=-1 +kerning first=173 second=1026 amount=-4 +kerning first=173 second=1029 amount=-1 +kerning first=173 second=1033 amount=-4 +kerning first=173 second=1035 amount=-4 +kerning first=173 second=1040 amount=-2 +kerning first=173 second=1044 amount=-4 +kerning first=173 second=1046 amount=-3 +kerning first=173 second=1051 amount=-4 +kerning first=173 second=1058 amount=-4 +kerning first=173 second=1061 amount=-3 +kerning first=173 second=1066 amount=-4 +kerning first=173 second=1069 amount=-1 +kerning first=173 second=1071 amount=-1 +kerning first=173 second=1078 amount=-2 +kerning first=173 second=1093 amount=-2 +kerning first=173 second=1174 amount=-3 +kerning first=173 second=1175 amount=-2 +kerning first=173 second=1176 amount=-1 +kerning first=173 second=1184 amount=-4 +kerning first=173 second=1198 amount=-4 +kerning first=173 second=1199 amount=-1 +kerning first=173 second=1202 amount=-3 +kerning first=173 second=1203 amount=-2 +kerning first=173 second=1298 amount=-4 +kerning first=173 second=8218 amount=-1 +kerning first=173 second=8222 amount=-1 +kerning first=173 second=8230 amount=-1 +kerning first=187 second=65 amount=-3 +kerning first=187 second=83 amount=-1 +kerning first=187 second=84 amount=-3 +kerning first=187 second=86 amount=-2 +kerning first=187 second=87 amount=-3 +kerning first=187 second=88 amount=-3 +kerning first=187 second=89 amount=-3 +kerning first=187 second=106 amount=1 +kerning first=187 second=120 amount=-2 +kerning first=187 second=122 amount=-1 +kerning first=187 second=193 amount=-3 +kerning first=187 second=194 amount=-3 +kerning first=187 second=196 amount=-3 +kerning first=187 second=197 amount=-3 +kerning first=187 second=198 amount=-3 +kerning first=187 second=221 amount=-3 +kerning first=187 second=256 amount=-3 +kerning first=187 second=258 amount=-3 +kerning first=187 second=260 amount=-3 kerning first=187 second=346 amount=-1 -kerning first=1080 second=1059 amount=-2 -kerning first=207 second=964 amount=-3 -kerning first=8378 second=353 amount=-1 -kerning first=1168 second=235 amount=-1 -kerning first=356 second=97 amount=-2 -kerning first=113 second=219 amount=-2 -kerning first=250 second=1108 amount=-1 -kerning first=253 second=347 amount=-1 -kerning first=376 second=259 amount=-4 -kerning first=166 second=361 amount=-1 -kerning first=169 second=121 amount=-1 -kerning first=276 second=965 amount=-1 -kerning first=8220 second=224 amount=-1 -kerning first=45 second=1202 amount=-3 -kerning first=48 second=373 amount=-4 -kerning first=1046 second=8250 amount=-1 -kerning first=188 second=1028 amount=-2 -kerning first=191 second=288 amount=-2 -kerning first=1094 second=248 amount=-1 -kerning first=214 second=220 amount=-2 -kerning first=94 second=232 amount=-1 -kerning first=357 second=275 amount=-1 -kerning first=354 second=966 amount=-3 -kerning first=111 second=1203 amount=-2 -kerning first=174 second=71 amount=-2 -kerning first=55 second=83 amount=-1 -kerning first=1063 second=953 amount=-1 -kerning first=195 second=233 amount=-1 -kerning first=304 second=1177 amount=-1 -kerning first=75 second=245 amount=-2 -kerning first=215 second=375 amount=-1 -kerning first=1178 second=100 amount=-1 -kerning first=950 second=1116 amount=-2 -kerning first=121 second=84 amount=-5 -kerning first=1026 second=968 amount=-1 -kerning first=175 second=246 amount=-1 -kerning first=286 second=376 amount=-2 -kerning first=8249 second=89 amount=-2 -kerning first=305 second=8212 amount=-2 -kerning first=8361 second=251 amount=-1 -kerning first=1099 second=353 amount=-1 -kerning first=923 second=365 amount=-1 -kerning first=102 second=97 amount=-1 -kerning first=125 second=34 amount=-3 -kerning first=1037 second=224 amount=-1 -kerning first=282 second=8250 amount=-1 -kerning first=1068 second=1184 amount=-5 -kerning first=1071 second=366 amount=-2 -kerning first=200 second=336 amount=-2 -kerning first=318 second=248 amount=-1 -kerning first=80 second=350 amount=-1 -kerning first=1108 second=63 amount=-1 -kerning first=916 second=8217 amount=-3 -kerning first=100 second=966 amount=-1 -kerning first=103 second=275 amount=-1 -kerning first=369 second=87 amount=-5 -kerning first=1298 second=1185 amount=-3 -kerning first=271 second=99 amount=-1 -kerning first=41 second=221 amount=-5 -kerning first=184 second=111 amount=-1 -kerning first=180 second=351 amount=-1 -kerning first=291 second=953 amount=-1 -kerning first=296 second=261 amount=-1 -kerning first=61 second=363 amount=-1 -kerning first=58 second=1177 amount=-1 -kerning first=1069 second=8218 amount=-1 -kerning first=8366 second=356 amount=-5 -kerning first=8372 second=116 amount=-1 -kerning first=84 second=290 amount=-1 -kerning first=936 second=941 amount=-1 -kerning first=247 second=352 amount=-1 -kerning first=964 second=1241 amount=-1 -kerning first=967 second=187 amount=-1 -kerning first=160 second=364 amount=-2 -kerning first=1299 second=8220 amount=-3 -kerning first=273 second=277 amount=-1 -kerning first=42 second=376 amount=-5 -kerning first=1039 second=1079 amount=-1 -kerning first=182 second=1035 amount=-5 -kerning first=185 second=291 amount=-1 -kerning first=1049 second=89 amount=-5 -kerning first=300 second=211 amount=-2 -kerning first=59 second=8212 amount=-2 -kerning first=62 second=1059 amount=-2 -kerning first=1081 second=251 amount=-1 -kerning first=325 second=353 amount=-1 -kerning first=903 second=263 amount=-1 -kerning first=88 second=235 amount=-2 -kerning first=374 second=212 amount=-3 -kerning first=125 second=8216 amount=-3 -kerning first=8211 second=382 amount=-2 -kerning first=40 second=8250 amount=-1 -kerning first=1051 second=266 amount=-2 -kerning first=1063 second=39 amount=-3 -kerning first=298 second=1184 amount=-5 -kerning first=301 second=366 amount=-2 -kerning first=69 second=248 amount=-1 -kerning first=333 second=63 amount=-2 -kerning first=8377 second=920 amount=-2 -kerning first=1170 second=103 amount=-1 -kerning first=226 second=8217 amount=-1 -kerning first=946 second=355 amount=-1 -kerning first=950 second=115 amount=-1 -kerning first=1219 second=267 amount=-1 -kerning first=375 second=367 amount=-1 -kerning first=168 second=249 amount=-1 -kerning first=165 second=940 amount=-1 -kerning first=47 second=953 amount=-1 -kerning first=50 second=261 amount=-1 -kerning first=1064 second=214 amount=-2 -kerning first=1096 second=116 amount=-1 -kerning first=216 second=88 amount=-3 -kerning first=93 second=338 amount=-2 -kerning first=96 second=100 amount=-1 -kerning first=1168 second=972 amount=-1 -kerning first=236 second=250 amount=-1 -kerning first=1171 second=281 amount=-1 -kerning first=356 second=380 amount=-1 -kerning first=113 second=954 amount=2 -kerning first=256 second=1241 amount=-1 -kerning first=1027 second=227 amount=-1 -kerning first=172 second=199 amount=-2 -kerning first=287 second=89 amount=-5 -kerning first=8224 second=269 amount=-1 -kerning first=54 second=211 amount=-2 +kerning first=187 second=350 amount=-1 +kerning first=187 second=352 amount=-1 +kerning first=187 second=354 amount=-3 +kerning first=187 second=356 amount=-3 +kerning first=187 second=372 amount=-3 +kerning first=187 second=374 amount=-3 +kerning first=187 second=376 amount=-3 +kerning first=187 second=378 amount=-1 +kerning first=187 second=380 amount=-1 +kerning first=187 second=382 amount=-1 +kerning first=187 second=913 amount=-3 +kerning first=187 second=916 amount=-3 +kerning first=187 second=923 amount=-3 +kerning first=187 second=932 amount=-3 +kerning first=187 second=933 amount=-3 +kerning first=187 second=935 amount=-3 +kerning first=187 second=939 amount=-3 +kerning first=187 second=1026 amount=-3 +kerning first=187 second=1029 amount=-1 +kerning first=187 second=1033 amount=-2 +kerning first=187 second=1035 amount=-3 +kerning first=187 second=1040 amount=-3 +kerning first=187 second=1044 amount=-2 +kerning first=187 second=1046 amount=-3 +kerning first=187 second=1051 amount=-2 +kerning first=187 second=1058 amount=-3 +kerning first=187 second=1061 amount=-3 +kerning first=187 second=1066 amount=-3 +kerning first=187 second=1071 amount=-1 +kerning first=187 second=1078 amount=-2 +kerning first=187 second=1093 amount=-2 +kerning first=187 second=1112 amount=1 +kerning first=187 second=1174 amount=-3 +kerning first=187 second=1175 amount=-2 +kerning first=187 second=1184 amount=-3 +kerning first=187 second=1198 amount=-3 +kerning first=187 second=1202 amount=-3 +kerning first=187 second=1203 amount=-2 +kerning first=187 second=1298 amount=-2 +kerning first=193 second=34 amount=-3 +kerning first=193 second=38 amount=-1 +kerning first=193 second=39 amount=-3 +kerning first=193 second=45 amount=-2 +kerning first=193 second=63 amount=-5 +kerning first=193 second=67 amount=-2 +kerning first=193 second=71 amount=-2 +kerning first=193 second=74 amount=-1 +kerning first=193 second=79 amount=-2 +kerning first=193 second=81 amount=-2 +kerning first=193 second=83 amount=-1 +kerning first=193 second=84 amount=-5 +kerning first=193 second=85 amount=-2 +kerning first=193 second=86 amount=-6 +kerning first=193 second=87 amount=-5 +kerning first=193 second=89 amount=-5 +kerning first=193 second=97 amount=-1 +kerning first=193 second=99 amount=-1 +kerning first=193 second=100 amount=-1 +kerning first=193 second=101 amount=-1 +kerning first=193 second=102 amount=-2 +kerning first=193 second=103 amount=-1 +kerning first=193 second=106 amount=1 +kerning first=193 second=111 amount=-1 +kerning first=193 second=113 amount=-1 +kerning first=193 second=115 amount=-1 +kerning first=193 second=116 amount=-1 +kerning first=193 second=117 amount=-1 +kerning first=193 second=118 amount=-4 +kerning first=193 second=119 amount=-4 +kerning first=193 second=121 amount=-1 +kerning first=193 second=171 amount=-3 +kerning first=193 second=173 amount=-2 +kerning first=193 second=187 amount=-1 +kerning first=193 second=199 amount=-2 +kerning first=193 second=210 amount=-2 +kerning first=193 second=211 amount=-2 +kerning first=193 second=212 amount=-2 +kerning first=193 second=213 amount=-2 +kerning first=193 second=214 amount=-2 +kerning first=193 second=216 amount=-2 +kerning first=193 second=217 amount=-2 +kerning first=193 second=218 amount=-2 +kerning first=193 second=219 amount=-2 +kerning first=193 second=220 amount=-2 +kerning first=193 second=221 amount=-5 +kerning first=193 second=224 amount=-1 +kerning first=193 second=225 amount=-1 +kerning first=193 second=226 amount=-1 +kerning first=193 second=227 amount=-1 +kerning first=193 second=228 amount=-1 +kerning first=193 second=229 amount=-1 +kerning first=193 second=230 amount=-1 +kerning first=193 second=231 amount=-1 +kerning first=193 second=232 amount=-1 +kerning first=193 second=233 amount=-1 +kerning first=193 second=234 amount=-1 +kerning first=193 second=235 amount=-1 +kerning first=193 second=240 amount=-1 +kerning first=193 second=242 amount=-1 +kerning first=193 second=243 amount=-1 +kerning first=193 second=244 amount=-1 +kerning first=193 second=245 amount=-1 +kerning first=193 second=246 amount=-1 +kerning first=193 second=248 amount=-1 +kerning first=193 second=249 amount=-1 +kerning first=193 second=250 amount=-1 +kerning first=193 second=251 amount=-1 +kerning first=193 second=252 amount=-1 +kerning first=193 second=253 amount=-1 +kerning first=193 second=257 amount=-1 +kerning first=193 second=259 amount=-1 +kerning first=193 second=261 amount=-1 +kerning first=193 second=262 amount=-2 +kerning first=193 second=263 amount=-1 +kerning first=193 second=266 amount=-2 +kerning first=193 second=267 amount=-1 +kerning first=193 second=268 amount=-2 +kerning first=193 second=269 amount=-1 +kerning first=193 second=271 amount=-1 +kerning first=193 second=273 amount=-1 +kerning first=193 second=275 amount=-1 +kerning first=193 second=277 amount=-1 +kerning first=193 second=279 amount=-1 +kerning first=193 second=281 amount=-1 +kerning first=193 second=283 amount=-1 +kerning first=193 second=286 amount=-2 +kerning first=193 second=287 amount=-1 +kerning first=193 second=288 amount=-2 +kerning first=193 second=289 amount=-1 +kerning first=193 second=290 amount=-2 +kerning first=193 second=291 amount=-1 +kerning first=193 second=332 amount=-2 +kerning first=193 second=333 amount=-1 +kerning first=193 second=334 amount=-2 +kerning first=193 second=335 amount=-1 +kerning first=193 second=336 amount=-2 +kerning first=193 second=337 amount=-1 +kerning first=193 second=338 amount=-2 +kerning first=193 second=339 amount=-1 +kerning first=193 second=346 amount=-1 +kerning first=193 second=347 amount=-1 +kerning first=193 second=350 amount=-1 +kerning first=193 second=351 amount=-1 +kerning first=193 second=352 amount=-1 +kerning first=193 second=353 amount=-1 +kerning first=193 second=354 amount=-5 +kerning first=193 second=355 amount=-1 +kerning first=193 second=356 amount=-5 +kerning first=193 second=357 amount=-1 +kerning first=193 second=359 amount=-1 +kerning first=193 second=360 amount=-2 +kerning first=193 second=361 amount=-1 +kerning first=193 second=362 amount=-2 +kerning first=193 second=363 amount=-1 +kerning first=193 second=364 amount=-2 +kerning first=193 second=365 amount=-1 +kerning first=193 second=366 amount=-2 +kerning first=193 second=367 amount=-1 +kerning first=193 second=368 amount=-2 +kerning first=193 second=369 amount=-1 +kerning first=193 second=370 amount=-2 +kerning first=193 second=371 amount=-1 +kerning first=193 second=372 amount=-5 +kerning first=193 second=373 amount=-4 +kerning first=193 second=374 amount=-5 +kerning first=193 second=375 amount=-1 +kerning first=193 second=376 amount=-5 +kerning first=193 second=920 amount=-2 +kerning first=193 second=927 amount=-2 +kerning first=193 second=932 amount=-5 +kerning first=193 second=933 amount=-5 +kerning first=193 second=936 amount=-3 +kerning first=193 second=939 amount=-5 +kerning first=193 second=940 amount=-1 +kerning first=193 second=941 amount=-1 +kerning first=193 second=943 amount=-1 +kerning first=193 second=945 amount=-1 +kerning first=193 second=947 amount=-4 +kerning first=193 second=949 amount=-1 +kerning first=193 second=950 amount=-1 +kerning first=193 second=953 amount=-1 +kerning first=193 second=957 amount=-4 +kerning first=193 second=959 amount=-1 +kerning first=193 second=962 amount=-1 +kerning first=193 second=963 amount=-1 +kerning first=193 second=964 amount=-3 +kerning first=193 second=965 amount=-1 +kerning first=193 second=966 amount=-1 +kerning first=193 second=968 amount=-1 +kerning first=193 second=970 amount=-1 +kerning first=193 second=972 amount=-1 +kerning first=193 second=973 amount=-1 +kerning first=193 second=1026 amount=-5 +kerning first=193 second=1028 amount=-2 +kerning first=193 second=1029 amount=-1 +kerning first=193 second=1032 amount=-1 +kerning first=193 second=1035 amount=-5 +kerning first=193 second=1038 amount=-2 +kerning first=193 second=1054 amount=-2 +kerning first=193 second=1057 amount=-2 +kerning first=193 second=1058 amount=-5 +kerning first=193 second=1059 amount=-2 +kerning first=193 second=1063 amount=-3 +kerning first=193 second=1066 amount=-5 +kerning first=193 second=1069 amount=-1 +kerning first=193 second=1072 amount=-1 +kerning first=193 second=1077 amount=-1 +kerning first=193 second=1079 amount=-1 +kerning first=193 second=1086 amount=-1 +kerning first=193 second=1089 amount=-1 +kerning first=193 second=1090 amount=-3 +kerning first=193 second=1091 amount=-1 +kerning first=193 second=1092 amount=-1 +kerning first=193 second=1098 amount=-3 +kerning first=193 second=1101 amount=-1 +kerning first=193 second=1104 amount=-1 +kerning first=193 second=1105 amount=-1 +kerning first=193 second=1108 amount=-1 +kerning first=193 second=1109 amount=-1 +kerning first=193 second=1112 amount=1 +kerning first=193 second=1118 amount=-1 +kerning first=193 second=1176 amount=-1 +kerning first=193 second=1177 amount=-1 +kerning first=193 second=1184 amount=-5 +kerning first=193 second=1185 amount=-3 +kerning first=193 second=1194 amount=-2 +kerning first=193 second=1195 amount=-1 +kerning first=193 second=1198 amount=-5 +kerning first=193 second=1199 amount=-4 +kerning first=193 second=1240 amount=-2 +kerning first=193 second=1241 amount=-1 +kerning first=193 second=1256 amount=-2 +kerning first=193 second=1257 amount=-1 +kerning first=193 second=1262 amount=-2 +kerning first=193 second=1263 amount=-1 +kerning first=193 second=8211 amount=-2 +kerning first=193 second=8212 amount=-2 +kerning first=193 second=8216 amount=-3 +kerning first=193 second=8217 amount=-3 +kerning first=193 second=8220 amount=-3 +kerning first=193 second=8221 amount=-3 +kerning first=193 second=8249 amount=-3 +kerning first=193 second=8250 amount=-1 +kerning first=194 second=34 amount=-3 +kerning first=194 second=38 amount=-1 +kerning first=194 second=39 amount=-3 +kerning first=194 second=45 amount=-2 +kerning first=194 second=63 amount=-5 +kerning first=194 second=67 amount=-2 +kerning first=194 second=71 amount=-2 +kerning first=194 second=74 amount=-1 +kerning first=194 second=79 amount=-2 +kerning first=194 second=81 amount=-2 +kerning first=194 second=83 amount=-1 +kerning first=194 second=84 amount=-5 +kerning first=194 second=85 amount=-2 +kerning first=194 second=86 amount=-6 +kerning first=194 second=87 amount=-5 +kerning first=194 second=89 amount=-5 +kerning first=194 second=97 amount=-1 +kerning first=194 second=99 amount=-1 +kerning first=194 second=100 amount=-1 +kerning first=194 second=101 amount=-1 +kerning first=194 second=102 amount=-2 +kerning first=194 second=103 amount=-1 +kerning first=194 second=106 amount=1 +kerning first=194 second=111 amount=-1 +kerning first=194 second=113 amount=-1 +kerning first=194 second=115 amount=-1 +kerning first=194 second=116 amount=-1 +kerning first=194 second=117 amount=-1 +kerning first=194 second=118 amount=-4 +kerning first=194 second=119 amount=-4 +kerning first=194 second=121 amount=-1 +kerning first=194 second=171 amount=-3 +kerning first=194 second=173 amount=-2 +kerning first=194 second=187 amount=-1 +kerning first=194 second=199 amount=-2 +kerning first=194 second=210 amount=-2 +kerning first=194 second=211 amount=-2 +kerning first=194 second=212 amount=-2 +kerning first=194 second=213 amount=-2 +kerning first=194 second=214 amount=-2 +kerning first=194 second=216 amount=-2 +kerning first=194 second=217 amount=-2 +kerning first=194 second=218 amount=-2 +kerning first=194 second=219 amount=-2 +kerning first=194 second=220 amount=-2 +kerning first=194 second=221 amount=-5 +kerning first=194 second=224 amount=-1 +kerning first=194 second=225 amount=-1 +kerning first=194 second=226 amount=-1 +kerning first=194 second=227 amount=-1 +kerning first=194 second=228 amount=-1 +kerning first=194 second=229 amount=-1 +kerning first=194 second=230 amount=-1 +kerning first=194 second=231 amount=-1 +kerning first=194 second=232 amount=-1 +kerning first=194 second=233 amount=-1 +kerning first=194 second=234 amount=-1 +kerning first=194 second=235 amount=-1 +kerning first=194 second=240 amount=-1 +kerning first=194 second=242 amount=-1 +kerning first=194 second=243 amount=-1 +kerning first=194 second=244 amount=-1 +kerning first=194 second=245 amount=-1 +kerning first=194 second=246 amount=-1 +kerning first=194 second=248 amount=-1 +kerning first=194 second=249 amount=-1 +kerning first=194 second=250 amount=-1 +kerning first=194 second=251 amount=-1 +kerning first=194 second=252 amount=-1 +kerning first=194 second=253 amount=-1 +kerning first=194 second=257 amount=-1 +kerning first=194 second=259 amount=-1 +kerning first=194 second=261 amount=-1 +kerning first=194 second=262 amount=-2 +kerning first=194 second=263 amount=-1 +kerning first=194 second=266 amount=-2 +kerning first=194 second=267 amount=-1 +kerning first=194 second=268 amount=-2 +kerning first=194 second=269 amount=-1 +kerning first=194 second=271 amount=-1 +kerning first=194 second=273 amount=-1 +kerning first=194 second=275 amount=-1 +kerning first=194 second=277 amount=-1 +kerning first=194 second=279 amount=-1 +kerning first=194 second=281 amount=-1 +kerning first=194 second=283 amount=-1 +kerning first=194 second=286 amount=-2 +kerning first=194 second=287 amount=-1 +kerning first=194 second=288 amount=-2 +kerning first=194 second=289 amount=-1 +kerning first=194 second=290 amount=-2 +kerning first=194 second=291 amount=-1 +kerning first=194 second=332 amount=-2 +kerning first=194 second=333 amount=-1 +kerning first=194 second=334 amount=-2 +kerning first=194 second=335 amount=-1 +kerning first=194 second=336 amount=-2 +kerning first=194 second=337 amount=-1 +kerning first=194 second=338 amount=-2 kerning first=194 second=339 amount=-1 -kerning first=197 second=101 amount=-1 -kerning first=191 second=1098 amount=-3 -kerning first=74 second=353 amount=-1 -kerning first=77 second=113 amount=-1 -kerning first=906 second=8221 amount=-3 -kerning first=955 second=240 amount=-1 -kerning first=1223 second=1194 amount=-2 -kerning first=35 second=224 amount=-1 -kerning first=174 second=354 amount=-5 -kerning first=170 second=1118 amount=-1 -kerning first=291 second=39 amount=-3 -kerning first=8240 second=217 amount=-2 -kerning first=52 second=1184 amount=-5 -kerning first=55 second=366 amount=-2 -kerning first=1073 second=79 amount=-2 -kerning first=198 second=279 amount=-1 -kerning first=195 second=970 amount=-1 -kerning first=8363 second=119 amount=-4 -kerning first=221 second=213 amount=-3 -kerning first=928 second=253 amount=-1 -kerning first=1175 second=1257 amount=-1 -kerning first=121 second=367 amount=-1 -kerning first=175 second=1038 amount=-2 -kerning first=294 second=214 amount=-2 -kerning first=8226 second=947 amount=-4 -kerning first=53 second=8218 amount=-1 -kerning first=202 second=226 amount=-1 -kerning first=317 second=356 amount=-5 -kerning first=322 second=116 amount=-1 -kerning first=343 second=281 amount=-1 -kerning first=37 second=1079 amount=-1 -kerning first=43 second=89 amount=-5 -kerning first=1041 second=269 amount=-1 -kerning first=63 second=251 amount=-1 -kerning first=8370 second=244 amount=-1 -kerning first=901 second=216 amount=-2 -kerning first=1116 second=106 amount=1 -kerning first=223 second=1066 amount=-5 -kerning first=943 second=118 amount=-2 -kerning first=1187 second=962 amount=-1 -kerning first=249 second=240 amount=-1 -kerning first=369 second=370 amount=-2 -kerning first=126 second=943 amount=-1 -kerning first=162 second=252 amount=-1 -kerning first=47 second=39 amount=-3 -kerning first=1048 second=217 amount=-2 -kerning first=44 second=266 amount=-1 -kerning first=302 second=79 amount=-2 -kerning first=1080 second=359 amount=-1 -kerning first=1084 second=119 amount=-4 -kerning first=902 second=371 amount=-1 -kerning first=84 second=1100 amount=-2 -kerning first=87 second=341 amount=-2 -kerning first=1117 second=286 amount=-2 -kerning first=345 second=1257 amount=-1 -kerning first=8216 second=273 amount=-1 -kerning first=48 second=214 amount=-2 -kerning first=1049 second=372 amount=-5 -kerning first=1046 second=947 amount=-3 -kerning first=185 second=1101 amount=-1 -kerning first=300 second=945 amount=-1 -kerning first=68 second=356 amount=-2 -kerning first=903 second=1069 amount=-1 -kerning first=88 second=972 amount=-2 -kerning first=91 second=281 amount=-1 -kerning first=1169 second=231 amount=-1 -kerning first=354 second=331 amount=-2 -kerning first=1210 second=373 amount=-4 -kerning first=968 second=1263 amount=-1 -kerning first=167 second=357 amount=-1 -kerning first=170 second=117 amount=-1 -kerning first=280 second=269 amount=-1 -kerning first=49 second=369 amount=-1 -kerning first=189 second=973 amount=-1 -kerning first=1095 second=244 amount=-1 -kerning first=215 second=216 amount=-2 -kerning first=95 second=228 amount=-1 -kerning first=238 second=118 amount=-4 -kerning first=258 second=283 amount=-1 -kerning first=1026 second=333 amount=-1 -kerning first=175 second=67 amount=-2 -kerning first=8222 second=375 amount=-1 -kerning first=47 second=8222 amount=-4 -kerning first=56 second=79 amount=-2 -kerning first=1064 second=949 amount=-1 -kerning first=1067 second=257 amount=-1 +kerning first=194 second=346 amount=-1 +kerning first=194 second=347 amount=-1 +kerning first=194 second=350 amount=-1 +kerning first=194 second=351 amount=-1 +kerning first=194 second=352 amount=-1 +kerning first=194 second=353 amount=-1 +kerning first=194 second=354 amount=-5 +kerning first=194 second=355 amount=-1 +kerning first=194 second=356 amount=-5 +kerning first=194 second=357 amount=-1 +kerning first=194 second=359 amount=-1 +kerning first=194 second=360 amount=-2 +kerning first=194 second=361 amount=-1 +kerning first=194 second=362 amount=-2 +kerning first=194 second=363 amount=-1 +kerning first=194 second=364 amount=-2 +kerning first=194 second=365 amount=-1 +kerning first=194 second=366 amount=-2 +kerning first=194 second=367 amount=-1 +kerning first=194 second=368 amount=-2 +kerning first=194 second=369 amount=-1 +kerning first=194 second=370 amount=-2 +kerning first=194 second=371 amount=-1 +kerning first=194 second=372 amount=-5 +kerning first=194 second=373 amount=-4 +kerning first=194 second=374 amount=-5 +kerning first=194 second=375 amount=-1 +kerning first=194 second=376 amount=-5 +kerning first=194 second=920 amount=-2 +kerning first=194 second=927 amount=-2 +kerning first=194 second=932 amount=-5 +kerning first=194 second=933 amount=-5 +kerning first=194 second=936 amount=-3 +kerning first=194 second=939 amount=-5 +kerning first=194 second=940 amount=-1 +kerning first=194 second=941 amount=-1 +kerning first=194 second=943 amount=-1 +kerning first=194 second=945 amount=-1 +kerning first=194 second=947 amount=-4 +kerning first=194 second=949 amount=-1 +kerning first=194 second=950 amount=-1 +kerning first=194 second=953 amount=-1 +kerning first=194 second=957 amount=-4 +kerning first=194 second=959 amount=-1 +kerning first=194 second=962 amount=-1 +kerning first=194 second=963 amount=-1 +kerning first=194 second=964 amount=-3 +kerning first=194 second=965 amount=-1 +kerning first=194 second=966 amount=-1 +kerning first=194 second=968 amount=-1 +kerning first=194 second=970 amount=-1 +kerning first=194 second=972 amount=-1 +kerning first=194 second=973 amount=-1 +kerning first=194 second=1026 amount=-5 +kerning first=194 second=1028 amount=-2 +kerning first=194 second=1029 amount=-1 +kerning first=194 second=1032 amount=-1 +kerning first=194 second=1035 amount=-5 +kerning first=194 second=1038 amount=-2 +kerning first=194 second=1054 amount=-2 +kerning first=194 second=1057 amount=-2 +kerning first=194 second=1058 amount=-5 +kerning first=194 second=1059 amount=-2 +kerning first=194 second=1063 amount=-3 +kerning first=194 second=1066 amount=-5 +kerning first=194 second=1069 amount=-1 +kerning first=194 second=1072 amount=-1 +kerning first=194 second=1077 amount=-1 +kerning first=194 second=1079 amount=-1 +kerning first=194 second=1086 amount=-1 +kerning first=194 second=1089 amount=-1 +kerning first=194 second=1090 amount=-3 +kerning first=194 second=1091 amount=-1 +kerning first=194 second=1092 amount=-1 +kerning first=194 second=1098 amount=-3 +kerning first=194 second=1101 amount=-1 +kerning first=194 second=1104 amount=-1 +kerning first=194 second=1105 amount=-1 +kerning first=194 second=1108 amount=-1 +kerning first=194 second=1109 amount=-1 +kerning first=194 second=1112 amount=1 +kerning first=194 second=1118 amount=-1 +kerning first=194 second=1176 amount=-1 +kerning first=194 second=1177 amount=-1 +kerning first=194 second=1184 amount=-5 +kerning first=194 second=1185 amount=-3 +kerning first=194 second=1194 amount=-2 +kerning first=194 second=1195 amount=-1 +kerning first=194 second=1198 amount=-5 +kerning first=194 second=1199 amount=-4 +kerning first=194 second=1240 amount=-2 +kerning first=194 second=1241 amount=-1 +kerning first=194 second=1256 amount=-2 +kerning first=194 second=1257 amount=-1 +kerning first=194 second=1262 amount=-2 +kerning first=194 second=1263 amount=-1 +kerning first=194 second=8211 amount=-2 +kerning first=194 second=8212 amount=-2 +kerning first=194 second=8216 amount=-3 +kerning first=194 second=8217 amount=-3 +kerning first=194 second=8220 amount=-3 +kerning first=194 second=8221 amount=-3 +kerning first=194 second=8249 amount=-3 +kerning first=194 second=8250 amount=-1 +kerning first=196 second=34 amount=-3 +kerning first=196 second=38 amount=-1 +kerning first=196 second=39 amount=-3 +kerning first=196 second=45 amount=-2 +kerning first=196 second=63 amount=-5 +kerning first=196 second=67 amount=-2 +kerning first=196 second=71 amount=-2 +kerning first=196 second=74 amount=-1 +kerning first=196 second=79 amount=-2 +kerning first=196 second=81 amount=-2 +kerning first=196 second=83 amount=-1 +kerning first=196 second=84 amount=-5 +kerning first=196 second=85 amount=-2 +kerning first=196 second=86 amount=-6 +kerning first=196 second=87 amount=-5 +kerning first=196 second=89 amount=-5 +kerning first=196 second=97 amount=-1 +kerning first=196 second=99 amount=-1 +kerning first=196 second=100 amount=-1 +kerning first=196 second=101 amount=-1 +kerning first=196 second=102 amount=-2 +kerning first=196 second=103 amount=-1 +kerning first=196 second=106 amount=1 +kerning first=196 second=111 amount=-1 +kerning first=196 second=113 amount=-1 +kerning first=196 second=115 amount=-1 +kerning first=196 second=116 amount=-1 +kerning first=196 second=117 amount=-1 +kerning first=196 second=118 amount=-4 +kerning first=196 second=119 amount=-4 +kerning first=196 second=121 amount=-1 +kerning first=196 second=171 amount=-3 +kerning first=196 second=173 amount=-2 +kerning first=196 second=187 amount=-1 +kerning first=196 second=199 amount=-2 +kerning first=196 second=210 amount=-2 +kerning first=196 second=211 amount=-2 +kerning first=196 second=212 amount=-2 +kerning first=196 second=213 amount=-2 +kerning first=196 second=214 amount=-2 +kerning first=196 second=216 amount=-2 +kerning first=196 second=217 amount=-2 +kerning first=196 second=218 amount=-2 +kerning first=196 second=219 amount=-2 +kerning first=196 second=220 amount=-2 +kerning first=196 second=221 amount=-5 +kerning first=196 second=224 amount=-1 +kerning first=196 second=225 amount=-1 +kerning first=196 second=226 amount=-1 +kerning first=196 second=227 amount=-1 +kerning first=196 second=228 amount=-1 kerning first=196 second=229 amount=-1 -kerning first=314 second=119 amount=-4 -kerning first=73 second=920 amount=-2 -kerning first=310 second=359 amount=-1 -kerning first=334 second=1026 amount=-2 -kerning first=93 second=1257 amount=-1 -kerning first=1176 second=334 amount=-2 -kerning first=1171 second=1090 amount=-3 -kerning first=1037 second=45 amount=-2 -kerning first=176 second=242 amount=-1 -kerning first=1027 second=964 amount=-3 -kerning first=282 second=947 amount=-4 -kerning first=287 second=372 amount=-5 -kerning first=54 second=945 amount=-1 -kerning first=197 second=1240 amount=-2 -kerning first=194 second=1262 amount=-2 -kerning first=1097 second=1108 amount=-1 -kerning first=223 second=81 amount=-2 -kerning first=341 second=231 amount=-1 -kerning first=926 second=361 amount=-1 -kerning first=934 second=121 amount=-1 -kerning first=363 second=373 amount=-4 -kerning first=955 second=1028 amount=-2 -kerning first=960 second=288 amount=-2 -kerning first=260 second=1263 amount=-1 -kerning first=38 second=269 amount=-1 -kerning first=1073 second=362 amount=-2 -kerning first=201 second=332 amount=-2 -kerning first=321 second=244 amount=-1 -kerning first=1194 second=221 amount=-2 -kerning first=964 second=233 amount=-1 -kerning first=1299 second=1177 amount=-1 -kerning first=42 second=217 amount=-2 -kerning first=1039 second=375 amount=-1 -kerning first=294 second=949 amount=-1 -kerning first=297 second=257 amount=-1 -kerning first=65 second=119 amount=-4 -kerning first=62 second=359 amount=-1 -kerning first=202 second=963 amount=-1 -kerning first=205 second=271 amount=-1 -kerning first=208 second=44 amount=-1 -kerning first=8369 second=352 amount=-1 -kerning first=903 second=84 amount=-5 -kerning first=942 second=246 amount=-1 -kerning first=108 second=218 amount=-2 -kerning first=161 second=360 amount=-2 -kerning first=274 second=273 amount=-1 -kerning first=40 second=947 amount=-4 -kerning first=43 second=372 amount=-5 -kerning first=1037 second=8249 amount=-3 -kerning first=1051 second=85 amount=-2 -kerning first=186 second=287 amount=-1 -kerning first=209 second=219 amount=-2 -kerning first=323 second=1108 amount=-1 -kerning first=904 second=259 amount=-1 -kerning first=89 second=231 amount=-4 -kerning first=355 second=46 amount=-1 -kerning first=109 second=373 amount=-1 -kerning first=249 second=1028 amount=-2 -kerning first=252 second=288 amount=-2 -kerning first=278 second=220 amount=-2 -kerning first=8212 second=378 amount=-2 -kerning first=1241 second=1113 amount=-1 -kerning first=1059 second=260 amount=-2 -kerning first=190 second=232 amount=-1 -kerning first=302 second=362 amount=-2 -kerning first=299 second=1176 amount=-1 -kerning first=70 second=244 amount=-1 -kerning first=210 second=374 amount=-3 -kerning first=1168 second=337 amount=-1 -kerning first=1171 second=99 amount=-1 -kerning first=236 second=71 amount=-2 -kerning first=951 second=111 amount=-1 -kerning first=948 second=351 amount=-1 -kerning first=1220 second=261 amount=-1 -kerning first=256 second=233 amount=-1 -kerning first=376 second=363 amount=-2 -kerning first=970 second=967 amount=-2 -kerning first=169 second=245 amount=-1 -kerning first=48 second=949 amount=-1 -kerning first=51 second=257 amount=-1 -kerning first=1065 second=210 amount=-1 -kerning first=300 second=8211 amount=-2 -kerning first=74 second=194 amount=-1 -kerning first=91 second=1090 amount=-3 -kerning first=94 second=334 amount=-2 -kerning first=1174 second=277 amount=-1 -kerning first=237 second=246 amount=-1 -kerning first=357 second=376 amount=-5 -kerning first=952 second=291 amount=-1 -kerning first=374 second=8212 amount=-4 -kerning first=35 second=45 amount=-2 -kerning first=8225 second=263 amount=-1 -kerning first=195 second=335 amount=-1 -kerning first=198 second=97 amount=-1 -kerning first=72 second=1108 amount=-1 -kerning first=95 second=965 amount=-1 -kerning first=101 second=46 amount=-1 -kerning first=1224 second=1184 amount=-5 -kerning first=36 second=220 amount=-2 -kerning first=1036 second=171 amount=-3 -kerning first=175 second=350 amount=-1 -kerning first=53 second=1176 amount=-1 -kerning first=56 second=362 amount=-2 -kerning first=1064 second=8217 amount=-3 +kerning first=196 second=230 amount=-1 +kerning first=196 second=231 amount=-1 +kerning first=196 second=232 amount=-1 +kerning first=196 second=233 amount=-1 +kerning first=196 second=234 amount=-1 +kerning first=196 second=235 amount=-1 +kerning first=196 second=240 amount=-1 +kerning first=196 second=242 amount=-1 +kerning first=196 second=243 amount=-1 +kerning first=196 second=244 amount=-1 +kerning first=196 second=245 amount=-1 +kerning first=196 second=246 amount=-1 +kerning first=196 second=248 amount=-1 +kerning first=196 second=249 amount=-1 +kerning first=196 second=250 amount=-1 +kerning first=196 second=251 amount=-1 +kerning first=196 second=252 amount=-1 +kerning first=196 second=253 amount=-1 +kerning first=196 second=257 amount=-1 +kerning first=196 second=259 amount=-1 +kerning first=196 second=261 amount=-1 +kerning first=196 second=262 amount=-2 +kerning first=196 second=263 amount=-1 +kerning first=196 second=266 amount=-2 +kerning first=196 second=267 amount=-1 +kerning first=196 second=268 amount=-2 +kerning first=196 second=269 amount=-1 +kerning first=196 second=271 amount=-1 +kerning first=196 second=273 amount=-1 +kerning first=196 second=275 amount=-1 +kerning first=196 second=277 amount=-1 +kerning first=196 second=279 amount=-1 +kerning first=196 second=281 amount=-1 +kerning first=196 second=283 amount=-1 +kerning first=196 second=286 amount=-2 +kerning first=196 second=287 amount=-1 +kerning first=196 second=288 amount=-2 +kerning first=196 second=289 amount=-1 +kerning first=196 second=290 amount=-2 +kerning first=196 second=291 amount=-1 +kerning first=196 second=332 amount=-2 +kerning first=196 second=333 amount=-1 +kerning first=196 second=334 amount=-2 +kerning first=196 second=335 amount=-1 +kerning first=196 second=336 amount=-2 +kerning first=196 second=337 amount=-1 +kerning first=196 second=338 amount=-2 +kerning first=196 second=339 amount=-1 +kerning first=196 second=346 amount=-1 +kerning first=196 second=347 amount=-1 +kerning first=196 second=350 amount=-1 +kerning first=196 second=351 amount=-1 +kerning first=196 second=352 amount=-1 +kerning first=196 second=353 amount=-1 +kerning first=196 second=354 amount=-5 +kerning first=196 second=355 amount=-1 +kerning first=196 second=356 amount=-5 +kerning first=196 second=357 amount=-1 +kerning first=196 second=359 amount=-1 +kerning first=196 second=360 amount=-2 +kerning first=196 second=361 amount=-1 +kerning first=196 second=362 amount=-2 +kerning first=196 second=363 amount=-1 +kerning first=196 second=364 amount=-2 +kerning first=196 second=365 amount=-1 +kerning first=196 second=366 amount=-2 +kerning first=196 second=367 amount=-1 +kerning first=196 second=368 amount=-2 +kerning first=196 second=369 amount=-1 +kerning first=196 second=370 amount=-2 +kerning first=196 second=371 amount=-1 +kerning first=196 second=372 amount=-5 +kerning first=196 second=373 amount=-4 +kerning first=196 second=374 amount=-5 +kerning first=196 second=375 amount=-1 +kerning first=196 second=376 amount=-5 +kerning first=196 second=920 amount=-2 +kerning first=196 second=927 amount=-2 +kerning first=196 second=932 amount=-5 +kerning first=196 second=933 amount=-5 +kerning first=196 second=936 amount=-3 +kerning first=196 second=939 amount=-5 +kerning first=196 second=940 amount=-1 +kerning first=196 second=941 amount=-1 +kerning first=196 second=943 amount=-1 +kerning first=196 second=945 amount=-1 +kerning first=196 second=947 amount=-4 +kerning first=196 second=949 amount=-1 +kerning first=196 second=950 amount=-1 +kerning first=196 second=953 amount=-1 +kerning first=196 second=957 amount=-4 +kerning first=196 second=959 amount=-1 +kerning first=196 second=962 amount=-1 +kerning first=196 second=963 amount=-1 +kerning first=196 second=964 amount=-3 +kerning first=196 second=965 amount=-1 kerning first=196 second=966 amount=-1 -kerning first=8361 second=355 amount=-1 -kerning first=8364 second=115 amount=-1 -kerning first=343 second=99 amount=-1 -kerning first=931 second=249 amount=-1 -kerning first=923 second=940 amount=-1 -kerning first=365 second=261 amount=-1 -kerning first=1256 second=8218 amount=-1 -kerning first=37 second=375 amount=-1 -kerning first=1041 second=88 amount=-2 -kerning first=179 second=290 amount=-2 -kerning first=54 second=8211 amount=-2 -kerning first=1071 second=941 amount=-1 -kerning first=318 second=352 amount=-1 -kerning first=1103 second=1241 amount=-1 -kerning first=223 second=364 amount=-2 -kerning first=103 second=376 amount=-5 -kerning first=1184 second=1079 amount=-1 -kerning first=369 second=211 amount=-2 -kerning first=960 second=1098 amount=-3 -kerning first=963 second=339 amount=-1 -kerning first=123 second=1059 amount=-2 -kerning first=120 second=8212 amount=-3 -kerning first=35 second=8249 amount=-3 -kerning first=1044 second=263 amount=-1 -kerning first=44 second=85 amount=-1 -kerning first=184 second=235 amount=-1 -kerning first=296 second=365 amount=-1 -kerning first=8240 second=8221 amount=-3 -kerning first=8260 second=1066 amount=-5 -kerning first=8372 second=240 amount=-1 -kerning first=902 second=212 amount=-2 -kerning first=936 second=1118 amount=-1 -kerning first=1202 second=266 amount=-1 -kerning first=367 second=1184 amount=-5 -kerning first=967 second=279 amount=-1 -kerning first=163 second=248 amount=-1 -kerning first=964 second=970 amount=-1 -kerning first=276 second=171 amount=-3 -kerning first=45 second=260 amount=-2 -kerning first=1049 second=213 amount=-2 -kerning first=294 second=8217 amount=-3 -kerning first=68 second=197 amount=-2 -kerning first=1085 second=115 amount=-1 -kerning first=1081 second=355 amount=-1 -kerning first=211 second=87 amount=-2 -kerning first=903 second=367 amount=-1 -kerning first=900 second=1185 amount=-3 -kerning first=88 second=337 amount=-2 -kerning first=91 second=99 amount=-1 -kerning first=942 second=1038 amount=-2 -kerning first=108 second=953 amount=-1 -kerning first=1210 second=214 amount=-2 -kerning first=368 second=8218 amount=-1 -kerning first=971 second=226 amount=-1 -kerning first=49 second=210 amount=-2 -kerning first=1051 second=368 amount=-2 -kerning first=189 second=338 amount=-2 -kerning first=192 second=100 amount=-1 -kerning first=304 second=250 amount=-1 -kerning first=301 second=941 amount=-1 -kerning first=69 second=352 amount=-1 -kerning first=330 second=1241 amount=-1 -kerning first=901 second=8220 amount=-3 -kerning first=92 second=277 amount=-1 -kerning first=89 second=968 amount=-2 -kerning first=1170 second=227 amount=-1 -kerning first=358 second=89 amount=-5 -kerning first=1219 second=369 amount=-1 -kerning first=252 second=1098 amount=-3 -kerning first=255 second=339 amount=-1 -kerning first=258 second=101 amount=-1 -kerning first=168 second=353 amount=-1 -kerning first=8222 second=216 amount=-1 -kerning first=47 second=1179 amount=-1 -kerning first=1048 second=8221 amount=-3 -kerning first=50 second=365 amount=-1 -kerning first=1096 second=240 amount=-1 -kerning first=337 second=102 amount=-1 -kerning first=915 second=252 amount=-1 -kerning first=910 second=943 amount=-2 -kerning first=96 second=224 amount=-1 -kerning first=1168 second=1256 amount=-2 -kerning first=236 second=354 amount=-5 -kerning first=113 second=1184 amount=-5 -kerning first=1263 second=79 amount=-2 -kerning first=256 second=970 amount=-1 -kerning first=287 second=213 amount=-2 -kerning first=8224 second=371 amount=-1 -kerning first=8220 second=1195 amount=-1 -kerning first=48 second=8217 amount=-3 -kerning first=197 second=225 amount=-1 -kerning first=214 second=1185 amount=-3 -kerning first=237 second=1038 amount=-2 -kerning first=363 second=214 amount=-2 -kerning first=952 second=1101 amount=-1 -kerning first=114 second=8218 amount=-3 -kerning first=38 second=88 amount=-2 -kerning first=1035 second=268 amount=-2 -kerning first=8225 second=1069 amount=-1 -kerning first=8260 second=81 amount=-2 -kerning first=58 second=250 amount=-1 -kerning first=55 second=941 amount=-1 -kerning first=8363 second=243 amount=-1 -kerning first=78 second=1241 amount=-1 -kerning first=215 second=8220 amount=-3 -kerning first=928 second=357 amount=-1 -kerning first=936 second=117 amount=-1 -kerning first=1185 second=269 amount=-2 -kerning first=956 second=973 amount=-1 -kerning first=124 second=251 amount=-1 -kerning first=266 second=381 amount=-1 -kerning first=39 second=263 amount=-1 -kerning first=1039 second=216 amount=-2 -kerning first=289 second=1066 amount=-5 -kerning first=322 second=240 amount=-1 -kerning first=1107 second=283 amount=-1 -kerning first=942 second=67 amount=-2 -kerning first=105 second=266 amount=-2 -kerning first=108 second=39 amount=-3 -kerning first=362 second=8222 amount=-1 -kerning first=371 second=79 amount=-2 -kerning first=965 second=229 amount=-1 -kerning first=8211 second=44 amount=-1 -kerning first=43 second=213 amount=-2 -kerning first=1041 second=371 amount=-1 -kerning first=1037 second=1195 amount=-1 -kerning first=186 second=103 amount=-1 -kerning first=298 second=253 amount=-1 -kerning first=63 second=355 amount=-1 -kerning first=206 second=267 amount=-1 -kerning first=8370 second=346 amount=-1 -kerning first=1116 second=230 amount=-1 -kerning first=369 second=945 amount=-1 -kerning first=963 second=1262 amount=-2 -kerning first=162 second=356 amount=-5 -kerning first=165 second=116 amount=-1 -kerning first=44 second=368 amount=-1 -kerning first=184 second=972 amount=-1 -kerning first=70 second=65 amount=-4 -kerning first=1084 second=243 amount=-1 -kerning first=8372 second=1028 amount=-2 -kerning first=8378 second=288 amount=-2 -kerning first=250 second=973 amount=-1 -kerning first=42 second=8221 amount=-3 -kerning first=45 second=1066 amount=-4 -kerning first=191 second=228 amount=-1 -kerning first=306 second=118 amount=-4 -kerning first=68 second=916 amount=-2 -kerning first=88 second=1256 amount=-3 -kerning first=1169 second=333 amount=-1 -kerning first=237 second=67 amount=-2 -kerning first=357 second=217 amount=-2 -kerning first=117 second=79 amount=-2 -kerning first=1210 second=949 amount=-1 -kerning first=1223 second=257 amount=-1 -kerning first=971 second=963 amount=-1 -kerning first=167 second=920 amount=-2 -kerning first=1028 second=44 amount=-1 -kerning first=280 second=371 amount=-1 -kerning first=8225 second=84 amount=-5 -kerning first=52 second=253 amount=-1 -kerning first=189 second=1257 amount=-1 -kerning first=1095 second=346 amount=-1 -kerning first=908 second=1174 amount=-3 -kerning first=912 second=360 amount=-2 -kerning first=1170 second=964 amount=-3 -kerning first=1178 second=45 amount=-2 -kerning first=238 second=242 amount=-1 -kerning first=1175 second=273 amount=-1 -kerning first=358 second=372 amount=-5 -kerning first=255 second=1262 amount=-2 -kerning first=258 second=1240 amount=-2 -kerning first=289 second=81 amount=-2 -kerning first=8226 second=259 amount=-1 -kerning first=1067 second=361 amount=-1 -kerning first=314 second=243 amount=-1 -kerning first=1096 second=1028 amount=-2 -kerning first=1099 second=288 amount=-2 -kerning first=958 second=232 amount=-1 -kerning first=1263 second=362 amount=-2 -kerning first=37 second=216 amount=-2 -kerning first=1034 second=374 amount=-5 -kerning first=179 second=106 amount=1 -kerning first=60 second=118 amount=-4 +kerning first=196 second=968 amount=-1 +kerning first=196 second=970 amount=-1 +kerning first=196 second=972 amount=-1 +kerning first=196 second=973 amount=-1 +kerning first=196 second=1026 amount=-5 +kerning first=196 second=1028 amount=-2 +kerning first=196 second=1029 amount=-1 +kerning first=196 second=1032 amount=-1 +kerning first=196 second=1035 amount=-5 +kerning first=196 second=1038 amount=-2 +kerning first=196 second=1054 amount=-2 +kerning first=196 second=1057 amount=-2 +kerning first=196 second=1058 amount=-5 +kerning first=196 second=1059 amount=-2 +kerning first=196 second=1063 amount=-3 +kerning first=196 second=1066 amount=-5 +kerning first=196 second=1069 amount=-1 +kerning first=196 second=1072 amount=-1 +kerning first=196 second=1077 amount=-1 +kerning first=196 second=1079 amount=-1 +kerning first=196 second=1086 amount=-1 +kerning first=196 second=1089 amount=-1 +kerning first=196 second=1090 amount=-3 +kerning first=196 second=1091 amount=-1 +kerning first=196 second=1092 amount=-1 +kerning first=196 second=1098 amount=-3 +kerning first=196 second=1101 amount=-1 +kerning first=196 second=1104 amount=-1 +kerning first=196 second=1105 amount=-1 +kerning first=196 second=1108 amount=-1 +kerning first=196 second=1109 amount=-1 +kerning first=196 second=1112 amount=1 +kerning first=196 second=1118 amount=-1 +kerning first=196 second=1176 amount=-1 +kerning first=196 second=1177 amount=-1 +kerning first=196 second=1184 amount=-5 +kerning first=196 second=1185 amount=-3 +kerning first=196 second=1194 amount=-2 +kerning first=196 second=1195 amount=-1 +kerning first=196 second=1198 amount=-5 +kerning first=196 second=1199 amount=-4 +kerning first=196 second=1240 amount=-2 +kerning first=196 second=1241 amount=-1 +kerning first=196 second=1256 amount=-2 +kerning first=196 second=1257 amount=-1 +kerning first=196 second=1262 amount=-2 +kerning first=196 second=1263 amount=-1 +kerning first=196 second=8211 amount=-2 +kerning first=196 second=8212 amount=-2 +kerning first=196 second=8216 amount=-3 +kerning first=196 second=8217 amount=-3 +kerning first=196 second=8220 amount=-3 +kerning first=196 second=8221 amount=-3 +kerning first=196 second=8249 amount=-3 +kerning first=196 second=8250 amount=-1 +kerning first=197 second=34 amount=-3 +kerning first=197 second=38 amount=-1 +kerning first=197 second=39 amount=-3 +kerning first=197 second=45 amount=-2 +kerning first=197 second=63 amount=-5 +kerning first=197 second=67 amount=-2 +kerning first=197 second=71 amount=-2 +kerning first=197 second=74 amount=-1 +kerning first=197 second=79 amount=-2 +kerning first=197 second=81 amount=-2 +kerning first=197 second=83 amount=-1 +kerning first=197 second=84 amount=-5 +kerning first=197 second=85 amount=-2 +kerning first=197 second=86 amount=-6 +kerning first=197 second=87 amount=-5 +kerning first=197 second=89 amount=-5 +kerning first=197 second=97 amount=-1 +kerning first=197 second=99 amount=-1 +kerning first=197 second=100 amount=-1 +kerning first=197 second=101 amount=-1 +kerning first=197 second=102 amount=-2 +kerning first=197 second=103 amount=-1 +kerning first=197 second=106 amount=1 +kerning first=197 second=111 amount=-1 +kerning first=197 second=113 amount=-1 +kerning first=197 second=115 amount=-1 +kerning first=197 second=116 amount=-1 +kerning first=197 second=117 amount=-1 +kerning first=197 second=118 amount=-4 +kerning first=197 second=119 amount=-4 +kerning first=197 second=121 amount=-1 +kerning first=197 second=171 amount=-3 +kerning first=197 second=173 amount=-2 +kerning first=197 second=187 amount=-1 +kerning first=197 second=199 amount=-2 +kerning first=197 second=210 amount=-2 +kerning first=197 second=211 amount=-2 +kerning first=197 second=212 amount=-2 +kerning first=197 second=213 amount=-2 +kerning first=197 second=214 amount=-2 +kerning first=197 second=216 amount=-2 +kerning first=197 second=217 amount=-2 +kerning first=197 second=218 amount=-2 +kerning first=197 second=219 amount=-2 +kerning first=197 second=220 amount=-2 +kerning first=197 second=221 amount=-5 +kerning first=197 second=224 amount=-1 +kerning first=197 second=225 amount=-1 +kerning first=197 second=226 amount=-1 +kerning first=197 second=227 amount=-1 +kerning first=197 second=228 amount=-1 +kerning first=197 second=229 amount=-1 +kerning first=197 second=230 amount=-1 +kerning first=197 second=231 amount=-1 +kerning first=197 second=232 amount=-1 +kerning first=197 second=233 amount=-1 +kerning first=197 second=234 amount=-1 +kerning first=197 second=235 amount=-1 +kerning first=197 second=240 amount=-1 +kerning first=197 second=242 amount=-1 +kerning first=197 second=243 amount=-1 +kerning first=197 second=244 amount=-1 +kerning first=197 second=245 amount=-1 +kerning first=197 second=246 amount=-1 +kerning first=197 second=248 amount=-1 +kerning first=197 second=249 amount=-1 +kerning first=197 second=250 amount=-1 +kerning first=197 second=251 amount=-1 +kerning first=197 second=252 amount=-1 +kerning first=197 second=253 amount=-1 +kerning first=197 second=257 amount=-1 +kerning first=197 second=259 amount=-1 +kerning first=197 second=261 amount=-1 +kerning first=197 second=262 amount=-2 +kerning first=197 second=263 amount=-1 +kerning first=197 second=266 amount=-2 +kerning first=197 second=267 amount=-1 +kerning first=197 second=268 amount=-2 +kerning first=197 second=269 amount=-1 +kerning first=197 second=271 amount=-1 +kerning first=197 second=273 amount=-1 +kerning first=197 second=275 amount=-1 +kerning first=197 second=277 amount=-1 +kerning first=197 second=279 amount=-1 +kerning first=197 second=281 amount=-1 +kerning first=197 second=283 amount=-1 +kerning first=197 second=286 amount=-2 +kerning first=197 second=287 amount=-1 +kerning first=197 second=288 amount=-2 +kerning first=197 second=289 amount=-1 +kerning first=197 second=290 amount=-2 +kerning first=197 second=291 amount=-1 +kerning first=197 second=332 amount=-2 +kerning first=197 second=333 amount=-1 +kerning first=197 second=334 amount=-2 +kerning first=197 second=335 amount=-1 +kerning first=197 second=336 amount=-2 +kerning first=197 second=337 amount=-1 +kerning first=197 second=338 amount=-2 +kerning first=197 second=339 amount=-1 +kerning first=197 second=346 amount=-1 +kerning first=197 second=347 amount=-1 +kerning first=197 second=350 amount=-1 +kerning first=197 second=351 amount=-1 +kerning first=197 second=352 amount=-1 +kerning first=197 second=353 amount=-1 +kerning first=197 second=354 amount=-5 +kerning first=197 second=355 amount=-1 +kerning first=197 second=356 amount=-5 +kerning first=197 second=357 amount=-1 +kerning first=197 second=359 amount=-1 +kerning first=197 second=360 amount=-2 +kerning first=197 second=361 amount=-1 +kerning first=197 second=362 amount=-2 +kerning first=197 second=363 amount=-1 +kerning first=197 second=364 amount=-2 +kerning first=197 second=365 amount=-1 +kerning first=197 second=366 amount=-2 +kerning first=197 second=367 amount=-1 +kerning first=197 second=368 amount=-2 +kerning first=197 second=369 amount=-1 +kerning first=197 second=370 amount=-2 +kerning first=197 second=371 amount=-1 +kerning first=197 second=372 amount=-5 +kerning first=197 second=373 amount=-4 +kerning first=197 second=374 amount=-5 +kerning first=197 second=375 amount=-1 +kerning first=197 second=376 amount=-5 +kerning first=197 second=920 amount=-2 +kerning first=197 second=927 amount=-2 +kerning first=197 second=932 amount=-5 +kerning first=197 second=933 amount=-5 +kerning first=197 second=936 amount=-3 +kerning first=197 second=939 amount=-5 +kerning first=197 second=940 amount=-1 +kerning first=197 second=941 amount=-1 +kerning first=197 second=943 amount=-1 +kerning first=197 second=945 amount=-1 +kerning first=197 second=947 amount=-4 +kerning first=197 second=949 amount=-1 +kerning first=197 second=950 amount=-1 +kerning first=197 second=953 amount=-1 +kerning first=197 second=957 amount=-4 +kerning first=197 second=959 amount=-1 kerning first=197 second=962 amount=-1 -kerning first=8365 second=111 amount=-1 -kerning first=80 second=283 amount=-1 -kerning first=1103 second=233 amount=-1 -kerning first=341 second=333 amount=-1 -kerning first=934 second=245 amount=-1 -kerning first=103 second=217 amount=-2 -kerning first=1184 second=375 amount=-2 -kerning first=363 second=949 amount=-1 -kerning first=123 second=359 amount=-1 -kerning first=126 second=119 amount=-4 -kerning first=35 second=1195 amount=-1 -kerning first=38 second=371 amount=-1 -kerning first=177 second=1026 amount=-5 -kerning first=180 second=286 amount=-2 -kerning first=1044 second=84 amount=-2 -kerning first=8260 second=364 amount=-2 -kerning first=1076 second=246 amount=-1 -kerning first=204 second=218 amount=-2 -kerning first=321 second=346 amount=-1 -kerning first=8363 second=1035 amount=-5 -kerning first=8366 second=291 amount=-1 -kerning first=84 second=230 amount=-2 -kerning first=345 second=273 amount=-1 -kerning first=101 second=947 amount=-1 -kerning first=1178 second=8249 amount=-1 -kerning first=1202 second=85 amount=-1 -kerning first=247 second=287 amount=-1 -kerning first=964 second=335 amount=-1 -kerning first=967 second=97 amount=-1 -kerning first=273 second=219 amount=-2 -kerning first=1049 second=34 amount=-3 -kerning first=1046 second=259 amount=-1 -kerning first=185 second=231 amount=-1 -kerning first=297 second=361 amount=-1 -kerning first=300 second=121 amount=-1 -kerning first=65 second=243 amount=-1 -kerning first=205 second=373 amount=-4 -kerning first=322 second=1028 amount=-2 -kerning first=325 second=288 amount=-2 -kerning first=942 second=350 amount=-1 -kerning first=251 second=232 amount=-1 -kerning first=371 second=362 amount=-2 -kerning first=374 second=122 amount=-2 -kerning first=965 second=966 amount=-1 -kerning first=164 second=244 amount=-1 -kerning first=968 second=275 amount=-1 -kerning first=274 second=374 amount=-5 -kerning first=304 second=71 amount=-2 -kerning first=1083 second=351 amount=-1 -kerning first=1087 second=111 amount=-1 -kerning first=330 second=233 amount=-1 -kerning first=901 second=1177 amount=-1 -kerning first=904 second=363 amount=-1 -kerning first=86 second=1087 amount=-2 -kerning first=89 second=333 amount=-4 -kerning first=946 second=290 amount=-2 -kerning first=1219 second=210 amount=-2 -kerning first=369 second=8211 amount=-2 -kerning first=8218 second=262 amount=-1 -kerning first=190 second=334 amount=-2 -kerning first=305 second=246 amount=-1 -kerning first=70 second=346 amount=-1 -kerning first=1084 second=1035 amount=-5 -kerning first=213 second=258 amount=-2 -kerning first=8378 second=1098 amount=-3 -kerning first=902 second=8212 amount=-2 -kerning first=905 second=1059 amount=-2 -kerning first=96 second=45 amount=-2 -kerning first=93 second=273 amount=-1 -kerning first=951 second=235 amount=-1 -kerning first=1220 second=365 amount=-1 -kerning first=256 second=335 amount=-1 -kerning first=166 second=1108 amount=-1 -kerning first=169 second=347 amount=-1 -kerning first=282 second=259 amount=-1 -kerning first=287 second=34 amount=-3 -kerning first=8224 second=212 amount=-2 -kerning first=51 second=361 amount=-1 -kerning first=1049 second=8216 amount=-3 -kerning first=54 second=121 amount=-1 -kerning first=191 second=965 amount=-1 -kerning first=74 second=288 amount=-2 -kerning first=916 second=248 amount=-1 -kerning first=237 second=350 amount=-1 -kerning first=234 second=1113 amount=-1 -kerning first=360 second=260 amount=-2 -kerning first=117 second=362 amount=-2 -kerning first=1210 second=8217 amount=-3 -kerning first=260 second=275 amount=-1 -kerning first=1035 second=87 amount=-5 -kerning first=174 second=289 amount=-1 -kerning first=8225 second=367 amount=-1 -kerning first=58 second=71 amount=-2 -kerning first=198 second=221 amount=-5 -kerning first=316 second=111 amount=-1 -kerning first=78 second=233 amount=-1 -kerning first=215 second=1177 amount=-1 -kerning first=336 second=967 amount=-1 -kerning first=956 second=338 amount=-2 -kerning first=1299 second=250 amount=-1 -kerning first=1036 second=262 amount=-3 -kerning first=178 second=234 amount=-1 -kerning first=289 second=364 amount=-2 -kerning first=8222 second=8220 amount=-1 -kerning first=59 second=246 amount=-1 -kerning first=1074 second=199 amount=-2 -kerning first=199 second=376 amount=-2 -kerning first=314 second=1035 amount=-5 -kerning first=317 second=291 amount=-1 -kerning first=1099 second=1098 amount=-3 -kerning first=1107 second=101 amount=-1 -kerning first=931 second=353 amount=-1 -kerning first=96 second=8249 amount=-3 -kerning first=105 second=85 amount=-2 -kerning first=1186 second=263 amount=-1 -kerning first=365 second=365 amount=-1 -kerning first=40 second=259 amount=-1 -kerning first=43 second=34 amount=-3 -kerning first=1041 second=212 amount=-2 -kerning first=287 second=8216 amount=-3 -kerning first=1071 second=1118 amount=-1 +kerning first=197 second=963 amount=-1 +kerning first=197 second=964 amount=-3 +kerning first=197 second=965 amount=-1 +kerning first=197 second=966 amount=-1 +kerning first=197 second=968 amount=-1 +kerning first=197 second=970 amount=-1 +kerning first=197 second=972 amount=-1 +kerning first=197 second=973 amount=-1 +kerning first=197 second=1026 amount=-5 +kerning first=197 second=1028 amount=-2 +kerning first=197 second=1029 amount=-1 +kerning first=197 second=1032 amount=-1 +kerning first=197 second=1035 amount=-5 +kerning first=197 second=1038 amount=-2 +kerning first=197 second=1054 amount=-2 +kerning first=197 second=1057 amount=-2 +kerning first=197 second=1058 amount=-5 +kerning first=197 second=1059 amount=-2 +kerning first=197 second=1063 amount=-3 +kerning first=197 second=1066 amount=-5 +kerning first=197 second=1069 amount=-1 +kerning first=197 second=1072 amount=-1 +kerning first=197 second=1077 amount=-1 +kerning first=197 second=1079 amount=-1 +kerning first=197 second=1086 amount=-1 +kerning first=197 second=1089 amount=-1 +kerning first=197 second=1090 amount=-3 +kerning first=197 second=1091 amount=-1 +kerning first=197 second=1092 amount=-1 +kerning first=197 second=1098 amount=-3 +kerning first=197 second=1101 amount=-1 +kerning first=197 second=1104 amount=-1 +kerning first=197 second=1105 amount=-1 +kerning first=197 second=1108 amount=-1 +kerning first=197 second=1109 amount=-1 +kerning first=197 second=1112 amount=1 +kerning first=197 second=1118 amount=-1 +kerning first=197 second=1176 amount=-1 +kerning first=197 second=1177 amount=-1 +kerning first=197 second=1184 amount=-5 +kerning first=197 second=1185 amount=-3 +kerning first=197 second=1194 amount=-2 +kerning first=197 second=1195 amount=-1 +kerning first=197 second=1198 amount=-5 +kerning first=197 second=1199 amount=-4 +kerning first=197 second=1240 amount=-2 +kerning first=197 second=1241 amount=-1 +kerning first=197 second=1256 amount=-2 +kerning first=197 second=1257 amount=-1 +kerning first=197 second=1262 amount=-2 +kerning first=197 second=1263 amount=-1 +kerning first=197 second=8211 amount=-2 +kerning first=197 second=8212 amount=-2 +kerning first=197 second=8216 amount=-3 +kerning first=197 second=8217 amount=-3 +kerning first=197 second=8220 amount=-3 +kerning first=197 second=8221 amount=-3 +kerning first=197 second=8249 amount=-3 kerning first=197 second=8250 amount=-1 -kerning first=1103 second=970 amount=-1 -kerning first=363 second=8217 amount=-3 -kerning first=184 second=337 amount=-1 -kerning first=296 second=940 amount=-1 -kerning first=299 second=249 amount=-1 -kerning first=64 second=351 amount=-1 -kerning first=207 second=261 amount=-1 -kerning first=204 second=953 amount=-1 -kerning first=8366 second=1101 amount=-1 -kerning first=1117 second=226 amount=-1 -kerning first=1202 second=368 amount=-1 -kerning first=250 second=338 amount=-2 -kerning first=253 second=100 amount=-1 -kerning first=163 second=352 amount=-1 -kerning first=276 second=262 amount=-2 -kerning first=1039 second=8220 amount=-3 -kerning first=185 second=968 amount=-1 -kerning first=188 second=277 amount=-1 -kerning first=303 second=199 amount=-2 -kerning first=65 second=1035 amount=-5 -kerning first=325 second=1098 amount=-3 -kerning first=906 second=251 amount=-1 -kerning first=354 second=263 amount=-3 -kerning first=1195 second=8221 amount=-1 -kerning first=280 second=212 amount=-2 -kerning first=43 second=8216 amount=-3 -kerning first=1063 second=252 amount=-1 -kerning first=1051 second=943 amount=-1 -kerning first=192 second=224 amount=-1 -kerning first=301 second=1118 amount=-1 -kerning first=304 second=354 amount=-5 -kerning first=209 second=1184 amount=-5 -kerning first=330 second=970 amount=-1 -kerning first=95 second=171 amount=-3 -kerning first=358 second=213 amount=-2 -kerning first=950 second=341 amount=-2 -kerning first=109 second=8217 amount=-1 -kerning first=1224 second=253 amount=-1 -kerning first=258 second=225 amount=-1 -kerning first=1026 second=267 amount=-1 -kerning first=278 second=1185 amount=-3 -kerning first=53 second=249 amount=-1 -kerning first=50 second=940 amount=-1 -kerning first=305 second=1038 amount=-2 +kerning first=199 second=44 amount=-1 +kerning first=199 second=45 amount=-1 +kerning first=199 second=46 amount=-1 +kerning first=199 second=47 amount=-1 +kerning first=199 second=65 amount=-1 +kerning first=199 second=84 amount=-1 +kerning first=199 second=86 amount=-1 +kerning first=199 second=87 amount=-1 +kerning first=199 second=88 amount=-2 +kerning first=199 second=89 amount=-2 +kerning first=199 second=90 amount=-1 +kerning first=199 second=106 amount=1 +kerning first=199 second=171 amount=-1 +kerning first=199 second=173 amount=-1 +kerning first=199 second=193 amount=-1 +kerning first=199 second=194 amount=-1 +kerning first=199 second=196 amount=-1 +kerning first=199 second=197 amount=-1 +kerning first=199 second=198 amount=-1 +kerning first=199 second=221 amount=-2 +kerning first=199 second=256 amount=-1 +kerning first=199 second=258 amount=-1 +kerning first=199 second=260 amount=-1 +kerning first=199 second=354 amount=-1 +kerning first=199 second=356 amount=-1 +kerning first=199 second=372 amount=-1 +kerning first=199 second=374 amount=-2 +kerning first=199 second=376 amount=-2 +kerning first=199 second=377 amount=-1 +kerning first=199 second=379 amount=-1 +kerning first=199 second=381 amount=-1 +kerning first=199 second=913 amount=-1 +kerning first=199 second=916 amount=-1 +kerning first=199 second=918 amount=-1 +kerning first=199 second=923 amount=-1 +kerning first=199 second=932 amount=-1 +kerning first=199 second=933 amount=-2 +kerning first=199 second=935 amount=-2 +kerning first=199 second=939 amount=-2 +kerning first=199 second=1026 amount=-1 +kerning first=199 second=1033 amount=-1 +kerning first=199 second=1035 amount=-1 +kerning first=199 second=1040 amount=-1 +kerning first=199 second=1044 amount=-1 +kerning first=199 second=1046 amount=-2 +kerning first=199 second=1051 amount=-1 +kerning first=199 second=1058 amount=-1 +kerning first=199 second=1061 amount=-2 +kerning first=199 second=1066 amount=-1 +kerning first=199 second=1069 amount=1 +kerning first=199 second=1112 amount=1 +kerning first=199 second=1174 amount=-2 +kerning first=199 second=1176 amount=1 +kerning first=199 second=1184 amount=-1 +kerning first=199 second=1198 amount=-2 +kerning first=199 second=1202 amount=-2 +kerning first=199 second=1298 amount=-1 +kerning first=199 second=8211 amount=-1 +kerning first=199 second=8212 amount=-1 +kerning first=199 second=8218 amount=-1 +kerning first=199 second=8222 amount=-1 +kerning first=199 second=8230 amount=-1 +kerning first=199 second=8249 amount=-1 +kerning first=208 second=44 amount=-1 +kerning first=208 second=46 amount=-1 +kerning first=208 second=47 amount=-1 +kerning first=208 second=65 amount=-2 +kerning first=208 second=84 amount=-2 +kerning first=208 second=86 amount=-2 +kerning first=208 second=87 amount=-2 +kerning first=208 second=88 amount=-3 +kerning first=208 second=89 amount=-3 +kerning first=208 second=90 amount=-1 +kerning first=208 second=193 amount=-2 +kerning first=208 second=194 amount=-2 +kerning first=208 second=196 amount=-2 +kerning first=208 second=197 amount=-2 +kerning first=208 second=198 amount=-2 +kerning first=208 second=221 amount=-3 +kerning first=208 second=256 amount=-2 +kerning first=208 second=258 amount=-2 +kerning first=208 second=260 amount=-2 +kerning first=208 second=354 amount=-2 +kerning first=208 second=356 amount=-2 +kerning first=208 second=372 amount=-2 +kerning first=208 second=374 amount=-3 +kerning first=208 second=376 amount=-3 +kerning first=208 second=377 amount=-1 +kerning first=208 second=379 amount=-1 +kerning first=208 second=381 amount=-1 +kerning first=208 second=913 amount=-2 +kerning first=208 second=916 amount=-2 +kerning first=208 second=918 amount=-1 +kerning first=208 second=923 amount=-2 +kerning first=208 second=932 amount=-2 +kerning first=208 second=933 amount=-3 +kerning first=208 second=935 amount=-3 +kerning first=208 second=939 amount=-3 +kerning first=208 second=955 amount=-2 +kerning first=208 second=967 amount=-1 +kerning first=208 second=1026 amount=-2 +kerning first=208 second=1033 amount=-1 +kerning first=208 second=1035 amount=-2 +kerning first=208 second=1040 amount=-2 +kerning first=208 second=1044 amount=-1 +kerning first=208 second=1046 amount=-3 +kerning first=208 second=1051 amount=-1 +kerning first=208 second=1058 amount=-2 +kerning first=208 second=1061 amount=-3 +kerning first=208 second=1066 amount=-2 +kerning first=208 second=1071 amount=-1 +kerning first=208 second=1174 amount=-3 +kerning first=208 second=1184 amount=-2 +kerning first=208 second=1198 amount=-3 +kerning first=208 second=1202 amount=-3 +kerning first=208 second=1298 amount=-1 +kerning first=208 second=8218 amount=-1 +kerning first=208 second=8222 amount=-1 +kerning first=208 second=8230 amount=-1 +kerning first=210 second=44 amount=-1 +kerning first=210 second=46 amount=-1 +kerning first=210 second=47 amount=-1 +kerning first=210 second=65 amount=-2 +kerning first=210 second=84 amount=-2 +kerning first=210 second=86 amount=-2 +kerning first=210 second=87 amount=-2 +kerning first=210 second=88 amount=-3 +kerning first=210 second=89 amount=-3 +kerning first=210 second=90 amount=-1 +kerning first=210 second=193 amount=-2 +kerning first=210 second=194 amount=-2 +kerning first=210 second=196 amount=-2 +kerning first=210 second=197 amount=-2 +kerning first=210 second=198 amount=-2 +kerning first=210 second=221 amount=-3 +kerning first=210 second=256 amount=-2 +kerning first=210 second=258 amount=-2 +kerning first=210 second=260 amount=-2 +kerning first=210 second=354 amount=-2 +kerning first=210 second=356 amount=-2 +kerning first=210 second=372 amount=-2 +kerning first=210 second=374 amount=-3 +kerning first=210 second=376 amount=-3 +kerning first=210 second=377 amount=-1 +kerning first=210 second=379 amount=-1 +kerning first=210 second=381 amount=-1 +kerning first=210 second=913 amount=-2 +kerning first=210 second=916 amount=-2 +kerning first=210 second=918 amount=-1 +kerning first=210 second=923 amount=-2 +kerning first=210 second=932 amount=-2 +kerning first=210 second=933 amount=-3 +kerning first=210 second=935 amount=-3 +kerning first=210 second=939 amount=-3 +kerning first=210 second=955 amount=-2 +kerning first=210 second=967 amount=-1 +kerning first=210 second=1026 amount=-2 +kerning first=210 second=1033 amount=-1 +kerning first=210 second=1035 amount=-2 +kerning first=210 second=1040 amount=-2 +kerning first=210 second=1044 amount=-1 +kerning first=210 second=1046 amount=-3 +kerning first=210 second=1051 amount=-1 +kerning first=210 second=1058 amount=-2 +kerning first=210 second=1061 amount=-3 +kerning first=210 second=1066 amount=-2 +kerning first=210 second=1071 amount=-1 +kerning first=210 second=1174 amount=-3 +kerning first=210 second=1184 amount=-2 +kerning first=210 second=1198 amount=-3 +kerning first=210 second=1202 amount=-3 +kerning first=210 second=1298 amount=-1 kerning first=210 second=8218 amount=-1 -kerning first=915 second=356 amount=-5 -kerning first=923 second=116 amount=-1 -kerning first=1176 second=268 amount=-2 -kerning first=951 second=972 amount=-1 -kerning first=954 second=281 amount=-2 -kerning first=172 second=1241 amount=-1 -kerning first=176 second=187 amount=-1 -kerning first=279 second=8220 amount=-1 -kerning first=57 second=199 amount=-2 -kerning first=1071 second=117 amount=-1 -kerning first=194 second=1079 amount=-1 -kerning first=200 second=89 amount=-5 -kerning first=77 second=339 amount=-1 -kerning first=80 second=101 amount=-1 -kerning first=74 second=1098 amount=-3 -kerning first=100 second=263 amount=-1 -kerning first=1184 second=216 amount=-3 -kerning first=357 second=8221 amount=-3 -kerning first=960 second=228 amount=-1 -kerning first=268 second=90 amount=-1 -kerning first=38 second=212 amount=-2 -kerning first=1035 second=370 amount=-2 -kerning first=291 second=252 amount=-1 -kerning first=58 second=354 amount=-5 -kerning first=55 second=1118 amount=-1 -kerning first=1069 second=1044 amount=-1 -kerning first=201 second=266 amount=-2 -kerning first=204 second=39 amount=-3 -kerning first=78 second=970 amount=-1 -kerning first=928 second=920 amount=-2 -kerning first=1178 second=1195 amount=-1 -kerning first=247 second=103 amount=-1 -kerning first=367 second=253 amount=-1 -kerning first=956 second=1257 amount=-1 -kerning first=124 second=355 amount=-1 -kerning first=160 second=115 amount=-1 -kerning first=36 second=1185 amount=-3 -kerning first=8249 second=1174 amount=-1 -kerning first=59 second=1038 amount=-2 -kerning first=1078 second=242 amount=-2 -kerning first=205 second=214 amount=-2 -kerning first=317 second=1101 amount=-1 -kerning first=8369 second=287 amount=-1 -kerning first=105 second=368 amount=-2 -kerning first=37 second=8220 amount=-3 -kerning first=186 second=227 amount=-1 -kerning first=301 second=117 amount=-1 -kerning first=298 second=357 amount=-1 -kerning first=206 second=369 amount=-1 -kerning first=323 second=973 amount=-1 -kerning first=8377 second=232 amount=-1 -kerning first=103 second=8221 amount=-3 -kerning first=946 second=106 amount=1 -kerning first=252 second=228 amount=-1 -kerning first=375 second=118 amount=-4 -kerning first=165 second=240 amount=-1 -kerning first=271 second=1194 amount=-2 -kerning first=47 second=252 amount=-1 -kerning first=184 second=1256 amount=-2 -kerning first=187 second=382 amount=-1 -kerning first=305 second=67 amount=-2 -kerning first=905 second=359 amount=-1 -kerning first=910 second=119 amount=-2 -kerning first=87 second=1081 amount=-2 -kerning first=1117 second=963 amount=-1 -kerning first=1168 second=271 amount=-1 -kerning first=944 second=1026 amount=-5 -kerning first=948 second=286 amount=-2 -kerning first=113 second=253 amount=-1 -kerning first=250 second=1257 amount=-1 -kerning first=973 second=218 amount=-2 -kerning first=8220 second=258 amount=-3 -kerning first=1062 second=360 amount=-1 -kerning first=306 second=242 amount=-1 -kerning first=94 second=268 amount=-2 -kerning first=1174 second=219 amount=-1 -kerning first=952 second=231 amount=-1 -kerning first=1223 second=361 amount=-1 -kerning first=380 second=243 amount=-1 -kerning first=52 second=357 amount=-1 -kerning first=55 second=117 amount=-1 -kerning first=195 second=269 amount=-1 -kerning first=72 second=973 amount=-1 -kerning first=241 second=106 amount=1 -kerning first=121 second=118 amount=-4 -kerning first=1299 second=71 amount=-2 -kerning first=258 second=962 amount=-1 -kerning first=1240 second=193 amount=-2 -kerning first=972 second=8230 amount=-1 -kerning first=175 second=283 amount=-1 -kerning first=1036 second=83 amount=-1 -kerning first=8226 second=363 amount=-1 -kerning first=59 second=67 amount=-2 -kerning first=8361 second=290 amount=-2 -kerning first=343 second=44 amount=-3 -kerning first=96 second=1195 amount=-1 -kerning first=239 second=1026 amount=-5 -kerning first=1186 second=84 amount=-2 -kerning first=958 second=334 amount=-2 -kerning first=179 second=230 amount=-1 -kerning first=8224 second=8212 amount=-2 -kerning first=8230 second=1059 amount=-1 -kerning first=60 second=242 amount=-1 -kerning first=197 second=947 amount=-4 -kerning first=200 second=372 amount=-5 -kerning first=318 second=287 amount=-1 -kerning first=8365 second=235 amount=-1 -kerning first=80 second=1240 amount=-2 -kerning first=77 second=1262 amount=-2 -kerning first=1103 second=335 amount=-1 -kerning first=926 second=1108 amount=-1 -kerning first=934 second=347 amount=-1 -kerning first=100 second=1069 amount=-1 -kerning first=369 second=121 amount=-1 -kerning first=960 second=965 amount=-1 -kerning first=966 second=46 amount=-1 -kerning first=126 second=243 amount=-1 -kerning first=177 second=1263 amount=-1 -kerning first=1073 second=1113 amount=-1 -kerning first=84 second=332 amount=-1 -kerning first=967 second=221 amount=-5 -kerning first=266 second=8230 amount=-1 -kerning first=276 second=83 amount=-1 -kerning first=1039 second=1177 amount=-1 -kerning first=1046 second=363 amount=-1 -kerning first=185 second=333 amount=-1 -kerning first=300 second=245 amount=-1 -kerning first=1081 second=290 amount=-2 -kerning first=205 second=949 amount=-1 -kerning first=88 second=271 amount=-2 -kerning first=251 second=334 amount=-2 -kerning first=374 second=246 amount=-4 -kerning first=248 second=1090 amount=-1 -kerning first=968 second=376 amount=-5 -kerning first=164 second=346 amount=-1 -kerning first=46 second=360 amount=-1 -kerning first=1041 second=8212 amount=-2 -kerning first=189 second=273 amount=-1 -kerning first=192 second=45 amount=-2 -kerning first=186 second=964 amount=-3 -kerning first=69 second=287 amount=-1 -kerning first=1087 second=235 amount=-1 -kerning first=330 second=335 amount=-1 -kerning first=92 second=219 amount=-2 -kerning first=358 second=34 amount=-3 -kerning first=252 second=965 amount=-1 -kerning first=165 second=1028 amount=-2 -kerning first=168 second=288 amount=-2 -kerning first=8212 second=1184 amount=-4 -kerning first=8218 second=366 amount=-1 -kerning first=1064 second=248 amount=-1 -kerning first=193 second=220 amount=-2 -kerning first=305 second=350 amount=-1 -kerning first=73 second=232 amount=-1 -kerning first=337 second=47 amount=-1 -kerning first=93 second=374 amount=-5 -kerning first=1176 second=87 amount=-5 -kerning first=236 second=289 amount=-1 -kerning first=951 second=337 amount=-1 -kerning first=954 second=99 amount=-2 -kerning first=1220 second=940 amount=-1 -kerning first=376 second=1114 amount=-3 -kerning first=382 second=111 amount=-1 -kerning first=973 second=953 amount=-1 -kerning first=1027 second=261 amount=-1 -kerning first=172 second=233 amount=-1 -kerning first=282 second=363 amount=-1 -kerning first=8216 second=8218 amount=-1 -kerning first=54 second=245 amount=-1 -kerning first=1068 second=198 amount=-1 -kerning first=194 second=375 amount=-1 -kerning first=916 second=352 amount=-1 -kerning first=100 second=84 amount=-5 -kerning first=240 second=234 amount=-1 -kerning first=952 second=968 amount=-1 -kerning first=955 second=277 amount=-1 -kerning first=120 second=246 amount=-2 -kerning first=1298 second=199 amount=-2 -kerning first=260 second=376 amount=-5 -kerning first=1035 second=211 amount=-2 -kerning first=280 second=8212 amount=-2 -kerning first=8240 second=251 amount=-1 -kerning first=1073 second=113 amount=-1 -kerning first=192 second=8249 amount=-3 -kerning first=201 second=85 amount=-2 -kerning first=316 second=235 amount=-1 -kerning first=78 second=335 amount=-1 -kerning first=104 second=34 amount=-1 -kerning first=358 second=8216 amount=-3 -kerning first=1299 second=354 amount=-5 -kerning first=258 second=8250 amount=-1 -kerning first=1033 second=1184 amount=-5 -kerning first=178 second=336 amount=-2 -kerning first=294 second=248 amount=-1 -kerning first=59 second=350 amount=-1 -kerning first=8369 second=103 amount=-1 -kerning first=346 second=87 amount=-2 -kerning first=1179 second=1185 amount=-2 -kerning first=365 second=940 amount=-1 -kerning first=161 second=111 amount=-1 -kerning first=125 second=351 amount=-1 -kerning first=37 second=1177 amount=-1 -kerning first=40 second=363 amount=-1 -kerning first=63 second=290 amount=-2 -kerning first=206 second=210 amount=-2 -kerning first=323 second=338 amount=-2 -kerning first=8365 second=972 amount=-1 -kerning first=901 second=250 amount=-1 -kerning first=8370 second=281 amount=-1 -kerning first=249 second=277 amount=-1 -kerning first=372 second=199 amount=-2 -kerning first=963 second=1079 amount=-1 -kerning first=126 second=1035 amount=-5 -kerning first=162 second=291 amount=-1 -kerning first=38 second=8212 amount=-2 -kerning first=41 second=1059 amount=-2 -kerning first=1048 second=251 amount=-1 -kerning first=299 second=353 amount=-1 -kerning first=302 second=113 amount=-1 -kerning first=207 second=365 amount=-1 -kerning first=8378 second=228 amount=-1 -kerning first=104 second=8216 amount=-1 -kerning first=253 second=224 amount=-1 -kerning first=376 second=114 amount=-3 -kerning first=973 second=39 amount=-3 -kerning first=273 second=1184 amount=-5 -kerning first=276 second=366 amount=-2 -kerning first=48 second=248 amount=-1 -kerning first=191 second=171 amount=-3 -kerning first=205 second=8217 amount=-3 -kerning first=906 second=355 amount=-1 -kerning first=94 second=87 amount=-5 -kerning first=1169 second=267 amount=-1 -kerning first=354 second=367 amount=-2 -kerning first=8217 second=945 amount=-1 -kerning first=1063 second=356 amount=-5 -kerning first=72 second=338 amount=-2 -kerning first=1087 second=972 amount=-1 -kerning first=215 second=250 amount=-1 -kerning first=1095 second=281 amount=-1 -kerning first=75 second=100 amount=-2 -kerning first=333 second=380 amount=-1 -kerning first=920 second=65 amount=-2 -kerning first=95 second=262 amount=-2 -kerning first=238 second=187 amount=-1 -kerning first=1224 second=357 amount=-1 -kerning first=255 second=1079 amount=-1 -kerning first=1026 second=369 amount=-1 -kerning first=168 second=1098 amount=-3 -kerning first=175 second=101 amount=-1 -kerning first=53 second=353 amount=-1 -kerning first=56 second=113 amount=-1 -kerning first=196 second=263 amount=-1 -kerning first=8361 second=106 amount=1 -kerning first=1099 second=228 amount=-1 -kerning first=923 second=240 amount=-1 -kerning first=1171 second=1194 amount=-2 -kerning first=1176 second=370 amount=-2 -kerning first=242 second=102 amount=-1 -kerning first=951 second=1256 amount=-2 -kerning first=1256 second=1044 amount=-1 -kerning first=267 second=39 amount=-1 -kerning first=1037 second=79 amount=-2 -kerning first=176 second=279 amount=-1 -kerning first=172 second=970 amount=-1 -kerning first=8230 second=359 amount=-1 -kerning first=200 second=213 amount=-2 -kerning first=318 second=103 amount=-1 -kerning first=80 second=225 amount=-1 -kerning first=1097 second=1257 amount=-1 -kerning first=223 second=115 amount=-1 -kerning first=341 second=267 amount=-1 -kerning first=97 second=1185 amount=-1 -kerning first=100 second=367 amount=-1 -kerning first=1035 second=945 amount=-1 -kerning first=180 second=226 amount=-1 -kerning first=291 second=356 amount=-5 -kerning first=296 second=116 amount=-1 -kerning first=201 second=368 amount=-2 -kerning first=316 second=972 amount=-1 -kerning first=321 second=281 amount=-1 -kerning first=8366 second=231 amount=-1 -kerning first=98 second=8220 amount=-1 -kerning first=247 second=227 amount=-1 -kerning first=367 second=357 amount=-1 -kerning first=964 second=269 amount=-1 -kerning first=42 second=251 amount=-1 -kerning first=1081 second=106 amount=1 -kerning first=202 second=1066 amount=-5 -kerning first=325 second=228 amount=-1 -kerning first=903 second=118 amount=-4 -kerning first=1107 second=962 amount=-1 -kerning first=942 second=283 amount=-1 -kerning first=108 second=252 amount=-1 -kerning first=105 second=943 amount=-1 -kerning first=248 second=382 amount=-1 -kerning first=368 second=1044 amount=-1 -kerning first=374 second=67 amount=-3 -kerning first=968 second=217 amount=-2 -kerning first=1051 second=119 amount=-4 -kerning first=298 second=920 amount=-2 -kerning first=69 second=103 amount=-1 -kerning first=1083 second=286 amount=-2 -kerning first=209 second=253 amount=-1 -kerning first=323 second=1257 amount=-1 -kerning first=8377 second=334 amount=-2 -kerning first=8370 second=1090 amount=-3 -kerning first=89 second=267 amount=-4 -kerning first=1119 second=218 amount=-2 -kerning first=946 second=230 amount=-1 -kerning first=1206 second=360 amount=-1 -kerning first=375 second=242 amount=-1 -kerning first=372 second=923 amount=-5 -kerning first=966 second=947 amount=-1 -kerning first=162 second=1101 amount=-1 -kerning first=47 second=356 amount=-5 -kerning first=50 second=116 amount=-1 -kerning first=190 second=268 amount=-2 -kerning first=70 second=281 amount=-1 -kerning first=1090 second=231 amount=-1 -kerning first=8378 second=965 amount=-1 -kerning first=910 second=243 amount=-4 -kerning first=1168 second=373 amount=-4 -kerning first=944 second=1263 amount=-1 -kerning first=113 second=357 amount=-1 -kerning first=256 second=269 amount=-1 -kerning first=166 second=973 amount=-1 -kerning first=1065 second=244 amount=-1 -kerning first=194 second=216 amount=-2 -kerning first=311 second=106 amount=1 -kerning first=74 second=228 amount=-1 -kerning first=91 second=1194 amount=-2 -kerning first=94 second=370 amount=-2 -kerning first=237 second=283 amount=-1 -kerning first=952 second=333 amount=-1 -kerning first=260 second=217 amount=-2 -kerning first=35 second=79 amount=-2 -kerning first=174 second=229 amount=-1 -kerning first=8221 second=1051 amount=-3 -kerning first=52 second=920 amount=-2 -kerning first=1069 second=194 amount=-2 -kerning first=192 second=1195 amount=-1 -kerning first=195 second=371 amount=-1 -kerning first=313 second=286 amount=-1 -kerning first=72 second=1257 amount=-1 -kerning first=1095 second=1090 amount=-3 -kerning first=361 second=360 amount=-2 -kerning first=956 second=273 amount=-1 -kerning first=953 second=964 amount=-2 -kerning first=121 second=242 amount=-1 -kerning first=258 second=947 amount=-4 -kerning first=175 second=1240 amount=-2 -kerning first=1067 second=1108 amount=-1 -kerning first=196 second=1069 amount=-1 -kerning first=202 second=81 amount=-2 -kerning first=317 second=231 amount=-1 -kerning first=1099 second=965 amount=-1 -kerning first=1107 second=46 amount=-3 -kerning first=923 second=1028 amount=-2 -kerning first=931 second=288 amount=-2 -kerning first=239 second=1263 amount=-1 -kerning first=962 second=220 amount=-2 -kerning first=1037 second=362 amount=-2 -kerning first=179 second=332 amount=-2 -kerning first=63 second=106 amount=1 -kerning first=8365 second=337 amount=-1 -kerning first=8370 second=99 amount=-1 -kerning first=901 second=71 amount=-2 -kerning first=80 second=962 amount=-1 -kerning first=1184 second=1177 amount=-1 -kerning first=369 second=245 amount=-1 -kerning first=963 second=375 amount=-1 -kerning first=271 second=257 amount=-1 -kerning first=41 second=359 amount=-1 -kerning first=1035 second=8211 amount=-2 -kerning first=1038 second=1051 amount=-1 -kerning first=180 second=963 amount=-1 -kerning first=184 second=271 amount=-1 -kerning first=44 second=119 amount=-2 -kerning first=61 second=1026 amount=-5 -kerning first=64 second=286 amount=-2 -kerning first=1080 second=234 amount=-1 -kerning first=321 second=1090 amount=-3 -kerning first=8366 second=968 amount=-1 -kerning first=902 second=246 amount=-1 -kerning first=8372 second=277 amount=-1 -kerning first=350 second=258 amount=-1 -kerning first=1185 second=8212 amount=-3 -kerning first=250 second=273 amount=-1 -kerning first=253 second=45 amount=-2 -kerning first=247 second=964 amount=-3 -kerning first=163 second=287 amount=-1 -kerning first=188 second=219 amount=-2 -kerning first=297 second=1108 amount=-1 -kerning first=300 second=347 amount=-1 -kerning first=325 second=965 amount=-1 -kerning first=332 second=46 amount=-1 -kerning first=88 second=373 amount=-3 -kerning first=1210 second=248 amount=-1 -kerning first=254 second=220 amount=-2 -kerning first=374 second=350 amount=-1 -kerning first=167 second=232 amount=-1 -kerning first=274 second=1176 amount=-1 -kerning first=49 second=244 amount=-1 -kerning first=189 second=374 amount=-5 -kerning first=304 second=289 amount=-1 -kerning first=1087 second=337 amount=-1 -kerning first=1095 second=99 amount=-1 -kerning first=215 second=71 amount=-2 -kerning first=89 second=1071 amount=-2 -kerning first=86 second=8230 amount=-4 -kerning first=95 second=83 amount=-1 -kerning first=912 second=111 amount=-1 -kerning first=1170 second=261 amount=-1 -kerning first=1119 second=953 amount=-1 -kerning first=255 second=375 amount=-1 -kerning first=1026 second=210 amount=-2 -kerning first=8222 second=250 amount=-1 -kerning first=1064 second=352 amount=-1 -kerning first=196 second=84 amount=-5 -kerning first=70 second=1090 amount=-3 -kerning first=73 second=334 amount=-2 -kerning first=1096 second=277 amount=-1 -kerning first=310 second=234 amount=-2 -kerning first=334 second=376 amount=-3 -kerning first=915 second=291 amount=-1 -kerning first=1176 second=211 amount=-2 -kerning first=1263 second=113 amount=-1 -kerning first=253 second=8249 amount=-3 -kerning first=382 second=235 amount=-1 -kerning first=1027 second=365 amount=-1 -kerning first=172 second=335 amount=-1 -kerning first=176 second=97 amount=-1 -kerning first=51 second=1108 amount=-1 -kerning first=54 second=347 amount=-1 -kerning first=197 second=259 amount=-1 -kerning first=200 second=34 amount=-3 -kerning first=74 second=965 amount=-1 -kerning first=80 second=46 amount=-4 +kerning first=210 second=8222 amount=-1 +kerning first=210 second=8230 amount=-1 +kerning first=211 second=44 amount=-1 +kerning first=211 second=46 amount=-1 +kerning first=211 second=47 amount=-1 +kerning first=211 second=65 amount=-2 +kerning first=211 second=84 amount=-2 +kerning first=211 second=86 amount=-2 +kerning first=211 second=87 amount=-2 +kerning first=211 second=88 amount=-3 +kerning first=211 second=89 amount=-3 +kerning first=211 second=90 amount=-1 +kerning first=211 second=193 amount=-2 +kerning first=211 second=194 amount=-2 +kerning first=211 second=196 amount=-2 +kerning first=211 second=197 amount=-2 +kerning first=211 second=198 amount=-2 +kerning first=211 second=221 amount=-3 +kerning first=211 second=256 amount=-2 +kerning first=211 second=258 amount=-2 +kerning first=211 second=260 amount=-2 +kerning first=211 second=354 amount=-2 +kerning first=211 second=356 amount=-2 +kerning first=211 second=372 amount=-2 +kerning first=211 second=374 amount=-3 +kerning first=211 second=376 amount=-3 +kerning first=211 second=377 amount=-1 +kerning first=211 second=379 amount=-1 +kerning first=211 second=381 amount=-1 +kerning first=211 second=913 amount=-2 +kerning first=211 second=916 amount=-2 +kerning first=211 second=918 amount=-1 +kerning first=211 second=923 amount=-2 +kerning first=211 second=932 amount=-2 +kerning first=211 second=933 amount=-3 +kerning first=211 second=935 amount=-3 +kerning first=211 second=939 amount=-3 +kerning first=211 second=955 amount=-2 +kerning first=211 second=967 amount=-1 +kerning first=211 second=1026 amount=-2 +kerning first=211 second=1033 amount=-1 +kerning first=211 second=1035 amount=-2 +kerning first=211 second=1040 amount=-2 +kerning first=211 second=1044 amount=-1 +kerning first=211 second=1046 amount=-3 +kerning first=211 second=1051 amount=-1 +kerning first=211 second=1058 amount=-2 +kerning first=211 second=1061 amount=-3 +kerning first=211 second=1066 amount=-2 +kerning first=211 second=1071 amount=-1 +kerning first=211 second=1174 amount=-3 +kerning first=211 second=1184 amount=-2 +kerning first=211 second=1198 amount=-3 +kerning first=211 second=1202 amount=-3 +kerning first=211 second=1298 amount=-1 +kerning first=211 second=8218 amount=-1 +kerning first=211 second=8222 amount=-1 +kerning first=211 second=8230 amount=-1 +kerning first=212 second=44 amount=-1 +kerning first=212 second=46 amount=-1 +kerning first=212 second=47 amount=-1 +kerning first=212 second=65 amount=-2 +kerning first=212 second=84 amount=-2 +kerning first=212 second=86 amount=-2 +kerning first=212 second=87 amount=-2 +kerning first=212 second=88 amount=-3 +kerning first=212 second=89 amount=-3 +kerning first=212 second=90 amount=-1 +kerning first=212 second=193 amount=-2 +kerning first=212 second=194 amount=-2 +kerning first=212 second=196 amount=-2 +kerning first=212 second=197 amount=-2 +kerning first=212 second=198 amount=-2 +kerning first=212 second=221 amount=-3 +kerning first=212 second=256 amount=-2 +kerning first=212 second=258 amount=-2 +kerning first=212 second=260 amount=-2 +kerning first=212 second=354 amount=-2 +kerning first=212 second=356 amount=-2 +kerning first=212 second=372 amount=-2 +kerning first=212 second=374 amount=-3 +kerning first=212 second=376 amount=-3 +kerning first=212 second=377 amount=-1 +kerning first=212 second=379 amount=-1 +kerning first=212 second=381 amount=-1 +kerning first=212 second=913 amount=-2 +kerning first=212 second=916 amount=-2 +kerning first=212 second=918 amount=-1 +kerning first=212 second=923 amount=-2 +kerning first=212 second=932 amount=-2 +kerning first=212 second=933 amount=-3 +kerning first=212 second=935 amount=-3 +kerning first=212 second=939 amount=-3 +kerning first=212 second=955 amount=-2 +kerning first=212 second=967 amount=-1 +kerning first=212 second=1026 amount=-2 +kerning first=212 second=1033 amount=-1 +kerning first=212 second=1035 amount=-2 +kerning first=212 second=1040 amount=-2 +kerning first=212 second=1044 amount=-1 +kerning first=212 second=1046 amount=-3 +kerning first=212 second=1051 amount=-1 +kerning first=212 second=1058 amount=-2 +kerning first=212 second=1061 amount=-3 +kerning first=212 second=1066 amount=-2 +kerning first=212 second=1071 amount=-1 +kerning first=212 second=1174 amount=-3 +kerning first=212 second=1184 amount=-2 +kerning first=212 second=1198 amount=-3 +kerning first=212 second=1202 amount=-3 +kerning first=212 second=1298 amount=-1 +kerning first=212 second=8218 amount=-1 +kerning first=212 second=8222 amount=-1 +kerning first=212 second=8230 amount=-1 +kerning first=213 second=44 amount=-1 +kerning first=213 second=46 amount=-1 +kerning first=213 second=47 amount=-1 +kerning first=213 second=65 amount=-2 +kerning first=213 second=84 amount=-2 +kerning first=213 second=86 amount=-2 +kerning first=213 second=87 amount=-2 +kerning first=213 second=88 amount=-3 +kerning first=213 second=89 amount=-3 +kerning first=213 second=90 amount=-1 +kerning first=213 second=193 amount=-2 +kerning first=213 second=194 amount=-2 +kerning first=213 second=196 amount=-2 +kerning first=213 second=197 amount=-2 +kerning first=213 second=198 amount=-2 +kerning first=213 second=221 amount=-3 +kerning first=213 second=256 amount=-2 +kerning first=213 second=258 amount=-2 +kerning first=213 second=260 amount=-2 +kerning first=213 second=354 amount=-2 +kerning first=213 second=356 amount=-2 +kerning first=213 second=372 amount=-2 +kerning first=213 second=374 amount=-3 +kerning first=213 second=376 amount=-3 +kerning first=213 second=377 amount=-1 +kerning first=213 second=379 amount=-1 +kerning first=213 second=381 amount=-1 +kerning first=213 second=913 amount=-2 +kerning first=213 second=916 amount=-2 +kerning first=213 second=918 amount=-1 +kerning first=213 second=923 amount=-2 +kerning first=213 second=932 amount=-2 +kerning first=213 second=933 amount=-3 +kerning first=213 second=935 amount=-3 +kerning first=213 second=939 amount=-3 +kerning first=213 second=955 amount=-2 +kerning first=213 second=967 amount=-1 +kerning first=213 second=1026 amount=-2 +kerning first=213 second=1033 amount=-1 +kerning first=213 second=1035 amount=-2 +kerning first=213 second=1040 amount=-2 +kerning first=213 second=1044 amount=-1 +kerning first=213 second=1046 amount=-3 +kerning first=213 second=1051 amount=-1 +kerning first=213 second=1058 amount=-2 +kerning first=213 second=1061 amount=-3 +kerning first=213 second=1066 amount=-2 +kerning first=213 second=1071 amount=-1 +kerning first=213 second=1174 amount=-3 +kerning first=213 second=1184 amount=-2 +kerning first=213 second=1198 amount=-3 +kerning first=213 second=1202 amount=-3 +kerning first=213 second=1298 amount=-1 +kerning first=213 second=8218 amount=-1 +kerning first=213 second=8222 amount=-1 +kerning first=213 second=8230 amount=-1 +kerning first=216 second=44 amount=-1 +kerning first=216 second=46 amount=-1 +kerning first=216 second=47 amount=-1 +kerning first=216 second=65 amount=-2 +kerning first=216 second=84 amount=-2 +kerning first=216 second=86 amount=-2 +kerning first=216 second=87 amount=-2 +kerning first=216 second=88 amount=-3 +kerning first=216 second=89 amount=-3 +kerning first=216 second=90 amount=-1 +kerning first=216 second=193 amount=-2 +kerning first=216 second=194 amount=-2 +kerning first=216 second=196 amount=-2 +kerning first=216 second=197 amount=-2 +kerning first=216 second=198 amount=-2 +kerning first=216 second=221 amount=-3 +kerning first=216 second=256 amount=-2 +kerning first=216 second=258 amount=-2 +kerning first=216 second=260 amount=-2 +kerning first=216 second=354 amount=-2 +kerning first=216 second=356 amount=-2 +kerning first=216 second=372 amount=-2 +kerning first=216 second=374 amount=-3 +kerning first=216 second=376 amount=-3 +kerning first=216 second=377 amount=-1 +kerning first=216 second=379 amount=-1 +kerning first=216 second=381 amount=-1 +kerning first=216 second=913 amount=-2 +kerning first=216 second=916 amount=-2 +kerning first=216 second=918 amount=-1 +kerning first=216 second=923 amount=-2 +kerning first=216 second=932 amount=-2 +kerning first=216 second=933 amount=-3 +kerning first=216 second=935 amount=-3 +kerning first=216 second=939 amount=-3 +kerning first=216 second=955 amount=-2 +kerning first=216 second=967 amount=-1 +kerning first=216 second=1026 amount=-2 +kerning first=216 second=1033 amount=-1 +kerning first=216 second=1035 amount=-2 +kerning first=216 second=1040 amount=-2 +kerning first=216 second=1044 amount=-1 +kerning first=216 second=1046 amount=-3 +kerning first=216 second=1051 amount=-1 +kerning first=216 second=1058 amount=-2 +kerning first=216 second=1061 amount=-3 +kerning first=216 second=1066 amount=-2 +kerning first=216 second=1071 amount=-1 +kerning first=216 second=1174 amount=-3 +kerning first=216 second=1184 amount=-2 +kerning first=216 second=1198 amount=-3 +kerning first=216 second=1202 amount=-3 +kerning first=216 second=1298 amount=-1 +kerning first=216 second=8218 amount=-1 +kerning first=216 second=8222 amount=-1 +kerning first=216 second=8230 amount=-1 +kerning first=217 second=44 amount=-1 +kerning first=217 second=46 amount=-1 +kerning first=217 second=65 amount=-2 +kerning first=217 second=193 amount=-2 +kerning first=217 second=194 amount=-2 +kerning first=217 second=196 amount=-2 +kerning first=217 second=197 amount=-2 +kerning first=217 second=198 amount=-2 +kerning first=217 second=256 amount=-2 +kerning first=217 second=258 amount=-2 +kerning first=217 second=260 amount=-2 +kerning first=217 second=913 amount=-2 +kerning first=217 second=916 amount=-2 +kerning first=217 second=923 amount=-2 +kerning first=217 second=1033 amount=-1 +kerning first=217 second=1040 amount=-2 +kerning first=217 second=1044 amount=-1 +kerning first=217 second=1051 amount=-1 +kerning first=217 second=1298 amount=-1 +kerning first=217 second=8218 amount=-1 +kerning first=217 second=8222 amount=-1 +kerning first=217 second=8230 amount=-1 +kerning first=218 second=44 amount=-1 +kerning first=218 second=46 amount=-1 +kerning first=218 second=65 amount=-2 +kerning first=218 second=193 amount=-2 +kerning first=218 second=194 amount=-2 +kerning first=218 second=196 amount=-2 +kerning first=218 second=197 amount=-2 +kerning first=218 second=198 amount=-2 +kerning first=218 second=256 amount=-2 +kerning first=218 second=258 amount=-2 +kerning first=218 second=260 amount=-2 +kerning first=218 second=913 amount=-2 +kerning first=218 second=916 amount=-2 +kerning first=218 second=923 amount=-2 +kerning first=218 second=1033 amount=-1 +kerning first=218 second=1040 amount=-2 +kerning first=218 second=1044 amount=-1 +kerning first=218 second=1051 amount=-1 +kerning first=218 second=1298 amount=-1 +kerning first=218 second=8218 amount=-1 +kerning first=218 second=8222 amount=-1 +kerning first=218 second=8230 amount=-1 +kerning first=219 second=44 amount=-1 +kerning first=219 second=46 amount=-1 +kerning first=219 second=65 amount=-2 +kerning first=219 second=193 amount=-2 +kerning first=219 second=194 amount=-2 +kerning first=219 second=196 amount=-2 +kerning first=219 second=197 amount=-2 +kerning first=219 second=198 amount=-2 +kerning first=219 second=256 amount=-2 +kerning first=219 second=258 amount=-2 +kerning first=219 second=260 amount=-2 +kerning first=219 second=913 amount=-2 +kerning first=219 second=916 amount=-2 +kerning first=219 second=923 amount=-2 +kerning first=219 second=1033 amount=-1 +kerning first=219 second=1040 amount=-2 +kerning first=219 second=1044 amount=-1 +kerning first=219 second=1051 amount=-1 +kerning first=219 second=1298 amount=-1 +kerning first=219 second=8218 amount=-1 +kerning first=219 second=8222 amount=-1 +kerning first=219 second=8230 amount=-1 +kerning first=220 second=44 amount=-1 +kerning first=220 second=46 amount=-1 +kerning first=220 second=65 amount=-2 +kerning first=220 second=193 amount=-2 +kerning first=220 second=194 amount=-2 kerning first=220 second=196 amount=-2 -kerning first=1174 second=1184 amount=-2 -kerning first=240 second=336 amount=-2 -kerning first=363 second=248 amount=-1 -kerning first=960 second=171 amount=-3 -kerning first=35 second=362 amount=-2 -kerning first=174 second=966 amount=-1 -kerning first=177 second=275 amount=-1 -kerning first=8260 second=115 amount=-1 -kerning first=8240 second=355 amount=-1 -kerning first=58 second=289 amount=-1 -kerning first=316 second=337 amount=-1 -kerning first=321 second=99 amount=-1 -kerning first=81 second=221 amount=-3 +kerning first=220 second=197 amount=-2 +kerning first=220 second=198 amount=-2 +kerning first=220 second=256 amount=-2 +kerning first=220 second=258 amount=-2 +kerning first=220 second=260 amount=-2 +kerning first=220 second=913 amount=-2 +kerning first=220 second=916 amount=-2 +kerning first=220 second=923 amount=-2 +kerning first=220 second=1033 amount=-1 +kerning first=220 second=1040 amount=-2 +kerning first=220 second=1044 amount=-1 +kerning first=220 second=1051 amount=-1 +kerning first=220 second=1298 amount=-1 +kerning first=220 second=8218 amount=-1 +kerning first=220 second=8222 amount=-1 +kerning first=220 second=8230 amount=-1 +kerning first=221 second=38 amount=-2 +kerning first=221 second=44 amount=-4 +kerning first=221 second=45 amount=-4 +kerning first=221 second=46 amount=-4 +kerning first=221 second=47 amount=-4 +kerning first=221 second=110 amount=-3 +kerning first=221 second=63 amount=-1 +kerning first=221 second=65 amount=-5 +kerning first=221 second=67 amount=-3 +kerning first=221 second=114 amount=-3 +kerning first=221 second=71 amount=-3 +kerning first=221 second=74 amount=-6 +kerning first=221 second=79 amount=-3 +kerning first=221 second=81 amount=-3 +kerning first=221 second=83 amount=-1 +kerning first=221 second=97 amount=-4 +kerning first=221 second=99 amount=-4 +kerning first=221 second=100 amount=-4 +kerning first=221 second=101 amount=-4 +kerning first=221 second=103 amount=-4 +kerning first=221 second=109 amount=-3 +kerning first=221 second=111 amount=-4 +kerning first=221 second=112 amount=-3 +kerning first=221 second=113 amount=-4 +kerning first=221 second=115 amount=-3 +kerning first=221 second=117 amount=-2 +kerning first=221 second=118 amount=-2 +kerning first=221 second=119 amount=-2 +kerning first=221 second=120 amount=-2 +kerning first=221 second=121 amount=-2 +kerning first=221 second=122 amount=-2 +kerning first=221 second=171 amount=-3 +kerning first=221 second=173 amount=-4 +kerning first=221 second=187 amount=-2 +kerning first=221 second=193 amount=-5 +kerning first=221 second=194 amount=-5 +kerning first=221 second=196 amount=-5 +kerning first=221 second=197 amount=-5 +kerning first=221 second=198 amount=-5 +kerning first=221 second=199 amount=-3 +kerning first=221 second=210 amount=-3 +kerning first=221 second=211 amount=-3 +kerning first=221 second=212 amount=-3 +kerning first=221 second=213 amount=-3 +kerning first=221 second=214 amount=-3 +kerning first=221 second=216 amount=-3 +kerning first=221 second=224 amount=-4 +kerning first=221 second=225 amount=-4 +kerning first=221 second=226 amount=-4 +kerning first=221 second=227 amount=-4 +kerning first=221 second=228 amount=-4 +kerning first=221 second=229 amount=-4 +kerning first=221 second=230 amount=-4 +kerning first=221 second=231 amount=-4 +kerning first=221 second=232 amount=-4 +kerning first=221 second=233 amount=-4 +kerning first=221 second=234 amount=-4 +kerning first=221 second=235 amount=-4 +kerning first=221 second=240 amount=-4 +kerning first=221 second=241 amount=-3 +kerning first=221 second=242 amount=-4 +kerning first=221 second=243 amount=-4 +kerning first=221 second=244 amount=-4 +kerning first=221 second=245 amount=-4 +kerning first=221 second=246 amount=-4 +kerning first=221 second=248 amount=-4 +kerning first=221 second=249 amount=-2 +kerning first=221 second=250 amount=-2 +kerning first=221 second=251 amount=-2 +kerning first=221 second=252 amount=-2 +kerning first=221 second=253 amount=-2 +kerning first=221 second=256 amount=-5 +kerning first=221 second=257 amount=-4 +kerning first=221 second=258 amount=-5 +kerning first=221 second=259 amount=-4 +kerning first=221 second=260 amount=-5 +kerning first=221 second=261 amount=-4 +kerning first=221 second=262 amount=-3 +kerning first=221 second=263 amount=-4 +kerning first=221 second=266 amount=-3 +kerning first=221 second=267 amount=-4 +kerning first=221 second=268 amount=-3 +kerning first=221 second=269 amount=-4 +kerning first=221 second=271 amount=-4 +kerning first=221 second=273 amount=-4 +kerning first=221 second=275 amount=-4 +kerning first=221 second=277 amount=-4 +kerning first=221 second=279 amount=-4 +kerning first=221 second=281 amount=-4 +kerning first=221 second=283 amount=-4 +kerning first=221 second=286 amount=-3 +kerning first=221 second=287 amount=-4 +kerning first=221 second=288 amount=-3 +kerning first=221 second=289 amount=-4 +kerning first=221 second=290 amount=-3 +kerning first=221 second=291 amount=-4 +kerning first=221 second=324 amount=-3 +kerning first=221 second=326 amount=-3 +kerning first=221 second=328 amount=-3 +kerning first=221 second=331 amount=-3 +kerning first=221 second=332 amount=-3 +kerning first=221 second=333 amount=-4 +kerning first=221 second=334 amount=-3 +kerning first=221 second=335 amount=-4 +kerning first=221 second=336 amount=-3 +kerning first=221 second=337 amount=-4 +kerning first=221 second=338 amount=-3 +kerning first=221 second=339 amount=-4 +kerning first=221 second=341 amount=-3 +kerning first=221 second=343 amount=-3 +kerning first=221 second=345 amount=-3 +kerning first=221 second=346 amount=-1 +kerning first=221 second=347 amount=-3 +kerning first=221 second=350 amount=-1 kerning first=221 second=351 amount=-3 -kerning first=124 second=290 amount=-2 -kerning first=1036 second=941 amount=-2 -kerning first=1039 second=250 amount=-1 -kerning first=294 second=352 amount=-1 -kerning first=62 second=234 amount=-1 -kerning first=1074 second=1241 amount=-1 -kerning first=1078 second=187 amount=-1 -kerning first=202 second=364 amount=-2 -kerning first=317 second=968 amount=-1 -kerning first=322 second=277 amount=-1 -kerning first=8369 second=227 amount=-1 -kerning first=900 second=199 amount=-2 -kerning first=82 second=376 amount=-2 +kerning first=221 second=352 amount=-1 +kerning first=221 second=353 amount=-3 +kerning first=221 second=361 amount=-2 +kerning first=221 second=363 amount=-2 +kerning first=221 second=365 amount=-2 +kerning first=221 second=367 amount=-2 +kerning first=221 second=369 amount=-2 +kerning first=221 second=371 amount=-2 +kerning first=221 second=373 amount=-2 +kerning first=221 second=375 amount=-2 +kerning first=221 second=378 amount=-2 +kerning first=221 second=380 amount=-2 +kerning first=221 second=382 amount=-2 +kerning first=221 second=913 amount=-5 +kerning first=221 second=916 amount=-5 +kerning first=221 second=920 amount=-3 +kerning first=221 second=923 amount=-5 +kerning first=221 second=927 amount=-3 +kerning first=221 second=937 amount=-2 +kerning first=221 second=940 amount=-4 +kerning first=221 second=941 amount=-4 +kerning first=221 second=942 amount=-3 +kerning first=221 second=943 amount=-2 +kerning first=221 second=945 amount=-4 +kerning first=221 second=947 amount=-2 +kerning first=221 second=949 amount=-4 +kerning first=221 second=950 amount=-2 +kerning first=221 second=951 amount=-3 +kerning first=221 second=952 amount=-2 +kerning first=221 second=953 amount=-2 +kerning first=221 second=954 amount=-3 +kerning first=221 second=955 amount=-2 +kerning first=221 second=957 amount=-2 +kerning first=221 second=959 amount=-4 +kerning first=221 second=961 amount=-5 +kerning first=221 second=962 amount=-4 +kerning first=221 second=963 amount=-4 +kerning first=221 second=964 amount=-2 +kerning first=221 second=965 amount=-2 +kerning first=221 second=966 amount=-4 +kerning first=221 second=967 amount=-2 +kerning first=221 second=968 amount=-2 +kerning first=221 second=969 amount=-4 +kerning first=221 second=970 amount=-2 +kerning first=221 second=972 amount=-4 +kerning first=221 second=973 amount=-2 +kerning first=221 second=974 amount=-4 +kerning first=221 second=1028 amount=-3 +kerning first=221 second=1029 amount=-1 +kerning first=221 second=1032 amount=-6 +kerning first=221 second=1033 amount=-5 +kerning first=221 second=1040 amount=-5 +kerning first=221 second=1044 amount=-5 +kerning first=221 second=1051 amount=-5 +kerning first=221 second=1054 amount=-3 +kerning first=221 second=1057 amount=-3 +kerning first=221 second=1069 amount=-2 +kerning first=221 second=1071 amount=-2 +kerning first=221 second=1072 amount=-4 +kerning first=221 second=1074 amount=-3 +kerning first=221 second=1075 amount=-3 +kerning first=221 second=1077 amount=-4 +kerning first=221 second=1078 amount=-2 +kerning first=221 second=1079 amount=-4 +kerning first=221 second=1080 amount=-3 +kerning first=221 second=1081 amount=-3 +kerning first=221 second=1082 amount=-3 +kerning first=221 second=1084 amount=-3 +kerning first=221 second=1085 amount=-3 +kerning first=221 second=1086 amount=-4 +kerning first=221 second=1087 amount=-3 +kerning first=221 second=1088 amount=-3 +kerning first=221 second=1089 amount=-4 +kerning first=221 second=1090 amount=-2 +kerning first=221 second=1091 amount=-2 +kerning first=221 second=1092 amount=-4 +kerning first=221 second=1093 amount=-2 +kerning first=221 second=1094 amount=-3 +kerning first=221 second=1096 amount=-3 +kerning first=221 second=1097 amount=-3 +kerning first=221 second=1098 amount=-2 +kerning first=221 second=1099 amount=-3 +kerning first=221 second=1100 amount=-3 +kerning first=221 second=1101 amount=-4 +kerning first=221 second=1102 amount=-3 +kerning first=221 second=1104 amount=-4 +kerning first=221 second=1105 amount=-4 +kerning first=221 second=1107 amount=-3 +kerning first=221 second=1108 amount=-4 +kerning first=221 second=1109 amount=-3 +kerning first=221 second=1114 amount=-3 +kerning first=221 second=1116 amount=-3 +kerning first=221 second=1117 amount=-3 +kerning first=221 second=1118 amount=-2 +kerning first=221 second=1119 amount=-3 +kerning first=221 second=1169 amount=-3 +kerning first=221 second=1175 amount=-2 +kerning first=221 second=1176 amount=-2 +kerning first=221 second=1177 amount=-4 +kerning first=221 second=1179 amount=-3 +kerning first=221 second=1185 amount=-2 +kerning first=221 second=1187 amount=-3 +kerning first=221 second=1194 amount=-3 +kerning first=221 second=1195 amount=-4 +kerning first=221 second=1199 amount=-2 +kerning first=221 second=1203 amount=-2 +kerning first=221 second=1220 amount=-3 +kerning first=221 second=1224 amount=-3 +kerning first=221 second=1240 amount=-3 +kerning first=221 second=1241 amount=-4 +kerning first=221 second=1256 amount=-3 +kerning first=221 second=1257 amount=-4 +kerning first=221 second=1263 amount=-2 +kerning first=221 second=1298 amount=-5 +kerning first=221 second=8211 amount=-4 +kerning first=221 second=8212 amount=-4 +kerning first=221 second=8218 amount=-4 +kerning first=221 second=8222 amount=-4 +kerning first=221 second=8230 amount=-4 +kerning first=221 second=8249 amount=-3 +kerning first=221 second=8250 amount=-2 +kerning first=222 second=44 amount=-1 +kerning first=222 second=46 amount=-1 +kerning first=222 second=47 amount=-1 +kerning first=222 second=65 amount=-2 +kerning first=222 second=84 amount=-2 +kerning first=222 second=86 amount=-2 +kerning first=222 second=87 amount=-2 +kerning first=222 second=88 amount=-3 +kerning first=222 second=89 amount=-3 +kerning first=222 second=90 amount=-1 +kerning first=222 second=193 amount=-2 +kerning first=222 second=194 amount=-2 +kerning first=222 second=196 amount=-2 +kerning first=222 second=197 amount=-2 +kerning first=222 second=198 amount=-2 +kerning first=222 second=221 amount=-3 +kerning first=222 second=256 amount=-2 +kerning first=222 second=258 amount=-2 +kerning first=222 second=260 amount=-2 +kerning first=222 second=354 amount=-2 +kerning first=222 second=356 amount=-2 +kerning first=222 second=372 amount=-2 +kerning first=222 second=374 amount=-3 +kerning first=222 second=376 amount=-3 +kerning first=222 second=377 amount=-1 +kerning first=222 second=379 amount=-1 +kerning first=222 second=381 amount=-1 +kerning first=222 second=913 amount=-2 +kerning first=222 second=916 amount=-2 +kerning first=222 second=918 amount=-1 +kerning first=222 second=923 amount=-2 +kerning first=222 second=932 amount=-2 +kerning first=222 second=933 amount=-3 +kerning first=222 second=935 amount=-3 +kerning first=222 second=939 amount=-3 +kerning first=222 second=955 amount=-2 +kerning first=222 second=967 amount=-1 +kerning first=222 second=1026 amount=-2 +kerning first=222 second=1033 amount=-1 kerning first=222 second=1035 amount=-2 -kerning first=931 second=1098 amount=-3 -kerning first=942 second=101 amount=-1 -kerning first=371 second=113 amount=-1 -kerning first=962 second=955 amount=-1 -kerning first=965 second=263 amount=-1 -kerning first=161 second=235 amount=-1 -kerning first=200 second=8216 amount=-3 -kerning first=8365 second=1256 amount=-2 -kerning first=901 second=354 amount=-5 -kerning first=80 second=8250 amount=-1 -kerning first=1119 second=39 amount=-3 -kerning first=252 second=171 amount=-3 -kerning first=47 second=197 amount=-5 -kerning first=1048 second=355 amount=-1 -kerning first=190 second=87 amount=-5 -kerning first=70 second=99 amount=-1 -kerning first=207 second=940 amount=-1 -kerning first=902 second=1038 amount=-2 -kerning first=1168 second=214 amount=-2 -kerning first=345 second=8218 amount=-3 -kerning first=948 second=226 amount=-1 -kerning first=1220 second=116 amount=-1 -kerning first=166 second=338 amount=-2 -kerning first=169 second=100 amount=-1 -kerning first=276 second=941 amount=-1 -kerning first=48 second=352 amount=-1 -kerning first=191 second=262 amount=-2 -kerning first=303 second=1241 amount=-1 -kerning first=306 second=187 amount=-1 -kerning first=214 second=199 amount=-2 -kerning first=94 second=211 amount=-2 -kerning first=237 second=101 amount=-1 -kerning first=357 second=251 amount=-1 -kerning first=354 second=942 amount=-2 -kerning first=117 second=113 amount=-1 -kerning first=114 second=353 amount=-1 -kerning first=260 second=38 amount=-1 -kerning first=968 second=8221 amount=-3 -kerning first=971 second=1066 amount=-5 -kerning first=8225 second=118 amount=-4 -kerning first=195 second=212 amount=-2 -kerning first=1087 second=1256 amount=-2 -kerning first=75 second=224 amount=-1 -kerning first=215 second=354 amount=-5 -kerning first=339 second=39 amount=-1 -kerning first=92 second=1184 amount=-5 -kerning first=95 second=366 amount=-2 -kerning first=1178 second=79 amount=-1 -kerning first=238 second=279 amount=-1 -kerning first=950 second=1081 amount=-2 -kerning first=1224 second=920 amount=-2 -kerning first=175 second=225 amount=-1 -kerning first=289 second=115 amount=-1 -kerning first=193 second=1185 amount=-3 -kerning first=196 second=367 amount=-1 -kerning first=8361 second=230 amount=-1 -kerning first=915 second=1101 amount=-1 -kerning first=1176 second=945 amount=-1 -kerning first=365 second=116 amount=-1 -kerning first=958 second=268 amount=-2 -kerning first=37 second=250 amount=-1 -kerning first=382 second=972 amount=-1 -kerning first=34 second=941 amount=-1 -kerning first=57 second=1241 amount=-1 -kerning first=60 second=187 amount=-1 -kerning first=194 second=8220 amount=-3 -kerning first=318 second=227 amount=-1 -kerning first=77 second=1079 amount=-1 -kerning first=83 second=89 amount=-2 -kerning first=1103 second=269 amount=-1 -kerning first=926 second=973 amount=-1 -kerning first=103 second=251 amount=-1 -kerning first=963 second=216 amount=-2 -kerning first=260 second=8221 amount=-3 -kerning first=1044 second=118 amount=-2 -kerning first=296 second=240 amount=-1 -kerning first=1076 second=283 amount=-1 -kerning first=201 second=943 amount=-1 -kerning first=204 second=252 amount=-1 -kerning first=316 second=1256 amount=-2 -kerning first=8366 second=333 amount=-1 -kerning first=902 second=67 amount=-2 -kerning first=84 second=266 amount=-1 -kerning first=339 second=8222 amount=-1 -kerning first=1202 second=119 amount=-2 -kerning first=367 second=920 amount=-2 -kerning first=964 second=371 amount=-1 -kerning first=163 second=103 amount=-1 -kerning first=273 second=253 amount=-1 -kerning first=42 second=355 amount=-1 -kerning first=185 second=267 amount=-1 -kerning first=1081 second=230 amount=-1 -kerning first=903 second=242 amount=-1 -kerning first=8369 second=964 amount=-3 -kerning first=88 second=214 amount=-3 -kerning first=942 second=1240 amount=-2 -kerning first=108 second=356 amount=-5 -kerning first=251 second=268 amount=-2 -kerning first=965 second=1069 amount=-1 -kerning first=971 second=81 amount=-2 -kerning first=161 second=972 amount=-1 -kerning first=164 second=281 amount=-1 -kerning first=1051 second=243 amount=-1 -kerning first=69 second=227 amount=-1 -kerning first=209 second=357 amount=-1 -kerning first=330 second=269 amount=-1 -kerning first=86 second=1187 amount=-2 -kerning first=89 second=369 amount=-2 -kerning first=946 second=332 amount=-2 -kerning first=1219 second=244 amount=-1 -kerning first=255 second=216 amount=-2 -kerning first=168 second=228 amount=-1 -kerning first=281 second=118 amount=-1 -kerning first=8222 second=71 amount=-1 -kerning first=47 second=916 amount=-5 -kerning first=50 second=240 amount=-1 -kerning first=190 second=370 amount=-2 -kerning first=305 second=283 amount=-1 -kerning first=70 second=382 amount=-1 -kerning first=210 second=1044 amount=-1 -kerning first=1090 second=333 amount=-1 -kerning first=910 second=345 amount=-3 -kerning first=87 second=8222 amount=-3 -kerning first=96 second=79 amount=-2 -kerning first=1168 second=949 amount=-1 -kerning first=1171 second=257 amount=-1 -kerning first=236 second=229 amount=-1 -kerning first=948 second=963 amount=-1 -kerning first=951 second=271 amount=-1 -kerning first=113 second=920 amount=-2 -kerning first=253 second=1195 amount=-1 -kerning first=256 second=371 amount=-1 -kerning first=1256 second=194 amount=-2 -kerning first=379 second=286 amount=-1 -kerning first=166 second=1257 amount=-1 -kerning first=8224 second=246 amount=-1 -kerning first=311 second=230 amount=-1 -kerning first=1097 second=273 amount=-1 -kerning first=1094 second=964 amount=-2 -kerning first=916 second=287 amount=-1 -kerning first=94 second=945 amount=-1 -kerning first=237 second=1240 amount=-2 -kerning first=955 second=219 amount=-2 -kerning first=1223 second=1108 amount=-1 -kerning first=974 second=1175 amount=-1 -kerning first=1035 second=121 amount=-1 -kerning first=78 second=269 amount=-1 -kerning first=928 second=232 amount=-1 -kerning first=1178 second=362 amount=-1 -kerning first=956 second=374 amount=-5 -kerning first=124 second=106 amount=1 -kerning first=1299 second=289 amount=-1 -kerning first=266 second=256 amount=-1 -kerning first=1262 second=1033 amount=-1 -kerning first=1039 second=71 amount=-2 -kerning first=175 second=962 amount=-1 -kerning first=59 second=283 amount=-1 -kerning first=1074 second=233 amount=-1 -kerning first=317 second=333 amount=-1 -kerning first=343 second=257 amount=-1 -kerning first=1176 second=8211 amount=-2 -kerning first=105 second=119 amount=-4 -kerning first=248 second=44 amount=-1 -kerning first=368 second=194 amount=-2 -kerning first=965 second=84 amount=-5 -kerning first=125 second=286 amount=-2 -kerning first=1041 second=246 amount=-1 -kerning first=183 second=218 amount=-2 -kerning first=8250 second=1035 amount=-3 -kerning first=63 second=230 amount=-1 -kerning first=203 second=360 amount=-2 -kerning first=318 second=964 amount=-3 -kerning first=323 second=273 amount=-1 -kerning first=80 second=947 amount=-4 -kerning first=83 second=372 amount=-2 -kerning first=249 second=219 amount=-2 -kerning first=369 second=347 amount=-1 -kerning first=372 second=109 amount=-2 -kerning first=162 second=231 amount=-1 -kerning first=271 second=361 amount=-1 -kerning first=184 second=373 amount=-4 -kerning first=296 second=1028 amount=-2 -kerning first=299 second=288 amount=-2 -kerning first=61 second=1263 amount=-1 -kerning first=1076 second=1095 amount=-2 -kerning first=1080 second=336 amount=-2 -kerning first=327 second=220 amount=-2 -kerning first=8378 second=171 amount=-3 -kerning first=902 second=350 amount=-1 -kerning first=944 second=275 amount=-1 -kerning first=250 second=374 amount=-5 -kerning first=370 second=1033 amount=-1 -kerning first=373 second=289 amount=-1 -kerning first=1049 second=351 amount=-1 -kerning first=1062 second=111 amount=-1 -kerning first=191 second=83 amount=-1 -kerning first=303 second=233 amount=-1 -kerning first=906 second=290 amount=-2 -kerning first=88 second=949 amount=-2 -kerning first=91 second=257 amount=-1 -kerning first=1210 second=352 amount=-1 -kerning first=377 second=234 amount=-1 -kerning first=971 second=364 amount=-2 -kerning first=167 second=334 amount=-2 -kerning first=164 second=1090 amount=-3 -kerning first=280 second=246 amount=-1 -kerning first=49 second=346 amount=-1 -kerning first=1051 second=1035 amount=-5 -kerning first=1063 second=291 amount=-1 -kerning first=72 second=273 amount=-1 -kerning first=69 second=964 amount=-3 -kerning first=75 second=45 amount=-4 -kerning first=912 second=235 amount=-1 -kerning first=1170 second=365 amount=-1 -kerning first=238 second=97 amount=-1 -kerning first=258 second=259 amount=-1 -kerning first=261 second=34 amount=-1 -kerning first=168 second=965 amount=-1 -kerning first=8218 second=1118 amount=-1 -kerning first=8222 second=354 amount=-5 -kerning first=50 second=1028 amount=-2 -kerning first=53 second=288 amount=-2 -kerning first=310 second=336 amount=-3 -kerning first=76 second=220 amount=-1 -kerning first=1099 second=171 amount=-3 -kerning first=96 second=362 amount=-2 -kerning first=1168 second=8217 amount=-3 -kerning first=93 second=1176 amount=-1 -kerning first=236 second=966 amount=-1 +kerning first=222 second=1040 amount=-2 +kerning first=222 second=1044 amount=-1 +kerning first=222 second=1046 amount=-3 +kerning first=222 second=1051 amount=-1 +kerning first=222 second=1058 amount=-2 +kerning first=222 second=1061 amount=-3 +kerning first=222 second=1066 amount=-2 +kerning first=222 second=1071 amount=-1 +kerning first=222 second=1174 amount=-3 +kerning first=222 second=1184 amount=-2 +kerning first=222 second=1198 amount=-3 +kerning first=222 second=1202 amount=-3 +kerning first=222 second=1298 amount=-1 +kerning first=222 second=8218 amount=-1 +kerning first=222 second=8222 amount=-1 +kerning first=222 second=8230 amount=-1 +kerning first=224 second=34 amount=-1 +kerning first=224 second=39 amount=-1 +kerning first=224 second=63 amount=-2 +kerning first=224 second=102 amount=-1 +kerning first=224 second=106 amount=1 +kerning first=224 second=118 amount=-1 +kerning first=224 second=119 amount=-1 +kerning first=224 second=373 amount=-1 +kerning first=224 second=947 amount=-1 +kerning first=224 second=957 amount=-1 +kerning first=224 second=964 amount=-1 +kerning first=224 second=1090 amount=-1 +kerning first=224 second=1098 amount=-1 +kerning first=224 second=1112 amount=1 +kerning first=224 second=1185 amount=-1 +kerning first=224 second=1199 amount=-1 +kerning first=224 second=8216 amount=-1 +kerning first=224 second=8217 amount=-1 +kerning first=224 second=8220 amount=-1 +kerning first=224 second=8221 amount=-1 +kerning first=225 second=34 amount=-1 +kerning first=225 second=39 amount=-1 +kerning first=225 second=63 amount=-2 +kerning first=225 second=102 amount=-1 +kerning first=225 second=106 amount=1 +kerning first=225 second=118 amount=-1 +kerning first=225 second=119 amount=-1 +kerning first=225 second=373 amount=-1 +kerning first=225 second=947 amount=-1 +kerning first=225 second=957 amount=-1 +kerning first=225 second=964 amount=-1 +kerning first=225 second=1090 amount=-1 +kerning first=225 second=1098 amount=-1 +kerning first=225 second=1112 amount=1 +kerning first=225 second=1185 amount=-1 +kerning first=225 second=1199 amount=-1 +kerning first=225 second=8216 amount=-1 +kerning first=225 second=8217 amount=-1 +kerning first=225 second=8220 amount=-1 +kerning first=225 second=8221 amount=-1 +kerning first=226 second=34 amount=-1 +kerning first=226 second=39 amount=-1 +kerning first=226 second=63 amount=-2 +kerning first=226 second=102 amount=-1 +kerning first=226 second=106 amount=1 +kerning first=226 second=118 amount=-1 +kerning first=226 second=119 amount=-1 +kerning first=226 second=373 amount=-1 +kerning first=226 second=947 amount=-1 +kerning first=226 second=957 amount=-1 +kerning first=226 second=964 amount=-1 +kerning first=226 second=1090 amount=-1 +kerning first=226 second=1098 amount=-1 +kerning first=226 second=1112 amount=1 +kerning first=226 second=1185 amount=-1 +kerning first=226 second=1199 amount=-1 +kerning first=226 second=8216 amount=-1 +kerning first=226 second=8217 amount=-1 +kerning first=226 second=8220 amount=-1 +kerning first=226 second=8221 amount=-1 +kerning first=227 second=34 amount=-1 +kerning first=227 second=39 amount=-1 +kerning first=227 second=63 amount=-2 +kerning first=227 second=102 amount=-1 +kerning first=227 second=106 amount=1 +kerning first=227 second=118 amount=-1 +kerning first=227 second=119 amount=-1 +kerning first=227 second=373 amount=-1 +kerning first=227 second=947 amount=-1 +kerning first=227 second=957 amount=-1 +kerning first=227 second=964 amount=-1 +kerning first=227 second=1090 amount=-1 +kerning first=227 second=1098 amount=-1 +kerning first=227 second=1112 amount=1 +kerning first=227 second=1185 amount=-1 +kerning first=227 second=1199 amount=-1 +kerning first=227 second=8216 amount=-1 +kerning first=227 second=8217 amount=-1 +kerning first=227 second=8220 amount=-1 +kerning first=227 second=8221 amount=-1 +kerning first=228 second=34 amount=-1 +kerning first=228 second=39 amount=-1 +kerning first=228 second=63 amount=-2 +kerning first=228 second=102 amount=-1 +kerning first=228 second=106 amount=1 +kerning first=228 second=118 amount=-1 +kerning first=228 second=119 amount=-1 +kerning first=228 second=373 amount=-1 +kerning first=228 second=947 amount=-1 +kerning first=228 second=957 amount=-1 +kerning first=228 second=964 amount=-1 +kerning first=228 second=1090 amount=-1 +kerning first=228 second=1098 amount=-1 +kerning first=228 second=1112 amount=1 +kerning first=228 second=1185 amount=-1 +kerning first=228 second=1199 amount=-1 +kerning first=228 second=8216 amount=-1 +kerning first=228 second=8217 amount=-1 +kerning first=228 second=8220 amount=-1 +kerning first=228 second=8221 amount=-1 +kerning first=229 second=34 amount=-1 +kerning first=229 second=39 amount=-1 +kerning first=229 second=63 amount=-2 +kerning first=229 second=102 amount=-1 +kerning first=229 second=106 amount=1 +kerning first=229 second=118 amount=-1 +kerning first=229 second=119 amount=-1 +kerning first=229 second=373 amount=-1 +kerning first=229 second=947 amount=-1 +kerning first=229 second=957 amount=-1 +kerning first=229 second=964 amount=-1 +kerning first=229 second=1090 amount=-1 +kerning first=229 second=1098 amount=-1 +kerning first=229 second=1112 amount=1 +kerning first=229 second=1185 amount=-1 +kerning first=229 second=1199 amount=-1 +kerning first=229 second=8216 amount=-1 +kerning first=229 second=8217 amount=-1 +kerning first=229 second=8220 amount=-1 +kerning first=229 second=8221 amount=-1 +kerning first=230 second=34 amount=-1 +kerning first=230 second=39 amount=-1 +kerning first=230 second=44 amount=-1 +kerning first=230 second=46 amount=-1 +kerning first=230 second=47 amount=-1 +kerning first=230 second=63 amount=-2 +kerning first=230 second=102 amount=-1 +kerning first=230 second=118 amount=-1 +kerning first=230 second=119 amount=-1 +kerning first=230 second=120 amount=-2 +kerning first=230 second=122 amount=-1 +kerning first=230 second=373 amount=-1 +kerning first=230 second=378 amount=-1 +kerning first=230 second=380 amount=-1 +kerning first=230 second=382 amount=-1 +kerning first=230 second=947 amount=-1 +kerning first=230 second=955 amount=-1 +kerning first=230 second=957 amount=-1 +kerning first=230 second=964 amount=-1 +kerning first=230 second=967 amount=-2 +kerning first=230 second=1076 amount=-1 +kerning first=230 second=1078 amount=-2 +kerning first=230 second=1083 amount=-1 +kerning first=230 second=1090 amount=-1 +kerning first=230 second=1093 amount=-2 +kerning first=230 second=1098 amount=-1 +kerning first=230 second=1113 amount=-1 +kerning first=230 second=1175 amount=-2 +kerning first=230 second=1185 amount=-1 +kerning first=230 second=1199 amount=-1 +kerning first=230 second=1203 amount=-2 +kerning first=230 second=1299 amount=-1 +kerning first=230 second=8216 amount=-1 +kerning first=230 second=8217 amount=-1 +kerning first=230 second=8218 amount=-1 +kerning first=230 second=8220 amount=-1 +kerning first=230 second=8221 amount=-1 +kerning first=230 second=8222 amount=-1 +kerning first=230 second=8230 amount=-1 +kerning first=231 second=34 amount=-1 +kerning first=231 second=39 amount=-1 +kerning first=231 second=63 amount=-1 +kerning first=231 second=118 amount=-1 +kerning first=231 second=119 amount=-1 +kerning first=231 second=120 amount=-1 +kerning first=231 second=373 amount=-1 +kerning first=231 second=947 amount=-1 +kerning first=231 second=955 amount=-1 +kerning first=231 second=957 amount=-1 +kerning first=231 second=1078 amount=-1 +kerning first=231 second=1093 amount=-1 +kerning first=231 second=1175 amount=-1 +kerning first=231 second=1199 amount=-1 +kerning first=231 second=1203 amount=-1 +kerning first=231 second=8216 amount=-1 +kerning first=231 second=8217 amount=-1 +kerning first=231 second=8220 amount=-1 +kerning first=231 second=8221 amount=-1 +kerning first=232 second=34 amount=-1 +kerning first=232 second=39 amount=-1 +kerning first=232 second=44 amount=-1 +kerning first=232 second=46 amount=-1 +kerning first=232 second=47 amount=-1 +kerning first=232 second=63 amount=-2 +kerning first=232 second=102 amount=-1 +kerning first=232 second=118 amount=-1 +kerning first=232 second=119 amount=-1 +kerning first=232 second=120 amount=-2 +kerning first=232 second=122 amount=-1 +kerning first=232 second=373 amount=-1 +kerning first=232 second=378 amount=-1 +kerning first=232 second=380 amount=-1 +kerning first=232 second=382 amount=-1 +kerning first=232 second=947 amount=-1 +kerning first=232 second=955 amount=-1 +kerning first=232 second=957 amount=-1 +kerning first=232 second=964 amount=-1 +kerning first=232 second=967 amount=-2 +kerning first=232 second=1076 amount=-1 +kerning first=232 second=1078 amount=-2 +kerning first=232 second=1083 amount=-1 +kerning first=232 second=1090 amount=-1 +kerning first=232 second=1093 amount=-2 +kerning first=232 second=1098 amount=-1 +kerning first=232 second=1113 amount=-1 +kerning first=232 second=1175 amount=-2 +kerning first=232 second=1185 amount=-1 +kerning first=232 second=1199 amount=-1 +kerning first=232 second=1203 amount=-2 +kerning first=232 second=1299 amount=-1 +kerning first=232 second=8216 amount=-1 +kerning first=232 second=8217 amount=-1 +kerning first=232 second=8218 amount=-1 +kerning first=232 second=8220 amount=-1 +kerning first=232 second=8221 amount=-1 +kerning first=232 second=8222 amount=-1 +kerning first=232 second=8230 amount=-1 +kerning first=233 second=34 amount=-1 +kerning first=233 second=39 amount=-1 +kerning first=233 second=44 amount=-1 +kerning first=233 second=46 amount=-1 +kerning first=233 second=47 amount=-1 +kerning first=233 second=63 amount=-2 +kerning first=233 second=102 amount=-1 +kerning first=233 second=118 amount=-1 +kerning first=233 second=119 amount=-1 +kerning first=233 second=120 amount=-2 +kerning first=233 second=122 amount=-1 +kerning first=233 second=373 amount=-1 +kerning first=233 second=378 amount=-1 +kerning first=233 second=380 amount=-1 +kerning first=233 second=382 amount=-1 +kerning first=233 second=947 amount=-1 +kerning first=233 second=955 amount=-1 +kerning first=233 second=957 amount=-1 +kerning first=233 second=964 amount=-1 +kerning first=233 second=967 amount=-2 +kerning first=233 second=1076 amount=-1 +kerning first=233 second=1078 amount=-2 +kerning first=233 second=1083 amount=-1 +kerning first=233 second=1090 amount=-1 +kerning first=233 second=1093 amount=-2 +kerning first=233 second=1098 amount=-1 +kerning first=233 second=1113 amount=-1 +kerning first=233 second=1175 amount=-2 +kerning first=233 second=1185 amount=-1 +kerning first=233 second=1199 amount=-1 +kerning first=233 second=1203 amount=-2 +kerning first=233 second=1299 amount=-1 +kerning first=233 second=8216 amount=-1 +kerning first=233 second=8217 amount=-1 +kerning first=233 second=8218 amount=-1 +kerning first=233 second=8220 amount=-1 +kerning first=233 second=8221 amount=-1 +kerning first=233 second=8222 amount=-1 +kerning first=233 second=8230 amount=-1 +kerning first=234 second=34 amount=-1 +kerning first=234 second=39 amount=-1 +kerning first=234 second=44 amount=-1 +kerning first=234 second=46 amount=-1 +kerning first=234 second=47 amount=-1 +kerning first=234 second=63 amount=-2 +kerning first=234 second=102 amount=-1 +kerning first=234 second=118 amount=-1 +kerning first=234 second=119 amount=-1 +kerning first=234 second=120 amount=-2 +kerning first=234 second=122 amount=-1 +kerning first=234 second=373 amount=-1 +kerning first=234 second=378 amount=-1 +kerning first=234 second=380 amount=-1 +kerning first=234 second=382 amount=-1 +kerning first=234 second=947 amount=-1 +kerning first=234 second=955 amount=-1 +kerning first=234 second=957 amount=-1 +kerning first=234 second=964 amount=-1 +kerning first=234 second=967 amount=-2 +kerning first=234 second=1076 amount=-1 +kerning first=234 second=1078 amount=-2 +kerning first=234 second=1083 amount=-1 +kerning first=234 second=1090 amount=-1 +kerning first=234 second=1093 amount=-2 +kerning first=234 second=1098 amount=-1 +kerning first=234 second=1113 amount=-1 +kerning first=234 second=1175 amount=-2 +kerning first=234 second=1185 amount=-1 +kerning first=234 second=1199 amount=-1 +kerning first=234 second=1203 amount=-2 +kerning first=234 second=1299 amount=-1 +kerning first=234 second=8216 amount=-1 +kerning first=234 second=8217 amount=-1 +kerning first=234 second=8218 amount=-1 +kerning first=234 second=8220 amount=-1 +kerning first=234 second=8221 amount=-1 +kerning first=234 second=8222 amount=-1 +kerning first=234 second=8230 amount=-1 +kerning first=235 second=34 amount=-1 +kerning first=235 second=39 amount=-1 +kerning first=235 second=44 amount=-1 +kerning first=235 second=46 amount=-1 +kerning first=235 second=47 amount=-1 +kerning first=235 second=63 amount=-2 +kerning first=235 second=102 amount=-1 +kerning first=235 second=118 amount=-1 +kerning first=235 second=119 amount=-1 +kerning first=235 second=120 amount=-2 +kerning first=235 second=122 amount=-1 +kerning first=235 second=373 amount=-1 +kerning first=235 second=378 amount=-1 +kerning first=235 second=380 amount=-1 +kerning first=235 second=382 amount=-1 +kerning first=235 second=947 amount=-1 +kerning first=235 second=955 amount=-1 +kerning first=235 second=957 amount=-1 +kerning first=235 second=964 amount=-1 +kerning first=235 second=967 amount=-2 +kerning first=235 second=1076 amount=-1 +kerning first=235 second=1078 amount=-2 +kerning first=235 second=1083 amount=-1 +kerning first=235 second=1090 amount=-1 +kerning first=235 second=1093 amount=-2 +kerning first=235 second=1098 amount=-1 +kerning first=235 second=1113 amount=-1 +kerning first=235 second=1175 amount=-2 +kerning first=235 second=1185 amount=-1 +kerning first=235 second=1199 amount=-1 +kerning first=235 second=1203 amount=-2 +kerning first=235 second=1299 amount=-1 +kerning first=235 second=8216 amount=-1 +kerning first=235 second=8217 amount=-1 +kerning first=235 second=8218 amount=-1 +kerning first=235 second=8220 amount=-1 +kerning first=235 second=8221 amount=-1 +kerning first=235 second=8222 amount=-1 +kerning first=235 second=8230 amount=-1 +kerning first=241 second=34 amount=-1 +kerning first=241 second=39 amount=-1 +kerning first=241 second=63 amount=-2 +kerning first=241 second=102 amount=-1 +kerning first=241 second=106 amount=1 +kerning first=241 second=118 amount=-1 +kerning first=241 second=119 amount=-1 +kerning first=241 second=373 amount=-1 +kerning first=241 second=947 amount=-1 +kerning first=241 second=957 amount=-1 +kerning first=241 second=964 amount=-1 +kerning first=241 second=1090 amount=-1 +kerning first=241 second=1098 amount=-1 +kerning first=241 second=1112 amount=1 +kerning first=241 second=1185 amount=-1 +kerning first=241 second=1199 amount=-1 +kerning first=241 second=8216 amount=-1 +kerning first=241 second=8217 amount=-1 +kerning first=241 second=8220 amount=-1 +kerning first=241 second=8221 amount=-1 +kerning first=242 second=34 amount=-1 +kerning first=242 second=39 amount=-1 +kerning first=242 second=44 amount=-1 +kerning first=242 second=46 amount=-1 kerning first=242 second=47 amount=-1 -kerning first=239 second=275 amount=-1 -kerning first=362 second=197 amount=-2 -kerning first=958 second=87 amount=-5 -kerning first=119 second=289 amount=-1 -kerning first=382 second=337 amount=-1 -kerning first=37 second=71 amount=-2 -kerning first=1027 second=940 amount=-1 -kerning first=176 second=221 amount=-5 -kerning first=287 second=351 amount=-1 -kerning first=8224 second=1038 amount=-2 -kerning first=57 second=233 amount=-1 -kerning first=197 second=363 amount=-1 -kerning first=194 second=1177 amount=-1 -kerning first=77 second=375 amount=-1 -kerning first=926 second=338 amount=-2 -kerning first=94 second=8211 amount=-2 -kerning first=934 second=100 amount=-1 -kerning first=1184 second=250 amount=-1 -kerning first=363 second=352 amount=-1 -kerning first=960 second=262 amount=-2 -kerning first=123 second=234 amount=-1 -kerning first=1298 second=1241 amount=-1 -kerning first=38 second=246 amount=-1 -kerning first=177 second=376 amount=-5 -kerning first=291 second=291 amount=-1 -kerning first=288 second=1035 amount=-1 -kerning first=1073 second=339 amount=-1 -kerning first=195 second=8212 amount=-2 -kerning first=198 second=1059 amount=-2 -kerning first=1076 second=101 amount=-1 -kerning first=75 second=8249 amount=-3 -kerning first=1101 second=955 amount=-1 -kerning first=964 second=212 amount=-2 -kerning first=261 second=8216 amount=-1 -kerning first=1036 second=1118 amount=-2 -kerning first=1039 second=354 amount=-5 -kerning first=175 second=8250 amount=-1 -kerning first=62 second=336 amount=-2 -kerning first=1074 second=970 amount=-1 -kerning first=1078 second=279 amount=-2 -kerning first=205 second=248 amount=-1 -kerning first=325 second=171 amount=-3 -kerning first=85 second=260 amount=-2 -kerning first=942 second=225 amount=-1 -kerning first=245 second=1076 amount=-1 -kerning first=251 second=87 amount=-5 -kerning first=962 second=1185 amount=-3 -kerning first=965 second=367 amount=-1 -kerning first=161 second=337 amount=-1 -kerning first=164 second=99 amount=-1 -kerning first=274 second=249 amount=-1 -kerning first=43 second=351 amount=-1 -kerning first=1041 second=1038 amount=-2 -kerning first=186 second=261 amount=-1 -kerning first=183 second=953 amount=-1 -kerning first=1083 second=226 amount=-1 -kerning first=8377 second=268 amount=-2 -kerning first=89 second=210 amount=-3 -kerning first=252 second=262 amount=-2 -kerning first=375 second=187 amount=-1 -kerning first=372 second=1241 amount=-3 -kerning first=963 second=8220 amount=-3 -kerning first=162 second=968 amount=-1 -kerning first=165 second=277 amount=-1 -kerning first=278 second=199 amount=-2 -kerning first=8218 second=117 amount=-1 -kerning first=44 second=1035 amount=-5 -kerning first=47 second=291 amount=-1 -kerning first=190 second=211 amount=-2 -kerning first=302 second=339 amount=-1 -kerning first=305 second=101 amount=-1 -kerning first=299 second=1098 amount=-3 -kerning first=87 second=1179 amount=-2 -kerning first=1117 second=1066 amount=-5 -kerning first=1220 second=240 amount=-1 -kerning first=256 second=212 amount=-2 -kerning first=973 second=252 amount=-1 -kerning first=169 second=224 amount=-1 -kerning first=276 second=1118 amount=-1 -kerning first=8216 second=1044 amount=-3 -kerning first=8224 second=67 amount=-2 -kerning first=188 second=1184 amount=-5 -kerning first=191 second=366 amount=-2 -kerning first=306 second=279 amount=-1 -kerning first=303 second=970 amount=-1 -kerning first=74 second=171 amount=-3 -kerning first=916 second=103 amount=-1 -kerning first=237 second=225 amount=-1 -kerning first=357 second=355 amount=-1 -kerning first=354 second=1119 amount=-2 -kerning first=952 second=267 amount=-1 -kerning first=254 second=1185 amount=-3 -kerning first=280 second=1038 amount=-2 -kerning first=8225 second=242 amount=-1 -kerning first=8221 second=923 amount=-3 -kerning first=1063 second=1101 amount=-1 -kerning first=912 second=972 amount=-1 -kerning first=95 second=941 amount=-1 -kerning first=364 second=65 amount=-2 -kerning first=118 second=1241 amount=-1 -kerning first=121 second=187 amount=-1 -kerning first=255 second=8220 amount=-3 -kerning first=36 second=199 amount=-2 -kerning first=1036 second=117 amount=-1 -kerning first=178 second=89 amount=-5 -kerning first=53 second=1098 amount=-3 -kerning first=56 second=339 amount=-1 -kerning first=1067 second=973 amount=-1 -kerning first=59 second=101 amount=-1 -kerning first=8361 second=332 amount=-2 -kerning first=931 second=228 amount=-1 -kerning first=1186 second=118 amount=-2 -kerning first=365 second=240 amount=-1 -kerning first=362 second=916 amount=-2 -kerning first=958 second=370 amount=-2 -kerning first=37 second=354 amount=-5 -kerning first=1041 second=67 amount=-2 -kerning first=179 second=266 amount=-2 -kerning first=183 second=39 amount=-3 -kerning first=60 second=279 amount=-1 -kerning first=57 second=970 amount=-1 -kerning first=8365 second=271 amount=-1 -kerning first=1103 second=371 amount=-1 -kerning first=926 second=1257 amount=-1 -kerning first=103 second=355 amount=-1 -kerning first=38 second=1038 amount=-2 -kerning first=1038 second=923 amount=-2 -kerning first=1044 second=242 amount=-1 -kerning first=184 second=214 amount=-2 -kerning first=291 second=1101 amount=-1 -kerning first=64 second=226 amount=-1 -kerning first=1073 second=1262 amount=-2 -kerning first=204 second=356 amount=-5 -kerning first=207 second=116 amount=-1 -kerning first=8372 second=219 amount=-2 -kerning first=1117 second=81 amount=-2 -kerning first=1202 second=243 amount=-1 -kerning first=163 second=227 amount=-1 -kerning first=273 second=357 amount=-1 -kerning first=276 second=117 amount=-1 -kerning first=185 second=369 amount=-1 -kerning first=297 second=973 amount=-1 -kerning first=1081 second=332 amount=-2 -kerning first=906 second=106 amount=1 -kerning first=354 second=118 amount=-2 -kerning first=942 second=962 amount=-1 -kerning first=251 second=370 amount=-2 -kerning first=374 second=283 amount=-4 -kerning first=161 second=1256 amount=-2 -kerning first=280 second=67 amount=-2 -kerning first=8217 second=245 amount=-1 -kerning first=192 second=79 amount=-2 -kerning first=304 second=229 amount=-1 -kerning first=1083 second=963 amount=-1 -kerning first=1087 second=271 amount=-1 -kerning first=209 second=920 amount=-2 -kerning first=330 second=371 amount=-1 -kerning first=904 second=1026 amount=-5 -kerning first=92 second=253 amount=-1 -kerning first=352 second=1046 amount=-1 -kerning first=950 second=218 amount=-2 -kerning first=1219 second=346 amount=-1 -kerning first=47 second=1101 amount=-1 -kerning first=1064 second=287 amount=-1 -kerning first=190 second=945 amount=-1 -kerning first=305 second=1240 amount=-2 -kerning first=302 second=1262 amount=-2 -kerning first=73 second=268 amount=-2 -kerning first=1096 second=219 amount=-2 -kerning first=915 second=231 amount=-1 -kerning first=1171 second=361 amount=-1 -kerning first=1176 second=121 amount=-1 -kerning first=951 second=373 amount=-4 -kerning first=113 second=1102 amount=2 -kerning first=1220 second=1028 amount=-2 -kerning first=376 second=1263 amount=-2 -kerning first=172 second=269 amount=-1 -kerning first=8224 second=350 amount=-1 -kerning first=51 second=973 amount=-1 -kerning first=77 second=216 amount=-2 -kerning first=100 second=118 amount=-4 -kerning first=1184 second=71 amount=-3 -kerning first=237 second=962 amount=-1 -kerning first=960 second=83 amount=-1 -kerning first=120 second=283 amount=-2 -kerning first=1298 second=233 amount=-1 -kerning first=38 second=67 amount=-2 -kerning first=1035 second=245 amount=-1 -kerning first=177 second=217 amount=-2 -kerning first=8240 second=290 amount=-2 -kerning first=58 second=229 amount=-1 -kerning first=201 second=119 amount=-4 -kerning first=198 second=359 amount=-1 -kerning first=313 second=963 amount=-1 -kerning first=316 second=271 amount=-1 -kerning first=78 second=371 amount=-1 -kerning first=75 second=1195 amount=-2 -kerning first=221 second=286 amount=-3 -kerning first=928 second=334 amount=-2 -kerning first=1178 second=934 amount=-2 -kerning first=1185 second=246 amount=-2 -kerning first=124 second=230 amount=-1 -kerning first=269 second=120 amount=-1 -kerning first=39 second=242 amount=-1 -kerning first=175 second=947 amount=-4 -kerning first=178 second=372 amount=-5 -kerning first=294 second=287 amount=-1 -kerning first=59 second=1240 amount=-2 -kerning first=56 second=1262 amount=-2 -kerning first=1074 second=335 amount=-1 -kerning first=1078 second=97 amount=-1 -kerning first=322 second=219 amount=-2 -kerning first=931 second=965 amount=-1 -kerning first=105 second=243 amount=-1 -kerning first=245 second=373 amount=-1 -kerning first=365 second=1028 amount=-2 -kerning first=1041 second=350 amount=-1 -kerning first=298 second=232 amount=-1 -kerning first=63 second=332 amount=-2 -kerning first=1075 second=966 amount=-1 -kerning first=206 second=244 amount=-1 -kerning first=323 second=374 amount=-5 -kerning first=901 second=289 amount=-1 -kerning first=86 second=256 amount=-6 -kerning first=8377 second=87 amount=-5 +kerning first=242 second=63 amount=-2 +kerning first=242 second=102 amount=-1 +kerning first=242 second=118 amount=-1 +kerning first=242 second=119 amount=-1 +kerning first=242 second=120 amount=-2 +kerning first=242 second=122 amount=-1 +kerning first=242 second=373 amount=-1 +kerning first=242 second=378 amount=-1 +kerning first=242 second=380 amount=-1 +kerning first=242 second=382 amount=-1 +kerning first=242 second=947 amount=-1 +kerning first=242 second=955 amount=-1 +kerning first=242 second=957 amount=-1 +kerning first=242 second=964 amount=-1 +kerning first=242 second=967 amount=-2 +kerning first=242 second=1076 amount=-1 +kerning first=242 second=1078 amount=-2 +kerning first=242 second=1083 amount=-1 +kerning first=242 second=1090 amount=-1 +kerning first=242 second=1093 amount=-2 +kerning first=242 second=1098 amount=-1 +kerning first=242 second=1113 amount=-1 +kerning first=242 second=1175 amount=-2 +kerning first=242 second=1185 amount=-1 +kerning first=242 second=1199 amount=-1 +kerning first=242 second=1203 amount=-2 +kerning first=242 second=1299 amount=-1 +kerning first=242 second=8216 amount=-1 +kerning first=242 second=8217 amount=-1 +kerning first=242 second=8218 amount=-1 +kerning first=242 second=8220 amount=-1 +kerning first=242 second=8221 amount=-1 +kerning first=242 second=8222 amount=-1 +kerning first=242 second=8230 amount=-1 +kerning first=243 second=34 amount=-1 +kerning first=243 second=39 amount=-1 +kerning first=243 second=44 amount=-1 +kerning first=243 second=46 amount=-1 +kerning first=243 second=47 amount=-1 +kerning first=243 second=63 amount=-2 +kerning first=243 second=102 amount=-1 +kerning first=243 second=118 amount=-1 +kerning first=243 second=119 amount=-1 +kerning first=243 second=120 amount=-2 +kerning first=243 second=122 amount=-1 +kerning first=243 second=373 amount=-1 +kerning first=243 second=378 amount=-1 +kerning first=243 second=380 amount=-1 +kerning first=243 second=382 amount=-1 +kerning first=243 second=947 amount=-1 +kerning first=243 second=955 amount=-1 +kerning first=243 second=957 amount=-1 +kerning first=243 second=964 amount=-1 +kerning first=243 second=967 amount=-2 +kerning first=243 second=1076 amount=-1 +kerning first=243 second=1078 amount=-2 +kerning first=243 second=1083 amount=-1 +kerning first=243 second=1090 amount=-1 +kerning first=243 second=1093 amount=-2 +kerning first=243 second=1098 amount=-1 +kerning first=243 second=1113 amount=-1 +kerning first=243 second=1175 amount=-2 +kerning first=243 second=1185 amount=-1 +kerning first=243 second=1199 amount=-1 +kerning first=243 second=1203 amount=-2 +kerning first=243 second=1299 amount=-1 +kerning first=243 second=8216 amount=-1 +kerning first=243 second=8217 amount=-1 +kerning first=243 second=8218 amount=-1 +kerning first=243 second=8220 amount=-1 +kerning first=243 second=8221 amount=-1 +kerning first=243 second=8222 amount=-1 kerning first=243 second=8230 amount=-1 -kerning first=947 second=351 amount=-1 -kerning first=252 second=83 amount=-1 -kerning first=372 second=233 amount=-3 -kerning first=1206 second=111 amount=-1 -kerning first=963 second=1177 amount=-1 -kerning first=162 second=333 amount=-1 -kerning first=8212 second=198 amount=-2 -kerning first=1048 second=290 amount=-2 -kerning first=184 second=949 amount=-1 -kerning first=64 second=963 amount=-1 -kerning first=70 second=44 amount=-4 -kerning first=210 second=194 amount=-2 -kerning first=8378 second=262 amount=-2 -kerning first=905 second=234 amount=-1 -kerning first=1117 second=364 amount=-2 -kerning first=227 second=1090 amount=-1 -kerning first=944 second=376 amount=-5 -kerning first=113 second=108 amount=2 -kerning first=1202 second=1035 amount=-2 -kerning first=964 second=8212 amount=-2 -kerning first=967 second=1059 amount=-2 -kerning first=166 second=273 amount=-1 -kerning first=169 second=45 amount=-2 -kerning first=163 second=964 amount=-3 -kerning first=8216 second=353 amount=-1 -kerning first=8220 second=113 amount=-1 -kerning first=48 second=287 amount=-1 -kerning first=1062 second=235 amount=-1 -kerning first=303 second=335 amount=-1 -kerning first=306 second=97 amount=-1 -kerning first=335 second=34 amount=-1 -kerning first=91 second=361 amount=-1 -kerning first=94 second=121 amount=-1 -kerning first=942 second=8250 amount=-1 -kerning first=377 second=336 amount=-1 -kerning first=170 second=220 amount=-2 -kerning first=277 second=1113 amount=-1 -kerning first=280 second=350 amount=-1 -kerning first=52 second=232 amount=-1 -kerning first=192 second=362 amount=-2 -kerning first=189 second=1176 amount=-1 -kerning first=304 second=966 amount=-1 -kerning first=72 second=374 amount=-5 -kerning first=215 second=289 amount=-1 -kerning first=212 second=1033 amount=-1 -kerning first=912 second=337 amount=-1 -kerning first=1170 second=940 amount=-1 -kerning first=238 second=221 amount=-5 -kerning first=361 second=111 amount=-1 -kerning first=950 second=953 amount=-1 -kerning first=358 second=351 amount=-1 -kerning first=118 second=233 amount=-1 -kerning first=255 second=1177 amount=-1 -kerning first=258 second=363 amount=-1 -kerning first=1033 second=198 amount=-1 -kerning first=1067 second=338 amount=-2 -kerning first=190 second=8211 amount=-2 -kerning first=79 second=84 amount=-2 -kerning first=1099 second=262 amount=-2 -kerning first=915 second=968 amount=-1 -kerning first=923 second=277 amount=-1 -kerning first=239 second=376 amount=-5 -kerning first=958 second=211 amount=-2 -kerning first=1263 second=339 amount=-1 -kerning first=256 second=8212 amount=-2 -kerning first=1037 second=113 amount=-1 -kerning first=169 second=8249 amount=-3 -kerning first=179 second=85 amount=-2 -kerning first=57 second=335 amount=-1 -kerning first=60 second=97 amount=-1 -kerning first=197 second=936 amount=-3 -kerning first=80 second=259 amount=-1 -kerning first=1103 second=212 amount=-2 -kerning first=335 second=8216 amount=-1 -kerning first=934 second=224 amount=-1 -kerning first=237 second=8250 amount=-1 -kerning first=955 second=1184 amount=-5 -kerning first=960 second=366 amount=-2 -kerning first=120 second=1095 amount=-1 -kerning first=123 second=336 amount=-2 -kerning first=1298 second=970 amount=-1 -kerning first=38 second=350 amount=-1 -kerning first=1044 second=63 amount=-2 -kerning first=58 second=966 amount=-1 -kerning first=61 second=275 amount=-1 -kerning first=8366 second=267 amount=-1 -kerning first=1101 second=1185 amount=-1 -kerning first=221 second=1096 amount=-3 -kerning first=107 second=111 amount=-2 -kerning first=247 second=261 amount=-1 -kerning first=42 second=290 amount=-2 -kerning first=185 second=210 amount=-2 -kerning first=297 second=338 amount=-2 -kerning first=300 second=100 amount=-1 -kerning first=205 second=352 amount=-1 -kerning first=325 second=262 amount=-2 -kerning first=900 second=1241 amount=-1 -kerning first=903 second=187 amount=-1 -kerning first=1102 second=8220 amount=-1 -kerning first=105 second=1035 amount=-5 -kerning first=108 second=291 amount=-1 -kerning first=251 second=211 amount=-2 -kerning first=371 second=339 amount=-1 -kerning first=374 second=101 amount=-4 -kerning first=968 second=251 amount=-1 -kerning first=274 second=353 amount=-1 -kerning first=186 second=365 amount=-1 -kerning first=330 second=212 amount=-2 -kerning first=8370 second=1194 amount=-2 -kerning first=8377 second=370 amount=-2 -kerning first=1119 second=252 amount=-1 -kerning first=352 second=354 amount=-1 -kerning first=946 second=266 amount=-2 -kerning first=950 second=39 amount=-3 -kerning first=249 second=1184 amount=-5 -kerning first=252 second=366 amount=-2 -kerning first=375 second=279 amount=-1 -kerning first=168 second=171 amount=-3 -kerning first=281 second=63 amount=-2 -kerning first=184 second=8217 amount=-3 -kerning first=1064 second=103 amount=-1 -kerning first=305 second=225 amount=-1 -kerning first=70 second=324 amount=-1 -kerning first=73 second=87 amount=-5 -kerning first=1090 second=267 amount=-1 -kerning first=327 second=1185 amount=-3 -kerning first=90 second=940 amount=-1 -kerning first=93 second=249 amount=-1 -kerning first=951 second=214 amount=-2 -kerning first=973 second=356 amount=-5 -kerning first=1027 second=116 amount=-1 -kerning first=51 second=338 amount=-2 -kerning first=54 second=100 amount=-1 -kerning first=194 second=250 amount=-1 -kerning first=191 second=941 amount=-1 -kerning first=1062 second=972 amount=-1 -kerning first=1065 second=281 amount=-1 -kerning first=74 second=262 amount=-2 -kerning first=214 second=1241 amount=-1 -kerning first=328 second=8220 amount=-1 -kerning first=916 second=227 amount=-1 -kerning first=240 second=89 amount=-5 -kerning first=952 second=369 amount=-1 -kerning first=117 second=339 amount=-1 -kerning first=1223 second=973 amount=-1 -kerning first=120 second=101 amount=-2 -kerning first=260 second=251 amount=-1 -kerning first=35 second=113 amount=-1 -kerning first=174 second=263 amount=-1 -kerning first=8240 second=106 amount=1 -kerning first=78 second=212 amount=-2 -kerning first=1095 second=1194 amount=-2 -kerning first=912 second=1256 amount=-2 -kerning first=95 second=1118 amount=-1 +kerning first=244 second=34 amount=-1 kerning first=244 second=39 amount=-1 -kerning first=121 second=279 amount=-1 -kerning first=1299 second=229 amount=-1 -kerning first=178 second=213 amount=-2 -kerning first=294 second=103 amount=-1 -kerning first=8226 second=1026 amount=-5 -kerning first=59 second=225 amount=-1 -kerning first=1067 second=1257 amount=-1 -kerning first=202 second=115 amount=-1 -kerning first=317 second=267 amount=-1 -kerning first=8364 second=218 amount=-2 -kerning first=1186 second=242 amount=-1 -kerning first=958 second=945 amount=-1 -kerning first=125 second=226 amount=-1 -kerning first=1263 second=1262 amount=-2 -kerning first=179 second=368 amount=-2 -kerning first=8365 second=373 amount=-4 -kerning first=77 second=8220 amount=-3 -kerning first=1048 second=106 amount=1 -kerning first=180 second=1066 amount=-5 -kerning first=177 second=8221 amount=-3 -kerning first=299 second=228 amount=-1 -kerning first=67 second=90 amount=-1 -kerning first=1076 second=962 amount=-1 -kerning first=207 second=240 amount=-1 -kerning first=321 second=1194 amount=-2 -kerning first=8378 second=83 amount=-1 -kerning first=902 second=283 amount=-1 -kerning first=87 second=252 amount=-2 -kerning first=944 second=217 amount=-2 +kerning first=244 second=44 amount=-1 +kerning first=244 second=46 amount=-1 +kerning first=244 second=47 amount=-1 +kerning first=244 second=63 amount=-2 +kerning first=244 second=102 amount=-1 +kerning first=244 second=118 amount=-1 +kerning first=244 second=119 amount=-1 +kerning first=244 second=120 amount=-2 +kerning first=244 second=122 amount=-1 +kerning first=244 second=373 amount=-1 +kerning first=244 second=378 amount=-1 +kerning first=244 second=380 amount=-1 +kerning first=244 second=382 amount=-1 +kerning first=244 second=947 amount=-1 +kerning first=244 second=955 amount=-1 +kerning first=244 second=957 amount=-1 +kerning first=244 second=964 amount=-1 +kerning first=244 second=967 amount=-2 +kerning first=244 second=1076 amount=-1 +kerning first=244 second=1078 amount=-2 +kerning first=244 second=1083 amount=-1 +kerning first=244 second=1090 amount=-1 +kerning first=244 second=1093 amount=-2 +kerning first=244 second=1098 amount=-1 +kerning first=244 second=1113 amount=-1 +kerning first=244 second=1175 amount=-2 +kerning first=244 second=1185 amount=-1 +kerning first=244 second=1199 amount=-1 +kerning first=244 second=1203 amount=-2 +kerning first=244 second=1299 amount=-1 +kerning first=244 second=8216 amount=-1 +kerning first=244 second=8217 amount=-1 +kerning first=244 second=8218 amount=-1 +kerning first=244 second=8220 amount=-1 +kerning first=244 second=8221 amount=-1 kerning first=244 second=8222 amount=-1 -kerning first=253 second=79 amount=-2 -kerning first=373 second=229 amount=-1 -kerning first=967 second=359 amount=-1 -kerning first=970 second=119 amount=-2 -kerning first=273 second=920 amount=-2 -kerning first=8216 second=194 amount=-3 -kerning first=48 second=103 amount=-1 -kerning first=1049 second=286 amount=-2 -kerning first=188 second=253 amount=-1 -kerning first=297 second=1257 amount=-1 -kerning first=1085 second=218 amount=-2 -kerning first=906 second=230 amount=-1 -kerning first=1118 second=360 amount=-2 -kerning first=354 second=242 amount=-3 -kerning first=942 second=947 amount=-4 -kerning first=108 second=1101 amount=-1 -kerning first=1210 second=287 amount=-1 -kerning first=251 second=945 amount=-1 -kerning first=371 second=1262 amount=-2 -kerning first=374 second=1240 amount=-3 -kerning first=167 second=268 amount=-2 -kerning first=8217 second=347 amount=-1 -kerning first=49 second=281 amount=-1 -kerning first=1063 second=231 amount=-1 -kerning first=1087 second=373 amount=-4 -kerning first=904 second=1263 amount=-1 -kerning first=89 second=1169 amount=-3 -kerning first=95 second=117 amount=-1 -kerning first=92 second=357 amount=-1 -kerning first=1224 second=232 amount=-1 -kerning first=1026 second=244 amount=-1 -kerning first=286 second=106 amount=2 -kerning first=8222 second=289 amount=-1 -kerning first=53 second=228 amount=-1 -kerning first=1059 second=1298 amount=-1 -kerning first=196 second=118 amount=-4 -kerning first=305 second=962 amount=-1 -kerning first=70 second=1194 amount=-2 -kerning first=73 second=370 amount=-2 -kerning first=1099 second=83 amount=-1 -kerning first=915 second=333 amount=-1 -kerning first=910 second=1087 amount=-3 -kerning first=1176 second=245 amount=-1 -kerning first=239 second=217 amount=-2 -kerning first=951 second=949 amount=-1 -kerning first=954 second=257 amount=-1 -kerning first=119 second=229 amount=-1 -kerning first=379 second=963 amount=-1 -kerning first=382 second=271 amount=-1 -kerning first=169 second=1195 amount=-1 -kerning first=172 second=371 amount=-1 -kerning first=1034 second=194 amount=-1 -kerning first=282 second=1026 amount=-5 -kerning first=287 second=286 amount=-2 -kerning first=51 second=1257 amount=-1 -kerning first=1065 second=1090 amount=-2 -kerning first=315 second=218 amount=-1 -kerning first=338 second=360 amount=-2 -kerning first=926 second=273 amount=-1 -kerning first=934 second=45 amount=-2 -kerning first=100 second=242 amount=-1 -kerning first=916 second=964 amount=-3 -kerning first=237 second=947 amount=-4 -kerning first=240 second=372 amount=-5 -kerning first=363 second=287 amount=-1 -kerning first=117 second=1262 amount=-2 -kerning first=1298 second=335 amount=-1 -kerning first=1035 second=347 amount=-1 -kerning first=174 second=1069 amount=-1 -kerning first=180 second=81 amount=-2 -kerning first=291 second=231 amount=-1 -kerning first=201 second=243 amount=-1 -kerning first=316 second=373 amount=-4 -kerning first=936 second=220 amount=-2 -kerning first=367 second=232 amount=-1 -kerning first=956 second=1176 amount=-1 -kerning first=124 second=332 amount=-2 -kerning first=1299 second=966 amount=-1 -kerning first=42 second=106 amount=1 -kerning first=1039 second=289 amount=-1 -kerning first=59 second=962 amount=-1 -kerning first=325 second=83 amount=-1 -kerning first=8369 second=261 amount=-1 -kerning first=900 second=233 amount=-1 -kerning first=8364 second=953 amount=-1 -kerning first=958 second=8211 amount=-2 -kerning first=125 second=963 amount=-1 -kerning first=161 second=271 amount=-1 -kerning first=40 second=1026 amount=-5 -kerning first=46 second=56 amount=-1 -kerning first=43 second=286 amount=-2 -kerning first=295 second=1090 amount=-1 -kerning first=298 second=334 amount=-2 -kerning first=206 second=346 amount=-1 -kerning first=8377 second=211 amount=-2 -kerning first=86 second=360 amount=-2 -kerning first=1103 second=8212 amount=-2 -kerning first=83 second=1174 amount=-1 -kerning first=89 second=120 amount=-2 -kerning first=226 second=964 amount=-1 -kerning first=934 second=8249 amount=-3 -kerning first=946 second=85 amount=-2 -kerning first=1206 second=235 amount=-1 -kerning first=372 second=335 amount=-3 -kerning first=375 second=97 amount=-1 -kerning first=165 second=219 amount=-2 -kerning first=271 second=1108 amount=-1 -kerning first=47 second=231 amount=-2 -kerning first=190 second=121 amount=-1 -kerning first=299 second=965 amount=-1 -kerning first=207 second=1028 amount=-2 -kerning first=8372 second=1184 amount=-5 -kerning first=8378 second=366 amount=-2 -kerning first=905 second=336 amount=-2 -kerning first=1168 second=248 amount=-1 -kerning first=356 second=110 amount=-2 -kerning first=113 second=232 amount=-1 -kerning first=250 second=1176 amount=-1 -kerning first=253 second=362 amount=-2 -kerning first=373 second=966 amount=-1 -kerning first=376 second=275 amount=-4 -kerning first=166 second=374 amount=-5 -kerning first=45 second=1298 amount=-4 -kerning first=1062 second=337 amount=-1 -kerning first=1065 second=99 amount=-1 -kerning first=194 second=71 amount=-2 -kerning first=306 second=221 amount=-5 -kerning first=68 second=1071 amount=-1 -kerning first=74 second=83 amount=-1 -kerning first=1085 second=953 amount=-1 -kerning first=214 second=233 amount=-1 -kerning first=94 second=245 amount=-1 -kerning first=357 second=290 amount=-2 -kerning first=952 second=210 amount=-2 -kerning first=111 second=1299 amount=-1 -kerning first=1223 second=338 amount=-2 -kerning first=251 second=8211 amount=-2 -kerning first=174 second=84 amount=-5 -kerning first=8221 second=1241 amount=-1 -kerning first=8225 second=187 amount=-1 -kerning first=52 second=334 amount=-2 -kerning first=1063 second=968 amount=-1 -kerning first=195 second=246 amount=-1 -kerning first=49 second=1090 amount=-3 -kerning first=330 second=8212 amount=-2 -kerning first=1178 second=113 amount=-1 -kerning first=361 second=235 amount=-1 -kerning first=950 second=1179 amount=-2 -kerning first=118 second=335 amount=-1 -kerning first=121 second=97 amount=-1 -kerning first=258 second=936 amount=-3 -kerning first=381 second=377 amount=1 -kerning first=175 second=259 amount=-1 -kerning first=178 second=34 amount=-3 -kerning first=53 second=965 amount=-1 -kerning first=199 second=196 amount=-1 -kerning first=305 second=8250 amount=-1 -kerning first=8361 second=266 amount=-2 -kerning first=8364 second=39 amount=-3 -kerning first=1096 second=1184 amount=-5 -kerning first=1099 second=366 amount=-2 -kerning first=931 second=171 amount=-3 -kerning first=1186 second=63 amount=-2 -kerning first=951 second=8217 amount=-3 -kerning first=119 second=966 amount=-1 -kerning first=122 second=275 amount=-1 -kerning first=34 second=1033 amount=-3 -kerning first=37 second=289 amount=-1 -kerning first=60 second=221 amount=-5 -kerning first=200 second=351 amount=-1 -kerning first=203 second=111 amount=-1 -kerning first=318 second=261 amount=-1 -kerning first=8365 second=214 amount=-2 -kerning first=80 second=363 amount=-1 -kerning first=77 second=1177 amount=-1 -kerning first=103 second=290 amount=-2 -kerning first=369 second=100 amount=-1 -kerning first=963 second=250 amount=-1 -kerning first=960 second=941 amount=-1 -kerning first=41 second=234 amount=-1 -kerning first=180 second=364 amount=-2 -kerning first=291 second=968 amount=-1 -kerning first=296 second=277 amount=-1 -kerning first=61 second=376 amount=-5 -kerning first=1073 second=1079 amount=-1 -kerning first=201 second=1035 amount=-5 -kerning first=204 second=291 amount=-1 -kerning first=1080 second=89 amount=-5 -kerning first=8366 second=369 amount=-1 -kerning first=78 second=8212 amount=-2 -kerning first=902 second=101 amount=-1 -kerning first=345 second=353 amount=-1 -kerning first=936 second=955 amount=-2 -kerning first=107 second=235 amount=-2 -kerning first=247 second=365 amount=-1 -kerning first=178 second=8216 amount=-3 -kerning first=300 second=224 amount=-1 -kerning first=59 second=8250 amount=-1 -kerning first=68 second=86 amount=-2 -kerning first=1081 second=266 amount=-2 -kerning first=1085 second=39 amount=-3 -kerning first=322 second=1184 amount=-5 -kerning first=325 second=366 amount=-2 -kerning first=903 second=279 amount=-1 -kerning first=900 second=970 amount=-1 -kerning first=88 second=248 amount=-2 -kerning first=1210 second=103 amount=-1 -kerning first=245 second=8217 amount=-1 -kerning first=374 second=225 amount=-4 -kerning first=968 second=355 amount=-1 -kerning first=971 second=115 amount=-1 -kerning first=167 second=87 amount=-5 -kerning first=49 second=99 amount=-1 -kerning first=186 second=940 amount=-1 -kerning first=189 second=249 amount=-1 -kerning first=69 second=261 amount=-1 -kerning first=1087 second=214 amount=-2 -kerning first=8377 second=945 amount=-1 -kerning first=1119 second=356 amount=-5 -kerning first=1170 second=116 amount=-1 -kerning first=946 second=368 amount=-2 -kerning first=1219 second=281 amount=-1 -kerning first=255 second=250 amount=-1 -kerning first=252 second=941 amount=-1 -kerning first=1206 second=972 amount=-1 -kerning first=168 second=262 amount=-2 -kerning first=278 second=1241 amount=-1 -kerning first=1241 second=8220 amount=-1 -kerning first=47 second=968 amount=-1 -kerning first=50 second=277 amount=-1 -kerning first=1064 second=227 amount=-1 -kerning first=193 second=199 amount=-2 -kerning first=302 second=1079 amount=-1 -kerning first=73 second=211 amount=-2 -kerning first=93 second=353 amount=-1 -kerning first=96 second=113 amount=-1 -kerning first=233 second=955 amount=-1 -kerning first=236 second=263 amount=-1 -kerning first=948 second=1066 amount=-5 -kerning first=944 second=8221 amount=-3 -kerning first=376 second=1080 amount=-3 -kerning first=1027 second=240 amount=-1 -kerning first=172 second=212 amount=-2 -kerning first=8230 second=55 amount=-1 -kerning first=8224 second=283 amount=-1 -kerning first=54 second=224 amount=-1 -kerning first=1062 second=1256 amount=-1 -kerning first=194 second=354 amount=-5 -kerning first=191 second=1118 amount=-1 -kerning first=315 second=39 amount=-3 -kerning first=71 second=1184 amount=-1 -kerning first=74 second=366 amount=-2 -kerning first=214 second=970 amount=-1 -kerning first=1174 second=920 amount=-1 -kerning first=240 second=213 amount=-2 -kerning first=363 second=103 amount=-1 -kerning first=955 second=253 amount=-1 -kerning first=1223 second=1257 amount=-1 -kerning first=120 second=225 amount=-1 -kerning first=260 second=355 amount=-1 -kerning first=174 second=367 amount=-1 -kerning first=170 second=1185 amount=-3 -kerning first=8240 second=230 amount=-1 -kerning first=195 second=1038 amount=-2 -kerning first=316 second=214 amount=-2 -kerning first=221 second=226 amount=-4 -kerning first=928 second=268 amount=-2 -kerning first=361 second=972 amount=-1 -kerning first=36 second=1241 amount=-1 -kerning first=294 second=227 amount=-1 -kerning first=8226 second=1263 amount=-1 -kerning first=62 second=89 amount=-5 -kerning first=1074 second=269 amount=-1 -kerning first=56 second=1079 amount=-1 -kerning first=317 second=369 amount=-1 -kerning first=222 second=381 amount=-1 -kerning first=239 second=8221 amount=-3 -kerning first=965 second=118 amount=-4 -kerning first=1041 second=283 amount=-1 -kerning first=179 second=943 amount=-1 -kerning first=183 second=252 amount=-1 -kerning first=63 second=266 amount=-2 -kerning first=8365 second=949 amount=-1 -kerning first=8370 second=257 amount=-1 -kerning first=901 second=229 amount=-1 -kerning first=934 second=1195 amount=-1 -kerning first=249 second=253 amount=-1 -kerning first=162 second=267 amount=-1 -kerning first=1048 second=230 amount=-1 -kerning first=1080 second=372 amount=-5 -kerning first=204 second=1101 amount=-1 -kerning first=902 second=1240 amount=-2 -kerning first=948 second=81 amount=-2 -kerning first=107 second=972 amount=-2 -kerning first=1207 second=231 amount=-1 -kerning first=48 second=227 amount=-1 -kerning first=1046 second=1263 amount=-1 -kerning first=188 second=357 amount=-1 -kerning first=191 second=117 amount=-1 -kerning first=303 second=269 amount=-1 -kerning first=906 second=332 amount=-2 -kerning first=1169 second=244 amount=-1 -kerning first=357 second=106 amount=1 -kerning first=114 second=228 amount=-1 -kerning first=257 second=118 amount=-1 -kerning first=374 second=962 amount=-4 -kerning first=164 second=1194 amount=-2 -kerning first=167 second=370 amount=-2 -kerning first=280 second=283 amount=-1 -kerning first=8221 second=233 amount=-1 -kerning first=46 second=1256 amount=-1 -kerning first=1063 second=333 amount=-1 -kerning first=195 second=67 amount=-2 -kerning first=75 second=79 amount=-3 -kerning first=1087 second=949 amount=-1 -kerning first=1095 second=257 amount=-1 -kerning first=215 second=229 amount=-1 -kerning first=8377 second=8211 amount=-2 -kerning first=912 second=271 amount=-1 -kerning first=920 second=44 amount=-1 -kerning first=92 second=920 amount=-2 -kerning first=358 second=286 amount=-2 -kerning first=1219 second=1090 amount=-3 -kerning first=1224 second=334 amount=-2 -kerning first=1026 second=346 amount=-1 -kerning first=1064 second=964 amount=-3 -kerning first=1067 second=273 amount=-1 -kerning first=196 second=242 amount=-1 -kerning first=305 second=947 amount=-4 -kerning first=8361 second=85 amount=-2 -kerning first=73 second=945 amount=-1 -kerning first=923 second=219 amount=-2 -kerning first=1171 second=1108 amount=-1 -kerning first=1176 second=347 amount=-1 -kerning first=236 second=1069 amount=-1 -kerning first=958 second=121 amount=-1 -kerning first=1027 second=1028 amount=-2 -kerning first=282 second=1263 amount=-1 -kerning first=8230 second=336 amount=-1 -kerning first=57 second=269 amount=-1 -kerning first=1071 second=220 amount=-2 -kerning first=341 second=244 amount=-1 -kerning first=926 second=374 amount=-5 -kerning first=103 second=106 amount=7 -kerning first=1184 second=289 amount=-1 -kerning first=360 second=1298 amount=-1 -kerning first=963 second=71 amount=-2 -kerning first=120 second=962 amount=-2 -kerning first=268 second=193 amount=-1 -kerning first=38 second=283 amount=-1 -kerning first=291 second=333 amount=-1 -kerning first=61 second=217 amount=-2 -kerning first=1073 second=375 amount=-1 -kerning first=316 second=949 amount=-1 -kerning first=321 second=257 amount=-1 -kerning first=8366 second=210 amount=-2 -kerning first=84 second=119 amount=-2 -kerning first=221 second=963 amount=-4 -kerning first=367 second=334 amount=-2 -kerning first=964 second=246 amount=-1 -kerning first=160 second=218 amount=-2 -kerning first=42 second=230 amount=-1 -kerning first=182 second=360 amount=-2 -kerning first=297 second=273 amount=-1 -kerning first=300 second=45 amount=-2 -kerning first=294 second=964 amount=-3 -kerning first=59 second=947 amount=-4 -kerning first=62 second=372 amount=-5 -kerning first=1081 second=85 amount=-2 -kerning first=205 second=287 amount=-1 -kerning first=8369 second=365 amount=-1 -kerning first=900 second=335 amount=-1 -kerning first=903 second=97 amount=-1 -kerning first=343 second=1108 amount=-1 -kerning first=942 second=259 amount=-1 -kerning first=108 second=231 amount=-1 +kerning first=244 second=8230 amount=-1 +kerning first=245 second=34 amount=-1 +kerning first=245 second=39 amount=-1 +kerning first=245 second=44 amount=-1 +kerning first=245 second=46 amount=-1 +kerning first=245 second=47 amount=-1 +kerning first=245 second=63 amount=-2 +kerning first=245 second=102 amount=-1 +kerning first=245 second=118 amount=-1 +kerning first=245 second=119 amount=-1 +kerning first=245 second=120 amount=-2 +kerning first=245 second=122 amount=-1 +kerning first=245 second=373 amount=-1 +kerning first=245 second=378 amount=-1 +kerning first=245 second=380 amount=-1 +kerning first=245 second=382 amount=-1 +kerning first=245 second=947 amount=-1 +kerning first=245 second=955 amount=-1 +kerning first=245 second=957 amount=-1 +kerning first=245 second=964 amount=-1 +kerning first=245 second=967 amount=-2 +kerning first=245 second=1076 amount=-1 +kerning first=245 second=1078 amount=-2 +kerning first=245 second=1083 amount=-1 +kerning first=245 second=1090 amount=-1 +kerning first=245 second=1093 amount=-2 +kerning first=245 second=1098 amount=-1 +kerning first=245 second=1113 amount=-1 kerning first=245 second=1175 amount=-2 -kerning first=251 second=121 amount=-1 -kerning first=374 second=46 amount=-4 -kerning first=161 second=373 amount=-4 -kerning first=274 second=288 amount=-2 -kerning first=40 second=1263 amount=-1 -kerning first=301 second=220 amount=-2 -kerning first=209 second=232 amount=-1 -kerning first=323 second=1176 amount=-1 -kerning first=8365 second=8217 amount=-3 -kerning first=901 second=966 amount=-1 -kerning first=908 second=47 amount=-1 -kerning first=904 second=275 amount=-1 -kerning first=89 second=244 amount=-4 -kerning first=1219 second=99 amount=-1 -kerning first=1206 second=337 amount=-1 -kerning first=255 second=71 amount=-2 -kerning first=375 second=221 amount=-5 -kerning first=168 second=83 amount=-1 -kerning first=278 second=233 amount=-1 -kerning first=47 second=333 amount=-1 -kerning first=190 second=245 amount=-1 -kerning first=302 second=375 amount=-1 -kerning first=70 second=257 amount=-1 -kerning first=8378 second=941 amount=-1 -kerning first=1168 second=352 amount=-1 -kerning first=236 second=84 amount=-5 -kerning first=356 second=234 amount=-3 -kerning first=948 second=364 amount=-2 -kerning first=113 second=334 amount=-2 -kerning first=110 second=1090 amount=-1 -kerning first=1220 second=277 amount=-1 -kerning first=256 second=246 amount=-1 -kerning first=973 second=291 amount=-1 -kerning first=8220 second=339 amount=-1 -kerning first=8224 second=101 amount=-1 -kerning first=51 second=273 amount=-1 -kerning first=54 second=45 amount=-2 -kerning first=48 second=964 amount=-3 -kerning first=300 second=8249 amount=-3 -kerning first=214 second=335 amount=-1 -kerning first=91 second=1108 amount=-1 -kerning first=94 second=347 amount=-1 -kerning first=240 second=34 amount=-3 -kerning first=237 second=259 amount=-1 -kerning first=374 second=8250 amount=-2 -kerning first=8225 second=279 amount=-1 -kerning first=55 second=220 amount=-2 -kerning first=195 second=350 amount=-1 -kerning first=72 second=1176 amount=-1 -kerning first=1087 second=8217 amount=-3 -kerning first=215 second=966 amount=-1 -kerning first=221 second=47 amount=-4 -kerning first=928 second=87 amount=-5 -kerning first=361 second=337 amount=-1 -kerning first=956 second=249 amount=-1 -kerning first=121 second=221 amount=-5 -kerning first=36 second=233 amount=-1 -kerning first=175 second=363 amount=-1 -kerning first=56 second=375 amount=-1 -kerning first=317 second=210 amount=-2 -kerning first=8361 second=368 amount=-2 -kerning first=73 second=8211 amount=-2 -kerning first=1099 second=941 amount=-1 -kerning first=931 second=262 amount=-2 -kerning first=102 second=234 amount=-1 -kerning first=1179 second=1241 amount=-1 -kerning first=365 second=277 amount=-1 -kerning first=962 second=199 amount=-2 -kerning first=1263 second=1079 amount=-1 -kerning first=262 second=1035 amount=-1 -kerning first=1037 second=339 amount=-1 -kerning first=172 second=8212 amount=-2 -kerning first=176 second=1059 amount=-2 -kerning first=1041 second=101 amount=-1 -kerning first=1034 second=1098 amount=-2 -kerning first=54 second=8249 amount=-3 -kerning first=63 second=85 amount=-2 -kerning first=1075 second=263 amount=-1 -kerning first=203 second=235 amount=-1 -kerning first=318 second=365 amount=-1 -kerning first=240 second=8216 amount=-3 -kerning first=369 second=224 amount=-1 -kerning first=963 second=354 amount=-5 -kerning first=960 second=1118 amount=-1 -kerning first=120 second=8250 amount=-1 -kerning first=41 second=336 amount=-2 -kerning first=1044 second=279 amount=-1 -kerning first=184 second=248 amount=-1 -kerning first=299 second=171 amount=-3 -kerning first=1080 second=213 amount=-2 -kerning first=316 second=8217 amount=-3 -kerning first=8372 second=253 amount=-1 -kerning first=902 second=225 amount=-1 -kerning first=87 second=197 amount=-5 -kerning first=1117 second=115 amount=-1 -kerning first=936 second=1185 amount=-3 -kerning first=107 second=337 amount=-2 -kerning first=250 second=249 amount=-1 -kerning first=247 second=940 amount=-1 -kerning first=964 second=1038 amount=-2 -kerning first=163 second=261 amount=-1 -kerning first=160 second=953 amount=-1 -kerning first=1049 second=226 amount=-1 -kerning first=1081 second=368 amount=-2 -kerning first=325 second=941 amount=-1 -kerning first=88 second=352 amount=-1 -kerning first=354 second=187 amount=-1 -kerning first=108 second=968 amount=-1 -kerning first=1210 second=227 amount=-1 -kerning first=254 second=199 amount=-2 -kerning first=371 second=1079 amount=-1 -kerning first=374 second=326 amount=-3 -kerning first=167 second=211 amount=-2 -kerning first=274 second=1098 amount=-3 -kerning first=280 second=101 amount=-1 -kerning first=189 second=353 amount=-1 -kerning first=192 second=113 amount=-1 -kerning first=304 second=263 amount=-1 -kerning first=69 second=365 amount=-1 -kerning first=1083 second=1066 amount=-5 -kerning first=1170 second=240 amount=-1 -kerning first=946 second=943 amount=-1 -kerning first=950 second=252 amount=-1 -kerning first=1206 second=1256 amount=-1 -kerning first=252 second=1118 amount=-1 -kerning first=255 second=354 amount=-5 -kerning first=165 second=1184 amount=-5 -kerning first=168 second=366 amount=-2 -kerning first=278 second=970 amount=-1 -kerning first=53 second=171 amount=-3 -kerning first=196 second=63 amount=-5 -kerning first=310 second=213 amount=-3 -kerning first=1096 second=253 amount=-1 -kerning first=915 second=267 amount=-1 -kerning first=236 second=367 amount=-1 -kerning first=233 second=1185 amount=-1 -kerning first=113 second=1220 amount=2 -kerning first=256 second=1038 amount=-2 -kerning first=973 second=1101 amount=-1 -kerning first=287 second=226 amount=-1 -kerning first=8224 second=1240 amount=-2 -kerning first=74 second=941 amount=-1 -kerning first=77 second=250 amount=-1 -kerning first=100 second=187 amount=-1 -kerning first=234 second=8220 amount=-1 -kerning first=363 second=227 amount=-1 -kerning first=955 second=357 amount=-1 -kerning first=960 second=117 amount=-1 -kerning first=117 second=1079 amount=-1 -kerning first=1298 second=269 amount=-1 -kerning first=123 second=89 amount=-5 -kerning first=35 second=339 amount=-1 -kerning first=38 second=101 amount=-1 -kerning first=177 second=251 amount=-1 -kerning first=8240 second=332 amount=-2 -kerning first=58 second=263 amount=-1 -kerning first=1073 second=216 amount=-2 -kerning first=313 second=1066 amount=-6 -kerning first=1106 second=118 amount=-1 -kerning first=928 second=370 amount=-2 -kerning first=104 second=102 amount=-1 -kerning first=1185 second=283 amount=-2 -kerning first=361 second=1256 amount=-2 -kerning first=964 second=67 amount=-2 -kerning first=124 second=266 amount=-2 -kerning first=160 second=39 amount=-3 -kerning first=36 second=970 amount=-1 -kerning first=39 second=279 amount=-1 -kerning first=1039 second=229 amount=-1 -kerning first=62 second=213 amount=-2 -kerning first=1074 second=371 amount=-1 -kerning first=205 second=103 amount=-1 -kerning first=322 second=253 amount=-1 -kerning first=965 second=242 amount=-1 -kerning first=161 second=214 amount=-2 -kerning first=1037 second=1262 amount=-2 -kerning first=1041 second=1240 amount=-2 -kerning first=43 second=226 amount=-1 -kerning first=183 second=356 amount=-5 -kerning first=186 second=116 amount=-1 -kerning first=298 second=268 amount=-2 -kerning first=63 second=368 amount=-2 -kerning first=1083 second=81 amount=-2 -kerning first=203 second=972 amount=-1 -kerning first=206 second=281 amount=-1 -kerning first=8370 second=361 amount=-1 -kerning first=8377 second=121 amount=-1 -kerning first=89 second=65 amount=-5 -kerning first=1116 second=243 amount=-2 -kerning first=249 second=357 amount=-1 -kerning first=252 second=117 amount=-1 -kerning first=372 second=269 amount=-3 -kerning first=162 second=369 amount=-1 -kerning first=271 second=973 amount=-1 -kerning first=1048 second=332 amount=-2 -kerning first=302 second=216 amount=-2 -kerning first=64 second=1066 amount=-5 -kerning first=61 second=8221 amount=-3 -kerning first=331 second=118 amount=-1 -kerning first=902 second=962 amount=-1 -kerning first=87 second=916 amount=-5 -kerning first=90 second=240 amount=-1 -kerning first=1207 second=333 amount=-1 +kerning first=245 second=1185 amount=-1 +kerning first=245 second=1199 amount=-1 +kerning first=245 second=1203 amount=-2 +kerning first=245 second=1299 amount=-1 +kerning first=245 second=8216 amount=-1 +kerning first=245 second=8217 amount=-1 +kerning first=245 second=8218 amount=-1 +kerning first=245 second=8220 amount=-1 +kerning first=245 second=8221 amount=-1 +kerning first=245 second=8222 amount=-1 +kerning first=245 second=8230 amount=-1 +kerning first=246 second=34 amount=-1 +kerning first=246 second=39 amount=-1 +kerning first=246 second=44 amount=-1 +kerning first=246 second=46 amount=-1 +kerning first=246 second=47 amount=-1 +kerning first=246 second=63 amount=-2 +kerning first=246 second=102 amount=-1 +kerning first=246 second=118 amount=-1 +kerning first=246 second=119 amount=-1 +kerning first=246 second=120 amount=-2 +kerning first=246 second=122 amount=-1 +kerning first=246 second=373 amount=-1 +kerning first=246 second=378 amount=-1 +kerning first=246 second=380 amount=-1 +kerning first=246 second=382 amount=-1 +kerning first=246 second=947 amount=-1 +kerning first=246 second=955 amount=-1 +kerning first=246 second=957 amount=-1 +kerning first=246 second=964 amount=-1 +kerning first=246 second=967 amount=-2 +kerning first=246 second=1076 amount=-1 +kerning first=246 second=1078 amount=-2 +kerning first=246 second=1083 amount=-1 +kerning first=246 second=1090 amount=-1 +kerning first=246 second=1093 amount=-2 +kerning first=246 second=1098 amount=-1 +kerning first=246 second=1113 amount=-1 +kerning first=246 second=1175 amount=-2 +kerning first=246 second=1185 amount=-1 +kerning first=246 second=1199 amount=-1 +kerning first=246 second=1203 amount=-2 +kerning first=246 second=1299 amount=-1 +kerning first=246 second=8216 amount=-1 +kerning first=246 second=8217 amount=-1 +kerning first=246 second=8218 amount=-1 +kerning first=246 second=8220 amount=-1 +kerning first=246 second=8221 amount=-1 +kerning first=246 second=8222 amount=-1 +kerning first=246 second=8230 amount=-1 +kerning first=248 second=34 amount=-1 +kerning first=248 second=39 amount=-1 +kerning first=248 second=44 amount=-1 +kerning first=248 second=46 amount=-1 +kerning first=248 second=47 amount=-1 +kerning first=248 second=63 amount=-2 +kerning first=248 second=102 amount=-1 +kerning first=248 second=118 amount=-1 +kerning first=248 second=119 amount=-1 +kerning first=248 second=120 amount=-2 +kerning first=248 second=122 amount=-1 +kerning first=248 second=373 amount=-1 +kerning first=248 second=378 amount=-1 +kerning first=248 second=380 amount=-1 +kerning first=248 second=382 amount=-1 +kerning first=248 second=947 amount=-1 +kerning first=248 second=955 amount=-1 +kerning first=248 second=957 amount=-1 +kerning first=248 second=964 amount=-1 +kerning first=248 second=967 amount=-2 +kerning first=248 second=1076 amount=-1 +kerning first=248 second=1078 amount=-2 +kerning first=248 second=1083 amount=-1 +kerning first=248 second=1090 amount=-1 +kerning first=248 second=1093 amount=-2 +kerning first=248 second=1098 amount=-1 +kerning first=248 second=1113 amount=-1 +kerning first=248 second=1175 amount=-2 +kerning first=248 second=1185 amount=-1 +kerning first=248 second=1199 amount=-1 +kerning first=248 second=1203 amount=-2 +kerning first=248 second=1299 amount=-1 +kerning first=248 second=8216 amount=-1 +kerning first=248 second=8217 amount=-1 +kerning first=248 second=8218 amount=-1 +kerning first=248 second=8220 amount=-1 +kerning first=248 second=8221 amount=-1 +kerning first=248 second=8222 amount=-1 +kerning first=248 second=8230 amount=-1 +kerning first=256 second=34 amount=-3 +kerning first=256 second=38 amount=-1 +kerning first=256 second=39 amount=-3 +kerning first=256 second=45 amount=-2 +kerning first=256 second=63 amount=-5 kerning first=256 second=67 amount=-2 -kerning first=169 second=79 amount=-2 -kerning first=1049 second=963 amount=-1 -kerning first=188 second=920 amount=-2 -kerning first=1062 second=271 amount=-1 -kerning first=303 second=371 amount=-1 -kerning first=300 second=1195 amount=-1 -kerning first=357 second=230 amount=-1 -kerning first=111 second=1083 amount=-1 -kerning first=1210 second=964 amount=-3 -kerning first=1223 second=273 amount=-1 -kerning first=374 second=947 amount=-2 -kerning first=167 second=945 amount=-1 -kerning first=280 second=1240 amount=-2 -kerning first=8221 second=335 amount=-1 -kerning first=8225 second=97 amount=-1 -kerning first=52 second=268 amount=-2 -kerning first=304 second=1069 amount=-1 -kerning first=313 second=81 amount=-1 -kerning first=1095 second=361 amount=-1 -kerning first=908 second=1202 amount=-3 -kerning first=912 second=373 amount=-4 -kerning first=1170 second=1028 amount=-2 -kerning first=118 second=269 amount=-1 -kerning first=8226 second=275 amount=-1 -kerning first=56 second=216 amount=-2 -kerning first=1067 second=374 amount=-5 -kerning first=199 second=106 amount=1 -kerning first=931 second=83 amount=-1 -kerning first=910 second=8230 amount=-4 -kerning first=1179 second=233 amount=-1 -kerning first=958 second=245 amount=-1 -kerning first=1263 second=375 amount=-1 -kerning first=382 second=949 amount=-1 -kerning first=37 second=229 amount=-1 -kerning first=179 second=119 amount=-4 -kerning first=176 second=359 amount=-1 -kerning first=287 second=963 amount=-1 -kerning first=54 second=1195 amount=-1 -kerning first=57 second=371 amount=-1 -kerning first=197 second=1026 amount=-5 -kerning first=200 second=286 amount=-2 -kerning first=1103 second=246 amount=-1 -kerning first=223 second=218 amount=-2 -kerning first=103 second=230 amount=-1 -kerning first=246 second=120 amount=-2 -kerning first=363 second=964 amount=-3 -kerning first=369 second=45 amount=-2 -kerning first=123 second=372 amount=-5 -kerning first=35 second=1262 amount=-2 -kerning first=38 second=1240 amount=-2 -kerning first=296 second=219 amount=-2 -kerning first=58 second=1069 amount=-1 -kerning first=64 second=81 amount=-2 -kerning first=1080 second=34 amount=-3 -kerning first=204 second=231 amount=-1 -kerning first=321 second=361 amount=-1 -kerning first=84 second=243 amount=-3 -kerning first=224 second=373 amount=-1 -kerning first=961 second=1113 amount=-1 -kerning first=964 second=350 amount=-1 -kerning first=273 second=232 amount=-1 -kerning first=42 second=332 amount=-2 -kerning first=1039 second=966 amount=-1 -kerning first=1046 second=275 amount=-2 -kerning first=185 second=244 amount=-1 -kerning first=297 second=374 amount=-5 -kerning first=8369 second=940 amount=-1 -kerning first=903 second=221 amount=-5 -kerning first=1118 second=111 amount=-1 -kerning first=222 second=8230 amount=-1 -kerning first=942 second=363 amount=-1 -kerning first=108 second=333 amount=-1 -kerning first=251 second=245 amount=-1 -kerning first=371 second=375 amount=-1 -kerning first=968 second=290 amount=-2 -kerning first=161 second=949 amount=-1 -kerning first=164 second=257 amount=-1 -kerning first=8217 second=100 amount=-1 -kerning first=43 second=963 amount=-1 -kerning first=304 second=84 amount=-5 -kerning first=1083 second=364 amount=-2 -kerning first=206 second=1090 amount=-3 -kerning first=209 second=334 amount=-2 -kerning first=330 second=246 amount=-1 -kerning first=904 second=376 amount=-5 -kerning first=86 second=1107 amount=-2 -kerning first=89 second=346 amount=-1 -kerning first=1119 second=291 amount=-1 -kerning first=109 second=964 amount=-1 -kerning first=369 second=8249 amount=-3 -kerning first=372 second=1074 amount=-2 -kerning first=278 second=335 amount=-1 -kerning first=50 second=219 amount=-2 -kerning first=190 second=347 amount=-1 -kerning first=305 second=259 amount=-1 -kerning first=70 second=361 amount=-1 -kerning first=1080 second=8216 amount=-3 -kerning first=73 second=121 amount=-1 -kerning first=216 second=46 amount=-1 -kerning first=334 second=196 amount=-2 -kerning first=8378 second=1118 amount=-1 -kerning first=902 second=8250 amount=-1 -kerning first=93 second=288 amount=-2 -kerning first=90 second=1028 amount=-1 -kerning first=356 second=336 amount=-1 -kerning first=951 second=248 amount=-1 -kerning first=256 second=350 amount=-1 -kerning first=376 second=952 amount=-2 -kerning first=166 second=1176 amount=-1 -kerning first=169 second=362 amount=-2 -kerning first=282 second=275 amount=-1 -kerning first=8224 second=225 amount=-1 -kerning first=51 second=374 amount=-5 -kerning first=194 second=289 amount=-1 -kerning first=77 second=71 amount=-2 -kerning first=1094 second=940 amount=-1 -kerning first=338 second=111 amount=-1 -kerning first=916 second=261 amount=-1 -kerning first=237 second=363 amount=-1 -kerning first=117 second=375 amount=-1 -kerning first=260 second=290 amount=-2 -kerning first=167 second=8211 amount=-2 -kerning first=1035 second=100 amount=-1 -kerning first=58 second=84 amount=-5 -kerning first=198 second=234 amount=-1 -kerning first=313 second=364 amount=-1 -kerning first=78 second=246 amount=-1 -kerning first=336 second=1035 amount=-2 -kerning first=928 second=211 amount=-2 -kerning first=1175 second=1098 amount=-2 -kerning first=1185 second=101 amount=-2 -kerning first=238 second=1059 amount=-2 -kerning first=1178 second=339 amount=-1 -kerning first=956 second=353 amount=-1 -kerning first=124 second=85 amount=-2 -kerning first=1299 second=263 amount=-1 -kerning first=36 second=335 amount=-1 -kerning first=39 second=97 amount=-1 -kerning first=59 second=259 amount=-1 -kerning first=62 second=34 amount=-3 -kerning first=1074 second=212 amount=-2 -kerning first=8361 second=943 amount=-1 -kerning first=8364 second=252 amount=-1 -kerning first=1099 second=1118 amount=-1 -kerning first=923 second=1184 amount=-5 -kerning first=931 second=366 amount=-2 -kerning first=1186 second=279 amount=-1 -kerning first=37 second=966 amount=-1 -kerning first=40 second=275 amount=-1 -kerning first=1041 second=225 amount=-1 -kerning first=298 second=87 amount=-5 -kerning first=1071 second=1185 amount=-3 -kerning first=203 second=337 amount=-1 -kerning first=206 second=99 amount=-1 -kerning first=318 second=940 amount=-1 -kerning first=323 second=249 amount=-1 -kerning first=86 second=111 amount=-3 -kerning first=1103 second=1038 amount=-2 -kerning first=223 second=953 amount=-1 -kerning first=947 second=226 amount=-1 -kerning first=162 second=210 amount=-2 -kerning first=271 second=338 amount=-2 -kerning first=184 second=352 amount=-1 -kerning first=299 second=262 amount=-2 -kerning first=64 second=364 amount=-2 -kerning first=1073 second=8220 amount=-3 -kerning first=204 second=968 amount=-1 -kerning first=207 second=277 amount=-1 -kerning first=327 second=199 amount=-2 -kerning first=8372 second=357 amount=-1 -kerning first=8378 second=117 amount=-1 -kerning first=905 second=89 amount=-5 -kerning first=87 second=291 amount=-2 -kerning first=944 second=251 amount=-1 -kerning first=253 second=113 amount=-1 -kerning first=250 second=353 amount=-1 -kerning first=376 second=38 amount=-2 -kerning first=373 second=263 amount=-1 -kerning first=163 second=365 amount=-1 -kerning first=8216 second=228 amount=-1 -kerning first=45 second=377 amount=-2 -kerning first=303 second=212 amount=-2 -kerning first=62 second=8216 amount=-3 -kerning first=1085 second=252 amount=-1 -kerning first=1081 second=943 amount=-1 -kerning first=325 second=1118 amount=-1 -kerning first=906 second=266 amount=-2 -kerning first=354 second=279 amount=-3 -kerning first=111 second=378 amount=-1 -kerning first=257 second=63 amount=-2 -kerning first=377 second=213 amount=-1 -kerning first=161 second=8217 amount=-3 -kerning first=280 second=225 amount=-1 -kerning first=52 second=87 amount=-5 -kerning first=1063 second=267 amount=-1 -kerning first=301 second=1185 amount=-3 -kerning first=304 second=367 amount=-1 -kerning first=69 second=940 amount=-1 -kerning first=72 second=249 amount=-1 -kerning first=212 second=379 amount=-1 -kerning first=330 second=1038 amount=-2 -kerning first=912 second=214 amount=-2 -kerning first=1119 second=1101 amount=-1 -kerning first=950 second=356 amount=-5 -kerning first=358 second=226 amount=-1 -kerning first=112 second=1078 amount=-2 -kerning first=1224 second=268 amount=-2 -kerning first=1026 second=281 amount=-1 -kerning first=168 second=941 amount=-1 -kerning first=281 second=380 amount=-1 -kerning first=53 second=262 amount=-2 -kerning first=193 second=1241 amount=-1 -kerning first=196 second=187 amount=-1 -kerning first=302 second=8220 amount=-3 -kerning first=76 second=199 amount=-1 -kerning first=1096 second=357 amount=-1 -kerning first=1099 second=117 amount=-1 -kerning first=915 second=369 amount=-1 -kerning first=910 second=1187 amount=-3 -kerning first=96 second=339 amount=-1 -kerning first=1171 second=973 amount=-1 -kerning first=93 second=1098 amount=-3 -kerning first=239 second=251 amount=-1 -kerning first=356 second=1224 amount=-2 -kerning first=116 second=955 amount=-1 -kerning first=1263 second=216 amount=-2 -kerning first=119 second=263 amount=-1 -kerning first=8224 second=962 amount=-1 -kerning first=57 second=212 amount=-2 -kerning first=1065 second=1194 amount=-1 -kerning first=315 second=252 amount=-1 -kerning first=77 second=354 amount=-5 -kerning first=74 second=1118 amount=-1 -kerning first=1103 second=67 amount=-2 -kerning first=223 second=39 amount=-3 -kerning first=934 second=79 amount=-2 -kerning first=100 second=279 amount=-1 -kerning first=1184 second=229 amount=-1 -kerning first=955 second=920 amount=-2 -kerning first=123 second=213 amount=-2 -kerning first=1298 second=371 amount=-1 -kerning first=38 second=225 amount=-1 -kerning first=177 second=355 amount=-1 -kerning first=180 second=115 amount=-1 -kerning first=291 second=267 amount=-1 -kerning first=8260 second=218 amount=-2 -kerning first=55 second=1185 amount=-3 -kerning first=58 second=367 amount=-1 -kerning first=8363 second=360 amount=-2 -kerning first=78 second=1038 amount=-2 -kerning first=928 second=945 amount=-1 -kerning first=1178 second=1262 amount=-1 -kerning first=247 second=116 amount=-1 -kerning first=367 second=268 amount=-2 -kerning first=124 second=368 amount=-2 -kerning first=1299 second=1069 amount=-1 -kerning first=8249 second=1202 amount=-1 -kerning first=56 second=8220 amount=-3 -kerning first=205 second=227 amount=-1 -kerning first=325 second=117 amount=-1 -kerning first=322 second=357 amount=-1 -kerning first=900 second=269 amount=-1 -kerning first=371 second=216 amount=-2 -kerning first=125 second=1066 amount=-5 -kerning first=968 second=106 amount=1 -kerning first=274 second=228 amount=-1 -kerning first=1041 second=962 amount=-1 -kerning first=186 second=240 amount=-1 -kerning first=298 second=370 amount=-2 -kerning first=63 second=943 amount=-1 -kerning first=203 second=1256 amount=-2 -kerning first=330 second=67 amount=-2 -kerning first=8377 second=245 amount=-1 -kerning first=904 second=217 amount=-2 -kerning first=946 second=119 amount=-4 -kerning first=947 second=963 amount=-1 -kerning first=1206 second=271 amount=-1 -kerning first=249 second=920 amount=-2 -kerning first=369 second=1195 amount=-1 -kerning first=372 second=371 amount=-2 -kerning first=165 second=253 amount=-1 -kerning first=271 second=1257 amount=-1 -kerning first=47 second=267 amount=-1 -kerning first=1084 second=360 amount=-2 -kerning first=902 second=947 amount=-4 -kerning first=905 second=372 amount=-5 -kerning first=1168 second=287 amount=-1 -kerning first=113 second=268 amount=-2 -kerning first=1220 second=219 amount=-2 -kerning first=379 second=81 amount=-1 -kerning first=973 second=231 amount=-1 -kerning first=1062 second=373 amount=-2 -kerning first=74 second=117 amount=-1 -kerning first=214 second=269 amount=-1 -kerning first=91 second=973 amount=-1 -kerning first=1174 second=232 amount=-1 -kerning first=354 second=1085 amount=-2 -kerning first=357 second=332 amount=-2 -kerning first=952 second=244 amount=-1 -kerning first=117 second=216 amount=-2 -kerning first=1223 second=374 amount=-5 -kerning first=260 second=106 amount=1 -kerning first=174 second=118 amount=-4 -kerning first=280 second=962 amount=-1 -kerning first=8225 second=221 amount=-5 -kerning first=49 second=1194 amount=-2 -kerning first=52 second=370 amount=-2 -kerning first=195 second=283 amount=-1 -kerning first=78 second=67 amount=-2 -kerning first=912 second=949 amount=-1 -kerning first=238 second=359 amount=-1 -kerning first=241 second=119 amount=-1 -kerning first=358 second=963 amount=-1 -kerning first=361 second=271 amount=-1 -kerning first=364 second=44 amount=-1 -kerning first=1299 second=84 amount=-5 -kerning first=258 second=1026 amount=-5 -kerning first=1026 second=1090 amount=-3 -kerning first=171 second=1046 amount=-1 -kerning first=289 second=218 amount=-2 -kerning first=8226 second=376 amount=-5 -kerning first=1070 second=258 amount=-2 -kerning first=314 second=360 amount=-2 -kerning first=96 second=1262 amount=-2 -kerning first=1179 second=335 amount=-1 -kerning first=365 second=219 amount=-2 -kerning first=954 second=1108 amount=-2 -kerning first=958 second=347 amount=-1 -kerning first=125 second=81 amount=-2 -kerning first=179 second=243 amount=-1 -kerning first=8224 second=8250 amount=-1 -kerning first=197 second=1263 amount=-1 -kerning first=8365 second=248 amount=-1 -kerning first=1103 second=350 amount=-1 -kerning first=926 second=1176 amount=-1 -kerning first=934 second=362 amount=-2 -kerning first=103 second=332 amount=-2 -kerning first=1184 second=966 amount=-2 -kerning first=947 second=47 amount=-3 -kerning first=1187 second=275 amount=-1 -kerning first=963 second=289 amount=-1 -kerning first=38 second=962 amount=-1 -kerning first=1044 second=221 amount=-2 -kerning first=299 second=83 amount=-1 -kerning first=8260 second=953 amount=-1 -kerning first=1073 second=1177 amount=-1 -kerning first=204 second=333 amount=-1 -kerning first=84 second=345 amount=-2 -kerning first=928 second=8211 amount=-2 -kerning first=107 second=271 amount=-2 -kerning first=967 second=234 amount=-1 -kerning first=273 second=334 amount=-2 -kerning first=185 second=346 amount=-1 -kerning first=65 second=360 amount=-2 -kerning first=1074 second=8212 amount=-2 -kerning first=205 second=964 amount=-3 -kerning first=906 second=85 amount=-2 -kerning first=1118 second=235 amount=-1 -kerning first=354 second=97 amount=-2 -kerning first=251 second=347 amount=-1 -kerning first=374 second=259 amount=-4 -kerning first=164 second=361 amount=-1 -kerning first=167 second=121 amount=-1 -kerning first=274 second=965 amount=-1 -kerning first=8217 second=224 amount=-1 -kerning first=46 second=373 amount=-2 -kerning first=1041 second=8250 amount=-1 -kerning first=186 second=1028 amount=-2 -kerning first=189 second=288 amount=-2 -kerning first=1087 second=248 amount=-1 -kerning first=330 second=350 amount=-1 -kerning first=908 second=260 amount=-2 -kerning first=92 second=232 amount=-1 -kerning first=235 second=122 amount=-1 -kerning first=1224 second=87 amount=-5 -kerning first=255 second=289 amount=-1 -kerning first=1026 second=99 amount=-1 -kerning first=47 second=1071 amount=-1 -kerning first=53 second=83 amount=-1 -kerning first=1064 second=261 amount=-1 -kerning first=193 second=233 amount=-1 -kerning first=305 second=363 amount=-1 -kerning first=302 second=1177 amount=-1 -kerning first=73 second=245 amount=-1 -kerning first=915 second=210 amount=-2 -kerning first=1171 second=338 amount=-2 -kerning first=1176 second=100 amount=-1 -kerning first=951 second=352 amount=-1 -kerning first=973 second=968 amount=-1 -kerning first=1027 second=277 amount=-1 -kerning first=172 second=246 amount=-1 -kerning first=282 second=376 amount=-5 -kerning first=8230 second=89 amount=-4 -kerning first=306 second=1059 amount=-2 -kerning first=303 second=8212 amount=-2 -kerning first=338 second=235 amount=-1 -kerning first=916 second=365 amount=-1 -kerning first=100 second=97 amount=-1 -kerning first=120 second=259 amount=-1 -kerning first=123 second=34 amount=-3 -kerning first=1298 second=212 amount=-2 -kerning first=1035 second=224 amount=-1 -kerning first=280 second=8250 amount=-1 -kerning first=8240 second=266 amount=-2 -kerning first=8260 second=39 amount=-3 -kerning first=1066 second=1184 amount=-5 -kerning first=198 second=336 amount=-2 -kerning first=316 second=248 amount=-1 -kerning first=78 second=350 amount=-1 -kerning first=1106 second=63 amount=-2 -kerning first=221 second=260 amount=-5 -kerning first=912 second=8217 amount=-3 -kerning first=1185 second=225 amount=-1 -kerning first=367 second=87 amount=-5 -kerning first=1299 second=367 amount=-1 -kerning first=182 second=111 amount=-1 -kerning first=178 second=351 amount=-1 -kerning first=289 second=953 amount=-1 -kerning first=294 second=261 amount=-1 -kerning first=59 second=363 amount=-1 -kerning first=56 second=1177 amount=-1 -kerning first=8364 second=356 amount=-5 -kerning first=8369 second=116 amount=-1 -kerning first=931 second=941 amount=-1 -kerning first=962 second=1241 amount=-1 -kerning first=965 second=187 amount=-1 -kerning first=125 second=364 amount=-2 -kerning first=1263 second=8220 amount=-3 -kerning first=40 second=376 amount=-5 -kerning first=1037 second=1079 amount=-1 -kerning first=179 second=1035 amount=-5 -kerning first=183 second=291 amount=-1 -kerning first=1047 second=89 amount=-2 -kerning first=298 second=211 amount=-2 -kerning first=57 second=8212 amount=-2 -kerning first=60 second=1059 amount=-2 -kerning first=323 second=353 amount=-1 -kerning first=901 second=263 amount=-1 -kerning first=86 second=235 amount=-3 -kerning first=372 second=212 amount=-2 -kerning first=123 second=8216 amount=-3 -kerning first=38 second=8250 amount=-1 -kerning first=1048 second=266 amount=-2 -kerning first=296 second=1184 amount=-5 -kerning first=299 second=366 amount=-2 -kerning first=331 second=63 amount=-2 -kerning first=8372 second=920 amount=-2 -kerning first=905 second=213 amount=-2 -kerning first=1168 second=103 amount=-1 -kerning first=224 second=8217 amount=-1 -kerning first=944 second=355 amount=-1 -kerning first=948 second=115 amount=-1 -kerning first=113 second=87 amount=-5 -kerning first=1207 second=267 amount=-1 -kerning first=166 second=249 amount=-1 -kerning first=163 second=940 amount=-1 -kerning first=48 second=261 amount=-1 -kerning first=1062 second=214 amount=-1 -kerning first=1085 second=356 amount=-5 -kerning first=906 second=368 amount=-2 -kerning first=91 second=338 amount=-2 -kerning first=94 second=100 amount=-1 -kerning first=1118 second=972 amount=-1 -kerning first=1169 second=281 amount=-1 -kerning first=354 second=380 amount=-1 -kerning first=254 second=1241 amount=-1 -kerning first=371 second=8220 amount=-3 -kerning first=170 second=199 amount=-2 -kerning first=8221 second=269 amount=-1 -kerning first=52 second=211 amount=-2 -kerning first=1063 second=369 amount=-1 -kerning first=189 second=1098 amount=-3 -kerning first=192 second=339 amount=-1 -kerning first=195 second=101 amount=-1 -kerning first=72 second=353 amount=-1 -kerning first=75 second=113 amount=-2 -kerning first=212 second=955 amount=-2 -kerning first=215 second=263 amount=-1 -kerning first=904 second=8221 amount=-3 -kerning first=908 second=1066 amount=-2 -kerning first=1219 second=1194 amount=-2 -kerning first=1224 second=370 amount=-2 -kerning first=261 second=102 amount=-1 -kerning first=168 second=1118 amount=-1 -kerning first=171 second=354 amount=-1 -kerning first=289 second=39 amount=-3 -kerning first=8226 second=217 amount=-2 -kerning first=50 second=1184 amount=-5 -kerning first=53 second=366 amount=-2 -kerning first=1059 second=8222 amount=-1 -kerning first=196 second=279 amount=-1 -kerning first=193 second=970 amount=-1 -kerning first=8361 second=119 amount=-4 -kerning first=1096 second=920 amount=-2 -kerning first=923 second=253 amount=-1 -kerning first=1171 second=1257 amount=-1 -kerning first=239 second=355 amount=-1 -kerning first=172 second=1038 amount=-2 -kerning first=8224 second=947 amount=-4 -kerning first=8230 second=372 amount=-3 -kerning first=51 second=8218 amount=-1 -kerning first=200 second=226 amount=-1 -kerning first=318 second=116 amount=-1 -kerning first=315 second=356 amount=-6 -kerning first=338 second=972 amount=-1 -kerning first=341 second=281 amount=-1 -kerning first=117 second=8220 amount=-3 -kerning first=35 second=1079 amount=-1 -kerning first=41 second=89 amount=-5 -kerning first=291 second=369 amount=-1 -kerning first=61 second=251 amount=-1 -kerning first=8366 second=244 amount=-1 -kerning first=345 second=228 amount=-1 -kerning first=941 second=118 amount=-1 -kerning first=1185 second=962 amount=-2 -kerning first=247 second=240 amount=-1 -kerning first=367 second=370 amount=-2 -kerning first=964 second=283 amount=-1 -kerning first=124 second=943 amount=-1 -kerning first=160 second=252 amount=-1 -kerning first=42 second=266 amount=-2 -kerning first=300 second=79 amount=-2 -kerning first=1081 second=119 amount=-4 -kerning first=322 second=920 amount=-2 -kerning first=900 second=371 amount=-1 -kerning first=343 second=1257 amount=-1 -kerning first=108 second=267 amount=-1 -kerning first=968 second=230 amount=-1 -kerning first=46 second=214 amount=-1 -kerning first=1041 second=947 amount=-4 -kerning first=1047 second=372 amount=-1 -kerning first=183 second=1101 amount=-1 -kerning first=298 second=945 amount=-1 -kerning first=66 second=356 amount=-1 -kerning first=69 second=116 amount=-1 -kerning first=209 second=268 amount=-2 -kerning first=8370 second=1108 amount=-1 -kerning first=8377 second=347 amount=-1 -kerning first=901 second=1069 amount=-1 -kerning first=86 second=972 amount=-1 -kerning first=89 second=281 amount=-4 -kerning first=1119 second=231 amount=-1 -kerning first=946 second=243 amount=-1 -kerning first=1206 second=373 amount=-2 -kerning first=165 second=357 amount=-1 -kerning first=168 second=117 amount=-1 -kerning first=278 second=269 amount=-1 -kerning first=8218 second=220 amount=-1 -kerning first=47 second=369 amount=-1 -kerning first=1090 second=244 amount=-1 -kerning first=910 second=256 amount=-5 -kerning first=93 second=228 amount=-1 -kerning first=236 second=118 amount=-4 -kerning first=113 second=370 amount=-2 -kerning first=256 second=283 amount=-1 -kerning first=973 second=333 amount=-1 -kerning first=172 second=67 amount=-2 -kerning first=282 second=217 amount=-2 -kerning first=45 second=8222 amount=-1 -kerning first=54 second=79 amount=-2 -kerning first=1062 second=949 amount=-1 -kerning first=194 second=229 amount=-1 -kerning first=306 second=359 amount=-1 -kerning first=214 second=371 amount=-1 -kerning first=332 second=1026 amount=-2 -kerning first=91 second=1257 amount=-1 -kerning first=1174 second=334 amount=-1 -kerning first=952 second=346 amount=-1 -kerning first=260 second=230 amount=-1 -kerning first=1035 second=45 amount=-2 -kerning first=174 second=242 amount=-1 -kerning first=280 second=947 amount=-4 -kerning first=8240 second=85 amount=-2 -kerning first=52 second=945 amount=-1 -kerning first=195 second=1240 amount=-2 -kerning first=192 second=1262 amount=-2 -kerning first=1095 second=1108 amount=-1 -kerning first=215 second=1069 amount=-1 -kerning first=221 second=81 amount=-3 -kerning first=928 second=121 amount=-1 -kerning first=361 second=373 amount=-4 -kerning first=956 second=288 amount=-2 -kerning first=258 second=1263 amount=-1 -kerning first=36 second=269 amount=-1 -kerning first=8249 second=260 amount=-1 -kerning first=1067 second=1176 amount=-1 -kerning first=317 second=244 amount=-1 -kerning first=82 second=106 amount=2 -kerning first=222 second=256 amount=-2 -kerning first=1186 second=221 amount=-2 -kerning first=359 second=8230 amount=-1 -kerning first=962 second=233 amount=-1 -kerning first=1263 second=1177 amount=-1 -kerning first=40 second=217 amount=-2 -kerning first=1037 second=375 amount=-1 -kerning first=63 second=119 amount=-4 -kerning first=60 second=359 amount=-1 -kerning first=200 second=963 amount=-1 -kerning first=203 second=271 amount=-1 -kerning first=8365 second=352 amount=-1 -kerning first=901 second=84 amount=-5 -kerning first=80 second=1026 amount=-5 -kerning first=126 second=360 amount=-2 -kerning first=1298 second=8212 amount=-2 -kerning first=271 second=273 amount=-1 -kerning first=38 second=947 amount=-4 -kerning first=41 second=372 amount=-5 -kerning first=1035 second=8249 amount=-3 -kerning first=1048 second=85 amount=-2 -kerning first=184 second=287 amount=-1 -kerning first=207 second=219 amount=-2 -kerning first=321 second=1108 amount=-1 -kerning first=905 second=34 amount=-3 -kerning first=902 second=259 amount=-1 -kerning first=87 second=231 amount=-3 -kerning first=247 second=1028 amount=-2 -kerning first=250 second=288 amount=-2 -kerning first=967 second=336 amount=-2 -kerning first=276 second=220 amount=-2 -kerning first=1046 second=952 amount=-2 -kerning first=188 second=232 amount=-1 -kerning first=300 second=362 amount=-2 -kerning first=297 second=1176 amount=-1 -kerning first=208 second=374 amount=-3 -kerning first=85 second=1298 amount=-1 -kerning first=1118 second=337 amount=-1 -kerning first=1169 second=99 amount=-1 -kerning first=1210 second=261 amount=-1 -kerning first=254 second=233 amount=-1 -kerning first=371 second=1177 amount=-1 -kerning first=374 second=363 amount=-2 -kerning first=167 second=245 amount=-1 -kerning first=8211 second=1078 amount=-2 -kerning first=49 second=257 amount=-1 -kerning first=1063 second=210 amount=-2 -kerning first=298 second=8211 amount=-2 -kerning first=1087 second=352 amount=-1 -kerning first=215 second=84 amount=-5 -kerning first=89 second=1090 amount=-2 -kerning first=92 second=334 amount=-2 -kerning first=1119 second=968 amount=-1 -kerning first=1170 second=277 amount=-1 -kerning first=946 second=1035 amount=-5 -kerning first=950 second=291 amount=-1 -kerning first=1224 second=211 amount=-2 -kerning first=375 second=1059 amount=-2 -kerning first=372 second=8212 amount=-2 -kerning first=1064 second=365 amount=-1 -kerning first=193 second=335 amount=-1 -kerning first=196 second=97 amount=-1 -kerning first=70 second=1108 amount=-1 -kerning first=73 second=347 amount=-1 -kerning first=905 second=8216 amount=-3 -kerning first=923 second=74 amount=-1 -kerning first=93 second=965 amount=-1 -kerning first=1176 second=224 amount=-1 -kerning first=356 second=1075 amount=-2 -kerning first=1220 second=1184 amount=-5 -kerning first=382 second=248 amount=-1 -kerning first=172 second=350 amount=-1 -kerning first=8230 second=213 amount=-1 -kerning first=51 second=1176 amount=-1 -kerning first=54 second=362 amount=-2 -kerning first=1065 second=1063 amount=-2 -kerning first=1062 second=8217 amount=-2 -kerning first=194 second=966 amount=-1 -kerning first=197 second=275 amount=-1 -kerning first=77 second=289 amount=-1 -kerning first=338 second=337 amount=-1 -kerning first=341 second=99 amount=-1 -kerning first=926 second=249 amount=-1 -kerning first=916 second=940 amount=-1 -kerning first=100 second=221 amount=-5 -kerning first=240 second=351 amount=-1 -kerning first=363 second=261 amount=-1 -kerning first=117 second=1177 amount=-1 -kerning first=35 second=375 amount=-1 -kerning first=177 second=290 amount=-2 -kerning first=291 second=210 amount=-2 -kerning first=8240 second=368 amount=-2 -kerning first=52 second=8211 amount=-2 -kerning first=1073 second=250 amount=-1 -kerning first=316 second=352 amount=-1 -kerning first=936 second=199 amount=-2 -kerning first=1194 second=89 amount=-2 -kerning first=367 second=211 amount=-2 -kerning first=956 second=1098 amount=-3 -kerning first=964 second=101 amount=-1 -kerning first=121 second=1059 amount=-2 -kerning first=118 second=8212 amount=-1 -kerning first=42 second=85 amount=-2 -kerning first=1039 second=263 amount=-1 -kerning first=1046 second=38 amount=-2 -kerning first=182 second=235 amount=-1 -kerning first=294 second=365 amount=-1 -kerning first=8226 second=8221 amount=-3 -kerning first=8249 second=1066 amount=-1 -kerning first=8369 second=240 amount=-1 -kerning first=900 second=212 amount=-2 -kerning first=931 second=1118 amount=-1 -kerning first=365 second=1184 amount=-5 -kerning first=965 second=279 amount=-1 -kerning first=962 second=970 amount=-1 -kerning first=161 second=248 amount=-1 -kerning first=274 second=171 amount=-3 -kerning first=66 second=197 amount=-1 -kerning first=1083 second=115 amount=-1 -kerning first=209 second=87 amount=-5 -kerning first=901 second=367 amount=-1 -kerning first=86 second=337 amount=-1 -kerning first=89 second=99 amount=-4 -kerning first=1206 second=214 amount=-1 -kerning first=366 second=8218 amount=-1 -kerning first=47 second=210 amount=-1 -kerning first=1048 second=368 amount=-2 -kerning first=190 second=100 amount=-1 -kerning first=302 second=250 amount=-1 -kerning first=299 second=941 amount=-1 -kerning first=70 second=112 amount=-1 -kerning first=327 second=1241 amount=-1 -kerning first=87 second=968 amount=-2 -kerning first=90 second=277 amount=-1 -kerning first=1168 second=227 amount=-1 -kerning first=113 second=211 amount=-2 -kerning first=250 second=1098 amount=-3 -kerning first=253 second=339 amount=-1 +kerning first=256 second=71 amount=-2 +kerning first=256 second=74 amount=-1 +kerning first=256 second=79 amount=-2 +kerning first=256 second=81 amount=-2 +kerning first=256 second=83 amount=-1 +kerning first=256 second=84 amount=-5 +kerning first=256 second=85 amount=-2 +kerning first=256 second=86 amount=-6 +kerning first=256 second=87 amount=-5 +kerning first=256 second=89 amount=-5 +kerning first=256 second=97 amount=-1 +kerning first=256 second=99 amount=-1 +kerning first=256 second=100 amount=-1 kerning first=256 second=101 amount=-1 -kerning first=376 second=251 amount=-2 -kerning first=169 second=113 amount=-1 -kerning first=166 second=353 amount=-1 -kerning first=48 second=365 amount=-1 -kerning first=1049 second=1066 amount=-5 -kerning first=1094 second=240 amount=-1 -kerning first=214 second=212 amount=-2 -kerning first=335 second=102 amount=-1 -kerning first=906 second=943 amount=-1 -kerning first=94 second=224 amount=-1 -kerning first=1118 second=1256 amount=-2 -kerning first=357 second=266 amount=-2 -kerning first=254 second=970 amount=-1 -kerning first=8217 second=1195 amount=-1 -kerning first=46 second=8217 amount=-1 -kerning first=195 second=225 amount=-1 -kerning first=215 second=367 amount=-1 -kerning first=361 second=214 amount=-2 -kerning first=950 second=1101 amount=-1 -kerning first=112 second=8218 amount=-1 -kerning first=1224 second=945 amount=-1 -kerning first=8222 second=1069 amount=-1 -kerning first=56 second=250 amount=-1 -kerning first=53 second=941 amount=-1 -kerning first=8361 second=243 amount=-1 -kerning first=76 second=1241 amount=-1 -kerning first=923 second=357 amount=-1 -kerning first=931 second=117 amount=-1 -kerning first=96 second=1079 amount=-1 -kerning first=1179 second=269 amount=-1 -kerning first=262 second=381 amount=-1 -kerning first=37 second=263 amount=-1 -kerning first=1037 second=216 amount=-2 -kerning first=287 second=1066 amount=-5 -kerning first=282 second=8221 amount=-3 -kerning first=8250 second=256 amount=-3 -kerning first=318 second=240 amount=-1 -kerning first=1103 second=283 amount=-1 -kerning first=223 second=252 amount=-1 -kerning first=338 second=1256 amount=-2 -kerning first=103 second=266 amount=-2 -kerning first=360 second=8222 amount=-1 -kerning first=369 second=79 amount=-2 -kerning first=963 second=229 amount=-1 -kerning first=41 second=213 amount=-2 -kerning first=1035 second=1195 amount=-1 -kerning first=184 second=103 amount=-1 -kerning first=296 second=253 amount=-1 -kerning first=61 second=355 amount=-1 -kerning first=64 second=115 amount=-1 -kerning first=204 second=267 amount=-1 -kerning first=8366 second=346 amount=-1 -kerning first=936 second=923 amount=-3 -kerning first=1194 second=372 amount=-1 -kerning first=367 second=945 amount=-1 -kerning first=964 second=1240 amount=-2 -kerning first=160 second=356 amount=-5 -kerning first=163 second=116 amount=-1 -kerning first=273 second=268 amount=-2 -kerning first=42 second=368 amount=-2 -kerning first=1039 second=1069 amount=-1 -kerning first=1049 second=81 amount=-2 -kerning first=182 second=972 amount=-1 -kerning first=185 second=281 amount=-1 -kerning first=68 second=65 amount=-2 -kerning first=1081 second=243 amount=-1 -kerning first=8369 second=1028 amount=-2 -kerning first=88 second=227 amount=-1 -kerning first=108 second=369 amount=-1 -kerning first=968 second=332 amount=-2 -kerning first=8211 second=374 amount=-4 -kerning first=43 second=1066 amount=-5 -kerning first=40 second=8221 amount=-3 -kerning first=189 second=228 amount=-1 -kerning first=304 second=118 amount=-4 -kerning first=69 second=240 amount=-1 -kerning first=66 second=916 amount=-1 -kerning first=206 second=1194 amount=-2 -kerning first=209 second=370 amount=-2 -kerning first=330 second=283 amount=-1 -kerning first=86 second=1256 amount=-2 -kerning first=89 second=382 amount=-2 -kerning first=1119 second=333 amount=-1 -kerning first=1219 second=257 amount=-1 -kerning first=1206 second=949 amount=-1 -kerning first=255 second=229 amount=-1 -kerning first=375 second=359 amount=-1 -kerning first=165 second=920 amount=-2 -kerning first=278 second=371 amount=-1 -kerning first=8222 second=84 amount=-5 -kerning first=50 second=253 amount=-1 -kerning first=1171 second=273 amount=-1 -kerning first=1176 second=45 amount=-2 -kerning first=236 second=242 amount=-1 -kerning first=1168 second=964 amount=-3 -kerning first=353 second=947 amount=-1 -kerning first=951 second=287 amount=-1 -kerning first=113 second=945 amount=-1 -kerning first=253 second=1262 amount=-2 +kerning first=256 second=102 amount=-2 +kerning first=256 second=103 amount=-1 +kerning first=256 second=106 amount=1 +kerning first=256 second=111 amount=-1 +kerning first=256 second=113 amount=-1 +kerning first=256 second=115 amount=-1 +kerning first=256 second=116 amount=-1 +kerning first=256 second=117 amount=-1 +kerning first=256 second=118 amount=-4 +kerning first=256 second=119 amount=-4 +kerning first=256 second=121 amount=-1 +kerning first=256 second=171 amount=-3 +kerning first=256 second=173 amount=-2 +kerning first=256 second=187 amount=-1 +kerning first=256 second=199 amount=-2 +kerning first=256 second=210 amount=-2 +kerning first=256 second=211 amount=-2 +kerning first=256 second=212 amount=-2 +kerning first=256 second=213 amount=-2 +kerning first=256 second=214 amount=-2 +kerning first=256 second=216 amount=-2 +kerning first=256 second=217 amount=-2 +kerning first=256 second=218 amount=-2 +kerning first=256 second=219 amount=-2 +kerning first=256 second=220 amount=-2 +kerning first=256 second=221 amount=-5 +kerning first=256 second=224 amount=-1 +kerning first=256 second=225 amount=-1 +kerning first=256 second=226 amount=-1 +kerning first=256 second=227 amount=-1 +kerning first=256 second=228 amount=-1 +kerning first=256 second=229 amount=-1 +kerning first=256 second=230 amount=-1 +kerning first=256 second=231 amount=-1 +kerning first=256 second=232 amount=-1 +kerning first=256 second=233 amount=-1 +kerning first=256 second=234 amount=-1 +kerning first=256 second=235 amount=-1 +kerning first=256 second=240 amount=-1 +kerning first=256 second=242 amount=-1 +kerning first=256 second=243 amount=-1 +kerning first=256 second=244 amount=-1 +kerning first=256 second=245 amount=-1 +kerning first=256 second=246 amount=-1 +kerning first=256 second=248 amount=-1 +kerning first=256 second=249 amount=-1 +kerning first=256 second=250 amount=-1 +kerning first=256 second=251 amount=-1 +kerning first=256 second=252 amount=-1 +kerning first=256 second=253 amount=-1 +kerning first=256 second=257 amount=-1 +kerning first=256 second=259 amount=-1 +kerning first=256 second=261 amount=-1 +kerning first=256 second=262 amount=-2 +kerning first=256 second=263 amount=-1 +kerning first=256 second=266 amount=-2 +kerning first=256 second=267 amount=-1 +kerning first=256 second=268 amount=-2 +kerning first=256 second=269 amount=-1 +kerning first=256 second=271 amount=-1 +kerning first=256 second=273 amount=-1 +kerning first=256 second=275 amount=-1 +kerning first=256 second=277 amount=-1 +kerning first=256 second=279 amount=-1 +kerning first=256 second=281 amount=-1 +kerning first=256 second=283 amount=-1 +kerning first=256 second=286 amount=-2 +kerning first=256 second=287 amount=-1 +kerning first=256 second=288 amount=-2 +kerning first=256 second=289 amount=-1 +kerning first=256 second=290 amount=-2 +kerning first=256 second=291 amount=-1 +kerning first=256 second=332 amount=-2 +kerning first=256 second=333 amount=-1 +kerning first=256 second=334 amount=-2 +kerning first=256 second=335 amount=-1 +kerning first=256 second=336 amount=-2 +kerning first=256 second=337 amount=-1 +kerning first=256 second=338 amount=-2 +kerning first=256 second=339 amount=-1 +kerning first=256 second=346 amount=-1 +kerning first=256 second=347 amount=-1 +kerning first=256 second=350 amount=-1 +kerning first=256 second=351 amount=-1 +kerning first=256 second=352 amount=-1 +kerning first=256 second=353 amount=-1 +kerning first=256 second=354 amount=-5 +kerning first=256 second=355 amount=-1 +kerning first=256 second=356 amount=-5 +kerning first=256 second=357 amount=-1 +kerning first=256 second=359 amount=-1 +kerning first=256 second=360 amount=-2 +kerning first=256 second=361 amount=-1 +kerning first=256 second=362 amount=-2 +kerning first=256 second=363 amount=-1 +kerning first=256 second=364 amount=-2 +kerning first=256 second=365 amount=-1 +kerning first=256 second=366 amount=-2 +kerning first=256 second=367 amount=-1 +kerning first=256 second=368 amount=-2 +kerning first=256 second=369 amount=-1 +kerning first=256 second=370 amount=-2 +kerning first=256 second=371 amount=-1 +kerning first=256 second=372 amount=-5 +kerning first=256 second=373 amount=-4 +kerning first=256 second=374 amount=-5 +kerning first=256 second=375 amount=-1 +kerning first=256 second=376 amount=-5 +kerning first=256 second=920 amount=-2 +kerning first=256 second=927 amount=-2 +kerning first=256 second=932 amount=-5 +kerning first=256 second=933 amount=-5 +kerning first=256 second=936 amount=-3 +kerning first=256 second=939 amount=-5 +kerning first=256 second=940 amount=-1 +kerning first=256 second=941 amount=-1 +kerning first=256 second=943 amount=-1 +kerning first=256 second=945 amount=-1 +kerning first=256 second=947 amount=-4 +kerning first=256 second=949 amount=-1 +kerning first=256 second=950 amount=-1 +kerning first=256 second=953 amount=-1 +kerning first=256 second=957 amount=-4 +kerning first=256 second=959 amount=-1 +kerning first=256 second=962 amount=-1 +kerning first=256 second=963 amount=-1 +kerning first=256 second=964 amount=-3 +kerning first=256 second=965 amount=-1 +kerning first=256 second=966 amount=-1 +kerning first=256 second=968 amount=-1 +kerning first=256 second=970 amount=-1 +kerning first=256 second=972 amount=-1 +kerning first=256 second=973 amount=-1 +kerning first=256 second=1026 amount=-5 +kerning first=256 second=1028 amount=-2 +kerning first=256 second=1029 amount=-1 +kerning first=256 second=1032 amount=-1 +kerning first=256 second=1035 amount=-5 +kerning first=256 second=1038 amount=-2 +kerning first=256 second=1054 amount=-2 +kerning first=256 second=1057 amount=-2 +kerning first=256 second=1058 amount=-5 +kerning first=256 second=1059 amount=-2 +kerning first=256 second=1063 amount=-3 +kerning first=256 second=1066 amount=-5 +kerning first=256 second=1069 amount=-1 +kerning first=256 second=1072 amount=-1 +kerning first=256 second=1077 amount=-1 +kerning first=256 second=1079 amount=-1 +kerning first=256 second=1086 amount=-1 +kerning first=256 second=1089 amount=-1 +kerning first=256 second=1090 amount=-3 +kerning first=256 second=1091 amount=-1 +kerning first=256 second=1092 amount=-1 +kerning first=256 second=1098 amount=-3 +kerning first=256 second=1101 amount=-1 +kerning first=256 second=1104 amount=-1 +kerning first=256 second=1105 amount=-1 +kerning first=256 second=1108 amount=-1 +kerning first=256 second=1109 amount=-1 +kerning first=256 second=1112 amount=1 +kerning first=256 second=1118 amount=-1 +kerning first=256 second=1176 amount=-1 +kerning first=256 second=1177 amount=-1 +kerning first=256 second=1184 amount=-5 +kerning first=256 second=1185 amount=-3 +kerning first=256 second=1194 amount=-2 +kerning first=256 second=1195 amount=-1 +kerning first=256 second=1198 amount=-5 +kerning first=256 second=1199 amount=-4 kerning first=256 second=1240 amount=-2 -kerning first=1027 second=219 amount=-2 -kerning first=287 second=81 amount=-2 -kerning first=8224 second=259 amount=-1 -kerning first=8230 second=34 amount=-1 -kerning first=311 second=243 amount=-2 -kerning first=955 second=232 amount=-1 -kerning first=1223 second=1176 amount=-1 -kerning first=260 second=332 amount=-2 -kerning first=35 second=216 amount=-2 -kerning first=1028 second=374 amount=-2 -kerning first=974 second=1203 amount=-1 -kerning first=177 second=106 amount=1 -kerning first=58 second=118 amount=-4 -kerning first=1073 second=71 amount=-2 -kerning first=195 second=962 amount=-1 -kerning first=8363 second=111 amount=-1 -kerning first=78 second=283 amount=-1 -kerning first=928 second=245 amount=-1 -kerning first=361 second=949 amount=-1 -kerning first=121 second=359 amount=-1 -kerning first=1224 second=8211 amount=-2 -kerning first=124 second=119 amount=-4 -kerning first=1262 second=1051 amount=-1 -kerning first=36 second=371 amount=-1 -kerning first=175 second=1026 amount=-5 -kerning first=1039 second=84 amount=-5 -kerning first=178 second=286 amount=-2 -kerning first=1074 second=246 amount=-1 -kerning first=202 second=218 amount=-2 -kerning first=317 second=346 amount=-1 -kerning first=8361 second=1035 amount=-5 -kerning first=8364 second=291 amount=-1 -kerning first=343 second=273 amount=-1 -kerning first=99 second=947 amount=-1 -kerning first=1176 second=8249 amount=-3 -kerning first=962 second=335 amount=-1 -kerning first=965 second=97 amount=-1 -kerning first=37 second=1069 amount=-1 -kerning first=43 second=81 amount=-2 -kerning first=1041 second=259 amount=-1 -kerning first=183 second=231 amount=-1 -kerning first=298 second=121 amount=-1 -kerning first=8230 second=8216 amount=-1 -kerning first=63 second=243 amount=-1 -kerning first=203 second=373 amount=-4 -kerning first=318 second=1028 amount=-2 -kerning first=323 second=288 amount=-2 -kerning first=80 second=1263 amount=-1 -kerning first=249 second=232 amount=-1 -kerning first=369 second=362 amount=-2 -kerning first=372 second=122 amount=-1 -kerning first=963 second=966 amount=-1 -kerning first=162 second=244 amount=-1 -kerning first=271 second=374 amount=-5 -kerning first=8212 second=87 amount=-2 -kerning first=302 second=71 amount=-2 -kerning first=67 second=193 amount=-1 -kerning first=1080 second=351 amount=-1 -kerning first=1084 second=111 amount=-1 -kerning first=327 second=233 amount=-1 -kerning first=902 second=363 amount=-1 -kerning first=84 second=1087 amount=-2 -kerning first=87 second=333 amount=-3 -kerning first=944 second=290 amount=-2 -kerning first=107 second=949 amount=-2 -kerning first=367 second=8211 amount=-2 -kerning first=370 second=1051 amount=-1 -kerning first=1049 second=364 amount=-2 -kerning first=185 second=1090 amount=-3 -kerning first=188 second=334 amount=-2 -kerning first=303 second=246 amount=-1 -kerning first=1081 second=1035 amount=-5 -kerning first=1085 second=291 amount=-1 -kerning first=211 second=258 amount=-2 -kerning first=900 second=8212 amount=-2 -kerning first=903 second=1059 amount=-2 -kerning first=94 second=45 amount=-2 -kerning first=91 second=273 amount=-1 -kerning first=88 second=964 amount=-3 -kerning first=357 second=85 amount=-2 -kerning first=1210 second=365 amount=-1 -kerning first=254 second=335 amount=-1 -kerning first=164 second=1108 amount=-1 -kerning first=167 second=347 amount=-1 -kerning first=280 second=259 amount=-1 -kerning first=283 second=34 amount=-1 -kerning first=49 second=361 amount=-1 -kerning first=52 second=121 amount=-1 -kerning first=189 second=965 amount=-1 -kerning first=69 second=1028 amount=-2 -kerning first=72 second=288 amount=-2 -kerning first=912 second=248 amount=-1 -kerning first=95 second=220 amount=-2 -kerning first=232 second=1113 amount=-1 -kerning first=1206 second=8217 amount=-2 -kerning first=255 second=966 amount=-1 +kerning first=256 second=1241 amount=-1 +kerning first=256 second=1256 amount=-2 +kerning first=256 second=1257 amount=-1 +kerning first=256 second=1262 amount=-2 +kerning first=256 second=1263 amount=-1 +kerning first=256 second=8211 amount=-2 +kerning first=256 second=8212 amount=-2 +kerning first=256 second=8216 amount=-3 +kerning first=256 second=8217 amount=-3 +kerning first=256 second=8220 amount=-3 +kerning first=256 second=8221 amount=-3 +kerning first=256 second=8249 amount=-3 +kerning first=256 second=8250 amount=-1 +kerning first=257 second=34 amount=-1 +kerning first=257 second=39 amount=-1 +kerning first=257 second=63 amount=-2 +kerning first=257 second=102 amount=-1 +kerning first=257 second=106 amount=1 +kerning first=257 second=118 amount=-1 +kerning first=257 second=119 amount=-1 +kerning first=257 second=373 amount=-1 +kerning first=257 second=947 amount=-1 +kerning first=257 second=957 amount=-1 +kerning first=257 second=964 amount=-1 +kerning first=257 second=1090 amount=-1 +kerning first=257 second=1098 amount=-1 +kerning first=257 second=1112 amount=1 +kerning first=257 second=1185 amount=-1 +kerning first=257 second=1199 amount=-1 +kerning first=257 second=8216 amount=-1 +kerning first=257 second=8217 amount=-1 +kerning first=257 second=8220 amount=-1 +kerning first=257 second=8221 amount=-1 +kerning first=258 second=34 amount=-3 +kerning first=258 second=38 amount=-1 +kerning first=258 second=39 amount=-3 +kerning first=258 second=45 amount=-2 +kerning first=258 second=63 amount=-5 +kerning first=258 second=67 amount=-2 +kerning first=258 second=71 amount=-2 +kerning first=258 second=74 amount=-1 +kerning first=258 second=79 amount=-2 +kerning first=258 second=81 amount=-2 +kerning first=258 second=83 amount=-1 +kerning first=258 second=84 amount=-5 +kerning first=258 second=85 amount=-2 +kerning first=258 second=86 amount=-6 +kerning first=258 second=87 amount=-5 +kerning first=258 second=89 amount=-5 +kerning first=258 second=97 amount=-1 +kerning first=258 second=99 amount=-1 +kerning first=258 second=100 amount=-1 +kerning first=258 second=101 amount=-1 +kerning first=258 second=102 amount=-2 +kerning first=258 second=103 amount=-1 +kerning first=258 second=106 amount=1 +kerning first=258 second=111 amount=-1 +kerning first=258 second=113 amount=-1 +kerning first=258 second=115 amount=-1 +kerning first=258 second=116 amount=-1 +kerning first=258 second=117 amount=-1 +kerning first=258 second=118 amount=-4 +kerning first=258 second=119 amount=-4 +kerning first=258 second=121 amount=-1 +kerning first=258 second=171 amount=-3 +kerning first=258 second=173 amount=-2 +kerning first=258 second=187 amount=-1 +kerning first=258 second=199 amount=-2 +kerning first=258 second=210 amount=-2 +kerning first=258 second=211 amount=-2 +kerning first=258 second=212 amount=-2 +kerning first=258 second=213 amount=-2 +kerning first=258 second=214 amount=-2 +kerning first=258 second=216 amount=-2 +kerning first=258 second=217 amount=-2 +kerning first=258 second=218 amount=-2 +kerning first=258 second=219 amount=-2 +kerning first=258 second=220 amount=-2 +kerning first=258 second=221 amount=-5 +kerning first=258 second=224 amount=-1 +kerning first=258 second=225 amount=-1 +kerning first=258 second=226 amount=-1 +kerning first=258 second=227 amount=-1 +kerning first=258 second=228 amount=-1 +kerning first=258 second=229 amount=-1 +kerning first=258 second=230 amount=-1 +kerning first=258 second=231 amount=-1 +kerning first=258 second=232 amount=-1 +kerning first=258 second=233 amount=-1 +kerning first=258 second=234 amount=-1 +kerning first=258 second=235 amount=-1 +kerning first=258 second=240 amount=-1 +kerning first=258 second=242 amount=-1 +kerning first=258 second=243 amount=-1 +kerning first=258 second=244 amount=-1 +kerning first=258 second=245 amount=-1 +kerning first=258 second=246 amount=-1 +kerning first=258 second=248 amount=-1 +kerning first=258 second=249 amount=-1 +kerning first=258 second=250 amount=-1 +kerning first=258 second=251 amount=-1 +kerning first=258 second=252 amount=-1 +kerning first=258 second=253 amount=-1 +kerning first=258 second=257 amount=-1 +kerning first=258 second=259 amount=-1 +kerning first=258 second=261 amount=-1 +kerning first=258 second=262 amount=-2 +kerning first=258 second=263 amount=-1 +kerning first=258 second=266 amount=-2 +kerning first=258 second=267 amount=-1 +kerning first=258 second=268 amount=-2 +kerning first=258 second=269 amount=-1 +kerning first=258 second=271 amount=-1 +kerning first=258 second=273 amount=-1 kerning first=258 second=275 amount=-1 -kerning first=972 second=1076 amount=-1 -kerning first=8218 second=1185 amount=-3 -kerning first=8222 second=367 amount=-1 -kerning first=56 second=71 amount=-2 -kerning first=1067 second=249 amount=-1 -kerning first=1064 second=940 amount=-1 -kerning first=196 second=221 amount=-5 -kerning first=314 second=111 amount=-1 -kerning first=76 second=233 amount=-1 -kerning first=334 second=967 amount=-1 -kerning first=96 second=375 amount=-1 -kerning first=239 second=290 amount=-2 -kerning first=958 second=100 amount=-1 -kerning first=113 second=8211 amount=-2 -kerning first=1263 second=250 amount=-1 -kerning first=37 second=84 amount=-5 -kerning first=176 second=234 amount=-1 -kerning first=287 second=364 amount=-2 -kerning first=57 second=246 amount=-1 -kerning first=1071 second=199 amount=-2 -kerning first=197 second=376 amount=-5 -kerning first=315 second=291 amount=-1 -kerning first=1097 second=1098 amount=-2 -kerning first=1103 second=101 amount=-1 -kerning first=214 second=8212 amount=-2 -kerning first=934 second=113 amount=-1 -kerning first=926 second=353 amount=-1 -kerning first=103 second=85 amount=-2 -kerning first=94 second=8249 amount=-3 -kerning first=1184 second=263 amount=-2 -kerning first=363 second=365 amount=-1 -kerning first=38 second=259 amount=-1 -kerning first=41 second=34 amount=-3 -kerning first=283 second=8216 amount=-1 -kerning first=8260 second=252 amount=-1 -kerning first=8240 second=943 amount=-1 -kerning first=1073 second=354 amount=-5 -kerning first=195 second=8250 amount=-1 -kerning first=221 second=937 amount=-2 -kerning first=941 second=63 amount=-1 -kerning first=361 second=8217 amount=-3 -kerning first=964 second=225 amount=-1 -kerning first=273 second=87 amount=-5 -kerning first=1036 second=1185 amount=-4 -kerning first=1039 second=367 amount=-1 -kerning first=182 second=337 amount=-1 -kerning first=185 second=99 amount=-1 -kerning first=294 second=940 amount=-1 -kerning first=297 second=249 amount=-1 -kerning first=65 second=111 amount=-1 -kerning first=1074 second=1038 amount=-2 -kerning first=62 second=351 amount=-1 -kerning first=202 second=953 amount=-1 -kerning first=205 second=261 amount=-1 -kerning first=8364 second=1101 amount=-1 -kerning first=108 second=210 amount=-2 -kerning first=251 second=100 amount=-1 -kerning first=371 second=250 amount=-1 -kerning first=161 second=352 amount=-1 -kerning first=274 second=262 amount=-2 -kerning first=43 second=364 amount=-2 -kerning first=1037 second=8220 amount=-3 -kerning first=183 second=968 amount=-1 -kerning first=186 second=277 amount=-1 -kerning first=301 second=199 amount=-2 -kerning first=63 second=1035 amount=-5 -kerning first=209 second=211 amount=-2 -kerning first=323 second=1098 amount=-3 -kerning first=8370 second=973 amount=-1 -kerning first=330 second=101 amount=-1 -kerning first=904 second=251 amount=-1 -kerning first=278 second=212 amount=-2 -kerning first=41 second=8216 amount=-3 -kerning first=1048 second=943 amount=-1 -kerning first=190 second=224 amount=-1 -kerning first=299 second=1118 amount=-1 -kerning first=302 second=354 amount=-5 -kerning first=207 second=1184 amount=-5 -kerning first=327 second=970 amount=-1 -kerning first=93 second=171 amount=-3 -kerning first=356 second=213 amount=-1 -kerning first=951 second=103 amount=-1 -kerning first=1220 second=253 amount=-1 -kerning first=256 second=225 amount=-1 -kerning first=973 second=267 amount=-1 -kerning first=276 second=1185 amount=-3 -kerning first=51 second=249 amount=-1 -kerning first=48 second=940 amount=-1 -kerning first=303 second=1038 amount=-2 -kerning first=1085 second=1101 amount=-1 -kerning first=208 second=8218 amount=-1 -kerning first=916 second=116 amount=-1 -kerning first=1174 second=268 amount=-1 -kerning first=357 second=368 amount=-2 -kerning first=952 second=281 amount=-1 -kerning first=117 second=250 amount=-1 -kerning first=114 second=941 amount=-1 -kerning first=170 second=1241 amount=-1 -kerning first=174 second=187 amount=-1 -kerning first=277 second=8220 amount=-1 -kerning first=55 second=199 amount=-2 -kerning first=192 second=1079 amount=-1 -kerning first=198 second=89 amount=-5 -kerning first=72 second=1098 amount=-3 -kerning first=1095 second=973 amount=-1 -kerning first=78 second=101 amount=-1 -kerning first=75 second=339 amount=-2 -kerning first=336 second=381 amount=-1 -kerning first=1178 second=216 amount=-1 -kerning first=358 second=1066 amount=-5 -kerning first=956 second=228 amount=-1 -kerning first=1299 second=118 amount=-4 -kerning first=266 second=90 amount=-1 -kerning first=36 second=212 amount=-2 -kerning first=1026 second=1194 amount=-2 -kerning first=289 second=252 amount=-1 -kerning first=56 second=354 amount=-5 -kerning first=53 second=1118 amount=-1 -kerning first=1074 second=67 amount=-2 -kerning first=202 second=39 amount=-3 -kerning first=923 second=920 amount=-2 -kerning first=1176 second=1195 amount=-1 -kerning first=365 second=253 amount=-1 -kerning first=954 second=1257 amount=-2 -kerning first=125 second=115 amount=-1 -kerning first=37 second=367 amount=-1 -kerning first=57 second=1038 amount=-2 -kerning first=1075 second=242 amount=-1 -kerning first=203 second=214 amount=-2 -kerning first=8365 second=287 amount=-1 -kerning first=1103 second=1240 amount=-2 -kerning first=223 second=356 amount=-5 -kerning first=103 second=368 amount=-2 -kerning first=1184 second=1069 amount=-2 -kerning first=35 second=8220 amount=-3 -kerning first=184 second=227 amount=-1 -kerning first=299 second=117 amount=-1 -kerning first=296 second=357 amount=-1 -kerning first=204 second=369 amount=-1 -kerning first=321 second=973 amount=-1 -kerning first=8372 second=232 amount=-1 -kerning first=944 second=106 amount=1 -kerning first=101 second=8221 amount=-1 -kerning first=250 second=228 amount=-1 -kerning first=964 second=962 amount=-1 -kerning first=163 second=240 amount=-1 -kerning first=273 second=370 amount=-2 -kerning first=42 second=943 amount=-1 -kerning first=182 second=1256 amount=-2 -kerning first=303 second=67 amount=-2 -kerning first=903 second=359 amount=-1 -kerning first=906 second=119 amount=-4 -kerning first=1118 second=271 amount=-1 -kerning first=1169 second=44 amount=-3 -kerning first=942 second=1026 amount=-5 -kerning first=971 second=218 amount=-2 -kerning first=8217 second=258 amount=-3 -kerning first=1051 second=360 amount=-2 -kerning first=1047 second=1174 amount=-2 -kerning first=304 second=242 amount=-1 -kerning first=1087 second=287 amount=-1 -kerning first=209 second=945 amount=-1 -kerning first=330 second=1240 amount=-2 -kerning first=92 second=268 amount=-2 -kerning first=1170 second=219 amount=-2 -kerning first=358 second=81 amount=-2 -kerning first=950 second=231 amount=-1 -kerning first=1219 second=361 amount=-1 -kerning first=1224 second=121 amount=-1 -kerning first=378 second=243 amount=-1 -kerning first=972 second=373 amount=-1 -kerning first=47 second=1169 amount=-1 -kerning first=53 second=117 amount=-1 -kerning first=50 second=357 amount=-1 -kerning first=193 second=269 amount=-1 -kerning first=70 second=973 amount=-1 -kerning first=1096 second=232 amount=-1 -kerning first=915 second=244 amount=-1 -kerning first=96 second=216 amount=-2 -kerning first=1171 second=374 amount=-5 -kerning first=239 second=106 amount=1 -kerning first=1263 second=71 amount=-2 -kerning first=256 second=962 amount=-1 -kerning first=172 second=283 amount=-1 -kerning first=8224 second=363 amount=-1 -kerning first=57 second=67 amount=-2 -kerning first=197 second=217 amount=-2 -kerning first=77 second=229 amount=-1 -kerning first=338 second=271 amount=-1 -kerning first=341 second=44 amount=-3 -kerning first=94 second=1195 amount=-1 -kerning first=237 second=1026 amount=-5 -kerning first=240 second=286 amount=-2 -kerning first=955 second=334 amount=-2 -kerning first=952 second=1090 amount=-3 -kerning first=1298 second=246 amount=-1 -kerning first=177 second=230 amount=-1 -kerning first=8225 second=1059 amount=-2 -kerning first=55 second=923 amount=-5 -kerning first=58 second=242 amount=-1 -kerning first=195 second=947 amount=-4 -kerning first=198 second=372 amount=-5 -kerning first=316 second=287 amount=-1 -kerning first=8363 second=235 amount=-1 -kerning first=78 second=1240 amount=-2 -kerning first=928 second=347 amount=-1 -kerning first=1185 second=259 amount=-1 -kerning first=367 second=121 amount=-1 -kerning first=956 second=965 amount=-1 -kerning first=124 second=243 amount=-1 -kerning first=175 second=1263 amount=-1 -kerning first=1074 second=350 amount=-1 -kerning first=322 second=232 amount=-1 -kerning first=1107 second=275 amount=-1 -kerning first=371 second=71 amount=-2 -kerning first=965 second=221 amount=-5 -kerning first=262 second=8230 amount=-1 -kerning first=274 second=83 amount=-1 -kerning first=1041 second=363 amount=-1 -kerning first=1037 second=1177 amount=-1 -kerning first=183 second=333 amount=-1 -kerning first=298 second=245 amount=-1 -kerning first=203 second=949 amount=-1 -kerning first=206 second=257 amount=-1 -kerning first=8370 second=338 amount=-2 -kerning first=8377 second=100 amount=-1 -kerning first=86 second=271 amount=-1 -kerning first=89 second=44 amount=-4 -kerning first=352 second=84 amount=-1 -kerning first=249 second=334 amount=-2 -kerning first=246 second=1090 amount=-1 -kerning first=372 second=246 amount=-3 -kerning first=162 second=346 amount=-1 -kerning first=47 second=120 amount=-1 -kerning first=1044 second=1059 amount=-1 -kerning first=44 second=360 amount=-1 -kerning first=184 second=964 amount=-3 -kerning first=190 second=45 amount=-2 -kerning first=1084 second=235 amount=-1 -kerning first=327 second=335 amount=-1 -kerning first=902 second=936 amount=-3 -kerning first=113 second=121 amount=2 -kerning first=250 second=965 amount=-1 -kerning first=376 second=196 amount=-5 -kerning first=964 second=8250 amount=-1 -kerning first=163 second=1028 amount=-2 -kerning first=166 second=288 amount=-2 -kerning first=1062 second=248 amount=-1 -kerning first=191 second=220 amount=-2 -kerning first=303 second=350 amount=-1 -kerning first=335 second=47 amount=-1 -kerning first=91 second=374 amount=-5 -kerning first=952 second=99 amount=-1 -kerning first=117 second=71 amount=-2 -kerning first=1223 second=249 amount=-1 -kerning first=1210 second=940 amount=-1 -kerning first=374 second=1114 amount=-3 -kerning first=380 second=111 amount=-1 -kerning first=971 second=953 amount=-1 -kerning first=170 second=233 amount=-1 -kerning first=280 second=363 amount=-1 -kerning first=8211 second=8218 amount=-1 -kerning first=52 second=245 amount=-1 -kerning first=1066 second=198 amount=-1 -kerning first=192 second=375 amount=-1 -kerning first=1095 second=338 amount=-2 -kerning first=209 second=8211 amount=-2 -kerning first=212 second=1051 amount=-1 -kerning first=912 second=352 amount=-1 -kerning first=238 second=234 amount=-1 -kerning first=358 second=364 amount=-2 -kerning first=950 second=968 amount=-1 -kerning first=118 second=246 amount=-1 +kerning first=258 second=277 amount=-1 +kerning first=258 second=279 amount=-1 +kerning first=258 second=281 amount=-1 +kerning first=258 second=283 amount=-1 +kerning first=258 second=286 amount=-2 +kerning first=258 second=287 amount=-1 +kerning first=258 second=288 amount=-2 +kerning first=258 second=289 amount=-1 +kerning first=258 second=290 amount=-2 +kerning first=258 second=291 amount=-1 +kerning first=258 second=332 amount=-2 +kerning first=258 second=333 amount=-1 +kerning first=258 second=334 amount=-2 +kerning first=258 second=335 amount=-1 +kerning first=258 second=336 amount=-2 +kerning first=258 second=337 amount=-1 +kerning first=258 second=338 amount=-2 +kerning first=258 second=339 amount=-1 +kerning first=258 second=346 amount=-1 +kerning first=258 second=347 amount=-1 +kerning first=258 second=350 amount=-1 +kerning first=258 second=351 amount=-1 +kerning first=258 second=352 amount=-1 +kerning first=258 second=353 amount=-1 +kerning first=258 second=354 amount=-5 +kerning first=258 second=355 amount=-1 +kerning first=258 second=356 amount=-5 +kerning first=258 second=357 amount=-1 +kerning first=258 second=359 amount=-1 +kerning first=258 second=360 amount=-2 +kerning first=258 second=361 amount=-1 +kerning first=258 second=362 amount=-2 +kerning first=258 second=363 amount=-1 +kerning first=258 second=364 amount=-2 +kerning first=258 second=365 amount=-1 +kerning first=258 second=366 amount=-2 +kerning first=258 second=367 amount=-1 +kerning first=258 second=368 amount=-2 +kerning first=258 second=369 amount=-1 +kerning first=258 second=370 amount=-2 +kerning first=258 second=371 amount=-1 +kerning first=258 second=372 amount=-5 +kerning first=258 second=373 amount=-4 +kerning first=258 second=374 amount=-5 +kerning first=258 second=375 amount=-1 kerning first=258 second=376 amount=-5 -kerning first=278 second=8212 amount=-2 -kerning first=8226 second=251 amount=-1 -kerning first=1067 second=353 amount=-1 -kerning first=190 second=8249 amount=-3 -kerning first=314 second=235 amount=-1 -kerning first=76 second=335 amount=-1 -kerning first=958 second=224 amount=-1 -kerning first=1263 second=354 amount=-5 -kerning first=256 second=8250 amount=-1 -kerning first=1027 second=1184 amount=-5 -kerning first=176 second=336 amount=-2 -kerning first=57 second=350 amount=-1 -kerning first=8365 second=103 amount=-1 -kerning first=77 second=966 amount=-1 -kerning first=80 second=275 amount=-1 -kerning first=1103 second=225 amount=-1 -kerning first=344 second=87 amount=-1 -kerning first=1177 second=1185 amount=-1 -kerning first=1184 second=367 amount=-1 -kerning first=363 second=940 amount=-1 -kerning first=126 second=111 amount=-1 -kerning first=1298 second=1038 amount=-2 -kerning first=123 second=351 amount=-1 -kerning first=35 second=1177 amount=-1 -kerning first=38 second=363 amount=-1 -kerning first=1028 second=8218 amount=-1 -kerning first=8260 second=356 amount=-5 -kerning first=61 second=290 amount=-2 -kerning first=204 second=210 amount=-2 -kerning first=321 second=338 amount=-2 -kerning first=8363 second=972 amount=-1 -kerning first=8366 second=281 amount=-1 -kerning first=221 second=1116 amount=-3 -kerning first=936 second=1241 amount=-1 -kerning first=1178 second=8220 amount=-2 -kerning first=247 second=277 amount=-1 -kerning first=967 second=89 amount=-5 -kerning first=124 second=1035 amount=-5 -kerning first=160 second=291 amount=-1 -kerning first=273 second=211 amount=-2 -kerning first=36 second=8212 amount=-2 -kerning first=1046 second=251 amount=-1 -kerning first=297 second=353 amount=-1 -kerning first=300 second=113 amount=-1 -kerning first=65 second=235 amount=-1 -kerning first=205 second=365 amount=-1 -kerning first=251 second=224 amount=-1 -kerning first=371 second=354 amount=-5 -kerning first=374 second=114 amount=-3 -kerning first=968 second=266 amount=-2 -kerning first=971 second=39 amount=-3 -kerning first=274 second=366 amount=-2 -kerning first=270 second=1184 amount=-2 -kerning first=189 second=171 amount=-3 -kerning first=1087 second=103 amount=-1 -kerning first=203 second=8217 amount=-3 -kerning first=8370 second=1257 amount=-1 -kerning first=330 second=225 amount=-1 -kerning first=904 second=355 amount=-1 -kerning first=92 second=87 amount=-5 -kerning first=89 second=324 amount=-3 -kerning first=1119 second=267 amount=-1 -kerning first=1064 second=116 amount=-1 -kerning first=187 second=1078 amount=-2 -kerning first=70 second=338 amount=-1 -kerning first=73 second=100 amount=-1 -kerning first=1084 second=972 amount=-1 -kerning first=1090 second=281 amount=-1 -kerning first=93 second=262 amount=-2 -kerning first=236 second=187 amount=-1 -kerning first=951 second=227 amount=-1 -kerning first=1220 second=357 amount=-1 -kerning first=253 second=1079 amount=-1 -kerning first=973 second=369 amount=-1 -kerning first=166 second=1098 amount=-3 -kerning first=169 second=339 amount=-1 -kerning first=172 second=101 amount=-1 -kerning first=282 second=251 amount=-1 -kerning first=51 second=353 amount=-1 -kerning first=54 second=113 amount=-1 -kerning first=197 second=38 amount=-1 -kerning first=194 second=263 amount=-1 -kerning first=916 second=240 amount=-1 -kerning first=1174 second=370 amount=-1 -kerning first=357 second=943 amount=-1 -kerning first=117 second=354 amount=-5 -kerning first=1298 second=67 amount=-2 -kerning first=260 second=266 amount=-2 -kerning first=263 second=39 amount=-1 -kerning first=1035 second=79 amount=-2 -kerning first=174 second=279 amount=-1 -kerning first=170 second=970 amount=-1 -kerning first=8225 second=359 amount=-1 -kerning first=8240 second=119 amount=-4 -kerning first=198 second=213 amount=-2 -kerning first=316 second=103 amount=-1 -kerning first=78 second=225 amount=-1 -kerning first=1095 second=1257 amount=-1 -kerning first=221 second=115 amount=-3 -kerning first=95 second=1185 amount=-3 -kerning first=1262 second=923 amount=-2 -kerning first=1299 second=242 amount=-1 -kerning first=178 second=226 amount=-1 -kerning first=289 second=356 amount=-5 -kerning first=294 second=116 amount=-1 -kerning first=314 second=972 amount=-1 -kerning first=317 second=281 amount=-1 -kerning first=8364 second=231 amount=-1 -kerning first=96 second=8220 amount=-3 -kerning first=365 second=357 amount=-1 -kerning first=962 second=269 amount=-1 -kerning first=40 second=251 amount=-1 -kerning first=197 second=8221 amount=-3 -kerning first=200 second=1066 amount=-5 -kerning first=323 second=228 amount=-1 -kerning first=901 second=118 amount=-4 -kerning first=1103 second=962 amount=-1 -kerning first=103 second=943 amount=-1 -kerning first=246 second=382 amount=-1 -kerning first=366 second=1044 amount=-1 -kerning first=372 second=67 amount=-2 -kerning first=1048 second=119 amount=-4 -kerning first=296 second=920 amount=-2 -kerning first=1080 second=286 amount=-2 -kerning first=207 second=253 amount=-1 -kerning first=321 second=1257 amount=-1 -kerning first=8372 second=334 amount=-2 -kerning first=8366 second=1090 amount=-3 -kerning first=87 second=267 amount=-3 -kerning first=1117 second=218 amount=-2 -kerning first=944 second=230 amount=-1 -kerning first=1194 second=1174 amount=-2 -kerning first=1202 second=360 amount=-1 -kerning first=370 second=923 amount=-2 -kerning first=373 second=242 amount=-1 -kerning first=964 second=947 amount=-4 -kerning first=967 second=372 amount=-5 -kerning first=160 second=1101 amount=-1 -kerning first=273 second=945 amount=-1 -kerning first=45 second=356 amount=-4 -kerning first=1046 second=1047 amount=-2 -kerning first=188 second=268 amount=-2 -kerning first=48 second=116 amount=-1 -kerning first=65 second=972 amount=-1 -kerning first=1085 second=231 amount=-1 -kerning first=906 second=243 amount=-1 -kerning first=1118 second=373 amount=-4 -kerning first=942 second=1263 amount=-1 -kerning first=254 second=269 amount=-1 -kerning first=164 second=973 amount=-1 -kerning first=8211 second=1176 amount=-1 -kerning first=1063 second=244 amount=-1 -kerning first=192 second=216 amount=-2 -kerning first=307 second=106 amount=7 -kerning first=72 second=228 amount=-1 -kerning first=215 second=118 amount=-4 -kerning first=330 second=962 amount=-1 -kerning first=92 second=370 amount=-2 -kerning first=89 second=1194 amount=-3 -kerning first=950 second=333 amount=-1 -kerning first=1224 second=245 amount=-1 -kerning first=258 second=217 amount=-2 -kerning first=1026 second=257 amount=-1 -kerning first=50 second=920 amount=-2 -kerning first=190 second=1195 amount=-1 -kerning first=193 second=371 amount=-1 -kerning first=305 second=1026 amount=-5 -kerning first=310 second=286 amount=-3 -kerning first=70 second=1257 amount=-1 -kerning first=1096 second=334 amount=-2 -kerning first=213 second=1046 amount=-3 -kerning first=915 second=346 amount=-1 -kerning first=910 second=1107 amount=-3 -kerning first=239 second=230 amount=-1 -kerning first=951 second=964 amount=-3 -kerning first=958 second=45 amount=-2 -kerning first=954 second=273 amount=-2 -kerning first=119 second=242 amount=-1 -kerning first=256 second=947 amount=-4 -kerning first=172 second=1240 amount=-2 -kerning first=169 second=1262 amount=-2 -kerning first=1065 second=1108 amount=-1 -kerning first=194 second=1069 amount=-1 -kerning first=200 second=81 amount=-2 -kerning first=315 second=231 amount=-1 -kerning first=338 second=373 amount=-4 -kerning first=916 second=1028 amount=-2 -kerning first=926 second=288 amount=-2 -kerning first=237 second=1263 amount=-1 -kerning first=960 second=220 amount=-2 -kerning first=1257 second=1113 amount=-1 -kerning first=1298 second=350 amount=-1 -kerning first=1035 second=362 amount=-2 -kerning first=1028 second=1176 amount=1 -kerning first=177 second=332 amount=-2 -kerning first=291 second=244 amount=-1 -kerning first=61 second=106 amount=1 -kerning first=1073 second=289 amount=-1 -kerning first=1069 second=1033 amount=-1 -kerning first=8363 second=337 amount=-1 -kerning first=8366 second=99 amount=-1 -kerning first=78 second=962 amount=-1 -kerning first=336 second=8230 amount=-1 -kerning first=936 second=233 amount=-1 -kerning first=367 second=245 amount=-1 -kerning first=42 second=119 amount=-4 -kerning first=178 second=963 amount=-1 -kerning first=182 second=271 amount=-1 -kerning first=59 second=1026 amount=-5 -kerning first=62 second=286 amount=-2 -kerning first=1078 second=234 amount=-2 -kerning first=317 second=1090 amount=-3 -kerning first=322 second=334 amount=-2 -kerning first=8364 second=968 amount=-1 -kerning first=900 second=246 amount=-1 -kerning first=8369 second=277 amount=-1 -kerning first=346 second=258 amount=-1 -kerning first=105 second=360 amount=-2 -kerning first=1186 second=1059 amount=-1 -kerning first=245 second=964 amount=-1 -kerning first=251 second=45 amount=-2 -kerning first=958 second=8249 amount=-3 -kerning first=968 second=85 amount=-2 -kerning first=161 second=287 amount=-1 -kerning first=186 second=219 amount=-2 -kerning first=298 second=347 amount=-1 -kerning first=206 second=361 amount=-1 -kerning first=209 second=121 amount=-1 -kerning first=323 second=965 amount=-1 -kerning first=8377 second=224 amount=-1 -kerning first=86 second=373 amount=-4 -kerning first=1103 second=8250 amount=-1 -kerning first=83 second=1202 amount=-1 -kerning first=1206 second=248 amount=-1 -kerning first=252 second=220 amount=-2 -kerning first=372 second=350 amount=-1 -kerning first=165 second=232 amount=-1 -kerning first=271 second=1176 amount=-1 -kerning first=47 second=244 amount=-2 -kerning first=1059 second=197 amount=-2 -kerning first=187 second=374 amount=-3 -kerning first=302 second=289 amount=-1 -kerning first=1084 second=337 amount=-1 -kerning first=1090 second=99 amount=-1 -kerning first=905 second=351 amount=-1 -kerning first=84 second=8230 amount=-3 -kerning first=910 second=111 amount=-4 -kerning first=93 second=83 amount=-1 -kerning first=1168 second=261 amount=-1 -kerning first=1117 second=953 amount=-1 -kerning first=113 second=245 amount=-1 -kerning first=253 second=375 amount=-1 -kerning first=376 second=290 amount=-3 -kerning first=973 second=210 amount=-2 -kerning first=273 second=8211 amount=-2 -kerning first=8216 second=941 amount=-1 -kerning first=194 second=84 amount=-5 -kerning first=306 second=234 amount=-1 -kerning first=1085 second=968 amount=-1 -kerning first=1094 second=277 amount=-1 -kerning first=214 second=246 amount=-1 -kerning first=332 second=376 amount=-3 -kerning first=906 second=1035 amount=-5 -kerning first=1174 second=211 amount=-1 -kerning first=1223 second=353 amount=-1 -kerning first=251 second=8249 amount=-3 +kerning first=258 second=920 amount=-2 +kerning first=258 second=927 amount=-2 +kerning first=258 second=932 amount=-5 +kerning first=258 second=933 amount=-5 +kerning first=258 second=936 amount=-3 +kerning first=258 second=939 amount=-5 +kerning first=258 second=940 amount=-1 +kerning first=258 second=941 amount=-1 +kerning first=258 second=943 amount=-1 +kerning first=258 second=945 amount=-1 +kerning first=258 second=947 amount=-4 +kerning first=258 second=949 amount=-1 +kerning first=258 second=950 amount=-1 +kerning first=258 second=953 amount=-1 +kerning first=258 second=957 amount=-4 +kerning first=258 second=959 amount=-1 +kerning first=258 second=962 amount=-1 +kerning first=258 second=963 amount=-1 +kerning first=258 second=964 amount=-3 +kerning first=258 second=965 amount=-1 +kerning first=258 second=966 amount=-1 +kerning first=258 second=968 amount=-1 +kerning first=258 second=970 amount=-1 +kerning first=258 second=972 amount=-1 +kerning first=258 second=973 amount=-1 +kerning first=258 second=1026 amount=-5 +kerning first=258 second=1028 amount=-2 +kerning first=258 second=1029 amount=-1 +kerning first=258 second=1032 amount=-1 +kerning first=258 second=1035 amount=-5 +kerning first=258 second=1038 amount=-2 +kerning first=258 second=1054 amount=-2 +kerning first=258 second=1057 amount=-2 +kerning first=258 second=1058 amount=-5 +kerning first=258 second=1059 amount=-2 +kerning first=258 second=1063 amount=-3 +kerning first=258 second=1066 amount=-5 +kerning first=258 second=1069 amount=-1 +kerning first=258 second=1072 amount=-1 +kerning first=258 second=1077 amount=-1 +kerning first=258 second=1079 amount=-1 +kerning first=258 second=1086 amount=-1 +kerning first=258 second=1089 amount=-1 +kerning first=258 second=1090 amount=-3 +kerning first=258 second=1091 amount=-1 +kerning first=258 second=1092 amount=-1 +kerning first=258 second=1098 amount=-3 +kerning first=258 second=1101 amount=-1 +kerning first=258 second=1104 amount=-1 +kerning first=258 second=1105 amount=-1 +kerning first=258 second=1108 amount=-1 +kerning first=258 second=1109 amount=-1 +kerning first=258 second=1112 amount=1 +kerning first=258 second=1118 amount=-1 +kerning first=258 second=1176 amount=-1 +kerning first=258 second=1177 amount=-1 +kerning first=258 second=1184 amount=-5 +kerning first=258 second=1185 amount=-3 +kerning first=258 second=1194 amount=-2 +kerning first=258 second=1195 amount=-1 +kerning first=258 second=1198 amount=-5 +kerning first=258 second=1199 amount=-4 +kerning first=258 second=1240 amount=-2 +kerning first=258 second=1241 amount=-1 +kerning first=258 second=1256 amount=-2 +kerning first=258 second=1257 amount=-1 +kerning first=258 second=1262 amount=-2 +kerning first=258 second=1263 amount=-1 +kerning first=258 second=8211 amount=-2 +kerning first=258 second=8212 amount=-2 +kerning first=258 second=8216 amount=-3 +kerning first=258 second=8217 amount=-3 +kerning first=258 second=8220 amount=-3 +kerning first=258 second=8221 amount=-3 +kerning first=258 second=8249 amount=-3 +kerning first=258 second=8250 amount=-1 +kerning first=259 second=34 amount=-1 +kerning first=259 second=39 amount=-1 +kerning first=259 second=63 amount=-2 +kerning first=259 second=102 amount=-1 +kerning first=259 second=106 amount=1 +kerning first=259 second=118 amount=-1 +kerning first=259 second=119 amount=-1 +kerning first=259 second=373 amount=-1 +kerning first=259 second=947 amount=-1 +kerning first=259 second=957 amount=-1 +kerning first=259 second=964 amount=-1 +kerning first=259 second=1090 amount=-1 +kerning first=259 second=1098 amount=-1 +kerning first=259 second=1112 amount=1 +kerning first=259 second=1185 amount=-1 +kerning first=259 second=1199 amount=-1 +kerning first=259 second=8216 amount=-1 +kerning first=259 second=8217 amount=-1 +kerning first=259 second=8220 amount=-1 +kerning first=259 second=8221 amount=-1 +kerning first=260 second=34 amount=-3 +kerning first=260 second=38 amount=-1 +kerning first=260 second=39 amount=-3 +kerning first=260 second=45 amount=-2 +kerning first=260 second=63 amount=-5 +kerning first=260 second=67 amount=-2 +kerning first=260 second=71 amount=-2 +kerning first=260 second=74 amount=-1 +kerning first=260 second=79 amount=-2 +kerning first=260 second=81 amount=-2 +kerning first=260 second=83 amount=-1 +kerning first=260 second=84 amount=-5 kerning first=260 second=85 amount=-2 -kerning first=380 second=235 amount=-1 -kerning first=170 second=335 amount=-1 -kerning first=174 second=97 amount=-1 -kerning first=49 second=1108 amount=-1 -kerning first=52 second=347 amount=-1 -kerning first=195 second=259 amount=-1 -kerning first=198 second=34 amount=-3 -kerning first=72 second=965 amount=-1 -kerning first=218 second=196 amount=-2 -kerning first=330 second=8250 amount=-1 -kerning first=1170 second=1184 amount=-5 -kerning first=238 second=336 amount=-2 -kerning first=361 second=248 amount=-1 -kerning first=956 second=171 amount=-3 -kerning first=972 second=8217 amount=-1 -kerning first=175 second=275 amount=-1 -kerning first=8226 second=355 amount=-1 -kerning first=56 second=289 amount=-1 -kerning first=314 second=337 amount=-1 -kerning first=317 second=99 amount=-1 -kerning first=79 second=221 amount=-3 -kerning first=96 second=1177 amount=-1 -kerning first=34 second=1051 amount=-3 -kerning first=1037 second=250 amount=-1 -kerning first=60 second=234 amount=-1 -kerning first=1071 second=1241 amount=-1 -kerning first=200 second=364 amount=-2 -kerning first=318 second=277 amount=-1 -kerning first=315 second=968 amount=-1 -kerning first=8365 second=227 amount=-1 -kerning first=80 second=376 amount=-2 -kerning first=223 second=291 amount=-1 -kerning first=926 second=1098 amount=-3 -kerning first=934 second=339 amount=-1 -kerning first=100 second=1059 amount=-2 -kerning first=369 second=113 amount=-1 -kerning first=963 second=263 amount=-1 -kerning first=126 second=235 amount=-1 -kerning first=198 second=8216 amount=-3 -kerning first=8363 second=1256 amount=-2 -kerning first=78 second=8250 amount=-1 -kerning first=1117 second=39 amount=-3 -kerning first=936 second=970 amount=-1 -kerning first=107 second=248 amount=-2 -kerning first=250 second=171 amount=-3 -kerning first=967 second=213 amount=-2 -kerning first=45 second=197 amount=-2 -kerning first=1046 second=355 amount=-1 -kerning first=1049 second=115 amount=-1 -kerning first=188 second=87 amount=-5 -kerning first=65 second=337 amount=-1 -kerning first=205 second=940 amount=-1 -kerning first=900 second=1038 amount=-2 -kerning first=88 second=261 amount=-1 -kerning first=1118 second=214 amount=-2 -kerning first=343 second=8218 amount=-3 -kerning first=1210 second=116 amount=-1 -kerning first=248 second=1078 amount=-2 -kerning first=968 second=368 amount=-2 -kerning first=164 second=338 amount=-2 -kerning first=167 second=100 amount=-1 -kerning first=274 second=941 amount=-1 -kerning first=189 second=262 amount=-2 -kerning first=301 second=1241 amount=-1 -kerning first=304 second=187 amount=-1 -kerning first=69 second=277 amount=-1 -kerning first=1087 second=227 amount=-1 -kerning first=92 second=211 amount=-2 -kerning first=1119 second=369 amount=-1 -kerning first=229 second=1098 amount=-1 -kerning first=255 second=263 amount=-1 -kerning first=258 second=38 amount=-1 -kerning first=966 second=8221 amount=-1 -kerning first=8222 second=118 amount=-2 -kerning first=1059 second=916 amount=-2 -kerning first=1064 second=240 amount=-1 -kerning first=193 second=212 amount=-2 -kerning first=310 second=102 amount=-2 -kerning first=73 second=224 amount=-1 -kerning first=1084 second=1256 amount=-2 -kerning first=213 second=354 amount=-2 -kerning first=337 second=39 amount=-1 -kerning first=93 second=366 amount=-2 -kerning first=1176 second=79 amount=-2 -kerning first=236 second=279 amount=-1 -kerning first=1220 second=920 amount=-2 -kerning first=376 second=1100 amount=-3 -kerning first=1027 second=253 amount=-1 -kerning first=172 second=225 amount=-1 -kerning first=282 second=355 amount=-1 -kerning first=287 second=115 amount=-1 -kerning first=191 second=1185 amount=-3 -kerning first=194 second=367 amount=-1 -kerning first=214 second=1038 amount=-2 -kerning first=338 second=214 amount=-2 -kerning first=1174 second=945 amount=-1 -kerning first=240 second=226 amount=-1 -kerning first=363 second=116 amount=-1 -kerning first=955 second=268 amount=-2 +kerning first=260 second=86 amount=-6 +kerning first=260 second=87 amount=-5 +kerning first=260 second=89 amount=-5 +kerning first=260 second=97 amount=-1 +kerning first=260 second=99 amount=-1 +kerning first=260 second=100 amount=-1 +kerning first=260 second=101 amount=-1 +kerning first=260 second=102 amount=-2 +kerning first=260 second=103 amount=-1 +kerning first=260 second=106 amount=1 +kerning first=260 second=111 amount=-1 +kerning first=260 second=113 amount=-1 +kerning first=260 second=115 amount=-1 +kerning first=260 second=116 amount=-1 +kerning first=260 second=117 amount=-1 +kerning first=260 second=118 amount=-4 +kerning first=260 second=119 amount=-4 +kerning first=260 second=121 amount=-1 +kerning first=260 second=171 amount=-3 +kerning first=260 second=173 amount=-2 +kerning first=260 second=187 amount=-1 +kerning first=260 second=199 amount=-2 +kerning first=260 second=210 amount=-2 +kerning first=260 second=211 amount=-2 +kerning first=260 second=212 amount=-2 +kerning first=260 second=213 amount=-2 +kerning first=260 second=214 amount=-2 +kerning first=260 second=216 amount=-2 +kerning first=260 second=217 amount=-2 +kerning first=260 second=218 amount=-2 +kerning first=260 second=219 amount=-2 +kerning first=260 second=220 amount=-2 +kerning first=260 second=221 amount=-5 +kerning first=260 second=224 amount=-1 +kerning first=260 second=225 amount=-1 +kerning first=260 second=226 amount=-1 +kerning first=260 second=227 amount=-1 +kerning first=260 second=228 amount=-1 +kerning first=260 second=229 amount=-1 +kerning first=260 second=230 amount=-1 +kerning first=260 second=231 amount=-1 +kerning first=260 second=232 amount=-1 +kerning first=260 second=233 amount=-1 +kerning first=260 second=234 amount=-1 +kerning first=260 second=235 amount=-1 +kerning first=260 second=240 amount=-1 +kerning first=260 second=242 amount=-1 +kerning first=260 second=243 amount=-1 +kerning first=260 second=244 amount=-1 +kerning first=260 second=245 amount=-1 +kerning first=260 second=246 amount=-1 +kerning first=260 second=248 amount=-1 +kerning first=260 second=249 amount=-1 +kerning first=260 second=250 amount=-1 +kerning first=260 second=251 amount=-1 +kerning first=260 second=252 amount=-1 +kerning first=260 second=253 amount=-1 +kerning first=260 second=257 amount=-1 +kerning first=260 second=259 amount=-1 +kerning first=260 second=261 amount=-1 +kerning first=260 second=262 amount=-2 +kerning first=260 second=263 amount=-1 +kerning first=260 second=266 amount=-2 +kerning first=260 second=267 amount=-1 +kerning first=260 second=268 amount=-2 +kerning first=260 second=269 amount=-1 +kerning first=260 second=271 amount=-1 +kerning first=260 second=273 amount=-1 +kerning first=260 second=275 amount=-1 +kerning first=260 second=277 amount=-1 +kerning first=260 second=279 amount=-1 +kerning first=260 second=281 amount=-1 +kerning first=260 second=283 amount=-1 +kerning first=260 second=286 amount=-2 +kerning first=260 second=287 amount=-1 +kerning first=260 second=288 amount=-2 +kerning first=260 second=289 amount=-1 +kerning first=260 second=290 amount=-2 +kerning first=260 second=291 amount=-1 +kerning first=260 second=332 amount=-2 +kerning first=260 second=333 amount=-1 +kerning first=260 second=334 amount=-2 +kerning first=260 second=335 amount=-1 +kerning first=260 second=336 amount=-2 +kerning first=260 second=337 amount=-1 +kerning first=260 second=338 amount=-2 +kerning first=260 second=339 amount=-1 +kerning first=260 second=346 amount=-1 +kerning first=260 second=347 amount=-1 +kerning first=260 second=350 amount=-1 +kerning first=260 second=351 amount=-1 +kerning first=260 second=352 amount=-1 +kerning first=260 second=353 amount=-1 +kerning first=260 second=354 amount=-5 +kerning first=260 second=355 amount=-1 +kerning first=260 second=356 amount=-5 +kerning first=260 second=357 amount=-1 +kerning first=260 second=359 amount=-1 +kerning first=260 second=360 amount=-2 +kerning first=260 second=361 amount=-1 +kerning first=260 second=362 amount=-2 +kerning first=260 second=363 amount=-1 +kerning first=260 second=364 amount=-2 +kerning first=260 second=365 amount=-1 +kerning first=260 second=366 amount=-2 +kerning first=260 second=367 amount=-1 kerning first=260 second=368 amount=-2 -kerning first=35 second=250 amount=-1 -kerning first=380 second=972 amount=-1 -kerning first=8240 second=243 amount=-1 -kerning first=55 second=1241 amount=-1 -kerning first=58 second=187 amount=-1 -kerning first=192 second=8220 amount=-3 -kerning first=316 second=227 amount=-1 -kerning first=75 second=1079 amount=-1 -kerning first=81 second=89 amount=-3 -kerning first=258 second=8221 amount=-3 -kerning first=1039 second=118 amount=-4 -kerning first=294 second=240 amount=-1 -kerning first=1074 second=283 amount=-1 -kerning first=202 second=252 amount=-1 -kerning first=314 second=1256 amount=-2 -kerning first=8364 second=333 amount=-1 -kerning first=900 second=67 amount=-2 -kerning first=337 second=8222 amount=-1 -kerning first=1195 second=119 amount=-1 -kerning first=365 second=920 amount=-2 -kerning first=958 second=1195 amount=-1 -kerning first=962 second=371 amount=-1 -kerning first=161 second=103 amount=-1 -kerning first=40 second=355 amount=-1 -kerning first=43 second=115 amount=-1 -kerning first=183 second=267 amount=-1 -kerning first=8370 second=273 amount=-1 -kerning first=8377 second=45 amount=-2 -kerning first=86 second=214 amount=-2 -kerning first=1103 second=947 amount=-4 -kerning first=901 second=242 amount=-1 -kerning first=8365 second=964 amount=-3 -kerning first=223 second=1101 amount=-1 -kerning first=934 second=1262 amount=-2 -kerning first=249 second=268 amount=-2 -kerning first=963 second=1069 amount=-1 -kerning first=126 second=972 amount=-1 -kerning first=162 second=281 amount=-1 -kerning first=47 second=65 amount=-5 -kerning first=1048 second=243 amount=-1 -kerning first=207 second=357 amount=-1 -kerning first=327 second=269 amount=-1 -kerning first=8378 second=220 amount=-2 -kerning first=84 second=1187 amount=-2 -kerning first=87 second=369 amount=-2 -kerning first=944 second=332 amount=-2 -kerning first=1207 second=244 amount=-1 -kerning first=253 second=216 amount=-2 -kerning first=166 second=228 amount=-1 -kerning first=279 second=118 amount=-1 -kerning first=48 second=240 amount=-1 -kerning first=45 second=916 amount=-2 -kerning first=185 second=1194 amount=-2 -kerning first=188 second=370 amount=-2 -kerning first=303 second=283 amount=-1 -kerning first=65 second=1256 amount=-2 -kerning first=1085 second=333 amount=-1 -kerning first=214 second=67 amount=-2 -kerning first=208 second=1044 amount=-1 -kerning first=85 second=8222 amount=-1 -kerning first=94 second=79 amount=-2 -kerning first=1118 second=949 amount=-1 -kerning first=357 second=119 amount=-4 -kerning first=251 second=1195 amount=-1 -kerning first=254 second=371 amount=-1 -kerning first=377 second=286 amount=-1 -kerning first=164 second=1257 amount=-1 -kerning first=8221 second=246 amount=-1 -kerning first=1063 second=346 amount=-1 -kerning first=1095 second=273 amount=-1 -kerning first=215 second=242 amount=-1 -kerning first=1087 second=964 amount=-3 -kerning first=212 second=923 amount=-2 -kerning first=330 second=947 amount=-4 -kerning first=8377 second=8249 amount=-3 -kerning first=912 second=287 amount=-1 -kerning first=92 second=945 amount=-1 -kerning first=1219 second=1108 amount=-1 -kerning first=1224 second=347 amount=-1 -kerning first=255 second=1069 amount=-1 -kerning first=381 second=231 amount=-1 -kerning first=1026 second=361 amount=-1 -kerning first=972 second=1175 amount=-2 -kerning first=1064 second=1028 amount=-2 -kerning first=1067 second=288 amount=-2 -kerning first=305 second=1263 amount=-1 -kerning first=76 second=269 amount=-1 -kerning first=1099 second=220 amount=-2 -kerning first=923 second=232 amount=-1 -kerning first=1171 second=1176 amount=-1 -kerning first=1176 second=362 amount=-2 -kerning first=239 second=332 amount=-2 -kerning first=1256 second=1033 amount=-1 -kerning first=1263 second=289 amount=-1 +kerning first=260 second=369 amount=-1 +kerning first=260 second=370 amount=-2 +kerning first=260 second=371 amount=-1 +kerning first=260 second=372 amount=-5 +kerning first=260 second=373 amount=-4 +kerning first=260 second=374 amount=-5 +kerning first=260 second=375 amount=-1 +kerning first=260 second=376 amount=-5 +kerning first=260 second=920 amount=-2 +kerning first=260 second=927 amount=-2 +kerning first=260 second=932 amount=-5 +kerning first=260 second=933 amount=-5 +kerning first=260 second=936 amount=-3 +kerning first=260 second=939 amount=-5 +kerning first=260 second=940 amount=-1 +kerning first=260 second=941 amount=-1 +kerning first=260 second=943 amount=-1 +kerning first=260 second=945 amount=-1 +kerning first=260 second=947 amount=-4 +kerning first=260 second=949 amount=-1 +kerning first=260 second=950 amount=-1 +kerning first=260 second=953 amount=-1 +kerning first=260 second=957 amount=-4 +kerning first=260 second=959 amount=-1 +kerning first=260 second=962 amount=-1 +kerning first=260 second=963 amount=-1 +kerning first=260 second=964 amount=-3 +kerning first=260 second=965 amount=-1 +kerning first=260 second=966 amount=-1 +kerning first=260 second=968 amount=-1 +kerning first=260 second=970 amount=-1 +kerning first=260 second=972 amount=-1 +kerning first=260 second=973 amount=-1 +kerning first=260 second=1026 amount=-5 +kerning first=260 second=1028 amount=-2 +kerning first=260 second=1029 amount=-1 +kerning first=260 second=1032 amount=-1 +kerning first=260 second=1035 amount=-5 +kerning first=260 second=1038 amount=-2 +kerning first=260 second=1054 amount=-2 +kerning first=260 second=1057 amount=-2 +kerning first=260 second=1058 amount=-5 +kerning first=260 second=1059 amount=-2 +kerning first=260 second=1063 amount=-3 +kerning first=260 second=1066 amount=-5 +kerning first=260 second=1069 amount=-1 +kerning first=260 second=1072 amount=-1 +kerning first=260 second=1077 amount=-1 +kerning first=260 second=1079 amount=-1 +kerning first=260 second=1086 amount=-1 +kerning first=260 second=1089 amount=-1 +kerning first=260 second=1090 amount=-3 +kerning first=260 second=1091 amount=-1 +kerning first=260 second=1092 amount=-1 +kerning first=260 second=1098 amount=-3 +kerning first=260 second=1101 amount=-1 +kerning first=260 second=1104 amount=-1 +kerning first=260 second=1105 amount=-1 +kerning first=260 second=1108 amount=-1 +kerning first=260 second=1109 amount=-1 +kerning first=260 second=1112 amount=1 +kerning first=260 second=1118 amount=-1 +kerning first=260 second=1176 amount=-1 +kerning first=260 second=1177 amount=-1 +kerning first=260 second=1184 amount=-5 +kerning first=260 second=1185 amount=-3 +kerning first=260 second=1194 amount=-2 +kerning first=260 second=1195 amount=-1 +kerning first=260 second=1198 amount=-5 +kerning first=260 second=1199 amount=-4 +kerning first=260 second=1240 amount=-2 +kerning first=260 second=1241 amount=-1 +kerning first=260 second=1256 amount=-2 +kerning first=260 second=1257 amount=-1 +kerning first=260 second=1262 amount=-2 +kerning first=260 second=1263 amount=-1 +kerning first=260 second=8211 amount=-2 +kerning first=260 second=8212 amount=-2 +kerning first=260 second=8216 amount=-3 +kerning first=260 second=8217 amount=-3 +kerning first=260 second=8220 amount=-3 +kerning first=260 second=8221 amount=-3 +kerning first=260 second=8249 amount=-3 +kerning first=260 second=8250 amount=-1 +kerning first=261 second=34 amount=-1 +kerning first=261 second=39 amount=-1 +kerning first=261 second=63 amount=-2 +kerning first=261 second=102 amount=-1 +kerning first=261 second=106 amount=1 +kerning first=261 second=118 amount=-1 +kerning first=261 second=119 amount=-1 +kerning first=261 second=373 amount=-1 +kerning first=261 second=947 amount=-1 +kerning first=261 second=957 amount=-1 +kerning first=261 second=964 amount=-1 +kerning first=261 second=1090 amount=-1 +kerning first=261 second=1098 amount=-1 +kerning first=261 second=1112 amount=1 +kerning first=261 second=1185 amount=-1 +kerning first=261 second=1199 amount=-1 +kerning first=261 second=8216 amount=-1 +kerning first=261 second=8217 amount=-1 +kerning first=261 second=8220 amount=-1 +kerning first=261 second=8221 amount=-1 +kerning first=262 second=44 amount=-1 +kerning first=262 second=45 amount=-1 +kerning first=262 second=46 amount=-1 +kerning first=262 second=47 amount=-1 +kerning first=262 second=65 amount=-1 +kerning first=262 second=84 amount=-1 +kerning first=262 second=86 amount=-1 +kerning first=262 second=87 amount=-1 +kerning first=262 second=88 amount=-2 +kerning first=262 second=89 amount=-2 +kerning first=262 second=90 amount=-1 +kerning first=262 second=106 amount=1 +kerning first=262 second=171 amount=-1 +kerning first=262 second=173 amount=-1 +kerning first=262 second=193 amount=-1 +kerning first=262 second=194 amount=-1 +kerning first=262 second=196 amount=-1 +kerning first=262 second=197 amount=-1 +kerning first=262 second=198 amount=-1 +kerning first=262 second=221 amount=-2 kerning first=262 second=256 amount=-1 -kerning first=37 second=118 amount=-4 -kerning first=1037 second=71 amount=-2 -kerning first=172 second=962 amount=-1 -kerning first=57 second=283 amount=-1 -kerning first=1071 second=233 amount=-1 -kerning first=315 second=333 amount=-1 -kerning first=80 second=217 amount=-2 -kerning first=338 second=949 amount=-1 -kerning first=341 second=257 amount=-1 -kerning first=100 second=359 amount=-1 -kerning first=103 second=119 amount=-4 -kerning first=1174 second=8211 amount=-2 -kerning first=240 second=963 amount=-1 -kerning first=246 second=44 amount=-1 -kerning first=366 second=194 amount=-2 -kerning first=963 second=84 amount=-5 -kerning first=123 second=286 amount=-2 -kerning first=180 second=218 amount=-2 -kerning first=291 second=346 amount=-1 -kerning first=8240 second=1035 amount=-5 -kerning first=8260 second=291 amount=-1 -kerning first=61 second=230 amount=-1 -kerning first=201 second=360 amount=-2 -kerning first=316 second=964 amount=-3 -kerning first=321 second=273 amount=-1 -kerning first=78 second=947 amount=-4 -kerning first=81 second=372 amount=-2 -kerning first=936 second=335 amount=-1 -kerning first=247 second=219 amount=-2 -kerning first=367 second=347 amount=-1 -kerning first=964 second=259 amount=-1 -kerning first=967 second=34 amount=-3 -kerning first=160 second=231 amount=-1 -kerning first=273 second=121 amount=-1 -kerning first=42 second=243 amount=-1 -kerning first=182 second=373 amount=-4 -kerning first=294 second=1028 amount=-2 -kerning first=297 second=288 amount=-2 -kerning first=59 second=1263 amount=-1 -kerning first=325 second=220 amount=-2 -kerning first=900 second=350 amount=-1 -kerning first=942 second=275 amount=-1 -kerning first=108 second=244 amount=-1 -kerning first=245 second=1203 amount=-2 -kerning first=371 second=289 amount=-1 -kerning first=368 second=1033 amount=-1 -kerning first=1051 second=111 amount=-1 -kerning first=189 second=83 amount=-1 -kerning first=301 second=233 amount=-1 -kerning first=209 second=245 amount=-1 -kerning first=904 second=290 amount=-2 -kerning first=86 second=949 amount=-1 -kerning first=89 second=257 amount=-4 -kerning first=1119 second=210 amount=-2 -kerning first=344 second=8211 amount=-1 -kerning first=255 second=84 amount=-5 -kerning first=375 second=234 amount=-1 -kerning first=165 second=334 amount=-2 -kerning first=162 second=1090 amount=-3 -kerning first=278 second=246 amount=-1 -kerning first=8218 second=199 amount=-1 -kerning first=47 second=346 amount=-1 -kerning first=1048 second=1035 amount=-5 -kerning first=70 second=273 amount=-1 -kerning first=73 second=45 amount=-2 -kerning first=910 second=235 amount=-4 -kerning first=1168 second=365 amount=-1 -kerning first=236 second=97 amount=-1 -kerning first=113 second=347 amount=-1 -kerning first=256 second=259 amount=-1 -kerning first=259 second=34 amount=-1 -kerning first=967 second=8216 amount=-3 -kerning first=166 second=965 amount=-1 -kerning first=48 second=1028 amount=-2 -kerning first=51 second=288 amount=-2 -kerning first=306 second=336 amount=-2 -kerning first=74 second=220 amount=-2 -kerning first=214 second=350 amount=-1 -kerning first=94 second=362 amount=-2 -kerning first=1118 second=8217 amount=-3 -kerning first=91 second=1176 amount=-1 -kerning first=237 second=275 amount=-1 -kerning first=360 second=197 amount=-2 -kerning first=955 second=87 amount=-5 -kerning first=117 second=289 amount=-1 -kerning first=380 second=337 amount=-1 -kerning first=35 second=71 amount=-2 -kerning first=174 second=221 amount=-5 -kerning first=55 second=233 amount=-1 -kerning first=195 second=363 amount=-1 -kerning first=192 second=1177 amount=-1 -kerning first=75 second=375 amount=-2 -kerning first=92 second=8211 amount=-2 -kerning first=928 second=100 amount=-1 -kerning first=1175 second=941 amount=-1 -kerning first=361 second=352 amount=-1 -kerning first=956 second=262 amount=-2 -kerning first=121 second=234 amount=-1 -kerning first=1299 second=187 amount=-1 -kerning first=36 second=246 amount=-1 -kerning first=1036 second=199 amount=-3 -kerning first=175 second=376 amount=-5 -kerning first=289 second=291 amount=-1 -kerning first=286 second=1035 amount=-1 -kerning first=1067 second=1098 amount=-3 -kerning first=193 second=8212 amount=-2 -kerning first=196 second=1059 amount=-2 -kerning first=1074 second=101 amount=-1 -kerning first=73 second=8249 amount=-3 -kerning first=962 second=212 amount=-2 -kerning first=259 second=8216 amount=-1 -kerning first=1037 second=354 amount=-5 -kerning first=172 second=8250 amount=-1 -kerning first=60 second=336 amount=-2 -kerning first=1071 second=970 amount=-1 -kerning first=1075 second=279 amount=-1 -kerning first=203 second=248 amount=-1 -kerning first=323 second=171 amount=-3 -kerning first=83 second=260 amount=-1 -kerning first=338 second=8217 amount=-3 -kerning first=947 second=115 amount=-1 -kerning first=243 second=1076 amount=-1 -kerning first=249 second=87 amount=-5 -kerning first=960 second=1185 amount=-3 -kerning first=963 second=367 amount=-1 -kerning first=126 second=337 amount=-1 -kerning first=162 second=99 amount=-1 -kerning first=271 second=249 amount=-1 -kerning first=41 second=351 amount=-1 -kerning first=184 second=261 amount=-1 -kerning first=180 second=953 amount=-1 -kerning first=8260 second=1101 amount=-1 -kerning first=1080 second=226 amount=-1 -kerning first=8372 second=268 amount=-2 -kerning first=87 second=210 amount=-2 -kerning first=345 second=941 amount=-1 -kerning first=250 second=262 amount=-2 -kerning first=961 second=8220 amount=-1 -kerning first=160 second=968 amount=-1 -kerning first=163 second=277 amount=-1 -kerning first=276 second=199 amount=-2 -kerning first=42 second=1035 amount=-5 -kerning first=188 second=211 amount=-2 -kerning first=300 second=339 amount=-1 -kerning first=303 second=101 amount=-1 -kerning first=297 second=1098 amount=-3 -kerning first=88 second=365 amount=-1 -kerning first=1210 second=240 amount=-1 -kerning first=254 second=212 amount=-2 -kerning first=968 second=943 amount=-1 -kerning first=971 second=252 amount=-1 -kerning first=167 second=224 amount=-1 -kerning first=274 second=1118 amount=-1 -kerning first=8211 second=1044 amount=-4 -kerning first=186 second=1184 amount=-5 -kerning first=189 second=366 amount=-2 -kerning first=304 second=279 amount=-1 -kerning first=301 second=970 amount=-1 -kerning first=72 second=171 amount=-3 -kerning first=8377 second=1195 amount=-1 -kerning first=912 second=103 amount=-1 -kerning first=86 second=8217 amount=-3 -kerning first=1170 second=253 amount=-1 -kerning first=358 second=115 amount=-1 -kerning first=950 second=267 amount=-1 -kerning first=255 second=367 amount=-1 -kerning first=252 second=1185 amount=-3 -kerning first=278 second=1038 amount=-2 -kerning first=310 second=226 amount=-1 -kerning first=1096 second=268 amount=-2 -kerning first=915 second=281 amount=-1 -kerning first=93 second=941 amount=-1 -kerning first=96 second=250 amount=-1 -kerning first=910 second=972 amount=-4 -kerning first=362 second=65 amount=-2 -kerning first=253 second=8220 amount=-3 -kerning first=1027 second=357 amount=-1 -kerning first=169 second=1079 amount=-1 -kerning first=176 second=89 amount=-5 -kerning first=51 second=1098 amount=-3 -kerning first=54 second=339 amount=-1 -kerning first=57 second=101 amount=-1 -kerning first=197 second=251 amount=-1 -kerning first=77 second=263 amount=-1 -kerning first=926 second=228 amount=-1 -kerning first=1184 second=118 amount=-3 -kerning first=363 second=240 amount=-1 -kerning first=360 second=916 amount=-2 -kerning first=952 second=1194 amount=-2 -kerning first=955 second=370 amount=-2 -kerning first=1298 second=283 amount=-1 -kerning first=260 second=943 amount=-1 -kerning first=35 second=354 amount=-5 -kerning first=1028 second=1044 amount=-1 -kerning first=177 second=266 amount=-2 -kerning first=180 second=39 amount=-3 -kerning first=58 second=279 amount=-1 -kerning first=55 second=970 amount=-1 -kerning first=1073 second=229 amount=-1 -kerning first=8363 second=271 amount=-1 -kerning first=221 second=341 amount=-3 -kerning first=36 second=1038 amount=-2 -kerning first=1039 second=242 amount=-1 -kerning first=182 second=214 amount=-2 -kerning first=289 second=1101 amount=-1 -kerning first=62 second=226 amount=-1 -kerning first=1074 second=1240 amount=-2 -kerning first=202 second=356 amount=-5 -kerning first=205 second=116 amount=-1 -kerning first=322 second=268 amount=-2 -kerning first=8369 second=219 amount=-2 -kerning first=161 second=227 amount=-1 -kerning first=274 second=117 amount=-1 -kerning first=183 second=369 amount=-1 -kerning first=8370 second=374 amount=-5 -kerning first=80 second=8221 amount=-3 -kerning first=904 second=106 amount=1 -kerning first=83 second=1066 amount=-1 -kerning first=352 second=118 amount=-1 -kerning first=249 second=370 amount=-2 -kerning first=372 second=283 amount=-3 -kerning first=126 second=1256 amount=-2 -kerning first=278 second=67 amount=-2 -kerning first=190 second=79 amount=-2 -kerning first=302 second=229 amount=-1 -kerning first=1080 second=963 amount=-1 -kerning first=1084 second=271 amount=-1 -kerning first=207 second=920 amount=-2 -kerning first=1090 second=44 amount=-3 -kerning first=327 second=371 amount=-1 -kerning first=902 second=1026 amount=-5 -kerning first=905 second=286 amount=-2 -kerning first=350 second=1046 amount=-1 -kerning first=948 second=218 amount=-2 -kerning first=376 second=230 amount=-4 -kerning first=188 second=945 amount=-1 -kerning first=303 second=1240 amount=-2 -kerning first=300 second=1262 amount=-2 -kerning first=357 second=243 amount=-1 -kerning first=949 second=373 amount=-1 -kerning first=1210 second=1028 amount=-2 -kerning first=1223 second=288 amount=-2 -kerning first=374 second=1263 amount=-2 -kerning first=170 second=269 amount=-1 -kerning first=49 second=973 amount=-1 -kerning first=55 second=54 amount=-1 -kerning first=75 second=216 amount=-3 -kerning first=1095 second=374 amount=-5 -kerning first=336 second=256 amount=-2 -kerning first=908 second=1298 amount=-1 -kerning first=98 second=118 amount=-1 -kerning first=1178 second=71 amount=-1 -kerning first=956 second=83 amount=-1 -kerning first=118 second=283 amount=-1 -kerning first=381 second=333 amount=-1 -kerning first=36 second=67 amount=-2 -kerning first=175 second=217 amount=-2 -kerning first=8226 second=290 amount=-2 -kerning first=56 second=229 amount=-1 -kerning first=196 second=359 amount=-1 -kerning first=314 second=271 amount=-1 -kerning first=310 second=963 amount=-2 -kerning first=73 second=1195 amount=-1 -kerning first=76 second=371 amount=-1 -kerning first=216 second=1026 amount=-2 -kerning first=923 second=334 amount=-2 -kerning first=915 second=1090 amount=-3 -kerning first=1179 second=246 amount=-1 +kerning first=262 second=258 amount=-1 +kerning first=262 second=260 amount=-1 +kerning first=262 second=354 amount=-1 +kerning first=262 second=356 amount=-1 +kerning first=262 second=372 amount=-1 +kerning first=262 second=374 amount=-2 +kerning first=262 second=376 amount=-2 +kerning first=262 second=377 amount=-1 +kerning first=262 second=379 amount=-1 +kerning first=262 second=381 amount=-1 +kerning first=262 second=913 amount=-1 +kerning first=262 second=916 amount=-1 +kerning first=262 second=918 amount=-1 +kerning first=262 second=923 amount=-1 +kerning first=262 second=932 amount=-1 +kerning first=262 second=933 amount=-2 +kerning first=262 second=935 amount=-2 +kerning first=262 second=939 amount=-2 +kerning first=262 second=1026 amount=-1 +kerning first=262 second=1033 amount=-1 +kerning first=262 second=1035 amount=-1 +kerning first=262 second=1040 amount=-1 +kerning first=262 second=1044 amount=-1 +kerning first=262 second=1046 amount=-2 +kerning first=262 second=1051 amount=-1 +kerning first=262 second=1058 amount=-1 +kerning first=262 second=1061 amount=-2 +kerning first=262 second=1066 amount=-1 +kerning first=262 second=1069 amount=1 +kerning first=262 second=1112 amount=1 +kerning first=262 second=1174 amount=-2 +kerning first=262 second=1176 amount=1 +kerning first=262 second=1184 amount=-1 +kerning first=262 second=1198 amount=-2 +kerning first=262 second=1202 amount=-2 +kerning first=262 second=1298 amount=-1 +kerning first=262 second=8211 amount=-1 +kerning first=262 second=8212 amount=-1 +kerning first=262 second=8218 amount=-1 +kerning first=262 second=8222 amount=-1 +kerning first=262 second=8230 amount=-1 +kerning first=262 second=8249 amount=-1 +kerning first=263 second=34 amount=-1 +kerning first=263 second=39 amount=-1 +kerning first=263 second=63 amount=-1 +kerning first=263 second=118 amount=-1 +kerning first=263 second=119 amount=-1 +kerning first=263 second=120 amount=-1 +kerning first=263 second=373 amount=-1 +kerning first=263 second=947 amount=-1 +kerning first=263 second=955 amount=-1 +kerning first=263 second=957 amount=-1 +kerning first=263 second=1078 amount=-1 +kerning first=263 second=1093 amount=-1 +kerning first=263 second=1175 amount=-1 +kerning first=263 second=1199 amount=-1 +kerning first=263 second=1203 amount=-1 +kerning first=263 second=8216 amount=-1 +kerning first=263 second=8217 amount=-1 +kerning first=263 second=8220 amount=-1 +kerning first=263 second=8221 amount=-1 +kerning first=266 second=44 amount=-1 +kerning first=266 second=45 amount=-1 +kerning first=266 second=46 amount=-1 +kerning first=266 second=47 amount=-1 +kerning first=266 second=65 amount=-1 +kerning first=266 second=84 amount=-1 +kerning first=266 second=86 amount=-1 +kerning first=266 second=87 amount=-1 +kerning first=266 second=88 amount=-2 +kerning first=266 second=89 amount=-2 +kerning first=266 second=90 amount=-1 +kerning first=266 second=106 amount=1 +kerning first=266 second=171 amount=-1 +kerning first=266 second=173 amount=-1 +kerning first=266 second=193 amount=-1 +kerning first=266 second=194 amount=-1 +kerning first=266 second=196 amount=-1 +kerning first=266 second=197 amount=-1 +kerning first=266 second=198 amount=-1 +kerning first=266 second=221 amount=-2 +kerning first=266 second=256 amount=-1 +kerning first=266 second=258 amount=-1 +kerning first=266 second=260 amount=-1 +kerning first=266 second=354 amount=-1 +kerning first=266 second=356 amount=-1 +kerning first=266 second=372 amount=-1 +kerning first=266 second=374 amount=-2 +kerning first=266 second=376 amount=-2 +kerning first=266 second=377 amount=-1 +kerning first=266 second=379 amount=-1 +kerning first=266 second=381 amount=-1 +kerning first=266 second=913 amount=-1 +kerning first=266 second=916 amount=-1 +kerning first=266 second=918 amount=-1 +kerning first=266 second=923 amount=-1 +kerning first=266 second=932 amount=-1 +kerning first=266 second=933 amount=-2 +kerning first=266 second=935 amount=-2 +kerning first=266 second=939 amount=-2 +kerning first=266 second=1026 amount=-1 +kerning first=266 second=1033 amount=-1 +kerning first=266 second=1035 amount=-1 +kerning first=266 second=1040 amount=-1 +kerning first=266 second=1044 amount=-1 +kerning first=266 second=1046 amount=-2 +kerning first=266 second=1051 amount=-1 +kerning first=266 second=1058 amount=-1 +kerning first=266 second=1061 amount=-2 +kerning first=266 second=1066 amount=-1 +kerning first=266 second=1069 amount=1 +kerning first=266 second=1112 amount=1 +kerning first=266 second=1174 amount=-2 +kerning first=266 second=1176 amount=1 +kerning first=266 second=1184 amount=-1 +kerning first=266 second=1198 amount=-2 +kerning first=266 second=1202 amount=-2 +kerning first=266 second=1298 amount=-1 +kerning first=266 second=8211 amount=-1 +kerning first=266 second=8212 amount=-1 +kerning first=266 second=8218 amount=-1 +kerning first=266 second=8222 amount=-1 +kerning first=266 second=8230 amount=-1 +kerning first=266 second=8249 amount=-1 +kerning first=267 second=34 amount=-1 +kerning first=267 second=39 amount=-1 +kerning first=267 second=63 amount=-1 +kerning first=267 second=118 amount=-1 +kerning first=267 second=119 amount=-1 kerning first=267 second=120 amount=-1 -kerning first=37 second=242 amount=-1 -kerning first=34 second=923 amount=-3 -kerning first=172 second=947 amount=-4 -kerning first=176 second=372 amount=-5 -kerning first=57 second=1240 amount=-2 -kerning first=54 second=1262 amount=-2 -kerning first=1071 second=335 amount=-1 -kerning first=318 second=219 amount=-2 -kerning first=77 second=1069 amount=-1 -kerning first=1103 second=259 amount=-1 -kerning first=223 second=231 amount=-1 -kerning first=1108 second=34 amount=-1 -kerning first=926 second=965 amount=-1 -kerning first=103 second=243 amount=-1 -kerning first=243 second=373 amount=-1 -kerning first=363 second=1028 amount=-2 -kerning first=296 second=232 amount=-1 -kerning first=61 second=332 amount=-2 -kerning first=1073 second=966 amount=-1 -kerning first=204 second=244 amount=-1 -kerning first=1076 second=275 amount=-1 -kerning first=321 second=374 amount=-5 -kerning first=8372 second=87 amount=-5 -kerning first=84 second=256 amount=-6 -kerning first=221 second=1298 amount=-5 -kerning first=1202 second=111 amount=-1 -kerning first=250 second=83 amount=-1 -kerning first=964 second=363 amount=-1 -kerning first=160 second=333 amount=-1 -kerning first=273 second=245 amount=-1 -kerning first=1046 second=290 amount=-3 -kerning first=182 second=949 amount=-1 -kerning first=185 second=257 amount=-1 -kerning first=62 second=963 amount=-1 -kerning first=65 second=271 amount=-1 -kerning first=68 second=44 amount=-1 -kerning first=208 second=194 amount=-2 -kerning first=903 second=234 amount=-1 -kerning first=225 second=1090 amount=-1 -kerning first=942 second=376 amount=-5 -kerning first=108 second=346 amount=-1 -kerning first=962 second=8212 amount=-2 -kerning first=965 second=1059 amount=-2 -kerning first=164 second=273 amount=-1 -kerning first=167 second=45 amount=-2 -kerning first=161 second=964 amount=-3 -kerning first=8217 second=113 amount=-1 -kerning first=46 second=287 amount=-1 -kerning first=1051 second=235 amount=-1 -kerning first=301 second=335 amount=-1 -kerning first=304 second=97 amount=-1 -kerning first=69 second=219 amount=-2 -kerning first=206 second=1108 amount=-1 -kerning first=209 second=347 amount=-1 -kerning first=330 second=259 amount=-1 -kerning first=333 second=34 amount=-1 -kerning first=86 second=1175 amount=-2 -kerning first=92 second=121 amount=-1 -kerning first=89 second=361 amount=-2 -kerning first=1108 second=8216 amount=-1 -kerning first=235 second=46 amount=-1 -kerning first=375 second=336 amount=-2 -kerning first=168 second=220 amount=-2 -kerning first=275 second=1113 amount=-1 -kerning first=278 second=350 amount=-1 -kerning first=50 second=232 amount=-1 -kerning first=190 second=362 amount=-2 -kerning first=302 second=966 amount=-1 -kerning first=305 second=275 amount=-1 -kerning first=70 second=374 amount=-5 -kerning first=1096 second=87 amount=-5 -kerning first=210 second=1033 amount=-1 -kerning first=8378 second=1185 amount=-3 -kerning first=910 second=337 amount=-4 -kerning first=915 second=99 amount=-1 -kerning first=96 second=71 amount=-2 -kerning first=1171 second=249 amount=-1 -kerning first=1168 second=940 amount=-1 -kerning first=236 second=221 amount=-5 -kerning first=356 second=351 amount=-3 -kerning first=951 second=261 amount=-1 -kerning first=948 second=953 amount=-1 -kerning first=253 second=1177 amount=-1 -kerning first=256 second=363 amount=-1 -kerning first=376 second=967 amount=-2 -kerning first=169 second=375 amount=-1 -kerning first=282 second=290 amount=-2 -kerning first=1065 second=338 amount=-1 -kerning first=188 second=8211 amount=-2 -kerning first=77 second=84 amount=-5 -kerning first=916 second=277 amount=-1 -kerning first=237 second=376 amount=-5 -kerning first=357 second=1035 amount=-5 -kerning first=955 second=211 amount=-2 -kerning first=1223 second=1098 amount=-3 -kerning first=254 second=8212 amount=-2 -kerning first=1298 second=101 amount=-1 -kerning first=1035 second=113 amount=-1 -kerning first=167 second=8249 amount=-3 -kerning first=177 second=85 amount=-2 -kerning first=55 second=335 amount=-1 -kerning first=58 second=97 amount=-1 -kerning first=78 second=259 amount=-1 -kerning first=333 second=8216 amount=-1 -kerning first=928 second=224 amount=-1 -kerning first=1178 second=354 amount=-2 -kerning first=956 second=366 amount=-2 -kerning first=121 second=336 amount=-2 -kerning first=1299 second=279 amount=-1 -kerning first=36 second=350 amount=-1 -kerning first=56 second=966 amount=-1 -kerning first=59 second=275 amount=-1 -kerning first=1074 second=225 amount=-1 -kerning first=322 second=87 amount=-5 -kerning first=8364 second=267 amount=-1 -kerning first=1099 second=1185 amount=-3 -kerning first=102 second=351 amount=-1 -kerning first=105 second=111 amount=-1 +kerning first=267 second=373 amount=-1 +kerning first=267 second=947 amount=-1 +kerning first=267 second=955 amount=-1 +kerning first=267 second=957 amount=-1 +kerning first=267 second=1078 amount=-1 +kerning first=267 second=1093 amount=-1 +kerning first=267 second=1175 amount=-1 +kerning first=267 second=1199 amount=-1 +kerning first=267 second=1203 amount=-1 +kerning first=267 second=8216 amount=-1 +kerning first=267 second=8217 amount=-1 +kerning first=267 second=8220 amount=-1 +kerning first=267 second=8221 amount=-1 +kerning first=268 second=44 amount=-1 +kerning first=268 second=45 amount=-1 +kerning first=268 second=46 amount=-1 +kerning first=268 second=47 amount=-1 +kerning first=268 second=65 amount=-1 +kerning first=268 second=84 amount=-1 +kerning first=268 second=86 amount=-1 +kerning first=268 second=87 amount=-1 +kerning first=268 second=88 amount=-2 +kerning first=268 second=89 amount=-2 +kerning first=268 second=90 amount=-1 +kerning first=268 second=106 amount=1 +kerning first=268 second=171 amount=-1 +kerning first=268 second=173 amount=-1 +kerning first=268 second=193 amount=-1 +kerning first=268 second=194 amount=-1 +kerning first=268 second=196 amount=-1 +kerning first=268 second=197 amount=-1 +kerning first=268 second=198 amount=-1 +kerning first=268 second=221 amount=-2 +kerning first=268 second=256 amount=-1 +kerning first=268 second=258 amount=-1 +kerning first=268 second=260 amount=-1 +kerning first=268 second=354 amount=-1 +kerning first=268 second=356 amount=-1 +kerning first=268 second=372 amount=-1 +kerning first=268 second=374 amount=-2 +kerning first=268 second=376 amount=-2 +kerning first=268 second=377 amount=-1 +kerning first=268 second=379 amount=-1 +kerning first=268 second=381 amount=-1 +kerning first=268 second=913 amount=-1 +kerning first=268 second=916 amount=-1 +kerning first=268 second=918 amount=-1 +kerning first=268 second=923 amount=-1 +kerning first=268 second=932 amount=-1 +kerning first=268 second=933 amount=-2 +kerning first=268 second=935 amount=-2 +kerning first=268 second=939 amount=-2 +kerning first=268 second=1026 amount=-1 +kerning first=268 second=1033 amount=-1 +kerning first=268 second=1035 amount=-1 +kerning first=268 second=1040 amount=-1 +kerning first=268 second=1044 amount=-1 +kerning first=268 second=1046 amount=-2 +kerning first=268 second=1051 amount=-1 +kerning first=268 second=1058 amount=-1 +kerning first=268 second=1061 amount=-2 +kerning first=268 second=1066 amount=-1 +kerning first=268 second=1069 amount=1 +kerning first=268 second=1112 amount=1 +kerning first=268 second=1174 amount=-2 +kerning first=268 second=1176 amount=1 +kerning first=268 second=1184 amount=-1 +kerning first=268 second=1198 amount=-2 +kerning first=268 second=1202 amount=-2 +kerning first=268 second=1298 amount=-1 +kerning first=268 second=8211 amount=-1 +kerning first=268 second=8212 amount=-1 +kerning first=268 second=8218 amount=-1 +kerning first=268 second=8222 amount=-1 +kerning first=268 second=8230 amount=-1 +kerning first=268 second=8249 amount=-1 +kerning first=269 second=34 amount=-1 +kerning first=269 second=39 amount=-1 +kerning first=269 second=63 amount=-1 +kerning first=269 second=118 amount=-1 +kerning first=269 second=119 amount=-1 +kerning first=269 second=120 amount=-1 +kerning first=269 second=373 amount=-1 +kerning first=269 second=947 amount=-1 +kerning first=269 second=955 amount=-1 +kerning first=269 second=957 amount=-1 +kerning first=269 second=1078 amount=-1 +kerning first=269 second=1093 amount=-1 +kerning first=269 second=1175 amount=-1 +kerning first=269 second=1199 amount=-1 +kerning first=269 second=1203 amount=-1 +kerning first=269 second=8216 amount=-1 +kerning first=269 second=8217 amount=-1 +kerning first=269 second=8220 amount=-1 +kerning first=269 second=8221 amount=-1 +kerning first=270 second=44 amount=-1 +kerning first=270 second=46 amount=-1 +kerning first=270 second=47 amount=-1 +kerning first=270 second=65 amount=-2 +kerning first=270 second=84 amount=-2 +kerning first=270 second=86 amount=-2 +kerning first=270 second=87 amount=-2 +kerning first=270 second=88 amount=-3 +kerning first=270 second=89 amount=-3 +kerning first=270 second=90 amount=-1 +kerning first=270 second=193 amount=-2 +kerning first=270 second=194 amount=-2 +kerning first=270 second=196 amount=-2 +kerning first=270 second=197 amount=-2 kerning first=270 second=198 amount=-2 -kerning first=40 second=290 amount=-2 -kerning first=183 second=210 amount=-2 -kerning first=298 second=100 amount=-1 -kerning first=203 second=352 amount=-1 -kerning first=323 second=262 amount=-2 -kerning first=901 second=187 amount=-1 -kerning first=223 second=968 amount=-1 -kerning first=934 second=1079 amount=-1 -kerning first=103 second=1035 amount=-5 -kerning first=249 second=211 amount=-2 -kerning first=369 second=339 amount=-1 -kerning first=372 second=101 amount=-3 -kerning first=271 second=353 amount=-1 -kerning first=184 second=365 amount=-1 -kerning first=327 second=212 amount=-2 -kerning first=8366 second=1194 amount=-2 -kerning first=8372 second=370 amount=-2 -kerning first=1117 second=252 amount=-1 -kerning first=350 second=354 amount=-1 -kerning first=944 second=266 amount=-2 -kerning first=948 second=39 amount=-3 -kerning first=247 second=1184 amount=-5 -kerning first=250 second=366 amount=-2 -kerning first=373 second=279 amount=-1 -kerning first=166 second=171 amount=-3 +kerning first=270 second=221 amount=-3 +kerning first=270 second=256 amount=-2 +kerning first=270 second=258 amount=-2 +kerning first=270 second=260 amount=-2 +kerning first=270 second=354 amount=-2 +kerning first=270 second=356 amount=-2 +kerning first=270 second=372 amount=-2 +kerning first=270 second=374 amount=-3 +kerning first=270 second=376 amount=-3 +kerning first=270 second=377 amount=-1 +kerning first=270 second=379 amount=-1 +kerning first=270 second=381 amount=-1 +kerning first=270 second=913 amount=-2 +kerning first=270 second=916 amount=-2 +kerning first=270 second=918 amount=-1 +kerning first=270 second=923 amount=-2 +kerning first=270 second=932 amount=-2 +kerning first=270 second=933 amount=-3 +kerning first=270 second=935 amount=-3 +kerning first=270 second=939 amount=-3 +kerning first=270 second=955 amount=-2 +kerning first=270 second=967 amount=-1 +kerning first=270 second=1026 amount=-2 +kerning first=270 second=1033 amount=-1 +kerning first=270 second=1035 amount=-2 +kerning first=270 second=1040 amount=-2 +kerning first=270 second=1044 amount=-1 +kerning first=270 second=1046 amount=-3 +kerning first=270 second=1051 amount=-1 +kerning first=270 second=1058 amount=-2 +kerning first=270 second=1061 amount=-3 +kerning first=270 second=1066 amount=-2 +kerning first=270 second=1071 amount=-1 +kerning first=270 second=1174 amount=-3 +kerning first=270 second=1184 amount=-2 +kerning first=270 second=1198 amount=-3 +kerning first=270 second=1202 amount=-3 +kerning first=270 second=1298 amount=-1 +kerning first=270 second=8218 amount=-1 +kerning first=270 second=8222 amount=-1 +kerning first=270 second=8230 amount=-1 +kerning first=272 second=44 amount=-1 +kerning first=272 second=46 amount=-1 +kerning first=272 second=47 amount=-1 +kerning first=272 second=65 amount=-2 +kerning first=272 second=84 amount=-2 +kerning first=272 second=86 amount=-2 +kerning first=272 second=87 amount=-2 +kerning first=272 second=88 amount=-3 +kerning first=272 second=89 amount=-3 +kerning first=272 second=90 amount=-1 +kerning first=272 second=193 amount=-2 +kerning first=272 second=194 amount=-2 +kerning first=272 second=196 amount=-2 +kerning first=272 second=197 amount=-2 +kerning first=272 second=198 amount=-2 +kerning first=272 second=221 amount=-3 +kerning first=272 second=256 amount=-2 +kerning first=272 second=258 amount=-2 +kerning first=272 second=260 amount=-2 +kerning first=272 second=354 amount=-2 +kerning first=272 second=356 amount=-2 +kerning first=272 second=372 amount=-2 +kerning first=272 second=374 amount=-3 +kerning first=272 second=376 amount=-3 +kerning first=272 second=377 amount=-1 +kerning first=272 second=379 amount=-1 +kerning first=272 second=381 amount=-1 +kerning first=272 second=913 amount=-2 +kerning first=272 second=916 amount=-2 +kerning first=272 second=918 amount=-1 +kerning first=272 second=923 amount=-2 +kerning first=272 second=932 amount=-2 +kerning first=272 second=933 amount=-3 +kerning first=272 second=935 amount=-3 +kerning first=272 second=939 amount=-3 +kerning first=272 second=955 amount=-2 +kerning first=272 second=967 amount=-1 +kerning first=272 second=1026 amount=-2 +kerning first=272 second=1033 amount=-1 +kerning first=272 second=1035 amount=-2 +kerning first=272 second=1040 amount=-2 +kerning first=272 second=1044 amount=-1 +kerning first=272 second=1046 amount=-3 +kerning first=272 second=1051 amount=-1 +kerning first=272 second=1058 amount=-2 +kerning first=272 second=1061 amount=-3 +kerning first=272 second=1066 amount=-2 +kerning first=272 second=1071 amount=-1 +kerning first=272 second=1174 amount=-3 +kerning first=272 second=1184 amount=-2 +kerning first=272 second=1198 amount=-3 +kerning first=272 second=1202 amount=-3 +kerning first=272 second=1298 amount=-1 +kerning first=272 second=8218 amount=-1 +kerning first=272 second=8222 amount=-1 +kerning first=272 second=8230 amount=-1 +kerning first=275 second=34 amount=-1 +kerning first=275 second=39 amount=-1 +kerning first=275 second=44 amount=-1 +kerning first=275 second=46 amount=-1 +kerning first=275 second=47 amount=-1 +kerning first=275 second=63 amount=-2 +kerning first=275 second=102 amount=-1 +kerning first=275 second=118 amount=-1 +kerning first=275 second=119 amount=-1 +kerning first=275 second=120 amount=-2 +kerning first=275 second=122 amount=-1 +kerning first=275 second=373 amount=-1 +kerning first=275 second=378 amount=-1 +kerning first=275 second=380 amount=-1 +kerning first=275 second=382 amount=-1 +kerning first=275 second=947 amount=-1 +kerning first=275 second=955 amount=-1 +kerning first=275 second=957 amount=-1 +kerning first=275 second=964 amount=-1 +kerning first=275 second=967 amount=-2 +kerning first=275 second=1076 amount=-1 +kerning first=275 second=1078 amount=-2 +kerning first=275 second=1083 amount=-1 +kerning first=275 second=1090 amount=-1 +kerning first=275 second=1093 amount=-2 +kerning first=275 second=1098 amount=-1 +kerning first=275 second=1113 amount=-1 +kerning first=275 second=1175 amount=-2 +kerning first=275 second=1185 amount=-1 +kerning first=275 second=1199 amount=-1 +kerning first=275 second=1203 amount=-2 +kerning first=275 second=1299 amount=-1 +kerning first=275 second=8216 amount=-1 +kerning first=275 second=8217 amount=-1 +kerning first=275 second=8218 amount=-1 +kerning first=275 second=8220 amount=-1 +kerning first=275 second=8221 amount=-1 +kerning first=275 second=8222 amount=-1 +kerning first=275 second=8230 amount=-1 +kerning first=277 second=34 amount=-1 +kerning first=277 second=39 amount=-1 +kerning first=277 second=44 amount=-1 +kerning first=277 second=46 amount=-1 +kerning first=277 second=47 amount=-1 +kerning first=277 second=63 amount=-2 +kerning first=277 second=102 amount=-1 +kerning first=277 second=118 amount=-1 +kerning first=277 second=119 amount=-1 +kerning first=277 second=120 amount=-2 +kerning first=277 second=122 amount=-1 +kerning first=277 second=373 amount=-1 +kerning first=277 second=378 amount=-1 +kerning first=277 second=380 amount=-1 +kerning first=277 second=382 amount=-1 +kerning first=277 second=947 amount=-1 +kerning first=277 second=955 amount=-1 +kerning first=277 second=957 amount=-1 +kerning first=277 second=964 amount=-1 +kerning first=277 second=967 amount=-2 +kerning first=277 second=1076 amount=-1 +kerning first=277 second=1078 amount=-2 +kerning first=277 second=1083 amount=-1 +kerning first=277 second=1090 amount=-1 +kerning first=277 second=1093 amount=-2 +kerning first=277 second=1098 amount=-1 +kerning first=277 second=1113 amount=-1 +kerning first=277 second=1175 amount=-2 +kerning first=277 second=1185 amount=-1 +kerning first=277 second=1199 amount=-1 +kerning first=277 second=1203 amount=-2 +kerning first=277 second=1299 amount=-1 +kerning first=277 second=8216 amount=-1 +kerning first=277 second=8217 amount=-1 +kerning first=277 second=8218 amount=-1 +kerning first=277 second=8220 amount=-1 +kerning first=277 second=8221 amount=-1 +kerning first=277 second=8222 amount=-1 +kerning first=277 second=8230 amount=-1 +kerning first=279 second=34 amount=-1 +kerning first=279 second=39 amount=-1 +kerning first=279 second=44 amount=-1 +kerning first=279 second=46 amount=-1 +kerning first=279 second=47 amount=-1 kerning first=279 second=63 amount=-2 -kerning first=182 second=8217 amount=-3 -kerning first=303 second=225 amount=-1 -kerning first=71 second=87 amount=-1 -kerning first=1085 second=267 amount=-1 -kerning first=325 second=1185 amount=-3 -kerning first=88 second=940 amount=-2 -kerning first=91 second=249 amount=-1 -kerning first=248 second=8218 amount=-1 -kerning first=971 second=356 amount=-5 -kerning first=49 second=338 amount=-2 -kerning first=52 second=100 amount=-1 -kerning first=1051 second=972 amount=-1 -kerning first=192 second=250 amount=-1 -kerning first=189 second=941 amount=-1 -kerning first=1063 second=281 amount=-1 -kerning first=72 second=262 amount=-2 -kerning first=215 second=187 amount=-1 -kerning first=326 second=8220 amount=-1 -kerning first=912 second=227 amount=-1 -kerning first=95 second=199 amount=-2 -kerning first=1170 second=357 amount=-1 -kerning first=238 second=89 amount=-5 -kerning first=950 second=369 amount=-1 -kerning first=112 second=1098 amount=-1 -kerning first=1219 second=973 amount=-1 -kerning first=118 second=101 amount=-1 -kerning first=258 second=251 amount=-1 -kerning first=8226 second=106 amount=1 -kerning first=1067 second=228 amount=-1 -kerning first=76 second=212 amount=-1 -kerning first=1096 second=370 amount=-2 -kerning first=910 second=1256 amount=-3 -kerning first=93 second=1118 amount=-1 -kerning first=96 second=354 amount=-5 -kerning first=239 second=266 amount=-2 -kerning first=242 second=39 amount=-1 -kerning first=958 second=79 amount=-2 -kerning first=119 second=279 amount=-1 -kerning first=1263 second=229 amount=-1 -kerning first=1027 second=920 amount=-2 -kerning first=176 second=213 amount=-2 -kerning first=8224 second=1026 amount=-5 -kerning first=8230 second=286 amount=-1 -kerning first=57 second=225 amount=-1 -kerning first=1065 second=1257 amount=-1 -kerning first=197 second=355 amount=-1 -kerning first=200 second=115 amount=-1 -kerning first=315 second=267 amount=-1 -kerning first=74 second=1185 amount=-3 -kerning first=77 second=367 amount=-1 -kerning first=1184 second=242 amount=-2 -kerning first=955 second=945 amount=-1 -kerning first=1298 second=1240 amount=-2 -kerning first=123 second=226 amount=-1 -kerning first=177 second=368 amount=-2 -kerning first=291 second=281 amount=-1 -kerning first=8260 second=231 amount=-1 -kerning first=8363 second=373 amount=-4 -kerning first=936 second=269 amount=-1 -kerning first=178 second=1066 amount=-5 -kerning first=175 second=8221 amount=-3 -kerning first=297 second=228 amount=-1 -kerning first=8249 second=1298 amount=-1 -kerning first=1074 second=962 amount=-1 -kerning first=205 second=240 amount=-1 -kerning first=317 second=1194 amount=-2 -kerning first=322 second=370 amount=-2 -kerning first=900 second=283 amount=-1 -kerning first=942 second=217 amount=-2 -kerning first=242 second=8222 amount=-1 -kerning first=251 second=79 amount=-2 -kerning first=371 second=229 amount=-1 -kerning first=968 second=119 amount=-4 -kerning first=965 second=359 amount=-1 -kerning first=8211 second=194 amount=-2 -kerning first=1041 second=1026 amount=-5 -kerning first=46 second=103 amount=-1 -kerning first=186 second=253 amount=-1 -kerning first=1083 second=218 amount=-2 -kerning first=904 second=230 amount=-1 -kerning first=940 second=947 amount=-2 -kerning first=249 second=945 amount=-1 -kerning first=369 second=1262 amount=-2 -kerning first=372 second=1240 amount=-2 -kerning first=165 second=268 amount=-2 -kerning first=47 second=281 amount=-1 -kerning first=1084 second=373 amount=-4 -kerning first=902 second=1263 amount=-1 -kerning first=87 second=1169 amount=-2 -kerning first=93 second=117 amount=-1 -kerning first=1220 second=232 amount=-1 -kerning first=376 second=332 amount=-3 -kerning first=973 second=244 amount=-1 -kerning first=169 second=216 amount=-2 -kerning first=282 second=106 amount=1 -kerning first=8220 second=289 amount=-1 -kerning first=8216 second=1033 amount=-3 -kerning first=51 second=228 amount=-1 -kerning first=194 second=118 amount=-4 -kerning first=303 second=962 amount=-1 -kerning first=214 second=283 amount=-1 -kerning first=1174 second=245 amount=-1 -kerning first=237 second=217 amount=-2 -kerning first=952 second=257 amount=-1 -kerning first=117 second=229 amount=-1 -kerning first=260 second=119 amount=-4 -kerning first=377 second=963 amount=-1 -kerning first=380 second=271 amount=-1 -kerning first=1028 second=194 amount=-1 -kerning first=167 second=1195 amount=-1 -kerning first=170 second=371 amount=-1 -kerning first=280 second=1026 amount=-5 -kerning first=8225 second=234 amount=-1 -kerning first=49 second=1257 amount=-1 -kerning first=1063 second=1090 amount=-3 -kerning first=313 second=218 amount=-1 -kerning first=339 second=120 amount=-2 -kerning first=912 second=964 amount=-3 -kerning first=928 second=45 amount=-2 -kerning first=235 second=947 amount=-1 -kerning first=238 second=372 amount=-5 -kerning first=361 second=287 amount=-1 -kerning first=1299 second=97 amount=-1 -kerning first=1026 second=1108 amount=-1 -kerning first=178 second=81 amount=-2 -kerning first=289 second=231 amount=-1 -kerning first=1067 second=965 amount=-1 -kerning first=314 second=373 amount=-4 -kerning first=931 second=220 amount=-2 -kerning first=365 second=232 amount=-1 -kerning first=958 second=362 amount=-2 -kerning first=1263 second=966 amount=-1 -kerning first=40 second=106 amount=7 -kerning first=1037 second=289 amount=-1 -kerning first=57 second=962 amount=-1 -kerning first=323 second=83 amount=-1 -kerning first=8365 second=261 amount=-1 -kerning first=1103 second=363 amount=-1 -kerning first=223 second=333 amount=-1 -kerning first=934 second=375 amount=-1 -kerning first=955 second=8211 amount=-2 -kerning first=123 second=963 amount=-1 -kerning first=126 second=271 amount=-1 -kerning first=38 second=1026 amount=-5 -kerning first=44 second=56 amount=-1 -kerning first=41 second=286 amount=-2 -kerning first=1044 second=234 amount=-1 -kerning first=291 second=1090 amount=-3 -kerning first=296 second=334 amount=-2 -kerning first=8260 second=968 amount=-1 -kerning first=64 second=218 amount=-2 -kerning first=204 second=346 amount=-1 -kerning first=8372 second=211 amount=-2 -kerning first=81 second=1174 amount=-3 -kerning first=87 second=120 amount=-1 -kerning first=224 second=964 amount=-1 -kerning first=928 second=8249 amount=-3 -kerning first=944 second=85 amount=-2 -kerning first=107 second=287 amount=-2 -kerning first=1202 second=235 amount=-1 -kerning first=373 second=97 amount=-1 -kerning first=163 second=219 amount=-2 -kerning first=273 second=347 amount=-1 -kerning first=185 second=361 amount=-1 -kerning first=188 second=121 amount=-1 -kerning first=297 second=965 amount=-1 -kerning first=65 second=373 amount=-4 -kerning first=1074 second=8250 amount=-1 -kerning first=205 second=1028 amount=-2 -kerning first=8369 second=1184 amount=-5 -kerning first=903 second=336 amount=-2 -kerning first=1118 second=248 amount=-1 -kerning first=354 second=110 amount=-2 -kerning first=251 second=362 amount=-2 -kerning first=371 second=966 amount=-1 -kerning first=374 second=275 amount=-4 -kerning first=164 second=374 amount=-5 -kerning first=1051 second=337 amount=-1 -kerning first=1063 second=99 amount=-1 -kerning first=192 second=71 amount=-2 -kerning first=304 second=221 amount=-5 -kerning first=72 second=83 amount=-1 -kerning first=1087 second=261 amount=-1 -kerning first=1083 second=953 amount=-1 -kerning first=330 second=363 amount=-1 -kerning first=92 second=245 amount=-1 -kerning first=950 second=210 amount=-2 -kerning first=1219 second=338 amount=-2 -kerning first=249 second=8211 amount=-2 -kerning first=1224 second=100 amount=-1 -kerning first=171 second=84 amount=-1 -kerning first=47 second=1090 amount=-3 -kerning first=50 second=334 amount=-2 -kerning first=1064 second=277 amount=-1 -kerning first=193 second=246 amount=-1 -kerning first=305 second=376 amount=-5 -kerning first=1096 second=211 amount=-2 -kerning first=327 second=8212 amount=-2 -kerning first=1176 second=113 amount=-1 -kerning first=1171 second=353 amount=-1 -kerning first=239 second=85 amount=-2 -kerning first=951 second=365 amount=-1 -kerning first=113 second=1094 amount=2 -kerning first=119 second=97 amount=-1 -kerning first=256 second=936 amount=-3 -kerning first=379 second=377 amount=1 -kerning first=172 second=259 amount=-1 -kerning first=176 second=34 amount=-3 -kerning first=8230 second=102 amount=-2 -kerning first=51 second=965 amount=-1 -kerning first=57 second=46 amount=-1 -kerning first=303 second=8250 amount=-1 -kerning first=315 second=86 amount=-5 -kerning first=338 second=248 amount=-1 -kerning first=926 second=171 amount=-3 -kerning first=1184 second=63 amount=-2 -kerning first=949 second=8217 amount=-1 -kerning first=117 second=966 amount=-1 -kerning first=120 second=275 amount=-2 -kerning first=1298 second=225 amount=-1 -kerning first=35 second=289 amount=-1 -kerning first=291 second=99 amount=-1 -kerning first=58 second=221 amount=-5 -kerning first=1069 second=379 amount=-1 -kerning first=198 second=351 amount=-1 -kerning first=201 second=111 amount=-1 -kerning first=316 second=261 amount=-1 -kerning first=8363 second=214 amount=-2 -kerning first=78 second=363 amount=-1 -kerning first=75 second=1177 amount=-1 -kerning first=367 second=100 amount=-1 -kerning first=956 second=941 amount=-1 -kerning first=39 second=234 amount=-1 -kerning first=1036 second=1241 amount=-2 -kerning first=1039 second=187 amount=-1 -kerning first=178 second=364 amount=-2 -kerning first=289 second=968 amount=-1 -kerning first=294 second=277 amount=-1 -kerning first=59 second=376 amount=-5 -kerning first=202 second=291 amount=-1 -kerning first=199 second=1035 amount=-1 -kerning first=322 second=211 amount=-2 -kerning first=8364 second=369 amount=-1 -kerning first=900 second=101 amount=-1 -kerning first=76 second=8212 amount=-3 -kerning first=343 second=353 amount=-1 -kerning first=105 second=235 amount=-1 -kerning first=176 second=8216 amount=-3 -kerning first=298 second=224 amount=-1 -kerning first=57 second=8250 amount=-1 -kerning first=66 second=86 amount=-1 -kerning first=1083 second=39 amount=-3 -kerning first=318 second=1184 amount=-5 -kerning first=323 second=366 amount=-2 -kerning first=8377 second=79 amount=-2 -kerning first=901 second=279 amount=-1 -kerning first=86 second=248 amount=-3 -kerning first=243 second=8217 amount=-1 -kerning first=372 second=225 amount=-2 -kerning first=165 second=87 amount=-5 -kerning first=47 second=99 amount=-2 -kerning first=184 second=940 amount=-1 -kerning first=64 second=953 amount=-1 -kerning first=1084 second=214 amount=-2 -kerning first=8372 second=945 amount=-1 -kerning first=905 second=226 amount=-1 -kerning first=1117 second=356 amount=-5 -kerning first=1168 second=116 amount=-1 -kerning first=944 second=368 amount=-2 -kerning first=113 second=100 amount=-1 -kerning first=1202 second=972 amount=-1 -kerning first=253 second=250 amount=-1 -kerning first=250 second=941 amount=-1 -kerning first=1207 second=281 amount=-1 -kerning first=166 second=262 amount=-2 -kerning first=276 second=1241 amount=-1 -kerning first=48 second=277 amount=-1 -kerning first=191 second=199 amount=-2 -kerning first=300 second=1079 amount=-1 -kerning first=306 second=89 amount=-5 -kerning first=1085 second=369 amount=-1 -kerning first=214 second=101 amount=-1 -kerning first=91 second=353 amount=-1 -kerning first=94 second=113 amount=-1 -kerning first=231 second=955 amount=-1 -kerning first=942 second=8221 amount=-3 -kerning first=1223 second=228 amount=-1 -kerning first=374 second=1080 amount=-3 -kerning first=170 second=212 amount=-2 +kerning first=279 second=102 amount=-1 +kerning first=279 second=118 amount=-1 +kerning first=279 second=119 amount=-1 +kerning first=279 second=120 amount=-2 +kerning first=279 second=122 amount=-1 +kerning first=279 second=373 amount=-1 +kerning first=279 second=378 amount=-1 +kerning first=279 second=380 amount=-1 +kerning first=279 second=382 amount=-1 +kerning first=279 second=947 amount=-1 +kerning first=279 second=955 amount=-1 +kerning first=279 second=957 amount=-1 +kerning first=279 second=964 amount=-1 +kerning first=279 second=967 amount=-2 +kerning first=279 second=1076 amount=-1 +kerning first=279 second=1078 amount=-2 +kerning first=279 second=1083 amount=-1 +kerning first=279 second=1090 amount=-1 +kerning first=279 second=1093 amount=-2 +kerning first=279 second=1098 amount=-1 +kerning first=279 second=1113 amount=-1 +kerning first=279 second=1175 amount=-2 +kerning first=279 second=1185 amount=-1 +kerning first=279 second=1199 amount=-1 +kerning first=279 second=1203 amount=-2 +kerning first=279 second=1299 amount=-1 +kerning first=279 second=8216 amount=-1 +kerning first=279 second=8217 amount=-1 +kerning first=279 second=8218 amount=-1 +kerning first=279 second=8220 amount=-1 +kerning first=279 second=8221 amount=-1 +kerning first=279 second=8222 amount=-1 +kerning first=279 second=8230 amount=-1 +kerning first=281 second=34 amount=-1 +kerning first=281 second=39 amount=-1 +kerning first=281 second=44 amount=-1 +kerning first=281 second=46 amount=-1 +kerning first=281 second=47 amount=-1 +kerning first=281 second=63 amount=-2 +kerning first=281 second=102 amount=-1 +kerning first=281 second=118 amount=-1 +kerning first=281 second=119 amount=-1 +kerning first=281 second=120 amount=-2 +kerning first=281 second=122 amount=-1 +kerning first=281 second=373 amount=-1 +kerning first=281 second=378 amount=-1 +kerning first=281 second=380 amount=-1 +kerning first=281 second=382 amount=-1 +kerning first=281 second=947 amount=-1 +kerning first=281 second=955 amount=-1 +kerning first=281 second=957 amount=-1 +kerning first=281 second=964 amount=-1 +kerning first=281 second=967 amount=-2 +kerning first=281 second=1076 amount=-1 +kerning first=281 second=1078 amount=-2 +kerning first=281 second=1083 amount=-1 +kerning first=281 second=1090 amount=-1 +kerning first=281 second=1093 amount=-2 +kerning first=281 second=1098 amount=-1 +kerning first=281 second=1113 amount=-1 +kerning first=281 second=1175 amount=-2 +kerning first=281 second=1185 amount=-1 +kerning first=281 second=1199 amount=-1 +kerning first=281 second=1203 amount=-2 +kerning first=281 second=1299 amount=-1 +kerning first=281 second=8216 amount=-1 +kerning first=281 second=8217 amount=-1 +kerning first=281 second=8218 amount=-1 +kerning first=281 second=8220 amount=-1 +kerning first=281 second=8221 amount=-1 +kerning first=281 second=8222 amount=-1 +kerning first=281 second=8230 amount=-1 +kerning first=283 second=34 amount=-1 +kerning first=283 second=39 amount=-1 +kerning first=283 second=44 amount=-1 +kerning first=283 second=46 amount=-1 +kerning first=283 second=47 amount=-1 +kerning first=283 second=63 amount=-2 kerning first=283 second=102 amount=-1 -kerning first=8221 second=283 amount=-1 -kerning first=52 second=224 amount=-1 -kerning first=1051 second=1256 amount=-2 -kerning first=192 second=354 amount=-5 -kerning first=189 second=1118 amount=-1 -kerning first=313 second=39 amount=-3 -kerning first=69 second=1184 amount=-5 -kerning first=72 second=366 amount=-2 -kerning first=215 second=279 amount=-1 -kerning first=98 second=63 amount=-2 -kerning first=1170 second=920 amount=-2 -kerning first=238 second=213 amount=-2 -kerning first=361 second=103 amount=-1 -kerning first=118 second=225 amount=-1 -kerning first=1219 second=1257 amount=-1 -kerning first=258 second=355 amount=-1 -kerning first=381 second=267 amount=-1 -kerning first=168 second=1185 amount=-3 -kerning first=8226 second=230 amount=-1 -kerning first=193 second=1038 amount=-2 -kerning first=314 second=214 amount=-2 -kerning first=70 second=8218 amount=-4 -kerning first=1096 second=945 amount=-1 -kerning first=923 second=268 amount=-2 -kerning first=239 second=368 amount=-2 -kerning first=37 second=187 amount=-1 -kerning first=34 second=1241 amount=-1 -kerning first=169 second=8220 amount=-3 -kerning first=8224 second=1263 amount=-1 -kerning first=54 second=1079 amount=-1 -kerning first=60 second=89 amount=-5 -kerning first=1071 second=269 amount=-1 -kerning first=315 second=369 amount=-1 -kerning first=80 second=251 amount=-1 -kerning first=934 second=216 amount=-2 -kerning first=237 second=8221 amount=-3 -kerning first=240 second=1066 amount=-5 -kerning first=963 second=118 amount=-4 -kerning first=1298 second=962 amount=-1 -kerning first=177 second=943 amount=-1 -kerning first=180 second=252 amount=-1 -kerning first=8260 second=333 amount=-1 -kerning first=61 second=266 amount=-2 -kerning first=64 second=39 amount=-3 -kerning first=8363 second=949 amount=-1 -kerning first=8366 second=257 amount=-1 -kerning first=221 second=1081 amount=-3 -kerning first=928 second=1195 amount=-1 -kerning first=936 second=371 amount=-1 -kerning first=107 second=103 amount=-2 -kerning first=247 second=253 amount=-1 -kerning first=160 second=267 amount=-1 -kerning first=1046 second=230 amount=-1 -kerning first=65 second=214 amount=-2 -kerning first=1074 second=947 amount=-4 -kerning first=202 second=1101 amount=-1 -kerning first=322 second=945 amount=-1 -kerning first=900 second=1240 amount=-2 -kerning first=88 second=116 amount=-1 -kerning first=105 second=972 amount=-1 -kerning first=108 second=281 amount=-1 -kerning first=1203 second=231 amount=-1 -kerning first=968 second=243 amount=-1 -kerning first=1041 second=1263 amount=-1 -kerning first=186 second=357 amount=-1 -kerning first=189 second=117 amount=-1 -kerning first=301 second=269 amount=-1 -kerning first=206 second=973 amount=-1 -kerning first=8370 second=1176 amount=-1 -kerning first=8377 second=362 amount=-2 -kerning first=904 second=332 amount=-2 -kerning first=1119 second=244 amount=-1 -kerning first=255 second=118 amount=-4 -kerning first=372 second=962 amount=-3 -kerning first=162 second=1194 amount=-2 -kerning first=165 second=370 amount=-2 -kerning first=278 second=283 amount=-1 -kerning first=44 second=1256 amount=-1 -kerning first=47 second=382 amount=-2 -kerning first=193 second=67 amount=-2 -kerning first=187 second=1044 amount=-2 -kerning first=305 second=217 amount=-2 -kerning first=73 second=79 amount=-2 -kerning first=1084 second=949 amount=-1 -kerning first=8372 second=8211 amount=-2 -kerning first=905 second=963 amount=-1 -kerning first=910 second=271 amount=-4 -kerning first=90 second=920 amount=-1 -kerning first=356 second=286 amount=-1 -kerning first=1207 second=1090 amount=-2 -kerning first=1220 second=334 amount=-2 -kerning first=973 second=346 amount=-1 -kerning first=282 second=230 amount=-1 -kerning first=1062 second=964 amount=-2 -kerning first=1065 second=273 amount=-1 -kerning first=194 second=242 amount=-1 -kerning first=303 second=947 amount=-4 -kerning first=306 second=372 amount=-5 -kerning first=214 second=1240 amount=-2 -kerning first=916 second=219 amount=-2 -kerning first=1169 second=1108 amount=-1 -kerning first=240 second=81 amount=-2 -kerning first=949 second=1175 amount=-1 -kerning first=952 second=361 amount=-1 -kerning first=955 second=121 amount=-1 -kerning first=1223 second=965 amount=-1 -kerning first=260 second=243 amount=-1 -kerning first=280 second=1263 amount=-1 -kerning first=8225 second=336 amount=-2 -kerning first=55 second=269 amount=-1 -kerning first=1095 second=1176 amount=-1 -kerning first=1101 second=122 amount=-1 -kerning first=920 second=374 amount=-3 -kerning first=118 second=962 amount=-1 -kerning first=1299 second=221 amount=-5 -kerning first=266 second=193 amount=-1 -kerning first=36 second=283 amount=-1 -kerning first=1036 second=233 amount=-2 -kerning first=289 second=333 amount=-1 -kerning first=59 second=217 amount=-2 -kerning first=314 second=949 amount=-1 -kerning first=317 second=257 amount=-1 -kerning first=8364 second=210 amount=-2 -kerning first=1096 second=8211 amount=-2 -kerning first=1186 second=234 amount=-1 -kerning first=365 second=334 amount=-2 -kerning first=962 second=246 amount=-1 -kerning first=125 second=218 amount=-2 -kerning first=40 second=230 amount=-1 -kerning first=179 second=360 amount=-2 -kerning first=298 second=45 amount=-2 -kerning first=57 second=947 amount=-4 -kerning first=60 second=372 amount=-5 -kerning first=203 second=287 amount=-1 -kerning first=8365 second=365 amount=-1 -kerning first=901 second=97 amount=-1 -kerning first=341 second=1108 amount=-1 -kerning first=243 second=1175 amount=-2 -kerning first=249 second=121 amount=-1 -kerning first=372 second=46 amount=-3 -kerning first=126 second=373 amount=-4 -kerning first=1298 second=8250 amount=-1 -kerning first=271 second=288 amount=-2 -kerning first=38 second=1263 amount=-1 -kerning first=1044 second=336 amount=-1 -kerning first=299 second=220 amount=-2 -kerning first=207 second=232 amount=-1 -kerning first=321 second=1176 amount=-1 -kerning first=8363 second=8217 amount=-3 -kerning first=902 second=275 amount=-1 -kerning first=87 second=244 amount=-3 -kerning first=1202 second=337 amount=-1 -kerning first=1207 second=99 amount=-1 -kerning first=253 second=71 amount=-2 -kerning first=967 second=351 amount=-1 -kerning first=166 second=83 amount=-1 -kerning first=276 second=233 amount=-1 -kerning first=1046 second=967 amount=-2 -kerning first=188 second=245 amount=-1 -kerning first=300 second=375 amount=-1 -kerning first=65 second=949 amount=-1 -kerning first=1085 second=210 amount=-2 -kerning first=322 second=8211 amount=-2 -kerning first=1118 second=352 amount=-1 -kerning first=354 second=234 amount=-3 -kerning first=108 second=1090 amount=-3 -kerning first=1210 second=277 amount=-1 -kerning first=254 second=246 amount=-1 -kerning first=968 second=1035 amount=-5 -kerning first=971 second=291 amount=-1 -kerning first=8217 second=339 amount=-1 -kerning first=49 second=273 amount=-1 -kerning first=52 second=45 amount=-2 -kerning first=8221 second=101 amount=-1 -kerning first=46 second=964 amount=-3 -kerning first=298 second=8249 amount=-3 -kerning first=1087 second=365 amount=-1 -kerning first=215 second=97 amount=-1 -kerning first=908 second=377 amount=-1 -kerning first=92 second=347 amount=-1 -kerning first=89 second=1108 amount=-4 -kerning first=238 second=34 amount=-3 -kerning first=118 second=46 amount=-2 -kerning first=1224 second=224 amount=-1 -kerning first=372 second=8250 amount=-2 -kerning first=53 second=220 amount=-2 -kerning first=1067 second=171 amount=-3 -kerning first=193 second=350 amount=-1 -kerning first=73 second=362 amount=-2 -kerning first=1084 second=8217 amount=-3 -kerning first=70 second=1176 amount=-1 -kerning first=923 second=87 amount=-5 -kerning first=96 second=289 amount=-1 -kerning first=356 second=1096 amount=-2 -kerning first=951 second=940 amount=-1 -kerning first=1256 second=379 amount=-1 -kerning first=34 second=233 amount=-1 -kerning first=169 second=1177 amount=-1 -kerning first=172 second=363 amount=-1 -kerning first=54 second=375 amount=-1 -kerning first=197 second=290 amount=-2 -kerning first=315 second=210 amount=-1 -kerning first=1097 second=941 amount=-1 -kerning first=338 second=352 amount=-1 -kerning first=926 second=262 amount=-2 -kerning first=100 second=234 amount=-1 -kerning first=1184 second=187 amount=-2 -kerning first=240 second=364 amount=-2 -kerning first=363 second=277 amount=-1 -kerning first=960 second=199 amount=-2 -kerning first=260 second=1035 amount=-5 -kerning first=1035 second=339 amount=-1 -kerning first=170 second=8212 amount=-2 -kerning first=174 second=1059 amount=-2 -kerning first=52 second=8249 amount=-3 -kerning first=61 second=85 amount=-2 -kerning first=1069 second=955 amount=-2 -kerning first=1073 second=263 amount=-1 -kerning first=201 second=235 amount=-1 -kerning first=316 second=365 amount=-1 -kerning first=936 second=212 amount=-2 -kerning first=238 second=8216 amount=-3 -kerning first=367 second=224 amount=-1 -kerning first=956 second=1118 amount=-1 -kerning first=1240 second=1184 amount=-2 -kerning first=1039 second=279 amount=-1 -kerning first=182 second=248 amount=-1 -kerning first=297 second=171 amount=-3 -kerning first=314 second=8217 amount=-3 -kerning first=8369 second=253 amount=-1 -kerning first=900 second=225 amount=-1 -kerning first=85 second=197 amount=-2 -kerning first=931 second=1185 amount=-3 -kerning first=105 second=337 amount=-1 -kerning first=108 second=99 amount=-1 -kerning first=962 second=1038 amount=-2 -kerning first=161 second=261 amount=-1 -kerning first=125 second=953 amount=-1 -kerning first=46 second=48 amount=-1 -kerning first=206 second=338 amount=-2 -kerning first=209 second=100 amount=-1 -kerning first=323 second=941 amount=-1 -kerning first=86 second=352 amount=-1 -kerning first=89 second=112 amount=-3 -kerning first=934 second=8220 amount=-3 -kerning first=252 second=199 amount=-2 -kerning first=375 second=89 amount=-5 -kerning first=369 second=1079 amount=-1 -kerning first=372 second=326 amount=-2 -kerning first=165 second=211 amount=-2 -kerning first=271 second=1098 amount=-3 -kerning first=278 second=101 amount=-1 -kerning first=8218 second=54 amount=-1 -kerning first=190 second=113 amount=-1 -kerning first=302 second=263 amount=-1 -kerning first=1080 second=1066 amount=-5 -kerning first=1168 second=240 amount=-1 -kerning first=944 second=943 amount=-1 -kerning first=948 second=252 amount=-1 -kerning first=113 second=224 amount=-1 -kerning first=1202 second=1256 amount=-1 -kerning first=250 second=1118 amount=-1 -kerning first=253 second=354 amount=-5 -kerning first=376 second=266 amount=-3 -kerning first=163 second=1184 amount=-5 -kerning first=166 second=366 amount=-2 -kerning first=276 second=970 amount=-1 -kerning first=8220 second=229 amount=-1 -kerning first=51 second=171 amount=-3 -kerning first=194 second=63 amount=-5 -kerning first=306 second=213 amount=-2 -kerning first=65 second=8217 amount=-3 -kerning first=214 second=225 amount=-1 -kerning first=254 second=1038 amount=-2 -kerning first=971 second=1101 amount=-1 -kerning first=72 second=941 amount=-1 -kerning first=75 second=250 amount=-1 -kerning first=95 second=1241 amount=-1 -kerning first=232 second=8220 amount=-1 -kerning first=361 second=227 amount=-1 -kerning first=950 second=1169 amount=-2 -kerning first=956 second=117 amount=-1 -kerning first=121 second=89 amount=-5 -kerning first=36 second=101 amount=-1 -kerning first=1026 second=973 amount=-1 -kerning first=175 second=251 amount=-1 -kerning first=8226 second=332 amount=-2 -kerning first=56 second=263 amount=-1 -kerning first=305 second=8221 amount=-3 -kerning first=1102 second=118 amount=-1 -kerning first=222 second=90 amount=-1 -kerning first=915 second=1194 amount=-2 -kerning first=923 second=370 amount=-2 -kerning first=1179 second=283 amount=-1 -kerning first=239 second=943 amount=-1 -kerning first=962 second=67 amount=-2 -kerning first=125 second=39 amount=-3 -kerning first=37 second=279 amount=-1 -kerning first=1037 second=229 amount=-1 -kerning first=60 second=213 amount=-2 -kerning first=1071 second=371 amount=-1 -kerning first=203 second=103 amount=-1 -kerning first=318 second=253 amount=-1 -kerning first=80 second=355 amount=-1 -kerning first=223 second=267 amount=-1 -kerning first=963 second=242 amount=-1 -kerning first=126 second=214 amount=-2 -kerning first=1298 second=947 amount=-4 -kerning first=41 second=226 amount=-1 -kerning first=1035 second=1262 amount=-2 -kerning first=180 second=356 amount=-5 -kerning first=184 second=116 amount=-1 -kerning first=296 second=268 amount=-2 -kerning first=61 second=368 amount=-2 -kerning first=1073 second=1069 amount=-1 -kerning first=1080 second=81 amount=-2 -kerning first=201 second=972 amount=-1 -kerning first=204 second=281 amount=-1 -kerning first=8366 second=361 amount=-1 -kerning first=8372 second=121 amount=-1 -kerning first=87 second=65 amount=-5 -kerning first=107 second=227 amount=-1 -kerning first=247 second=357 amount=-1 -kerning first=250 second=117 amount=-1 -kerning first=160 second=369 amount=-1 -kerning first=1046 second=332 amount=-3 -kerning first=300 second=216 amount=-2 -kerning first=62 second=1066 amount=-5 -kerning first=59 second=8221 amount=-3 -kerning first=328 second=118 amount=-1 -kerning first=900 second=962 amount=-1 -kerning first=85 second=916 amount=-2 -kerning first=88 second=240 amount=-2 -kerning first=105 second=1256 amount=-2 -kerning first=1203 second=333 amount=-1 -kerning first=254 second=67 amount=-2 -kerning first=167 second=79 amount=-2 -kerning first=1051 second=271 amount=-1 -kerning first=186 second=920 amount=-2 -kerning first=301 second=371 amount=-1 -kerning first=298 second=1195 amount=-1 -kerning first=69 second=253 amount=-1 -kerning first=206 second=1257 amount=-1 -kerning first=1119 second=346 amount=-1 -kerning first=946 second=360 amount=-2 -kerning first=1219 second=273 amount=-1 -kerning first=1224 second=45 amount=-2 -kerning first=255 second=242 amount=-1 -kerning first=1206 second=964 amount=-2 -kerning first=372 second=947 amount=-1 -kerning first=375 second=372 amount=-5 -kerning first=165 second=945 amount=-1 -kerning first=278 second=1240 amount=-2 -kerning first=50 second=268 amount=-2 -kerning first=1064 second=219 amount=-2 -kerning first=302 second=1069 amount=-1 +kerning first=283 second=118 amount=-1 +kerning first=283 second=119 amount=-1 +kerning first=283 second=120 amount=-2 +kerning first=283 second=122 amount=-1 +kerning first=283 second=373 amount=-1 +kerning first=283 second=378 amount=-1 +kerning first=283 second=380 amount=-1 +kerning first=283 second=382 amount=-1 +kerning first=283 second=947 amount=-1 +kerning first=283 second=955 amount=-1 +kerning first=283 second=957 amount=-1 +kerning first=283 second=964 amount=-1 +kerning first=283 second=967 amount=-2 +kerning first=283 second=1076 amount=-1 +kerning first=283 second=1078 amount=-2 +kerning first=283 second=1083 amount=-1 +kerning first=283 second=1090 amount=-1 +kerning first=283 second=1093 amount=-2 +kerning first=283 second=1098 amount=-1 +kerning first=283 second=1113 amount=-1 +kerning first=283 second=1175 amount=-2 +kerning first=283 second=1185 amount=-1 +kerning first=283 second=1199 amount=-1 +kerning first=283 second=1203 amount=-2 +kerning first=283 second=1299 amount=-1 +kerning first=283 second=8216 amount=-1 +kerning first=283 second=8217 amount=-1 +kerning first=283 second=8218 amount=-1 +kerning first=283 second=8220 amount=-1 +kerning first=283 second=8221 amount=-1 +kerning first=283 second=8222 amount=-1 +kerning first=283 second=8230 amount=-1 +kerning first=286 second=75 amount=2 +kerning first=286 second=84 amount=-1 +kerning first=286 second=86 amount=-2 +kerning first=286 second=87 amount=-1 +kerning first=286 second=89 amount=-2 +kerning first=286 second=106 amount=2 +kerning first=286 second=221 amount=-2 +kerning first=286 second=354 amount=-1 +kerning first=286 second=356 amount=-1 +kerning first=286 second=372 amount=-1 +kerning first=286 second=374 amount=-2 +kerning first=286 second=376 amount=-2 +kerning first=286 second=922 amount=2 +kerning first=286 second=932 amount=-1 +kerning first=286 second=933 amount=-2 +kerning first=286 second=939 amount=-2 +kerning first=286 second=1026 amount=-1 +kerning first=286 second=1035 amount=-1 +kerning first=286 second=1050 amount=2 +kerning first=286 second=1058 amount=-1 +kerning first=286 second=1066 amount=-1 +kerning first=286 second=1112 amount=2 +kerning first=286 second=1184 amount=-1 +kerning first=286 second=1198 amount=-2 +kerning first=288 second=75 amount=2 +kerning first=288 second=84 amount=-1 +kerning first=288 second=86 amount=-2 +kerning first=288 second=87 amount=-1 +kerning first=288 second=89 amount=-2 +kerning first=288 second=106 amount=2 +kerning first=288 second=221 amount=-2 +kerning first=288 second=354 amount=-1 +kerning first=288 second=356 amount=-1 +kerning first=288 second=372 amount=-1 +kerning first=288 second=374 amount=-2 +kerning first=288 second=376 amount=-2 +kerning first=288 second=922 amount=2 +kerning first=288 second=932 amount=-1 +kerning first=288 second=933 amount=-2 +kerning first=288 second=939 amount=-2 +kerning first=288 second=1026 amount=-1 +kerning first=288 second=1035 amount=-1 +kerning first=288 second=1050 amount=2 +kerning first=288 second=1058 amount=-1 +kerning first=288 second=1066 amount=-1 +kerning first=288 second=1112 amount=2 +kerning first=288 second=1184 amount=-1 +kerning first=288 second=1198 amount=-2 +kerning first=290 second=75 amount=2 +kerning first=290 second=84 amount=-1 +kerning first=290 second=86 amount=-2 +kerning first=290 second=87 amount=-1 +kerning first=290 second=89 amount=-2 +kerning first=290 second=106 amount=2 +kerning first=290 second=221 amount=-2 +kerning first=290 second=354 amount=-1 +kerning first=290 second=356 amount=-1 +kerning first=290 second=372 amount=-1 +kerning first=290 second=374 amount=-2 +kerning first=290 second=376 amount=-2 +kerning first=290 second=922 amount=2 +kerning first=290 second=932 amount=-1 +kerning first=290 second=933 amount=-2 +kerning first=290 second=939 amount=-2 +kerning first=290 second=1026 amount=-1 +kerning first=290 second=1035 amount=-1 +kerning first=290 second=1050 amount=2 +kerning first=290 second=1058 amount=-1 +kerning first=290 second=1066 amount=-1 +kerning first=290 second=1112 amount=2 +kerning first=290 second=1184 amount=-1 +kerning first=290 second=1198 amount=-2 +kerning first=295 second=34 amount=-1 +kerning first=295 second=39 amount=-1 +kerning first=295 second=63 amount=-2 +kerning first=295 second=102 amount=-1 +kerning first=295 second=106 amount=1 +kerning first=295 second=118 amount=-1 +kerning first=295 second=119 amount=-1 +kerning first=295 second=373 amount=-1 +kerning first=295 second=947 amount=-1 +kerning first=295 second=957 amount=-1 +kerning first=295 second=964 amount=-1 +kerning first=295 second=1090 amount=-1 +kerning first=295 second=1098 amount=-1 +kerning first=295 second=1112 amount=1 +kerning first=295 second=1185 amount=-1 +kerning first=295 second=1199 amount=-1 +kerning first=295 second=8216 amount=-1 +kerning first=295 second=8217 amount=-1 +kerning first=295 second=8220 amount=-1 +kerning first=295 second=8221 amount=-1 +kerning first=307 second=106 amount=7 +kerning first=307 second=1112 amount=7 +kerning first=310 second=38 amount=-2 +kerning first=310 second=45 amount=-4 +kerning first=310 second=63 amount=-2 +kerning first=310 second=67 amount=-3 +kerning first=310 second=71 amount=-3 +kerning first=310 second=74 amount=-1 +kerning first=310 second=79 amount=-3 kerning first=310 second=81 amount=-3 -kerning first=1096 second=121 amount=-1 -kerning first=910 second=373 amount=-2 -kerning first=1168 second=1028 amount=-2 -kerning first=1171 second=288 amount=-2 -kerning first=1027 second=232 amount=-1 -kerning first=282 second=332 amount=-2 -kerning first=8224 second=275 amount=-1 -kerning first=8220 second=966 amount=-1 -kerning first=54 second=216 amount=-2 -kerning first=1065 second=374 amount=-2 -kerning first=197 second=106 amount=1 -kerning first=77 second=118 amount=-4 -kerning first=214 second=962 amount=-1 -kerning first=926 second=83 amount=-1 -kerning first=955 second=245 amount=-1 -kerning first=380 second=949 amount=-1 -kerning first=35 second=229 amount=-1 -kerning first=174 second=359 amount=-1 -kerning first=177 second=119 amount=-4 -kerning first=52 second=1195 amount=-1 -kerning first=55 second=371 amount=-1 -kerning first=1073 second=84 amount=-5 -kerning first=195 second=1026 amount=-5 -kerning first=198 second=286 amount=-2 -kerning first=244 second=120 amount=-2 -kerning first=361 second=964 amount=-3 -kerning first=367 second=45 amount=-2 -kerning first=121 second=372 amount=-5 -kerning first=1224 second=8249 amount=-3 -kerning first=36 second=1240 amount=-2 -kerning first=1039 second=97 amount=-1 -kerning first=1036 second=335 amount=-2 -kerning first=294 second=219 amount=-2 -kerning first=56 second=1069 amount=-1 -kerning first=62 second=81 amount=-2 -kerning first=1074 second=259 amount=-1 -kerning first=202 second=231 amount=-1 -kerning first=317 second=361 amount=-1 -kerning first=322 second=121 amount=-1 -kerning first=1179 second=1095 amount=-2 -kerning first=1186 second=336 amount=-1 -kerning first=962 second=350 amount=-1 -kerning first=40 second=332 amount=-2 -kerning first=1037 second=966 amount=-1 -kerning first=1041 second=275 amount=-1 -kerning first=183 second=244 amount=-1 -kerning first=8370 second=249 amount=-1 -kerning first=8365 second=940 amount=-1 -kerning first=901 second=221 amount=-5 -kerning first=86 second=193 amount=-6 -kerning first=1116 second=111 amount=-2 -kerning first=220 second=8230 amount=-1 -kerning first=934 second=1177 amount=-1 -kerning first=249 second=245 amount=-1 -kerning first=369 second=375 amount=-1 -kerning first=126 second=949 amount=-1 -kerning first=162 second=257 amount=-1 -kerning first=41 second=963 amount=-1 -kerning first=47 second=44 amount=-4 -kerning first=187 second=194 amount=-3 -kerning first=302 second=84 amount=-5 -kerning first=1080 second=364 amount=-2 -kerning first=204 second=1090 amount=-3 -kerning first=207 second=334 amount=-2 -kerning first=327 second=246 amount=-1 -kerning first=8378 second=199 amount=-2 -kerning first=902 second=376 amount=-5 -kerning first=84 second=1107 amount=-2 -kerning first=87 second=346 amount=-1 -kerning first=1117 second=291 amount=-1 -kerning first=936 second=8212 amount=-2 -kerning first=113 second=45 amount=-2 -kerning first=367 second=8249 amount=-3 -kerning first=276 second=335 amount=-1 -kerning first=48 second=219 amount=-2 -kerning first=185 second=1108 amount=-1 -kerning first=188 second=347 amount=-1 -kerning first=303 second=259 amount=-1 -kerning first=306 second=34 amount=-3 -kerning first=332 second=196 amount=-2 -kerning first=900 second=8250 amount=-1 -kerning first=91 second=288 amount=-2 -kerning first=88 second=1028 amount=-3 -kerning first=354 second=336 amount=-1 -kerning first=1223 second=171 amount=-3 -kerning first=254 second=350 amount=-1 -kerning first=374 second=952 amount=-2 -kerning first=164 second=1176 amount=-1 -kerning first=167 second=362 amount=-2 -kerning first=283 second=47 amount=-1 -kerning first=280 second=275 amount=-1 -kerning first=8221 second=225 amount=-1 -kerning first=49 second=374 amount=-5 -kerning first=192 second=289 amount=-1 -kerning first=75 second=71 amount=-3 -kerning first=1095 second=249 amount=-1 -kerning first=1087 second=940 amount=-1 -kerning first=215 second=221 amount=-5 -kerning first=912 second=261 amount=-1 -kerning first=95 second=233 amount=-1 -kerning first=258 second=290 amount=-2 -kerning first=381 second=210 amount=-1 -kerning first=1026 second=338 amount=-2 -kerning first=165 second=8211 amount=-2 -kerning first=56 second=84 amount=-5 -kerning first=1067 second=262 amount=-2 -kerning first=196 second=234 amount=-1 -kerning first=76 second=246 amount=-1 -kerning first=1099 second=199 amount=-2 -kerning first=216 second=376 amount=-3 -kerning first=334 second=1035 amount=-2 -kerning first=923 second=211 amount=-2 -kerning first=1171 second=1098 amount=-3 -kerning first=1176 second=339 amount=-1 -kerning first=236 second=1059 amount=-2 -kerning first=1179 second=101 amount=-1 -kerning first=954 second=353 amount=-1 -kerning first=958 second=113 amount=-1 -kerning first=113 second=8249 amount=-3 -kerning first=1256 second=955 amount=-2 -kerning first=1263 second=263 amount=-1 -kerning first=34 second=335 amount=-1 -kerning first=37 second=97 amount=-1 -kerning first=57 second=259 amount=-1 -kerning first=60 second=34 amount=-3 -kerning first=1071 second=212 amount=-2 -kerning first=306 second=8216 amount=-3 -kerning first=80 second=196 amount=-4 -kerning first=214 second=8250 amount=-1 -kerning first=916 second=1184 amount=-5 -kerning first=926 second=366 amount=-2 -kerning first=100 second=336 amount=-2 -kerning first=1184 second=279 amount=-2 -kerning first=35 second=966 amount=-1 -kerning first=38 second=275 amount=-1 -kerning first=296 second=87 amount=-5 -kerning first=8260 second=267 amount=-1 -kerning first=1073 second=367 amount=-1 -kerning first=201 second=337 amount=-1 -kerning first=204 second=99 amount=-1 -kerning first=316 second=940 amount=-1 -kerning first=321 second=249 amount=-1 -kerning first=84 second=111 amount=-3 -kerning first=221 second=953 amount=-2 -kerning first=920 second=8218 amount=-1 -kerning first=101 second=967 amount=-2 -kerning first=160 second=210 amount=-2 -kerning first=273 second=100 amount=-1 -kerning first=182 second=352 amount=-1 -kerning first=297 second=262 amount=-2 -kerning first=62 second=364 amount=-2 -kerning first=202 second=968 amount=-1 -kerning first=205 second=277 amount=-1 -kerning first=325 second=199 amount=-2 -kerning first=8369 second=357 amount=-1 -kerning first=903 second=89 amount=-5 -kerning first=942 second=251 amount=-1 -kerning first=251 second=113 amount=-1 -kerning first=374 second=38 amount=-2 -kerning first=371 second=263 amount=-1 -kerning first=161 second=365 amount=-1 -kerning first=301 second=212 amount=-2 -kerning first=60 second=8216 amount=-3 -kerning first=1083 second=252 amount=-1 -kerning first=209 second=224 amount=-1 -kerning first=323 second=1118 amount=-1 -kerning first=904 second=266 amount=-2 -kerning first=375 second=213 amount=-2 -kerning first=126 second=8217 amount=-3 -kerning first=278 second=225 amount=-1 -kerning first=47 second=324 amount=-1 -kerning first=50 second=87 amount=-5 -kerning first=299 second=1185 amount=-3 -kerning first=302 second=367 amount=-1 -kerning first=70 second=249 amount=-1 -kerning first=210 second=379 amount=-1 -kerning first=327 second=1038 amount=-2 -kerning first=910 second=214 amount=-3 -kerning first=1117 second=1101 amount=-1 -kerning first=948 second=356 amount=-5 -kerning first=951 second=116 amount=-1 -kerning first=356 second=226 amount=-2 -kerning first=1220 second=268 amount=-2 -kerning first=973 second=281 amount=-1 -kerning first=169 second=250 amount=-1 -kerning first=166 second=941 amount=-1 -kerning first=279 second=380 amount=-1 -kerning first=51 second=262 amount=-2 -kerning first=191 second=1241 amount=-1 -kerning first=194 second=187 amount=-1 -kerning first=300 second=8220 amount=-3 -kerning first=74 second=199 amount=-2 -kerning first=94 second=339 amount=-1 -kerning first=91 second=1098 amount=-3 -kerning first=237 second=251 amount=-1 -kerning first=354 second=1224 amount=-2 -kerning first=114 second=955 amount=-3 -kerning first=117 second=263 amount=-1 -kerning first=8221 second=962 amount=-1 -kerning first=55 second=212 amount=-2 -kerning first=1063 second=1194 amount=-2 +kerning first=310 second=83 amount=-1 +kerning first=310 second=97 amount=-1 +kerning first=310 second=99 amount=-2 +kerning first=310 second=100 amount=-2 +kerning first=310 second=101 amount=-2 +kerning first=310 second=102 amount=-2 +kerning first=310 second=103 amount=-1 +kerning first=310 second=111 amount=-2 +kerning first=310 second=113 amount=-2 +kerning first=310 second=116 amount=-1 +kerning first=310 second=117 amount=-1 +kerning first=310 second=118 amount=-3 +kerning first=310 second=119 amount=-3 +kerning first=310 second=121 amount=-2 +kerning first=310 second=171 amount=-3 +kerning first=310 second=173 amount=-4 +kerning first=310 second=187 amount=-2 +kerning first=310 second=199 amount=-3 +kerning first=310 second=210 amount=-3 +kerning first=310 second=211 amount=-3 +kerning first=310 second=212 amount=-3 +kerning first=310 second=213 amount=-3 +kerning first=310 second=214 amount=-3 +kerning first=310 second=216 amount=-3 +kerning first=310 second=224 amount=-1 +kerning first=310 second=225 amount=-1 +kerning first=310 second=226 amount=-1 +kerning first=310 second=227 amount=-1 +kerning first=310 second=228 amount=-1 +kerning first=310 second=229 amount=-1 +kerning first=310 second=230 amount=-1 +kerning first=310 second=231 amount=-2 +kerning first=310 second=232 amount=-2 +kerning first=310 second=233 amount=-2 +kerning first=310 second=234 amount=-2 +kerning first=310 second=235 amount=-2 +kerning first=310 second=240 amount=-2 +kerning first=310 second=242 amount=-2 +kerning first=310 second=243 amount=-2 +kerning first=310 second=244 amount=-2 +kerning first=310 second=245 amount=-2 +kerning first=310 second=246 amount=-2 +kerning first=310 second=248 amount=-2 +kerning first=310 second=249 amount=-1 +kerning first=310 second=250 amount=-1 +kerning first=310 second=251 amount=-1 +kerning first=310 second=252 amount=-1 +kerning first=310 second=253 amount=-2 +kerning first=310 second=257 amount=-1 +kerning first=310 second=259 amount=-1 +kerning first=310 second=261 amount=-1 +kerning first=310 second=262 amount=-3 +kerning first=310 second=263 amount=-2 +kerning first=310 second=266 amount=-3 +kerning first=310 second=267 amount=-2 +kerning first=310 second=268 amount=-3 +kerning first=310 second=269 amount=-2 +kerning first=310 second=271 amount=-2 +kerning first=310 second=273 amount=-2 +kerning first=310 second=275 amount=-2 +kerning first=310 second=277 amount=-2 +kerning first=310 second=279 amount=-2 +kerning first=310 second=281 amount=-2 +kerning first=310 second=283 amount=-2 +kerning first=310 second=286 amount=-3 +kerning first=310 second=287 amount=-1 +kerning first=310 second=288 amount=-3 +kerning first=310 second=289 amount=-1 +kerning first=310 second=290 amount=-3 +kerning first=310 second=291 amount=-1 +kerning first=310 second=332 amount=-3 +kerning first=310 second=333 amount=-2 +kerning first=310 second=334 amount=-3 +kerning first=310 second=335 amount=-2 +kerning first=310 second=336 amount=-3 +kerning first=310 second=337 amount=-2 +kerning first=310 second=338 amount=-3 +kerning first=310 second=339 amount=-2 +kerning first=310 second=346 amount=-1 +kerning first=310 second=350 amount=-1 +kerning first=310 second=352 amount=-1 +kerning first=310 second=355 amount=-1 +kerning first=310 second=357 amount=-1 +kerning first=310 second=359 amount=-1 +kerning first=310 second=361 amount=-1 +kerning first=310 second=363 amount=-1 +kerning first=310 second=365 amount=-1 +kerning first=310 second=367 amount=-1 +kerning first=310 second=369 amount=-1 +kerning first=310 second=371 amount=-1 +kerning first=310 second=373 amount=-3 +kerning first=310 second=375 amount=-2 +kerning first=310 second=920 amount=-3 +kerning first=310 second=927 amount=-3 +kerning first=310 second=940 amount=-2 +kerning first=310 second=941 amount=-2 +kerning first=310 second=945 amount=-2 +kerning first=310 second=947 amount=-3 +kerning first=310 second=949 amount=-2 +kerning first=310 second=957 amount=-3 +kerning first=310 second=959 amount=-2 +kerning first=310 second=962 amount=-2 +kerning first=310 second=963 amount=-2 +kerning first=310 second=964 amount=-4 +kerning first=310 second=965 amount=-1 +kerning first=310 second=966 amount=-2 +kerning first=310 second=968 amount=-1 +kerning first=310 second=972 amount=-2 +kerning first=310 second=973 amount=-1 +kerning first=310 second=1028 amount=-3 +kerning first=310 second=1029 amount=-1 +kerning first=310 second=1032 amount=-1 +kerning first=310 second=1054 amount=-3 +kerning first=310 second=1057 amount=-3 +kerning first=310 second=1069 amount=-2 +kerning first=310 second=1072 amount=-1 +kerning first=310 second=1077 amount=-2 +kerning first=310 second=1079 amount=-1 +kerning first=310 second=1086 amount=-2 +kerning first=310 second=1089 amount=-2 +kerning first=310 second=1090 amount=-4 +kerning first=310 second=1091 amount=-2 +kerning first=310 second=1092 amount=-2 +kerning first=310 second=1098 amount=-4 +kerning first=310 second=1101 amount=-1 +kerning first=310 second=1104 amount=-2 +kerning first=310 second=1105 amount=-2 +kerning first=310 second=1108 amount=-2 +kerning first=310 second=1118 amount=-2 +kerning first=310 second=1176 amount=-2 +kerning first=310 second=1177 amount=-1 +kerning first=310 second=1185 amount=-4 +kerning first=310 second=1194 amount=-3 +kerning first=310 second=1195 amount=-2 +kerning first=310 second=1199 amount=-3 +kerning first=310 second=1240 amount=-3 +kerning first=310 second=1241 amount=-2 +kerning first=310 second=1256 amount=-3 +kerning first=310 second=1257 amount=-2 +kerning first=310 second=1263 amount=-2 +kerning first=310 second=8211 amount=-4 +kerning first=310 second=8212 amount=-4 +kerning first=310 second=8249 amount=-3 +kerning first=310 second=8250 amount=-2 +kerning first=311 second=45 amount=-3 +kerning first=311 second=97 amount=-1 +kerning first=311 second=99 amount=-2 +kerning first=311 second=100 amount=-2 +kerning first=311 second=101 amount=-2 +kerning first=311 second=103 amount=-2 +kerning first=311 second=106 amount=1 +kerning first=311 second=111 amount=-2 +kerning first=311 second=113 amount=-2 +kerning first=311 second=115 amount=-1 +kerning first=311 second=173 amount=-3 +kerning first=311 second=224 amount=-1 +kerning first=311 second=225 amount=-1 +kerning first=311 second=226 amount=-1 +kerning first=311 second=227 amount=-1 +kerning first=311 second=228 amount=-1 +kerning first=311 second=229 amount=-1 +kerning first=311 second=230 amount=-1 +kerning first=311 second=231 amount=-2 +kerning first=311 second=232 amount=-2 +kerning first=311 second=233 amount=-2 +kerning first=311 second=234 amount=-2 +kerning first=311 second=235 amount=-2 +kerning first=311 second=240 amount=-2 +kerning first=311 second=242 amount=-2 +kerning first=311 second=243 amount=-2 +kerning first=311 second=244 amount=-2 +kerning first=311 second=245 amount=-2 +kerning first=311 second=246 amount=-2 +kerning first=311 second=248 amount=-2 +kerning first=311 second=257 amount=-1 +kerning first=311 second=259 amount=-1 +kerning first=311 second=261 amount=-1 +kerning first=311 second=263 amount=-2 +kerning first=311 second=267 amount=-2 +kerning first=311 second=269 amount=-2 +kerning first=311 second=271 amount=-2 +kerning first=311 second=273 amount=-2 +kerning first=311 second=275 amount=-2 +kerning first=311 second=277 amount=-2 +kerning first=311 second=279 amount=-2 +kerning first=311 second=281 amount=-2 +kerning first=311 second=283 amount=-2 +kerning first=311 second=287 amount=-2 +kerning first=311 second=289 amount=-2 +kerning first=311 second=291 amount=-2 +kerning first=311 second=333 amount=-2 +kerning first=311 second=335 amount=-2 +kerning first=311 second=337 amount=-2 +kerning first=311 second=339 amount=-2 +kerning first=311 second=347 amount=-1 +kerning first=311 second=351 amount=-1 +kerning first=311 second=353 amount=-1 +kerning first=311 second=940 amount=-2 +kerning first=311 second=941 amount=-2 +kerning first=311 second=945 amount=-2 +kerning first=311 second=949 amount=-2 +kerning first=311 second=959 amount=-2 +kerning first=311 second=962 amount=-2 +kerning first=311 second=963 amount=-2 +kerning first=311 second=966 amount=-2 +kerning first=311 second=972 amount=-2 +kerning first=311 second=1072 amount=-1 +kerning first=311 second=1077 amount=-2 +kerning first=311 second=1086 amount=-2 +kerning first=311 second=1089 amount=-2 +kerning first=311 second=1092 amount=-2 +kerning first=311 second=1104 amount=-2 +kerning first=311 second=1105 amount=-2 +kerning first=311 second=1108 amount=-2 +kerning first=311 second=1109 amount=-1 +kerning first=311 second=1112 amount=1 +kerning first=311 second=1195 amount=-2 +kerning first=311 second=1241 amount=-2 +kerning first=311 second=1257 amount=-2 +kerning first=311 second=8211 amount=-3 +kerning first=311 second=8212 amount=-3 +kerning first=313 second=34 amount=-3 +kerning first=313 second=39 amount=-3 +kerning first=313 second=45 amount=-3 +kerning first=313 second=63 amount=-4 +kerning first=313 second=67 amount=-1 +kerning first=313 second=71 amount=-1 +kerning first=313 second=79 amount=-1 +kerning first=313 second=81 amount=-1 +kerning first=313 second=84 amount=-6 +kerning first=313 second=85 amount=-1 +kerning first=313 second=86 amount=-5 +kerning first=313 second=87 amount=-4 +kerning first=313 second=89 amount=-6 +kerning first=313 second=99 amount=-1 +kerning first=313 second=100 amount=-1 +kerning first=313 second=101 amount=-1 +kerning first=313 second=103 amount=-1 +kerning first=313 second=111 amount=-1 +kerning first=313 second=113 amount=-1 +kerning first=313 second=116 amount=-1 +kerning first=313 second=117 amount=-1 +kerning first=313 second=118 amount=-3 +kerning first=313 second=119 amount=-3 +kerning first=313 second=121 amount=-1 +kerning first=313 second=171 amount=-3 +kerning first=313 second=173 amount=-3 +kerning first=313 second=199 amount=-1 +kerning first=313 second=210 amount=-1 +kerning first=313 second=211 amount=-1 +kerning first=313 second=212 amount=-1 +kerning first=313 second=213 amount=-1 +kerning first=313 second=214 amount=-1 +kerning first=313 second=216 amount=-1 +kerning first=313 second=217 amount=-1 +kerning first=313 second=218 amount=-1 +kerning first=313 second=219 amount=-1 +kerning first=313 second=220 amount=-1 +kerning first=313 second=221 amount=-6 +kerning first=313 second=231 amount=-1 +kerning first=313 second=232 amount=-1 +kerning first=313 second=233 amount=-1 +kerning first=313 second=234 amount=-1 +kerning first=313 second=235 amount=-1 +kerning first=313 second=240 amount=-1 +kerning first=313 second=242 amount=-1 +kerning first=313 second=243 amount=-1 +kerning first=313 second=244 amount=-1 +kerning first=313 second=245 amount=-1 +kerning first=313 second=246 amount=-1 +kerning first=313 second=248 amount=-1 +kerning first=313 second=249 amount=-1 +kerning first=313 second=250 amount=-1 +kerning first=313 second=251 amount=-1 kerning first=313 second=252 amount=-1 -kerning first=72 second=1118 amount=-1 -kerning first=908 second=8222 amount=-1 -kerning first=928 second=79 amount=-2 -kerning first=95 second=970 amount=-1 -kerning first=121 second=213 amount=-2 -kerning first=1224 second=1195 amount=-1 -kerning first=36 second=225 amount=-1 -kerning first=1026 second=1257 amount=-1 -kerning first=175 second=355 amount=-1 -kerning first=178 second=115 amount=-1 -kerning first=289 second=267 amount=-1 -kerning first=53 second=1185 amount=-3 -kerning first=56 second=367 amount=-1 -kerning first=8361 second=360 amount=-2 -kerning first=76 second=1038 amount=-1 -kerning first=923 second=945 amount=-1 -kerning first=1176 second=1262 amount=-2 -kerning first=102 second=226 amount=-1 -kerning first=365 second=268 amount=-2 -kerning first=1263 second=1069 amount=-1 -kerning first=54 second=8220 amount=-3 -kerning first=203 second=227 amount=-1 -kerning first=323 second=117 amount=-1 -kerning first=318 second=357 amount=-1 -kerning first=223 second=369 amount=-1 -kerning first=369 second=216 amount=-2 -kerning first=123 second=1066 amount=-5 -kerning first=271 second=228 amount=-1 -kerning first=1241 second=118 amount=-1 -kerning first=184 second=240 amount=-1 -kerning first=291 second=1194 amount=-2 -kerning first=296 second=370 amount=-2 -kerning first=61 second=943 amount=-1 -kerning first=64 second=252 amount=-1 -kerning first=201 second=1256 amount=-2 -kerning first=327 second=67 amount=-2 -kerning first=8372 second=245 amount=-1 -kerning first=902 second=217 amount=-2 -kerning first=221 second=8222 amount=-4 -kerning first=944 second=119 amount=-4 -kerning first=1202 second=271 amount=-1 -kerning first=247 second=920 amount=-2 -kerning first=367 second=1195 amount=-1 -kerning first=964 second=1026 amount=-5 -kerning first=967 second=286 amount=-2 -kerning first=163 second=253 amount=-1 -kerning first=1049 second=218 amount=-2 -kerning first=1081 second=360 amount=-2 -kerning first=900 second=947 amount=-4 -kerning first=903 second=372 amount=-5 -kerning first=1118 second=287 amount=-1 -kerning first=1210 second=219 amount=-2 -kerning first=371 second=1069 amount=-1 -kerning first=377 second=81 amount=-1 -kerning first=971 second=231 amount=-1 -kerning first=8221 second=46 amount=-1 -kerning first=1047 second=1202 amount=-2 -kerning first=1051 second=373 amount=-4 -kerning first=69 second=357 amount=-1 -kerning first=72 second=117 amount=-1 -kerning first=89 second=973 amount=-2 -kerning first=1170 second=232 amount=-1 -kerning first=950 second=244 amount=-1 -kerning first=1219 second=374 amount=-5 -kerning first=258 second=106 amount=1 -kerning first=278 second=962 amount=-1 -kerning first=8222 second=221 amount=-4 -kerning first=47 second=1194 amount=-2 -kerning first=50 second=370 amount=-2 -kerning first=1067 second=83 amount=-1 -kerning first=193 second=283 amount=-1 -kerning first=76 second=67 amount=-1 -kerning first=1096 second=245 amount=-1 -kerning first=915 second=257 amount=-1 -kerning first=910 second=949 amount=-4 -kerning first=96 second=229 amount=-1 -kerning first=236 second=359 amount=-1 -kerning first=239 second=119 amount=-4 -kerning first=356 second=963 amount=-3 -kerning first=362 second=44 amount=-1 -kerning first=113 second=1195 amount=-1 -kerning first=1263 second=84 amount=-5 -kerning first=256 second=1026 amount=-5 -kerning first=973 second=1090 amount=-3 -kerning first=1027 second=334 amount=-2 -kerning first=287 second=218 amount=-2 -kerning first=8224 second=376 amount=-5 -kerning first=1068 second=258 amount=-1 -kerning first=197 second=230 amount=-1 -kerning first=74 second=923 amount=-1 -kerning first=77 second=242 amount=-1 -kerning first=214 second=947 amount=-4 -kerning first=338 second=287 amount=-1 -kerning first=94 second=1262 amount=-2 -kerning first=1184 second=97 amount=-1 -kerning first=363 second=219 amount=-2 -kerning first=952 second=1108 amount=-1 -kerning first=955 second=347 amount=-1 -kerning first=117 second=1069 amount=-1 -kerning first=123 second=81 amount=-2 -kerning first=1298 second=259 amount=-1 -kerning first=1038 second=46 amount=-1 -kerning first=177 second=243 amount=-1 -kerning first=195 second=1263 amount=-1 -kerning first=8363 second=248 amount=-1 -kerning first=928 second=362 amount=-2 -kerning first=1178 second=966 amount=-1 -kerning first=1185 second=275 amount=-2 -kerning first=1194 second=47 amount=-1 -kerning first=36 second=962 amount=-1 -kerning first=1039 second=221 amount=-5 -kerning first=297 second=83 amount=-1 -kerning first=1074 second=363 amount=-1 -kerning first=202 second=333 amount=-1 -kerning first=322 second=245 amount=-1 -kerning first=923 second=8211 amount=-2 -kerning first=102 second=963 amount=-1 -kerning first=105 second=271 amount=-1 -kerning first=371 second=84 amount=-5 -kerning first=965 second=234 amount=-1 -kerning first=8211 second=49 amount=-3 -kerning first=43 second=218 amount=-2 -kerning first=1041 second=376 amount=-5 -kerning first=183 second=346 amount=-1 -kerning first=63 second=360 amount=-2 -kerning first=1071 second=8212 amount=-2 -kerning first=209 second=45 amount=-2 -kerning first=206 second=273 amount=-1 -kerning first=203 second=964 amount=-3 -kerning first=8377 second=113 amount=-1 -kerning first=8370 second=353 amount=-1 -kerning first=904 second=85 amount=-2 -kerning first=86 second=287 amount=-1 -kerning first=1116 second=235 amount=-2 -kerning first=249 second=347 amount=-1 -kerning first=372 second=259 amount=-2 -kerning first=375 second=34 amount=-3 -kerning first=162 second=361 amount=-1 -kerning first=165 second=121 amount=-1 -kerning first=271 second=965 amount=-1 -kerning first=44 second=373 amount=-2 -kerning first=184 second=1028 amount=-2 -kerning first=1084 second=248 amount=-1 -kerning first=327 second=350 amount=-1 -kerning first=90 second=232 amount=-1 -kerning first=233 second=122 amount=-1 -kerning first=356 second=47 amount=-4 -kerning first=1220 second=87 amount=-5 -kerning first=253 second=289 amount=-1 -kerning first=973 second=99 amount=-1 -kerning first=169 second=71 amount=-2 -kerning first=45 second=1071 amount=-1 -kerning first=51 second=83 amount=-1 -kerning first=1049 second=953 amount=-1 -kerning first=191 second=233 amount=-1 -kerning first=303 second=363 amount=-1 -kerning first=300 second=1177 amount=-1 -kerning first=1174 second=100 amount=-1 -kerning first=117 second=84 amount=-5 -kerning first=1223 second=262 amount=-2 -kerning first=971 second=968 amount=-1 -kerning first=170 second=246 amount=-1 -kerning first=280 second=376 amount=-5 -kerning first=8225 second=89 amount=-5 -kerning first=304 second=1059 amount=-2 -kerning first=301 second=8212 amount=-2 -kerning first=1095 second=353 amount=-1 -kerning first=209 second=8249 amount=-3 -kerning first=912 second=365 amount=-1 -kerning first=95 second=335 amount=-1 -kerning first=121 second=34 amount=-3 -kerning first=118 second=259 amount=-1 -kerning first=375 second=8216 amount=-3 -kerning first=278 second=8250 amount=-1 -kerning first=8226 second=266 amount=-2 -kerning first=1064 second=1184 amount=-5 -kerning first=1067 second=366 amount=-2 -kerning first=196 second=336 amount=-2 -kerning first=314 second=248 amount=-1 -kerning first=1102 second=63 amount=-2 -kerning first=219 second=260 amount=-2 -kerning first=96 second=966 amount=-1 -kerning first=365 second=87 amount=-5 -kerning first=1263 second=367 amount=-1 -kerning first=382 second=940 amount=-1 -kerning first=37 second=221 amount=-5 -kerning first=179 second=111 amount=-1 -kerning first=176 second=351 amount=-1 -kerning first=287 second=953 amount=-1 -kerning first=57 second=363 amount=-1 -kerning first=54 second=1177 amount=-1 -kerning first=8365 second=116 amount=-1 -kerning first=80 second=290 amount=-2 -kerning first=223 second=210 amount=-2 -kerning first=934 second=250 amount=-1 -kerning first=926 second=941 amount=-1 -kerning first=960 second=1241 amount=-1 -kerning first=963 second=187 amount=-1 -kerning first=123 second=364 amount=-2 -kerning first=1257 second=8220 amount=-1 -kerning first=38 second=376 amount=-4 -kerning first=1035 second=1079 amount=-1 -kerning first=177 second=1035 amount=-5 -kerning first=180 second=291 amount=-1 -kerning first=1044 second=89 amount=-2 -kerning first=296 second=211 amount=-2 -kerning first=8260 second=369 amount=-1 -kerning first=55 second=8212 amount=-4 -kerning first=58 second=1059 amount=-2 -kerning first=321 second=353 amount=-1 -kerning first=902 second=38 amount=-1 -kerning first=84 second=235 amount=-3 -kerning first=221 second=1179 amount=-3 -kerning first=121 second=8216 amount=-3 -kerning first=273 second=224 amount=-1 -kerning first=36 second=8250 amount=-1 -kerning first=45 second=86 amount=-3 -kerning first=1049 second=39 amount=-3 -kerning first=1046 second=266 amount=-3 -kerning first=294 second=1184 amount=-5 -kerning first=297 second=366 amount=-2 -kerning first=65 second=248 amount=-1 -kerning first=328 second=63 amount=-2 -kerning first=8369 second=920 amount=-2 -kerning first=903 second=213 amount=-2 -kerning first=1118 second=103 amount=-1 -kerning first=942 second=355 amount=-1 -kerning first=1203 second=267 amount=-1 -kerning first=371 second=367 amount=-1 -kerning first=164 second=249 amount=-1 -kerning first=161 second=940 amount=-1 -kerning first=43 second=953 amount=-1 -kerning first=1051 second=214 amount=-2 -kerning first=1083 second=356 amount=-5 -kerning first=1087 second=116 amount=-1 -kerning first=212 second=88 amount=-3 -kerning first=904 second=368 amount=-2 -kerning first=86 second=1097 amount=-2 -kerning first=92 second=100 amount=-1 -kerning first=1119 second=281 amount=-1 -kerning first=89 second=338 amount=-3 -kerning first=1116 second=972 amount=-2 -kerning first=252 second=1241 amount=-1 -kerning first=255 second=187 amount=-1 -kerning first=369 second=8220 amount=-3 -kerning first=168 second=199 amount=-2 -kerning first=50 second=211 amount=-2 -kerning first=190 second=339 amount=-1 -kerning first=193 second=101 amount=-1 -kerning first=305 second=251 amount=-1 -kerning first=70 second=353 amount=-1 -kerning first=73 second=113 amount=-1 -kerning first=210 second=955 amount=-2 -kerning first=902 second=8221 amount=-3 -kerning first=905 second=1066 amount=-5 -kerning first=1171 second=228 amount=-1 -kerning first=951 second=240 amount=-1 -kerning first=1220 second=370 amount=-2 -kerning first=259 second=102 amount=-1 -kerning first=376 second=943 amount=-2 -kerning first=169 second=354 amount=-5 -kerning first=166 second=1118 amount=-1 -kerning first=282 second=266 amount=-2 -kerning first=287 second=39 amount=-3 -kerning first=8224 second=217 amount=-2 -kerning first=48 second=1184 amount=-5 -kerning first=51 second=366 amount=-2 -kerning first=194 second=279 amount=-1 -kerning first=191 second=970 amount=-1 -kerning first=338 second=103 amount=-1 -kerning first=916 second=253 amount=-1 -kerning first=1169 second=1257 amount=-1 -kerning first=240 second=115 amount=-1 -kerning first=237 second=355 amount=-1 -kerning first=117 second=367 amount=-1 -kerning first=170 second=1038 amount=-2 -kerning first=8225 second=372 amount=-5 -kerning first=198 second=226 amount=-1 -kerning first=316 second=116 amount=-1 +kerning first=313 second=253 amount=-1 +kerning first=313 second=262 amount=-1 +kerning first=313 second=263 amount=-1 +kerning first=313 second=266 amount=-1 +kerning first=313 second=267 amount=-1 +kerning first=313 second=268 amount=-1 +kerning first=313 second=269 amount=-1 +kerning first=313 second=271 amount=-1 +kerning first=313 second=273 amount=-1 +kerning first=313 second=275 amount=-1 +kerning first=313 second=277 amount=-1 +kerning first=313 second=279 amount=-1 +kerning first=313 second=281 amount=-1 +kerning first=313 second=283 amount=-1 +kerning first=313 second=286 amount=-1 +kerning first=313 second=287 amount=-1 +kerning first=313 second=288 amount=-1 +kerning first=313 second=289 amount=-1 +kerning first=313 second=290 amount=-1 +kerning first=313 second=291 amount=-1 +kerning first=313 second=332 amount=-1 +kerning first=313 second=333 amount=-1 +kerning first=313 second=334 amount=-1 +kerning first=313 second=335 amount=-1 +kerning first=313 second=336 amount=-1 +kerning first=313 second=337 amount=-1 +kerning first=313 second=338 amount=-1 +kerning first=313 second=339 amount=-1 +kerning first=313 second=354 amount=-6 +kerning first=313 second=355 amount=-1 kerning first=313 second=356 amount=-6 -kerning first=98 second=380 amount=-1 -kerning first=115 second=8220 amount=-1 -kerning first=1036 second=269 amount=-2 -kerning first=289 second=369 amount=-1 -kerning first=59 second=251 amount=-1 -kerning first=199 second=381 amount=-1 -kerning first=8364 second=244 amount=-1 -kerning first=343 second=228 amount=-1 -kerning first=1179 second=962 amount=-1 -kerning first=365 second=370 amount=-2 -kerning first=962 second=283 amount=-1 -kerning first=125 second=252 amount=-1 -kerning first=40 second=266 amount=-2 -kerning first=43 second=39 amount=-3 -kerning first=1041 second=217 amount=-2 -kerning first=298 second=79 amount=-2 -kerning first=318 second=920 amount=-2 -kerning first=86 second=103 amount=-3 -kerning first=1103 second=1026 amount=-5 -kerning first=341 second=1257 amount=-1 -kerning first=934 second=1046 amount=-5 -kerning first=44 second=214 amount=-1 -kerning first=180 second=1101 amount=-1 -kerning first=296 second=945 amount=-1 -kerning first=64 second=356 amount=-5 -kerning first=207 second=268 amount=-2 -kerning first=8366 second=1108 amount=-1 -kerning first=8372 second=347 amount=-1 -kerning first=905 second=81 amount=-2 -kerning first=84 second=972 amount=-3 -kerning first=87 second=281 amount=-3 -kerning first=1117 second=231 amount=-1 -kerning first=944 second=243 amount=-1 -kerning first=1194 second=1202 amount=-2 -kerning first=1202 second=373 amount=-2 -kerning first=964 second=1263 amount=-1 -kerning first=163 second=357 amount=-1 -kerning first=166 second=117 amount=-1 -kerning first=276 second=269 amount=-1 -kerning first=185 second=973 amount=-1 -kerning first=1085 second=244 amount=-1 -kerning first=91 second=228 amount=-1 -kerning first=234 second=118 amount=-1 -kerning first=108 second=1194 amount=-2 -kerning first=1223 second=83 amount=-1 -kerning first=254 second=283 amount=-1 -kerning first=971 second=333 amount=-1 -kerning first=170 second=67 amount=-2 -kerning first=280 second=217 amount=-2 -kerning first=52 second=79 amount=-2 -kerning first=1051 second=949 amount=-1 -kerning first=1063 second=257 amount=-1 -kerning first=192 second=229 amount=-1 -kerning first=304 second=359 amount=-1 -kerning first=69 second=920 amount=-2 -kerning first=209 second=1195 amount=-1 -kerning first=330 second=1026 amount=-5 -kerning first=89 second=1257 amount=-4 -kerning first=1170 second=334 amount=-2 -kerning first=1119 second=1090 amount=-3 -kerning first=358 second=218 amount=-2 -kerning first=950 second=346 amount=-1 -kerning first=258 second=230 amount=-1 -kerning first=972 second=964 amount=-1 -kerning first=1026 second=273 amount=-1 -kerning first=278 second=947 amount=-4 -kerning first=8226 second=85 amount=-2 -kerning first=50 second=945 amount=-1 -kerning first=193 second=1240 amount=-2 -kerning first=190 second=1262 amount=-2 -kerning first=1096 second=347 amount=-1 -kerning first=1090 second=1108 amount=-1 -kerning first=910 second=1175 amount=-2 -kerning first=915 second=361 amount=-1 -kerning first=923 second=121 amount=-1 -kerning first=1171 second=965 amount=-1 -kerning first=239 second=243 amount=-1 -kerning first=951 second=1028 amount=-2 -kerning first=256 second=1263 amount=-1 -kerning first=34 second=269 amount=-1 -kerning first=197 second=332 amount=-2 +kerning first=313 second=357 amount=-1 +kerning first=313 second=359 amount=-1 +kerning first=313 second=360 amount=-1 +kerning first=313 second=361 amount=-1 +kerning first=313 second=362 amount=-1 +kerning first=313 second=363 amount=-1 +kerning first=313 second=364 amount=-1 +kerning first=313 second=365 amount=-1 +kerning first=313 second=366 amount=-1 +kerning first=313 second=367 amount=-1 +kerning first=313 second=368 amount=-1 +kerning first=313 second=369 amount=-1 +kerning first=313 second=370 amount=-1 +kerning first=313 second=371 amount=-1 +kerning first=313 second=372 amount=-4 +kerning first=313 second=373 amount=-3 +kerning first=313 second=374 amount=-6 +kerning first=313 second=375 amount=-1 +kerning first=313 second=376 amount=-6 +kerning first=313 second=920 amount=-1 +kerning first=313 second=927 amount=-1 +kerning first=313 second=932 amount=-6 +kerning first=313 second=933 amount=-6 +kerning first=313 second=939 amount=-6 +kerning first=313 second=940 amount=-1 +kerning first=313 second=941 amount=-1 +kerning first=313 second=945 amount=-1 +kerning first=313 second=947 amount=-3 +kerning first=313 second=949 amount=-1 +kerning first=313 second=957 amount=-3 +kerning first=313 second=959 amount=-1 +kerning first=313 second=962 amount=-1 +kerning first=313 second=963 amount=-1 +kerning first=313 second=965 amount=-1 +kerning first=313 second=966 amount=-1 +kerning first=313 second=968 amount=-1 +kerning first=313 second=972 amount=-1 +kerning first=313 second=973 amount=-1 +kerning first=313 second=1026 amount=-6 +kerning first=313 second=1028 amount=-1 +kerning first=313 second=1035 amount=-6 +kerning first=313 second=1038 amount=-1 +kerning first=313 second=1054 amount=-1 +kerning first=313 second=1057 amount=-1 +kerning first=313 second=1058 amount=-6 +kerning first=313 second=1059 amount=-1 +kerning first=313 second=1066 amount=-6 +kerning first=313 second=1077 amount=-1 +kerning first=313 second=1086 amount=-1 +kerning first=313 second=1089 amount=-1 +kerning first=313 second=1091 amount=-1 +kerning first=313 second=1092 amount=-1 +kerning first=313 second=1104 amount=-1 +kerning first=313 second=1105 amount=-1 +kerning first=313 second=1108 amount=-1 +kerning first=313 second=1118 amount=-1 +kerning first=313 second=1184 amount=-6 +kerning first=313 second=1194 amount=-1 +kerning first=313 second=1195 amount=-1 +kerning first=313 second=1198 amount=-6 +kerning first=313 second=1199 amount=-3 +kerning first=313 second=1240 amount=-1 +kerning first=313 second=1241 amount=-1 +kerning first=313 second=1256 amount=-1 +kerning first=313 second=1257 amount=-1 +kerning first=313 second=1262 amount=-1 +kerning first=313 second=1263 amount=-1 +kerning first=313 second=8211 amount=-3 +kerning first=313 second=8212 amount=-3 +kerning first=313 second=8216 amount=-3 +kerning first=313 second=8217 amount=-3 +kerning first=313 second=8220 amount=-3 +kerning first=313 second=8221 amount=-3 +kerning first=313 second=8249 amount=-3 +kerning first=315 second=34 amount=-3 +kerning first=315 second=39 amount=-3 +kerning first=315 second=45 amount=-3 +kerning first=315 second=63 amount=-4 +kerning first=315 second=67 amount=-1 +kerning first=315 second=71 amount=-1 +kerning first=315 second=79 amount=-1 +kerning first=315 second=81 amount=-1 +kerning first=315 second=84 amount=-6 +kerning first=315 second=85 amount=-1 +kerning first=315 second=86 amount=-5 +kerning first=315 second=87 amount=-4 +kerning first=315 second=89 amount=-6 +kerning first=315 second=99 amount=-1 +kerning first=315 second=100 amount=-1 +kerning first=315 second=101 amount=-1 +kerning first=315 second=103 amount=-1 +kerning first=315 second=111 amount=-1 +kerning first=315 second=113 amount=-1 +kerning first=315 second=116 amount=-1 +kerning first=315 second=117 amount=-1 +kerning first=315 second=118 amount=-3 +kerning first=315 second=119 amount=-3 +kerning first=315 second=121 amount=-1 +kerning first=315 second=171 amount=-3 +kerning first=315 second=173 amount=-3 +kerning first=315 second=199 amount=-1 +kerning first=315 second=210 amount=-1 +kerning first=315 second=211 amount=-1 +kerning first=315 second=212 amount=-1 +kerning first=315 second=213 amount=-1 +kerning first=315 second=214 amount=-1 +kerning first=315 second=216 amount=-1 +kerning first=315 second=217 amount=-1 +kerning first=315 second=218 amount=-1 +kerning first=315 second=219 amount=-1 +kerning first=315 second=220 amount=-1 +kerning first=315 second=221 amount=-6 +kerning first=315 second=231 amount=-1 +kerning first=315 second=232 amount=-1 +kerning first=315 second=233 amount=-1 +kerning first=315 second=234 amount=-1 +kerning first=315 second=235 amount=-1 +kerning first=315 second=240 amount=-1 +kerning first=315 second=242 amount=-1 +kerning first=315 second=243 amount=-1 kerning first=315 second=244 amount=-1 -kerning first=80 second=106 amount=1 -kerning first=220 second=256 amount=-2 -kerning first=934 second=71 amount=-2 -kerning first=960 second=233 amount=-1 -kerning first=1298 second=363 amount=-1 -kerning first=38 second=217 amount=-2 -kerning first=1035 second=375 amount=-1 -kerning first=291 second=257 amount=-1 -kerning first=8260 second=210 amount=-2 -kerning first=61 second=119 amount=-4 -kerning first=58 second=359 amount=-1 -kerning first=1069 second=1051 amount=-1 -kerning first=198 second=963 amount=-1 -kerning first=201 second=271 amount=-1 -kerning first=8363 second=352 amount=-1 -kerning first=78 second=1026 amount=-5 -kerning first=339 second=1090 amount=-1 -kerning first=936 second=246 amount=-1 -kerning first=124 second=360 amount=-2 -kerning first=1299 second=1059 amount=-2 -kerning first=273 second=45 amount=-2 -kerning first=36 second=947 amount=-4 -kerning first=182 second=287 amount=-1 -kerning first=205 second=219 amount=-2 -kerning first=317 second=1108 amount=-1 -kerning first=322 second=347 amount=-1 -kerning first=903 second=34 amount=-3 -kerning first=900 second=259 amount=-1 -kerning first=105 second=373 amount=-4 -kerning first=965 second=336 amount=-2 -kerning first=274 second=220 amount=-2 -kerning first=1047 second=260 amount=-1 -kerning first=186 second=232 amount=-1 -kerning first=298 second=362 amount=-2 -kerning first=206 second=374 amount=-5 -kerning first=1116 second=337 amount=-2 -kerning first=1119 second=99 amount=-1 -kerning first=352 second=221 amount=-2 -kerning first=946 second=111 amount=-1 -kerning first=252 second=233 amount=-1 -kerning first=369 second=1177 amount=-1 -kerning first=372 second=363 amount=-2 -kerning first=966 second=967 amount=-2 -kerning first=165 second=245 amount=-1 -kerning first=47 second=257 amount=-1 -kerning first=296 second=8211 amount=-2 -kerning first=70 second=194 amount=-4 -kerning first=1084 second=352 amount=-1 -kerning first=213 second=84 amount=-2 -kerning first=8378 second=1241 amount=-1 -kerning first=905 second=364 amount=-2 -kerning first=90 second=334 amount=-1 -kerning first=1117 second=968 amount=-1 -kerning first=1168 second=277 amount=-1 -kerning first=944 second=1035 amount=-5 -kerning first=948 second=291 amount=-1 -kerning first=1220 second=211 amount=-2 -kerning first=273 second=8249 amount=-3 -kerning first=282 second=85 amount=-2 -kerning first=8220 second=263 amount=-1 -kerning first=191 second=335 amount=-1 -kerning first=194 second=97 amount=-1 -kerning first=214 second=259 amount=-1 -kerning first=903 second=8216 amount=-3 -kerning first=916 second=74 amount=-1 -kerning first=91 second=965 amount=-1 -kerning first=354 second=1075 amount=-2 -kerning first=1210 second=1184 amount=-5 -kerning first=1223 second=366 amount=-2 -kerning first=380 second=248 amount=-1 -kerning first=1028 second=171 amount=-1 -kerning first=170 second=350 amount=-1 -kerning first=8225 second=213 amount=-2 -kerning first=49 second=1176 amount=-1 -kerning first=52 second=362 amount=-2 -kerning first=1051 second=8217 amount=-3 -kerning first=192 second=966 amount=-1 -kerning first=195 second=275 amount=-1 -kerning first=75 second=289 amount=-1 -kerning first=912 second=940 amount=-1 -kerning first=238 second=351 amount=-1 -kerning first=361 second=261 amount=-1 -kerning first=358 second=953 amount=-1 -kerning first=1240 second=198 amount=-2 -kerning first=175 second=290 amount=-2 -kerning first=289 second=210 amount=-2 -kerning first=8226 second=368 amount=-2 -kerning first=50 second=8211 amount=-1 -kerning first=1067 second=941 amount=-1 -kerning first=314 second=352 amount=-1 -kerning first=1099 second=1241 amount=-1 -kerning first=931 second=199 amount=-2 -kerning first=1176 second=1079 amount=-1 -kerning first=1186 second=89 amount=-2 -kerning first=239 second=1035 amount=-5 -kerning first=365 second=211 amount=-2 -kerning first=958 second=339 amount=-1 -kerning first=962 second=101 amount=-1 -kerning first=40 second=85 amount=-2 -kerning first=1037 second=263 amount=-1 -kerning first=179 second=235 amount=-1 -kerning first=8224 second=8221 amount=-3 -kerning first=8230 second=1066 amount=-5 -kerning first=8365 second=240 amount=-1 -kerning first=926 second=1118 amount=-1 -kerning first=934 second=354 amount=-5 -kerning first=363 second=1184 amount=-5 -kerning first=963 second=279 amount=-1 -kerning first=960 second=970 amount=-1 -kerning first=126 second=248 amount=-1 -kerning first=271 second=171 amount=-3 -kerning first=1241 second=63 amount=-2 -kerning first=1044 second=213 amount=-1 -kerning first=1080 second=115 amount=-1 -kerning first=207 second=87 amount=-5 -kerning first=84 second=337 amount=-3 -kerning first=87 second=99 amount=-3 -kerning first=936 second=1038 amount=-2 -kerning first=107 second=261 amount=-1 -kerning first=1202 second=214 amount=-1 -kerning first=364 second=8218 amount=-1 -kerning first=967 second=226 amount=-1 -kerning first=269 second=1078 amount=-1 -kerning first=185 second=338 amount=-2 -kerning first=188 second=100 amount=-1 -kerning first=300 second=250 amount=-1 -kerning first=297 second=941 amount=-1 -kerning first=65 second=352 amount=-1 -kerning first=325 second=1241 amount=-1 -kerning first=88 second=277 amount=-2 -kerning first=1118 second=227 amount=-1 -kerning first=248 second=1098 amount=-1 -kerning first=251 second=339 amount=-1 -kerning first=254 second=101 amount=-1 -kerning first=374 second=251 amount=-2 -kerning first=167 second=113 amount=-1 -kerning first=164 second=353 amount=-1 -kerning first=46 second=365 amount=-1 -kerning first=1041 second=8221 amount=-3 -kerning first=1047 second=1066 amount=-1 -kerning first=1087 second=240 amount=-1 -kerning first=333 second=102 amount=-1 -kerning first=904 second=943 amount=-1 -kerning first=92 second=224 amount=-1 -kerning first=358 second=39 amount=-3 -kerning first=947 second=8222 amount=-2 -kerning first=1224 second=79 amount=-2 -kerning first=255 second=279 amount=-1 -kerning first=252 second=970 amount=-1 -kerning first=8218 second=371 amount=-1 -kerning first=44 second=8217 amount=-1 -kerning first=1064 second=253 amount=-1 -kerning first=193 second=225 amount=-1 -kerning first=305 second=355 amount=-1 -kerning first=948 second=1101 amount=-1 -kerning first=1220 second=945 amount=-1 -kerning first=1027 second=268 amount=-2 -kerning first=282 second=368 amount=-2 -kerning first=8230 second=81 amount=-1 -kerning first=54 second=250 amount=-1 -kerning first=51 second=941 amount=-1 -kerning first=74 second=1241 amount=-1 -kerning first=77 second=187 amount=-1 -kerning first=338 second=227 amount=-1 -kerning first=916 second=357 amount=-1 -kerning first=926 second=117 amount=-1 -kerning first=94 second=1079 amount=-1 -kerning first=100 second=89 amount=-5 -kerning first=952 second=973 amount=-1 -kerning first=35 second=263 amount=-1 -kerning first=1035 second=216 amount=-2 -kerning first=280 second=8221 amount=-3 -kerning first=1073 second=118 amount=-4 -kerning first=316 second=240 amount=-1 -kerning first=221 second=252 amount=-2 -kerning first=339 second=382 amount=-1 -kerning first=920 second=1044 amount=-1 -kerning first=936 second=67 amount=-2 -kerning first=104 second=39 amount=-1 -kerning first=367 second=79 amount=-2 -kerning first=1299 second=359 amount=-1 -kerning first=1036 second=371 amount=-1 -kerning first=182 second=103 amount=-1 -kerning first=294 second=253 amount=-1 -kerning first=59 second=355 amount=-1 -kerning first=62 second=115 amount=-1 -kerning first=202 second=267 amount=-1 -kerning first=1070 second=1046 amount=-3 -kerning first=8364 second=346 amount=-1 -kerning first=105 second=214 amount=-2 -kerning first=365 second=945 amount=-1 -kerning first=962 second=1240 amount=-2 -kerning first=958 second=1262 amount=-2 -kerning first=125 second=356 amount=-5 -kerning first=161 second=116 amount=-1 -kerning first=40 second=368 amount=-2 -kerning first=1037 second=1069 amount=-1 -kerning first=179 second=972 amount=-1 -kerning first=183 second=281 amount=-1 -kerning first=8250 second=1175 amount=-2 -kerning first=66 second=65 amount=-1 -kerning first=8365 second=1028 amount=-2 -kerning first=8370 second=288 amount=-2 -kerning first=86 second=227 amount=-3 -kerning first=1103 second=1263 amount=-1 -kerning first=41 second=1066 amount=-5 -kerning first=38 second=8221 amount=-3 -kerning first=302 second=118 amount=-4 -kerning first=204 second=1194 amount=-2 -kerning first=207 second=370 amount=-2 -kerning first=327 second=283 amount=-1 -kerning first=8378 second=233 amount=-1 -kerning first=84 second=1256 amount=-1 -kerning first=87 second=382 amount=-1 -kerning first=1117 second=333 amount=-1 -kerning first=113 second=79 amount=-2 -kerning first=1202 second=949 amount=-1 -kerning first=253 second=229 amount=-1 -kerning first=376 second=119 amount=-2 -kerning first=967 second=963 amount=-1 -kerning first=163 second=920 amount=-2 -kerning first=273 second=1195 amount=-1 -kerning first=276 second=371 amount=-1 -kerning first=48 second=253 amount=-1 -kerning first=185 second=1257 amount=-1 -kerning first=1085 second=346 amount=-1 -kerning first=906 second=360 amount=-2 -kerning first=1118 second=964 amount=-3 -kerning first=1174 second=45 amount=-2 -kerning first=1169 second=273 amount=-1 -kerning first=351 second=947 amount=-1 -kerning first=251 second=1262 amount=-2 -kerning first=254 second=1240 amount=-2 -kerning first=8225 second=34 amount=-3 -kerning first=8221 second=259 amount=-1 -kerning first=1063 second=361 amount=-1 -kerning first=1087 second=1028 amount=-2 -kerning first=1095 second=288 amount=-2 -kerning first=330 second=1263 amount=-1 -kerning first=95 second=269 amount=-1 -kerning first=1224 second=362 amount=-2 -kerning first=1219 second=1176 amount=-1 -kerning first=258 second=332 amount=-2 -kerning first=381 second=244 amount=-1 -kerning first=1026 second=374 amount=-5 -kerning first=972 second=1203 amount=-2 -kerning first=175 second=106 amount=1 -kerning first=56 second=118 amount=-4 -kerning first=193 second=962 amount=-1 -kerning first=8361 second=111 amount=-1 -kerning first=76 second=283 amount=-1 -kerning first=1099 second=233 amount=-1 -kerning first=923 second=245 amount=-1 -kerning first=1176 second=375 amount=-1 -kerning first=1220 second=8211 amount=-2 -kerning first=1256 second=1051 amount=-1 -kerning first=172 second=1026 amount=-5 -kerning first=1037 second=84 amount=-5 -kerning first=176 second=286 amount=-2 -kerning first=8230 second=364 amount=-1 -kerning first=1071 second=246 amount=-1 -kerning first=200 second=218 amount=-2 -kerning first=80 second=230 amount=-1 -kerning first=338 second=964 amount=-3 -kerning first=344 second=45 amount=-1 -kerning first=341 second=273 amount=-1 -kerning first=97 second=947 amount=-1 -kerning first=100 second=372 amount=-5 -kerning first=1174 second=8249 amount=-1 -kerning first=960 second=335 amount=-1 -kerning first=963 second=97 amount=-1 -kerning first=35 second=1069 amount=-1 -kerning first=41 second=81 amount=-2 -kerning first=1044 second=34 amount=-2 -kerning first=180 second=231 amount=-1 -kerning first=291 second=361 amount=-1 -kerning first=8225 second=8216 amount=-3 -kerning first=296 second=121 amount=-1 -kerning first=61 second=243 amount=-1 -kerning first=201 second=373 amount=-4 -kerning first=316 second=1028 amount=-2 -kerning first=321 second=288 amount=-2 -kerning first=78 second=1263 amount=-1 -kerning first=936 second=350 amount=-1 -kerning first=1194 second=260 amount=-1 -kerning first=247 second=232 amount=-1 -kerning first=367 second=362 amount=-2 -kerning first=964 second=275 amount=-1 -kerning first=160 second=244 amount=-1 -kerning first=300 second=71 amount=-2 -kerning first=1078 second=351 amount=-1 -kerning first=1081 second=111 amount=-1 -kerning first=199 second=8230 amount=-1 -kerning first=325 second=233 amount=-1 -kerning first=900 second=363 amount=-1 -kerning first=942 second=290 amount=-2 -kerning first=105 second=949 amount=-1 -kerning first=108 second=257 amount=-1 -kerning first=245 second=1299 amount=-1 -kerning first=365 second=8211 amount=-2 -kerning first=368 second=1051 amount=-1 -kerning first=183 second=1090 amount=-3 -kerning first=186 second=334 amount=-2 -kerning first=301 second=246 amount=-1 -kerning first=1083 second=291 amount=-1 -kerning first=8370 second=1098 amount=-3 -kerning first=8377 second=339 amount=-1 -kerning first=901 second=1059 amount=-2 -kerning first=92 second=45 amount=-2 -kerning first=86 second=964 amount=-3 -kerning first=89 second=273 amount=-4 -kerning first=344 second=8249 amount=-1 -kerning first=946 second=235 amount=-1 -kerning first=252 second=335 amount=-1 -kerning first=255 second=97 amount=-1 -kerning first=162 second=1108 amount=-1 -kerning first=165 second=347 amount=-1 -kerning first=278 second=259 amount=-1 -kerning first=281 second=34 amount=-1 -kerning first=8218 second=212 amount=-1 -kerning first=47 second=361 amount=-1 -kerning first=50 second=121 amount=-1 -kerning first=1044 second=8216 amount=-2 -kerning first=70 second=288 amount=-2 -kerning first=8378 second=970 amount=-1 -kerning first=910 second=248 amount=-4 -kerning first=93 second=220 amount=-2 -kerning first=1171 second=171 amount=-3 -kerning first=230 second=1113 amount=-1 -kerning first=356 second=260 amount=-6 -kerning first=113 second=362 amount=-2 -kerning first=1202 second=8217 amount=-2 -kerning first=253 second=966 amount=-1 -kerning first=256 second=275 amount=-1 -kerning first=1027 second=87 amount=-5 -kerning first=169 second=289 amount=-1 -kerning first=54 second=71 amount=-2 -kerning first=1062 second=940 amount=-1 -kerning first=194 second=221 amount=-5 -kerning first=306 second=351 amount=-1 -kerning first=74 second=233 amount=-1 -kerning first=311 second=111 amount=-2 -kerning first=214 second=363 amount=-1 +kerning first=315 second=245 amount=-1 +kerning first=315 second=246 amount=-1 +kerning first=315 second=248 amount=-1 +kerning first=315 second=249 amount=-1 +kerning first=315 second=250 amount=-1 +kerning first=315 second=251 amount=-1 +kerning first=315 second=252 amount=-1 +kerning first=315 second=253 amount=-1 +kerning first=315 second=262 amount=-1 +kerning first=315 second=263 amount=-1 +kerning first=315 second=266 amount=-1 +kerning first=315 second=267 amount=-1 +kerning first=315 second=268 amount=-1 +kerning first=315 second=269 amount=-1 +kerning first=315 second=271 amount=-1 +kerning first=315 second=273 amount=-1 +kerning first=315 second=275 amount=-1 +kerning first=315 second=277 amount=-1 +kerning first=315 second=279 amount=-1 +kerning first=315 second=281 amount=-1 +kerning first=315 second=283 amount=-1 +kerning first=315 second=286 amount=-1 +kerning first=315 second=287 amount=-1 +kerning first=315 second=288 amount=-1 +kerning first=315 second=289 amount=-1 +kerning first=315 second=290 amount=-1 +kerning first=315 second=291 amount=-1 +kerning first=315 second=332 amount=-1 +kerning first=315 second=333 amount=-1 +kerning first=315 second=334 amount=-1 +kerning first=315 second=335 amount=-1 +kerning first=315 second=336 amount=-1 +kerning first=315 second=337 amount=-1 +kerning first=315 second=338 amount=-1 +kerning first=315 second=339 amount=-1 +kerning first=315 second=354 amount=-6 +kerning first=315 second=355 amount=-1 +kerning first=315 second=356 amount=-6 +kerning first=315 second=357 amount=-1 +kerning first=315 second=359 amount=-1 +kerning first=315 second=360 amount=-1 +kerning first=315 second=361 amount=-1 +kerning first=315 second=362 amount=-1 +kerning first=315 second=363 amount=-1 +kerning first=315 second=364 amount=-1 +kerning first=315 second=365 amount=-1 +kerning first=315 second=366 amount=-1 +kerning first=315 second=367 amount=-1 +kerning first=315 second=368 amount=-1 +kerning first=315 second=369 amount=-1 +kerning first=315 second=370 amount=-1 +kerning first=315 second=371 amount=-1 +kerning first=315 second=372 amount=-4 +kerning first=315 second=373 amount=-3 +kerning first=315 second=374 amount=-6 +kerning first=315 second=375 amount=-1 +kerning first=315 second=376 amount=-6 +kerning first=315 second=920 amount=-1 +kerning first=315 second=927 amount=-1 +kerning first=315 second=932 amount=-6 +kerning first=315 second=933 amount=-6 +kerning first=315 second=939 amount=-6 +kerning first=315 second=940 amount=-1 +kerning first=315 second=941 amount=-1 +kerning first=315 second=945 amount=-1 +kerning first=315 second=947 amount=-3 +kerning first=315 second=949 amount=-1 +kerning first=315 second=957 amount=-3 +kerning first=315 second=959 amount=-1 +kerning first=315 second=962 amount=-1 +kerning first=315 second=963 amount=-1 +kerning first=315 second=965 amount=-1 +kerning first=315 second=966 amount=-1 +kerning first=315 second=968 amount=-1 +kerning first=315 second=972 amount=-1 +kerning first=315 second=973 amount=-1 +kerning first=315 second=1026 amount=-6 +kerning first=315 second=1028 amount=-1 +kerning first=315 second=1035 amount=-6 +kerning first=315 second=1038 amount=-1 +kerning first=315 second=1054 amount=-1 +kerning first=315 second=1057 amount=-1 +kerning first=315 second=1058 amount=-6 +kerning first=315 second=1059 amount=-1 +kerning first=315 second=1066 amount=-6 +kerning first=315 second=1077 amount=-1 +kerning first=315 second=1086 amount=-1 +kerning first=315 second=1089 amount=-1 +kerning first=315 second=1091 amount=-1 +kerning first=315 second=1092 amount=-1 +kerning first=315 second=1104 amount=-1 +kerning first=315 second=1105 amount=-1 +kerning first=315 second=1108 amount=-1 +kerning first=315 second=1118 amount=-1 +kerning first=315 second=1184 amount=-6 +kerning first=315 second=1194 amount=-1 +kerning first=315 second=1195 amount=-1 +kerning first=315 second=1198 amount=-6 +kerning first=315 second=1199 amount=-3 +kerning first=315 second=1240 amount=-1 +kerning first=315 second=1241 amount=-1 +kerning first=315 second=1256 amount=-1 +kerning first=315 second=1257 amount=-1 +kerning first=315 second=1262 amount=-1 +kerning first=315 second=1263 amount=-1 +kerning first=315 second=8211 amount=-3 +kerning first=315 second=8212 amount=-3 +kerning first=315 second=8216 amount=-3 +kerning first=315 second=8217 amount=-3 +kerning first=315 second=8220 amount=-3 +kerning first=315 second=8221 amount=-3 +kerning first=315 second=8249 amount=-3 +kerning first=324 second=34 amount=-1 +kerning first=324 second=39 amount=-1 +kerning first=324 second=63 amount=-2 +kerning first=324 second=102 amount=-1 +kerning first=324 second=106 amount=1 +kerning first=324 second=118 amount=-1 +kerning first=324 second=119 amount=-1 +kerning first=324 second=373 amount=-1 +kerning first=324 second=947 amount=-1 +kerning first=324 second=957 amount=-1 +kerning first=324 second=964 amount=-1 +kerning first=324 second=1090 amount=-1 +kerning first=324 second=1098 amount=-1 +kerning first=324 second=1112 amount=1 +kerning first=324 second=1185 amount=-1 +kerning first=324 second=1199 amount=-1 +kerning first=324 second=8216 amount=-1 +kerning first=324 second=8217 amount=-1 +kerning first=324 second=8220 amount=-1 +kerning first=324 second=8221 amount=-1 +kerning first=326 second=34 amount=-1 +kerning first=326 second=39 amount=-1 +kerning first=326 second=63 amount=-2 +kerning first=326 second=102 amount=-1 +kerning first=326 second=106 amount=1 +kerning first=326 second=118 amount=-1 +kerning first=326 second=119 amount=-1 +kerning first=326 second=373 amount=-1 +kerning first=326 second=947 amount=-1 +kerning first=326 second=957 amount=-1 +kerning first=326 second=964 amount=-1 +kerning first=326 second=1090 amount=-1 +kerning first=326 second=1098 amount=-1 +kerning first=326 second=1112 amount=1 +kerning first=326 second=1185 amount=-1 +kerning first=326 second=1199 amount=-1 +kerning first=326 second=8216 amount=-1 +kerning first=326 second=8217 amount=-1 +kerning first=326 second=8220 amount=-1 +kerning first=326 second=8221 amount=-1 +kerning first=328 second=34 amount=-1 +kerning first=328 second=39 amount=-1 +kerning first=328 second=63 amount=-2 +kerning first=328 second=102 amount=-1 +kerning first=328 second=106 amount=1 +kerning first=328 second=118 amount=-1 +kerning first=328 second=119 amount=-1 +kerning first=328 second=373 amount=-1 +kerning first=328 second=947 amount=-1 +kerning first=328 second=957 amount=-1 +kerning first=328 second=964 amount=-1 +kerning first=328 second=1090 amount=-1 +kerning first=328 second=1098 amount=-1 +kerning first=328 second=1112 amount=1 +kerning first=328 second=1185 amount=-1 +kerning first=328 second=1199 amount=-1 +kerning first=328 second=8216 amount=-1 +kerning first=328 second=8217 amount=-1 +kerning first=328 second=8220 amount=-1 +kerning first=328 second=8221 amount=-1 +kerning first=331 second=34 amount=-1 +kerning first=331 second=39 amount=-1 +kerning first=331 second=63 amount=-2 +kerning first=331 second=102 amount=-1 +kerning first=331 second=106 amount=1 +kerning first=331 second=118 amount=-1 +kerning first=331 second=119 amount=-1 +kerning first=331 second=373 amount=-1 +kerning first=331 second=947 amount=-1 +kerning first=331 second=957 amount=-1 +kerning first=331 second=964 amount=-1 +kerning first=331 second=1090 amount=-1 +kerning first=331 second=1098 amount=-1 +kerning first=331 second=1112 amount=1 +kerning first=331 second=1185 amount=-1 +kerning first=331 second=1199 amount=-1 +kerning first=331 second=8216 amount=-1 +kerning first=331 second=8217 amount=-1 +kerning first=331 second=8220 amount=-1 +kerning first=331 second=8221 amount=-1 +kerning first=332 second=44 amount=-1 +kerning first=332 second=46 amount=-1 +kerning first=332 second=47 amount=-1 +kerning first=332 second=65 amount=-2 +kerning first=332 second=84 amount=-2 +kerning first=332 second=86 amount=-2 +kerning first=332 second=87 amount=-2 +kerning first=332 second=88 amount=-3 +kerning first=332 second=89 amount=-3 +kerning first=332 second=90 amount=-1 +kerning first=332 second=193 amount=-2 +kerning first=332 second=194 amount=-2 +kerning first=332 second=196 amount=-2 +kerning first=332 second=197 amount=-2 +kerning first=332 second=198 amount=-2 +kerning first=332 second=221 amount=-3 +kerning first=332 second=256 amount=-2 +kerning first=332 second=258 amount=-2 +kerning first=332 second=260 amount=-2 +kerning first=332 second=354 amount=-2 +kerning first=332 second=356 amount=-2 +kerning first=332 second=372 amount=-2 +kerning first=332 second=374 amount=-3 +kerning first=332 second=376 amount=-3 +kerning first=332 second=377 amount=-1 +kerning first=332 second=379 amount=-1 +kerning first=332 second=381 amount=-1 +kerning first=332 second=913 amount=-2 +kerning first=332 second=916 amount=-2 +kerning first=332 second=918 amount=-1 +kerning first=332 second=923 amount=-2 +kerning first=332 second=932 amount=-2 +kerning first=332 second=933 amount=-3 +kerning first=332 second=935 amount=-3 +kerning first=332 second=939 amount=-3 +kerning first=332 second=955 amount=-2 kerning first=332 second=967 amount=-1 -kerning first=94 second=375 amount=-1 -kerning first=237 second=290 amount=-2 -kerning first=955 second=100 amount=-1 -kerning first=952 second=338 amount=-2 -kerning first=1223 second=941 amount=-1 -kerning first=35 second=84 amount=-5 -kerning first=174 second=234 amount=-1 -kerning first=55 second=246 amount=-1 -kerning first=195 second=376 amount=-5 -kerning first=313 second=291 amount=-1 -kerning first=1095 second=1098 amount=-3 -kerning first=215 second=1059 amount=-2 -kerning first=928 second=113 amount=-1 -kerning first=92 second=8249 amount=-3 -kerning first=1178 second=263 amount=-1 -kerning first=361 second=365 amount=-1 -kerning first=36 second=259 amount=-1 -kerning first=1036 second=212 amount=-3 -kerning first=281 second=8216 amount=-1 -kerning first=8226 second=943 amount=-1 -kerning first=1067 second=1118 amount=-1 -kerning first=1070 second=354 amount=-2 -kerning first=193 second=8250 amount=-1 -kerning first=1099 second=970 amount=-1 -kerning first=1186 second=213 amount=-1 -kerning first=962 second=225 amount=-1 -kerning first=270 second=87 amount=-2 -kerning first=1034 second=1185 amount=-2 -kerning first=1037 second=367 amount=-1 -kerning first=179 second=337 amount=-1 -kerning first=183 second=99 amount=-1 -kerning first=63 second=111 amount=-1 -kerning first=1071 second=1038 amount=-2 -kerning first=60 second=351 amount=-1 -kerning first=203 second=261 amount=-1 -kerning first=200 second=953 amount=-1 -kerning first=249 second=100 amount=-1 -kerning first=369 second=250 amount=-1 -kerning first=126 second=352 amount=-1 -kerning first=271 second=262 amount=-2 -kerning first=41 second=364 amount=-2 -kerning first=1035 second=8220 amount=-3 -kerning first=180 second=968 amount=-1 -kerning first=184 second=277 amount=-1 -kerning first=299 second=199 amount=-2 -kerning first=61 second=1035 amount=-5 -kerning first=64 second=291 amount=-1 -kerning first=207 second=211 amount=-2 -kerning first=321 second=1098 amount=-3 -kerning first=8366 second=973 amount=-1 -kerning first=327 second=101 amount=-1 -kerning first=902 second=251 amount=-1 -kerning first=345 second=955 amount=-3 -kerning first=1194 second=1066 amount=-1 -kerning first=276 second=212 amount=-2 -kerning first=1049 second=252 amount=-1 -kerning first=1046 second=943 amount=-1 -kerning first=188 second=224 amount=-1 -kerning first=300 second=354 amount=-5 -kerning first=297 second=1118 amount=-1 -kerning first=205 second=1184 amount=-5 -kerning first=325 second=970 amount=-1 -kerning first=91 second=171 amount=-3 -kerning first=234 second=63 amount=-2 -kerning first=354 second=213 amount=-1 -kerning first=105 second=8217 amount=-3 -kerning first=1210 second=253 amount=-1 -kerning first=254 second=225 amount=-1 -kerning first=971 second=267 amount=-1 -kerning first=274 second=1185 amount=-3 -kerning first=49 second=249 amount=-1 -kerning first=301 second=1038 amount=-2 -kerning first=1083 second=1101 amount=-1 -kerning first=8377 second=1262 amount=-2 -kerning first=908 second=356 amount=-2 -kerning first=912 second=116 amount=-1 -kerning first=89 second=1078 amount=-2 -kerning first=1170 second=268 amount=-2 -kerning first=946 second=972 amount=-1 -kerning first=950 second=281 amount=-1 -kerning first=168 second=1241 amount=-1 -kerning first=275 second=8220 amount=-1 -kerning first=53 second=199 amount=-2 -kerning first=1067 second=117 amount=-1 -kerning first=1064 second=357 amount=-1 -kerning first=196 second=89 amount=-5 -kerning first=190 second=1079 amount=-1 -kerning first=73 second=339 amount=-1 -kerning first=70 second=1098 amount=-3 -kerning first=76 second=101 amount=-1 -kerning first=334 second=381 amount=-1 -kerning first=96 second=263 amount=-1 -kerning first=1176 second=216 amount=-2 -kerning first=353 second=8221 amount=-1 -kerning first=954 second=228 amount=-1 -kerning first=1263 second=118 amount=-4 -kerning first=262 second=90 amount=-1 -kerning first=382 second=240 amount=-1 -kerning first=973 second=1194 amount=-2 -kerning first=1027 second=370 amount=-2 -kerning first=282 second=943 amount=-1 -kerning first=287 second=252 amount=-1 -kerning first=54 second=354 amount=-5 -kerning first=51 second=1118 amount=-1 -kerning first=1071 second=67 amount=-2 -kerning first=197 second=266 amount=-2 -kerning first=200 second=39 amount=-3 -kerning first=77 second=279 amount=-1 -kerning first=74 second=970 amount=-1 -kerning first=916 second=920 amount=-2 -kerning first=100 second=213 amount=-2 -kerning first=1174 second=1195 amount=-1 -kerning first=363 second=253 amount=-1 -kerning first=952 second=1257 amount=-1 -kerning first=123 second=115 amount=-1 -kerning first=35 second=367 amount=-1 -kerning first=8240 second=360 amount=-2 -kerning first=55 second=1038 amount=-2 -kerning first=1073 second=242 amount=-1 -kerning first=201 second=214 amount=-2 -kerning first=1069 second=923 amount=-2 -kerning first=8363 second=287 amount=-1 -kerning first=182 second=227 amount=-1 -kerning first=297 second=117 amount=-1 -kerning first=294 second=357 amount=-1 -kerning first=202 second=369 amount=-1 -kerning first=317 second=973 amount=-1 -kerning first=8369 second=232 amount=-1 -kerning first=942 second=106 amount=1 -kerning first=99 second=8221 amount=-1 -kerning first=371 second=118 amount=-4 -kerning first=962 second=962 amount=-1 -kerning first=161 second=240 amount=-1 -kerning first=40 second=943 amount=-1 -kerning first=43 second=252 amount=-1 -kerning first=8211 second=83 amount=-1 -kerning first=179 second=1256 amount=-2 -kerning first=301 second=67 amount=-2 -kerning first=209 second=79 amount=-2 -kerning first=901 second=359 amount=-1 -kerning first=904 second=119 amount=-4 -kerning first=86 second=328 amount=-2 -kerning first=1116 second=271 amount=-2 -kerning first=8212 second=258 amount=-2 -kerning first=1048 second=360 amount=-2 -kerning first=302 second=242 amount=-1 -kerning first=64 second=1101 amount=-1 -kerning first=1084 second=287 amount=-1 -kerning first=207 second=945 amount=-1 -kerning first=327 second=1240 amount=-2 -kerning first=8378 second=335 amount=-1 -kerning first=90 second=268 amount=-1 -kerning first=1168 second=219 amount=-2 -kerning first=356 second=81 amount=-1 -kerning first=948 second=231 amount=-1 -kerning first=1220 second=121 amount=-1 -kerning first=376 second=243 amount=-4 -kerning first=970 second=373 amount=-2 -kerning first=48 second=357 amount=-1 -kerning first=51 second=117 amount=-1 -kerning first=191 second=269 amount=-1 -kerning first=1094 second=232 amount=-1 -kerning first=94 second=216 amount=-2 -kerning first=237 second=106 amount=1 -kerning first=117 second=118 amount=-4 -kerning first=254 second=962 amount=-1 -kerning first=170 second=283 amount=-1 -kerning first=55 second=67 amount=-2 -kerning first=195 second=217 amount=-2 -kerning first=75 second=229 amount=-1 -kerning first=215 second=359 amount=-1 -kerning first=339 second=44 amount=-1 -kerning first=920 second=194 amount=-2 -kerning first=95 second=371 amount=-1 -kerning first=92 second=1195 amount=-1 -kerning first=1178 second=84 amount=-2 -kerning first=238 second=286 amount=-2 -kerning first=950 second=1090 amount=-3 -kerning first=1033 second=258 amount=-1 -kerning first=175 second=230 amount=-1 -kerning first=8222 second=1059 amount=-1 -kerning first=8218 second=8212 amount=-1 -kerning first=56 second=242 amount=-1 -kerning first=193 second=947 amount=-4 -kerning first=196 second=372 amount=-5 -kerning first=314 second=287 amount=-1 -kerning first=8361 second=235 amount=-1 -kerning first=73 second=1262 amount=-2 -kerning first=76 second=1240 amount=-1 -kerning first=1099 second=335 amount=-1 -kerning first=915 second=1108 amount=-1 -kerning first=923 second=347 amount=-1 -kerning first=96 second=1069 amount=-1 -kerning first=1186 second=34 amount=-2 -kerning first=365 second=121 amount=-1 -kerning first=122 second=243 amount=-1 -kerning first=172 second=1263 amount=-1 -kerning first=1071 second=350 amount=-1 -kerning first=318 second=232 amount=-1 -kerning first=80 second=332 amount=-2 -kerning first=1103 second=275 amount=-1 -kerning first=223 second=244 amount=-1 -kerning first=934 second=289 amount=-1 -kerning first=369 second=71 amount=-2 -kerning first=963 second=221 amount=-5 -kerning first=271 second=83 amount=-1 -kerning first=1035 second=1177 amount=-1 -kerning first=180 second=333 amount=-1 -kerning first=296 second=245 amount=-1 -kerning first=201 second=949 amount=-1 -kerning first=204 second=257 amount=-1 -kerning first=8366 second=338 amount=-2 -kerning first=8372 second=100 amount=-1 -kerning first=84 second=271 amount=-3 -kerning first=87 second=44 amount=-3 -kerning first=350 second=84 amount=-1 -kerning first=247 second=334 amount=-2 -kerning first=244 second=1090 amount=-1 -kerning first=964 second=376 amount=-5 -kerning first=160 second=346 amount=-1 -kerning first=42 second=360 amount=-2 -kerning first=1039 second=1059 amount=-2 -kerning first=1036 second=8212 amount=-4 -kerning first=185 second=273 amount=-1 -kerning first=188 second=45 amount=-2 -kerning first=182 second=964 amount=-3 -kerning first=45 second=120 amount=-2 -kerning first=65 second=287 amount=-1 -kerning first=1081 second=235 amount=-1 -kerning first=325 second=335 amount=-1 -kerning first=108 second=361 amount=-1 -kerning first=1186 second=8216 amount=-2 -kerning first=374 second=196 amount=-5 -kerning first=962 second=8250 amount=-1 -kerning first=161 second=1028 amount=-2 -kerning first=164 second=288 amount=-2 -kerning first=1051 second=248 amount=-1 -kerning first=189 second=220 amount=-2 -kerning first=301 second=350 amount=-1 -kerning first=69 second=232 amount=-1 -kerning first=209 second=362 amount=-2 -kerning first=206 second=1176 amount=-1 -kerning first=330 second=275 amount=-1 +kerning first=332 second=1026 amount=-2 +kerning first=332 second=1033 amount=-1 +kerning first=332 second=1035 amount=-2 +kerning first=332 second=1040 amount=-2 +kerning first=332 second=1044 amount=-1 +kerning first=332 second=1046 amount=-3 +kerning first=332 second=1051 amount=-1 +kerning first=332 second=1058 amount=-2 +kerning first=332 second=1061 amount=-3 +kerning first=332 second=1066 amount=-2 +kerning first=332 second=1071 amount=-1 +kerning first=332 second=1174 amount=-3 +kerning first=332 second=1184 amount=-2 +kerning first=332 second=1198 amount=-3 +kerning first=332 second=1202 amount=-3 +kerning first=332 second=1298 amount=-1 +kerning first=332 second=8218 amount=-1 +kerning first=332 second=8222 amount=-1 +kerning first=332 second=8230 amount=-1 +kerning first=333 second=34 amount=-1 +kerning first=333 second=39 amount=-1 +kerning first=333 second=44 amount=-1 +kerning first=333 second=46 amount=-1 kerning first=333 second=47 amount=-1 -kerning first=86 second=1203 amount=-2 -kerning first=908 second=197 amount=-2 -kerning first=1170 second=87 amount=-5 -kerning first=946 second=337 amount=-1 -kerning first=950 second=99 amount=-1 -kerning first=1206 second=940 amount=-1 -kerning first=1219 second=249 amount=-1 -kerning first=255 second=221 amount=-5 -kerning first=372 second=1114 amount=-2 -kerning first=375 second=351 amount=-1 -kerning first=378 second=111 amount=-1 -kerning first=168 second=233 amount=-1 -kerning first=278 second=363 amount=-1 -kerning first=50 second=245 amount=-1 -kerning first=190 second=375 amount=-1 -kerning first=305 second=290 amount=-2 -kerning first=207 second=8211 amount=-2 -kerning first=1096 second=100 amount=-1 -kerning first=210 second=1051 amount=-1 -kerning first=910 second=352 amount=-1 -kerning first=96 second=84 amount=-5 -kerning first=1171 second=262 amount=-2 -kerning first=236 second=234 amount=-1 -kerning first=948 second=968 amount=-1 -kerning first=951 second=277 amount=-1 -kerning first=256 second=376 amount=-5 -kerning first=1027 second=211 amount=-2 -kerning first=276 second=8212 amount=-2 -kerning first=8224 second=251 amount=-1 -kerning first=188 second=8249 amount=-3 -kerning first=197 second=85 amount=-2 -kerning first=311 second=235 amount=-2 -kerning first=74 second=335 amount=-1 -kerning first=77 second=97 amount=-1 -kerning first=100 second=34 amount=-3 -kerning first=955 second=224 amount=-1 -kerning first=1223 second=1118 amount=-1 -kerning first=254 second=8250 amount=-1 -kerning first=174 second=336 amount=-2 -kerning first=55 second=350 amount=-1 -kerning first=8363 second=103 amount=-1 -kerning first=75 second=966 amount=-2 -kerning first=81 second=47 amount=-1 -kerning first=78 second=275 amount=-1 -kerning first=221 second=197 amount=-5 -kerning first=342 second=87 amount=-1 -kerning first=1175 second=1185 amount=-2 -kerning first=361 second=940 amount=-1 -kerning first=121 second=351 amount=-1 -kerning first=124 second=111 amount=-1 -kerning first=36 second=363 amount=-1 -kerning first=8249 second=356 amount=-1 -kerning first=59 second=290 amount=-2 -kerning first=202 second=210 amount=-2 -kerning first=317 second=338 amount=-2 -kerning first=322 second=100 amount=-1 -kerning first=8361 second=972 amount=-1 -kerning first=8364 second=281 amount=-1 -kerning first=1102 second=380 amount=-1 -kerning first=931 second=1241 amount=-1 -kerning first=1176 second=8220 amount=-3 -kerning first=958 second=1079 amount=-1 -kerning first=965 second=89 amount=-5 -kerning first=125 second=291 amount=-1 -kerning first=37 second=1059 amount=-2 -kerning first=1041 second=251 amount=-1 -kerning first=298 second=113 amount=-1 -kerning first=63 second=235 amount=-1 -kerning first=203 second=365 amount=-1 -kerning first=8370 second=228 amount=-1 -kerning first=100 second=8216 amount=-3 -kerning first=249 second=224 amount=-1 -kerning first=369 second=354 amount=-5 -kerning first=372 second=114 amount=-2 -kerning first=271 second=366 amount=-2 -kerning first=268 second=1184 amount=-1 -kerning first=1084 second=103 amount=-1 -kerning first=201 second=8217 amount=-3 -kerning first=8366 second=1257 amount=-1 -kerning first=327 second=225 amount=-1 -kerning first=905 second=115 amount=-1 -kerning first=902 second=355 amount=-1 -kerning first=87 second=324 amount=-2 -kerning first=1117 second=267 amount=-1 -kerning first=107 second=940 amount=-2 -kerning first=1049 second=356 amount=-5 -kerning first=1081 second=972 amount=-1 -kerning first=1085 second=281 amount=-1 -kerning first=91 second=262 amount=-2 -kerning first=1210 second=357 amount=-1 -kerning first=1223 second=117 amount=-1 -kerning first=251 second=1079 amount=-1 -kerning first=971 second=369 amount=-1 -kerning first=164 second=1098 amount=-3 -kerning first=167 second=339 amount=-1 -kerning first=170 second=101 amount=-1 -kerning first=280 second=251 amount=-1 -kerning first=52 second=113 amount=-1 -kerning first=49 second=353 amount=-1 -kerning first=192 second=263 amount=-1 -kerning first=1095 second=228 amount=-1 -kerning first=912 second=240 amount=-1 -kerning first=908 second=916 amount=-2 -kerning first=95 second=212 amount=-2 -kerning first=1119 second=1194 amount=-2 -kerning first=1170 second=370 amount=-2 +kerning first=333 second=63 amount=-2 +kerning first=333 second=102 amount=-1 +kerning first=333 second=118 amount=-1 +kerning first=333 second=119 amount=-1 +kerning first=333 second=120 amount=-2 +kerning first=333 second=122 amount=-1 +kerning first=333 second=373 amount=-1 +kerning first=333 second=378 amount=-1 +kerning first=333 second=380 amount=-1 +kerning first=333 second=382 amount=-1 +kerning first=333 second=947 amount=-1 +kerning first=333 second=955 amount=-1 +kerning first=333 second=957 amount=-1 +kerning first=333 second=964 amount=-1 +kerning first=333 second=967 amount=-2 +kerning first=333 second=1076 amount=-1 +kerning first=333 second=1078 amount=-2 +kerning first=333 second=1083 amount=-1 +kerning first=333 second=1090 amount=-1 +kerning first=333 second=1093 amount=-2 +kerning first=333 second=1098 amount=-1 +kerning first=333 second=1113 amount=-1 +kerning first=333 second=1175 amount=-2 +kerning first=333 second=1185 amount=-1 +kerning first=333 second=1199 amount=-1 +kerning first=333 second=1203 amount=-2 +kerning first=333 second=1299 amount=-1 +kerning first=333 second=8216 amount=-1 +kerning first=333 second=8217 amount=-1 +kerning first=333 second=8218 amount=-1 +kerning first=333 second=8220 amount=-1 +kerning first=333 second=8221 amount=-1 +kerning first=333 second=8222 amount=-1 +kerning first=333 second=8230 amount=-1 +kerning first=334 second=44 amount=-1 +kerning first=334 second=46 amount=-1 +kerning first=334 second=47 amount=-1 +kerning first=334 second=65 amount=-2 +kerning first=334 second=84 amount=-2 +kerning first=334 second=86 amount=-2 +kerning first=334 second=87 amount=-2 +kerning first=334 second=88 amount=-3 +kerning first=334 second=89 amount=-3 +kerning first=334 second=90 amount=-1 +kerning first=334 second=193 amount=-2 +kerning first=334 second=194 amount=-2 +kerning first=334 second=196 amount=-2 +kerning first=334 second=197 amount=-2 +kerning first=334 second=198 amount=-2 +kerning first=334 second=221 amount=-3 +kerning first=334 second=256 amount=-2 +kerning first=334 second=258 amount=-2 +kerning first=334 second=260 amount=-2 +kerning first=334 second=354 amount=-2 +kerning first=334 second=356 amount=-2 +kerning first=334 second=372 amount=-2 +kerning first=334 second=374 amount=-3 +kerning first=334 second=376 amount=-3 +kerning first=334 second=377 amount=-1 +kerning first=334 second=379 amount=-1 +kerning first=334 second=381 amount=-1 +kerning first=334 second=913 amount=-2 +kerning first=334 second=916 amount=-2 +kerning first=334 second=918 amount=-1 +kerning first=334 second=923 amount=-2 +kerning first=334 second=932 amount=-2 +kerning first=334 second=933 amount=-3 +kerning first=334 second=935 amount=-3 +kerning first=334 second=939 amount=-3 +kerning first=334 second=955 amount=-2 +kerning first=334 second=967 amount=-1 +kerning first=334 second=1026 amount=-2 +kerning first=334 second=1033 amount=-1 +kerning first=334 second=1035 amount=-2 +kerning first=334 second=1040 amount=-2 +kerning first=334 second=1044 amount=-1 +kerning first=334 second=1046 amount=-3 +kerning first=334 second=1051 amount=-1 +kerning first=334 second=1058 amount=-2 +kerning first=334 second=1061 amount=-3 +kerning first=334 second=1066 amount=-2 +kerning first=334 second=1071 amount=-1 +kerning first=334 second=1174 amount=-3 +kerning first=334 second=1184 amount=-2 +kerning first=334 second=1198 amount=-3 +kerning first=334 second=1202 amount=-3 +kerning first=334 second=1298 amount=-1 +kerning first=334 second=8218 amount=-1 +kerning first=334 second=8222 amount=-1 +kerning first=334 second=8230 amount=-1 +kerning first=335 second=34 amount=-1 +kerning first=335 second=39 amount=-1 +kerning first=335 second=44 amount=-1 +kerning first=335 second=46 amount=-1 +kerning first=335 second=47 amount=-1 +kerning first=335 second=63 amount=-2 +kerning first=335 second=102 amount=-1 +kerning first=335 second=118 amount=-1 +kerning first=335 second=119 amount=-1 +kerning first=335 second=120 amount=-2 +kerning first=335 second=122 amount=-1 +kerning first=335 second=373 amount=-1 +kerning first=335 second=378 amount=-1 +kerning first=335 second=380 amount=-1 +kerning first=335 second=382 amount=-1 +kerning first=335 second=947 amount=-1 +kerning first=335 second=955 amount=-1 +kerning first=335 second=957 amount=-1 +kerning first=335 second=964 amount=-1 +kerning first=335 second=967 amount=-2 +kerning first=335 second=1076 amount=-1 +kerning first=335 second=1078 amount=-2 +kerning first=335 second=1083 amount=-1 +kerning first=335 second=1090 amount=-1 +kerning first=335 second=1093 amount=-2 +kerning first=335 second=1098 amount=-1 +kerning first=335 second=1113 amount=-1 +kerning first=335 second=1175 amount=-2 +kerning first=335 second=1185 amount=-1 +kerning first=335 second=1199 amount=-1 +kerning first=335 second=1203 amount=-2 +kerning first=335 second=1299 amount=-1 +kerning first=335 second=8216 amount=-1 +kerning first=335 second=8217 amount=-1 +kerning first=335 second=8218 amount=-1 +kerning first=335 second=8220 amount=-1 +kerning first=335 second=8221 amount=-1 +kerning first=335 second=8222 amount=-1 +kerning first=335 second=8230 amount=-1 +kerning first=336 second=44 amount=-1 +kerning first=336 second=46 amount=-1 +kerning first=336 second=47 amount=-1 +kerning first=336 second=65 amount=-2 +kerning first=336 second=84 amount=-2 +kerning first=336 second=86 amount=-2 +kerning first=336 second=87 amount=-2 +kerning first=336 second=88 amount=-3 +kerning first=336 second=89 amount=-3 kerning first=336 second=90 amount=-1 -kerning first=358 second=252 amount=-1 -kerning first=946 second=1256 amount=-2 -kerning first=258 second=266 amount=-2 -kerning first=261 second=39 amount=-1 -kerning first=168 second=970 amount=-1 -kerning first=8222 second=359 amount=-1 -kerning first=8226 second=119 amount=-4 -kerning first=1064 second=920 amount=-2 -kerning first=196 second=213 amount=-2 -kerning first=314 second=103 amount=-1 -kerning first=1090 second=1257 amount=-1 -kerning first=93 second=1185 amount=-3 -kerning first=96 second=367 amount=-1 -kerning first=1256 second=923 amount=-2 -kerning first=1263 second=242 amount=-1 -kerning first=1027 second=945 amount=-1 -kerning first=176 second=226 amount=-1 -kerning first=287 second=356 amount=-5 -kerning first=197 second=368 amount=-2 -kerning first=315 second=281 amount=-1 -kerning first=311 second=972 amount=-2 -kerning first=94 second=8220 amount=-3 -kerning first=363 second=357 amount=-1 -kerning first=960 second=269 amount=-1 -kerning first=38 second=251 amount=-1 -kerning first=8260 second=244 amount=-1 -kerning first=195 second=8221 amount=-3 -kerning first=198 second=1066 amount=-5 -kerning first=321 second=228 amount=-1 -kerning first=221 second=916 amount=-5 -kerning first=936 second=283 amount=-1 -kerning first=244 second=382 amount=-1 -kerning first=364 second=1044 amount=-1 -kerning first=964 second=217 amount=-2 -kerning first=273 second=79 amount=-2 -kerning first=1039 second=359 amount=-1 -kerning first=1046 second=119 amount=-3 -kerning first=294 second=920 amount=-2 -kerning first=65 second=103 amount=-1 -kerning first=1074 second=1026 amount=-5 -kerning first=205 second=253 amount=-1 -kerning first=317 second=1257 amount=-1 -kerning first=8369 second=334 amount=-2 -kerning first=8364 second=1090 amount=-3 -kerning first=942 second=230 amount=-1 -kerning first=245 second=1083 amount=-1 -kerning first=371 second=242 amount=-1 -kerning first=368 second=923 amount=-2 -kerning first=962 second=947 amount=-4 -kerning first=965 second=372 amount=-5 -kerning first=125 second=1101 amount=-1 -kerning first=43 second=356 amount=-5 -kerning first=46 second=116 amount=-1 -kerning first=186 second=268 amount=-2 -kerning first=63 second=972 amount=-1 -kerning first=1083 second=231 amount=-1 -kerning first=8370 second=965 amount=-1 -kerning first=904 second=243 amount=-1 -kerning first=252 second=269 amount=-1 -kerning first=162 second=973 amount=-1 -kerning first=190 second=216 amount=-2 -kerning first=305 second=106 amount=1 -kerning first=70 second=228 amount=-1 -kerning first=327 second=962 amount=-1 -kerning first=910 second=193 amount=-5 -kerning first=87 second=1194 amount=-2 -kerning first=1171 second=83 amount=-1 -kerning first=948 second=333 amount=-1 -kerning first=1220 second=245 amount=-1 -kerning first=256 second=217 amount=-2 -kerning first=376 second=345 amount=-3 -kerning first=973 second=257 amount=-1 -kerning first=169 second=229 amount=-1 -kerning first=282 second=119 amount=-4 -kerning first=8216 second=1051 amount=-3 -kerning first=48 second=920 amount=-2 -kerning first=188 second=1195 amount=-1 -kerning first=191 second=371 amount=-1 -kerning first=303 second=1026 amount=-5 -kerning first=306 second=286 amount=-2 -kerning first=1085 second=1090 amount=-3 -kerning first=211 second=1046 amount=-3 -kerning first=237 second=230 amount=-1 -kerning first=357 second=360 amount=-2 -kerning first=952 second=273 amount=-1 -kerning first=955 second=45 amount=-2 -kerning first=117 second=242 amount=-1 -kerning first=254 second=947 amount=-4 -kerning first=167 second=1262 amount=-2 -kerning first=170 second=1240 amount=-2 -kerning first=1063 second=1108 amount=-1 -kerning first=192 second=1069 amount=-1 -kerning first=198 second=81 amount=-2 -kerning first=313 second=231 amount=-1 -kerning first=1095 second=965 amount=-1 -kerning first=1101 second=46 amount=-1 -kerning first=912 second=1028 amount=-2 -kerning first=956 second=220 amount=-2 -kerning first=1026 second=1176 amount=-1 -kerning first=175 second=332 amount=-2 -kerning first=289 second=244 amount=-1 -kerning first=8249 second=197 amount=-1 -kerning first=59 second=106 amount=1 -kerning first=199 second=256 amount=-1 -kerning first=8361 second=337 amount=-1 -kerning first=8364 second=99 amount=-1 -kerning first=76 second=962 amount=-1 -kerning first=222 second=193 amount=-2 -kerning first=334 second=8230 amount=-1 -kerning first=931 second=233 amount=-1 -kerning first=1176 second=1177 amount=-1 -kerning first=365 second=245 amount=-1 -kerning first=958 second=375 amount=-1 -kerning first=37 second=359 amount=-1 -kerning first=1027 second=8211 amount=-2 -kerning first=40 second=119 amount=-4 -kerning first=176 second=963 amount=-1 -kerning first=179 second=271 amount=-1 -kerning first=8250 second=352 amount=-1 -kerning first=57 second=1026 amount=-5 -kerning first=60 second=286 amount=-2 -kerning first=1075 second=234 amount=-1 -kerning first=318 second=334 amount=-2 -kerning first=8365 second=277 amount=-1 -kerning first=1103 second=376 amount=-5 -kerning first=223 second=346 amount=-1 -kerning first=103 second=360 amount=-2 -kerning first=243 second=964 amount=-1 -kerning first=249 second=45 amount=-2 -kerning first=955 second=8249 amount=-3 -kerning first=126 second=287 amount=-1 -kerning first=184 second=219 amount=-2 -kerning first=291 second=1108 amount=-1 -kerning first=296 second=347 amount=-1 -kerning first=64 second=231 amount=-1 -kerning first=204 second=361 amount=-1 -kerning first=207 second=121 amount=-1 -kerning first=321 second=965 amount=-1 -kerning first=8372 second=224 amount=-1 -kerning first=81 second=1202 amount=-3 -kerning first=84 second=373 amount=-2 -kerning first=1202 second=248 amount=-1 -kerning first=250 second=220 amount=-2 -kerning first=163 second=232 amount=-1 -kerning first=273 second=362 amount=-2 -kerning first=185 second=374 amount=-5 -kerning first=300 second=289 amount=-1 -kerning first=1081 second=337 amount=-1 -kerning first=1085 second=99 amount=-1 -kerning first=903 second=351 amount=-1 -kerning first=906 second=111 amount=-1 -kerning first=91 second=83 amount=-1 -kerning first=1118 second=261 amount=-1 -kerning first=251 second=375 amount=-1 -kerning first=374 second=290 amount=-3 -kerning first=971 second=210 amount=-2 -kerning first=1051 second=352 amount=-1 -kerning first=192 second=84 amount=-5 -kerning first=304 second=234 amount=-1 -kerning first=69 second=334 amount=-2 -kerning first=1083 second=968 amount=-1 -kerning first=1087 second=277 amount=-1 -kerning first=330 second=376 amount=-5 -kerning first=8377 second=1079 amount=-1 -kerning first=904 second=1035 amount=-5 -kerning first=89 second=950 amount=-2 -kerning first=1170 second=211 amount=-2 -kerning first=1219 second=353 amount=-1 -kerning first=1224 second=113 amount=-1 -kerning first=249 second=8249 amount=-3 -kerning first=258 second=85 amount=-2 -kerning first=378 second=235 amount=-1 -kerning first=168 second=335 amount=-1 -kerning first=47 second=1108 amount=-1 -kerning first=50 second=347 amount=-1 -kerning first=193 second=259 amount=-1 -kerning first=196 second=34 amount=-3 -kerning first=70 second=965 amount=-1 -kerning first=1096 second=224 amount=-1 -kerning first=216 second=196 amount=-2 -kerning first=327 second=8250 amount=-1 -kerning first=1168 second=1184 amount=-5 -kerning first=1171 second=366 amount=-2 -kerning first=236 second=336 amount=-2 -kerning first=169 second=966 amount=-1 -kerning first=172 second=275 amount=-1 -kerning first=8224 second=355 amount=-1 -kerning first=54 second=289 amount=-1 -kerning first=311 second=337 amount=-2 -kerning first=315 second=99 amount=-1 -kerning first=77 second=221 amount=-5 -kerning first=338 second=261 amount=-1 -kerning first=94 second=1177 amount=-1 -kerning first=1169 second=8218 amount=-3 -kerning first=1035 second=250 amount=-1 -kerning first=58 second=234 amount=-1 -kerning first=1073 second=187 amount=-1 -kerning first=198 second=364 amount=-2 -kerning first=316 second=277 amount=-1 -kerning first=313 second=968 amount=-1 -kerning first=8363 second=227 amount=-1 -kerning first=78 second=376 amount=-5 -kerning first=221 second=291 amount=-4 -kerning first=928 second=339 amount=-1 -kerning first=95 second=8212 amount=-2 -kerning first=936 second=101 amount=-1 -kerning first=367 second=113 amount=-1 -kerning first=124 second=235 amount=-1 -kerning first=8249 second=916 amount=-1 -kerning first=196 second=8216 amount=-3 -kerning first=322 second=224 amount=-1 -kerning first=8361 second=1256 amount=-2 -kerning first=931 second=970 amount=-1 -kerning first=105 second=248 amount=-1 -kerning first=245 second=378 amount=-1 -kerning first=965 second=213 amount=-2 -kerning first=1041 second=355 amount=-1 -kerning first=186 second=87 amount=-5 -kerning first=63 second=337 amount=-1 -kerning first=203 second=940 amount=-1 -kerning first=206 second=249 amount=-1 -kerning first=86 second=261 amount=-1 +kerning first=336 second=193 amount=-2 +kerning first=336 second=194 amount=-2 +kerning first=336 second=196 amount=-2 +kerning first=336 second=197 amount=-2 +kerning first=336 second=198 amount=-2 +kerning first=336 second=221 amount=-3 +kerning first=336 second=256 amount=-2 +kerning first=336 second=258 amount=-2 +kerning first=336 second=260 amount=-2 +kerning first=336 second=354 amount=-2 +kerning first=336 second=356 amount=-2 +kerning first=336 second=372 amount=-2 +kerning first=336 second=374 amount=-3 +kerning first=336 second=376 amount=-3 +kerning first=336 second=377 amount=-1 +kerning first=336 second=379 amount=-1 +kerning first=336 second=381 amount=-1 +kerning first=336 second=913 amount=-2 +kerning first=336 second=916 amount=-2 +kerning first=336 second=918 amount=-1 +kerning first=336 second=923 amount=-2 +kerning first=336 second=932 amount=-2 +kerning first=336 second=933 amount=-3 +kerning first=336 second=935 amount=-3 +kerning first=336 second=939 amount=-3 +kerning first=336 second=955 amount=-2 +kerning first=336 second=967 amount=-1 +kerning first=336 second=1026 amount=-2 +kerning first=336 second=1033 amount=-1 +kerning first=336 second=1035 amount=-2 +kerning first=336 second=1040 amount=-2 +kerning first=336 second=1044 amount=-1 +kerning first=336 second=1046 amount=-3 +kerning first=336 second=1051 amount=-1 +kerning first=336 second=1058 amount=-2 +kerning first=336 second=1061 amount=-3 +kerning first=336 second=1066 amount=-2 +kerning first=336 second=1071 amount=-1 +kerning first=336 second=1174 amount=-3 +kerning first=336 second=1184 amount=-2 +kerning first=336 second=1198 amount=-3 +kerning first=336 second=1202 amount=-3 +kerning first=336 second=1298 amount=-1 +kerning first=336 second=8218 amount=-1 +kerning first=336 second=8222 amount=-1 +kerning first=336 second=8230 amount=-1 +kerning first=337 second=34 amount=-1 +kerning first=337 second=39 amount=-1 +kerning first=337 second=44 amount=-1 +kerning first=337 second=46 amount=-1 +kerning first=337 second=47 amount=-1 +kerning first=337 second=63 amount=-2 +kerning first=337 second=102 amount=-1 +kerning first=337 second=118 amount=-1 +kerning first=337 second=119 amount=-1 +kerning first=337 second=120 amount=-2 +kerning first=337 second=122 amount=-1 +kerning first=337 second=373 amount=-1 +kerning first=337 second=378 amount=-1 +kerning first=337 second=380 amount=-1 +kerning first=337 second=382 amount=-1 +kerning first=337 second=947 amount=-1 +kerning first=337 second=955 amount=-1 +kerning first=337 second=957 amount=-1 +kerning first=337 second=964 amount=-1 +kerning first=337 second=967 amount=-2 +kerning first=337 second=1076 amount=-1 +kerning first=337 second=1078 amount=-2 +kerning first=337 second=1083 amount=-1 +kerning first=337 second=1090 amount=-1 +kerning first=337 second=1093 amount=-2 +kerning first=337 second=1098 amount=-1 +kerning first=337 second=1113 amount=-1 +kerning first=337 second=1175 amount=-2 +kerning first=337 second=1185 amount=-1 +kerning first=337 second=1199 amount=-1 +kerning first=337 second=1203 amount=-2 +kerning first=337 second=1299 amount=-1 +kerning first=337 second=8216 amount=-1 +kerning first=337 second=8217 amount=-1 +kerning first=337 second=8218 amount=-1 +kerning first=337 second=8220 amount=-1 +kerning first=337 second=8221 amount=-1 +kerning first=337 second=8222 amount=-1 +kerning first=337 second=8230 amount=-1 +kerning first=339 second=34 amount=-1 +kerning first=339 second=39 amount=-1 +kerning first=339 second=44 amount=-1 +kerning first=339 second=46 amount=-1 +kerning first=339 second=47 amount=-1 +kerning first=339 second=63 amount=-2 +kerning first=339 second=102 amount=-1 +kerning first=339 second=118 amount=-1 +kerning first=339 second=119 amount=-1 +kerning first=339 second=120 amount=-2 +kerning first=339 second=122 amount=-1 +kerning first=339 second=373 amount=-1 +kerning first=339 second=378 amount=-1 +kerning first=339 second=380 amount=-1 +kerning first=339 second=382 amount=-1 +kerning first=339 second=947 amount=-1 +kerning first=339 second=955 amount=-1 +kerning first=339 second=957 amount=-1 +kerning first=339 second=964 amount=-1 +kerning first=339 second=967 amount=-2 +kerning first=339 second=1076 amount=-1 +kerning first=339 second=1078 amount=-2 +kerning first=339 second=1083 amount=-1 +kerning first=339 second=1090 amount=-1 +kerning first=339 second=1093 amount=-2 +kerning first=339 second=1098 amount=-1 +kerning first=339 second=1113 amount=-1 +kerning first=339 second=1175 amount=-2 +kerning first=339 second=1185 amount=-1 +kerning first=339 second=1199 amount=-1 +kerning first=339 second=1203 amount=-2 +kerning first=339 second=1299 amount=-1 +kerning first=339 second=8216 amount=-1 +kerning first=339 second=8217 amount=-1 +kerning first=339 second=8218 amount=-1 +kerning first=339 second=8220 amount=-1 +kerning first=339 second=8221 amount=-1 +kerning first=339 second=8222 amount=-1 +kerning first=339 second=8230 amount=-1 +kerning first=340 second=45 amount=-1 +kerning first=340 second=86 amount=-1 +kerning first=340 second=87 amount=-1 +kerning first=340 second=89 amount=-2 +kerning first=340 second=106 amount=2 +kerning first=340 second=171 amount=-1 +kerning first=340 second=173 amount=-1 +kerning first=340 second=221 amount=-2 +kerning first=340 second=372 amount=-1 +kerning first=340 second=374 amount=-2 +kerning first=340 second=376 amount=-2 +kerning first=340 second=933 amount=-2 +kerning first=340 second=939 amount=-2 +kerning first=340 second=1112 amount=2 +kerning first=340 second=1198 amount=-2 +kerning first=340 second=8211 amount=-1 +kerning first=340 second=8212 amount=-1 +kerning first=340 second=8249 amount=-1 +kerning first=341 second=44 amount=-3 +kerning first=341 second=45 amount=-1 +kerning first=341 second=46 amount=-3 +kerning first=341 second=47 amount=-2 +kerning first=341 second=97 amount=-1 +kerning first=341 second=99 amount=-1 +kerning first=341 second=100 amount=-1 +kerning first=341 second=101 amount=-1 +kerning first=341 second=103 amount=-1 +kerning first=341 second=111 amount=-1 +kerning first=341 second=113 amount=-1 +kerning first=341 second=115 amount=-1 +kerning first=341 second=173 amount=-1 +kerning first=341 second=224 amount=-1 +kerning first=341 second=225 amount=-1 +kerning first=341 second=226 amount=-1 +kerning first=341 second=227 amount=-1 +kerning first=341 second=228 amount=-1 +kerning first=341 second=229 amount=-1 +kerning first=341 second=230 amount=-1 +kerning first=341 second=231 amount=-1 +kerning first=341 second=232 amount=-1 +kerning first=341 second=233 amount=-1 +kerning first=341 second=234 amount=-1 +kerning first=341 second=235 amount=-1 +kerning first=341 second=240 amount=-1 +kerning first=341 second=242 amount=-1 +kerning first=341 second=243 amount=-1 +kerning first=341 second=244 amount=-1 +kerning first=341 second=245 amount=-1 +kerning first=341 second=246 amount=-1 +kerning first=341 second=248 amount=-1 +kerning first=341 second=257 amount=-1 +kerning first=341 second=259 amount=-1 +kerning first=341 second=261 amount=-1 +kerning first=341 second=263 amount=-1 +kerning first=341 second=267 amount=-1 +kerning first=341 second=269 amount=-1 +kerning first=341 second=271 amount=-1 +kerning first=341 second=273 amount=-1 +kerning first=341 second=275 amount=-1 +kerning first=341 second=277 amount=-1 +kerning first=341 second=279 amount=-1 +kerning first=341 second=281 amount=-1 +kerning first=341 second=283 amount=-1 +kerning first=341 second=287 amount=-1 +kerning first=341 second=289 amount=-1 +kerning first=341 second=291 amount=-1 +kerning first=341 second=333 amount=-1 +kerning first=341 second=335 amount=-1 +kerning first=341 second=337 amount=-1 +kerning first=341 second=339 amount=-1 +kerning first=341 second=347 amount=-1 +kerning first=341 second=351 amount=-1 +kerning first=341 second=353 amount=-1 +kerning first=341 second=940 amount=-1 +kerning first=341 second=941 amount=-1 +kerning first=341 second=945 amount=-1 +kerning first=341 second=949 amount=-1 +kerning first=341 second=955 amount=-3 +kerning first=341 second=959 amount=-1 +kerning first=341 second=962 amount=-1 +kerning first=341 second=963 amount=-1 +kerning first=341 second=966 amount=-1 +kerning first=341 second=972 amount=-1 +kerning first=341 second=1072 amount=-1 +kerning first=341 second=1077 amount=-1 +kerning first=341 second=1086 amount=-1 +kerning first=341 second=1089 amount=-1 +kerning first=341 second=1092 amount=-1 +kerning first=341 second=1104 amount=-1 +kerning first=341 second=1105 amount=-1 +kerning first=341 second=1108 amount=-1 +kerning first=341 second=1109 amount=-1 +kerning first=341 second=1195 amount=-1 +kerning first=341 second=1241 amount=-1 +kerning first=341 second=1257 amount=-1 +kerning first=341 second=8211 amount=-1 +kerning first=341 second=8212 amount=-1 kerning first=341 second=8218 amount=-3 -kerning first=246 second=1078 amount=-2 -kerning first=162 second=338 amount=-2 -kerning first=165 second=100 amount=-1 -kerning first=271 second=941 amount=-1 -kerning first=1241 second=380 amount=-1 -kerning first=47 second=112 amount=-1 -kerning first=1059 second=65 amount=-2 -kerning first=299 second=1241 amount=-1 -kerning first=302 second=187 amount=-1 -kerning first=64 second=968 amount=-1 -kerning first=1084 second=227 amount=-1 -kerning first=8378 second=269 amount=-1 -kerning first=90 second=211 amount=-1 -kerning first=1117 second=369 amount=-1 -kerning first=227 second=1098 amount=-1 -kerning first=113 second=113 amount=-1 -kerning first=253 second=263 amount=-1 -kerning first=256 second=38 amount=-1 -kerning first=967 second=1066 amount=-5 -kerning first=964 second=8221 amount=-3 -kerning first=1062 second=240 amount=-1 -kerning first=191 second=212 amount=-2 -kerning first=1081 second=1256 amount=-2 -kerning first=211 second=354 amount=-2 -kerning first=335 second=39 amount=-1 -kerning first=91 second=366 amount=-2 -kerning first=1174 second=79 amount=-1 -kerning first=1210 second=920 amount=-2 -kerning first=374 second=1100 amount=-3 -kerning first=170 second=225 amount=-1 -kerning first=280 second=355 amount=-1 -kerning first=189 second=1185 amount=-3 -kerning first=192 second=367 amount=-1 -kerning first=89 second=8218 amount=-4 -kerning first=1170 second=945 amount=-1 -kerning first=238 second=226 amount=-1 -kerning first=358 second=356 amount=-5 -kerning first=361 second=116 amount=-1 -kerning first=258 second=368 amount=-2 -kerning first=381 second=281 amount=-1 -kerning first=378 second=972 amount=-1 -kerning first=8226 second=243 amount=-1 -kerning first=53 second=1241 amount=-1 -kerning first=56 second=187 amount=-1 -kerning first=190 second=8220 amount=-3 -kerning first=314 second=227 amount=-1 -kerning first=73 second=1079 amount=-1 -kerning first=79 second=89 amount=-3 -kerning first=1099 second=269 amount=-1 -kerning first=915 second=973 amount=-1 -kerning first=958 second=216 amount=-2 -kerning first=256 second=8221 amount=-3 -kerning first=1037 second=118 amount=-4 -kerning first=8250 second=193 amount=-3 -kerning first=1071 second=283 amount=-1 -kerning first=197 second=943 amount=-1 -kerning first=200 second=252 amount=-1 -kerning first=80 second=266 amount=-2 -kerning first=1103 second=217 amount=-2 -kerning first=335 second=8222 amount=-1 -kerning first=934 second=229 amount=-1 -kerning first=1184 second=359 amount=-1 -kerning first=363 second=920 amount=-2 -kerning first=955 second=1195 amount=-1 -kerning first=960 second=371 amount=-1 -kerning first=126 second=103 amount=-1 -kerning first=1298 second=1026 amount=-5 -kerning first=38 second=355 amount=-1 -kerning first=41 second=115 amount=-1 -kerning first=180 second=267 amount=-1 -kerning first=8260 second=346 amount=-1 -kerning first=8366 second=273 amount=-1 -kerning first=8372 second=45 amount=-2 -kerning first=8363 second=964 amount=-3 -kerning first=84 second=214 amount=-1 -kerning first=221 second=1101 amount=-4 -kerning first=1101 second=947 amount=-1 -kerning first=928 second=1262 amount=-2 -kerning first=936 second=1240 amount=-2 -kerning first=247 second=268 amount=-2 -kerning first=967 second=81 amount=-2 -kerning first=124 second=972 amount=-1 -kerning first=160 second=281 amount=-1 -kerning first=45 second=65 amount=-2 -kerning first=1046 second=243 amount=-2 -kerning first=65 second=227 amount=-1 -kerning first=1074 second=1263 amount=-1 -kerning first=205 second=357 amount=-1 -kerning first=325 second=269 amount=-1 -kerning first=942 second=332 amount=-2 -kerning first=1203 second=244 amount=-1 -kerning first=251 second=216 amount=-2 -kerning first=164 second=228 amount=-1 -kerning first=277 second=118 amount=-1 -kerning first=183 second=1194 amount=-2 -kerning first=186 second=370 amount=-2 -kerning first=301 second=283 amount=-1 -kerning first=63 second=1256 amount=-2 -kerning first=1083 second=333 amount=-1 -kerning first=330 second=217 amount=-2 -kerning first=8377 second=375 amount=-1 -kerning first=92 second=79 amount=-2 -kerning first=1116 second=949 amount=-2 -kerning first=1119 second=257 amount=-1 -kerning first=946 second=271 amount=-1 -kerning first=249 second=1195 amount=-1 -kerning first=252 second=371 amount=-1 -kerning first=375 second=286 amount=-2 -kerning first=162 second=1257 amount=-1 -kerning first=305 second=230 amount=-1 -kerning first=1084 second=964 amount=-3 -kerning first=1096 second=45 amount=-2 -kerning first=210 second=923 amount=-2 -kerning first=1090 second=273 amount=-1 -kerning first=327 second=947 amount=-4 -kerning first=8372 second=8249 amount=-3 -kerning first=910 second=287 amount=-4 -kerning first=90 second=945 amount=-1 -kerning first=951 second=219 amount=-2 -kerning first=1207 second=1108 amount=-1 -kerning first=1220 second=347 amount=-1 -kerning first=253 second=1069 amount=-1 -kerning first=379 second=231 amount=-1 -kerning first=973 second=361 amount=-1 -kerning first=1027 second=121 amount=-1 -kerning first=282 second=243 amount=-1 -kerning first=1062 second=1028 amount=-1 -kerning first=1065 second=288 amount=-1 -kerning first=303 second=1263 amount=-1 -kerning first=74 second=269 amount=-1 -kerning first=916 second=232 amount=-1 -kerning first=1174 second=362 amount=-1 -kerning first=237 second=332 amount=-2 -kerning first=952 second=374 amount=-5 -kerning first=949 second=1203 amount=-1 -kerning first=35 second=118 amount=-4 -kerning first=1035 second=71 amount=-2 -kerning first=170 second=962 amount=-1 -kerning first=8225 second=351 amount=-1 -kerning first=8240 second=111 amount=-1 -kerning first=55 second=283 amount=-1 -kerning first=313 second=333 amount=-1 -kerning first=78 second=217 amount=-2 -kerning first=1170 second=8211 amount=-2 -kerning first=101 second=119 amount=-1 -kerning first=238 second=963 amount=-1 -kerning first=244 second=44 amount=-1 -kerning first=364 second=194 amount=-2 -kerning first=121 second=286 amount=-2 -kerning first=1299 second=234 amount=-1 -kerning first=1036 second=246 amount=-2 -kerning first=178 second=218 amount=-2 -kerning first=289 second=346 amount=-1 -kerning first=8226 second=1035 amount=-5 -kerning first=59 second=230 amount=-1 -kerning first=314 second=964 amount=-3 -kerning first=322 second=45 amount=-2 -kerning first=317 second=273 amount=-1 -kerning first=76 second=947 amount=-3 -kerning first=1096 second=8249 amount=-3 -kerning first=79 second=372 amount=-2 -kerning first=931 second=335 amount=-1 -kerning first=365 second=347 amount=-1 -kerning first=962 second=259 amount=-1 -kerning first=965 second=34 amount=-3 -kerning first=125 second=231 amount=-1 -kerning first=40 second=243 amount=-1 -kerning first=179 second=373 amount=-4 -kerning first=57 second=1263 amount=-1 -kerning first=323 second=220 amount=-2 -kerning first=8370 second=171 amount=-3 -kerning first=934 second=966 amount=-1 -kerning first=243 second=1203 amount=-2 -kerning first=369 second=289 amount=-1 -kerning first=366 second=1033 amount=-1 -kerning first=1048 second=111 amount=-1 -kerning first=187 second=83 amount=-1 -kerning first=299 second=233 amount=-1 -kerning first=64 second=333 amount=-1 -kerning first=207 second=245 amount=-1 -kerning first=902 second=290 amount=-2 -kerning first=84 second=949 amount=-3 -kerning first=87 second=257 amount=-2 -kerning first=1117 second=210 amount=-2 +kerning first=341 second=8222 amount=-3 +kerning first=341 second=8230 amount=-3 +kerning first=342 second=45 amount=-1 +kerning first=342 second=86 amount=-1 +kerning first=342 second=87 amount=-1 +kerning first=342 second=89 amount=-2 +kerning first=342 second=106 amount=2 +kerning first=342 second=171 amount=-1 +kerning first=342 second=173 amount=-1 +kerning first=342 second=221 amount=-2 +kerning first=342 second=372 amount=-1 +kerning first=342 second=374 amount=-2 +kerning first=342 second=376 amount=-2 +kerning first=342 second=933 amount=-2 +kerning first=342 second=939 amount=-2 +kerning first=342 second=1112 amount=2 +kerning first=342 second=1198 amount=-2 kerning first=342 second=8211 amount=-1 -kerning first=253 second=84 amount=-5 -kerning first=373 second=234 amount=-1 -kerning first=967 second=364 amount=-2 -kerning first=163 second=334 amount=-2 -kerning first=276 second=246 amount=-1 -kerning first=160 second=1090 amount=-3 -kerning first=45 second=346 amount=-1 -kerning first=1049 second=291 amount=-1 -kerning first=65 second=964 amount=-3 -kerning first=322 second=8249 amount=-3 -kerning first=906 second=235 amount=-1 -kerning first=1118 second=365 amount=-1 -kerning first=108 second=1108 amount=-1 -kerning first=254 second=259 amount=-1 -kerning first=257 second=34 amount=-1 -kerning first=965 second=8216 amount=-3 -kerning first=164 second=965 amount=-1 -kerning first=49 second=288 amount=-2 -kerning first=46 second=1028 amount=-1 -kerning first=304 second=336 amount=-2 -kerning first=72 second=220 amount=-2 -kerning first=1095 second=171 amount=-3 -kerning first=92 second=362 amount=-2 -kerning first=89 second=1176 amount=-2 -kerning first=950 second=324 amount=-2 -kerning first=381 second=99 amount=-1 -kerning first=378 second=337 amount=-1 -kerning first=1026 second=249 amount=-1 -kerning first=171 second=221 amount=-2 -kerning first=8218 second=1038 amount=-1 -kerning first=53 second=233 amount=-1 -kerning first=193 second=363 amount=-1 -kerning first=190 second=1177 amount=-1 -kerning first=73 second=375 amount=-1 -kerning first=910 second=1097 amount=-3 -kerning first=915 second=338 amount=-2 -kerning first=923 second=100 amount=-1 -kerning first=90 second=8211 amount=-3 -kerning first=1176 second=250 amount=-1 -kerning first=1171 second=941 amount=-1 -kerning first=356 second=1116 amount=-2 -kerning first=119 second=234 amount=-1 -kerning first=1263 second=187 amount=-1 -kerning first=382 second=277 amount=-1 -kerning first=34 second=246 amount=-1 -kerning first=172 second=376 amount=-5 -kerning first=282 second=1035 amount=-5 -kerning first=287 second=291 amount=-1 -kerning first=1065 second=1098 amount=-2 -kerning first=191 second=8212 amount=-2 -kerning first=194 second=1059 amount=-2 -kerning first=1071 second=101 amount=-1 -kerning first=80 second=85 amount=-2 -kerning first=338 second=365 amount=-1 -kerning first=960 second=212 amount=-2 -kerning first=257 second=8216 amount=-1 -kerning first=38 second=196 amount=-1 -kerning first=1035 second=354 amount=-5 -kerning first=170 second=8250 amount=-1 -kerning first=58 second=336 amount=-2 -kerning first=1073 second=279 amount=-1 -kerning first=201 second=248 amount=-1 -kerning first=321 second=171 amount=-3 -kerning first=81 second=260 amount=-2 -kerning first=936 second=225 amount=-1 -kerning first=247 second=87 amount=-5 -kerning first=956 second=1185 amount=-3 -kerning first=124 second=337 amount=-1 -kerning first=160 second=99 amount=-1 -kerning first=42 second=111 amount=-1 -kerning first=39 second=351 amount=-1 -kerning first=182 second=261 amount=-1 -kerning first=178 second=953 amount=-1 -kerning first=1078 second=226 amount=-1 -kerning first=8369 second=268 amount=-2 +kerning first=342 second=8212 amount=-1 +kerning first=342 second=8249 amount=-1 +kerning first=343 second=44 amount=-3 +kerning first=343 second=45 amount=-1 +kerning first=343 second=46 amount=-3 +kerning first=343 second=47 amount=-2 +kerning first=343 second=97 amount=-1 +kerning first=343 second=99 amount=-1 +kerning first=343 second=100 amount=-1 +kerning first=343 second=101 amount=-1 +kerning first=343 second=103 amount=-1 +kerning first=343 second=111 amount=-1 +kerning first=343 second=113 amount=-1 +kerning first=343 second=115 amount=-1 +kerning first=343 second=173 amount=-1 +kerning first=343 second=224 amount=-1 +kerning first=343 second=225 amount=-1 +kerning first=343 second=226 amount=-1 +kerning first=343 second=227 amount=-1 +kerning first=343 second=228 amount=-1 +kerning first=343 second=229 amount=-1 +kerning first=343 second=230 amount=-1 +kerning first=343 second=231 amount=-1 +kerning first=343 second=232 amount=-1 +kerning first=343 second=233 amount=-1 +kerning first=343 second=234 amount=-1 +kerning first=343 second=235 amount=-1 +kerning first=343 second=240 amount=-1 +kerning first=343 second=242 amount=-1 +kerning first=343 second=243 amount=-1 +kerning first=343 second=244 amount=-1 +kerning first=343 second=245 amount=-1 +kerning first=343 second=246 amount=-1 +kerning first=343 second=248 amount=-1 +kerning first=343 second=257 amount=-1 +kerning first=343 second=259 amount=-1 +kerning first=343 second=261 amount=-1 +kerning first=343 second=263 amount=-1 +kerning first=343 second=267 amount=-1 +kerning first=343 second=269 amount=-1 +kerning first=343 second=271 amount=-1 +kerning first=343 second=273 amount=-1 +kerning first=343 second=275 amount=-1 +kerning first=343 second=277 amount=-1 +kerning first=343 second=279 amount=-1 +kerning first=343 second=281 amount=-1 +kerning first=343 second=283 amount=-1 +kerning first=343 second=287 amount=-1 +kerning first=343 second=289 amount=-1 +kerning first=343 second=291 amount=-1 +kerning first=343 second=333 amount=-1 +kerning first=343 second=335 amount=-1 +kerning first=343 second=337 amount=-1 +kerning first=343 second=339 amount=-1 +kerning first=343 second=347 amount=-1 +kerning first=343 second=351 amount=-1 +kerning first=343 second=353 amount=-1 +kerning first=343 second=940 amount=-1 kerning first=343 second=941 amount=-1 -kerning first=105 second=352 amount=-1 -kerning first=371 second=187 amount=-1 -kerning first=958 second=8220 amount=-3 -kerning first=125 second=968 amount=-1 -kerning first=161 second=277 amount=-1 -kerning first=274 second=199 amount=-2 -kerning first=40 second=1035 amount=-5 -kerning first=43 second=291 amount=-1 -kerning first=186 second=211 amount=-2 -kerning first=298 second=339 amount=-1 -kerning first=301 second=101 amount=-1 -kerning first=295 second=1098 amount=-1 -kerning first=206 second=353 amount=-1 -kerning first=209 second=113 amount=-1 -kerning first=8377 second=216 amount=-2 -kerning first=86 second=365 amount=-1 -kerning first=1103 second=8221 amount=-3 -kerning first=1206 second=240 amount=-1 -kerning first=252 second=212 amount=-2 -kerning first=165 second=224 amount=-1 -kerning first=271 second=1118 amount=-1 -kerning first=8218 second=67 amount=-1 -kerning first=184 second=1184 amount=-5 -kerning first=302 second=279 amount=-1 -kerning first=299 second=970 amount=-1 -kerning first=70 second=171 amount=-3 -kerning first=8372 second=1195 amount=-1 -kerning first=8378 second=371 amount=-1 -kerning first=910 second=103 amount=-4 -kerning first=1168 second=253 amount=-1 -kerning first=356 second=115 amount=-3 -kerning first=948 second=267 amount=-1 -kerning first=253 second=367 amount=-1 -kerning first=250 second=1185 amount=-3 -kerning first=276 second=1038 amount=-2 -kerning first=8220 second=242 amount=-1 -kerning first=8216 second=923 amount=-3 -kerning first=1049 second=1101 amount=-1 -kerning first=306 second=226 amount=-1 -kerning first=906 second=972 amount=-1 -kerning first=91 second=941 amount=-1 -kerning first=94 second=250 amount=-1 -kerning first=234 second=380 amount=-1 -kerning first=360 second=65 amount=-2 -kerning first=114 second=1241 amount=-1 -kerning first=117 second=187 amount=-1 -kerning first=251 second=8220 amount=-3 -kerning first=167 second=1079 amount=-1 -kerning first=174 second=89 amount=-5 -kerning first=49 second=1098 amount=-3 -kerning first=52 second=339 amount=-1 -kerning first=1063 second=973 amount=-1 -kerning first=55 second=101 amount=-1 -kerning first=195 second=251 amount=-1 -kerning first=75 second=263 amount=-2 -kerning first=330 second=8221 amount=-3 -kerning first=1178 second=118 amount=-2 -kerning first=361 second=240 amount=-1 -kerning first=950 second=1194 amount=-2 -kerning first=258 second=943 amount=-1 -kerning first=1036 second=67 amount=-3 -kerning first=175 second=266 amount=-2 -kerning first=178 second=39 amount=-3 -kerning first=56 second=279 amount=-1 -kerning first=53 second=970 amount=-1 -kerning first=8361 second=271 amount=-1 -kerning first=1096 second=1195 amount=-1 -kerning first=1099 second=371 amount=-1 -kerning first=915 second=1257 amount=-1 -kerning first=102 second=115 amount=-1 -kerning first=1034 second=923 amount=-1 -kerning first=1037 second=242 amount=-1 -kerning first=179 second=214 amount=-2 -kerning first=287 second=1101 amount=-1 -kerning first=60 second=226 amount=-1 -kerning first=1071 second=1240 amount=-2 -kerning first=200 second=356 amount=-5 -kerning first=203 second=116 amount=-1 -kerning first=318 second=268 amount=-2 -kerning first=8365 second=219 amount=-2 -kerning first=80 second=368 amount=-2 -kerning first=223 second=281 amount=-1 -kerning first=1187 second=243 amount=-1 -kerning first=1298 second=1263 amount=-1 -kerning first=126 second=227 amount=-1 -kerning first=271 second=117 amount=-1 -kerning first=180 second=369 amount=-1 -kerning first=291 second=973 amount=-1 -kerning first=8366 second=374 amount=-5 -kerning first=78 second=8221 amount=-3 -kerning first=902 second=106 amount=1 -kerning first=81 second=1066 amount=-2 -kerning first=350 second=118 amount=-1 -kerning first=936 second=962 amount=-1 -kerning first=107 second=240 amount=-2 -kerning first=247 second=370 amount=-2 -kerning first=124 second=1256 amount=-2 -kerning first=276 second=67 amount=-2 -kerning first=188 second=79 amount=-2 -kerning first=300 second=229 amount=-1 -kerning first=1078 second=963 amount=-2 -kerning first=1081 second=271 amount=-1 -kerning first=205 second=920 amount=-2 -kerning first=325 second=371 amount=-1 -kerning first=322 second=1195 amount=-1 -kerning first=900 second=1026 amount=-5 -kerning first=903 second=286 amount=-2 -kerning first=88 second=253 amount=-1 +kerning first=343 second=945 amount=-1 +kerning first=343 second=949 amount=-1 +kerning first=343 second=955 amount=-3 +kerning first=343 second=959 amount=-1 +kerning first=343 second=962 amount=-1 +kerning first=343 second=963 amount=-1 +kerning first=343 second=966 amount=-1 +kerning first=343 second=972 amount=-1 +kerning first=343 second=1072 amount=-1 +kerning first=343 second=1077 amount=-1 +kerning first=343 second=1086 amount=-1 +kerning first=343 second=1089 amount=-1 +kerning first=343 second=1092 amount=-1 +kerning first=343 second=1104 amount=-1 +kerning first=343 second=1105 amount=-1 +kerning first=343 second=1108 amount=-1 +kerning first=343 second=1109 amount=-1 +kerning first=343 second=1195 amount=-1 +kerning first=343 second=1241 amount=-1 +kerning first=343 second=1257 amount=-1 +kerning first=343 second=8211 amount=-1 +kerning first=343 second=8212 amount=-1 +kerning first=343 second=8218 amount=-3 +kerning first=343 second=8222 amount=-3 +kerning first=343 second=8230 amount=-3 +kerning first=344 second=45 amount=-1 +kerning first=344 second=86 amount=-1 +kerning first=344 second=87 amount=-1 +kerning first=344 second=89 amount=-2 +kerning first=344 second=106 amount=2 +kerning first=344 second=171 amount=-1 +kerning first=344 second=173 amount=-1 +kerning first=344 second=221 amount=-2 +kerning first=344 second=372 amount=-1 +kerning first=344 second=374 amount=-2 +kerning first=344 second=376 amount=-2 +kerning first=344 second=933 amount=-2 +kerning first=344 second=939 amount=-2 +kerning first=344 second=1112 amount=2 +kerning first=344 second=1198 amount=-2 +kerning first=344 second=8211 amount=-1 +kerning first=344 second=8212 amount=-1 +kerning first=344 second=8249 amount=-1 +kerning first=345 second=44 amount=-3 +kerning first=345 second=45 amount=-1 +kerning first=345 second=46 amount=-3 +kerning first=345 second=47 amount=-2 +kerning first=345 second=97 amount=-1 +kerning first=345 second=99 amount=-1 +kerning first=345 second=100 amount=-1 +kerning first=345 second=101 amount=-1 +kerning first=345 second=103 amount=-1 +kerning first=345 second=111 amount=-1 +kerning first=345 second=113 amount=-1 +kerning first=345 second=115 amount=-1 +kerning first=345 second=173 amount=-1 +kerning first=345 second=224 amount=-1 +kerning first=345 second=225 amount=-1 +kerning first=345 second=226 amount=-1 +kerning first=345 second=227 amount=-1 +kerning first=345 second=228 amount=-1 +kerning first=345 second=229 amount=-1 +kerning first=345 second=230 amount=-1 +kerning first=345 second=231 amount=-1 +kerning first=345 second=232 amount=-1 +kerning first=345 second=233 amount=-1 +kerning first=345 second=234 amount=-1 +kerning first=345 second=235 amount=-1 +kerning first=345 second=240 amount=-1 +kerning first=345 second=242 amount=-1 +kerning first=345 second=243 amount=-1 +kerning first=345 second=244 amount=-1 +kerning first=345 second=245 amount=-1 +kerning first=345 second=246 amount=-1 +kerning first=345 second=248 amount=-1 +kerning first=345 second=257 amount=-1 +kerning first=345 second=259 amount=-1 +kerning first=345 second=261 amount=-1 +kerning first=345 second=263 amount=-1 +kerning first=345 second=267 amount=-1 +kerning first=345 second=269 amount=-1 +kerning first=345 second=271 amount=-1 +kerning first=345 second=273 amount=-1 +kerning first=345 second=275 amount=-1 +kerning first=345 second=277 amount=-1 +kerning first=345 second=279 amount=-1 +kerning first=345 second=281 amount=-1 +kerning first=345 second=283 amount=-1 +kerning first=345 second=287 amount=-1 +kerning first=345 second=289 amount=-1 +kerning first=345 second=291 amount=-1 +kerning first=345 second=333 amount=-1 +kerning first=345 second=335 amount=-1 +kerning first=345 second=337 amount=-1 +kerning first=345 second=339 amount=-1 +kerning first=345 second=347 amount=-1 +kerning first=345 second=351 amount=-1 +kerning first=345 second=353 amount=-1 +kerning first=345 second=940 amount=-1 +kerning first=345 second=941 amount=-1 +kerning first=345 second=945 amount=-1 +kerning first=345 second=949 amount=-1 +kerning first=345 second=955 amount=-3 +kerning first=345 second=959 amount=-1 +kerning first=345 second=962 amount=-1 +kerning first=345 second=963 amount=-1 +kerning first=345 second=966 amount=-1 +kerning first=345 second=972 amount=-1 +kerning first=345 second=1072 amount=-1 +kerning first=345 second=1077 amount=-1 +kerning first=345 second=1086 amount=-1 +kerning first=345 second=1089 amount=-1 +kerning first=345 second=1092 amount=-1 +kerning first=345 second=1104 amount=-1 +kerning first=345 second=1105 amount=-1 +kerning first=345 second=1108 amount=-1 +kerning first=345 second=1109 amount=-1 +kerning first=345 second=1195 amount=-1 +kerning first=345 second=1241 amount=-1 +kerning first=345 second=1257 amount=-1 +kerning first=345 second=8211 amount=-1 +kerning first=345 second=8212 amount=-1 +kerning first=345 second=8218 amount=-3 +kerning first=345 second=8222 amount=-3 +kerning first=345 second=8230 amount=-3 +kerning first=346 second=65 amount=-1 +kerning first=346 second=84 amount=-1 +kerning first=346 second=86 amount=-2 +kerning first=346 second=87 amount=-2 +kerning first=346 second=88 amount=-1 +kerning first=346 second=89 amount=-2 +kerning first=346 second=106 amount=1 +kerning first=346 second=118 amount=-1 +kerning first=346 second=119 amount=-1 +kerning first=346 second=120 amount=-1 +kerning first=346 second=193 amount=-1 +kerning first=346 second=194 amount=-1 +kerning first=346 second=196 amount=-1 +kerning first=346 second=197 amount=-1 +kerning first=346 second=198 amount=-1 +kerning first=346 second=221 amount=-2 +kerning first=346 second=256 amount=-1 +kerning first=346 second=258 amount=-1 +kerning first=346 second=260 amount=-1 +kerning first=346 second=354 amount=-1 +kerning first=346 second=356 amount=-1 +kerning first=346 second=372 amount=-2 +kerning first=346 second=373 amount=-1 +kerning first=346 second=374 amount=-2 +kerning first=346 second=376 amount=-2 +kerning first=346 second=913 amount=-1 +kerning first=346 second=916 amount=-1 +kerning first=346 second=923 amount=-1 +kerning first=346 second=932 amount=-1 +kerning first=346 second=933 amount=-2 +kerning first=346 second=935 amount=-1 +kerning first=346 second=939 amount=-2 +kerning first=346 second=947 amount=-1 +kerning first=346 second=957 amount=-1 +kerning first=346 second=1026 amount=-1 +kerning first=346 second=1035 amount=-1 +kerning first=346 second=1040 amount=-1 kerning first=346 second=1046 amount=-1 -kerning first=374 second=230 amount=-4 -kerning first=968 second=360 amount=-2 -kerning first=43 second=1101 amount=-1 -kerning first=1051 second=287 amount=-1 -kerning first=186 second=945 amount=-1 -kerning first=301 second=1240 amount=-2 -kerning first=298 second=1262 amount=-2 -kerning first=69 second=268 amount=-2 -kerning first=1087 second=219 amount=-2 -kerning first=1119 second=361 amount=-1 -kerning first=1170 second=121 amount=-1 -kerning first=946 second=373 amount=-4 -kerning first=1206 second=1028 amount=-1 -kerning first=1219 second=288 amount=-2 -kerning first=372 second=1263 amount=-1 -kerning first=168 second=269 amount=-1 -kerning first=47 second=973 amount=-1 -kerning first=1064 second=232 amount=-1 -kerning first=305 second=332 amount=-2 -kerning first=73 second=216 amount=-2 -kerning first=334 second=256 amount=-2 -kerning first=96 second=118 amount=-4 -kerning first=1176 second=71 amount=-2 -kerning first=376 second=1087 amount=-3 -kerning first=379 second=333 amount=-1 -kerning first=1027 second=245 amount=-1 -kerning first=172 second=217 amount=-2 -kerning first=8224 second=290 amount=-2 -kerning first=54 second=229 amount=-1 -kerning first=197 second=119 amount=-4 -kerning first=194 second=359 amount=-1 -kerning first=306 second=963 amount=-1 -kerning first=311 second=271 amount=-2 -kerning first=74 second=371 amount=-1 -kerning first=1094 second=1073 amount=-1 -kerning first=214 second=1026 amount=-5 -kerning first=916 second=334 amount=-2 -kerning first=1174 second=934 amount=-2 -kerning first=240 second=218 amount=-2 -kerning first=120 second=230 amount=-1 -kerning first=260 second=360 amount=-2 -kerning first=35 second=242 amount=-1 -kerning first=263 second=120 amount=-1 -kerning first=170 second=947 amount=-4 -kerning first=174 second=372 amount=-5 -kerning first=8240 second=235 amount=-1 -kerning first=55 second=1240 amount=-2 -kerning first=52 second=1262 amount=-2 -kerning first=1073 second=97 amount=-1 -kerning first=316 second=219 amount=-2 -kerning first=75 second=1069 amount=-2 -kerning first=1106 second=34 amount=-1 -kerning first=221 second=231 amount=-4 -kerning first=241 second=373 amount=-1 -kerning first=361 second=1028 amount=-2 -kerning first=1299 second=336 amount=-2 -kerning first=1036 second=350 amount=-1 -kerning first=294 second=232 amount=-1 -kerning first=59 second=332 amount=-2 -kerning first=1074 second=275 amount=-1 -kerning first=202 second=244 amount=-1 -kerning first=317 second=374 amount=-5 -kerning first=8369 second=87 amount=-5 -kerning first=219 second=1298 amount=-1 -kerning first=937 second=221 amount=-2 -kerning first=962 second=363 amount=-1 -kerning first=958 second=1177 amount=-1 -kerning first=125 second=333 amount=-1 -kerning first=1041 second=290 amount=-2 -kerning first=179 second=949 amount=-1 -kerning first=183 second=257 amount=-1 -kerning first=60 second=963 amount=-1 -kerning first=63 second=271 amount=-1 -kerning first=8370 second=262 amount=-2 -kerning first=901 second=234 amount=-1 -kerning first=223 second=1090 amount=-3 -kerning first=947 second=291 amount=-1 -kerning first=960 second=8212 amount=-2 -kerning first=963 second=1059 amount=-2 -kerning first=162 second=273 amount=-1 -kerning first=165 second=45 amount=-2 -kerning first=126 second=964 amount=-3 -kerning first=44 second=287 amount=-1 -kerning first=1048 second=235 amount=-1 -kerning first=299 second=335 amount=-1 -kerning first=302 second=97 amount=-1 -kerning first=204 second=1108 amount=-1 -kerning first=207 second=347 amount=-1 -kerning first=327 second=259 amount=-1 -kerning first=8378 second=212 amount=-2 -kerning first=331 second=34 amount=-1 -kerning first=84 second=1175 amount=-1 -kerning first=87 second=361 amount=-2 -kerning first=1106 second=8216 amount=-1 -kerning first=233 second=46 amount=-1 -kerning first=936 second=8250 amount=-1 -kerning first=166 second=220 amount=-2 -kerning first=276 second=350 amount=-1 -kerning first=48 second=232 amount=-1 -kerning first=188 second=362 amount=-2 -kerning first=185 second=1176 amount=-1 -kerning first=300 second=966 amount=-1 -kerning first=303 second=275 amount=-1 -kerning first=68 second=374 amount=-3 -kerning first=208 second=1033 amount=-1 -kerning first=906 second=337 amount=-1 -kerning first=94 second=71 amount=-2 -kerning first=1118 second=940 amount=-1 -kerning first=357 second=111 amount=-1 +kerning first=346 second=1058 amount=-1 +kerning first=346 second=1061 amount=-1 +kerning first=346 second=1066 amount=-1 +kerning first=346 second=1078 amount=-1 +kerning first=346 second=1093 amount=-1 +kerning first=346 second=1112 amount=1 +kerning first=346 second=1174 amount=-1 +kerning first=346 second=1175 amount=-1 +kerning first=346 second=1184 amount=-1 +kerning first=346 second=1198 amount=-2 +kerning first=346 second=1199 amount=-1 +kerning first=346 second=1202 amount=-1 +kerning first=346 second=1203 amount=-1 +kerning first=347 second=34 amount=-1 +kerning first=347 second=39 amount=-1 +kerning first=347 second=63 amount=-2 +kerning first=347 second=102 amount=-1 +kerning first=347 second=118 amount=-1 +kerning first=347 second=119 amount=-1 +kerning first=347 second=120 amount=-1 +kerning first=347 second=373 amount=-1 +kerning first=347 second=947 amount=-1 +kerning first=347 second=957 amount=-1 +kerning first=347 second=1078 amount=-1 +kerning first=347 second=1093 amount=-1 +kerning first=347 second=1175 amount=-1 +kerning first=347 second=1199 amount=-1 +kerning first=347 second=1203 amount=-1 +kerning first=347 second=8216 amount=-1 +kerning first=347 second=8217 amount=-1 +kerning first=347 second=8220 amount=-1 +kerning first=347 second=8221 amount=-1 +kerning first=350 second=65 amount=-1 +kerning first=350 second=84 amount=-1 +kerning first=350 second=86 amount=-2 +kerning first=350 second=87 amount=-2 +kerning first=350 second=88 amount=-1 +kerning first=350 second=89 amount=-2 +kerning first=350 second=106 amount=1 +kerning first=350 second=118 amount=-1 +kerning first=350 second=119 amount=-1 +kerning first=350 second=120 amount=-1 +kerning first=350 second=193 amount=-1 +kerning first=350 second=194 amount=-1 +kerning first=350 second=196 amount=-1 +kerning first=350 second=197 amount=-1 +kerning first=350 second=198 amount=-1 +kerning first=350 second=221 amount=-2 +kerning first=350 second=256 amount=-1 +kerning first=350 second=258 amount=-1 +kerning first=350 second=260 amount=-1 +kerning first=350 second=354 amount=-1 +kerning first=350 second=356 amount=-1 +kerning first=350 second=372 amount=-2 +kerning first=350 second=373 amount=-1 +kerning first=350 second=374 amount=-2 +kerning first=350 second=376 amount=-2 +kerning first=350 second=913 amount=-1 +kerning first=350 second=916 amount=-1 +kerning first=350 second=923 amount=-1 +kerning first=350 second=932 amount=-1 +kerning first=350 second=933 amount=-2 +kerning first=350 second=935 amount=-1 +kerning first=350 second=939 amount=-2 +kerning first=350 second=947 amount=-1 +kerning first=350 second=957 amount=-1 +kerning first=350 second=1026 amount=-1 +kerning first=350 second=1035 amount=-1 +kerning first=350 second=1040 amount=-1 +kerning first=350 second=1046 amount=-1 +kerning first=350 second=1058 amount=-1 +kerning first=350 second=1061 amount=-1 +kerning first=350 second=1066 amount=-1 +kerning first=350 second=1078 amount=-1 +kerning first=350 second=1093 amount=-1 +kerning first=350 second=1112 amount=1 +kerning first=350 second=1174 amount=-1 +kerning first=350 second=1175 amount=-1 +kerning first=350 second=1184 amount=-1 +kerning first=350 second=1198 amount=-2 +kerning first=350 second=1199 amount=-1 +kerning first=350 second=1202 amount=-1 +kerning first=350 second=1203 amount=-1 +kerning first=351 second=34 amount=-1 +kerning first=351 second=39 amount=-1 +kerning first=351 second=63 amount=-2 +kerning first=351 second=102 amount=-1 +kerning first=351 second=118 amount=-1 +kerning first=351 second=119 amount=-1 +kerning first=351 second=120 amount=-1 +kerning first=351 second=373 amount=-1 +kerning first=351 second=947 amount=-1 +kerning first=351 second=957 amount=-1 +kerning first=351 second=1078 amount=-1 +kerning first=351 second=1093 amount=-1 +kerning first=351 second=1175 amount=-1 +kerning first=351 second=1199 amount=-1 +kerning first=351 second=1203 amount=-1 +kerning first=351 second=8216 amount=-1 +kerning first=351 second=8217 amount=-1 +kerning first=351 second=8220 amount=-1 +kerning first=351 second=8221 amount=-1 +kerning first=352 second=65 amount=-1 +kerning first=352 second=84 amount=-1 +kerning first=352 second=86 amount=-2 +kerning first=352 second=87 amount=-2 +kerning first=352 second=88 amount=-1 +kerning first=352 second=89 amount=-2 +kerning first=352 second=106 amount=1 +kerning first=352 second=118 amount=-1 +kerning first=352 second=119 amount=-1 +kerning first=352 second=120 amount=-1 +kerning first=352 second=193 amount=-1 +kerning first=352 second=194 amount=-1 +kerning first=352 second=196 amount=-1 +kerning first=352 second=197 amount=-1 +kerning first=352 second=198 amount=-1 +kerning first=352 second=221 amount=-2 +kerning first=352 second=256 amount=-1 +kerning first=352 second=258 amount=-1 +kerning first=352 second=260 amount=-1 +kerning first=352 second=354 amount=-1 +kerning first=352 second=356 amount=-1 +kerning first=352 second=372 amount=-2 +kerning first=352 second=373 amount=-1 +kerning first=352 second=374 amount=-2 +kerning first=352 second=376 amount=-2 +kerning first=352 second=913 amount=-1 +kerning first=352 second=916 amount=-1 +kerning first=352 second=923 amount=-1 +kerning first=352 second=932 amount=-1 +kerning first=352 second=933 amount=-2 +kerning first=352 second=935 amount=-1 +kerning first=352 second=939 amount=-2 +kerning first=352 second=947 amount=-1 +kerning first=352 second=957 amount=-1 +kerning first=352 second=1026 amount=-1 +kerning first=352 second=1035 amount=-1 +kerning first=352 second=1040 amount=-1 +kerning first=352 second=1046 amount=-1 +kerning first=352 second=1058 amount=-1 +kerning first=352 second=1061 amount=-1 +kerning first=352 second=1066 amount=-1 +kerning first=352 second=1078 amount=-1 +kerning first=352 second=1093 amount=-1 +kerning first=352 second=1112 amount=1 +kerning first=352 second=1174 amount=-1 +kerning first=352 second=1175 amount=-1 +kerning first=352 second=1184 amount=-1 +kerning first=352 second=1198 amount=-2 +kerning first=352 second=1199 amount=-1 +kerning first=352 second=1202 amount=-1 +kerning first=352 second=1203 amount=-1 +kerning first=353 second=34 amount=-1 +kerning first=353 second=39 amount=-1 +kerning first=353 second=63 amount=-2 +kerning first=353 second=102 amount=-1 +kerning first=353 second=118 amount=-1 +kerning first=353 second=119 amount=-1 +kerning first=353 second=120 amount=-1 +kerning first=353 second=373 amount=-1 +kerning first=353 second=947 amount=-1 +kerning first=353 second=957 amount=-1 +kerning first=353 second=1078 amount=-1 +kerning first=353 second=1093 amount=-1 +kerning first=353 second=1175 amount=-1 +kerning first=353 second=1199 amount=-1 +kerning first=353 second=1203 amount=-1 +kerning first=353 second=8216 amount=-1 +kerning first=353 second=8217 amount=-1 +kerning first=353 second=8220 amount=-1 +kerning first=353 second=8221 amount=-1 +kerning first=354 second=44 amount=-3 +kerning first=354 second=45 amount=-4 +kerning first=354 second=46 amount=-3 +kerning first=354 second=47 amount=-4 +kerning first=354 second=110 amount=-2 +kerning first=354 second=65 amount=-6 +kerning first=354 second=67 amount=-1 +kerning first=354 second=114 amount=-2 +kerning first=354 second=71 amount=-1 +kerning first=354 second=74 amount=-5 +kerning first=354 second=79 amount=-1 +kerning first=354 second=81 amount=-1 +kerning first=354 second=83 amount=-1 +kerning first=354 second=97 amount=-2 +kerning first=354 second=99 amount=-3 +kerning first=354 second=100 amount=-3 +kerning first=354 second=101 amount=-3 +kerning first=354 second=103 amount=-2 +kerning first=354 second=109 amount=-2 +kerning first=354 second=111 amount=-3 +kerning first=354 second=112 amount=-2 +kerning first=354 second=113 amount=-3 +kerning first=354 second=115 amount=-3 +kerning first=354 second=117 amount=-2 +kerning first=354 second=118 amount=-2 +kerning first=354 second=119 amount=-2 +kerning first=354 second=120 amount=-1 +kerning first=354 second=121 amount=-2 +kerning first=354 second=122 amount=-1 +kerning first=354 second=171 amount=-3 +kerning first=354 second=173 amount=-4 +kerning first=354 second=187 amount=-1 +kerning first=354 second=193 amount=-6 +kerning first=354 second=194 amount=-6 +kerning first=354 second=196 amount=-6 +kerning first=354 second=197 amount=-6 +kerning first=354 second=198 amount=-6 +kerning first=354 second=199 amount=-1 +kerning first=354 second=210 amount=-1 +kerning first=354 second=211 amount=-1 +kerning first=354 second=212 amount=-1 +kerning first=354 second=213 amount=-1 +kerning first=354 second=214 amount=-1 +kerning first=354 second=216 amount=-1 +kerning first=354 second=224 amount=-2 +kerning first=354 second=225 amount=-2 +kerning first=354 second=226 amount=-2 +kerning first=354 second=227 amount=-2 +kerning first=354 second=228 amount=-2 +kerning first=354 second=229 amount=-2 +kerning first=354 second=230 amount=-2 +kerning first=354 second=231 amount=-3 +kerning first=354 second=232 amount=-3 +kerning first=354 second=233 amount=-3 +kerning first=354 second=234 amount=-3 +kerning first=354 second=235 amount=-3 +kerning first=354 second=240 amount=-3 +kerning first=354 second=241 amount=-2 +kerning first=354 second=242 amount=-3 +kerning first=354 second=243 amount=-3 +kerning first=354 second=244 amount=-3 +kerning first=354 second=245 amount=-3 +kerning first=354 second=246 amount=-3 +kerning first=354 second=248 amount=-3 +kerning first=354 second=249 amount=-2 +kerning first=354 second=250 amount=-2 +kerning first=354 second=251 amount=-2 +kerning first=354 second=252 amount=-2 +kerning first=354 second=253 amount=-2 +kerning first=354 second=256 amount=-6 +kerning first=354 second=257 amount=-2 +kerning first=354 second=258 amount=-6 +kerning first=354 second=259 amount=-2 +kerning first=354 second=260 amount=-6 +kerning first=354 second=261 amount=-2 +kerning first=354 second=262 amount=-1 +kerning first=354 second=263 amount=-3 +kerning first=354 second=266 amount=-1 +kerning first=354 second=267 amount=-3 +kerning first=354 second=268 amount=-1 +kerning first=354 second=269 amount=-3 +kerning first=354 second=271 amount=-3 +kerning first=354 second=273 amount=-3 +kerning first=354 second=275 amount=-3 +kerning first=354 second=277 amount=-3 +kerning first=354 second=279 amount=-3 +kerning first=354 second=281 amount=-3 +kerning first=354 second=283 amount=-3 +kerning first=354 second=286 amount=-1 +kerning first=354 second=287 amount=-2 +kerning first=354 second=288 amount=-1 +kerning first=354 second=289 amount=-2 +kerning first=354 second=290 amount=-1 +kerning first=354 second=291 amount=-2 +kerning first=354 second=324 amount=-2 +kerning first=354 second=326 amount=-2 +kerning first=354 second=328 amount=-2 +kerning first=354 second=331 amount=-2 +kerning first=354 second=332 amount=-1 +kerning first=354 second=333 amount=-3 +kerning first=354 second=334 amount=-1 +kerning first=354 second=335 amount=-3 +kerning first=354 second=336 amount=-1 +kerning first=354 second=337 amount=-3 +kerning first=354 second=338 amount=-1 +kerning first=354 second=339 amount=-3 +kerning first=354 second=341 amount=-2 +kerning first=354 second=343 amount=-2 +kerning first=354 second=345 amount=-2 +kerning first=354 second=346 amount=-1 +kerning first=354 second=347 amount=-3 +kerning first=354 second=350 amount=-1 kerning first=354 second=351 amount=-3 -kerning first=114 second=233 amount=-1 -kerning first=251 second=1177 amount=-1 -kerning first=254 second=363 amount=-1 -kerning first=374 second=967 amount=-2 -kerning first=167 second=375 amount=-1 -kerning first=280 second=290 amount=-2 -kerning first=1063 second=338 amount=-2 -kerning first=186 second=8211 amount=-2 -kerning first=1095 second=262 amount=-2 -kerning first=215 second=234 amount=-1 -kerning first=8377 second=8220 amount=-3 -kerning first=912 second=277 amount=-1 -kerning first=95 second=246 amount=-1 -kerning first=358 second=291 amount=-1 -kerning first=1224 second=339 amount=-1 -kerning first=252 second=8212 amount=-2 -kerning first=255 second=1059 amount=-2 -kerning first=1219 second=1098 amount=-3 -kerning first=1026 second=353 amount=-1 -kerning first=165 second=8249 amount=-3 -kerning first=175 second=85 amount=-2 -kerning first=53 second=335 amount=-1 -kerning first=56 second=97 amount=-1 -kerning first=193 second=936 amount=-3 -kerning first=1099 second=212 amount=-2 -kerning first=331 second=8216 amount=-1 -kerning first=923 second=224 amount=-1 -kerning first=1176 second=354 amount=-5 -kerning first=1171 second=1118 amount=-1 -kerning first=951 second=1184 amount=-5 -kerning first=1263 second=279 amount=-1 -kerning first=54 second=966 amount=-1 -kerning first=57 second=275 amount=-1 -kerning first=1071 second=225 amount=-1 -kerning first=318 second=87 amount=-5 -kerning first=1097 second=1185 amount=-2 -kerning first=223 second=99 amount=-1 -kerning first=338 second=940 amount=-1 -kerning first=100 second=351 amount=-1 -kerning first=103 second=111 amount=-1 -kerning first=240 second=953 amount=-1 -kerning first=268 second=198 amount=-1 -kerning first=38 second=290 amount=-2 -kerning first=180 second=210 amount=-2 -kerning first=291 second=338 amount=-2 -kerning first=296 second=100 amount=-1 -kerning first=8240 second=972 amount=-1 -kerning first=8260 second=281 amount=-1 -kerning first=201 second=352 amount=-1 -kerning first=321 second=262 amount=-2 -kerning first=221 second=968 amount=-2 -kerning first=928 second=1079 amount=-1 -kerning first=247 second=211 amount=-2 -kerning first=367 second=339 amount=-1 -kerning first=964 second=251 amount=-1 -kerning first=273 second=113 amount=-1 -kerning first=42 second=235 amount=-1 -kerning first=182 second=365 amount=-1 -kerning first=325 second=212 amount=-2 -kerning first=8364 second=1194 amount=-2 -kerning first=8369 second=370 amount=-2 -kerning first=88 second=74 amount=-1 -kerning first=346 second=354 amount=-1 -kerning first=942 second=266 amount=-2 -kerning first=371 second=279 amount=-1 -kerning first=164 second=171 amount=-3 -kerning first=277 second=63 amount=-2 -kerning first=179 second=8217 amount=-3 -kerning first=1051 second=103 amount=-1 -kerning first=301 second=225 amount=-1 -kerning first=69 second=87 amount=-5 -kerning first=1083 second=267 amount=-1 -kerning first=323 second=1185 amount=-3 -kerning first=86 second=940 amount=-1 -kerning first=89 second=249 amount=-2 -kerning first=946 second=214 amount=-2 -kerning first=246 second=8218 amount=-1 -kerning first=375 second=226 amount=-1 -kerning first=47 second=338 amount=-1 -kerning first=50 second=100 amount=-1 -kerning first=1048 second=972 amount=-1 -kerning first=190 second=250 amount=-1 -kerning first=70 second=262 amount=-2 -kerning first=324 second=8220 amount=-1 -kerning first=910 second=227 amount=-4 -kerning first=93 second=199 amount=-2 -kerning first=1168 second=357 amount=-1 -kerning first=1171 second=117 amount=-1 -kerning first=236 second=89 amount=-5 -kerning first=948 second=369 amount=-1 -kerning first=110 second=1098 amount=-1 -kerning first=113 second=339 amount=-1 -kerning first=256 second=251 amount=-1 -kerning first=169 second=263 amount=-1 -kerning first=8224 second=106 amount=1 -kerning first=74 second=212 amount=-2 -kerning first=1085 second=1194 amount=-2 -kerning first=906 second=1256 amount=-2 -kerning first=91 second=1118 amount=-1 -kerning first=94 second=354 amount=-5 -kerning first=237 second=266 amount=-2 -kerning first=240 second=39 amount=-3 -kerning first=955 second=79 amount=-2 -kerning first=117 second=279 amount=-1 -kerning first=174 second=213 amount=-2 -kerning first=8225 second=286 amount=-2 -kerning first=1063 second=1257 amount=-1 -kerning first=55 second=225 amount=-1 -kerning first=195 second=355 amount=-1 -kerning first=198 second=115 amount=-1 -kerning first=313 second=267 amount=-1 -kerning first=72 second=1185 amount=-3 -kerning first=75 second=367 amount=-1 -kerning first=95 second=1038 amount=-2 -kerning first=1178 second=242 amount=-1 -kerning first=358 second=1101 amount=-1 -kerning first=1224 second=1262 amount=-2 -kerning first=121 second=226 amount=-1 -kerning first=175 second=368 amount=-2 -kerning first=289 second=281 amount=-1 -kerning first=8361 second=373 amount=-4 -kerning first=73 second=8220 amount=-3 -kerning first=931 second=269 amount=-1 -kerning first=1041 second=106 amount=1 -kerning first=176 second=1066 amount=-5 -kerning first=172 second=8221 amount=-3 -kerning first=1071 second=962 amount=-1 -kerning first=203 second=240 amount=-1 -kerning first=318 second=370 amount=-2 -kerning first=315 second=1194 amount=-1 -kerning first=8370 second=83 amount=-1 -kerning first=80 second=943 amount=-1 -kerning first=249 second=79 amount=-2 -kerning first=369 second=229 amount=-1 -kerning first=963 second=359 amount=-1 -kerning first=966 second=119 amount=-1 -kerning first=44 second=103 amount=-1 -kerning first=1044 second=286 amount=-1 -kerning first=184 second=253 amount=-1 -kerning first=291 second=1257 amount=-1 -kerning first=8260 second=1090 amount=-3 -kerning first=64 second=267 amount=-1 -kerning first=1080 second=218 amount=-2 -kerning first=902 second=230 amount=-1 -kerning first=936 second=947 amount=-4 -kerning first=247 second=945 amount=-1 -kerning first=367 second=1262 amount=-2 -kerning first=163 second=268 amount=-2 -kerning first=42 second=972 amount=-1 -kerning first=1049 second=231 amount=-1 -kerning first=1081 second=373 amount=-4 -kerning first=900 second=1263 amount=-1 -kerning first=91 second=117 amount=-1 -kerning first=88 second=357 amount=-1 -kerning first=108 second=973 amount=-1 -kerning first=1210 second=232 amount=-1 -kerning first=374 second=332 amount=-3 -kerning first=971 second=244 amount=-1 -kerning first=167 second=216 amount=-2 -kerning first=280 second=106 amount=1 -kerning first=8217 second=289 amount=-1 -kerning first=49 second=228 amount=-1 -kerning first=8211 second=1033 amount=-4 -kerning first=192 second=118 amount=-4 -kerning first=301 second=962 amount=-1 -kerning first=69 second=370 amount=-2 -kerning first=1095 second=83 amount=-1 -kerning first=8377 second=1177 amount=-1 -kerning first=89 second=1044 amount=-5 -kerning first=95 second=67 amount=-2 -kerning first=1170 second=245 amount=-1 -kerning first=946 second=949 amount=-1 -kerning first=950 second=257 amount=-1 -kerning first=255 second=359 amount=-1 -kerning first=258 second=119 amount=-4 -kerning first=375 second=963 amount=-1 -kerning first=378 second=271 amount=-1 -kerning first=165 second=1195 amount=-1 -kerning first=168 second=371 amount=-1 -kerning first=278 second=1026 amount=-5 -kerning first=47 second=1257 amount=-1 -kerning first=1064 second=334 amount=-2 -kerning first=8378 second=8212 amount=-2 -kerning first=915 second=273 amount=-1 -kerning first=923 second=45 amount=-2 -kerning first=96 second=242 amount=-1 -kerning first=910 second=964 amount=-2 -kerning first=233 second=947 amount=-1 -kerning first=236 second=372 amount=-5 -kerning first=337 second=120 amount=-2 -kerning first=113 second=1262 amount=-2 -kerning first=1263 second=97 amount=-1 -kerning first=973 second=1108 amount=-1 -kerning first=1027 second=347 amount=-1 -kerning first=169 second=1069 amount=-1 -kerning first=176 second=81 amount=-2 -kerning first=287 second=231 amount=-1 -kerning first=197 second=243 amount=-1 -kerning first=214 second=1263 amount=-1 -kerning first=926 second=220 amount=-2 -kerning first=363 second=232 amount=-1 -kerning first=952 second=1176 amount=-1 -kerning first=955 second=362 amount=-2 -kerning first=1298 second=275 amount=-1 -kerning first=38 second=106 amount=1 -kerning first=1035 second=289 amount=-1 -kerning first=1028 second=1033 amount=-1 -kerning first=8240 second=337 amount=-1 -kerning first=8260 second=99 amount=-1 -kerning first=55 second=962 amount=-1 -kerning first=1073 second=221 amount=-5 -kerning first=321 second=83 amount=-1 -kerning first=8363 second=261 amount=-1 -kerning first=221 second=333 amount=-4 -kerning first=928 second=375 amount=-1 -kerning first=121 second=963 amount=-1 -kerning first=124 second=271 amount=-1 -kerning first=36 second=1026 amount=-5 -kerning first=1039 second=234 amount=-1 -kerning first=289 second=1090 amount=-3 -kerning first=294 second=334 amount=-2 -kerning first=62 second=218 amount=-2 -kerning first=1074 second=376 amount=-5 -kerning first=202 second=346 amount=-1 -kerning first=8369 second=211 amount=-2 -kerning first=79 second=1174 amount=-3 -kerning first=1099 second=8212 amount=-2 -kerning first=923 second=8249 amount=-3 -kerning first=942 second=85 amount=-2 -kerning first=105 second=287 amount=-1 -kerning first=371 second=97 amount=-1 -kerning first=161 second=219 amount=-2 -kerning first=43 second=231 amount=-1 -kerning first=183 second=361 amount=-1 -kerning first=186 second=121 amount=-1 -kerning first=63 second=373 amount=-4 -kerning first=1071 second=8250 amount=-1 -kerning first=203 second=1028 amount=-2 -kerning first=206 second=288 amount=-2 -kerning first=8365 second=1184 amount=-5 -kerning first=8370 second=366 amount=-2 -kerning first=901 second=336 amount=-2 -kerning first=1116 second=248 amount=-2 -kerning first=249 second=362 amount=-2 -kerning first=369 second=966 amount=-1 -kerning first=372 second=275 amount=-3 -kerning first=162 second=374 amount=-5 -kerning first=1048 second=337 amount=-1 -kerning first=190 second=71 amount=-2 -kerning first=302 second=221 amount=-5 -kerning first=70 second=83 amount=-1 -kerning first=1084 second=261 amount=-1 -kerning first=1080 second=953 amount=-1 -kerning first=327 second=363 amount=-1 -kerning first=90 second=245 amount=-1 -kerning first=948 second=210 amount=-2 -kerning first=247 second=8211 amount=-2 -kerning first=1220 second=100 amount=-1 -kerning first=169 second=84 amount=-5 -kerning first=8216 second=1241 amount=-1 -kerning first=48 second=334 amount=-2 -kerning first=1049 second=968 amount=-1 -kerning first=191 second=246 amount=-1 -kerning first=1062 second=277 amount=-1 -kerning first=303 second=376 amount=-5 -kerning first=325 second=8212 amount=-2 -kerning first=1174 second=113 amount=-1 -kerning first=237 second=85 amount=-2 -kerning first=357 second=235 amount=-1 -kerning first=114 second=335 amount=-1 -kerning first=117 second=97 amount=-1 -kerning first=377 second=377 amount=1 -kerning first=170 second=259 amount=-1 -kerning first=174 second=34 amount=-3 -kerning first=49 second=965 amount=-1 -kerning first=55 second=46 amount=-4 -kerning first=301 second=8250 amount=-1 -kerning first=313 second=86 amount=-5 -kerning first=1087 second=1184 amount=-5 -kerning first=1095 second=366 amount=-2 -kerning first=215 second=336 amount=-2 -kerning first=95 second=350 amount=-1 -kerning first=1178 second=63 amount=-2 -kerning first=946 second=8217 amount=-3 -kerning first=118 second=275 amount=-1 -kerning first=1240 second=87 amount=-2 -kerning first=289 second=99 amount=-1 -kerning first=56 second=221 amount=-5 -kerning first=196 second=351 amount=-1 -kerning first=314 second=261 amount=-1 -kerning first=8361 second=214 amount=-2 -kerning first=73 second=1177 amount=-1 -kerning first=76 second=363 amount=-1 -kerning first=1090 second=8218 amount=-3 -kerning first=216 second=967 amount=-1 -kerning first=365 second=100 amount=-1 -kerning first=958 second=250 amount=-1 -kerning first=954 second=941 amount=-2 -kerning first=37 second=234 amount=-1 -kerning first=1037 second=187 amount=-1 -kerning first=176 second=364 amount=-2 -kerning first=287 second=968 amount=-1 -kerning first=57 second=376 amount=-5 -kerning first=197 second=1035 amount=-5 -kerning first=200 second=291 amount=-1 -kerning first=318 second=211 amount=-2 -kerning first=74 second=8212 amount=-2 -kerning first=77 second=1059 amount=-2 -kerning first=1103 second=251 amount=-1 -kerning first=341 second=353 amount=-1 -kerning first=934 second=263 amount=-1 -kerning first=103 second=235 amount=-1 -kerning first=174 second=8216 amount=-3 -kerning first=296 second=224 amount=-1 -kerning first=8240 second=1256 amount=-2 -kerning first=55 second=8250 amount=-1 -kerning first=1080 second=39 amount=-3 -kerning first=316 second=1184 amount=-5 -kerning first=321 second=366 amount=-2 -kerning first=8372 second=79 amount=-2 -kerning first=84 second=248 amount=-3 -kerning first=241 second=8217 amount=-1 -kerning first=964 second=355 amount=-1 -kerning first=967 second=115 amount=-1 -kerning first=163 second=87 amount=-5 -kerning first=42 second=337 amount=-1 -kerning first=185 second=249 amount=-1 -kerning first=182 second=940 amount=-1 -kerning first=65 second=261 amount=-1 -kerning first=1081 second=214 amount=-2 -kerning first=62 second=953 amount=-1 -kerning first=8369 second=945 amount=-1 -kerning first=903 second=226 amount=-1 -kerning first=1118 second=116 amount=-1 -kerning first=942 second=368 amount=-2 -kerning first=108 second=338 amount=-2 -kerning first=1203 second=281 amount=-1 -kerning first=251 second=250 amount=-1 -kerning first=164 second=262 amount=-2 -kerning first=274 second=1241 amount=-1 -kerning first=43 second=968 amount=-1 -kerning first=1051 second=227 amount=-1 -kerning first=189 second=199 amount=-2 -kerning first=298 second=1079 amount=-1 -kerning first=304 second=89 amount=-5 -kerning first=69 second=211 amount=-2 -kerning first=1083 second=369 amount=-1 -kerning first=209 second=339 amount=-1 -kerning first=206 second=1098 amount=-3 -kerning first=330 second=251 amount=-1 -kerning first=86 second=1117 amount=-2 -kerning first=89 second=353 amount=-3 -kerning first=92 second=113 amount=-1 -kerning first=1219 second=228 amount=-1 -kerning first=372 second=1080 amount=-2 -kerning first=168 second=212 amount=-2 -kerning first=281 second=102 amount=-1 -kerning first=8222 second=55 amount=-1 -kerning first=50 second=224 amount=-1 -kerning first=1048 second=1256 amount=-2 -kerning first=190 second=354 amount=-5 -kerning first=305 second=266 amount=-2 -kerning first=67 second=1184 amount=-1 -kerning first=70 second=366 amount=-2 -kerning first=1096 second=79 amount=-2 -kerning first=910 second=328 amount=-3 -kerning first=1168 second=920 amount=-2 -kerning first=236 second=213 amount=-2 +kerning first=354 second=352 amount=-1 +kerning first=354 second=353 amount=-3 +kerning first=354 second=361 amount=-2 +kerning first=354 second=363 amount=-2 +kerning first=354 second=365 amount=-2 +kerning first=354 second=367 amount=-2 +kerning first=354 second=369 amount=-2 +kerning first=354 second=371 amount=-2 +kerning first=354 second=373 amount=-2 +kerning first=354 second=375 amount=-2 +kerning first=354 second=378 amount=-1 +kerning first=354 second=380 amount=-1 +kerning first=354 second=382 amount=-1 +kerning first=354 second=913 amount=-6 +kerning first=354 second=916 amount=-6 +kerning first=354 second=920 amount=-1 +kerning first=354 second=923 amount=-6 +kerning first=354 second=927 amount=-1 +kerning first=354 second=940 amount=-3 +kerning first=354 second=941 amount=-3 +kerning first=354 second=942 amount=-2 +kerning first=354 second=945 amount=-3 +kerning first=354 second=947 amount=-2 +kerning first=354 second=949 amount=-3 +kerning first=354 second=951 amount=-2 +kerning first=354 second=954 amount=-2 +kerning first=354 second=957 amount=-2 +kerning first=354 second=959 amount=-3 +kerning first=354 second=962 amount=-3 +kerning first=354 second=963 amount=-3 +kerning first=354 second=965 amount=-2 +kerning first=354 second=966 amount=-3 +kerning first=354 second=968 amount=-2 +kerning first=354 second=972 amount=-3 +kerning first=354 second=973 amount=-2 +kerning first=354 second=1028 amount=-1 +kerning first=354 second=1029 amount=-1 +kerning first=354 second=1032 amount=-5 +kerning first=354 second=1033 amount=-4 +kerning first=354 second=1040 amount=-6 +kerning first=354 second=1044 amount=-4 +kerning first=354 second=1051 amount=-4 +kerning first=354 second=1054 amount=-1 +kerning first=354 second=1057 amount=-1 +kerning first=354 second=1072 amount=-2 +kerning first=354 second=1074 amount=-2 +kerning first=354 second=1075 amount=-2 +kerning first=354 second=1077 amount=-3 +kerning first=354 second=1078 amount=-1 +kerning first=354 second=1079 amount=-2 +kerning first=354 second=1080 amount=-2 +kerning first=354 second=1081 amount=-2 +kerning first=354 second=1082 amount=-2 +kerning first=354 second=1084 amount=-2 +kerning first=354 second=1085 amount=-2 +kerning first=354 second=1086 amount=-3 +kerning first=354 second=1087 amount=-2 +kerning first=354 second=1088 amount=-2 +kerning first=354 second=1089 amount=-3 +kerning first=354 second=1091 amount=-2 +kerning first=354 second=1092 amount=-3 +kerning first=354 second=1093 amount=-1 +kerning first=354 second=1094 amount=-2 +kerning first=354 second=1096 amount=-2 +kerning first=354 second=1097 amount=-2 +kerning first=354 second=1099 amount=-2 +kerning first=354 second=1100 amount=-2 +kerning first=354 second=1101 amount=-2 +kerning first=354 second=1102 amount=-2 +kerning first=354 second=1104 amount=-3 +kerning first=354 second=1105 amount=-3 +kerning first=354 second=1107 amount=-2 +kerning first=354 second=1108 amount=-3 +kerning first=354 second=1109 amount=-3 +kerning first=354 second=1114 amount=-2 +kerning first=354 second=1116 amount=-2 +kerning first=354 second=1117 amount=-2 +kerning first=354 second=1118 amount=-2 +kerning first=354 second=1119 amount=-2 +kerning first=354 second=1169 amount=-2 +kerning first=354 second=1175 amount=-1 +kerning first=354 second=1177 amount=-2 +kerning first=354 second=1179 amount=-2 +kerning first=354 second=1187 amount=-2 +kerning first=354 second=1194 amount=-1 +kerning first=354 second=1195 amount=-3 +kerning first=354 second=1199 amount=-2 +kerning first=354 second=1203 amount=-1 +kerning first=354 second=1220 amount=-2 +kerning first=354 second=1224 amount=-2 +kerning first=354 second=1240 amount=-1 +kerning first=354 second=1241 amount=-3 +kerning first=354 second=1256 amount=-1 +kerning first=354 second=1257 amount=-3 +kerning first=354 second=1263 amount=-2 +kerning first=354 second=1298 amount=-4 +kerning first=354 second=8211 amount=-4 +kerning first=354 second=8212 amount=-4 +kerning first=354 second=8218 amount=-3 +kerning first=354 second=8222 amount=-3 +kerning first=354 second=8230 amount=-3 +kerning first=354 second=8249 amount=-3 +kerning first=354 second=8250 amount=-1 +kerning first=355 second=44 amount=-1 +kerning first=355 second=46 amount=-1 +kerning first=355 second=47 amount=-1 +kerning first=355 second=955 amount=-1 +kerning first=355 second=8218 amount=-1 +kerning first=355 second=8222 amount=-1 +kerning first=355 second=8230 amount=-1 +kerning first=356 second=44 amount=-3 +kerning first=356 second=45 amount=-4 +kerning first=356 second=46 amount=-3 +kerning first=356 second=47 amount=-4 +kerning first=356 second=110 amount=-2 +kerning first=356 second=65 amount=-6 +kerning first=356 second=67 amount=-1 +kerning first=356 second=114 amount=-2 +kerning first=356 second=71 amount=-1 +kerning first=356 second=74 amount=-5 +kerning first=356 second=79 amount=-1 +kerning first=356 second=81 amount=-1 +kerning first=356 second=83 amount=-1 +kerning first=356 second=97 amount=-2 +kerning first=356 second=99 amount=-3 +kerning first=356 second=100 amount=-3 +kerning first=356 second=101 amount=-3 +kerning first=356 second=103 amount=-2 +kerning first=356 second=109 amount=-2 +kerning first=356 second=111 amount=-3 +kerning first=356 second=112 amount=-2 +kerning first=356 second=113 amount=-3 +kerning first=356 second=115 amount=-3 +kerning first=356 second=117 amount=-2 +kerning first=356 second=118 amount=-2 +kerning first=356 second=119 amount=-2 +kerning first=356 second=120 amount=-1 +kerning first=356 second=121 amount=-2 +kerning first=356 second=122 amount=-1 +kerning first=356 second=171 amount=-3 +kerning first=356 second=173 amount=-4 +kerning first=356 second=187 amount=-1 +kerning first=356 second=193 amount=-6 +kerning first=356 second=194 amount=-6 +kerning first=356 second=196 amount=-6 +kerning first=356 second=197 amount=-6 +kerning first=356 second=198 amount=-6 +kerning first=356 second=199 amount=-1 +kerning first=356 second=210 amount=-1 +kerning first=356 second=211 amount=-1 +kerning first=356 second=212 amount=-1 +kerning first=356 second=213 amount=-1 +kerning first=356 second=214 amount=-1 +kerning first=356 second=216 amount=-1 +kerning first=356 second=224 amount=-2 +kerning first=356 second=225 amount=-2 +kerning first=356 second=226 amount=-2 +kerning first=356 second=227 amount=-2 +kerning first=356 second=228 amount=-2 +kerning first=356 second=229 amount=-2 +kerning first=356 second=230 amount=-2 +kerning first=356 second=231 amount=-3 +kerning first=356 second=232 amount=-3 +kerning first=356 second=233 amount=-3 +kerning first=356 second=234 amount=-3 +kerning first=356 second=235 amount=-3 +kerning first=356 second=240 amount=-3 +kerning first=356 second=241 amount=-2 +kerning first=356 second=242 amount=-3 +kerning first=356 second=243 amount=-3 +kerning first=356 second=244 amount=-3 +kerning first=356 second=245 amount=-3 +kerning first=356 second=246 amount=-3 +kerning first=356 second=248 amount=-3 +kerning first=356 second=249 amount=-2 +kerning first=356 second=250 amount=-2 +kerning first=356 second=251 amount=-2 +kerning first=356 second=252 amount=-2 +kerning first=356 second=253 amount=-2 +kerning first=356 second=256 amount=-6 +kerning first=356 second=257 amount=-2 +kerning first=356 second=258 amount=-6 +kerning first=356 second=259 amount=-2 +kerning first=356 second=260 amount=-6 +kerning first=356 second=261 amount=-2 +kerning first=356 second=262 amount=-1 +kerning first=356 second=263 amount=-3 +kerning first=356 second=266 amount=-1 +kerning first=356 second=267 amount=-3 +kerning first=356 second=268 amount=-1 +kerning first=356 second=269 amount=-3 +kerning first=356 second=271 amount=-3 +kerning first=356 second=273 amount=-3 +kerning first=356 second=275 amount=-3 +kerning first=356 second=277 amount=-3 +kerning first=356 second=279 amount=-3 +kerning first=356 second=281 amount=-3 +kerning first=356 second=283 amount=-3 +kerning first=356 second=286 amount=-1 +kerning first=356 second=287 amount=-2 +kerning first=356 second=288 amount=-1 +kerning first=356 second=289 amount=-2 +kerning first=356 second=290 amount=-1 +kerning first=356 second=291 amount=-2 +kerning first=356 second=324 amount=-2 +kerning first=356 second=326 amount=-2 +kerning first=356 second=328 amount=-2 +kerning first=356 second=331 amount=-2 +kerning first=356 second=332 amount=-1 +kerning first=356 second=333 amount=-3 +kerning first=356 second=334 amount=-1 +kerning first=356 second=335 amount=-3 +kerning first=356 second=336 amount=-1 +kerning first=356 second=337 amount=-3 +kerning first=356 second=338 amount=-1 +kerning first=356 second=339 amount=-3 kerning first=356 second=341 amount=-2 -kerning first=951 second=253 amount=-1 -kerning first=1207 second=1257 amount=-1 -kerning first=256 second=355 amount=-1 -kerning first=379 second=267 amount=-1 -kerning first=169 second=367 amount=-1 -kerning first=166 second=1185 amount=-3 -kerning first=8224 second=230 amount=-1 -kerning first=191 second=1038 amount=-2 -kerning first=68 second=8218 amount=-1 -kerning first=1094 second=945 amount=-1 -kerning first=338 second=116 amount=-1 -kerning first=916 second=268 amount=-2 -kerning first=237 second=368 amount=-2 -kerning first=357 second=972 amount=-1 -kerning first=35 second=187 amount=-1 -kerning first=167 second=8220 amount=-3 -kerning first=58 second=89 amount=-5 -kerning first=52 second=1079 amount=-1 -kerning first=313 second=369 amount=-1 -kerning first=78 second=251 amount=-1 -kerning first=928 second=216 amount=-2 -kerning first=1185 second=106 amount=1 -kerning first=238 second=1066 amount=-5 -kerning first=235 second=8221 amount=-1 -kerning first=961 second=118 amount=-1 -kerning first=381 second=1194 amount=-1 -kerning first=1036 second=283 amount=-2 -kerning first=175 second=943 amount=-1 -kerning first=178 second=252 amount=-1 -kerning first=59 second=266 amount=-2 -kerning first=62 second=39 amount=-3 -kerning first=1074 second=217 amount=-2 -kerning first=322 second=79 amount=-2 -kerning first=8361 second=949 amount=-1 -kerning first=8364 second=257 amount=-1 -kerning first=923 second=1195 amount=-1 -kerning first=931 second=371 amount=-1 -kerning first=105 second=103 amount=-1 -kerning first=1186 second=286 amount=-1 -kerning first=125 second=267 amount=-1 -kerning first=1041 second=230 amount=-1 -kerning first=63 second=214 amount=-2 -kerning first=1071 second=947 amount=-4 -kerning first=200 second=1101 amount=-1 -kerning first=318 second=945 amount=-1 -kerning first=86 second=116 amount=-1 -kerning first=83 second=356 amount=-1 -kerning first=934 second=1069 amount=-1 -kerning first=103 second=972 amount=-1 -kerning first=947 second=231 amount=-1 -kerning first=184 second=357 amount=-1 -kerning first=299 second=269 amount=-1 -kerning first=64 second=369 amount=-1 -kerning first=204 second=973 amount=-1 -kerning first=8366 second=1176 amount=-1 -kerning first=8372 second=362 amount=-2 -kerning first=902 second=332 amount=-2 -kerning first=1117 second=244 amount=-1 -kerning first=1194 second=1298 amount=-1 -kerning first=253 second=118 amount=-4 -kerning first=160 second=1194 amount=-2 -kerning first=163 second=370 amount=-2 -kerning first=276 second=283 amount=-1 -kerning first=8216 second=233 amount=-1 -kerning first=42 second=1256 amount=-2 -kerning first=45 second=382 amount=-2 -kerning first=1049 second=333 amount=-1 -kerning first=191 second=67 amount=-2 -kerning first=303 second=217 amount=-2 -kerning first=1081 second=949 amount=-1 -kerning first=1085 second=257 amount=-1 -kerning first=8369 second=8211 amount=-2 -kerning first=903 second=963 amount=-1 -kerning first=906 second=271 amount=-1 -kerning first=88 second=920 amount=-3 -kerning first=354 second=286 amount=-1 -kerning first=108 second=1257 amount=-1 -kerning first=1203 second=1090 amount=-2 -kerning first=1210 second=334 amount=-2 -kerning first=971 second=346 amount=-1 -kerning first=280 second=230 amount=-1 -kerning first=1051 second=964 amount=-3 -kerning first=1063 second=273 amount=-1 -kerning first=192 second=242 amount=-1 -kerning first=301 second=947 amount=-4 -kerning first=304 second=372 amount=-5 -kerning first=69 second=945 amount=-1 -kerning first=209 second=1262 amount=-2 -kerning first=912 second=219 amount=-2 -kerning first=1119 second=1108 amount=-1 -kerning first=1170 second=347 amount=-1 -kerning first=238 second=81 amount=-2 -kerning first=358 second=231 amount=-1 -kerning first=950 second=361 amount=-1 -kerning first=1219 second=965 amount=-1 -kerning first=1262 second=46 amount=-1 -kerning first=258 second=243 amount=-1 -kerning first=1026 second=288 amount=-2 -kerning first=278 second=1263 amount=-1 -kerning first=8222 second=336 amount=-1 -kerning first=53 second=269 amount=-1 -kerning first=1067 second=220 amount=-2 -kerning first=1096 second=362 amount=-2 -kerning first=910 second=1203 amount=-2 -kerning first=915 second=374 amount=-5 -kerning first=1176 second=289 amount=-1 -kerning first=356 second=1298 amount=-4 -kerning first=958 second=71 amount=-2 -kerning first=1263 second=221 amount=-5 -kerning first=262 second=193 amount=-1 -kerning first=376 second=8230 amount=-4 -kerning first=34 second=283 amount=-1 -kerning first=287 second=333 amount=-1 -kerning first=57 second=217 amount=-2 -kerning first=311 second=949 amount=-2 -kerning first=80 second=119 amount=-4 -kerning first=77 second=359 amount=-1 -kerning first=934 second=84 amount=-5 -kerning first=100 second=286 amount=-2 -kerning first=1184 second=234 amount=-2 -kerning first=363 second=334 amount=-2 -kerning first=960 second=246 amount=-1 -kerning first=123 second=218 amount=-2 -kerning first=1298 second=376 amount=-5 -kerning first=38 second=230 amount=-1 -kerning first=177 second=360 amount=-2 -kerning first=291 second=273 amount=-1 -kerning first=296 second=45 amount=-2 -kerning first=55 second=947 amount=-4 -kerning first=58 second=372 amount=-5 -kerning first=201 second=287 amount=-1 -kerning first=8363 second=365 amount=-1 -kerning first=936 second=259 amount=-1 -kerning first=941 second=34 amount=-1 -kerning first=247 second=121 amount=-1 -kerning first=370 second=46 amount=-1 -kerning first=124 second=373 amount=-4 -kerning first=36 second=1263 amount=-1 -kerning first=1039 second=336 amount=-2 -kerning first=297 second=220 amount=-2 -kerning first=205 second=232 amount=-1 -kerning first=322 second=362 amount=-2 -kerning first=8361 second=8217 amount=-3 -kerning first=317 second=1176 amount=-1 -kerning first=900 second=275 amount=-1 -kerning first=1203 second=99 amount=-1 -kerning first=251 second=71 amount=-2 -kerning first=371 second=221 amount=-5 -kerning first=968 second=111 amount=-1 -kerning first=965 second=351 amount=-1 -kerning first=164 second=83 amount=-1 -kerning first=274 second=233 amount=-1 -kerning first=43 second=333 amount=-1 -kerning first=186 second=245 amount=-1 -kerning first=298 second=375 amount=-1 -kerning first=63 second=949 amount=-1 -kerning first=1083 second=210 amount=-2 -kerning first=318 second=8211 amount=-2 -kerning first=8377 second=250 amount=-1 -kerning first=8370 second=941 amount=-1 -kerning first=89 second=194 amount=-5 -kerning first=1206 second=277 amount=-1 -kerning first=252 second=246 amount=-1 -kerning first=47 second=273 amount=-1 -kerning first=50 second=45 amount=-1 -kerning first=44 second=964 amount=-3 -kerning first=296 second=8249 amount=-3 -kerning first=305 second=85 amount=-2 -kerning first=1084 second=365 amount=-1 -kerning first=87 second=1108 amount=-3 -kerning first=236 second=34 amount=-3 -kerning first=941 second=8216 amount=-1 -kerning first=116 second=46 amount=-1 -kerning first=1220 second=224 amount=-1 -kerning first=8220 second=279 amount=-1 -kerning first=51 second=220 amount=-2 -kerning first=1065 second=171 amount=-1 -kerning first=191 second=350 amount=-1 -kerning first=1081 second=8217 amount=-3 -kerning first=214 second=275 amount=-1 -kerning first=916 second=87 amount=-5 -kerning first=94 second=289 amount=-1 -kerning first=354 second=1096 amount=-2 -kerning first=357 second=337 amount=-1 -kerning first=952 second=249 amount=-1 -kerning first=117 second=221 amount=-5 -kerning first=260 second=111 amount=-1 -kerning first=167 second=1177 amount=-1 -kerning first=170 second=363 amount=-1 -kerning first=8225 second=226 amount=-1 -kerning first=52 second=375 amount=-1 -kerning first=195 second=290 amount=-2 -kerning first=1069 second=88 amount=-3 -kerning first=313 second=210 amount=-1 -kerning first=69 second=8211 amount=-2 -kerning first=1095 second=941 amount=-1 -kerning first=1175 second=1241 amount=-1 -kerning first=238 second=364 amount=-2 -kerning first=358 second=968 amount=-1 -kerning first=361 second=277 amount=-1 -kerning first=956 second=199 amount=-2 -kerning first=1224 second=1079 amount=-1 -kerning first=258 second=1035 amount=-5 -kerning first=1299 second=89 amount=-5 -kerning first=1026 second=1098 amount=-3 -kerning first=168 second=8212 amount=-2 -kerning first=1036 second=101 amount=-2 -kerning first=50 second=8249 amount=-3 -kerning first=59 second=85 amount=-2 -kerning first=314 second=365 amount=-1 -kerning first=931 second=212 amount=-2 -kerning first=236 second=8216 amount=-3 -kerning first=365 second=224 amount=-1 -kerning first=958 second=354 amount=-5 -kerning first=37 second=336 amount=-2 -kerning first=1037 second=279 amount=-1 -kerning first=179 second=248 amount=-1 -kerning first=8365 second=253 amount=-1 -kerning first=83 second=197 amount=-1 -kerning first=1103 second=355 amount=-1 -kerning first=934 second=367 amount=-1 -kerning first=926 second=1185 amount=-3 -kerning first=103 second=337 amount=-1 -kerning first=960 second=1038 amount=-2 -kerning first=126 second=261 amount=-1 -kerning first=123 second=953 amount=-1 -kerning first=44 second=48 amount=-1 -kerning first=64 second=210 amount=-2 -kerning first=204 second=338 amount=-2 -kerning first=207 second=100 amount=-1 -kerning first=321 second=941 amount=-1 -kerning first=84 second=352 amount=-1 -kerning first=87 second=112 amount=-2 -kerning first=345 second=1241 amount=-1 -kerning first=928 second=8220 amount=-3 -kerning first=107 second=277 amount=-2 -kerning first=250 second=199 amount=-2 -kerning first=367 second=1079 amount=-1 -kerning first=163 second=211 amount=-2 -kerning first=273 second=339 amount=-1 -kerning first=276 second=101 amount=-1 -kerning first=185 second=353 amount=-1 -kerning first=188 second=113 amount=-1 -kerning first=300 second=263 amount=-1 -kerning first=65 second=365 amount=-1 -kerning first=1074 second=8221 amount=-3 -kerning first=1118 second=240 amount=-1 -kerning first=942 second=943 amount=-1 -kerning first=251 second=354 amount=-5 -kerning first=374 second=266 amount=-3 -kerning first=161 second=1184 amount=-5 -kerning first=164 second=366 amount=-2 -kerning first=274 second=970 amount=-1 -kerning first=8217 second=229 amount=-1 -kerning first=49 second=171 amount=-3 -kerning first=304 second=213 amount=-2 -kerning first=63 second=8217 amount=-3 -kerning first=1087 second=253 amount=-1 -kerning first=330 second=355 amount=-1 -kerning first=229 second=1185 amount=-1 -kerning first=252 second=1038 amount=-2 -kerning first=8218 second=1240 amount=-1 -kerning first=47 second=1078 amount=-1 -kerning first=1064 second=268 amount=-2 -kerning first=305 second=368 amount=-2 -kerning first=70 second=941 amount=-1 -kerning first=73 second=250 amount=-1 -kerning first=93 second=1241 amount=-1 -kerning first=96 second=187 amount=-1 -kerning first=230 second=8220 amount=-1 -kerning first=951 second=357 amount=-1 -kerning first=113 second=1079 amount=-1 -kerning first=376 second=1187 amount=-3 -kerning first=34 second=101 amount=-1 -kerning first=973 second=973 amount=-1 -kerning first=172 second=251 amount=-1 -kerning first=8224 second=332 amount=-2 -kerning first=54 second=263 amount=-1 -kerning first=303 second=8221 amount=-3 -kerning first=306 second=1066 amount=-5 -kerning first=338 second=240 amount=-1 -kerning first=916 second=370 amount=-2 -kerning first=240 second=252 amount=-1 -kerning first=237 second=943 amount=-1 -kerning first=357 second=1256 amount=-2 -kerning first=960 second=67 amount=-2 -kerning first=123 second=39 amount=-3 -kerning first=1298 second=217 amount=-2 -kerning first=35 second=279 amount=-1 -kerning first=1035 second=229 amount=-1 -kerning first=8225 second=963 amount=-1 -kerning first=8240 second=271 amount=-1 -kerning first=58 second=213 amount=-2 -kerning first=201 second=103 amount=-1 -kerning first=316 second=253 amount=-1 -kerning first=78 second=355 amount=-1 -kerning first=221 second=267 amount=-4 -kerning first=1185 second=230 amount=-1 -kerning first=124 second=214 amount=-2 -kerning first=1299 second=372 amount=-5 -kerning first=1036 second=1240 amount=-3 -kerning first=39 second=226 amount=-1 -kerning first=178 second=356 amount=-5 -kerning first=182 second=116 amount=-1 -kerning first=294 second=268 amount=-2 -kerning first=59 second=368 amount=-2 -kerning first=202 second=281 amount=-1 -kerning first=8364 second=361 amount=-1 -kerning first=8369 second=121 amount=-1 -kerning first=85 second=65 amount=-2 -kerning first=1107 second=243 amount=-1 -kerning first=105 second=227 amount=-1 -kerning first=125 second=369 amount=-1 -kerning first=1041 second=332 amount=-2 -kerning first=298 second=216 amount=-2 -kerning first=8250 second=1203 amount=-2 -kerning first=60 second=1066 amount=-5 -kerning first=57 second=8221 amount=-3 -kerning first=206 second=228 amount=-1 -kerning first=326 second=118 amount=-1 -kerning first=8377 second=71 amount=-2 -kerning first=86 second=240 amount=-1 -kerning first=83 second=916 amount=-1 -kerning first=223 second=1194 amount=-2 -kerning first=103 second=1256 amount=-2 -kerning first=947 second=333 amount=-1 -kerning first=252 second=67 amount=-2 -kerning first=165 second=79 amount=-2 -kerning first=1044 second=963 amount=-1 -kerning first=1048 second=271 amount=-1 -kerning first=184 second=920 amount=-2 -kerning first=1059 second=44 amount=-1 -kerning first=299 second=371 amount=-1 -kerning first=296 second=1195 amount=-1 -kerning first=204 second=1257 amount=-1 -kerning first=8378 second=246 amount=-1 -kerning first=905 second=218 amount=-2 -kerning first=1117 second=346 amount=-1 -kerning first=944 second=360 amount=-2 -kerning first=1202 second=964 amount=-2 -kerning first=1207 second=273 amount=-1 -kerning first=1220 second=45 amount=-2 -kerning first=253 second=242 amount=-1 -kerning first=163 second=945 amount=-1 -kerning first=276 second=1240 amount=-2 -kerning first=273 second=1262 amount=-2 -kerning first=8216 second=335 amount=-1 -kerning first=8220 second=97 amount=-1 -kerning first=48 second=268 amount=-2 -kerning first=1062 second=219 amount=-1 -kerning first=300 second=1069 amount=-1 -kerning first=306 second=81 amount=-2 -kerning first=1085 second=361 amount=-1 -kerning first=906 second=373 amount=-4 -kerning first=1118 second=1028 amount=-2 -kerning first=114 second=269 amount=-1 -kerning first=1223 second=220 amount=-2 -kerning first=280 second=332 amount=-2 -kerning first=8217 second=966 amount=-1 -kerning first=8221 second=275 amount=-1 -kerning first=52 second=216 amount=-2 -kerning first=1063 second=374 amount=-5 -kerning first=195 second=106 amount=1 -kerning first=75 second=118 amount=-3 -kerning first=336 second=193 amount=-2 -kerning first=908 second=1071 amount=-1 -kerning first=95 second=283 amount=-1 -kerning first=1175 second=233 amount=-1 -kerning first=358 second=333 amount=-1 -kerning first=1224 second=375 amount=-1 -kerning first=378 second=949 amount=-1 -kerning first=972 second=1299 amount=-1 -kerning first=175 second=119 amount=-4 -kerning first=50 second=1195 amount=-1 -kerning first=53 second=371 amount=-1 -kerning first=1070 second=84 amount=-2 -kerning first=193 second=1026 amount=-5 -kerning first=196 second=286 amount=-2 -kerning first=1099 second=246 amount=-1 -kerning first=239 second=360 amount=-2 -kerning first=242 second=120 amount=-2 -kerning first=365 second=45 amount=-2 -kerning first=1220 second=8249 amount=-3 -kerning first=1037 second=97 amount=-1 -kerning first=54 second=1069 amount=-1 -kerning first=60 second=81 amount=-2 -kerning first=1071 second=259 amount=-1 -kerning first=200 second=231 amount=-1 -kerning first=315 second=361 amount=-1 -kerning first=318 second=121 amount=-1 -kerning first=80 second=243 amount=-1 -kerning first=338 second=1028 amount=-2 -kerning first=1184 second=336 amount=-3 -kerning first=960 second=350 amount=-1 -kerning first=38 second=332 amount=-2 -kerning first=1035 second=966 amount=-1 -kerning first=180 second=244 amount=-1 -kerning first=291 second=374 amount=-5 -kerning first=8366 second=249 amount=-1 -kerning first=8363 second=940 amount=-1 -kerning first=84 second=193 amount=-6 -kerning first=221 second=1071 amount=-2 -kerning first=218 second=8230 amount=-1 -kerning first=345 second=233 amount=-1 -kerning first=928 second=1177 amount=-1 -kerning first=936 second=363 amount=-1 -kerning first=247 second=245 amount=-1 -kerning first=367 second=375 amount=-1 -kerning first=964 second=290 amount=-2 -kerning first=124 second=949 amount=-1 -kerning first=160 second=257 amount=-1 -kerning first=42 second=271 amount=-1 -kerning first=39 second=963 amount=-1 -kerning first=45 second=44 amount=-1 -kerning first=300 second=84 amount=-5 -kerning first=202 second=1090 amount=-3 -kerning first=205 second=334 amount=-2 -kerning first=325 second=246 amount=-1 -kerning first=900 second=376 amount=-5 -kerning first=931 second=8212 amount=-2 -kerning first=105 second=964 amount=-3 -kerning first=108 second=273 amount=-1 -kerning first=365 second=8249 amount=-3 -kerning first=968 second=235 amount=-1 -kerning first=274 second=335 amount=-1 -kerning first=46 second=219 amount=-1 -kerning first=183 second=1108 amount=-1 -kerning first=186 second=347 amount=-1 -kerning first=301 second=259 amount=-1 -kerning first=304 second=34 amount=-3 -kerning first=69 second=121 amount=-1 -kerning first=206 second=965 amount=-1 -kerning first=212 second=46 amount=-1 -kerning first=8377 second=354 amount=-5 -kerning first=8370 second=1118 amount=-1 -kerning first=908 second=86 amount=-2 -kerning first=86 second=1028 amount=-2 -kerning first=89 second=288 amount=-3 -kerning first=946 second=248 amount=-1 -kerning first=1219 second=171 amount=-3 -kerning first=252 second=350 amount=-1 -kerning first=162 second=1176 amount=-1 -kerning first=165 second=362 amount=-2 -kerning first=281 second=47 amount=-1 -kerning first=278 second=275 amount=-1 -kerning first=47 second=374 amount=-5 -kerning first=1064 second=87 amount=-5 -kerning first=190 second=289 amount=-1 -kerning first=187 second=1033 amount=-2 -kerning first=73 second=71 amount=-2 -kerning first=1084 second=940 amount=-1 -kerning first=213 second=221 amount=-3 -kerning first=8378 second=1038 amount=-2 -kerning first=905 second=953 amount=-1 -kerning first=93 second=233 amount=-1 -kerning first=910 second=261 amount=-4 -kerning first=113 second=375 amount=-1 -kerning first=1256 second=88 amount=-3 -kerning first=256 second=290 amount=-2 -kerning first=379 second=210 amount=-1 -kerning first=973 second=338 amount=-2 -kerning first=163 second=8211 amount=-2 -kerning first=1027 second=100 amount=-1 -kerning first=54 second=84 amount=-5 -kerning first=194 second=234 amount=-1 -kerning first=1065 second=262 amount=-1 -kerning first=306 second=364 amount=-2 -kerning first=74 second=246 amount=-1 -kerning first=214 second=376 amount=-5 -kerning first=332 second=1035 amount=-2 -kerning first=916 second=211 amount=-2 -kerning first=1174 second=339 amount=-1 -kerning first=952 second=353 amount=-1 -kerning first=955 second=113 amount=-1 -kerning first=260 second=235 amount=-1 -kerning first=35 second=97 amount=-1 -kerning first=55 second=259 amount=-1 -kerning first=58 second=34 amount=-3 -kerning first=304 second=8216 amount=-3 -kerning first=1095 second=1118 amount=-1 -kerning first=912 second=1184 amount=-5 -kerning first=1178 second=279 amount=-1 -kerning first=961 second=63 amount=-2 -kerning first=1299 second=213 amount=-2 -kerning first=36 second=275 amount=-1 -kerning first=39 second=47 amount=-2 -kerning first=1036 second=225 amount=-1 -kerning first=294 second=87 amount=-5 -kerning first=1067 second=1185 amount=-3 -kerning first=202 second=99 amount=-1 -kerning first=314 second=940 amount=-1 -kerning first=317 second=249 amount=-1 -kerning first=1099 second=1038 amount=-2 -kerning first=125 second=210 amount=-2 -kerning first=179 second=352 amount=-1 -kerning first=60 second=364 amount=-2 -kerning first=1068 second=8220 amount=-2 -kerning first=200 second=968 amount=-1 -kerning first=203 second=277 amount=-1 -kerning first=323 second=199 amount=-2 -kerning first=8365 second=357 amount=-1 -kerning first=8370 second=117 amount=-1 -kerning first=80 second=1035 amount=-5 -kerning first=901 second=89 amount=-5 -kerning first=249 second=113 amount=-1 -kerning first=372 second=38 amount=-1 -kerning first=369 second=263 amount=-1 -kerning first=126 second=365 amount=-1 -kerning first=1298 second=8221 amount=-3 -kerning first=299 second=212 amount=-2 -kerning first=8260 second=1194 amount=-2 -kerning first=58 second=8216 amount=-3 -kerning first=1080 second=252 amount=-1 -kerning first=207 second=224 amount=-1 -kerning first=321 second=1118 amount=-1 -kerning first=8378 second=67 amount=-2 -kerning first=902 second=266 amount=-2 -kerning first=905 second=39 amount=-3 -kerning first=124 second=8217 amount=-3 -kerning first=276 second=225 amount=-1 -kerning first=1049 second=267 amount=-1 -kerning first=48 second=87 amount=-5 -kerning first=297 second=1185 amount=-3 -kerning first=300 second=367 amount=-1 -kerning first=65 second=940 amount=-1 -kerning first=208 second=379 amount=-1 -kerning first=325 second=1038 amount=-2 -kerning first=906 second=214 amount=-2 -kerning first=354 second=226 amount=-2 -kerning first=1210 second=268 amount=-2 -kerning first=968 second=972 amount=-1 -kerning first=167 second=250 amount=-1 -kerning first=164 second=941 amount=-1 -kerning first=971 second=281 amount=-1 -kerning first=277 second=380 amount=-1 -kerning first=49 second=262 amount=-2 -kerning first=189 second=1241 amount=-1 -kerning first=192 second=187 amount=-1 -kerning first=298 second=8220 amount=-3 -kerning first=72 second=199 amount=-2 -kerning first=1087 second=357 amount=-1 -kerning first=1095 second=117 amount=-1 -kerning first=209 second=1079 amount=-1 -kerning first=215 second=89 amount=-5 -kerning first=92 second=339 amount=-1 -kerning first=95 second=101 amount=-1 -kerning first=1119 second=973 amount=-1 -kerning first=89 second=1098 amount=-2 -kerning first=112 second=955 amount=-1 -kerning first=1224 second=216 amount=-2 -kerning first=375 second=1066 amount=-5 -kerning first=1026 second=228 amount=-1 -kerning first=53 second=212 amount=-2 -kerning first=1064 second=370 amount=-2 -kerning first=196 second=102 amount=-2 -kerning first=305 second=943 amount=-1 -kerning first=310 second=252 amount=-1 -kerning first=70 second=1118 amount=-1 -kerning first=73 second=354 amount=-5 -kerning first=1099 second=67 amount=-2 -kerning first=923 second=79 amount=-2 -kerning first=96 second=279 amount=-1 -kerning first=93 second=970 amount=-1 -kerning first=1176 second=229 amount=-1 +kerning first=356 second=343 amount=-2 +kerning first=356 second=345 amount=-2 +kerning first=356 second=346 amount=-1 +kerning first=356 second=347 amount=-3 +kerning first=356 second=350 amount=-1 +kerning first=356 second=351 amount=-3 +kerning first=356 second=352 amount=-1 +kerning first=356 second=353 amount=-3 +kerning first=356 second=361 amount=-2 +kerning first=356 second=363 amount=-2 +kerning first=356 second=365 amount=-2 +kerning first=356 second=367 amount=-2 +kerning first=356 second=369 amount=-2 +kerning first=356 second=371 amount=-2 +kerning first=356 second=373 amount=-2 +kerning first=356 second=375 amount=-2 +kerning first=356 second=378 amount=-1 +kerning first=356 second=380 amount=-1 +kerning first=356 second=382 amount=-1 +kerning first=356 second=913 amount=-6 +kerning first=356 second=916 amount=-6 +kerning first=356 second=920 amount=-1 +kerning first=356 second=923 amount=-6 +kerning first=356 second=927 amount=-1 +kerning first=356 second=940 amount=-3 +kerning first=356 second=941 amount=-3 +kerning first=356 second=942 amount=-2 +kerning first=356 second=945 amount=-3 +kerning first=356 second=947 amount=-2 +kerning first=356 second=949 amount=-3 +kerning first=356 second=951 amount=-2 +kerning first=356 second=954 amount=-2 +kerning first=356 second=957 amount=-2 +kerning first=356 second=959 amount=-3 +kerning first=356 second=962 amount=-3 +kerning first=356 second=963 amount=-3 +kerning first=356 second=965 amount=-2 +kerning first=356 second=966 amount=-3 +kerning first=356 second=968 amount=-2 +kerning first=356 second=972 amount=-3 +kerning first=356 second=973 amount=-2 +kerning first=356 second=1028 amount=-1 +kerning first=356 second=1029 amount=-1 +kerning first=356 second=1032 amount=-5 +kerning first=356 second=1033 amount=-4 +kerning first=356 second=1040 amount=-6 +kerning first=356 second=1044 amount=-4 +kerning first=356 second=1051 amount=-4 +kerning first=356 second=1054 amount=-1 +kerning first=356 second=1057 amount=-1 +kerning first=356 second=1072 amount=-2 +kerning first=356 second=1074 amount=-2 +kerning first=356 second=1075 amount=-2 +kerning first=356 second=1077 amount=-3 +kerning first=356 second=1078 amount=-1 +kerning first=356 second=1079 amount=-2 +kerning first=356 second=1080 amount=-2 kerning first=356 second=1081 amount=-2 -kerning first=951 second=920 amount=-2 -kerning first=1220 second=1195 amount=-1 -kerning first=34 second=225 amount=-1 -kerning first=973 second=1257 amount=-1 -kerning first=172 second=355 amount=-1 -kerning first=176 second=115 amount=-1 -kerning first=287 second=267 amount=-1 -kerning first=8230 second=218 amount=-1 -kerning first=51 second=1185 amount=-3 -kerning first=54 second=367 amount=-1 -kerning first=74 second=1038 amount=-2 -kerning first=916 second=945 amount=-1 -kerning first=100 second=226 amount=-1 -kerning first=1174 second=1262 amount=-1 -kerning first=240 second=356 amount=-5 -kerning first=363 second=268 amount=-2 -kerning first=260 second=972 amount=-1 -kerning first=8240 second=373 amount=-4 -kerning first=52 second=8220 amount=-1 -kerning first=201 second=227 amount=-1 -kerning first=321 second=117 amount=-1 -kerning first=316 second=357 amount=-1 -kerning first=221 second=369 amount=-2 -kerning first=367 second=216 amount=-2 -kerning first=964 second=106 amount=1 -kerning first=121 second=1066 amount=-5 -kerning first=1036 second=962 amount=-2 -kerning first=182 second=240 amount=-1 -kerning first=289 second=1194 amount=-2 -kerning first=294 second=370 amount=-2 -kerning first=59 second=943 amount=-1 -kerning first=62 second=252 amount=-1 -kerning first=325 second=67 amount=-2 -kerning first=8369 second=245 amount=-1 -kerning first=900 second=217 amount=-2 -kerning first=219 second=8222 amount=-1 -kerning first=942 second=119 amount=-4 -kerning first=1186 second=963 amount=-1 -kerning first=365 second=1195 amount=-1 -kerning first=962 second=1026 amount=-5 -kerning first=965 second=286 amount=-2 -kerning first=161 second=253 amount=-1 -kerning first=43 second=267 amount=-1 -kerning first=901 second=372 amount=-5 -kerning first=1116 second=287 amount=-2 -kerning first=1206 second=219 amount=-1 -kerning first=369 second=1069 amount=-1 -kerning first=375 second=81 amount=-2 -kerning first=1048 second=373 amount=-4 -kerning first=70 second=117 amount=-1 -kerning first=8378 second=350 amount=-1 -kerning first=87 second=973 amount=-2 -kerning first=1168 second=232 amount=-1 -kerning first=948 second=244 amount=-1 -kerning first=113 second=216 amount=-2 -kerning first=256 second=106 amount=1 -kerning first=376 second=256 amount=-5 -kerning first=169 second=118 amount=-4 -kerning first=276 second=962 amount=-1 -kerning first=48 second=370 amount=-2 -kerning first=191 second=283 amount=-1 -kerning first=74 second=67 amount=-2 -kerning first=68 second=1044 amount=-1 -kerning first=1094 second=245 amount=-1 -kerning first=214 second=217 amount=-2 -kerning first=906 second=949 amount=-1 -kerning first=94 second=229 amount=-1 -kerning first=237 second=119 amount=-4 -kerning first=357 second=271 amount=-1 -kerning first=354 second=963 amount=-3 +kerning first=356 second=1082 amount=-2 +kerning first=356 second=1084 amount=-2 +kerning first=356 second=1085 amount=-2 +kerning first=356 second=1086 amount=-3 +kerning first=356 second=1087 amount=-2 +kerning first=356 second=1088 amount=-2 +kerning first=356 second=1089 amount=-3 +kerning first=356 second=1091 amount=-2 +kerning first=356 second=1092 amount=-3 +kerning first=356 second=1093 amount=-1 +kerning first=356 second=1094 amount=-2 +kerning first=356 second=1096 amount=-2 +kerning first=356 second=1097 amount=-2 +kerning first=356 second=1099 amount=-2 +kerning first=356 second=1100 amount=-2 +kerning first=356 second=1101 amount=-2 +kerning first=356 second=1102 amount=-2 +kerning first=356 second=1104 amount=-3 +kerning first=356 second=1105 amount=-3 +kerning first=356 second=1107 amount=-2 +kerning first=356 second=1108 amount=-3 +kerning first=356 second=1109 amount=-3 +kerning first=356 second=1114 amount=-2 +kerning first=356 second=1116 amount=-2 +kerning first=356 second=1117 amount=-2 +kerning first=356 second=1118 amount=-2 +kerning first=356 second=1119 amount=-2 +kerning first=356 second=1169 amount=-2 +kerning first=356 second=1175 amount=-1 +kerning first=356 second=1177 amount=-2 +kerning first=356 second=1179 amount=-2 +kerning first=356 second=1187 amount=-2 +kerning first=356 second=1194 amount=-1 +kerning first=356 second=1195 amount=-3 +kerning first=356 second=1199 amount=-2 +kerning first=356 second=1203 amount=-1 +kerning first=356 second=1220 amount=-2 +kerning first=356 second=1224 amount=-2 +kerning first=356 second=1240 amount=-1 +kerning first=356 second=1241 amount=-3 +kerning first=356 second=1256 amount=-1 +kerning first=356 second=1257 amount=-3 +kerning first=356 second=1263 amount=-2 +kerning first=356 second=1298 amount=-4 +kerning first=356 second=8211 amount=-4 +kerning first=356 second=8212 amount=-4 +kerning first=356 second=8218 amount=-3 +kerning first=356 second=8222 amount=-3 +kerning first=356 second=8230 amount=-3 +kerning first=356 second=8249 amount=-3 +kerning first=356 second=8250 amount=-1 +kerning first=359 second=44 amount=-1 +kerning first=359 second=46 amount=-1 +kerning first=359 second=47 amount=-1 +kerning first=359 second=955 amount=-1 +kerning first=359 second=8218 amount=-1 +kerning first=359 second=8222 amount=-1 +kerning first=359 second=8230 amount=-1 kerning first=360 second=44 amount=-1 -kerning first=254 second=1026 amount=-5 -kerning first=971 second=1090 amount=-3 -kerning first=1066 second=258 amount=-1 -kerning first=195 second=230 amount=-1 -kerning first=75 second=242 amount=-2 -kerning first=215 second=372 amount=-5 -kerning first=92 second=1262 amount=-2 -kerning first=95 second=1240 amount=-2 -kerning first=1175 second=335 amount=-1 -kerning first=361 second=219 amount=-2 -kerning first=950 second=1108 amount=-1 -kerning first=121 second=81 amount=-2 -kerning first=1299 second=34 amount=-3 -kerning first=1026 second=965 amount=-1 -kerning first=175 second=243 amount=-1 -kerning first=193 second=1263 amount=-1 -kerning first=8361 second=248 amount=-1 -kerning first=1099 second=350 amount=-1 -kerning first=915 second=1176 amount=-1 -kerning first=923 second=362 amount=-2 -kerning first=1176 second=966 amount=-1 -kerning first=1179 second=275 amount=-1 -kerning first=958 second=289 amount=-1 -kerning first=34 second=962 amount=-1 -kerning first=1037 second=221 amount=-5 -kerning first=1071 second=363 amount=-1 -kerning first=200 second=333 amount=-1 -kerning first=318 second=245 amount=-1 -kerning first=1103 second=290 amount=-2 -kerning first=223 second=257 amount=-1 -kerning first=916 second=8211 amount=-2 -kerning first=100 second=963 amount=-1 -kerning first=103 second=271 amount=-1 -kerning first=369 second=84 amount=-5 -kerning first=963 second=234 amount=-1 -kerning first=41 second=218 amount=-2 -kerning first=180 second=346 amount=-1 -kerning first=61 second=360 amount=-2 -kerning first=1073 second=1059 amount=-2 -kerning first=207 second=45 amount=-2 -kerning first=204 second=273 amount=-1 -kerning first=201 second=964 amount=-3 -kerning first=8372 second=113 amount=-1 -kerning first=8366 second=353 amount=-1 -kerning first=902 second=85 amount=-2 -kerning first=84 second=287 amount=-2 -kerning first=345 second=335 amount=-1 -kerning first=1194 second=377 amount=-1 -kerning first=247 second=347 amount=-1 -kerning first=160 second=361 amount=-1 -kerning first=1299 second=8216 amount=-3 -kerning first=163 second=121 amount=-1 -kerning first=42 second=373 amount=-4 -kerning first=1036 second=8250 amount=-2 -kerning first=182 second=1028 amount=-2 -kerning first=185 second=288 amount=-2 -kerning first=1081 second=248 amount=-1 -kerning first=325 second=350 amount=-1 -kerning first=88 second=232 amount=-2 -kerning first=354 second=47 amount=-4 -kerning first=108 second=374 amount=-5 -kerning first=1210 second=87 amount=-5 -kerning first=251 second=289 amount=-1 -kerning first=968 second=337 amount=-1 -kerning first=971 second=99 amount=-1 -kerning first=167 second=71 amount=-2 -kerning first=8211 second=379 amount=-2 -kerning first=49 second=83 amount=-1 -kerning first=1051 second=261 amount=-1 -kerning first=189 second=233 amount=-1 -kerning first=301 second=363 amount=-1 -kerning first=298 second=1177 amount=-1 -kerning first=69 second=245 amount=-1 -kerning first=209 second=375 amount=-1 -kerning first=330 second=290 amount=-2 -kerning first=1119 second=338 amount=-2 -kerning first=1170 second=100 amount=-1 -kerning first=950 second=112 amount=-2 -kerning first=946 second=352 amount=-1 -kerning first=1219 second=262 amount=-2 -kerning first=255 second=234 amount=-1 -kerning first=375 second=364 amount=-2 -kerning first=168 second=246 amount=-1 -kerning first=278 second=376 amount=-5 -kerning first=8222 second=89 amount=-4 -kerning first=1064 second=211 amount=-2 -kerning first=302 second=1059 amount=-2 -kerning first=299 second=8212 amount=-2 -kerning first=1096 second=113 amount=-1 -kerning first=207 second=8249 amount=-3 -kerning first=910 second=365 amount=-2 -kerning first=93 second=335 amount=-1 -kerning first=96 second=97 amount=-1 -kerning first=113 second=951 amount=2 -kerning first=34 second=46 amount=-1 -kerning first=1027 second=224 amount=-1 -kerning first=276 second=8250 amount=-1 -kerning first=8224 second=266 amount=-2 -kerning first=8230 second=39 amount=-1 -kerning first=1062 second=1184 amount=-2 -kerning first=1065 second=366 amount=-1 -kerning first=194 second=336 amount=-2 -kerning first=311 second=248 amount=-2 -kerning first=74 second=350 amount=-1 -kerning first=217 second=260 amount=-2 -kerning first=906 second=8217 amount=-3 -kerning first=94 second=966 amount=-1 -kerning first=363 second=87 amount=-5 -kerning first=1223 second=1185 amount=-3 -kerning first=260 second=337 amount=-1 -kerning first=380 second=940 amount=-1 -kerning first=35 second=221 amount=-5 -kerning first=1028 second=379 amount=-1 -kerning first=177 second=111 amount=-1 -kerning first=174 second=351 amount=-1 -kerning first=8240 second=214 amount=-2 -kerning first=55 second=363 amount=-1 -kerning first=52 second=1177 amount=-1 -kerning first=8363 second=116 amount=-1 -kerning first=78 second=290 amount=-2 -kerning first=221 second=210 amount=-3 -kerning first=928 second=250 amount=-1 -kerning first=956 second=1241 amount=-1 -kerning first=121 second=364 amount=-2 -kerning first=1224 second=8220 amount=-3 -kerning first=36 second=376 amount=-5 -kerning first=1039 second=89 amount=-5 -kerning first=175 second=1035 amount=-5 -kerning first=178 second=291 amount=-1 -kerning first=294 second=211 amount=-2 -kerning first=53 second=8212 amount=-2 -kerning first=56 second=1059 amount=-2 -kerning first=1074 second=251 amount=-1 -kerning first=317 second=353 amount=-1 -kerning first=322 second=113 amount=-1 -kerning first=1041 second=266 amount=-2 -kerning first=290 second=1184 amount=-1 -kerning first=63 second=248 amount=-1 -kerning first=206 second=171 amount=-3 -kerning first=326 second=63 amount=-2 -kerning first=8365 second=920 amount=-2 -kerning first=901 second=213 amount=-2 -kerning first=1116 second=103 amount=-2 -kerning first=947 second=267 amount=-1 -kerning first=369 second=367 amount=-1 -kerning first=162 second=249 amount=-1 -kerning first=126 second=940 amount=-1 -kerning first=41 second=953 amount=-1 -kerning first=1048 second=214 amount=-2 -kerning first=67 second=198 amount=-1 -kerning first=1080 second=356 amount=-5 -kerning first=1084 second=116 amount=-1 -kerning first=210 second=88 amount=-3 -kerning first=902 second=368 amount=-2 -kerning first=84 second=1097 amount=-2 -kerning first=87 second=338 amount=-2 -kerning first=1117 second=281 amount=-1 -kerning first=90 second=100 amount=-1 -kerning first=250 second=1241 amount=-1 -kerning first=253 second=187 amount=-1 -kerning first=367 second=8220 amount=-3 -kerning first=166 second=199 amount=-2 -kerning first=273 second=1079 amount=-1 -kerning first=8216 second=269 amount=-1 -kerning first=48 second=211 amount=-2 -kerning first=1049 second=369 amount=-1 -kerning first=185 second=1098 amount=-3 -kerning first=188 second=339 amount=-1 -kerning first=191 second=101 amount=-1 -kerning first=303 second=251 amount=-1 -kerning first=208 second=955 amount=-2 -kerning first=900 second=8221 amount=-3 -kerning first=903 second=1066 amount=-5 -kerning first=88 second=969 amount=-2 -kerning first=1210 second=370 amount=-2 -kerning first=257 second=102 amount=-1 -kerning first=374 second=943 amount=-2 -kerning first=968 second=1256 amount=-2 -kerning first=167 second=354 amount=-5 -kerning first=164 second=1118 amount=-1 -kerning first=280 second=266 amount=-2 -kerning first=283 second=39 amount=-1 -kerning first=49 second=366 amount=-2 -kerning first=46 second=1184 amount=-5 -kerning first=192 second=279 amount=-1 -kerning first=189 second=970 amount=-1 -kerning first=75 second=63 amount=-2 -kerning first=1087 second=920 amount=-2 -kerning first=215 second=213 amount=-2 -kerning first=912 second=253 amount=-1 -kerning first=95 second=225 amount=-1 -kerning first=1119 second=1257 amount=-1 -kerning first=238 second=115 amount=-1 -kerning first=358 second=267 amount=-1 -kerning first=112 second=1185 amount=-1 -kerning first=972 second=1083 amount=-1 -kerning first=168 second=1038 amount=-2 -kerning first=8218 second=947 amount=-2 -kerning first=8222 second=372 amount=-3 -kerning first=47 second=8218 amount=-4 -kerning first=1064 second=945 amount=-1 -kerning first=196 second=226 amount=-1 -kerning first=314 second=116 amount=-1 -kerning first=113 second=8220 amount=-3 -kerning first=37 second=89 amount=-5 -kerning first=287 second=369 amount=-1 -kerning first=57 second=251 amount=-1 -kerning first=214 second=8221 amount=-3 -kerning first=1103 second=106 amount=1 -kerning first=341 second=228 amount=-1 -kerning first=934 second=118 amount=-4 -kerning first=363 second=370 amount=-2 -kerning first=960 second=283 amount=-1 -kerning first=123 second=252 amount=-1 -kerning first=260 second=1256 amount=-2 -kerning first=38 second=266 amount=-2 -kerning first=41 second=39 amount=-3 -kerning first=283 second=8222 amount=-1 -kerning first=296 second=79 amount=-2 -kerning first=8240 second=949 amount=-1 -kerning first=8260 second=257 amount=-1 -kerning first=1073 second=359 amount=-1 -kerning first=316 second=920 amount=-2 -kerning first=84 second=103 amount=-2 -kerning first=964 second=230 amount=-1 -kerning first=42 second=214 amount=-2 -kerning first=1039 second=372 amount=-5 -kerning first=1036 second=947 amount=-3 -kerning first=178 second=1101 amount=-1 -kerning first=294 second=945 amount=-1 -kerning first=62 second=356 amount=-5 -kerning first=65 second=116 amount=-1 -kerning first=205 second=268 amount=-2 -kerning first=8364 second=1108 amount=-1 -kerning first=8369 second=347 amount=-1 -kerning first=903 second=81 amount=-2 -kerning first=942 second=243 amount=-1 -kerning first=1195 second=373 amount=-1 -kerning first=962 second=1263 amount=-1 -kerning first=161 second=357 amount=-1 -kerning first=164 second=117 amount=-1 -kerning first=274 second=269 amount=-1 -kerning first=43 second=369 amount=-1 -kerning first=183 second=973 amount=-1 -kerning first=1083 second=244 amount=-1 -kerning first=209 second=216 amount=-2 -kerning first=330 second=106 amount=1 -kerning first=8377 second=289 amount=-1 -kerning first=89 second=228 amount=-4 -kerning first=232 second=118 amount=-1 -kerning first=1219 second=83 amount=-1 -kerning first=252 second=283 amount=-1 -kerning first=168 second=67 amount=-2 -kerning first=278 second=217 amount=-2 -kerning first=50 second=79 amount=-2 -kerning first=1048 second=949 amount=-1 -kerning first=190 second=229 amount=-1 -kerning first=305 second=119 amount=-4 -kerning first=302 second=359 amount=-1 -kerning first=70 second=241 amount=-1 -kerning first=207 second=1195 amount=-1 -kerning first=327 second=1026 amount=-5 -kerning first=87 second=1257 amount=-3 -kerning first=1168 second=334 amount=-2 -kerning first=1117 second=1090 amount=-3 -kerning first=948 second=346 amount=-1 -kerning first=256 second=230 amount=-1 -kerning first=973 second=273 amount=-1 -kerning first=1027 second=45 amount=-2 -kerning first=169 second=242 amount=-1 -kerning first=970 second=964 amount=-2 -kerning first=276 second=947 amount=-4 -kerning first=8224 second=85 amount=-2 -kerning first=48 second=945 amount=-1 -kerning first=191 second=1240 amount=-2 -kerning first=188 second=1262 amount=-2 -kerning first=1085 second=1108 amount=-1 -kerning first=916 second=121 amount=-1 -kerning first=237 second=243 amount=-1 -kerning first=357 second=373 amount=-4 -kerning first=952 second=288 amount=-2 -kerning first=254 second=1263 amount=-1 -kerning first=1063 second=1176 amount=-1 -kerning first=195 second=332 amount=-2 -kerning first=313 second=244 amount=-1 -kerning first=78 second=106 amount=1 -kerning first=218 second=256 amount=-2 -kerning first=928 second=71 amount=-2 -kerning first=95 second=962 amount=-1 -kerning first=1178 second=221 amount=-2 -kerning first=355 second=8230 amount=-1 -kerning first=956 second=233 amount=-1 -kerning first=1224 second=1177 amount=-1 -kerning first=36 second=217 amount=-2 -kerning first=289 second=257 amount=-1 -kerning first=59 second=119 amount=-4 -kerning first=1064 second=8211 amount=-2 -kerning first=56 second=359 amount=-1 -kerning first=196 second=963 amount=-1 -kerning first=8361 second=352 amount=-1 -kerning first=76 second=1026 amount=-6 -kerning first=337 second=1090 amount=-1 -kerning first=931 second=246 amount=-1 -kerning first=1263 second=1059 amount=-2 -kerning first=37 second=372 amount=-5 -kerning first=1027 second=8249 amount=-3 -kerning first=1041 second=85 amount=-2 -kerning first=179 second=287 amount=-1 -kerning first=203 second=219 amount=-2 -kerning first=318 second=347 amount=-1 -kerning first=315 second=1108 amount=-1 -kerning first=901 second=34 amount=-3 -kerning first=223 second=361 amount=-1 -kerning first=103 second=373 amount=-4 -kerning first=963 second=336 amount=-2 -kerning first=271 second=220 amount=-2 -kerning first=184 second=232 amount=-1 -kerning first=296 second=362 amount=-2 -kerning first=8240 second=8217 amount=-3 -kerning first=291 second=1176 amount=-1 -kerning first=64 second=244 amount=-1 -kerning first=204 second=374 amount=-5 -kerning first=81 second=1298 amount=-1 -kerning first=1117 second=99 amount=-1 -kerning first=350 second=221 amount=-2 -kerning first=944 second=111 amount=-1 -kerning first=101 second=8230 amount=-1 -kerning first=250 second=233 amount=-1 -kerning first=367 second=1177 amount=-1 -kerning first=163 second=245 amount=-1 -kerning first=273 second=375 amount=-1 -kerning first=42 second=949 amount=-1 -kerning first=1049 second=210 amount=-2 -kerning first=294 second=8211 amount=-2 -kerning first=68 second=194 amount=-2 -kerning first=1081 second=352 amount=-1 -kerning first=211 second=84 amount=-2 -kerning first=903 second=364 amount=-2 -kerning first=88 second=334 amount=-3 -kerning first=1118 second=277 amount=-1 -kerning first=942 second=1035 amount=-5 -kerning first=1210 second=211 amount=-2 -kerning first=371 second=1059 amount=-2 -kerning first=280 second=85 amount=-2 -kerning first=8217 second=263 amount=-1 -kerning first=1051 second=365 amount=-1 -kerning first=189 second=335 amount=-1 -kerning first=192 second=97 amount=-1 -kerning first=69 second=347 amount=-1 -kerning first=215 second=34 amount=-3 -kerning first=901 second=8216 amount=-3 -kerning first=89 second=965 amount=-2 -kerning first=1170 second=224 amount=-1 -kerning first=1206 second=1184 amount=-2 -kerning first=1219 second=366 amount=-2 -kerning first=255 second=336 amount=-2 -kerning first=378 second=248 amount=-1 -kerning first=1026 second=171 amount=-3 -kerning first=972 second=378 amount=-1 -kerning first=168 second=350 amount=-1 -kerning first=8222 second=213 amount=-1 -kerning first=47 second=1176 amount=-1 -kerning first=50 second=362 amount=-2 -kerning first=1048 second=8217 amount=-3 -kerning first=190 second=966 amount=-1 -kerning first=193 second=275 amount=-1 -kerning first=73 second=289 amount=-1 -kerning first=915 second=249 amount=-1 -kerning first=910 second=940 amount=-4 -kerning first=96 second=221 amount=-5 -kerning first=236 second=351 amount=-1 -kerning first=239 second=111 amount=-1 -kerning first=113 second=1177 amount=-1 -kerning first=1034 second=88 amount=-2 -kerning first=172 second=290 amount=-2 -kerning first=287 second=210 amount=-2 -kerning first=8224 second=368 amount=-2 -kerning first=48 second=8211 amount=-2 -kerning first=1065 second=941 amount=-1 -kerning first=77 second=234 amount=-1 -kerning first=1097 second=1241 amount=-1 -kerning first=338 second=277 amount=-1 -kerning first=926 second=199 amount=-2 -kerning first=237 second=1035 amount=-5 -kerning first=240 second=291 amount=-1 -kerning first=363 second=211 amount=-2 -kerning first=952 second=1098 amount=-3 -kerning first=955 second=339 amount=-1 -kerning first=117 second=1059 amount=-2 -kerning first=960 second=101 amount=-1 -kerning first=114 second=8212 amount=-1 -kerning first=1298 second=251 amount=-1 -kerning first=38 second=85 amount=-2 -kerning first=1035 second=263 amount=-1 -kerning first=177 second=235 amount=-1 -kerning first=8225 second=1066 amount=-5 -kerning first=8363 second=240 amount=-1 -kerning first=1106 second=102 amount=-1 -kerning first=215 second=8216 amount=-3 -kerning first=928 second=354 amount=-5 -kerning first=95 second=8250 amount=-1 -kerning first=361 second=1184 amount=-5 -kerning first=956 second=970 amount=-1 -kerning first=124 second=248 amount=-1 -kerning first=39 second=260 amount=-3 -kerning first=1039 second=213 amount=-2 -kerning first=1074 second=355 amount=-1 -kerning first=1078 second=115 amount=-1 -kerning first=205 second=87 amount=-5 -kerning first=931 second=1038 amount=-2 -kerning first=105 second=261 amount=-1 +kerning first=360 second=46 amount=-1 +kerning first=360 second=65 amount=-2 +kerning first=360 second=193 amount=-2 +kerning first=360 second=194 amount=-2 +kerning first=360 second=196 amount=-2 +kerning first=360 second=197 amount=-2 +kerning first=360 second=198 amount=-2 +kerning first=360 second=256 amount=-2 +kerning first=360 second=258 amount=-2 +kerning first=360 second=260 amount=-2 +kerning first=360 second=913 amount=-2 +kerning first=360 second=916 amount=-2 +kerning first=360 second=923 amount=-2 +kerning first=360 second=1033 amount=-1 +kerning first=360 second=1040 amount=-2 +kerning first=360 second=1044 amount=-1 +kerning first=360 second=1051 amount=-1 +kerning first=360 second=1298 amount=-1 +kerning first=360 second=8218 amount=-1 +kerning first=360 second=8222 amount=-1 +kerning first=360 second=8230 amount=-1 +kerning first=362 second=44 amount=-1 +kerning first=362 second=46 amount=-1 +kerning first=362 second=65 amount=-2 +kerning first=362 second=193 amount=-2 +kerning first=362 second=194 amount=-2 +kerning first=362 second=196 amount=-2 +kerning first=362 second=197 amount=-2 +kerning first=362 second=198 amount=-2 +kerning first=362 second=256 amount=-2 +kerning first=362 second=258 amount=-2 +kerning first=362 second=260 amount=-2 +kerning first=362 second=913 amount=-2 +kerning first=362 second=916 amount=-2 +kerning first=362 second=923 amount=-2 +kerning first=362 second=1033 amount=-1 +kerning first=362 second=1040 amount=-2 +kerning first=362 second=1044 amount=-1 +kerning first=362 second=1051 amount=-1 +kerning first=362 second=1298 amount=-1 kerning first=362 second=8218 amount=-1 -kerning first=965 second=226 amount=-1 -kerning first=267 second=1078 amount=-1 -kerning first=43 second=210 amount=-2 -kerning first=1041 second=368 amount=-2 -kerning first=183 second=338 amount=-2 -kerning first=186 second=100 amount=-1 -kerning first=298 second=250 amount=-1 -kerning first=63 second=352 amount=-1 -kerning first=206 second=262 amount=-2 -kerning first=323 second=1241 amount=-1 -kerning first=86 second=277 amount=-1 -kerning first=1116 second=227 amount=-1 -kerning first=352 second=89 amount=-2 -kerning first=246 second=1098 amount=-1 -kerning first=249 second=339 amount=-1 -kerning first=252 second=101 amount=-1 -kerning first=372 second=251 amount=-2 -kerning first=165 second=113 amount=-1 -kerning first=162 second=353 amount=-1 -kerning first=44 second=365 amount=-1 -kerning first=1044 second=1066 amount=-2 -kerning first=1084 second=240 amount=-1 -kerning first=331 second=102 amount=-1 -kerning first=8378 second=283 amount=-1 -kerning first=905 second=252 amount=-1 -kerning first=902 second=943 amount=-1 -kerning first=1194 second=8222 amount=-1 -kerning first=1220 second=79 amount=-2 -kerning first=253 second=279 amount=-1 -kerning first=250 second=970 amount=-1 -kerning first=42 second=8217 amount=-3 -kerning first=191 second=225 amount=-1 -kerning first=303 second=355 amount=-1 -kerning first=306 second=115 amount=-1 -kerning first=357 second=214 amount=-2 -kerning first=1210 second=945 amount=-1 -kerning first=280 second=368 amount=-2 -kerning first=8225 second=81 amount=-2 -kerning first=52 second=250 amount=-1 -kerning first=49 second=941 amount=-1 -kerning first=72 second=1241 amount=-1 -kerning first=75 second=187 amount=-2 -kerning first=209 second=8220 amount=-3 -kerning first=912 second=357 amount=-1 -kerning first=92 second=1079 amount=-1 -kerning first=1175 second=269 amount=-1 -kerning first=358 second=369 amount=-1 -kerning first=950 second=973 amount=-1 -kerning first=278 second=8221 amount=-3 -kerning first=199 second=90 amount=-1 -kerning first=314 second=240 amount=-1 -kerning first=1099 second=283 amount=-1 -kerning first=337 second=382 amount=-1 -kerning first=915 second=1044 amount=-5 -kerning first=931 second=67 amount=-2 -kerning first=356 second=8222 amount=-3 -kerning first=365 second=79 amount=-2 -kerning first=958 second=229 amount=-1 -kerning first=1263 second=359 amount=-1 -kerning first=37 second=213 amount=-2 -kerning first=1027 second=1195 amount=-1 -kerning first=179 second=103 amount=-1 -kerning first=57 second=355 amount=-1 -kerning first=60 second=115 amount=-1 -kerning first=200 second=267 amount=-1 -kerning first=1068 second=1046 amount=-2 -kerning first=1103 second=230 amount=-1 -kerning first=934 second=242 amount=-1 -kerning first=103 second=214 amount=-2 -kerning first=240 second=1101 amount=-1 -kerning first=363 second=945 amount=-1 -kerning first=960 second=1240 amount=-2 -kerning first=955 second=1262 amount=-2 -kerning first=123 second=356 amount=-5 -kerning first=126 second=116 amount=-1 -kerning first=38 second=368 amount=-2 -kerning first=1035 second=1069 amount=-1 -kerning first=177 second=972 amount=-1 -kerning first=180 second=281 amount=-1 -kerning first=1044 second=81 amount=-1 -kerning first=8260 second=361 amount=-1 -kerning first=1076 second=243 amount=-1 -kerning first=8363 second=1028 amount=-2 -kerning first=8366 second=288 amount=-2 -kerning first=84 second=227 amount=-2 -kerning first=221 second=1169 amount=-3 -kerning first=345 second=269 amount=-1 -kerning first=964 second=332 amount=-2 -kerning first=273 second=216 amount=-2 -kerning first=36 second=8221 amount=-3 -kerning first=185 second=228 amount=-1 -kerning first=300 second=118 amount=-4 -kerning first=65 second=240 amount=-1 -kerning first=202 second=1194 amount=-2 -kerning first=205 second=370 amount=-2 -kerning first=325 second=283 amount=-1 -kerning first=102 second=8222 amount=-2 -kerning first=251 second=229 amount=-1 -kerning first=371 second=359 amount=-1 -kerning first=374 second=119 amount=-2 -kerning first=965 second=963 amount=-1 -kerning first=968 second=271 amount=-1 -kerning first=161 second=920 amount=-2 -kerning first=274 second=371 amount=-1 -kerning first=46 second=253 amount=-1 -kerning first=183 second=1257 amount=-1 -kerning first=1083 second=346 amount=-1 -kerning first=330 second=230 amount=-1 -kerning first=904 second=360 amount=-2 -kerning first=1119 second=273 amount=-1 -kerning first=1170 second=45 amount=-2 -kerning first=347 second=947 amount=-1 -kerning first=352 second=372 amount=-2 -kerning first=946 second=287 amount=-1 -kerning first=249 second=1262 amount=-2 -kerning first=252 second=1240 amount=-2 -kerning first=8222 second=34 amount=-1 -kerning first=1064 second=121 amount=-1 -kerning first=305 second=243 amount=-1 -kerning first=70 second=343 amount=-1 -kerning first=1084 second=1028 amount=-2 -kerning first=327 second=1263 amount=-1 -kerning first=93 second=269 amount=-1 -kerning first=1171 second=220 amount=-2 -kerning first=951 second=232 amount=-1 -kerning first=1220 second=362 amount=-2 -kerning first=256 second=332 amount=-2 -kerning first=379 second=244 amount=-1 -kerning first=973 second=374 amount=-5 -kerning first=172 second=106 amount=1 -kerning first=54 second=118 amount=-4 -kerning first=191 second=962 amount=-1 -kerning first=74 second=283 amount=-1 -kerning first=1097 second=233 amount=-1 -kerning first=916 second=245 amount=-1 -kerning first=357 second=949 amount=-1 -kerning first=117 second=359 amount=-1 -kerning first=1210 second=8211 amount=-2 -kerning first=260 second=271 amount=-1 -kerning first=1035 second=84 amount=-5 -kerning first=170 second=1026 amount=-5 -kerning first=174 second=286 amount=-2 -kerning first=8225 second=364 amount=-2 -kerning first=198 second=218 amount=-2 -kerning first=78 second=230 amount=-1 -kerning first=221 second=120 amount=-2 -kerning first=342 second=45 amount=-1 -kerning first=95 second=947 amount=-4 -kerning first=1170 second=8249 amount=-3 -kerning first=956 second=335 amount=-1 -kerning first=381 second=1108 amount=-1 -kerning first=1036 second=259 amount=-1 -kerning first=1039 second=34 amount=-3 -kerning first=178 second=231 amount=-1 -kerning first=289 second=361 amount=-1 -kerning first=294 second=121 amount=-1 -kerning first=8222 second=8216 amount=-1 -kerning first=59 second=243 amount=-1 -kerning first=314 second=1028 amount=-2 -kerning first=317 second=288 amount=-2 -kerning first=76 second=1263 amount=-1 -kerning first=931 second=350 amount=-1 -kerning first=365 second=362 amount=-2 -kerning first=958 second=966 amount=-1 -kerning first=962 second=275 amount=-1 -kerning first=125 second=244 amount=-1 -kerning first=298 second=71 amount=-2 -kerning first=206 second=83 amount=-1 -kerning first=323 second=233 amount=-1 -kerning first=103 second=949 amount=-1 -kerning first=243 second=1299 amount=-1 -kerning first=363 second=8211 amount=-2 +kerning first=362 second=8222 amount=-1 +kerning first=362 second=8230 amount=-1 +kerning first=364 second=44 amount=-1 +kerning first=364 second=46 amount=-1 +kerning first=364 second=65 amount=-2 +kerning first=364 second=193 amount=-2 +kerning first=364 second=194 amount=-2 +kerning first=364 second=196 amount=-2 +kerning first=364 second=197 amount=-2 +kerning first=364 second=198 amount=-2 +kerning first=364 second=256 amount=-2 +kerning first=364 second=258 amount=-2 +kerning first=364 second=260 amount=-2 +kerning first=364 second=913 amount=-2 +kerning first=364 second=916 amount=-2 +kerning first=364 second=923 amount=-2 +kerning first=364 second=1033 amount=-1 +kerning first=364 second=1040 amount=-2 +kerning first=364 second=1044 amount=-1 +kerning first=364 second=1051 amount=-1 +kerning first=364 second=1298 amount=-1 +kerning first=364 second=8218 amount=-1 +kerning first=364 second=8222 amount=-1 +kerning first=364 second=8230 amount=-1 +kerning first=366 second=44 amount=-1 +kerning first=366 second=46 amount=-1 +kerning first=366 second=65 amount=-2 +kerning first=366 second=193 amount=-2 +kerning first=366 second=194 amount=-2 +kerning first=366 second=196 amount=-2 +kerning first=366 second=197 amount=-2 +kerning first=366 second=198 amount=-2 +kerning first=366 second=256 amount=-2 +kerning first=366 second=258 amount=-2 +kerning first=366 second=260 amount=-2 +kerning first=366 second=913 amount=-2 +kerning first=366 second=916 amount=-2 +kerning first=366 second=923 amount=-2 +kerning first=366 second=1033 amount=-1 +kerning first=366 second=1040 amount=-2 +kerning first=366 second=1044 amount=-1 kerning first=366 second=1051 amount=-1 -kerning first=1044 second=364 amount=-1 -kerning first=180 second=1090 amount=-3 -kerning first=184 second=334 amount=-2 -kerning first=299 second=246 amount=-1 -kerning first=64 second=346 amount=-1 -kerning first=1080 second=291 amount=-1 -kerning first=8366 second=1098 amount=-3 -kerning first=8372 second=339 amount=-1 -kerning first=8378 second=101 amount=-1 -kerning first=87 second=273 amount=-3 -kerning first=90 second=45 amount=-3 -kerning first=342 second=8249 amount=-1 -kerning first=944 second=235 amount=-1 -kerning first=250 second=335 amount=-1 -kerning first=253 second=97 amount=-1 -kerning first=160 second=1108 amount=-1 -kerning first=163 second=347 amount=-1 -kerning first=276 second=259 amount=-1 -kerning first=279 second=34 amount=-1 -kerning first=48 second=121 amount=-1 -kerning first=1039 second=8216 amount=-3 -kerning first=185 second=965 amount=-1 -kerning first=65 second=1028 amount=-2 -kerning first=906 second=248 amount=-1 -kerning first=91 second=220 amount=-2 -kerning first=354 second=260 amount=-6 -kerning first=108 second=1176 amount=-1 -kerning first=1195 second=8217 amount=-1 -kerning first=251 second=966 amount=-1 -kerning first=254 second=275 amount=-1 -kerning first=167 second=289 amount=-1 -kerning first=52 second=71 amount=-2 -kerning first=1051 second=940 amount=-1 -kerning first=1063 second=249 amount=-1 -kerning first=192 second=221 amount=-5 -kerning first=304 second=351 amount=-1 -kerning first=72 second=233 amount=-1 -kerning first=209 second=1177 amount=-1 -kerning first=92 second=375 amount=-1 -kerning first=358 second=210 amount=-2 -kerning first=950 second=338 amount=-2 -kerning first=1219 second=941 amount=-1 -kerning first=1224 second=250 amount=-1 -kerning first=1026 second=262 amount=-2 -kerning first=53 second=246 amount=-1 -kerning first=1067 second=199 amount=-2 -kerning first=193 second=376 amount=-5 -kerning first=305 second=1035 amount=-5 -kerning first=310 second=291 amount=-1 -kerning first=1096 second=339 amount=-1 -kerning first=1099 second=101 amount=-1 -kerning first=910 second=1117 amount=-3 -kerning first=923 second=113 amount=-1 -kerning first=915 second=353 amount=-1 -kerning first=1176 second=263 amount=-1 -kerning first=239 second=235 amount=-1 -kerning first=356 second=1179 amount=-2 -kerning first=34 second=259 amount=-1 -kerning first=37 second=34 amount=-3 -kerning first=279 second=8216 amount=-1 -kerning first=8224 second=943 amount=-1 -kerning first=8230 second=252 amount=-1 -kerning first=1068 second=354 amount=-5 -kerning first=191 second=8250 amount=-1 -kerning first=77 second=336 amount=-2 -kerning first=1184 second=213 amount=-3 -kerning first=357 second=8217 amount=-3 -kerning first=960 second=225 amount=-1 -kerning first=1298 second=355 amount=-1 -kerning first=268 second=87 amount=-1 -kerning first=1035 second=367 amount=-1 -kerning first=177 second=337 amount=-1 -kerning first=180 second=99 amount=-1 -kerning first=291 second=249 amount=-1 -kerning first=61 second=111 amount=-1 -kerning first=58 second=351 amount=-1 -kerning first=201 second=261 amount=-1 -kerning first=198 second=953 amount=-1 -kerning first=339 second=1078 amount=-2 -kerning first=247 second=100 amount=-1 -kerning first=367 second=250 amount=-1 -kerning first=961 second=380 amount=-1 -kerning first=124 second=352 amount=-1 -kerning first=1033 second=8220 amount=-2 -kerning first=178 second=968 amount=-1 -kerning first=182 second=277 amount=-1 -kerning first=297 second=199 amount=-2 -kerning first=59 second=1035 amount=-5 -kerning first=62 second=291 amount=-1 -kerning first=205 second=211 amount=-2 -kerning first=322 second=339 amount=-1 -kerning first=8364 second=973 amount=-1 -kerning first=325 second=101 amount=-1 -kerning first=900 second=251 amount=-1 -kerning first=317 second=1098 amount=-3 -kerning first=343 second=955 amount=-3 -kerning first=105 second=365 amount=-1 -kerning first=1186 second=1066 amount=-2 -kerning first=274 second=212 amount=-2 -kerning first=37 second=8216 amount=-3 -kerning first=1041 second=943 amount=-1 -kerning first=186 second=224 amount=-1 -kerning first=298 second=354 amount=-5 -kerning first=203 second=1184 amount=-5 -kerning first=206 second=366 amount=-2 -kerning first=323 second=970 amount=-1 -kerning first=8377 second=229 amount=-1 -kerning first=86 second=378 amount=-2 -kerning first=89 second=171 amount=-3 -kerning first=232 second=63 amount=-2 -kerning first=103 second=8217 amount=-3 -kerning first=946 second=103 amount=-1 -kerning first=252 second=225 amount=-1 -kerning first=375 second=115 amount=-1 -kerning first=271 second=1185 amount=-3 -kerning first=47 second=249 amount=-1 -kerning first=299 second=1038 amount=-2 -kerning first=1080 second=1101 amount=-1 -kerning first=8378 second=1240 amount=-2 -kerning first=8372 second=1262 amount=-2 -kerning first=905 second=356 amount=-5 -kerning first=87 second=1078 amount=-1 -kerning first=1168 second=268 amount=-2 -kerning first=944 second=972 amount=-1 -kerning first=948 second=281 amount=-1 -kerning first=113 second=250 amount=-1 -kerning first=166 second=1241 amount=-1 -kerning first=169 second=187 amount=-1 -kerning first=273 second=8220 amount=-3 -kerning first=51 second=199 amount=-2 -kerning first=188 second=1079 amount=-1 -kerning first=194 second=89 amount=-5 -kerning first=1085 second=973 amount=-1 -kerning first=74 second=101 amount=-1 -kerning first=214 second=251 amount=-1 -kerning first=332 second=381 amount=-1 -kerning first=94 second=263 amount=-1 -kerning first=1174 second=216 amount=-1 -kerning first=351 second=8221 amount=-1 -kerning first=952 second=228 amount=-1 -kerning first=1257 second=118 amount=-1 -kerning first=380 second=240 amount=-1 -kerning first=971 second=1194 amount=-2 -kerning first=280 second=943 amount=-1 -kerning first=52 second=354 amount=-5 -kerning first=49 second=1118 amount=-1 -kerning first=195 second=266 amount=-2 -kerning first=198 second=39 amount=-3 -kerning first=72 second=970 amount=-1 -kerning first=75 second=279 amount=-2 -kerning first=912 second=920 amount=-2 -kerning first=1170 second=1195 amount=-1 -kerning first=361 second=253 amount=-1 -kerning first=950 second=1257 amount=-1 -kerning first=121 second=115 amount=-1 -kerning first=8226 second=360 amount=-2 -kerning first=8249 second=120 amount=-1 -kerning first=53 second=1038 amount=-2 -kerning first=310 second=1101 amount=-1 -kerning first=8361 second=287 amount=-1 -kerning first=1096 second=1262 amount=-2 -kerning first=1099 second=1240 amount=-2 -kerning first=1176 second=1069 amount=-1 -kerning first=239 second=972 amount=-1 -kerning first=1186 second=81 amount=-1 -kerning first=179 second=227 amount=-1 -kerning first=200 second=369 amount=-1 -kerning first=315 second=973 amount=-1 -kerning first=8365 second=232 amount=-1 -kerning first=80 second=381 amount=-1 -kerning first=1103 second=332 amount=-2 -kerning first=97 second=8221 amount=-1 -kerning first=100 second=1066 amount=-5 -kerning first=369 second=118 amount=-4 -kerning first=960 second=962 amount=-1 -kerning first=126 second=240 amount=-1 -kerning first=38 second=943 amount=-1 -kerning first=41 second=252 amount=-1 -kerning first=177 second=1256 amount=-2 -kerning first=299 second=67 amount=-2 -kerning first=207 second=79 amount=-2 -kerning first=902 second=119 amount=-4 -kerning first=84 second=328 amount=-2 -kerning first=936 second=1026 amount=-5 -kerning first=967 second=218 amount=-2 -kerning first=300 second=242 amount=-1 -kerning first=62 second=1101 amount=-1 -kerning first=1081 second=287 amount=-1 -kerning first=205 second=945 amount=-1 -kerning first=322 second=1262 amount=-2 -kerning first=325 second=1240 amount=-2 -kerning first=88 second=268 amount=-3 -kerning first=1118 second=219 amount=-2 -kerning first=354 second=81 amount=-1 -kerning first=1195 second=1175 amount=-1 -kerning first=1210 second=121 amount=-1 -kerning first=374 second=243 amount=-4 -kerning first=968 second=373 amount=-4 -kerning first=46 second=357 amount=-1 -kerning first=49 second=117 amount=-1 -kerning first=189 second=269 amount=-1 -kerning first=1087 second=232 amount=-1 -kerning first=330 second=332 amount=-2 -kerning first=8377 second=966 amount=-1 -kerning first=92 second=216 amount=-2 -kerning first=1119 second=374 amount=-5 -kerning first=115 second=118 amount=-1 -kerning first=1224 second=71 amount=-2 -kerning first=252 second=962 amount=-1 -kerning first=966 second=8230 amount=-1 -kerning first=1026 second=83 amount=-1 -kerning first=168 second=283 amount=-1 -kerning first=8218 second=363 amount=-1 -kerning first=47 second=1044 amount=-4 -kerning first=53 second=67 amount=-2 -kerning first=1064 second=245 amount=-1 -kerning first=193 second=217 amount=-2 -kerning first=73 second=229 amount=-1 -kerning first=337 second=44 amount=-1 -kerning first=93 second=371 amount=-1 -kerning first=90 second=1195 amount=-1 -kerning first=1176 second=84 amount=-5 -kerning first=236 second=286 amount=-2 -kerning first=951 second=334 amount=-2 -kerning first=948 second=1090 amount=-3 -kerning first=376 second=1107 amount=-3 -kerning first=172 second=230 amount=-1 -kerning first=282 second=360 amount=-2 -kerning first=54 second=242 amount=-1 -kerning first=191 second=947 amount=-4 -kerning first=194 second=372 amount=-5 -kerning first=311 second=287 amount=-2 -kerning first=74 second=1240 amount=-2 -kerning first=1097 second=335 amount=-1 -kerning first=338 second=219 amount=-2 -kerning first=916 second=347 amount=-1 -kerning first=94 second=1069 amount=-1 -kerning first=100 second=81 amount=-2 -kerning first=240 second=231 amount=-1 -kerning first=363 second=121 amount=-1 -kerning first=952 second=965 amount=-1 -kerning first=120 second=243 amount=-2 -kerning first=260 second=373 amount=-4 -kerning first=170 second=1263 amount=-1 -kerning first=8240 second=248 amount=-1 -kerning first=316 second=232 amount=-1 -kerning first=78 second=332 amount=-2 -kerning first=221 second=244 amount=-4 -kerning first=928 second=289 amount=-1 -kerning first=920 second=1033 amount=-1 -kerning first=367 second=71 amount=-2 -kerning first=1299 second=351 amount=-1 -kerning first=1036 second=363 amount=-1 -kerning first=178 second=333 amount=-1 -kerning first=294 second=245 amount=-1 -kerning first=1074 second=290 amount=-2 -kerning first=202 second=257 amount=-1 -kerning first=8364 second=338 amount=-2 -kerning first=8369 second=100 amount=-1 -kerning first=85 second=44 amount=-1 -kerning first=346 second=84 amount=-1 -kerning first=1186 second=364 amount=-1 -kerning first=242 second=1090 amount=-1 -kerning first=962 second=376 amount=-5 -kerning first=125 second=346 amount=-1 -kerning first=270 second=258 amount=-2 -kerning first=40 second=360 amount=-2 -kerning first=1037 second=1059 amount=-2 -kerning first=183 second=273 amount=-1 -kerning first=186 second=45 amount=-2 -kerning first=179 second=964 amount=-3 -kerning first=63 second=287 amount=-1 -kerning first=323 second=335 amount=-1 -kerning first=86 second=219 amount=-2 -kerning first=223 second=1108 amount=-1 +kerning first=366 second=1298 amount=-1 +kerning first=366 second=8218 amount=-1 +kerning first=366 second=8222 amount=-1 +kerning first=366 second=8230 amount=-1 +kerning first=368 second=44 amount=-1 +kerning first=368 second=46 amount=-1 +kerning first=368 second=65 amount=-2 +kerning first=368 second=193 amount=-2 +kerning first=368 second=194 amount=-2 +kerning first=368 second=196 amount=-2 +kerning first=368 second=197 amount=-2 +kerning first=368 second=198 amount=-2 +kerning first=368 second=256 amount=-2 +kerning first=368 second=258 amount=-2 +kerning first=368 second=260 amount=-2 +kerning first=368 second=913 amount=-2 +kerning first=368 second=916 amount=-2 +kerning first=368 second=923 amount=-2 +kerning first=368 second=1033 amount=-1 +kerning first=368 second=1040 amount=-2 +kerning first=368 second=1044 amount=-1 +kerning first=368 second=1051 amount=-1 +kerning first=368 second=1298 amount=-1 +kerning first=368 second=8218 amount=-1 +kerning first=368 second=8222 amount=-1 +kerning first=368 second=8230 amount=-1 +kerning first=370 second=44 amount=-1 +kerning first=370 second=46 amount=-1 +kerning first=370 second=65 amount=-2 +kerning first=370 second=193 amount=-2 +kerning first=370 second=194 amount=-2 +kerning first=370 second=196 amount=-2 +kerning first=370 second=197 amount=-2 +kerning first=370 second=198 amount=-2 +kerning first=370 second=256 amount=-2 +kerning first=370 second=258 amount=-2 +kerning first=370 second=260 amount=-2 +kerning first=370 second=913 amount=-2 +kerning first=370 second=916 amount=-2 +kerning first=370 second=923 amount=-2 +kerning first=370 second=1033 amount=-1 +kerning first=370 second=1040 amount=-2 +kerning first=370 second=1044 amount=-1 +kerning first=370 second=1051 amount=-1 +kerning first=370 second=1298 amount=-1 +kerning first=370 second=8218 amount=-1 +kerning first=370 second=8222 amount=-1 +kerning first=370 second=8230 amount=-1 +kerning first=372 second=38 amount=-1 +kerning first=372 second=44 amount=-3 +kerning first=372 second=45 amount=-2 +kerning first=372 second=46 amount=-3 +kerning first=372 second=47 amount=-3 +kerning first=372 second=110 amount=-2 +kerning first=372 second=63 amount=-1 +kerning first=372 second=65 amount=-5 +kerning first=372 second=67 amount=-2 +kerning first=372 second=114 amount=-2 +kerning first=372 second=71 amount=-2 +kerning first=372 second=74 amount=-3 +kerning first=372 second=79 amount=-2 +kerning first=372 second=81 amount=-2 +kerning first=372 second=83 amount=-1 +kerning first=372 second=97 amount=-2 +kerning first=372 second=99 amount=-3 +kerning first=372 second=100 amount=-3 +kerning first=372 second=101 amount=-3 +kerning first=372 second=102 amount=-1 +kerning first=372 second=103 amount=-2 +kerning first=372 second=109 amount=-2 +kerning first=372 second=111 amount=-3 +kerning first=372 second=112 amount=-2 +kerning first=372 second=113 amount=-3 +kerning first=372 second=115 amount=-2 +kerning first=372 second=117 amount=-2 +kerning first=372 second=118 amount=-1 +kerning first=372 second=119 amount=-1 +kerning first=372 second=120 amount=-1 +kerning first=372 second=121 amount=-1 +kerning first=372 second=122 amount=-1 +kerning first=372 second=171 amount=-2 +kerning first=372 second=173 amount=-2 +kerning first=372 second=187 amount=-2 +kerning first=372 second=193 amount=-5 +kerning first=372 second=194 amount=-5 kerning first=372 second=196 amount=-5 -kerning first=960 second=8250 amount=-1 -kerning first=126 second=1028 amount=-2 -kerning first=162 second=288 amount=-2 -kerning first=1048 second=248 amount=-1 -kerning first=299 second=350 amount=-1 -kerning first=207 second=362 amount=-2 -kerning first=204 second=1176 amount=-1 -kerning first=327 second=275 amount=-1 -kerning first=8378 second=225 amount=-1 -kerning first=84 second=1203 amount=-1 -kerning first=1168 second=87 amount=-5 -kerning first=944 second=337 amount=-1 -kerning first=948 second=99 amount=-1 -kerning first=113 second=71 amount=-2 -kerning first=1202 second=940 amount=-1 -kerning first=253 second=221 amount=-5 -kerning first=376 second=111 amount=-4 +kerning first=372 second=197 amount=-5 +kerning first=372 second=198 amount=-5 +kerning first=372 second=199 amount=-2 +kerning first=372 second=210 amount=-2 +kerning first=372 second=211 amount=-2 +kerning first=372 second=212 amount=-2 +kerning first=372 second=213 amount=-2 +kerning first=372 second=214 amount=-2 +kerning first=372 second=216 amount=-2 +kerning first=372 second=224 amount=-2 +kerning first=372 second=225 amount=-2 +kerning first=372 second=226 amount=-2 +kerning first=372 second=227 amount=-2 +kerning first=372 second=228 amount=-2 +kerning first=372 second=229 amount=-2 +kerning first=372 second=230 amount=-2 +kerning first=372 second=231 amount=-3 +kerning first=372 second=232 amount=-3 +kerning first=372 second=233 amount=-3 +kerning first=372 second=234 amount=-3 +kerning first=372 second=235 amount=-3 +kerning first=372 second=240 amount=-3 +kerning first=372 second=241 amount=-2 +kerning first=372 second=242 amount=-3 +kerning first=372 second=243 amount=-3 +kerning first=372 second=244 amount=-3 +kerning first=372 second=245 amount=-3 +kerning first=372 second=246 amount=-3 +kerning first=372 second=248 amount=-3 +kerning first=372 second=249 amount=-2 +kerning first=372 second=250 amount=-2 +kerning first=372 second=251 amount=-2 +kerning first=372 second=252 amount=-2 +kerning first=372 second=253 amount=-1 +kerning first=372 second=256 amount=-5 +kerning first=372 second=257 amount=-2 +kerning first=372 second=258 amount=-5 +kerning first=372 second=259 amount=-2 +kerning first=372 second=260 amount=-5 +kerning first=372 second=261 amount=-2 +kerning first=372 second=262 amount=-2 +kerning first=372 second=263 amount=-3 +kerning first=372 second=266 amount=-2 +kerning first=372 second=267 amount=-3 +kerning first=372 second=268 amount=-2 +kerning first=372 second=269 amount=-3 +kerning first=372 second=271 amount=-3 +kerning first=372 second=273 amount=-3 +kerning first=372 second=275 amount=-3 +kerning first=372 second=277 amount=-3 +kerning first=372 second=279 amount=-3 +kerning first=372 second=281 amount=-3 +kerning first=372 second=283 amount=-3 +kerning first=372 second=286 amount=-2 +kerning first=372 second=287 amount=-2 +kerning first=372 second=288 amount=-2 +kerning first=372 second=289 amount=-2 +kerning first=372 second=290 amount=-2 +kerning first=372 second=291 amount=-2 +kerning first=372 second=324 amount=-2 +kerning first=372 second=326 amount=-2 +kerning first=372 second=328 amount=-2 +kerning first=372 second=331 amount=-2 +kerning first=372 second=332 amount=-2 +kerning first=372 second=333 amount=-3 +kerning first=372 second=334 amount=-2 +kerning first=372 second=335 amount=-3 +kerning first=372 second=336 amount=-2 +kerning first=372 second=337 amount=-3 +kerning first=372 second=338 amount=-2 +kerning first=372 second=339 amount=-3 +kerning first=372 second=341 amount=-2 +kerning first=372 second=343 amount=-2 +kerning first=372 second=345 amount=-2 +kerning first=372 second=346 amount=-1 +kerning first=372 second=347 amount=-2 +kerning first=372 second=350 amount=-1 +kerning first=372 second=351 amount=-2 +kerning first=372 second=352 amount=-1 +kerning first=372 second=353 amount=-2 +kerning first=372 second=361 amount=-2 +kerning first=372 second=363 amount=-2 +kerning first=372 second=365 amount=-2 +kerning first=372 second=367 amount=-2 +kerning first=372 second=369 amount=-2 +kerning first=372 second=371 amount=-2 +kerning first=372 second=373 amount=-1 +kerning first=372 second=375 amount=-1 +kerning first=372 second=378 amount=-1 +kerning first=372 second=380 amount=-1 +kerning first=372 second=382 amount=-1 +kerning first=372 second=913 amount=-5 +kerning first=372 second=916 amount=-5 +kerning first=372 second=920 amount=-2 +kerning first=372 second=923 amount=-5 +kerning first=372 second=927 amount=-2 +kerning first=372 second=940 amount=-3 +kerning first=372 second=941 amount=-3 +kerning first=372 second=942 amount=-2 +kerning first=372 second=945 amount=-3 +kerning first=372 second=947 amount=-1 +kerning first=372 second=949 amount=-3 +kerning first=372 second=951 amount=-2 +kerning first=372 second=954 amount=-2 +kerning first=372 second=957 amount=-1 +kerning first=372 second=959 amount=-3 +kerning first=372 second=962 amount=-3 +kerning first=372 second=963 amount=-3 +kerning first=372 second=965 amount=-2 +kerning first=372 second=966 amount=-3 +kerning first=372 second=968 amount=-2 +kerning first=372 second=972 amount=-3 +kerning first=372 second=973 amount=-2 +kerning first=372 second=1028 amount=-2 +kerning first=372 second=1029 amount=-1 +kerning first=372 second=1032 amount=-3 +kerning first=372 second=1040 amount=-5 +kerning first=372 second=1054 amount=-2 +kerning first=372 second=1057 amount=-2 +kerning first=372 second=1072 amount=-2 +kerning first=372 second=1074 amount=-2 +kerning first=372 second=1075 amount=-2 +kerning first=372 second=1077 amount=-3 +kerning first=372 second=1078 amount=-1 +kerning first=372 second=1080 amount=-2 +kerning first=372 second=1081 amount=-2 +kerning first=372 second=1082 amount=-2 +kerning first=372 second=1084 amount=-2 +kerning first=372 second=1085 amount=-2 +kerning first=372 second=1086 amount=-3 +kerning first=372 second=1087 amount=-2 +kerning first=372 second=1088 amount=-2 +kerning first=372 second=1089 amount=-3 +kerning first=372 second=1091 amount=-1 +kerning first=372 second=1092 amount=-3 +kerning first=372 second=1093 amount=-1 +kerning first=372 second=1094 amount=-2 +kerning first=372 second=1096 amount=-2 +kerning first=372 second=1097 amount=-2 +kerning first=372 second=1099 amount=-2 +kerning first=372 second=1100 amount=-2 +kerning first=372 second=1102 amount=-2 +kerning first=372 second=1104 amount=-3 +kerning first=372 second=1105 amount=-3 +kerning first=372 second=1107 amount=-2 +kerning first=372 second=1108 amount=-3 +kerning first=372 second=1109 amount=-2 +kerning first=372 second=1114 amount=-2 +kerning first=372 second=1116 amount=-2 +kerning first=372 second=1117 amount=-2 +kerning first=372 second=1118 amount=-1 +kerning first=372 second=1119 amount=-2 +kerning first=372 second=1169 amount=-2 +kerning first=372 second=1175 amount=-1 +kerning first=372 second=1179 amount=-2 +kerning first=372 second=1187 amount=-2 +kerning first=372 second=1194 amount=-2 +kerning first=372 second=1195 amount=-3 +kerning first=372 second=1199 amount=-1 +kerning first=372 second=1203 amount=-1 +kerning first=372 second=1220 amount=-2 +kerning first=372 second=1224 amount=-2 +kerning first=372 second=1240 amount=-2 +kerning first=372 second=1241 amount=-3 +kerning first=372 second=1256 amount=-2 +kerning first=372 second=1257 amount=-3 +kerning first=372 second=1263 amount=-1 +kerning first=372 second=8211 amount=-2 +kerning first=372 second=8212 amount=-2 +kerning first=372 second=8218 amount=-3 +kerning first=372 second=8222 amount=-3 +kerning first=372 second=8230 amount=-3 +kerning first=372 second=8249 amount=-2 +kerning first=372 second=8250 amount=-2 +kerning first=373 second=44 amount=-2 +kerning first=373 second=45 amount=-1 +kerning first=373 second=46 amount=-2 +kerning first=373 second=47 amount=-3 +kerning first=373 second=97 amount=-1 +kerning first=373 second=99 amount=-1 +kerning first=373 second=100 amount=-1 +kerning first=373 second=101 amount=-1 +kerning first=373 second=103 amount=-1 +kerning first=373 second=111 amount=-1 +kerning first=373 second=113 amount=-1 +kerning first=373 second=115 amount=-1 +kerning first=373 second=171 amount=-1 +kerning first=373 second=173 amount=-1 +kerning first=373 second=224 amount=-1 +kerning first=373 second=225 amount=-1 +kerning first=373 second=226 amount=-1 +kerning first=373 second=227 amount=-1 +kerning first=373 second=228 amount=-1 +kerning first=373 second=229 amount=-1 +kerning first=373 second=230 amount=-1 +kerning first=373 second=231 amount=-1 +kerning first=373 second=232 amount=-1 +kerning first=373 second=233 amount=-1 +kerning first=373 second=234 amount=-1 +kerning first=373 second=235 amount=-1 +kerning first=373 second=240 amount=-1 +kerning first=373 second=242 amount=-1 +kerning first=373 second=243 amount=-1 +kerning first=373 second=244 amount=-1 +kerning first=373 second=245 amount=-1 +kerning first=373 second=246 amount=-1 +kerning first=373 second=248 amount=-1 +kerning first=373 second=257 amount=-1 +kerning first=373 second=259 amount=-1 +kerning first=373 second=261 amount=-1 +kerning first=373 second=263 amount=-1 +kerning first=373 second=267 amount=-1 +kerning first=373 second=269 amount=-1 +kerning first=373 second=271 amount=-1 +kerning first=373 second=273 amount=-1 +kerning first=373 second=275 amount=-1 +kerning first=373 second=277 amount=-1 +kerning first=373 second=279 amount=-1 +kerning first=373 second=281 amount=-1 +kerning first=373 second=283 amount=-1 +kerning first=373 second=287 amount=-1 +kerning first=373 second=289 amount=-1 +kerning first=373 second=291 amount=-1 +kerning first=373 second=333 amount=-1 +kerning first=373 second=335 amount=-1 +kerning first=373 second=337 amount=-1 +kerning first=373 second=339 amount=-1 +kerning first=373 second=347 amount=-1 kerning first=373 second=351 amount=-1 -kerning first=967 second=953 amount=-1 -kerning first=166 second=233 amount=-1 -kerning first=276 second=363 amount=-1 -kerning first=273 second=1177 amount=-1 -kerning first=48 second=245 amount=-1 -kerning first=188 second=375 amount=-1 -kerning first=303 second=290 amount=-2 -kerning first=1085 second=338 amount=-2 -kerning first=205 second=8211 amount=-2 -kerning first=208 second=1051 amount=-1 -kerning first=1094 second=100 amount=-1 -kerning first=906 second=352 amount=-1 -kerning first=94 second=84 amount=-5 -kerning first=114 second=246 amount=-1 -kerning first=1223 second=199 amount=-2 -kerning first=254 second=376 amount=-5 -kerning first=274 second=8212 amount=-2 -kerning first=1063 second=353 amount=-1 -kerning first=186 second=8249 amount=-3 -kerning first=195 second=85 amount=-2 -kerning first=72 second=335 amount=-1 -kerning first=75 second=97 amount=-1 -kerning first=95 second=259 amount=-1 -kerning first=98 second=34 amount=-1 -kerning first=1224 second=354 amount=-5 -kerning first=1219 second=1118 amount=-1 -kerning first=252 second=8250 amount=-1 -kerning first=1026 second=366 amount=-2 -kerning first=53 second=350 amount=-1 -kerning first=8361 second=103 amount=-1 -kerning first=73 second=966 amount=-1 -kerning first=79 second=47 amount=-1 -kerning first=76 second=275 amount=-1 -kerning first=1099 second=225 amount=-1 -kerning first=219 second=197 amount=-2 -kerning first=340 second=87 amount=-1 -kerning first=1176 second=367 amount=-1 -kerning first=1171 second=1185 amount=-3 -kerning first=239 second=337 amount=-1 -kerning first=119 second=351 amount=-1 -kerning first=122 second=111 amount=-1 -kerning first=8230 second=356 amount=-5 -kerning first=57 second=290 amount=-2 -kerning first=200 second=210 amount=-2 -kerning first=315 second=338 amount=-1 -kerning first=318 second=100 amount=-1 -kerning first=926 second=1241 amount=-1 -kerning first=934 second=187 amount=-1 -kerning first=100 second=364 amount=-2 -kerning first=1174 second=8220 amount=-2 -kerning first=240 second=968 amount=-1 -kerning first=955 second=1079 amount=-1 -kerning first=963 second=89 amount=-5 -kerning first=123 second=291 amount=-1 -kerning first=35 second=1059 amount=-2 -kerning first=291 second=353 amount=-1 -kerning first=296 second=113 amount=-1 -kerning first=61 second=235 amount=-1 -kerning first=201 second=365 amount=-1 -kerning first=8366 second=228 amount=-1 -kerning first=81 second=377 amount=-1 -kerning first=98 second=8216 amount=-1 -kerning first=247 second=224 amount=-1 -kerning first=367 second=354 amount=-5 -kerning first=964 second=266 amount=-2 -kerning first=967 second=39 amount=-3 -kerning first=266 second=1184 amount=-1 -kerning first=42 second=248 amount=-1 -kerning first=185 second=171 amount=-3 -kerning first=1081 second=103 amount=-1 -kerning first=8364 second=1257 amount=-1 -kerning first=325 second=225 amount=-1 -kerning first=903 second=115 amount=-1 -kerning first=900 second=355 amount=-1 -kerning first=105 second=940 amount=-1 -kerning first=108 second=249 amount=-1 -kerning first=968 second=214 amount=-2 -kerning first=1051 second=116 amount=-1 -kerning first=1047 second=356 amount=-1 -kerning first=69 second=100 amount=-1 -kerning first=1083 second=281 amount=-1 -kerning first=209 second=250 amount=-1 -kerning first=206 second=941 amount=-1 -kerning first=908 second=65 amount=-2 -kerning first=86 second=954 amount=-2 -kerning first=89 second=262 amount=-3 -kerning first=946 second=227 amount=-1 -kerning first=1219 second=117 amount=-1 -kerning first=249 second=1079 amount=-1 -kerning first=255 second=89 amount=-5 -kerning first=162 second=1098 amount=-3 -kerning first=165 second=339 amount=-1 -kerning first=168 second=101 amount=-1 -kerning first=278 second=251 amount=-1 -kerning first=47 second=353 amount=-1 -kerning first=50 second=113 amount=-1 -kerning first=193 second=38 amount=-1 -kerning first=190 second=263 amount=-1 -kerning first=8378 second=962 amount=-1 -kerning first=334 second=90 amount=-1 -kerning first=93 second=212 amount=-2 -kerning first=1117 second=1194 amount=-2 -kerning first=1168 second=370 amount=-2 -kerning first=910 second=240 amount=-4 -kerning first=356 second=252 amount=-2 -kerning first=944 second=1256 amount=-2 -kerning first=113 second=354 amount=-5 -kerning first=256 second=266 amount=-2 -kerning first=259 second=39 amount=-1 -kerning first=1027 second=79 amount=-2 -kerning first=169 second=279 amount=-1 -kerning first=166 second=970 amount=-1 -kerning first=8224 second=119 amount=-4 -kerning first=1062 second=920 amount=-1 -kerning first=194 second=213 amount=-2 -kerning first=74 second=225 amount=-1 -kerning first=1085 second=1257 amount=-1 -kerning first=311 second=103 amount=-2 -kerning first=214 second=355 amount=-1 -kerning first=91 second=1185 amount=-3 -kerning first=94 second=367 amount=-1 -kerning first=260 second=214 amount=-2 -kerning first=174 second=226 amount=-1 -kerning first=195 second=368 amount=-2 -kerning first=313 second=281 amount=-1 -kerning first=221 second=65 amount=-5 -kerning first=92 second=8220 amount=-3 -kerning first=361 second=357 amount=-1 -kerning first=956 second=269 amount=-1 -kerning first=36 second=251 amount=-1 -kerning first=193 second=8221 amount=-3 -kerning first=196 second=1066 amount=-5 -kerning first=1074 second=106 amount=1 -kerning first=317 second=228 amount=-1 -kerning first=1099 second=962 amount=-1 -kerning first=219 second=916 amount=-2 -kerning first=931 second=283 amount=-1 -kerning first=239 second=1256 amount=-2 -kerning first=242 second=382 amount=-1 -kerning first=362 second=1044 amount=-1 -kerning first=962 second=217 amount=-2 -kerning first=1041 second=119 amount=-4 -kerning first=1037 second=359 amount=-1 -kerning first=63 second=103 amount=-1 -kerning first=1071 second=1026 amount=-5 -kerning first=203 second=253 amount=-1 -kerning first=315 second=1257 amount=-1 -kerning first=8365 second=334 amount=-2 -kerning first=243 second=1083 amount=-1 -kerning first=369 second=242 amount=-1 -kerning first=366 second=923 amount=-2 -kerning first=960 second=947 amount=-4 -kerning first=963 second=372 amount=-5 -kerning first=123 second=1101 amount=-1 -kerning first=41 second=356 amount=-5 -kerning first=44 second=116 amount=-1 -kerning first=184 second=268 amount=-2 -kerning first=8260 second=1108 amount=-1 -kerning first=61 second=972 amount=-1 -kerning first=64 second=281 amount=-1 -kerning first=1080 second=231 amount=-1 -kerning first=8366 second=965 amount=-1 -kerning first=902 second=243 amount=-1 -kerning first=936 second=1263 amount=-1 -kerning first=250 second=269 amount=-1 -kerning first=160 second=973 amount=-1 -kerning first=1049 second=244 amount=-1 -kerning first=188 second=216 amount=-2 -kerning first=303 second=106 amount=1 -kerning first=325 second=962 amount=-1 -kerning first=1107 second=8230 amount=-3 -kerning first=1210 second=245 amount=-1 -kerning first=254 second=217 amount=-2 +kerning first=373 second=353 amount=-1 +kerning first=373 second=940 amount=-1 +kerning first=373 second=941 amount=-1 +kerning first=373 second=945 amount=-1 +kerning first=373 second=949 amount=-1 +kerning first=373 second=950 amount=-2 +kerning first=373 second=955 amount=-4 +kerning first=373 second=959 amount=-1 +kerning first=373 second=961 amount=-2 +kerning first=373 second=962 amount=-1 +kerning first=373 second=963 amount=-1 +kerning first=373 second=966 amount=-1 +kerning first=373 second=969 amount=-1 +kerning first=373 second=972 amount=-1 +kerning first=373 second=974 amount=-1 +kerning first=373 second=1072 amount=-1 +kerning first=373 second=1077 amount=-1 +kerning first=373 second=1086 amount=-1 +kerning first=373 second=1089 amount=-1 +kerning first=373 second=1092 amount=-1 +kerning first=373 second=1104 amount=-1 +kerning first=373 second=1105 amount=-1 +kerning first=373 second=1108 amount=-1 +kerning first=373 second=1109 amount=-1 +kerning first=373 second=1195 amount=-1 +kerning first=373 second=1241 amount=-1 +kerning first=373 second=1257 amount=-1 +kerning first=373 second=8211 amount=-1 +kerning first=373 second=8212 amount=-1 +kerning first=373 second=8218 amount=-2 +kerning first=373 second=8222 amount=-2 +kerning first=373 second=8230 amount=-2 +kerning first=373 second=8249 amount=-1 +kerning first=374 second=38 amount=-2 +kerning first=374 second=44 amount=-4 +kerning first=374 second=45 amount=-4 +kerning first=374 second=46 amount=-4 +kerning first=374 second=47 amount=-4 +kerning first=374 second=110 amount=-3 +kerning first=374 second=63 amount=-1 +kerning first=374 second=65 amount=-5 +kerning first=374 second=67 amount=-3 +kerning first=374 second=114 amount=-3 +kerning first=374 second=71 amount=-3 +kerning first=374 second=74 amount=-6 +kerning first=374 second=79 amount=-3 +kerning first=374 second=81 amount=-3 +kerning first=374 second=83 amount=-1 +kerning first=374 second=97 amount=-4 +kerning first=374 second=99 amount=-4 +kerning first=374 second=100 amount=-4 +kerning first=374 second=101 amount=-4 +kerning first=374 second=103 amount=-4 +kerning first=374 second=109 amount=-3 +kerning first=374 second=111 amount=-4 +kerning first=374 second=112 amount=-3 +kerning first=374 second=113 amount=-4 +kerning first=374 second=115 amount=-3 +kerning first=374 second=117 amount=-2 +kerning first=374 second=118 amount=-2 +kerning first=374 second=119 amount=-2 +kerning first=374 second=120 amount=-2 +kerning first=374 second=121 amount=-2 +kerning first=374 second=122 amount=-2 +kerning first=374 second=171 amount=-3 +kerning first=374 second=173 amount=-4 +kerning first=374 second=187 amount=-2 +kerning first=374 second=193 amount=-5 +kerning first=374 second=194 amount=-5 +kerning first=374 second=196 amount=-5 +kerning first=374 second=197 amount=-5 +kerning first=374 second=198 amount=-5 +kerning first=374 second=199 amount=-3 +kerning first=374 second=210 amount=-3 +kerning first=374 second=211 amount=-3 +kerning first=374 second=212 amount=-3 +kerning first=374 second=213 amount=-3 +kerning first=374 second=214 amount=-3 +kerning first=374 second=216 amount=-3 +kerning first=374 second=224 amount=-4 +kerning first=374 second=225 amount=-4 +kerning first=374 second=226 amount=-4 +kerning first=374 second=227 amount=-4 +kerning first=374 second=228 amount=-4 +kerning first=374 second=229 amount=-4 +kerning first=374 second=230 amount=-4 +kerning first=374 second=231 amount=-4 +kerning first=374 second=232 amount=-4 +kerning first=374 second=233 amount=-4 +kerning first=374 second=234 amount=-4 +kerning first=374 second=235 amount=-4 +kerning first=374 second=240 amount=-4 +kerning first=374 second=241 amount=-3 +kerning first=374 second=242 amount=-4 +kerning first=374 second=243 amount=-4 +kerning first=374 second=244 amount=-4 +kerning first=374 second=245 amount=-4 +kerning first=374 second=246 amount=-4 +kerning first=374 second=248 amount=-4 +kerning first=374 second=249 amount=-2 +kerning first=374 second=250 amount=-2 +kerning first=374 second=251 amount=-2 +kerning first=374 second=252 amount=-2 +kerning first=374 second=253 amount=-2 +kerning first=374 second=256 amount=-5 +kerning first=374 second=257 amount=-4 +kerning first=374 second=258 amount=-5 +kerning first=374 second=259 amount=-4 +kerning first=374 second=260 amount=-5 +kerning first=374 second=261 amount=-4 +kerning first=374 second=262 amount=-3 +kerning first=374 second=263 amount=-4 +kerning first=374 second=266 amount=-3 +kerning first=374 second=267 amount=-4 +kerning first=374 second=268 amount=-3 +kerning first=374 second=269 amount=-4 +kerning first=374 second=271 amount=-4 +kerning first=374 second=273 amount=-4 +kerning first=374 second=275 amount=-4 +kerning first=374 second=277 amount=-4 +kerning first=374 second=279 amount=-4 +kerning first=374 second=281 amount=-4 +kerning first=374 second=283 amount=-4 +kerning first=374 second=286 amount=-3 +kerning first=374 second=287 amount=-4 +kerning first=374 second=288 amount=-3 +kerning first=374 second=289 amount=-4 +kerning first=374 second=290 amount=-3 +kerning first=374 second=291 amount=-4 +kerning first=374 second=324 amount=-3 +kerning first=374 second=326 amount=-3 +kerning first=374 second=328 amount=-3 +kerning first=374 second=331 amount=-3 +kerning first=374 second=332 amount=-3 +kerning first=374 second=333 amount=-4 +kerning first=374 second=334 amount=-3 +kerning first=374 second=335 amount=-4 +kerning first=374 second=336 amount=-3 +kerning first=374 second=337 amount=-4 +kerning first=374 second=338 amount=-3 +kerning first=374 second=339 amount=-4 +kerning first=374 second=341 amount=-3 +kerning first=374 second=343 amount=-3 kerning first=374 second=345 amount=-3 -kerning first=968 second=949 amount=-1 -kerning first=971 second=257 amount=-1 -kerning first=167 second=229 amount=-1 -kerning first=280 second=119 amount=-4 -kerning first=8211 second=1051 amount=-4 -kerning first=46 second=920 amount=-1 -kerning first=186 second=1195 amount=-1 -kerning first=189 second=371 amount=-1 -kerning first=301 second=1026 amount=-5 -kerning first=304 second=286 amount=-2 -kerning first=1087 second=334 amount=-2 -kerning first=1083 second=1090 amount=-3 -kerning first=352 second=1174 amount=-1 -kerning first=950 second=273 amount=-1 -kerning first=946 second=964 amount=-3 -kerning first=252 second=947 amount=-4 -kerning first=255 second=372 amount=-5 -kerning first=165 second=1262 amount=-2 -kerning first=168 second=1240 amount=-2 -kerning first=1064 second=347 amount=-1 -kerning first=190 second=1069 amount=-1 -kerning first=196 second=81 amount=-2 -kerning first=310 second=231 amount=-2 -kerning first=70 second=1084 amount=-1 -kerning first=8378 second=8250 amount=-1 -kerning first=915 second=288 amount=-2 -kerning first=910 second=1028 amount=-3 -kerning first=382 second=232 amount=-1 -kerning first=1027 second=362 amount=-2 -kerning first=973 second=1176 amount=-1 -kerning first=172 second=332 amount=-2 -kerning first=287 second=244 amount=-1 -kerning first=57 second=106 amount=1 -kerning first=74 second=962 amount=-1 -kerning first=220 second=193 amount=-2 -kerning first=332 second=8230 amount=-1 -kerning first=926 second=233 amount=-1 -kerning first=240 second=333 amount=-1 -kerning first=363 second=245 amount=-1 -kerning first=955 second=375 amount=-1 -kerning first=1298 second=290 amount=-2 -kerning first=260 second=949 amount=-1 -kerning first=35 second=359 amount=-1 -kerning first=38 second=119 amount=-1 -kerning first=1028 second=1051 amount=-1 -kerning first=174 second=963 amount=-1 -kerning first=177 second=271 amount=-1 -kerning first=8240 second=352 amount=-1 -kerning first=55 second=1026 amount=-5 -kerning first=58 second=286 amount=-2 -kerning first=1073 second=234 amount=-1 -kerning first=316 second=334 amount=-2 -kerning first=8363 second=277 amount=-1 -kerning first=221 second=346 amount=-1 -kerning first=1178 second=1059 amount=-1 -kerning first=241 second=964 amount=-1 -kerning first=247 second=45 amount=-2 -kerning first=964 second=85 amount=-2 -kerning first=124 second=287 amount=-1 -kerning first=182 second=219 amount=-2 -kerning first=289 second=1108 amount=-1 -kerning first=294 second=347 amount=-1 -kerning first=62 second=231 amount=-1 -kerning first=202 second=361 amount=-1 -kerning first=205 second=121 amount=-1 -kerning first=317 second=965 amount=-1 -kerning first=8369 second=224 amount=-1 -kerning first=79 second=1202 amount=-3 -kerning first=1099 second=8250 amount=-1 -kerning first=161 second=232 amount=-1 -kerning first=43 second=244 amount=-1 -kerning first=1047 second=197 amount=-1 -kerning first=183 second=374 amount=-5 -kerning first=298 second=289 amount=-1 -kerning first=1083 second=99 amount=-1 -kerning first=209 second=71 amount=-2 -kerning first=901 second=351 amount=-1 -kerning first=80 second=8230 amount=-4 -kerning first=904 second=111 amount=-1 -kerning first=89 second=83 amount=-1 -kerning first=1116 second=261 amount=-1 -kerning first=940 second=967 amount=-2 -kerning first=249 second=375 amount=-1 -kerning first=372 second=290 amount=-2 -kerning first=268 second=8211 amount=-1 -kerning first=47 second=194 amount=-5 -kerning first=1048 second=352 amount=-1 -kerning first=190 second=84 amount=-5 -kerning first=302 second=234 amount=-1 -kerning first=64 second=1090 amount=-3 -kerning first=1080 second=968 amount=-1 -kerning first=1084 second=277 amount=-1 -kerning first=327 second=376 amount=-5 -kerning first=8372 second=1079 amount=-1 -kerning first=902 second=1035 amount=-5 -kerning first=905 second=291 amount=-1 -kerning first=1168 second=211 amount=-2 -kerning first=345 second=8212 amount=-1 -kerning first=1220 second=113 amount=-1 -kerning first=247 second=8249 amount=-3 -kerning first=256 second=85 amount=-2 -kerning first=376 second=235 amount=-4 -kerning first=166 second=335 amount=-1 -kerning first=169 second=97 amount=-1 -kerning first=48 second=347 amount=-1 -kerning first=191 second=259 amount=-1 -kerning first=194 second=34 amount=-3 -kerning first=74 second=46 amount=-1 -kerning first=325 second=8250 amount=-1 -kerning first=1118 second=1184 amount=-5 -kerning first=357 second=248 amount=-1 -kerning first=952 second=171 amount=-3 -kerning first=111 second=1113 amount=-1 -kerning first=1257 second=63 amount=-2 -kerning first=968 second=8217 amount=-3 -kerning first=167 second=966 amount=-1 -kerning first=170 second=275 amount=-1 -kerning first=8225 second=115 amount=-1 -kerning first=52 second=289 amount=-1 -kerning first=313 second=99 amount=-1 -kerning first=215 second=351 amount=-1 -kerning first=92 second=1177 amount=-1 -kerning first=95 second=363 amount=-1 -kerning first=235 second=967 amount=-2 -kerning first=381 second=338 amount=-1 -kerning first=1026 second=941 amount=-1 -kerning first=8249 second=65 amount=-1 -kerning first=56 second=234 amount=-1 -kerning first=1067 second=1241 amount=-1 -kerning first=196 second=364 amount=-2 -kerning first=314 second=277 amount=-1 -kerning first=310 second=968 amount=-1 -kerning first=8361 second=227 amount=-1 -kerning first=76 second=376 amount=-6 -kerning first=1096 second=1079 amount=-1 -kerning first=216 second=1035 amount=-2 -kerning first=915 second=1098 amount=-3 -kerning first=923 second=339 amount=-1 -kerning first=96 second=1059 amount=-2 -kerning first=93 second=8212 amount=-2 -kerning first=931 second=101 amount=-1 -kerning first=365 second=113 amount=-1 -kerning first=958 second=263 amount=-1 -kerning first=122 second=235 amount=-1 -kerning first=194 second=8216 amount=-3 -kerning first=318 second=224 amount=-1 -kerning first=74 second=8250 amount=-1 -kerning first=83 second=86 amount=-2 -kerning first=1103 second=266 amount=-2 -kerning first=1108 second=39 amount=-1 -kerning first=338 second=1184 amount=-5 -kerning first=934 second=279 amount=-1 -kerning first=926 second=970 amount=-1 -kerning first=103 second=248 amount=-1 -kerning first=243 second=378 amount=-1 -kerning first=963 second=213 amount=-2 -kerning first=260 second=8217 amount=-3 -kerning first=184 second=87 amount=-5 -kerning first=61 second=337 amount=-1 -kerning first=64 second=99 amount=-1 -kerning first=201 second=940 amount=-1 -kerning first=204 second=249 amount=-1 -kerning first=84 second=261 amount=-2 -kerning first=339 second=8218 amount=-1 -kerning first=1194 second=356 amount=-1 -kerning first=244 second=1078 amount=-2 -kerning first=964 second=368 amount=-2 -kerning first=160 second=338 amount=-2 -kerning first=163 second=100 amount=-1 -kerning first=273 second=250 amount=-1 -kerning first=42 second=352 amount=-1 -kerning first=185 second=262 amount=-2 -kerning first=297 second=1241 amount=-1 -kerning first=300 second=187 amount=-1 -kerning first=62 second=968 amount=-1 -kerning first=65 second=277 amount=-1 -kerning first=1081 second=227 amount=-1 -kerning first=322 second=1079 amount=-1 -kerning first=88 second=211 amount=-3 -kerning first=225 second=1098 amount=-1 -kerning first=108 second=353 amount=-1 -kerning first=248 second=955 amount=-1 -kerning first=251 second=263 amount=-1 -kerning first=965 second=1066 amount=-5 -kerning first=962 second=8221 amount=-3 -kerning first=1047 second=916 amount=-1 -kerning first=1051 second=240 amount=-1 -kerning first=189 second=212 amount=-2 -kerning first=69 second=224 amount=-1 -kerning first=206 second=1118 amount=-1 -kerning first=209 second=354 amount=-5 -kerning first=330 second=266 amount=-2 -kerning first=333 second=39 amount=-1 -kerning first=86 second=1184 amount=-5 -kerning first=1170 second=79 amount=-2 -kerning first=115 second=63 amount=-2 -kerning first=1206 second=920 amount=-1 -kerning first=255 second=213 amount=-2 -kerning first=372 second=1100 amount=-2 -kerning first=168 second=225 amount=-1 -kerning first=278 second=355 amount=-1 -kerning first=8212 second=1046 amount=-3 -kerning first=190 second=367 amount=-1 -kerning first=8378 second=947 amount=-4 -kerning first=905 second=1101 amount=-1 -kerning first=87 second=8218 amount=-3 -kerning first=1168 second=945 amount=-1 -kerning first=236 second=226 amount=-1 -kerning first=951 second=268 amount=-2 -kerning first=256 second=368 amount=-2 -kerning first=376 second=972 amount=-4 -kerning first=379 second=281 amount=-1 -kerning first=8224 second=243 amount=-1 -kerning first=51 second=1241 amount=-1 -kerning first=54 second=187 amount=-1 -kerning first=188 second=8220 amount=-3 -kerning first=311 second=227 amount=-1 -kerning first=77 second=89 amount=-5 -kerning first=1097 second=269 amount=-1 -kerning first=955 second=216 amount=-2 -kerning first=254 second=8221 amount=-3 -kerning first=1298 second=106 amount=1 -kerning first=1035 second=118 amount=-4 -kerning first=195 second=943 amount=-1 -kerning first=198 second=252 amount=-1 -kerning first=78 second=266 amount=-2 -kerning first=333 second=8222 amount=-1 -kerning first=928 second=229 amount=-1 -kerning first=361 second=920 amount=-2 -kerning first=956 second=371 amount=-1 -kerning first=124 second=103 amount=-1 -kerning first=1299 second=286 amount=-2 -kerning first=381 second=1257 amount=-1 -kerning first=36 second=355 amount=-1 -kerning first=1033 second=1046 amount=-2 -kerning first=39 second=115 amount=-1 -kerning first=178 second=267 amount=-1 -kerning first=1074 second=230 amount=-1 -kerning first=8364 second=273 amount=-1 -kerning first=8369 second=45 amount=-2 -kerning first=8361 second=964 amount=-3 -kerning first=1099 second=947 amount=-4 -kerning first=923 second=1262 amount=-2 -kerning first=931 second=1240 amount=-2 -kerning first=105 second=116 amount=-1 -kerning first=958 second=1069 amount=-1 -kerning first=965 second=81 amount=-2 -kerning first=125 second=281 amount=-1 -kerning first=122 second=972 amount=-1 -kerning first=1041 second=243 amount=-1 -kerning first=63 second=227 amount=-1 -kerning first=1071 second=1263 amount=-1 -kerning first=206 second=117 amount=-1 -kerning first=203 second=357 amount=-1 -kerning first=323 second=269 amount=-1 -kerning first=8370 second=220 amount=-2 -kerning first=223 second=973 amount=-1 -kerning first=947 second=244 amount=-1 -kerning first=249 second=216 amount=-2 -kerning first=162 second=228 amount=-1 -kerning first=275 second=118 amount=-1 -kerning first=180 second=1194 amount=-2 -kerning first=184 second=370 amount=-2 -kerning first=299 second=283 amount=-1 -kerning first=61 second=1256 amount=-2 -kerning first=1080 second=333 amount=-1 -kerning first=327 second=217 amount=-2 -kerning first=8372 second=375 amount=-1 -kerning first=81 second=8222 amount=-1 -kerning first=90 second=79 amount=-1 -kerning first=1117 second=257 amount=-1 -kerning first=353 second=119 amount=-1 -kerning first=944 second=271 amount=-1 -kerning first=247 second=1195 amount=-1 -kerning first=250 second=371 amount=-1 -kerning first=160 second=1257 amount=-1 -kerning first=8216 second=246 amount=-1 -kerning first=1049 second=346 amount=-1 -kerning first=303 second=230 amount=-1 -kerning first=1085 second=273 amount=-1 -kerning first=1081 second=964 amount=-3 -kerning first=208 second=923 amount=-2 -kerning first=325 second=947 amount=-4 -kerning first=8369 second=8249 amount=-3 -kerning first=906 second=287 amount=-1 -kerning first=88 second=945 amount=-2 -kerning first=1203 second=1108 amount=-1 -kerning first=1210 second=347 amount=-1 -kerning first=251 second=1069 amount=-1 -kerning first=377 second=231 amount=-1 -kerning first=971 second=361 amount=-1 -kerning first=280 second=243 amount=-1 -kerning first=8221 second=196 amount=-3 -kerning first=1051 second=1028 amount=-2 -kerning first=1063 second=288 amount=-2 -kerning first=301 second=1263 amount=-1 -kerning first=72 second=269 amount=-1 -kerning first=1095 second=220 amount=-2 -kerning first=912 second=232 amount=-1 -kerning first=1119 second=1176 amount=-1 -kerning first=1170 second=362 amount=-2 -kerning first=358 second=244 amount=-1 -kerning first=950 second=374 amount=-5 -kerning first=1224 second=289 amount=-1 -kerning first=168 second=962 amount=-1 -kerning first=8226 second=111 amount=-1 -kerning first=56 second=55 amount=-1 -kerning first=53 second=283 amount=-1 -kerning first=1067 second=233 amount=-1 -kerning first=310 second=333 amount=-2 -kerning first=76 second=217 amount=-1 -kerning first=1096 second=375 amount=-1 -kerning first=96 second=359 amount=-1 -kerning first=1168 second=8211 amount=-2 -kerning first=99 second=119 amount=-1 -kerning first=236 second=963 amount=-1 -kerning first=239 second=271 amount=-1 -kerning first=242 second=44 amount=-1 -kerning first=362 second=194 amount=-2 -kerning first=958 second=84 amount=-5 -kerning first=1263 second=234 amount=-1 -kerning first=176 second=218 amount=-2 -kerning first=287 second=346 amount=-1 -kerning first=8224 second=1035 amount=-5 -kerning first=8230 second=291 amount=-1 -kerning first=57 second=230 amount=-1 -kerning first=197 second=360 amount=-2 -kerning first=318 second=45 amount=-2 -kerning first=315 second=273 amount=-1 -kerning first=74 second=947 amount=-4 -kerning first=77 second=372 amount=-5 -kerning first=1103 second=85 amount=-2 -kerning first=926 second=335 amount=-1 -kerning first=934 second=97 amount=-1 -kerning first=363 second=347 amount=-1 -kerning first=960 second=259 amount=-1 -kerning first=963 second=34 amount=-3 -kerning first=123 second=231 amount=-1 -kerning first=38 second=243 amount=-1 -kerning first=1038 second=196 amount=-2 -kerning first=177 second=373 amount=-4 -kerning first=291 second=288 amount=-2 -kerning first=55 second=1263 amount=-1 -kerning first=1073 second=336 amount=-2 -kerning first=321 second=220 amount=-2 -kerning first=8366 second=171 amount=-3 -kerning first=928 second=966 amount=-1 -kerning first=936 second=275 amount=-1 -kerning first=1194 second=197 amount=-1 -kerning first=367 second=289 amount=-1 -kerning first=364 second=1033 amount=-1 -kerning first=273 second=71 amount=-2 -kerning first=1039 second=351 amount=-1 -kerning first=1046 second=111 amount=-2 -kerning first=185 second=83 amount=-1 -kerning first=297 second=233 amount=-1 -kerning first=62 second=333 amount=-1 -kerning first=205 second=245 amount=-1 -kerning first=322 second=375 amount=-1 -kerning first=900 second=290 amount=-2 -kerning first=340 second=8211 amount=-1 -kerning first=251 second=84 amount=-5 -kerning first=371 second=234 amount=-1 -kerning first=965 second=364 amount=-2 -kerning first=161 second=334 amount=-2 -kerning first=125 second=1090 amount=-3 -kerning first=274 second=246 amount=-1 -kerning first=43 second=346 amount=-1 -kerning first=1041 second=1035 amount=-5 -kerning first=69 second=45 amount=-2 -kerning first=63 second=964 amount=-3 -kerning first=318 second=8249 amount=-3 -kerning first=330 second=85 amount=-2 -kerning first=8377 second=263 amount=-1 -kerning first=904 second=235 amount=-1 -kerning first=252 second=259 amount=-1 -kerning first=255 second=34 amount=-3 -kerning first=963 second=8216 amount=-3 -kerning first=162 second=965 amount=-1 -kerning first=8212 second=354 amount=-4 -kerning first=47 second=288 amount=-2 -kerning first=44 second=1028 amount=-1 -kerning first=302 second=336 amount=-2 -kerning first=70 second=220 amount=-2 -kerning first=356 second=197 amount=-6 -kerning first=951 second=87 amount=-5 -kerning first=113 second=289 amount=-1 -kerning first=376 second=337 amount=-4 -kerning first=379 second=99 amount=-1 -kerning first=973 second=249 amount=-1 -kerning first=169 second=221 amount=-5 -kerning first=282 second=111 amount=-1 -kerning first=51 second=233 amount=-1 -kerning first=191 second=363 amount=-1 -kerning first=188 second=1177 amount=-1 -kerning first=214 second=290 amount=-2 -kerning first=916 second=100 amount=-1 -kerning first=88 second=8211 amount=-3 -kerning first=1169 second=941 amount=-1 -kerning first=354 second=1116 amount=-2 -kerning first=357 second=352 amount=-1 -kerning first=952 second=262 amount=-2 -kerning first=117 second=234 amount=-1 -kerning first=1223 second=1241 amount=-1 -kerning first=380 second=277 amount=-1 -kerning first=170 second=376 amount=-5 -kerning first=280 second=1035 amount=-5 -kerning first=1063 second=1098 amount=-3 -kerning first=189 second=8212 amount=-2 -kerning first=192 second=1059 amount=-2 -kerning first=69 second=8249 amount=-3 -kerning first=78 second=85 amount=-2 -kerning first=956 second=212 amount=-2 -kerning first=255 second=8216 amount=-3 -kerning first=1026 second=1118 amount=-1 -kerning first=168 second=8250 amount=-1 -kerning first=1033 second=354 amount=-5 -kerning first=56 second=336 amount=-2 -kerning first=1067 second=970 amount=-1 -kerning first=317 second=171 amount=-3 -kerning first=79 second=260 amount=-2 -kerning first=931 second=225 amount=-1 -kerning first=958 second=367 amount=-1 -kerning first=122 second=337 amount=-1 -kerning first=125 second=99 amount=-1 -kerning first=40 second=111 amount=-1 -kerning first=37 second=351 amount=-1 -kerning first=179 second=261 amount=-1 -kerning first=176 second=953 amount=-1 -kerning first=8365 second=268 amount=-2 -kerning first=1103 second=368 amount=-2 -kerning first=223 second=338 amount=-2 -kerning first=341 second=941 amount=-1 -kerning first=103 second=352 amount=-1 -kerning first=369 second=187 amount=-1 -kerning first=955 second=8220 amount=-3 -kerning first=123 second=968 amount=-1 -kerning first=126 second=277 amount=-1 -kerning first=271 second=199 amount=-2 -kerning first=38 second=1035 amount=-5 -kerning first=41 second=291 amount=-1 -kerning first=184 second=211 amount=-2 -kerning first=296 second=339 amount=-1 -kerning first=8260 second=973 amount=-1 -kerning first=299 second=101 amount=-1 -kerning first=291 second=1098 amount=-3 -kerning first=204 second=353 amount=-1 -kerning first=207 second=113 amount=-1 -kerning first=8372 second=216 amount=-2 -kerning first=84 second=365 amount=-2 -kerning first=1101 second=8221 amount=-1 -kerning first=1194 second=916 amount=-1 -kerning first=1202 second=240 amount=-1 -kerning first=250 second=212 amount=-2 -kerning first=964 second=943 amount=-1 -kerning first=967 second=252 amount=-1 -kerning first=163 second=224 amount=-1 -kerning first=273 second=354 amount=-5 -kerning first=182 second=1184 amount=-5 -kerning first=185 second=366 amount=-2 -kerning first=300 second=279 amount=-1 -kerning first=297 second=970 amount=-1 -kerning first=8369 second=1195 amount=-1 -kerning first=906 second=103 amount=-1 -kerning first=1118 second=253 amount=-1 -kerning first=354 second=115 amount=-3 -kerning first=251 second=367 amount=-1 -kerning first=248 second=1185 amount=-1 -kerning first=274 second=1038 amount=-2 -kerning first=8217 second=242 amount=-1 -kerning first=8211 second=923 amount=-2 -kerning first=304 second=226 amount=-1 -kerning first=1087 second=268 amount=-2 -kerning first=330 second=368 amount=-2 -kerning first=8377 second=1069 amount=-1 -kerning first=904 second=972 amount=-1 -kerning first=92 second=250 amount=-1 -kerning first=89 second=941 amount=-4 -kerning first=232 second=380 amount=-1 -kerning first=249 second=8220 amount=-3 -kerning first=1026 second=117 amount=-1 -kerning first=165 second=1079 amount=-1 -kerning first=171 second=89 amount=-2 -kerning first=47 second=1098 amount=-3 -kerning first=50 second=339 amount=-1 -kerning first=53 second=101 amount=-1 -kerning first=193 second=251 amount=-1 -kerning first=73 second=263 amount=-1 -kerning first=1096 second=216 amount=-2 -kerning first=327 second=8221 amount=-3 -kerning first=915 second=228 amount=-1 -kerning first=1176 second=118 amount=-4 -kerning first=356 second=916 amount=-6 -kerning first=948 second=1194 amount=-2 -kerning first=951 second=370 amount=-2 -kerning first=113 second=1099 amount=2 -kerning first=256 second=943 amount=-1 -kerning first=376 second=1256 amount=-3 -kerning first=172 second=266 amount=-2 -kerning first=176 second=39 amount=-3 -kerning first=51 second=970 amount=-1 -kerning first=54 second=279 amount=-1 -kerning first=77 second=213 amount=-2 -kerning first=1094 second=1195 amount=-1 -kerning first=338 second=253 amount=-1 -kerning first=100 second=115 amount=-1 -kerning first=240 second=267 amount=-1 -kerning first=1298 second=230 amount=-1 -kerning first=1028 second=923 amount=-1 -kerning first=1035 second=242 amount=-1 -kerning first=177 second=214 amount=-2 -kerning first=8240 second=287 amount=-1 -kerning first=58 second=226 amount=-1 -kerning first=198 second=356 amount=-5 -kerning first=201 second=116 amount=-1 -kerning first=316 second=268 amount=-2 -kerning first=8363 second=219 amount=-2 -kerning first=78 second=368 amount=-2 -kerning first=221 second=281 amount=-4 -kerning first=1185 second=243 amount=-2 -kerning first=124 second=227 amount=-1 -kerning first=178 second=369 amount=-1 -kerning first=289 second=973 amount=-1 -kerning first=1074 second=332 amount=-2 -kerning first=322 second=216 amount=-2 -kerning first=8364 second=374 amount=-5 -kerning first=900 second=106 amount=1 -kerning first=76 second=8221 amount=-3 -kerning first=79 second=1066 amount=-2 -kerning first=346 second=118 amount=-1 -kerning first=931 second=962 amount=-1 -kerning first=105 second=240 amount=-1 -kerning first=274 second=67 amount=-2 -kerning first=186 second=79 amount=-2 -kerning first=298 second=229 amount=-1 -kerning first=1075 second=963 amount=-1 -kerning first=203 second=920 amount=-2 -kerning first=323 second=371 amount=-1 -kerning first=318 second=1195 amount=-1 -kerning first=8377 second=84 amount=-5 -kerning first=901 second=286 amount=-2 -kerning first=86 second=253 amount=-1 -kerning first=223 second=1257 amount=-1 -kerning first=372 second=230 amount=-2 -kerning first=969 second=120 amount=-1 -kerning first=41 second=1101 amount=-1 -kerning first=1048 second=287 amount=-1 -kerning first=184 second=945 amount=-1 -kerning first=299 second=1240 amount=-2 -kerning first=296 second=1262 amount=-2 -kerning first=1084 second=219 amount=-2 -kerning first=8378 second=259 amount=-1 -kerning first=905 second=231 amount=-1 -kerning first=1113 second=1175 amount=-2 -kerning first=1117 second=361 amount=-1 -kerning first=1168 second=121 amount=-1 -kerning first=944 second=373 amount=-4 -kerning first=1202 second=1028 amount=-1 -kerning first=166 second=269 amount=-1 -kerning first=1062 second=232 amount=-1 -kerning first=303 second=332 amount=-2 -kerning first=1085 second=374 amount=-5 -kerning first=214 second=106 amount=1 -kerning first=332 second=256 amount=-2 -kerning first=94 second=118 amount=-4 -kerning first=1174 second=71 amount=-1 -kerning first=952 second=83 amount=-1 -kerning first=114 second=283 amount=-1 -kerning first=1223 second=233 amount=-1 +kerning first=374 second=346 amount=-1 +kerning first=374 second=347 amount=-3 +kerning first=374 second=350 amount=-1 +kerning first=374 second=351 amount=-3 +kerning first=374 second=352 amount=-1 +kerning first=374 second=353 amount=-3 +kerning first=374 second=361 amount=-2 +kerning first=374 second=363 amount=-2 +kerning first=374 second=365 amount=-2 +kerning first=374 second=367 amount=-2 +kerning first=374 second=369 amount=-2 +kerning first=374 second=371 amount=-2 +kerning first=374 second=373 amount=-2 +kerning first=374 second=375 amount=-2 +kerning first=374 second=378 amount=-2 +kerning first=374 second=380 amount=-2 +kerning first=374 second=382 amount=-2 +kerning first=374 second=913 amount=-5 +kerning first=374 second=916 amount=-5 +kerning first=374 second=920 amount=-3 +kerning first=374 second=923 amount=-5 +kerning first=374 second=927 amount=-3 +kerning first=374 second=937 amount=-2 +kerning first=374 second=940 amount=-4 +kerning first=374 second=941 amount=-4 +kerning first=374 second=942 amount=-3 +kerning first=374 second=943 amount=-2 +kerning first=374 second=945 amount=-4 +kerning first=374 second=947 amount=-2 +kerning first=374 second=949 amount=-4 +kerning first=374 second=950 amount=-2 +kerning first=374 second=951 amount=-3 +kerning first=374 second=952 amount=-2 +kerning first=374 second=953 amount=-2 +kerning first=374 second=954 amount=-3 +kerning first=374 second=955 amount=-2 +kerning first=374 second=957 amount=-2 +kerning first=374 second=959 amount=-4 +kerning first=374 second=961 amount=-5 +kerning first=374 second=962 amount=-4 +kerning first=374 second=963 amount=-4 +kerning first=374 second=964 amount=-2 +kerning first=374 second=965 amount=-2 +kerning first=374 second=966 amount=-4 +kerning first=374 second=967 amount=-2 +kerning first=374 second=968 amount=-2 +kerning first=374 second=969 amount=-4 +kerning first=374 second=970 amount=-2 +kerning first=374 second=972 amount=-4 +kerning first=374 second=973 amount=-2 +kerning first=374 second=974 amount=-4 +kerning first=374 second=1028 amount=-3 +kerning first=374 second=1029 amount=-1 +kerning first=374 second=1032 amount=-6 +kerning first=374 second=1033 amount=-5 +kerning first=374 second=1040 amount=-5 +kerning first=374 second=1044 amount=-5 +kerning first=374 second=1051 amount=-5 +kerning first=374 second=1054 amount=-3 +kerning first=374 second=1057 amount=-3 +kerning first=374 second=1069 amount=-2 +kerning first=374 second=1071 amount=-2 +kerning first=374 second=1072 amount=-4 +kerning first=374 second=1074 amount=-3 +kerning first=374 second=1075 amount=-3 +kerning first=374 second=1077 amount=-4 +kerning first=374 second=1078 amount=-2 +kerning first=374 second=1079 amount=-4 +kerning first=374 second=1080 amount=-3 +kerning first=374 second=1081 amount=-3 +kerning first=374 second=1082 amount=-3 +kerning first=374 second=1084 amount=-3 +kerning first=374 second=1085 amount=-3 +kerning first=374 second=1086 amount=-4 kerning first=374 second=1087 amount=-3 -kerning first=377 second=333 amount=-1 -kerning first=170 second=217 amount=-2 -kerning first=52 second=229 amount=-1 -kerning first=195 second=119 amount=-4 -kerning first=192 second=359 amount=-1 -kerning first=304 second=963 amount=-1 -kerning first=69 second=1195 amount=-1 -kerning first=72 second=371 amount=-1 -kerning first=212 second=1026 amount=-2 -kerning first=215 second=286 amount=-2 -kerning first=912 second=334 amount=-2 -kerning first=1175 second=246 amount=-1 -kerning first=238 second=218 amount=-2 -kerning first=358 second=346 amount=-1 -kerning first=118 second=230 amount=-1 -kerning first=258 second=360 amount=-2 -kerning first=381 second=273 amount=-1 -kerning first=168 second=947 amount=-4 -kerning first=8226 second=235 amount=-1 -kerning first=53 second=1240 amount=-2 -kerning first=50 second=1262 amount=-2 -kerning first=1067 second=335 amount=-1 -kerning first=314 second=219 amount=-2 -kerning first=73 second=1069 amount=-1 -kerning first=1099 second=259 amount=-1 -kerning first=1102 second=34 amount=-1 -kerning first=915 second=965 amount=-1 -kerning first=239 second=373 amount=-4 -kerning first=1263 second=336 amount=-2 -kerning first=57 second=332 amount=-2 -kerning first=1071 second=275 amount=-1 -kerning first=1075 second=47 amount=-2 -kerning first=200 second=244 amount=-1 -kerning first=315 second=374 amount=-6 -kerning first=80 second=256 amount=-4 -kerning first=8365 second=87 amount=-5 -kerning first=217 second=1298 amount=-1 -kerning first=934 second=221 amount=-5 -kerning first=1187 second=111 amount=-1 -kerning first=960 second=363 amount=-1 -kerning first=955 second=1177 amount=-1 -kerning first=123 second=333 amount=-1 -kerning first=177 second=949 amount=-1 -kerning first=180 second=257 amount=-1 -kerning first=8260 second=338 amount=-2 -kerning first=58 second=963 amount=-1 -kerning first=61 second=271 amount=-1 -kerning first=8366 second=262 amount=-2 -kerning first=221 second=1090 amount=-2 -kerning first=345 second=246 amount=-1 -kerning first=936 second=376 amount=-5 -kerning first=956 second=8212 amount=-2 -kerning first=160 second=273 amount=-1 -kerning first=163 second=45 amount=-2 -kerning first=124 second=964 amount=-3 -kerning first=42 second=287 amount=-1 -kerning first=1046 second=235 amount=-2 -kerning first=297 second=335 amount=-1 -kerning first=300 second=97 amount=-1 -kerning first=65 second=219 amount=-2 -kerning first=202 second=1108 amount=-1 -kerning first=205 second=347 amount=-1 -kerning first=325 second=259 amount=-1 -kerning first=328 second=34 amount=-1 -kerning first=88 second=121 amount=-1 -kerning first=1102 second=8216 amount=-1 -kerning first=931 second=8250 amount=-1 -kerning first=105 second=1028 amount=-2 -kerning first=108 second=288 amount=-2 -kerning first=371 second=336 amount=-2 -kerning first=968 second=248 amount=-1 -kerning first=164 second=220 amount=-2 -kerning first=274 second=350 amount=-1 -kerning first=183 second=1176 amount=-1 -kerning first=186 second=362 amount=-2 -kerning first=298 second=966 amount=-1 -kerning first=301 second=275 amount=-1 -kerning first=66 second=374 amount=-2 -kerning first=209 second=289 amount=-1 -kerning first=1087 second=87 amount=-5 -kerning first=8377 second=367 amount=-1 -kerning first=8370 second=1185 amount=-3 -kerning first=904 second=337 amount=-1 -kerning first=92 second=71 amount=-2 -kerning first=1119 second=249 amount=-1 -kerning first=1116 second=940 amount=-2 -kerning first=946 second=261 amount=-1 -kerning first=249 second=1177 amount=-1 -kerning first=252 second=363 amount=-1 -kerning first=165 second=375 amount=-1 -kerning first=278 second=290 amount=-2 -kerning first=184 second=8211 amount=-2 -kerning first=1064 second=100 amount=-1 -kerning first=187 second=1051 amount=-2 -kerning first=73 second=84 amount=-5 -kerning first=8372 second=8220 amount=-3 -kerning first=905 second=968 amount=-1 -kerning first=93 second=246 amount=-1 -kerning first=1171 second=199 amount=-2 -kerning first=910 second=277 amount=-4 -kerning first=356 second=291 amount=-2 -kerning first=951 second=211 amount=-2 -kerning first=1220 second=339 amount=-1 -kerning first=250 second=8212 amount=-2 -kerning first=253 second=1059 amount=-2 -kerning first=1207 second=1098 amount=-2 -kerning first=973 second=353 amount=-1 -kerning first=1027 second=113 amount=-1 -kerning first=163 second=8249 amount=-3 -kerning first=172 second=85 amount=-2 -kerning first=282 second=235 amount=-1 -kerning first=51 second=335 amount=-1 -kerning first=54 second=97 amount=-1 -kerning first=74 second=259 amount=-1 -kerning first=77 second=34 amount=-3 -kerning first=328 second=8216 amount=-1 -kerning first=916 second=224 amount=-1 -kerning first=1174 second=354 amount=-2 -kerning first=952 second=366 amount=-2 -kerning first=117 second=336 amount=-2 -kerning first=1223 second=970 amount=-1 -kerning first=260 second=248 amount=-1 -kerning first=8240 second=103 amount=-1 -kerning first=52 second=966 amount=-1 -kerning first=55 second=275 amount=-1 -kerning first=316 second=87 amount=-5 -kerning first=1095 second=1185 amount=-3 -kerning first=221 second=99 amount=-4 -kerning first=920 second=379 amount=-1 -kerning first=238 second=953 amount=-1 -kerning first=1299 second=226 amount=-1 -kerning first=266 second=198 amount=-1 -kerning first=36 second=290 amount=-2 -kerning first=178 second=210 amount=-2 -kerning first=289 second=338 amount=-2 -kerning first=294 second=100 amount=-1 -kerning first=8226 second=972 amount=-1 -kerning first=317 second=262 amount=-2 -kerning first=1096 second=8220 amount=-3 -kerning first=923 second=1079 amount=-1 -kerning first=102 second=291 amount=-1 -kerning first=937 second=89 amount=-2 -kerning first=365 second=339 amount=-1 -kerning first=962 second=251 amount=-1 -kerning first=40 second=235 amount=-1 -kerning first=179 second=365 amount=-1 -kerning first=323 second=212 amount=-2 -kerning first=8365 second=370 amount=-2 -kerning first=77 second=8216 amount=-3 -kerning first=86 second=74 amount=-4 -kerning first=1103 second=943 amount=-1 -kerning first=369 second=279 amount=-1 -kerning first=162 second=171 amount=-3 -kerning first=275 second=63 amount=-2 -kerning first=177 second=8217 amount=-3 -kerning first=1048 second=103 amount=-1 -kerning first=299 second=225 amount=-1 -kerning first=8260 second=1257 amount=-1 -kerning first=1080 second=267 amount=-1 -kerning first=67 second=87 amount=-1 -kerning first=321 second=1185 amount=-3 -kerning first=84 second=940 amount=-3 -kerning first=87 second=249 amount=-2 -kerning first=944 second=214 amount=-2 -kerning first=244 second=8218 amount=-1 -kerning first=373 second=226 amount=-1 -kerning first=967 second=356 amount=-5 -kerning first=48 second=100 amount=-1 -kerning first=1049 second=281 amount=-1 -kerning first=188 second=250 amount=-1 -kerning first=185 second=941 amount=-1 -kerning first=1046 second=972 amount=-2 -kerning first=322 second=8220 amount=-3 -kerning first=906 second=227 amount=-1 -kerning first=91 second=199 amount=-2 -kerning first=1118 second=357 amount=-1 -kerning first=108 second=1098 amount=-3 -kerning first=114 second=101 amount=-1 -kerning first=254 second=251 amount=-1 -kerning first=167 second=263 amount=-1 -kerning first=1063 second=228 amount=-1 -kerning first=72 second=212 amount=-2 -kerning first=1083 second=1194 amount=-2 -kerning first=1087 second=370 amount=-2 -kerning first=330 second=943 amount=-1 -kerning first=904 second=1256 amount=-2 -kerning first=89 second=1118 amount=-2 -kerning first=92 second=354 amount=-5 -kerning first=238 second=39 amount=-3 -kerning first=1224 second=229 amount=-1 -kerning first=8218 second=1026 amount=-5 -kerning first=8222 second=286 amount=-1 -kerning first=53 second=225 amount=-1 -kerning first=193 second=355 amount=-1 -kerning first=196 second=115 amount=-1 -kerning first=310 second=267 amount=-2 -kerning first=70 second=1185 amount=-3 -kerning first=73 second=367 amount=-1 -kerning first=93 second=1038 amount=-2 -kerning first=1176 second=242 amount=-1 -kerning first=239 second=214 amount=-2 -kerning first=356 second=1101 amount=-2 -kerning first=951 second=945 amount=-1 -kerning first=119 second=226 amount=-1 -kerning first=1220 second=1262 amount=-2 -kerning first=172 second=368 amount=-2 -kerning first=282 second=972 amount=-1 -kerning first=287 second=281 amount=-1 -kerning first=338 second=357 amount=-1 -kerning first=926 second=269 amount=-1 -kerning first=240 second=369 amount=-1 -kerning first=1298 second=332 amount=-2 -kerning first=174 second=1066 amount=-5 -kerning first=170 second=8221 amount=-3 -kerning first=291 second=228 amount=-1 -kerning first=201 second=240 amount=-1 -kerning first=316 second=370 amount=-2 -kerning first=313 second=1194 amount=-1 -kerning first=8366 second=83 amount=-1 -kerning first=78 second=943 amount=-1 -kerning first=221 second=382 amount=-2 -kerning first=936 second=217 amount=-2 -kerning first=247 second=79 amount=-2 -kerning first=367 second=229 amount=-1 -kerning first=964 second=119 amount=-4 -kerning first=1299 second=963 amount=-1 -kerning first=42 second=103 amount=-1 -kerning first=1039 second=286 amount=-2 -kerning first=182 second=253 amount=-1 -kerning first=289 second=1257 amount=-1 -kerning first=62 second=267 amount=-1 -kerning first=900 second=230 amount=-1 -kerning first=1114 second=120 amount=-2 -kerning first=931 second=947 amount=-4 -kerning first=365 second=1262 amount=-2 -kerning first=161 second=268 amount=-2 -kerning first=46 second=53 amount=-1 -kerning first=40 second=972 amount=-1 -kerning first=43 second=281 amount=-1 -kerning first=86 second=357 amount=-1 -kerning first=89 second=117 amount=-2 -kerning first=1206 second=232 amount=-1 -kerning first=372 second=332 amount=-2 -kerning first=165 second=216 amount=-2 -kerning first=278 second=106 amount=1 -kerning first=47 second=228 amount=-2 -kerning first=190 second=118 amount=-4 -kerning first=299 second=962 amount=-1 -kerning first=64 second=1194 amount=-2 -kerning first=8378 second=363 amount=-1 -kerning first=8372 second=1177 amount=-1 -kerning first=905 second=333 amount=-1 -kerning first=93 second=67 amount=-2 -kerning first=1168 second=245 amount=-1 -kerning first=944 second=949 amount=-1 -kerning first=948 second=257 amount=-1 -kerning first=113 second=229 amount=-1 -kerning first=253 second=359 amount=-1 -kerning first=256 second=119 amount=-4 -kerning first=376 second=271 amount=-4 -kerning first=373 second=963 amount=-1 -kerning first=163 second=1195 amount=-1 -kerning first=166 second=371 amount=-1 -kerning first=276 second=1026 amount=-5 -kerning first=8220 second=234 amount=-1 -kerning first=1049 second=1090 amount=-3 -kerning first=1062 second=334 amount=-1 -kerning first=306 second=218 amount=-2 -kerning first=214 second=230 amount=-1 -kerning first=906 second=964 amount=-3 -kerning first=916 second=45 amount=-2 -kerning first=94 second=242 amount=-1 -kerning first=335 second=120 amount=-2 -kerning first=231 second=947 amount=-1 -kerning first=357 second=287 amount=-1 -kerning first=1223 second=335 amount=-1 -kerning first=971 second=1108 amount=-1 -kerning first=167 second=1069 amount=-1 -kerning first=174 second=81 amount=-2 -kerning first=1063 second=965 amount=-1 -kerning first=1069 second=46 amount=-1 -kerning first=195 second=243 amount=-1 -kerning first=361 second=232 amount=-1 -kerning first=950 second=1176 amount=-1 -kerning first=1224 second=966 amount=-1 -kerning first=36 second=106 amount=1 -kerning first=8226 second=337 amount=-1 -kerning first=53 second=962 amount=-1 -kerning first=1070 second=221 amount=-3 -kerning first=199 second=193 amount=-1 -kerning first=317 second=83 amount=-1 -kerning first=8361 second=261 amount=-1 -kerning first=1096 second=1177 amount=-1 -kerning first=1099 second=363 amount=-1 -kerning first=923 second=375 amount=-1 -kerning first=239 second=949 amount=-1 -kerning first=951 second=8211 amount=-2 -kerning first=119 second=963 amount=-1 -kerning first=122 second=271 amount=-1 -kerning first=37 second=286 amount=-2 -kerning first=1037 second=234 amount=-1 -kerning first=287 second=1090 amount=-3 -kerning first=8230 second=968 amount=-1 -kerning first=60 second=218 amount=-2 -kerning first=1071 second=376 amount=-5 -kerning first=200 second=346 amount=-1 -kerning first=8365 second=211 amount=-2 -kerning first=80 second=360 amount=-2 -kerning first=83 second=120 amount=-1 -kerning first=223 second=273 amount=-1 -kerning first=916 second=8249 amount=-3 -kerning first=103 second=287 amount=-1 -kerning first=1187 second=235 amount=-1 -kerning first=369 second=97 amount=-1 -kerning first=126 second=219 amount=-2 -kerning first=1241 second=34 amount=-1 -kerning first=41 second=231 amount=-1 -kerning first=180 second=361 amount=-1 -kerning first=184 second=121 amount=-1 -kerning first=291 second=965 amount=-1 -kerning first=61 second=373 amount=-4 -kerning first=201 second=1028 amount=-2 -kerning first=204 second=288 amount=-2 -kerning first=8363 second=1184 amount=-5 -kerning first=8366 second=366 amount=-2 -kerning first=107 second=232 amount=-2 -kerning first=247 second=362 amount=-2 -kerning first=367 second=966 amount=-1 -kerning first=373 second=47 amount=-3 -kerning first=160 second=374 amount=-5 -kerning first=273 second=289 amount=-1 -kerning first=39 second=1298 amount=-3 -kerning first=1046 second=337 amount=-2 -kerning first=1049 second=99 amount=-1 -kerning first=188 second=71 amount=-2 -kerning first=300 second=221 amount=-5 -kerning first=1081 second=261 amount=-1 -kerning first=322 second=1177 amount=-1 -kerning first=325 second=363 amount=-1 -kerning first=88 second=245 amount=-2 -kerning first=1210 second=100 amount=-1 -kerning first=968 second=352 amount=-1 -kerning first=167 second=84 amount=-5 -kerning first=43 second=1090 amount=-3 -kerning first=1051 second=277 amount=-1 -kerning first=189 second=246 amount=-1 -kerning first=46 second=334 amount=-1 -kerning first=301 second=376 amount=-5 -kerning first=1087 second=211 amount=-2 -kerning first=323 second=8212 amount=-2 -kerning first=1170 second=113 amount=-1 -kerning first=1119 second=353 amount=-1 -kerning first=946 second=365 amount=-1 -kerning first=168 second=259 amount=-1 -kerning first=8222 second=102 amount=-2 -kerning first=1241 second=8216 amount=-1 -kerning first=47 second=965 amount=-1 -kerning first=53 second=46 amount=-1 -kerning first=1064 second=224 amount=-1 -kerning first=299 second=8250 amount=-1 -kerning first=1084 second=1184 amount=-5 -kerning first=910 second=378 amount=-2 -kerning first=915 second=171 amount=-3 -kerning first=93 second=350 amount=-1 -kerning first=944 second=8217 amount=-3 -kerning first=113 second=966 amount=-1 -kerning first=119 second=47 amount=-3 -kerning first=282 second=337 amount=-1 -kerning first=287 second=99 amount=-1 -kerning first=8230 second=52 amount=-1 -kerning first=54 second=221 amount=-5 -kerning first=194 second=351 amount=-1 -kerning first=197 second=111 amount=-1 -kerning first=306 second=953 amount=-1 -kerning first=311 second=261 amount=-1 -kerning first=74 second=363 amount=-1 -kerning first=240 second=210 amount=-2 -kerning first=363 second=100 amount=-1 -kerning first=952 second=941 amount=-1 -kerning first=955 second=250 amount=-1 -kerning first=1257 second=380 amount=-1 -kerning first=260 second=352 amount=-1 -kerning first=35 second=234 amount=-1 -kerning first=1035 second=187 amount=-1 -kerning first=174 second=364 amount=-2 -kerning first=8240 second=227 amount=-1 -kerning first=55 second=376 amount=-5 -kerning first=195 second=1035 amount=-5 -kerning first=198 second=291 amount=-1 -kerning first=1073 second=89 amount=-5 -kerning first=316 second=211 amount=-2 -kerning first=72 second=8212 amount=-2 -kerning first=920 second=955 amount=-2 -kerning first=928 second=263 amount=-1 -kerning first=294 second=224 amount=-1 -kerning first=8226 second=1256 amount=-2 -kerning first=53 second=8250 amount=-1 -kerning first=1074 second=266 amount=-2 -kerning first=314 second=1184 amount=-5 -kerning first=317 second=366 amount=-2 -kerning first=8369 second=79 amount=-2 -kerning first=239 second=8217 amount=-3 -kerning first=962 second=355 amount=-1 -kerning first=965 second=115 amount=-1 -kerning first=161 second=87 amount=-5 -kerning first=40 second=337 amount=-1 -kerning first=43 second=99 amount=-1 -kerning first=183 second=249 amount=-1 -kerning first=179 second=940 amount=-1 -kerning first=63 second=261 amount=-1 -kerning first=60 second=953 amount=-1 -kerning first=8365 second=945 amount=-1 -kerning first=901 second=226 amount=-1 -kerning first=86 second=198 amount=-6 -kerning first=947 second=281 amount=-1 -kerning first=1187 second=972 amount=-1 -kerning first=249 second=250 amount=-1 -kerning first=162 second=262 amount=-2 -kerning first=271 second=1241 amount=-1 -kerning first=41 second=968 amount=-1 -kerning first=1048 second=227 amount=-1 -kerning first=302 second=89 amount=-5 -kerning first=296 second=1079 amount=-1 -kerning first=1080 second=369 amount=-1 -kerning first=207 second=339 amount=-1 -kerning first=204 second=1098 amount=-3 -kerning first=327 second=251 amount=-1 -kerning first=84 second=1117 amount=-2 -kerning first=87 second=353 amount=-2 -kerning first=90 second=113 amount=-1 -kerning first=936 second=8221 amount=-3 -kerning first=166 second=212 amount=-2 -kerning first=279 second=102 amount=-1 -kerning first=8216 second=283 amount=-1 -kerning first=48 second=224 amount=-1 -kerning first=1046 second=1256 amount=-3 -kerning first=188 second=354 amount=-5 -kerning first=185 second=1118 amount=-1 -kerning first=303 second=266 amount=-2 -kerning first=306 second=39 amount=-3 -kerning first=65 second=1184 amount=-5 -kerning first=1118 second=920 amount=-2 -kerning first=357 second=103 amount=-1 -kerning first=354 second=341 amount=-2 -kerning first=114 second=225 amount=-1 -kerning first=1203 second=1257 amount=-1 -kerning first=254 second=355 amount=-1 -kerning first=377 second=267 amount=-1 -kerning first=167 second=367 amount=-1 -kerning first=164 second=1185 amount=-3 -kerning first=8221 second=230 amount=-1 -kerning first=189 second=1038 amount=-2 -kerning first=1087 second=945 amount=-1 -kerning first=215 second=226 amount=-1 -kerning first=912 second=268 amount=-2 -kerning first=358 second=281 amount=-1 -kerning first=165 second=8220 amount=-3 -kerning first=8218 second=1263 amount=-1 -kerning first=56 second=89 amount=-5 -kerning first=50 second=1079 amount=-1 -kerning first=1067 second=269 amount=-1 -kerning first=310 second=369 amount=-1 -kerning first=76 second=251 amount=-1 -kerning first=216 second=381 amount=-1 -kerning first=923 second=216 amount=-2 -kerning first=233 second=8221 amount=-1 -kerning first=236 second=1066 amount=-5 -kerning first=958 second=118 amount=-4 -kerning first=379 second=1194 amount=-1 -kerning first=172 second=943 amount=-1 -kerning first=176 second=252 amount=-1 -kerning first=282 second=1256 amount=-2 -kerning first=57 second=266 amount=-2 -kerning first=60 second=39 amount=-3 -kerning first=1071 second=217 amount=-2 -kerning first=318 second=79 amount=-2 -kerning first=1103 second=119 amount=-4 -kerning first=338 second=920 amount=-2 -kerning first=916 second=1195 amount=-1 -kerning first=926 second=371 amount=-1 -kerning first=103 second=103 amount=-1 -kerning first=1184 second=286 amount=-3 -kerning first=123 second=267 amount=-1 -kerning first=8260 second=273 amount=-1 -kerning first=61 second=214 amount=-2 -kerning first=1073 second=372 amount=-5 -kerning first=8240 second=964 amount=-3 -kerning first=198 second=1101 amount=-1 -kerning first=316 second=945 amount=-1 -kerning first=81 second=356 amount=-2 -kerning first=928 second=1069 amount=-1 -kerning first=964 second=243 amount=-1 -kerning first=42 second=227 amount=-1 -kerning first=1036 second=1263 amount=-2 -kerning first=182 second=357 amount=-1 -kerning first=185 second=117 amount=-1 -kerning first=297 second=269 amount=-1 -kerning first=62 second=369 amount=-1 -kerning first=202 second=973 amount=-1 -kerning first=8364 second=1176 amount=-1 -kerning first=8369 second=362 amount=-2 -kerning first=900 second=332 amount=-2 -kerning first=108 second=228 amount=-1 -kerning first=251 second=118 amount=-4 -kerning first=125 second=1194 amount=-2 -kerning first=161 second=370 amount=-2 -kerning first=274 second=283 amount=-1 -kerning first=40 second=1256 amount=-2 -kerning first=189 second=67 amount=-2 -kerning first=301 second=217 amount=-2 -kerning first=69 second=79 amount=-2 -kerning first=1083 second=257 amount=-1 -kerning first=209 second=229 amount=-1 -kerning first=8365 second=8211 amount=-2 -kerning first=330 second=119 amount=-4 -kerning first=901 second=963 amount=-1 -kerning first=904 second=271 amount=-1 -kerning first=86 second=920 amount=-2 -kerning first=908 second=44 amount=-1 -kerning first=89 second=241 amount=-3 -kerning first=1206 second=334 amount=-1 -kerning first=375 second=218 amount=-2 -kerning first=278 second=230 amount=-1 -kerning first=1048 second=964 amount=-3 -kerning first=1064 second=45 amount=-2 -kerning first=190 second=242 amount=-1 -kerning first=187 second=923 amount=-3 -kerning first=299 second=947 amount=-4 -kerning first=302 second=372 amount=-5 -kerning first=207 second=1262 amount=-2 -kerning first=1117 second=1108 amount=-1 -kerning first=1168 second=347 amount=-1 -kerning first=236 second=81 amount=-2 -kerning first=356 second=231 amount=-3 -kerning first=948 second=361 amount=-1 -kerning first=951 second=121 amount=-1 -kerning first=113 second=331 amount=2 -kerning first=1256 second=46 amount=-1 -kerning first=256 second=243 amount=-1 -kerning first=376 second=373 amount=-2 -kerning first=973 second=288 amount=-2 -kerning first=276 second=1263 amount=-1 -kerning first=51 second=269 amount=-1 -kerning first=1065 second=220 amount=-1 -kerning first=1085 second=1176 amount=-1 -kerning first=214 second=332 amount=-2 -kerning first=911 second=374 amount=-2 -kerning first=97 second=106 amount=1 -kerning first=354 second=1298 amount=-4 -kerning first=955 second=71 amount=-2 -kerning first=114 second=962 amount=-1 +kerning first=374 second=1088 amount=-3 +kerning first=374 second=1089 amount=-4 +kerning first=374 second=1090 amount=-2 +kerning first=374 second=1091 amount=-2 +kerning first=374 second=1092 amount=-4 +kerning first=374 second=1093 amount=-2 +kerning first=374 second=1094 amount=-3 +kerning first=374 second=1096 amount=-3 +kerning first=374 second=1097 amount=-3 +kerning first=374 second=1098 amount=-2 +kerning first=374 second=1099 amount=-3 +kerning first=374 second=1100 amount=-3 +kerning first=374 second=1101 amount=-4 +kerning first=374 second=1102 amount=-3 +kerning first=374 second=1104 amount=-4 +kerning first=374 second=1105 amount=-4 +kerning first=374 second=1107 amount=-3 +kerning first=374 second=1108 amount=-4 +kerning first=374 second=1109 amount=-3 +kerning first=374 second=1114 amount=-3 +kerning first=374 second=1116 amount=-3 +kerning first=374 second=1117 amount=-3 +kerning first=374 second=1118 amount=-2 +kerning first=374 second=1119 amount=-3 +kerning first=374 second=1169 amount=-3 +kerning first=374 second=1175 amount=-2 +kerning first=374 second=1176 amount=-2 +kerning first=374 second=1177 amount=-4 +kerning first=374 second=1179 amount=-3 +kerning first=374 second=1185 amount=-2 +kerning first=374 second=1187 amount=-3 +kerning first=374 second=1194 amount=-3 +kerning first=374 second=1195 amount=-4 +kerning first=374 second=1199 amount=-2 +kerning first=374 second=1203 amount=-2 +kerning first=374 second=1220 amount=-3 +kerning first=374 second=1224 amount=-3 +kerning first=374 second=1240 amount=-3 +kerning first=374 second=1241 amount=-4 +kerning first=374 second=1256 amount=-3 +kerning first=374 second=1257 amount=-4 +kerning first=374 second=1263 amount=-2 +kerning first=374 second=1298 amount=-5 +kerning first=374 second=8211 amount=-4 +kerning first=374 second=8212 amount=-4 +kerning first=374 second=8218 amount=-4 +kerning first=374 second=8222 amount=-4 kerning first=374 second=8230 amount=-4 -kerning first=55 second=217 amount=-2 -kerning first=78 second=119 amount=-4 -kerning first=1087 second=8211 amount=-2 -kerning first=75 second=359 amount=-1 -kerning first=215 second=963 amount=-1 -kerning first=221 second=44 amount=-4 -kerning first=928 second=84 amount=-5 -kerning first=95 second=1026 amount=-5 -kerning first=1178 second=234 amount=-1 -kerning first=361 second=334 amount=-2 -kerning first=956 second=246 amount=-1 -kerning first=358 second=1090 amount=-3 -kerning first=121 second=218 amount=-2 -kerning first=1240 second=258 amount=-2 -kerning first=36 second=230 amount=-1 -kerning first=171 second=1174 amount=-1 -kerning first=175 second=360 amount=-2 -kerning first=289 second=273 amount=-1 -kerning first=294 second=45 amount=-2 -kerning first=53 second=947 amount=-4 -kerning first=56 second=372 amount=-5 -kerning first=1064 second=8249 amount=-3 -kerning first=1074 second=85 amount=-2 -kerning first=8361 second=365 amount=-1 -kerning first=931 second=259 amount=-1 -kerning first=102 second=231 amount=-1 -kerning first=368 second=46 amount=-1 -kerning first=1037 second=336 amount=-2 -kerning first=8250 second=378 amount=-1 -kerning first=203 second=232 amount=-1 -kerning first=318 second=362 amount=-2 -kerning first=223 second=374 amount=-5 -kerning first=947 second=99 amount=-1 -kerning first=249 second=71 amount=-2 -kerning first=1187 second=337 amount=-1 -kerning first=369 second=221 amount=-5 -kerning first=963 second=351 amount=-1 -kerning first=162 second=83 amount=-1 -kerning first=271 second=233 amount=-1 -kerning first=41 second=333 amount=-1 -kerning first=184 second=245 amount=-1 -kerning first=296 second=375 amount=-1 -kerning first=61 second=949 amount=-1 -kerning first=64 second=257 amount=-1 -kerning first=1080 second=210 amount=-2 -kerning first=316 second=8211 amount=-2 -kerning first=8372 second=250 amount=-1 -kerning first=8366 second=941 amount=-1 -kerning first=87 second=194 amount=-5 -kerning first=104 second=1090 amount=-1 -kerning first=1202 second=277 amount=-1 -kerning first=250 second=246 amount=-1 -kerning first=964 second=1035 amount=-5 -kerning first=967 second=291 amount=-1 -kerning first=42 second=964 amount=-3 -kerning first=48 second=45 amount=-2 -kerning first=8216 second=101 amount=-1 -kerning first=294 second=8249 amount=-3 -kerning first=303 second=85 amount=-2 -kerning first=1081 second=365 amount=-1 -kerning first=88 second=347 amount=-1 -kerning first=234 second=34 amount=-1 -kerning first=108 second=965 amount=-1 -kerning first=114 second=46 amount=-3 -kerning first=1210 second=224 amount=-1 -kerning first=8217 second=279 amount=-1 -kerning first=49 second=220 amount=-2 -kerning first=1063 second=171 amount=-3 -kerning first=189 second=350 amount=-1 -kerning first=69 second=362 amount=-2 -kerning first=209 second=966 amount=-1 -kerning first=92 second=289 amount=-1 -kerning first=912 second=87 amount=-5 -kerning first=89 second=1033 amount=-5 -kerning first=358 second=99 amount=-1 -kerning first=950 second=249 amount=-1 -kerning first=946 second=940 amount=-1 -kerning first=258 second=111 amount=-1 -kerning first=255 second=351 amount=-1 -kerning first=375 second=953 amount=-1 -kerning first=165 second=1177 amount=-1 -kerning first=168 second=363 amount=-1 -kerning first=50 second=375 amount=-1 -kerning first=193 second=290 amount=-2 -kerning first=310 second=210 amount=-3 -kerning first=67 second=8211 amount=-1 -kerning first=1096 second=250 amount=-1 -kerning first=1090 second=941 amount=-1 -kerning first=915 second=262 amount=-2 -kerning first=910 second=954 amount=-3 -kerning first=96 second=234 amount=-1 -kerning first=1171 second=1241 amount=-1 -kerning first=1176 second=187 amount=-1 -kerning first=236 second=364 amount=-2 -kerning first=356 second=968 amount=-2 -kerning first=1220 second=1079 amount=-1 -kerning first=256 second=1035 amount=-5 -kerning first=1263 second=89 amount=-5 -kerning first=1027 second=339 amount=-1 -kerning first=166 second=8212 amount=-2 -kerning first=169 second=1059 amount=-2 -kerning first=973 second=1098 amount=-3 -kerning first=48 second=8249 amount=-3 -kerning first=57 second=85 amount=-2 -kerning first=197 second=235 amount=-1 -kerning first=926 second=212 amount=-2 -kerning first=1184 second=102 amount=-2 -kerning first=234 second=8216 amount=-1 -kerning first=363 second=224 amount=-1 -kerning first=955 second=354 amount=-5 -kerning first=952 second=1118 amount=-1 -kerning first=1298 second=266 amount=-2 -kerning first=35 second=336 amount=-2 -kerning first=1035 second=279 amount=-1 -kerning first=177 second=248 amount=-1 -kerning first=291 second=171 amount=-3 -kerning first=1073 second=213 amount=-2 -kerning first=8363 second=253 amount=-1 -kerning first=81 second=197 amount=-2 -kerning first=221 second=324 amount=-3 -kerning first=928 second=367 amount=-1 -kerning first=956 second=1038 amount=-2 -kerning first=124 second=261 amount=-1 -kerning first=121 second=953 amount=-1 -kerning first=1039 second=226 amount=-1 -kerning first=62 second=210 amount=-2 -kerning first=1074 second=368 amount=-2 -kerning first=202 second=338 amount=-2 -kerning first=205 second=100 amount=-1 -kerning first=317 second=941 amount=-1 -kerning first=322 second=250 amount=-1 -kerning first=343 second=1241 amount=-1 -kerning first=923 second=8220 amount=-3 -kerning first=105 second=277 amount=-1 -kerning first=371 second=89 amount=-5 -kerning first=365 second=1079 amount=-1 -kerning first=161 second=211 amount=-2 -kerning first=274 second=101 amount=-1 -kerning first=183 second=353 amount=-1 -kerning first=186 second=113 amount=-1 -kerning first=298 second=263 amount=-1 -kerning first=63 second=365 amount=-1 -kerning first=1071 second=8221 amount=-3 -kerning first=8377 second=118 amount=-4 -kerning first=1116 second=240 amount=-2 -kerning first=249 second=354 amount=-5 -kerning first=375 second=39 amount=-3 -kerning first=372 second=266 amount=-2 -kerning first=126 second=1184 amount=-5 -kerning first=162 second=366 amount=-2 -kerning first=271 second=970 amount=-1 -kerning first=47 second=171 amount=-3 -kerning first=302 second=213 amount=-2 -kerning first=61 second=8217 amount=-3 -kerning first=1084 second=253 amount=-1 -kerning first=327 second=355 amount=-1 -kerning first=905 second=267 amount=-1 -kerning first=227 second=1185 amount=-1 -kerning first=250 second=1038 amount=-2 +kerning first=374 second=8249 amount=-3 +kerning first=374 second=8250 amount=-2 +kerning first=376 second=38 amount=-2 +kerning first=376 second=44 amount=-4 +kerning first=376 second=45 amount=-4 +kerning first=376 second=46 amount=-4 +kerning first=376 second=47 amount=-4 +kerning first=376 second=110 amount=-3 +kerning first=376 second=63 amount=-1 +kerning first=376 second=65 amount=-5 +kerning first=376 second=67 amount=-3 +kerning first=376 second=114 amount=-3 +kerning first=376 second=71 amount=-3 +kerning first=376 second=74 amount=-6 +kerning first=376 second=79 amount=-3 +kerning first=376 second=81 amount=-3 +kerning first=376 second=83 amount=-1 +kerning first=376 second=97 amount=-4 +kerning first=376 second=99 amount=-4 +kerning first=376 second=100 amount=-4 +kerning first=376 second=101 amount=-4 +kerning first=376 second=103 amount=-4 +kerning first=376 second=109 amount=-3 +kerning first=376 second=111 amount=-4 +kerning first=376 second=112 amount=-3 +kerning first=376 second=113 amount=-4 +kerning first=376 second=115 amount=-3 +kerning first=376 second=117 amount=-2 +kerning first=376 second=118 amount=-2 +kerning first=376 second=119 amount=-2 +kerning first=376 second=120 amount=-2 +kerning first=376 second=121 amount=-2 +kerning first=376 second=122 amount=-2 +kerning first=376 second=171 amount=-3 +kerning first=376 second=173 amount=-4 +kerning first=376 second=187 amount=-2 +kerning first=376 second=193 amount=-5 +kerning first=376 second=194 amount=-5 +kerning first=376 second=196 amount=-5 +kerning first=376 second=197 amount=-5 +kerning first=376 second=198 amount=-5 +kerning first=376 second=199 amount=-3 +kerning first=376 second=210 amount=-3 +kerning first=376 second=211 amount=-3 +kerning first=376 second=212 amount=-3 +kerning first=376 second=213 amount=-3 kerning first=376 second=214 amount=-3 -kerning first=967 second=1101 amount=-1 -kerning first=45 second=1078 amount=-2 -kerning first=1062 second=268 amount=-1 -kerning first=303 second=368 amount=-2 -kerning first=91 second=1241 amount=-1 -kerning first=94 second=187 amount=-1 -kerning first=228 second=8220 amount=-1 -kerning first=357 second=227 amount=-1 -kerning first=952 second=117 amount=-1 -kerning first=117 second=89 amount=-5 -kerning first=1223 second=269 amount=-1 -kerning first=374 second=1187 amount=-3 -kerning first=971 second=973 amount=-1 -kerning first=170 second=251 amount=-1 -kerning first=52 second=263 amount=-1 -kerning first=301 second=8221 amount=-3 -kerning first=304 second=1066 amount=-5 -kerning first=912 second=370 amount=-2 -kerning first=98 second=102 amount=-1 -kerning first=1175 second=283 amount=-1 -kerning first=238 second=252 amount=-1 -kerning first=956 second=67 amount=-2 -kerning first=121 second=39 amount=-3 -kerning first=8226 second=271 amount=-1 -kerning first=56 second=213 amount=-2 -kerning first=1067 second=371 amount=-1 -kerning first=1064 second=1195 amount=-1 -kerning first=314 second=253 amount=-1 -kerning first=76 second=355 amount=-1 -kerning first=958 second=242 amount=-1 -kerning first=1263 second=372 amount=-5 -kerning first=382 second=945 amount=-1 -kerning first=1027 second=1262 amount=-2 -kerning first=37 second=226 amount=-1 -kerning first=176 second=356 amount=-5 -kerning first=179 second=116 amount=-1 -kerning first=57 second=368 amount=-2 -kerning first=197 second=972 amount=-1 -kerning first=200 second=281 amount=-1 -kerning first=8365 second=121 amount=-1 -kerning first=83 second=65 amount=-1 -kerning first=1103 second=243 amount=-1 -kerning first=103 second=227 amount=-1 -kerning first=123 second=369 amount=-1 -kerning first=296 second=216 amount=-2 -kerning first=8260 second=374 amount=-5 -kerning first=58 second=1066 amount=-5 -kerning first=55 second=8221 amount=-3 -kerning first=204 second=228 amount=-1 -kerning first=324 second=118 amount=-1 -kerning first=8372 second=71 amount=-2 -kerning first=81 second=916 amount=-2 -kerning first=84 second=240 amount=-3 -kerning first=221 second=1194 amount=-3 -kerning first=345 second=283 amount=-1 -kerning first=250 second=67 amount=-2 -kerning first=163 second=79 amount=-2 -kerning first=273 second=229 amount=-1 -kerning first=1039 second=963 amount=-1 -kerning first=182 second=920 amount=-2 -kerning first=1046 second=271 amount=-2 -kerning first=297 second=371 amount=-1 -kerning first=294 second=1195 amount=-1 -kerning first=65 second=253 amount=-1 -kerning first=202 second=1257 amount=-1 -kerning first=903 second=218 amount=-2 -kerning first=942 second=360 amount=-2 -kerning first=1203 second=273 amount=-1 -kerning first=1210 second=45 amount=-2 -kerning first=251 second=242 amount=-1 -kerning first=371 second=372 amount=-5 -kerning first=968 second=287 amount=-1 -kerning first=161 second=945 amount=-1 -kerning first=274 second=1240 amount=-2 -kerning first=8217 second=97 amount=-1 -kerning first=46 second=268 amount=-1 -kerning first=1051 second=219 amount=-2 -kerning first=298 second=1069 amount=-1 -kerning first=304 second=81 amount=-2 -kerning first=1079 second=1175 amount=-1 -kerning first=1083 second=361 amount=-1 -kerning first=1087 second=121 amount=-1 -kerning first=330 second=243 amount=-1 -kerning first=904 second=373 amount=-4 -kerning first=86 second=1102 amount=-2 -kerning first=89 second=343 amount=-3 -kerning first=1119 second=288 amount=-2 -kerning first=1219 second=220 amount=-2 -kerning first=278 second=332 amount=-2 -kerning first=50 second=216 amount=-2 -kerning first=193 second=106 amount=1 -kerning first=73 second=118 amount=-4 -kerning first=1096 second=71 amount=-2 -kerning first=334 second=193 amount=-2 -kerning first=915 second=83 amount=-1 -kerning first=93 second=283 amount=-1 -kerning first=1171 second=233 amount=-1 -kerning first=356 second=333 amount=-3 -kerning first=951 second=245 amount=-1 -kerning first=1220 second=375 amount=-1 +kerning first=376 second=216 amount=-3 +kerning first=376 second=224 amount=-4 +kerning first=376 second=225 amount=-4 +kerning first=376 second=226 amount=-4 +kerning first=376 second=227 amount=-4 +kerning first=376 second=228 amount=-4 +kerning first=376 second=229 amount=-4 +kerning first=376 second=230 amount=-4 +kerning first=376 second=231 amount=-4 +kerning first=376 second=232 amount=-4 +kerning first=376 second=233 amount=-4 +kerning first=376 second=234 amount=-4 +kerning first=376 second=235 amount=-4 +kerning first=376 second=240 amount=-4 +kerning first=376 second=241 amount=-3 +kerning first=376 second=242 amount=-4 +kerning first=376 second=243 amount=-4 +kerning first=376 second=244 amount=-4 +kerning first=376 second=245 amount=-4 +kerning first=376 second=246 amount=-4 +kerning first=376 second=248 amount=-4 +kerning first=376 second=249 amount=-2 +kerning first=376 second=250 amount=-2 +kerning first=376 second=251 amount=-2 +kerning first=376 second=252 amount=-2 +kerning first=376 second=253 amount=-2 +kerning first=376 second=256 amount=-5 +kerning first=376 second=257 amount=-4 +kerning first=376 second=258 amount=-5 +kerning first=376 second=259 amount=-4 +kerning first=376 second=260 amount=-5 +kerning first=376 second=261 amount=-4 +kerning first=376 second=262 amount=-3 +kerning first=376 second=263 amount=-4 +kerning first=376 second=266 amount=-3 +kerning first=376 second=267 amount=-4 +kerning first=376 second=268 amount=-3 +kerning first=376 second=269 amount=-4 +kerning first=376 second=271 amount=-4 +kerning first=376 second=273 amount=-4 +kerning first=376 second=275 amount=-4 +kerning first=376 second=277 amount=-4 +kerning first=376 second=279 amount=-4 +kerning first=376 second=281 amount=-4 +kerning first=376 second=283 amount=-4 +kerning first=376 second=286 amount=-3 +kerning first=376 second=287 amount=-4 +kerning first=376 second=288 amount=-3 +kerning first=376 second=289 amount=-4 +kerning first=376 second=290 amount=-3 +kerning first=376 second=291 amount=-4 +kerning first=376 second=324 amount=-3 +kerning first=376 second=326 amount=-3 +kerning first=376 second=328 amount=-3 +kerning first=376 second=331 amount=-3 +kerning first=376 second=332 amount=-3 +kerning first=376 second=333 amount=-4 +kerning first=376 second=334 amount=-3 +kerning first=376 second=335 amount=-4 +kerning first=376 second=336 amount=-3 +kerning first=376 second=337 amount=-4 +kerning first=376 second=338 amount=-3 +kerning first=376 second=339 amount=-4 +kerning first=376 second=341 amount=-3 +kerning first=376 second=343 amount=-3 +kerning first=376 second=345 amount=-3 +kerning first=376 second=346 amount=-1 +kerning first=376 second=347 amount=-3 +kerning first=376 second=350 amount=-1 +kerning first=376 second=351 amount=-3 +kerning first=376 second=352 amount=-1 +kerning first=376 second=353 amount=-3 +kerning first=376 second=361 amount=-2 +kerning first=376 second=363 amount=-2 +kerning first=376 second=365 amount=-2 +kerning first=376 second=367 amount=-2 +kerning first=376 second=369 amount=-2 +kerning first=376 second=371 amount=-2 +kerning first=376 second=373 amount=-2 +kerning first=376 second=375 amount=-2 +kerning first=376 second=378 amount=-2 +kerning first=376 second=380 amount=-2 +kerning first=376 second=382 amount=-2 +kerning first=376 second=913 amount=-5 +kerning first=376 second=916 amount=-5 +kerning first=376 second=920 amount=-3 +kerning first=376 second=923 amount=-5 +kerning first=376 second=927 amount=-3 +kerning first=376 second=937 amount=-2 +kerning first=376 second=940 amount=-4 +kerning first=376 second=941 amount=-4 +kerning first=376 second=942 amount=-3 +kerning first=376 second=943 amount=-2 +kerning first=376 second=945 amount=-4 +kerning first=376 second=947 amount=-2 kerning first=376 second=949 amount=-4 -kerning first=169 second=359 amount=-1 -kerning first=172 second=119 amount=-4 -kerning first=282 second=271 amount=-1 -kerning first=48 second=1195 amount=-1 -kerning first=51 second=371 amount=-1 -kerning first=1068 second=84 amount=-5 -kerning first=191 second=1026 amount=-5 -kerning first=194 second=286 amount=-2 -kerning first=1097 second=246 amount=-1 -kerning first=911 second=950 amount=-1 -kerning first=237 second=360 amount=-2 -kerning first=357 second=964 amount=-3 -kerning first=363 second=45 amount=-2 -kerning first=117 second=372 amount=-5 -kerning first=1210 second=8249 amount=-3 -kerning first=1298 second=85 amount=-2 -kerning first=260 second=287 amount=-1 -kerning first=1035 second=97 amount=-1 -kerning first=52 second=1069 amount=-1 -kerning first=58 second=81 amount=-2 -kerning first=1073 second=34 amount=-3 -kerning first=198 second=231 amount=-1 -kerning first=313 second=361 amount=-1 -kerning first=316 second=121 amount=-1 -kerning first=78 second=243 amount=-1 -kerning first=95 second=1263 amount=-1 -kerning first=1175 second=1095 amount=-2 -kerning first=1178 second=336 amount=-1 -kerning first=956 second=350 amount=-1 -kerning first=36 second=332 amount=-2 -kerning first=1036 second=275 amount=-2 -kerning first=178 second=244 amount=-1 -kerning first=289 second=374 amount=-5 -kerning first=322 second=71 amount=-2 -kerning first=8364 second=249 amount=-1 -kerning first=8361 second=940 amount=-1 -kerning first=1107 second=111 amount=-1 -kerning first=216 second=8230 amount=-1 -kerning first=343 second=233 amount=-1 -kerning first=923 second=1177 amount=-1 -kerning first=931 second=363 amount=-1 -kerning first=102 second=333 amount=-1 -kerning first=365 second=375 amount=-1 -kerning first=962 second=290 amount=-2 -kerning first=122 second=949 amount=-1 -kerning first=125 second=257 amount=-1 -kerning first=37 second=963 amount=-1 -kerning first=40 second=271 amount=-1 -kerning first=298 second=84 amount=-5 -kerning first=200 second=1090 amount=-3 -kerning first=203 second=334 amount=-2 -kerning first=323 second=246 amount=-1 -kerning first=8370 second=199 amount=-2 -kerning first=1103 second=1035 amount=-5 -kerning first=926 second=8212 amount=-2 -kerning first=934 second=1059 amount=-2 -kerning first=103 second=964 amount=-3 -kerning first=363 second=8249 amount=-3 -kerning first=271 second=335 amount=-1 -kerning first=8212 second=50 amount=-2 -kerning first=44 second=219 amount=-1 -kerning first=180 second=1108 amount=-1 -kerning first=184 second=347 amount=-1 -kerning first=299 second=259 amount=-1 -kerning first=302 second=34 amount=-3 -kerning first=1073 second=8216 amount=-3 -kerning first=64 second=361 amount=-1 -kerning first=204 second=965 amount=-1 -kerning first=210 second=46 amount=-1 -kerning first=8372 second=354 amount=-5 -kerning first=8366 second=1118 amount=-1 -kerning first=84 second=1028 amount=-1 -kerning first=87 second=288 amount=-2 -kerning first=944 second=248 amount=-1 -kerning first=250 second=350 amount=-1 -kerning first=160 second=1176 amount=-1 -kerning first=163 second=362 amount=-2 -kerning first=273 second=966 amount=-1 -kerning first=279 second=47 amount=-1 -kerning first=276 second=275 amount=-1 -kerning first=8216 second=225 amount=-1 -kerning first=45 second=374 amount=-4 -kerning first=188 second=289 amount=-1 -kerning first=1081 second=940 amount=-1 -kerning first=1085 second=249 amount=-1 -kerning first=211 second=221 amount=-3 -kerning first=906 second=261 amount=-1 -kerning first=903 second=953 amount=-1 -kerning first=91 second=233 amount=-1 -kerning first=254 second=290 amount=-2 -kerning first=377 second=210 amount=-1 -kerning first=971 second=338 amount=-2 -kerning first=161 second=8211 amount=-2 -kerning first=52 second=84 amount=-5 -kerning first=1063 second=262 amount=-2 -kerning first=192 second=234 amount=-1 -kerning first=304 second=364 amount=-2 -kerning first=72 second=246 amount=-1 -kerning first=1095 second=199 amount=-2 -kerning first=212 second=376 amount=-3 -kerning first=330 second=1035 amount=-5 -kerning first=912 second=211 amount=-2 -kerning first=1119 second=1098 amount=-3 -kerning first=1170 second=339 amount=-1 -kerning first=1175 second=101 amount=-1 -kerning first=950 second=353 amount=-1 -kerning first=1224 second=263 amount=-1 -kerning first=258 second=235 amount=-1 -kerning first=53 second=259 amount=-1 -kerning first=56 second=34 amount=-3 -kerning first=1067 second=212 amount=-2 -kerning first=302 second=8216 amount=-3 -kerning first=1096 second=354 amount=-5 -kerning first=915 second=366 amount=-2 -kerning first=96 second=336 amount=-2 -kerning first=1171 second=970 amount=-1 -kerning first=1176 second=279 amount=-1 -kerning first=239 second=248 amount=-1 -kerning first=1263 second=213 amount=-2 -kerning first=34 second=275 amount=-1 -kerning first=290 second=87 amount=-1 -kerning first=1065 second=1185 amount=-2 -kerning first=197 second=337 amount=-1 -kerning first=200 second=99 amount=-1 -kerning first=311 second=940 amount=-2 -kerning first=315 second=249 amount=-1 -kerning first=77 second=351 amount=-1 -kerning first=80 second=111 amount=-1 -kerning first=1184 second=226 amount=-1 -kerning first=123 second=210 amount=-2 -kerning first=1298 second=368 amount=-2 -kerning first=177 second=352 amount=-1 -kerning first=291 second=262 amount=-2 -kerning first=58 second=364 amount=-2 -kerning first=1066 second=8220 amount=-2 -kerning first=198 second=968 amount=-1 -kerning first=201 second=277 amount=-1 -kerning first=321 second=199 amount=-2 -kerning first=8363 second=357 amount=-1 -kerning first=8366 second=117 amount=-1 -kerning first=78 second=1035 amount=-5 -kerning first=339 second=1098 amount=-1 -kerning first=345 second=101 amount=-1 -kerning first=936 second=251 amount=-1 -kerning first=247 second=113 amount=-1 -kerning first=367 second=263 amount=-1 -kerning first=124 second=365 amount=-1 -kerning first=1299 second=1066 amount=-5 -kerning first=297 second=212 amount=-2 -kerning first=56 second=8216 amount=-3 -kerning first=65 second=74 amount=-1 -kerning first=1074 second=943 amount=-1 -kerning first=205 second=224 amount=-1 -kerning first=317 second=1118 amount=-1 -kerning first=322 second=354 amount=-5 -kerning first=900 second=266 amount=-2 -kerning first=903 second=39 amount=-3 -kerning first=222 second=1184 amount=-2 -kerning first=108 second=171 amount=-3 -kerning first=371 second=213 amount=-2 -kerning first=968 second=103 amount=-1 -kerning first=274 second=225 amount=-1 -kerning first=46 second=87 amount=-3 -kerning first=295 second=1185 amount=-1 -kerning first=298 second=367 amount=-1 -kerning first=63 second=940 amount=-1 -kerning first=323 second=1038 amount=-2 -kerning first=8377 second=242 amount=-1 -kerning first=904 second=214 amount=-2 -kerning first=946 second=116 amount=-1 -kerning first=1206 second=268 amount=-1 -kerning first=165 second=250 amount=-1 -kerning first=162 second=941 amount=-1 -kerning first=275 second=380 amount=-1 -kerning first=47 second=262 amount=-2 -kerning first=190 second=187 amount=-1 -kerning first=296 second=8220 amount=-3 -kerning first=70 second=199 amount=-1 -kerning first=1084 second=357 amount=-1 -kerning first=207 second=1079 amount=-1 -kerning first=213 second=89 amount=-3 -kerning first=905 second=369 amount=-1 -kerning first=90 second=339 amount=-1 -kerning first=93 second=101 amount=-1 -kerning first=1117 second=973 amount=-1 -kerning first=113 second=263 amount=-1 -kerning first=1220 second=216 amount=-2 -kerning first=973 second=228 amount=-1 -kerning first=8216 second=962 amount=-1 -kerning first=51 second=212 amount=-2 -kerning first=1049 second=1194 amount=-2 -kerning first=1062 second=370 amount=-1 -kerning first=194 second=102 amount=-2 -kerning first=303 second=943 amount=-1 -kerning first=306 second=252 amount=-1 -kerning first=71 second=354 amount=-1 -kerning first=214 second=266 amount=-2 -kerning first=916 second=79 amount=-2 -kerning first=94 second=279 amount=-1 -kerning first=91 second=970 amount=-1 -kerning first=354 second=1081 amount=-2 -kerning first=117 second=213 amount=-2 -kerning first=1210 second=1195 amount=-1 -kerning first=1223 second=371 amount=-1 -kerning first=260 second=103 amount=-1 -kerning first=971 second=1257 amount=-1 -kerning first=170 second=355 amount=-1 -kerning first=174 second=115 amount=-1 -kerning first=8225 second=218 amount=-2 -kerning first=52 second=367 amount=-1 -kerning first=49 second=1185 amount=-3 -kerning first=72 second=1038 amount=-2 -kerning first=912 second=945 amount=-1 -kerning first=1170 second=1262 amount=-2 -kerning first=238 second=356 amount=-5 -kerning first=361 second=268 amount=-2 -kerning first=1224 second=1069 amount=-1 -kerning first=1299 second=81 amount=-2 -kerning first=258 second=972 amount=-1 -kerning first=8226 second=373 amount=-4 -kerning first=50 second=8220 amount=-3 -kerning first=317 second=117 amount=-1 -kerning first=314 second=357 amount=-1 -kerning first=365 second=216 amount=-2 -kerning first=962 second=106 amount=1 -kerning first=179 second=240 amount=-1 -kerning first=287 second=1194 amount=-2 -kerning first=57 second=943 amount=-1 -kerning first=60 second=252 amount=-1 -kerning first=197 second=1256 amount=-2 -kerning first=323 second=67 amount=-2 -kerning first=8365 second=245 amount=-1 -kerning first=217 second=8222 amount=-1 -kerning first=934 second=359 amount=-1 -kerning first=940 second=119 amount=-2 -kerning first=1184 second=963 amount=-2 -kerning first=947 second=44 amount=-2 -kerning first=1187 second=271 amount=-1 -kerning first=363 second=1195 amount=-1 -kerning first=960 second=1026 amount=-5 -kerning first=963 second=286 amount=-2 -kerning first=126 second=253 amount=-1 -kerning first=41 second=267 amount=-1 -kerning first=1044 second=218 amount=-1 -kerning first=1202 second=219 amount=-1 -kerning first=367 second=1069 amount=-1 -kerning first=967 second=231 amount=-1 -kerning first=8216 second=46 amount=-1 -kerning first=1046 second=373 amount=-3 -kerning first=65 second=357 amount=-1 -kerning first=1118 second=232 amount=-1 -kerning first=1195 second=1203 amount=-1 -kerning first=254 second=106 amount=1 -kerning first=374 second=256 amount=-5 -kerning first=167 second=118 amount=-4 -kerning first=274 second=962 amount=-1 -kerning first=43 second=1194 amount=-2 -kerning first=46 second=370 amount=-1 -kerning first=1063 second=83 amount=-1 -kerning first=189 second=283 amount=-1 -kerning first=72 second=67 amount=-2 -kerning first=1087 second=245 amount=-1 -kerning first=904 second=949 amount=-1 -kerning first=92 second=229 amount=-1 -kerning first=235 second=119 amount=-1 -kerning first=1224 second=84 amount=-5 -kerning first=252 second=1026 amount=-5 -kerning first=255 second=286 amount=-2 -kerning first=8218 second=376 amount=-4 -kerning first=193 second=230 amount=-1 -kerning first=305 second=360 amount=-2 -kerning first=70 second=923 amount=-4 -kerning first=73 second=242 amount=-1 -kerning first=213 second=372 amount=-2 -kerning first=93 second=1240 amount=-2 -kerning first=1171 second=335 amount=-1 -kerning first=1176 second=97 amount=-1 -kerning first=948 second=1108 amount=-1 -kerning first=951 second=347 amount=-1 -kerning first=113 second=1069 amount=-1 -kerning first=1263 second=34 amount=-3 +kerning first=376 second=950 amount=-2 +kerning first=376 second=951 amount=-3 +kerning first=376 second=952 amount=-2 +kerning first=376 second=953 amount=-2 +kerning first=376 second=954 amount=-3 +kerning first=376 second=955 amount=-2 +kerning first=376 second=957 amount=-2 +kerning first=376 second=959 amount=-4 +kerning first=376 second=961 amount=-5 +kerning first=376 second=962 amount=-4 +kerning first=376 second=963 amount=-4 +kerning first=376 second=964 amount=-2 +kerning first=376 second=965 amount=-2 +kerning first=376 second=966 amount=-4 +kerning first=376 second=967 amount=-2 +kerning first=376 second=968 amount=-2 +kerning first=376 second=969 amount=-4 +kerning first=376 second=970 amount=-2 +kerning first=376 second=972 amount=-4 +kerning first=376 second=973 amount=-2 +kerning first=376 second=974 amount=-4 +kerning first=376 second=1028 amount=-3 +kerning first=376 second=1029 amount=-1 +kerning first=376 second=1032 amount=-6 +kerning first=376 second=1033 amount=-5 +kerning first=376 second=1040 amount=-5 +kerning first=376 second=1044 amount=-5 +kerning first=376 second=1051 amount=-5 +kerning first=376 second=1054 amount=-3 +kerning first=376 second=1057 amount=-3 +kerning first=376 second=1069 amount=-2 +kerning first=376 second=1071 amount=-2 +kerning first=376 second=1072 amount=-4 +kerning first=376 second=1074 amount=-3 +kerning first=376 second=1075 amount=-3 +kerning first=376 second=1077 amount=-4 +kerning first=376 second=1078 amount=-2 +kerning first=376 second=1079 amount=-4 +kerning first=376 second=1080 amount=-3 +kerning first=376 second=1081 amount=-3 +kerning first=376 second=1082 amount=-3 +kerning first=376 second=1084 amount=-3 +kerning first=376 second=1085 amount=-3 +kerning first=376 second=1086 amount=-4 +kerning first=376 second=1087 amount=-3 +kerning first=376 second=1088 amount=-3 +kerning first=376 second=1089 amount=-4 +kerning first=376 second=1090 amount=-2 +kerning first=376 second=1091 amount=-2 +kerning first=376 second=1092 amount=-4 +kerning first=376 second=1093 amount=-2 +kerning first=376 second=1094 amount=-3 +kerning first=376 second=1096 amount=-3 +kerning first=376 second=1097 amount=-3 +kerning first=376 second=1098 amount=-2 +kerning first=376 second=1099 amount=-3 +kerning first=376 second=1100 amount=-3 +kerning first=376 second=1101 amount=-4 +kerning first=376 second=1102 amount=-3 +kerning first=376 second=1104 amount=-4 +kerning first=376 second=1105 amount=-4 +kerning first=376 second=1107 amount=-3 +kerning first=376 second=1108 amount=-4 +kerning first=376 second=1109 amount=-3 +kerning first=376 second=1114 amount=-3 +kerning first=376 second=1116 amount=-3 +kerning first=376 second=1117 amount=-3 +kerning first=376 second=1118 amount=-2 +kerning first=376 second=1119 amount=-3 +kerning first=376 second=1169 amount=-3 kerning first=376 second=1175 amount=-2 -kerning first=973 second=965 amount=-1 -kerning first=172 second=243 amount=-1 -kerning first=282 second=373 amount=-4 -kerning first=8230 second=86 amount=-4 -kerning first=191 second=1263 amount=-1 -kerning first=338 second=232 amount=-1 -kerning first=916 second=362 amount=-2 -kerning first=1174 second=966 amount=-1 -kerning first=240 second=244 amount=-1 -kerning first=955 second=289 amount=-1 -kerning first=1035 second=221 amount=-5 -kerning first=291 second=83 amount=-1 -kerning first=8240 second=261 amount=-1 -kerning first=8225 second=953 amount=-1 -kerning first=198 second=333 amount=-1 -kerning first=316 second=245 amount=-1 -kerning first=221 second=257 amount=-4 -kerning first=912 second=8211 amount=-2 -kerning first=920 second=1051 amount=-1 -kerning first=367 second=84 amount=-5 -kerning first=1299 second=364 amount=-2 -kerning first=261 second=1090 amount=-1 -kerning first=178 second=346 amount=-1 -kerning first=59 second=360 amount=-2 -kerning first=1067 second=8212 amount=-2 -kerning first=205 second=45 amount=-2 -kerning first=202 second=273 amount=-1 -kerning first=8369 second=113 amount=-1 -kerning first=8364 second=353 amount=-1 -kerning first=900 second=85 amount=-2 -kerning first=1107 second=235 amount=-1 -kerning first=343 second=335 amount=-1 -kerning first=105 second=219 amount=-2 -kerning first=371 second=34 amount=-3 -kerning first=125 second=361 amount=-1 -kerning first=1263 second=8216 amount=-3 -kerning first=161 second=121 amount=-1 -kerning first=40 second=373 amount=-4 -kerning first=1047 second=86 amount=-1 -kerning first=179 second=1028 amount=-2 -kerning first=183 second=288 amount=-2 -kerning first=8250 second=1184 amount=-3 -kerning first=206 second=220 amount=-2 -kerning first=323 second=350 amount=-1 -kerning first=86 second=232 amount=-3 -kerning first=223 second=1176 amount=-1 -kerning first=249 second=289 amount=-1 -kerning first=165 second=71 amount=-2 -kerning first=47 second=83 amount=-1 -kerning first=1048 second=261 amount=-1 -kerning first=299 second=363 amount=-1 -kerning first=296 second=1177 amount=-1 -kerning first=207 second=375 amount=-1 -kerning first=327 second=290 amount=-2 -kerning first=905 second=210 amount=-2 -kerning first=1117 second=338 amount=-2 -kerning first=1168 second=100 amount=-1 -kerning first=944 second=352 amount=-1 -kerning first=113 second=84 amount=-5 -kerning first=253 second=234 amount=-1 -kerning first=967 second=968 amount=-1 -kerning first=166 second=246 amount=-1 -kerning first=276 second=376 amount=-5 -kerning first=1062 second=211 amount=-1 -kerning first=300 second=1059 amount=-2 -kerning first=297 second=8212 amount=-2 -kerning first=1085 second=353 amount=-1 -kerning first=205 second=8249 amount=-3 -kerning first=214 second=85 amount=-2 -kerning first=1094 second=113 amount=-1 -kerning first=906 second=365 amount=-1 -kerning first=91 second=335 amount=-1 -kerning first=94 second=97 amount=-1 -kerning first=117 second=34 amount=-3 -kerning first=114 second=259 amount=-1 -kerning first=1223 second=212 amount=-2 -kerning first=371 second=8216 amount=-3 -kerning first=274 second=8250 amount=-1 -kerning first=8225 second=39 amount=-3 -kerning first=1051 second=1184 amount=-5 -kerning first=1063 second=366 amount=-2 -kerning first=192 second=336 amount=-2 -kerning first=72 second=350 amount=-1 -kerning first=904 second=8217 amount=-3 -kerning first=92 second=966 amount=-1 -kerning first=98 second=47 amount=-1 -kerning first=95 second=275 amount=-1 -kerning first=361 second=87 amount=-5 -kerning first=1219 second=1185 amount=-3 -kerning first=1224 second=367 amount=-1 -kerning first=258 second=337 amount=-1 +kerning first=376 second=1176 amount=-2 +kerning first=376 second=1177 amount=-4 +kerning first=376 second=1179 amount=-3 +kerning first=376 second=1185 amount=-2 +kerning first=376 second=1187 amount=-3 +kerning first=376 second=1194 amount=-3 +kerning first=376 second=1195 amount=-4 +kerning first=376 second=1199 amount=-2 +kerning first=376 second=1203 amount=-2 +kerning first=376 second=1220 amount=-3 +kerning first=376 second=1224 amount=-3 +kerning first=376 second=1240 amount=-3 +kerning first=376 second=1241 amount=-4 +kerning first=376 second=1256 amount=-3 +kerning first=376 second=1257 amount=-4 +kerning first=376 second=1263 amount=-2 +kerning first=376 second=1298 amount=-5 +kerning first=376 second=8211 amount=-4 +kerning first=376 second=8212 amount=-4 +kerning first=376 second=8218 amount=-4 +kerning first=376 second=8222 amount=-4 +kerning first=376 second=8230 amount=-4 +kerning first=376 second=8249 amount=-3 +kerning first=376 second=8250 amount=-2 +kerning first=377 second=45 amount=-3 +kerning first=377 second=67 amount=-1 +kerning first=377 second=71 amount=-1 +kerning first=377 second=79 amount=-1 +kerning first=377 second=81 amount=-1 +kerning first=377 second=90 amount=1 +kerning first=377 second=99 amount=-1 +kerning first=377 second=100 amount=-1 +kerning first=377 second=101 amount=-1 +kerning first=377 second=111 amount=-1 +kerning first=377 second=113 amount=-1 +kerning first=377 second=173 amount=-3 +kerning first=377 second=199 amount=-1 +kerning first=377 second=210 amount=-1 +kerning first=377 second=211 amount=-1 +kerning first=377 second=212 amount=-1 +kerning first=377 second=213 amount=-1 +kerning first=377 second=214 amount=-1 +kerning first=377 second=216 amount=-1 +kerning first=377 second=231 amount=-1 +kerning first=377 second=232 amount=-1 +kerning first=377 second=233 amount=-1 +kerning first=377 second=234 amount=-1 +kerning first=377 second=235 amount=-1 +kerning first=377 second=240 amount=-1 +kerning first=377 second=242 amount=-1 +kerning first=377 second=243 amount=-1 +kerning first=377 second=244 amount=-1 +kerning first=377 second=245 amount=-1 +kerning first=377 second=246 amount=-1 +kerning first=377 second=248 amount=-1 +kerning first=377 second=262 amount=-1 +kerning first=377 second=263 amount=-1 +kerning first=377 second=266 amount=-1 +kerning first=377 second=267 amount=-1 +kerning first=377 second=268 amount=-1 +kerning first=377 second=269 amount=-1 +kerning first=377 second=271 amount=-1 +kerning first=377 second=273 amount=-1 +kerning first=377 second=275 amount=-1 +kerning first=377 second=277 amount=-1 +kerning first=377 second=279 amount=-1 +kerning first=377 second=281 amount=-1 +kerning first=377 second=283 amount=-1 +kerning first=377 second=286 amount=-1 +kerning first=377 second=288 amount=-1 +kerning first=377 second=290 amount=-1 +kerning first=377 second=332 amount=-1 +kerning first=377 second=333 amount=-1 +kerning first=377 second=334 amount=-1 +kerning first=377 second=335 amount=-1 +kerning first=377 second=336 amount=-1 +kerning first=377 second=337 amount=-1 +kerning first=377 second=338 amount=-1 +kerning first=377 second=339 amount=-1 +kerning first=377 second=377 amount=1 +kerning first=377 second=379 amount=1 +kerning first=377 second=381 amount=1 +kerning first=377 second=918 amount=1 +kerning first=377 second=920 amount=-1 +kerning first=377 second=927 amount=-1 +kerning first=377 second=940 amount=-1 +kerning first=377 second=941 amount=-1 +kerning first=377 second=945 amount=-1 +kerning first=377 second=949 amount=-1 +kerning first=377 second=959 amount=-1 +kerning first=377 second=962 amount=-1 +kerning first=377 second=963 amount=-1 +kerning first=377 second=966 amount=-1 +kerning first=377 second=972 amount=-1 +kerning first=377 second=1028 amount=-1 +kerning first=377 second=1054 amount=-1 +kerning first=377 second=1057 amount=-1 +kerning first=377 second=1077 amount=-1 +kerning first=377 second=1086 amount=-1 +kerning first=377 second=1089 amount=-1 +kerning first=377 second=1092 amount=-1 +kerning first=377 second=1104 amount=-1 +kerning first=377 second=1105 amount=-1 +kerning first=377 second=1108 amount=-1 +kerning first=377 second=1194 amount=-1 +kerning first=377 second=1195 amount=-1 +kerning first=377 second=1240 amount=-1 +kerning first=377 second=1241 amount=-1 +kerning first=377 second=1256 amount=-1 +kerning first=377 second=1257 amount=-1 +kerning first=377 second=8211 amount=-3 +kerning first=377 second=8212 amount=-3 +kerning first=378 second=99 amount=-1 +kerning first=378 second=100 amount=-1 +kerning first=378 second=101 amount=-1 +kerning first=378 second=111 amount=-1 +kerning first=378 second=113 amount=-1 +kerning first=378 second=231 amount=-1 +kerning first=378 second=232 amount=-1 +kerning first=378 second=233 amount=-1 +kerning first=378 second=234 amount=-1 +kerning first=378 second=235 amount=-1 +kerning first=378 second=240 amount=-1 +kerning first=378 second=242 amount=-1 +kerning first=378 second=243 amount=-1 +kerning first=378 second=244 amount=-1 +kerning first=378 second=245 amount=-1 +kerning first=378 second=246 amount=-1 +kerning first=378 second=248 amount=-1 +kerning first=378 second=263 amount=-1 +kerning first=378 second=267 amount=-1 +kerning first=378 second=269 amount=-1 +kerning first=378 second=271 amount=-1 +kerning first=378 second=273 amount=-1 +kerning first=378 second=275 amount=-1 +kerning first=378 second=277 amount=-1 +kerning first=378 second=279 amount=-1 +kerning first=378 second=281 amount=-1 +kerning first=378 second=283 amount=-1 +kerning first=378 second=333 amount=-1 +kerning first=378 second=335 amount=-1 +kerning first=378 second=337 amount=-1 +kerning first=378 second=339 amount=-1 kerning first=378 second=940 amount=-1 -kerning first=175 second=111 amount=-1 -kerning first=8226 second=214 amount=-2 -kerning first=53 second=363 amount=-1 -kerning first=50 second=1177 amount=-1 -kerning first=1059 second=8218 amount=-1 -kerning first=8361 second=116 amount=-1 -kerning first=76 second=290 amount=-1 -kerning first=923 second=250 amount=-1 -kerning first=915 second=941 amount=-1 -kerning first=239 second=352 amount=-1 -kerning first=958 second=187 amount=-1 -kerning first=954 second=1241 amount=-2 -kerning first=1220 second=8220 amount=-3 -kerning first=1027 second=1079 amount=-1 -kerning first=172 second=1035 amount=-5 -kerning first=176 second=291 amount=-1 -kerning first=1037 second=89 amount=-5 -kerning first=8230 second=369 amount=-1 -kerning first=51 second=8212 amount=-2 -kerning first=54 second=1059 amount=-2 -kerning first=1071 second=251 amount=-1 -kerning first=318 second=113 amount=-1 -kerning first=80 second=235 amount=-1 -kerning first=117 second=8216 amount=-3 -kerning first=1298 second=943 amount=-1 -kerning first=1044 second=39 amount=-2 -kerning first=288 second=1184 amount=-1 -kerning first=291 second=366 amount=-2 -kerning first=61 second=248 amount=-1 -kerning first=204 second=171 amount=-3 -kerning first=324 second=63 amount=-2 -kerning first=8363 second=920 amount=-2 -kerning first=345 second=225 amount=-1 -kerning first=936 second=355 amount=-1 -kerning first=101 second=1076 amount=-1 -kerning first=367 second=367 amount=-1 -kerning first=160 second=249 amount=-1 -kerning first=124 second=940 amount=-1 -kerning first=42 second=261 amount=-1 -kerning first=1046 second=214 amount=-3 -kerning first=1081 second=116 amount=-1 -kerning first=208 second=88 amount=-3 -kerning first=900 second=368 amount=-2 -kerning first=88 second=100 amount=-2 -kerning first=1107 second=972 amount=-1 -kerning first=108 second=262 amount=-2 -kerning first=251 second=187 amount=-1 -kerning first=365 second=8220 amount=-3 -kerning first=968 second=227 amount=-1 -kerning first=164 second=199 amount=-2 -kerning first=46 second=211 amount=-1 -kerning first=183 second=1098 amount=-3 -kerning first=186 second=339 amount=-1 -kerning first=189 second=101 amount=-1 -kerning first=301 second=251 amount=-1 -kerning first=69 second=113 amount=-1 -kerning first=209 second=263 amount=-1 -kerning first=901 second=1066 amount=-5 -kerning first=1119 second=228 amount=-1 -kerning first=946 second=240 amount=-1 -kerning first=1206 second=370 amount=-1 -kerning first=375 second=252 amount=-1 -kerning first=162 second=1118 amount=-1 -kerning first=165 second=354 amount=-5 -kerning first=278 second=266 amount=-2 -kerning first=281 second=39 amount=-1 -kerning first=8218 second=217 amount=-1 -kerning first=47 second=366 amount=-2 -kerning first=44 second=1184 amount=-5 -kerning first=1064 second=79 amount=-2 -kerning first=190 second=279 amount=-1 -kerning first=1084 second=920 amount=-2 -kerning first=8378 second=1026 amount=-5 -kerning first=910 second=253 amount=-2 -kerning first=93 second=225 amount=-1 -kerning first=1117 second=1257 amount=-1 -kerning first=236 second=115 amount=-1 -kerning first=356 second=267 amount=-3 -kerning first=113 second=367 amount=-1 -kerning first=110 second=1185 amount=-1 -kerning first=166 second=1038 amount=-2 -kerning first=282 second=214 amount=-2 -kerning first=45 second=8218 amount=-1 -kerning first=1062 second=945 amount=-1 -kerning first=194 second=226 amount=-1 -kerning first=306 second=356 amount=-5 -kerning first=214 second=368 amount=-2 -kerning first=111 second=8220 amount=-1 -kerning first=260 second=227 amount=-1 -kerning first=35 second=89 amount=-5 -kerning first=55 second=251 amount=-1 -kerning first=215 second=1066 amount=-5 -kerning first=928 second=118 amount=-4 -kerning first=1175 second=962 amount=-1 -kerning first=358 second=1194 amount=-2 -kerning first=361 second=370 amount=-2 -kerning first=956 second=283 amount=-1 -kerning first=121 second=252 amount=-1 -kerning first=258 second=1256 amount=-2 -kerning first=36 second=266 amount=-2 -kerning first=281 second=8222 amount=-1 -kerning first=294 second=79 amount=-2 -kerning first=8226 second=949 amount=-1 -kerning first=1074 second=119 amount=-4 -kerning first=314 second=920 amount=-2 -kerning first=1099 second=1026 amount=-5 -kerning first=102 second=267 amount=-1 -kerning first=1186 second=218 amount=-1 -kerning first=962 second=230 amount=-1 -kerning first=40 second=214 amount=-2 -kerning first=1037 second=372 amount=-5 -kerning first=1034 second=947 amount=-1 -kerning first=176 second=1101 amount=-1 -kerning first=60 second=356 amount=-5 -kerning first=63 second=116 amount=-1 -kerning first=203 second=268 amount=-2 -kerning first=8365 second=347 amount=-1 -kerning first=901 second=81 amount=-2 -kerning first=80 second=972 amount=-1 -kerning first=960 second=1263 amount=-1 -kerning first=126 second=357 amount=-1 -kerning first=162 second=117 amount=-1 -kerning first=271 second=269 amount=-1 -kerning first=41 second=369 amount=-1 -kerning first=180 second=973 amount=-1 -kerning first=8260 second=1176 amount=-1 -kerning first=1080 second=244 amount=-1 -kerning first=207 second=216 amount=-2 -kerning first=327 second=106 amount=1 -kerning first=8372 second=289 amount=-1 -kerning first=87 second=228 amount=-2 -kerning first=230 second=118 amount=-1 -kerning first=345 second=962 amount=-1 -kerning first=250 second=283 amount=-1 -kerning first=967 second=333 amount=-1 -kerning first=166 second=67 amount=-2 -kerning first=276 second=217 amount=-2 -kerning first=39 second=8222 amount=-1 -kerning first=48 second=79 amount=-2 -kerning first=1049 second=257 amount=-1 -kerning first=1046 second=949 amount=-2 -kerning first=188 second=229 amount=-1 -kerning first=303 second=119 amount=-4 -kerning first=300 second=359 amount=-1 -kerning first=65 second=920 amount=-2 -kerning first=205 second=1195 amount=-1 -kerning first=325 second=1026 amount=-5 -kerning first=1118 second=334 amount=-2 -kerning first=254 second=230 amount=-1 -kerning first=971 second=273 amount=-1 -kerning first=167 second=242 amount=-1 -kerning first=968 second=964 amount=-3 -kerning first=274 second=947 amount=-4 -kerning first=189 second=1240 amount=-2 -kerning first=186 second=1262 amount=-2 -kerning first=1083 second=1108 amount=-1 -kerning first=1087 second=347 amount=-1 -kerning first=209 second=1069 amount=-1 -kerning first=215 second=81 amount=-2 -kerning first=912 second=121 amount=-1 -kerning first=89 second=1084 amount=-3 -kerning first=1119 second=965 amount=-1 -kerning first=352 second=1202 amount=-1 -kerning first=946 second=1028 amount=-2 -kerning first=950 second=288 amount=-2 -kerning first=252 second=1263 amount=-1 -kerning first=1026 second=220 amount=-2 -kerning first=1064 second=362 amount=-2 -kerning first=193 second=332 amount=-2 -kerning first=310 second=244 amount=-2 -kerning first=1096 second=289 amount=-1 -kerning first=216 second=256 amount=-2 -kerning first=923 second=71 amount=-2 -kerning first=93 second=962 amount=-1 -kerning first=1176 second=221 amount=-5 -kerning first=954 second=233 amount=-2 -kerning first=1220 second=1177 amount=-1 +kerning first=378 second=941 amount=-1 +kerning first=378 second=945 amount=-1 +kerning first=378 second=949 amount=-1 +kerning first=378 second=959 amount=-1 +kerning first=378 second=962 amount=-1 +kerning first=378 second=963 amount=-1 +kerning first=378 second=966 amount=-1 +kerning first=378 second=972 amount=-1 +kerning first=378 second=1077 amount=-1 +kerning first=378 second=1086 amount=-1 +kerning first=378 second=1089 amount=-1 +kerning first=378 second=1092 amount=-1 +kerning first=378 second=1104 amount=-1 +kerning first=378 second=1105 amount=-1 +kerning first=378 second=1108 amount=-1 +kerning first=378 second=1195 amount=-1 +kerning first=378 second=1241 amount=-1 +kerning first=378 second=1257 amount=-1 +kerning first=379 second=45 amount=-3 +kerning first=379 second=67 amount=-1 +kerning first=379 second=71 amount=-1 +kerning first=379 second=79 amount=-1 +kerning first=379 second=81 amount=-1 +kerning first=379 second=90 amount=1 +kerning first=379 second=99 amount=-1 +kerning first=379 second=100 amount=-1 +kerning first=379 second=101 amount=-1 +kerning first=379 second=111 amount=-1 +kerning first=379 second=113 amount=-1 +kerning first=379 second=173 amount=-3 +kerning first=379 second=199 amount=-1 +kerning first=379 second=210 amount=-1 +kerning first=379 second=211 amount=-1 +kerning first=379 second=212 amount=-1 +kerning first=379 second=213 amount=-1 +kerning first=379 second=214 amount=-1 +kerning first=379 second=216 amount=-1 +kerning first=379 second=231 amount=-1 +kerning first=379 second=232 amount=-1 +kerning first=379 second=233 amount=-1 +kerning first=379 second=234 amount=-1 +kerning first=379 second=235 amount=-1 +kerning first=379 second=240 amount=-1 +kerning first=379 second=242 amount=-1 +kerning first=379 second=243 amount=-1 +kerning first=379 second=244 amount=-1 +kerning first=379 second=245 amount=-1 +kerning first=379 second=246 amount=-1 +kerning first=379 second=248 amount=-1 +kerning first=379 second=262 amount=-1 +kerning first=379 second=263 amount=-1 +kerning first=379 second=266 amount=-1 +kerning first=379 second=267 amount=-1 +kerning first=379 second=268 amount=-1 +kerning first=379 second=269 amount=-1 +kerning first=379 second=271 amount=-1 +kerning first=379 second=273 amount=-1 +kerning first=379 second=275 amount=-1 +kerning first=379 second=277 amount=-1 +kerning first=379 second=279 amount=-1 +kerning first=379 second=281 amount=-1 +kerning first=379 second=283 amount=-1 +kerning first=379 second=286 amount=-1 +kerning first=379 second=288 amount=-1 +kerning first=379 second=290 amount=-1 +kerning first=379 second=332 amount=-1 +kerning first=379 second=333 amount=-1 +kerning first=379 second=334 amount=-1 +kerning first=379 second=335 amount=-1 +kerning first=379 second=336 amount=-1 +kerning first=379 second=337 amount=-1 +kerning first=379 second=338 amount=-1 +kerning first=379 second=339 amount=-1 +kerning first=379 second=377 amount=1 +kerning first=379 second=379 amount=1 +kerning first=379 second=381 amount=1 +kerning first=379 second=918 amount=1 +kerning first=379 second=920 amount=-1 +kerning first=379 second=927 amount=-1 +kerning first=379 second=940 amount=-1 +kerning first=379 second=941 amount=-1 +kerning first=379 second=945 amount=-1 +kerning first=379 second=949 amount=-1 +kerning first=379 second=959 amount=-1 +kerning first=379 second=962 amount=-1 +kerning first=379 second=963 amount=-1 +kerning first=379 second=966 amount=-1 +kerning first=379 second=972 amount=-1 +kerning first=379 second=1028 amount=-1 +kerning first=379 second=1054 amount=-1 +kerning first=379 second=1057 amount=-1 +kerning first=379 second=1077 amount=-1 +kerning first=379 second=1086 amount=-1 +kerning first=379 second=1089 amount=-1 +kerning first=379 second=1092 amount=-1 +kerning first=379 second=1104 amount=-1 +kerning first=379 second=1105 amount=-1 +kerning first=379 second=1108 amount=-1 +kerning first=379 second=1194 amount=-1 +kerning first=379 second=1195 amount=-1 +kerning first=379 second=1240 amount=-1 +kerning first=379 second=1241 amount=-1 +kerning first=379 second=1256 amount=-1 +kerning first=379 second=1257 amount=-1 +kerning first=379 second=8211 amount=-3 +kerning first=379 second=8212 amount=-3 +kerning first=380 second=99 amount=-1 +kerning first=380 second=100 amount=-1 +kerning first=380 second=101 amount=-1 +kerning first=380 second=111 amount=-1 +kerning first=380 second=113 amount=-1 +kerning first=380 second=231 amount=-1 +kerning first=380 second=232 amount=-1 +kerning first=380 second=233 amount=-1 +kerning first=380 second=234 amount=-1 +kerning first=380 second=235 amount=-1 +kerning first=380 second=240 amount=-1 +kerning first=380 second=242 amount=-1 +kerning first=380 second=243 amount=-1 +kerning first=380 second=244 amount=-1 +kerning first=380 second=245 amount=-1 +kerning first=380 second=246 amount=-1 +kerning first=380 second=248 amount=-1 +kerning first=380 second=263 amount=-1 +kerning first=380 second=267 amount=-1 +kerning first=380 second=269 amount=-1 +kerning first=380 second=271 amount=-1 +kerning first=380 second=273 amount=-1 +kerning first=380 second=275 amount=-1 +kerning first=380 second=277 amount=-1 +kerning first=380 second=279 amount=-1 +kerning first=380 second=281 amount=-1 +kerning first=380 second=283 amount=-1 +kerning first=380 second=333 amount=-1 +kerning first=380 second=335 amount=-1 +kerning first=380 second=337 amount=-1 +kerning first=380 second=339 amount=-1 +kerning first=380 second=940 amount=-1 +kerning first=380 second=941 amount=-1 +kerning first=380 second=945 amount=-1 +kerning first=380 second=949 amount=-1 +kerning first=380 second=959 amount=-1 +kerning first=380 second=962 amount=-1 +kerning first=380 second=963 amount=-1 +kerning first=380 second=966 amount=-1 +kerning first=380 second=972 amount=-1 +kerning first=380 second=1077 amount=-1 +kerning first=380 second=1086 amount=-1 +kerning first=380 second=1089 amount=-1 +kerning first=380 second=1092 amount=-1 +kerning first=380 second=1104 amount=-1 +kerning first=380 second=1105 amount=-1 +kerning first=380 second=1108 amount=-1 +kerning first=380 second=1195 amount=-1 +kerning first=380 second=1241 amount=-1 +kerning first=380 second=1257 amount=-1 +kerning first=381 second=45 amount=-3 +kerning first=381 second=67 amount=-1 +kerning first=381 second=71 amount=-1 +kerning first=381 second=79 amount=-1 +kerning first=381 second=81 amount=-1 +kerning first=381 second=90 amount=1 +kerning first=381 second=99 amount=-1 +kerning first=381 second=100 amount=-1 +kerning first=381 second=101 amount=-1 +kerning first=381 second=111 amount=-1 +kerning first=381 second=113 amount=-1 +kerning first=381 second=173 amount=-3 +kerning first=381 second=199 amount=-1 +kerning first=381 second=210 amount=-1 +kerning first=381 second=211 amount=-1 +kerning first=381 second=212 amount=-1 +kerning first=381 second=213 amount=-1 +kerning first=381 second=214 amount=-1 +kerning first=381 second=216 amount=-1 +kerning first=381 second=231 amount=-1 +kerning first=381 second=232 amount=-1 +kerning first=381 second=233 amount=-1 +kerning first=381 second=234 amount=-1 +kerning first=381 second=235 amount=-1 +kerning first=381 second=240 amount=-1 +kerning first=381 second=242 amount=-1 +kerning first=381 second=243 amount=-1 +kerning first=381 second=244 amount=-1 +kerning first=381 second=245 amount=-1 +kerning first=381 second=246 amount=-1 +kerning first=381 second=248 amount=-1 +kerning first=381 second=262 amount=-1 +kerning first=381 second=263 amount=-1 +kerning first=381 second=266 amount=-1 +kerning first=381 second=267 amount=-1 +kerning first=381 second=268 amount=-1 +kerning first=381 second=269 amount=-1 +kerning first=381 second=271 amount=-1 +kerning first=381 second=273 amount=-1 +kerning first=381 second=275 amount=-1 +kerning first=381 second=277 amount=-1 +kerning first=381 second=279 amount=-1 +kerning first=381 second=281 amount=-1 +kerning first=381 second=283 amount=-1 +kerning first=381 second=286 amount=-1 +kerning first=381 second=288 amount=-1 +kerning first=381 second=290 amount=-1 +kerning first=381 second=332 amount=-1 +kerning first=381 second=333 amount=-1 +kerning first=381 second=334 amount=-1 +kerning first=381 second=335 amount=-1 +kerning first=381 second=336 amount=-1 +kerning first=381 second=337 amount=-1 +kerning first=381 second=338 amount=-1 +kerning first=381 second=339 amount=-1 +kerning first=381 second=377 amount=1 +kerning first=381 second=379 amount=1 +kerning first=381 second=381 amount=1 +kerning first=381 second=918 amount=1 +kerning first=381 second=920 amount=-1 +kerning first=381 second=927 amount=-1 +kerning first=381 second=940 amount=-1 +kerning first=381 second=941 amount=-1 +kerning first=381 second=945 amount=-1 +kerning first=381 second=949 amount=-1 +kerning first=381 second=959 amount=-1 +kerning first=381 second=962 amount=-1 +kerning first=381 second=963 amount=-1 +kerning first=381 second=966 amount=-1 +kerning first=381 second=972 amount=-1 +kerning first=381 second=1028 amount=-1 +kerning first=381 second=1054 amount=-1 +kerning first=381 second=1057 amount=-1 +kerning first=381 second=1077 amount=-1 +kerning first=381 second=1086 amount=-1 +kerning first=381 second=1089 amount=-1 +kerning first=381 second=1092 amount=-1 +kerning first=381 second=1104 amount=-1 +kerning first=381 second=1105 amount=-1 +kerning first=381 second=1108 amount=-1 +kerning first=381 second=1194 amount=-1 +kerning first=381 second=1195 amount=-1 +kerning first=381 second=1240 amount=-1 +kerning first=381 second=1241 amount=-1 +kerning first=381 second=1256 amount=-1 +kerning first=381 second=1257 amount=-1 +kerning first=381 second=8211 amount=-3 +kerning first=381 second=8212 amount=-3 +kerning first=382 second=99 amount=-1 +kerning first=382 second=100 amount=-1 +kerning first=382 second=101 amount=-1 +kerning first=382 second=111 amount=-1 +kerning first=382 second=113 amount=-1 +kerning first=382 second=231 amount=-1 +kerning first=382 second=232 amount=-1 +kerning first=382 second=233 amount=-1 +kerning first=382 second=234 amount=-1 +kerning first=382 second=235 amount=-1 +kerning first=382 second=240 amount=-1 +kerning first=382 second=242 amount=-1 +kerning first=382 second=243 amount=-1 +kerning first=382 second=244 amount=-1 kerning first=382 second=245 amount=-1 -kerning first=1027 second=375 amount=-1 -kerning first=282 second=949 amount=-1 -kerning first=287 second=257 amount=-1 -kerning first=8230 second=210 amount=-1 -kerning first=57 second=119 amount=-4 -kerning first=54 second=359 amount=-1 -kerning first=1062 second=8211 amount=-2 -kerning first=194 second=963 amount=-1 -kerning first=197 second=271 amount=-1 -kerning first=74 second=1026 amount=-5 -kerning first=77 second=286 amount=-2 -kerning first=335 second=1090 amount=-1 -kerning first=338 second=334 amount=-2 -kerning first=926 second=246 amount=-1 -kerning first=100 second=218 amount=-2 -kerning first=240 second=346 amount=-1 -kerning first=1223 second=8212 amount=-2 -kerning first=260 second=964 amount=-3 -kerning first=268 second=45 amount=-1 -kerning first=35 second=372 amount=-5 -kerning first=177 second=287 amount=-1 -kerning first=8240 second=365 amount=-1 -kerning first=201 second=219 amount=-2 -kerning first=316 second=347 amount=-1 -kerning first=313 second=1108 amount=-1 -kerning first=221 second=361 amount=-2 -kerning first=345 second=46 amount=-3 -kerning first=936 second=196 amount=-3 -kerning first=101 second=373 amount=-1 -kerning first=1194 second=86 amount=-1 -kerning first=182 second=232 amount=-1 -kerning first=294 second=362 amount=-2 -kerning first=8226 second=8217 amount=-3 -kerning first=289 second=1176 amount=-1 -kerning first=62 second=244 amount=-1 -kerning first=202 second=374 amount=-5 -kerning first=322 second=289 amount=-1 -kerning first=79 second=1298 amount=-1 -kerning first=1107 second=337 amount=-1 -kerning first=346 second=221 amount=-2 -kerning first=942 second=111 amount=-1 -kerning first=108 second=83 amount=-1 -kerning first=365 second=1177 amount=-1 -kerning first=161 second=245 amount=-1 -kerning first=40 second=949 amount=-1 -kerning first=43 second=257 amount=-1 -kerning first=8211 second=88 amount=-3 -kerning first=66 second=194 amount=-1 -kerning first=209 second=84 amount=-5 -kerning first=8370 second=1241 amount=-1 -kerning first=8377 second=187 amount=-1 -kerning first=901 second=364 amount=-2 -kerning first=86 second=334 amount=-2 -kerning first=1116 second=277 amount=-2 -kerning first=1206 second=211 amount=-1 -kerning first=369 second=1059 amount=-2 -kerning first=268 second=8249 amount=-1 -kerning first=278 second=85 amount=-2 -kerning first=1048 second=365 amount=-1 -kerning first=190 second=97 amount=-1 -kerning first=64 second=1108 amount=-1 -kerning first=70 second=109 amount=-1 -kerning first=910 second=74 amount=-6 -kerning first=87 second=965 amount=-2 -kerning first=1168 second=224 amount=-1 -kerning first=1202 second=1184 amount=-2 -kerning first=253 second=336 amount=-2 -kerning first=376 second=248 amount=-4 -kerning first=973 second=171 amount=-3 -kerning first=166 second=350 amount=-1 -kerning first=45 second=1176 amount=-1 -kerning first=48 second=362 amount=-2 -kerning first=188 second=966 amount=-1 -kerning first=191 second=275 amount=-1 -kerning first=68 second=1033 amount=-1 -kerning first=906 second=940 amount=-1 -kerning first=94 second=221 amount=-5 -kerning first=237 second=111 amount=-1 -kerning first=357 second=261 amount=-1 -kerning first=1028 second=88 amount=-2 -kerning first=170 second=290 amount=-2 -kerning first=46 second=8211 amount=-1 -kerning first=1063 second=941 amount=-1 -kerning first=75 second=234 amount=-2 -kerning first=1095 second=1241 amount=-1 -kerning first=215 second=364 amount=-2 -kerning first=95 second=376 amount=-5 -kerning first=1170 second=1079 amount=-1 -kerning first=1178 second=89 amount=-2 -kerning first=238 second=291 amount=-1 -kerning first=361 second=211 amount=-2 -kerning first=950 second=1098 amount=-3 -kerning first=956 second=101 amount=-1 -kerning first=36 second=85 amount=-2 -kerning first=1036 second=38 amount=-2 -kerning first=175 second=235 amount=-1 -kerning first=8218 second=8221 amount=-1 -kerning first=8222 second=1066 amount=-5 -kerning first=8361 second=240 amount=-1 -kerning first=1102 second=102 amount=-1 -kerning first=915 second=1118 amount=-1 -kerning first=923 second=354 amount=-5 -kerning first=93 second=8250 amount=-1 -kerning first=1186 second=39 amount=-2 -kerning first=958 second=279 amount=-1 -kerning first=122 second=248 amount=-1 -kerning first=1037 second=213 amount=-2 -kerning first=282 second=8217 amount=-3 -kerning first=1071 second=355 amount=-1 -kerning first=203 second=87 amount=-5 -kerning first=80 second=337 amount=-1 -kerning first=223 second=249 amount=-1 -kerning first=926 second=1038 amount=-2 -kerning first=103 second=261 amount=-1 -kerning first=100 second=953 amount=-1 -kerning first=360 second=8218 amount=-1 -kerning first=963 second=226 amount=-1 -kerning first=263 second=1078 amount=-1 -kerning first=41 second=210 amount=-2 -kerning first=180 second=338 amount=-2 -kerning first=184 second=100 amount=-1 -kerning first=291 second=941 amount=-1 -kerning first=296 second=250 amount=-1 -kerning first=61 second=352 amount=-1 -kerning first=204 second=262 amount=-2 -kerning first=321 second=1241 amount=-1 -kerning first=84 second=277 amount=-3 -kerning first=350 second=89 amount=-2 -kerning first=244 second=1098 amount=-1 -kerning first=247 second=339 amount=-1 -kerning first=250 second=101 amount=-1 -kerning first=163 second=113 amount=-1 -kerning first=160 second=353 amount=-1 -kerning first=269 second=955 amount=-1 -kerning first=273 second=263 amount=-1 -kerning first=42 second=365 amount=-1 -kerning first=1039 second=1066 amount=-5 -kerning first=1081 second=240 amount=-1 -kerning first=328 second=102 amount=-1 -kerning first=903 second=252 amount=-1 -kerning first=900 second=943 amount=-1 -kerning first=88 second=224 amount=-1 -kerning first=105 second=1184 amount=-5 -kerning first=108 second=366 amount=-2 -kerning first=1210 second=79 amount=-2 -kerning first=251 second=279 amount=-1 -kerning first=40 second=8217 amount=-3 -kerning first=1051 second=253 amount=-1 -kerning first=189 second=225 amount=-1 -kerning first=301 second=355 amount=-1 -kerning first=304 second=115 amount=-1 -kerning first=206 second=1185 amount=-3 -kerning first=209 second=367 amount=-1 -kerning first=86 second=1220 amount=-2 -kerning first=1206 second=945 amount=-1 -kerning first=375 second=356 amount=-5 -kerning first=255 second=226 amount=-1 -kerning first=278 second=368 amount=-2 -kerning first=8212 second=1069 amount=-1 -kerning first=8222 second=81 amount=-1 -kerning first=47 second=941 amount=-1 -kerning first=50 second=250 amount=-1 -kerning first=70 second=1241 amount=-1 -kerning first=73 second=187 amount=-1 -kerning first=207 second=8220 amount=-3 -kerning first=8378 second=1263 amount=-1 -kerning first=915 second=117 amount=-1 -kerning first=1171 second=269 amount=-1 -kerning first=96 second=89 amount=-5 -kerning first=356 second=369 amount=-2 -kerning first=948 second=973 amount=-1 -kerning first=113 second=942 amount=2 -kerning first=1027 second=216 amount=-2 -kerning first=276 second=8221 amount=-3 -kerning first=1068 second=118 amount=-1 -kerning first=311 second=240 amount=-2 -kerning first=1097 second=283 amount=-1 -kerning first=214 second=943 amount=-1 -kerning first=335 second=382 amount=-1 -kerning first=926 second=67 amount=-2 -kerning first=100 second=39 amount=-3 -kerning first=354 second=8222 amount=-3 -kerning first=363 second=79 amount=-2 -kerning first=955 second=229 amount=-1 -kerning first=1298 second=119 amount=-4 -kerning first=35 second=213 amount=-2 -kerning first=177 second=103 amount=-1 -kerning first=55 second=355 amount=-1 -kerning first=58 second=115 amount=-1 -kerning first=198 second=267 amount=-1 -kerning first=1066 second=1046 amount=-2 -kerning first=928 second=242 amount=-1 -kerning first=920 second=923 amount=-2 -kerning first=238 second=1101 amount=-1 -kerning first=361 second=945 amount=-1 -kerning first=956 second=1240 amount=-2 -kerning first=121 second=356 amount=-5 -kerning first=124 second=116 amount=-1 -kerning first=36 second=368 amount=-2 -kerning first=1039 second=81 amount=-2 -kerning first=175 second=972 amount=-1 -kerning first=178 second=281 amount=-1 -kerning first=1074 second=243 amount=-1 -kerning first=8361 second=1028 amount=-2 -kerning first=8364 second=288 amount=-2 -kerning first=1099 second=1263 amount=-1 -kerning first=343 second=269 amount=-1 -kerning first=962 second=332 amount=-2 -kerning first=37 second=1066 amount=-5 -kerning first=183 second=228 amount=-1 -kerning first=298 second=118 amount=-4 -kerning first=63 second=240 amount=-1 -kerning first=200 second=1194 amount=-2 -kerning first=203 second=370 amount=-2 -kerning first=323 second=283 amount=-1 -kerning first=8370 second=233 amount=-1 -kerning first=80 second=1256 amount=-2 -kerning first=947 second=257 amount=-1 -kerning first=1187 second=949 amount=-1 -kerning first=249 second=229 amount=-1 -kerning first=369 second=359 amount=-1 -kerning first=372 second=119 amount=-1 -kerning first=963 second=963 amount=-1 -kerning first=126 second=920 amount=-2 -kerning first=271 second=371 amount=-1 -kerning first=8212 second=84 amount=-4 -kerning first=44 second=253 amount=-1 -kerning first=180 second=1257 amount=-1 -kerning first=1080 second=346 amount=-1 -kerning first=327 second=230 amount=-1 +kerning first=382 second=246 amount=-1 +kerning first=382 second=248 amount=-1 +kerning first=382 second=263 amount=-1 +kerning first=382 second=267 amount=-1 +kerning first=382 second=269 amount=-1 +kerning first=382 second=271 amount=-1 +kerning first=382 second=273 amount=-1 +kerning first=382 second=275 amount=-1 +kerning first=382 second=277 amount=-1 +kerning first=382 second=279 amount=-1 +kerning first=382 second=281 amount=-1 +kerning first=382 second=283 amount=-1 +kerning first=382 second=333 amount=-1 +kerning first=382 second=335 amount=-1 +kerning first=382 second=337 amount=-1 +kerning first=382 second=339 amount=-1 +kerning first=382 second=940 amount=-1 +kerning first=382 second=941 amount=-1 +kerning first=382 second=945 amount=-1 +kerning first=382 second=949 amount=-1 +kerning first=382 second=959 amount=-1 +kerning first=382 second=962 amount=-1 +kerning first=382 second=963 amount=-1 +kerning first=382 second=966 amount=-1 +kerning first=382 second=972 amount=-1 +kerning first=382 second=1077 amount=-1 +kerning first=382 second=1086 amount=-1 +kerning first=382 second=1089 amount=-1 +kerning first=382 second=1092 amount=-1 +kerning first=382 second=1104 amount=-1 +kerning first=382 second=1105 amount=-1 +kerning first=382 second=1108 amount=-1 +kerning first=382 second=1195 amount=-1 +kerning first=382 second=1241 amount=-1 +kerning first=382 second=1257 amount=-1 +kerning first=902 second=34 amount=-3 +kerning first=902 second=38 amount=-1 +kerning first=902 second=39 amount=-3 +kerning first=902 second=45 amount=-2 +kerning first=902 second=63 amount=-5 +kerning first=902 second=67 amount=-2 +kerning first=902 second=71 amount=-2 +kerning first=902 second=74 amount=-1 +kerning first=902 second=79 amount=-2 +kerning first=902 second=81 amount=-2 +kerning first=902 second=83 amount=-1 +kerning first=902 second=84 amount=-5 +kerning first=902 second=85 amount=-2 +kerning first=902 second=86 amount=-6 +kerning first=902 second=87 amount=-5 +kerning first=902 second=89 amount=-5 +kerning first=902 second=97 amount=-1 +kerning first=902 second=99 amount=-1 +kerning first=902 second=100 amount=-1 +kerning first=902 second=101 amount=-1 +kerning first=902 second=102 amount=-2 +kerning first=902 second=103 amount=-1 +kerning first=902 second=106 amount=1 +kerning first=902 second=111 amount=-1 +kerning first=902 second=113 amount=-1 +kerning first=902 second=115 amount=-1 +kerning first=902 second=116 amount=-1 +kerning first=902 second=117 amount=-1 +kerning first=902 second=118 amount=-4 +kerning first=902 second=119 amount=-4 +kerning first=902 second=121 amount=-1 +kerning first=902 second=171 amount=-3 +kerning first=902 second=173 amount=-2 +kerning first=902 second=187 amount=-1 +kerning first=902 second=199 amount=-2 +kerning first=902 second=210 amount=-2 +kerning first=902 second=211 amount=-2 +kerning first=902 second=212 amount=-2 +kerning first=902 second=213 amount=-2 +kerning first=902 second=214 amount=-2 +kerning first=902 second=216 amount=-2 +kerning first=902 second=217 amount=-2 +kerning first=902 second=218 amount=-2 +kerning first=902 second=219 amount=-2 +kerning first=902 second=220 amount=-2 +kerning first=902 second=221 amount=-5 +kerning first=902 second=224 amount=-1 +kerning first=902 second=225 amount=-1 +kerning first=902 second=226 amount=-1 +kerning first=902 second=227 amount=-1 +kerning first=902 second=228 amount=-1 +kerning first=902 second=229 amount=-1 +kerning first=902 second=230 amount=-1 +kerning first=902 second=231 amount=-1 +kerning first=902 second=232 amount=-1 +kerning first=902 second=233 amount=-1 +kerning first=902 second=234 amount=-1 +kerning first=902 second=235 amount=-1 +kerning first=902 second=240 amount=-1 +kerning first=902 second=242 amount=-1 +kerning first=902 second=243 amount=-1 +kerning first=902 second=244 amount=-1 +kerning first=902 second=245 amount=-1 +kerning first=902 second=246 amount=-1 +kerning first=902 second=248 amount=-1 +kerning first=902 second=249 amount=-1 +kerning first=902 second=250 amount=-1 +kerning first=902 second=251 amount=-1 +kerning first=902 second=252 amount=-1 +kerning first=902 second=253 amount=-1 +kerning first=902 second=257 amount=-1 +kerning first=902 second=259 amount=-1 +kerning first=902 second=261 amount=-1 +kerning first=902 second=262 amount=-2 +kerning first=902 second=263 amount=-1 +kerning first=902 second=266 amount=-2 +kerning first=902 second=267 amount=-1 +kerning first=902 second=268 amount=-2 +kerning first=902 second=269 amount=-1 +kerning first=902 second=271 amount=-1 +kerning first=902 second=273 amount=-1 +kerning first=902 second=275 amount=-1 +kerning first=902 second=277 amount=-1 +kerning first=902 second=279 amount=-1 +kerning first=902 second=281 amount=-1 +kerning first=902 second=283 amount=-1 +kerning first=902 second=286 amount=-2 +kerning first=902 second=287 amount=-1 +kerning first=902 second=288 amount=-2 +kerning first=902 second=289 amount=-1 +kerning first=902 second=290 amount=-2 +kerning first=902 second=291 amount=-1 +kerning first=902 second=332 amount=-2 +kerning first=902 second=333 amount=-1 +kerning first=902 second=334 amount=-2 +kerning first=902 second=335 amount=-1 +kerning first=902 second=336 amount=-2 +kerning first=902 second=337 amount=-1 +kerning first=902 second=338 amount=-2 +kerning first=902 second=339 amount=-1 +kerning first=902 second=346 amount=-1 +kerning first=902 second=347 amount=-1 +kerning first=902 second=350 amount=-1 +kerning first=902 second=351 amount=-1 +kerning first=902 second=352 amount=-1 +kerning first=902 second=353 amount=-1 +kerning first=902 second=354 amount=-5 +kerning first=902 second=355 amount=-1 +kerning first=902 second=356 amount=-5 +kerning first=902 second=357 amount=-1 +kerning first=902 second=359 amount=-1 kerning first=902 second=360 amount=-2 -kerning first=1117 second=273 amount=-1 -kerning first=1168 second=45 amount=-2 -kerning first=350 second=372 amount=-2 -kerning first=944 second=287 amount=-1 -kerning first=107 second=945 amount=-2 -kerning first=247 second=1262 amount=-2 -kerning first=250 second=1240 amount=-2 -kerning first=273 second=1069 amount=-1 -kerning first=8216 second=259 amount=-1 -kerning first=1049 second=361 amount=-1 -kerning first=303 second=243 amount=-1 -kerning first=1081 second=1028 amount=-2 -kerning first=1085 second=288 amount=-2 -kerning first=325 second=1263 amount=-1 -kerning first=91 second=269 amount=-1 -kerning first=1210 second=362 amount=-2 -kerning first=254 second=332 amount=-2 -kerning first=377 second=244 amount=-1 -kerning first=971 second=374 amount=-5 -kerning first=170 second=106 amount=1 -kerning first=52 second=118 amount=-4 -kerning first=189 second=962 amount=-1 -kerning first=72 second=283 amount=-1 -kerning first=1095 second=233 amount=-1 -kerning first=912 second=245 amount=-1 -kerning first=95 second=217 amount=-2 -kerning first=1170 second=375 amount=-1 -kerning first=358 second=257 amount=-1 -kerning first=1206 second=8211 amount=-2 -kerning first=255 second=963 amount=-1 -kerning first=258 second=271 amount=-1 -kerning first=168 second=1026 amount=-5 -kerning first=1033 second=84 amount=-5 -kerning first=8222 second=364 amount=-1 -kerning first=1067 second=246 amount=-1 -kerning first=196 second=218 amount=-2 -kerning first=310 second=346 amount=-1 -kerning first=213 second=1174 amount=-3 -kerning first=340 second=45 amount=-1 -kerning first=93 second=947 amount=-4 -kerning first=96 second=372 amount=-5 -kerning first=1168 second=8249 amount=-3 -kerning first=239 second=287 amount=-1 -kerning first=954 second=335 amount=-2 -kerning first=958 second=97 amount=-1 -kerning first=379 second=1108 amount=-1 -kerning first=37 second=81 amount=-2 -kerning first=1037 second=34 amount=-3 -kerning first=176 second=231 amount=-1 -kerning first=287 second=361 amount=-1 -kerning first=57 second=243 amount=-1 -kerning first=197 second=373 amount=-4 -kerning first=315 second=288 amount=-1 -kerning first=74 second=1263 amount=-1 -kerning first=1097 second=1095 amount=-2 -kerning first=926 second=350 amount=-1 -kerning first=363 second=362 amount=-2 -kerning first=955 second=966 amount=-1 -kerning first=123 second=244 amount=-1 -kerning first=960 second=275 amount=-1 -kerning first=38 second=256 amount=-1 -kerning first=296 second=71 amount=-2 -kerning first=8240 second=940 amount=-1 -kerning first=8260 second=249 amount=-1 -kerning first=1073 second=351 amount=-1 -kerning first=1076 second=111 amount=-1 -kerning first=204 second=83 amount=-1 -kerning first=321 second=233 amount=-1 -kerning first=1101 second=967 amount=-2 -kerning first=936 second=290 amount=-2 -kerning first=361 second=8211 amount=-2 -kerning first=364 second=1051 amount=-1 -kerning first=273 second=84 amount=-5 -kerning first=1039 second=364 amount=-2 -kerning first=182 second=334 amount=-2 -kerning first=178 second=1090 amount=-3 -kerning first=297 second=246 amount=-1 -kerning first=62 second=346 amount=-1 -kerning first=1074 second=1035 amount=-5 -kerning first=1078 second=291 amount=-1 -kerning first=8364 second=1098 amount=-3 -kerning first=8369 second=339 amount=-1 -kerning first=88 second=45 amount=-3 -kerning first=340 second=8249 amount=-1 -kerning first=942 second=235 amount=-1 -kerning first=251 second=97 amount=-1 -kerning first=125 second=1108 amount=-1 -kerning first=161 second=347 amount=-1 -kerning first=274 second=259 amount=-1 -kerning first=277 second=34 amount=-1 -kerning first=43 second=361 amount=-1 -kerning first=1037 second=8216 amount=-3 -kerning first=46 second=121 amount=-1 -kerning first=183 second=965 amount=-1 -kerning first=63 second=1028 amount=-2 -kerning first=8370 second=970 amount=-1 -kerning first=8377 second=279 amount=-1 -kerning first=904 second=248 amount=-1 -kerning first=1119 second=171 amount=-3 -kerning first=352 second=260 amount=-1 -kerning first=112 second=122 amount=-1 -kerning first=249 second=966 amount=-1 -kerning first=252 second=275 amount=-1 -kerning first=966 second=1076 amount=-1 -kerning first=165 second=289 amount=-1 -kerning first=50 second=71 amount=-2 -kerning first=1048 second=940 amount=-1 -kerning first=190 second=221 amount=-5 -kerning first=302 second=351 amount=-1 -kerning first=305 second=111 amount=-1 -kerning first=70 second=233 amount=-1 -kerning first=207 second=1177 amount=-1 +kerning first=902 second=361 amount=-1 +kerning first=902 second=362 amount=-2 +kerning first=902 second=363 amount=-1 +kerning first=902 second=364 amount=-2 +kerning first=902 second=365 amount=-1 +kerning first=902 second=366 amount=-2 +kerning first=902 second=367 amount=-1 +kerning first=902 second=368 amount=-2 +kerning first=902 second=369 amount=-1 +kerning first=902 second=370 amount=-2 +kerning first=902 second=371 amount=-1 +kerning first=902 second=372 amount=-5 +kerning first=902 second=373 amount=-4 +kerning first=902 second=374 amount=-5 +kerning first=902 second=375 amount=-1 +kerning first=902 second=376 amount=-5 +kerning first=902 second=920 amount=-2 +kerning first=902 second=927 amount=-2 +kerning first=902 second=932 amount=-5 +kerning first=902 second=933 amount=-5 +kerning first=902 second=936 amount=-3 +kerning first=902 second=939 amount=-5 +kerning first=902 second=940 amount=-1 +kerning first=902 second=941 amount=-1 +kerning first=902 second=943 amount=-1 +kerning first=902 second=945 amount=-1 +kerning first=902 second=947 amount=-4 +kerning first=902 second=949 amount=-1 +kerning first=902 second=950 amount=-1 +kerning first=902 second=953 amount=-1 +kerning first=902 second=957 amount=-4 +kerning first=902 second=959 amount=-1 +kerning first=902 second=962 amount=-1 +kerning first=902 second=963 amount=-1 +kerning first=902 second=964 amount=-3 +kerning first=902 second=965 amount=-1 +kerning first=902 second=966 amount=-1 +kerning first=902 second=968 amount=-1 +kerning first=902 second=970 amount=-1 +kerning first=902 second=972 amount=-1 +kerning first=902 second=973 amount=-1 +kerning first=902 second=1026 amount=-5 +kerning first=902 second=1028 amount=-2 +kerning first=902 second=1029 amount=-1 +kerning first=902 second=1032 amount=-1 +kerning first=902 second=1035 amount=-5 +kerning first=902 second=1038 amount=-2 +kerning first=902 second=1054 amount=-2 +kerning first=902 second=1057 amount=-2 +kerning first=902 second=1058 amount=-5 +kerning first=902 second=1059 amount=-2 +kerning first=902 second=1063 amount=-3 +kerning first=902 second=1066 amount=-5 +kerning first=902 second=1069 amount=-1 +kerning first=902 second=1072 amount=-1 +kerning first=902 second=1077 amount=-1 +kerning first=902 second=1079 amount=-1 +kerning first=902 second=1086 amount=-1 +kerning first=902 second=1089 amount=-1 +kerning first=902 second=1090 amount=-3 +kerning first=902 second=1091 amount=-1 +kerning first=902 second=1092 amount=-1 +kerning first=902 second=1098 amount=-3 +kerning first=902 second=1101 amount=-1 +kerning first=902 second=1104 amount=-1 +kerning first=902 second=1105 amount=-1 +kerning first=902 second=1108 amount=-1 +kerning first=902 second=1109 amount=-1 +kerning first=902 second=1112 amount=1 +kerning first=902 second=1118 amount=-1 +kerning first=902 second=1176 amount=-1 +kerning first=902 second=1177 amount=-1 +kerning first=902 second=1184 amount=-5 +kerning first=902 second=1185 amount=-3 +kerning first=902 second=1194 amount=-2 +kerning first=902 second=1195 amount=-1 +kerning first=902 second=1198 amount=-5 +kerning first=902 second=1199 amount=-4 +kerning first=902 second=1240 amount=-2 +kerning first=902 second=1241 amount=-1 +kerning first=902 second=1256 amount=-2 +kerning first=902 second=1257 amount=-1 +kerning first=902 second=1262 amount=-2 +kerning first=902 second=1263 amount=-1 +kerning first=902 second=8211 amount=-2 +kerning first=902 second=8212 amount=-2 +kerning first=902 second=8216 amount=-3 +kerning first=902 second=8217 amount=-3 +kerning first=902 second=8220 amount=-3 +kerning first=902 second=8221 amount=-3 +kerning first=902 second=8249 amount=-3 +kerning first=902 second=8250 amount=-1 +kerning first=908 second=44 amount=-1 +kerning first=908 second=46 amount=-1 +kerning first=908 second=47 amount=-1 +kerning first=908 second=65 amount=-2 +kerning first=908 second=84 amount=-2 +kerning first=908 second=86 amount=-2 +kerning first=908 second=87 amount=-2 +kerning first=908 second=88 amount=-3 +kerning first=908 second=89 amount=-3 +kerning first=908 second=90 amount=-1 +kerning first=908 second=193 amount=-2 +kerning first=908 second=194 amount=-2 +kerning first=908 second=196 amount=-2 +kerning first=908 second=197 amount=-2 +kerning first=908 second=198 amount=-2 +kerning first=908 second=221 amount=-3 +kerning first=908 second=256 amount=-2 +kerning first=908 second=258 amount=-2 +kerning first=908 second=260 amount=-2 +kerning first=908 second=354 amount=-2 +kerning first=908 second=356 amount=-2 +kerning first=908 second=372 amount=-2 +kerning first=908 second=374 amount=-3 +kerning first=908 second=376 amount=-3 +kerning first=908 second=377 amount=-1 +kerning first=908 second=379 amount=-1 +kerning first=908 second=381 amount=-1 +kerning first=908 second=913 amount=-2 +kerning first=908 second=916 amount=-2 +kerning first=908 second=918 amount=-1 +kerning first=908 second=923 amount=-2 +kerning first=908 second=932 amount=-2 +kerning first=908 second=933 amount=-3 +kerning first=908 second=935 amount=-3 +kerning first=908 second=939 amount=-3 +kerning first=908 second=955 amount=-2 +kerning first=908 second=967 amount=-1 +kerning first=908 second=1026 amount=-2 +kerning first=908 second=1033 amount=-1 +kerning first=908 second=1035 amount=-2 +kerning first=908 second=1040 amount=-2 +kerning first=908 second=1044 amount=-1 +kerning first=908 second=1046 amount=-3 +kerning first=908 second=1051 amount=-1 +kerning first=908 second=1058 amount=-2 +kerning first=908 second=1061 amount=-3 +kerning first=908 second=1066 amount=-2 +kerning first=908 second=1071 amount=-1 +kerning first=908 second=1174 amount=-3 +kerning first=908 second=1184 amount=-2 +kerning first=908 second=1198 amount=-3 +kerning first=908 second=1202 amount=-3 +kerning first=908 second=1298 amount=-1 +kerning first=908 second=8218 amount=-1 +kerning first=908 second=8222 amount=-1 +kerning first=908 second=8230 amount=-1 +kerning first=910 second=38 amount=-2 +kerning first=910 second=44 amount=-4 +kerning first=910 second=45 amount=-4 +kerning first=910 second=46 amount=-4 +kerning first=910 second=47 amount=-4 +kerning first=910 second=110 amount=-3 +kerning first=910 second=63 amount=-1 +kerning first=910 second=65 amount=-5 +kerning first=910 second=67 amount=-3 +kerning first=910 second=114 amount=-3 +kerning first=910 second=71 amount=-3 +kerning first=910 second=74 amount=-6 +kerning first=910 second=79 amount=-3 +kerning first=910 second=81 amount=-3 +kerning first=910 second=83 amount=-1 +kerning first=910 second=97 amount=-4 +kerning first=910 second=99 amount=-4 +kerning first=910 second=100 amount=-4 +kerning first=910 second=101 amount=-4 +kerning first=910 second=103 amount=-4 +kerning first=910 second=109 amount=-3 +kerning first=910 second=111 amount=-4 +kerning first=910 second=112 amount=-3 +kerning first=910 second=113 amount=-4 +kerning first=910 second=115 amount=-3 +kerning first=910 second=117 amount=-2 +kerning first=910 second=118 amount=-2 +kerning first=910 second=119 amount=-2 +kerning first=910 second=120 amount=-2 +kerning first=910 second=121 amount=-2 +kerning first=910 second=122 amount=-2 +kerning first=910 second=171 amount=-3 +kerning first=910 second=173 amount=-4 +kerning first=910 second=187 amount=-2 +kerning first=910 second=193 amount=-5 +kerning first=910 second=194 amount=-5 +kerning first=910 second=196 amount=-5 +kerning first=910 second=197 amount=-5 kerning first=910 second=198 amount=-5 -kerning first=356 second=210 amount=-1 -kerning first=948 second=338 amount=-2 -kerning first=951 second=100 amount=-1 -kerning first=107 second=8211 amount=-3 -kerning first=1220 second=250 amount=-1 -kerning first=1207 second=941 amount=-1 -kerning first=376 second=352 amount=-1 -kerning first=973 second=262 amount=-2 -kerning first=169 second=234 amount=-1 -kerning first=51 second=246 amount=-1 -kerning first=1065 second=199 amount=-1 -kerning first=191 second=376 amount=-5 -kerning first=303 second=1035 amount=-5 -kerning first=306 second=291 amount=-1 -kerning first=1085 second=1098 amount=-3 -kerning first=1094 second=339 amount=-1 -kerning first=1097 second=101 amount=-1 -kerning first=916 second=113 amount=-1 -kerning first=88 second=8249 amount=-3 -kerning first=1169 second=955 amount=-4 -kerning first=1174 second=263 amount=-1 -kerning first=237 second=235 amount=-1 -kerning first=357 second=365 amount=-1 -kerning first=354 second=1179 amount=-2 -kerning first=35 second=34 amount=-3 -kerning first=277 second=8216 amount=-1 -kerning first=8225 second=252 amount=-1 -kerning first=55 second=196 amount=-5 -kerning first=1063 second=1118 amount=-1 -kerning first=1066 second=354 amount=-5 -kerning first=189 second=8250 amount=-1 -kerning first=75 second=336 amount=-3 -kerning first=1095 second=970 amount=-1 -kerning first=1178 second=213 amount=-1 -kerning first=956 second=225 amount=-1 -kerning first=1299 second=115 amount=-1 -kerning first=266 second=87 amount=-1 -kerning first=1026 second=1185 amount=-3 -kerning first=175 second=337 amount=-1 -kerning first=178 second=99 amount=-1 -kerning first=289 second=249 amount=-1 -kerning first=59 second=111 amount=-1 -kerning first=1067 second=1038 amount=-2 -kerning first=56 second=351 amount=-1 -kerning first=196 second=953 amount=-1 -kerning first=222 second=198 amount=-2 -kerning first=337 second=1078 amount=-2 -kerning first=365 second=250 amount=-1 -kerning first=37 second=364 amount=-2 -kerning first=1027 second=8220 amount=-3 -kerning first=176 second=968 amount=-1 -kerning first=179 second=277 amount=-1 -kerning first=57 second=1035 amount=-5 -kerning first=60 second=291 amount=-1 -kerning first=203 second=211 amount=-2 -kerning first=318 second=339 amount=-1 -kerning first=323 second=101 amount=-1 -kerning first=223 second=353 amount=-1 -kerning first=341 second=955 amount=-3 -kerning first=103 second=365 amount=-1 -kerning first=271 second=212 amount=-2 -kerning first=1241 second=102 amount=-1 -kerning first=35 second=8216 amount=-3 -kerning first=184 second=224 amount=-1 -kerning first=296 second=354 amount=-5 -kerning first=291 second=1118 amount=-1 -kerning first=201 second=1184 amount=-5 -kerning first=204 second=366 amount=-2 -kerning first=321 second=970 amount=-1 -kerning first=8372 second=229 amount=-1 -kerning first=84 second=378 amount=-1 -kerning first=87 second=171 amount=-2 -kerning first=230 second=63 amount=-2 -kerning first=944 second=103 amount=-1 -kerning first=101 second=8217 amount=-1 -kerning first=250 second=225 amount=-1 -kerning first=373 second=115 amount=-1 -kerning first=967 second=267 amount=-1 -kerning first=273 second=367 amount=-1 -kerning first=42 second=940 amount=-1 -kerning first=297 second=1038 amount=-2 -kerning first=8369 second=1262 amount=-2 -kerning first=903 second=356 amount=-5 -kerning first=906 second=116 amount=-1 -kerning first=1118 second=268 amount=-2 -kerning first=942 second=972 amount=-1 -kerning first=108 second=941 amount=-1 -kerning first=164 second=1241 amount=-1 -kerning first=167 second=187 amount=-1 -kerning first=49 second=199 amount=-2 -kerning first=1063 second=117 amount=-1 -kerning first=1051 second=357 amount=-1 -kerning first=192 second=89 amount=-5 -kerning first=186 second=1079 amount=-1 -kerning first=69 second=339 amount=-1 -kerning first=72 second=101 amount=-1 -kerning first=1083 second=973 amount=-1 -kerning first=89 second=955 amount=-2 -kerning first=92 second=263 amount=-1 -kerning first=1170 second=216 amount=-2 -kerning first=347 second=8221 amount=-1 -kerning first=352 second=1066 amount=-1 -kerning first=950 second=228 amount=-1 -kerning first=1224 second=118 amount=-4 -kerning first=378 second=240 amount=-1 -kerning first=278 second=943 amount=-1 -kerning first=47 second=1118 amount=-1 -kerning first=50 second=354 amount=-5 -kerning first=1067 second=67 amount=-2 -kerning first=1059 second=1044 amount=-1 -kerning first=193 second=266 amount=-2 -kerning first=196 second=39 amount=-3 -kerning first=73 second=279 amount=-1 -kerning first=70 second=970 amount=-1 -kerning first=1096 second=229 amount=-1 -kerning first=910 second=920 amount=-3 -kerning first=96 second=213 amount=-2 -kerning first=1168 second=1195 amount=-1 -kerning first=1171 second=371 amount=-1 -kerning first=239 second=103 amount=-1 -kerning first=948 second=1257 amount=-1 -kerning first=113 second=1119 amount=2 -kerning first=119 second=115 amount=-1 -kerning first=8224 second=360 amount=-2 -kerning first=51 second=1038 amount=-2 -kerning first=197 second=214 amount=-2 -kerning first=306 second=1101 amount=-1 -kerning first=77 second=226 amount=-1 -kerning first=338 second=268 amount=-2 -kerning first=1184 second=81 amount=-3 -kerning first=237 second=972 amount=-1 -kerning first=240 second=281 amount=-1 -kerning first=1298 second=243 amount=-1 -kerning first=177 second=227 amount=-1 -kerning first=291 second=117 amount=-1 -kerning first=198 second=369 amount=-1 -kerning first=313 second=973 amount=-1 -kerning first=8363 second=232 amount=-1 -kerning first=95 second=8221 amount=-3 -kerning first=936 second=106 amount=1 -kerning first=367 second=118 amount=-4 -kerning first=956 second=962 amount=-1 -kerning first=124 second=240 amount=-1 -kerning first=36 second=943 amount=-1 -kerning first=175 second=1256 amount=-2 -kerning first=297 second=67 amount=-2 -kerning first=205 second=79 amount=-2 -kerning first=322 second=229 amount=-1 -kerning first=900 second=119 amount=-4 -kerning first=1107 second=271 amount=-1 -kerning first=931 second=1026 amount=-5 -kerning first=105 second=253 amount=-1 -kerning first=965 second=218 amount=-2 -kerning first=1041 second=360 amount=-2 -kerning first=298 second=242 amount=-1 -kerning first=60 second=1101 amount=-1 -kerning first=203 second=945 amount=-1 -kerning first=318 second=1262 amount=-2 -kerning first=323 second=1240 amount=-2 -kerning first=8370 second=335 amount=-1 -kerning first=8377 second=97 amount=-1 -kerning first=86 second=268 amount=-2 -kerning first=372 second=243 amount=-3 -kerning first=966 second=373 amount=-1 -kerning first=44 second=357 amount=-1 -kerning first=47 second=117 amount=-1 -kerning first=64 second=973 amount=-1 -kerning first=1084 second=232 amount=-1 -kerning first=327 second=332 amount=-2 -kerning first=8372 second=966 amount=-1 -kerning first=905 second=244 amount=-1 -kerning first=8378 second=275 amount=-1 -kerning first=90 second=216 amount=-1 -kerning first=1117 second=374 amount=-5 -kerning first=1113 second=1203 amount=-2 -kerning first=113 second=118 amount=-4 -kerning first=1220 second=71 amount=-2 -kerning first=250 second=962 amount=-1 -kerning first=376 second=193 amount=-5 -kerning first=973 second=83 amount=-1 -kerning first=166 second=283 amount=-1 -kerning first=45 second=1044 amount=-4 -kerning first=51 second=67 amount=-2 -kerning first=1062 second=245 amount=-1 -kerning first=191 second=217 amount=-2 -kerning first=214 second=119 amount=-4 -kerning first=335 second=44 amount=-1 -kerning first=91 second=371 amount=-1 -kerning first=88 second=1195 amount=-2 -kerning first=1174 second=84 amount=-2 -kerning first=945 second=1090 amount=-2 -kerning first=1223 second=246 amount=-1 -kerning first=374 second=1107 amount=-3 -kerning first=170 second=230 amount=-1 -kerning first=280 second=360 amount=-2 -kerning first=283 second=120 amount=-2 -kerning first=52 second=242 amount=-1 -kerning first=189 second=947 amount=-4 -kerning first=192 second=372 amount=-5 -kerning first=72 second=1240 amount=-2 -kerning first=69 second=1262 amount=-2 -kerning first=1095 second=335 amount=-1 -kerning first=912 second=347 amount=-1 -kerning first=92 second=1069 amount=-1 -kerning first=1178 second=34 amount=-2 -kerning first=238 second=231 amount=-1 -kerning first=358 second=361 amount=-1 -kerning first=361 second=121 amount=-1 -kerning first=950 second=965 amount=-1 -kerning first=118 second=243 amount=-1 -kerning first=1262 second=196 amount=-2 -kerning first=258 second=373 amount=-4 -kerning first=381 second=288 amount=-1 -kerning first=168 second=1263 amount=-1 -kerning first=8226 second=248 amount=-1 -kerning first=1067 second=350 amount=-1 -kerning first=314 second=232 amount=-1 -kerning first=76 second=332 amount=-1 -kerning first=1096 second=966 amount=-1 -kerning first=1102 second=47 amount=-1 -kerning first=1099 second=275 amount=-1 -kerning first=915 second=1033 amount=-5 -kerning first=923 second=289 amount=-1 -kerning first=365 second=71 amount=-2 -kerning first=958 second=221 amount=-5 -kerning first=1263 second=351 amount=-1 -kerning first=1027 second=1177 amount=-1 -kerning first=176 second=333 amount=-1 -kerning first=8250 second=198 amount=-3 -kerning first=1071 second=290 amount=-2 -kerning first=197 second=949 amount=-1 -kerning first=200 second=257 amount=-1 -kerning first=8365 second=100 amount=-1 -kerning first=77 second=963 amount=-1 -kerning first=80 second=271 amount=-1 -kerning first=934 second=234 amount=-1 -kerning first=240 second=1090 amount=-3 -kerning first=960 second=376 amount=-5 -kerning first=123 second=346 amount=-1 -kerning first=1298 second=1035 amount=-5 -kerning first=268 second=258 amount=-1 -kerning first=38 second=360 amount=-2 -kerning first=1035 second=1059 amount=-2 -kerning first=1028 second=8212 amount=-1 -kerning first=180 second=273 amount=-1 -kerning first=184 second=45 amount=-2 -kerning first=177 second=964 amount=-3 -kerning first=8260 second=353 amount=-1 -kerning first=61 second=287 amount=-1 -kerning first=1076 second=235 amount=-1 -kerning first=321 second=335 amount=-1 -kerning first=221 second=1108 amount=-4 -kerning first=345 second=259 amount=-1 -kerning first=101 second=1175 amount=-2 -kerning first=1178 second=8216 amount=-2 -kerning first=370 second=196 amount=-2 -kerning first=956 second=8250 amount=-1 -kerning first=124 second=1028 amount=-2 -kerning first=160 second=288 amount=-2 -kerning first=1046 second=248 amount=-2 -kerning first=185 second=220 amount=-2 -kerning first=297 second=350 amount=-1 -kerning first=65 second=232 amount=-1 -kerning first=205 second=362 amount=-2 -kerning first=202 second=1176 amount=-1 -kerning first=322 second=966 amount=-1 -kerning first=325 second=275 amount=-1 -kerning first=1107 second=1076 amount=-3 -kerning first=1118 second=87 amount=-5 -kerning first=942 second=337 amount=-1 -kerning first=251 second=221 amount=-5 -kerning first=371 second=351 amount=-1 -kerning first=374 second=111 amount=-4 -kerning first=968 second=261 amount=-1 -kerning first=965 second=953 amount=-1 -kerning first=164 second=233 amount=-1 -kerning first=274 second=363 amount=-1 -kerning first=186 second=375 amount=-1 -kerning first=301 second=290 amount=-2 -kerning first=1083 second=338 amount=-2 -kerning first=203 second=8211 amount=-2 -kerning first=1087 second=100 amount=-1 -kerning first=904 second=352 amount=-1 -kerning first=92 second=84 amount=-5 -kerning first=1119 second=262 amount=-2 -kerning first=946 second=277 amount=-1 -kerning first=1219 second=199 amount=-2 -kerning first=252 second=376 amount=-5 -kerning first=375 second=291 amount=-1 -kerning first=271 second=8212 amount=-2 -kerning first=8218 second=251 amount=-1 -kerning first=1064 second=113 amount=-1 -kerning first=184 second=8249 amount=-3 -kerning first=193 second=85 amount=-2 -kerning first=305 second=235 amount=-1 -kerning first=70 second=335 amount=-1 -kerning first=73 second=97 amount=-1 -kerning first=96 second=34 amount=-3 -kerning first=93 second=259 amount=-1 -kerning first=1171 second=212 amount=-2 -kerning first=951 second=224 amount=-1 -kerning first=1220 second=354 amount=-5 -kerning first=250 second=8250 amount=-1 -kerning first=973 second=366 amount=-2 -kerning first=169 second=336 amount=-2 -kerning first=282 second=248 amount=-1 -kerning first=51 second=350 amount=-1 -kerning first=1068 second=63 amount=-5 -kerning first=74 second=275 amount=-1 -kerning first=217 second=197 amount=-2 -kerning first=338 second=87 amount=-5 -kerning first=237 second=337 amount=-1 -kerning first=240 second=99 amount=-1 -kerning first=357 second=940 amount=-1 -kerning first=117 second=351 amount=-1 -kerning first=1223 second=1038 amount=-2 -kerning first=260 second=261 amount=-1 -kerning first=120 second=111 amount=-2 -kerning first=8225 second=356 amount=-5 -kerning first=8240 second=116 amount=-1 -kerning first=55 second=290 amount=-2 -kerning first=198 second=210 amount=-2 -kerning first=313 second=338 amount=-1 -kerning first=316 second=100 amount=-1 -kerning first=221 second=112 amount=-3 -kerning first=928 second=187 amount=-1 -kerning first=1170 second=8220 amount=-3 -kerning first=238 second=968 amount=-1 -kerning first=121 second=291 amount=-1 -kerning first=1036 second=251 amount=-1 -kerning first=289 second=353 amount=-1 -kerning first=294 second=113 amount=-1 -kerning first=59 second=235 amount=-1 -kerning first=8364 second=228 amount=-1 -kerning first=79 second=377 amount=-1 -kerning first=96 second=8216 amount=-3 -kerning first=365 second=354 amount=-5 -kerning first=962 second=266 amount=-2 -kerning first=965 second=39 amount=-3 -kerning first=262 second=1184 amount=-1 -kerning first=40 second=248 amount=-1 -kerning first=183 second=171 amount=-3 -kerning first=197 second=8217 amount=-3 -kerning first=323 second=225 amount=-1 -kerning first=901 second=115 amount=-1 -kerning first=86 second=87 amount=-5 -kerning first=103 second=940 amount=-1 -kerning first=1048 second=116 amount=-1 -kerning first=1044 second=356 amount=-2 -kerning first=187 second=88 amount=-3 -kerning first=64 second=338 amount=-2 -kerning first=1080 second=281 amount=-1 -kerning first=207 second=250 amount=-1 -kerning first=204 second=941 amount=-1 -kerning first=1076 second=972 amount=-1 -kerning first=84 second=954 amount=-2 -kerning first=87 second=262 amount=-2 -kerning first=944 second=227 amount=-1 -kerning first=247 second=1079 amount=-1 -kerning first=253 second=89 amount=-5 -kerning first=967 second=369 amount=-1 -kerning first=160 second=1098 amount=-3 -kerning first=163 second=339 amount=-1 -kerning first=166 second=101 amount=-1 -kerning first=276 second=251 amount=-1 -kerning first=48 second=113 amount=-1 -kerning first=188 second=263 amount=-1 -kerning first=1085 second=228 amount=-1 -kerning first=906 second=240 amount=-1 -kerning first=332 second=90 amount=-1 -kerning first=91 second=212 amount=-2 -kerning first=1118 second=370 amount=-2 -kerning first=234 second=102 amount=-1 -kerning first=354 second=252 amount=-2 -kerning first=942 second=1256 amount=-2 -kerning first=108 second=1118 amount=-1 -kerning first=1223 second=67 amount=-2 -kerning first=254 second=266 amount=-2 -kerning first=257 second=39 amount=-1 -kerning first=164 second=970 amount=-1 -kerning first=167 second=279 amount=-1 -kerning first=1051 second=920 amount=-2 -kerning first=192 second=213 amount=-2 -kerning first=72 second=225 amount=-1 -kerning first=1083 second=1257 amount=-1 -kerning first=215 second=115 amount=-1 -kerning first=89 second=1185 amount=-2 -kerning first=92 second=367 amount=-1 -kerning first=1224 second=242 amount=-1 -kerning first=258 second=214 amount=-2 -kerning first=375 second=1101 amount=-1 -kerning first=193 second=368 amount=-2 -kerning first=305 second=972 amount=-1 -kerning first=310 second=281 amount=-2 -kerning first=219 second=65 amount=-2 -kerning first=910 second=1102 amount=-3 -kerning first=239 second=227 amount=-1 -kerning first=356 second=1169 amount=-2 -kerning first=954 second=269 amount=-2 -kerning first=1071 second=106 amount=1 -kerning first=194 second=1066 amount=-5 -kerning first=191 second=8221 amount=-3 -kerning first=80 second=90 amount=-1 -kerning first=217 second=916 amount=-2 -kerning first=1097 second=962 amount=-1 -kerning first=338 second=370 amount=-2 -kerning first=926 second=283 amount=-1 -kerning first=100 second=252 amount=-1 -kerning first=237 second=1256 amount=-2 -kerning first=360 second=1044 amount=-1 -kerning first=960 second=217 amount=-2 -kerning first=1035 second=359 amount=-1 -kerning first=61 second=103 amount=-1 -kerning first=1069 second=1026 amount=-2 -kerning first=1073 second=286 amount=-2 -kerning first=201 second=253 amount=-1 -kerning first=313 second=1257 amount=-1 -kerning first=8363 second=334 amount=-2 -kerning first=936 second=230 amount=-1 -kerning first=367 second=242 amount=-1 -kerning first=956 second=947 amount=-4 -kerning first=364 second=923 amount=-2 -kerning first=121 second=1101 amount=-1 -kerning first=42 second=116 amount=-1 -kerning first=182 second=268 amount=-2 -kerning first=59 second=972 amount=-1 -kerning first=62 second=281 amount=-1 -kerning first=1078 second=231 amount=-2 -kerning first=8364 second=965 amount=-1 -kerning first=900 second=243 amount=-1 -kerning first=931 second=1263 amount=-1 -kerning first=108 second=117 amount=-1 -kerning first=105 second=357 amount=-1 -kerning first=125 second=973 amount=-1 -kerning first=8211 second=122 amount=-2 -kerning first=186 second=216 amount=-2 -kerning first=301 second=106 amount=1 -kerning first=209 second=118 amount=-4 -kerning first=323 second=962 amount=-1 -kerning first=8377 second=221 amount=-5 -kerning first=86 second=370 amount=-2 -kerning first=1119 second=83 amount=-1 -kerning first=1206 second=245 amount=-1 -kerning first=252 second=217 amount=-2 -kerning first=372 second=345 amount=-2 -kerning first=165 second=229 amount=-1 -kerning first=278 second=119 amount=-4 -kerning first=44 second=920 amount=-1 -kerning first=47 second=241 amount=-1 -kerning first=184 second=1195 amount=-1 -kerning first=1059 second=194 amount=-2 -kerning first=299 second=1026 amount=-5 -kerning first=302 second=286 amount=-2 -kerning first=64 second=1257 amount=-1 -kerning first=1084 second=334 amount=-2 -kerning first=1080 second=1090 amount=-3 -kerning first=8378 second=376 amount=-5 -kerning first=905 second=346 amount=-1 -kerning first=350 second=1174 amount=-1 -kerning first=356 second=120 amount=-1 -kerning first=948 second=273 amount=-1 -kerning first=951 second=45 amount=-2 -kerning first=113 second=242 amount=-1 -kerning first=944 second=964 amount=-3 -kerning first=250 second=947 amount=-4 -kerning first=253 second=372 amount=-5 -kerning first=376 second=287 amount=-4 -kerning first=163 second=1262 amount=-2 -kerning first=166 second=1240 amount=-2 -kerning first=1049 second=1108 amount=-1 -kerning first=188 second=1069 amount=-1 -kerning first=194 second=81 amount=-2 -kerning first=306 second=231 amount=-1 -kerning first=1085 second=965 amount=-1 -kerning first=214 second=243 amount=-1 -kerning first=906 second=1028 amount=-2 -kerning first=952 second=220 amount=-2 -kerning first=1223 second=350 amount=-1 -kerning first=380 second=232 amount=-1 -kerning first=971 second=1176 amount=-1 -kerning first=170 second=332 amount=-2 -kerning first=55 second=106 amount=1 -kerning first=72 second=962 amount=-1 -kerning first=218 second=193 amount=-2 -kerning first=1170 second=1177 amount=-1 -kerning first=238 second=333 amount=-1 -kerning first=361 second=245 amount=-1 -kerning first=258 second=949 amount=-1 -kerning first=36 second=119 amount=-4 -kerning first=175 second=271 amount=-1 -kerning first=8226 second=352 amount=-1 -kerning first=53 second=1026 amount=-5 -kerning first=56 second=286 amount=-2 -kerning first=310 second=1090 amount=-4 -kerning first=314 second=334 amount=-2 -kerning first=8361 second=277 amount=-1 -kerning first=1099 second=376 amount=-5 -kerning first=1171 second=8212 amount=-2 -kerning first=1176 second=1059 amount=-2 -kerning first=239 second=964 amount=-3 -kerning first=951 second=8249 amount=-3 -kerning first=962 second=85 amount=-2 -kerning first=179 second=219 amount=-2 -kerning first=287 second=1108 amount=-1 -kerning first=60 second=231 amount=-1 -kerning first=200 second=361 amount=-1 -kerning first=203 second=121 amount=-1 -kerning first=315 second=965 amount=-1 -kerning first=8365 second=224 amount=-1 -kerning first=80 second=373 amount=-4 -kerning first=223 second=288 amount=-2 -kerning first=934 second=336 amount=-2 -kerning first=1187 second=248 amount=-1 -kerning first=126 second=232 amount=-1 -kerning first=1241 second=47 amount=-1 -kerning first=41 second=244 amount=-1 -kerning first=180 second=374 amount=-5 -kerning first=296 second=289 amount=-1 -kerning first=1076 second=337 amount=-1 -kerning first=1080 second=99 amount=-1 -kerning first=207 second=71 amount=-2 -kerning first=81 second=1071 amount=-1 -kerning first=902 second=111 amount=-1 -kerning first=87 second=83 amount=-1 -kerning first=107 second=245 amount=-2 -kerning first=247 second=375 amount=-1 -kerning first=967 second=210 amount=-2 -kerning first=266 second=8211 amount=-1 -kerning first=45 second=194 amount=-2 -kerning first=1046 second=352 amount=-1 -kerning first=188 second=84 amount=-5 -kerning first=300 second=234 amount=-1 -kerning first=62 second=1090 amount=-3 -kerning first=65 second=334 amount=-2 -kerning first=1081 second=277 amount=-1 -kerning first=325 second=376 amount=-5 -kerning first=8369 second=1079 amount=-1 -kerning first=900 second=1035 amount=-5 -kerning first=903 second=291 amount=-1 -kerning first=1118 second=211 amount=-2 -kerning first=343 second=8212 amount=-1 -kerning first=1210 second=113 amount=-1 -kerning first=254 second=85 amount=-2 -kerning first=374 second=235 amount=-4 -kerning first=968 second=365 amount=-1 -kerning first=164 second=335 amount=-1 -kerning first=167 second=97 amount=-1 -kerning first=43 second=1108 amount=-1 -kerning first=189 second=259 amount=-1 -kerning first=192 second=34 amount=-3 -kerning first=1087 second=224 amount=-1 -kerning first=212 second=196 amount=-2 -kerning first=323 second=8250 amount=-1 -kerning first=1119 second=366 amount=-2 -kerning first=950 second=171 amount=-3 -kerning first=966 second=8217 amount=-1 -kerning first=165 second=966 amount=-1 -kerning first=168 second=275 amount=-1 -kerning first=8218 second=355 amount=-1 -kerning first=47 second=1033 amount=-4 -kerning first=50 second=289 amount=-1 -kerning first=305 second=337 amount=-1 -kerning first=310 second=99 amount=-2 -kerning first=73 second=221 amount=-5 -kerning first=93 second=363 amount=-1 -kerning first=233 second=967 amount=-2 -kerning first=376 second=1097 amount=-3 -kerning first=379 second=338 amount=-1 -kerning first=382 second=100 amount=-1 -kerning first=973 second=941 amount=-1 -kerning first=1027 second=250 amount=-1 -kerning first=282 second=352 amount=-1 -kerning first=54 second=234 amount=-1 -kerning first=1065 second=1241 amount=-1 -kerning first=194 second=364 amount=-2 -kerning first=306 second=968 amount=-1 -kerning first=311 second=277 amount=-2 -kerning first=74 second=376 amount=-5 -kerning first=214 second=1035 amount=-5 -kerning first=338 second=211 amount=-2 -kerning first=916 second=339 amount=-1 -kerning first=94 second=1059 amount=-2 -kerning first=91 second=8212 amount=-2 -kerning first=926 second=101 amount=-1 -kerning first=363 second=113 amount=-1 -kerning first=955 second=263 amount=-1 -kerning first=120 second=235 amount=-2 -kerning first=260 second=365 amount=-1 -kerning first=8240 second=240 amount=-1 -kerning first=192 second=8216 amount=-3 -kerning first=316 second=224 amount=-1 -kerning first=72 second=8250 amount=-1 -kerning first=81 second=86 amount=-2 -kerning first=1106 second=39 amount=-1 -kerning first=336 second=1184 amount=-2 -kerning first=928 second=279 amount=-1 -kerning first=258 second=8217 amount=-3 -kerning first=39 second=197 amount=-3 -kerning first=1036 second=355 amount=-1 -kerning first=1039 second=115 amount=-1 -kerning first=182 second=87 amount=-5 -kerning first=59 second=337 amount=-1 -kerning first=62 second=99 amount=-1 -kerning first=202 second=249 amount=-1 -kerning first=337 second=8218 amount=-1 -kerning first=1186 second=356 amount=-2 -kerning first=242 second=1078 amount=-2 -kerning first=962 second=368 amount=-2 -kerning first=125 second=338 amount=-2 -kerning first=161 second=100 amount=-1 -kerning first=40 second=352 amount=-1 -kerning first=1047 second=65 amount=-1 -kerning first=183 second=262 amount=-2 -kerning first=298 second=187 amount=-1 -kerning first=60 second=968 amount=-1 -kerning first=63 second=277 amount=-1 -kerning first=206 second=199 amount=-2 -kerning first=318 second=1079 amount=-1 -kerning first=8370 second=269 amount=-1 -kerning first=86 second=211 amount=-2 -kerning first=223 second=1098 amount=-3 -kerning first=246 second=955 amount=-1 -kerning first=249 second=263 amount=-1 -kerning first=963 second=1066 amount=-5 -kerning first=960 second=8221 amount=-3 -kerning first=8212 second=118 amount=-1 -kerning first=1048 second=240 amount=-1 -kerning first=204 second=1118 amount=-1 -kerning first=207 second=354 amount=-5 -kerning first=327 second=266 amount=-2 -kerning first=331 second=39 amount=-1 -kerning first=8378 second=217 amount=-2 -kerning first=1168 second=79 amount=-2 -kerning first=1202 second=920 amount=-1 -kerning first=253 second=213 amount=-2 -kerning first=376 second=103 amount=-4 -kerning first=166 second=225 amount=-1 -kerning first=276 second=355 amount=-1 -kerning first=185 second=1185 amount=-3 -kerning first=188 second=367 amount=-1 -kerning first=68 second=379 amount=-1 -kerning first=903 second=1101 amount=-1 -kerning first=85 second=8218 amount=-1 -kerning first=1118 second=945 amount=-1 -kerning first=357 second=116 amount=-1 -kerning first=254 second=368 amount=-2 -kerning first=374 second=972 amount=-4 -kerning first=377 second=281 amount=-1 -kerning first=8221 second=243 amount=-1 -kerning first=49 second=1241 amount=-1 -kerning first=52 second=187 amount=-1 -kerning first=186 second=8220 amount=-3 -kerning first=69 second=1079 amount=-1 -kerning first=1095 second=269 amount=-1 -kerning first=95 second=251 amount=-1 -kerning first=255 second=1066 amount=-5 -kerning first=252 second=8221 amount=-3 -kerning first=1033 second=118 amount=-1 -kerning first=1067 second=283 amount=-1 -kerning first=193 second=943 amount=-1 -kerning first=196 second=252 amount=-1 -kerning first=305 second=1256 amount=-2 -kerning first=76 second=266 amount=-1 -kerning first=1099 second=217 amount=-2 -kerning first=923 second=229 amount=-1 -kerning first=1176 second=359 amount=-1 -kerning first=951 second=1195 amount=-1 -kerning first=1263 second=286 amount=-2 -kerning first=1256 second=1026 amount=-2 -kerning first=379 second=1257 amount=-1 -kerning first=37 second=115 amount=-1 -kerning first=176 second=267 amount=-1 -kerning first=1071 second=230 amount=-1 -kerning first=8365 second=45 amount=-2 -kerning first=80 second=214 amount=-2 -kerning first=338 second=945 amount=-1 -kerning first=916 second=1262 amount=-2 -kerning first=926 second=1240 amount=-2 -kerning first=100 second=356 amount=-5 -kerning first=103 second=116 amount=-1 -kerning first=955 second=1069 amount=-1 -kerning first=963 second=81 amount=-2 -kerning first=123 second=281 amount=-1 -kerning first=120 second=972 amount=-2 -kerning first=8240 second=1028 amount=-2 -kerning first=8260 second=288 amount=-2 -kerning first=61 second=227 amount=-1 -kerning first=204 second=117 amount=-1 -kerning first=201 second=357 amount=-1 -kerning first=321 second=269 amount=-1 -kerning first=8366 second=220 amount=-2 -kerning first=221 second=973 amount=-2 -kerning first=936 second=332 amount=-2 -kerning first=247 second=216 amount=-2 -kerning first=160 second=228 amount=-1 -kerning first=273 second=118 amount=-4 -kerning first=42 second=240 amount=-1 -kerning first=39 second=916 amount=-3 -kerning first=178 second=1194 amount=-2 -kerning first=182 second=370 amount=-2 -kerning first=297 second=283 amount=-1 -kerning first=59 second=1256 amount=-2 -kerning first=1078 second=333 amount=-2 -kerning first=325 second=217 amount=-2 -kerning first=8369 second=375 amount=-1 -kerning first=79 second=8222 amount=-1 -kerning first=88 second=79 amount=-3 -kerning first=1107 second=949 amount=-1 -kerning first=351 second=119 amount=-1 -kerning first=942 second=271 amount=-1 -kerning first=105 second=920 amount=-2 -kerning first=371 second=286 amount=-2 -kerning first=125 second=1257 amount=-1 -kerning first=270 second=1046 amount=-3 -kerning first=301 second=230 amount=-1 -kerning first=1079 second=964 amount=-1 -kerning first=1087 second=45 amount=-2 -kerning first=209 second=242 amount=-1 -kerning first=1083 second=273 amount=-1 -kerning first=323 second=947 amount=-4 -kerning first=8365 second=8249 amount=-3 -kerning first=904 second=287 amount=-1 -kerning first=86 second=945 amount=-1 -kerning first=946 second=219 amount=-2 -kerning first=947 second=1108 amount=-1 -kerning first=249 second=1069 amount=-1 -kerning first=255 second=81 amount=-2 -kerning first=375 second=231 amount=-1 -kerning first=966 second=1175 amount=-2 -kerning first=278 second=243 amount=-1 -kerning first=47 second=343 amount=-1 -kerning first=1048 second=1028 amount=-2 -kerning first=299 second=1263 amount=-1 -kerning first=70 second=269 amount=-1 +kerning first=910 second=199 amount=-3 +kerning first=910 second=210 amount=-3 +kerning first=910 second=211 amount=-3 +kerning first=910 second=212 amount=-3 +kerning first=910 second=213 amount=-3 +kerning first=910 second=214 amount=-3 +kerning first=910 second=216 amount=-3 +kerning first=910 second=224 amount=-4 +kerning first=910 second=225 amount=-4 +kerning first=910 second=226 amount=-4 +kerning first=910 second=227 amount=-4 +kerning first=910 second=228 amount=-4 +kerning first=910 second=229 amount=-4 +kerning first=910 second=230 amount=-4 +kerning first=910 second=231 amount=-4 kerning first=910 second=232 amount=-4 -kerning first=1117 second=1176 amount=-1 -kerning first=1168 second=362 amount=-2 -kerning first=356 second=244 amount=-3 -kerning first=948 second=374 amount=-5 -kerning first=1220 second=289 amount=-1 -kerning first=1027 second=71 amount=-2 -kerning first=166 second=962 amount=-1 -kerning first=8220 second=351 amount=-1 -kerning first=8224 second=111 amount=-1 -kerning first=51 second=283 amount=-1 -kerning first=1065 second=233 amount=-1 -kerning first=306 second=333 amount=-1 -kerning first=74 second=217 amount=-2 -kerning first=94 second=359 amount=-1 -kerning first=1118 second=8211 amount=-2 -kerning first=97 second=119 amount=-1 -kerning first=237 second=271 amount=-1 -kerning first=360 second=194 amount=-2 -kerning first=955 second=84 amount=-5 -kerning first=117 second=286 amount=-2 -kerning first=174 second=218 amount=-2 -kerning first=8225 second=291 amount=-1 -kerning first=55 second=230 amount=-1 -kerning first=195 second=360 amount=-2 -kerning first=316 second=45 amount=-2 -kerning first=313 second=273 amount=-1 -kerning first=72 second=947 amount=-4 -kerning first=1087 second=8249 amount=-3 -kerning first=928 second=97 amount=-1 -kerning first=358 second=1108 amount=-1 -kerning first=361 second=347 amount=-1 -kerning first=956 second=259 amount=-1 -kerning first=961 second=34 amount=-1 -kerning first=121 second=231 amount=-1 -kerning first=36 second=243 amount=-1 -kerning first=171 second=1202 amount=-1 -kerning first=175 second=373 amount=-4 -kerning first=289 second=288 amount=-2 -kerning first=53 second=1263 amount=-1 -kerning first=317 second=220 amount=-2 -kerning first=8364 second=171 amount=-3 -kerning first=923 second=966 amount=-1 -kerning first=931 second=275 amount=-1 -kerning first=102 second=244 amount=-1 -kerning first=362 second=1033 amount=-1 -kerning first=365 second=289 amount=-1 -kerning first=1037 second=351 amount=-1 -kerning first=1041 second=111 amount=-1 -kerning first=183 second=83 amount=-1 -kerning first=60 second=333 amount=-1 -kerning first=203 second=245 amount=-1 -kerning first=318 second=375 amount=-1 -kerning first=80 second=949 amount=-1 -kerning first=338 second=8211 amount=-2 -kerning first=249 second=84 amount=-5 -kerning first=369 second=234 amount=-1 -kerning first=963 second=364 amount=-2 -kerning first=126 second=334 amount=-2 -kerning first=123 second=1090 amount=-3 -kerning first=271 second=246 amount=-1 -kerning first=41 second=346 amount=-1 -kerning first=8260 second=1098 amount=-3 -kerning first=64 second=273 amount=-1 -kerning first=61 second=964 amount=-3 -kerning first=67 second=45 amount=-1 -kerning first=316 second=8249 amount=-3 -kerning first=327 second=85 amount=-2 -kerning first=8372 second=263 amount=-1 -kerning first=902 second=235 amount=-1 -kerning first=107 second=347 amount=-1 -kerning first=250 second=259 amount=-1 -kerning first=253 second=34 amount=-3 -kerning first=961 second=8216 amount=-1 -kerning first=160 second=965 amount=-1 -kerning first=42 second=1028 amount=-2 -kerning first=300 second=336 amount=-2 -kerning first=1085 second=171 amount=-3 -kerning first=234 second=47 amount=-1 -kerning first=354 second=197 amount=-6 -kerning first=374 second=337 amount=-4 -kerning first=377 second=99 amount=-1 -kerning first=968 second=940 amount=-1 -kerning first=971 second=249 amount=-1 -kerning first=167 second=221 amount=-5 -kerning first=280 second=111 amount=-1 -kerning first=49 second=233 amount=-1 -kerning first=189 second=363 amount=-1 -kerning first=186 second=1177 amount=-1 -kerning first=69 second=375 amount=-1 -kerning first=86 second=8211 amount=-2 -kerning first=912 second=100 amount=-1 -kerning first=89 second=1051 amount=-5 -kerning first=1170 second=250 amount=-1 -kerning first=1119 second=941 amount=-1 -kerning first=950 second=262 amount=-2 -kerning first=1219 second=1241 amount=-1 -kerning first=1224 second=187 amount=-1 -kerning first=255 second=364 amount=-2 -kerning first=375 second=968 amount=-1 -kerning first=378 second=277 amount=-1 -kerning first=1026 second=199 amount=-2 -kerning first=168 second=376 amount=-5 -kerning first=278 second=1035 amount=-5 -kerning first=1064 second=339 amount=-1 -kerning first=1067 second=101 amount=-1 -kerning first=190 second=1059 amount=-2 -kerning first=70 second=1074 amount=-1 -kerning first=1090 second=955 amount=-4 -kerning first=1096 second=263 amount=-1 -kerning first=67 second=8249 amount=-1 -kerning first=76 second=85 amount=-1 -kerning first=8378 second=8221 amount=-3 -kerning first=910 second=969 amount=-4 -kerning first=253 second=8216 amount=-3 -kerning first=34 second=196 amount=-3 -kerning first=1027 second=354 amount=-5 -kerning first=973 second=1118 amount=-1 -kerning first=166 second=8250 amount=-1 -kerning first=54 second=336 amount=-2 -kerning first=197 second=248 amount=-1 -kerning first=315 second=171 amount=-3 -kerning first=926 second=225 amount=-1 -kerning first=952 second=1185 amount=-3 -kerning first=955 second=367 amount=-1 -kerning first=120 second=337 amount=-2 -kerning first=123 second=99 amount=-1 -kerning first=260 second=940 amount=-1 -kerning first=38 second=111 amount=-1 -kerning first=35 second=351 amount=-1 -kerning first=177 second=261 amount=-1 -kerning first=174 second=953 amount=-1 -kerning first=8225 second=1101 amount=-1 -kerning first=1073 second=226 amount=-1 -kerning first=8363 second=268 amount=-2 -kerning first=221 second=338 amount=-3 -kerning first=1194 second=65 amount=-1 -kerning first=367 second=187 amount=-1 -kerning first=121 second=968 amount=-1 -kerning first=124 second=277 amount=-1 -kerning first=36 second=1035 amount=-5 -kerning first=39 second=291 amount=-1 -kerning first=182 second=211 amount=-2 -kerning first=294 second=339 amount=-1 -kerning first=297 second=101 amount=-1 -kerning first=289 second=1098 amount=-3 -kerning first=202 second=353 amount=-1 -kerning first=205 second=113 amount=-1 -kerning first=322 second=263 amount=-1 -kerning first=8369 second=216 amount=-2 -kerning first=1099 second=8221 amount=-3 -kerning first=962 second=943 amount=-1 -kerning first=965 second=252 amount=-1 -kerning first=161 second=224 amount=-1 -kerning first=270 second=354 amount=-2 -kerning first=179 second=1184 amount=-5 -kerning first=183 second=366 amount=-2 -kerning first=298 second=279 amount=-1 -kerning first=8365 second=1195 amount=-1 -kerning first=8370 second=371 amount=-1 -kerning first=904 second=103 amount=-1 -kerning first=80 second=8217 amount=-3 -kerning first=249 second=367 amount=-1 -kerning first=246 second=1185 amount=-1 -kerning first=271 second=1038 amount=-2 -kerning first=302 second=226 amount=-1 -kerning first=1084 second=268 amount=-2 -kerning first=327 second=368 amount=-2 -kerning first=8372 second=1069 amount=-1 -kerning first=902 second=972 amount=-1 -kerning first=905 second=281 amount=-1 -kerning first=87 second=941 amount=-3 -kerning first=230 second=380 amount=-1 -kerning first=356 second=65 amount=-6 -kerning first=113 second=187 amount=-1 -kerning first=247 second=8220 amount=-3 -kerning first=376 second=227 amount=-4 -kerning first=973 second=117 amount=-1 -kerning first=163 second=1079 amount=-1 -kerning first=169 second=89 amount=-5 -kerning first=48 second=339 amount=-1 -kerning first=1049 second=973 amount=-1 -kerning first=51 second=101 amount=-1 -kerning first=191 second=251 amount=-1 -kerning first=68 second=955 amount=-2 -kerning first=325 second=8221 amount=-3 -kerning first=1174 second=118 amount=-2 -kerning first=357 second=240 amount=-1 -kerning first=354 second=916 amount=-6 -kerning first=1223 second=283 amount=-1 -kerning first=254 second=943 amount=-1 -kerning first=374 second=1256 amount=-3 -kerning first=170 second=266 amount=-2 -kerning first=174 second=39 amount=-3 -kerning first=49 second=970 amount=-1 -kerning first=55 second=51 amount=-1 -kerning first=52 second=279 amount=-1 -kerning first=75 second=213 amount=-3 -kerning first=1087 second=1195 amount=-1 -kerning first=1095 second=371 amount=-1 -kerning first=95 second=355 amount=-1 -kerning first=238 second=267 amount=-1 -kerning first=175 second=214 amount=-2 -kerning first=8226 second=287 amount=-1 -kerning first=56 second=226 amount=-1 -kerning first=1064 second=1262 amount=-2 -kerning first=1067 second=1240 amount=-2 -kerning first=196 second=356 amount=-5 -kerning first=314 second=268 amount=-2 -kerning first=8361 second=219 amount=-2 -kerning first=76 second=368 amount=-1 -kerning first=1096 second=1069 amount=-1 -kerning first=1179 second=243 amount=-1 -kerning first=176 second=369 amount=-1 -kerning first=287 second=973 amount=-1 -kerning first=1071 second=332 amount=-2 -kerning first=318 second=216 amount=-2 -kerning first=74 second=8221 amount=-3 -kerning first=77 second=1066 amount=-5 -kerning first=223 second=228 amount=-1 -kerning first=926 second=962 amount=-1 -kerning first=103 second=240 amount=-1 -kerning first=240 second=1194 amount=-2 -kerning first=271 second=67 amount=-2 -kerning first=184 second=79 amount=-2 -kerning first=296 second=229 amount=-1 -kerning first=1073 second=963 amount=-1 -kerning first=1076 second=271 amount=-1 -kerning first=201 second=920 amount=-2 -kerning first=321 second=371 amount=-1 -kerning first=316 second=1195 amount=-1 -kerning first=8372 second=84 amount=-5 -kerning first=84 second=253 amount=-2 -kerning first=221 second=1257 amount=-4 -kerning first=964 second=360 amount=-2 -kerning first=273 second=242 amount=-1 -kerning first=182 second=945 amount=-1 -kerning first=297 second=1240 amount=-2 -kerning first=294 second=1262 amount=-2 -kerning first=65 second=268 amount=-2 -kerning first=1081 second=219 amount=-2 -kerning first=322 second=1069 amount=-1 -kerning first=903 second=231 amount=-1 -kerning first=1118 second=121 amount=-1 -kerning first=942 second=373 amount=-4 -kerning first=164 second=269 amount=-1 -kerning first=8211 second=350 amount=-1 -kerning first=43 second=973 amount=-1 -kerning first=1051 second=232 amount=-1 -kerning first=301 second=332 amount=-2 -kerning first=69 second=216 amount=-2 -kerning first=1083 second=374 amount=-5 -kerning first=1079 second=1203 amount=-1 -kerning first=92 second=118 amount=-4 -kerning first=1170 second=71 amount=-2 -kerning first=950 second=83 amount=-1 -kerning first=1219 second=233 amount=-1 -kerning first=375 second=333 amount=-1 -kerning first=372 second=1087 amount=-2 -kerning first=168 second=217 amount=-2 -kerning first=8218 second=290 amount=-1 -kerning first=50 second=229 amount=-1 -kerning first=193 second=119 amount=-4 -kerning first=190 second=359 amount=-1 -kerning first=302 second=963 amount=-1 -kerning first=305 second=271 amount=-1 -kerning first=70 second=371 amount=-1 -kerning first=1096 second=84 amount=-5 -kerning first=210 second=1026 amount=-2 -kerning first=905 second=1090 amount=-3 +kerning first=910 second=233 amount=-4 +kerning first=910 second=234 amount=-4 +kerning first=910 second=235 amount=-4 +kerning first=910 second=240 amount=-4 +kerning first=910 second=241 amount=-3 +kerning first=910 second=242 amount=-4 +kerning first=910 second=243 amount=-4 +kerning first=910 second=244 amount=-4 +kerning first=910 second=245 amount=-4 +kerning first=910 second=246 amount=-4 +kerning first=910 second=248 amount=-4 +kerning first=910 second=249 amount=-2 +kerning first=910 second=250 amount=-2 +kerning first=910 second=251 amount=-2 +kerning first=910 second=252 amount=-2 +kerning first=910 second=253 amount=-2 +kerning first=910 second=256 amount=-5 +kerning first=910 second=257 amount=-4 +kerning first=910 second=258 amount=-5 +kerning first=910 second=259 amount=-4 +kerning first=910 second=260 amount=-5 +kerning first=910 second=261 amount=-4 +kerning first=910 second=262 amount=-3 +kerning first=910 second=263 amount=-4 +kerning first=910 second=266 amount=-3 +kerning first=910 second=267 amount=-4 +kerning first=910 second=268 amount=-3 +kerning first=910 second=269 amount=-4 +kerning first=910 second=271 amount=-4 +kerning first=910 second=273 amount=-4 +kerning first=910 second=275 amount=-4 +kerning first=910 second=277 amount=-4 +kerning first=910 second=279 amount=-4 +kerning first=910 second=281 amount=-4 +kerning first=910 second=283 amount=-4 +kerning first=910 second=286 amount=-3 +kerning first=910 second=287 amount=-4 +kerning first=910 second=288 amount=-3 +kerning first=910 second=289 amount=-4 +kerning first=910 second=290 amount=-3 +kerning first=910 second=291 amount=-4 +kerning first=910 second=324 amount=-3 +kerning first=910 second=326 amount=-3 +kerning first=910 second=328 amount=-3 +kerning first=910 second=331 amount=-3 +kerning first=910 second=332 amount=-3 +kerning first=910 second=333 amount=-4 kerning first=910 second=334 amount=-3 -kerning first=1171 second=246 amount=-1 -kerning first=236 second=218 amount=-2 -kerning first=356 second=346 amount=-1 -kerning first=256 second=360 amount=-2 -kerning first=376 second=964 amount=-2 -kerning first=379 second=273 amount=-1 -kerning first=166 second=947 amount=-4 -kerning first=169 second=372 amount=-5 -kerning first=282 second=287 amount=-1 -kerning first=8224 second=235 amount=-1 -kerning first=51 second=1240 amount=-2 -kerning first=48 second=1262 amount=-2 -kerning first=1065 second=335 amount=-1 -kerning first=77 second=81 amount=-2 -kerning first=338 second=121 amount=-1 -kerning first=237 second=373 amount=-4 -kerning first=357 second=1028 amount=-2 -kerning first=55 second=332 amount=-2 -kerning first=198 second=244 amount=-1 -kerning first=313 second=374 amount=-6 -kerning first=8363 second=87 amount=-5 -kerning first=928 second=221 amount=-5 -kerning first=1185 second=111 amount=-2 -kerning first=235 second=8230 amount=-1 -kerning first=956 second=363 amount=-1 -kerning first=121 second=333 amount=-1 -kerning first=1036 second=290 amount=-3 -kerning first=175 second=949 amount=-1 -kerning first=178 second=257 amount=-1 -kerning first=56 second=963 amount=-1 -kerning first=59 second=271 amount=-1 -kerning first=322 second=84 amount=-5 -kerning first=8364 second=262 amount=-2 -kerning first=343 second=246 amount=-1 -kerning first=931 second=376 amount=-5 -kerning first=958 second=1059 amount=-2 -kerning first=954 second=8212 amount=-3 -kerning first=125 second=273 amount=-1 -kerning first=161 second=45 amount=-2 -kerning first=40 second=287 amount=-1 -kerning first=1041 second=235 amount=-1 -kerning first=298 second=97 amount=-1 -kerning first=63 second=219 amount=-2 -kerning first=200 second=1108 amount=-1 -kerning first=203 second=347 amount=-1 -kerning first=323 second=259 amount=-1 -kerning first=8370 second=212 amount=-2 -kerning first=326 second=34 amount=-1 -kerning first=86 second=121 amount=-2 -kerning first=223 second=965 amount=-1 -kerning first=926 second=8250 amount=-1 -kerning first=103 second=1028 amount=-2 -kerning first=369 second=336 amount=-2 -kerning first=162 second=220 amount=-2 -kerning first=271 second=350 amount=-1 -kerning first=180 second=1176 amount=-1 -kerning first=184 second=362 amount=-2 -kerning first=187 second=122 amount=-1 -kerning first=296 second=966 amount=-1 -kerning first=299 second=275 amount=-1 -kerning first=64 second=374 amount=-5 -kerning first=207 second=289 amount=-1 -kerning first=1084 second=87 amount=-5 -kerning first=8372 second=367 amount=-1 -kerning first=8366 second=1185 amount=-3 -kerning first=902 second=337 amount=-1 -kerning first=905 second=99 amount=-1 -kerning first=90 second=71 amount=-1 -kerning first=1117 second=249 amount=-1 -kerning first=944 second=261 amount=-1 -kerning first=247 second=1177 amount=-1 -kerning first=250 second=363 amount=-1 -kerning first=163 second=375 amount=-1 -kerning first=276 second=290 amount=-2 -kerning first=1049 second=338 amount=-2 -kerning first=182 second=8211 amount=-2 -kerning first=1062 second=100 amount=-1 -kerning first=71 second=84 amount=-1 -kerning first=1085 second=262 amount=-2 -kerning first=8369 second=8220 amount=-3 -kerning first=903 second=968 amount=-1 -kerning first=88 second=934 amount=-5 -kerning first=91 second=246 amount=-1 -kerning first=906 second=277 amount=-1 -kerning first=354 second=291 amount=-2 -kerning first=1203 second=1098 amount=-2 -kerning first=1210 second=339 amount=-1 -kerning first=251 second=1059 amount=-2 -kerning first=1223 second=101 amount=-1 -kerning first=971 second=353 amount=-1 -kerning first=161 second=8249 amount=-3 -kerning first=170 second=85 amount=-2 -kerning first=280 second=235 amount=-1 -kerning first=49 second=335 amount=-1 -kerning first=52 second=97 amount=-1 -kerning first=72 second=259 amount=-1 -kerning first=1095 second=212 amount=-2 -kerning first=326 second=8216 amount=-1 -kerning first=912 second=224 amount=-1 -kerning first=1170 second=354 amount=-5 -kerning first=1119 second=1118 amount=-1 -kerning first=946 second=1184 amount=-5 -kerning first=950 second=366 amount=-2 -kerning first=1224 second=279 amount=-1 -kerning first=258 second=248 amount=-1 -kerning first=1219 second=970 amount=-1 -kerning first=1033 second=63 amount=-5 -kerning first=171 second=260 amount=-1 -kerning first=8226 second=103 amount=-1 -kerning first=50 second=966 amount=-1 -kerning first=53 second=275 amount=-1 -kerning first=1067 second=225 amount=-1 -kerning first=314 second=87 amount=-5 -kerning first=1096 second=367 amount=-1 -kerning first=910 second=1220 amount=-3 -kerning first=96 second=351 amount=-1 -kerning first=1171 second=1038 amount=-2 -kerning first=239 second=261 amount=-1 -kerning first=236 second=953 amount=-1 -kerning first=1263 second=226 amount=-1 -kerning first=262 second=198 amount=-1 -kerning first=176 second=210 amount=-2 -kerning first=287 second=338 amount=-2 -kerning first=8224 second=972 amount=-1 -kerning first=197 second=352 amount=-1 -kerning first=315 second=262 amount=-1 -kerning first=77 second=364 amount=-2 -kerning first=916 second=1079 amount=-1 -kerning first=100 second=291 amount=-1 -kerning first=934 second=89 amount=-5 -kerning first=363 second=339 amount=-1 -kerning first=960 second=251 amount=-1 -kerning first=38 second=235 amount=-1 -kerning first=177 second=365 amount=-1 -kerning first=8260 second=228 amount=-1 -kerning first=321 second=212 amount=-2 -kerning first=8363 second=370 amount=-2 -kerning first=84 second=74 amount=-5 -kerning first=936 second=266 amount=-2 -kerning first=941 second=39 amount=-1 -kerning first=367 second=279 amount=-1 -kerning first=160 second=171 amount=-3 -kerning first=175 second=8217 amount=-3 -kerning first=297 second=225 amount=-1 -kerning first=65 second=87 amount=-5 -kerning first=1078 second=267 amount=-2 -kerning first=317 second=1185 amount=-3 -kerning first=322 second=367 amount=-1 -kerning first=942 second=214 amount=-2 -kerning first=242 second=8218 amount=-1 -kerning first=371 second=226 amount=-1 -kerning first=965 second=356 amount=-5 -kerning first=968 second=116 amount=-1 -kerning first=43 second=338 amount=-2 -kerning first=1041 second=972 amount=-1 -kerning first=186 second=250 amount=-1 -kerning first=183 second=941 amount=-1 -kerning first=206 second=1241 amount=-1 -kerning first=209 second=187 amount=-1 -kerning first=318 second=8220 amount=-3 -kerning first=904 second=227 amount=-1 -kerning first=89 second=199 amount=-3 -kerning first=1119 second=117 amount=-1 -kerning first=252 second=251 amount=-1 -kerning first=165 second=263 amount=-1 -kerning first=8218 second=106 amount=2 -kerning first=70 second=212 amount=-1 -kerning first=1080 second=1194 amount=-2 -kerning first=1084 second=370 amount=-2 -kerning first=327 second=943 amount=-1 -kerning first=902 second=1256 amount=-2 -kerning first=87 second=1118 amount=-1 -kerning first=1171 second=67 amount=-2 -kerning first=236 second=39 amount=-3 -kerning first=951 second=79 amount=-2 -kerning first=113 second=279 amount=-1 -kerning first=1220 second=229 amount=-1 -kerning first=376 second=328 amount=-3 -kerning first=169 second=213 amount=-2 -kerning first=282 second=103 amount=-1 -kerning first=1049 second=1257 amount=-1 -kerning first=51 second=225 amount=-1 -kerning first=191 second=355 amount=-1 -kerning first=194 second=115 amount=-1 -kerning first=306 second=267 amount=-1 -kerning first=91 second=1038 amount=-2 -kerning first=1174 second=242 amount=-1 -kerning first=237 second=214 amount=-2 -kerning first=354 second=1101 amount=-2 -kerning first=117 second=226 amount=-1 -kerning first=1223 second=1240 amount=-2 -kerning first=1210 second=1262 amount=-2 -kerning first=260 second=116 amount=-1 -kerning first=170 second=368 amount=-2 -kerning first=280 second=972 amount=-1 -kerning first=8225 second=231 amount=-1 -kerning first=69 second=8220 amount=-3 -kerning first=238 second=369 amount=-1 -kerning first=358 second=973 amount=-1 -kerning first=168 second=8221 amount=-3 -kerning first=171 second=1066 amount=-1 -kerning first=289 second=228 amount=-1 -kerning first=1067 second=962 amount=-1 -kerning first=314 second=370 amount=-2 -kerning first=310 second=1194 amount=-3 -kerning first=8364 second=83 amount=-1 -kerning first=931 second=217 amount=-2 -kerning first=365 second=229 amount=-1 -kerning first=962 second=119 amount=-4 -kerning first=958 second=359 amount=-1 -kerning first=1263 second=963 amount=-1 -kerning first=382 second=1195 amount=-1 -kerning first=40 second=103 amount=-1 -kerning first=1037 second=286 amount=-2 -kerning first=1034 second=1026 amount=-5 -kerning first=179 second=253 amount=-1 -kerning first=287 second=1257 amount=-1 -kerning first=8230 second=1090 amount=-3 -kerning first=60 second=267 amount=-1 -kerning first=1103 second=360 amount=-2 -kerning first=1108 second=120 amount=-1 -kerning first=926 second=947 amount=-4 -kerning first=934 second=372 amount=-5 -kerning first=100 second=1101 amount=-1 -kerning first=363 second=1262 amount=-2 -kerning first=126 second=268 amount=-2 -kerning first=38 second=972 amount=-1 -kerning first=44 second=53 amount=-1 -kerning first=41 second=281 amount=-1 -kerning first=1044 second=231 amount=-1 -kerning first=8260 second=965 amount=-1 -kerning first=87 second=117 amount=-2 -kerning first=1202 second=232 amount=-1 -kerning first=967 second=244 amount=-1 -kerning first=163 second=216 amount=-2 -kerning first=276 second=106 amount=1 -kerning first=188 second=118 amount=-4 -kerning first=297 second=962 amount=-1 -kerning first=62 second=1194 amount=-2 -kerning first=65 second=370 amount=-2 -kerning first=1085 second=83 amount=-1 -kerning first=8369 second=1177 amount=-1 -kerning first=903 second=333 amount=-1 -kerning first=85 second=1044 amount=-1 -kerning first=91 second=67 amount=-2 -kerning first=1118 second=245 amount=-1 -kerning first=942 second=949 amount=-1 -kerning first=251 second=359 amount=-1 -kerning first=254 second=119 amount=-4 -kerning first=371 second=963 amount=-1 -kerning first=374 second=271 amount=-4 -kerning first=161 second=1195 amount=-1 -kerning first=164 second=371 amount=-1 -kerning first=274 second=1026 amount=-5 -kerning first=8217 second=234 amount=-1 -kerning first=43 second=1257 amount=-1 -kerning first=1051 second=334 amount=-2 -kerning first=304 second=218 amount=-2 -kerning first=330 second=360 amount=-2 -kerning first=8370 second=8212 amount=-2 -kerning first=8377 second=1059 amount=-2 -kerning first=904 second=964 amount=-3 -kerning first=912 second=45 amount=-2 -kerning first=92 second=242 amount=-1 -kerning first=89 second=923 amount=-5 -kerning first=229 second=947 amount=-1 -kerning first=333 second=120 amount=-2 -kerning first=1219 second=335 amount=-1 -kerning first=1224 second=97 amount=-1 -kerning first=165 second=1069 amount=-1 -kerning first=47 second=1084 amount=-1 -kerning first=193 second=243 amount=-1 -kerning first=305 second=373 amount=-4 -kerning first=915 second=220 amount=-2 -kerning first=1171 second=350 amount=-1 -kerning first=948 second=1176 amount=-1 -kerning first=951 second=362 amount=-2 -kerning first=113 second=1085 amount=2 -kerning first=1220 second=966 amount=-1 -kerning first=376 second=1203 amount=-2 -kerning first=1027 second=289 amount=-1 -kerning first=8224 second=337 amount=-1 -kerning first=51 second=962 amount=-1 -kerning first=1068 second=221 amount=-5 -kerning first=338 second=245 amount=-1 +kerning first=910 second=335 amount=-4 +kerning first=910 second=336 amount=-3 +kerning first=910 second=337 amount=-4 +kerning first=910 second=338 amount=-3 +kerning first=910 second=339 amount=-4 +kerning first=910 second=341 amount=-3 +kerning first=910 second=343 amount=-3 +kerning first=910 second=345 amount=-3 +kerning first=910 second=346 amount=-1 +kerning first=910 second=347 amount=-3 +kerning first=910 second=350 amount=-1 +kerning first=910 second=351 amount=-3 +kerning first=910 second=352 amount=-1 +kerning first=910 second=353 amount=-3 +kerning first=910 second=361 amount=-2 +kerning first=910 second=363 amount=-2 +kerning first=910 second=365 amount=-2 +kerning first=910 second=367 amount=-2 +kerning first=910 second=369 amount=-2 +kerning first=910 second=371 amount=-2 +kerning first=910 second=373 amount=-2 +kerning first=910 second=375 amount=-2 +kerning first=910 second=378 amount=-2 +kerning first=910 second=380 amount=-2 +kerning first=910 second=382 amount=-2 +kerning first=910 second=913 amount=-5 +kerning first=910 second=916 amount=-5 +kerning first=910 second=920 amount=-3 +kerning first=910 second=923 amount=-5 +kerning first=910 second=927 amount=-3 +kerning first=910 second=937 amount=-2 +kerning first=910 second=940 amount=-4 +kerning first=910 second=941 amount=-4 +kerning first=910 second=942 amount=-3 +kerning first=910 second=943 amount=-2 +kerning first=910 second=945 amount=-4 +kerning first=910 second=947 amount=-2 +kerning first=910 second=949 amount=-4 +kerning first=910 second=950 amount=-2 +kerning first=910 second=951 amount=-3 +kerning first=910 second=952 amount=-2 +kerning first=910 second=953 amount=-2 +kerning first=910 second=954 amount=-3 +kerning first=910 second=955 amount=-2 +kerning first=910 second=957 amount=-2 +kerning first=910 second=959 amount=-4 +kerning first=910 second=961 amount=-5 +kerning first=910 second=962 amount=-4 +kerning first=910 second=963 amount=-4 +kerning first=910 second=964 amount=-2 +kerning first=910 second=965 amount=-2 +kerning first=910 second=966 amount=-4 +kerning first=910 second=967 amount=-2 +kerning first=910 second=968 amount=-2 +kerning first=910 second=969 amount=-4 +kerning first=910 second=970 amount=-2 +kerning first=910 second=972 amount=-4 +kerning first=910 second=973 amount=-2 +kerning first=910 second=974 amount=-4 +kerning first=910 second=1028 amount=-3 +kerning first=910 second=1029 amount=-1 +kerning first=910 second=1032 amount=-6 +kerning first=910 second=1033 amount=-5 +kerning first=910 second=1040 amount=-5 +kerning first=910 second=1044 amount=-5 +kerning first=910 second=1051 amount=-5 +kerning first=910 second=1054 amount=-3 +kerning first=910 second=1057 amount=-3 +kerning first=910 second=1069 amount=-2 +kerning first=910 second=1071 amount=-2 +kerning first=910 second=1072 amount=-4 +kerning first=910 second=1074 amount=-3 +kerning first=910 second=1075 amount=-3 +kerning first=910 second=1077 amount=-4 +kerning first=910 second=1078 amount=-2 +kerning first=910 second=1079 amount=-4 +kerning first=910 second=1080 amount=-3 +kerning first=910 second=1081 amount=-3 +kerning first=910 second=1082 amount=-3 +kerning first=910 second=1084 amount=-3 +kerning first=910 second=1085 amount=-3 +kerning first=910 second=1086 amount=-4 +kerning first=910 second=1087 amount=-3 +kerning first=910 second=1088 amount=-3 +kerning first=910 second=1089 amount=-4 +kerning first=910 second=1090 amount=-2 +kerning first=910 second=1091 amount=-2 +kerning first=910 second=1092 amount=-4 +kerning first=910 second=1093 amount=-2 +kerning first=910 second=1094 amount=-3 +kerning first=910 second=1096 amount=-3 +kerning first=910 second=1097 amount=-3 +kerning first=910 second=1098 amount=-2 +kerning first=910 second=1099 amount=-3 +kerning first=910 second=1100 amount=-3 +kerning first=910 second=1101 amount=-4 +kerning first=910 second=1102 amount=-3 +kerning first=910 second=1104 amount=-4 +kerning first=910 second=1105 amount=-4 +kerning first=910 second=1107 amount=-3 +kerning first=910 second=1108 amount=-4 +kerning first=910 second=1109 amount=-3 +kerning first=910 second=1114 amount=-3 +kerning first=910 second=1116 amount=-3 +kerning first=910 second=1117 amount=-3 +kerning first=910 second=1118 amount=-2 +kerning first=910 second=1119 amount=-3 +kerning first=910 second=1169 amount=-3 +kerning first=910 second=1175 amount=-2 +kerning first=910 second=1176 amount=-2 +kerning first=910 second=1177 amount=-4 +kerning first=910 second=1179 amount=-3 +kerning first=910 second=1185 amount=-2 +kerning first=910 second=1187 amount=-3 +kerning first=910 second=1194 amount=-3 +kerning first=910 second=1195 amount=-4 +kerning first=910 second=1199 amount=-2 +kerning first=910 second=1203 amount=-2 +kerning first=910 second=1220 amount=-3 +kerning first=910 second=1224 amount=-3 +kerning first=910 second=1240 amount=-3 +kerning first=910 second=1241 amount=-4 +kerning first=910 second=1256 amount=-3 +kerning first=910 second=1257 amount=-4 +kerning first=910 second=1263 amount=-2 +kerning first=910 second=1298 amount=-5 +kerning first=910 second=8211 amount=-4 +kerning first=910 second=8212 amount=-4 +kerning first=910 second=8218 amount=-4 +kerning first=910 second=8222 amount=-4 +kerning first=910 second=8230 amount=-4 +kerning first=910 second=8249 amount=-3 +kerning first=910 second=8250 amount=-2 +kerning first=911 second=89 amount=-2 +kerning first=911 second=221 amount=-2 +kerning first=911 second=374 amount=-2 +kerning first=911 second=376 amount=-2 +kerning first=911 second=933 amount=-2 +kerning first=911 second=939 amount=-2 +kerning first=911 second=950 amount=-1 +kerning first=911 second=1198 amount=-2 +kerning first=913 second=34 amount=-3 +kerning first=913 second=38 amount=-1 +kerning first=913 second=39 amount=-3 +kerning first=913 second=45 amount=-2 +kerning first=913 second=63 amount=-5 +kerning first=913 second=67 amount=-2 +kerning first=913 second=71 amount=-2 +kerning first=913 second=74 amount=-1 +kerning first=913 second=79 amount=-2 +kerning first=913 second=81 amount=-2 +kerning first=913 second=83 amount=-1 +kerning first=913 second=84 amount=-5 +kerning first=913 second=85 amount=-2 +kerning first=913 second=86 amount=-6 +kerning first=913 second=87 amount=-5 +kerning first=913 second=89 amount=-5 +kerning first=913 second=97 amount=-1 +kerning first=913 second=99 amount=-1 +kerning first=913 second=100 amount=-1 +kerning first=913 second=101 amount=-1 +kerning first=913 second=102 amount=-2 +kerning first=913 second=103 amount=-1 +kerning first=913 second=106 amount=1 +kerning first=913 second=111 amount=-1 +kerning first=913 second=113 amount=-1 +kerning first=913 second=115 amount=-1 +kerning first=913 second=116 amount=-1 +kerning first=913 second=117 amount=-1 +kerning first=913 second=118 amount=-4 +kerning first=913 second=119 amount=-4 +kerning first=913 second=121 amount=-1 +kerning first=913 second=171 amount=-3 +kerning first=913 second=173 amount=-2 +kerning first=913 second=187 amount=-1 +kerning first=913 second=199 amount=-2 +kerning first=913 second=210 amount=-2 +kerning first=913 second=211 amount=-2 +kerning first=913 second=212 amount=-2 +kerning first=913 second=213 amount=-2 +kerning first=913 second=214 amount=-2 +kerning first=913 second=216 amount=-2 +kerning first=913 second=217 amount=-2 +kerning first=913 second=218 amount=-2 +kerning first=913 second=219 amount=-2 +kerning first=913 second=220 amount=-2 +kerning first=913 second=221 amount=-5 +kerning first=913 second=224 amount=-1 +kerning first=913 second=225 amount=-1 +kerning first=913 second=226 amount=-1 +kerning first=913 second=227 amount=-1 +kerning first=913 second=228 amount=-1 +kerning first=913 second=229 amount=-1 +kerning first=913 second=230 amount=-1 +kerning first=913 second=231 amount=-1 +kerning first=913 second=232 amount=-1 +kerning first=913 second=233 amount=-1 +kerning first=913 second=234 amount=-1 +kerning first=913 second=235 amount=-1 +kerning first=913 second=240 amount=-1 +kerning first=913 second=242 amount=-1 +kerning first=913 second=243 amount=-1 +kerning first=913 second=244 amount=-1 +kerning first=913 second=245 amount=-1 +kerning first=913 second=246 amount=-1 +kerning first=913 second=248 amount=-1 +kerning first=913 second=249 amount=-1 +kerning first=913 second=250 amount=-1 +kerning first=913 second=251 amount=-1 +kerning first=913 second=252 amount=-1 +kerning first=913 second=253 amount=-1 +kerning first=913 second=257 amount=-1 +kerning first=913 second=259 amount=-1 +kerning first=913 second=261 amount=-1 +kerning first=913 second=262 amount=-2 +kerning first=913 second=263 amount=-1 +kerning first=913 second=266 amount=-2 +kerning first=913 second=267 amount=-1 +kerning first=913 second=268 amount=-2 +kerning first=913 second=269 amount=-1 +kerning first=913 second=271 amount=-1 +kerning first=913 second=273 amount=-1 +kerning first=913 second=275 amount=-1 +kerning first=913 second=277 amount=-1 +kerning first=913 second=279 amount=-1 +kerning first=913 second=281 amount=-1 +kerning first=913 second=283 amount=-1 +kerning first=913 second=286 amount=-2 +kerning first=913 second=287 amount=-1 +kerning first=913 second=288 amount=-2 +kerning first=913 second=289 amount=-1 +kerning first=913 second=290 amount=-2 +kerning first=913 second=291 amount=-1 +kerning first=913 second=332 amount=-2 +kerning first=913 second=333 amount=-1 +kerning first=913 second=334 amount=-2 +kerning first=913 second=335 amount=-1 +kerning first=913 second=336 amount=-2 +kerning first=913 second=337 amount=-1 +kerning first=913 second=338 amount=-2 +kerning first=913 second=339 amount=-1 +kerning first=913 second=346 amount=-1 +kerning first=913 second=347 amount=-1 +kerning first=913 second=350 amount=-1 +kerning first=913 second=351 amount=-1 +kerning first=913 second=352 amount=-1 +kerning first=913 second=353 amount=-1 +kerning first=913 second=354 amount=-5 +kerning first=913 second=355 amount=-1 +kerning first=913 second=356 amount=-5 +kerning first=913 second=357 amount=-1 +kerning first=913 second=359 amount=-1 +kerning first=913 second=360 amount=-2 +kerning first=913 second=361 amount=-1 +kerning first=913 second=362 amount=-2 +kerning first=913 second=363 amount=-1 +kerning first=913 second=364 amount=-2 +kerning first=913 second=365 amount=-1 +kerning first=913 second=366 amount=-2 +kerning first=913 second=367 amount=-1 +kerning first=913 second=368 amount=-2 +kerning first=913 second=369 amount=-1 +kerning first=913 second=370 amount=-2 +kerning first=913 second=371 amount=-1 +kerning first=913 second=372 amount=-5 +kerning first=913 second=373 amount=-4 +kerning first=913 second=374 amount=-5 +kerning first=913 second=375 amount=-1 +kerning first=913 second=376 amount=-5 +kerning first=913 second=920 amount=-2 +kerning first=913 second=927 amount=-2 +kerning first=913 second=932 amount=-5 +kerning first=913 second=933 amount=-5 +kerning first=913 second=936 amount=-3 +kerning first=913 second=939 amount=-5 +kerning first=913 second=940 amount=-1 +kerning first=913 second=941 amount=-1 +kerning first=913 second=943 amount=-1 +kerning first=913 second=945 amount=-1 +kerning first=913 second=947 amount=-4 +kerning first=913 second=949 amount=-1 +kerning first=913 second=950 amount=-1 +kerning first=913 second=953 amount=-1 +kerning first=913 second=957 amount=-4 +kerning first=913 second=959 amount=-1 +kerning first=913 second=962 amount=-1 +kerning first=913 second=963 amount=-1 +kerning first=913 second=964 amount=-3 +kerning first=913 second=965 amount=-1 +kerning first=913 second=966 amount=-1 +kerning first=913 second=968 amount=-1 +kerning first=913 second=970 amount=-1 +kerning first=913 second=972 amount=-1 +kerning first=913 second=973 amount=-1 +kerning first=913 second=1026 amount=-5 +kerning first=913 second=1028 amount=-2 +kerning first=913 second=1029 amount=-1 +kerning first=913 second=1032 amount=-1 +kerning first=913 second=1035 amount=-5 +kerning first=913 second=1038 amount=-2 +kerning first=913 second=1054 amount=-2 +kerning first=913 second=1057 amount=-2 +kerning first=913 second=1058 amount=-5 +kerning first=913 second=1059 amount=-2 +kerning first=913 second=1063 amount=-3 +kerning first=913 second=1066 amount=-5 +kerning first=913 second=1069 amount=-1 +kerning first=913 second=1072 amount=-1 +kerning first=913 second=1077 amount=-1 +kerning first=913 second=1079 amount=-1 +kerning first=913 second=1086 amount=-1 +kerning first=913 second=1089 amount=-1 +kerning first=913 second=1090 amount=-3 +kerning first=913 second=1091 amount=-1 +kerning first=913 second=1092 amount=-1 +kerning first=913 second=1098 amount=-3 +kerning first=913 second=1101 amount=-1 +kerning first=913 second=1104 amount=-1 +kerning first=913 second=1105 amount=-1 +kerning first=913 second=1108 amount=-1 +kerning first=913 second=1109 amount=-1 +kerning first=913 second=1112 amount=1 +kerning first=913 second=1118 amount=-1 +kerning first=913 second=1176 amount=-1 +kerning first=913 second=1177 amount=-1 +kerning first=913 second=1184 amount=-5 +kerning first=913 second=1185 amount=-3 +kerning first=913 second=1194 amount=-2 +kerning first=913 second=1195 amount=-1 +kerning first=913 second=1198 amount=-5 +kerning first=913 second=1199 amount=-4 +kerning first=913 second=1240 amount=-2 +kerning first=913 second=1241 amount=-1 +kerning first=913 second=1256 amount=-2 +kerning first=913 second=1257 amount=-1 +kerning first=913 second=1262 amount=-2 +kerning first=913 second=1263 amount=-1 +kerning first=913 second=8211 amount=-2 +kerning first=913 second=8212 amount=-2 +kerning first=913 second=8216 amount=-3 +kerning first=913 second=8217 amount=-3 +kerning first=913 second=8220 amount=-3 +kerning first=913 second=8221 amount=-3 +kerning first=913 second=8249 amount=-3 +kerning first=913 second=8250 amount=-1 +kerning first=914 second=65 amount=-1 +kerning first=914 second=84 amount=-1 +kerning first=914 second=86 amount=-1 +kerning first=914 second=87 amount=-1 +kerning first=914 second=88 amount=-2 +kerning first=914 second=89 amount=-2 +kerning first=914 second=193 amount=-1 +kerning first=914 second=194 amount=-1 +kerning first=914 second=196 amount=-1 +kerning first=914 second=197 amount=-1 +kerning first=914 second=198 amount=-1 +kerning first=914 second=221 amount=-2 +kerning first=914 second=256 amount=-1 +kerning first=914 second=258 amount=-1 +kerning first=914 second=260 amount=-1 +kerning first=914 second=354 amount=-1 +kerning first=914 second=356 amount=-1 +kerning first=914 second=372 amount=-1 +kerning first=914 second=374 amount=-2 +kerning first=914 second=376 amount=-2 +kerning first=914 second=913 amount=-1 +kerning first=914 second=916 amount=-1 +kerning first=914 second=923 amount=-1 +kerning first=914 second=932 amount=-1 +kerning first=914 second=933 amount=-2 +kerning first=914 second=935 amount=-2 +kerning first=914 second=939 amount=-2 +kerning first=914 second=955 amount=-1 +kerning first=914 second=1026 amount=-1 +kerning first=914 second=1035 amount=-1 +kerning first=914 second=1040 amount=-1 +kerning first=914 second=1046 amount=-2 +kerning first=914 second=1058 amount=-1 +kerning first=914 second=1061 amount=-2 +kerning first=914 second=1066 amount=-1 +kerning first=914 second=1174 amount=-2 +kerning first=914 second=1184 amount=-1 +kerning first=914 second=1198 amount=-2 +kerning first=914 second=1202 amount=-2 +kerning first=915 second=934 amount=-3 +kerning first=915 second=1033 amount=-5 +kerning first=915 second=1044 amount=-5 +kerning first=915 second=1051 amount=-5 +kerning first=915 second=1060 amount=-3 +kerning first=915 second=1298 amount=-5 +kerning first=916 second=34 amount=-3 +kerning first=916 second=38 amount=-1 +kerning first=916 second=39 amount=-3 +kerning first=916 second=45 amount=-2 +kerning first=916 second=63 amount=-5 +kerning first=916 second=67 amount=-2 +kerning first=916 second=71 amount=-2 +kerning first=916 second=74 amount=-1 +kerning first=916 second=79 amount=-2 +kerning first=916 second=81 amount=-2 +kerning first=916 second=83 amount=-1 +kerning first=916 second=84 amount=-5 +kerning first=916 second=85 amount=-2 +kerning first=916 second=86 amount=-6 +kerning first=916 second=87 amount=-5 +kerning first=916 second=89 amount=-5 +kerning first=916 second=97 amount=-1 +kerning first=916 second=99 amount=-1 +kerning first=916 second=100 amount=-1 +kerning first=916 second=101 amount=-1 +kerning first=916 second=102 amount=-2 +kerning first=916 second=103 amount=-1 +kerning first=916 second=106 amount=1 +kerning first=916 second=111 amount=-1 +kerning first=916 second=113 amount=-1 +kerning first=916 second=115 amount=-1 +kerning first=916 second=116 amount=-1 +kerning first=916 second=117 amount=-1 +kerning first=916 second=118 amount=-4 +kerning first=916 second=119 amount=-4 +kerning first=916 second=121 amount=-1 +kerning first=916 second=171 amount=-3 +kerning first=916 second=173 amount=-2 +kerning first=916 second=187 amount=-1 +kerning first=916 second=199 amount=-2 +kerning first=916 second=210 amount=-2 +kerning first=916 second=211 amount=-2 +kerning first=916 second=212 amount=-2 +kerning first=916 second=213 amount=-2 +kerning first=916 second=214 amount=-2 +kerning first=916 second=216 amount=-2 +kerning first=916 second=217 amount=-2 +kerning first=916 second=218 amount=-2 +kerning first=916 second=219 amount=-2 +kerning first=916 second=220 amount=-2 +kerning first=916 second=221 amount=-5 +kerning first=916 second=224 amount=-1 +kerning first=916 second=225 amount=-1 +kerning first=916 second=226 amount=-1 +kerning first=916 second=227 amount=-1 +kerning first=916 second=228 amount=-1 +kerning first=916 second=229 amount=-1 +kerning first=916 second=230 amount=-1 +kerning first=916 second=231 amount=-1 +kerning first=916 second=232 amount=-1 +kerning first=916 second=233 amount=-1 +kerning first=916 second=234 amount=-1 +kerning first=916 second=235 amount=-1 +kerning first=916 second=240 amount=-1 +kerning first=916 second=242 amount=-1 +kerning first=916 second=243 amount=-1 +kerning first=916 second=244 amount=-1 +kerning first=916 second=245 amount=-1 +kerning first=916 second=246 amount=-1 +kerning first=916 second=248 amount=-1 +kerning first=916 second=249 amount=-1 +kerning first=916 second=250 amount=-1 +kerning first=916 second=251 amount=-1 +kerning first=916 second=252 amount=-1 +kerning first=916 second=253 amount=-1 +kerning first=916 second=257 amount=-1 +kerning first=916 second=259 amount=-1 +kerning first=916 second=261 amount=-1 +kerning first=916 second=262 amount=-2 +kerning first=916 second=263 amount=-1 +kerning first=916 second=266 amount=-2 +kerning first=916 second=267 amount=-1 +kerning first=916 second=268 amount=-2 +kerning first=916 second=269 amount=-1 +kerning first=916 second=271 amount=-1 +kerning first=916 second=273 amount=-1 +kerning first=916 second=275 amount=-1 +kerning first=916 second=277 amount=-1 +kerning first=916 second=279 amount=-1 +kerning first=916 second=281 amount=-1 +kerning first=916 second=283 amount=-1 +kerning first=916 second=286 amount=-2 +kerning first=916 second=287 amount=-1 +kerning first=916 second=288 amount=-2 +kerning first=916 second=289 amount=-1 +kerning first=916 second=290 amount=-2 +kerning first=916 second=291 amount=-1 +kerning first=916 second=332 amount=-2 +kerning first=916 second=333 amount=-1 +kerning first=916 second=334 amount=-2 +kerning first=916 second=335 amount=-1 +kerning first=916 second=336 amount=-2 +kerning first=916 second=337 amount=-1 +kerning first=916 second=338 amount=-2 +kerning first=916 second=339 amount=-1 +kerning first=916 second=346 amount=-1 +kerning first=916 second=347 amount=-1 +kerning first=916 second=350 amount=-1 +kerning first=916 second=351 amount=-1 +kerning first=916 second=352 amount=-1 +kerning first=916 second=353 amount=-1 +kerning first=916 second=354 amount=-5 +kerning first=916 second=355 amount=-1 +kerning first=916 second=356 amount=-5 +kerning first=916 second=357 amount=-1 +kerning first=916 second=359 amount=-1 +kerning first=916 second=360 amount=-2 +kerning first=916 second=361 amount=-1 +kerning first=916 second=362 amount=-2 +kerning first=916 second=363 amount=-1 +kerning first=916 second=364 amount=-2 +kerning first=916 second=365 amount=-1 +kerning first=916 second=366 amount=-2 +kerning first=916 second=367 amount=-1 +kerning first=916 second=368 amount=-2 +kerning first=916 second=369 amount=-1 +kerning first=916 second=370 amount=-2 +kerning first=916 second=371 amount=-1 +kerning first=916 second=372 amount=-5 +kerning first=916 second=373 amount=-4 +kerning first=916 second=374 amount=-5 kerning first=916 second=375 amount=-1 -kerning first=237 second=949 amount=-1 -kerning first=240 second=257 amount=-1 -kerning first=117 second=963 amount=-1 -kerning first=120 second=271 amount=-2 -kerning first=35 second=286 amount=-2 -kerning first=1035 second=234 amount=-1 -kerning first=283 second=1090 amount=-1 -kerning first=8225 second=968 amount=-1 -kerning first=8240 second=277 amount=-1 -kerning first=58 second=218 amount=-2 -kerning first=1069 second=376 amount=-3 -kerning first=198 second=346 amount=-1 -kerning first=8363 second=211 amount=-2 -kerning first=78 second=360 amount=-2 -kerning first=1095 second=8212 amount=-2 -kerning first=221 second=273 amount=-4 -kerning first=912 second=8249 amount=-3 -kerning first=936 second=85 amount=-2 -kerning first=1185 second=235 amount=-2 -kerning first=367 second=97 amount=-1 -kerning first=124 second=219 amount=-2 -kerning first=39 second=231 amount=-1 -kerning first=178 second=361 amount=-1 -kerning first=182 second=121 amount=-1 -kerning first=289 second=965 amount=-1 -kerning first=59 second=373 amount=-4 -kerning first=1067 second=8250 amount=-1 -kerning first=202 second=288 amount=-2 -kerning first=8361 second=1184 amount=-5 -kerning first=8364 second=366 amount=-2 -kerning first=1107 second=248 amount=-1 -kerning first=105 second=232 amount=-1 -kerning first=248 second=122 amount=-1 -kerning first=365 second=966 amount=-1 -kerning first=125 second=374 amount=-5 -kerning first=1041 second=337 amount=-1 -kerning first=186 second=71 amount=-2 -kerning first=298 second=221 amount=-5 -kerning first=57 second=8230 amount=-1 -kerning first=206 second=233 amount=-1 -kerning first=318 second=1177 amount=-1 -kerning first=323 second=363 amount=-1 -kerning first=86 second=245 amount=-3 -kerning first=1206 second=100 amount=-1 -kerning first=165 second=84 amount=-5 -kerning first=41 second=1090 amount=-3 -kerning first=44 second=334 amount=-1 -kerning first=1048 second=277 amount=-1 -kerning first=299 second=376 amount=-5 -kerning first=1084 second=211 amount=-2 -kerning first=67 second=258 amount=-1 -kerning first=321 second=8212 amount=-2 -kerning first=8378 second=251 amount=-1 -kerning first=1168 second=113 amount=-1 -kerning first=1117 second=353 amount=-1 -kerning first=944 second=365 amount=-1 -kerning first=113 second=97 amount=-1 -kerning first=166 second=259 amount=-1 -kerning first=169 second=34 amount=-3 -kerning first=51 second=46 amount=-1 -kerning first=297 second=8250 amount=-1 -kerning first=1081 second=1184 amount=-5 -kerning first=1085 second=366 amount=-2 -kerning first=91 second=350 amount=-1 -kerning first=1174 second=63 amount=-2 -kerning first=942 second=8217 amount=-3 -kerning first=114 second=275 amount=-1 -kerning first=1223 second=225 amount=-1 -kerning first=280 second=337 amount=-1 -kerning first=52 second=221 amount=-5 -kerning first=195 second=111 amount=-1 -kerning first=192 second=351 amount=-1 -kerning first=304 second=953 amount=-1 -kerning first=72 second=363 amount=-1 -kerning first=69 second=1177 amount=-1 -kerning first=212 second=967 amount=-1 -kerning first=336 second=198 amount=-2 +kerning first=916 second=376 amount=-5 +kerning first=916 second=920 amount=-2 +kerning first=916 second=927 amount=-2 +kerning first=916 second=932 amount=-5 +kerning first=916 second=933 amount=-5 +kerning first=916 second=936 amount=-3 +kerning first=916 second=939 amount=-5 +kerning first=916 second=940 amount=-1 +kerning first=916 second=941 amount=-1 +kerning first=916 second=943 amount=-1 +kerning first=916 second=945 amount=-1 +kerning first=916 second=947 amount=-4 +kerning first=916 second=949 amount=-1 +kerning first=916 second=950 amount=-1 +kerning first=916 second=953 amount=-1 +kerning first=916 second=957 amount=-4 +kerning first=916 second=959 amount=-1 +kerning first=916 second=962 amount=-1 +kerning first=916 second=963 amount=-1 +kerning first=916 second=964 amount=-3 +kerning first=916 second=965 amount=-1 +kerning first=916 second=966 amount=-1 +kerning first=916 second=968 amount=-1 +kerning first=916 second=970 amount=-1 +kerning first=916 second=972 amount=-1 +kerning first=916 second=973 amount=-1 +kerning first=916 second=1026 amount=-5 +kerning first=916 second=1028 amount=-2 +kerning first=916 second=1029 amount=-1 +kerning first=916 second=1032 amount=-1 +kerning first=916 second=1035 amount=-5 +kerning first=916 second=1038 amount=-2 +kerning first=916 second=1054 amount=-2 +kerning first=916 second=1057 amount=-2 +kerning first=916 second=1058 amount=-5 +kerning first=916 second=1059 amount=-2 +kerning first=916 second=1063 amount=-3 +kerning first=916 second=1066 amount=-5 +kerning first=916 second=1069 amount=-1 +kerning first=916 second=1072 amount=-1 +kerning first=916 second=1077 amount=-1 +kerning first=916 second=1079 amount=-1 +kerning first=916 second=1086 amount=-1 +kerning first=916 second=1089 amount=-1 +kerning first=916 second=1090 amount=-3 +kerning first=916 second=1091 amount=-1 +kerning first=916 second=1092 amount=-1 +kerning first=916 second=1098 amount=-3 +kerning first=916 second=1101 amount=-1 +kerning first=916 second=1104 amount=-1 +kerning first=916 second=1105 amount=-1 +kerning first=916 second=1108 amount=-1 +kerning first=916 second=1109 amount=-1 +kerning first=916 second=1112 amount=1 +kerning first=916 second=1118 amount=-1 +kerning first=916 second=1176 amount=-1 +kerning first=916 second=1177 amount=-1 +kerning first=916 second=1184 amount=-5 +kerning first=916 second=1185 amount=-3 +kerning first=916 second=1194 amount=-2 +kerning first=916 second=1195 amount=-1 +kerning first=916 second=1198 amount=-5 +kerning first=916 second=1199 amount=-4 +kerning first=916 second=1240 amount=-2 +kerning first=916 second=1241 amount=-1 +kerning first=916 second=1256 amount=-2 +kerning first=916 second=1257 amount=-1 +kerning first=916 second=1262 amount=-2 +kerning first=916 second=1263 amount=-1 +kerning first=916 second=8211 amount=-2 +kerning first=916 second=8212 amount=-2 +kerning first=916 second=8216 amount=-3 +kerning first=916 second=8217 amount=-3 +kerning first=916 second=8220 amount=-3 +kerning first=916 second=8221 amount=-3 +kerning first=916 second=8249 amount=-3 +kerning first=916 second=8250 amount=-1 +kerning first=918 second=45 amount=-3 +kerning first=918 second=67 amount=-1 +kerning first=918 second=71 amount=-1 +kerning first=918 second=79 amount=-1 +kerning first=918 second=81 amount=-1 +kerning first=918 second=90 amount=1 +kerning first=918 second=99 amount=-1 +kerning first=918 second=100 amount=-1 +kerning first=918 second=101 amount=-1 +kerning first=918 second=111 amount=-1 +kerning first=918 second=113 amount=-1 +kerning first=918 second=173 amount=-3 +kerning first=918 second=199 amount=-1 +kerning first=918 second=210 amount=-1 +kerning first=918 second=211 amount=-1 +kerning first=918 second=212 amount=-1 +kerning first=918 second=213 amount=-1 +kerning first=918 second=214 amount=-1 +kerning first=918 second=216 amount=-1 +kerning first=918 second=231 amount=-1 +kerning first=918 second=232 amount=-1 +kerning first=918 second=233 amount=-1 +kerning first=918 second=234 amount=-1 +kerning first=918 second=235 amount=-1 +kerning first=918 second=240 amount=-1 +kerning first=918 second=242 amount=-1 +kerning first=918 second=243 amount=-1 +kerning first=918 second=244 amount=-1 +kerning first=918 second=245 amount=-1 +kerning first=918 second=246 amount=-1 +kerning first=918 second=248 amount=-1 +kerning first=918 second=262 amount=-1 +kerning first=918 second=263 amount=-1 +kerning first=918 second=266 amount=-1 +kerning first=918 second=267 amount=-1 +kerning first=918 second=268 amount=-1 +kerning first=918 second=269 amount=-1 +kerning first=918 second=271 amount=-1 +kerning first=918 second=273 amount=-1 +kerning first=918 second=275 amount=-1 +kerning first=918 second=277 amount=-1 +kerning first=918 second=279 amount=-1 +kerning first=918 second=281 amount=-1 +kerning first=918 second=283 amount=-1 +kerning first=918 second=286 amount=-1 +kerning first=918 second=288 amount=-1 +kerning first=918 second=290 amount=-1 +kerning first=918 second=332 amount=-1 +kerning first=918 second=333 amount=-1 +kerning first=918 second=334 amount=-1 +kerning first=918 second=335 amount=-1 +kerning first=918 second=336 amount=-1 +kerning first=918 second=337 amount=-1 +kerning first=918 second=338 amount=-1 +kerning first=918 second=339 amount=-1 +kerning first=918 second=377 amount=1 +kerning first=918 second=379 amount=1 +kerning first=918 second=381 amount=1 +kerning first=918 second=918 amount=1 +kerning first=918 second=920 amount=-1 +kerning first=918 second=927 amount=-1 +kerning first=918 second=940 amount=-1 +kerning first=918 second=941 amount=-1 +kerning first=918 second=945 amount=-1 +kerning first=918 second=949 amount=-1 +kerning first=918 second=959 amount=-1 +kerning first=918 second=962 amount=-1 +kerning first=918 second=963 amount=-1 +kerning first=918 second=966 amount=-1 +kerning first=918 second=972 amount=-1 +kerning first=918 second=1028 amount=-1 +kerning first=918 second=1054 amount=-1 +kerning first=918 second=1057 amount=-1 +kerning first=918 second=1077 amount=-1 +kerning first=918 second=1086 amount=-1 +kerning first=918 second=1089 amount=-1 +kerning first=918 second=1092 amount=-1 +kerning first=918 second=1104 amount=-1 +kerning first=918 second=1105 amount=-1 +kerning first=918 second=1108 amount=-1 +kerning first=918 second=1194 amount=-1 +kerning first=918 second=1195 amount=-1 +kerning first=918 second=1240 amount=-1 +kerning first=918 second=1241 amount=-1 +kerning first=918 second=1256 amount=-1 +kerning first=918 second=1257 amount=-1 +kerning first=918 second=8211 amount=-3 +kerning first=918 second=8212 amount=-3 +kerning first=920 second=44 amount=-1 +kerning first=920 second=46 amount=-1 +kerning first=920 second=47 amount=-1 +kerning first=920 second=65 amount=-2 +kerning first=920 second=84 amount=-2 +kerning first=920 second=86 amount=-2 +kerning first=920 second=87 amount=-2 kerning first=920 second=88 amount=-3 -kerning first=95 second=290 amount=-2 -kerning first=238 second=210 amount=-2 -kerning first=358 second=338 amount=-2 -kerning first=361 second=100 amount=-1 -kerning first=950 second=941 amount=-1 -kerning first=258 second=352 amount=-1 -kerning first=381 second=262 amount=-1 -kerning first=1026 second=1241 amount=-1 -kerning first=8226 second=227 amount=-1 -kerning first=53 second=376 amount=-5 -kerning first=1064 second=1079 amount=-1 -kerning first=193 second=1035 amount=-5 -kerning first=196 second=291 amount=-1 -kerning first=1070 second=89 amount=-3 -kerning first=314 second=211 amount=-2 -kerning first=70 second=8212 amount=-2 -kerning first=73 second=1059 amount=-2 -kerning first=1099 second=251 amount=-1 +kerning first=920 second=89 amount=-3 +kerning first=920 second=90 amount=-1 +kerning first=920 second=193 amount=-2 +kerning first=920 second=194 amount=-2 +kerning first=920 second=196 amount=-2 +kerning first=920 second=197 amount=-2 +kerning first=920 second=198 amount=-2 +kerning first=920 second=221 amount=-3 +kerning first=920 second=256 amount=-2 +kerning first=920 second=258 amount=-2 +kerning first=920 second=260 amount=-2 +kerning first=920 second=354 amount=-2 +kerning first=920 second=356 amount=-2 +kerning first=920 second=372 amount=-2 +kerning first=920 second=374 amount=-3 +kerning first=920 second=376 amount=-3 +kerning first=920 second=377 amount=-1 +kerning first=920 second=379 amount=-1 +kerning first=920 second=381 amount=-1 +kerning first=920 second=913 amount=-2 +kerning first=920 second=916 amount=-2 +kerning first=920 second=918 amount=-1 +kerning first=920 second=923 amount=-2 +kerning first=920 second=932 amount=-2 +kerning first=920 second=933 amount=-3 +kerning first=920 second=935 amount=-3 +kerning first=920 second=939 amount=-3 +kerning first=920 second=955 amount=-2 +kerning first=920 second=967 amount=-1 +kerning first=920 second=1026 amount=-2 +kerning first=920 second=1033 amount=-1 +kerning first=920 second=1035 amount=-2 +kerning first=920 second=1040 amount=-2 +kerning first=920 second=1044 amount=-1 +kerning first=920 second=1046 amount=-3 +kerning first=920 second=1051 amount=-1 +kerning first=920 second=1058 amount=-2 +kerning first=920 second=1061 amount=-3 +kerning first=920 second=1066 amount=-2 +kerning first=920 second=1071 amount=-1 +kerning first=920 second=1174 amount=-3 +kerning first=920 second=1184 amount=-2 +kerning first=920 second=1198 amount=-3 +kerning first=920 second=1202 amount=-3 +kerning first=920 second=1298 amount=-1 +kerning first=920 second=8218 amount=-1 +kerning first=920 second=8222 amount=-1 +kerning first=920 second=8230 amount=-1 +kerning first=922 second=38 amount=-2 +kerning first=922 second=45 amount=-4 +kerning first=922 second=63 amount=-2 +kerning first=922 second=67 amount=-3 +kerning first=922 second=71 amount=-3 +kerning first=922 second=74 amount=-1 +kerning first=922 second=79 amount=-3 +kerning first=922 second=81 amount=-3 +kerning first=922 second=83 amount=-1 +kerning first=922 second=97 amount=-1 +kerning first=922 second=99 amount=-2 +kerning first=922 second=100 amount=-2 +kerning first=922 second=101 amount=-2 +kerning first=922 second=102 amount=-2 +kerning first=922 second=103 amount=-1 +kerning first=922 second=111 amount=-2 +kerning first=922 second=113 amount=-2 +kerning first=922 second=116 amount=-1 +kerning first=922 second=117 amount=-1 +kerning first=922 second=118 amount=-3 +kerning first=922 second=119 amount=-3 +kerning first=922 second=121 amount=-2 +kerning first=922 second=171 amount=-3 +kerning first=922 second=173 amount=-4 +kerning first=922 second=187 amount=-2 +kerning first=922 second=199 amount=-3 +kerning first=922 second=210 amount=-3 +kerning first=922 second=211 amount=-3 +kerning first=922 second=212 amount=-3 +kerning first=922 second=213 amount=-3 +kerning first=922 second=214 amount=-3 +kerning first=922 second=216 amount=-3 +kerning first=922 second=224 amount=-1 +kerning first=922 second=225 amount=-1 +kerning first=922 second=226 amount=-1 +kerning first=922 second=227 amount=-1 +kerning first=922 second=228 amount=-1 +kerning first=922 second=229 amount=-1 +kerning first=922 second=230 amount=-1 +kerning first=922 second=231 amount=-2 +kerning first=922 second=232 amount=-2 +kerning first=922 second=233 amount=-2 +kerning first=922 second=234 amount=-2 +kerning first=922 second=235 amount=-2 +kerning first=922 second=240 amount=-2 +kerning first=922 second=242 amount=-2 +kerning first=922 second=243 amount=-2 +kerning first=922 second=244 amount=-2 +kerning first=922 second=245 amount=-2 +kerning first=922 second=246 amount=-2 +kerning first=922 second=248 amount=-2 +kerning first=922 second=249 amount=-1 +kerning first=922 second=250 amount=-1 +kerning first=922 second=251 amount=-1 +kerning first=922 second=252 amount=-1 +kerning first=922 second=253 amount=-2 +kerning first=922 second=257 amount=-1 +kerning first=922 second=259 amount=-1 +kerning first=922 second=261 amount=-1 +kerning first=922 second=262 amount=-3 +kerning first=922 second=263 amount=-2 +kerning first=922 second=266 amount=-3 +kerning first=922 second=267 amount=-2 +kerning first=922 second=268 amount=-3 +kerning first=922 second=269 amount=-2 +kerning first=922 second=271 amount=-2 +kerning first=922 second=273 amount=-2 +kerning first=922 second=275 amount=-2 +kerning first=922 second=277 amount=-2 +kerning first=922 second=279 amount=-2 +kerning first=922 second=281 amount=-2 +kerning first=922 second=283 amount=-2 +kerning first=922 second=286 amount=-3 +kerning first=922 second=287 amount=-1 +kerning first=922 second=288 amount=-3 +kerning first=922 second=289 amount=-1 +kerning first=922 second=290 amount=-3 +kerning first=922 second=291 amount=-1 +kerning first=922 second=332 amount=-3 +kerning first=922 second=333 amount=-2 +kerning first=922 second=334 amount=-3 +kerning first=922 second=335 amount=-2 +kerning first=922 second=336 amount=-3 +kerning first=922 second=337 amount=-2 +kerning first=922 second=338 amount=-3 +kerning first=922 second=339 amount=-2 +kerning first=922 second=346 amount=-1 +kerning first=922 second=350 amount=-1 +kerning first=922 second=352 amount=-1 +kerning first=922 second=355 amount=-1 +kerning first=922 second=357 amount=-1 +kerning first=922 second=359 amount=-1 +kerning first=922 second=361 amount=-1 +kerning first=922 second=363 amount=-1 +kerning first=922 second=365 amount=-1 +kerning first=922 second=367 amount=-1 +kerning first=922 second=369 amount=-1 +kerning first=922 second=371 amount=-1 +kerning first=922 second=373 amount=-3 +kerning first=922 second=375 amount=-2 +kerning first=922 second=920 amount=-3 +kerning first=922 second=927 amount=-3 +kerning first=922 second=940 amount=-2 +kerning first=922 second=941 amount=-2 +kerning first=922 second=945 amount=-2 +kerning first=922 second=947 amount=-3 +kerning first=922 second=949 amount=-2 +kerning first=922 second=957 amount=-3 +kerning first=922 second=959 amount=-2 +kerning first=922 second=962 amount=-2 +kerning first=922 second=963 amount=-2 +kerning first=922 second=964 amount=-4 +kerning first=922 second=965 amount=-1 +kerning first=922 second=966 amount=-2 +kerning first=922 second=968 amount=-1 +kerning first=922 second=972 amount=-2 +kerning first=922 second=973 amount=-1 +kerning first=922 second=1028 amount=-3 +kerning first=922 second=1029 amount=-1 +kerning first=922 second=1032 amount=-1 +kerning first=922 second=1054 amount=-3 +kerning first=922 second=1057 amount=-3 +kerning first=922 second=1069 amount=-2 +kerning first=922 second=1072 amount=-1 +kerning first=922 second=1077 amount=-2 +kerning first=922 second=1079 amount=-1 +kerning first=922 second=1086 amount=-2 +kerning first=922 second=1089 amount=-2 +kerning first=922 second=1090 amount=-4 +kerning first=922 second=1091 amount=-2 +kerning first=922 second=1092 amount=-2 +kerning first=922 second=1098 amount=-4 +kerning first=922 second=1101 amount=-1 +kerning first=922 second=1104 amount=-2 +kerning first=922 second=1105 amount=-2 +kerning first=922 second=1108 amount=-2 +kerning first=922 second=1118 amount=-2 +kerning first=922 second=1176 amount=-2 +kerning first=922 second=1177 amount=-1 +kerning first=922 second=1185 amount=-4 +kerning first=922 second=1194 amount=-3 +kerning first=922 second=1195 amount=-2 +kerning first=922 second=1199 amount=-3 +kerning first=922 second=1240 amount=-3 +kerning first=922 second=1241 amount=-2 +kerning first=922 second=1256 amount=-3 +kerning first=922 second=1257 amount=-2 +kerning first=922 second=1263 amount=-2 +kerning first=922 second=8211 amount=-4 +kerning first=922 second=8212 amount=-4 +kerning first=922 second=8249 amount=-3 +kerning first=922 second=8250 amount=-2 +kerning first=923 second=34 amount=-3 +kerning first=923 second=38 amount=-1 +kerning first=923 second=39 amount=-3 +kerning first=923 second=45 amount=-2 +kerning first=923 second=63 amount=-5 +kerning first=923 second=67 amount=-2 +kerning first=923 second=71 amount=-2 +kerning first=923 second=74 amount=-1 +kerning first=923 second=79 amount=-2 +kerning first=923 second=81 amount=-2 +kerning first=923 second=83 amount=-1 +kerning first=923 second=84 amount=-5 +kerning first=923 second=85 amount=-2 +kerning first=923 second=86 amount=-6 +kerning first=923 second=87 amount=-5 +kerning first=923 second=89 amount=-5 +kerning first=923 second=97 amount=-1 +kerning first=923 second=99 amount=-1 +kerning first=923 second=100 amount=-1 +kerning first=923 second=101 amount=-1 +kerning first=923 second=102 amount=-2 +kerning first=923 second=103 amount=-1 +kerning first=923 second=106 amount=1 +kerning first=923 second=111 amount=-1 +kerning first=923 second=113 amount=-1 +kerning first=923 second=115 amount=-1 +kerning first=923 second=116 amount=-1 +kerning first=923 second=117 amount=-1 +kerning first=923 second=118 amount=-4 +kerning first=923 second=119 amount=-4 +kerning first=923 second=121 amount=-1 +kerning first=923 second=171 amount=-3 +kerning first=923 second=173 amount=-2 +kerning first=923 second=187 amount=-1 +kerning first=923 second=199 amount=-2 +kerning first=923 second=210 amount=-2 +kerning first=923 second=211 amount=-2 +kerning first=923 second=212 amount=-2 +kerning first=923 second=213 amount=-2 +kerning first=923 second=214 amount=-2 +kerning first=923 second=216 amount=-2 +kerning first=923 second=217 amount=-2 +kerning first=923 second=218 amount=-2 +kerning first=923 second=219 amount=-2 +kerning first=923 second=220 amount=-2 +kerning first=923 second=221 amount=-5 +kerning first=923 second=224 amount=-1 +kerning first=923 second=225 amount=-1 +kerning first=923 second=226 amount=-1 +kerning first=923 second=227 amount=-1 +kerning first=923 second=228 amount=-1 +kerning first=923 second=229 amount=-1 +kerning first=923 second=230 amount=-1 +kerning first=923 second=231 amount=-1 +kerning first=923 second=232 amount=-1 +kerning first=923 second=233 amount=-1 +kerning first=923 second=234 amount=-1 +kerning first=923 second=235 amount=-1 +kerning first=923 second=240 amount=-1 +kerning first=923 second=242 amount=-1 +kerning first=923 second=243 amount=-1 +kerning first=923 second=244 amount=-1 +kerning first=923 second=245 amount=-1 +kerning first=923 second=246 amount=-1 +kerning first=923 second=248 amount=-1 +kerning first=923 second=249 amount=-1 +kerning first=923 second=250 amount=-1 +kerning first=923 second=251 amount=-1 +kerning first=923 second=252 amount=-1 +kerning first=923 second=253 amount=-1 +kerning first=923 second=257 amount=-1 +kerning first=923 second=259 amount=-1 +kerning first=923 second=261 amount=-1 +kerning first=923 second=262 amount=-2 kerning first=923 second=263 amount=-1 -kerning first=239 second=365 amount=-1 -kerning first=169 second=8216 amount=-3 -kerning first=8224 second=1256 amount=-2 -kerning first=51 second=8250 amount=-1 -kerning first=1071 second=266 amount=-2 -kerning first=315 second=366 amount=-1 -kerning first=8365 second=79 amount=-2 -kerning first=80 second=248 amount=-1 -kerning first=223 second=171 amount=-3 -kerning first=934 second=213 amount=-2 -kerning first=237 second=8217 amount=-3 -kerning first=960 second=355 amount=-1 -kerning first=963 second=115 amount=-1 -kerning first=126 second=87 amount=-5 -kerning first=38 second=337 amount=-1 -kerning first=41 second=99 amount=-1 -kerning first=180 second=249 amount=-1 -kerning first=177 second=940 amount=-1 -kerning first=61 second=261 amount=-1 -kerning first=58 second=953 amount=-1 -kerning first=8363 second=945 amount=-1 -kerning first=84 second=198 amount=-6 -kerning first=221 second=1078 amount=-2 -kerning first=936 second=368 amount=-2 -kerning first=107 second=100 amount=-2 -kerning first=1185 second=972 amount=-2 -kerning first=247 second=250 amount=-1 -kerning first=160 second=262 amount=-2 -kerning first=273 second=187 amount=-1 -kerning first=45 second=49 amount=-3 -kerning first=42 second=277 amount=-1 -kerning first=1046 second=227 amount=-1 -kerning first=185 second=199 amount=-2 -kerning first=294 second=1079 amount=-1 -kerning first=300 second=89 amount=-5 -kerning first=65 second=211 amount=-2 -kerning first=205 second=339 amount=-1 -kerning first=202 second=1098 amount=-3 -kerning first=325 second=251 amount=-1 -kerning first=88 second=113 amount=-2 -kerning first=931 second=8221 amount=-3 -kerning first=968 second=240 amount=-1 -kerning first=164 second=212 amount=-2 -kerning first=277 second=102 amount=-1 -kerning first=1041 second=1256 amount=-2 -kerning first=186 second=354 amount=-5 -kerning first=183 second=1118 amount=-1 -kerning first=301 second=266 amount=-2 -kerning first=304 second=39 amount=-3 -kerning first=63 second=1184 amount=-5 -kerning first=1075 second=8222 amount=-3 -kerning first=1087 second=79 amount=-2 -kerning first=209 second=279 amount=-1 -kerning first=206 second=970 amount=-1 -kerning first=8377 second=359 amount=-1 -kerning first=946 second=253 amount=-1 +kerning first=923 second=266 amount=-2 +kerning first=923 second=267 amount=-1 +kerning first=923 second=268 amount=-2 +kerning first=923 second=269 amount=-1 +kerning first=923 second=271 amount=-1 +kerning first=923 second=273 amount=-1 +kerning first=923 second=275 amount=-1 +kerning first=923 second=277 amount=-1 +kerning first=923 second=279 amount=-1 +kerning first=923 second=281 amount=-1 +kerning first=923 second=283 amount=-1 +kerning first=923 second=286 amount=-2 +kerning first=923 second=287 amount=-1 +kerning first=923 second=288 amount=-2 +kerning first=923 second=289 amount=-1 +kerning first=923 second=290 amount=-2 +kerning first=923 second=291 amount=-1 +kerning first=923 second=332 amount=-2 +kerning first=923 second=333 amount=-1 +kerning first=923 second=334 amount=-2 +kerning first=923 second=335 amount=-1 +kerning first=923 second=336 amount=-2 +kerning first=923 second=337 amount=-1 +kerning first=923 second=338 amount=-2 +kerning first=923 second=339 amount=-1 +kerning first=923 second=346 amount=-1 +kerning first=923 second=347 amount=-1 +kerning first=923 second=350 amount=-1 +kerning first=923 second=351 amount=-1 +kerning first=923 second=352 amount=-1 +kerning first=923 second=353 amount=-1 +kerning first=923 second=354 amount=-5 +kerning first=923 second=355 amount=-1 +kerning first=923 second=356 amount=-5 +kerning first=923 second=357 amount=-1 +kerning first=923 second=359 amount=-1 +kerning first=923 second=360 amount=-2 +kerning first=923 second=361 amount=-1 +kerning first=923 second=362 amount=-2 +kerning first=923 second=363 amount=-1 +kerning first=923 second=364 amount=-2 +kerning first=923 second=365 amount=-1 +kerning first=923 second=366 amount=-2 +kerning first=923 second=367 amount=-1 +kerning first=923 second=368 amount=-2 +kerning first=923 second=369 amount=-1 +kerning first=923 second=370 amount=-2 +kerning first=923 second=371 amount=-1 +kerning first=923 second=372 amount=-5 +kerning first=923 second=373 amount=-4 +kerning first=923 second=374 amount=-5 +kerning first=923 second=375 amount=-1 +kerning first=923 second=376 amount=-5 +kerning first=923 second=920 amount=-2 +kerning first=923 second=927 amount=-2 +kerning first=923 second=932 amount=-5 +kerning first=923 second=933 amount=-5 +kerning first=923 second=936 amount=-3 +kerning first=923 second=939 amount=-5 +kerning first=923 second=940 amount=-1 +kerning first=923 second=941 amount=-1 +kerning first=923 second=943 amount=-1 +kerning first=923 second=945 amount=-1 +kerning first=923 second=947 amount=-4 +kerning first=923 second=949 amount=-1 +kerning first=923 second=950 amount=-1 +kerning first=923 second=953 amount=-1 +kerning first=923 second=957 amount=-4 +kerning first=923 second=959 amount=-1 +kerning first=923 second=962 amount=-1 +kerning first=923 second=963 amount=-1 +kerning first=923 second=964 amount=-3 +kerning first=923 second=965 amount=-1 +kerning first=923 second=966 amount=-1 +kerning first=923 second=968 amount=-1 +kerning first=923 second=970 amount=-1 +kerning first=923 second=972 amount=-1 +kerning first=923 second=973 amount=-1 +kerning first=923 second=1026 amount=-5 +kerning first=923 second=1028 amount=-2 +kerning first=923 second=1029 amount=-1 +kerning first=923 second=1032 amount=-1 +kerning first=923 second=1035 amount=-5 +kerning first=923 second=1038 amount=-2 +kerning first=923 second=1054 amount=-2 +kerning first=923 second=1057 amount=-2 +kerning first=923 second=1058 amount=-5 +kerning first=923 second=1059 amount=-2 +kerning first=923 second=1063 amount=-3 +kerning first=923 second=1066 amount=-5 +kerning first=923 second=1069 amount=-1 +kerning first=923 second=1072 amount=-1 +kerning first=923 second=1077 amount=-1 +kerning first=923 second=1079 amount=-1 +kerning first=923 second=1086 amount=-1 +kerning first=923 second=1089 amount=-1 +kerning first=923 second=1090 amount=-3 +kerning first=923 second=1091 amount=-1 +kerning first=923 second=1092 amount=-1 +kerning first=923 second=1098 amount=-3 +kerning first=923 second=1101 amount=-1 +kerning first=923 second=1104 amount=-1 +kerning first=923 second=1105 amount=-1 +kerning first=923 second=1108 amount=-1 +kerning first=923 second=1109 amount=-1 +kerning first=923 second=1112 amount=1 +kerning first=923 second=1118 amount=-1 +kerning first=923 second=1176 amount=-1 +kerning first=923 second=1177 amount=-1 +kerning first=923 second=1184 amount=-5 +kerning first=923 second=1185 amount=-3 +kerning first=923 second=1194 amount=-2 +kerning first=923 second=1195 amount=-1 +kerning first=923 second=1198 amount=-5 +kerning first=923 second=1199 amount=-4 +kerning first=923 second=1240 amount=-2 +kerning first=923 second=1241 amount=-1 +kerning first=923 second=1256 amount=-2 +kerning first=923 second=1257 amount=-1 +kerning first=923 second=1262 amount=-2 +kerning first=923 second=1263 amount=-1 +kerning first=923 second=8211 amount=-2 +kerning first=923 second=8212 amount=-2 +kerning first=923 second=8216 amount=-3 +kerning first=923 second=8217 amount=-3 +kerning first=923 second=8220 amount=-3 +kerning first=923 second=8221 amount=-3 +kerning first=923 second=8249 amount=-3 +kerning first=923 second=8250 amount=-1 +kerning first=927 second=44 amount=-1 +kerning first=927 second=46 amount=-1 +kerning first=927 second=47 amount=-1 +kerning first=927 second=65 amount=-2 +kerning first=927 second=84 amount=-2 +kerning first=927 second=86 amount=-2 +kerning first=927 second=87 amount=-2 +kerning first=927 second=88 amount=-3 +kerning first=927 second=89 amount=-3 +kerning first=927 second=90 amount=-1 +kerning first=927 second=193 amount=-2 +kerning first=927 second=194 amount=-2 +kerning first=927 second=196 amount=-2 +kerning first=927 second=197 amount=-2 +kerning first=927 second=198 amount=-2 +kerning first=927 second=221 amount=-3 +kerning first=927 second=256 amount=-2 +kerning first=927 second=258 amount=-2 +kerning first=927 second=260 amount=-2 +kerning first=927 second=354 amount=-2 +kerning first=927 second=356 amount=-2 +kerning first=927 second=372 amount=-2 +kerning first=927 second=374 amount=-3 +kerning first=927 second=376 amount=-3 +kerning first=927 second=377 amount=-1 +kerning first=927 second=379 amount=-1 +kerning first=927 second=381 amount=-1 +kerning first=927 second=913 amount=-2 +kerning first=927 second=916 amount=-2 +kerning first=927 second=918 amount=-1 +kerning first=927 second=923 amount=-2 +kerning first=927 second=932 amount=-2 +kerning first=927 second=933 amount=-3 +kerning first=927 second=935 amount=-3 +kerning first=927 second=939 amount=-3 +kerning first=927 second=955 amount=-2 +kerning first=927 second=967 amount=-1 +kerning first=927 second=1026 amount=-2 +kerning first=927 second=1033 amount=-1 +kerning first=927 second=1035 amount=-2 +kerning first=927 second=1040 amount=-2 +kerning first=927 second=1044 amount=-1 +kerning first=927 second=1046 amount=-3 +kerning first=927 second=1051 amount=-1 +kerning first=927 second=1058 amount=-2 +kerning first=927 second=1061 amount=-3 +kerning first=927 second=1066 amount=-2 +kerning first=927 second=1071 amount=-1 +kerning first=927 second=1174 amount=-3 +kerning first=927 second=1184 amount=-2 +kerning first=927 second=1198 amount=-3 +kerning first=927 second=1202 amount=-3 +kerning first=927 second=1298 amount=-1 +kerning first=927 second=8218 amount=-1 +kerning first=927 second=8222 amount=-1 +kerning first=927 second=8230 amount=-1 +kerning first=929 second=44 amount=-4 +kerning first=929 second=45 amount=-1 +kerning first=929 second=46 amount=-4 +kerning first=929 second=47 amount=-3 +kerning first=929 second=65 amount=-4 +kerning first=929 second=74 amount=-3 +kerning first=929 second=86 amount=-1 +kerning first=929 second=87 amount=-1 +kerning first=929 second=88 amount=-2 +kerning first=929 second=89 amount=-2 +kerning first=929 second=90 amount=-1 +kerning first=929 second=97 amount=-1 +kerning first=929 second=103 amount=-1 +kerning first=929 second=173 amount=-1 +kerning first=929 second=193 amount=-4 +kerning first=929 second=194 amount=-4 +kerning first=929 second=196 amount=-4 +kerning first=929 second=197 amount=-4 +kerning first=929 second=198 amount=-4 +kerning first=929 second=221 amount=-2 +kerning first=929 second=224 amount=-1 +kerning first=929 second=225 amount=-1 +kerning first=929 second=226 amount=-1 +kerning first=929 second=227 amount=-1 +kerning first=929 second=228 amount=-1 +kerning first=929 second=229 amount=-1 +kerning first=929 second=230 amount=-1 +kerning first=929 second=256 amount=-4 +kerning first=929 second=257 amount=-1 +kerning first=929 second=258 amount=-4 +kerning first=929 second=259 amount=-1 +kerning first=929 second=260 amount=-4 +kerning first=929 second=261 amount=-1 +kerning first=929 second=287 amount=-1 +kerning first=929 second=289 amount=-1 +kerning first=929 second=291 amount=-1 +kerning first=929 second=372 amount=-1 +kerning first=929 second=374 amount=-2 +kerning first=929 second=376 amount=-2 +kerning first=929 second=377 amount=-1 +kerning first=929 second=379 amount=-1 +kerning first=929 second=381 amount=-1 +kerning first=929 second=913 amount=-4 +kerning first=929 second=916 amount=-4 +kerning first=929 second=918 amount=-1 +kerning first=929 second=923 amount=-4 +kerning first=929 second=933 amount=-2 +kerning first=929 second=935 amount=-2 +kerning first=929 second=939 amount=-2 +kerning first=929 second=950 amount=-1 +kerning first=929 second=955 amount=-3 +kerning first=929 second=961 amount=-1 +kerning first=929 second=1032 amount=-3 +kerning first=929 second=1040 amount=-4 +kerning first=929 second=1046 amount=-2 +kerning first=929 second=1061 amount=-2 +kerning first=929 second=1072 amount=-1 +kerning first=929 second=1174 amount=-2 +kerning first=929 second=1198 amount=-2 +kerning first=929 second=1202 amount=-2 +kerning first=929 second=8211 amount=-1 +kerning first=929 second=8212 amount=-1 +kerning first=929 second=8218 amount=-4 +kerning first=929 second=8222 amount=-4 +kerning first=929 second=8230 amount=-4 +kerning first=932 second=44 amount=-3 +kerning first=932 second=45 amount=-4 +kerning first=932 second=46 amount=-3 +kerning first=932 second=47 amount=-4 +kerning first=932 second=110 amount=-2 +kerning first=932 second=65 amount=-6 +kerning first=932 second=67 amount=-1 +kerning first=932 second=114 amount=-2 +kerning first=932 second=71 amount=-1 +kerning first=932 second=74 amount=-5 +kerning first=932 second=79 amount=-1 +kerning first=932 second=81 amount=-1 +kerning first=932 second=83 amount=-1 +kerning first=932 second=97 amount=-2 +kerning first=932 second=99 amount=-3 +kerning first=932 second=100 amount=-3 +kerning first=932 second=101 amount=-3 +kerning first=932 second=103 amount=-2 +kerning first=932 second=109 amount=-2 +kerning first=932 second=111 amount=-3 +kerning first=932 second=112 amount=-2 +kerning first=932 second=113 amount=-3 +kerning first=932 second=115 amount=-3 +kerning first=932 second=117 amount=-2 +kerning first=932 second=118 amount=-2 +kerning first=932 second=119 amount=-2 +kerning first=932 second=120 amount=-1 +kerning first=932 second=121 amount=-2 +kerning first=932 second=122 amount=-1 +kerning first=932 second=171 amount=-3 +kerning first=932 second=173 amount=-4 +kerning first=932 second=187 amount=-1 +kerning first=932 second=193 amount=-6 +kerning first=932 second=194 amount=-6 +kerning first=932 second=196 amount=-6 +kerning first=932 second=197 amount=-6 +kerning first=932 second=198 amount=-6 +kerning first=932 second=199 amount=-1 +kerning first=932 second=210 amount=-1 +kerning first=932 second=211 amount=-1 +kerning first=932 second=212 amount=-1 +kerning first=932 second=213 amount=-1 +kerning first=932 second=214 amount=-1 +kerning first=932 second=216 amount=-1 +kerning first=932 second=224 amount=-2 +kerning first=932 second=225 amount=-2 +kerning first=932 second=226 amount=-2 +kerning first=932 second=227 amount=-2 +kerning first=932 second=228 amount=-2 +kerning first=932 second=229 amount=-2 +kerning first=932 second=230 amount=-2 +kerning first=932 second=231 amount=-3 +kerning first=932 second=232 amount=-3 +kerning first=932 second=233 amount=-3 +kerning first=932 second=234 amount=-3 +kerning first=932 second=235 amount=-3 +kerning first=932 second=240 amount=-3 +kerning first=932 second=241 amount=-2 +kerning first=932 second=242 amount=-3 +kerning first=932 second=243 amount=-3 +kerning first=932 second=244 amount=-3 +kerning first=932 second=245 amount=-3 +kerning first=932 second=246 amount=-3 +kerning first=932 second=248 amount=-3 +kerning first=932 second=249 amount=-2 +kerning first=932 second=250 amount=-2 +kerning first=932 second=251 amount=-2 +kerning first=932 second=252 amount=-2 +kerning first=932 second=253 amount=-2 +kerning first=932 second=256 amount=-6 +kerning first=932 second=257 amount=-2 +kerning first=932 second=258 amount=-6 +kerning first=932 second=259 amount=-2 +kerning first=932 second=260 amount=-6 +kerning first=932 second=261 amount=-2 +kerning first=932 second=262 amount=-1 +kerning first=932 second=263 amount=-3 +kerning first=932 second=266 amount=-1 +kerning first=932 second=267 amount=-3 +kerning first=932 second=268 amount=-1 +kerning first=932 second=269 amount=-3 +kerning first=932 second=271 amount=-3 +kerning first=932 second=273 amount=-3 +kerning first=932 second=275 amount=-3 +kerning first=932 second=277 amount=-3 +kerning first=932 second=279 amount=-3 +kerning first=932 second=281 amount=-3 +kerning first=932 second=283 amount=-3 +kerning first=932 second=286 amount=-1 +kerning first=932 second=287 amount=-2 +kerning first=932 second=288 amount=-1 +kerning first=932 second=289 amount=-2 +kerning first=932 second=290 amount=-1 +kerning first=932 second=291 amount=-2 +kerning first=932 second=324 amount=-2 +kerning first=932 second=326 amount=-2 +kerning first=932 second=328 amount=-2 +kerning first=932 second=331 amount=-2 +kerning first=932 second=332 amount=-1 +kerning first=932 second=333 amount=-3 +kerning first=932 second=334 amount=-1 +kerning first=932 second=335 amount=-3 +kerning first=932 second=336 amount=-1 +kerning first=932 second=337 amount=-3 +kerning first=932 second=338 amount=-1 +kerning first=932 second=339 amount=-3 +kerning first=932 second=341 amount=-2 +kerning first=932 second=343 amount=-2 +kerning first=932 second=345 amount=-2 +kerning first=932 second=346 amount=-1 +kerning first=932 second=347 amount=-3 +kerning first=932 second=350 amount=-1 +kerning first=932 second=351 amount=-3 +kerning first=932 second=352 amount=-1 +kerning first=932 second=353 amount=-3 +kerning first=932 second=361 amount=-2 +kerning first=932 second=363 amount=-2 +kerning first=932 second=365 amount=-2 +kerning first=932 second=367 amount=-2 +kerning first=932 second=369 amount=-2 +kerning first=932 second=371 amount=-2 +kerning first=932 second=373 amount=-2 +kerning first=932 second=375 amount=-2 +kerning first=932 second=378 amount=-1 +kerning first=932 second=380 amount=-1 +kerning first=932 second=382 amount=-1 +kerning first=932 second=913 amount=-6 +kerning first=932 second=916 amount=-6 +kerning first=932 second=920 amount=-1 +kerning first=932 second=923 amount=-6 +kerning first=932 second=927 amount=-1 +kerning first=932 second=940 amount=-3 +kerning first=932 second=941 amount=-3 +kerning first=932 second=942 amount=-2 +kerning first=932 second=945 amount=-3 +kerning first=932 second=947 amount=-2 +kerning first=932 second=949 amount=-3 +kerning first=932 second=951 amount=-2 +kerning first=932 second=954 amount=-2 +kerning first=932 second=957 amount=-2 +kerning first=932 second=959 amount=-3 +kerning first=932 second=962 amount=-3 +kerning first=932 second=963 amount=-3 +kerning first=932 second=965 amount=-2 +kerning first=932 second=966 amount=-3 +kerning first=932 second=968 amount=-2 +kerning first=932 second=972 amount=-3 +kerning first=932 second=973 amount=-2 +kerning first=932 second=1028 amount=-1 +kerning first=932 second=1029 amount=-1 +kerning first=932 second=1032 amount=-5 +kerning first=932 second=1033 amount=-4 +kerning first=932 second=1040 amount=-6 +kerning first=932 second=1044 amount=-4 +kerning first=932 second=1051 amount=-4 +kerning first=932 second=1054 amount=-1 +kerning first=932 second=1057 amount=-1 +kerning first=932 second=1072 amount=-2 +kerning first=932 second=1074 amount=-2 +kerning first=932 second=1075 amount=-2 +kerning first=932 second=1077 amount=-3 +kerning first=932 second=1078 amount=-1 +kerning first=932 second=1079 amount=-2 +kerning first=932 second=1080 amount=-2 +kerning first=932 second=1081 amount=-2 +kerning first=932 second=1082 amount=-2 +kerning first=932 second=1084 amount=-2 +kerning first=932 second=1085 amount=-2 +kerning first=932 second=1086 amount=-3 +kerning first=932 second=1087 amount=-2 +kerning first=932 second=1088 amount=-2 +kerning first=932 second=1089 amount=-3 +kerning first=932 second=1091 amount=-2 +kerning first=932 second=1092 amount=-3 +kerning first=932 second=1093 amount=-1 +kerning first=932 second=1094 amount=-2 +kerning first=932 second=1096 amount=-2 +kerning first=932 second=1097 amount=-2 +kerning first=932 second=1099 amount=-2 +kerning first=932 second=1100 amount=-2 +kerning first=932 second=1101 amount=-2 +kerning first=932 second=1102 amount=-2 +kerning first=932 second=1104 amount=-3 +kerning first=932 second=1105 amount=-3 +kerning first=932 second=1107 amount=-2 +kerning first=932 second=1108 amount=-3 +kerning first=932 second=1109 amount=-3 +kerning first=932 second=1114 amount=-2 +kerning first=932 second=1116 amount=-2 +kerning first=932 second=1117 amount=-2 +kerning first=932 second=1118 amount=-2 +kerning first=932 second=1119 amount=-2 +kerning first=932 second=1169 amount=-2 +kerning first=932 second=1175 amount=-1 +kerning first=932 second=1177 amount=-2 +kerning first=932 second=1179 amount=-2 +kerning first=932 second=1187 amount=-2 +kerning first=932 second=1194 amount=-1 +kerning first=932 second=1195 amount=-3 +kerning first=932 second=1199 amount=-2 +kerning first=932 second=1203 amount=-1 +kerning first=932 second=1220 amount=-2 +kerning first=932 second=1224 amount=-2 +kerning first=932 second=1240 amount=-1 +kerning first=932 second=1241 amount=-3 +kerning first=932 second=1256 amount=-1 +kerning first=932 second=1257 amount=-3 +kerning first=932 second=1263 amount=-2 +kerning first=932 second=1298 amount=-4 +kerning first=932 second=8211 amount=-4 +kerning first=932 second=8212 amount=-4 +kerning first=932 second=8218 amount=-3 +kerning first=932 second=8222 amount=-3 +kerning first=932 second=8230 amount=-3 +kerning first=932 second=8249 amount=-3 +kerning first=932 second=8250 amount=-1 +kerning first=933 second=38 amount=-2 +kerning first=933 second=44 amount=-4 +kerning first=933 second=45 amount=-4 +kerning first=933 second=46 amount=-4 +kerning first=933 second=47 amount=-4 +kerning first=933 second=110 amount=-3 +kerning first=933 second=63 amount=-1 +kerning first=933 second=65 amount=-5 +kerning first=933 second=67 amount=-3 +kerning first=933 second=114 amount=-3 +kerning first=933 second=71 amount=-3 +kerning first=933 second=74 amount=-6 +kerning first=933 second=79 amount=-3 +kerning first=933 second=81 amount=-3 +kerning first=933 second=83 amount=-1 +kerning first=933 second=97 amount=-4 +kerning first=933 second=99 amount=-4 +kerning first=933 second=100 amount=-4 +kerning first=933 second=101 amount=-4 +kerning first=933 second=103 amount=-4 +kerning first=933 second=109 amount=-3 +kerning first=933 second=111 amount=-4 +kerning first=933 second=112 amount=-3 +kerning first=933 second=113 amount=-4 +kerning first=933 second=115 amount=-3 +kerning first=933 second=117 amount=-2 +kerning first=933 second=118 amount=-2 +kerning first=933 second=119 amount=-2 +kerning first=933 second=120 amount=-2 +kerning first=933 second=121 amount=-2 +kerning first=933 second=122 amount=-2 +kerning first=933 second=171 amount=-3 +kerning first=933 second=173 amount=-4 +kerning first=933 second=187 amount=-2 +kerning first=933 second=193 amount=-5 +kerning first=933 second=194 amount=-5 +kerning first=933 second=196 amount=-5 +kerning first=933 second=197 amount=-5 +kerning first=933 second=198 amount=-5 +kerning first=933 second=199 amount=-3 +kerning first=933 second=210 amount=-3 +kerning first=933 second=211 amount=-3 +kerning first=933 second=212 amount=-3 +kerning first=933 second=213 amount=-3 +kerning first=933 second=214 amount=-3 +kerning first=933 second=216 amount=-3 +kerning first=933 second=224 amount=-4 +kerning first=933 second=225 amount=-4 +kerning first=933 second=226 amount=-4 +kerning first=933 second=227 amount=-4 +kerning first=933 second=228 amount=-4 +kerning first=933 second=229 amount=-4 +kerning first=933 second=230 amount=-4 +kerning first=933 second=231 amount=-4 +kerning first=933 second=232 amount=-4 +kerning first=933 second=233 amount=-4 +kerning first=933 second=234 amount=-4 +kerning first=933 second=235 amount=-4 +kerning first=933 second=240 amount=-4 +kerning first=933 second=241 amount=-3 +kerning first=933 second=242 amount=-4 +kerning first=933 second=243 amount=-4 +kerning first=933 second=244 amount=-4 +kerning first=933 second=245 amount=-4 +kerning first=933 second=246 amount=-4 +kerning first=933 second=248 amount=-4 +kerning first=933 second=249 amount=-2 +kerning first=933 second=250 amount=-2 +kerning first=933 second=251 amount=-2 +kerning first=933 second=252 amount=-2 +kerning first=933 second=253 amount=-2 +kerning first=933 second=256 amount=-5 +kerning first=933 second=257 amount=-4 +kerning first=933 second=258 amount=-5 +kerning first=933 second=259 amount=-4 +kerning first=933 second=260 amount=-5 +kerning first=933 second=261 amount=-4 +kerning first=933 second=262 amount=-3 +kerning first=933 second=263 amount=-4 +kerning first=933 second=266 amount=-3 +kerning first=933 second=267 amount=-4 +kerning first=933 second=268 amount=-3 +kerning first=933 second=269 amount=-4 +kerning first=933 second=271 amount=-4 +kerning first=933 second=273 amount=-4 +kerning first=933 second=275 amount=-4 +kerning first=933 second=277 amount=-4 +kerning first=933 second=279 amount=-4 +kerning first=933 second=281 amount=-4 +kerning first=933 second=283 amount=-4 +kerning first=933 second=286 amount=-3 +kerning first=933 second=287 amount=-4 +kerning first=933 second=288 amount=-3 +kerning first=933 second=289 amount=-4 +kerning first=933 second=290 amount=-3 +kerning first=933 second=291 amount=-4 +kerning first=933 second=324 amount=-3 +kerning first=933 second=326 amount=-3 +kerning first=933 second=328 amount=-3 +kerning first=933 second=331 amount=-3 +kerning first=933 second=332 amount=-3 +kerning first=933 second=333 amount=-4 +kerning first=933 second=334 amount=-3 +kerning first=933 second=335 amount=-4 +kerning first=933 second=336 amount=-3 +kerning first=933 second=337 amount=-4 +kerning first=933 second=338 amount=-3 +kerning first=933 second=339 amount=-4 +kerning first=933 second=341 amount=-3 +kerning first=933 second=343 amount=-3 +kerning first=933 second=345 amount=-3 +kerning first=933 second=346 amount=-1 +kerning first=933 second=347 amount=-3 +kerning first=933 second=350 amount=-1 +kerning first=933 second=351 amount=-3 +kerning first=933 second=352 amount=-1 +kerning first=933 second=353 amount=-3 +kerning first=933 second=361 amount=-2 +kerning first=933 second=363 amount=-2 +kerning first=933 second=365 amount=-2 +kerning first=933 second=367 amount=-2 +kerning first=933 second=369 amount=-2 +kerning first=933 second=371 amount=-2 +kerning first=933 second=373 amount=-2 +kerning first=933 second=375 amount=-2 +kerning first=933 second=378 amount=-2 +kerning first=933 second=380 amount=-2 +kerning first=933 second=382 amount=-2 +kerning first=933 second=913 amount=-5 +kerning first=933 second=916 amount=-5 +kerning first=933 second=920 amount=-3 +kerning first=933 second=923 amount=-5 +kerning first=933 second=927 amount=-3 +kerning first=933 second=937 amount=-2 +kerning first=933 second=940 amount=-4 +kerning first=933 second=941 amount=-4 +kerning first=933 second=942 amount=-3 +kerning first=933 second=943 amount=-2 +kerning first=933 second=945 amount=-4 +kerning first=933 second=947 amount=-2 +kerning first=933 second=949 amount=-4 +kerning first=933 second=950 amount=-2 +kerning first=933 second=951 amount=-3 +kerning first=933 second=952 amount=-2 +kerning first=933 second=953 amount=-2 +kerning first=933 second=954 amount=-3 +kerning first=933 second=955 amount=-2 +kerning first=933 second=957 amount=-2 +kerning first=933 second=959 amount=-4 +kerning first=933 second=961 amount=-5 +kerning first=933 second=962 amount=-4 +kerning first=933 second=963 amount=-4 +kerning first=933 second=964 amount=-2 +kerning first=933 second=965 amount=-2 +kerning first=933 second=966 amount=-4 +kerning first=933 second=967 amount=-2 +kerning first=933 second=968 amount=-2 +kerning first=933 second=969 amount=-4 +kerning first=933 second=970 amount=-2 +kerning first=933 second=972 amount=-4 +kerning first=933 second=973 amount=-2 +kerning first=933 second=974 amount=-4 +kerning first=933 second=1028 amount=-3 +kerning first=933 second=1029 amount=-1 +kerning first=933 second=1032 amount=-6 +kerning first=933 second=1033 amount=-5 +kerning first=933 second=1040 amount=-5 +kerning first=933 second=1044 amount=-5 +kerning first=933 second=1051 amount=-5 +kerning first=933 second=1054 amount=-3 +kerning first=933 second=1057 amount=-3 +kerning first=933 second=1069 amount=-2 +kerning first=933 second=1071 amount=-2 +kerning first=933 second=1072 amount=-4 +kerning first=933 second=1074 amount=-3 +kerning first=933 second=1075 amount=-3 +kerning first=933 second=1077 amount=-4 +kerning first=933 second=1078 amount=-2 +kerning first=933 second=1079 amount=-4 +kerning first=933 second=1080 amount=-3 +kerning first=933 second=1081 amount=-3 +kerning first=933 second=1082 amount=-3 +kerning first=933 second=1084 amount=-3 +kerning first=933 second=1085 amount=-3 +kerning first=933 second=1086 amount=-4 +kerning first=933 second=1087 amount=-3 +kerning first=933 second=1088 amount=-3 +kerning first=933 second=1089 amount=-4 +kerning first=933 second=1090 amount=-2 +kerning first=933 second=1091 amount=-2 +kerning first=933 second=1092 amount=-4 +kerning first=933 second=1093 amount=-2 +kerning first=933 second=1094 amount=-3 +kerning first=933 second=1096 amount=-3 +kerning first=933 second=1097 amount=-3 +kerning first=933 second=1098 amount=-2 +kerning first=933 second=1099 amount=-3 +kerning first=933 second=1100 amount=-3 +kerning first=933 second=1101 amount=-4 +kerning first=933 second=1102 amount=-3 +kerning first=933 second=1104 amount=-4 +kerning first=933 second=1105 amount=-4 +kerning first=933 second=1107 amount=-3 +kerning first=933 second=1108 amount=-4 +kerning first=933 second=1109 amount=-3 +kerning first=933 second=1114 amount=-3 +kerning first=933 second=1116 amount=-3 +kerning first=933 second=1117 amount=-3 +kerning first=933 second=1118 amount=-2 +kerning first=933 second=1119 amount=-3 +kerning first=933 second=1169 amount=-3 +kerning first=933 second=1175 amount=-2 +kerning first=933 second=1176 amount=-2 +kerning first=933 second=1177 amount=-4 +kerning first=933 second=1179 amount=-3 +kerning first=933 second=1185 amount=-2 +kerning first=933 second=1187 amount=-3 +kerning first=933 second=1194 amount=-3 +kerning first=933 second=1195 amount=-4 +kerning first=933 second=1199 amount=-2 +kerning first=933 second=1203 amount=-2 +kerning first=933 second=1220 amount=-3 +kerning first=933 second=1224 amount=-3 +kerning first=933 second=1240 amount=-3 +kerning first=933 second=1241 amount=-4 +kerning first=933 second=1256 amount=-3 +kerning first=933 second=1257 amount=-4 +kerning first=933 second=1263 amount=-2 +kerning first=933 second=1298 amount=-5 +kerning first=933 second=8211 amount=-4 +kerning first=933 second=8212 amount=-4 +kerning first=933 second=8218 amount=-4 +kerning first=933 second=8222 amount=-4 +kerning first=933 second=8230 amount=-4 +kerning first=933 second=8249 amount=-3 +kerning first=933 second=8250 amount=-2 +kerning first=934 second=84 amount=-3 +kerning first=934 second=88 amount=-5 +kerning first=934 second=354 amount=-3 +kerning first=934 second=356 amount=-3 +kerning first=934 second=932 amount=-3 +kerning first=934 second=935 amount=-5 +kerning first=934 second=1026 amount=-3 +kerning first=934 second=1033 amount=-3 +kerning first=934 second=1035 amount=-3 +kerning first=934 second=1044 amount=-3 +kerning first=934 second=1046 amount=-5 +kerning first=934 second=1051 amount=-3 +kerning first=934 second=1058 amount=-3 +kerning first=934 second=1061 amount=-5 +kerning first=934 second=1066 amount=-3 +kerning first=934 second=1174 amount=-5 +kerning first=934 second=1184 amount=-3 +kerning first=934 second=1202 amount=-5 +kerning first=934 second=1298 amount=-3 +kerning first=935 second=38 amount=-2 +kerning first=935 second=45 amount=-3 +kerning first=935 second=63 amount=-2 +kerning first=935 second=67 amount=-3 +kerning first=935 second=71 amount=-3 +kerning first=935 second=74 amount=-1 +kerning first=935 second=79 amount=-3 +kerning first=935 second=81 amount=-3 +kerning first=935 second=83 amount=-1 +kerning first=935 second=97 amount=-1 +kerning first=935 second=99 amount=-2 +kerning first=935 second=100 amount=-2 +kerning first=935 second=101 amount=-2 +kerning first=935 second=111 amount=-2 +kerning first=935 second=113 amount=-2 +kerning first=935 second=115 amount=-1 +kerning first=935 second=116 amount=-1 +kerning first=935 second=117 amount=-1 +kerning first=935 second=118 amount=-3 +kerning first=935 second=119 amount=-3 +kerning first=935 second=121 amount=-1 +kerning first=935 second=171 amount=-3 +kerning first=935 second=173 amount=-3 +kerning first=935 second=187 amount=-1 +kerning first=935 second=199 amount=-3 +kerning first=935 second=210 amount=-3 +kerning first=935 second=211 amount=-3 +kerning first=935 second=212 amount=-3 +kerning first=935 second=213 amount=-3 +kerning first=935 second=214 amount=-3 +kerning first=935 second=216 amount=-3 +kerning first=935 second=224 amount=-1 +kerning first=935 second=225 amount=-1 +kerning first=935 second=226 amount=-1 +kerning first=935 second=227 amount=-1 +kerning first=935 second=228 amount=-1 +kerning first=935 second=229 amount=-1 +kerning first=935 second=230 amount=-1 +kerning first=935 second=231 amount=-2 +kerning first=935 second=232 amount=-2 +kerning first=935 second=233 amount=-2 +kerning first=935 second=234 amount=-2 +kerning first=935 second=235 amount=-2 +kerning first=935 second=240 amount=-2 +kerning first=935 second=242 amount=-2 +kerning first=935 second=243 amount=-2 +kerning first=935 second=244 amount=-2 +kerning first=935 second=245 amount=-2 +kerning first=935 second=246 amount=-2 +kerning first=935 second=248 amount=-2 +kerning first=935 second=249 amount=-1 +kerning first=935 second=250 amount=-1 +kerning first=935 second=251 amount=-1 +kerning first=935 second=252 amount=-1 +kerning first=935 second=253 amount=-1 +kerning first=935 second=257 amount=-1 +kerning first=935 second=259 amount=-1 +kerning first=935 second=261 amount=-1 +kerning first=935 second=262 amount=-3 +kerning first=935 second=263 amount=-2 +kerning first=935 second=266 amount=-3 +kerning first=935 second=267 amount=-2 +kerning first=935 second=268 amount=-3 +kerning first=935 second=269 amount=-2 +kerning first=935 second=271 amount=-2 +kerning first=935 second=273 amount=-2 +kerning first=935 second=275 amount=-2 +kerning first=935 second=277 amount=-2 +kerning first=935 second=279 amount=-2 +kerning first=935 second=281 amount=-2 +kerning first=935 second=283 amount=-2 +kerning first=935 second=286 amount=-3 +kerning first=935 second=288 amount=-3 +kerning first=935 second=290 amount=-3 +kerning first=935 second=332 amount=-3 +kerning first=935 second=333 amount=-2 +kerning first=935 second=334 amount=-3 +kerning first=935 second=335 amount=-2 +kerning first=935 second=336 amount=-3 +kerning first=935 second=337 amount=-2 +kerning first=935 second=338 amount=-3 +kerning first=935 second=339 amount=-2 +kerning first=935 second=346 amount=-1 +kerning first=935 second=347 amount=-1 +kerning first=935 second=350 amount=-1 +kerning first=935 second=351 amount=-1 +kerning first=935 second=352 amount=-1 +kerning first=935 second=353 amount=-1 +kerning first=935 second=355 amount=-1 +kerning first=935 second=357 amount=-1 +kerning first=935 second=359 amount=-1 +kerning first=935 second=361 amount=-1 +kerning first=935 second=363 amount=-1 +kerning first=935 second=365 amount=-1 +kerning first=935 second=367 amount=-1 +kerning first=935 second=369 amount=-1 +kerning first=935 second=371 amount=-1 +kerning first=935 second=373 amount=-3 +kerning first=935 second=375 amount=-1 +kerning first=935 second=920 amount=-3 +kerning first=935 second=927 amount=-3 +kerning first=935 second=934 amount=-5 +kerning first=935 second=940 amount=-2 +kerning first=935 second=941 amount=-2 +kerning first=935 second=943 amount=-1 +kerning first=935 second=945 amount=-2 +kerning first=935 second=947 amount=-3 +kerning first=935 second=949 amount=-2 +kerning first=935 second=950 amount=-2 +kerning first=935 second=952 amount=-2 +kerning first=935 second=953 amount=-1 +kerning first=935 second=957 amount=-3 +kerning first=935 second=959 amount=-2 +kerning first=935 second=962 amount=-2 +kerning first=935 second=963 amount=-2 +kerning first=935 second=964 amount=-3 +kerning first=935 second=965 amount=-1 +kerning first=935 second=966 amount=-2 +kerning first=935 second=967 amount=-2 +kerning first=935 second=968 amount=-1 +kerning first=935 second=969 amount=-2 +kerning first=935 second=970 amount=-1 +kerning first=935 second=972 amount=-2 +kerning first=935 second=973 amount=-1 +kerning first=935 second=974 amount=-2 +kerning first=935 second=1028 amount=-3 +kerning first=935 second=1029 amount=-1 +kerning first=935 second=1032 amount=-1 +kerning first=935 second=1047 amount=-2 +kerning first=935 second=1054 amount=-3 +kerning first=935 second=1057 amount=-3 +kerning first=935 second=1060 amount=-5 +kerning first=935 second=1063 amount=-1 +kerning first=935 second=1069 amount=-2 +kerning first=935 second=1072 amount=-1 +kerning first=935 second=1077 amount=-2 +kerning first=935 second=1079 amount=-2 +kerning first=935 second=1086 amount=-2 +kerning first=935 second=1089 amount=-2 +kerning first=935 second=1090 amount=-3 +kerning first=935 second=1091 amount=-1 +kerning first=935 second=1092 amount=-2 +kerning first=935 second=1098 amount=-3 +kerning first=935 second=1101 amount=-2 +kerning first=935 second=1104 amount=-2 +kerning first=935 second=1105 amount=-2 +kerning first=935 second=1108 amount=-2 +kerning first=935 second=1109 amount=-1 +kerning first=935 second=1118 amount=-1 +kerning first=935 second=1176 amount=-2 +kerning first=935 second=1177 amount=-2 +kerning first=935 second=1185 amount=-3 +kerning first=935 second=1194 amount=-3 +kerning first=935 second=1195 amount=-2 +kerning first=935 second=1199 amount=-3 +kerning first=935 second=1240 amount=-3 +kerning first=935 second=1241 amount=-2 +kerning first=935 second=1256 amount=-3 +kerning first=935 second=1257 amount=-2 +kerning first=935 second=1263 amount=-1 +kerning first=935 second=8211 amount=-3 +kerning first=935 second=8212 amount=-3 +kerning first=935 second=8249 amount=-3 +kerning first=935 second=8250 amount=-1 +kerning first=936 second=65 amount=-3 +kerning first=936 second=193 amount=-3 +kerning first=936 second=194 amount=-3 +kerning first=936 second=196 amount=-3 +kerning first=936 second=197 amount=-3 +kerning first=936 second=198 amount=-3 +kerning first=936 second=256 amount=-3 +kerning first=936 second=258 amount=-3 +kerning first=936 second=260 amount=-3 +kerning first=936 second=913 amount=-3 +kerning first=936 second=916 amount=-3 +kerning first=936 second=923 amount=-3 +kerning first=936 second=950 amount=-1 +kerning first=936 second=955 amount=-2 +kerning first=936 second=961 amount=-1 +kerning first=936 second=1040 amount=-3 +kerning first=937 second=89 amount=-2 +kerning first=937 second=221 amount=-2 +kerning first=937 second=374 amount=-2 +kerning first=937 second=376 amount=-2 +kerning first=937 second=933 amount=-2 +kerning first=937 second=939 amount=-2 +kerning first=937 second=950 amount=-1 +kerning first=937 second=1198 amount=-2 +kerning first=939 second=38 amount=-2 +kerning first=939 second=44 amount=-4 +kerning first=939 second=45 amount=-4 +kerning first=939 second=46 amount=-4 +kerning first=939 second=47 amount=-4 +kerning first=939 second=110 amount=-3 +kerning first=939 second=63 amount=-1 +kerning first=939 second=65 amount=-5 +kerning first=939 second=67 amount=-3 +kerning first=939 second=114 amount=-3 +kerning first=939 second=71 amount=-3 +kerning first=939 second=74 amount=-6 +kerning first=939 second=79 amount=-3 +kerning first=939 second=81 amount=-3 +kerning first=939 second=83 amount=-1 +kerning first=939 second=97 amount=-4 +kerning first=939 second=99 amount=-4 +kerning first=939 second=100 amount=-4 +kerning first=939 second=101 amount=-4 +kerning first=939 second=103 amount=-4 +kerning first=939 second=109 amount=-3 +kerning first=939 second=111 amount=-4 +kerning first=939 second=112 amount=-3 +kerning first=939 second=113 amount=-4 +kerning first=939 second=115 amount=-3 +kerning first=939 second=117 amount=-2 +kerning first=939 second=118 amount=-2 +kerning first=939 second=119 amount=-2 +kerning first=939 second=120 amount=-2 +kerning first=939 second=121 amount=-2 +kerning first=939 second=122 amount=-2 +kerning first=939 second=171 amount=-3 +kerning first=939 second=173 amount=-4 +kerning first=939 second=187 amount=-2 +kerning first=939 second=193 amount=-5 +kerning first=939 second=194 amount=-5 +kerning first=939 second=196 amount=-5 +kerning first=939 second=197 amount=-5 +kerning first=939 second=198 amount=-5 +kerning first=939 second=199 amount=-3 +kerning first=939 second=210 amount=-3 +kerning first=939 second=211 amount=-3 +kerning first=939 second=212 amount=-3 +kerning first=939 second=213 amount=-3 +kerning first=939 second=214 amount=-3 +kerning first=939 second=216 amount=-3 +kerning first=939 second=224 amount=-4 +kerning first=939 second=225 amount=-4 +kerning first=939 second=226 amount=-4 +kerning first=939 second=227 amount=-4 +kerning first=939 second=228 amount=-4 +kerning first=939 second=229 amount=-4 +kerning first=939 second=230 amount=-4 +kerning first=939 second=231 amount=-4 +kerning first=939 second=232 amount=-4 +kerning first=939 second=233 amount=-4 +kerning first=939 second=234 amount=-4 +kerning first=939 second=235 amount=-4 +kerning first=939 second=240 amount=-4 +kerning first=939 second=241 amount=-3 +kerning first=939 second=242 amount=-4 +kerning first=939 second=243 amount=-4 +kerning first=939 second=244 amount=-4 +kerning first=939 second=245 amount=-4 +kerning first=939 second=246 amount=-4 +kerning first=939 second=248 amount=-4 +kerning first=939 second=249 amount=-2 +kerning first=939 second=250 amount=-2 +kerning first=939 second=251 amount=-2 +kerning first=939 second=252 amount=-2 +kerning first=939 second=253 amount=-2 +kerning first=939 second=256 amount=-5 +kerning first=939 second=257 amount=-4 +kerning first=939 second=258 amount=-5 +kerning first=939 second=259 amount=-4 +kerning first=939 second=260 amount=-5 +kerning first=939 second=261 amount=-4 +kerning first=939 second=262 amount=-3 +kerning first=939 second=263 amount=-4 +kerning first=939 second=266 amount=-3 +kerning first=939 second=267 amount=-4 +kerning first=939 second=268 amount=-3 +kerning first=939 second=269 amount=-4 +kerning first=939 second=271 amount=-4 +kerning first=939 second=273 amount=-4 +kerning first=939 second=275 amount=-4 +kerning first=939 second=277 amount=-4 +kerning first=939 second=279 amount=-4 +kerning first=939 second=281 amount=-4 +kerning first=939 second=283 amount=-4 +kerning first=939 second=286 amount=-3 +kerning first=939 second=287 amount=-4 +kerning first=939 second=288 amount=-3 +kerning first=939 second=289 amount=-4 +kerning first=939 second=290 amount=-3 +kerning first=939 second=291 amount=-4 +kerning first=939 second=324 amount=-3 +kerning first=939 second=326 amount=-3 +kerning first=939 second=328 amount=-3 +kerning first=939 second=331 amount=-3 +kerning first=939 second=332 amount=-3 +kerning first=939 second=333 amount=-4 +kerning first=939 second=334 amount=-3 +kerning first=939 second=335 amount=-4 +kerning first=939 second=336 amount=-3 +kerning first=939 second=337 amount=-4 +kerning first=939 second=338 amount=-3 +kerning first=939 second=339 amount=-4 +kerning first=939 second=341 amount=-3 +kerning first=939 second=343 amount=-3 +kerning first=939 second=345 amount=-3 +kerning first=939 second=346 amount=-1 +kerning first=939 second=347 amount=-3 +kerning first=939 second=350 amount=-1 +kerning first=939 second=351 amount=-3 +kerning first=939 second=352 amount=-1 +kerning first=939 second=353 amount=-3 +kerning first=939 second=361 amount=-2 +kerning first=939 second=363 amount=-2 +kerning first=939 second=365 amount=-2 +kerning first=939 second=367 amount=-2 +kerning first=939 second=369 amount=-2 +kerning first=939 second=371 amount=-2 +kerning first=939 second=373 amount=-2 +kerning first=939 second=375 amount=-2 +kerning first=939 second=378 amount=-2 +kerning first=939 second=380 amount=-2 +kerning first=939 second=382 amount=-2 +kerning first=939 second=913 amount=-5 +kerning first=939 second=916 amount=-5 +kerning first=939 second=920 amount=-3 +kerning first=939 second=923 amount=-5 +kerning first=939 second=927 amount=-3 +kerning first=939 second=937 amount=-2 +kerning first=939 second=940 amount=-4 +kerning first=939 second=941 amount=-4 +kerning first=939 second=942 amount=-3 +kerning first=939 second=943 amount=-2 +kerning first=939 second=945 amount=-4 +kerning first=939 second=947 amount=-2 +kerning first=939 second=949 amount=-4 +kerning first=939 second=950 amount=-2 +kerning first=939 second=951 amount=-3 +kerning first=939 second=952 amount=-2 +kerning first=939 second=953 amount=-2 +kerning first=939 second=954 amount=-3 +kerning first=939 second=955 amount=-2 +kerning first=939 second=957 amount=-2 +kerning first=939 second=959 amount=-4 +kerning first=939 second=961 amount=-5 +kerning first=939 second=962 amount=-4 +kerning first=939 second=963 amount=-4 +kerning first=939 second=964 amount=-2 +kerning first=939 second=965 amount=-2 +kerning first=939 second=966 amount=-4 +kerning first=939 second=967 amount=-2 +kerning first=939 second=968 amount=-2 +kerning first=939 second=969 amount=-4 +kerning first=939 second=970 amount=-2 +kerning first=939 second=972 amount=-4 +kerning first=939 second=973 amount=-2 +kerning first=939 second=974 amount=-4 +kerning first=939 second=1028 amount=-3 +kerning first=939 second=1029 amount=-1 +kerning first=939 second=1032 amount=-6 +kerning first=939 second=1033 amount=-5 +kerning first=939 second=1040 amount=-5 +kerning first=939 second=1044 amount=-5 +kerning first=939 second=1051 amount=-5 +kerning first=939 second=1054 amount=-3 +kerning first=939 second=1057 amount=-3 +kerning first=939 second=1069 amount=-2 +kerning first=939 second=1071 amount=-2 +kerning first=939 second=1072 amount=-4 +kerning first=939 second=1074 amount=-3 +kerning first=939 second=1075 amount=-3 +kerning first=939 second=1077 amount=-4 +kerning first=939 second=1078 amount=-2 +kerning first=939 second=1079 amount=-4 +kerning first=939 second=1080 amount=-3 +kerning first=939 second=1081 amount=-3 +kerning first=939 second=1082 amount=-3 +kerning first=939 second=1084 amount=-3 +kerning first=939 second=1085 amount=-3 +kerning first=939 second=1086 amount=-4 +kerning first=939 second=1087 amount=-3 +kerning first=939 second=1088 amount=-3 +kerning first=939 second=1089 amount=-4 +kerning first=939 second=1090 amount=-2 +kerning first=939 second=1091 amount=-2 +kerning first=939 second=1092 amount=-4 +kerning first=939 second=1093 amount=-2 +kerning first=939 second=1094 amount=-3 +kerning first=939 second=1096 amount=-3 +kerning first=939 second=1097 amount=-3 +kerning first=939 second=1098 amount=-2 +kerning first=939 second=1099 amount=-3 +kerning first=939 second=1100 amount=-3 +kerning first=939 second=1101 amount=-4 +kerning first=939 second=1102 amount=-3 +kerning first=939 second=1104 amount=-4 +kerning first=939 second=1105 amount=-4 +kerning first=939 second=1107 amount=-3 +kerning first=939 second=1108 amount=-4 +kerning first=939 second=1109 amount=-3 +kerning first=939 second=1114 amount=-3 +kerning first=939 second=1116 amount=-3 +kerning first=939 second=1117 amount=-3 +kerning first=939 second=1118 amount=-2 +kerning first=939 second=1119 amount=-3 +kerning first=939 second=1169 amount=-3 +kerning first=939 second=1175 amount=-2 +kerning first=939 second=1176 amount=-2 +kerning first=939 second=1177 amount=-4 +kerning first=939 second=1179 amount=-3 +kerning first=939 second=1185 amount=-2 +kerning first=939 second=1187 amount=-3 +kerning first=939 second=1194 amount=-3 +kerning first=939 second=1195 amount=-4 +kerning first=939 second=1199 amount=-2 +kerning first=939 second=1203 amount=-2 +kerning first=939 second=1220 amount=-3 +kerning first=939 second=1224 amount=-3 +kerning first=939 second=1240 amount=-3 +kerning first=939 second=1241 amount=-4 +kerning first=939 second=1256 amount=-3 +kerning first=939 second=1257 amount=-4 +kerning first=939 second=1263 amount=-2 +kerning first=939 second=1298 amount=-5 +kerning first=939 second=8211 amount=-4 +kerning first=939 second=8212 amount=-4 +kerning first=939 second=8218 amount=-4 +kerning first=939 second=8222 amount=-4 +kerning first=939 second=8230 amount=-4 +kerning first=939 second=8249 amount=-3 +kerning first=939 second=8250 amount=-2 +kerning first=940 second=118 amount=-2 +kerning first=940 second=119 amount=-2 +kerning first=940 second=373 amount=-2 +kerning first=940 second=947 amount=-2 +kerning first=940 second=957 amount=-2 +kerning first=940 second=964 amount=-2 +kerning first=940 second=967 amount=-2 +kerning first=940 second=1090 amount=-2 +kerning first=940 second=1098 amount=-2 +kerning first=940 second=1185 amount=-2 +kerning first=940 second=1199 amount=-2 +kerning first=941 second=34 amount=-1 +kerning first=941 second=39 amount=-1 +kerning first=941 second=63 amount=-1 +kerning first=941 second=118 amount=-1 +kerning first=941 second=119 amount=-1 +kerning first=941 second=120 amount=-1 +kerning first=941 second=373 amount=-1 +kerning first=941 second=947 amount=-1 +kerning first=941 second=955 amount=-1 +kerning first=941 second=957 amount=-1 +kerning first=941 second=1078 amount=-1 +kerning first=941 second=1093 amount=-1 +kerning first=941 second=1175 amount=-1 +kerning first=941 second=1199 amount=-1 +kerning first=941 second=1203 amount=-1 +kerning first=941 second=8216 amount=-1 +kerning first=941 second=8217 amount=-1 +kerning first=941 second=8220 amount=-1 +kerning first=941 second=8221 amount=-1 +kerning first=943 second=118 amount=-2 +kerning first=943 second=119 amount=-2 +kerning first=943 second=373 amount=-2 +kerning first=943 second=947 amount=-2 +kerning first=943 second=957 amount=-2 +kerning first=943 second=964 amount=-2 +kerning first=943 second=967 amount=-2 +kerning first=943 second=1090 amount=-2 +kerning first=943 second=1098 amount=-2 +kerning first=943 second=1185 amount=-2 +kerning first=943 second=1199 amount=-2 +kerning first=945 second=118 amount=-2 +kerning first=945 second=119 amount=-2 +kerning first=945 second=373 amount=-2 +kerning first=945 second=947 amount=-2 +kerning first=945 second=957 amount=-2 +kerning first=945 second=964 amount=-2 +kerning first=945 second=967 amount=-2 +kerning first=945 second=1090 amount=-2 +kerning first=945 second=1098 amount=-2 +kerning first=945 second=1185 amount=-2 +kerning first=945 second=1199 amount=-2 +kerning first=947 second=44 amount=-2 +kerning first=947 second=45 amount=-1 +kerning first=947 second=46 amount=-2 +kerning first=947 second=47 amount=-3 +kerning first=947 second=97 amount=-1 +kerning first=947 second=99 amount=-1 +kerning first=947 second=100 amount=-1 +kerning first=947 second=101 amount=-1 +kerning first=947 second=103 amount=-1 +kerning first=947 second=111 amount=-1 +kerning first=947 second=113 amount=-1 +kerning first=947 second=115 amount=-1 +kerning first=947 second=171 amount=-1 +kerning first=947 second=173 amount=-1 +kerning first=947 second=224 amount=-1 +kerning first=947 second=225 amount=-1 +kerning first=947 second=226 amount=-1 +kerning first=947 second=227 amount=-1 +kerning first=947 second=228 amount=-1 +kerning first=947 second=229 amount=-1 +kerning first=947 second=230 amount=-1 +kerning first=947 second=231 amount=-1 +kerning first=947 second=232 amount=-1 +kerning first=947 second=233 amount=-1 +kerning first=947 second=234 amount=-1 +kerning first=947 second=235 amount=-1 +kerning first=947 second=240 amount=-1 +kerning first=947 second=242 amount=-1 +kerning first=947 second=243 amount=-1 +kerning first=947 second=244 amount=-1 +kerning first=947 second=245 amount=-1 +kerning first=947 second=246 amount=-1 +kerning first=947 second=248 amount=-1 +kerning first=947 second=257 amount=-1 +kerning first=947 second=259 amount=-1 +kerning first=947 second=261 amount=-1 +kerning first=947 second=263 amount=-1 +kerning first=947 second=267 amount=-1 +kerning first=947 second=269 amount=-1 +kerning first=947 second=271 amount=-1 +kerning first=947 second=273 amount=-1 +kerning first=947 second=275 amount=-1 +kerning first=947 second=277 amount=-1 +kerning first=947 second=279 amount=-1 +kerning first=947 second=281 amount=-1 +kerning first=947 second=283 amount=-1 +kerning first=947 second=287 amount=-1 +kerning first=947 second=289 amount=-1 +kerning first=947 second=291 amount=-1 +kerning first=947 second=333 amount=-1 +kerning first=947 second=335 amount=-1 +kerning first=947 second=337 amount=-1 +kerning first=947 second=339 amount=-1 +kerning first=947 second=347 amount=-1 +kerning first=947 second=351 amount=-1 +kerning first=947 second=353 amount=-1 +kerning first=947 second=940 amount=-1 +kerning first=947 second=941 amount=-1 +kerning first=947 second=945 amount=-1 +kerning first=947 second=949 amount=-1 +kerning first=947 second=950 amount=-2 +kerning first=947 second=955 amount=-4 +kerning first=947 second=959 amount=-1 +kerning first=947 second=961 amount=-2 +kerning first=947 second=962 amount=-1 +kerning first=947 second=963 amount=-1 +kerning first=947 second=966 amount=-1 +kerning first=947 second=969 amount=-1 +kerning first=947 second=972 amount=-1 +kerning first=947 second=974 amount=-1 +kerning first=947 second=1072 amount=-1 +kerning first=947 second=1077 amount=-1 +kerning first=947 second=1086 amount=-1 +kerning first=947 second=1089 amount=-1 +kerning first=947 second=1092 amount=-1 +kerning first=947 second=1104 amount=-1 +kerning first=947 second=1105 amount=-1 +kerning first=947 second=1108 amount=-1 +kerning first=947 second=1109 amount=-1 +kerning first=947 second=1195 amount=-1 +kerning first=947 second=1241 amount=-1 kerning first=947 second=1257 amount=-1 -kerning first=252 second=355 amount=-1 -kerning first=255 second=115 amount=-1 -kerning first=375 second=267 amount=-1 -kerning first=165 second=367 amount=-1 -kerning first=162 second=1185 amount=-3 -kerning first=305 second=214 amount=-2 -kerning first=1084 second=945 amount=-1 -kerning first=910 second=268 amount=-3 -kerning first=356 second=281 amount=-3 -kerning first=163 second=8220 amount=-3 -kerning first=282 second=227 amount=-1 -kerning first=48 second=1079 amount=-1 -kerning first=54 second=89 amount=-5 -kerning first=1065 second=269 amount=-1 -kerning first=306 second=369 amount=-1 -kerning first=74 second=251 amount=-1 -kerning first=916 second=216 amount=-2 -kerning first=231 second=8221 amount=-1 +kerning first=947 second=8211 amount=-1 +kerning first=947 second=8212 amount=-1 +kerning first=947 second=8218 amount=-2 +kerning first=947 second=8222 amount=-2 +kerning first=947 second=8230 amount=-2 +kerning first=947 second=8249 amount=-1 +kerning first=949 second=34 amount=-1 +kerning first=949 second=39 amount=-1 +kerning first=949 second=63 amount=-1 +kerning first=949 second=118 amount=-1 +kerning first=949 second=119 amount=-1 +kerning first=949 second=120 amount=-1 +kerning first=949 second=373 amount=-1 +kerning first=949 second=947 amount=-1 +kerning first=949 second=955 amount=-1 +kerning first=949 second=957 amount=-1 +kerning first=949 second=1078 amount=-1 +kerning first=949 second=1093 amount=-1 +kerning first=949 second=1175 amount=-1 +kerning first=949 second=1199 amount=-1 +kerning first=949 second=1203 amount=-1 +kerning first=949 second=8216 amount=-1 +kerning first=949 second=8217 amount=-1 +kerning first=949 second=8220 amount=-1 +kerning first=949 second=8221 amount=-1 +kerning first=950 second=110 amount=-2 +kerning first=950 second=114 amount=-2 +kerning first=950 second=109 amount=-2 +kerning first=950 second=112 amount=-2 +kerning first=950 second=117 amount=-2 +kerning first=950 second=118 amount=-2 +kerning first=950 second=119 amount=-2 +kerning first=950 second=241 amount=-2 +kerning first=950 second=249 amount=-2 +kerning first=950 second=250 amount=-2 +kerning first=950 second=251 amount=-2 +kerning first=950 second=252 amount=-2 +kerning first=950 second=324 amount=-2 +kerning first=950 second=326 amount=-2 +kerning first=950 second=328 amount=-2 +kerning first=950 second=331 amount=-2 +kerning first=950 second=341 amount=-2 +kerning first=950 second=343 amount=-2 +kerning first=950 second=345 amount=-2 +kerning first=950 second=361 amount=-2 +kerning first=950 second=363 amount=-2 +kerning first=950 second=365 amount=-2 +kerning first=950 second=367 amount=-2 +kerning first=950 second=369 amount=-2 +kerning first=950 second=371 amount=-2 +kerning first=950 second=373 amount=-2 +kerning first=950 second=942 amount=-2 +kerning first=950 second=943 amount=-2 +kerning first=950 second=947 amount=-2 +kerning first=950 second=951 amount=-2 +kerning first=950 second=952 amount=-2 +kerning first=950 second=953 amount=-2 +kerning first=950 second=954 amount=-2 +kerning first=950 second=955 amount=-2 +kerning first=950 second=957 amount=-2 +kerning first=950 second=965 amount=-2 +kerning first=950 second=967 amount=-1 +kerning first=950 second=968 amount=-2 +kerning first=950 second=969 amount=-3 +kerning first=950 second=970 amount=-2 +kerning first=950 second=973 amount=-2 +kerning first=950 second=974 amount=-3 +kerning first=950 second=1074 amount=-2 +kerning first=950 second=1075 amount=-2 +kerning first=950 second=1080 amount=-2 +kerning first=950 second=1081 amount=-2 +kerning first=950 second=1082 amount=-2 +kerning first=950 second=1084 amount=-2 +kerning first=950 second=1085 amount=-2 +kerning first=950 second=1087 amount=-2 +kerning first=950 second=1088 amount=-2 +kerning first=950 second=1094 amount=-2 +kerning first=950 second=1096 amount=-2 +kerning first=950 second=1097 amount=-2 +kerning first=950 second=1099 amount=-2 +kerning first=950 second=1100 amount=-2 +kerning first=950 second=1102 amount=-2 +kerning first=950 second=1107 amount=-2 +kerning first=950 second=1114 amount=-2 +kerning first=950 second=1116 amount=-2 +kerning first=950 second=1117 amount=-2 +kerning first=950 second=1119 amount=-2 +kerning first=950 second=1169 amount=-2 +kerning first=950 second=1179 amount=-2 +kerning first=950 second=1187 amount=-2 +kerning first=950 second=1199 amount=-2 +kerning first=950 second=1220 amount=-2 +kerning first=950 second=1224 amount=-2 +kerning first=953 second=118 amount=-2 +kerning first=953 second=119 amount=-2 +kerning first=953 second=373 amount=-2 +kerning first=953 second=947 amount=-2 +kerning first=953 second=957 amount=-2 +kerning first=953 second=964 amount=-2 +kerning first=953 second=967 amount=-2 +kerning first=953 second=1090 amount=-2 +kerning first=953 second=1098 amount=-2 +kerning first=953 second=1185 amount=-2 +kerning first=953 second=1199 amount=-2 +kerning first=954 second=45 amount=-3 +kerning first=954 second=97 amount=-1 +kerning first=954 second=99 amount=-2 +kerning first=954 second=100 amount=-2 +kerning first=954 second=101 amount=-2 +kerning first=954 second=103 amount=-2 +kerning first=954 second=106 amount=1 +kerning first=954 second=111 amount=-2 +kerning first=954 second=113 amount=-2 +kerning first=954 second=115 amount=-1 +kerning first=954 second=173 amount=-3 +kerning first=954 second=224 amount=-1 +kerning first=954 second=225 amount=-1 +kerning first=954 second=226 amount=-1 +kerning first=954 second=227 amount=-1 +kerning first=954 second=228 amount=-1 +kerning first=954 second=229 amount=-1 +kerning first=954 second=230 amount=-1 +kerning first=954 second=231 amount=-2 +kerning first=954 second=232 amount=-2 +kerning first=954 second=233 amount=-2 +kerning first=954 second=234 amount=-2 +kerning first=954 second=235 amount=-2 +kerning first=954 second=240 amount=-2 +kerning first=954 second=242 amount=-2 +kerning first=954 second=243 amount=-2 +kerning first=954 second=244 amount=-2 +kerning first=954 second=245 amount=-2 +kerning first=954 second=246 amount=-2 +kerning first=954 second=248 amount=-2 +kerning first=954 second=257 amount=-1 +kerning first=954 second=259 amount=-1 +kerning first=954 second=261 amount=-1 +kerning first=954 second=263 amount=-2 +kerning first=954 second=267 amount=-2 +kerning first=954 second=269 amount=-2 +kerning first=954 second=271 amount=-2 +kerning first=954 second=273 amount=-2 +kerning first=954 second=275 amount=-2 +kerning first=954 second=277 amount=-2 +kerning first=954 second=279 amount=-2 +kerning first=954 second=281 amount=-2 +kerning first=954 second=283 amount=-2 +kerning first=954 second=287 amount=-2 +kerning first=954 second=289 amount=-2 +kerning first=954 second=291 amount=-2 +kerning first=954 second=333 amount=-2 +kerning first=954 second=335 amount=-2 +kerning first=954 second=337 amount=-2 +kerning first=954 second=339 amount=-2 +kerning first=954 second=347 amount=-1 +kerning first=954 second=351 amount=-1 +kerning first=954 second=353 amount=-1 +kerning first=954 second=940 amount=-2 +kerning first=954 second=941 amount=-2 +kerning first=954 second=945 amount=-2 +kerning first=954 second=949 amount=-2 +kerning first=954 second=959 amount=-2 +kerning first=954 second=962 amount=-2 +kerning first=954 second=963 amount=-2 +kerning first=954 second=966 amount=-2 +kerning first=954 second=972 amount=-2 +kerning first=954 second=1072 amount=-1 +kerning first=954 second=1077 amount=-2 +kerning first=954 second=1086 amount=-2 +kerning first=954 second=1089 amount=-2 +kerning first=954 second=1092 amount=-2 +kerning first=954 second=1104 amount=-2 +kerning first=954 second=1105 amount=-2 +kerning first=954 second=1108 amount=-2 +kerning first=954 second=1109 amount=-1 +kerning first=954 second=1112 amount=1 +kerning first=954 second=1195 amount=-2 +kerning first=954 second=1241 amount=-2 +kerning first=954 second=1257 amount=-2 +kerning first=954 second=8211 amount=-3 +kerning first=954 second=8212 amount=-3 +kerning first=955 second=99 amount=-1 +kerning first=955 second=100 amount=-1 +kerning first=955 second=101 amount=-1 +kerning first=955 second=111 amount=-1 +kerning first=955 second=113 amount=-1 kerning first=955 second=118 amount=-4 -kerning first=1223 second=962 amount=-1 -kerning first=260 second=240 amount=-1 -kerning first=377 second=1194 amount=-1 -kerning first=170 second=943 amount=-1 -kerning first=174 second=252 amount=-1 -kerning first=280 second=1256 amount=-2 -kerning first=283 second=382 amount=-1 -kerning first=8225 second=333 amount=-1 -kerning first=55 second=266 amount=-2 -kerning first=58 second=39 amount=-3 -kerning first=316 second=79 amount=-2 -kerning first=1101 second=119 amount=-1 -kerning first=912 second=1195 amount=-1 -kerning first=1178 second=286 amount=-1 -kerning first=358 second=1257 amount=-1 -kerning first=121 second=267 amount=-1 -kerning first=1299 second=218 amount=-2 -kerning first=39 second=52 amount=-1 -kerning first=1036 second=230 amount=-1 -kerning first=8226 second=964 amount=-3 -kerning first=59 second=214 amount=-2 -kerning first=1067 second=947 amount=-4 -kerning first=1070 second=372 amount=-2 -kerning first=196 second=1101 amount=-1 -kerning first=314 second=945 amount=-1 -kerning first=79 second=356 amount=-2 -kerning first=923 second=1069 amount=-1 -kerning first=102 second=281 amount=-1 -kerning first=1186 second=231 amount=-1 -kerning first=962 second=243 amount=-1 -kerning first=40 second=227 amount=-1 -kerning first=179 second=357 amount=-1 -kerning first=183 second=117 amount=-1 -kerning first=60 second=369 amount=-1 -kerning first=200 second=973 amount=-1 -kerning first=8365 second=362 amount=-2 -kerning first=249 second=118 amount=-4 -kerning first=123 second=1194 amount=-2 -kerning first=126 second=370 amount=-2 -kerning first=271 second=283 amount=-1 -kerning first=38 second=1256 amount=-2 -kerning first=1044 second=333 amount=-1 -kerning first=299 second=217 amount=-2 -kerning first=1080 second=257 amount=-1 -kerning first=1076 second=949 amount=-1 -kerning first=207 second=229 amount=-1 -kerning first=8363 second=8211 amount=-2 -kerning first=327 second=119 amount=-4 -kerning first=902 second=271 amount=-1 -kerning first=84 second=920 amount=-1 -kerning first=87 second=241 amount=-2 -kerning first=1202 second=334 amount=-1 -kerning first=967 second=346 amount=-1 -kerning first=276 second=230 amount=-1 -kerning first=1049 second=273 amount=-1 -kerning first=188 second=242 amount=-1 -kerning first=1046 second=964 amount=-3 -kerning first=1062 second=45 amount=-2 -kerning first=297 second=947 amount=-4 -kerning first=300 second=372 amount=-5 -kerning first=65 second=945 amount=-1 -kerning first=205 second=1262 amount=-2 -kerning first=906 second=219 amount=-2 -kerning first=1118 second=347 amount=-1 -kerning first=354 second=231 amount=-3 -kerning first=254 second=243 amount=-1 -kerning first=374 second=373 amount=-2 -kerning first=968 second=1028 amount=-2 -kerning first=971 second=288 amount=-2 -kerning first=274 second=1263 amount=-1 -kerning first=49 second=269 amount=-1 -kerning first=1063 second=220 amount=-2 -kerning first=1083 second=1176 amount=-1 -kerning first=1087 second=362 amount=-2 -kerning first=908 second=374 amount=-3 -kerning first=95 second=106 amount=1 -kerning first=1170 second=289 amount=-1 -kerning first=1224 second=221 amount=-5 -kerning first=372 second=8230 amount=-3 -kerning first=1026 second=233 amount=-1 -kerning first=53 second=217 amount=-2 -kerning first=1064 second=375 amount=-1 -kerning first=305 second=949 amount=-1 -kerning first=310 second=257 amount=-1 -kerning first=73 second=359 amount=-1 -kerning first=1084 second=8211 amount=-2 -kerning first=76 second=119 amount=-3 -kerning first=219 second=44 amount=-1 -kerning first=923 second=84 amount=-5 -kerning first=93 second=1026 amount=-5 -kerning first=96 second=286 amount=-2 -kerning first=1176 second=234 amount=-1 -kerning first=954 second=246 amount=-2 -kerning first=1256 second=376 amount=-3 -kerning first=34 second=230 amount=-1 -kerning first=172 second=360 amount=-2 -kerning first=282 second=964 amount=-3 -kerning first=287 second=273 amount=-1 -kerning first=51 second=947 amount=-4 -kerning first=54 second=372 amount=-5 -kerning first=1062 second=8249 amount=-1 -kerning first=1071 second=85 amount=-2 -kerning first=197 second=287 amount=-1 -kerning first=338 second=347 amount=-1 -kerning first=926 second=259 amount=-1 -kerning first=934 second=34 amount=-3 -kerning first=100 second=231 amount=-1 -kerning first=240 second=361 amount=-1 -kerning first=366 second=46 amount=-1 -kerning first=1223 second=8250 amount=-1 -kerning first=260 second=1028 amount=-2 -kerning first=1035 second=336 amount=-2 -kerning first=291 second=220 amount=-2 -kerning first=8260 second=171 amount=-3 -kerning first=201 second=232 amount=-1 -kerning first=316 second=362 amount=-2 -kerning first=1185 second=337 amount=-2 -kerning first=247 second=71 amount=-2 -kerning first=367 second=221 amount=-5 -kerning first=964 second=111 amount=-1 -kerning first=118 second=8230 amount=-2 -kerning first=160 second=83 amount=-1 -kerning first=1299 second=953 amount=-1 -kerning first=39 second=333 amount=-1 -kerning first=182 second=245 amount=-1 -kerning first=294 second=375 amount=-1 -kerning first=8249 second=1078 amount=-1 -kerning first=59 second=949 amount=-1 -kerning first=62 second=257 amount=-1 -kerning first=314 second=8211 amount=-2 -kerning first=8369 second=250 amount=-1 -kerning first=8364 second=941 amount=-1 -kerning first=85 second=194 amount=-2 -kerning first=105 second=334 amount=-2 -kerning first=962 second=1035 amount=-5 -kerning first=965 second=291 amount=-1 -kerning first=43 second=273 amount=-1 -kerning first=40 second=964 amount=-3 -kerning first=46 second=45 amount=-1 -kerning first=301 second=85 amount=-2 -kerning first=206 second=335 amount=-1 -kerning first=209 second=97 amount=-1 -kerning first=86 second=347 amount=-1 -kerning first=89 second=109 amount=-3 -kerning first=232 second=34 amount=-1 -kerning first=934 second=8216 amount=-3 -kerning first=112 second=46 amount=-1 -kerning first=8218 second=51 amount=-1 -kerning first=47 second=220 amount=-2 -kerning first=187 second=350 amount=-1 -kerning first=64 second=1176 amount=-1 -kerning first=70 second=122 amount=-1 -kerning first=207 second=966 amount=-1 -kerning first=213 second=47 amount=-1 -kerning first=8378 second=355 amount=-1 -kerning first=356 second=99 amount=-3 -kerning first=948 second=249 amount=-1 -kerning first=944 second=940 amount=-1 -kerning first=113 second=221 amount=-5 -kerning first=256 second=111 amount=-1 -kerning first=253 second=351 amount=-1 -kerning first=376 second=261 amount=-4 -kerning first=163 second=1177 amount=-1 -kerning first=166 second=363 amount=-1 -kerning first=8220 second=226 amount=-1 -kerning first=48 second=375 amount=-1 -kerning first=191 second=290 amount=-2 -kerning first=306 second=210 amount=-2 -kerning first=65 second=8211 amount=-2 -kerning first=1085 second=941 amount=-1 -kerning first=68 second=1051 amount=-1 -kerning first=94 second=234 amount=-1 -kerning first=1169 second=1241 amount=-1 -kerning first=354 second=968 amount=-2 -kerning first=357 second=277 amount=-1 -kerning first=952 second=199 amount=-2 -kerning first=1210 second=1079 amount=-1 -kerning first=254 second=1035 amount=-5 -kerning first=971 second=1098 amount=-3 -kerning first=164 second=8212 amount=-2 -kerning first=167 second=1059 amount=-2 -kerning first=55 second=85 amount=-2 -kerning first=195 second=235 amount=-1 -kerning first=232 second=8216 amount=-1 -kerning first=361 second=224 amount=-1 -kerning first=950 second=1118 amount=-1 -kerning first=1299 second=39 amount=-3 -kerning first=1026 second=970 amount=-1 -kerning first=175 second=248 amount=-1 -kerning first=289 second=171 amount=-3 -kerning first=305 second=8217 amount=-3 -kerning first=8361 second=253 amount=-1 -kerning first=79 second=197 amount=-2 -kerning first=1099 second=355 amount=-1 -kerning first=222 second=87 amount=-2 -kerning first=923 second=367 amount=-1 -kerning first=915 second=1185 amount=-3 -kerning first=102 second=99 amount=-1 -kerning first=239 second=940 amount=-1 -kerning first=1037 second=226 amount=-1 -kerning first=60 second=210 amount=-2 -kerning first=1071 second=368 amount=-2 -kerning first=200 second=338 amount=-2 -kerning first=203 second=100 amount=-1 -kerning first=315 second=941 amount=-1 -kerning first=318 second=250 amount=-1 -kerning first=80 second=352 amount=-1 -kerning first=223 second=262 amount=-2 -kerning first=341 second=1241 amount=-1 -kerning first=916 second=8220 amount=-3 -kerning first=100 second=968 amount=-1 -kerning first=103 second=277 amount=-1 -kerning first=363 second=1079 amount=-1 -kerning first=369 second=89 amount=-5 -kerning first=126 second=211 amount=-2 -kerning first=271 second=101 amount=-1 -kerning first=180 second=353 amount=-1 -kerning first=184 second=113 amount=-1 -kerning first=296 second=263 amount=-1 -kerning first=61 second=365 amount=-1 -kerning first=1073 second=1066 amount=-5 -kerning first=8372 second=118 amount=-4 -kerning first=936 second=943 amount=-1 -kerning first=107 second=224 amount=-1 -kerning first=247 second=354 amount=-5 -kerning first=124 second=1184 amount=-5 -kerning first=160 second=366 amount=-2 -kerning first=273 second=279 amount=-1 -kerning first=300 second=213 amount=-2 -kerning first=59 second=8217 amount=-3 -kerning first=1081 second=253 amount=-1 -kerning first=325 second=355 amount=-1 -kerning first=903 second=267 amount=-1 -kerning first=225 second=1185 amount=-1 -kerning first=374 second=214 amount=-3 -kerning first=965 second=1101 amount=-1 -kerning first=1051 second=268 amount=-2 -kerning first=301 second=368 amount=-2 -kerning first=69 second=250 amount=-1 -kerning first=92 second=187 amount=-1 -kerning first=89 second=1241 amount=-4 -kerning first=226 second=8220 amount=-1 -kerning first=946 second=357 amount=-1 -kerning first=950 second=117 amount=-1 -kerning first=1219 second=269 amount=-1 -kerning first=372 second=1187 amount=-2 -kerning first=375 second=369 amount=-1 -kerning first=168 second=251 amount=-1 -kerning first=8218 second=332 amount=-1 -kerning first=50 second=263 amount=-1 -kerning first=1064 second=216 amount=-2 -kerning first=299 second=8221 amount=-3 -kerning first=302 second=1066 amount=-5 -kerning first=1096 second=118 amount=-4 -kerning first=216 second=90 amount=-1 -kerning first=905 second=1194 amount=-2 -kerning first=1171 second=283 amount=-1 -kerning first=236 second=252 amount=-1 -kerning first=356 second=382 amount=-1 -kerning first=373 second=8222 amount=-2 -kerning first=1027 second=229 amount=-1 -kerning first=8220 second=963 amount=-1 -kerning first=8224 second=271 amount=-1 -kerning first=54 second=213 amount=-2 -kerning first=1062 second=1195 amount=-1 -kerning first=197 second=103 amount=-1 -kerning first=74 second=355 amount=-1 -kerning first=77 second=115 amount=-1 +kerning first=955 second=119 amount=-4 +kerning first=955 second=231 amount=-1 +kerning first=955 second=232 amount=-1 +kerning first=955 second=233 amount=-1 +kerning first=955 second=234 amount=-1 +kerning first=955 second=235 amount=-1 +kerning first=955 second=240 amount=-1 kerning first=955 second=242 amount=-1 -kerning first=1223 second=947 amount=-4 -kerning first=380 second=945 amount=-1 -kerning first=35 second=226 amount=-1 -kerning first=174 second=356 amount=-5 -kerning first=177 second=116 amount=-1 -kerning first=8240 second=219 amount=-2 -kerning first=55 second=368 amount=-2 -kerning first=1073 second=81 amount=-2 -kerning first=195 second=972 amount=-1 -kerning first=198 second=281 amount=-1 -kerning first=8363 second=121 amount=-1 -kerning first=81 second=65 amount=-2 -kerning first=121 second=369 amount=-1 -kerning first=1036 second=332 amount=-3 -kerning first=294 second=216 amount=-2 -kerning first=8249 second=374 amount=-2 -kerning first=56 second=1066 amount=-5 -kerning first=53 second=8221 amount=-3 -kerning first=202 second=228 amount=-1 -kerning first=322 second=118 amount=-4 -kerning first=8369 second=71 amount=-2 -kerning first=79 second=916 amount=-2 -kerning first=343 second=283 amount=-1 -kerning first=1186 second=333 amount=-1 -kerning first=119 second=8222 amount=-2 -kerning first=161 second=79 amount=-2 -kerning first=1037 second=963 amount=-1 -kerning first=1041 second=271 amount=-1 -kerning first=179 second=920 amount=-2 -kerning first=63 second=253 amount=-1 -kerning first=200 second=1257 amount=-1 -kerning first=8370 second=246 amount=-1 -kerning first=901 second=218 amount=-2 -kerning first=934 second=1174 amount=-5 -kerning first=947 second=273 amount=-1 -kerning first=1206 second=45 amount=-2 -kerning first=249 second=242 amount=-1 -kerning first=1187 second=964 amount=-2 -kerning first=369 second=372 amount=-5 -kerning first=126 second=945 amount=-1 -kerning first=271 second=1240 amount=-2 -kerning first=44 second=268 amount=-1 -kerning first=1048 second=219 amount=-2 -kerning first=296 second=1069 amount=-1 -kerning first=302 second=81 amount=-2 -kerning first=1080 second=361 amount=-1 -kerning first=1084 second=121 amount=-1 -kerning first=327 second=243 amount=-1 -kerning first=902 second=373 amount=-4 -kerning first=84 second=1102 amount=-2 -kerning first=87 second=343 amount=-2 -kerning first=1117 second=288 amount=-2 -kerning first=276 second=332 amount=-2 -kerning first=8220 second=47 amount=-2 -kerning first=48 second=216 amount=-2 -kerning first=1049 second=374 amount=-5 -kerning first=8216 second=275 amount=-1 -kerning first=191 second=106 amount=1 -kerning first=332 second=193 amount=-2 -kerning first=88 second=974 amount=-2 -kerning first=91 second=283 amount=-1 -kerning first=1169 second=233 amount=-1 -kerning first=354 second=333 amount=-3 -kerning first=1210 second=375 amount=-1 -kerning first=374 second=949 amount=-4 -kerning first=167 second=359 amount=-1 -kerning first=170 second=119 amount=-4 -kerning first=280 second=271 amount=-1 -kerning first=283 second=44 amount=-1 -kerning first=49 second=371 amount=-1 -kerning first=1066 second=84 amount=-5 -kerning first=189 second=1026 amount=-5 -kerning first=192 second=286 amount=-2 -kerning first=1095 second=246 amount=-1 -kerning first=215 second=218 amount=-2 -kerning first=95 second=230 amount=-1 -kerning first=358 second=273 amount=-1 -kerning first=361 second=45 amount=-2 -kerning first=112 second=947 amount=-1 -kerning first=1206 second=8249 amount=-1 -kerning first=258 second=287 amount=-1 -kerning first=1026 second=335 amount=-1 -kerning first=50 second=1069 amount=-1 -kerning first=56 second=81 amount=-2 -kerning first=1067 second=259 amount=-1 -kerning first=196 second=231 amount=-1 -kerning first=310 second=361 amount=-1 -kerning first=314 second=121 amount=-1 -kerning first=76 second=243 amount=-1 -kerning first=213 second=1202 amount=-3 -kerning first=93 second=1263 amount=-1 -kerning first=1176 second=336 amount=-2 -kerning first=1027 second=966 amount=-1 -kerning first=176 second=244 amount=-1 -kerning first=287 second=374 amount=-5 -kerning first=8250 second=87 amount=-3 -kerning first=318 second=71 amount=-2 -kerning first=80 second=193 amount=-4 -kerning first=1103 second=111 amount=-1 -kerning first=223 second=83 amount=-1 -kerning first=341 second=233 amount=-1 -kerning first=916 second=1177 amount=-1 -kerning first=926 second=363 amount=-1 -kerning first=100 second=333 amount=-1 -kerning first=363 second=375 amount=-1 -kerning first=960 second=290 amount=-2 -kerning first=123 second=257 amount=-1 -kerning first=120 second=949 amount=-2 -kerning first=35 second=963 amount=-1 -kerning first=38 second=271 amount=-1 -kerning first=296 second=84 amount=-5 -kerning first=8260 second=262 amount=-2 -kerning first=1073 second=364 amount=-2 -kerning first=198 second=1090 amount=-3 -kerning first=201 second=334 amount=-2 -kerning first=321 second=246 amount=-1 -kerning first=8366 second=199 amount=-2 -kerning first=221 second=950 amount=-2 -kerning first=928 second=1059 amount=-2 -kerning first=101 second=964 amount=-1 -kerning first=107 second=45 amount=-3 -kerning first=361 second=8249 amount=-3 +kerning first=955 second=243 amount=-1 +kerning first=955 second=244 amount=-1 +kerning first=955 second=245 amount=-1 +kerning first=955 second=246 amount=-1 +kerning first=955 second=248 amount=-1 +kerning first=955 second=263 amount=-1 +kerning first=955 second=267 amount=-1 +kerning first=955 second=269 amount=-1 +kerning first=955 second=271 amount=-1 +kerning first=955 second=273 amount=-1 +kerning first=955 second=275 amount=-1 +kerning first=955 second=277 amount=-1 +kerning first=955 second=279 amount=-1 +kerning first=955 second=281 amount=-1 +kerning first=955 second=283 amount=-1 +kerning first=955 second=333 amount=-1 +kerning first=955 second=335 amount=-1 +kerning first=955 second=337 amount=-1 +kerning first=955 second=339 amount=-1 +kerning first=955 second=373 amount=-4 +kerning first=955 second=940 amount=-1 +kerning first=955 second=941 amount=-1 +kerning first=955 second=945 amount=-1 +kerning first=955 second=947 amount=-4 +kerning first=955 second=949 amount=-1 +kerning first=955 second=957 amount=-4 +kerning first=955 second=959 amount=-1 +kerning first=955 second=962 amount=-1 +kerning first=955 second=963 amount=-1 +kerning first=955 second=964 amount=-4 +kerning first=955 second=966 amount=-1 +kerning first=955 second=967 amount=-3 +kerning first=955 second=972 amount=-1 +kerning first=955 second=1077 amount=-1 +kerning first=955 second=1086 amount=-1 +kerning first=955 second=1089 amount=-1 +kerning first=955 second=1090 amount=-4 +kerning first=955 second=1092 amount=-1 +kerning first=955 second=1098 amount=-4 +kerning first=955 second=1104 amount=-1 +kerning first=955 second=1105 amount=-1 +kerning first=955 second=1108 amount=-1 +kerning first=955 second=1185 amount=-4 +kerning first=955 second=1195 amount=-1 +kerning first=955 second=1199 amount=-4 +kerning first=955 second=1241 amount=-1 +kerning first=955 second=1257 amount=-1 +kerning first=957 second=44 amount=-2 +kerning first=957 second=45 amount=-1 +kerning first=957 second=46 amount=-2 +kerning first=957 second=47 amount=-3 +kerning first=957 second=97 amount=-1 +kerning first=957 second=99 amount=-1 +kerning first=957 second=100 amount=-1 +kerning first=957 second=101 amount=-1 +kerning first=957 second=103 amount=-1 +kerning first=957 second=111 amount=-1 +kerning first=957 second=113 amount=-1 +kerning first=957 second=115 amount=-1 +kerning first=957 second=171 amount=-1 +kerning first=957 second=173 amount=-1 +kerning first=957 second=224 amount=-1 +kerning first=957 second=225 amount=-1 +kerning first=957 second=226 amount=-1 +kerning first=957 second=227 amount=-1 +kerning first=957 second=228 amount=-1 +kerning first=957 second=229 amount=-1 +kerning first=957 second=230 amount=-1 +kerning first=957 second=231 amount=-1 +kerning first=957 second=232 amount=-1 +kerning first=957 second=233 amount=-1 +kerning first=957 second=234 amount=-1 +kerning first=957 second=235 amount=-1 +kerning first=957 second=240 amount=-1 +kerning first=957 second=242 amount=-1 +kerning first=957 second=243 amount=-1 +kerning first=957 second=244 amount=-1 +kerning first=957 second=245 amount=-1 +kerning first=957 second=246 amount=-1 +kerning first=957 second=248 amount=-1 +kerning first=957 second=257 amount=-1 +kerning first=957 second=259 amount=-1 +kerning first=957 second=261 amount=-1 +kerning first=957 second=263 amount=-1 +kerning first=957 second=267 amount=-1 +kerning first=957 second=269 amount=-1 +kerning first=957 second=271 amount=-1 +kerning first=957 second=273 amount=-1 +kerning first=957 second=275 amount=-1 +kerning first=957 second=277 amount=-1 +kerning first=957 second=279 amount=-1 +kerning first=957 second=281 amount=-1 +kerning first=957 second=283 amount=-1 +kerning first=957 second=287 amount=-1 +kerning first=957 second=289 amount=-1 +kerning first=957 second=291 amount=-1 +kerning first=957 second=333 amount=-1 +kerning first=957 second=335 amount=-1 +kerning first=957 second=337 amount=-1 +kerning first=957 second=339 amount=-1 +kerning first=957 second=347 amount=-1 +kerning first=957 second=351 amount=-1 +kerning first=957 second=353 amount=-1 +kerning first=957 second=940 amount=-1 +kerning first=957 second=941 amount=-1 +kerning first=957 second=945 amount=-1 +kerning first=957 second=949 amount=-1 +kerning first=957 second=950 amount=-2 +kerning first=957 second=955 amount=-4 +kerning first=957 second=959 amount=-1 +kerning first=957 second=961 amount=-2 +kerning first=957 second=962 amount=-1 +kerning first=957 second=963 amount=-1 +kerning first=957 second=966 amount=-1 +kerning first=957 second=969 amount=-1 +kerning first=957 second=972 amount=-1 +kerning first=957 second=974 amount=-1 +kerning first=957 second=1072 amount=-1 +kerning first=957 second=1077 amount=-1 +kerning first=957 second=1086 amount=-1 +kerning first=957 second=1089 amount=-1 +kerning first=957 second=1092 amount=-1 +kerning first=957 second=1104 amount=-1 +kerning first=957 second=1105 amount=-1 +kerning first=957 second=1108 amount=-1 +kerning first=957 second=1109 amount=-1 +kerning first=957 second=1195 amount=-1 +kerning first=957 second=1241 amount=-1 +kerning first=957 second=1257 amount=-1 +kerning first=957 second=8211 amount=-1 +kerning first=957 second=8212 amount=-1 +kerning first=957 second=8218 amount=-2 +kerning first=957 second=8222 amount=-2 +kerning first=957 second=8230 amount=-2 +kerning first=957 second=8249 amount=-1 +kerning first=958 second=171 amount=-3 +kerning first=958 second=8249 amount=-3 +kerning first=959 second=34 amount=-1 +kerning first=959 second=39 amount=-1 +kerning first=959 second=44 amount=-1 +kerning first=959 second=46 amount=-1 +kerning first=959 second=47 amount=-1 +kerning first=959 second=63 amount=-2 +kerning first=959 second=102 amount=-1 +kerning first=959 second=118 amount=-1 +kerning first=959 second=119 amount=-1 +kerning first=959 second=120 amount=-2 +kerning first=959 second=122 amount=-1 +kerning first=959 second=373 amount=-1 +kerning first=959 second=378 amount=-1 +kerning first=959 second=380 amount=-1 +kerning first=959 second=382 amount=-1 +kerning first=959 second=947 amount=-1 +kerning first=959 second=955 amount=-1 +kerning first=959 second=957 amount=-1 +kerning first=959 second=964 amount=-1 +kerning first=959 second=967 amount=-2 +kerning first=959 second=1076 amount=-1 +kerning first=959 second=1078 amount=-2 +kerning first=959 second=1083 amount=-1 +kerning first=959 second=1090 amount=-1 +kerning first=959 second=1093 amount=-2 +kerning first=959 second=1098 amount=-1 +kerning first=959 second=1113 amount=-1 +kerning first=959 second=1175 amount=-2 +kerning first=959 second=1185 amount=-1 +kerning first=959 second=1199 amount=-1 +kerning first=959 second=1203 amount=-2 +kerning first=959 second=1299 amount=-1 +kerning first=959 second=8216 amount=-1 +kerning first=959 second=8217 amount=-1 +kerning first=959 second=8218 amount=-1 +kerning first=959 second=8220 amount=-1 +kerning first=959 second=8221 amount=-1 +kerning first=959 second=8222 amount=-1 +kerning first=959 second=8230 amount=-1 +kerning first=961 second=34 amount=-1 +kerning first=961 second=39 amount=-1 +kerning first=961 second=44 amount=-1 +kerning first=961 second=46 amount=-1 +kerning first=961 second=47 amount=-1 +kerning first=961 second=63 amount=-2 +kerning first=961 second=102 amount=-1 +kerning first=961 second=118 amount=-1 +kerning first=961 second=119 amount=-1 +kerning first=961 second=120 amount=-2 +kerning first=961 second=122 amount=-1 +kerning first=961 second=373 amount=-1 +kerning first=961 second=378 amount=-1 +kerning first=961 second=380 amount=-1 +kerning first=961 second=382 amount=-1 +kerning first=961 second=947 amount=-1 +kerning first=961 second=955 amount=-1 +kerning first=961 second=957 amount=-1 +kerning first=961 second=964 amount=-1 +kerning first=961 second=967 amount=-2 +kerning first=961 second=1076 amount=-1 +kerning first=961 second=1078 amount=-2 +kerning first=961 second=1083 amount=-1 +kerning first=961 second=1090 amount=-1 +kerning first=961 second=1093 amount=-2 +kerning first=961 second=1098 amount=-1 +kerning first=961 second=1113 amount=-1 +kerning first=961 second=1175 amount=-2 +kerning first=961 second=1185 amount=-1 +kerning first=961 second=1199 amount=-1 +kerning first=961 second=1203 amount=-2 +kerning first=961 second=1299 amount=-1 +kerning first=961 second=8216 amount=-1 +kerning first=961 second=8217 amount=-1 +kerning first=961 second=8218 amount=-1 +kerning first=961 second=8220 amount=-1 +kerning first=961 second=8221 amount=-1 +kerning first=961 second=8222 amount=-1 +kerning first=961 second=8230 amount=-1 +kerning first=962 second=118 amount=-1 +kerning first=962 second=119 amount=-1 +kerning first=962 second=373 amount=-1 +kerning first=962 second=947 amount=-1 +kerning first=962 second=955 amount=-1 +kerning first=962 second=957 amount=-1 +kerning first=962 second=1199 amount=-1 +kerning first=964 second=99 amount=-1 +kerning first=964 second=100 amount=-1 +kerning first=964 second=101 amount=-1 +kerning first=964 second=111 amount=-1 +kerning first=964 second=113 amount=-1 +kerning first=964 second=231 amount=-1 +kerning first=964 second=232 amount=-1 +kerning first=964 second=233 amount=-1 +kerning first=964 second=234 amount=-1 kerning first=964 second=235 amount=-1 -kerning first=273 second=97 amount=-1 -kerning first=42 second=219 amount=-2 -kerning first=178 second=1108 amount=-1 -kerning first=182 second=347 amount=-1 -kerning first=297 second=259 amount=-1 -kerning first=300 second=34 amount=-3 -kerning first=62 second=361 amount=-1 -kerning first=65 second=121 amount=-1 -kerning first=202 second=965 amount=-1 -kerning first=208 second=46 amount=-1 -kerning first=8369 second=354 amount=-5 -kerning first=8364 second=1118 amount=-1 -kerning first=942 second=248 amount=-1 -kerning first=108 second=220 amount=-2 -kerning first=245 second=1113 amount=-1 -kerning first=125 second=1176 amount=-1 -kerning first=161 second=362 amount=-2 -kerning first=274 second=275 amount=-1 -kerning first=277 second=47 amount=-1 -kerning first=43 second=374 amount=-5 -kerning first=1051 second=87 amount=-5 -kerning first=186 second=289 amount=-1 -kerning first=69 second=71 amount=-2 -kerning first=1083 second=249 amount=-1 -kerning first=209 second=221 amount=-5 -kerning first=8370 second=1038 amount=-2 -kerning first=330 second=111 amount=-1 -kerning first=904 second=261 amount=-1 -kerning first=901 second=953 amount=-1 -kerning first=89 second=233 amount=-4 -kerning first=252 second=290 amount=-2 -kerning first=375 second=210 amount=-2 -kerning first=126 second=8211 amount=-2 -kerning first=8212 second=380 amount=-2 -kerning first=50 second=84 amount=-5 -kerning first=190 second=234 amount=-1 -kerning first=302 second=364 amount=-2 -kerning first=70 second=246 amount=-1 -kerning first=210 second=376 amount=-3 -kerning first=327 second=1035 amount=-5 -kerning first=910 second=211 amount=-3 -kerning first=1117 second=1098 amount=-3 -kerning first=1168 second=339 amount=-1 -kerning first=1171 second=101 amount=-1 -kerning first=951 second=113 amount=-1 -kerning first=948 second=353 amount=-1 -kerning first=1220 second=263 amount=-1 -kerning first=256 second=235 amount=-1 -kerning first=376 second=365 amount=-2 -kerning first=51 second=259 amount=-1 -kerning first=54 second=34 amount=-3 -kerning first=1065 second=212 amount=-1 -kerning first=300 second=8216 amount=-3 -kerning first=74 second=196 amount=-1 -kerning first=1085 second=1118 amount=-1 -kerning first=906 second=1184 amount=-5 -kerning first=94 second=336 amount=-2 -kerning first=1174 second=279 amount=-1 -kerning first=237 second=248 amount=-1 -kerning first=288 second=87 amount=-1 -kerning first=8225 second=267 amount=-1 -kerning first=1063 second=1185 amount=-3 -kerning first=195 second=337 amount=-1 -kerning first=198 second=99 amount=-1 -kerning first=313 second=249 amount=-1 -kerning first=1095 second=1038 amount=-2 -kerning first=78 second=111 amount=-1 -kerning first=215 second=953 amount=-1 -kerning first=908 second=8218 amount=-1 -kerning first=121 second=210 amount=-2 -kerning first=381 second=941 amount=-1 -kerning first=175 second=352 amount=-1 -kerning first=289 second=262 amount=-2 -kerning first=56 second=364 amount=-2 -kerning first=1064 second=8220 amount=-3 -kerning first=196 second=968 amount=-1 -kerning first=317 second=199 amount=-2 -kerning first=8361 second=357 amount=-1 -kerning first=8364 second=117 amount=-1 -kerning first=76 second=1035 amount=-6 -kerning first=337 second=1098 amount=-1 -kerning first=343 second=101 amount=-1 -kerning first=931 second=251 amount=-1 -kerning first=365 second=263 amount=-1 -kerning first=1263 second=1066 amount=-5 -kerning first=8230 second=1194 amount=-1 -kerning first=54 second=8216 amount=-3 -kerning first=1071 second=943 amount=-1 -kerning first=203 second=224 amount=-1 -kerning first=315 second=1118 amount=-1 -kerning first=318 second=354 amount=-5 -kerning first=8370 second=67 amount=-2 -kerning first=901 second=39 amount=-3 -kerning first=223 second=366 amount=-2 -kerning first=369 second=213 amount=-2 -kerning first=271 second=225 amount=-1 -kerning first=1044 second=267 amount=-1 -kerning first=44 second=87 amount=-3 -kerning first=291 second=1185 amount=-3 -kerning first=296 second=367 amount=-1 -kerning first=61 second=940 amount=-1 -kerning first=64 second=249 amount=-1 -kerning first=321 second=1038 amount=-2 -kerning first=8372 second=242 amount=-1 -kerning first=902 second=214 amount=-2 -kerning first=221 second=8218 amount=-4 -kerning first=944 second=116 amount=-1 -kerning first=1202 second=268 amount=-1 +kerning first=964 second=240 amount=-1 +kerning first=964 second=242 amount=-1 +kerning first=964 second=243 amount=-1 +kerning first=964 second=244 amount=-1 +kerning first=964 second=245 amount=-1 +kerning first=964 second=246 amount=-1 +kerning first=964 second=248 amount=-1 +kerning first=964 second=263 amount=-1 +kerning first=964 second=267 amount=-1 +kerning first=964 second=269 amount=-1 +kerning first=964 second=271 amount=-1 +kerning first=964 second=273 amount=-1 +kerning first=964 second=275 amount=-1 +kerning first=964 second=277 amount=-1 +kerning first=964 second=279 amount=-1 +kerning first=964 second=281 amount=-1 +kerning first=964 second=283 amount=-1 +kerning first=964 second=333 amount=-1 +kerning first=964 second=335 amount=-1 +kerning first=964 second=337 amount=-1 +kerning first=964 second=339 amount=-1 +kerning first=964 second=940 amount=-1 +kerning first=964 second=941 amount=-1 +kerning first=964 second=945 amount=-1 +kerning first=964 second=949 amount=-1 +kerning first=964 second=959 amount=-1 +kerning first=964 second=962 amount=-1 +kerning first=964 second=963 amount=-1 +kerning first=964 second=966 amount=-1 kerning first=964 second=972 amount=-1 -kerning first=967 second=281 amount=-1 -kerning first=163 second=250 amount=-1 -kerning first=160 second=941 amount=-1 -kerning first=185 second=1241 amount=-1 -kerning first=188 second=187 amount=-1 -kerning first=294 second=8220 amount=-3 -kerning first=1081 second=357 amount=-1 -kerning first=1085 second=117 amount=-1 -kerning first=205 second=1079 amount=-1 -kerning first=211 second=89 amount=-3 -kerning first=903 second=369 amount=-1 -kerning first=88 second=339 amount=-2 -kerning first=91 second=101 amount=-1 -kerning first=1210 second=216 amount=-2 -kerning first=371 second=1066 amount=-5 -kerning first=971 second=228 amount=-1 -kerning first=49 second=212 amount=-2 -kerning first=1051 second=370 amount=-2 -kerning first=301 second=943 amount=-1 -kerning first=304 second=252 amount=-1 -kerning first=69 second=354 amount=-5 -kerning first=1095 second=67 amount=-2 -kerning first=215 second=39 amount=-3 -kerning first=912 second=79 amount=-2 -kerning first=92 second=279 amount=-1 -kerning first=1170 second=229 amount=-1 -kerning first=89 second=970 amount=-2 -kerning first=946 second=920 amount=-2 -kerning first=950 second=241 amount=-2 -kerning first=1206 second=1195 amount=-1 -kerning first=1219 second=371 amount=-1 -kerning first=258 second=103 amount=-1 -kerning first=168 second=355 amount=-1 -kerning first=8222 second=218 amount=-1 -kerning first=47 second=1185 amount=-3 -kerning first=50 second=367 amount=-1 -kerning first=70 second=1038 amount=-2 -kerning first=1096 second=242 amount=-1 -kerning first=910 second=945 amount=-4 -kerning first=1171 second=1240 amount=-2 -kerning first=1168 second=1262 amount=-2 -kerning first=96 second=226 amount=-1 -kerning first=236 second=356 amount=-5 -kerning first=239 second=116 amount=-1 -kerning first=1220 second=1069 amount=-1 -kerning first=1263 second=81 amount=-2 -kerning first=256 second=972 amount=-1 -kerning first=8224 second=373 amount=-4 -kerning first=48 second=8220 amount=-3 -kerning first=197 second=227 amount=-1 -kerning first=315 second=117 amount=-1 -kerning first=363 second=216 amount=-2 -kerning first=960 second=106 amount=1 -kerning first=117 second=1066 amount=-5 -kerning first=177 second=240 amount=-1 -kerning first=8221 second=8230 amount=-1 -kerning first=8260 second=83 amount=-1 -kerning first=55 second=943 amount=-1 -kerning first=58 second=252 amount=-1 -kerning first=195 second=1256 amount=-2 -kerning first=321 second=67 amount=-2 -kerning first=8363 second=245 amount=-1 -kerning first=928 second=359 amount=-1 -kerning first=936 second=119 amount=-4 -kerning first=1185 second=271 amount=-2 -kerning first=1194 second=44 amount=-1 -kerning first=1178 second=963 amount=-1 -kerning first=361 second=1195 amount=-1 -kerning first=956 second=1026 amount=-5 -kerning first=124 second=253 amount=-1 -kerning first=1240 second=1046 amount=-3 -kerning first=39 second=267 amount=-1 -kerning first=1039 second=218 amount=-2 -kerning first=1074 second=360 amount=-2 -kerning first=1070 second=1174 amount=-3 -kerning first=322 second=242 amount=-1 -kerning first=105 second=268 amount=-2 -kerning first=365 second=1069 amount=-1 -kerning first=371 second=81 amount=-2 -kerning first=965 second=231 amount=-1 -kerning first=8211 second=46 amount=-1 -kerning first=1041 second=373 amount=-4 -kerning first=63 second=357 amount=-1 -kerning first=206 second=269 amount=-1 -kerning first=8370 second=350 amount=-1 -kerning first=1116 second=232 amount=-2 -kerning first=252 second=106 amount=1 -kerning first=372 second=256 amount=-5 -kerning first=165 second=118 amount=-4 -kerning first=271 second=962 amount=-1 -kerning first=8212 second=221 amount=-4 -kerning first=41 second=1194 amount=-2 -kerning first=44 second=370 amount=-1 -kerning first=1038 second=8230 amount=-1 -kerning first=70 second=67 amount=-1 -kerning first=1084 second=245 amount=-1 -kerning first=8378 second=290 amount=-2 -kerning first=902 second=949 amount=-1 -kerning first=905 second=257 amount=-1 -kerning first=233 second=119 amount=-1 -kerning first=356 second=44 amount=-3 -kerning first=107 second=1195 amount=-2 -kerning first=1220 second=84 amount=-5 -kerning first=250 second=1026 amount=-5 -kerning first=253 second=286 amount=-2 -kerning first=967 second=1090 amount=-3 -kerning first=191 second=230 amount=-1 -kerning first=303 second=360 amount=-2 -kerning first=68 second=923 amount=-2 -kerning first=211 second=372 amount=-2 -kerning first=91 second=1240 amount=-2 -kerning first=1169 second=335 amount=-1 -kerning first=357 second=219 amount=-2 -kerning first=117 second=81 amount=-2 -kerning first=1223 second=259 amount=-1 -kerning first=1257 second=34 amount=-1 -kerning first=374 second=1175 amount=-2 -kerning first=971 second=965 amount=-1 +kerning first=964 second=1077 amount=-1 +kerning first=964 second=1086 amount=-1 +kerning first=964 second=1089 amount=-1 +kerning first=964 second=1092 amount=-1 +kerning first=964 second=1104 amount=-1 +kerning first=964 second=1105 amount=-1 +kerning first=964 second=1108 amount=-1 +kerning first=964 second=1195 amount=-1 +kerning first=964 second=1241 amount=-1 +kerning first=964 second=1257 amount=-1 +kerning first=966 second=34 amount=-1 +kerning first=966 second=39 amount=-1 +kerning first=966 second=44 amount=-1 +kerning first=966 second=46 amount=-1 +kerning first=966 second=47 amount=-1 +kerning first=966 second=63 amount=-2 +kerning first=966 second=102 amount=-1 +kerning first=966 second=118 amount=-1 +kerning first=966 second=119 amount=-1 +kerning first=966 second=120 amount=-2 +kerning first=966 second=122 amount=-1 +kerning first=966 second=373 amount=-1 +kerning first=966 second=378 amount=-1 +kerning first=966 second=380 amount=-1 +kerning first=966 second=382 amount=-1 +kerning first=966 second=947 amount=-1 +kerning first=966 second=955 amount=-1 +kerning first=966 second=957 amount=-1 +kerning first=966 second=964 amount=-1 +kerning first=966 second=967 amount=-2 +kerning first=966 second=1076 amount=-1 +kerning first=966 second=1078 amount=-2 +kerning first=966 second=1083 amount=-1 +kerning first=966 second=1090 amount=-1 +kerning first=966 second=1093 amount=-2 +kerning first=966 second=1098 amount=-1 +kerning first=966 second=1113 amount=-1 +kerning first=966 second=1175 amount=-2 +kerning first=966 second=1185 amount=-1 +kerning first=966 second=1199 amount=-1 +kerning first=966 second=1203 amount=-2 +kerning first=966 second=1299 amount=-1 +kerning first=966 second=8216 amount=-1 +kerning first=966 second=8217 amount=-1 +kerning first=966 second=8218 amount=-1 +kerning first=966 second=8220 amount=-1 +kerning first=966 second=8221 amount=-1 +kerning first=966 second=8222 amount=-1 +kerning first=966 second=8230 amount=-1 +kerning first=967 second=99 amount=-2 +kerning first=967 second=100 amount=-2 +kerning first=967 second=101 amount=-2 +kerning first=967 second=111 amount=-2 +kerning first=967 second=113 amount=-2 +kerning first=967 second=231 amount=-2 +kerning first=967 second=232 amount=-2 +kerning first=967 second=233 amount=-2 +kerning first=967 second=234 amount=-2 +kerning first=967 second=235 amount=-2 +kerning first=967 second=240 amount=-2 +kerning first=967 second=242 amount=-2 +kerning first=967 second=243 amount=-2 +kerning first=967 second=244 amount=-2 +kerning first=967 second=245 amount=-2 +kerning first=967 second=246 amount=-2 +kerning first=967 second=248 amount=-2 +kerning first=967 second=263 amount=-2 +kerning first=967 second=267 amount=-2 +kerning first=967 second=269 amount=-2 +kerning first=967 second=271 amount=-2 +kerning first=967 second=273 amount=-2 +kerning first=967 second=275 amount=-2 +kerning first=967 second=277 amount=-2 +kerning first=967 second=279 amount=-2 +kerning first=967 second=281 amount=-2 +kerning first=967 second=283 amount=-2 +kerning first=967 second=333 amount=-2 +kerning first=967 second=335 amount=-2 +kerning first=967 second=337 amount=-2 +kerning first=967 second=339 amount=-2 +kerning first=967 second=940 amount=-2 +kerning first=967 second=941 amount=-2 +kerning first=967 second=943 amount=-1 +kerning first=967 second=945 amount=-2 +kerning first=967 second=949 amount=-2 +kerning first=967 second=950 amount=-2 +kerning first=967 second=953 amount=-1 +kerning first=967 second=955 amount=-2 +kerning first=967 second=959 amount=-2 +kerning first=967 second=962 amount=-2 +kerning first=967 second=963 amount=-2 +kerning first=967 second=966 amount=-2 +kerning first=967 second=969 amount=-1 +kerning first=967 second=970 amount=-1 +kerning first=967 second=972 amount=-2 +kerning first=967 second=974 amount=-1 +kerning first=967 second=1077 amount=-2 +kerning first=967 second=1086 amount=-2 +kerning first=967 second=1089 amount=-2 +kerning first=967 second=1092 amount=-2 +kerning first=967 second=1104 amount=-2 +kerning first=967 second=1105 amount=-2 +kerning first=967 second=1108 amount=-2 +kerning first=967 second=1195 amount=-2 +kerning first=967 second=1241 amount=-2 +kerning first=967 second=1257 amount=-2 +kerning first=969 second=120 amount=-1 +kerning first=969 second=955 amount=-1 +kerning first=969 second=967 amount=-1 +kerning first=969 second=1078 amount=-1 +kerning first=969 second=1093 amount=-1 +kerning first=969 second=1175 amount=-1 +kerning first=969 second=1203 amount=-1 +kerning first=970 second=118 amount=-2 +kerning first=970 second=119 amount=-2 +kerning first=970 second=373 amount=-2 +kerning first=970 second=947 amount=-2 +kerning first=970 second=957 amount=-2 +kerning first=970 second=964 amount=-2 +kerning first=970 second=967 amount=-2 +kerning first=970 second=1090 amount=-2 +kerning first=970 second=1098 amount=-2 +kerning first=970 second=1185 amount=-2 +kerning first=970 second=1199 amount=-2 +kerning first=972 second=34 amount=-1 +kerning first=972 second=39 amount=-1 +kerning first=972 second=44 amount=-1 +kerning first=972 second=46 amount=-1 +kerning first=972 second=47 amount=-1 +kerning first=972 second=63 amount=-2 +kerning first=972 second=102 amount=-1 +kerning first=972 second=118 amount=-1 +kerning first=972 second=119 amount=-1 +kerning first=972 second=120 amount=-2 +kerning first=972 second=122 amount=-1 +kerning first=972 second=373 amount=-1 +kerning first=972 second=378 amount=-1 +kerning first=972 second=380 amount=-1 +kerning first=972 second=382 amount=-1 +kerning first=972 second=947 amount=-1 +kerning first=972 second=955 amount=-1 +kerning first=972 second=957 amount=-1 +kerning first=972 second=964 amount=-1 +kerning first=972 second=967 amount=-2 +kerning first=972 second=1076 amount=-1 +kerning first=972 second=1078 amount=-2 +kerning first=972 second=1083 amount=-1 +kerning first=972 second=1090 amount=-1 +kerning first=972 second=1093 amount=-2 +kerning first=972 second=1098 amount=-1 +kerning first=972 second=1113 amount=-1 +kerning first=972 second=1175 amount=-2 +kerning first=972 second=1185 amount=-1 +kerning first=972 second=1199 amount=-1 +kerning first=972 second=1203 amount=-2 +kerning first=972 second=1299 amount=-1 +kerning first=972 second=8216 amount=-1 +kerning first=972 second=8217 amount=-1 +kerning first=972 second=8218 amount=-1 +kerning first=972 second=8220 amount=-1 +kerning first=972 second=8221 amount=-1 +kerning first=972 second=8222 amount=-1 +kerning first=972 second=8230 amount=-1 +kerning first=974 second=120 amount=-1 +kerning first=974 second=955 amount=-1 +kerning first=974 second=967 amount=-1 +kerning first=974 second=1078 amount=-1 +kerning first=974 second=1093 amount=-1 +kerning first=974 second=1175 amount=-1 +kerning first=974 second=1203 amount=-1 +kerning first=1028 second=44 amount=-1 +kerning first=1028 second=45 amount=-1 kerning first=1028 second=46 amount=-1 -kerning first=170 second=243 amount=-1 -kerning first=280 second=373 amount=-4 -kerning first=189 second=1263 amount=-1 -kerning first=1095 second=350 amount=-1 -kerning first=912 second=362 amount=-2 -kerning first=95 second=332 amount=-2 -kerning first=1170 second=966 amount=-1 -kerning first=1175 second=275 amount=-1 -kerning first=238 second=244 amount=-1 -kerning first=358 second=374 amount=-5 +kerning first=1028 second=47 amount=-1 +kerning first=1028 second=65 amount=-1 +kerning first=1028 second=84 amount=-1 +kerning first=1028 second=86 amount=-1 +kerning first=1028 second=87 amount=-1 +kerning first=1028 second=88 amount=-2 +kerning first=1028 second=89 amount=-2 +kerning first=1028 second=90 amount=-1 +kerning first=1028 second=106 amount=1 +kerning first=1028 second=171 amount=-1 +kerning first=1028 second=173 amount=-1 +kerning first=1028 second=193 amount=-1 +kerning first=1028 second=194 amount=-1 +kerning first=1028 second=196 amount=-1 +kerning first=1028 second=197 amount=-1 +kerning first=1028 second=198 amount=-1 +kerning first=1028 second=221 amount=-2 +kerning first=1028 second=256 amount=-1 +kerning first=1028 second=258 amount=-1 +kerning first=1028 second=260 amount=-1 +kerning first=1028 second=354 amount=-1 +kerning first=1028 second=356 amount=-1 +kerning first=1028 second=372 amount=-1 +kerning first=1028 second=374 amount=-2 +kerning first=1028 second=376 amount=-2 +kerning first=1028 second=377 amount=-1 +kerning first=1028 second=379 amount=-1 +kerning first=1028 second=381 amount=-1 +kerning first=1028 second=913 amount=-1 +kerning first=1028 second=916 amount=-1 +kerning first=1028 second=918 amount=-1 +kerning first=1028 second=923 amount=-1 +kerning first=1028 second=932 amount=-1 +kerning first=1028 second=933 amount=-2 +kerning first=1028 second=935 amount=-2 +kerning first=1028 second=939 amount=-2 +kerning first=1028 second=1026 amount=-1 +kerning first=1028 second=1033 amount=-1 +kerning first=1028 second=1035 amount=-1 +kerning first=1028 second=1040 amount=-1 +kerning first=1028 second=1044 amount=-1 +kerning first=1028 second=1046 amount=-2 +kerning first=1028 second=1051 amount=-1 +kerning first=1028 second=1058 amount=-1 +kerning first=1028 second=1061 amount=-2 +kerning first=1028 second=1066 amount=-1 +kerning first=1028 second=1069 amount=1 +kerning first=1028 second=1112 amount=1 +kerning first=1028 second=1174 amount=-2 +kerning first=1028 second=1176 amount=1 +kerning first=1028 second=1184 amount=-1 +kerning first=1028 second=1198 amount=-2 +kerning first=1028 second=1202 amount=-2 +kerning first=1028 second=1298 amount=-1 +kerning first=1028 second=8211 amount=-1 +kerning first=1028 second=8212 amount=-1 +kerning first=1028 second=8218 amount=-1 +kerning first=1028 second=8222 amount=-1 +kerning first=1028 second=8230 amount=-1 +kerning first=1028 second=8249 amount=-1 +kerning first=1029 second=65 amount=-1 +kerning first=1029 second=84 amount=-1 +kerning first=1029 second=86 amount=-2 +kerning first=1029 second=87 amount=-2 +kerning first=1029 second=88 amount=-1 +kerning first=1029 second=89 amount=-2 +kerning first=1029 second=106 amount=1 +kerning first=1029 second=118 amount=-1 +kerning first=1029 second=119 amount=-1 +kerning first=1029 second=120 amount=-1 +kerning first=1029 second=193 amount=-1 +kerning first=1029 second=194 amount=-1 +kerning first=1029 second=196 amount=-1 +kerning first=1029 second=197 amount=-1 +kerning first=1029 second=198 amount=-1 +kerning first=1029 second=221 amount=-2 +kerning first=1029 second=256 amount=-1 +kerning first=1029 second=258 amount=-1 +kerning first=1029 second=260 amount=-1 +kerning first=1029 second=354 amount=-1 +kerning first=1029 second=356 amount=-1 +kerning first=1029 second=372 amount=-2 +kerning first=1029 second=373 amount=-1 +kerning first=1029 second=374 amount=-2 +kerning first=1029 second=376 amount=-2 +kerning first=1029 second=913 amount=-1 +kerning first=1029 second=916 amount=-1 +kerning first=1029 second=923 amount=-1 +kerning first=1029 second=932 amount=-1 +kerning first=1029 second=933 amount=-2 +kerning first=1029 second=935 amount=-1 +kerning first=1029 second=939 amount=-2 +kerning first=1029 second=947 amount=-1 +kerning first=1029 second=957 amount=-1 +kerning first=1029 second=1026 amount=-1 +kerning first=1029 second=1035 amount=-1 +kerning first=1029 second=1040 amount=-1 +kerning first=1029 second=1046 amount=-1 +kerning first=1029 second=1058 amount=-1 +kerning first=1029 second=1061 amount=-1 +kerning first=1029 second=1066 amount=-1 +kerning first=1029 second=1078 amount=-1 +kerning first=1029 second=1093 amount=-1 +kerning first=1029 second=1112 amount=1 +kerning first=1029 second=1174 amount=-1 +kerning first=1029 second=1175 amount=-1 +kerning first=1029 second=1184 amount=-1 +kerning first=1029 second=1198 amount=-2 +kerning first=1029 second=1199 amount=-1 +kerning first=1029 second=1202 amount=-1 +kerning first=1029 second=1203 amount=-1 +kerning first=1032 second=44 amount=-1 +kerning first=1032 second=46 amount=-1 +kerning first=1032 second=47 amount=-1 +kerning first=1032 second=65 amount=-1 +kerning first=1032 second=193 amount=-1 +kerning first=1032 second=194 amount=-1 +kerning first=1032 second=196 amount=-1 +kerning first=1032 second=197 amount=-1 +kerning first=1032 second=198 amount=-1 +kerning first=1032 second=256 amount=-1 +kerning first=1032 second=258 amount=-1 +kerning first=1032 second=260 amount=-1 +kerning first=1032 second=913 amount=-1 +kerning first=1032 second=916 amount=-1 +kerning first=1032 second=923 amount=-1 +kerning first=1032 second=1040 amount=-1 +kerning first=1032 second=8218 amount=-1 +kerning first=1032 second=8222 amount=-1 +kerning first=1032 second=8230 amount=-1 +kerning first=1033 second=34 amount=-2 +kerning first=1033 second=39 amount=-2 +kerning first=1033 second=63 amount=-5 +kerning first=1033 second=65 amount=-1 +kerning first=1033 second=84 amount=-5 +kerning first=1033 second=88 amount=-2 +kerning first=1033 second=89 amount=-5 +kerning first=1033 second=118 amount=-1 +kerning first=1033 second=119 amount=-1 +kerning first=1033 second=193 amount=-1 +kerning first=1033 second=194 amount=-1 +kerning first=1033 second=196 amount=-1 +kerning first=1033 second=197 amount=-1 +kerning first=1033 second=198 amount=-1 kerning first=1033 second=221 amount=-5 -kerning first=289 second=83 amount=-1 -kerning first=8226 second=261 amount=-1 -kerning first=1064 second=1177 amount=-1 -kerning first=1067 second=363 amount=-1 -kerning first=196 second=333 amount=-1 -kerning first=314 second=245 amount=-1 -kerning first=1099 second=290 amount=-2 -kerning first=915 second=1051 amount=-5 -kerning first=96 second=963 amount=-1 -kerning first=910 second=8211 amount=-4 -kerning first=102 second=44 amount=-2 -kerning first=365 second=84 amount=-5 -kerning first=958 second=234 amount=-1 -kerning first=1263 second=364 amount=-2 -kerning first=259 second=1090 amount=-1 -kerning first=37 second=218 amount=-2 +kerning first=1033 second=256 amount=-1 +kerning first=1033 second=258 amount=-1 +kerning first=1033 second=260 amount=-1 +kerning first=1033 second=354 amount=-5 +kerning first=1033 second=356 amount=-5 +kerning first=1033 second=373 amount=-1 +kerning first=1033 second=374 amount=-5 +kerning first=1033 second=376 amount=-5 +kerning first=1033 second=913 amount=-1 +kerning first=1033 second=916 amount=-1 +kerning first=1033 second=923 amount=-1 +kerning first=1033 second=932 amount=-5 +kerning first=1033 second=933 amount=-5 +kerning first=1033 second=935 amount=-2 +kerning first=1033 second=939 amount=-5 +kerning first=1033 second=947 amount=-1 +kerning first=1033 second=957 amount=-1 +kerning first=1033 second=964 amount=-2 +kerning first=1033 second=1026 amount=-5 +kerning first=1033 second=1035 amount=-5 +kerning first=1033 second=1040 amount=-1 +kerning first=1033 second=1046 amount=-2 +kerning first=1033 second=1058 amount=-5 +kerning first=1033 second=1061 amount=-2 +kerning first=1033 second=1063 amount=-1 +kerning first=1033 second=1066 amount=-5 +kerning first=1033 second=1071 amount=-1 +kerning first=1033 second=1090 amount=-2 +kerning first=1033 second=1098 amount=-2 +kerning first=1033 second=1174 amount=-2 +kerning first=1033 second=1184 amount=-5 +kerning first=1033 second=1185 amount=-2 +kerning first=1033 second=1198 amount=-5 +kerning first=1033 second=1199 amount=-1 +kerning first=1033 second=1202 amount=-2 +kerning first=1033 second=8216 amount=-2 +kerning first=1033 second=8217 amount=-2 +kerning first=1033 second=8220 amount=-2 +kerning first=1033 second=8221 amount=-2 +kerning first=1034 second=34 amount=-2 +kerning first=1034 second=39 amount=-2 +kerning first=1034 second=63 amount=-5 +kerning first=1034 second=65 amount=-1 +kerning first=1034 second=84 amount=-5 +kerning first=1034 second=88 amount=-2 +kerning first=1034 second=89 amount=-5 +kerning first=1034 second=118 amount=-1 +kerning first=1034 second=119 amount=-1 +kerning first=1034 second=193 amount=-1 +kerning first=1034 second=194 amount=-1 +kerning first=1034 second=196 amount=-1 +kerning first=1034 second=197 amount=-1 +kerning first=1034 second=198 amount=-1 +kerning first=1034 second=221 amount=-5 +kerning first=1034 second=256 amount=-1 +kerning first=1034 second=258 amount=-1 +kerning first=1034 second=260 amount=-1 +kerning first=1034 second=354 amount=-5 +kerning first=1034 second=356 amount=-5 +kerning first=1034 second=373 amount=-1 +kerning first=1034 second=374 amount=-5 kerning first=1034 second=376 amount=-5 -kerning first=176 second=346 amount=-1 -kerning first=57 second=360 amount=-2 -kerning first=1065 second=8212 amount=-2 -kerning first=200 second=273 amount=-1 -kerning first=203 second=45 amount=-2 -kerning first=197 second=964 amount=-3 -kerning first=8365 second=113 amount=-1 -kerning first=80 second=287 amount=-1 -kerning first=1103 second=235 amount=-1 -kerning first=341 second=335 amount=-1 -kerning first=103 second=219 amount=-2 -kerning first=240 second=1108 amount=-1 -kerning first=369 second=34 amount=-3 -kerning first=123 second=361 amount=-1 -kerning first=126 second=121 amount=-1 -kerning first=1257 second=8216 amount=-1 -kerning first=38 second=373 amount=-4 -kerning first=177 second=1028 amount=-2 -kerning first=180 second=288 amount=-2 -kerning first=8240 second=1184 amount=-5 -kerning first=8260 second=366 amount=-2 -kerning first=1076 second=248 amount=-1 -kerning first=204 second=220 amount=-2 -kerning first=321 second=350 amount=-1 -kerning first=84 second=232 amount=-3 -kerning first=221 second=1176 amount=-2 -kerning first=345 second=275 amount=-1 -kerning first=101 second=1203 amount=-2 -kerning first=247 second=289 amount=-1 -kerning first=964 second=337 amount=-1 -kerning first=967 second=99 amount=-1 -kerning first=163 second=71 amount=-2 -kerning first=273 second=221 amount=-5 -kerning first=1039 second=953 amount=-1 -kerning first=1046 second=261 amount=-1 -kerning first=45 second=83 amount=-1 -kerning first=185 second=233 amount=-1 -kerning first=297 second=363 amount=-1 -kerning first=294 second=1177 amount=-1 -kerning first=65 second=245 amount=-1 -kerning first=205 second=375 amount=-1 -kerning first=325 second=290 amount=-2 -kerning first=903 second=210 amount=-2 -kerning first=1118 second=100 amount=-1 -kerning first=942 second=352 amount=-1 -kerning first=251 second=234 amount=-1 -kerning first=371 second=364 amount=-2 -kerning first=965 second=968 amount=-1 -kerning first=968 second=277 amount=-1 -kerning first=164 second=246 amount=-1 -kerning first=274 second=376 amount=-5 -kerning first=1051 second=211 amount=-2 -kerning first=298 second=1059 amount=-2 -kerning first=1087 second=113 amount=-1 -kerning first=1083 second=353 amount=-1 -kerning first=203 second=8249 amount=-3 -kerning first=330 second=235 amount=-1 -kerning first=904 second=365 amount=-1 -kerning first=86 second=1094 amount=-2 -kerning first=92 second=97 amount=-1 -kerning first=89 second=335 amount=-4 -kerning first=115 second=34 amount=-1 -kerning first=1219 second=212 amount=-2 -kerning first=369 second=8216 amount=-3 -kerning first=271 second=8250 amount=-1 -kerning first=8218 second=266 amount=-1 -kerning first=8222 second=39 amount=-1 -kerning first=1048 second=1184 amount=-5 -kerning first=190 second=336 amount=-2 -kerning first=305 second=248 amount=-1 -kerning first=70 second=350 amount=-1 -kerning first=213 second=260 amount=-2 -kerning first=902 second=8217 amount=-3 -kerning first=90 second=966 amount=-1 -kerning first=93 second=275 amount=-1 -kerning first=1171 second=225 amount=-1 -kerning first=356 second=324 amount=-2 -kerning first=1207 second=1185 amount=-2 -kerning first=1220 second=367 amount=-1 -kerning first=256 second=337 amount=-1 -kerning first=376 second=940 amount=-4 -kerning first=172 second=111 amount=-1 -kerning first=282 second=261 amount=-1 -kerning first=169 second=351 amount=-1 -kerning first=8224 second=214 amount=-2 -kerning first=48 second=1177 amount=-1 -kerning first=51 second=363 amount=-1 -kerning first=74 second=290 amount=-2 -kerning first=338 second=100 amount=-1 -kerning first=916 second=250 amount=-1 -kerning first=237 second=352 amount=-1 -kerning first=952 second=1241 amount=-1 -kerning first=955 second=187 amount=-1 -kerning first=117 second=364 amount=-2 -kerning first=1210 second=8220 amount=-3 -kerning first=260 second=277 amount=-1 -kerning first=170 second=1035 amount=-5 -kerning first=174 second=291 amount=-1 -kerning first=1035 second=89 amount=-5 -kerning first=8225 second=369 amount=-1 -kerning first=49 second=8212 amount=-2 -kerning first=52 second=1059 amount=-2 -kerning first=316 second=113 amount=-1 -kerning first=78 second=235 amount=-1 -kerning first=961 second=102 amount=-1 -kerning first=115 second=8216 amount=-1 -kerning first=1299 second=252 amount=-1 -kerning first=1240 second=354 amount=-2 -kerning first=1036 second=266 amount=-3 -kerning first=1039 second=39 amount=-3 -kerning first=286 second=1184 amount=-1 -kerning first=289 second=366 amount=-2 -kerning first=59 second=248 amount=-1 -kerning first=202 second=171 amount=-3 -kerning first=8361 second=920 amount=-2 -kerning first=343 second=225 amount=-1 -kerning first=931 second=355 amount=-1 -kerning first=105 second=87 amount=-5 -kerning first=1186 second=267 amount=-1 -kerning first=365 second=367 amount=-1 -kerning first=125 second=249 amount=-1 -kerning first=122 second=940 amount=-1 -kerning first=40 second=261 amount=-1 -kerning first=37 second=953 amount=-1 -kerning first=1041 second=214 amount=-2 -kerning first=86 second=100 amount=-3 -kerning first=1103 second=972 amount=-1 -kerning first=223 second=941 amount=-1 -kerning first=249 second=187 amount=-1 -kerning first=363 second=8220 amount=-3 -kerning first=162 second=199 amount=-2 -kerning first=44 second=211 amount=-1 -kerning first=180 second=1098 amount=-3 -kerning first=184 second=339 amount=-1 -kerning first=299 second=251 amount=-1 -kerning first=64 second=353 amount=-1 -kerning first=207 second=263 amount=-1 -kerning first=8378 second=106 amount=1 -kerning first=1117 second=228 amount=-1 -kerning first=944 second=240 amount=-1 -kerning first=1202 second=370 amount=-1 -kerning first=964 second=1256 amount=-2 -kerning first=160 second=1118 amount=-1 -kerning first=163 second=354 amount=-5 -kerning first=276 second=266 amount=-2 -kerning first=279 second=39 amount=-1 -kerning first=42 second=1184 amount=-5 -kerning first=188 second=279 amount=-1 -kerning first=185 second=970 amount=-1 -kerning first=1062 second=79 amount=-1 -kerning first=1081 second=920 amount=-2 -kerning first=906 second=253 amount=-1 -kerning first=91 second=225 amount=-1 -kerning first=354 second=267 amount=-3 -kerning first=108 second=1185 amount=-3 -kerning first=164 second=1038 amount=-2 -kerning first=280 second=214 amount=-2 -kerning first=8211 second=947 amount=-1 -kerning first=1051 second=945 amount=-1 -kerning first=192 second=226 amount=-1 -kerning first=304 second=356 amount=-5 -kerning first=330 second=972 amount=-1 -kerning first=950 second=343 amount=-2 -kerning first=109 second=8220 amount=-1 -kerning first=258 second=227 amount=-1 -kerning first=1026 second=269 amount=-1 -kerning first=53 second=251 amount=-1 -kerning first=1099 second=106 amount=1 -kerning first=213 second=1066 amount=-2 -kerning first=923 second=118 amount=-4 -kerning first=1171 second=962 amount=-1 -kerning first=239 second=240 amount=-1 -kerning first=356 second=1194 amount=-1 -kerning first=954 second=283 amount=-2 -kerning first=256 second=1256 amount=-2 -kerning first=37 second=39 amount=-3 -kerning first=279 second=8222 amount=-1 -kerning first=8224 second=949 amount=-1 -kerning first=1071 second=119 amount=-4 -kerning first=80 second=103 amount=-1 -kerning first=100 second=267 amount=-1 -kerning first=960 second=230 amount=-1 -kerning first=1298 second=360 amount=-2 -kerning first=38 second=214 amount=-2 -kerning first=1035 second=372 amount=-5 -kerning first=174 second=1101 amount=-1 -kerning first=58 second=356 amount=-5 -kerning first=61 second=116 amount=-1 -kerning first=201 second=268 amount=-2 -kerning first=8363 second=347 amount=-1 -kerning first=78 second=972 amount=-1 -kerning first=936 second=243 amount=-1 -kerning first=956 second=1263 amount=-1 -kerning first=124 second=357 amount=-1 -kerning first=160 second=117 amount=-1 -kerning first=178 second=973 amount=-1 -kerning first=1078 second=244 amount=-2 -kerning first=205 second=216 amount=-2 -kerning first=325 second=106 amount=1 -kerning first=8369 second=289 amount=-1 -kerning first=228 second=118 amount=-1 -kerning first=343 second=962 amount=-1 -kerning first=105 second=370 amount=-2 -kerning first=965 second=333 amount=-1 -kerning first=164 second=67 amount=-2 -kerning first=274 second=217 amount=-2 -kerning first=1041 second=949 amount=-1 -kerning first=46 second=79 amount=-1 -kerning first=186 second=229 amount=-1 -kerning first=301 second=119 amount=-4 -kerning first=298 second=359 amount=-1 -kerning first=63 second=920 amount=-2 -kerning first=206 second=371 amount=-1 -kerning first=203 second=1195 amount=-1 -kerning first=323 second=1026 amount=-5 -kerning first=8377 second=234 amount=-1 -kerning first=947 second=950 amount=-2 -kerning first=252 second=230 amount=-1 -kerning first=966 second=964 amount=-1 -kerning first=165 second=242 amount=-1 -kerning first=271 second=947 amount=-4 -kerning first=8218 second=85 amount=-1 -kerning first=184 second=1262 amount=-2 -kerning first=1080 second=1108 amount=-1 -kerning first=1084 second=347 amount=-1 -kerning first=207 second=1069 amount=-1 -kerning first=905 second=361 amount=-1 -kerning first=87 second=1084 amount=-2 -kerning first=910 second=121 amount=-2 -kerning first=1117 second=965 amount=-1 -kerning first=350 second=1202 amount=-1 -kerning first=353 second=373 amount=-1 -kerning first=944 second=1028 amount=-2 -kerning first=948 second=288 amount=-2 -kerning first=250 second=1263 amount=-1 -kerning first=973 second=220 amount=-2 -kerning first=8220 second=260 amount=-3 -kerning first=1049 second=1176 amount=-1 -kerning first=1062 second=362 amount=-1 -kerning first=191 second=332 amount=-2 -kerning first=306 second=244 amount=-1 -kerning first=74 second=106 amount=1 -kerning first=916 second=71 amount=-2 -kerning first=91 second=962 amount=-1 -kerning first=1174 second=221 amount=-2 -kerning first=952 second=233 amount=-1 -kerning first=1223 second=363 amount=-1 -kerning first=1210 second=1177 amount=-1 -kerning first=380 second=245 amount=-1 -kerning first=280 second=949 amount=-1 -kerning first=8225 second=210 amount=-2 -kerning first=55 second=119 amount=-4 -kerning first=1051 second=8211 amount=-2 -kerning first=52 second=359 amount=-1 -kerning first=192 second=963 amount=-1 -kerning first=195 second=271 amount=-1 -kerning first=72 second=1026 amount=-5 -kerning first=75 second=286 amount=-3 -kerning first=333 second=1090 amount=-1 -kerning first=238 second=346 amount=-1 -kerning first=1219 second=8212 amount=-2 -kerning first=1224 second=1059 amount=-2 -kerning first=258 second=964 amount=-3 -kerning first=266 second=45 amount=-1 -kerning first=175 second=287 amount=-1 -kerning first=8226 second=365 amount=-1 -kerning first=314 second=347 amount=-1 -kerning first=310 second=1108 amount=-2 -kerning first=343 second=46 amount=-3 -kerning first=99 second=373 amount=-1 -kerning first=1171 second=8250 amount=-1 -kerning first=239 second=1028 amount=-2 -kerning first=958 second=336 amount=-2 -kerning first=179 second=232 amount=-1 -kerning first=287 second=1176 amount=-1 -kerning first=8224 second=8217 amount=-3 -kerning first=8230 second=1063 amount=-3 -kerning first=60 second=244 amount=-1 -kerning first=200 second=374 amount=-5 -kerning first=318 second=289 amount=-1 -kerning first=1103 second=337 amount=-1 -kerning first=344 second=221 amount=-2 -kerning first=934 second=351 amount=-1 -kerning first=363 second=1177 amount=-1 -kerning first=126 second=245 amount=-1 -kerning first=38 second=949 amount=-1 -kerning first=41 second=257 amount=-1 -kerning first=1044 second=210 amount=-1 -kerning first=8260 second=941 amount=-1 -kerning first=207 second=84 amount=-5 -kerning first=8366 second=1241 amount=-1 -kerning first=8372 second=187 amount=-1 -kerning first=84 second=334 amount=-1 -kerning first=936 second=1035 amount=-5 -kerning first=1202 second=211 amount=-1 -kerning first=367 second=1059 amount=-2 -kerning first=266 second=8249 amount=-1 -kerning first=276 second=85 amount=-2 -kerning first=1046 second=365 amount=-1 -kerning first=185 second=335 amount=-1 -kerning first=188 second=97 amount=-1 -kerning first=62 second=1108 amount=-1 -kerning first=65 second=347 amount=-1 -kerning first=1118 second=224 amount=-1 -kerning first=251 second=336 amount=-2 -kerning first=374 second=248 amount=-4 -kerning first=971 second=171 amount=-3 -kerning first=164 second=350 amount=-1 -kerning first=43 second=1176 amount=-1 -kerning first=46 second=362 amount=-1 -kerning first=1041 second=8217 amount=-3 -kerning first=186 second=966 amount=-1 -kerning first=189 second=275 amount=-1 -kerning first=69 second=289 amount=-1 -kerning first=330 second=337 amount=-1 -kerning first=904 second=940 amount=-1 -kerning first=92 second=221 amount=-5 -kerning first=947 second=8218 amount=-2 -kerning first=969 second=1078 amount=-1 -kerning first=168 second=290 amount=-2 -kerning first=8218 second=368 amount=-1 -kerning first=47 second=1051 amount=-4 -kerning first=44 second=8211 amount=-1 -kerning first=1064 second=250 amount=-1 -kerning first=305 second=352 amount=-1 -kerning first=73 second=234 amount=-1 -kerning first=1090 second=1241 amount=-1 -kerning first=1096 second=187 amount=-1 -kerning first=915 second=199 amount=-2 -kerning first=93 second=376 amount=-5 -kerning first=1168 second=1079 amount=-1 -kerning first=1176 second=89 amount=-5 -kerning first=236 second=291 amount=-1 -kerning first=948 second=1098 amount=-3 -kerning first=951 second=339 amount=-1 -kerning first=113 second=1059 amount=-2 -kerning first=954 second=101 amount=-2 -kerning first=376 second=1117 amount=-3 -kerning first=382 second=113 amount=-1 -kerning first=1027 second=263 amount=-1 -kerning first=172 second=235 amount=-1 -kerning first=282 second=365 amount=-1 -kerning first=338 second=224 amount=-1 -kerning first=916 second=354 amount=-5 -kerning first=91 second=8250 amount=-1 -kerning first=357 second=1184 amount=-5 -kerning first=952 second=970 amount=-1 -kerning first=955 second=279 amount=-1 -kerning first=120 second=248 amount=-2 -kerning first=1035 second=213 amount=-2 -kerning first=280 second=8217 amount=-3 -kerning first=8240 second=253 amount=-1 -kerning first=1073 second=115 amount=-1 -kerning first=201 second=87 amount=-5 -kerning first=78 second=337 amount=-1 -kerning first=221 second=249 amount=-2 -kerning first=1299 second=356 amount=-5 -kerning first=178 second=338 amount=-2 -kerning first=182 second=100 amount=-1 -kerning first=289 second=941 amount=-1 -kerning first=294 second=250 amount=-1 -kerning first=59 second=352 amount=-1 -kerning first=202 second=262 amount=-2 -kerning first=317 second=1241 amount=-1 -kerning first=322 second=187 amount=-1 -kerning first=346 second=89 amount=-2 -kerning first=105 second=211 amount=-2 -kerning first=242 second=1098 amount=-1 -kerning first=161 second=113 amount=-1 -kerning first=125 second=353 amount=-1 -kerning first=267 second=955 amount=-1 -kerning first=40 second=365 amount=-1 +kerning first=1034 second=913 amount=-1 +kerning first=1034 second=916 amount=-1 +kerning first=1034 second=923 amount=-1 +kerning first=1034 second=932 amount=-5 +kerning first=1034 second=933 amount=-5 +kerning first=1034 second=935 amount=-2 +kerning first=1034 second=939 amount=-5 +kerning first=1034 second=947 amount=-1 +kerning first=1034 second=957 amount=-1 +kerning first=1034 second=964 amount=-2 +kerning first=1034 second=1026 amount=-5 +kerning first=1034 second=1035 amount=-5 +kerning first=1034 second=1040 amount=-1 +kerning first=1034 second=1046 amount=-2 +kerning first=1034 second=1058 amount=-5 +kerning first=1034 second=1061 amount=-2 +kerning first=1034 second=1063 amount=-1 +kerning first=1034 second=1066 amount=-5 +kerning first=1034 second=1071 amount=-1 +kerning first=1034 second=1090 amount=-2 +kerning first=1034 second=1098 amount=-2 +kerning first=1034 second=1174 amount=-2 +kerning first=1034 second=1184 amount=-5 +kerning first=1034 second=1185 amount=-2 +kerning first=1034 second=1198 amount=-5 +kerning first=1034 second=1199 amount=-1 +kerning first=1034 second=1202 amount=-2 +kerning first=1034 second=8216 amount=-2 +kerning first=1034 second=8217 amount=-2 +kerning first=1034 second=8220 amount=-2 kerning first=1034 second=8221 amount=-2 -kerning first=1037 second=1066 amount=-5 -kerning first=206 second=212 amount=-2 -kerning first=326 second=102 amount=-1 -kerning first=8370 second=283 amount=-1 -kerning first=901 second=252 amount=-1 -kerning first=86 second=224 amount=-3 -kerning first=1103 second=1256 amount=-2 -kerning first=223 second=1118 amount=-1 -kerning first=103 second=1184 amount=-5 -kerning first=1206 second=79 amount=-1 -kerning first=249 second=279 amount=-1 -kerning first=38 second=8217 amount=-3 -kerning first=1048 second=253 amount=-1 -kerning first=299 second=355 amount=-1 -kerning first=302 second=115 amount=-1 -kerning first=204 second=1185 amount=-3 -kerning first=207 second=367 amount=-1 -kerning first=8378 second=230 amount=-1 -kerning first=84 second=1220 amount=-2 -kerning first=1202 second=945 amount=-1 -kerning first=253 second=226 amount=-1 -kerning first=276 second=368 amount=-2 -kerning first=48 second=250 amount=-1 -kerning first=205 second=8220 amount=-3 -kerning first=906 second=357 amount=-1 -kerning first=88 second=1079 amount=-2 -kerning first=94 second=89 amount=-5 -kerning first=1169 second=269 amount=-1 -kerning first=354 second=369 amount=-2 -kerning first=274 second=8221 amount=-3 -kerning first=8221 second=256 amount=-3 -kerning first=1066 second=118 amount=-1 -kerning first=75 second=102 amount=-2 -kerning first=1095 second=283 amount=-1 -kerning first=215 second=252 amount=-1 -kerning first=330 second=1256 amount=-2 -kerning first=333 second=382 amount=-1 -kerning first=908 second=1044 amount=-1 -kerning first=95 second=266 amount=-2 -kerning first=98 second=39 amount=-1 -kerning first=361 second=79 amount=-2 -kerning first=1224 second=359 amount=-1 -kerning first=1026 second=371 amount=-1 -kerning first=175 second=103 amount=-1 -kerning first=53 second=355 amount=-1 -kerning first=56 second=115 amount=-1 -kerning first=196 second=267 amount=-1 -kerning first=1099 second=230 amount=-1 -kerning first=923 second=242 amount=-1 -kerning first=1171 second=947 amount=-4 -kerning first=1176 second=372 amount=-5 -kerning first=236 second=1101 amount=-1 -kerning first=951 second=1262 amount=-2 -kerning first=1027 second=1069 amount=-1 -kerning first=1037 second=81 amount=-2 -kerning first=172 second=972 amount=-1 -kerning first=176 second=281 amount=-1 -kerning first=8230 second=361 amount=-1 -kerning first=1071 second=243 amount=-1 -kerning first=80 second=227 amount=-1 -kerning first=223 second=117 amount=-1 -kerning first=341 second=269 amount=-1 -kerning first=100 second=369 amount=-1 -kerning first=240 second=973 amount=-1 -kerning first=960 second=332 amount=-2 -kerning first=35 second=1066 amount=-5 +kerning first=1036 second=38 amount=-2 +kerning first=1036 second=45 amount=-4 +kerning first=1036 second=63 amount=-2 +kerning first=1036 second=67 amount=-3 +kerning first=1036 second=71 amount=-3 +kerning first=1036 second=74 amount=-1 +kerning first=1036 second=79 amount=-3 +kerning first=1036 second=81 amount=-3 +kerning first=1036 second=83 amount=-1 +kerning first=1036 second=97 amount=-1 +kerning first=1036 second=99 amount=-2 +kerning first=1036 second=100 amount=-2 +kerning first=1036 second=101 amount=-2 +kerning first=1036 second=102 amount=-2 +kerning first=1036 second=103 amount=-1 +kerning first=1036 second=111 amount=-2 +kerning first=1036 second=113 amount=-2 +kerning first=1036 second=116 amount=-1 +kerning first=1036 second=117 amount=-1 +kerning first=1036 second=118 amount=-3 +kerning first=1036 second=119 amount=-3 +kerning first=1036 second=121 amount=-2 +kerning first=1036 second=171 amount=-3 +kerning first=1036 second=173 amount=-4 +kerning first=1036 second=187 amount=-2 +kerning first=1036 second=199 amount=-3 +kerning first=1036 second=210 amount=-3 +kerning first=1036 second=211 amount=-3 +kerning first=1036 second=212 amount=-3 +kerning first=1036 second=213 amount=-3 +kerning first=1036 second=214 amount=-3 +kerning first=1036 second=216 amount=-3 +kerning first=1036 second=224 amount=-1 +kerning first=1036 second=225 amount=-1 +kerning first=1036 second=226 amount=-1 +kerning first=1036 second=227 amount=-1 +kerning first=1036 second=228 amount=-1 +kerning first=1036 second=229 amount=-1 +kerning first=1036 second=230 amount=-1 +kerning first=1036 second=231 amount=-2 +kerning first=1036 second=232 amount=-2 +kerning first=1036 second=233 amount=-2 +kerning first=1036 second=234 amount=-2 +kerning first=1036 second=235 amount=-2 +kerning first=1036 second=240 amount=-2 +kerning first=1036 second=242 amount=-2 +kerning first=1036 second=243 amount=-2 +kerning first=1036 second=244 amount=-2 +kerning first=1036 second=245 amount=-2 +kerning first=1036 second=246 amount=-2 +kerning first=1036 second=248 amount=-2 +kerning first=1036 second=249 amount=-1 +kerning first=1036 second=250 amount=-1 +kerning first=1036 second=251 amount=-1 +kerning first=1036 second=252 amount=-1 +kerning first=1036 second=253 amount=-2 +kerning first=1036 second=257 amount=-1 +kerning first=1036 second=259 amount=-1 +kerning first=1036 second=261 amount=-1 +kerning first=1036 second=262 amount=-3 +kerning first=1036 second=263 amount=-2 +kerning first=1036 second=266 amount=-3 +kerning first=1036 second=267 amount=-2 +kerning first=1036 second=268 amount=-3 +kerning first=1036 second=269 amount=-2 +kerning first=1036 second=271 amount=-2 +kerning first=1036 second=273 amount=-2 +kerning first=1036 second=275 amount=-2 +kerning first=1036 second=277 amount=-2 +kerning first=1036 second=279 amount=-2 +kerning first=1036 second=281 amount=-2 +kerning first=1036 second=283 amount=-2 +kerning first=1036 second=286 amount=-3 +kerning first=1036 second=287 amount=-1 +kerning first=1036 second=288 amount=-3 +kerning first=1036 second=289 amount=-1 +kerning first=1036 second=290 amount=-3 +kerning first=1036 second=291 amount=-1 +kerning first=1036 second=332 amount=-3 +kerning first=1036 second=333 amount=-2 +kerning first=1036 second=334 amount=-3 +kerning first=1036 second=335 amount=-2 +kerning first=1036 second=336 amount=-3 +kerning first=1036 second=337 amount=-2 +kerning first=1036 second=338 amount=-3 +kerning first=1036 second=339 amount=-2 +kerning first=1036 second=346 amount=-1 +kerning first=1036 second=350 amount=-1 +kerning first=1036 second=352 amount=-1 +kerning first=1036 second=355 amount=-1 +kerning first=1036 second=357 amount=-1 +kerning first=1036 second=359 amount=-1 +kerning first=1036 second=361 amount=-1 +kerning first=1036 second=363 amount=-1 +kerning first=1036 second=365 amount=-1 +kerning first=1036 second=367 amount=-1 +kerning first=1036 second=369 amount=-1 +kerning first=1036 second=371 amount=-1 +kerning first=1036 second=373 amount=-3 +kerning first=1036 second=375 amount=-2 +kerning first=1036 second=920 amount=-3 +kerning first=1036 second=927 amount=-3 +kerning first=1036 second=940 amount=-2 +kerning first=1036 second=941 amount=-2 +kerning first=1036 second=945 amount=-2 +kerning first=1036 second=947 amount=-3 +kerning first=1036 second=949 amount=-2 +kerning first=1036 second=957 amount=-3 +kerning first=1036 second=959 amount=-2 +kerning first=1036 second=962 amount=-2 +kerning first=1036 second=963 amount=-2 +kerning first=1036 second=964 amount=-4 +kerning first=1036 second=965 amount=-1 +kerning first=1036 second=966 amount=-2 +kerning first=1036 second=968 amount=-1 +kerning first=1036 second=972 amount=-2 +kerning first=1036 second=973 amount=-1 +kerning first=1036 second=1028 amount=-3 +kerning first=1036 second=1029 amount=-1 +kerning first=1036 second=1032 amount=-1 +kerning first=1036 second=1054 amount=-3 +kerning first=1036 second=1057 amount=-3 +kerning first=1036 second=1069 amount=-2 +kerning first=1036 second=1072 amount=-1 +kerning first=1036 second=1077 amount=-2 +kerning first=1036 second=1079 amount=-1 +kerning first=1036 second=1086 amount=-2 +kerning first=1036 second=1089 amount=-2 +kerning first=1036 second=1090 amount=-4 +kerning first=1036 second=1091 amount=-2 +kerning first=1036 second=1092 amount=-2 +kerning first=1036 second=1098 amount=-4 +kerning first=1036 second=1101 amount=-1 +kerning first=1036 second=1104 amount=-2 +kerning first=1036 second=1105 amount=-2 +kerning first=1036 second=1108 amount=-2 +kerning first=1036 second=1118 amount=-2 +kerning first=1036 second=1176 amount=-2 +kerning first=1036 second=1177 amount=-1 +kerning first=1036 second=1185 amount=-4 +kerning first=1036 second=1194 amount=-3 +kerning first=1036 second=1195 amount=-2 +kerning first=1036 second=1199 amount=-3 +kerning first=1036 second=1240 amount=-3 +kerning first=1036 second=1241 amount=-2 +kerning first=1036 second=1256 amount=-3 +kerning first=1036 second=1257 amount=-2 +kerning first=1036 second=1263 amount=-2 +kerning first=1036 second=8211 amount=-4 +kerning first=1036 second=8212 amount=-4 +kerning first=1036 second=8249 amount=-3 +kerning first=1036 second=8250 amount=-2 +kerning first=1038 second=44 amount=-1 +kerning first=1038 second=46 amount=-1 +kerning first=1038 second=65 amount=-2 +kerning first=1038 second=193 amount=-2 +kerning first=1038 second=194 amount=-2 +kerning first=1038 second=196 amount=-2 +kerning first=1038 second=197 amount=-2 +kerning first=1038 second=198 amount=-2 kerning first=1038 second=256 amount=-2 -kerning first=180 second=228 amount=-1 -kerning first=296 second=118 amount=-4 -kerning first=61 second=240 amount=-1 -kerning first=198 second=1194 amount=-2 -kerning first=201 second=370 amount=-2 -kerning first=321 second=283 amount=-1 -kerning first=8366 second=233 amount=-1 -kerning first=78 second=1256 amount=-2 -kerning first=221 second=1044 amount=-5 -kerning first=98 second=8222 amount=-1 -kerning first=1185 second=949 amount=-2 -kerning first=247 second=229 amount=-1 -kerning first=367 second=359 amount=-1 -kerning first=964 second=271 amount=-1 -kerning first=124 second=920 amount=-2 -kerning first=42 second=253 amount=-1 -kerning first=178 second=1257 amount=-1 -kerning first=325 second=230 amount=-1 -kerning first=900 second=360 amount=-2 -kerning first=1118 second=45 amount=-2 -kerning first=346 second=372 amount=-2 -kerning first=942 second=287 amount=-1 -kerning first=105 second=945 amount=-1 -kerning first=968 second=219 amount=-2 -kerning first=1051 second=121 amount=-1 -kerning first=301 second=243 amount=-1 -kerning first=1083 second=288 amount=-2 -kerning first=323 second=1263 amount=-1 -kerning first=8377 second=336 amount=-2 -kerning first=89 second=269 amount=-4 -kerning first=1119 second=220 amount=-2 -kerning first=946 second=232 amount=-1 -kerning first=1206 second=362 amount=-1 -kerning first=252 second=332 amount=-2 -kerning first=375 second=244 amount=-1 -kerning first=966 second=1203 amount=-2 -kerning first=168 second=106 amount=1 -kerning first=50 second=118 amount=-4 -kerning first=1064 second=71 amount=-2 -kerning first=70 second=283 amount=-1 -kerning first=1090 second=233 amount=-1 -kerning first=910 second=245 amount=-4 -kerning first=93 second=217 amount=-2 -kerning first=1168 second=375 amount=-1 -kerning first=356 second=257 amount=-2 -kerning first=113 second=359 amount=-1 -kerning first=1202 second=8211 amount=-2 -kerning first=253 second=963 amount=-1 -kerning first=256 second=271 amount=-1 -kerning first=1027 second=84 amount=-5 -kerning first=166 second=1026 amount=-5 -kerning first=169 second=286 amount=-2 -kerning first=1062 second=934 amount=-2 -kerning first=194 second=218 amount=-2 -kerning first=1065 second=246 amount=-1 -kerning first=306 second=346 amount=-1 -kerning first=74 second=230 amount=-1 -kerning first=214 second=360 amount=-2 -kerning first=211 second=1174 amount=-3 -kerning first=338 second=45 amount=-2 -kerning first=91 second=947 amount=-4 -kerning first=94 second=372 amount=-5 -kerning first=1118 second=8249 amount=-3 -kerning first=237 second=287 amount=-1 -kerning first=952 second=335 amount=-1 -kerning first=955 second=97 amount=-1 -kerning first=260 second=219 amount=-2 -kerning first=377 second=1108 amount=-1 -kerning first=35 second=81 amount=-2 -kerning first=1035 second=34 amount=-3 -kerning first=174 second=231 amount=-1 -kerning first=55 second=243 amount=-1 -kerning first=1069 second=196 amount=-2 -kerning first=195 second=373 amount=-4 -kerning first=313 second=288 amount=-1 -kerning first=72 second=1263 amount=-1 -kerning first=358 second=1176 amount=-1 -kerning first=361 second=362 amount=-2 -kerning first=961 second=47 amount=-1 -kerning first=956 second=275 amount=-1 -kerning first=121 second=244 amount=-1 -kerning first=171 second=1298 amount=-1 -kerning first=294 second=71 amount=-2 -kerning first=8226 second=940 amount=-1 -kerning first=1074 second=111 amount=-1 -kerning first=202 second=83 amount=-1 -kerning first=317 second=233 amount=-1 -kerning first=931 second=290 amount=-2 -kerning first=102 second=257 amount=-1 -kerning first=1186 second=210 amount=-1 -kerning first=362 second=1051 amount=-1 -kerning first=270 second=84 amount=-2 -kerning first=1037 second=364 amount=-2 -kerning first=179 second=334 amount=-2 -kerning first=176 second=1090 amount=-3 -kerning first=60 second=346 amount=-1 -kerning first=1071 second=1035 amount=-5 -kerning first=8365 second=339 amount=-1 -kerning first=86 second=45 amount=-2 -kerning first=8370 second=101 amount=-1 -kerning first=80 second=964 amount=-3 -kerning first=338 second=8249 amount=-3 -kerning first=249 second=97 amount=-1 -kerning first=123 second=1108 amount=-1 -kerning first=126 second=347 amount=-1 -kerning first=271 second=259 amount=-1 -kerning first=275 second=34 amount=-1 -kerning first=38 second=1175 amount=-2 -kerning first=41 second=361 amount=-1 -kerning first=1035 second=8216 amount=-3 -kerning first=44 second=121 amount=-1 -kerning first=180 second=965 amount=-1 -kerning first=8260 second=1118 amount=-1 -kerning first=61 second=1028 amount=-2 -kerning first=64 second=288 amount=-2 -kerning first=8366 second=970 amount=-1 -kerning first=8372 second=279 amount=-1 -kerning first=902 second=248 amount=-1 -kerning first=1117 second=171 amount=-3 -kerning first=350 second=260 amount=-1 -kerning first=247 second=966 amount=-1 -kerning first=250 second=275 amount=-1 -kerning first=163 second=289 amount=-1 -kerning first=48 second=71 amount=-2 -kerning first=1046 second=940 amount=-2 -kerning first=1049 second=249 amount=-1 -kerning first=188 second=221 amount=-5 -kerning first=300 second=351 amount=-1 -kerning first=303 second=111 amount=-1 -kerning first=205 second=1177 amount=-1 -kerning first=88 second=375 amount=-1 -kerning first=1114 second=1078 amount=-2 -kerning first=354 second=210 amount=-1 -kerning first=105 second=8211 amount=-2 -kerning first=1203 second=941 amount=-1 -kerning first=1210 second=250 amount=-1 -kerning first=374 second=352 amount=-1 -kerning first=971 second=262 amount=-2 -kerning first=167 second=234 amount=-1 -kerning first=49 second=246 amount=-1 -kerning first=1063 second=199 amount=-2 -kerning first=189 second=376 amount=-5 -kerning first=301 second=1035 amount=-5 -kerning first=304 second=291 amount=-1 -kerning first=1083 second=1098 amount=-3 -kerning first=1087 second=339 amount=-1 -kerning first=209 second=1059 amount=-2 -kerning first=206 second=8212 amount=-2 -kerning first=1095 second=101 amount=-1 -kerning first=912 second=113 amount=-1 -kerning first=86 second=8249 amount=-3 -kerning first=95 second=85 amount=-2 -kerning first=89 second=1074 amount=-3 -kerning first=1170 second=263 amount=-1 -kerning first=1026 second=212 amount=-2 -kerning first=275 second=8216 amount=-1 -kerning first=8222 second=252 amount=-1 -kerning first=1064 second=354 amount=-5 -kerning first=196 second=86 amount=-6 -kerning first=73 second=336 amount=-2 -kerning first=1096 second=279 amount=-1 -kerning first=923 second=63 amount=-5 -kerning first=1176 second=213 amount=-2 -kerning first=353 second=8217 amount=-1 -kerning first=954 second=225 amount=-1 -kerning first=1263 second=115 amount=-1 -kerning first=262 second=87 amount=-1 -kerning first=973 second=1185 amount=-3 -kerning first=1027 second=367 amount=-1 -kerning first=172 second=337 amount=-1 -kerning first=176 second=99 amount=-1 -kerning first=282 second=940 amount=-1 -kerning first=287 second=249 amount=-1 -kerning first=57 second=111 amount=-1 -kerning first=54 second=351 amount=-1 -kerning first=197 second=261 amount=-1 -kerning first=194 second=953 amount=-1 -kerning first=1065 second=1038 amount=-1 -kerning first=220 second=198 amount=-2 -kerning first=335 second=1078 amount=-2 -kerning first=100 second=210 amount=-2 -kerning first=240 second=338 amount=-2 -kerning first=363 second=250 amount=-1 -kerning first=35 second=364 amount=-2 -kerning first=174 second=968 amount=-1 -kerning first=177 second=277 amount=-1 -kerning first=291 second=199 amount=-2 -kerning first=8240 second=357 amount=-1 -kerning first=8260 second=117 amount=-1 -kerning first=55 second=1035 amount=-5 -kerning first=58 second=291 amount=-1 -kerning first=201 second=211 amount=-2 -kerning first=316 second=339 amount=-1 -kerning first=321 second=101 amount=-1 -kerning first=221 second=353 amount=-3 -kerning first=339 second=955 amount=-1 -kerning first=1178 second=1066 amount=-2 -kerning first=1039 second=252 amount=-1 -kerning first=182 second=224 amount=-1 -kerning first=294 second=354 amount=-5 -kerning first=289 second=1118 amount=-1 -kerning first=199 second=1184 amount=-1 -kerning first=202 second=366 amount=-2 -kerning first=8249 second=1044 amount=-1 -kerning first=322 second=279 amount=-1 -kerning first=8369 second=229 amount=-1 -kerning first=317 second=970 amount=-1 -kerning first=228 second=63 amount=-2 -kerning first=942 second=103 amount=-1 -kerning first=99 second=8217 amount=-1 -kerning first=371 second=115 amount=-1 -kerning first=965 second=267 amount=-1 -kerning first=43 second=249 amount=-1 -kerning first=40 second=940 amount=-1 -kerning first=8370 second=1240 amount=-2 -kerning first=8365 second=1262 amount=-2 -kerning first=901 second=356 amount=-5 -kerning first=904 second=116 amount=-1 -kerning first=83 second=1078 amount=-1 -kerning first=162 second=1241 amount=-1 -kerning first=165 second=187 amount=-1 -kerning first=47 second=199 amount=-1 -kerning first=1048 second=357 amount=-1 -kerning first=184 second=1079 amount=-1 -kerning first=190 second=89 amount=-5 -kerning first=64 second=1098 amount=-3 -kerning first=70 second=101 amount=-1 -kerning first=1080 second=973 amount=-1 -kerning first=8378 second=332 amount=-2 -kerning first=90 second=263 amount=-1 -kerning first=1168 second=216 amount=-2 -kerning first=350 second=1066 amount=-1 -kerning first=948 second=228 amount=-1 -kerning first=1220 second=118 amount=-4 -kerning first=376 second=240 amount=-4 -kerning first=967 second=1194 amount=-2 -kerning first=276 second=943 amount=-1 -kerning first=48 second=354 amount=-5 -kerning first=1065 second=67 amount=-1 -kerning first=191 second=266 amount=-2 -kerning first=194 second=39 amount=-3 -kerning first=906 second=920 amount=-2 -kerning first=94 second=213 amount=-2 -kerning first=1118 second=1195 amount=-1 -kerning first=237 second=103 amount=-1 -kerning first=357 second=253 amount=-1 -kerning first=117 second=115 amount=-1 -kerning first=49 second=1038 amount=-2 -kerning first=195 second=214 amount=-2 -kerning first=304 second=1101 amount=-1 -kerning first=75 second=226 amount=-1 -kerning first=1087 second=1262 amount=-2 -kerning first=1095 second=1240 amount=-2 -kerning first=215 second=356 amount=-5 -kerning first=95 second=368 amount=-2 -kerning first=1170 second=1069 amount=-1 -kerning first=1178 second=81 amount=-1 -kerning first=238 second=281 amount=-1 -kerning first=950 second=1084 amount=-2 -kerning first=175 second=227 amount=-1 -kerning first=289 second=117 amount=-1 -kerning first=196 second=369 amount=-1 -kerning first=310 second=973 amount=-1 -kerning first=8361 second=232 amount=-1 -kerning first=1099 second=332 amount=-2 -kerning first=93 second=8221 amount=-3 -kerning first=96 second=1066 amount=-5 -kerning first=931 second=106 amount=1 -kerning first=365 second=118 amount=-4 -kerning first=954 second=962 amount=-2 -kerning first=122 second=240 amount=-1 -kerning first=37 second=252 amount=-1 -kerning first=172 second=1256 amount=-2 -kerning first=203 second=79 amount=-2 -kerning first=318 second=229 amount=-1 -kerning first=1103 second=271 amount=-1 -kerning first=338 second=1195 amount=-1 -kerning first=926 second=1026 amount=-5 -kerning first=934 second=286 amount=-2 -kerning first=103 second=253 amount=-1 -kerning first=240 second=1257 amount=-1 -kerning first=963 second=218 amount=-2 -kerning first=296 second=242 amount=-1 -kerning first=58 second=1101 amount=-1 -kerning first=201 second=945 amount=-1 -kerning first=316 second=1262 amount=-2 -kerning first=321 second=1240 amount=-2 -kerning first=8366 second=335 amount=-1 -kerning first=8372 second=97 amount=-1 -kerning first=84 second=268 amount=-1 -kerning first=964 second=373 amount=-4 -kerning first=42 second=357 amount=-1 -kerning first=185 second=269 amount=-1 -kerning first=62 second=973 amount=-1 -kerning first=1081 second=232 amount=-1 -kerning first=325 second=332 amount=-2 -kerning first=8369 second=966 amount=-1 -kerning first=903 second=244 amount=-1 -kerning first=88 second=216 amount=-3 -kerning first=111 second=118 amount=-1 -kerning first=1210 second=71 amount=-2 -kerning first=374 second=193 amount=-5 -kerning first=971 second=83 amount=-1 -kerning first=164 second=283 amount=-1 -kerning first=49 second=67 amount=-2 -kerning first=1051 second=245 amount=-1 -kerning first=189 second=217 amount=-2 -kerning first=69 second=229 amount=-1 -kerning first=209 second=359 amount=-1 -kerning first=330 second=271 amount=-1 -kerning first=333 second=44 amount=-1 -kerning first=908 second=194 amount=-2 -kerning first=86 second=1195 amount=-1 -kerning first=89 second=371 amount=-2 -kerning first=1170 second=84 amount=-5 -kerning first=946 second=334 amount=-2 -kerning first=943 second=1090 amount=-2 -kerning first=1206 second=934 amount=-2 -kerning first=1219 second=246 amount=-1 -kerning first=255 second=218 amount=-2 -kerning first=372 second=1107 amount=-2 -kerning first=375 second=346 amount=-1 -kerning first=168 second=230 amount=-1 -kerning first=278 second=360 amount=-2 -kerning first=281 second=120 amount=-2 -kerning first=47 second=923 amount=-5 -kerning first=50 second=242 amount=-1 -kerning first=190 second=372 amount=-5 -kerning first=305 second=287 amount=-1 -kerning first=70 second=1240 amount=-2 -kerning first=1090 second=335 amount=-1 -kerning first=1096 second=97 amount=-1 -kerning first=905 second=1108 amount=-1 -kerning first=910 second=347 amount=-3 -kerning first=96 second=81 amount=-2 -kerning first=1176 second=34 amount=-3 -kerning first=236 second=231 amount=-1 -kerning first=1171 second=259 amount=-1 -kerning first=353 second=1175 amount=-1 -kerning first=356 second=361 amount=-2 -kerning first=948 second=965 amount=-1 -kerning first=1256 second=196 amount=-2 -kerning first=256 second=373 amount=-4 -kerning first=376 second=1028 amount=-3 -kerning first=379 second=288 amount=-1 -kerning first=166 second=1263 amount=-1 -kerning first=8224 second=248 amount=-1 -kerning first=311 second=232 amount=-2 -kerning first=74 second=332 amount=-2 -kerning first=1094 second=966 amount=-1 -kerning first=1097 second=275 amount=-1 -kerning first=916 second=289 amount=-1 -kerning first=363 second=71 amount=-2 -kerning first=955 second=221 amount=-5 -kerning first=1298 second=111 amount=-1 -kerning first=174 second=333 amount=-1 -kerning first=195 second=949 amount=-1 -kerning first=198 second=257 amount=-1 -kerning first=8363 second=100 amount=-1 -kerning first=78 second=271 amount=-1 -kerning first=75 second=963 amount=-2 -kerning first=81 second=44 amount=-1 -kerning first=221 second=194 amount=-5 -kerning first=928 second=234 amount=-1 -kerning first=1178 second=364 amount=-1 -kerning first=238 second=1090 amount=-3 -kerning first=956 second=376 amount=-5 -kerning first=121 second=346 amount=-1 -kerning first=1299 second=291 amount=-1 -kerning first=266 second=258 amount=-1 -kerning first=36 second=360 amount=-2 -kerning first=1026 second=8212 amount=-2 -kerning first=178 second=273 amount=-1 -kerning first=182 second=45 amount=-2 -kerning first=175 second=964 amount=-3 -kerning first=59 second=287 amount=-1 -kerning first=1074 second=235 amount=-1 -kerning first=317 second=335 amount=-1 -kerning first=322 second=97 amount=-1 -kerning first=343 second=259 amount=-1 -kerning first=99 second=1175 amount=-1 -kerning first=1176 second=8216 amount=-3 -kerning first=105 second=121 amount=-1 -kerning first=248 second=46 amount=-1 -kerning first=368 second=196 amount=-2 -kerning first=125 second=288 amount=-2 -kerning first=1041 second=248 amount=-1 -kerning first=183 second=220 amount=-2 -kerning first=63 second=232 amount=-1 -kerning first=203 second=362 amount=-2 -kerning first=200 second=1176 amount=-1 -kerning first=318 second=966 amount=-1 -kerning first=323 second=275 amount=-1 -kerning first=8370 second=225 amount=-1 -kerning first=83 second=374 amount=-2 -kerning first=1187 second=940 amount=-1 -kerning first=249 second=221 amount=-5 -kerning first=369 second=351 amount=-1 -kerning first=372 second=111 amount=-3 -kerning first=963 second=953 amount=-1 -kerning first=162 second=233 amount=-1 -kerning first=271 second=363 amount=-1 -kerning first=184 second=375 amount=-1 -kerning first=299 second=290 amount=-2 -kerning first=1080 second=338 amount=-2 -kerning first=201 second=8211 amount=-2 -kerning first=1084 second=100 amount=-1 -kerning first=902 second=352 amount=-1 -kerning first=1117 second=262 amount=-2 -kerning first=944 second=277 amount=-1 -kerning first=250 second=376 amount=-5 -kerning first=373 second=291 amount=-1 -kerning first=273 second=1059 amount=-2 -kerning first=1049 second=353 amount=-1 -kerning first=182 second=8249 amount=-3 -kerning first=1062 second=113 amount=-1 -kerning first=191 second=85 amount=-2 -kerning first=303 second=235 amount=-1 -kerning first=94 second=34 amount=-3 -kerning first=91 second=259 amount=-1 -kerning first=1210 second=354 amount=-5 -kerning first=968 second=1184 amount=-5 -kerning first=971 second=366 amount=-2 -kerning first=167 second=336 amount=-2 -kerning first=280 second=248 amount=-1 -kerning first=49 second=350 amount=-1 -kerning first=1066 second=63 amount=-5 -kerning first=69 second=966 amount=-1 -kerning first=72 second=275 amount=-1 -kerning first=1095 second=225 amount=-1 -kerning first=336 second=87 amount=-2 -kerning first=1170 second=367 amount=-1 -kerning first=1119 second=1185 amount=-3 -kerning first=238 second=99 amount=-1 -kerning first=358 second=249 amount=-1 -kerning first=1219 second=1038 amount=-2 -kerning first=118 second=111 amount=-1 -kerning first=258 second=261 amount=-1 -kerning first=255 second=953 amount=-1 -kerning first=8226 second=116 amount=-1 -kerning first=8222 second=356 amount=-5 -kerning first=53 second=290 amount=-2 -kerning first=196 second=210 amount=-2 -kerning first=310 second=338 amount=-3 -kerning first=314 second=100 amount=-1 -kerning first=915 second=1241 amount=-1 -kerning first=923 second=187 amount=-1 -kerning first=96 second=364 amount=-2 -kerning first=1168 second=8220 amount=-3 -kerning first=236 second=968 amount=-1 -kerning first=239 second=277 amount=-1 -kerning first=951 second=1079 amount=-1 -kerning first=958 second=89 amount=-5 -kerning first=119 second=291 amount=-1 -kerning first=382 second=339 amount=-1 -kerning first=287 second=353 amount=-1 -kerning first=57 second=235 amount=-1 -kerning first=197 second=365 amount=-1 -kerning first=94 second=8216 amount=-3 -kerning first=1184 second=252 amount=-1 -kerning first=363 second=354 amount=-5 -kerning first=960 second=266 amount=-2 -kerning first=963 second=39 amount=-3 -kerning first=260 second=1184 amount=-5 -kerning first=38 second=248 amount=-1 -kerning first=180 second=171 amount=-3 -kerning first=8240 second=920 amount=-2 -kerning first=195 second=8217 amount=-3 -kerning first=321 second=225 amount=-1 -kerning first=339 second=1185 amount=-1 -kerning first=964 second=214 amount=-2 -kerning first=1299 second=1101 amount=-1 -kerning first=1039 second=356 amount=-5 +kerning first=1038 second=258 amount=-2 +kerning first=1038 second=260 amount=-2 +kerning first=1038 second=913 amount=-2 +kerning first=1038 second=916 amount=-2 +kerning first=1038 second=923 amount=-2 +kerning first=1038 second=1033 amount=-1 +kerning first=1038 second=1040 amount=-2 +kerning first=1038 second=1044 amount=-1 +kerning first=1038 second=1051 amount=-1 +kerning first=1038 second=1298 amount=-1 +kerning first=1038 second=8218 amount=-1 +kerning first=1038 second=8222 amount=-1 +kerning first=1038 second=8230 amount=-1 +kerning first=1040 second=34 amount=-3 +kerning first=1040 second=38 amount=-1 +kerning first=1040 second=39 amount=-3 +kerning first=1040 second=45 amount=-2 +kerning first=1040 second=63 amount=-5 +kerning first=1040 second=67 amount=-2 +kerning first=1040 second=71 amount=-2 +kerning first=1040 second=74 amount=-1 +kerning first=1040 second=79 amount=-2 +kerning first=1040 second=81 amount=-2 +kerning first=1040 second=83 amount=-1 +kerning first=1040 second=84 amount=-5 +kerning first=1040 second=85 amount=-2 +kerning first=1040 second=86 amount=-6 +kerning first=1040 second=87 amount=-5 +kerning first=1040 second=89 amount=-5 +kerning first=1040 second=97 amount=-1 +kerning first=1040 second=99 amount=-1 +kerning first=1040 second=100 amount=-1 +kerning first=1040 second=101 amount=-1 +kerning first=1040 second=102 amount=-2 +kerning first=1040 second=103 amount=-1 +kerning first=1040 second=106 amount=1 +kerning first=1040 second=111 amount=-1 +kerning first=1040 second=113 amount=-1 +kerning first=1040 second=115 amount=-1 +kerning first=1040 second=116 amount=-1 +kerning first=1040 second=117 amount=-1 +kerning first=1040 second=118 amount=-4 +kerning first=1040 second=119 amount=-4 +kerning first=1040 second=121 amount=-1 +kerning first=1040 second=171 amount=-3 +kerning first=1040 second=173 amount=-2 +kerning first=1040 second=187 amount=-1 +kerning first=1040 second=199 amount=-2 +kerning first=1040 second=210 amount=-2 +kerning first=1040 second=211 amount=-2 +kerning first=1040 second=212 amount=-2 +kerning first=1040 second=213 amount=-2 +kerning first=1040 second=214 amount=-2 +kerning first=1040 second=216 amount=-2 +kerning first=1040 second=217 amount=-2 +kerning first=1040 second=218 amount=-2 +kerning first=1040 second=219 amount=-2 +kerning first=1040 second=220 amount=-2 +kerning first=1040 second=221 amount=-5 +kerning first=1040 second=224 amount=-1 +kerning first=1040 second=225 amount=-1 +kerning first=1040 second=226 amount=-1 +kerning first=1040 second=227 amount=-1 +kerning first=1040 second=228 amount=-1 +kerning first=1040 second=229 amount=-1 +kerning first=1040 second=230 amount=-1 +kerning first=1040 second=231 amount=-1 +kerning first=1040 second=232 amount=-1 +kerning first=1040 second=233 amount=-1 +kerning first=1040 second=234 amount=-1 +kerning first=1040 second=235 amount=-1 +kerning first=1040 second=240 amount=-1 +kerning first=1040 second=242 amount=-1 +kerning first=1040 second=243 amount=-1 +kerning first=1040 second=244 amount=-1 +kerning first=1040 second=245 amount=-1 +kerning first=1040 second=246 amount=-1 +kerning first=1040 second=248 amount=-1 +kerning first=1040 second=249 amount=-1 +kerning first=1040 second=250 amount=-1 +kerning first=1040 second=251 amount=-1 +kerning first=1040 second=252 amount=-1 +kerning first=1040 second=253 amount=-1 +kerning first=1040 second=257 amount=-1 +kerning first=1040 second=259 amount=-1 +kerning first=1040 second=261 amount=-1 +kerning first=1040 second=262 amount=-2 +kerning first=1040 second=263 amount=-1 +kerning first=1040 second=266 amount=-2 +kerning first=1040 second=267 amount=-1 +kerning first=1040 second=268 amount=-2 +kerning first=1040 second=269 amount=-1 +kerning first=1040 second=271 amount=-1 +kerning first=1040 second=273 amount=-1 +kerning first=1040 second=275 amount=-1 +kerning first=1040 second=277 amount=-1 +kerning first=1040 second=279 amount=-1 +kerning first=1040 second=281 amount=-1 +kerning first=1040 second=283 amount=-1 +kerning first=1040 second=286 amount=-2 +kerning first=1040 second=287 amount=-1 +kerning first=1040 second=288 amount=-2 +kerning first=1040 second=289 amount=-1 +kerning first=1040 second=290 amount=-2 +kerning first=1040 second=291 amount=-1 +kerning first=1040 second=332 amount=-2 +kerning first=1040 second=333 amount=-1 +kerning first=1040 second=334 amount=-2 +kerning first=1040 second=335 amount=-1 +kerning first=1040 second=336 amount=-2 +kerning first=1040 second=337 amount=-1 +kerning first=1040 second=338 amount=-2 +kerning first=1040 second=339 amount=-1 +kerning first=1040 second=346 amount=-1 +kerning first=1040 second=347 amount=-1 +kerning first=1040 second=350 amount=-1 +kerning first=1040 second=351 amount=-1 +kerning first=1040 second=352 amount=-1 +kerning first=1040 second=353 amount=-1 +kerning first=1040 second=354 amount=-5 +kerning first=1040 second=355 amount=-1 +kerning first=1040 second=356 amount=-5 +kerning first=1040 second=357 amount=-1 +kerning first=1040 second=359 amount=-1 +kerning first=1040 second=360 amount=-2 +kerning first=1040 second=361 amount=-1 +kerning first=1040 second=362 amount=-2 +kerning first=1040 second=363 amount=-1 +kerning first=1040 second=364 amount=-2 +kerning first=1040 second=365 amount=-1 +kerning first=1040 second=366 amount=-2 +kerning first=1040 second=367 amount=-1 +kerning first=1040 second=368 amount=-2 +kerning first=1040 second=369 amount=-1 +kerning first=1040 second=370 amount=-2 +kerning first=1040 second=371 amount=-1 +kerning first=1040 second=372 amount=-5 +kerning first=1040 second=373 amount=-4 +kerning first=1040 second=374 amount=-5 +kerning first=1040 second=375 amount=-1 +kerning first=1040 second=376 amount=-5 +kerning first=1040 second=920 amount=-2 +kerning first=1040 second=927 amount=-2 +kerning first=1040 second=932 amount=-5 +kerning first=1040 second=933 amount=-5 +kerning first=1040 second=936 amount=-3 +kerning first=1040 second=939 amount=-5 +kerning first=1040 second=940 amount=-1 +kerning first=1040 second=941 amount=-1 +kerning first=1040 second=943 amount=-1 +kerning first=1040 second=945 amount=-1 +kerning first=1040 second=947 amount=-4 +kerning first=1040 second=949 amount=-1 +kerning first=1040 second=950 amount=-1 +kerning first=1040 second=953 amount=-1 +kerning first=1040 second=957 amount=-4 +kerning first=1040 second=959 amount=-1 +kerning first=1040 second=962 amount=-1 +kerning first=1040 second=963 amount=-1 +kerning first=1040 second=964 amount=-3 +kerning first=1040 second=965 amount=-1 +kerning first=1040 second=966 amount=-1 +kerning first=1040 second=968 amount=-1 +kerning first=1040 second=970 amount=-1 +kerning first=1040 second=972 amount=-1 +kerning first=1040 second=973 amount=-1 +kerning first=1040 second=1026 amount=-5 +kerning first=1040 second=1028 amount=-2 +kerning first=1040 second=1029 amount=-1 +kerning first=1040 second=1032 amount=-1 +kerning first=1040 second=1035 amount=-5 +kerning first=1040 second=1038 amount=-2 +kerning first=1040 second=1054 amount=-2 +kerning first=1040 second=1057 amount=-2 +kerning first=1040 second=1058 amount=-5 +kerning first=1040 second=1059 amount=-2 +kerning first=1040 second=1063 amount=-3 +kerning first=1040 second=1066 amount=-5 +kerning first=1040 second=1069 amount=-1 +kerning first=1040 second=1072 amount=-1 +kerning first=1040 second=1077 amount=-1 +kerning first=1040 second=1079 amount=-1 +kerning first=1040 second=1086 amount=-1 +kerning first=1040 second=1089 amount=-1 +kerning first=1040 second=1090 amount=-3 +kerning first=1040 second=1091 amount=-1 +kerning first=1040 second=1092 amount=-1 +kerning first=1040 second=1098 amount=-3 +kerning first=1040 second=1101 amount=-1 +kerning first=1040 second=1104 amount=-1 +kerning first=1040 second=1105 amount=-1 +kerning first=1040 second=1108 amount=-1 +kerning first=1040 second=1109 amount=-1 +kerning first=1040 second=1112 amount=1 +kerning first=1040 second=1118 amount=-1 +kerning first=1040 second=1176 amount=-1 +kerning first=1040 second=1177 amount=-1 +kerning first=1040 second=1184 amount=-5 +kerning first=1040 second=1185 amount=-3 +kerning first=1040 second=1194 amount=-2 +kerning first=1040 second=1195 amount=-1 +kerning first=1040 second=1198 amount=-5 +kerning first=1040 second=1199 amount=-4 +kerning first=1040 second=1240 amount=-2 +kerning first=1040 second=1241 amount=-1 +kerning first=1040 second=1256 amount=-2 +kerning first=1040 second=1257 amount=-1 +kerning first=1040 second=1262 amount=-2 +kerning first=1040 second=1263 amount=-1 +kerning first=1040 second=8211 amount=-2 +kerning first=1040 second=8212 amount=-2 +kerning first=1040 second=8216 amount=-3 +kerning first=1040 second=8217 amount=-3 +kerning first=1040 second=8220 amount=-3 +kerning first=1040 second=8221 amount=-3 +kerning first=1040 second=8249 amount=-3 +kerning first=1040 second=8250 amount=-1 +kerning first=1041 second=84 amount=-3 +kerning first=1041 second=88 amount=-2 +kerning first=1041 second=354 amount=-3 +kerning first=1041 second=356 amount=-3 +kerning first=1041 second=932 amount=-3 +kerning first=1041 second=935 amount=-2 +kerning first=1041 second=1026 amount=-3 +kerning first=1041 second=1035 amount=-3 +kerning first=1041 second=1046 amount=-2 +kerning first=1041 second=1058 amount=-3 +kerning first=1041 second=1061 amount=-2 +kerning first=1041 second=1063 amount=-1 +kerning first=1041 second=1066 amount=-3 +kerning first=1041 second=1069 amount=1 +kerning first=1041 second=1071 amount=-1 +kerning first=1041 second=1174 amount=-2 +kerning first=1041 second=1176 amount=1 +kerning first=1041 second=1184 amount=-3 +kerning first=1041 second=1202 amount=-2 +kerning first=1042 second=65 amount=-1 +kerning first=1042 second=84 amount=-1 +kerning first=1042 second=86 amount=-1 +kerning first=1042 second=87 amount=-1 +kerning first=1042 second=88 amount=-2 +kerning first=1042 second=89 amount=-2 +kerning first=1042 second=193 amount=-1 +kerning first=1042 second=194 amount=-1 +kerning first=1042 second=196 amount=-1 +kerning first=1042 second=197 amount=-1 +kerning first=1042 second=198 amount=-1 +kerning first=1042 second=221 amount=-2 +kerning first=1042 second=256 amount=-1 +kerning first=1042 second=258 amount=-1 +kerning first=1042 second=260 amount=-1 +kerning first=1042 second=354 amount=-1 +kerning first=1042 second=356 amount=-1 +kerning first=1042 second=372 amount=-1 +kerning first=1042 second=374 amount=-2 +kerning first=1042 second=376 amount=-2 +kerning first=1042 second=913 amount=-1 +kerning first=1042 second=916 amount=-1 +kerning first=1042 second=923 amount=-1 +kerning first=1042 second=932 amount=-1 +kerning first=1042 second=933 amount=-2 +kerning first=1042 second=935 amount=-2 +kerning first=1042 second=939 amount=-2 +kerning first=1042 second=955 amount=-1 +kerning first=1042 second=1026 amount=-1 +kerning first=1042 second=1035 amount=-1 +kerning first=1042 second=1040 amount=-1 +kerning first=1042 second=1046 amount=-2 +kerning first=1042 second=1058 amount=-1 +kerning first=1042 second=1061 amount=-2 +kerning first=1042 second=1066 amount=-1 +kerning first=1042 second=1174 amount=-2 +kerning first=1042 second=1184 amount=-1 +kerning first=1042 second=1198 amount=-2 +kerning first=1042 second=1202 amount=-2 +kerning first=1043 second=934 amount=-3 +kerning first=1043 second=1033 amount=-5 +kerning first=1043 second=1044 amount=-5 +kerning first=1043 second=1051 amount=-5 +kerning first=1043 second=1060 amount=-3 +kerning first=1043 second=1298 amount=-5 +kerning first=1044 second=34 amount=-2 +kerning first=1044 second=39 amount=-2 +kerning first=1044 second=45 amount=-2 +kerning first=1044 second=63 amount=-2 +kerning first=1044 second=67 amount=-1 +kerning first=1044 second=71 amount=-1 +kerning first=1044 second=79 amount=-1 +kerning first=1044 second=81 amount=-1 +kerning first=1044 second=84 amount=-2 +kerning first=1044 second=85 amount=-1 +kerning first=1044 second=89 amount=-2 +kerning first=1044 second=99 amount=-1 +kerning first=1044 second=100 amount=-1 +kerning first=1044 second=101 amount=-1 +kerning first=1044 second=106 amount=7 +kerning first=1044 second=111 amount=-1 +kerning first=1044 second=113 amount=-1 +kerning first=1044 second=118 amount=-2 +kerning first=1044 second=119 amount=-2 +kerning first=1044 second=171 amount=-1 +kerning first=1044 second=173 amount=-2 +kerning first=1044 second=199 amount=-1 +kerning first=1044 second=210 amount=-1 +kerning first=1044 second=211 amount=-1 +kerning first=1044 second=212 amount=-1 +kerning first=1044 second=213 amount=-1 +kerning first=1044 second=214 amount=-1 +kerning first=1044 second=216 amount=-1 +kerning first=1044 second=217 amount=-1 +kerning first=1044 second=218 amount=-1 +kerning first=1044 second=219 amount=-1 +kerning first=1044 second=220 amount=-1 +kerning first=1044 second=221 amount=-2 +kerning first=1044 second=231 amount=-1 +kerning first=1044 second=232 amount=-1 +kerning first=1044 second=233 amount=-1 +kerning first=1044 second=234 amount=-1 +kerning first=1044 second=235 amount=-1 +kerning first=1044 second=240 amount=-1 +kerning first=1044 second=242 amount=-1 +kerning first=1044 second=243 amount=-1 +kerning first=1044 second=244 amount=-1 +kerning first=1044 second=245 amount=-1 +kerning first=1044 second=246 amount=-1 +kerning first=1044 second=248 amount=-1 +kerning first=1044 second=262 amount=-1 +kerning first=1044 second=263 amount=-1 +kerning first=1044 second=266 amount=-1 +kerning first=1044 second=267 amount=-1 +kerning first=1044 second=268 amount=-1 +kerning first=1044 second=269 amount=-1 +kerning first=1044 second=271 amount=-1 +kerning first=1044 second=273 amount=-1 +kerning first=1044 second=275 amount=-1 +kerning first=1044 second=277 amount=-1 +kerning first=1044 second=279 amount=-1 +kerning first=1044 second=281 amount=-1 +kerning first=1044 second=283 amount=-1 +kerning first=1044 second=286 amount=-1 +kerning first=1044 second=288 amount=-1 +kerning first=1044 second=290 amount=-1 +kerning first=1044 second=332 amount=-1 +kerning first=1044 second=333 amount=-1 +kerning first=1044 second=334 amount=-1 +kerning first=1044 second=335 amount=-1 +kerning first=1044 second=336 amount=-1 +kerning first=1044 second=337 amount=-1 +kerning first=1044 second=338 amount=-1 +kerning first=1044 second=339 amount=-1 +kerning first=1044 second=354 amount=-2 +kerning first=1044 second=356 amount=-2 +kerning first=1044 second=360 amount=-1 +kerning first=1044 second=362 amount=-1 +kerning first=1044 second=364 amount=-1 +kerning first=1044 second=366 amount=-1 +kerning first=1044 second=368 amount=-1 +kerning first=1044 second=370 amount=-1 +kerning first=1044 second=373 amount=-2 +kerning first=1044 second=374 amount=-2 +kerning first=1044 second=376 amount=-2 +kerning first=1044 second=920 amount=-1 +kerning first=1044 second=927 amount=-1 +kerning first=1044 second=932 amount=-2 +kerning first=1044 second=933 amount=-2 +kerning first=1044 second=934 amount=-2 +kerning first=1044 second=939 amount=-2 +kerning first=1044 second=940 amount=-1 +kerning first=1044 second=941 amount=-1 +kerning first=1044 second=945 amount=-1 +kerning first=1044 second=947 amount=-2 +kerning first=1044 second=949 amount=-1 +kerning first=1044 second=957 amount=-2 +kerning first=1044 second=959 amount=-1 +kerning first=1044 second=962 amount=-1 +kerning first=1044 second=963 amount=-1 +kerning first=1044 second=964 amount=-2 +kerning first=1044 second=966 amount=-1 +kerning first=1044 second=972 amount=-1 +kerning first=1044 second=1026 amount=-2 +kerning first=1044 second=1028 amount=-1 +kerning first=1044 second=1035 amount=-2 +kerning first=1044 second=1038 amount=-1 +kerning first=1044 second=1054 amount=-1 +kerning first=1044 second=1057 amount=-1 +kerning first=1044 second=1058 amount=-2 +kerning first=1044 second=1059 amount=-1 +kerning first=1044 second=1060 amount=-2 +kerning first=1044 second=1063 amount=-2 +kerning first=1044 second=1066 amount=-2 +kerning first=1044 second=1077 amount=-1 +kerning first=1044 second=1086 amount=-1 +kerning first=1044 second=1089 amount=-1 +kerning first=1044 second=1090 amount=-2 +kerning first=1044 second=1092 amount=-1 +kerning first=1044 second=1098 amount=-2 +kerning first=1044 second=1104 amount=-1 +kerning first=1044 second=1105 amount=-1 +kerning first=1044 second=1108 amount=-1 +kerning first=1044 second=1112 amount=7 +kerning first=1044 second=1184 amount=-2 +kerning first=1044 second=1185 amount=-2 +kerning first=1044 second=1194 amount=-1 +kerning first=1044 second=1195 amount=-1 +kerning first=1044 second=1198 amount=-2 +kerning first=1044 second=1199 amount=-2 +kerning first=1044 second=1240 amount=-1 +kerning first=1044 second=1241 amount=-1 +kerning first=1044 second=1256 amount=-1 +kerning first=1044 second=1257 amount=-1 +kerning first=1044 second=1262 amount=-1 +kerning first=1044 second=8211 amount=-2 +kerning first=1044 second=8212 amount=-2 +kerning first=1044 second=8216 amount=-2 +kerning first=1044 second=8217 amount=-2 +kerning first=1044 second=8220 amount=-2 +kerning first=1044 second=8221 amount=-2 +kerning first=1044 second=8249 amount=-1 +kerning first=1046 second=38 amount=-2 +kerning first=1046 second=45 amount=-3 +kerning first=1046 second=63 amount=-2 +kerning first=1046 second=67 amount=-3 +kerning first=1046 second=71 amount=-3 +kerning first=1046 second=74 amount=-1 +kerning first=1046 second=79 amount=-3 +kerning first=1046 second=81 amount=-3 +kerning first=1046 second=83 amount=-1 +kerning first=1046 second=97 amount=-1 +kerning first=1046 second=99 amount=-2 +kerning first=1046 second=100 amount=-2 +kerning first=1046 second=101 amount=-2 +kerning first=1046 second=111 amount=-2 +kerning first=1046 second=113 amount=-2 +kerning first=1046 second=115 amount=-1 kerning first=1046 second=116 amount=-1 -kerning first=62 second=338 amount=-2 -kerning first=65 second=100 amount=-1 -kerning first=1074 second=972 amount=-1 -kerning first=202 second=941 amount=-1 -kerning first=205 second=250 amount=-1 -kerning first=1078 second=281 amount=-2 -kerning first=942 second=227 amount=-1 -kerning first=108 second=199 amount=-2 -kerning first=251 second=89 amount=-5 -kerning first=965 second=369 amount=-1 -kerning first=125 second=1098 amount=-3 -kerning first=161 second=339 amount=-1 -kerning first=164 second=101 amount=-1 -kerning first=274 second=251 amount=-1 -kerning first=43 second=353 amount=-1 -kerning first=186 second=263 amount=-1 -kerning first=1083 second=228 amount=-1 -kerning first=8370 second=962 amount=-1 -kerning first=904 second=240 amount=-1 -kerning first=89 second=212 amount=-3 -kerning first=232 second=102 amount=-1 -kerning first=1219 second=67 amount=-2 -kerning first=252 second=266 amount=-2 -kerning first=255 second=39 amount=-3 -kerning first=162 second=970 amount=-1 -kerning first=165 second=279 amount=-1 -kerning first=8218 second=119 amount=-2 -kerning first=1048 second=920 amount=-2 -kerning first=190 second=213 amount=-2 -kerning first=305 second=103 amount=-1 -kerning first=70 second=225 amount=-1 -kerning first=1080 second=1257 amount=-1 -kerning first=1220 second=242 amount=-1 -kerning first=256 second=214 amount=-2 -kerning first=169 second=226 amount=-1 -kerning first=282 second=116 amount=-1 -kerning first=191 second=368 amount=-2 -kerning first=303 second=972 amount=-1 -kerning first=306 second=281 amount=-1 -kerning first=217 second=65 amount=-2 -kerning first=237 second=227 amount=-1 -kerning first=357 second=357 amount=-1 -kerning first=354 second=1169 amount=-2 -kerning first=952 second=269 amount=-1 -kerning first=8225 second=244 amount=-1 -kerning first=192 second=1066 amount=-5 -kerning first=189 second=8221 amount=-3 -kerning first=1095 second=962 amount=-1 -kerning first=95 second=943 amount=-1 -kerning first=956 second=217 amount=-2 -kerning first=1036 second=119 amount=-3 -kerning first=8249 second=194 amount=-1 -kerning first=1067 second=1026 amount=-5 -kerning first=59 second=103 amount=-1 -kerning first=310 second=1257 amount=-2 -kerning first=8361 second=334 amount=-2 -kerning first=931 second=230 amount=-1 -kerning first=365 second=242 amount=-1 -kerning first=362 second=923 amount=-2 -kerning first=958 second=372 amount=-5 -kerning first=37 second=356 amount=-5 -kerning first=40 second=116 amount=-1 -kerning first=179 second=268 amount=-2 -kerning first=57 second=972 amount=-1 -kerning first=60 second=281 amount=-1 -kerning first=1075 second=231 amount=-1 -kerning first=1103 second=373 amount=-4 -kerning first=926 second=1263 amount=-1 -kerning first=103 second=357 amount=-1 -kerning first=123 second=973 amount=-1 -kerning first=1044 second=244 amount=-1 -kerning first=184 second=216 amount=-2 -kerning first=299 second=106 amount=1 -kerning first=64 second=228 amount=-1 -kerning first=207 second=118 amount=-4 -kerning first=321 second=962 amount=-1 -kerning first=8372 second=221 amount=-5 -kerning first=1101 second=8230 amount=-1 -kerning first=1117 second=83 amount=-1 -kerning first=1202 second=245 amount=-1 -kerning first=250 second=217 amount=-2 -kerning first=964 second=949 amount=-1 -kerning first=967 second=257 amount=-1 -kerning first=163 second=229 amount=-1 -kerning first=276 second=119 amount=-4 -kerning first=273 second=359 amount=-1 -kerning first=42 second=920 amount=-2 -kerning first=182 second=1195 amount=-1 -kerning first=185 second=371 amount=-1 -kerning first=297 second=1026 amount=-5 -kerning first=300 second=286 amount=-2 -kerning first=62 second=1257 amount=-1 -kerning first=1081 second=334 amount=-2 -kerning first=903 second=346 amount=-1 -kerning first=346 second=1174 amount=-1 -kerning first=354 second=120 amount=-1 -kerning first=942 second=964 amount=-3 -kerning first=248 second=947 amount=-1 -kerning first=251 second=372 amount=-5 -kerning first=374 second=287 amount=-4 -kerning first=161 second=1262 amount=-2 -kerning first=164 second=1240 amount=-2 -kerning first=1051 second=347 amount=-1 -kerning first=186 second=1069 amount=-1 -kerning first=192 second=81 amount=-2 -kerning first=304 second=231 amount=-1 -kerning first=1083 second=965 amount=-1 -kerning first=330 second=373 amount=-4 -kerning first=8370 second=8250 amount=-1 -kerning first=904 second=1028 amount=-2 -kerning first=950 second=220 amount=-2 -kerning first=1219 second=350 amount=-1 -kerning first=378 second=232 amount=-1 -kerning first=168 second=332 amount=-2 -kerning first=1064 second=289 amount=-1 -kerning first=53 second=106 amount=1 -kerning first=1059 second=1033 amount=-1 -kerning first=70 second=962 amount=-1 -kerning first=1096 second=221 amount=-5 -kerning first=216 second=193 amount=-2 -kerning first=915 second=233 amount=-1 -kerning first=1168 second=1177 amount=-1 -kerning first=1171 second=363 amount=-1 -kerning first=236 second=333 amount=-1 -kerning first=951 second=375 amount=-1 -kerning first=256 second=949 amount=-1 -kerning first=169 second=963 amount=-1 -kerning first=172 second=271 amount=-1 -kerning first=8224 second=352 amount=-1 -kerning first=51 second=1026 amount=-5 -kerning first=54 second=286 amount=-2 -kerning first=306 second=1090 amount=-3 -kerning first=77 second=218 amount=-2 -kerning first=1174 second=1059 amount=-1 -kerning first=240 second=273 amount=-1 -kerning first=237 second=964 amount=-3 -kerning first=960 second=85 amount=-2 -kerning first=120 second=287 amount=-1 -kerning first=1298 second=235 amount=-1 -kerning first=177 second=219 amount=-2 -kerning first=58 second=231 amount=-1 -kerning first=198 second=361 amount=-1 -kerning first=201 second=121 amount=-1 -kerning first=313 second=965 amount=-1 -kerning first=8363 second=224 amount=-1 -kerning first=78 second=373 amount=-4 -kerning first=1095 second=8250 amount=-1 -kerning first=221 second=288 amount=-3 -kerning first=928 second=336 amount=-2 -kerning first=1185 second=248 amount=-2 -kerning first=124 second=232 amount=-1 -kerning first=39 second=244 amount=-1 -kerning first=178 second=374 amount=-5 -kerning first=294 second=289 amount=-1 -kerning first=1074 second=337 amount=-1 -kerning first=1078 second=99 amount=-2 -kerning first=205 second=71 amount=-2 -kerning first=322 second=221 amount=-5 -kerning first=900 second=111 amount=-1 -kerning first=79 second=1071 amount=-1 -kerning first=105 second=245 amount=-1 -kerning first=965 second=210 amount=-2 -kerning first=262 second=8211 amount=-1 -kerning first=1041 second=352 amount=-1 -kerning first=186 second=84 amount=-5 -kerning first=298 second=234 amount=-1 -kerning first=60 second=1090 amount=-3 -kerning first=63 second=334 amount=-2 -kerning first=206 second=246 amount=-1 -kerning first=323 second=376 amount=-5 -kerning first=8365 second=1079 amount=-1 -kerning first=8377 second=89 amount=-5 -kerning first=901 second=291 amount=-1 -kerning first=86 second=258 amount=-6 -kerning first=341 second=8212 amount=-1 -kerning first=947 second=353 amount=-1 -kerning first=1206 second=113 amount=-1 -kerning first=252 second=85 amount=-2 -kerning first=372 second=235 amount=-3 -kerning first=162 second=335 amount=-1 -kerning first=165 second=97 amount=-1 -kerning first=41 second=1108 amount=-1 -kerning first=47 second=109 amount=-1 -kerning first=190 second=34 amount=-3 -kerning first=70 second=46 amount=-4 -kerning first=64 second=965 amount=-1 -kerning first=1084 second=224 amount=-1 -kerning first=210 second=196 amount=-2 -kerning first=321 second=8250 amount=-1 -kerning first=8378 second=266 amount=-2 -kerning first=1117 second=366 amount=-2 -kerning first=948 second=171 amount=-3 -kerning first=113 second=110 amount=2 -kerning first=964 second=8217 amount=-3 -kerning first=163 second=966 amount=-1 -kerning first=166 second=275 amount=-1 -kerning first=8220 second=115 amount=-1 -kerning first=48 second=289 amount=-1 -kerning first=45 second=1033 amount=-4 -kerning first=303 second=337 amount=-1 -kerning first=306 second=99 amount=-1 -kerning first=71 second=221 amount=-2 -kerning first=214 second=111 amount=-1 -kerning first=88 second=1177 amount=-2 -kerning first=91 second=363 amount=-1 -kerning first=374 second=1097 amount=-3 -kerning first=377 second=338 amount=-1 -kerning first=380 second=100 amount=-1 -kerning first=971 second=941 amount=-1 -kerning first=280 second=352 amount=-1 -kerning first=52 second=234 amount=-1 -kerning first=1063 second=1241 amount=-1 -kerning first=192 second=364 amount=-2 -kerning first=304 second=968 amount=-1 -kerning first=72 second=376 amount=-5 -kerning first=1087 second=1079 amount=-1 -kerning first=215 second=291 amount=-1 -kerning first=212 second=1035 amount=-2 -kerning first=912 second=339 amount=-1 -kerning first=92 second=1059 amount=-2 -kerning first=89 second=8212 amount=-4 -kerning first=361 second=113 amount=-1 -kerning first=358 second=353 amount=-1 -kerning first=950 second=955 amount=-2 -kerning first=118 second=235 amount=-1 -kerning first=258 second=365 amount=-1 -kerning first=8226 second=240 amount=-1 -kerning first=190 second=8216 amount=-3 -kerning first=314 second=224 amount=-1 -kerning first=70 second=8250 amount=-1 -kerning first=79 second=86 amount=-2 -kerning first=1099 second=266 amount=-2 -kerning first=1102 second=39 amount=-1 -kerning first=334 second=1184 amount=-2 -kerning first=915 second=970 amount=-1 -kerning first=923 second=279 amount=-1 -kerning first=958 second=213 amount=-2 -kerning first=256 second=8217 amount=-3 -kerning first=1037 second=115 amount=-1 -kerning first=179 second=87 amount=-5 -kerning first=57 second=337 amount=-1 -kerning first=60 second=99 amount=-1 -kerning first=197 second=940 amount=-1 -kerning first=200 second=249 amount=-1 -kerning first=80 second=261 amount=-1 -kerning first=77 second=953 amount=-1 -kerning first=1103 second=214 amount=-2 -kerning first=335 second=8218 amount=-1 -kerning first=934 second=226 amount=-1 -kerning first=960 second=368 amount=-2 -kerning first=123 second=338 amount=-2 -kerning first=126 second=100 amount=-1 -kerning first=1298 second=972 amount=-1 -kerning first=38 second=352 amount=-1 -kerning first=180 second=262 amount=-2 -kerning first=291 second=1241 amount=-1 -kerning first=296 second=187 amount=-1 -kerning first=58 second=968 amount=-1 -kerning first=61 second=277 amount=-1 -kerning first=204 second=199 amount=-2 -kerning first=316 second=1079 amount=-1 -kerning first=8366 second=269 amount=-1 -kerning first=84 second=211 amount=-1 -kerning first=221 second=1098 amount=-2 -kerning first=107 second=113 amount=-2 -kerning first=244 second=955 amount=-1 -kerning first=247 second=263 amount=-1 -kerning first=956 second=8221 amount=-3 +kerning first=1046 second=117 amount=-1 +kerning first=1046 second=118 amount=-3 +kerning first=1046 second=119 amount=-3 +kerning first=1046 second=121 amount=-1 +kerning first=1046 second=171 amount=-3 +kerning first=1046 second=173 amount=-3 +kerning first=1046 second=187 amount=-1 +kerning first=1046 second=199 amount=-3 +kerning first=1046 second=210 amount=-3 +kerning first=1046 second=211 amount=-3 +kerning first=1046 second=212 amount=-3 +kerning first=1046 second=213 amount=-3 +kerning first=1046 second=214 amount=-3 +kerning first=1046 second=216 amount=-3 +kerning first=1046 second=224 amount=-1 +kerning first=1046 second=225 amount=-1 +kerning first=1046 second=226 amount=-1 +kerning first=1046 second=227 amount=-1 +kerning first=1046 second=228 amount=-1 +kerning first=1046 second=229 amount=-1 +kerning first=1046 second=230 amount=-1 +kerning first=1046 second=231 amount=-2 +kerning first=1046 second=232 amount=-2 +kerning first=1046 second=233 amount=-2 +kerning first=1046 second=234 amount=-2 +kerning first=1046 second=235 amount=-2 kerning first=1046 second=240 amount=-2 -kerning first=185 second=212 amount=-2 -kerning first=1074 second=1256 amount=-2 -kerning first=65 second=224 amount=-1 -kerning first=202 second=1118 amount=-1 -kerning first=205 second=354 amount=-5 -kerning first=325 second=266 amount=-2 -kerning first=328 second=39 amount=-1 -kerning first=1102 second=8222 amount=-1 -kerning first=1118 second=79 amount=-2 -kerning first=111 second=63 amount=-2 -kerning first=251 second=213 amount=-2 -kerning first=374 second=103 amount=-4 -kerning first=968 second=253 amount=-1 -kerning first=164 second=225 amount=-1 -kerning first=274 second=355 amount=-1 -kerning first=183 second=1185 amount=-3 -kerning first=186 second=367 amount=-1 -kerning first=206 second=1038 amount=-2 -kerning first=330 second=214 amount=-2 -kerning first=8370 second=947 amount=-4 -kerning first=8377 second=372 amount=-5 -kerning first=901 second=1101 amount=-1 -kerning first=1116 second=945 amount=-2 -kerning first=352 second=356 amount=-1 -kerning first=946 second=268 amount=-2 -kerning first=252 second=368 amount=-2 -kerning first=375 second=281 amount=-1 -kerning first=372 second=972 amount=-3 -kerning first=47 second=1241 amount=-1 -kerning first=50 second=187 amount=-1 -kerning first=184 second=8220 amount=-3 -kerning first=305 second=227 amount=-1 -kerning first=70 second=326 amount=-1 -kerning first=73 second=89 amount=-5 -kerning first=1090 second=269 amount=-1 -kerning first=905 second=973 amount=-1 -kerning first=93 second=251 amount=-1 -kerning first=951 second=216 amount=-2 -kerning first=253 second=1066 amount=-5 -kerning first=250 second=8221 amount=-3 -kerning first=1027 second=118 amount=-4 -kerning first=282 second=240 amount=-1 -kerning first=1065 second=283 amount=-1 -kerning first=191 second=943 amount=-1 -kerning first=194 second=252 amount=-1 -kerning first=303 second=1256 amount=-2 -kerning first=74 second=266 amount=-2 -kerning first=77 second=39 amount=-3 -kerning first=338 second=79 amount=-2 -kerning first=916 second=229 amount=-1 -kerning first=357 second=920 amount=-2 -kerning first=952 second=371 amount=-1 -kerning first=120 second=103 amount=-1 -kerning first=1223 second=1026 amount=-5 -kerning first=260 second=253 amount=-1 -kerning first=377 second=1257 amount=-1 -kerning first=35 second=115 amount=-1 -kerning first=174 second=267 amount=-1 -kerning first=8225 second=346 amount=-1 -kerning first=8363 second=45 amount=-2 -kerning first=78 second=214 amount=-2 -kerning first=1095 second=947 amount=-4 -kerning first=215 second=1101 amount=-1 -kerning first=912 second=1262 amount=-2 -kerning first=118 second=972 amount=-1 -kerning first=121 second=281 amount=-1 -kerning first=1299 second=231 amount=-1 -kerning first=39 second=65 amount=-3 -kerning first=1036 second=243 amount=-2 -kerning first=8226 second=1028 amount=-2 -kerning first=59 second=227 amount=-1 -kerning first=1067 second=1263 amount=-1 -kerning first=202 second=117 amount=-1 -kerning first=317 second=269 amount=-1 -kerning first=8364 second=220 amount=-2 -kerning first=931 second=332 amount=-2 -kerning first=1186 second=244 amount=-1 -kerning first=125 second=228 amount=-1 -kerning first=40 second=240 amount=-1 -kerning first=176 second=1194 amount=-2 -kerning first=179 second=370 amount=-2 -kerning first=57 second=1256 amount=-2 -kerning first=1075 second=333 amount=-1 -kerning first=206 second=67 amount=-2 -kerning first=323 second=217 amount=-2 -kerning first=8365 second=375 amount=-1 -kerning first=86 second=79 amount=-2 -kerning first=1103 second=949 amount=-1 -kerning first=347 second=119 amount=-1 -kerning first=934 second=963 amount=-1 -kerning first=103 second=920 amount=-2 -kerning first=369 second=286 amount=-2 -kerning first=123 second=1257 amount=-1 -kerning first=268 second=1046 amount=-2 -kerning first=299 second=230 amount=-1 -kerning first=1076 second=964 amount=-2 -kerning first=1084 second=45 amount=-2 -kerning first=207 second=242 amount=-1 -kerning first=1080 second=273 amount=-1 -kerning first=321 second=947 amount=-4 -kerning first=8363 second=8249 amount=-3 -kerning first=8378 second=85 amount=-2 -kerning first=902 second=287 amount=-1 -kerning first=84 second=945 amount=-3 -kerning first=944 second=219 amount=-2 -kerning first=247 second=1069 amount=-1 -kerning first=253 second=81 amount=-2 -kerning first=373 second=231 amount=-1 -kerning first=967 second=361 amount=-1 -kerning first=276 second=243 amount=-1 -kerning first=8216 second=196 amount=-3 -kerning first=1049 second=288 amount=-2 +kerning first=1046 second=242 amount=-2 +kerning first=1046 second=243 amount=-2 +kerning first=1046 second=244 amount=-2 +kerning first=1046 second=245 amount=-2 +kerning first=1046 second=246 amount=-2 +kerning first=1046 second=248 amount=-2 +kerning first=1046 second=249 amount=-1 +kerning first=1046 second=250 amount=-1 +kerning first=1046 second=251 amount=-1 +kerning first=1046 second=252 amount=-1 +kerning first=1046 second=253 amount=-1 +kerning first=1046 second=257 amount=-1 +kerning first=1046 second=259 amount=-1 +kerning first=1046 second=261 amount=-1 +kerning first=1046 second=262 amount=-3 +kerning first=1046 second=263 amount=-2 +kerning first=1046 second=266 amount=-3 +kerning first=1046 second=267 amount=-2 +kerning first=1046 second=268 amount=-3 +kerning first=1046 second=269 amount=-2 +kerning first=1046 second=271 amount=-2 +kerning first=1046 second=273 amount=-2 +kerning first=1046 second=275 amount=-2 +kerning first=1046 second=277 amount=-2 +kerning first=1046 second=279 amount=-2 +kerning first=1046 second=281 amount=-2 +kerning first=1046 second=283 amount=-2 +kerning first=1046 second=286 amount=-3 +kerning first=1046 second=288 amount=-3 +kerning first=1046 second=290 amount=-3 +kerning first=1046 second=332 amount=-3 +kerning first=1046 second=333 amount=-2 +kerning first=1046 second=334 amount=-3 +kerning first=1046 second=335 amount=-2 +kerning first=1046 second=336 amount=-3 +kerning first=1046 second=337 amount=-2 +kerning first=1046 second=338 amount=-3 +kerning first=1046 second=339 amount=-2 +kerning first=1046 second=346 amount=-1 +kerning first=1046 second=347 amount=-1 +kerning first=1046 second=350 amount=-1 +kerning first=1046 second=351 amount=-1 +kerning first=1046 second=352 amount=-1 +kerning first=1046 second=353 amount=-1 +kerning first=1046 second=355 amount=-1 +kerning first=1046 second=357 amount=-1 +kerning first=1046 second=359 amount=-1 +kerning first=1046 second=361 amount=-1 +kerning first=1046 second=363 amount=-1 +kerning first=1046 second=365 amount=-1 +kerning first=1046 second=367 amount=-1 +kerning first=1046 second=369 amount=-1 +kerning first=1046 second=371 amount=-1 +kerning first=1046 second=373 amount=-3 +kerning first=1046 second=375 amount=-1 +kerning first=1046 second=920 amount=-3 +kerning first=1046 second=927 amount=-3 +kerning first=1046 second=934 amount=-5 +kerning first=1046 second=940 amount=-2 +kerning first=1046 second=941 amount=-2 +kerning first=1046 second=943 amount=-1 +kerning first=1046 second=945 amount=-2 +kerning first=1046 second=947 amount=-3 +kerning first=1046 second=949 amount=-2 +kerning first=1046 second=950 amount=-2 +kerning first=1046 second=952 amount=-2 +kerning first=1046 second=953 amount=-1 +kerning first=1046 second=957 amount=-3 +kerning first=1046 second=959 amount=-2 +kerning first=1046 second=962 amount=-2 +kerning first=1046 second=963 amount=-2 +kerning first=1046 second=964 amount=-3 +kerning first=1046 second=965 amount=-1 +kerning first=1046 second=966 amount=-2 +kerning first=1046 second=967 amount=-2 +kerning first=1046 second=968 amount=-1 +kerning first=1046 second=969 amount=-2 +kerning first=1046 second=970 amount=-1 +kerning first=1046 second=972 amount=-2 +kerning first=1046 second=973 amount=-1 +kerning first=1046 second=974 amount=-2 kerning first=1046 second=1028 amount=-3 -kerning first=297 second=1263 amount=-1 -kerning first=1085 second=220 amount=-2 -kerning first=906 second=232 amount=-1 -kerning first=1118 second=362 amount=-2 -kerning first=354 second=244 amount=-3 -kerning first=1210 second=289 amount=-1 -kerning first=164 second=962 amount=-1 -kerning first=8217 second=351 amount=-1 -kerning first=8221 second=111 amount=-1 -kerning first=52 second=55 amount=-1 -kerning first=49 second=283 amount=-1 -kerning first=1063 second=233 amount=-1 -kerning first=304 second=333 amount=-1 -kerning first=72 second=217 amount=-2 -kerning first=1087 second=375 amount=-1 -kerning first=330 second=949 amount=-1 -kerning first=92 second=359 amount=-1 -kerning first=95 second=119 amount=-4 -kerning first=1116 second=8211 amount=-3 -kerning first=1224 second=234 amount=-1 -kerning first=375 second=1090 amount=-3 -kerning first=1026 second=246 amount=-1 -kerning first=8218 second=1035 amount=-5 -kerning first=8222 second=291 amount=-1 -kerning first=53 second=230 amount=-1 -kerning first=193 second=360 amount=-2 -kerning first=314 second=45 amount=-2 -kerning first=305 second=964 amount=-3 -kerning first=310 second=273 amount=-2 -kerning first=70 second=947 amount=-4 -kerning first=73 second=372 amount=-5 -kerning first=1084 second=8249 amount=-3 -kerning first=1099 second=85 amount=-2 -kerning first=915 second=335 amount=-1 -kerning first=923 second=97 amount=-1 -kerning first=910 second=1094 amount=-3 -kerning first=239 second=219 amount=-2 -kerning first=356 second=1108 amount=-3 -kerning first=954 second=259 amount=-1 -kerning first=958 second=34 amount=-3 -kerning first=119 second=231 amount=-1 -kerning first=34 second=243 amount=-1 -kerning first=1034 second=196 amount=-1 -kerning first=172 second=373 amount=-4 -kerning first=282 second=1028 amount=-2 -kerning first=287 second=288 amount=-2 -kerning first=51 second=1263 amount=-1 -kerning first=315 second=220 amount=-1 -kerning first=338 second=362 amount=-2 -kerning first=916 second=966 amount=-1 -kerning first=100 second=244 amount=-1 -kerning first=926 second=275 amount=-1 -kerning first=240 second=374 amount=-5 -kerning first=363 second=289 amount=-1 -kerning first=360 second=1033 amount=-1 -kerning first=1298 second=337 amount=-1 -kerning first=38 second=193 amount=-1 -kerning first=1035 second=351 amount=-1 -kerning first=180 second=83 amount=-1 -kerning first=291 second=233 amount=-1 -kerning first=58 second=333 amount=-1 -kerning first=1069 second=967 amount=-1 -kerning first=201 second=245 amount=-1 -kerning first=316 second=375 amount=-1 -kerning first=78 second=949 amount=-1 -kerning first=247 second=84 amount=-5 -kerning first=367 second=234 amount=-1 -kerning first=124 second=334 amount=-2 -kerning first=121 second=1090 amount=-3 -kerning first=1299 second=968 amount=-1 -kerning first=1039 second=291 amount=-1 -kerning first=62 second=273 amount=-1 -kerning first=65 second=45 amount=-2 -kerning first=59 second=964 amount=-3 -kerning first=314 second=8249 amount=-3 -kerning first=325 second=85 amount=-2 -kerning first=8369 second=263 amount=-1 -kerning first=900 second=235 amount=-1 -kerning first=105 second=347 amount=-1 -kerning first=102 second=1108 amount=-1 -kerning first=251 second=34 amount=-3 -kerning first=958 second=8216 amount=-3 -kerning first=125 second=965 amount=-1 -kerning first=40 second=1028 amount=-2 -kerning first=43 second=288 amount=-2 -kerning first=298 second=336 amount=-2 -kerning first=1083 second=171 amount=-3 -kerning first=206 second=350 amount=-1 -kerning first=8377 second=213 amount=-2 -kerning first=86 second=362 amount=-2 -kerning first=1103 second=8217 amount=-3 -kerning first=89 second=122 amount=-2 -kerning first=232 second=47 amount=-1 -kerning first=352 second=197 amount=-1 -kerning first=946 second=87 amount=-5 -kerning first=375 second=99 amount=-1 -kerning first=372 second=337 amount=-3 -kerning first=165 second=221 amount=-5 -kerning first=278 second=111 amount=-1 -kerning first=47 second=233 amount=-2 -kerning first=184 second=1177 amount=-1 -kerning first=8378 second=368 amount=-2 -kerning first=905 second=338 amount=-2 -kerning first=84 second=8211 amount=-4 -kerning first=910 second=100 amount=-4 -kerning first=1168 second=250 amount=-1 -kerning first=1117 second=941 amount=-1 -kerning first=356 second=112 amount=-2 -kerning first=948 second=262 amount=-2 -kerning first=113 second=234 amount=-1 -kerning first=1220 second=187 amount=-1 -kerning first=1207 second=1241 amount=-1 -kerning first=253 second=364 amount=-2 -kerning first=376 second=277 amount=-4 -kerning first=973 second=199 amount=-2 -kerning first=166 second=376 amount=-5 -kerning first=276 second=1035 amount=-5 -kerning first=1049 second=1098 amount=-3 -kerning first=185 second=8212 amount=-2 -kerning first=188 second=1059 amount=-2 +kerning first=1046 second=1029 amount=-1 +kerning first=1046 second=1032 amount=-1 +kerning first=1046 second=1047 amount=-2 +kerning first=1046 second=1054 amount=-3 +kerning first=1046 second=1057 amount=-3 +kerning first=1046 second=1060 amount=-5 +kerning first=1046 second=1063 amount=-1 +kerning first=1046 second=1069 amount=-2 +kerning first=1046 second=1072 amount=-1 +kerning first=1046 second=1077 amount=-2 +kerning first=1046 second=1079 amount=-2 +kerning first=1046 second=1086 amount=-2 +kerning first=1046 second=1089 amount=-2 +kerning first=1046 second=1090 amount=-3 +kerning first=1046 second=1091 amount=-1 +kerning first=1046 second=1092 amount=-2 +kerning first=1046 second=1098 amount=-3 +kerning first=1046 second=1101 amount=-2 +kerning first=1046 second=1104 amount=-2 +kerning first=1046 second=1105 amount=-2 +kerning first=1046 second=1108 amount=-2 +kerning first=1046 second=1109 amount=-1 +kerning first=1046 second=1118 amount=-1 +kerning first=1046 second=1176 amount=-2 +kerning first=1046 second=1177 amount=-2 +kerning first=1046 second=1185 amount=-3 +kerning first=1046 second=1194 amount=-3 +kerning first=1046 second=1195 amount=-2 +kerning first=1046 second=1199 amount=-3 +kerning first=1046 second=1240 amount=-3 +kerning first=1046 second=1241 amount=-2 +kerning first=1046 second=1256 amount=-3 +kerning first=1046 second=1257 amount=-2 +kerning first=1046 second=1263 amount=-1 +kerning first=1046 second=8211 amount=-3 +kerning first=1046 second=8212 amount=-3 +kerning first=1046 second=8249 amount=-3 +kerning first=1046 second=8250 amount=-1 +kerning first=1047 second=65 amount=-1 +kerning first=1047 second=84 amount=-1 +kerning first=1047 second=86 amount=-1 +kerning first=1047 second=87 amount=-1 +kerning first=1047 second=88 amount=-2 +kerning first=1047 second=89 amount=-2 +kerning first=1047 second=193 amount=-1 +kerning first=1047 second=194 amount=-1 +kerning first=1047 second=196 amount=-1 +kerning first=1047 second=197 amount=-1 +kerning first=1047 second=198 amount=-1 +kerning first=1047 second=221 amount=-2 +kerning first=1047 second=256 amount=-1 +kerning first=1047 second=258 amount=-1 +kerning first=1047 second=260 amount=-1 +kerning first=1047 second=354 amount=-1 +kerning first=1047 second=356 amount=-1 +kerning first=1047 second=372 amount=-1 +kerning first=1047 second=374 amount=-2 +kerning first=1047 second=376 amount=-2 +kerning first=1047 second=913 amount=-1 +kerning first=1047 second=916 amount=-1 +kerning first=1047 second=923 amount=-1 +kerning first=1047 second=932 amount=-1 +kerning first=1047 second=933 amount=-2 +kerning first=1047 second=935 amount=-2 +kerning first=1047 second=939 amount=-2 +kerning first=1047 second=955 amount=-1 +kerning first=1047 second=1026 amount=-1 +kerning first=1047 second=1035 amount=-1 +kerning first=1047 second=1040 amount=-1 +kerning first=1047 second=1046 amount=-2 +kerning first=1047 second=1058 amount=-1 +kerning first=1047 second=1061 amount=-2 +kerning first=1047 second=1066 amount=-1 +kerning first=1047 second=1174 amount=-2 +kerning first=1047 second=1184 amount=-1 +kerning first=1047 second=1198 amount=-2 +kerning first=1047 second=1202 amount=-2 +kerning first=1050 second=38 amount=-2 +kerning first=1050 second=45 amount=-4 +kerning first=1050 second=63 amount=-2 +kerning first=1050 second=67 amount=-3 +kerning first=1050 second=71 amount=-3 +kerning first=1050 second=74 amount=-1 +kerning first=1050 second=79 amount=-3 +kerning first=1050 second=81 amount=-3 +kerning first=1050 second=83 amount=-1 +kerning first=1050 second=97 amount=-1 +kerning first=1050 second=99 amount=-2 +kerning first=1050 second=100 amount=-2 +kerning first=1050 second=101 amount=-2 +kerning first=1050 second=102 amount=-2 +kerning first=1050 second=103 amount=-1 +kerning first=1050 second=111 amount=-2 +kerning first=1050 second=113 amount=-2 +kerning first=1050 second=116 amount=-1 +kerning first=1050 second=117 amount=-1 +kerning first=1050 second=118 amount=-3 +kerning first=1050 second=119 amount=-3 +kerning first=1050 second=121 amount=-2 +kerning first=1050 second=171 amount=-3 +kerning first=1050 second=173 amount=-4 +kerning first=1050 second=187 amount=-2 +kerning first=1050 second=199 amount=-3 +kerning first=1050 second=210 amount=-3 +kerning first=1050 second=211 amount=-3 +kerning first=1050 second=212 amount=-3 +kerning first=1050 second=213 amount=-3 +kerning first=1050 second=214 amount=-3 +kerning first=1050 second=216 amount=-3 +kerning first=1050 second=224 amount=-1 +kerning first=1050 second=225 amount=-1 +kerning first=1050 second=226 amount=-1 +kerning first=1050 second=227 amount=-1 +kerning first=1050 second=228 amount=-1 +kerning first=1050 second=229 amount=-1 +kerning first=1050 second=230 amount=-1 +kerning first=1050 second=231 amount=-2 +kerning first=1050 second=232 amount=-2 +kerning first=1050 second=233 amount=-2 +kerning first=1050 second=234 amount=-2 +kerning first=1050 second=235 amount=-2 +kerning first=1050 second=240 amount=-2 +kerning first=1050 second=242 amount=-2 +kerning first=1050 second=243 amount=-2 +kerning first=1050 second=244 amount=-2 +kerning first=1050 second=245 amount=-2 +kerning first=1050 second=246 amount=-2 +kerning first=1050 second=248 amount=-2 +kerning first=1050 second=249 amount=-1 +kerning first=1050 second=250 amount=-1 +kerning first=1050 second=251 amount=-1 +kerning first=1050 second=252 amount=-1 +kerning first=1050 second=253 amount=-2 +kerning first=1050 second=257 amount=-1 +kerning first=1050 second=259 amount=-1 +kerning first=1050 second=261 amount=-1 +kerning first=1050 second=262 amount=-3 +kerning first=1050 second=263 amount=-2 +kerning first=1050 second=266 amount=-3 +kerning first=1050 second=267 amount=-2 +kerning first=1050 second=268 amount=-3 +kerning first=1050 second=269 amount=-2 +kerning first=1050 second=271 amount=-2 +kerning first=1050 second=273 amount=-2 +kerning first=1050 second=275 amount=-2 +kerning first=1050 second=277 amount=-2 +kerning first=1050 second=279 amount=-2 +kerning first=1050 second=281 amount=-2 +kerning first=1050 second=283 amount=-2 +kerning first=1050 second=286 amount=-3 +kerning first=1050 second=287 amount=-1 +kerning first=1050 second=288 amount=-3 +kerning first=1050 second=289 amount=-1 +kerning first=1050 second=290 amount=-3 +kerning first=1050 second=291 amount=-1 +kerning first=1050 second=332 amount=-3 +kerning first=1050 second=333 amount=-2 +kerning first=1050 second=334 amount=-3 +kerning first=1050 second=335 amount=-2 +kerning first=1050 second=336 amount=-3 +kerning first=1050 second=337 amount=-2 +kerning first=1050 second=338 amount=-3 +kerning first=1050 second=339 amount=-2 +kerning first=1050 second=346 amount=-1 +kerning first=1050 second=350 amount=-1 +kerning first=1050 second=352 amount=-1 +kerning first=1050 second=355 amount=-1 +kerning first=1050 second=357 amount=-1 +kerning first=1050 second=359 amount=-1 +kerning first=1050 second=361 amount=-1 +kerning first=1050 second=363 amount=-1 +kerning first=1050 second=365 amount=-1 +kerning first=1050 second=367 amount=-1 +kerning first=1050 second=369 amount=-1 +kerning first=1050 second=371 amount=-1 +kerning first=1050 second=373 amount=-3 +kerning first=1050 second=375 amount=-2 +kerning first=1050 second=920 amount=-3 +kerning first=1050 second=927 amount=-3 +kerning first=1050 second=940 amount=-2 +kerning first=1050 second=941 amount=-2 +kerning first=1050 second=945 amount=-2 +kerning first=1050 second=947 amount=-3 +kerning first=1050 second=949 amount=-2 +kerning first=1050 second=957 amount=-3 +kerning first=1050 second=959 amount=-2 +kerning first=1050 second=962 amount=-2 +kerning first=1050 second=963 amount=-2 +kerning first=1050 second=964 amount=-4 +kerning first=1050 second=965 amount=-1 +kerning first=1050 second=966 amount=-2 +kerning first=1050 second=968 amount=-1 +kerning first=1050 second=972 amount=-2 +kerning first=1050 second=973 amount=-1 +kerning first=1050 second=1028 amount=-3 +kerning first=1050 second=1029 amount=-1 +kerning first=1050 second=1032 amount=-1 +kerning first=1050 second=1054 amount=-3 +kerning first=1050 second=1057 amount=-3 +kerning first=1050 second=1069 amount=-2 +kerning first=1050 second=1072 amount=-1 +kerning first=1050 second=1077 amount=-2 +kerning first=1050 second=1079 amount=-1 +kerning first=1050 second=1086 amount=-2 +kerning first=1050 second=1089 amount=-2 +kerning first=1050 second=1090 amount=-4 +kerning first=1050 second=1091 amount=-2 +kerning first=1050 second=1092 amount=-2 +kerning first=1050 second=1098 amount=-4 +kerning first=1050 second=1101 amount=-1 +kerning first=1050 second=1104 amount=-2 +kerning first=1050 second=1105 amount=-2 +kerning first=1050 second=1108 amount=-2 +kerning first=1050 second=1118 amount=-2 +kerning first=1050 second=1176 amount=-2 +kerning first=1050 second=1177 amount=-1 +kerning first=1050 second=1185 amount=-4 +kerning first=1050 second=1194 amount=-3 +kerning first=1050 second=1195 amount=-2 +kerning first=1050 second=1199 amount=-3 +kerning first=1050 second=1240 amount=-3 +kerning first=1050 second=1241 amount=-2 +kerning first=1050 second=1256 amount=-3 +kerning first=1050 second=1257 amount=-2 +kerning first=1050 second=1263 amount=-2 +kerning first=1050 second=8211 amount=-4 +kerning first=1050 second=8212 amount=-4 +kerning first=1050 second=8249 amount=-3 +kerning first=1050 second=8250 amount=-2 +kerning first=1054 second=44 amount=-1 +kerning first=1054 second=46 amount=-1 +kerning first=1054 second=47 amount=-1 +kerning first=1054 second=65 amount=-2 +kerning first=1054 second=84 amount=-2 +kerning first=1054 second=86 amount=-2 +kerning first=1054 second=87 amount=-2 +kerning first=1054 second=88 amount=-3 +kerning first=1054 second=89 amount=-3 +kerning first=1054 second=90 amount=-1 +kerning first=1054 second=193 amount=-2 +kerning first=1054 second=194 amount=-2 +kerning first=1054 second=196 amount=-2 +kerning first=1054 second=197 amount=-2 +kerning first=1054 second=198 amount=-2 +kerning first=1054 second=221 amount=-3 +kerning first=1054 second=256 amount=-2 +kerning first=1054 second=258 amount=-2 +kerning first=1054 second=260 amount=-2 +kerning first=1054 second=354 amount=-2 +kerning first=1054 second=356 amount=-2 +kerning first=1054 second=372 amount=-2 +kerning first=1054 second=374 amount=-3 +kerning first=1054 second=376 amount=-3 +kerning first=1054 second=377 amount=-1 +kerning first=1054 second=379 amount=-1 +kerning first=1054 second=381 amount=-1 +kerning first=1054 second=913 amount=-2 +kerning first=1054 second=916 amount=-2 +kerning first=1054 second=918 amount=-1 +kerning first=1054 second=923 amount=-2 +kerning first=1054 second=932 amount=-2 +kerning first=1054 second=933 amount=-3 +kerning first=1054 second=935 amount=-3 +kerning first=1054 second=939 amount=-3 +kerning first=1054 second=955 amount=-2 +kerning first=1054 second=967 amount=-1 +kerning first=1054 second=1026 amount=-2 +kerning first=1054 second=1033 amount=-1 +kerning first=1054 second=1035 amount=-2 +kerning first=1054 second=1040 amount=-2 +kerning first=1054 second=1044 amount=-1 +kerning first=1054 second=1046 amount=-3 +kerning first=1054 second=1051 amount=-1 +kerning first=1054 second=1058 amount=-2 +kerning first=1054 second=1061 amount=-3 +kerning first=1054 second=1066 amount=-2 +kerning first=1054 second=1071 amount=-1 +kerning first=1054 second=1174 amount=-3 +kerning first=1054 second=1184 amount=-2 +kerning first=1054 second=1198 amount=-3 +kerning first=1054 second=1202 amount=-3 +kerning first=1054 second=1298 amount=-1 +kerning first=1054 second=8218 amount=-1 +kerning first=1054 second=8222 amount=-1 +kerning first=1054 second=8230 amount=-1 +kerning first=1056 second=44 amount=-4 +kerning first=1056 second=45 amount=-1 +kerning first=1056 second=46 amount=-4 +kerning first=1056 second=47 amount=-3 +kerning first=1056 second=65 amount=-4 +kerning first=1056 second=74 amount=-3 +kerning first=1056 second=86 amount=-1 +kerning first=1056 second=87 amount=-1 +kerning first=1056 second=88 amount=-2 +kerning first=1056 second=89 amount=-2 +kerning first=1056 second=90 amount=-1 +kerning first=1056 second=97 amount=-1 +kerning first=1056 second=103 amount=-1 +kerning first=1056 second=173 amount=-1 +kerning first=1056 second=193 amount=-4 +kerning first=1056 second=194 amount=-4 +kerning first=1056 second=196 amount=-4 +kerning first=1056 second=197 amount=-4 +kerning first=1056 second=198 amount=-4 +kerning first=1056 second=221 amount=-2 +kerning first=1056 second=224 amount=-1 +kerning first=1056 second=225 amount=-1 +kerning first=1056 second=226 amount=-1 +kerning first=1056 second=227 amount=-1 +kerning first=1056 second=228 amount=-1 +kerning first=1056 second=229 amount=-1 +kerning first=1056 second=230 amount=-1 +kerning first=1056 second=256 amount=-4 +kerning first=1056 second=257 amount=-1 +kerning first=1056 second=258 amount=-4 +kerning first=1056 second=259 amount=-1 +kerning first=1056 second=260 amount=-4 +kerning first=1056 second=261 amount=-1 +kerning first=1056 second=287 amount=-1 +kerning first=1056 second=289 amount=-1 +kerning first=1056 second=291 amount=-1 +kerning first=1056 second=372 amount=-1 +kerning first=1056 second=374 amount=-2 +kerning first=1056 second=376 amount=-2 +kerning first=1056 second=377 amount=-1 +kerning first=1056 second=379 amount=-1 +kerning first=1056 second=381 amount=-1 +kerning first=1056 second=913 amount=-4 +kerning first=1056 second=916 amount=-4 +kerning first=1056 second=918 amount=-1 +kerning first=1056 second=923 amount=-4 +kerning first=1056 second=933 amount=-2 +kerning first=1056 second=935 amount=-2 +kerning first=1056 second=939 amount=-2 +kerning first=1056 second=950 amount=-1 +kerning first=1056 second=955 amount=-3 +kerning first=1056 second=961 amount=-1 +kerning first=1056 second=1032 amount=-3 +kerning first=1056 second=1040 amount=-4 +kerning first=1056 second=1046 amount=-2 +kerning first=1056 second=1061 amount=-2 +kerning first=1056 second=1072 amount=-1 +kerning first=1056 second=1174 amount=-2 +kerning first=1056 second=1198 amount=-2 +kerning first=1056 second=1202 amount=-2 +kerning first=1056 second=8211 amount=-1 +kerning first=1056 second=8212 amount=-1 +kerning first=1056 second=8218 amount=-4 +kerning first=1056 second=8222 amount=-4 +kerning first=1056 second=8230 amount=-4 +kerning first=1057 second=44 amount=-1 +kerning first=1057 second=45 amount=-1 +kerning first=1057 second=46 amount=-1 +kerning first=1057 second=47 amount=-1 +kerning first=1057 second=65 amount=-1 +kerning first=1057 second=84 amount=-1 +kerning first=1057 second=86 amount=-1 +kerning first=1057 second=87 amount=-1 +kerning first=1057 second=88 amount=-2 +kerning first=1057 second=89 amount=-2 +kerning first=1057 second=90 amount=-1 +kerning first=1057 second=106 amount=1 +kerning first=1057 second=171 amount=-1 +kerning first=1057 second=173 amount=-1 +kerning first=1057 second=193 amount=-1 +kerning first=1057 second=194 amount=-1 +kerning first=1057 second=196 amount=-1 +kerning first=1057 second=197 amount=-1 +kerning first=1057 second=198 amount=-1 +kerning first=1057 second=221 amount=-2 +kerning first=1057 second=256 amount=-1 +kerning first=1057 second=258 amount=-1 +kerning first=1057 second=260 amount=-1 +kerning first=1057 second=354 amount=-1 +kerning first=1057 second=356 amount=-1 +kerning first=1057 second=372 amount=-1 +kerning first=1057 second=374 amount=-2 +kerning first=1057 second=376 amount=-2 +kerning first=1057 second=377 amount=-1 +kerning first=1057 second=379 amount=-1 +kerning first=1057 second=381 amount=-1 +kerning first=1057 second=913 amount=-1 +kerning first=1057 second=916 amount=-1 +kerning first=1057 second=918 amount=-1 +kerning first=1057 second=923 amount=-1 +kerning first=1057 second=932 amount=-1 +kerning first=1057 second=933 amount=-2 +kerning first=1057 second=935 amount=-2 +kerning first=1057 second=939 amount=-2 +kerning first=1057 second=1026 amount=-1 +kerning first=1057 second=1033 amount=-1 +kerning first=1057 second=1035 amount=-1 +kerning first=1057 second=1040 amount=-1 +kerning first=1057 second=1044 amount=-1 +kerning first=1057 second=1046 amount=-2 +kerning first=1057 second=1051 amount=-1 +kerning first=1057 second=1058 amount=-1 +kerning first=1057 second=1061 amount=-2 +kerning first=1057 second=1066 amount=-1 +kerning first=1057 second=1069 amount=1 +kerning first=1057 second=1112 amount=1 +kerning first=1057 second=1174 amount=-2 +kerning first=1057 second=1176 amount=1 +kerning first=1057 second=1184 amount=-1 +kerning first=1057 second=1198 amount=-2 +kerning first=1057 second=1202 amount=-2 +kerning first=1057 second=1298 amount=-1 +kerning first=1057 second=8211 amount=-1 +kerning first=1057 second=8212 amount=-1 +kerning first=1057 second=8218 amount=-1 +kerning first=1057 second=8222 amount=-1 +kerning first=1057 second=8230 amount=-1 +kerning first=1057 second=8249 amount=-1 +kerning first=1058 second=44 amount=-3 +kerning first=1058 second=45 amount=-4 +kerning first=1058 second=46 amount=-3 +kerning first=1058 second=47 amount=-4 +kerning first=1058 second=110 amount=-2 +kerning first=1058 second=65 amount=-6 +kerning first=1058 second=67 amount=-1 +kerning first=1058 second=114 amount=-2 +kerning first=1058 second=71 amount=-1 +kerning first=1058 second=74 amount=-5 +kerning first=1058 second=79 amount=-1 +kerning first=1058 second=81 amount=-1 +kerning first=1058 second=83 amount=-1 +kerning first=1058 second=97 amount=-2 +kerning first=1058 second=99 amount=-3 +kerning first=1058 second=100 amount=-3 +kerning first=1058 second=101 amount=-3 +kerning first=1058 second=103 amount=-2 +kerning first=1058 second=109 amount=-2 +kerning first=1058 second=111 amount=-3 +kerning first=1058 second=112 amount=-2 +kerning first=1058 second=113 amount=-3 +kerning first=1058 second=115 amount=-3 +kerning first=1058 second=117 amount=-2 +kerning first=1058 second=118 amount=-2 +kerning first=1058 second=119 amount=-2 +kerning first=1058 second=120 amount=-1 +kerning first=1058 second=121 amount=-2 +kerning first=1058 second=122 amount=-1 +kerning first=1058 second=171 amount=-3 +kerning first=1058 second=173 amount=-4 +kerning first=1058 second=187 amount=-1 +kerning first=1058 second=193 amount=-6 +kerning first=1058 second=194 amount=-6 +kerning first=1058 second=196 amount=-6 +kerning first=1058 second=197 amount=-6 +kerning first=1058 second=198 amount=-6 +kerning first=1058 second=199 amount=-1 +kerning first=1058 second=210 amount=-1 +kerning first=1058 second=211 amount=-1 +kerning first=1058 second=212 amount=-1 +kerning first=1058 second=213 amount=-1 +kerning first=1058 second=214 amount=-1 +kerning first=1058 second=216 amount=-1 +kerning first=1058 second=224 amount=-2 +kerning first=1058 second=225 amount=-2 +kerning first=1058 second=226 amount=-2 +kerning first=1058 second=227 amount=-2 +kerning first=1058 second=228 amount=-2 +kerning first=1058 second=229 amount=-2 +kerning first=1058 second=230 amount=-2 +kerning first=1058 second=231 amount=-3 +kerning first=1058 second=232 amount=-3 +kerning first=1058 second=233 amount=-3 +kerning first=1058 second=234 amount=-3 +kerning first=1058 second=235 amount=-3 +kerning first=1058 second=240 amount=-3 +kerning first=1058 second=241 amount=-2 +kerning first=1058 second=242 amount=-3 +kerning first=1058 second=243 amount=-3 +kerning first=1058 second=244 amount=-3 +kerning first=1058 second=245 amount=-3 +kerning first=1058 second=246 amount=-3 +kerning first=1058 second=248 amount=-3 +kerning first=1058 second=249 amount=-2 +kerning first=1058 second=250 amount=-2 +kerning first=1058 second=251 amount=-2 +kerning first=1058 second=252 amount=-2 +kerning first=1058 second=253 amount=-2 +kerning first=1058 second=256 amount=-6 +kerning first=1058 second=257 amount=-2 +kerning first=1058 second=258 amount=-6 +kerning first=1058 second=259 amount=-2 +kerning first=1058 second=260 amount=-6 +kerning first=1058 second=261 amount=-2 +kerning first=1058 second=262 amount=-1 +kerning first=1058 second=263 amount=-3 +kerning first=1058 second=266 amount=-1 +kerning first=1058 second=267 amount=-3 +kerning first=1058 second=268 amount=-1 +kerning first=1058 second=269 amount=-3 +kerning first=1058 second=271 amount=-3 +kerning first=1058 second=273 amount=-3 +kerning first=1058 second=275 amount=-3 +kerning first=1058 second=277 amount=-3 +kerning first=1058 second=279 amount=-3 +kerning first=1058 second=281 amount=-3 +kerning first=1058 second=283 amount=-3 +kerning first=1058 second=286 amount=-1 +kerning first=1058 second=287 amount=-2 +kerning first=1058 second=288 amount=-1 +kerning first=1058 second=289 amount=-2 +kerning first=1058 second=290 amount=-1 +kerning first=1058 second=291 amount=-2 +kerning first=1058 second=324 amount=-2 +kerning first=1058 second=326 amount=-2 +kerning first=1058 second=328 amount=-2 +kerning first=1058 second=331 amount=-2 +kerning first=1058 second=332 amount=-1 +kerning first=1058 second=333 amount=-3 +kerning first=1058 second=334 amount=-1 +kerning first=1058 second=335 amount=-3 +kerning first=1058 second=336 amount=-1 +kerning first=1058 second=337 amount=-3 +kerning first=1058 second=338 amount=-1 +kerning first=1058 second=339 amount=-3 +kerning first=1058 second=341 amount=-2 +kerning first=1058 second=343 amount=-2 +kerning first=1058 second=345 amount=-2 +kerning first=1058 second=346 amount=-1 +kerning first=1058 second=347 amount=-3 +kerning first=1058 second=350 amount=-1 +kerning first=1058 second=351 amount=-3 +kerning first=1058 second=352 amount=-1 +kerning first=1058 second=353 amount=-3 +kerning first=1058 second=361 amount=-2 +kerning first=1058 second=363 amount=-2 +kerning first=1058 second=365 amount=-2 +kerning first=1058 second=367 amount=-2 +kerning first=1058 second=369 amount=-2 +kerning first=1058 second=371 amount=-2 +kerning first=1058 second=373 amount=-2 +kerning first=1058 second=375 amount=-2 +kerning first=1058 second=378 amount=-1 +kerning first=1058 second=380 amount=-1 +kerning first=1058 second=382 amount=-1 +kerning first=1058 second=913 amount=-6 +kerning first=1058 second=916 amount=-6 +kerning first=1058 second=920 amount=-1 +kerning first=1058 second=923 amount=-6 +kerning first=1058 second=927 amount=-1 +kerning first=1058 second=940 amount=-3 +kerning first=1058 second=941 amount=-3 +kerning first=1058 second=942 amount=-2 +kerning first=1058 second=945 amount=-3 +kerning first=1058 second=947 amount=-2 +kerning first=1058 second=949 amount=-3 +kerning first=1058 second=951 amount=-2 +kerning first=1058 second=954 amount=-2 +kerning first=1058 second=957 amount=-2 +kerning first=1058 second=959 amount=-3 +kerning first=1058 second=962 amount=-3 +kerning first=1058 second=963 amount=-3 +kerning first=1058 second=965 amount=-2 +kerning first=1058 second=966 amount=-3 +kerning first=1058 second=968 amount=-2 +kerning first=1058 second=972 amount=-3 +kerning first=1058 second=973 amount=-2 +kerning first=1058 second=1028 amount=-1 +kerning first=1058 second=1029 amount=-1 +kerning first=1058 second=1032 amount=-5 +kerning first=1058 second=1033 amount=-4 +kerning first=1058 second=1040 amount=-6 +kerning first=1058 second=1044 amount=-4 +kerning first=1058 second=1051 amount=-4 +kerning first=1058 second=1054 amount=-1 +kerning first=1058 second=1057 amount=-1 +kerning first=1058 second=1072 amount=-2 +kerning first=1058 second=1074 amount=-2 +kerning first=1058 second=1075 amount=-2 +kerning first=1058 second=1077 amount=-3 +kerning first=1058 second=1078 amount=-1 +kerning first=1058 second=1079 amount=-2 +kerning first=1058 second=1080 amount=-2 +kerning first=1058 second=1081 amount=-2 +kerning first=1058 second=1082 amount=-2 +kerning first=1058 second=1084 amount=-2 +kerning first=1058 second=1085 amount=-2 +kerning first=1058 second=1086 amount=-3 +kerning first=1058 second=1087 amount=-2 +kerning first=1058 second=1088 amount=-2 +kerning first=1058 second=1089 amount=-3 +kerning first=1058 second=1091 amount=-2 +kerning first=1058 second=1092 amount=-3 +kerning first=1058 second=1093 amount=-1 +kerning first=1058 second=1094 amount=-2 +kerning first=1058 second=1096 amount=-2 +kerning first=1058 second=1097 amount=-2 +kerning first=1058 second=1099 amount=-2 +kerning first=1058 second=1100 amount=-2 +kerning first=1058 second=1101 amount=-2 +kerning first=1058 second=1102 amount=-2 +kerning first=1058 second=1104 amount=-3 +kerning first=1058 second=1105 amount=-3 +kerning first=1058 second=1107 amount=-2 +kerning first=1058 second=1108 amount=-3 +kerning first=1058 second=1109 amount=-3 +kerning first=1058 second=1114 amount=-2 +kerning first=1058 second=1116 amount=-2 +kerning first=1058 second=1117 amount=-2 +kerning first=1058 second=1118 amount=-2 +kerning first=1058 second=1119 amount=-2 +kerning first=1058 second=1169 amount=-2 +kerning first=1058 second=1175 amount=-1 +kerning first=1058 second=1177 amount=-2 +kerning first=1058 second=1179 amount=-2 +kerning first=1058 second=1187 amount=-2 +kerning first=1058 second=1194 amount=-1 +kerning first=1058 second=1195 amount=-3 +kerning first=1058 second=1199 amount=-2 +kerning first=1058 second=1203 amount=-1 +kerning first=1058 second=1220 amount=-2 +kerning first=1058 second=1224 amount=-2 +kerning first=1058 second=1240 amount=-1 +kerning first=1058 second=1241 amount=-3 +kerning first=1058 second=1256 amount=-1 +kerning first=1058 second=1257 amount=-3 +kerning first=1058 second=1263 amount=-2 +kerning first=1058 second=1298 amount=-4 +kerning first=1058 second=8211 amount=-4 +kerning first=1058 second=8212 amount=-4 +kerning first=1058 second=8218 amount=-3 +kerning first=1058 second=8222 amount=-3 +kerning first=1058 second=8230 amount=-3 +kerning first=1058 second=8249 amount=-3 +kerning first=1058 second=8250 amount=-1 +kerning first=1059 second=44 amount=-1 +kerning first=1059 second=46 amount=-1 +kerning first=1059 second=65 amount=-2 +kerning first=1059 second=193 amount=-2 +kerning first=1059 second=194 amount=-2 +kerning first=1059 second=196 amount=-2 +kerning first=1059 second=197 amount=-2 +kerning first=1059 second=198 amount=-2 +kerning first=1059 second=256 amount=-2 +kerning first=1059 second=258 amount=-2 +kerning first=1059 second=260 amount=-2 +kerning first=1059 second=913 amount=-2 +kerning first=1059 second=916 amount=-2 +kerning first=1059 second=923 amount=-2 +kerning first=1059 second=1033 amount=-1 +kerning first=1059 second=1040 amount=-2 +kerning first=1059 second=1044 amount=-1 +kerning first=1059 second=1051 amount=-1 +kerning first=1059 second=1298 amount=-1 +kerning first=1059 second=8218 amount=-1 +kerning first=1059 second=8222 amount=-1 +kerning first=1059 second=8230 amount=-1 +kerning first=1060 second=84 amount=-3 +kerning first=1060 second=88 amount=-5 +kerning first=1060 second=354 amount=-3 +kerning first=1060 second=356 amount=-3 +kerning first=1060 second=932 amount=-3 +kerning first=1060 second=935 amount=-5 +kerning first=1060 second=1026 amount=-3 +kerning first=1060 second=1033 amount=-3 +kerning first=1060 second=1035 amount=-3 +kerning first=1060 second=1044 amount=-3 +kerning first=1060 second=1046 amount=-5 +kerning first=1060 second=1051 amount=-3 +kerning first=1060 second=1058 amount=-3 +kerning first=1060 second=1061 amount=-5 +kerning first=1060 second=1066 amount=-3 +kerning first=1060 second=1174 amount=-5 +kerning first=1060 second=1184 amount=-3 +kerning first=1060 second=1202 amount=-5 +kerning first=1060 second=1298 amount=-3 +kerning first=1061 second=38 amount=-2 +kerning first=1061 second=45 amount=-3 +kerning first=1061 second=63 amount=-2 +kerning first=1061 second=67 amount=-3 +kerning first=1061 second=71 amount=-3 +kerning first=1061 second=74 amount=-1 +kerning first=1061 second=79 amount=-3 +kerning first=1061 second=81 amount=-3 +kerning first=1061 second=83 amount=-1 +kerning first=1061 second=97 amount=-1 +kerning first=1061 second=99 amount=-2 +kerning first=1061 second=100 amount=-2 +kerning first=1061 second=101 amount=-2 +kerning first=1061 second=111 amount=-2 +kerning first=1061 second=113 amount=-2 +kerning first=1061 second=115 amount=-1 +kerning first=1061 second=116 amount=-1 +kerning first=1061 second=117 amount=-1 +kerning first=1061 second=118 amount=-3 +kerning first=1061 second=119 amount=-3 +kerning first=1061 second=121 amount=-1 +kerning first=1061 second=171 amount=-3 +kerning first=1061 second=173 amount=-3 +kerning first=1061 second=187 amount=-1 +kerning first=1061 second=199 amount=-3 +kerning first=1061 second=210 amount=-3 +kerning first=1061 second=211 amount=-3 +kerning first=1061 second=212 amount=-3 +kerning first=1061 second=213 amount=-3 +kerning first=1061 second=214 amount=-3 +kerning first=1061 second=216 amount=-3 +kerning first=1061 second=224 amount=-1 +kerning first=1061 second=225 amount=-1 +kerning first=1061 second=226 amount=-1 +kerning first=1061 second=227 amount=-1 +kerning first=1061 second=228 amount=-1 +kerning first=1061 second=229 amount=-1 +kerning first=1061 second=230 amount=-1 +kerning first=1061 second=231 amount=-2 +kerning first=1061 second=232 amount=-2 +kerning first=1061 second=233 amount=-2 +kerning first=1061 second=234 amount=-2 +kerning first=1061 second=235 amount=-2 +kerning first=1061 second=240 amount=-2 +kerning first=1061 second=242 amount=-2 +kerning first=1061 second=243 amount=-2 +kerning first=1061 second=244 amount=-2 +kerning first=1061 second=245 amount=-2 +kerning first=1061 second=246 amount=-2 +kerning first=1061 second=248 amount=-2 +kerning first=1061 second=249 amount=-1 +kerning first=1061 second=250 amount=-1 +kerning first=1061 second=251 amount=-1 +kerning first=1061 second=252 amount=-1 +kerning first=1061 second=253 amount=-1 +kerning first=1061 second=257 amount=-1 +kerning first=1061 second=259 amount=-1 +kerning first=1061 second=261 amount=-1 +kerning first=1061 second=262 amount=-3 +kerning first=1061 second=263 amount=-2 +kerning first=1061 second=266 amount=-3 +kerning first=1061 second=267 amount=-2 +kerning first=1061 second=268 amount=-3 +kerning first=1061 second=269 amount=-2 +kerning first=1061 second=271 amount=-2 +kerning first=1061 second=273 amount=-2 +kerning first=1061 second=275 amount=-2 +kerning first=1061 second=277 amount=-2 +kerning first=1061 second=279 amount=-2 +kerning first=1061 second=281 amount=-2 +kerning first=1061 second=283 amount=-2 +kerning first=1061 second=286 amount=-3 +kerning first=1061 second=288 amount=-3 +kerning first=1061 second=290 amount=-3 +kerning first=1061 second=332 amount=-3 +kerning first=1061 second=333 amount=-2 +kerning first=1061 second=334 amount=-3 +kerning first=1061 second=335 amount=-2 +kerning first=1061 second=336 amount=-3 +kerning first=1061 second=337 amount=-2 +kerning first=1061 second=338 amount=-3 +kerning first=1061 second=339 amount=-2 +kerning first=1061 second=346 amount=-1 +kerning first=1061 second=347 amount=-1 +kerning first=1061 second=350 amount=-1 +kerning first=1061 second=351 amount=-1 +kerning first=1061 second=352 amount=-1 +kerning first=1061 second=353 amount=-1 +kerning first=1061 second=355 amount=-1 +kerning first=1061 second=357 amount=-1 +kerning first=1061 second=359 amount=-1 +kerning first=1061 second=361 amount=-1 +kerning first=1061 second=363 amount=-1 +kerning first=1061 second=365 amount=-1 +kerning first=1061 second=367 amount=-1 +kerning first=1061 second=369 amount=-1 +kerning first=1061 second=371 amount=-1 +kerning first=1061 second=373 amount=-3 +kerning first=1061 second=375 amount=-1 +kerning first=1061 second=920 amount=-3 +kerning first=1061 second=927 amount=-3 +kerning first=1061 second=934 amount=-5 +kerning first=1061 second=940 amount=-2 +kerning first=1061 second=941 amount=-2 +kerning first=1061 second=943 amount=-1 +kerning first=1061 second=945 amount=-2 +kerning first=1061 second=947 amount=-3 +kerning first=1061 second=949 amount=-2 +kerning first=1061 second=950 amount=-2 +kerning first=1061 second=952 amount=-2 +kerning first=1061 second=953 amount=-1 +kerning first=1061 second=957 amount=-3 +kerning first=1061 second=959 amount=-2 +kerning first=1061 second=962 amount=-2 +kerning first=1061 second=963 amount=-2 +kerning first=1061 second=964 amount=-3 +kerning first=1061 second=965 amount=-1 +kerning first=1061 second=966 amount=-2 +kerning first=1061 second=967 amount=-2 +kerning first=1061 second=968 amount=-1 +kerning first=1061 second=969 amount=-2 +kerning first=1061 second=970 amount=-1 +kerning first=1061 second=972 amount=-2 +kerning first=1061 second=973 amount=-1 +kerning first=1061 second=974 amount=-2 +kerning first=1061 second=1028 amount=-3 +kerning first=1061 second=1029 amount=-1 +kerning first=1061 second=1032 amount=-1 +kerning first=1061 second=1047 amount=-2 +kerning first=1061 second=1054 amount=-3 +kerning first=1061 second=1057 amount=-3 +kerning first=1061 second=1060 amount=-5 +kerning first=1061 second=1063 amount=-1 +kerning first=1061 second=1069 amount=-2 +kerning first=1061 second=1072 amount=-1 +kerning first=1061 second=1077 amount=-2 +kerning first=1061 second=1079 amount=-2 +kerning first=1061 second=1086 amount=-2 +kerning first=1061 second=1089 amount=-2 +kerning first=1061 second=1090 amount=-3 +kerning first=1061 second=1091 amount=-1 +kerning first=1061 second=1092 amount=-2 +kerning first=1061 second=1098 amount=-3 +kerning first=1061 second=1101 amount=-2 +kerning first=1061 second=1104 amount=-2 +kerning first=1061 second=1105 amount=-2 +kerning first=1061 second=1108 amount=-2 +kerning first=1061 second=1109 amount=-1 +kerning first=1061 second=1118 amount=-1 +kerning first=1061 second=1176 amount=-2 +kerning first=1061 second=1177 amount=-2 +kerning first=1061 second=1185 amount=-3 +kerning first=1061 second=1194 amount=-3 +kerning first=1061 second=1195 amount=-2 +kerning first=1061 second=1199 amount=-3 +kerning first=1061 second=1240 amount=-3 +kerning first=1061 second=1241 amount=-2 +kerning first=1061 second=1256 amount=-3 +kerning first=1061 second=1257 amount=-2 +kerning first=1061 second=1263 amount=-1 +kerning first=1061 second=8211 amount=-3 +kerning first=1061 second=8212 amount=-3 +kerning first=1061 second=8249 amount=-3 +kerning first=1061 second=8250 amount=-1 +kerning first=1062 second=34 amount=-2 +kerning first=1062 second=39 amount=-2 +kerning first=1062 second=45 amount=-2 +kerning first=1062 second=63 amount=-2 +kerning first=1062 second=67 amount=-1 +kerning first=1062 second=71 amount=-1 +kerning first=1062 second=79 amount=-1 +kerning first=1062 second=81 amount=-1 +kerning first=1062 second=84 amount=-2 +kerning first=1062 second=85 amount=-1 +kerning first=1062 second=89 amount=-2 +kerning first=1062 second=99 amount=-1 +kerning first=1062 second=100 amount=-1 +kerning first=1062 second=101 amount=-1 +kerning first=1062 second=106 amount=7 +kerning first=1062 second=111 amount=-1 +kerning first=1062 second=113 amount=-1 +kerning first=1062 second=118 amount=-2 +kerning first=1062 second=119 amount=-2 +kerning first=1062 second=171 amount=-1 +kerning first=1062 second=173 amount=-2 +kerning first=1062 second=199 amount=-1 +kerning first=1062 second=210 amount=-1 +kerning first=1062 second=211 amount=-1 +kerning first=1062 second=212 amount=-1 +kerning first=1062 second=213 amount=-1 +kerning first=1062 second=214 amount=-1 +kerning first=1062 second=216 amount=-1 +kerning first=1062 second=217 amount=-1 +kerning first=1062 second=218 amount=-1 +kerning first=1062 second=219 amount=-1 +kerning first=1062 second=220 amount=-1 +kerning first=1062 second=221 amount=-2 +kerning first=1062 second=231 amount=-1 +kerning first=1062 second=232 amount=-1 +kerning first=1062 second=233 amount=-1 +kerning first=1062 second=234 amount=-1 +kerning first=1062 second=235 amount=-1 +kerning first=1062 second=240 amount=-1 +kerning first=1062 second=242 amount=-1 +kerning first=1062 second=243 amount=-1 +kerning first=1062 second=244 amount=-1 +kerning first=1062 second=245 amount=-1 +kerning first=1062 second=246 amount=-1 +kerning first=1062 second=248 amount=-1 +kerning first=1062 second=262 amount=-1 +kerning first=1062 second=263 amount=-1 +kerning first=1062 second=266 amount=-1 +kerning first=1062 second=267 amount=-1 +kerning first=1062 second=268 amount=-1 +kerning first=1062 second=269 amount=-1 +kerning first=1062 second=271 amount=-1 +kerning first=1062 second=273 amount=-1 +kerning first=1062 second=275 amount=-1 +kerning first=1062 second=277 amount=-1 +kerning first=1062 second=279 amount=-1 +kerning first=1062 second=281 amount=-1 +kerning first=1062 second=283 amount=-1 +kerning first=1062 second=286 amount=-1 +kerning first=1062 second=288 amount=-1 +kerning first=1062 second=290 amount=-1 +kerning first=1062 second=332 amount=-1 +kerning first=1062 second=333 amount=-1 +kerning first=1062 second=334 amount=-1 +kerning first=1062 second=335 amount=-1 +kerning first=1062 second=336 amount=-1 +kerning first=1062 second=337 amount=-1 +kerning first=1062 second=338 amount=-1 kerning first=1062 second=339 amount=-1 -kerning first=1065 second=101 amount=-1 -kerning first=65 second=8249 amount=-3 -kerning first=74 second=85 amount=-2 -kerning first=1094 second=263 amount=-1 -kerning first=214 second=235 amount=-1 -kerning first=952 second=212 amount=-2 -kerning first=1257 second=102 amount=-1 -kerning first=251 second=8216 amount=-3 -kerning first=260 second=74 amount=-1 -kerning first=971 second=1118 amount=-1 -kerning first=164 second=8250 amount=-1 -kerning first=52 second=336 amount=-2 -kerning first=1063 second=970 amount=-1 -kerning first=195 second=248 amount=-1 -kerning first=313 second=171 amount=-3 -kerning first=330 second=8217 amount=-3 -kerning first=235 second=1076 amount=-1 -kerning first=950 second=1185 amount=-3 -kerning first=118 second=337 amount=-1 -kerning first=121 second=99 amount=-1 -kerning first=258 second=940 amount=-1 -kerning first=381 second=379 amount=1 -kerning first=36 second=111 amount=-1 -kerning first=1026 second=1038 amount=-2 -kerning first=175 second=261 amount=-1 -kerning first=199 second=198 amount=-1 -kerning first=8361 second=268 amount=-2 -kerning first=1099 second=368 amount=-2 -kerning first=365 second=187 amount=-1 -kerning first=951 second=8220 amount=-3 -kerning first=122 second=277 amount=-1 -kerning first=37 second=291 amount=-1 -kerning first=179 second=211 amount=-2 -kerning first=287 second=1098 amount=-3 -kerning first=8230 second=973 amount=-1 -kerning first=200 second=353 amount=-1 -kerning first=203 second=113 amount=-1 -kerning first=318 second=263 amount=-1 -kerning first=8365 second=216 amount=-2 -kerning first=80 second=365 amount=-1 -kerning first=1187 second=240 amount=-1 -kerning first=960 second=943 amount=-1 -kerning first=963 second=252 amount=-1 -kerning first=126 second=224 amount=-1 -kerning first=1298 second=1256 amount=-2 -kerning first=268 second=354 amount=-1 -kerning first=1241 second=39 amount=-1 -kerning first=177 second=1184 amount=-5 -kerning first=180 second=366 amount=-2 -kerning first=296 second=279 amount=-1 -kerning first=291 second=970 amount=-1 -kerning first=64 second=171 amount=-3 -kerning first=8363 second=1195 amount=-1 -kerning first=8366 second=371 amount=-1 -kerning first=902 second=103 amount=-1 -kerning first=78 second=8217 amount=-3 -kerning first=247 second=367 amount=-1 -kerning first=244 second=1185 amount=-1 -kerning first=1039 second=1101 amount=-1 -kerning first=300 second=226 amount=-1 -kerning first=68 second=88 amount=-3 -kerning first=1081 second=268 amount=-2 -kerning first=325 second=368 amount=-2 -kerning first=8369 second=1069 amount=-1 -kerning first=900 second=972 amount=-1 -kerning first=903 second=281 amount=-1 -kerning first=88 second=250 amount=-1 -kerning first=354 second=65 amount=-6 -kerning first=108 second=1241 amount=-1 -kerning first=245 second=8220 amount=-1 -kerning first=374 second=227 amount=-4 -kerning first=968 second=357 amount=-1 -kerning first=971 second=117 amount=-1 -kerning first=161 second=1079 amount=-1 -kerning first=167 second=89 amount=-5 -kerning first=43 second=1098 amount=-3 -kerning first=49 second=101 amount=-1 -kerning first=189 second=251 amount=-1 -kerning first=66 second=955 amount=-1 -kerning first=69 second=263 amount=-1 -kerning first=1087 second=216 amount=-2 -kerning first=323 second=8221 amount=-3 -kerning first=1170 second=118 amount=-4 -kerning first=352 second=916 amount=-1 -kerning first=946 second=370 amount=-2 -kerning first=115 second=102 amount=-1 -kerning first=1219 second=283 amount=-1 -kerning first=252 second=943 amount=-1 -kerning first=255 second=252 amount=-1 -kerning first=372 second=1256 amount=-2 -kerning first=1026 second=67 amount=-2 -kerning first=168 second=266 amount=-2 -kerning first=1241 second=8222 amount=-1 -kerning first=47 second=970 amount=-1 -kerning first=50 second=279 amount=-1 -kerning first=1064 second=229 amount=-1 -kerning first=73 second=213 amount=-2 -kerning first=1084 second=1195 amount=-1 -kerning first=905 second=1257 amount=-1 -kerning first=96 second=115 amount=-1 -kerning first=93 second=355 amount=-1 -kerning first=236 second=267 amount=-1 -kerning first=1027 second=242 amount=-1 -kerning first=172 second=214 amount=-2 -kerning first=8224 second=287 amount=-1 -kerning first=54 second=226 amount=-1 -kerning first=1065 second=1240 amount=-1 +kerning first=1062 second=354 amount=-2 +kerning first=1062 second=356 amount=-2 +kerning first=1062 second=360 amount=-1 +kerning first=1062 second=362 amount=-1 +kerning first=1062 second=364 amount=-1 +kerning first=1062 second=366 amount=-1 +kerning first=1062 second=368 amount=-1 +kerning first=1062 second=370 amount=-1 +kerning first=1062 second=373 amount=-2 +kerning first=1062 second=374 amount=-2 +kerning first=1062 second=376 amount=-2 +kerning first=1062 second=920 amount=-1 +kerning first=1062 second=927 amount=-1 +kerning first=1062 second=932 amount=-2 +kerning first=1062 second=933 amount=-2 +kerning first=1062 second=934 amount=-2 +kerning first=1062 second=939 amount=-2 +kerning first=1062 second=940 amount=-1 +kerning first=1062 second=941 amount=-1 +kerning first=1062 second=945 amount=-1 +kerning first=1062 second=947 amount=-2 +kerning first=1062 second=949 amount=-1 +kerning first=1062 second=957 amount=-2 +kerning first=1062 second=959 amount=-1 +kerning first=1062 second=962 amount=-1 +kerning first=1062 second=963 amount=-1 +kerning first=1062 second=964 amount=-2 +kerning first=1062 second=966 amount=-1 +kerning first=1062 second=972 amount=-1 +kerning first=1062 second=1026 amount=-2 +kerning first=1062 second=1028 amount=-1 +kerning first=1062 second=1035 amount=-2 +kerning first=1062 second=1038 amount=-1 +kerning first=1062 second=1054 amount=-1 +kerning first=1062 second=1057 amount=-1 +kerning first=1062 second=1058 amount=-2 +kerning first=1062 second=1059 amount=-1 +kerning first=1062 second=1060 amount=-2 +kerning first=1062 second=1063 amount=-2 +kerning first=1062 second=1066 amount=-2 +kerning first=1062 second=1077 amount=-1 +kerning first=1062 second=1086 amount=-1 +kerning first=1062 second=1089 amount=-1 +kerning first=1062 second=1090 amount=-2 +kerning first=1062 second=1092 amount=-1 +kerning first=1062 second=1098 amount=-2 +kerning first=1062 second=1104 amount=-1 +kerning first=1062 second=1105 amount=-1 +kerning first=1062 second=1108 amount=-1 +kerning first=1062 second=1112 amount=7 +kerning first=1062 second=1184 amount=-2 +kerning first=1062 second=1185 amount=-2 +kerning first=1062 second=1194 amount=-1 +kerning first=1062 second=1195 amount=-1 +kerning first=1062 second=1198 amount=-2 +kerning first=1062 second=1199 amount=-2 +kerning first=1062 second=1240 amount=-1 +kerning first=1062 second=1241 amount=-1 +kerning first=1062 second=1256 amount=-1 +kerning first=1062 second=1257 amount=-1 kerning first=1062 second=1262 amount=-1 -kerning first=194 second=356 amount=-5 -kerning first=197 second=116 amount=-1 -kerning first=74 second=368 amount=-2 -kerning first=214 second=972 amount=-1 -kerning first=1223 second=1263 amount=-1 -kerning first=120 second=227 amount=-1 -kerning first=260 second=357 amount=-1 -kerning first=174 second=369 amount=-1 -kerning first=8240 second=232 amount=-1 -kerning first=316 second=216 amount=-2 -kerning first=72 second=8221 amount=-3 -kerning first=221 second=228 amount=-4 -kerning first=238 second=1194 amount=-2 -kerning first=1299 second=333 amount=-1 -kerning first=182 second=79 amount=-2 -kerning first=294 second=229 amount=-1 -kerning first=1074 second=271 amount=-1 -kerning first=317 second=371 amount=-1 -kerning first=314 second=1195 amount=-1 -kerning first=8369 second=84 amount=-5 -kerning first=962 second=360 amount=-2 -kerning first=37 second=1101 amount=-1 -kerning first=1041 second=287 amount=-1 -kerning first=179 second=945 amount=-1 -kerning first=63 second=268 amount=-2 -kerning first=318 second=1069 amount=-1 -kerning first=8370 second=259 amount=-1 -kerning first=8377 second=34 amount=-3 -kerning first=901 second=231 amount=-1 -kerning first=934 second=1202 amount=-5 -kerning first=940 second=373 amount=-2 -kerning first=162 second=269 amount=-1 -kerning first=41 second=973 amount=-1 -kerning first=1048 second=232 amount=-1 -kerning first=299 second=332 amount=-2 -kerning first=1080 second=374 amount=-5 -kerning first=1168 second=71 amount=-2 -kerning first=948 second=83 amount=-1 -kerning first=1207 second=233 amount=-1 -kerning first=373 second=333 amount=-1 -kerning first=166 second=217 amount=-2 -kerning first=48 second=229 amount=-1 -kerning first=191 second=119 amount=-4 -kerning first=188 second=359 amount=-1 -kerning first=300 second=963 amount=-1 -kerning first=303 second=271 amount=-1 -kerning first=65 second=1195 amount=-1 -kerning first=208 second=1026 amount=-2 -kerning first=906 second=334 amount=-2 -kerning first=903 second=1090 amount=-3 -kerning first=1169 second=246 amount=-1 -kerning first=354 second=346 amount=-1 -kerning first=114 second=230 amount=-1 -kerning first=254 second=360 amount=-2 -kerning first=374 second=964 amount=-2 -kerning first=377 second=273 amount=-1 -kerning first=164 second=947 amount=-4 -kerning first=167 second=372 amount=-5 -kerning first=280 second=287 amount=-1 -kerning first=8221 second=235 amount=-1 -kerning first=49 second=1240 amount=-2 -kerning first=46 second=1262 amount=-1 -kerning first=1063 second=335 amount=-1 -kerning first=69 second=1069 amount=-1 -kerning first=75 second=81 amount=-3 -kerning first=1095 second=259 amount=-1 -kerning first=215 second=231 amount=-1 -kerning first=8377 second=8216 amount=-3 -kerning first=920 second=46 amount=-1 -kerning first=95 second=243 amount=-1 -kerning first=235 second=373 amount=-1 -kerning first=358 second=288 amount=-2 -kerning first=1224 second=336 amount=-2 -kerning first=972 second=1113 amount=-1 -kerning first=1026 second=350 amount=-1 -kerning first=53 second=332 amount=-2 -kerning first=1064 second=966 amount=-1 -kerning first=1070 second=47 amount=-1 -kerning first=196 second=244 amount=-1 -kerning first=1067 second=275 amount=-1 -kerning first=8361 second=87 amount=-5 -kerning first=213 second=1298 amount=-1 -kerning first=923 second=221 amount=-5 -kerning first=1176 second=351 amount=-1 -kerning first=233 second=8230 amount=-1 -kerning first=1179 second=111 amount=-1 -kerning first=951 second=1177 amount=-1 -kerning first=1256 second=967 amount=-1 -kerning first=119 second=333 amount=-1 -kerning first=172 second=949 amount=-1 -kerning first=176 second=257 amount=-1 -kerning first=8230 second=338 amount=-1 -kerning first=54 second=963 amount=-1 -kerning first=57 second=271 amount=-1 -kerning first=318 second=84 amount=-5 -kerning first=341 second=246 amount=-1 -kerning first=926 second=376 amount=-5 -kerning first=100 second=346 amount=-1 -kerning first=1184 second=291 amount=-1 -kerning first=952 second=8212 amount=-2 -kerning first=955 second=1059 amount=-2 -kerning first=123 second=273 amount=-1 -kerning first=126 second=45 amount=-2 -kerning first=38 second=287 amount=-1 -kerning first=291 second=335 amount=-1 -kerning first=296 second=97 amount=-1 -kerning first=61 second=219 amount=-2 -kerning first=198 second=1108 amount=-1 -kerning first=201 second=347 amount=-1 -kerning first=321 second=259 amount=-1 -kerning first=8366 second=212 amount=-2 -kerning first=324 second=34 amount=-1 -kerning first=84 second=121 amount=-2 -kerning first=221 second=965 amount=-2 -kerning first=367 second=336 amount=-2 -kerning first=964 second=248 amount=-1 -kerning first=160 second=220 amount=-2 -kerning first=42 second=232 amount=-1 -kerning first=178 second=1176 amount=-1 -kerning first=182 second=362 amount=-2 -kerning first=294 second=966 amount=-1 -kerning first=297 second=275 amount=-1 -kerning first=62 second=374 amount=-5 -kerning first=1081 second=87 amount=-5 -kerning first=205 second=289 amount=-1 -kerning first=8369 second=367 amount=-1 -kerning first=8364 second=1185 amount=-3 -kerning first=900 second=337 amount=-1 -kerning first=903 second=99 amount=-1 -kerning first=88 second=71 amount=-3 -kerning first=1107 second=940 amount=-1 -kerning first=942 second=261 amount=-1 -kerning first=108 second=233 amount=-1 -kerning first=161 second=375 amount=-1 -kerning first=274 second=290 amount=-2 -kerning first=179 second=8211 amount=-2 -kerning first=1051 second=100 amount=-1 -kerning first=69 second=84 amount=-5 -kerning first=1083 second=262 amount=-2 -kerning first=209 second=234 amount=-1 -kerning first=8365 second=8220 amount=-3 -kerning first=901 second=968 amount=-1 -kerning first=904 second=277 amount=-1 -kerning first=89 second=246 amount=-4 -kerning first=1119 second=199 amount=-2 -kerning first=946 second=211 amount=-2 -kerning first=1219 second=101 amount=-1 -kerning first=249 second=1059 amount=-2 -kerning first=1206 second=339 amount=-1 -kerning first=126 second=8249 amount=-3 -kerning first=168 second=85 amount=-2 -kerning first=278 second=235 amount=-1 -kerning first=47 second=335 amount=-1 -kerning first=50 second=97 amount=-1 -kerning first=70 second=259 amount=-1 -kerning first=73 second=34 amount=-3 -kerning first=324 second=8216 amount=-1 -kerning first=8378 second=943 amount=-1 -kerning first=910 second=224 amount=-4 -kerning first=1168 second=354 amount=-5 -kerning first=1117 second=1118 amount=-1 -kerning first=944 second=1184 amount=-5 -kerning first=948 second=366 amount=-2 -kerning first=113 second=336 amount=-2 -kerning first=1220 second=279 amount=-1 -kerning first=256 second=248 amount=-1 -kerning first=376 second=378 amount=-2 -kerning first=8224 second=103 amount=-1 -kerning first=48 second=966 amount=-1 -kerning first=51 second=275 amount=-1 -kerning first=1085 second=1185 amount=-3 -kerning first=214 second=337 amount=-1 -kerning first=94 second=351 amount=-1 -kerning first=237 second=261 amount=-1 -kerning first=174 second=210 amount=-2 -kerning first=8225 second=281 amount=-1 -kerning first=8221 second=972 amount=-1 -kerning first=195 second=352 amount=-1 -kerning first=313 second=262 amount=-1 -kerning first=1087 second=8220 amount=-3 -kerning first=215 second=968 amount=-1 -kerning first=912 second=1079 amount=-1 -kerning first=95 second=1035 amount=-5 -kerning first=928 second=89 amount=-5 -kerning first=358 second=1098 amount=-3 -kerning first=361 second=339 amount=-1 -kerning first=956 second=251 amount=-1 -kerning first=36 second=235 amount=-1 -kerning first=175 second=365 amount=-1 -kerning first=317 second=212 amount=-2 -kerning first=8361 second=370 amount=-2 -kerning first=73 second=8216 amount=-3 -kerning first=1099 second=943 amount=-1 -kerning first=931 second=266 amount=-2 -kerning first=239 second=1184 amount=-5 -kerning first=365 second=279 amount=-1 -kerning first=125 second=171 amount=-3 -kerning first=172 second=8217 amount=-3 -kerning first=1041 second=103 amount=-1 -kerning first=63 second=87 amount=-5 -kerning first=1075 second=267 amount=-1 -kerning first=318 second=367 amount=-1 -kerning first=80 second=940 amount=-1 -kerning first=1184 second=1101 amount=-1 -kerning first=369 second=226 amount=-1 -kerning first=963 second=356 amount=-5 -kerning first=41 second=338 amount=-2 -kerning first=1044 second=281 amount=-1 -kerning first=184 second=250 amount=-1 -kerning first=180 second=941 amount=-1 -kerning first=64 second=262 amount=-2 -kerning first=204 second=1241 amount=-1 -kerning first=207 second=187 amount=-1 -kerning first=316 second=8220 amount=-3 -kerning first=902 second=227 amount=-1 -kerning first=87 second=199 amount=-2 -kerning first=1117 second=117 amount=-1 -kerning first=104 second=1098 amount=-1 -kerning first=107 second=339 amount=-2 -kerning first=250 second=251 amount=-1 -kerning first=163 second=263 amount=-1 -kerning first=1049 second=228 amount=-1 -kerning first=1081 second=370 amount=-2 -kerning first=325 second=943 amount=-1 -kerning first=900 second=1256 amount=-2 -kerning first=234 second=39 amount=-1 -kerning first=108 second=970 amount=-1 -kerning first=1210 second=229 amount=-1 -kerning first=374 second=328 amount=-3 -kerning first=968 second=920 amount=-2 -kerning first=167 second=213 amount=-2 -kerning first=280 second=103 amount=-1 -kerning first=8221 second=56 amount=-1 -kerning first=8211 second=1026 amount=-4 -kerning first=49 second=225 amount=-1 -kerning first=189 second=355 amount=-1 -kerning first=192 second=115 amount=-1 -kerning first=304 second=267 amount=-1 -kerning first=69 second=367 amount=-1 -kerning first=1170 second=242 amount=-1 -kerning first=946 second=945 amount=-1 -kerning first=1219 second=1240 amount=-2 -kerning first=1206 second=1262 amount=-1 -kerning first=255 second=356 amount=-5 -kerning first=258 second=116 amount=-1 -kerning first=168 second=368 amount=-2 -kerning first=278 second=972 amount=-1 -kerning first=910 second=961 amount=-5 -kerning first=915 second=269 amount=-1 -kerning first=236 second=369 amount=-1 -kerning first=356 second=973 amount=-2 -kerning first=113 second=1224 amount=2 -kerning first=169 second=1066 amount=-5 -kerning first=166 second=8221 amount=-3 -kerning first=287 second=228 amount=-1 -kerning first=8220 second=1298 amount=-3 +kerning first=1062 second=8211 amount=-2 +kerning first=1062 second=8212 amount=-2 +kerning first=1062 second=8216 amount=-2 +kerning first=1062 second=8217 amount=-2 +kerning first=1062 second=8220 amount=-2 +kerning first=1062 second=8221 amount=-2 +kerning first=1062 second=8249 amount=-1 +kerning first=1065 second=34 amount=-2 +kerning first=1065 second=39 amount=-2 +kerning first=1065 second=45 amount=-2 +kerning first=1065 second=63 amount=-2 +kerning first=1065 second=67 amount=-1 +kerning first=1065 second=71 amount=-1 +kerning first=1065 second=79 amount=-1 +kerning first=1065 second=81 amount=-1 +kerning first=1065 second=84 amount=-2 +kerning first=1065 second=85 amount=-1 +kerning first=1065 second=89 amount=-2 +kerning first=1065 second=99 amount=-1 +kerning first=1065 second=100 amount=-1 +kerning first=1065 second=101 amount=-1 +kerning first=1065 second=106 amount=7 +kerning first=1065 second=111 amount=-1 +kerning first=1065 second=113 amount=-1 +kerning first=1065 second=118 amount=-2 +kerning first=1065 second=119 amount=-2 +kerning first=1065 second=171 amount=-1 +kerning first=1065 second=173 amount=-2 +kerning first=1065 second=199 amount=-1 +kerning first=1065 second=210 amount=-1 +kerning first=1065 second=211 amount=-1 +kerning first=1065 second=212 amount=-1 +kerning first=1065 second=213 amount=-1 +kerning first=1065 second=214 amount=-1 +kerning first=1065 second=216 amount=-1 +kerning first=1065 second=217 amount=-1 +kerning first=1065 second=218 amount=-1 +kerning first=1065 second=219 amount=-1 +kerning first=1065 second=220 amount=-1 +kerning first=1065 second=221 amount=-2 +kerning first=1065 second=231 amount=-1 +kerning first=1065 second=232 amount=-1 +kerning first=1065 second=233 amount=-1 +kerning first=1065 second=234 amount=-1 +kerning first=1065 second=235 amount=-1 +kerning first=1065 second=240 amount=-1 +kerning first=1065 second=242 amount=-1 +kerning first=1065 second=243 amount=-1 +kerning first=1065 second=244 amount=-1 +kerning first=1065 second=245 amount=-1 +kerning first=1065 second=246 amount=-1 +kerning first=1065 second=248 amount=-1 +kerning first=1065 second=262 amount=-1 +kerning first=1065 second=263 amount=-1 +kerning first=1065 second=266 amount=-1 +kerning first=1065 second=267 amount=-1 +kerning first=1065 second=268 amount=-1 +kerning first=1065 second=269 amount=-1 +kerning first=1065 second=271 amount=-1 +kerning first=1065 second=273 amount=-1 +kerning first=1065 second=275 amount=-1 +kerning first=1065 second=277 amount=-1 +kerning first=1065 second=279 amount=-1 +kerning first=1065 second=281 amount=-1 +kerning first=1065 second=283 amount=-1 +kerning first=1065 second=286 amount=-1 +kerning first=1065 second=288 amount=-1 +kerning first=1065 second=290 amount=-1 +kerning first=1065 second=332 amount=-1 +kerning first=1065 second=333 amount=-1 +kerning first=1065 second=334 amount=-1 +kerning first=1065 second=335 amount=-1 +kerning first=1065 second=336 amount=-1 +kerning first=1065 second=337 amount=-1 +kerning first=1065 second=338 amount=-1 +kerning first=1065 second=339 amount=-1 +kerning first=1065 second=354 amount=-2 +kerning first=1065 second=356 amount=-2 +kerning first=1065 second=360 amount=-1 +kerning first=1065 second=362 amount=-1 +kerning first=1065 second=364 amount=-1 +kerning first=1065 second=366 amount=-1 +kerning first=1065 second=368 amount=-1 +kerning first=1065 second=370 amount=-1 +kerning first=1065 second=373 amount=-2 +kerning first=1065 second=374 amount=-2 +kerning first=1065 second=376 amount=-2 +kerning first=1065 second=920 amount=-1 +kerning first=1065 second=927 amount=-1 +kerning first=1065 second=932 amount=-2 +kerning first=1065 second=933 amount=-2 +kerning first=1065 second=934 amount=-2 +kerning first=1065 second=939 amount=-2 +kerning first=1065 second=940 amount=-1 +kerning first=1065 second=941 amount=-1 +kerning first=1065 second=945 amount=-1 +kerning first=1065 second=947 amount=-2 +kerning first=1065 second=949 amount=-1 +kerning first=1065 second=957 amount=-2 +kerning first=1065 second=959 amount=-1 kerning first=1065 second=962 amount=-1 -kerning first=197 second=240 amount=-1 -kerning first=306 second=1194 amount=-2 -kerning first=74 second=943 amount=-1 -kerning first=77 second=252 amount=-1 -kerning first=214 second=1256 amount=-2 -kerning first=926 second=217 amount=-2 -kerning first=234 second=8222 amount=-1 -kerning first=363 second=229 amount=-1 -kerning first=960 second=119 amount=-4 -kerning first=955 second=359 amount=-1 -kerning first=1298 second=271 amount=-1 -kerning first=260 second=920 amount=-2 -kerning first=380 second=1195 amount=-1 -kerning first=38 second=103 amount=-1 -kerning first=1028 second=1026 amount=-1 -kerning first=1035 second=286 amount=-2 -kerning first=177 second=253 amount=-1 -kerning first=8240 second=334 amount=-2 -kerning first=8225 second=1090 amount=-3 -kerning first=58 second=267 amount=-1 -kerning first=1073 second=218 amount=-2 -kerning first=928 second=372 amount=-5 -kerning first=1185 second=287 amount=-2 -kerning first=361 second=1262 amount=-2 -kerning first=124 second=268 amount=-2 -kerning first=36 second=972 amount=-1 -kerning first=39 second=281 amount=-1 -kerning first=1039 second=231 amount=-1 -kerning first=1070 second=1202 amount=-3 -kerning first=1074 second=373 amount=-4 -kerning first=965 second=244 amount=-1 -kerning first=161 second=216 amount=-2 -kerning first=274 second=106 amount=1 -kerning first=43 second=228 amount=-1 -kerning first=186 second=118 amount=-4 -kerning first=60 second=1194 amount=-2 -kerning first=63 second=370 amount=-2 -kerning first=1083 second=83 amount=-1 -kerning first=206 second=283 amount=-1 -kerning first=8365 second=1177 amount=-1 -kerning first=8370 second=363 amount=-1 -kerning first=901 second=333 amount=-1 -kerning first=89 second=67 amount=-3 -kerning first=1116 second=245 amount=-2 -kerning first=249 second=359 amount=-1 -kerning first=252 second=119 amount=-4 -kerning first=369 second=963 amount=-1 -kerning first=372 second=271 amount=-3 -kerning first=126 second=1195 amount=-1 -kerning first=162 second=371 amount=-1 -kerning first=271 second=1026 amount=-5 -kerning first=41 second=1257 amount=-1 -kerning first=1044 second=1090 amount=-2 -kerning first=1048 second=334 amount=-2 -kerning first=302 second=218 amount=-2 -kerning first=327 second=360 amount=-2 -kerning first=8366 second=8212 amount=-2 -kerning first=8372 second=1059 amount=-2 -kerning first=905 second=273 amount=-1 -kerning first=902 second=964 amount=-3 -kerning first=87 second=923 amount=-5 -kerning first=910 second=45 amount=-4 -kerning first=90 second=242 amount=-1 -kerning first=227 second=947 amount=-1 -kerning first=1207 second=335 amount=-1 -kerning first=1220 second=97 amount=-1 -kerning first=967 second=1108 amount=-1 -kerning first=163 second=1069 amount=-1 -kerning first=169 second=81 amount=-2 -kerning first=1049 second=965 amount=-1 -kerning first=191 second=243 amount=-1 -kerning first=303 second=373 amount=-4 -kerning first=357 second=232 amount=-1 -kerning first=1210 second=966 amount=-1 -kerning first=1257 second=47 amount=-1 -kerning first=1223 second=275 amount=-1 -kerning first=374 second=1203 amount=-2 -kerning first=8221 second=337 amount=-1 -kerning first=8225 second=99 amount=-1 -kerning first=49 second=962 amount=-1 +kerning first=1065 second=963 amount=-1 +kerning first=1065 second=964 amount=-2 +kerning first=1065 second=966 amount=-1 +kerning first=1065 second=972 amount=-1 +kerning first=1065 second=1026 amount=-2 +kerning first=1065 second=1028 amount=-1 +kerning first=1065 second=1035 amount=-2 +kerning first=1065 second=1038 amount=-1 +kerning first=1065 second=1054 amount=-1 +kerning first=1065 second=1057 amount=-1 +kerning first=1065 second=1058 amount=-2 +kerning first=1065 second=1059 amount=-1 +kerning first=1065 second=1060 amount=-2 +kerning first=1065 second=1063 amount=-2 +kerning first=1065 second=1066 amount=-2 +kerning first=1065 second=1077 amount=-1 +kerning first=1065 second=1086 amount=-1 +kerning first=1065 second=1089 amount=-1 +kerning first=1065 second=1090 amount=-2 +kerning first=1065 second=1092 amount=-1 +kerning first=1065 second=1098 amount=-2 +kerning first=1065 second=1104 amount=-1 +kerning first=1065 second=1105 amount=-1 +kerning first=1065 second=1108 amount=-1 +kerning first=1065 second=1112 amount=7 +kerning first=1065 second=1184 amount=-2 +kerning first=1065 second=1185 amount=-2 +kerning first=1065 second=1194 amount=-1 +kerning first=1065 second=1195 amount=-1 +kerning first=1065 second=1198 amount=-2 +kerning first=1065 second=1199 amount=-2 +kerning first=1065 second=1240 amount=-1 +kerning first=1065 second=1241 amount=-1 +kerning first=1065 second=1256 amount=-1 +kerning first=1065 second=1257 amount=-1 +kerning first=1065 second=1262 amount=-1 +kerning first=1065 second=8211 amount=-2 +kerning first=1065 second=8212 amount=-2 +kerning first=1065 second=8216 amount=-2 +kerning first=1065 second=8217 amount=-2 +kerning first=1065 second=8220 amount=-2 +kerning first=1065 second=8221 amount=-2 +kerning first=1065 second=8249 amount=-1 +kerning first=1066 second=34 amount=-2 +kerning first=1066 second=39 amount=-2 +kerning first=1066 second=63 amount=-5 +kerning first=1066 second=65 amount=-1 +kerning first=1066 second=84 amount=-5 +kerning first=1066 second=88 amount=-2 +kerning first=1066 second=89 amount=-5 +kerning first=1066 second=118 amount=-1 +kerning first=1066 second=119 amount=-1 +kerning first=1066 second=193 amount=-1 +kerning first=1066 second=194 amount=-1 +kerning first=1066 second=196 amount=-1 +kerning first=1066 second=197 amount=-1 +kerning first=1066 second=198 amount=-1 kerning first=1066 second=221 amount=-5 -kerning first=1087 second=1177 amount=-1 -kerning first=1095 second=363 amount=-1 -kerning first=215 second=333 amount=-1 -kerning first=912 second=375 amount=-1 -kerning first=238 second=257 amount=-1 -kerning first=946 second=8211 amount=-2 -kerning first=118 second=271 amount=-1 -kerning first=1240 second=84 amount=-2 -kerning first=281 second=1090 amount=-1 -kerning first=8226 second=277 amount=-1 -kerning first=8222 second=968 amount=-1 -kerning first=56 second=218 amount=-2 -kerning first=1067 second=376 amount=-5 -kerning first=196 second=346 amount=-1 -kerning first=8361 second=211 amount=-2 -kerning first=76 second=360 amount=-1 -kerning first=1096 second=1059 amount=-2 -kerning first=910 second=8249 amount=-3 -kerning first=931 second=85 amount=-2 -kerning first=1179 second=235 amount=-1 -kerning first=365 second=97 amount=-1 -kerning first=37 second=231 amount=-1 -kerning first=176 second=361 amount=-1 -kerning first=179 second=121 amount=-1 -kerning first=287 second=965 amount=-1 -kerning first=57 second=373 amount=-4 -kerning first=197 second=1028 amount=-2 -kerning first=200 second=288 amount=-2 -kerning first=1103 second=248 amount=-1 -kerning first=223 second=220 amount=-2 -kerning first=103 second=232 amount=-1 -kerning first=240 second=1176 amount=-1 -kerning first=246 second=122 amount=-1 -kerning first=363 second=966 amount=-1 -kerning first=123 second=374 amount=-5 -kerning first=1044 second=99 amount=-1 -kerning first=184 second=71 amount=-2 -kerning first=296 second=221 amount=-5 -kerning first=55 second=8230 amount=-4 -kerning first=64 second=83 amount=-1 -kerning first=1073 second=953 amount=-1 -kerning first=204 second=233 amount=-1 -kerning first=316 second=1177 amount=-1 -kerning first=321 second=363 amount=-1 -kerning first=84 second=245 amount=-3 -kerning first=101 second=1299 amount=-1 -kerning first=1202 second=100 amount=-1 -kerning first=964 second=352 amount=-1 -kerning first=163 second=84 amount=-5 -kerning first=273 second=234 amount=-1 -kerning first=42 second=334 amount=-2 -kerning first=1039 second=968 amount=-1 -kerning first=185 second=246 amount=-1 -kerning first=1046 second=277 amount=-2 -kerning first=297 second=376 amount=-5 -kerning first=1081 second=211 amount=-2 -kerning first=322 second=1059 amount=-2 -kerning first=317 second=8212 amount=-2 -kerning first=1118 second=113 amount=-1 -kerning first=942 second=365 amount=-1 -kerning first=108 second=335 amount=-1 -kerning first=164 second=259 amount=-1 -kerning first=167 second=34 amount=-3 -kerning first=43 second=965 amount=-1 -kerning first=1051 second=224 amount=-1 -kerning first=1083 second=366 amount=-2 -kerning first=209 second=336 amount=-2 -kerning first=330 second=248 amount=-1 -kerning first=89 second=350 amount=-1 -kerning first=1219 second=225 amount=-1 -kerning first=278 second=337 amount=-1 -kerning first=8222 second=52 amount=-1 -kerning first=50 second=221 amount=-5 -kerning first=193 second=111 amount=-1 -kerning first=305 second=261 amount=-1 -kerning first=190 second=351 amount=-1 -kerning first=70 second=363 amount=-1 -kerning first=302 second=953 amount=-1 -kerning first=210 second=967 amount=-1 -kerning first=334 second=198 amount=-2 -kerning first=93 second=290 amount=-2 -kerning first=236 second=210 amount=-2 -kerning first=356 second=338 amount=-1 -kerning first=951 second=250 amount=-1 -kerning first=948 second=941 amount=-1 -kerning first=256 second=352 amount=-1 -kerning first=376 second=954 amount=-3 -kerning first=379 second=262 amount=-1 -kerning first=973 second=1241 amount=-1 -kerning first=1027 second=187 amount=-1 -kerning first=169 second=364 amount=-2 -kerning first=282 second=277 amount=-1 -kerning first=8224 second=227 amount=-1 -kerning first=51 second=376 amount=-5 -kerning first=191 second=1035 amount=-5 -kerning first=194 second=291 amount=-1 +kerning first=1066 second=256 amount=-1 +kerning first=1066 second=258 amount=-1 +kerning first=1066 second=260 amount=-1 +kerning first=1066 second=354 amount=-5 +kerning first=1066 second=356 amount=-5 +kerning first=1066 second=373 amount=-1 +kerning first=1066 second=374 amount=-5 +kerning first=1066 second=376 amount=-5 +kerning first=1066 second=913 amount=-1 +kerning first=1066 second=916 amount=-1 +kerning first=1066 second=923 amount=-1 +kerning first=1066 second=932 amount=-5 +kerning first=1066 second=933 amount=-5 +kerning first=1066 second=935 amount=-2 +kerning first=1066 second=939 amount=-5 +kerning first=1066 second=947 amount=-1 +kerning first=1066 second=957 amount=-1 +kerning first=1066 second=964 amount=-2 +kerning first=1066 second=1026 amount=-5 +kerning first=1066 second=1035 amount=-5 +kerning first=1066 second=1040 amount=-1 +kerning first=1066 second=1046 amount=-2 +kerning first=1066 second=1058 amount=-5 +kerning first=1066 second=1061 amount=-2 +kerning first=1066 second=1063 amount=-1 +kerning first=1066 second=1066 amount=-5 +kerning first=1066 second=1071 amount=-1 +kerning first=1066 second=1090 amount=-2 +kerning first=1066 second=1098 amount=-2 +kerning first=1066 second=1174 amount=-2 +kerning first=1066 second=1184 amount=-5 +kerning first=1066 second=1185 amount=-2 +kerning first=1066 second=1198 amount=-5 +kerning first=1066 second=1199 amount=-1 +kerning first=1066 second=1202 amount=-2 +kerning first=1066 second=8216 amount=-2 +kerning first=1066 second=8217 amount=-2 +kerning first=1066 second=8220 amount=-2 +kerning first=1066 second=8221 amount=-2 +kerning first=1068 second=34 amount=-2 +kerning first=1068 second=39 amount=-2 +kerning first=1068 second=63 amount=-5 +kerning first=1068 second=65 amount=-1 +kerning first=1068 second=84 amount=-5 +kerning first=1068 second=88 amount=-2 kerning first=1068 second=89 amount=-5 -kerning first=338 second=113 amount=-1 -kerning first=916 second=263 amount=-1 -kerning first=237 second=365 amount=-1 -kerning first=167 second=8216 amount=-3 -kerning first=49 second=8250 amount=-1 -kerning first=1073 second=39 amount=-3 -kerning first=313 second=366 amount=-1 -kerning first=8363 second=79 amount=-2 -kerning first=78 second=248 amount=-1 -kerning first=221 second=171 amount=-3 -kerning first=928 second=213 amount=-2 -kerning first=1185 second=103 amount=-2 -kerning first=235 second=8217 amount=-1 -kerning first=956 second=355 amount=-1 -kerning first=1299 second=267 amount=-1 -kerning first=124 second=87 amount=-5 -kerning first=36 second=337 amount=-1 -kerning first=39 second=99 amount=-1 -kerning first=178 second=249 amount=-1 -kerning first=175 second=940 amount=-1 -kerning first=59 second=261 amount=-1 -kerning first=1074 second=214 amount=-2 -kerning first=56 second=953 amount=-1 -kerning first=8361 second=945 amount=-1 -kerning first=931 second=368 amount=-2 -kerning first=105 second=100 amount=-1 -kerning first=1186 second=281 amount=-1 -kerning first=1179 second=972 amount=-1 -kerning first=125 second=262 amount=-2 -kerning first=37 second=968 amount=-1 -kerning first=40 second=277 amount=-1 -kerning first=1041 second=227 amount=-1 -kerning first=183 second=199 amount=-2 -kerning first=298 second=89 amount=-5 -kerning first=63 second=211 amount=-2 -kerning first=203 second=339 amount=-1 -kerning first=206 second=101 amount=-1 -kerning first=200 second=1098 amount=-3 -kerning first=323 second=251 amount=-1 -kerning first=86 second=113 amount=-3 -kerning first=934 second=1066 amount=-5 -kerning first=926 second=8221 amount=-3 -kerning first=947 second=228 amount=-1 -kerning first=162 second=212 amount=-2 -kerning first=275 second=102 amount=-1 -kerning first=8212 second=55 amount=-3 -kerning first=184 second=354 amount=-5 -kerning first=180 second=1118 amount=-1 -kerning first=299 second=266 amount=-2 -kerning first=302 second=39 amount=-3 -kerning first=61 second=1184 amount=-5 -kerning first=64 second=366 amount=-2 -kerning first=1084 second=79 amount=-2 -kerning first=207 second=279 amount=-1 -kerning first=204 second=970 amount=-1 -kerning first=8372 second=359 amount=-1 -kerning first=8378 second=119 amount=-4 -kerning first=944 second=253 amount=-1 -kerning first=250 second=355 amount=-1 -kerning first=253 second=115 amount=-1 -kerning first=373 second=267 amount=-1 -kerning first=163 second=367 amount=-1 -kerning first=160 second=1185 amount=-3 -kerning first=8216 second=230 amount=-1 -kerning first=45 second=379 amount=-2 -kerning first=185 second=1038 amount=-2 -kerning first=303 second=214 amount=-2 -kerning first=1081 second=945 amount=-1 -kerning first=906 second=268 amount=-2 -kerning first=354 second=281 amount=-3 -kerning first=111 second=380 amount=-1 -kerning first=161 second=8220 amount=-3 -kerning first=280 second=227 amount=-1 -kerning first=52 second=89 amount=-5 -kerning first=1063 second=269 amount=-1 -kerning first=304 second=369 amount=-1 -kerning first=72 second=251 amount=-1 -kerning first=212 second=381 amount=-1 -kerning first=912 second=216 amount=-2 -kerning first=229 second=8221 amount=-1 -kerning first=358 second=228 amount=-1 -kerning first=953 second=118 amount=-2 -kerning first=1219 second=962 amount=-1 -kerning first=258 second=240 amount=-1 -kerning first=375 second=1194 amount=-2 -kerning first=1026 second=283 amount=-1 -kerning first=168 second=943 amount=-1 -kerning first=278 second=1256 amount=-2 -kerning first=281 second=382 amount=-1 -kerning first=56 second=39 amount=-3 -kerning first=53 second=266 amount=-2 -kerning first=1067 second=217 amount=-2 -kerning first=314 second=79 amount=-2 -kerning first=1096 second=359 amount=-1 -kerning first=1099 second=119 amount=-4 -kerning first=910 second=1195 amount=-4 -kerning first=915 second=371 amount=-1 -kerning first=1171 second=1026 amount=-5 -kerning first=1176 second=286 amount=-2 -kerning first=239 second=253 amount=-1 -kerning first=356 second=1257 amount=-3 -kerning first=119 second=267 amount=-1 -kerning first=1263 second=218 amount=-2 -kerning first=8224 second=964 amount=-3 -kerning first=57 second=214 amount=-2 -kerning first=1065 second=947 amount=-2 -kerning first=194 second=1101 amount=-1 -kerning first=311 second=945 amount=-2 -kerning first=77 second=356 amount=-5 -kerning first=80 second=116 amount=-1 -kerning first=916 second=1069 amount=-1 -kerning first=934 second=81 amount=-2 -kerning first=100 second=281 amount=-1 -kerning first=1184 second=231 amount=-2 -kerning first=960 second=243 amount=-1 -kerning first=1298 second=373 amount=-4 -kerning first=38 second=227 amount=-1 -kerning first=177 second=357 amount=-1 -kerning first=180 second=117 amount=-1 -kerning first=291 second=269 amount=-1 -kerning first=8260 second=220 amount=-2 -kerning first=58 second=369 amount=-1 -kerning first=198 second=973 amount=-1 -kerning first=8363 second=362 amount=-2 -kerning first=936 second=256 amount=-3 -kerning first=247 second=118 amount=-4 -kerning first=121 second=1194 amount=-2 -kerning first=124 second=370 amount=-2 -kerning first=1262 second=8230 amount=-1 -kerning first=36 second=1256 amount=-2 -kerning first=1039 second=333 amount=-1 -kerning first=185 second=67 amount=-2 -kerning first=297 second=217 amount=-2 -kerning first=56 second=8222 amount=-1 -kerning first=65 second=79 amount=-2 -kerning first=1074 second=949 amount=-1 -kerning first=1078 second=257 amount=-1 -kerning first=205 second=229 amount=-1 -kerning first=322 second=359 amount=-1 -kerning first=8361 second=8211 amount=-2 -kerning first=325 second=119 amount=-4 -kerning first=900 second=271 amount=-1 -kerning first=102 second=1257 amount=-1 -kerning first=1186 second=1090 amount=-2 -kerning first=371 second=218 amount=-2 -kerning first=965 second=346 amount=-1 -kerning first=274 second=230 amount=-1 -kerning first=1051 second=45 amount=-2 -kerning first=186 second=242 amount=-1 -kerning first=1041 second=964 amount=-3 -kerning first=298 second=372 amount=-5 -kerning first=295 second=947 amount=-1 -kerning first=63 second=945 amount=-1 -kerning first=206 second=1240 amount=-2 -kerning first=203 second=1262 amount=-2 -kerning first=904 second=219 amount=-2 -kerning first=1116 second=347 amount=-1 -kerning first=946 second=121 amount=-1 -kerning first=252 second=243 amount=-1 -kerning first=372 second=373 amount=-1 -kerning first=271 second=1263 amount=-1 -kerning first=47 second=269 amount=-1 -kerning first=1080 second=1176 amount=-1 -kerning first=1084 second=362 amount=-2 -kerning first=905 second=374 amount=-5 -kerning first=93 second=106 amount=1 -kerning first=1168 second=289 amount=-1 -kerning first=951 second=71 amount=-2 -kerning first=1220 second=221 amount=-5 -kerning first=370 second=8230 amount=-1 -kerning first=973 second=233 amount=-1 -kerning first=51 second=217 amount=-2 -kerning first=303 second=949 amount=-1 -kerning first=306 second=257 amount=-1 -kerning first=74 second=119 amount=-4 -kerning first=1081 second=8211 amount=-2 -kerning first=214 second=271 amount=-1 -kerning first=217 second=44 amount=-1 -kerning first=916 second=84 amount=-5 -kerning first=91 second=1026 amount=-5 -kerning first=94 second=286 amount=-2 -kerning first=1174 second=234 amount=-1 -kerning first=357 second=334 amount=-2 -kerning first=952 second=246 amount=-1 -kerning first=117 second=218 amount=-2 -kerning first=1223 second=376 amount=-5 -kerning first=170 second=360 amount=-2 -kerning first=280 second=964 amount=-3 -kerning first=49 second=947 amount=-4 -kerning first=52 second=372 amount=-5 -kerning first=1051 second=8249 amount=-3 -kerning first=195 second=287 amount=-1 -kerning first=928 second=34 amount=-3 -kerning first=235 second=1175 amount=-2 -kerning first=238 second=361 amount=-1 -kerning first=358 second=965 amount=-1 -kerning first=364 second=46 amount=-1 -kerning first=1219 second=8250 amount=-1 -kerning first=258 second=1028 amount=-2 -kerning first=289 second=220 amount=-2 +kerning first=1068 second=118 amount=-1 +kerning first=1068 second=119 amount=-1 +kerning first=1068 second=193 amount=-1 +kerning first=1068 second=194 amount=-1 +kerning first=1068 second=196 amount=-1 +kerning first=1068 second=197 amount=-1 +kerning first=1068 second=198 amount=-1 +kerning first=1068 second=221 amount=-5 +kerning first=1068 second=256 amount=-1 +kerning first=1068 second=258 amount=-1 +kerning first=1068 second=260 amount=-1 +kerning first=1068 second=354 amount=-5 +kerning first=1068 second=356 amount=-5 +kerning first=1068 second=373 amount=-1 +kerning first=1068 second=374 amount=-5 +kerning first=1068 second=376 amount=-5 +kerning first=1068 second=913 amount=-1 +kerning first=1068 second=916 amount=-1 +kerning first=1068 second=923 amount=-1 +kerning first=1068 second=932 amount=-5 +kerning first=1068 second=933 amount=-5 +kerning first=1068 second=935 amount=-2 +kerning first=1068 second=939 amount=-5 +kerning first=1068 second=947 amount=-1 +kerning first=1068 second=957 amount=-1 +kerning first=1068 second=964 amount=-2 +kerning first=1068 second=1026 amount=-5 +kerning first=1068 second=1035 amount=-5 +kerning first=1068 second=1040 amount=-1 +kerning first=1068 second=1046 amount=-2 +kerning first=1068 second=1058 amount=-5 +kerning first=1068 second=1061 amount=-2 +kerning first=1068 second=1063 amount=-1 +kerning first=1068 second=1066 amount=-5 +kerning first=1068 second=1071 amount=-1 +kerning first=1068 second=1090 amount=-2 +kerning first=1068 second=1098 amount=-2 +kerning first=1068 second=1174 amount=-2 +kerning first=1068 second=1184 amount=-5 +kerning first=1068 second=1185 amount=-2 +kerning first=1068 second=1198 amount=-5 +kerning first=1068 second=1199 amount=-1 +kerning first=1068 second=1202 amount=-2 +kerning first=1068 second=8216 amount=-2 +kerning first=1068 second=8217 amount=-2 +kerning first=1068 second=8220 amount=-2 +kerning first=1068 second=8221 amount=-2 +kerning first=1069 second=44 amount=-1 +kerning first=1069 second=46 amount=-1 +kerning first=1069 second=47 amount=-1 +kerning first=1069 second=65 amount=-2 +kerning first=1069 second=84 amount=-2 +kerning first=1069 second=86 amount=-2 +kerning first=1069 second=87 amount=-2 +kerning first=1069 second=88 amount=-3 +kerning first=1069 second=89 amount=-3 +kerning first=1069 second=90 amount=-1 +kerning first=1069 second=193 amount=-2 +kerning first=1069 second=194 amount=-2 +kerning first=1069 second=196 amount=-2 +kerning first=1069 second=197 amount=-2 +kerning first=1069 second=198 amount=-2 +kerning first=1069 second=221 amount=-3 +kerning first=1069 second=256 amount=-2 +kerning first=1069 second=258 amount=-2 +kerning first=1069 second=260 amount=-2 +kerning first=1069 second=354 amount=-2 +kerning first=1069 second=356 amount=-2 +kerning first=1069 second=372 amount=-2 +kerning first=1069 second=374 amount=-3 +kerning first=1069 second=376 amount=-3 +kerning first=1069 second=377 amount=-1 +kerning first=1069 second=379 amount=-1 +kerning first=1069 second=381 amount=-1 +kerning first=1069 second=913 amount=-2 +kerning first=1069 second=916 amount=-2 +kerning first=1069 second=918 amount=-1 +kerning first=1069 second=923 amount=-2 +kerning first=1069 second=932 amount=-2 +kerning first=1069 second=933 amount=-3 +kerning first=1069 second=935 amount=-3 +kerning first=1069 second=939 amount=-3 +kerning first=1069 second=955 amount=-2 +kerning first=1069 second=967 amount=-1 +kerning first=1069 second=1026 amount=-2 +kerning first=1069 second=1033 amount=-1 +kerning first=1069 second=1035 amount=-2 +kerning first=1069 second=1040 amount=-2 +kerning first=1069 second=1044 amount=-1 +kerning first=1069 second=1046 amount=-3 +kerning first=1069 second=1051 amount=-1 +kerning first=1069 second=1058 amount=-2 +kerning first=1069 second=1061 amount=-3 +kerning first=1069 second=1066 amount=-2 +kerning first=1069 second=1071 amount=-1 +kerning first=1069 second=1174 amount=-3 +kerning first=1069 second=1184 amount=-2 +kerning first=1069 second=1198 amount=-3 +kerning first=1069 second=1202 amount=-3 +kerning first=1069 second=1298 amount=-1 +kerning first=1069 second=8218 amount=-1 +kerning first=1069 second=8222 amount=-1 +kerning first=1069 second=8230 amount=-1 +kerning first=1070 second=44 amount=-1 +kerning first=1070 second=46 amount=-1 +kerning first=1070 second=47 amount=-1 +kerning first=1070 second=65 amount=-2 +kerning first=1070 second=84 amount=-2 +kerning first=1070 second=86 amount=-2 +kerning first=1070 second=87 amount=-2 +kerning first=1070 second=88 amount=-3 +kerning first=1070 second=89 amount=-3 +kerning first=1070 second=90 amount=-1 +kerning first=1070 second=193 amount=-2 +kerning first=1070 second=194 amount=-2 +kerning first=1070 second=196 amount=-2 +kerning first=1070 second=197 amount=-2 +kerning first=1070 second=198 amount=-2 +kerning first=1070 second=221 amount=-3 +kerning first=1070 second=256 amount=-2 +kerning first=1070 second=258 amount=-2 kerning first=1070 second=260 amount=-2 -kerning first=314 second=362 amount=-2 -kerning first=310 second=1176 amount=-2 -kerning first=1186 second=99 amount=-1 -kerning first=1179 second=337 amount=-1 -kerning first=365 second=221 amount=-5 -kerning first=962 second=111 amount=-1 -kerning first=958 second=351 amount=-1 -kerning first=125 second=83 amount=-1 -kerning first=1263 second=953 amount=-1 -kerning first=116 second=8230 amount=-1 -kerning first=37 second=333 amount=-1 -kerning first=179 second=245 amount=-1 -kerning first=57 second=949 amount=-1 -kerning first=60 second=257 amount=-1 -kerning first=311 second=8211 amount=-3 -kerning first=8365 second=250 amount=-1 -kerning first=83 second=194 amount=-1 -kerning first=1103 second=352 amount=-1 -kerning first=934 second=364 amount=-2 -kerning first=100 second=1090 amount=-3 -kerning first=103 second=334 amount=-2 -kerning first=1184 second=968 amount=-1 -kerning first=1187 second=277 amount=-1 -kerning first=960 second=1035 amount=-5 -kerning first=963 second=291 amount=-1 -kerning first=41 second=273 amount=-1 -kerning first=38 second=964 amount=-3 -kerning first=44 second=45 amount=-1 -kerning first=299 second=85 amount=-2 -kerning first=204 second=335 amount=-1 -kerning first=207 second=97 amount=-1 -kerning first=84 second=347 amount=-3 -kerning first=87 second=109 amount=-2 -kerning first=230 second=34 amount=-1 -kerning first=928 second=8216 amount=-3 -kerning first=273 second=336 amount=-2 -kerning first=1049 second=171 amount=-3 -kerning first=185 second=350 amount=-1 -kerning first=65 second=362 amount=-2 -kerning first=1074 second=8217 amount=-3 -kerning first=62 second=1176 amount=-1 -kerning first=205 second=966 amount=-1 -kerning first=211 second=47 amount=-1 -kerning first=906 second=87 amount=-5 -kerning first=85 second=1033 amount=-1 -kerning first=354 second=99 amount=-3 -kerning first=942 second=940 amount=-1 -kerning first=254 second=111 amount=-1 -kerning first=251 second=351 amount=-1 -kerning first=371 second=953 amount=-1 -kerning first=374 second=261 amount=-4 -kerning first=161 second=1177 amount=-1 -kerning first=164 second=363 amount=-1 -kerning first=8217 second=226 amount=-1 -kerning first=46 second=375 amount=-1 -kerning first=189 second=290 amount=-2 -kerning first=304 second=210 amount=-2 -kerning first=63 second=8211 amount=-2 -kerning first=1087 second=250 amount=-1 -kerning first=1083 second=941 amount=-1 -kerning first=330 second=352 amount=-1 -kerning first=92 second=234 amount=-1 -kerning first=1119 second=1241 amount=-1 -kerning first=1170 second=187 amount=-1 -kerning first=950 second=199 amount=-2 -kerning first=1224 second=89 amount=-5 -kerning first=252 second=1035 amount=-5 -kerning first=255 second=291 amount=-1 -kerning first=162 second=8212 amount=-2 -kerning first=165 second=1059 amount=-2 -kerning first=1026 second=101 amount=-1 -kerning first=47 second=1074 amount=-1 -kerning first=53 second=85 amount=-2 -kerning first=1064 second=263 amount=-1 -kerning first=193 second=235 amount=-1 -kerning first=305 second=365 amount=-1 -kerning first=213 second=377 amount=-1 -kerning first=915 second=212 amount=-2 -kerning first=230 second=8216 amount=-1 -kerning first=951 second=354 amount=-5 -kerning first=948 second=1118 amount=-1 -kerning first=113 second=1075 amount=2 -kerning first=1263 second=39 amount=-3 -kerning first=1027 second=279 amount=-1 -kerning first=172 second=248 amount=-1 -kerning first=973 second=970 amount=-1 -kerning first=287 second=171 amount=-3 -kerning first=303 second=8217 amount=-3 -kerning first=916 second=367 amount=-1 -kerning first=100 second=99 amount=-1 -kerning first=237 second=940 amount=-1 -kerning first=240 second=249 amount=-1 -kerning first=952 second=1038 amount=-2 -kerning first=117 second=953 amount=-1 -kerning first=1298 second=214 amount=-2 -kerning first=120 second=261 amount=-1 -kerning first=1035 second=226 amount=-1 -kerning first=283 second=1078 amount=-2 -kerning first=8240 second=268 amount=-2 -kerning first=58 second=210 amount=-2 -kerning first=198 second=338 amount=-2 -kerning first=201 second=100 amount=-1 -kerning first=313 second=941 amount=-1 -kerning first=316 second=250 amount=-1 -kerning first=78 second=352 amount=-1 -kerning first=221 second=262 amount=-3 -kerning first=912 second=8220 amount=-3 -kerning first=1185 second=227 amount=-1 -kerning first=361 second=1079 amount=-1 -kerning first=367 second=89 amount=-5 -kerning first=124 second=211 amount=-2 -kerning first=1299 second=369 amount=-1 -kerning first=261 second=1098 amount=-1 -kerning first=178 second=353 amount=-1 -kerning first=182 second=113 amount=-1 -kerning first=294 second=263 amount=-1 -kerning first=59 second=365 amount=-1 -kerning first=1067 second=8221 amount=-3 +kerning first=1070 second=354 amount=-2 +kerning first=1070 second=356 amount=-2 +kerning first=1070 second=372 amount=-2 +kerning first=1070 second=374 amount=-3 +kerning first=1070 second=376 amount=-3 +kerning first=1070 second=377 amount=-1 +kerning first=1070 second=379 amount=-1 +kerning first=1070 second=381 amount=-1 +kerning first=1070 second=913 amount=-2 +kerning first=1070 second=916 amount=-2 +kerning first=1070 second=918 amount=-1 +kerning first=1070 second=923 amount=-2 +kerning first=1070 second=932 amount=-2 +kerning first=1070 second=933 amount=-3 +kerning first=1070 second=935 amount=-3 +kerning first=1070 second=939 amount=-3 +kerning first=1070 second=955 amount=-2 +kerning first=1070 second=967 amount=-1 +kerning first=1070 second=1026 amount=-2 +kerning first=1070 second=1033 amount=-1 +kerning first=1070 second=1035 amount=-2 +kerning first=1070 second=1040 amount=-2 +kerning first=1070 second=1044 amount=-1 +kerning first=1070 second=1046 amount=-3 +kerning first=1070 second=1051 amount=-1 +kerning first=1070 second=1058 amount=-2 +kerning first=1070 second=1061 amount=-3 kerning first=1070 second=1066 amount=-2 -kerning first=8369 second=118 amount=-4 -kerning first=1107 second=240 amount=-1 -kerning first=931 second=943 amount=-1 -kerning first=105 second=224 amount=-1 -kerning first=371 second=39 amount=-3 -kerning first=125 second=366 amount=-2 -kerning first=43 second=171 amount=-3 -kerning first=298 second=213 amount=-2 -kerning first=57 second=8217 amount=-3 -kerning first=206 second=225 amount=-1 -kerning first=323 second=355 amount=-1 -kerning first=901 second=267 amount=-1 -kerning first=223 second=1185 amount=-3 -kerning first=372 second=214 amount=-2 -kerning first=963 second=1101 amount=-1 -kerning first=1048 second=268 amount=-2 -kerning first=299 second=368 amount=-2 -kerning first=64 second=941 amount=-1 -kerning first=8378 second=243 amount=-1 -kerning first=87 second=1241 amount=-3 -kerning first=224 second=8220 amount=-1 -kerning first=944 second=357 amount=-1 -kerning first=948 second=117 amount=-1 -kerning first=113 second=89 amount=-5 -kerning first=1207 second=269 amount=-1 -kerning first=967 second=973 amount=-1 -kerning first=166 second=251 amount=-1 -kerning first=48 second=263 amount=-1 -kerning first=1062 second=216 amount=-1 -kerning first=297 second=8221 amount=-3 -kerning first=300 second=1066 amount=-5 -kerning first=903 second=1194 amount=-2 -kerning first=906 second=370 amount=-2 -kerning first=1169 second=283 amount=-1 -kerning first=354 second=382 amount=-1 -kerning first=952 second=67 amount=-2 -kerning first=117 second=39 amount=-3 -kerning first=1223 second=217 amount=-2 -kerning first=8217 second=963 amount=-1 -kerning first=8221 second=271 amount=-1 -kerning first=52 second=213 amount=-2 -kerning first=1063 second=371 amount=-1 -kerning first=1051 second=1195 amount=-1 -kerning first=195 second=103 amount=-1 -kerning first=72 second=355 amount=-1 -kerning first=215 second=267 amount=-1 -kerning first=1219 second=947 amount=-4 -kerning first=1224 second=372 amount=-5 -kerning first=255 second=1101 amount=-1 -kerning first=378 second=945 amount=-1 -kerning first=1026 second=1240 amount=-2 -kerning first=171 second=356 amount=-1 -kerning first=175 second=116 amount=-1 -kerning first=8226 second=219 amount=-2 -kerning first=53 second=368 amount=-2 -kerning first=1064 second=1069 amount=-1 -kerning first=193 second=972 amount=-1 -kerning first=196 second=281 amount=-1 -kerning first=8361 second=121 amount=-1 -kerning first=79 second=65 amount=-2 -kerning first=1099 second=243 amount=-1 -kerning first=1171 second=1263 amount=-1 -kerning first=239 second=357 amount=-1 -kerning first=8230 second=374 amount=-4 -kerning first=54 second=1066 amount=-5 -kerning first=51 second=8221 amount=-3 -kerning first=200 second=228 amount=-1 -kerning first=318 second=118 amount=-4 -kerning first=8365 second=71 amount=-2 -kerning first=80 second=240 amount=-1 -kerning first=341 second=283 amount=-1 -kerning first=1184 second=333 amount=-2 -kerning first=126 second=79 amount=-2 -kerning first=1298 second=949 amount=-1 -kerning first=1035 second=963 amount=-1 -kerning first=177 second=920 amount=-2 -kerning first=291 second=371 amount=-1 -kerning first=61 second=253 amount=-1 -kerning first=198 second=1257 amount=-1 -kerning first=8366 second=246 amount=-1 -kerning first=345 second=230 amount=-1 -kerning first=936 second=360 amount=-2 -kerning first=941 second=120 amount=-1 -kerning first=101 second=1083 amount=-1 -kerning first=1202 second=45 amount=-2 -kerning first=247 second=242 amount=-1 -kerning first=367 second=372 amount=-5 -kerning first=964 second=287 amount=-1 -kerning first=124 second=945 amount=-1 -kerning first=42 second=268 amount=-2 -kerning first=294 second=1069 amount=-1 -kerning first=300 second=81 amount=-2 +kerning first=1070 second=1071 amount=-1 +kerning first=1070 second=1174 amount=-3 +kerning first=1070 second=1184 amount=-2 +kerning first=1070 second=1198 amount=-3 +kerning first=1070 second=1202 amount=-3 +kerning first=1070 second=1298 amount=-1 +kerning first=1070 second=8218 amount=-1 +kerning first=1070 second=8222 amount=-1 +kerning first=1070 second=8230 amount=-1 +kerning first=1072 second=34 amount=-1 +kerning first=1072 second=39 amount=-1 +kerning first=1072 second=63 amount=-2 +kerning first=1072 second=102 amount=-1 +kerning first=1072 second=106 amount=1 +kerning first=1072 second=118 amount=-1 +kerning first=1072 second=119 amount=-1 +kerning first=1072 second=373 amount=-1 +kerning first=1072 second=947 amount=-1 +kerning first=1072 second=957 amount=-1 +kerning first=1072 second=964 amount=-1 +kerning first=1072 second=1090 amount=-1 +kerning first=1072 second=1098 amount=-1 +kerning first=1072 second=1112 amount=1 +kerning first=1072 second=1185 amount=-1 +kerning first=1072 second=1199 amount=-1 +kerning first=1072 second=8216 amount=-1 +kerning first=1072 second=8217 amount=-1 +kerning first=1072 second=8220 amount=-1 +kerning first=1072 second=8221 amount=-1 +kerning first=1073 second=120 amount=-2 +kerning first=1073 second=964 amount=-1 +kerning first=1073 second=1076 amount=-1 +kerning first=1073 second=1078 amount=-2 +kerning first=1073 second=1083 amount=-1 +kerning first=1073 second=1090 amount=-1 +kerning first=1073 second=1093 amount=-2 +kerning first=1073 second=1098 amount=-1 +kerning first=1073 second=1113 amount=-1 +kerning first=1073 second=1175 amount=-2 +kerning first=1073 second=1185 amount=-1 +kerning first=1073 second=1203 amount=-2 +kerning first=1073 second=1299 amount=-1 +kerning first=1074 second=63 amount=-1 +kerning first=1074 second=120 amount=-1 +kerning first=1074 second=1078 amount=-1 +kerning first=1074 second=1093 amount=-1 kerning first=1074 second=1175 amount=-1 -kerning first=1081 second=121 amount=-1 -kerning first=325 second=243 amount=-1 -kerning first=900 second=373 amount=-4 -kerning first=108 second=269 amount=-1 -kerning first=968 second=232 amount=-1 -kerning first=274 second=332 amount=-2 -kerning first=8217 second=47 amount=-2 -kerning first=46 second=216 amount=-1 -kerning first=1047 second=374 amount=-2 -kerning first=189 second=106 amount=1 -kerning first=69 second=118 amount=-4 -kerning first=1087 second=71 amount=-2 -kerning first=206 second=962 amount=-1 -kerning first=8377 second=351 amount=-1 -kerning first=89 second=283 amount=-4 -kerning first=1119 second=233 amount=-1 -kerning first=946 second=245 amount=-1 -kerning first=375 second=257 amount=-1 -kerning first=372 second=949 amount=-3 -kerning first=966 second=1299 amount=-1 -kerning first=165 second=359 amount=-1 -kerning first=168 second=119 amount=-4 -kerning first=278 second=271 amount=-1 -kerning first=281 second=44 amount=-1 -kerning first=47 second=371 amount=-1 -kerning first=1064 second=84 amount=-5 -kerning first=190 second=286 amount=-2 -kerning first=187 second=1026 amount=-3 -kerning first=67 second=1046 amount=-2 -kerning first=1090 second=246 amount=-1 -kerning first=8378 second=1035 amount=-5 -kerning first=910 second=258 amount=-5 -kerning first=93 second=230 amount=-1 -kerning first=356 second=273 amount=-3 -kerning first=110 second=947 amount=-1 -kerning first=113 second=372 amount=-5 -kerning first=1202 second=8249 amount=-1 -kerning first=256 second=287 amount=-1 -kerning first=973 second=335 amount=-1 -kerning first=1027 second=97 amount=-1 -kerning first=282 second=219 amount=-2 -kerning first=48 second=1069 amount=-1 -kerning first=54 second=81 amount=-2 -kerning first=1068 second=34 amount=-2 -kerning first=194 second=231 amount=-1 -kerning first=306 second=361 amount=-1 -kerning first=74 second=243 amount=-1 -kerning first=214 second=373 amount=-4 -kerning first=211 second=1202 amount=-3 -kerning first=91 second=1263 amount=-1 -kerning first=1174 second=336 amount=-1 -kerning first=952 second=350 amount=-1 -kerning first=260 second=232 amount=-1 -kerning first=174 second=244 amount=-1 -kerning first=55 second=256 amount=-5 -kerning first=8240 second=87 amount=-5 -kerning first=316 second=71 amount=-2 -kerning first=212 second=8230 amount=-1 -kerning first=221 second=83 amount=-1 -kerning first=912 second=1177 amount=-1 -kerning first=361 second=375 amount=-1 -kerning first=956 second=290 amount=-2 -kerning first=118 second=949 amount=-1 -kerning first=121 second=257 amount=-1 -kerning first=1299 second=210 amount=-2 -kerning first=36 second=271 amount=-1 -kerning first=39 second=44 amount=-1 -kerning first=294 second=84 amount=-5 -kerning first=196 second=1090 amount=-3 -kerning first=317 second=246 amount=-1 -kerning first=8364 second=199 amount=-2 -kerning first=1099 second=1035 amount=-5 -kerning first=222 second=258 amount=-2 -kerning first=915 second=8212 amount=-2 -kerning first=923 second=1059 amount=-2 -kerning first=105 second=45 amount=-2 -kerning first=102 second=273 amount=-1 -kerning first=962 second=235 amount=-1 -kerning first=40 second=219 amount=-2 -kerning first=176 second=1108 amount=-1 -kerning first=179 second=347 amount=-1 -kerning first=298 second=34 amount=-3 -kerning first=60 second=361 amount=-1 -kerning first=63 second=121 amount=-1 -kerning first=1068 second=8216 amount=-2 -kerning first=200 second=965 amount=-1 -kerning first=8365 second=354 amount=-5 -kerning first=80 second=1028 amount=-2 -kerning first=243 second=1113 amount=-1 -kerning first=947 second=171 amount=-1 -kerning first=123 second=1176 amount=-1 -kerning first=126 second=362 amount=-2 -kerning first=1298 second=8217 amount=-3 -kerning first=271 second=275 amount=-1 -kerning first=275 second=47 amount=-1 -kerning first=38 second=1203 amount=-2 -kerning first=41 second=374 amount=-5 -kerning first=1048 second=87 amount=-5 -kerning first=184 second=289 amount=-1 -kerning first=8260 second=1185 amount=-3 +kerning first=1074 second=1203 amount=-1 +kerning first=1075 second=44 amount=-3 +kerning first=1075 second=46 amount=-3 +kerning first=1075 second=47 amount=-2 +kerning first=1075 second=99 amount=-1 +kerning first=1075 second=100 amount=-1 +kerning first=1075 second=101 amount=-1 +kerning first=1075 second=111 amount=-1 +kerning first=1075 second=113 amount=-1 +kerning first=1075 second=231 amount=-1 +kerning first=1075 second=232 amount=-1 +kerning first=1075 second=233 amount=-1 +kerning first=1075 second=234 amount=-1 +kerning first=1075 second=235 amount=-1 +kerning first=1075 second=240 amount=-1 +kerning first=1075 second=242 amount=-1 +kerning first=1075 second=243 amount=-1 +kerning first=1075 second=244 amount=-1 +kerning first=1075 second=245 amount=-1 +kerning first=1075 second=246 amount=-1 +kerning first=1075 second=248 amount=-1 +kerning first=1075 second=263 amount=-1 +kerning first=1075 second=267 amount=-1 +kerning first=1075 second=269 amount=-1 +kerning first=1075 second=271 amount=-1 +kerning first=1075 second=273 amount=-1 +kerning first=1075 second=275 amount=-1 +kerning first=1075 second=277 amount=-1 +kerning first=1075 second=279 amount=-1 +kerning first=1075 second=281 amount=-1 +kerning first=1075 second=283 amount=-1 +kerning first=1075 second=333 amount=-1 +kerning first=1075 second=335 amount=-1 +kerning first=1075 second=337 amount=-1 +kerning first=1075 second=339 amount=-1 +kerning first=1075 second=940 amount=-1 +kerning first=1075 second=941 amount=-1 +kerning first=1075 second=945 amount=-1 +kerning first=1075 second=949 amount=-1 +kerning first=1075 second=955 amount=-4 +kerning first=1075 second=959 amount=-1 +kerning first=1075 second=962 amount=-1 +kerning first=1075 second=963 amount=-1 +kerning first=1075 second=966 amount=-1 +kerning first=1075 second=972 amount=-1 +kerning first=1075 second=1076 amount=-3 +kerning first=1075 second=1077 amount=-1 +kerning first=1075 second=1083 amount=-3 +kerning first=1075 second=1086 amount=-1 +kerning first=1075 second=1089 amount=-1 +kerning first=1075 second=1092 amount=-1 +kerning first=1075 second=1104 amount=-1 +kerning first=1075 second=1105 amount=-1 +kerning first=1075 second=1108 amount=-1 +kerning first=1075 second=1113 amount=-3 +kerning first=1075 second=1195 amount=-1 +kerning first=1075 second=1241 amount=-1 +kerning first=1075 second=1257 amount=-1 +kerning first=1075 second=1299 amount=-3 +kerning first=1075 second=8218 amount=-3 +kerning first=1075 second=8222 amount=-3 +kerning first=1075 second=8230 amount=-3 +kerning first=1076 second=99 amount=-1 +kerning first=1076 second=100 amount=-1 +kerning first=1076 second=101 amount=-1 +kerning first=1076 second=111 amount=-1 +kerning first=1076 second=113 amount=-1 +kerning first=1076 second=231 amount=-1 +kerning first=1076 second=232 amount=-1 +kerning first=1076 second=233 amount=-1 +kerning first=1076 second=234 amount=-1 +kerning first=1076 second=235 amount=-1 +kerning first=1076 second=240 amount=-1 +kerning first=1076 second=242 amount=-1 +kerning first=1076 second=243 amount=-1 +kerning first=1076 second=244 amount=-1 +kerning first=1076 second=245 amount=-1 +kerning first=1076 second=246 amount=-1 +kerning first=1076 second=248 amount=-1 +kerning first=1076 second=263 amount=-1 +kerning first=1076 second=267 amount=-1 +kerning first=1076 second=269 amount=-1 +kerning first=1076 second=271 amount=-1 +kerning first=1076 second=273 amount=-1 +kerning first=1076 second=275 amount=-1 +kerning first=1076 second=277 amount=-1 +kerning first=1076 second=279 amount=-1 +kerning first=1076 second=281 amount=-1 +kerning first=1076 second=283 amount=-1 +kerning first=1076 second=333 amount=-1 +kerning first=1076 second=335 amount=-1 +kerning first=1076 second=337 amount=-1 +kerning first=1076 second=339 amount=-1 kerning first=1076 second=940 amount=-1 -kerning first=1080 second=249 amount=-1 -kerning first=207 second=221 amount=-5 -kerning first=8366 second=1038 amount=-2 -kerning first=327 second=111 amount=-1 -kerning first=902 second=261 amount=-1 -kerning first=87 second=233 amount=-3 -kerning first=250 second=290 amount=-2 -kerning first=967 second=338 amount=-2 -kerning first=124 second=8211 amount=-2 -kerning first=48 second=84 amount=-5 -kerning first=1049 second=262 amount=-2 -kerning first=188 second=234 amount=-1 -kerning first=300 second=364 amount=-2 -kerning first=1085 second=199 amount=-2 -kerning first=208 second=376 amount=-3 -kerning first=325 second=1035 amount=-5 -kerning first=906 second=211 amount=-2 -kerning first=1118 second=339 amount=-1 -kerning first=1169 second=101 amount=-1 -kerning first=105 second=8249 amount=-3 -kerning first=1210 second=263 amount=-1 -kerning first=254 second=235 amount=-1 -kerning first=374 second=365 amount=-2 -kerning first=49 second=259 amount=-1 -kerning first=52 second=34 amount=-1 -kerning first=1063 second=212 amount=-2 -kerning first=298 second=8216 amount=-3 -kerning first=1083 second=1118 amount=-1 -kerning first=1087 second=354 amount=-5 -kerning first=206 second=8250 amount=-1 -kerning first=904 second=1184 amount=-5 -kerning first=92 second=336 amount=-2 -kerning first=1119 second=970 amount=-1 -kerning first=1170 second=279 amount=-1 -kerning first=358 second=171 amount=-3 -kerning first=1224 second=213 amount=-2 -kerning first=1026 second=225 amount=-1 -kerning first=171 second=197 amount=-1 -kerning first=286 second=87 amount=-1 -kerning first=1064 second=367 amount=-1 -kerning first=193 second=337 amount=-1 -kerning first=196 second=99 amount=-1 -kerning first=305 second=940 amount=-1 -kerning first=310 second=249 amount=-1 -kerning first=70 second=1114 amount=-1 -kerning first=73 second=351 amount=-1 -kerning first=76 second=111 amount=-1 -kerning first=1176 second=226 amount=-1 -kerning first=356 second=1078 amount=-1 -kerning first=379 second=941 amount=-1 -kerning first=172 second=352 amount=-1 -kerning first=287 second=262 amount=-2 -kerning first=54 second=364 amount=-2 -kerning first=1062 second=8220 amount=-2 -kerning first=194 second=968 amount=-1 -kerning first=197 second=277 amount=-1 -kerning first=315 second=199 amount=-1 -kerning first=74 second=1035 amount=-5 -kerning first=77 second=291 amount=-1 -kerning first=335 second=1098 amount=-1 -kerning first=338 second=339 amount=-1 -kerning first=341 second=101 amount=-1 -kerning first=926 second=251 amount=-1 -kerning first=240 second=353 amount=-1 -kerning first=363 second=263 amount=-1 -kerning first=1223 second=8221 amount=-3 -kerning first=291 second=212 amount=-2 -kerning first=8225 second=1194 amount=-2 -kerning first=8240 second=370 amount=-2 -kerning first=52 second=8216 amount=-1 -kerning first=1073 second=252 amount=-1 -kerning first=201 second=224 amount=-1 -kerning first=313 second=1118 amount=-1 -kerning first=316 second=354 amount=-5 -kerning first=8366 second=67 amount=-2 -kerning first=101 second=378 amount=-1 -kerning first=367 second=213 amount=-2 -kerning first=964 second=103 amount=-1 -kerning first=42 second=87 amount=-5 -kerning first=1039 second=267 amount=-1 -kerning first=289 second=1185 amount=-3 -kerning first=294 second=367 amount=-1 -kerning first=62 second=249 amount=-1 -kerning first=59 second=940 amount=-1 -kerning first=317 second=1038 amount=-2 -kerning first=8369 second=242 amount=-1 -kerning first=900 second=214 amount=-2 -kerning first=219 second=8218 amount=-1 -kerning first=942 second=116 amount=-1 -kerning first=962 second=972 amount=-1 -kerning first=965 second=281 amount=-1 -kerning first=161 second=250 amount=-1 -kerning first=125 second=941 amount=-1 -kerning first=43 second=262 amount=-2 -kerning first=183 second=1241 amount=-1 -kerning first=186 second=187 amount=-1 -kerning first=1083 second=117 amount=-1 -kerning first=203 second=1079 amount=-1 -kerning first=209 second=89 amount=-5 -kerning first=901 second=369 amount=-1 -kerning first=86 second=339 amount=-3 -kerning first=89 second=101 amount=-4 -kerning first=1206 second=216 amount=-1 -kerning first=369 second=1066 amount=-5 -kerning first=47 second=212 amount=-1 -kerning first=1048 second=370 amount=-2 -kerning first=1044 second=1194 amount=-1 -kerning first=299 second=943 amount=-1 -kerning first=302 second=252 amount=-1 -kerning first=64 second=1118 amount=-1 -kerning first=70 second=114 amount=-1 -kerning first=67 second=354 amount=-1 -kerning first=910 second=79 amount=-3 -kerning first=90 second=279 amount=-1 -kerning first=1168 second=229 amount=-1 -kerning first=944 second=920 amount=-2 -kerning first=113 second=213 amount=-2 -kerning first=1202 second=1195 amount=-1 -kerning first=256 second=103 amount=-1 -kerning first=376 second=253 amount=-2 -kerning first=967 second=1257 amount=-1 -kerning first=166 second=355 amount=-1 -kerning first=169 second=115 amount=-1 -kerning first=48 second=367 amount=-1 +kerning first=1076 second=941 amount=-1 +kerning first=1076 second=945 amount=-1 +kerning first=1076 second=949 amount=-1 +kerning first=1076 second=959 amount=-1 +kerning first=1076 second=962 amount=-1 +kerning first=1076 second=963 amount=-1 +kerning first=1076 second=964 amount=-2 +kerning first=1076 second=966 amount=-1 +kerning first=1076 second=972 amount=-1 +kerning first=1076 second=1073 amount=-1 +kerning first=1076 second=1077 amount=-1 +kerning first=1076 second=1086 amount=-1 +kerning first=1076 second=1089 amount=-1 +kerning first=1076 second=1090 amount=-2 +kerning first=1076 second=1092 amount=-1 +kerning first=1076 second=1095 amount=-2 +kerning first=1076 second=1098 amount=-2 +kerning first=1076 second=1104 amount=-1 +kerning first=1076 second=1105 amount=-1 +kerning first=1076 second=1108 amount=-1 +kerning first=1076 second=1185 amount=-2 +kerning first=1076 second=1195 amount=-1 +kerning first=1076 second=1241 amount=-1 +kerning first=1076 second=1257 amount=-1 +kerning first=1077 second=34 amount=-1 +kerning first=1077 second=39 amount=-1 +kerning first=1077 second=44 amount=-1 +kerning first=1077 second=46 amount=-1 +kerning first=1077 second=47 amount=-1 +kerning first=1077 second=63 amount=-2 +kerning first=1077 second=102 amount=-1 +kerning first=1077 second=118 amount=-1 +kerning first=1077 second=119 amount=-1 +kerning first=1077 second=120 amount=-2 +kerning first=1077 second=122 amount=-1 +kerning first=1077 second=373 amount=-1 +kerning first=1077 second=378 amount=-1 +kerning first=1077 second=380 amount=-1 +kerning first=1077 second=382 amount=-1 +kerning first=1077 second=947 amount=-1 +kerning first=1077 second=955 amount=-1 +kerning first=1077 second=957 amount=-1 +kerning first=1077 second=964 amount=-1 +kerning first=1077 second=967 amount=-2 +kerning first=1077 second=1076 amount=-1 +kerning first=1077 second=1078 amount=-2 +kerning first=1077 second=1083 amount=-1 +kerning first=1077 second=1090 amount=-1 +kerning first=1077 second=1093 amount=-2 +kerning first=1077 second=1098 amount=-1 +kerning first=1077 second=1113 amount=-1 +kerning first=1077 second=1175 amount=-2 +kerning first=1077 second=1185 amount=-1 +kerning first=1077 second=1199 amount=-1 +kerning first=1077 second=1203 amount=-2 +kerning first=1077 second=1299 amount=-1 +kerning first=1077 second=8216 amount=-1 +kerning first=1077 second=8217 amount=-1 +kerning first=1077 second=8218 amount=-1 +kerning first=1077 second=8220 amount=-1 +kerning first=1077 second=8221 amount=-1 +kerning first=1077 second=8222 amount=-1 +kerning first=1077 second=8230 amount=-1 +kerning first=1078 second=45 amount=-3 +kerning first=1078 second=97 amount=-1 +kerning first=1078 second=99 amount=-2 +kerning first=1078 second=100 amount=-2 +kerning first=1078 second=101 amount=-2 +kerning first=1078 second=103 amount=-1 +kerning first=1078 second=111 amount=-2 +kerning first=1078 second=113 amount=-2 +kerning first=1078 second=115 amount=-1 +kerning first=1078 second=171 amount=-2 +kerning first=1078 second=173 amount=-3 +kerning first=1078 second=187 amount=-1 +kerning first=1078 second=224 amount=-1 +kerning first=1078 second=225 amount=-1 +kerning first=1078 second=226 amount=-1 +kerning first=1078 second=227 amount=-1 +kerning first=1078 second=228 amount=-1 +kerning first=1078 second=229 amount=-1 +kerning first=1078 second=230 amount=-1 +kerning first=1078 second=231 amount=-2 +kerning first=1078 second=232 amount=-2 +kerning first=1078 second=233 amount=-2 +kerning first=1078 second=234 amount=-2 +kerning first=1078 second=235 amount=-2 +kerning first=1078 second=240 amount=-2 +kerning first=1078 second=242 amount=-2 +kerning first=1078 second=243 amount=-2 +kerning first=1078 second=244 amount=-2 +kerning first=1078 second=245 amount=-2 +kerning first=1078 second=246 amount=-2 +kerning first=1078 second=248 amount=-2 +kerning first=1078 second=257 amount=-1 +kerning first=1078 second=259 amount=-1 +kerning first=1078 second=261 amount=-1 +kerning first=1078 second=263 amount=-2 +kerning first=1078 second=267 amount=-2 +kerning first=1078 second=269 amount=-2 +kerning first=1078 second=271 amount=-2 +kerning first=1078 second=273 amount=-2 +kerning first=1078 second=275 amount=-2 +kerning first=1078 second=277 amount=-2 +kerning first=1078 second=279 amount=-2 +kerning first=1078 second=281 amount=-2 +kerning first=1078 second=283 amount=-2 +kerning first=1078 second=287 amount=-1 +kerning first=1078 second=289 amount=-1 +kerning first=1078 second=291 amount=-1 +kerning first=1078 second=333 amount=-2 +kerning first=1078 second=335 amount=-2 +kerning first=1078 second=337 amount=-2 +kerning first=1078 second=339 amount=-2 +kerning first=1078 second=347 amount=-1 +kerning first=1078 second=351 amount=-1 +kerning first=1078 second=353 amount=-1 +kerning first=1078 second=940 amount=-2 +kerning first=1078 second=941 amount=-2 +kerning first=1078 second=945 amount=-2 +kerning first=1078 second=949 amount=-2 +kerning first=1078 second=959 amount=-2 +kerning first=1078 second=962 amount=-2 +kerning first=1078 second=963 amount=-2 +kerning first=1078 second=966 amount=-2 +kerning first=1078 second=969 amount=-1 +kerning first=1078 second=972 amount=-2 +kerning first=1078 second=974 amount=-1 +kerning first=1078 second=1072 amount=-1 +kerning first=1078 second=1073 amount=-1 +kerning first=1078 second=1077 amount=-2 +kerning first=1078 second=1086 amount=-2 +kerning first=1078 second=1089 amount=-2 +kerning first=1078 second=1092 amount=-2 +kerning first=1078 second=1095 amount=-1 +kerning first=1078 second=1104 amount=-2 +kerning first=1078 second=1105 amount=-2 +kerning first=1078 second=1108 amount=-2 +kerning first=1078 second=1109 amount=-1 +kerning first=1078 second=1195 amount=-2 +kerning first=1078 second=1241 amount=-2 +kerning first=1078 second=1257 amount=-2 +kerning first=1078 second=8211 amount=-3 +kerning first=1078 second=8212 amount=-3 +kerning first=1078 second=8249 amount=-2 +kerning first=1078 second=8250 amount=-1 +kerning first=1079 second=120 amount=-1 +kerning first=1079 second=964 amount=-1 +kerning first=1079 second=1078 amount=-1 +kerning first=1079 second=1090 amount=-1 +kerning first=1079 second=1093 amount=-1 +kerning first=1079 second=1098 amount=-1 +kerning first=1079 second=1175 amount=-1 +kerning first=1079 second=1185 amount=-1 +kerning first=1079 second=1203 amount=-1 +kerning first=1082 second=45 amount=-3 +kerning first=1082 second=97 amount=-1 +kerning first=1082 second=99 amount=-2 +kerning first=1082 second=100 amount=-2 +kerning first=1082 second=101 amount=-2 +kerning first=1082 second=103 amount=-2 +kerning first=1082 second=106 amount=1 +kerning first=1082 second=111 amount=-2 +kerning first=1082 second=113 amount=-2 +kerning first=1082 second=115 amount=-1 +kerning first=1082 second=173 amount=-3 +kerning first=1082 second=224 amount=-1 +kerning first=1082 second=225 amount=-1 +kerning first=1082 second=226 amount=-1 +kerning first=1082 second=227 amount=-1 +kerning first=1082 second=228 amount=-1 +kerning first=1082 second=229 amount=-1 +kerning first=1082 second=230 amount=-1 +kerning first=1082 second=231 amount=-2 +kerning first=1082 second=232 amount=-2 +kerning first=1082 second=233 amount=-2 +kerning first=1082 second=234 amount=-2 +kerning first=1082 second=235 amount=-2 +kerning first=1082 second=240 amount=-2 +kerning first=1082 second=242 amount=-2 +kerning first=1082 second=243 amount=-2 +kerning first=1082 second=244 amount=-2 +kerning first=1082 second=245 amount=-2 +kerning first=1082 second=246 amount=-2 +kerning first=1082 second=248 amount=-2 +kerning first=1082 second=257 amount=-1 +kerning first=1082 second=259 amount=-1 +kerning first=1082 second=261 amount=-1 +kerning first=1082 second=263 amount=-2 +kerning first=1082 second=267 amount=-2 +kerning first=1082 second=269 amount=-2 +kerning first=1082 second=271 amount=-2 +kerning first=1082 second=273 amount=-2 +kerning first=1082 second=275 amount=-2 +kerning first=1082 second=277 amount=-2 +kerning first=1082 second=279 amount=-2 +kerning first=1082 second=281 amount=-2 +kerning first=1082 second=283 amount=-2 +kerning first=1082 second=287 amount=-2 +kerning first=1082 second=289 amount=-2 +kerning first=1082 second=291 amount=-2 +kerning first=1082 second=333 amount=-2 +kerning first=1082 second=335 amount=-2 +kerning first=1082 second=337 amount=-2 +kerning first=1082 second=339 amount=-2 +kerning first=1082 second=347 amount=-1 +kerning first=1082 second=351 amount=-1 +kerning first=1082 second=353 amount=-1 +kerning first=1082 second=940 amount=-2 +kerning first=1082 second=941 amount=-2 +kerning first=1082 second=945 amount=-2 +kerning first=1082 second=949 amount=-2 +kerning first=1082 second=959 amount=-2 +kerning first=1082 second=962 amount=-2 +kerning first=1082 second=963 amount=-2 +kerning first=1082 second=966 amount=-2 +kerning first=1082 second=972 amount=-2 +kerning first=1082 second=1072 amount=-1 +kerning first=1082 second=1077 amount=-2 +kerning first=1082 second=1086 amount=-2 +kerning first=1082 second=1089 amount=-2 +kerning first=1082 second=1092 amount=-2 +kerning first=1082 second=1104 amount=-2 +kerning first=1082 second=1105 amount=-2 +kerning first=1082 second=1108 amount=-2 +kerning first=1082 second=1109 amount=-1 +kerning first=1082 second=1112 amount=1 +kerning first=1082 second=1195 amount=-2 +kerning first=1082 second=1241 amount=-2 +kerning first=1082 second=1257 amount=-2 +kerning first=1082 second=8211 amount=-3 +kerning first=1082 second=8212 amount=-3 +kerning first=1086 second=34 amount=-1 +kerning first=1086 second=39 amount=-1 +kerning first=1086 second=44 amount=-1 +kerning first=1086 second=46 amount=-1 +kerning first=1086 second=47 amount=-1 +kerning first=1086 second=63 amount=-2 +kerning first=1086 second=102 amount=-1 +kerning first=1086 second=118 amount=-1 +kerning first=1086 second=119 amount=-1 +kerning first=1086 second=120 amount=-2 +kerning first=1086 second=122 amount=-1 +kerning first=1086 second=373 amount=-1 +kerning first=1086 second=378 amount=-1 +kerning first=1086 second=380 amount=-1 +kerning first=1086 second=382 amount=-1 +kerning first=1086 second=947 amount=-1 +kerning first=1086 second=955 amount=-1 +kerning first=1086 second=957 amount=-1 +kerning first=1086 second=964 amount=-1 +kerning first=1086 second=967 amount=-2 +kerning first=1086 second=1076 amount=-1 +kerning first=1086 second=1078 amount=-2 +kerning first=1086 second=1083 amount=-1 +kerning first=1086 second=1090 amount=-1 +kerning first=1086 second=1093 amount=-2 +kerning first=1086 second=1098 amount=-1 +kerning first=1086 second=1113 amount=-1 +kerning first=1086 second=1175 amount=-2 +kerning first=1086 second=1185 amount=-1 +kerning first=1086 second=1199 amount=-1 +kerning first=1086 second=1203 amount=-2 +kerning first=1086 second=1299 amount=-1 +kerning first=1086 second=8216 amount=-1 +kerning first=1086 second=8217 amount=-1 +kerning first=1086 second=8218 amount=-1 +kerning first=1086 second=8220 amount=-1 +kerning first=1086 second=8221 amount=-1 +kerning first=1086 second=8222 amount=-1 +kerning first=1086 second=8230 amount=-1 +kerning first=1088 second=34 amount=-1 +kerning first=1088 second=39 amount=-1 +kerning first=1088 second=44 amount=-1 +kerning first=1088 second=46 amount=-1 +kerning first=1088 second=47 amount=-1 +kerning first=1088 second=63 amount=-2 +kerning first=1088 second=102 amount=-1 +kerning first=1088 second=118 amount=-1 +kerning first=1088 second=119 amount=-1 +kerning first=1088 second=120 amount=-2 +kerning first=1088 second=122 amount=-1 +kerning first=1088 second=373 amount=-1 +kerning first=1088 second=378 amount=-1 +kerning first=1088 second=380 amount=-1 +kerning first=1088 second=382 amount=-1 +kerning first=1088 second=947 amount=-1 +kerning first=1088 second=955 amount=-1 +kerning first=1088 second=957 amount=-1 +kerning first=1088 second=964 amount=-1 +kerning first=1088 second=967 amount=-2 +kerning first=1088 second=1076 amount=-1 +kerning first=1088 second=1078 amount=-2 +kerning first=1088 second=1083 amount=-1 +kerning first=1088 second=1090 amount=-1 +kerning first=1088 second=1093 amount=-2 +kerning first=1088 second=1098 amount=-1 +kerning first=1088 second=1113 amount=-1 +kerning first=1088 second=1175 amount=-2 +kerning first=1088 second=1185 amount=-1 +kerning first=1088 second=1199 amount=-1 +kerning first=1088 second=1203 amount=-2 +kerning first=1088 second=1299 amount=-1 +kerning first=1088 second=8216 amount=-1 +kerning first=1088 second=8217 amount=-1 +kerning first=1088 second=8218 amount=-1 +kerning first=1088 second=8220 amount=-1 +kerning first=1088 second=8221 amount=-1 +kerning first=1088 second=8222 amount=-1 +kerning first=1088 second=8230 amount=-1 +kerning first=1089 second=34 amount=-1 +kerning first=1089 second=39 amount=-1 +kerning first=1089 second=63 amount=-1 +kerning first=1089 second=118 amount=-1 +kerning first=1089 second=119 amount=-1 +kerning first=1089 second=120 amount=-1 +kerning first=1089 second=373 amount=-1 +kerning first=1089 second=947 amount=-1 +kerning first=1089 second=955 amount=-1 +kerning first=1089 second=957 amount=-1 +kerning first=1089 second=1078 amount=-1 +kerning first=1089 second=1093 amount=-1 +kerning first=1089 second=1175 amount=-1 +kerning first=1089 second=1199 amount=-1 +kerning first=1089 second=1203 amount=-1 +kerning first=1089 second=8216 amount=-1 +kerning first=1089 second=8217 amount=-1 +kerning first=1089 second=8220 amount=-1 +kerning first=1089 second=8221 amount=-1 +kerning first=1090 second=44 amount=-3 +kerning first=1090 second=46 amount=-3 +kerning first=1090 second=47 amount=-2 +kerning first=1090 second=99 amount=-1 +kerning first=1090 second=100 amount=-1 +kerning first=1090 second=101 amount=-1 +kerning first=1090 second=111 amount=-1 +kerning first=1090 second=113 amount=-1 +kerning first=1090 second=231 amount=-1 +kerning first=1090 second=232 amount=-1 +kerning first=1090 second=233 amount=-1 +kerning first=1090 second=234 amount=-1 +kerning first=1090 second=235 amount=-1 +kerning first=1090 second=240 amount=-1 +kerning first=1090 second=242 amount=-1 +kerning first=1090 second=243 amount=-1 +kerning first=1090 second=244 amount=-1 +kerning first=1090 second=245 amount=-1 +kerning first=1090 second=246 amount=-1 +kerning first=1090 second=248 amount=-1 +kerning first=1090 second=263 amount=-1 +kerning first=1090 second=267 amount=-1 +kerning first=1090 second=269 amount=-1 +kerning first=1090 second=271 amount=-1 +kerning first=1090 second=273 amount=-1 +kerning first=1090 second=275 amount=-1 +kerning first=1090 second=277 amount=-1 +kerning first=1090 second=279 amount=-1 +kerning first=1090 second=281 amount=-1 +kerning first=1090 second=283 amount=-1 +kerning first=1090 second=333 amount=-1 +kerning first=1090 second=335 amount=-1 +kerning first=1090 second=337 amount=-1 +kerning first=1090 second=339 amount=-1 +kerning first=1090 second=940 amount=-1 +kerning first=1090 second=941 amount=-1 +kerning first=1090 second=945 amount=-1 +kerning first=1090 second=949 amount=-1 +kerning first=1090 second=955 amount=-4 +kerning first=1090 second=959 amount=-1 +kerning first=1090 second=962 amount=-1 +kerning first=1090 second=963 amount=-1 +kerning first=1090 second=966 amount=-1 +kerning first=1090 second=972 amount=-1 +kerning first=1090 second=1076 amount=-3 +kerning first=1090 second=1077 amount=-1 +kerning first=1090 second=1083 amount=-3 +kerning first=1090 second=1086 amount=-1 +kerning first=1090 second=1089 amount=-1 +kerning first=1090 second=1092 amount=-1 +kerning first=1090 second=1104 amount=-1 +kerning first=1090 second=1105 amount=-1 +kerning first=1090 second=1108 amount=-1 +kerning first=1090 second=1113 amount=-3 +kerning first=1090 second=1195 amount=-1 +kerning first=1090 second=1241 amount=-1 +kerning first=1090 second=1257 amount=-1 +kerning first=1090 second=1299 amount=-3 +kerning first=1090 second=8218 amount=-3 +kerning first=1090 second=8222 amount=-3 +kerning first=1090 second=8230 amount=-3 +kerning first=1091 second=106 amount=7 +kerning first=1091 second=1112 amount=7 +kerning first=1092 second=34 amount=-1 +kerning first=1092 second=39 amount=-1 +kerning first=1092 second=44 amount=-1 +kerning first=1092 second=46 amount=-1 +kerning first=1092 second=47 amount=-1 +kerning first=1092 second=63 amount=-2 +kerning first=1092 second=102 amount=-1 +kerning first=1092 second=118 amount=-1 +kerning first=1092 second=119 amount=-1 +kerning first=1092 second=120 amount=-2 +kerning first=1092 second=122 amount=-1 +kerning first=1092 second=373 amount=-1 +kerning first=1092 second=378 amount=-1 +kerning first=1092 second=380 amount=-1 +kerning first=1092 second=382 amount=-1 +kerning first=1092 second=947 amount=-1 +kerning first=1092 second=955 amount=-1 +kerning first=1092 second=957 amount=-1 +kerning first=1092 second=964 amount=-1 +kerning first=1092 second=967 amount=-2 +kerning first=1092 second=1076 amount=-1 +kerning first=1092 second=1078 amount=-2 +kerning first=1092 second=1083 amount=-1 +kerning first=1092 second=1090 amount=-1 +kerning first=1092 second=1093 amount=-2 +kerning first=1092 second=1098 amount=-1 +kerning first=1092 second=1113 amount=-1 +kerning first=1092 second=1175 amount=-2 +kerning first=1092 second=1185 amount=-1 +kerning first=1092 second=1199 amount=-1 +kerning first=1092 second=1203 amount=-2 +kerning first=1092 second=1299 amount=-1 +kerning first=1092 second=8216 amount=-1 +kerning first=1092 second=8217 amount=-1 +kerning first=1092 second=8218 amount=-1 +kerning first=1092 second=8220 amount=-1 +kerning first=1092 second=8221 amount=-1 +kerning first=1092 second=8222 amount=-1 +kerning first=1092 second=8230 amount=-1 +kerning first=1093 second=45 amount=-3 +kerning first=1093 second=97 amount=-1 +kerning first=1093 second=99 amount=-2 +kerning first=1093 second=100 amount=-2 +kerning first=1093 second=101 amount=-2 +kerning first=1093 second=103 amount=-1 +kerning first=1093 second=111 amount=-2 +kerning first=1093 second=113 amount=-2 +kerning first=1093 second=115 amount=-1 +kerning first=1093 second=171 amount=-2 +kerning first=1093 second=173 amount=-3 +kerning first=1093 second=187 amount=-1 +kerning first=1093 second=224 amount=-1 +kerning first=1093 second=225 amount=-1 +kerning first=1093 second=226 amount=-1 +kerning first=1093 second=227 amount=-1 +kerning first=1093 second=228 amount=-1 +kerning first=1093 second=229 amount=-1 +kerning first=1093 second=230 amount=-1 +kerning first=1093 second=231 amount=-2 +kerning first=1093 second=232 amount=-2 +kerning first=1093 second=233 amount=-2 +kerning first=1093 second=234 amount=-2 +kerning first=1093 second=235 amount=-2 +kerning first=1093 second=240 amount=-2 +kerning first=1093 second=242 amount=-2 +kerning first=1093 second=243 amount=-2 +kerning first=1093 second=244 amount=-2 +kerning first=1093 second=245 amount=-2 +kerning first=1093 second=246 amount=-2 +kerning first=1093 second=248 amount=-2 +kerning first=1093 second=257 amount=-1 +kerning first=1093 second=259 amount=-1 +kerning first=1093 second=261 amount=-1 +kerning first=1093 second=263 amount=-2 +kerning first=1093 second=267 amount=-2 +kerning first=1093 second=269 amount=-2 +kerning first=1093 second=271 amount=-2 +kerning first=1093 second=273 amount=-2 +kerning first=1093 second=275 amount=-2 +kerning first=1093 second=277 amount=-2 +kerning first=1093 second=279 amount=-2 +kerning first=1093 second=281 amount=-2 +kerning first=1093 second=283 amount=-2 +kerning first=1093 second=287 amount=-1 +kerning first=1093 second=289 amount=-1 +kerning first=1093 second=291 amount=-1 +kerning first=1093 second=333 amount=-2 +kerning first=1093 second=335 amount=-2 +kerning first=1093 second=337 amount=-2 +kerning first=1093 second=339 amount=-2 +kerning first=1093 second=347 amount=-1 +kerning first=1093 second=351 amount=-1 +kerning first=1093 second=353 amount=-1 +kerning first=1093 second=940 amount=-2 +kerning first=1093 second=941 amount=-2 +kerning first=1093 second=945 amount=-2 +kerning first=1093 second=949 amount=-2 +kerning first=1093 second=959 amount=-2 +kerning first=1093 second=962 amount=-2 +kerning first=1093 second=963 amount=-2 +kerning first=1093 second=966 amount=-2 +kerning first=1093 second=969 amount=-1 +kerning first=1093 second=972 amount=-2 +kerning first=1093 second=974 amount=-1 +kerning first=1093 second=1072 amount=-1 +kerning first=1093 second=1073 amount=-1 +kerning first=1093 second=1077 amount=-2 +kerning first=1093 second=1086 amount=-2 +kerning first=1093 second=1089 amount=-2 +kerning first=1093 second=1092 amount=-2 +kerning first=1093 second=1095 amount=-1 +kerning first=1093 second=1104 amount=-2 +kerning first=1093 second=1105 amount=-2 +kerning first=1093 second=1108 amount=-2 +kerning first=1093 second=1109 amount=-1 +kerning first=1093 second=1195 amount=-2 +kerning first=1093 second=1241 amount=-2 +kerning first=1093 second=1257 amount=-2 +kerning first=1093 second=8211 amount=-3 +kerning first=1093 second=8212 amount=-3 +kerning first=1093 second=8249 amount=-2 +kerning first=1093 second=8250 amount=-1 +kerning first=1094 second=99 amount=-1 +kerning first=1094 second=100 amount=-1 +kerning first=1094 second=101 amount=-1 +kerning first=1094 second=111 amount=-1 +kerning first=1094 second=113 amount=-1 +kerning first=1094 second=231 amount=-1 +kerning first=1094 second=232 amount=-1 +kerning first=1094 second=233 amount=-1 +kerning first=1094 second=234 amount=-1 +kerning first=1094 second=235 amount=-1 +kerning first=1094 second=240 amount=-1 kerning first=1094 second=242 amount=-1 -kerning first=214 second=214 amount=-2 -kerning first=906 second=945 amount=-1 -kerning first=94 second=226 amount=-1 -kerning first=1118 second=1262 amount=-2 -kerning first=237 second=116 amount=-1 -kerning first=357 second=268 amount=-2 -kerning first=1210 second=1069 amount=-1 -kerning first=254 second=972 amount=-1 -kerning first=46 second=8220 amount=-1 -kerning first=195 second=227 amount=-1 -kerning first=313 second=117 amount=-1 -kerning first=215 second=369 amount=-1 -kerning first=361 second=216 amount=-2 -kerning first=956 second=106 amount=1 -kerning first=112 second=8221 amount=-1 -kerning first=1262 second=256 amount=-2 -kerning first=1026 second=962 amount=-1 -kerning first=175 second=240 amount=-1 -kerning first=171 second=916 amount=-1 -kerning first=53 second=943 amount=-1 -kerning first=56 second=252 amount=-1 -kerning first=193 second=1256 amount=-2 -kerning first=317 second=67 amount=-2 -kerning first=8361 second=245 amount=-1 -kerning first=213 second=8222 amount=-1 -kerning first=923 second=359 amount=-1 -kerning first=931 second=119 amount=-4 -kerning first=1176 second=963 amount=-1 -kerning first=1179 second=271 amount=-1 -kerning first=239 second=920 amount=-2 -kerning first=958 second=286 amount=-2 -kerning first=37 second=267 amount=-1 -kerning first=1037 second=218 amount=-2 -kerning first=8250 second=258 amount=-3 -kerning first=1071 second=360 amount=-2 -kerning first=1068 second=1174 amount=-2 -kerning first=318 second=242 amount=-1 -kerning first=77 second=1101 amount=-1 -kerning first=1103 second=287 amount=-1 -kerning first=338 second=1262 amount=-2 -kerning first=103 second=268 amount=-2 -kerning first=363 second=1069 amount=-1 -kerning first=369 second=81 amount=-2 -kerning first=963 second=231 amount=-1 -kerning first=61 second=357 amount=-1 -kerning first=64 second=117 amount=-1 -kerning first=204 second=269 amount=-1 -kerning first=8366 second=350 amount=-1 -kerning first=1194 second=374 amount=-2 -kerning first=250 second=106 amount=1 -kerning first=370 second=256 amount=-2 -kerning first=163 second=118 amount=-4 -kerning first=42 second=370 amount=-2 -kerning first=1049 second=83 amount=-1 -kerning first=185 second=283 amount=-1 -kerning first=1081 second=245 amount=-1 -kerning first=900 second=949 amount=-1 -kerning first=903 second=257 amount=-1 -kerning first=88 second=229 amount=-1 -kerning first=1107 second=1299 amount=-3 -kerning first=231 second=119 amount=-1 -kerning first=354 second=44 amount=-3 -kerning first=108 second=371 amount=-1 -kerning first=105 second=1195 amount=-1 -kerning first=1210 second=84 amount=-5 -kerning first=251 second=286 amount=-2 -kerning first=965 second=1090 amount=-3 -kerning first=968 second=334 amount=-2 -kerning first=8211 second=376 amount=-4 -kerning first=189 second=230 amount=-1 -kerning first=301 second=360 amount=-2 -kerning first=69 second=242 amount=-1 -kerning first=206 second=947 amount=-4 -kerning first=209 second=372 amount=-5 -kerning first=330 second=287 amount=-1 -kerning first=66 second=923 amount=-1 -kerning first=86 second=1262 amount=-2 -kerning first=89 second=1240 amount=-3 -kerning first=1119 second=335 amount=-1 -kerning first=1170 second=97 amount=-1 -kerning first=946 second=347 amount=-1 -kerning first=950 second=109 amount=-2 -kerning first=1219 second=259 amount=-1 -kerning first=1224 second=34 amount=-3 -kerning first=255 second=231 amount=-1 -kerning first=372 second=1175 amount=-1 -kerning first=375 second=361 amount=-1 -kerning first=168 second=243 amount=-1 -kerning first=278 second=373 amount=-4 -kerning first=8222 second=86 amount=-4 -kerning first=905 second=1176 amount=-1 -kerning first=93 second=332 amount=-2 -kerning first=1168 second=966 amount=-1 -kerning first=1171 second=275 amount=-1 -kerning first=236 second=244 amount=-1 -kerning first=353 second=1203 amount=-1 -kerning first=951 second=289 amount=-1 -kerning first=1027 second=221 amount=-5 -kerning first=287 second=83 amount=-1 -kerning first=8224 second=261 amount=-1 -kerning first=194 second=333 amount=-1 -kerning first=311 second=245 amount=-2 -kerning first=214 second=949 amount=-1 -kerning first=906 second=8211 amount=-2 -kerning first=94 second=963 amount=-1 -kerning first=363 second=84 amount=-5 -kerning first=955 second=234 amount=-1 -kerning first=260 second=334 amount=-2 -kerning first=35 second=218 amount=-2 -kerning first=257 second=1090 amount=-1 -kerning first=1028 second=376 amount=-2 -kerning first=174 second=346 amount=-1 -kerning first=8240 second=211 amount=-2 -kerning first=55 second=360 amount=-2 -kerning first=1063 second=8212 amount=-2 -kerning first=198 second=273 amount=-1 -kerning first=201 second=45 amount=-2 -kerning first=195 second=964 amount=-3 -kerning first=8363 second=113 amount=-1 -kerning first=78 second=287 amount=-1 -kerning first=238 second=1108 amount=-1 -kerning first=367 second=34 amount=-3 -kerning first=121 second=361 amount=-1 -kerning first=1224 second=8216 amount=-3 -kerning first=124 second=121 amount=-1 -kerning first=36 second=373 amount=-4 -kerning first=1026 second=8250 amount=-1 -kerning first=175 second=1028 amount=-2 -kerning first=178 second=288 amount=-2 -kerning first=8226 second=1184 amount=-5 -kerning first=1074 second=248 amount=-1 -kerning first=202 second=220 amount=-2 -kerning first=317 second=350 amount=-1 -kerning first=343 second=275 amount=-1 -kerning first=99 second=1203 amount=-1 -kerning first=962 second=337 amount=-1 -kerning first=965 second=99 amount=-1 -kerning first=161 second=71 amount=-2 -kerning first=270 second=221 amount=-3 -kerning first=43 second=83 amount=-1 -kerning first=1037 second=953 amount=-1 -kerning first=1041 second=261 amount=-1 -kerning first=34 second=8230 amount=-1 -kerning first=183 second=233 amount=-1 -kerning first=63 second=245 amount=-1 -kerning first=203 second=375 amount=-1 -kerning first=323 second=290 amount=-2 -kerning first=901 second=210 amount=-2 -kerning first=1116 second=100 amount=-2 -kerning first=249 second=234 amount=-1 -kerning first=369 second=364 amount=-2 -kerning first=963 second=968 amount=-1 -kerning first=162 second=246 amount=-1 -kerning first=271 second=376 amount=-5 -kerning first=8212 second=89 amount=-4 -kerning first=1048 second=211 amount=-2 -kerning first=291 second=8212 amount=-2 -kerning first=296 second=1059 amount=-2 -kerning first=1084 second=113 amount=-1 -kerning first=1080 second=353 amount=-1 -kerning first=201 second=8249 amount=-3 -kerning first=327 second=235 amount=-1 -kerning first=902 second=365 amount=-1 -kerning first=84 second=1094 amount=-2 -kerning first=87 second=335 amount=-3 -kerning first=113 second=34 amount=-3 -kerning first=367 second=8216 amount=-3 -kerning first=376 second=74 amount=-6 -kerning first=1049 second=366 amount=-2 -kerning first=188 second=336 amount=-2 -kerning first=303 second=248 amount=-1 -kerning first=211 second=260 amount=-2 -kerning first=900 second=8217 amount=-3 -kerning first=88 second=966 amount=-2 -kerning first=91 second=275 amount=-1 -kerning first=354 second=324 amount=-2 -kerning first=357 second=87 amount=-5 -kerning first=1203 second=1185 amount=-2 -kerning first=1210 second=367 amount=-1 -kerning first=254 second=337 amount=-1 -kerning first=374 second=940 amount=-4 -kerning first=170 second=111 amount=-1 -kerning first=167 second=351 amount=-1 -kerning first=280 second=261 amount=-1 -kerning first=49 second=363 amount=-1 -kerning first=72 second=290 amount=-2 -kerning first=215 second=210 amount=-2 -kerning first=912 second=250 amount=-1 -kerning first=358 second=262 amount=-2 -kerning first=950 second=1241 amount=-1 -kerning first=1206 second=8220 amount=-2 -kerning first=255 second=968 amount=-1 -kerning first=258 second=277 amount=-1 -kerning first=381 second=199 amount=-1 -kerning first=168 second=1035 amount=-5 -kerning first=1033 second=89 amount=-5 -kerning first=8222 second=369 amount=-1 -kerning first=47 second=8212 amount=-1 -kerning first=50 second=1059 amount=-2 -kerning first=1067 second=251 amount=-1 -kerning first=314 second=113 amount=-1 -kerning first=76 second=235 amount=-1 -kerning first=113 second=8216 amount=-3 -kerning first=1263 second=252 amount=-1 -kerning first=1037 second=39 amount=-3 -kerning first=282 second=1184 amount=-5 -kerning first=287 second=366 amount=-2 -kerning first=8220 second=8222 amount=-1 -kerning first=57 second=248 amount=-1 -kerning first=200 second=171 amount=-3 -kerning first=1103 second=103 amount=-1 -kerning first=214 second=8217 amount=-3 -kerning first=341 second=225 amount=-1 -kerning first=926 second=355 amount=-1 -kerning first=934 second=115 amount=-1 -kerning first=103 second=87 amount=-5 -kerning first=1184 second=267 amount=-2 -kerning first=363 second=367 amount=-1 -kerning first=123 second=249 amount=-1 -kerning first=120 second=940 amount=-2 -kerning first=38 second=261 amount=-1 -kerning first=35 second=953 amount=-1 -kerning first=283 second=8218 amount=-1 -kerning first=8240 second=945 amount=-1 -kerning first=1073 second=356 amount=-5 -kerning first=84 second=100 amount=-3 -kerning first=221 second=941 amount=-4 -kerning first=247 second=187 amount=-1 -kerning first=361 second=8220 amount=-3 -kerning first=964 second=227 amount=-1 -kerning first=160 second=199 amount=-2 -kerning first=273 second=89 amount=-5 -kerning first=42 second=211 amount=-2 -kerning first=1039 second=369 amount=-1 -kerning first=178 second=1098 amount=-3 -kerning first=182 second=339 amount=-1 -kerning first=185 second=101 amount=-1 -kerning first=297 second=251 amount=-1 -kerning first=62 second=353 amount=-1 -kerning first=65 second=113 amount=-1 -kerning first=205 second=263 amount=-1 -kerning first=942 second=240 amount=-1 -kerning first=108 second=212 amount=-2 -kerning first=1186 second=1194 amount=-1 -kerning first=371 second=252 amount=-1 -kerning first=962 second=1256 amount=-2 -kerning first=125 second=1118 amount=-1 -kerning first=161 second=354 amount=-5 -kerning first=274 second=266 amount=-2 -kerning first=277 second=39 amount=-1 -kerning first=40 second=1184 amount=-5 -kerning first=43 second=366 amount=-2 -kerning first=1051 second=79 amount=-2 -kerning first=186 second=279 amount=-1 -kerning first=183 second=970 amount=-1 -kerning first=209 second=213 amount=-2 -kerning first=8370 second=1026 amount=-5 -kerning first=8377 second=286 amount=-2 -kerning first=330 second=103 amount=-1 -kerning first=904 second=253 amount=-1 -kerning first=89 second=225 amount=-4 -kerning first=966 second=1083 amount=-1 -kerning first=162 second=1038 amount=-2 -kerning first=278 second=214 amount=-2 -kerning first=8212 second=372 amount=-2 -kerning first=1048 second=945 amount=-1 -kerning first=190 second=226 amount=-1 -kerning first=302 second=356 amount=-5 -kerning first=305 second=116 amount=-1 -kerning first=327 second=972 amount=-1 -kerning first=256 second=227 amount=-1 -kerning first=973 second=269 amount=-1 -kerning first=51 second=251 amount=-1 -kerning first=211 second=1066 amount=-2 -kerning first=916 second=118 amount=-4 -kerning first=1169 second=962 amount=-1 -kerning first=237 second=240 amount=-1 -kerning first=357 second=370 amount=-2 -kerning first=354 second=1194 amount=-1 -kerning first=952 second=283 amount=-1 -kerning first=117 second=252 amount=-1 -kerning first=254 second=1256 amount=-2 -kerning first=35 second=39 amount=-3 -kerning first=277 second=8222 amount=-1 -kerning first=8221 second=949 amount=-1 -kerning first=8225 second=257 amount=-1 -kerning first=1095 second=1026 amount=-5 -kerning first=78 second=103 amount=-1 -kerning first=1178 second=218 amount=-1 -kerning first=956 second=230 amount=-1 -kerning first=36 second=214 amount=-2 -kerning first=1026 second=947 amount=-4 -kerning first=56 second=356 amount=-5 -kerning first=59 second=116 amount=-1 -kerning first=8361 second=347 amount=-1 -kerning first=76 second=972 amount=-1 -kerning first=931 second=243 amount=-1 -kerning first=125 second=117 amount=-1 -kerning first=37 second=369 amount=-1 -kerning first=176 second=973 amount=-1 -kerning first=8230 second=1176 amount=-1 -kerning first=1075 second=244 amount=-1 -kerning first=203 second=216 amount=-2 -kerning first=323 second=106 amount=1 -kerning first=8365 second=289 amount=-1 -kerning first=226 second=118 amount=-1 -kerning first=341 second=962 amount=-1 -kerning first=100 second=1194 amount=-2 -kerning first=103 second=370 amount=-2 -kerning first=963 second=333 amount=-1 -kerning first=162 second=67 amount=-2 -kerning first=271 second=217 amount=-2 -kerning first=44 second=79 amount=-1 -kerning first=184 second=229 amount=-1 -kerning first=299 second=119 amount=-4 -kerning first=8240 second=8211 amount=-2 -kerning first=296 second=359 amount=-1 -kerning first=61 second=920 amount=-2 -kerning first=204 second=371 amount=-1 -kerning first=201 second=1195 amount=-1 -kerning first=321 second=1026 amount=-5 -kerning first=8372 second=234 amount=-1 +kerning first=1094 second=243 amount=-1 +kerning first=1094 second=244 amount=-1 +kerning first=1094 second=245 amount=-1 +kerning first=1094 second=246 amount=-1 +kerning first=1094 second=248 amount=-1 +kerning first=1094 second=263 amount=-1 +kerning first=1094 second=267 amount=-1 +kerning first=1094 second=269 amount=-1 +kerning first=1094 second=271 amount=-1 +kerning first=1094 second=273 amount=-1 +kerning first=1094 second=275 amount=-1 +kerning first=1094 second=277 amount=-1 +kerning first=1094 second=279 amount=-1 +kerning first=1094 second=281 amount=-1 +kerning first=1094 second=283 amount=-1 +kerning first=1094 second=333 amount=-1 +kerning first=1094 second=335 amount=-1 +kerning first=1094 second=337 amount=-1 +kerning first=1094 second=339 amount=-1 +kerning first=1094 second=940 amount=-1 +kerning first=1094 second=941 amount=-1 +kerning first=1094 second=945 amount=-1 +kerning first=1094 second=949 amount=-1 +kerning first=1094 second=959 amount=-1 +kerning first=1094 second=962 amount=-1 +kerning first=1094 second=963 amount=-1 +kerning first=1094 second=964 amount=-2 +kerning first=1094 second=966 amount=-1 +kerning first=1094 second=972 amount=-1 +kerning first=1094 second=1073 amount=-1 +kerning first=1094 second=1077 amount=-1 +kerning first=1094 second=1086 amount=-1 +kerning first=1094 second=1089 amount=-1 +kerning first=1094 second=1090 amount=-2 +kerning first=1094 second=1092 amount=-1 +kerning first=1094 second=1095 amount=-2 +kerning first=1094 second=1098 amount=-2 +kerning first=1094 second=1104 amount=-1 +kerning first=1094 second=1105 amount=-1 +kerning first=1094 second=1108 amount=-1 +kerning first=1094 second=1185 amount=-2 +kerning first=1094 second=1195 amount=-1 +kerning first=1094 second=1241 amount=-1 +kerning first=1094 second=1257 amount=-1 +kerning first=1097 second=99 amount=-1 +kerning first=1097 second=100 amount=-1 +kerning first=1097 second=101 amount=-1 +kerning first=1097 second=111 amount=-1 +kerning first=1097 second=113 amount=-1 +kerning first=1097 second=231 amount=-1 +kerning first=1097 second=232 amount=-1 +kerning first=1097 second=233 amount=-1 +kerning first=1097 second=234 amount=-1 +kerning first=1097 second=235 amount=-1 +kerning first=1097 second=240 amount=-1 +kerning first=1097 second=242 amount=-1 +kerning first=1097 second=243 amount=-1 +kerning first=1097 second=244 amount=-1 +kerning first=1097 second=245 amount=-1 +kerning first=1097 second=246 amount=-1 +kerning first=1097 second=248 amount=-1 +kerning first=1097 second=263 amount=-1 +kerning first=1097 second=267 amount=-1 +kerning first=1097 second=269 amount=-1 +kerning first=1097 second=271 amount=-1 +kerning first=1097 second=273 amount=-1 +kerning first=1097 second=275 amount=-1 +kerning first=1097 second=277 amount=-1 +kerning first=1097 second=279 amount=-1 +kerning first=1097 second=281 amount=-1 +kerning first=1097 second=283 amount=-1 +kerning first=1097 second=333 amount=-1 +kerning first=1097 second=335 amount=-1 +kerning first=1097 second=337 amount=-1 +kerning first=1097 second=339 amount=-1 +kerning first=1097 second=940 amount=-1 +kerning first=1097 second=941 amount=-1 +kerning first=1097 second=945 amount=-1 +kerning first=1097 second=949 amount=-1 +kerning first=1097 second=959 amount=-1 +kerning first=1097 second=962 amount=-1 +kerning first=1097 second=963 amount=-1 +kerning first=1097 second=964 amount=-2 +kerning first=1097 second=966 amount=-1 +kerning first=1097 second=972 amount=-1 +kerning first=1097 second=1073 amount=-1 +kerning first=1097 second=1077 amount=-1 +kerning first=1097 second=1086 amount=-1 +kerning first=1097 second=1089 amount=-1 +kerning first=1097 second=1090 amount=-2 +kerning first=1097 second=1092 amount=-1 +kerning first=1097 second=1095 amount=-2 +kerning first=1097 second=1098 amount=-2 +kerning first=1097 second=1104 amount=-1 +kerning first=1097 second=1105 amount=-1 +kerning first=1097 second=1108 amount=-1 +kerning first=1097 second=1185 amount=-2 +kerning first=1097 second=1195 amount=-1 +kerning first=1097 second=1241 amount=-1 +kerning first=1097 second=1257 amount=-1 +kerning first=1098 second=120 amount=-2 +kerning first=1098 second=1078 amount=-2 +kerning first=1098 second=1093 amount=-2 +kerning first=1098 second=1095 amount=-1 +kerning first=1098 second=1175 amount=-2 +kerning first=1098 second=1203 amount=-2 +kerning first=1100 second=120 amount=-2 +kerning first=1100 second=1078 amount=-2 +kerning first=1100 second=1093 amount=-2 +kerning first=1100 second=1095 amount=-1 +kerning first=1100 second=1175 amount=-2 +kerning first=1100 second=1203 amount=-2 +kerning first=1101 second=34 amount=-1 +kerning first=1101 second=39 amount=-1 +kerning first=1101 second=44 amount=-1 +kerning first=1101 second=46 amount=-1 +kerning first=1101 second=47 amount=-1 +kerning first=1101 second=63 amount=-2 +kerning first=1101 second=102 amount=-1 +kerning first=1101 second=118 amount=-1 +kerning first=1101 second=119 amount=-1 +kerning first=1101 second=120 amount=-2 +kerning first=1101 second=122 amount=-1 +kerning first=1101 second=373 amount=-1 +kerning first=1101 second=378 amount=-1 +kerning first=1101 second=380 amount=-1 +kerning first=1101 second=382 amount=-1 +kerning first=1101 second=947 amount=-1 +kerning first=1101 second=955 amount=-1 +kerning first=1101 second=957 amount=-1 +kerning first=1101 second=964 amount=-1 +kerning first=1101 second=967 amount=-2 +kerning first=1101 second=1076 amount=-1 +kerning first=1101 second=1078 amount=-2 +kerning first=1101 second=1083 amount=-1 +kerning first=1101 second=1090 amount=-1 +kerning first=1101 second=1093 amount=-2 +kerning first=1101 second=1098 amount=-1 +kerning first=1101 second=1113 amount=-1 +kerning first=1101 second=1175 amount=-2 +kerning first=1101 second=1185 amount=-1 +kerning first=1101 second=1199 amount=-1 +kerning first=1101 second=1203 amount=-2 +kerning first=1101 second=1299 amount=-1 +kerning first=1101 second=8216 amount=-1 +kerning first=1101 second=8217 amount=-1 +kerning first=1101 second=8218 amount=-1 +kerning first=1101 second=8220 amount=-1 +kerning first=1101 second=8221 amount=-1 +kerning first=1101 second=8222 amount=-1 +kerning first=1101 second=8230 amount=-1 +kerning first=1102 second=34 amount=-1 +kerning first=1102 second=39 amount=-1 +kerning first=1102 second=44 amount=-1 +kerning first=1102 second=46 amount=-1 +kerning first=1102 second=47 amount=-1 +kerning first=1102 second=63 amount=-2 +kerning first=1102 second=102 amount=-1 +kerning first=1102 second=118 amount=-1 +kerning first=1102 second=119 amount=-1 +kerning first=1102 second=120 amount=-2 +kerning first=1102 second=122 amount=-1 +kerning first=1102 second=373 amount=-1 +kerning first=1102 second=378 amount=-1 +kerning first=1102 second=380 amount=-1 +kerning first=1102 second=382 amount=-1 +kerning first=1102 second=947 amount=-1 +kerning first=1102 second=955 amount=-1 +kerning first=1102 second=957 amount=-1 +kerning first=1102 second=964 amount=-1 +kerning first=1102 second=967 amount=-2 +kerning first=1102 second=1076 amount=-1 +kerning first=1102 second=1078 amount=-2 +kerning first=1102 second=1083 amount=-1 +kerning first=1102 second=1090 amount=-1 +kerning first=1102 second=1093 amount=-2 +kerning first=1102 second=1098 amount=-1 +kerning first=1102 second=1113 amount=-1 +kerning first=1102 second=1175 amount=-2 +kerning first=1102 second=1185 amount=-1 +kerning first=1102 second=1199 amount=-1 +kerning first=1102 second=1203 amount=-2 +kerning first=1102 second=1299 amount=-1 +kerning first=1102 second=8216 amount=-1 +kerning first=1102 second=8217 amount=-1 +kerning first=1102 second=8218 amount=-1 +kerning first=1102 second=8220 amount=-1 +kerning first=1102 second=8221 amount=-1 +kerning first=1102 second=8222 amount=-1 +kerning first=1102 second=8230 amount=-1 +kerning first=1104 second=34 amount=-1 +kerning first=1104 second=39 amount=-1 +kerning first=1104 second=44 amount=-1 +kerning first=1104 second=46 amount=-1 +kerning first=1104 second=47 amount=-1 +kerning first=1104 second=63 amount=-2 +kerning first=1104 second=102 amount=-1 +kerning first=1104 second=118 amount=-1 +kerning first=1104 second=119 amount=-1 +kerning first=1104 second=120 amount=-2 +kerning first=1104 second=122 amount=-1 +kerning first=1104 second=373 amount=-1 +kerning first=1104 second=378 amount=-1 +kerning first=1104 second=380 amount=-1 +kerning first=1104 second=382 amount=-1 +kerning first=1104 second=947 amount=-1 +kerning first=1104 second=955 amount=-1 +kerning first=1104 second=957 amount=-1 +kerning first=1104 second=964 amount=-1 +kerning first=1104 second=967 amount=-2 +kerning first=1104 second=1076 amount=-1 +kerning first=1104 second=1078 amount=-2 +kerning first=1104 second=1083 amount=-1 +kerning first=1104 second=1090 amount=-1 +kerning first=1104 second=1093 amount=-2 +kerning first=1104 second=1098 amount=-1 +kerning first=1104 second=1113 amount=-1 +kerning first=1104 second=1175 amount=-2 +kerning first=1104 second=1185 amount=-1 +kerning first=1104 second=1199 amount=-1 +kerning first=1104 second=1203 amount=-2 +kerning first=1104 second=1299 amount=-1 +kerning first=1104 second=8216 amount=-1 +kerning first=1104 second=8217 amount=-1 +kerning first=1104 second=8218 amount=-1 +kerning first=1104 second=8220 amount=-1 +kerning first=1104 second=8221 amount=-1 +kerning first=1104 second=8222 amount=-1 +kerning first=1104 second=8230 amount=-1 +kerning first=1105 second=34 amount=-1 +kerning first=1105 second=39 amount=-1 +kerning first=1105 second=44 amount=-1 +kerning first=1105 second=46 amount=-1 +kerning first=1105 second=47 amount=-1 +kerning first=1105 second=63 amount=-2 +kerning first=1105 second=102 amount=-1 +kerning first=1105 second=118 amount=-1 +kerning first=1105 second=119 amount=-1 +kerning first=1105 second=120 amount=-2 +kerning first=1105 second=122 amount=-1 +kerning first=1105 second=373 amount=-1 +kerning first=1105 second=378 amount=-1 +kerning first=1105 second=380 amount=-1 +kerning first=1105 second=382 amount=-1 +kerning first=1105 second=947 amount=-1 +kerning first=1105 second=955 amount=-1 +kerning first=1105 second=957 amount=-1 +kerning first=1105 second=964 amount=-1 +kerning first=1105 second=967 amount=-2 +kerning first=1105 second=1076 amount=-1 +kerning first=1105 second=1078 amount=-2 +kerning first=1105 second=1083 amount=-1 +kerning first=1105 second=1090 amount=-1 +kerning first=1105 second=1093 amount=-2 +kerning first=1105 second=1098 amount=-1 +kerning first=1105 second=1113 amount=-1 +kerning first=1105 second=1175 amount=-2 +kerning first=1105 second=1185 amount=-1 +kerning first=1105 second=1199 amount=-1 +kerning first=1105 second=1203 amount=-2 +kerning first=1105 second=1299 amount=-1 +kerning first=1105 second=8216 amount=-1 +kerning first=1105 second=8217 amount=-1 +kerning first=1105 second=8218 amount=-1 +kerning first=1105 second=8220 amount=-1 +kerning first=1105 second=8221 amount=-1 +kerning first=1105 second=8222 amount=-1 +kerning first=1105 second=8230 amount=-1 +kerning first=1106 second=34 amount=-1 +kerning first=1106 second=39 amount=-1 +kerning first=1106 second=63 amount=-2 +kerning first=1106 second=102 amount=-1 +kerning first=1106 second=106 amount=1 +kerning first=1106 second=118 amount=-1 +kerning first=1106 second=119 amount=-1 +kerning first=1106 second=373 amount=-1 +kerning first=1106 second=947 amount=-1 +kerning first=1106 second=957 amount=-1 +kerning first=1106 second=964 amount=-1 kerning first=1106 second=1090 amount=-1 -kerning first=250 second=230 amount=-1 -kerning first=964 second=964 amount=-3 -kerning first=967 second=273 amount=-1 -kerning first=163 second=242 amount=-1 -kerning first=269 second=947 amount=-1 -kerning first=273 second=372 amount=-5 -kerning first=42 second=945 amount=-1 -kerning first=185 second=1240 amount=-2 -kerning first=182 second=1262 amount=-2 -kerning first=1081 second=347 amount=-1 -kerning first=1078 second=1108 amount=-2 -kerning first=205 second=1069 amount=-1 -kerning first=903 second=361 amount=-1 -kerning first=906 second=121 amount=-1 -kerning first=1169 second=46 amount=-3 -kerning first=346 second=1202 amount=-1 -kerning first=351 second=373 amount=-1 -kerning first=942 second=1028 amount=-2 -kerning first=971 second=220 amount=-2 -kerning first=8217 second=260 amount=-3 -kerning first=1051 second=362 amount=-2 -kerning first=189 second=332 amount=-2 -kerning first=304 second=244 amount=-1 -kerning first=72 second=106 amount=1 -kerning first=1087 second=289 amount=-1 -kerning first=212 second=256 amount=-2 -kerning first=912 second=71 amount=-2 -kerning first=89 second=962 amount=-4 -kerning first=1170 second=221 amount=-5 -kerning first=358 second=83 amount=-1 -kerning first=950 second=233 amount=-1 -kerning first=1219 second=363 amount=-1 -kerning first=255 second=333 amount=-1 -kerning first=378 second=245 amount=-1 -kerning first=278 second=949 amount=-1 -kerning first=8222 second=210 amount=-1 -kerning first=50 second=359 amount=-1 -kerning first=1048 second=8211 amount=-2 -kerning first=53 second=119 amount=-4 -kerning first=190 second=963 amount=-1 -kerning first=193 second=271 amount=-1 -kerning first=1059 second=1051 amount=-1 -kerning first=70 second=1026 amount=-5 -kerning first=73 second=286 amount=-2 -kerning first=1096 second=234 amount=-1 -kerning first=331 second=1090 amount=-1 -kerning first=915 second=246 amount=-1 -kerning first=96 second=218 amount=-2 -kerning first=1171 second=376 amount=-5 -kerning first=236 second=346 amount=-1 -kerning first=1220 second=1059 amount=-2 -kerning first=256 second=964 amount=-3 -kerning first=262 second=45 amount=-1 -kerning first=172 second=287 amount=-1 -kerning first=8224 second=365 amount=-1 -kerning first=197 second=219 amount=-2 -kerning first=306 second=1108 amount=-1 -kerning first=311 second=347 amount=-1 -kerning first=77 second=231 amount=-1 -kerning first=341 second=46 amount=-3 -kerning first=97 second=373 amount=-1 -kerning first=237 second=1028 amount=-2 -kerning first=240 second=288 amount=-2 -kerning first=955 second=336 amount=-2 -kerning first=1298 second=248 amount=-1 -kerning first=177 second=232 amount=-1 -kerning first=58 second=244 amount=-1 -kerning first=198 second=374 amount=-5 -kerning first=316 second=289 amount=-1 -kerning first=342 second=221 amount=-2 -kerning first=936 second=111 amount=-1 -kerning first=928 second=351 amount=-1 -kerning first=1185 second=261 amount=-1 -kerning first=361 second=1177 amount=-1 -kerning first=124 second=245 amount=-1 -kerning first=36 second=949 amount=-1 -kerning first=39 second=257 amount=-1 -kerning first=1039 second=210 amount=-2 -kerning first=1074 second=352 amount=-1 -kerning first=205 second=84 amount=-5 -kerning first=322 second=234 amount=-1 -kerning first=8364 second=1241 amount=-1 -kerning first=8369 second=187 amount=-1 +kerning first=1106 second=1098 amount=-1 +kerning first=1106 second=1112 amount=1 +kerning first=1106 second=1185 amount=-1 +kerning first=1106 second=1199 amount=-1 +kerning first=1106 second=8216 amount=-1 +kerning first=1106 second=8217 amount=-1 +kerning first=1106 second=8220 amount=-1 +kerning first=1106 second=8221 amount=-1 +kerning first=1107 second=44 amount=-3 +kerning first=1107 second=46 amount=-3 +kerning first=1107 second=47 amount=-2 +kerning first=1107 second=99 amount=-1 +kerning first=1107 second=100 amount=-1 +kerning first=1107 second=101 amount=-1 +kerning first=1107 second=111 amount=-1 +kerning first=1107 second=113 amount=-1 +kerning first=1107 second=231 amount=-1 +kerning first=1107 second=232 amount=-1 +kerning first=1107 second=233 amount=-1 +kerning first=1107 second=234 amount=-1 +kerning first=1107 second=235 amount=-1 +kerning first=1107 second=240 amount=-1 +kerning first=1107 second=242 amount=-1 +kerning first=1107 second=243 amount=-1 +kerning first=1107 second=244 amount=-1 +kerning first=1107 second=245 amount=-1 +kerning first=1107 second=246 amount=-1 +kerning first=1107 second=248 amount=-1 +kerning first=1107 second=263 amount=-1 +kerning first=1107 second=267 amount=-1 +kerning first=1107 second=269 amount=-1 +kerning first=1107 second=271 amount=-1 +kerning first=1107 second=273 amount=-1 +kerning first=1107 second=275 amount=-1 kerning first=1107 second=277 amount=-1 -kerning first=931 second=1035 amount=-5 -kerning first=365 second=1059 amount=-2 -kerning first=262 second=8249 amount=-1 -kerning first=274 second=85 amount=-2 -kerning first=1041 second=365 amount=-1 -kerning first=183 second=335 amount=-1 -kerning first=186 second=97 amount=-1 -kerning first=60 second=1108 amount=-1 -kerning first=63 second=347 amount=-1 -kerning first=206 second=259 amount=-1 -kerning first=209 second=34 amount=-3 -kerning first=89 second=46 amount=-4 -kerning first=1116 second=224 amount=-1 -kerning first=352 second=86 amount=-2 -kerning first=249 second=336 amount=-2 -kerning first=372 second=248 amount=-3 -kerning first=966 second=378 amount=-1 -kerning first=162 second=350 amount=-1 -kerning first=41 second=1176 amount=-1 -kerning first=47 second=122 amount=-2 -kerning first=1044 second=1063 amount=-2 -kerning first=44 second=362 amount=-1 -kerning first=184 second=966 amount=-1 -kerning first=327 second=337 amount=-1 -kerning first=905 second=249 amount=-1 -kerning first=902 second=940 amount=-1 -kerning first=1194 second=8218 amount=-1 -kerning first=376 second=198 amount=-5 -kerning first=166 second=290 amount=-2 -kerning first=42 second=8211 amount=-2 -kerning first=1049 second=941 amount=-1 -kerning first=45 second=1051 amount=-4 -kerning first=303 second=352 amount=-1 -kerning first=1085 second=1241 amount=-1 -kerning first=91 second=376 amount=-5 -kerning first=1118 second=1079 amount=-1 -kerning first=1174 second=89 amount=-2 -kerning first=357 second=211 amount=-2 -kerning first=945 second=1098 amount=-2 -kerning first=952 second=101 amount=-1 -kerning first=108 second=8212 amount=-2 -kerning first=1223 second=251 amount=-1 -kerning first=374 second=1117 amount=-3 -kerning first=380 second=113 amount=-1 -kerning first=170 second=235 amount=-1 -kerning first=280 second=365 amount=-1 -kerning first=209 second=8216 amount=-3 -kerning first=912 second=354 amount=-5 -kerning first=89 second=8250 amount=-2 -kerning first=1178 second=39 amount=-2 -kerning first=358 second=366 amount=-2 -kerning first=950 second=970 amount=-1 -kerning first=118 second=248 amount=-1 -kerning first=278 second=8217 amount=-3 -kerning first=8226 second=253 amount=-1 -kerning first=1067 second=355 amount=-1 -kerning first=199 second=87 amount=-1 -kerning first=76 second=337 amount=-1 -kerning first=915 second=1038 amount=-2 -kerning first=96 second=953 amount=-1 -kerning first=356 second=8218 amount=-3 -kerning first=958 second=226 amount=-1 -kerning first=1263 second=356 amount=-5 -kerning first=37 second=210 amount=-2 -kerning first=176 second=338 amount=-2 -kerning first=179 second=100 amount=-1 -kerning first=287 second=941 amount=-1 -kerning first=57 second=352 amount=-1 -kerning first=200 second=262 amount=-2 -kerning first=315 second=1241 amount=-1 -kerning first=318 second=187 amount=-1 -kerning first=77 second=968 amount=-1 -kerning first=80 second=277 amount=-1 -kerning first=1103 second=227 amount=-1 -kerning first=223 second=199 amount=-2 -kerning first=338 second=1079 amount=-1 -kerning first=344 second=89 amount=-2 -kerning first=103 second=211 amount=-2 -kerning first=1184 second=369 amount=-1 -kerning first=240 second=1098 amount=-3 -kerning first=126 second=113 amount=-1 -kerning first=123 second=353 amount=-1 -kerning first=263 second=955 amount=-1 -kerning first=38 second=365 amount=-1 -kerning first=1035 second=1066 amount=-5 -kerning first=1076 second=240 amount=-1 -kerning first=204 second=212 amount=-2 -kerning first=324 second=102 amount=-1 -kerning first=8366 second=283 amount=-1 -kerning first=84 second=224 amount=-2 -kerning first=221 second=1118 amount=-2 -kerning first=1202 second=79 amount=-1 -kerning first=247 second=279 amount=-1 -kerning first=273 second=213 amount=-2 -kerning first=36 second=8217 amount=-3 -kerning first=1046 second=253 amount=-1 -kerning first=185 second=225 amount=-1 -kerning first=297 second=355 amount=-1 -kerning first=300 second=115 amount=-1 -kerning first=202 second=1185 amount=-3 -kerning first=205 second=367 amount=-1 +kerning first=1107 second=279 amount=-1 +kerning first=1107 second=281 amount=-1 +kerning first=1107 second=283 amount=-1 +kerning first=1107 second=333 amount=-1 +kerning first=1107 second=335 amount=-1 +kerning first=1107 second=337 amount=-1 +kerning first=1107 second=339 amount=-1 +kerning first=1107 second=940 amount=-1 +kerning first=1107 second=941 amount=-1 +kerning first=1107 second=945 amount=-1 +kerning first=1107 second=949 amount=-1 +kerning first=1107 second=955 amount=-4 +kerning first=1107 second=959 amount=-1 +kerning first=1107 second=962 amount=-1 +kerning first=1107 second=963 amount=-1 +kerning first=1107 second=966 amount=-1 +kerning first=1107 second=972 amount=-1 +kerning first=1107 second=1076 amount=-3 +kerning first=1107 second=1077 amount=-1 kerning first=1107 second=1083 amount=-3 -kerning first=102 second=8218 amount=-2 -kerning first=251 second=226 amount=-1 -kerning first=371 second=356 amount=-5 -kerning first=968 second=268 amount=-2 -kerning first=274 second=368 amount=-2 -kerning first=43 second=941 amount=-1 -kerning first=46 second=250 amount=-1 -kerning first=69 second=187 amount=-1 -kerning first=203 second=8220 amount=-3 -kerning first=330 second=227 amount=-1 -kerning first=8370 second=1263 amount=-1 -kerning first=904 second=357 amount=-1 -kerning first=86 second=1079 amount=-1 -kerning first=92 second=89 amount=-5 -kerning first=89 second=326 amount=-3 -kerning first=1119 second=269 amount=-1 -kerning first=271 second=8221 amount=-3 -kerning first=1064 second=118 amount=-4 -kerning first=305 second=240 amount=-1 -kerning first=1090 second=283 amount=-1 -kerning first=327 second=1256 amount=-2 -kerning first=915 second=67 amount=-2 -kerning first=93 second=266 amount=-2 -kerning first=96 second=39 amount=-3 -kerning first=1171 second=217 amount=-2 -kerning first=951 second=229 amount=-1 -kerning first=1220 second=359 amount=-1 -kerning first=376 second=920 amount=-3 -kerning first=973 second=371 amount=-1 -kerning first=172 second=103 amount=-1 -kerning first=282 second=253 amount=-1 -kerning first=51 second=355 amount=-1 -kerning first=54 second=115 amount=-1 -kerning first=194 second=267 amount=-1 -kerning first=916 second=242 amount=-1 -kerning first=357 second=945 amount=-1 -kerning first=952 second=1240 amount=-2 -kerning first=117 second=356 amount=-5 -kerning first=260 second=268 amount=-2 -kerning first=1035 second=81 amount=-2 -kerning first=170 second=972 amount=-1 -kerning first=174 second=281 amount=-1 -kerning first=8225 second=361 amount=-1 -kerning first=8240 second=121 amount=-1 -kerning first=78 second=227 amount=-1 -kerning first=1095 second=1263 amount=-1 -kerning first=221 second=117 amount=-2 -kerning first=238 second=973 amount=-1 -kerning first=956 second=332 amount=-2 -kerning first=1299 second=244 amount=-1 -kerning first=178 second=228 amount=-1 -kerning first=294 second=118 amount=-4 -kerning first=59 second=240 amount=-1 -kerning first=196 second=1194 amount=-2 -kerning first=317 second=283 amount=-1 -kerning first=8364 second=233 amount=-1 -kerning first=76 second=1256 amount=-1 -kerning first=219 second=1044 amount=-1 -kerning first=105 second=79 amount=-2 -kerning first=1179 second=949 amount=-1 -kerning first=365 second=359 amount=-1 -kerning first=958 second=963 amount=-1 -kerning first=962 second=271 amount=-1 -kerning first=40 second=253 amount=-1 -kerning first=176 second=1257 amount=-1 -kerning first=323 second=230 amount=-1 -kerning first=1103 second=964 amount=-3 -kerning first=1116 second=45 amount=-3 -kerning first=344 second=372 amount=-1 -kerning first=103 second=945 amount=-1 -kerning first=268 second=1069 amount=1 -kerning first=1048 second=121 amount=-1 -kerning first=299 second=243 amount=-1 -kerning first=1080 second=288 amount=-2 -kerning first=321 second=1263 amount=-1 -kerning first=8372 second=336 amount=-2 -kerning first=87 second=269 amount=-3 -kerning first=1117 second=220 amount=-2 -kerning first=944 second=232 amount=-1 -kerning first=1194 second=1176 amount=1 -kerning first=1202 second=362 amount=-1 -kerning first=250 second=332 amount=-2 -kerning first=373 second=244 amount=-1 -kerning first=967 second=374 amount=-5 -kerning first=166 second=106 amount=1 -kerning first=48 second=118 amount=-4 -kerning first=185 second=962 amount=-1 -kerning first=1062 second=71 amount=-1 -kerning first=1085 second=233 amount=-1 -kerning first=906 second=245 amount=-1 -kerning first=91 second=217 amount=-2 -kerning first=1118 second=375 amount=-1 -kerning first=354 second=257 amount=-2 -kerning first=251 second=963 amount=-1 -kerning first=254 second=271 amount=-1 -kerning first=164 second=1026 amount=-5 -kerning first=167 second=286 amount=-2 -kerning first=1063 second=246 amount=-1 -kerning first=192 second=218 amount=-2 -kerning first=304 second=346 amount=-1 -kerning first=72 second=230 amount=-1 -kerning first=330 second=964 amount=-3 -kerning first=92 second=372 amount=-5 -kerning first=89 second=947 amount=-2 -kerning first=950 second=335 amount=-1 -kerning first=258 second=219 amount=-2 -kerning first=375 second=1108 amount=-1 -kerning first=1026 second=259 amount=-1 -kerning first=1033 second=34 amount=-2 -kerning first=53 second=243 amount=-1 -kerning first=193 second=373 amount=-4 -kerning first=305 second=1028 amount=-2 -kerning first=310 second=288 amount=-3 -kerning first=70 second=1263 amount=-1 -kerning first=1096 second=336 amount=-2 -kerning first=915 second=350 amount=-1 -kerning first=239 second=232 amount=-1 -kerning first=951 second=966 amount=-1 -kerning first=954 second=275 amount=-2 -kerning first=119 second=244 amount=-1 -kerning first=34 second=256 amount=-3 -kerning first=8224 second=940 amount=-1 -kerning first=8230 second=249 amount=-1 -kerning first=1071 second=111 amount=-1 -kerning first=200 second=83 amount=-1 -kerning first=315 second=233 amount=-1 -kerning first=77 second=333 amount=-1 -kerning first=338 second=375 amount=-1 -kerning first=926 second=290 amount=-2 -kerning first=100 second=257 amount=-1 -kerning first=1184 second=210 amount=-3 -kerning first=357 second=8211 amount=-2 -kerning first=360 second=1051 amount=-1 -kerning first=1298 second=352 amount=-1 -kerning first=268 second=84 amount=-1 -kerning first=1035 second=364 amount=-2 -kerning first=177 second=334 amount=-2 -kerning first=174 second=1090 amount=-3 -kerning first=291 second=246 amount=-1 -kerning first=8260 second=199 amount=-2 -kerning first=58 second=346 amount=-1 -kerning first=1069 second=1035 amount=-2 -kerning first=1073 second=291 amount=-1 -kerning first=8363 second=339 amount=-1 -kerning first=8366 second=101 amount=-1 -kerning first=78 second=964 amount=-3 -kerning first=84 second=45 amount=-4 -kerning first=936 second=235 amount=-1 -kerning first=247 second=97 amount=-1 -kerning first=121 second=1108 amount=-1 -kerning first=124 second=347 amount=-1 -kerning first=273 second=34 amount=-3 -kerning first=42 second=121 amount=-1 -kerning first=1033 second=8216 amount=-2 -kerning first=1046 second=74 amount=-1 -kerning first=178 second=965 amount=-1 -kerning first=59 second=1028 amount=-2 -kerning first=62 second=288 amount=-2 -kerning first=322 second=336 amount=-2 -kerning first=8364 second=970 amount=-1 -kerning first=8369 second=279 amount=-1 -kerning first=900 second=248 amount=-1 -kerning first=346 second=260 amount=-1 -kerning first=105 second=362 amount=-2 -kerning first=1186 second=1063 amount=-2 -kerning first=968 second=87 amount=-5 -kerning first=161 second=289 amount=-1 -kerning first=1041 second=940 amount=-1 -kerning first=46 second=71 amount=-1 -kerning first=186 second=221 amount=-5 -kerning first=298 second=351 amount=-1 -kerning first=301 second=111 amount=-1 -kerning first=206 second=363 amount=-1 -kerning first=203 second=1177 amount=-1 -kerning first=8377 second=226 amount=-1 -kerning first=86 second=375 amount=-1 -kerning first=1108 second=1078 amount=-1 -kerning first=946 second=100 amount=-1 -kerning first=103 second=8211 amount=-2 -kerning first=947 second=941 amount=-1 -kerning first=372 second=352 amount=-1 -kerning first=165 second=234 amount=-1 -kerning first=47 second=246 amount=-2 -kerning first=187 second=376 amount=-3 -kerning first=299 second=1035 amount=-5 -kerning first=302 second=291 amount=-1 -kerning first=1080 second=1098 amount=-3 -kerning first=1084 second=339 amount=-1 -kerning first=207 second=1059 amount=-2 -kerning first=204 second=8212 amount=-2 -kerning first=1090 second=101 amount=-1 -kerning first=905 second=353 amount=-1 -kerning first=84 second=8249 amount=-3 -kerning first=93 second=85 amount=-2 -kerning first=87 second=1074 amount=-2 -kerning first=1168 second=263 amount=-1 -kerning first=910 second=113 amount=-4 -kerning first=973 second=212 amount=-2 -kerning first=273 second=8216 amount=-3 -kerning first=1049 second=1118 amount=-1 -kerning first=1062 second=354 amount=-2 -kerning first=185 second=8250 amount=-1 -kerning first=194 second=86 amount=-6 -kerning first=1085 second=970 amount=-1 -kerning first=1094 second=279 amount=-1 -kerning first=214 second=248 amount=-1 -kerning first=916 second=63 amount=-5 -kerning first=1174 second=213 amount=-1 -kerning first=351 second=8217 amount=-1 -kerning first=952 second=225 amount=-1 -kerning first=1223 second=355 amount=-1 -kerning first=260 second=87 amount=-5 -kerning first=971 second=1185 amount=-3 -kerning first=170 second=337 amount=-1 -kerning first=174 second=99 amount=-1 -kerning first=280 second=940 amount=-1 -kerning first=55 second=111 amount=-1 -kerning first=1063 second=1038 amount=-2 -kerning first=195 second=261 amount=-1 -kerning first=52 second=351 amount=-1 -kerning first=192 second=953 amount=-1 -kerning first=218 second=198 amount=-2 -kerning first=333 second=1078 amount=-2 -kerning first=238 second=338 amount=-2 -kerning first=361 second=250 amount=-1 -kerning first=358 second=941 amount=-1 -kerning first=381 second=1241 amount=-1 -kerning first=972 second=8220 amount=-1 -kerning first=175 second=277 amount=-1 -kerning first=289 second=199 amount=-2 -kerning first=8226 second=357 amount=-1 -kerning first=53 second=1035 amount=-5 -kerning first=56 second=291 amount=-1 -kerning first=314 second=339 amount=-1 -kerning first=317 second=101 amount=-1 -kerning first=310 second=1098 amount=-4 -kerning first=337 second=955 amount=-1 -kerning first=1176 second=1066 amount=-5 -kerning first=1171 second=8221 amount=-3 -kerning first=1037 second=252 amount=-1 -kerning first=179 second=224 amount=-1 -kerning first=287 second=1118 amount=-1 -kerning first=290 second=354 amount=-1 -kerning first=197 second=1184 amount=-5 -kerning first=200 second=366 amount=-2 -kerning first=318 second=279 amount=-1 -kerning first=8365 second=229 amount=-1 -kerning first=226 second=63 amount=-2 -kerning first=97 second=8217 amount=-1 -kerning first=369 second=115 amount=-1 -kerning first=963 second=267 amount=-1 -kerning first=41 second=249 amount=-1 -kerning first=38 second=940 amount=-1 -kerning first=291 second=1038 amount=-2 -kerning first=1073 second=1101 amount=-1 -kerning first=8366 second=1240 amount=-2 -kerning first=8363 second=1262 amount=-2 -kerning first=902 second=116 amount=-1 -kerning first=936 second=972 amount=-1 -kerning first=160 second=1241 amount=-1 -kerning first=163 second=187 amount=-1 -kerning first=1049 second=117 amount=-1 -kerning first=182 second=1079 amount=-1 -kerning first=188 second=89 amount=-5 -kerning first=1046 second=357 amount=-1 -kerning first=62 second=1098 amount=-3 -kerning first=65 second=339 amount=-1 -kerning first=88 second=263 amount=-2 -kerning first=1118 second=216 amount=-2 -kerning first=346 second=1066 amount=-1 -kerning first=1210 second=118 amount=-4 -kerning first=374 second=240 amount=-4 -kerning first=965 second=1194 amount=-2 -kerning first=968 second=370 amount=-2 -kerning first=274 second=943 amount=-1 -kerning first=43 second=1118 amount=-1 -kerning first=46 second=354 amount=-5 -kerning first=1063 second=67 amount=-2 -kerning first=189 second=266 amount=-2 -kerning first=192 second=39 amount=-3 -kerning first=69 second=279 amount=-1 -kerning first=1087 second=229 amount=-1 -kerning first=8377 second=963 amount=-1 -kerning first=904 second=920 amount=-2 -kerning first=92 second=213 amount=-2 +kerning first=1107 second=1086 amount=-1 +kerning first=1107 second=1089 amount=-1 +kerning first=1107 second=1092 amount=-1 +kerning first=1107 second=1104 amount=-1 +kerning first=1107 second=1105 amount=-1 +kerning first=1107 second=1108 amount=-1 +kerning first=1107 second=1113 amount=-3 +kerning first=1107 second=1195 amount=-1 +kerning first=1107 second=1241 amount=-1 +kerning first=1107 second=1257 amount=-1 +kerning first=1107 second=1299 amount=-3 +kerning first=1107 second=8218 amount=-3 +kerning first=1107 second=8222 amount=-3 +kerning first=1107 second=8230 amount=-3 +kerning first=1108 second=34 amount=-1 +kerning first=1108 second=39 amount=-1 +kerning first=1108 second=63 amount=-1 +kerning first=1108 second=118 amount=-1 +kerning first=1108 second=119 amount=-1 +kerning first=1108 second=120 amount=-1 +kerning first=1108 second=373 amount=-1 +kerning first=1108 second=947 amount=-1 +kerning first=1108 second=955 amount=-1 +kerning first=1108 second=957 amount=-1 +kerning first=1108 second=1078 amount=-1 +kerning first=1108 second=1093 amount=-1 +kerning first=1108 second=1175 amount=-1 +kerning first=1108 second=1199 amount=-1 +kerning first=1108 second=1203 amount=-1 +kerning first=1108 second=8216 amount=-1 +kerning first=1108 second=8217 amount=-1 +kerning first=1108 second=8220 amount=-1 +kerning first=1108 second=8221 amount=-1 +kerning first=1109 second=34 amount=-1 +kerning first=1109 second=39 amount=-1 +kerning first=1109 second=63 amount=-2 +kerning first=1109 second=102 amount=-1 +kerning first=1109 second=118 amount=-1 +kerning first=1109 second=119 amount=-1 +kerning first=1109 second=120 amount=-1 +kerning first=1109 second=373 amount=-1 +kerning first=1109 second=947 amount=-1 +kerning first=1109 second=957 amount=-1 +kerning first=1109 second=1078 amount=-1 +kerning first=1109 second=1093 amount=-1 +kerning first=1109 second=1175 amount=-1 +kerning first=1109 second=1199 amount=-1 +kerning first=1109 second=1203 amount=-1 +kerning first=1109 second=8216 amount=-1 +kerning first=1109 second=8217 amount=-1 +kerning first=1109 second=8220 amount=-1 +kerning first=1109 second=8221 amount=-1 +kerning first=1112 second=106 amount=7 +kerning first=1112 second=1112 amount=7 +kerning first=1113 second=120 amount=-2 +kerning first=1113 second=1078 amount=-2 +kerning first=1113 second=1093 amount=-2 +kerning first=1113 second=1095 amount=-1 +kerning first=1113 second=1175 amount=-2 +kerning first=1113 second=1203 amount=-2 +kerning first=1114 second=120 amount=-2 +kerning first=1114 second=1078 amount=-2 +kerning first=1114 second=1093 amount=-2 +kerning first=1114 second=1095 amount=-1 +kerning first=1114 second=1175 amount=-2 +kerning first=1114 second=1203 amount=-2 +kerning first=1115 second=34 amount=-1 +kerning first=1115 second=39 amount=-1 +kerning first=1115 second=63 amount=-2 +kerning first=1115 second=102 amount=-1 +kerning first=1115 second=106 amount=1 +kerning first=1115 second=118 amount=-1 +kerning first=1115 second=119 amount=-1 +kerning first=1115 second=373 amount=-1 +kerning first=1115 second=947 amount=-1 +kerning first=1115 second=957 amount=-1 +kerning first=1115 second=964 amount=-1 +kerning first=1115 second=1090 amount=-1 +kerning first=1115 second=1098 amount=-1 +kerning first=1115 second=1112 amount=1 +kerning first=1115 second=1185 amount=-1 +kerning first=1115 second=1199 amount=-1 +kerning first=1115 second=8216 amount=-1 +kerning first=1115 second=8217 amount=-1 +kerning first=1115 second=8220 amount=-1 +kerning first=1115 second=8221 amount=-1 +kerning first=1116 second=45 amount=-3 +kerning first=1116 second=97 amount=-1 +kerning first=1116 second=99 amount=-2 +kerning first=1116 second=100 amount=-2 +kerning first=1116 second=101 amount=-2 +kerning first=1116 second=103 amount=-2 +kerning first=1116 second=106 amount=1 +kerning first=1116 second=111 amount=-2 +kerning first=1116 second=113 amount=-2 +kerning first=1116 second=115 amount=-1 +kerning first=1116 second=173 amount=-3 +kerning first=1116 second=224 amount=-1 +kerning first=1116 second=225 amount=-1 +kerning first=1116 second=226 amount=-1 +kerning first=1116 second=227 amount=-1 +kerning first=1116 second=228 amount=-1 +kerning first=1116 second=229 amount=-1 +kerning first=1116 second=230 amount=-1 +kerning first=1116 second=231 amount=-2 +kerning first=1116 second=232 amount=-2 +kerning first=1116 second=233 amount=-2 +kerning first=1116 second=234 amount=-2 +kerning first=1116 second=235 amount=-2 +kerning first=1116 second=240 amount=-2 +kerning first=1116 second=242 amount=-2 +kerning first=1116 second=243 amount=-2 +kerning first=1116 second=244 amount=-2 +kerning first=1116 second=245 amount=-2 +kerning first=1116 second=246 amount=-2 +kerning first=1116 second=248 amount=-2 +kerning first=1116 second=257 amount=-1 +kerning first=1116 second=259 amount=-1 +kerning first=1116 second=261 amount=-1 +kerning first=1116 second=263 amount=-2 +kerning first=1116 second=267 amount=-2 +kerning first=1116 second=269 amount=-2 +kerning first=1116 second=271 amount=-2 +kerning first=1116 second=273 amount=-2 +kerning first=1116 second=275 amount=-2 +kerning first=1116 second=277 amount=-2 +kerning first=1116 second=279 amount=-2 +kerning first=1116 second=281 amount=-2 +kerning first=1116 second=283 amount=-2 +kerning first=1116 second=287 amount=-2 +kerning first=1116 second=289 amount=-2 +kerning first=1116 second=291 amount=-2 +kerning first=1116 second=333 amount=-2 +kerning first=1116 second=335 amount=-2 +kerning first=1116 second=337 amount=-2 +kerning first=1116 second=339 amount=-2 +kerning first=1116 second=347 amount=-1 +kerning first=1116 second=351 amount=-1 +kerning first=1116 second=353 amount=-1 +kerning first=1116 second=940 amount=-2 +kerning first=1116 second=941 amount=-2 +kerning first=1116 second=945 amount=-2 +kerning first=1116 second=949 amount=-2 +kerning first=1116 second=959 amount=-2 +kerning first=1116 second=962 amount=-2 +kerning first=1116 second=963 amount=-2 +kerning first=1116 second=966 amount=-2 +kerning first=1116 second=972 amount=-2 +kerning first=1116 second=1072 amount=-1 +kerning first=1116 second=1077 amount=-2 +kerning first=1116 second=1086 amount=-2 +kerning first=1116 second=1089 amount=-2 +kerning first=1116 second=1092 amount=-2 +kerning first=1116 second=1104 amount=-2 +kerning first=1116 second=1105 amount=-2 +kerning first=1116 second=1108 amount=-2 +kerning first=1116 second=1109 amount=-1 +kerning first=1116 second=1112 amount=1 kerning first=1116 second=1195 amount=-2 -kerning first=1119 second=371 amount=-1 -kerning first=255 second=267 amount=-1 -kerning first=8212 second=1174 amount=-3 -kerning first=8218 second=360 amount=-1 -kerning first=47 second=1038 amount=-2 -kerning first=1064 second=242 amount=-1 -kerning first=1059 second=923 amount=-2 -kerning first=193 second=214 amount=-2 -kerning first=302 second=1101 amount=-1 -kerning first=73 second=226 amount=-1 -kerning first=1084 second=1262 amount=-2 -kerning first=213 second=356 amount=-2 -kerning first=93 second=368 amount=-2 -kerning first=1168 second=1069 amount=-1 -kerning first=1176 second=81 amount=-2 -kerning first=236 second=281 amount=-1 -kerning first=376 second=1102 amount=-3 -kerning first=172 second=227 amount=-1 -kerning first=282 second=357 amount=-1 -kerning first=287 second=117 amount=-1 -kerning first=194 second=369 amount=-1 -kerning first=306 second=973 amount=-1 -kerning first=338 second=216 amount=-2 -kerning first=91 second=8221 amount=-3 -kerning first=94 second=1066 amount=-5 -kerning first=926 second=106 amount=1 -kerning first=240 second=228 amount=-1 -kerning first=363 second=118 amount=-4 -kerning first=952 second=962 amount=-1 -kerning first=120 second=240 amount=-2 -kerning first=260 second=370 amount=-2 -kerning first=35 second=252 amount=-1 -kerning first=170 second=1256 amount=-2 -kerning first=291 second=67 amount=-2 -kerning first=8240 second=245 amount=-1 -kerning first=201 second=79 amount=-2 -kerning first=316 second=229 amount=-1 -kerning first=221 second=241 amount=-3 -kerning first=928 second=286 amount=-2 -kerning first=920 second=1026 amount=-2 -kerning first=238 second=1257 amount=-1 -kerning first=1299 second=346 amount=-1 -kerning first=1033 second=1174 amount=-2 -kerning first=294 second=242 amount=-1 -kerning first=56 second=1101 amount=-1 -kerning first=1074 second=287 amount=-1 -kerning first=314 second=1262 amount=-2 -kerning first=317 second=1240 amount=-2 -kerning first=8364 second=335 amount=-1 -kerning first=8369 second=97 amount=-1 -kerning first=962 second=373 amount=-4 -kerning first=40 second=357 amount=-1 -kerning first=43 second=117 amount=-1 -kerning first=183 second=269 amount=-1 -kerning first=60 second=973 amount=-1 -kerning first=323 second=332 amount=-2 -kerning first=8365 second=966 amount=-1 -kerning first=901 second=244 amount=-1 -kerning first=86 second=216 amount=-2 -kerning first=8370 second=275 amount=-1 -kerning first=229 second=106 amount=1 -kerning first=934 second=1298 amount=-3 -kerning first=109 second=118 amount=-1 -kerning first=1206 second=71 amount=-1 -kerning first=372 second=193 amount=-5 -kerning first=162 second=283 amount=-1 -kerning first=47 second=67 amount=-1 -kerning first=1048 second=245 amount=-1 -kerning first=207 second=359 amount=-1 -kerning first=327 second=271 amount=-1 -kerning first=84 second=1195 amount=-3 -kerning first=87 second=371 amount=-2 -kerning first=1168 second=84 amount=-5 -kerning first=944 second=334 amount=-2 -kerning first=1202 second=934 amount=-2 -kerning first=253 second=218 amount=-2 -kerning first=1207 second=246 amount=-1 -kerning first=967 second=950 amount=-2 -kerning first=166 second=230 amount=-1 -kerning first=276 second=360 amount=-2 -kerning first=48 second=242 amount=-1 -kerning first=279 second=120 amount=-2 -kerning first=45 second=923 amount=-2 -kerning first=185 second=947 amount=-4 -kerning first=188 second=372 amount=-5 -kerning first=303 second=287 amount=-1 -kerning first=65 second=1262 amount=-2 -kerning first=1085 second=335 amount=-1 -kerning first=903 second=1108 amount=-1 -kerning first=906 second=347 amount=-1 -kerning first=88 second=1069 amount=-2 -kerning first=94 second=81 amount=-2 +kerning first=1116 second=1241 amount=-2 +kerning first=1116 second=1257 amount=-2 +kerning first=1116 second=8211 amount=-3 +kerning first=1116 second=8212 amount=-3 +kerning first=1169 second=44 amount=-3 +kerning first=1169 second=46 amount=-3 +kerning first=1169 second=47 amount=-2 +kerning first=1169 second=99 amount=-1 +kerning first=1169 second=100 amount=-1 +kerning first=1169 second=101 amount=-1 +kerning first=1169 second=111 amount=-1 +kerning first=1169 second=113 amount=-1 +kerning first=1169 second=231 amount=-1 +kerning first=1169 second=232 amount=-1 +kerning first=1169 second=233 amount=-1 +kerning first=1169 second=234 amount=-1 +kerning first=1169 second=235 amount=-1 +kerning first=1169 second=240 amount=-1 +kerning first=1169 second=242 amount=-1 +kerning first=1169 second=243 amount=-1 +kerning first=1169 second=244 amount=-1 +kerning first=1169 second=245 amount=-1 +kerning first=1169 second=246 amount=-1 +kerning first=1169 second=248 amount=-1 +kerning first=1169 second=263 amount=-1 +kerning first=1169 second=267 amount=-1 +kerning first=1169 second=269 amount=-1 +kerning first=1169 second=271 amount=-1 +kerning first=1169 second=273 amount=-1 +kerning first=1169 second=275 amount=-1 +kerning first=1169 second=277 amount=-1 +kerning first=1169 second=279 amount=-1 +kerning first=1169 second=281 amount=-1 +kerning first=1169 second=283 amount=-1 +kerning first=1169 second=333 amount=-1 +kerning first=1169 second=335 amount=-1 +kerning first=1169 second=337 amount=-1 +kerning first=1169 second=339 amount=-1 +kerning first=1169 second=940 amount=-1 +kerning first=1169 second=941 amount=-1 +kerning first=1169 second=945 amount=-1 +kerning first=1169 second=949 amount=-1 +kerning first=1169 second=955 amount=-4 +kerning first=1169 second=959 amount=-1 +kerning first=1169 second=962 amount=-1 +kerning first=1169 second=963 amount=-1 +kerning first=1169 second=966 amount=-1 +kerning first=1169 second=972 amount=-1 +kerning first=1169 second=1076 amount=-3 +kerning first=1169 second=1077 amount=-1 +kerning first=1169 second=1083 amount=-3 +kerning first=1169 second=1086 amount=-1 +kerning first=1169 second=1089 amount=-1 +kerning first=1169 second=1092 amount=-1 +kerning first=1169 second=1104 amount=-1 +kerning first=1169 second=1105 amount=-1 +kerning first=1169 second=1108 amount=-1 +kerning first=1169 second=1113 amount=-3 +kerning first=1169 second=1195 amount=-1 +kerning first=1169 second=1241 amount=-1 +kerning first=1169 second=1257 amount=-1 +kerning first=1169 second=1299 amount=-3 +kerning first=1169 second=8218 amount=-3 +kerning first=1169 second=8222 amount=-3 +kerning first=1169 second=8230 amount=-3 kerning first=1174 second=34 amount=-2 -kerning first=351 second=1175 amount=-1 -kerning first=354 second=361 amount=-2 -kerning first=357 second=121 amount=-1 -kerning first=114 second=243 amount=-1 -kerning first=254 second=373 amount=-4 -kerning first=374 second=1028 amount=-3 -kerning first=377 second=288 amount=-1 -kerning first=164 second=1263 amount=-1 -kerning first=8221 second=248 amount=-1 -kerning first=1063 second=350 amount=-1 -kerning first=72 second=332 amount=-2 -kerning first=1087 second=966 amount=-1 -kerning first=215 second=244 amount=-1 -kerning first=1095 second=275 amount=-1 -kerning first=912 second=289 amount=-1 -kerning first=908 second=1033 amount=-1 -kerning first=361 second=71 amount=-2 -kerning first=1224 second=351 amount=-1 -kerning first=381 second=233 amount=-1 -kerning first=1026 second=363 amount=-1 -kerning first=1067 second=290 amount=-2 -kerning first=193 second=949 amount=-1 -kerning first=196 second=257 amount=-1 -kerning first=8361 second=100 amount=-1 -kerning first=73 second=963 amount=-1 -kerning first=76 second=271 amount=-1 -kerning first=79 second=44 amount=-1 -kerning first=219 second=194 amount=-2 -kerning first=923 second=234 amount=-1 -kerning first=1176 second=364 amount=-2 -kerning first=239 second=334 amount=-2 -kerning first=236 second=1090 amount=-3 -kerning first=1263 second=291 amount=-1 -kerning first=262 second=258 amount=-1 -kerning first=1256 second=1035 amount=-2 -kerning first=973 second=8212 amount=-2 -kerning first=1027 second=1059 amount=-2 -kerning first=176 second=273 amount=-1 -kerning first=179 second=45 amount=-2 -kerning first=172 second=964 amount=-3 -kerning first=57 second=287 amount=-1 -kerning first=1071 second=235 amount=-1 -kerning first=318 second=97 amount=-1 -kerning first=315 second=335 amount=-1 -kerning first=80 second=219 amount=-2 -kerning first=341 second=259 amount=-1 -kerning first=100 second=361 amount=-1 -kerning first=103 second=121 amount=-1 +kerning first=1174 second=39 amount=-2 +kerning first=1174 second=45 amount=-2 +kerning first=1174 second=63 amount=-2 +kerning first=1174 second=67 amount=-1 +kerning first=1174 second=71 amount=-1 +kerning first=1174 second=79 amount=-1 +kerning first=1174 second=81 amount=-1 +kerning first=1174 second=84 amount=-2 +kerning first=1174 second=85 amount=-1 +kerning first=1174 second=89 amount=-2 +kerning first=1174 second=99 amount=-1 +kerning first=1174 second=100 amount=-1 +kerning first=1174 second=101 amount=-1 +kerning first=1174 second=106 amount=7 +kerning first=1174 second=111 amount=-1 +kerning first=1174 second=113 amount=-1 +kerning first=1174 second=118 amount=-2 +kerning first=1174 second=119 amount=-2 +kerning first=1174 second=171 amount=-1 +kerning first=1174 second=173 amount=-2 +kerning first=1174 second=199 amount=-1 +kerning first=1174 second=210 amount=-1 +kerning first=1174 second=211 amount=-1 +kerning first=1174 second=212 amount=-1 +kerning first=1174 second=213 amount=-1 +kerning first=1174 second=214 amount=-1 +kerning first=1174 second=216 amount=-1 +kerning first=1174 second=217 amount=-1 +kerning first=1174 second=218 amount=-1 +kerning first=1174 second=219 amount=-1 +kerning first=1174 second=220 amount=-1 +kerning first=1174 second=221 amount=-2 +kerning first=1174 second=231 amount=-1 +kerning first=1174 second=232 amount=-1 +kerning first=1174 second=233 amount=-1 +kerning first=1174 second=234 amount=-1 +kerning first=1174 second=235 amount=-1 +kerning first=1174 second=240 amount=-1 +kerning first=1174 second=242 amount=-1 +kerning first=1174 second=243 amount=-1 +kerning first=1174 second=244 amount=-1 +kerning first=1174 second=245 amount=-1 +kerning first=1174 second=246 amount=-1 +kerning first=1174 second=248 amount=-1 +kerning first=1174 second=262 amount=-1 +kerning first=1174 second=263 amount=-1 +kerning first=1174 second=266 amount=-1 +kerning first=1174 second=267 amount=-1 +kerning first=1174 second=268 amount=-1 +kerning first=1174 second=269 amount=-1 +kerning first=1174 second=271 amount=-1 +kerning first=1174 second=273 amount=-1 +kerning first=1174 second=275 amount=-1 +kerning first=1174 second=277 amount=-1 +kerning first=1174 second=279 amount=-1 +kerning first=1174 second=281 amount=-1 +kerning first=1174 second=283 amount=-1 +kerning first=1174 second=286 amount=-1 +kerning first=1174 second=288 amount=-1 +kerning first=1174 second=290 amount=-1 +kerning first=1174 second=332 amount=-1 +kerning first=1174 second=333 amount=-1 +kerning first=1174 second=334 amount=-1 +kerning first=1174 second=335 amount=-1 +kerning first=1174 second=336 amount=-1 +kerning first=1174 second=337 amount=-1 +kerning first=1174 second=338 amount=-1 +kerning first=1174 second=339 amount=-1 +kerning first=1174 second=354 amount=-2 +kerning first=1174 second=356 amount=-2 +kerning first=1174 second=360 amount=-1 +kerning first=1174 second=362 amount=-1 +kerning first=1174 second=364 amount=-1 +kerning first=1174 second=366 amount=-1 +kerning first=1174 second=368 amount=-1 +kerning first=1174 second=370 amount=-1 +kerning first=1174 second=373 amount=-2 +kerning first=1174 second=374 amount=-2 +kerning first=1174 second=376 amount=-2 +kerning first=1174 second=920 amount=-1 +kerning first=1174 second=927 amount=-1 +kerning first=1174 second=932 amount=-2 +kerning first=1174 second=933 amount=-2 +kerning first=1174 second=934 amount=-2 +kerning first=1174 second=939 amount=-2 +kerning first=1174 second=940 amount=-1 +kerning first=1174 second=941 amount=-1 +kerning first=1174 second=945 amount=-1 +kerning first=1174 second=947 amount=-2 +kerning first=1174 second=949 amount=-1 +kerning first=1174 second=957 amount=-2 +kerning first=1174 second=959 amount=-1 +kerning first=1174 second=962 amount=-1 +kerning first=1174 second=963 amount=-1 +kerning first=1174 second=964 amount=-2 +kerning first=1174 second=966 amount=-1 +kerning first=1174 second=972 amount=-1 +kerning first=1174 second=1026 amount=-2 +kerning first=1174 second=1028 amount=-1 +kerning first=1174 second=1035 amount=-2 +kerning first=1174 second=1038 amount=-1 +kerning first=1174 second=1054 amount=-1 +kerning first=1174 second=1057 amount=-1 +kerning first=1174 second=1058 amount=-2 +kerning first=1174 second=1059 amount=-1 +kerning first=1174 second=1060 amount=-2 +kerning first=1174 second=1063 amount=-2 +kerning first=1174 second=1066 amount=-2 +kerning first=1174 second=1077 amount=-1 +kerning first=1174 second=1086 amount=-1 +kerning first=1174 second=1089 amount=-1 +kerning first=1174 second=1090 amount=-2 +kerning first=1174 second=1092 amount=-1 +kerning first=1174 second=1098 amount=-2 +kerning first=1174 second=1104 amount=-1 +kerning first=1174 second=1105 amount=-1 +kerning first=1174 second=1108 amount=-1 +kerning first=1174 second=1112 amount=7 +kerning first=1174 second=1184 amount=-2 +kerning first=1174 second=1185 amount=-2 +kerning first=1174 second=1194 amount=-1 +kerning first=1174 second=1195 amount=-1 +kerning first=1174 second=1198 amount=-2 +kerning first=1174 second=1199 amount=-2 +kerning first=1174 second=1240 amount=-1 +kerning first=1174 second=1241 amount=-1 +kerning first=1174 second=1256 amount=-1 +kerning first=1174 second=1257 amount=-1 +kerning first=1174 second=1262 amount=-1 +kerning first=1174 second=8211 amount=-2 +kerning first=1174 second=8212 amount=-2 kerning first=1174 second=8216 amount=-2 -kerning first=240 second=965 amount=-1 -kerning first=246 second=46 amount=-1 -kerning first=366 second=196 amount=-2 -kerning first=952 second=8250 amount=-1 -kerning first=123 second=288 amount=-2 -kerning first=180 second=220 amount=-2 -kerning first=291 second=350 amount=-1 -kerning first=61 second=232 amount=-1 -kerning first=201 second=362 amount=-2 -kerning first=198 second=1176 amount=-1 -kerning first=316 second=966 amount=-1 -kerning first=321 second=275 amount=-1 -kerning first=8366 second=225 amount=-1 -kerning first=81 second=374 amount=-3 -kerning first=1101 second=1076 amount=-1 -kerning first=221 second=1033 amount=-5 -kerning first=936 second=337 amount=-1 -kerning first=1185 second=940 amount=-2 -kerning first=247 second=221 amount=-5 -kerning first=367 second=351 amount=-1 -kerning first=964 second=261 amount=-1 -kerning first=160 second=233 amount=-1 -kerning first=42 second=245 amount=-1 -kerning first=182 second=375 amount=-1 -kerning first=297 second=290 amount=-2 -kerning first=1081 second=100 amount=-1 -kerning first=199 second=8211 amount=-1 -kerning first=900 second=352 amount=-1 -kerning first=942 second=277 amount=-1 -kerning first=108 second=246 amount=-1 -kerning first=371 second=291 amount=-1 -kerning first=968 second=211 amount=-2 -kerning first=1051 second=113 amount=-1 -kerning first=179 second=8249 amount=-3 -kerning first=189 second=85 amount=-2 -kerning first=301 second=235 amount=-1 -kerning first=69 second=97 amount=-1 -kerning first=86 second=951 amount=-2 -kerning first=92 second=34 amount=-3 -kerning first=89 second=259 amount=-4 -kerning first=1119 second=212 amount=-2 -kerning first=946 second=224 amount=-1 -kerning first=1206 second=354 amount=-2 -kerning first=165 second=336 amount=-2 -kerning first=278 second=248 amount=-1 -kerning first=47 second=350 amount=-1 -kerning first=70 second=275 amount=-1 -kerning first=213 second=197 amount=-2 -kerning first=334 second=87 amount=-2 -kerning first=1168 second=367 amount=-1 -kerning first=1117 second=1185 amount=-3 -kerning first=236 second=99 amount=-1 -kerning first=356 second=249 amount=-2 -kerning first=113 second=351 amount=-1 -kerning first=256 second=261 amount=-1 -kerning first=253 second=953 amount=-1 -kerning first=8224 second=116 amount=-1 -kerning first=51 second=290 amount=-2 -kerning first=194 second=210 amount=-2 -kerning first=306 second=338 amount=-2 -kerning first=311 second=100 amount=-2 -kerning first=214 second=352 amount=-1 -kerning first=916 second=187 amount=-1 -kerning first=94 second=364 amount=-2 -kerning first=1118 second=8220 amount=-3 -kerning first=237 second=277 amount=-1 -kerning first=955 second=89 amount=-5 -kerning first=117 second=291 amount=-1 -kerning first=260 second=211 amount=-2 -kerning first=380 second=339 amount=-1 -kerning first=55 second=235 amount=-1 -kerning first=195 second=365 amount=-1 -kerning first=92 second=8216 amount=-3 -kerning first=358 second=1118 amount=-1 -kerning first=361 second=354 amount=-5 -kerning first=956 second=266 amount=-2 -kerning first=961 second=39 amount=-1 -kerning first=258 second=1184 amount=-5 -kerning first=36 second=248 amount=-1 -kerning first=178 second=171 amount=-3 -kerning first=8226 second=920 amount=-2 -kerning first=196 second=1063 amount=-3 -kerning first=193 second=8217 amount=-3 -kerning first=1074 second=103 amount=-1 -kerning first=317 second=225 amount=-1 -kerning first=82 second=87 amount=-1 -kerning first=337 second=1185 amount=-1 -kerning first=962 second=214 amount=-2 -kerning first=1263 second=1101 amount=-1 -kerning first=1037 second=356 amount=-5 -kerning first=1041 second=116 amount=-1 -kerning first=60 second=338 amount=-2 -kerning first=63 second=100 amount=-1 -kerning first=1071 second=972 amount=-1 -kerning first=203 second=250 amount=-1 -kerning first=200 second=941 amount=-1 -kerning first=1075 second=281 amount=-1 -kerning first=223 second=1241 amount=-1 -kerning first=338 second=8220 amount=-3 -kerning first=249 second=89 amount=-5 -kerning first=963 second=369 amount=-1 -kerning first=123 second=1098 amount=-3 -kerning first=126 second=339 amount=-1 -kerning first=162 second=101 amount=-1 -kerning first=271 second=251 amount=-1 -kerning first=41 second=353 amount=-1 -kerning first=184 second=263 amount=-1 -kerning first=1080 second=228 amount=-1 -kerning first=8366 second=962 amount=-1 -kerning first=902 second=240 amount=-1 -kerning first=87 second=212 amount=-2 -kerning first=230 second=102 amount=-1 -kerning first=936 second=1256 amount=-2 -kerning first=1194 second=1044 amount=-1 -kerning first=250 second=266 amount=-2 -kerning first=253 second=39 amount=-3 -kerning first=961 second=8222 amount=-1 -kerning first=163 second=279 amount=-1 -kerning first=160 second=970 amount=-1 -kerning first=1046 second=920 amount=-3 -kerning first=188 second=213 amount=-2 -kerning first=303 second=103 amount=-1 -kerning first=1078 second=1257 amount=-2 -kerning first=88 second=367 amount=-1 -kerning first=108 second=1038 amount=-2 -kerning first=1210 second=242 amount=-1 -kerning first=254 second=214 amount=-2 -kerning first=371 second=1101 amount=-1 -kerning first=968 second=945 amount=-1 -kerning first=167 second=226 amount=-1 -kerning first=280 second=116 amount=-1 -kerning first=189 second=368 amount=-2 -kerning first=301 second=972 amount=-1 -kerning first=304 second=281 amount=-1 -kerning first=86 second=8220 amount=-3 -kerning first=358 second=117 amount=-1 -kerning first=950 second=269 amount=-1 -kerning first=255 second=369 amount=-1 -kerning first=375 second=973 amount=-1 -kerning first=1067 second=106 amount=1 -kerning first=190 second=1066 amount=-5 -kerning first=310 second=228 amount=-1 -kerning first=70 second=1080 amount=-1 -kerning first=1090 second=962 amount=-1 -kerning first=213 second=916 amount=-2 -kerning first=915 second=283 amount=-1 -kerning first=96 second=252 amount=-1 -kerning first=93 second=943 amount=-1 -kerning first=910 second=974 amount=-4 -kerning first=356 second=1044 amount=-4 -kerning first=1027 second=359 amount=-1 -kerning first=1034 second=119 amount=-1 -kerning first=282 second=920 amount=-2 -kerning first=57 second=103 amount=-1 -kerning first=1065 second=1026 amount=-2 -kerning first=197 second=253 amount=-1 -kerning first=306 second=1257 amount=-1 -kerning first=77 second=267 amount=-1 -kerning first=926 second=230 amount=-1 -kerning first=363 second=242 amount=-1 -kerning first=952 second=947 amount=-4 -kerning first=955 second=372 amount=-5 -kerning first=117 second=1101 amount=-1 -kerning first=360 second=923 amount=-2 -kerning first=1298 second=287 amount=-1 -kerning first=260 second=945 amount=-1 -kerning first=35 second=356 amount=-5 -kerning first=38 second=116 amount=-1 -kerning first=177 second=268 amount=-2 -kerning first=8225 second=1108 amount=-1 -kerning first=8240 second=347 amount=-1 -kerning first=55 second=972 amount=-1 -kerning first=58 second=281 amount=-1 -kerning first=1073 second=231 amount=-1 -kerning first=1101 second=373 amount=-1 -kerning first=221 second=343 amount=-3 -kerning first=121 second=973 amount=-1 -kerning first=1039 second=244 amount=-1 -kerning first=182 second=216 amount=-2 -kerning first=297 second=106 amount=1 -kerning first=62 second=228 amount=-1 -kerning first=1070 second=1298 amount=-1 -kerning first=8249 second=1033 amount=-1 -kerning first=205 second=118 amount=-4 -kerning first=317 second=962 amount=-1 -kerning first=8369 second=221 amount=-5 -kerning first=108 second=67 amount=-2 -kerning first=962 second=949 amount=-1 -kerning first=965 second=257 amount=-1 -kerning first=161 second=229 amount=-1 -kerning first=274 second=119 amount=-4 -kerning first=40 second=920 amount=-2 -kerning first=179 second=1195 amount=-1 -kerning first=183 second=371 amount=-1 -kerning first=1047 second=194 amount=-1 -kerning first=298 second=286 amount=-2 -kerning first=60 second=1257 amount=-1 -kerning first=8370 second=376 amount=-5 -kerning first=901 second=346 amount=-1 -kerning first=352 second=120 amount=-1 -kerning first=946 second=45 amount=-2 -kerning first=940 second=964 amount=-2 -kerning first=246 second=947 amount=-1 -kerning first=249 second=372 amount=-5 -kerning first=372 second=287 amount=-2 -kerning first=126 second=1262 amount=-2 -kerning first=162 second=1240 amount=-2 -kerning first=1048 second=347 amount=-1 -kerning first=1044 second=1108 amount=-1 -kerning first=184 second=1069 amount=-1 -kerning first=190 second=81 amount=-2 -kerning first=302 second=231 amount=-1 -kerning first=1080 second=965 amount=-1 -kerning first=1090 second=46 amount=-3 -kerning first=327 second=373 amount=-4 -kerning first=8366 second=8250 amount=-1 -kerning first=902 second=1028 amount=-2 -kerning first=905 second=288 amount=-2 -kerning first=948 second=220 amount=-2 -kerning first=376 second=232 amount=-4 -kerning first=967 second=1176 amount=-1 -kerning first=166 second=332 amount=-2 -kerning first=8220 second=197 amount=-3 -kerning first=51 second=106 amount=1 -kerning first=1118 second=1177 amount=-1 -kerning first=357 second=245 amount=-1 -kerning first=1223 second=290 amount=-2 -kerning first=254 second=949 amount=-1 -kerning first=968 second=8211 amount=-2 -kerning first=167 second=963 amount=-1 -kerning first=170 second=271 amount=-1 -kerning first=49 second=1026 amount=-5 -kerning first=55 second=56 amount=-1 -kerning first=52 second=286 amount=-2 -kerning first=304 second=1090 amount=-3 -kerning first=1095 second=376 amount=-5 -kerning first=215 second=346 amount=-1 -kerning first=336 second=258 amount=-2 -kerning first=95 second=360 amount=-2 -kerning first=1119 second=8212 amount=-2 -kerning first=1170 second=1059 amount=-2 -kerning first=98 second=120 amount=-2 -kerning first=238 second=273 amount=-1 -kerning first=235 second=964 amount=-1 -kerning first=946 second=8249 amount=-3 -kerning first=950 second=1074 amount=-2 -kerning first=956 second=85 amount=-2 -kerning first=118 second=287 amount=-1 -kerning first=381 second=335 amount=-1 -kerning first=175 second=219 amount=-2 -kerning first=56 second=231 amount=-1 -kerning first=196 second=361 amount=-1 -kerning first=310 second=965 amount=-1 -kerning first=8361 second=224 amount=-1 -kerning first=76 second=373 amount=-3 -kerning first=923 second=336 amount=-2 -kerning first=1179 second=248 amount=-1 -kerning first=122 second=232 amount=-1 -kerning first=382 second=966 amount=-1 -kerning first=37 second=244 amount=-1 -kerning first=176 second=374 amount=-5 -kerning first=1071 second=337 amount=-1 -kerning first=1075 second=99 amount=-1 -kerning first=203 second=71 amount=-2 -kerning first=318 second=221 amount=-5 -kerning first=74 second=8230 amount=-1 -kerning first=1103 second=261 amount=-1 -kerning first=223 second=233 amount=-1 -kerning first=338 second=1177 amount=-1 -kerning first=103 second=245 amount=-1 -kerning first=963 second=210 amount=-2 -kerning first=260 second=8211 amount=-2 -kerning first=184 second=84 amount=-5 -kerning first=296 second=234 amount=-1 -kerning first=8260 second=1241 amount=-1 -kerning first=58 second=1090 amount=-3 -kerning first=61 second=334 amount=-2 -kerning first=1073 second=968 amount=-1 -kerning first=204 second=246 amount=-1 -kerning first=1076 second=277 amount=-1 -kerning first=321 second=376 amount=-5 -kerning first=8363 second=1079 amount=-1 -kerning first=8372 second=89 amount=-5 -kerning first=84 second=258 amount=-6 -kerning first=1202 second=113 amount=-1 -kerning first=250 second=85 amount=-2 -kerning first=964 second=365 amount=-1 -kerning first=160 second=335 amount=-1 -kerning first=163 second=97 amount=-1 -kerning first=39 second=1108 amount=-1 -kerning first=42 second=347 amount=-1 -kerning first=185 second=259 amount=-1 -kerning first=188 second=34 amount=-3 -kerning first=62 second=965 amount=-1 -kerning first=1081 second=224 amount=-1 -kerning first=68 second=46 amount=-1 -kerning first=208 second=196 amount=-2 -kerning first=317 second=8250 amount=-1 -kerning first=108 second=350 amount=-1 -kerning first=962 second=8217 amount=-3 -kerning first=161 second=966 amount=-1 -kerning first=164 second=275 amount=-1 -kerning first=8217 second=115 amount=-1 -kerning first=46 second=289 amount=-1 -kerning first=301 second=337 amount=-1 -kerning first=304 second=99 amount=-1 -kerning first=69 second=221 amount=-5 -kerning first=209 second=351 amount=-1 -kerning first=330 second=261 amount=-1 -kerning first=86 second=1177 amount=-1 -kerning first=89 second=363 amount=-2 -kerning first=255 second=210 amount=-2 -kerning first=372 second=1097 amount=-2 -kerning first=375 second=338 amount=-2 -kerning first=378 second=100 amount=-1 -kerning first=278 second=352 amount=-1 -kerning first=50 second=234 amount=-1 -kerning first=1064 second=187 amount=-1 -kerning first=190 second=364 amount=-2 -kerning first=302 second=968 amount=-1 -kerning first=305 second=277 amount=-1 -kerning first=70 second=376 amount=-5 -kerning first=1084 second=1079 amount=-1 -kerning first=1096 second=89 amount=-5 -kerning first=210 second=1035 amount=-2 -kerning first=905 second=1098 amount=-3 -kerning first=910 second=339 amount=-4 -kerning first=915 second=101 amount=-1 -kerning first=87 second=8212 amount=-2 -kerning first=1171 second=251 amount=-1 -kerning first=356 second=353 amount=-3 -kerning first=951 second=263 amount=-1 -kerning first=256 second=365 amount=-1 -kerning first=376 second=969 amount=-4 -kerning first=8224 second=240 amount=-1 -kerning first=8220 second=916 amount=-3 -kerning first=188 second=8216 amount=-3 -kerning first=197 second=74 amount=-1 -kerning first=311 second=224 amount=-1 -kerning first=332 second=1184 amount=-2 -kerning first=916 second=279 amount=-1 -kerning first=240 second=171 amount=-3 -kerning first=955 second=213 amount=-2 -kerning first=254 second=8217 amount=-3 -kerning first=1298 second=103 amount=-1 -kerning first=1035 second=115 amount=-1 -kerning first=177 second=87 amount=-5 -kerning first=55 second=337 amount=-1 -kerning first=58 second=99 amount=-1 -kerning first=195 second=940 amount=-1 -kerning first=198 second=249 amount=-1 -kerning first=78 second=261 amount=-1 -kerning first=333 second=8218 amount=-1 -kerning first=928 second=226 amount=-1 +kerning first=1174 second=8217 amount=-2 +kerning first=1174 second=8220 amount=-2 +kerning first=1174 second=8221 amount=-2 +kerning first=1174 second=8249 amount=-1 +kerning first=1175 second=99 amount=-1 +kerning first=1175 second=100 amount=-1 +kerning first=1175 second=101 amount=-1 +kerning first=1175 second=111 amount=-1 +kerning first=1175 second=113 amount=-1 +kerning first=1175 second=231 amount=-1 +kerning first=1175 second=232 amount=-1 +kerning first=1175 second=233 amount=-1 +kerning first=1175 second=234 amount=-1 +kerning first=1175 second=235 amount=-1 +kerning first=1175 second=240 amount=-1 +kerning first=1175 second=242 amount=-1 +kerning first=1175 second=243 amount=-1 +kerning first=1175 second=244 amount=-1 +kerning first=1175 second=245 amount=-1 +kerning first=1175 second=246 amount=-1 +kerning first=1175 second=248 amount=-1 +kerning first=1175 second=263 amount=-1 +kerning first=1175 second=267 amount=-1 +kerning first=1175 second=269 amount=-1 +kerning first=1175 second=271 amount=-1 +kerning first=1175 second=273 amount=-1 +kerning first=1175 second=275 amount=-1 +kerning first=1175 second=277 amount=-1 +kerning first=1175 second=279 amount=-1 +kerning first=1175 second=281 amount=-1 +kerning first=1175 second=283 amount=-1 +kerning first=1175 second=333 amount=-1 +kerning first=1175 second=335 amount=-1 +kerning first=1175 second=337 amount=-1 +kerning first=1175 second=339 amount=-1 +kerning first=1175 second=940 amount=-1 +kerning first=1175 second=941 amount=-1 +kerning first=1175 second=945 amount=-1 +kerning first=1175 second=949 amount=-1 +kerning first=1175 second=959 amount=-1 +kerning first=1175 second=962 amount=-1 +kerning first=1175 second=963 amount=-1 +kerning first=1175 second=964 amount=-2 +kerning first=1175 second=966 amount=-1 +kerning first=1175 second=972 amount=-1 +kerning first=1175 second=1073 amount=-1 +kerning first=1175 second=1077 amount=-1 +kerning first=1175 second=1086 amount=-1 +kerning first=1175 second=1089 amount=-1 +kerning first=1175 second=1090 amount=-2 +kerning first=1175 second=1092 amount=-1 +kerning first=1175 second=1095 amount=-2 +kerning first=1175 second=1098 amount=-2 +kerning first=1175 second=1104 amount=-1 +kerning first=1175 second=1105 amount=-1 +kerning first=1175 second=1108 amount=-1 +kerning first=1175 second=1185 amount=-2 +kerning first=1175 second=1195 amount=-1 +kerning first=1175 second=1241 amount=-1 +kerning first=1175 second=1257 amount=-1 +kerning first=1177 second=120 amount=-1 +kerning first=1177 second=964 amount=-1 +kerning first=1177 second=1078 amount=-1 +kerning first=1177 second=1090 amount=-1 +kerning first=1177 second=1093 amount=-1 +kerning first=1177 second=1098 amount=-1 +kerning first=1177 second=1175 amount=-1 +kerning first=1177 second=1185 amount=-1 +kerning first=1177 second=1203 amount=-1 +kerning first=1178 second=34 amount=-2 +kerning first=1178 second=39 amount=-2 +kerning first=1178 second=45 amount=-2 +kerning first=1178 second=63 amount=-2 +kerning first=1178 second=67 amount=-1 +kerning first=1178 second=71 amount=-1 +kerning first=1178 second=79 amount=-1 +kerning first=1178 second=81 amount=-1 +kerning first=1178 second=84 amount=-2 +kerning first=1178 second=85 amount=-1 +kerning first=1178 second=89 amount=-2 +kerning first=1178 second=99 amount=-1 +kerning first=1178 second=100 amount=-1 +kerning first=1178 second=101 amount=-1 +kerning first=1178 second=106 amount=7 +kerning first=1178 second=111 amount=-1 +kerning first=1178 second=113 amount=-1 +kerning first=1178 second=118 amount=-2 +kerning first=1178 second=119 amount=-2 +kerning first=1178 second=171 amount=-1 +kerning first=1178 second=173 amount=-2 +kerning first=1178 second=199 amount=-1 +kerning first=1178 second=210 amount=-1 +kerning first=1178 second=211 amount=-1 +kerning first=1178 second=212 amount=-1 +kerning first=1178 second=213 amount=-1 +kerning first=1178 second=214 amount=-1 +kerning first=1178 second=216 amount=-1 +kerning first=1178 second=217 amount=-1 +kerning first=1178 second=218 amount=-1 +kerning first=1178 second=219 amount=-1 +kerning first=1178 second=220 amount=-1 +kerning first=1178 second=221 amount=-2 +kerning first=1178 second=231 amount=-1 +kerning first=1178 second=232 amount=-1 +kerning first=1178 second=233 amount=-1 +kerning first=1178 second=234 amount=-1 +kerning first=1178 second=235 amount=-1 +kerning first=1178 second=240 amount=-1 +kerning first=1178 second=242 amount=-1 +kerning first=1178 second=243 amount=-1 +kerning first=1178 second=244 amount=-1 +kerning first=1178 second=245 amount=-1 +kerning first=1178 second=246 amount=-1 +kerning first=1178 second=248 amount=-1 +kerning first=1178 second=262 amount=-1 +kerning first=1178 second=263 amount=-1 +kerning first=1178 second=266 amount=-1 +kerning first=1178 second=267 amount=-1 +kerning first=1178 second=268 amount=-1 +kerning first=1178 second=269 amount=-1 +kerning first=1178 second=271 amount=-1 +kerning first=1178 second=273 amount=-1 +kerning first=1178 second=275 amount=-1 +kerning first=1178 second=277 amount=-1 +kerning first=1178 second=279 amount=-1 +kerning first=1178 second=281 amount=-1 +kerning first=1178 second=283 amount=-1 +kerning first=1178 second=286 amount=-1 +kerning first=1178 second=288 amount=-1 +kerning first=1178 second=290 amount=-1 +kerning first=1178 second=332 amount=-1 +kerning first=1178 second=333 amount=-1 +kerning first=1178 second=334 amount=-1 +kerning first=1178 second=335 amount=-1 +kerning first=1178 second=336 amount=-1 +kerning first=1178 second=337 amount=-1 +kerning first=1178 second=338 amount=-1 +kerning first=1178 second=339 amount=-1 +kerning first=1178 second=354 amount=-2 kerning first=1178 second=356 amount=-2 -kerning first=956 second=368 amount=-2 -kerning first=121 second=338 amount=-2 -kerning first=124 second=100 amount=-1 -kerning first=1299 second=281 amount=-1 -kerning first=36 second=352 amount=-1 -kerning first=178 second=262 amount=-2 -kerning first=289 second=1241 amount=-1 -kerning first=294 second=187 amount=-1 -kerning first=56 second=968 amount=-1 -kerning first=59 second=277 amount=-1 -kerning first=1074 second=227 amount=-1 -kerning first=202 second=199 amount=-2 -kerning first=314 second=1079 amount=-1 -kerning first=322 second=89 amount=-5 -kerning first=8364 second=269 amount=-1 -kerning first=102 second=353 amount=-1 -kerning first=105 second=113 amount=-1 -kerning first=242 second=955 amount=-1 -kerning first=958 second=1066 amount=-5 -kerning first=1041 second=240 amount=-1 -kerning first=183 second=212 amount=-2 -kerning first=1071 second=1256 amount=-2 -kerning first=63 second=224 amount=-1 -kerning first=203 second=354 amount=-5 -kerning first=200 second=1118 amount=-1 -kerning first=323 second=266 amount=-2 -kerning first=326 second=39 amount=-1 -kerning first=8370 second=217 amount=-2 -kerning first=80 second=1184 amount=-5 -kerning first=223 second=970 amount=-1 -kerning first=109 second=63 amount=-2 -kerning first=249 second=213 amount=-2 -kerning first=372 second=103 amount=-2 -kerning first=162 second=225 amount=-1 -kerning first=271 second=355 amount=-1 -kerning first=180 second=1185 amount=-3 -kerning first=184 second=367 amount=-1 -kerning first=204 second=1038 amount=-2 -kerning first=327 second=214 amount=-2 -kerning first=8366 second=947 amount=-4 -kerning first=8372 second=372 amount=-5 -kerning first=81 second=8218 amount=-1 -kerning first=350 second=356 amount=-1 -kerning first=944 second=268 amount=-2 -kerning first=250 second=368 amount=-2 -kerning first=373 second=281 amount=-1 -kerning first=8216 second=243 amount=-1 -kerning first=48 second=187 amount=-1 -kerning first=182 second=8220 amount=-3 -kerning first=303 second=227 amount=-1 -kerning first=65 second=1079 amount=-1 -kerning first=71 second=89 amount=-2 -kerning first=1085 second=269 amount=-1 -kerning first=903 second=973 amount=-1 -kerning first=91 second=251 amount=-1 -kerning first=251 second=1066 amount=-5 -kerning first=1223 second=106 amount=1 -kerning first=248 second=8221 amount=-1 -kerning first=280 second=240 amount=-1 -kerning first=8221 second=193 amount=-3 -kerning first=1063 second=283 amount=-1 -kerning first=189 second=943 amount=-1 -kerning first=192 second=252 amount=-1 -kerning first=301 second=1256 amount=-2 -kerning first=72 second=266 amount=-2 -kerning first=1095 second=217 amount=-2 -kerning first=912 second=229 amount=-1 -kerning first=1170 second=359 amount=-1 -kerning first=946 second=1195 amount=-1 -kerning first=950 second=371 amount=-1 -kerning first=118 second=103 amount=-1 -kerning first=1219 second=1026 amount=-5 -kerning first=1224 second=286 amount=-2 -kerning first=258 second=253 amount=-1 -kerning first=375 second=1257 amount=-1 -kerning first=1067 second=230 amount=-1 -kerning first=8361 second=45 amount=-2 -kerning first=1096 second=372 amount=-5 -kerning first=76 second=214 amount=-1 -kerning first=915 second=1240 amount=-2 -kerning first=96 second=356 amount=-5 -kerning first=239 second=268 amount=-2 -kerning first=951 second=1069 amount=-1 -kerning first=958 second=81 amount=-2 -kerning first=119 second=281 amount=-1 -kerning first=1263 second=231 amount=-1 -kerning first=8224 second=1028 amount=-2 -kerning first=8230 second=288 amount=-1 -kerning first=57 second=227 amount=-1 -kerning first=200 second=117 amount=-1 -kerning first=197 second=357 amount=-1 -kerning first=315 second=269 amount=-1 -kerning first=77 second=369 amount=-1 -kerning first=926 second=332 amount=-2 +kerning first=1178 second=360 amount=-1 +kerning first=1178 second=362 amount=-1 +kerning first=1178 second=364 amount=-1 +kerning first=1178 second=366 amount=-1 +kerning first=1178 second=368 amount=-1 +kerning first=1178 second=370 amount=-1 +kerning first=1178 second=373 amount=-2 +kerning first=1178 second=374 amount=-2 +kerning first=1178 second=376 amount=-2 +kerning first=1178 second=920 amount=-1 +kerning first=1178 second=927 amount=-1 +kerning first=1178 second=932 amount=-2 +kerning first=1178 second=933 amount=-2 +kerning first=1178 second=934 amount=-2 +kerning first=1178 second=939 amount=-2 +kerning first=1178 second=940 amount=-1 +kerning first=1178 second=941 amount=-1 +kerning first=1178 second=945 amount=-1 +kerning first=1178 second=947 amount=-2 +kerning first=1178 second=949 amount=-1 +kerning first=1178 second=957 amount=-2 +kerning first=1178 second=959 amount=-1 +kerning first=1178 second=962 amount=-1 +kerning first=1178 second=963 amount=-1 +kerning first=1178 second=964 amount=-2 +kerning first=1178 second=966 amount=-1 +kerning first=1178 second=972 amount=-1 +kerning first=1178 second=1026 amount=-2 +kerning first=1178 second=1028 amount=-1 +kerning first=1178 second=1035 amount=-2 +kerning first=1178 second=1038 amount=-1 +kerning first=1178 second=1054 amount=-1 +kerning first=1178 second=1057 amount=-1 +kerning first=1178 second=1058 amount=-2 +kerning first=1178 second=1059 amount=-1 +kerning first=1178 second=1060 amount=-2 +kerning first=1178 second=1063 amount=-2 +kerning first=1178 second=1066 amount=-2 +kerning first=1178 second=1077 amount=-1 +kerning first=1178 second=1086 amount=-1 +kerning first=1178 second=1089 amount=-1 +kerning first=1178 second=1090 amount=-2 +kerning first=1178 second=1092 amount=-1 +kerning first=1178 second=1098 amount=-2 +kerning first=1178 second=1104 amount=-1 +kerning first=1178 second=1105 amount=-1 +kerning first=1178 second=1108 amount=-1 +kerning first=1178 second=1112 amount=7 +kerning first=1178 second=1184 amount=-2 +kerning first=1178 second=1185 amount=-2 +kerning first=1178 second=1194 amount=-1 +kerning first=1178 second=1195 amount=-1 +kerning first=1178 second=1198 amount=-2 +kerning first=1178 second=1199 amount=-2 +kerning first=1178 second=1240 amount=-1 +kerning first=1178 second=1241 amount=-1 +kerning first=1178 second=1256 amount=-1 +kerning first=1178 second=1257 amount=-1 +kerning first=1178 second=1262 amount=-1 +kerning first=1178 second=8211 amount=-2 +kerning first=1178 second=8212 amount=-2 +kerning first=1178 second=8216 amount=-2 +kerning first=1178 second=8217 amount=-2 +kerning first=1178 second=8220 amount=-2 +kerning first=1178 second=8221 amount=-2 +kerning first=1178 second=8249 amount=-1 +kerning first=1179 second=99 amount=-1 +kerning first=1179 second=100 amount=-1 +kerning first=1179 second=101 amount=-1 +kerning first=1179 second=111 amount=-1 +kerning first=1179 second=113 amount=-1 +kerning first=1179 second=231 amount=-1 +kerning first=1179 second=232 amount=-1 +kerning first=1179 second=233 amount=-1 +kerning first=1179 second=234 amount=-1 +kerning first=1179 second=235 amount=-1 +kerning first=1179 second=240 amount=-1 +kerning first=1179 second=242 amount=-1 +kerning first=1179 second=243 amount=-1 +kerning first=1179 second=244 amount=-1 +kerning first=1179 second=245 amount=-1 +kerning first=1179 second=246 amount=-1 +kerning first=1179 second=248 amount=-1 +kerning first=1179 second=263 amount=-1 +kerning first=1179 second=267 amount=-1 +kerning first=1179 second=269 amount=-1 +kerning first=1179 second=271 amount=-1 +kerning first=1179 second=273 amount=-1 +kerning first=1179 second=275 amount=-1 +kerning first=1179 second=277 amount=-1 +kerning first=1179 second=279 amount=-1 +kerning first=1179 second=281 amount=-1 +kerning first=1179 second=283 amount=-1 +kerning first=1179 second=333 amount=-1 +kerning first=1179 second=335 amount=-1 +kerning first=1179 second=337 amount=-1 +kerning first=1179 second=339 amount=-1 +kerning first=1179 second=940 amount=-1 +kerning first=1179 second=941 amount=-1 +kerning first=1179 second=945 amount=-1 +kerning first=1179 second=949 amount=-1 +kerning first=1179 second=959 amount=-1 +kerning first=1179 second=962 amount=-1 +kerning first=1179 second=963 amount=-1 +kerning first=1179 second=964 amount=-2 +kerning first=1179 second=966 amount=-1 +kerning first=1179 second=972 amount=-1 +kerning first=1179 second=1073 amount=-1 +kerning first=1179 second=1077 amount=-1 +kerning first=1179 second=1086 amount=-1 +kerning first=1179 second=1089 amount=-1 +kerning first=1179 second=1090 amount=-2 +kerning first=1179 second=1092 amount=-1 +kerning first=1179 second=1095 amount=-2 +kerning first=1179 second=1098 amount=-2 +kerning first=1179 second=1104 amount=-1 +kerning first=1179 second=1105 amount=-1 +kerning first=1179 second=1108 amount=-1 +kerning first=1179 second=1185 amount=-2 +kerning first=1179 second=1195 amount=-1 +kerning first=1179 second=1241 amount=-1 +kerning first=1179 second=1257 amount=-1 +kerning first=1184 second=38 amount=-2 +kerning first=1184 second=45 amount=-4 +kerning first=1184 second=63 amount=-2 +kerning first=1184 second=67 amount=-3 +kerning first=1184 second=71 amount=-3 +kerning first=1184 second=74 amount=-1 +kerning first=1184 second=79 amount=-3 +kerning first=1184 second=81 amount=-3 +kerning first=1184 second=83 amount=-1 +kerning first=1184 second=97 amount=-1 +kerning first=1184 second=99 amount=-2 +kerning first=1184 second=100 amount=-2 +kerning first=1184 second=101 amount=-2 +kerning first=1184 second=102 amount=-2 +kerning first=1184 second=103 amount=-1 +kerning first=1184 second=111 amount=-2 +kerning first=1184 second=113 amount=-2 +kerning first=1184 second=116 amount=-1 +kerning first=1184 second=117 amount=-1 +kerning first=1184 second=118 amount=-3 +kerning first=1184 second=119 amount=-3 +kerning first=1184 second=121 amount=-2 +kerning first=1184 second=171 amount=-3 +kerning first=1184 second=173 amount=-4 +kerning first=1184 second=187 amount=-2 +kerning first=1184 second=199 amount=-3 +kerning first=1184 second=210 amount=-3 +kerning first=1184 second=211 amount=-3 +kerning first=1184 second=212 amount=-3 +kerning first=1184 second=213 amount=-3 +kerning first=1184 second=214 amount=-3 +kerning first=1184 second=216 amount=-3 +kerning first=1184 second=224 amount=-1 +kerning first=1184 second=225 amount=-1 +kerning first=1184 second=226 amount=-1 +kerning first=1184 second=227 amount=-1 +kerning first=1184 second=228 amount=-1 +kerning first=1184 second=229 amount=-1 +kerning first=1184 second=230 amount=-1 +kerning first=1184 second=231 amount=-2 +kerning first=1184 second=232 amount=-2 +kerning first=1184 second=233 amount=-2 +kerning first=1184 second=234 amount=-2 +kerning first=1184 second=235 amount=-2 +kerning first=1184 second=240 amount=-2 +kerning first=1184 second=242 amount=-2 +kerning first=1184 second=243 amount=-2 kerning first=1184 second=244 amount=-2 -kerning first=123 second=228 amount=-1 -kerning first=38 second=240 amount=-1 -kerning first=1038 second=193 amount=-2 -kerning first=174 second=1194 amount=-2 -kerning first=177 second=370 amount=-2 -kerning first=291 second=283 amount=-1 -kerning first=8260 second=233 amount=-1 -kerning first=55 second=1256 amount=-2 -kerning first=1073 second=333 amount=-1 -kerning first=204 second=67 amount=-2 -kerning first=321 second=217 amount=-2 -kerning first=8363 second=375 amount=-1 -kerning first=84 second=79 amount=-1 -kerning first=928 second=963 amount=-1 -kerning first=936 second=271 amount=-1 +kerning first=1184 second=245 amount=-2 +kerning first=1184 second=246 amount=-2 +kerning first=1184 second=248 amount=-2 +kerning first=1184 second=249 amount=-1 +kerning first=1184 second=250 amount=-1 +kerning first=1184 second=251 amount=-1 +kerning first=1184 second=252 amount=-1 +kerning first=1184 second=253 amount=-2 +kerning first=1184 second=257 amount=-1 +kerning first=1184 second=259 amount=-1 +kerning first=1184 second=261 amount=-1 +kerning first=1184 second=262 amount=-3 +kerning first=1184 second=263 amount=-2 +kerning first=1184 second=266 amount=-3 +kerning first=1184 second=267 amount=-2 +kerning first=1184 second=268 amount=-3 +kerning first=1184 second=269 amount=-2 +kerning first=1184 second=271 amount=-2 +kerning first=1184 second=273 amount=-2 +kerning first=1184 second=275 amount=-2 +kerning first=1184 second=277 amount=-2 +kerning first=1184 second=279 amount=-2 +kerning first=1184 second=281 amount=-2 +kerning first=1184 second=283 amount=-2 +kerning first=1184 second=286 amount=-3 +kerning first=1184 second=287 amount=-1 +kerning first=1184 second=288 amount=-3 +kerning first=1184 second=289 amount=-1 +kerning first=1184 second=290 amount=-3 +kerning first=1184 second=291 amount=-1 +kerning first=1184 second=332 amount=-3 +kerning first=1184 second=333 amount=-2 +kerning first=1184 second=334 amount=-3 +kerning first=1184 second=335 amount=-2 +kerning first=1184 second=336 amount=-3 +kerning first=1184 second=337 amount=-2 +kerning first=1184 second=338 amount=-3 +kerning first=1184 second=339 amount=-2 +kerning first=1184 second=346 amount=-1 +kerning first=1184 second=350 amount=-1 +kerning first=1184 second=352 amount=-1 +kerning first=1184 second=355 amount=-1 +kerning first=1184 second=357 amount=-1 +kerning first=1184 second=359 amount=-1 +kerning first=1184 second=361 amount=-1 +kerning first=1184 second=363 amount=-1 +kerning first=1184 second=365 amount=-1 +kerning first=1184 second=367 amount=-1 +kerning first=1184 second=369 amount=-1 +kerning first=1184 second=371 amount=-1 +kerning first=1184 second=373 amount=-3 +kerning first=1184 second=375 amount=-2 +kerning first=1184 second=920 amount=-3 +kerning first=1184 second=927 amount=-3 +kerning first=1184 second=940 amount=-2 +kerning first=1184 second=941 amount=-2 +kerning first=1184 second=945 amount=-2 +kerning first=1184 second=947 amount=-3 +kerning first=1184 second=949 amount=-2 +kerning first=1184 second=957 amount=-3 +kerning first=1184 second=959 amount=-2 +kerning first=1184 second=962 amount=-2 +kerning first=1184 second=963 amount=-2 +kerning first=1184 second=964 amount=-4 +kerning first=1184 second=965 amount=-1 +kerning first=1184 second=966 amount=-2 +kerning first=1184 second=968 amount=-1 +kerning first=1184 second=972 amount=-2 +kerning first=1184 second=973 amount=-1 +kerning first=1184 second=1028 amount=-3 +kerning first=1184 second=1029 amount=-1 +kerning first=1184 second=1032 amount=-1 +kerning first=1184 second=1054 amount=-3 +kerning first=1184 second=1057 amount=-3 +kerning first=1184 second=1069 amount=-2 +kerning first=1184 second=1072 amount=-1 +kerning first=1184 second=1077 amount=-2 +kerning first=1184 second=1079 amount=-1 +kerning first=1184 second=1086 amount=-2 +kerning first=1184 second=1089 amount=-2 +kerning first=1184 second=1090 amount=-4 +kerning first=1184 second=1091 amount=-2 +kerning first=1184 second=1092 amount=-2 +kerning first=1184 second=1098 amount=-4 +kerning first=1184 second=1101 amount=-1 +kerning first=1184 second=1104 amount=-2 +kerning first=1184 second=1105 amount=-2 +kerning first=1184 second=1108 amount=-2 +kerning first=1184 second=1118 amount=-2 +kerning first=1184 second=1176 amount=-2 +kerning first=1184 second=1177 amount=-1 +kerning first=1184 second=1185 amount=-4 +kerning first=1184 second=1194 amount=-3 +kerning first=1184 second=1195 amount=-2 +kerning first=1184 second=1199 amount=-3 +kerning first=1184 second=1240 amount=-3 +kerning first=1184 second=1241 amount=-2 +kerning first=1184 second=1256 amount=-3 +kerning first=1184 second=1257 amount=-2 +kerning first=1184 second=1263 amount=-2 +kerning first=1184 second=8211 amount=-4 +kerning first=1184 second=8212 amount=-4 +kerning first=1184 second=8249 amount=-3 +kerning first=1184 second=8250 amount=-2 +kerning first=1185 second=45 amount=-3 +kerning first=1185 second=97 amount=-1 +kerning first=1185 second=99 amount=-2 +kerning first=1185 second=100 amount=-2 +kerning first=1185 second=101 amount=-2 +kerning first=1185 second=103 amount=-2 +kerning first=1185 second=106 amount=1 +kerning first=1185 second=111 amount=-2 +kerning first=1185 second=113 amount=-2 +kerning first=1185 second=115 amount=-1 +kerning first=1185 second=173 amount=-3 +kerning first=1185 second=224 amount=-1 +kerning first=1185 second=225 amount=-1 +kerning first=1185 second=226 amount=-1 +kerning first=1185 second=227 amount=-1 +kerning first=1185 second=228 amount=-1 +kerning first=1185 second=229 amount=-1 +kerning first=1185 second=230 amount=-1 +kerning first=1185 second=231 amount=-2 +kerning first=1185 second=232 amount=-2 +kerning first=1185 second=233 amount=-2 +kerning first=1185 second=234 amount=-2 +kerning first=1185 second=235 amount=-2 +kerning first=1185 second=240 amount=-2 +kerning first=1185 second=242 amount=-2 +kerning first=1185 second=243 amount=-2 +kerning first=1185 second=244 amount=-2 +kerning first=1185 second=245 amount=-2 +kerning first=1185 second=246 amount=-2 +kerning first=1185 second=248 amount=-2 +kerning first=1185 second=257 amount=-1 +kerning first=1185 second=259 amount=-1 +kerning first=1185 second=261 amount=-1 +kerning first=1185 second=263 amount=-2 +kerning first=1185 second=267 amount=-2 +kerning first=1185 second=269 amount=-2 +kerning first=1185 second=271 amount=-2 +kerning first=1185 second=273 amount=-2 +kerning first=1185 second=275 amount=-2 +kerning first=1185 second=277 amount=-2 +kerning first=1185 second=279 amount=-2 +kerning first=1185 second=281 amount=-2 +kerning first=1185 second=283 amount=-2 +kerning first=1185 second=287 amount=-2 +kerning first=1185 second=289 amount=-2 +kerning first=1185 second=291 amount=-2 +kerning first=1185 second=333 amount=-2 +kerning first=1185 second=335 amount=-2 +kerning first=1185 second=337 amount=-2 +kerning first=1185 second=339 amount=-2 +kerning first=1185 second=347 amount=-1 +kerning first=1185 second=351 amount=-1 +kerning first=1185 second=353 amount=-1 +kerning first=1185 second=940 amount=-2 +kerning first=1185 second=941 amount=-2 +kerning first=1185 second=945 amount=-2 +kerning first=1185 second=949 amount=-2 +kerning first=1185 second=959 amount=-2 +kerning first=1185 second=962 amount=-2 +kerning first=1185 second=963 amount=-2 +kerning first=1185 second=966 amount=-2 +kerning first=1185 second=972 amount=-2 +kerning first=1185 second=1072 amount=-1 +kerning first=1185 second=1077 amount=-2 +kerning first=1185 second=1086 amount=-2 +kerning first=1185 second=1089 amount=-2 +kerning first=1185 second=1092 amount=-2 +kerning first=1185 second=1104 amount=-2 +kerning first=1185 second=1105 amount=-2 +kerning first=1185 second=1108 amount=-2 +kerning first=1185 second=1109 amount=-1 +kerning first=1185 second=1112 amount=1 +kerning first=1185 second=1195 amount=-2 +kerning first=1185 second=1241 amount=-2 +kerning first=1185 second=1257 amount=-2 +kerning first=1185 second=8211 amount=-3 +kerning first=1185 second=8212 amount=-3 +kerning first=1186 second=34 amount=-2 +kerning first=1186 second=39 amount=-2 +kerning first=1186 second=45 amount=-2 +kerning first=1186 second=63 amount=-2 +kerning first=1186 second=67 amount=-1 +kerning first=1186 second=71 amount=-1 +kerning first=1186 second=79 amount=-1 +kerning first=1186 second=81 amount=-1 +kerning first=1186 second=84 amount=-2 +kerning first=1186 second=85 amount=-1 +kerning first=1186 second=89 amount=-2 +kerning first=1186 second=99 amount=-1 +kerning first=1186 second=100 amount=-1 +kerning first=1186 second=101 amount=-1 +kerning first=1186 second=106 amount=7 +kerning first=1186 second=111 amount=-1 +kerning first=1186 second=113 amount=-1 +kerning first=1186 second=118 amount=-2 +kerning first=1186 second=119 amount=-2 +kerning first=1186 second=171 amount=-1 +kerning first=1186 second=173 amount=-2 +kerning first=1186 second=199 amount=-1 +kerning first=1186 second=210 amount=-1 +kerning first=1186 second=211 amount=-1 +kerning first=1186 second=212 amount=-1 +kerning first=1186 second=213 amount=-1 +kerning first=1186 second=214 amount=-1 +kerning first=1186 second=216 amount=-1 +kerning first=1186 second=217 amount=-1 +kerning first=1186 second=218 amount=-1 +kerning first=1186 second=219 amount=-1 +kerning first=1186 second=220 amount=-1 +kerning first=1186 second=221 amount=-2 +kerning first=1186 second=231 amount=-1 +kerning first=1186 second=232 amount=-1 +kerning first=1186 second=233 amount=-1 +kerning first=1186 second=234 amount=-1 +kerning first=1186 second=235 amount=-1 +kerning first=1186 second=240 amount=-1 +kerning first=1186 second=242 amount=-1 +kerning first=1186 second=243 amount=-1 +kerning first=1186 second=244 amount=-1 +kerning first=1186 second=245 amount=-1 +kerning first=1186 second=246 amount=-1 +kerning first=1186 second=248 amount=-1 +kerning first=1186 second=262 amount=-1 +kerning first=1186 second=263 amount=-1 +kerning first=1186 second=266 amount=-1 +kerning first=1186 second=267 amount=-1 +kerning first=1186 second=268 amount=-1 +kerning first=1186 second=269 amount=-1 +kerning first=1186 second=271 amount=-1 +kerning first=1186 second=273 amount=-1 +kerning first=1186 second=275 amount=-1 +kerning first=1186 second=277 amount=-1 +kerning first=1186 second=279 amount=-1 +kerning first=1186 second=281 amount=-1 +kerning first=1186 second=283 amount=-1 +kerning first=1186 second=286 amount=-1 +kerning first=1186 second=288 amount=-1 +kerning first=1186 second=290 amount=-1 +kerning first=1186 second=332 amount=-1 +kerning first=1186 second=333 amount=-1 +kerning first=1186 second=334 amount=-1 +kerning first=1186 second=335 amount=-1 +kerning first=1186 second=336 amount=-1 +kerning first=1186 second=337 amount=-1 +kerning first=1186 second=338 amount=-1 +kerning first=1186 second=339 amount=-1 +kerning first=1186 second=354 amount=-2 +kerning first=1186 second=356 amount=-2 +kerning first=1186 second=360 amount=-1 +kerning first=1186 second=362 amount=-1 +kerning first=1186 second=364 amount=-1 +kerning first=1186 second=366 amount=-1 +kerning first=1186 second=368 amount=-1 +kerning first=1186 second=370 amount=-1 +kerning first=1186 second=373 amount=-2 +kerning first=1186 second=374 amount=-2 +kerning first=1186 second=376 amount=-2 +kerning first=1186 second=920 amount=-1 +kerning first=1186 second=927 amount=-1 +kerning first=1186 second=932 amount=-2 +kerning first=1186 second=933 amount=-2 +kerning first=1186 second=934 amount=-2 +kerning first=1186 second=939 amount=-2 +kerning first=1186 second=940 amount=-1 +kerning first=1186 second=941 amount=-1 +kerning first=1186 second=945 amount=-1 +kerning first=1186 second=947 amount=-2 +kerning first=1186 second=949 amount=-1 +kerning first=1186 second=957 amount=-2 +kerning first=1186 second=959 amount=-1 +kerning first=1186 second=962 amount=-1 +kerning first=1186 second=963 amount=-1 +kerning first=1186 second=964 amount=-2 +kerning first=1186 second=966 amount=-1 +kerning first=1186 second=972 amount=-1 +kerning first=1186 second=1026 amount=-2 +kerning first=1186 second=1028 amount=-1 +kerning first=1186 second=1035 amount=-2 +kerning first=1186 second=1038 amount=-1 +kerning first=1186 second=1054 amount=-1 +kerning first=1186 second=1057 amount=-1 +kerning first=1186 second=1058 amount=-2 +kerning first=1186 second=1059 amount=-1 +kerning first=1186 second=1060 amount=-2 +kerning first=1186 second=1063 amount=-2 +kerning first=1186 second=1066 amount=-2 +kerning first=1186 second=1077 amount=-1 +kerning first=1186 second=1086 amount=-1 +kerning first=1186 second=1089 amount=-1 +kerning first=1186 second=1090 amount=-2 +kerning first=1186 second=1092 amount=-1 +kerning first=1186 second=1098 amount=-2 +kerning first=1186 second=1104 amount=-1 +kerning first=1186 second=1105 amount=-1 +kerning first=1186 second=1108 amount=-1 +kerning first=1186 second=1112 amount=7 +kerning first=1186 second=1184 amount=-2 +kerning first=1186 second=1185 amount=-2 +kerning first=1186 second=1194 amount=-1 +kerning first=1186 second=1195 amount=-1 +kerning first=1186 second=1198 amount=-2 +kerning first=1186 second=1199 amount=-2 +kerning first=1186 second=1240 amount=-1 +kerning first=1186 second=1241 amount=-1 +kerning first=1186 second=1256 amount=-1 +kerning first=1186 second=1257 amount=-1 +kerning first=1186 second=1262 amount=-1 +kerning first=1186 second=8211 amount=-2 +kerning first=1186 second=8212 amount=-2 +kerning first=1186 second=8216 amount=-2 +kerning first=1186 second=8217 amount=-2 +kerning first=1186 second=8220 amount=-2 +kerning first=1186 second=8221 amount=-2 +kerning first=1186 second=8249 amount=-1 +kerning first=1187 second=99 amount=-1 +kerning first=1187 second=100 amount=-1 +kerning first=1187 second=101 amount=-1 +kerning first=1187 second=111 amount=-1 +kerning first=1187 second=113 amount=-1 +kerning first=1187 second=231 amount=-1 +kerning first=1187 second=232 amount=-1 +kerning first=1187 second=233 amount=-1 +kerning first=1187 second=234 amount=-1 +kerning first=1187 second=235 amount=-1 +kerning first=1187 second=240 amount=-1 +kerning first=1187 second=242 amount=-1 +kerning first=1187 second=243 amount=-1 +kerning first=1187 second=244 amount=-1 +kerning first=1187 second=245 amount=-1 +kerning first=1187 second=246 amount=-1 +kerning first=1187 second=248 amount=-1 +kerning first=1187 second=263 amount=-1 +kerning first=1187 second=267 amount=-1 +kerning first=1187 second=269 amount=-1 +kerning first=1187 second=271 amount=-1 +kerning first=1187 second=273 amount=-1 +kerning first=1187 second=275 amount=-1 +kerning first=1187 second=277 amount=-1 +kerning first=1187 second=279 amount=-1 +kerning first=1187 second=281 amount=-1 +kerning first=1187 second=283 amount=-1 +kerning first=1187 second=333 amount=-1 +kerning first=1187 second=335 amount=-1 +kerning first=1187 second=337 amount=-1 +kerning first=1187 second=339 amount=-1 +kerning first=1187 second=940 amount=-1 +kerning first=1187 second=941 amount=-1 +kerning first=1187 second=945 amount=-1 +kerning first=1187 second=949 amount=-1 +kerning first=1187 second=959 amount=-1 +kerning first=1187 second=962 amount=-1 +kerning first=1187 second=963 amount=-1 +kerning first=1187 second=964 amount=-2 +kerning first=1187 second=966 amount=-1 +kerning first=1187 second=972 amount=-1 +kerning first=1187 second=1073 amount=-1 +kerning first=1187 second=1077 amount=-1 +kerning first=1187 second=1086 amount=-1 +kerning first=1187 second=1089 amount=-1 +kerning first=1187 second=1090 amount=-2 +kerning first=1187 second=1092 amount=-1 +kerning first=1187 second=1095 amount=-2 +kerning first=1187 second=1098 amount=-2 +kerning first=1187 second=1104 amount=-1 +kerning first=1187 second=1105 amount=-1 +kerning first=1187 second=1108 amount=-1 +kerning first=1187 second=1185 amount=-2 +kerning first=1187 second=1195 amount=-1 +kerning first=1187 second=1241 amount=-1 +kerning first=1187 second=1257 amount=-1 +kerning first=1194 second=44 amount=-1 +kerning first=1194 second=45 amount=-1 +kerning first=1194 second=46 amount=-1 +kerning first=1194 second=47 amount=-1 +kerning first=1194 second=65 amount=-1 +kerning first=1194 second=84 amount=-1 +kerning first=1194 second=86 amount=-1 +kerning first=1194 second=87 amount=-1 +kerning first=1194 second=88 amount=-2 +kerning first=1194 second=89 amount=-2 +kerning first=1194 second=90 amount=-1 +kerning first=1194 second=106 amount=1 +kerning first=1194 second=171 amount=-1 +kerning first=1194 second=173 amount=-1 +kerning first=1194 second=193 amount=-1 kerning first=1194 second=194 amount=-1 -kerning first=367 second=286 amount=-2 -kerning first=121 second=1257 amount=-1 -kerning first=1299 second=1090 amount=-3 -kerning first=266 second=1046 amount=-2 -kerning first=1039 second=346 amount=-1 -kerning first=297 second=230 amount=-1 -kerning first=1074 second=964 amount=-3 -kerning first=1081 second=45 amount=-2 -kerning first=1078 second=273 amount=-2 -kerning first=205 second=242 amount=-1 -kerning first=317 second=947 amount=-4 -kerning first=322 second=372 amount=-5 -kerning first=8361 second=8249 amount=-3 -kerning first=900 second=287 amount=-1 -kerning first=942 second=219 amount=-2 -kerning first=1186 second=1108 amount=-1 -kerning first=251 second=81 amount=-2 -kerning first=371 second=231 amount=-1 -kerning first=965 second=361 amount=-1 -kerning first=968 second=121 amount=-1 -kerning first=274 second=243 amount=-1 -kerning first=8211 second=196 amount=-2 -kerning first=1041 second=1028 amount=-2 -kerning first=1083 second=220 amount=-2 -kerning first=904 second=232 amount=-1 -kerning first=162 second=962 amount=-1 -kerning first=47 second=283 amount=-1 -kerning first=302 second=333 amount=-1 -kerning first=70 second=217 amount=-2 -kerning first=1084 second=375 amount=-1 -kerning first=327 second=949 amount=-1 -kerning first=93 second=119 amount=-4 -kerning first=356 second=194 amount=-6 -kerning first=951 second=84 amount=-5 -kerning first=113 second=286 amount=-2 -kerning first=1220 second=234 amount=-1 -kerning first=376 second=334 amount=-3 -kerning first=973 second=246 amount=-1 -kerning first=169 second=218 amount=-2 -kerning first=8220 second=291 amount=-1 -kerning first=51 second=230 amount=-1 -kerning first=191 second=360 amount=-2 -kerning first=306 second=273 amount=-1 -kerning first=303 second=964 amount=-3 -kerning first=311 second=45 amount=-3 -kerning first=71 second=372 amount=-1 -kerning first=1081 second=8249 amount=-3 -kerning first=214 second=287 amount=-1 -kerning first=916 second=97 amount=-1 -kerning first=237 second=219 amount=-2 -kerning first=354 second=1108 amount=-3 -kerning first=357 second=347 amount=-1 -kerning first=952 second=259 amount=-1 -kerning first=955 second=34 amount=-3 -kerning first=117 second=231 amount=-1 -kerning first=260 second=121 amount=-1 -kerning first=1028 second=196 amount=-1 -kerning first=170 second=373 amount=-4 -kerning first=280 second=1028 amount=-2 -kerning first=49 second=1263 amount=-1 -kerning first=313 second=220 amount=-1 -kerning first=339 second=122 amount=-1 -kerning first=912 second=966 amount=-1 -kerning first=235 second=1203 amount=-2 -kerning first=238 second=374 amount=-5 -kerning first=361 second=289 amount=-1 -kerning first=1299 second=99 amount=-1 -kerning first=1240 second=221 amount=-3 -kerning first=1036 second=111 amount=-2 -kerning first=178 second=83 amount=-1 -kerning first=289 second=233 amount=-1 -kerning first=56 second=333 amount=-1 -kerning first=314 second=375 amount=-1 -kerning first=76 second=949 amount=-1 -kerning first=365 second=234 amount=-1 -kerning first=958 second=364 amount=-2 -kerning first=1263 second=968 amount=-1 -kerning first=37 second=346 amount=-1 -kerning first=1037 second=291 amount=-1 -kerning first=1034 second=1035 amount=-5 -kerning first=8230 second=1098 amount=-3 -kerning first=60 second=273 amount=-1 -kerning first=63 second=45 amount=-2 -kerning first=57 second=964 amount=-3 -kerning first=323 second=85 amount=-2 -kerning first=8365 second=263 amount=-1 -kerning first=1103 second=365 amount=-1 -kerning first=223 second=335 amount=-1 -kerning first=100 second=1108 amount=-1 -kerning first=103 second=347 amount=-1 -kerning first=249 second=34 amount=-3 -kerning first=955 second=8216 amount=-3 -kerning first=123 second=965 amount=-1 -kerning first=38 second=1028 amount=-2 -kerning first=41 second=288 amount=-2 -kerning first=296 second=336 amount=-2 -kerning first=64 second=220 amount=-2 -kerning first=8260 second=970 amount=-1 -kerning first=1080 second=171 amount=-3 -kerning first=204 second=350 amount=-1 -kerning first=8372 second=213 amount=-2 -kerning first=87 second=122 amount=-1 -kerning first=1101 second=8217 amount=-1 -kerning first=230 second=47 amount=-1 -kerning first=350 second=197 amount=-1 -kerning first=944 second=87 amount=-5 -kerning first=107 second=289 amount=-2 -kerning first=373 second=99 amount=-1 -kerning first=964 second=940 amount=-1 -kerning first=967 second=249 amount=-1 -kerning first=163 second=221 amount=-5 -kerning first=276 second=111 amount=-1 -kerning first=273 second=351 amount=-1 -kerning first=185 second=363 amount=-1 -kerning first=182 second=1177 amount=-1 -kerning first=65 second=375 amount=-1 -kerning first=903 second=338 amount=-2 -kerning first=906 second=100 amount=-1 -kerning first=82 second=8211 amount=-1 -kerning first=85 second=1051 amount=-1 -kerning first=1118 second=250 amount=-1 -kerning first=354 second=112 amount=-2 -kerning first=1210 second=187 amount=-1 -kerning first=1203 second=1241 amount=-1 -kerning first=251 second=364 amount=-2 -kerning first=371 second=968 amount=-1 -kerning first=374 second=277 amount=-4 -kerning first=971 second=199 amount=-2 -kerning first=164 second=376 amount=-5 -kerning first=274 second=1035 amount=-5 -kerning first=1051 second=339 amount=-1 -kerning first=183 second=8212 amount=-2 -kerning first=186 second=1059 amount=-2 -kerning first=1063 second=101 amount=-1 -kerning first=63 second=8249 amount=-3 -kerning first=72 second=85 amount=-2 -kerning first=1087 second=263 amount=-1 -kerning first=330 second=365 amount=-1 -kerning first=8377 second=1066 amount=-5 -kerning first=8370 second=8221 amount=-3 -kerning first=950 second=212 amount=-2 -kerning first=249 second=8216 amount=-3 -kerning first=258 second=74 amount=-1 -kerning first=162 second=8250 amount=-1 -kerning first=50 second=336 amount=-2 -kerning first=1064 second=279 amount=-1 -kerning first=193 second=248 amount=-1 -kerning first=310 second=171 amount=-3 -kerning first=1096 second=213 amount=-2 -kerning first=327 second=8217 amount=-3 -kerning first=915 second=225 amount=-1 -kerning first=1171 second=355 amount=-1 -kerning first=1176 second=115 amount=-1 -kerning first=233 second=1076 amount=-1 -kerning first=239 second=87 amount=-5 -kerning first=951 second=367 amount=-1 -kerning first=948 second=1185 amount=-3 -kerning first=113 second=1096 amount=2 -kerning first=119 second=99 amount=-1 -kerning first=256 second=940 amount=-1 -kerning first=376 second=1220 amount=-3 -kerning first=379 second=379 amount=1 -kerning first=973 second=1038 amount=-2 -kerning first=34 second=111 amount=-1 -kerning first=172 second=261 amount=-1 -kerning first=169 second=953 amount=-1 -kerning first=77 second=210 amount=-2 -kerning first=338 second=250 amount=-1 -kerning first=240 second=262 amount=-2 -kerning first=363 second=187 amount=-1 -kerning first=949 second=8220 amount=-1 -kerning first=117 second=968 amount=-1 -kerning first=120 second=277 amount=-2 -kerning first=1298 second=227 amount=-1 -kerning first=35 second=291 amount=-1 -kerning first=177 second=211 amount=-2 -kerning first=283 second=1098 amount=-1 -kerning first=291 second=101 amount=-1 -kerning first=8225 second=973 amount=-1 -kerning first=1069 second=381 amount=-1 -kerning first=198 second=353 amount=-1 -kerning first=201 second=113 amount=-1 -kerning first=316 second=263 amount=-1 -kerning first=8363 second=216 amount=-2 -kerning first=78 second=365 amount=-1 -kerning first=1095 second=8221 amount=-3 -kerning first=1185 second=240 amount=-2 -kerning first=956 second=943 amount=-1 -kerning first=124 second=224 amount=-1 -kerning first=266 second=354 amount=-1 -kerning first=175 second=1184 amount=-5 -kerning first=178 second=366 amount=-2 -kerning first=294 second=279 amount=-1 -kerning first=289 second=970 amount=-1 -kerning first=62 second=171 amount=-3 -kerning first=322 second=213 amount=-2 -kerning first=8361 second=1195 amount=-1 -kerning first=8364 second=371 amount=-1 -kerning first=900 second=103 amount=-1 -kerning first=76 second=8217 amount=-3 -kerning first=242 second=1185 amount=-1 -kerning first=1037 second=1101 amount=-1 -kerning first=298 second=226 amount=-1 -kerning first=66 second=88 amount=-2 -kerning first=323 second=368 amount=-2 -kerning first=8365 second=1069 amount=-1 -kerning first=8377 second=81 amount=-2 -kerning first=86 second=250 amount=-2 -kerning first=901 second=281 amount=-1 -kerning first=352 second=65 amount=-1 -kerning first=243 second=8220 amount=-1 -kerning first=372 second=227 amount=-2 -kerning first=126 second=1079 amount=-1 -kerning first=165 second=89 amount=-5 -kerning first=41 second=1098 amount=-3 -kerning first=47 second=101 amount=-2 -kerning first=1084 second=216 amount=-2 -kerning first=321 second=8221 amount=-3 -kerning first=905 second=228 amount=-1 -kerning first=1168 second=118 amount=-4 -kerning first=350 second=916 amount=-1 -kerning first=944 second=370 amount=-2 -kerning first=113 second=102 amount=1 -kerning first=1207 second=283 amount=-1 -kerning first=250 second=943 amount=-1 -kerning first=253 second=252 amount=-1 -kerning first=973 second=67 amount=-2 -kerning first=166 second=266 amount=-2 -kerning first=169 second=39 amount=-3 -kerning first=48 second=279 amount=-1 -kerning first=1081 second=1195 amount=-1 -kerning first=1085 second=371 amount=-1 -kerning first=214 second=103 amount=-1 -kerning first=903 second=1257 amount=-1 -kerning first=94 second=115 amount=-1 -kerning first=91 second=355 amount=-1 -kerning first=1223 second=230 amount=-1 -kerning first=170 second=214 amount=-2 -kerning first=8221 second=287 amount=-1 -kerning first=52 second=226 amount=-1 -kerning first=1051 second=1262 amount=-2 -kerning first=1063 second=1240 amount=-2 -kerning first=192 second=356 amount=-5 -kerning first=195 second=116 amount=-1 -kerning first=72 second=368 amount=-2 -kerning first=1087 second=1069 amount=-1 -kerning first=215 second=281 amount=-1 -kerning first=1175 second=243 amount=-1 -kerning first=118 second=227 amount=-1 -kerning first=1219 second=1263 amount=-1 -kerning first=258 second=357 amount=-1 -kerning first=381 second=269 amount=-1 -kerning first=8226 second=232 amount=-1 -kerning first=1067 second=332 amount=-2 -kerning first=314 second=216 amount=-2 -kerning first=70 second=8221 amount=-3 -kerning first=73 second=1066 amount=-5 -kerning first=915 second=962 amount=-1 -kerning first=236 second=1194 amount=-2 -kerning first=239 second=370 amount=-2 -kerning first=1263 second=333 amount=-1 -kerning first=179 second=79 amount=-2 -kerning first=1071 second=271 amount=-1 -kerning first=197 second=920 amount=-2 -kerning first=1075 second=44 amount=-3 -kerning first=315 second=371 amount=-1 -kerning first=311 second=1195 amount=-2 -kerning first=8365 second=84 amount=-5 -kerning first=80 second=253 amount=-1 -kerning first=934 second=218 amount=-2 -kerning first=1184 second=346 amount=-1 -kerning first=960 second=360 amount=-2 -kerning first=1298 second=964 amount=-3 -kerning first=35 second=1101 amount=-1 -kerning first=177 second=945 amount=-1 -kerning first=291 second=1240 amount=-2 -kerning first=8260 second=335 amount=-1 -kerning first=61 second=268 amount=-2 -kerning first=316 second=1069 amount=-1 -kerning first=8366 second=259 amount=-1 -kerning first=8372 second=34 amount=-3 -kerning first=1101 second=1175 amount=-2 -kerning first=221 second=1084 amount=-3 -kerning first=345 second=243 amount=-1 -kerning first=936 second=373 amount=-4 -kerning first=160 second=269 amount=-1 -kerning first=1046 second=232 amount=-2 -kerning first=297 second=332 amount=-2 -kerning first=65 second=216 amount=-2 -kerning first=1074 second=1203 amount=-1 -kerning first=88 second=118 amount=-3 -kerning first=1118 second=71 amount=-2 -kerning first=108 second=283 amount=-1 -kerning first=1203 second=233 amount=-1 -kerning first=371 second=333 amount=-1 -kerning first=968 second=245 amount=-1 -kerning first=164 second=217 amount=-2 -kerning first=189 second=119 amount=-4 -kerning first=186 second=359 amount=-1 -kerning first=298 second=963 amount=-1 -kerning first=301 second=271 amount=-1 -kerning first=63 second=1195 amount=-1 -kerning first=1087 second=84 amount=-5 -kerning first=206 second=1026 amount=-5 -kerning first=209 second=286 amount=-2 -kerning first=8377 second=364 amount=-2 -kerning first=904 second=334 amount=-2 -kerning first=901 second=1090 amount=-3 -kerning first=1119 second=246 amount=-1 -kerning first=252 second=360 amount=-2 -kerning first=375 second=273 amount=-1 -kerning first=162 second=947 amount=-4 -kerning first=165 second=372 amount=-5 -kerning first=278 second=287 amount=-1 -kerning first=44 second=1262 amount=-1 -kerning first=47 second=1240 amount=-2 -kerning first=1064 second=97 amount=-1 -kerning first=305 second=219 amount=-2 -kerning first=67 second=1069 amount=1 -kerning first=73 second=81 amount=-2 -kerning first=1096 second=34 amount=-3 -kerning first=8372 second=8216 amount=-3 -kerning first=905 second=965 amount=-1 -kerning first=93 second=243 amount=-1 -kerning first=233 second=373 amount=-1 -kerning first=356 second=288 amount=-1 -kerning first=1207 second=1095 amount=-2 -kerning first=1220 second=336 amount=-2 -kerning first=973 second=350 amount=-1 -kerning first=282 second=232 amount=-1 -kerning first=51 second=332 amount=-2 -kerning first=1062 second=966 amount=-1 -kerning first=1065 second=275 amount=-1 -kerning first=194 second=244 amount=-1 -kerning first=306 second=374 amount=-5 -kerning first=74 second=256 amount=-1 -kerning first=211 second=1298 amount=-1 -kerning first=338 second=71 amount=-2 -kerning first=916 second=221 amount=-5 -kerning first=240 second=83 amount=-1 -kerning first=952 second=363 amount=-1 -kerning first=117 second=333 amount=-1 -kerning first=260 second=245 amount=-1 -kerning first=170 second=949 amount=-1 -kerning first=174 second=257 amount=-1 -kerning first=8225 second=338 amount=-2 -kerning first=8240 second=100 amount=-1 -kerning first=52 second=963 amount=-1 -kerning first=55 second=271 amount=-1 -kerning first=316 second=84 amount=-5 -kerning first=215 second=1090 amount=-3 -kerning first=920 second=376 amount=-3 -kerning first=950 second=8212 amount=-2 -kerning first=121 second=273 amount=-1 -kerning first=124 second=45 amount=-2 -kerning first=36 second=287 amount=-1 -kerning first=1036 second=235 amount=-2 -kerning first=289 second=335 amount=-1 -kerning first=294 second=97 amount=-1 -kerning first=59 second=219 amount=-2 -kerning first=1070 second=377 amount=-1 -kerning first=196 second=1108 amount=-1 -kerning first=322 second=34 amount=-3 -kerning first=317 second=259 amount=-1 -kerning first=8364 second=212 amount=-2 -kerning first=1096 second=8216 amount=-3 -kerning first=915 second=8250 amount=-1 -kerning first=365 second=336 amount=-2 -kerning first=962 second=248 amount=-1 -kerning first=125 second=220 amount=-2 -kerning first=40 second=232 amount=-1 -kerning first=176 second=1176 amount=-1 -kerning first=179 second=362 amount=-2 -kerning first=60 second=374 amount=-5 -kerning first=203 second=289 amount=-1 -kerning first=8365 second=367 amount=-1 -kerning first=901 second=99 amount=-1 -kerning first=86 second=71 amount=-2 -kerning first=1103 second=940 amount=-1 -kerning first=934 second=953 amount=-1 -kerning first=126 second=375 amount=-1 -kerning first=271 second=290 amount=-2 -kerning first=1044 second=338 amount=-1 -kerning first=177 second=8211 amount=-2 -kerning first=1048 second=100 amount=-1 -kerning first=1080 second=262 amount=-2 -kerning first=207 second=234 amount=-1 -kerning first=67 second=84 amount=-1 -kerning first=8363 second=8220 amount=-3 -kerning first=902 second=277 amount=-1 -kerning first=87 second=246 amount=-3 -kerning first=1117 second=199 amount=-2 -kerning first=944 second=211 amount=-2 -kerning first=1202 second=339 amount=-1 -kerning first=247 second=1059 amount=-2 -kerning first=1207 second=101 amount=-1 -kerning first=967 second=353 amount=-1 -kerning first=124 second=8249 amount=-3 -kerning first=166 second=85 amount=-2 -kerning first=276 second=235 amount=-1 -kerning first=48 second=97 amount=-1 -kerning first=1046 second=969 amount=-2 -kerning first=1085 second=212 amount=-2 -kerning first=322 second=8216 amount=-3 -kerning first=906 second=224 amount=-1 -kerning first=1118 second=354 amount=-5 -kerning first=942 second=1184 amount=-5 -kerning first=1210 second=279 amount=-1 -kerning first=254 second=248 amount=-1 -kerning first=374 second=378 amount=-2 -kerning first=8221 second=103 amount=-1 -kerning first=49 second=275 amount=-1 -kerning first=1063 second=225 amount=-1 -kerning first=1087 second=367 amount=-1 -kerning first=1083 second=1185 amount=-3 -kerning first=215 second=99 amount=-1 -kerning first=330 second=940 amount=-1 -kerning first=908 second=379 amount=-1 -kerning first=92 second=351 amount=-1 -kerning first=95 second=111 amount=-1 -kerning first=1119 second=1038 amount=-2 -kerning first=89 second=1114 amount=-3 -kerning first=112 second=967 amount=-2 -kerning first=1224 second=226 amount=-1 -kerning first=193 second=352 amount=-1 -kerning first=310 second=262 amount=-3 -kerning first=73 second=364 amount=-2 -kerning first=1084 second=8220 amount=-3 -kerning first=910 second=1079 amount=-4 -kerning first=923 second=89 amount=-5 -kerning first=93 second=1035 amount=-5 -kerning first=96 second=291 amount=-1 -kerning first=239 second=211 amount=-2 -kerning first=1256 second=381 amount=-1 -kerning first=382 second=263 amount=-1 -kerning first=34 second=235 amount=-1 -kerning first=172 second=365 amount=-1 -kerning first=315 second=212 amount=-1 -kerning first=80 second=74 amount=-3 -kerning first=338 second=354 amount=-5 -kerning first=926 second=266 amount=-2 -kerning first=934 second=39 amount=-3 -kerning first=237 second=1184 amount=-5 -kerning first=240 second=366 amount=-2 -kerning first=363 second=279 amount=-1 -kerning first=123 second=171 amount=-3 -kerning first=170 second=8217 amount=-3 -kerning first=291 second=225 amount=-1 -kerning first=8225 second=1257 amount=-1 -kerning first=61 second=87 amount=-5 -kerning first=1073 second=267 amount=-1 -kerning first=316 second=367 amount=-1 -kerning first=78 second=940 amount=-1 -kerning first=936 second=214 amount=-2 -kerning first=367 second=226 amount=-1 -kerning first=964 second=116 amount=-1 -kerning first=42 second=100 amount=-1 -kerning first=1039 second=281 amount=-1 -kerning first=182 second=250 amount=-1 -kerning first=178 second=941 amount=-1 -kerning first=1036 second=972 amount=-2 -kerning first=62 second=262 amount=-2 -kerning first=202 second=1241 amount=-1 -kerning first=205 second=187 amount=-1 -kerning first=314 second=8220 amount=-3 -kerning first=900 second=227 amount=-1 -kerning first=105 second=339 amount=-1 -kerning first=108 second=101 amount=-1 -kerning first=161 second=263 amount=-1 -kerning first=323 second=943 amount=-1 -kerning first=86 second=354 amount=-5 -kerning first=89 second=114 amount=-3 -kerning first=1119 second=67 amount=-2 -kerning first=232 second=39 amount=-1 -kerning first=946 second=79 amount=-2 -kerning first=372 second=328 amount=-2 -kerning first=165 second=213 amount=-2 -kerning first=278 second=103 amount=-1 -kerning first=8218 second=56 amount=-1 -kerning first=47 second=225 amount=-2 -kerning first=1044 second=1257 amount=-1 -kerning first=190 second=115 amount=-1 -kerning first=302 second=267 amount=-1 -kerning first=64 second=1185 amount=-3 -kerning first=8378 second=360 amount=-2 -kerning first=1168 second=242 amount=-1 -kerning first=944 second=945 amount=-1 -kerning first=113 second=226 amount=-1 +kerning first=1194 second=196 amount=-1 +kerning first=1194 second=197 amount=-1 +kerning first=1194 second=198 amount=-1 +kerning first=1194 second=221 amount=-2 +kerning first=1194 second=256 amount=-1 +kerning first=1194 second=258 amount=-1 +kerning first=1194 second=260 amount=-1 +kerning first=1194 second=354 amount=-1 +kerning first=1194 second=356 amount=-1 +kerning first=1194 second=372 amount=-1 +kerning first=1194 second=374 amount=-2 +kerning first=1194 second=376 amount=-2 +kerning first=1194 second=377 amount=-1 +kerning first=1194 second=379 amount=-1 +kerning first=1194 second=381 amount=-1 +kerning first=1194 second=913 amount=-1 +kerning first=1194 second=916 amount=-1 +kerning first=1194 second=918 amount=-1 +kerning first=1194 second=923 amount=-1 +kerning first=1194 second=932 amount=-1 +kerning first=1194 second=933 amount=-2 +kerning first=1194 second=935 amount=-2 +kerning first=1194 second=939 amount=-2 +kerning first=1194 second=1026 amount=-1 +kerning first=1194 second=1033 amount=-1 +kerning first=1194 second=1035 amount=-1 +kerning first=1194 second=1040 amount=-1 +kerning first=1194 second=1044 amount=-1 +kerning first=1194 second=1046 amount=-2 +kerning first=1194 second=1051 amount=-1 +kerning first=1194 second=1058 amount=-1 +kerning first=1194 second=1061 amount=-2 +kerning first=1194 second=1066 amount=-1 +kerning first=1194 second=1069 amount=1 +kerning first=1194 second=1112 amount=1 +kerning first=1194 second=1174 amount=-2 +kerning first=1194 second=1176 amount=1 +kerning first=1194 second=1184 amount=-1 +kerning first=1194 second=1198 amount=-2 +kerning first=1194 second=1202 amount=-2 +kerning first=1194 second=1298 amount=-1 +kerning first=1194 second=8211 amount=-1 +kerning first=1194 second=8212 amount=-1 +kerning first=1194 second=8218 amount=-1 +kerning first=1194 second=8222 amount=-1 +kerning first=1194 second=8230 amount=-1 +kerning first=1194 second=8249 amount=-1 +kerning first=1195 second=34 amount=-1 +kerning first=1195 second=39 amount=-1 +kerning first=1195 second=63 amount=-1 +kerning first=1195 second=118 amount=-1 +kerning first=1195 second=119 amount=-1 +kerning first=1195 second=120 amount=-1 +kerning first=1195 second=373 amount=-1 +kerning first=1195 second=947 amount=-1 +kerning first=1195 second=955 amount=-1 +kerning first=1195 second=957 amount=-1 +kerning first=1195 second=1078 amount=-1 +kerning first=1195 second=1093 amount=-1 +kerning first=1195 second=1175 amount=-1 +kerning first=1195 second=1199 amount=-1 +kerning first=1195 second=1203 amount=-1 +kerning first=1195 second=8216 amount=-1 +kerning first=1195 second=8217 amount=-1 +kerning first=1195 second=8220 amount=-1 +kerning first=1195 second=8221 amount=-1 +kerning first=1198 second=38 amount=-2 +kerning first=1198 second=44 amount=-4 +kerning first=1198 second=45 amount=-4 +kerning first=1198 second=46 amount=-4 +kerning first=1198 second=47 amount=-4 +kerning first=1198 second=110 amount=-3 +kerning first=1198 second=63 amount=-1 +kerning first=1198 second=65 amount=-5 +kerning first=1198 second=67 amount=-3 +kerning first=1198 second=114 amount=-3 +kerning first=1198 second=71 amount=-3 +kerning first=1198 second=74 amount=-6 +kerning first=1198 second=79 amount=-3 +kerning first=1198 second=81 amount=-3 +kerning first=1198 second=83 amount=-1 +kerning first=1198 second=97 amount=-4 +kerning first=1198 second=99 amount=-4 +kerning first=1198 second=100 amount=-4 +kerning first=1198 second=101 amount=-4 +kerning first=1198 second=103 amount=-4 +kerning first=1198 second=109 amount=-3 +kerning first=1198 second=111 amount=-4 +kerning first=1198 second=112 amount=-3 +kerning first=1198 second=113 amount=-4 +kerning first=1198 second=115 amount=-3 +kerning first=1198 second=117 amount=-2 +kerning first=1198 second=118 amount=-2 +kerning first=1198 second=119 amount=-2 +kerning first=1198 second=120 amount=-2 +kerning first=1198 second=121 amount=-2 +kerning first=1198 second=122 amount=-2 +kerning first=1198 second=171 amount=-3 +kerning first=1198 second=173 amount=-4 +kerning first=1198 second=187 amount=-2 +kerning first=1198 second=193 amount=-5 +kerning first=1198 second=194 amount=-5 +kerning first=1198 second=196 amount=-5 +kerning first=1198 second=197 amount=-5 +kerning first=1198 second=198 amount=-5 +kerning first=1198 second=199 amount=-3 +kerning first=1198 second=210 amount=-3 +kerning first=1198 second=211 amount=-3 +kerning first=1198 second=212 amount=-3 +kerning first=1198 second=213 amount=-3 +kerning first=1198 second=214 amount=-3 +kerning first=1198 second=216 amount=-3 +kerning first=1198 second=224 amount=-4 +kerning first=1198 second=225 amount=-4 +kerning first=1198 second=226 amount=-4 +kerning first=1198 second=227 amount=-4 +kerning first=1198 second=228 amount=-4 +kerning first=1198 second=229 amount=-4 +kerning first=1198 second=230 amount=-4 +kerning first=1198 second=231 amount=-4 +kerning first=1198 second=232 amount=-4 +kerning first=1198 second=233 amount=-4 +kerning first=1198 second=234 amount=-4 +kerning first=1198 second=235 amount=-4 +kerning first=1198 second=240 amount=-4 +kerning first=1198 second=241 amount=-3 +kerning first=1198 second=242 amount=-4 +kerning first=1198 second=243 amount=-4 +kerning first=1198 second=244 amount=-4 +kerning first=1198 second=245 amount=-4 +kerning first=1198 second=246 amount=-4 +kerning first=1198 second=248 amount=-4 +kerning first=1198 second=249 amount=-2 +kerning first=1198 second=250 amount=-2 +kerning first=1198 second=251 amount=-2 +kerning first=1198 second=252 amount=-2 +kerning first=1198 second=253 amount=-2 +kerning first=1198 second=256 amount=-5 +kerning first=1198 second=257 amount=-4 +kerning first=1198 second=258 amount=-5 +kerning first=1198 second=259 amount=-4 +kerning first=1198 second=260 amount=-5 +kerning first=1198 second=261 amount=-4 +kerning first=1198 second=262 amount=-3 +kerning first=1198 second=263 amount=-4 +kerning first=1198 second=266 amount=-3 +kerning first=1198 second=267 amount=-4 +kerning first=1198 second=268 amount=-3 +kerning first=1198 second=269 amount=-4 +kerning first=1198 second=271 amount=-4 +kerning first=1198 second=273 amount=-4 +kerning first=1198 second=275 amount=-4 +kerning first=1198 second=277 amount=-4 +kerning first=1198 second=279 amount=-4 +kerning first=1198 second=281 amount=-4 +kerning first=1198 second=283 amount=-4 +kerning first=1198 second=286 amount=-3 +kerning first=1198 second=287 amount=-4 +kerning first=1198 second=288 amount=-3 +kerning first=1198 second=289 amount=-4 +kerning first=1198 second=290 amount=-3 +kerning first=1198 second=291 amount=-4 +kerning first=1198 second=324 amount=-3 +kerning first=1198 second=326 amount=-3 +kerning first=1198 second=328 amount=-3 +kerning first=1198 second=331 amount=-3 +kerning first=1198 second=332 amount=-3 +kerning first=1198 second=333 amount=-4 +kerning first=1198 second=334 amount=-3 +kerning first=1198 second=335 amount=-4 +kerning first=1198 second=336 amount=-3 +kerning first=1198 second=337 amount=-4 +kerning first=1198 second=338 amount=-3 +kerning first=1198 second=339 amount=-4 +kerning first=1198 second=341 amount=-3 +kerning first=1198 second=343 amount=-3 +kerning first=1198 second=345 amount=-3 +kerning first=1198 second=346 amount=-1 +kerning first=1198 second=347 amount=-3 +kerning first=1198 second=350 amount=-1 +kerning first=1198 second=351 amount=-3 +kerning first=1198 second=352 amount=-1 +kerning first=1198 second=353 amount=-3 +kerning first=1198 second=361 amount=-2 +kerning first=1198 second=363 amount=-2 +kerning first=1198 second=365 amount=-2 +kerning first=1198 second=367 amount=-2 +kerning first=1198 second=369 amount=-2 +kerning first=1198 second=371 amount=-2 +kerning first=1198 second=373 amount=-2 +kerning first=1198 second=375 amount=-2 +kerning first=1198 second=378 amount=-2 +kerning first=1198 second=380 amount=-2 +kerning first=1198 second=382 amount=-2 +kerning first=1198 second=913 amount=-5 +kerning first=1198 second=916 amount=-5 +kerning first=1198 second=920 amount=-3 +kerning first=1198 second=923 amount=-5 +kerning first=1198 second=927 amount=-3 +kerning first=1198 second=937 amount=-2 +kerning first=1198 second=940 amount=-4 +kerning first=1198 second=941 amount=-4 +kerning first=1198 second=942 amount=-3 +kerning first=1198 second=943 amount=-2 +kerning first=1198 second=945 amount=-4 +kerning first=1198 second=947 amount=-2 +kerning first=1198 second=949 amount=-4 +kerning first=1198 second=950 amount=-2 +kerning first=1198 second=951 amount=-3 +kerning first=1198 second=952 amount=-2 +kerning first=1198 second=953 amount=-2 +kerning first=1198 second=954 amount=-3 +kerning first=1198 second=955 amount=-2 +kerning first=1198 second=957 amount=-2 +kerning first=1198 second=959 amount=-4 +kerning first=1198 second=961 amount=-5 +kerning first=1198 second=962 amount=-4 +kerning first=1198 second=963 amount=-4 +kerning first=1198 second=964 amount=-2 +kerning first=1198 second=965 amount=-2 +kerning first=1198 second=966 amount=-4 +kerning first=1198 second=967 amount=-2 +kerning first=1198 second=968 amount=-2 +kerning first=1198 second=969 amount=-4 +kerning first=1198 second=970 amount=-2 +kerning first=1198 second=972 amount=-4 +kerning first=1198 second=973 amount=-2 +kerning first=1198 second=974 amount=-4 +kerning first=1198 second=1028 amount=-3 +kerning first=1198 second=1029 amount=-1 +kerning first=1198 second=1032 amount=-6 +kerning first=1198 second=1033 amount=-5 +kerning first=1198 second=1040 amount=-5 +kerning first=1198 second=1044 amount=-5 +kerning first=1198 second=1051 amount=-5 +kerning first=1198 second=1054 amount=-3 +kerning first=1198 second=1057 amount=-3 +kerning first=1198 second=1069 amount=-2 +kerning first=1198 second=1071 amount=-2 +kerning first=1198 second=1072 amount=-4 +kerning first=1198 second=1074 amount=-3 +kerning first=1198 second=1075 amount=-3 +kerning first=1198 second=1077 amount=-4 +kerning first=1198 second=1078 amount=-2 +kerning first=1198 second=1079 amount=-4 +kerning first=1198 second=1080 amount=-3 +kerning first=1198 second=1081 amount=-3 +kerning first=1198 second=1082 amount=-3 +kerning first=1198 second=1084 amount=-3 +kerning first=1198 second=1085 amount=-3 +kerning first=1198 second=1086 amount=-4 +kerning first=1198 second=1087 amount=-3 +kerning first=1198 second=1088 amount=-3 +kerning first=1198 second=1089 amount=-4 +kerning first=1198 second=1090 amount=-2 +kerning first=1198 second=1091 amount=-2 +kerning first=1198 second=1092 amount=-4 +kerning first=1198 second=1093 amount=-2 +kerning first=1198 second=1094 amount=-3 +kerning first=1198 second=1096 amount=-3 +kerning first=1198 second=1097 amount=-3 +kerning first=1198 second=1098 amount=-2 +kerning first=1198 second=1099 amount=-3 +kerning first=1198 second=1100 amount=-3 +kerning first=1198 second=1101 amount=-4 +kerning first=1198 second=1102 amount=-3 +kerning first=1198 second=1104 amount=-4 +kerning first=1198 second=1105 amount=-4 +kerning first=1198 second=1107 amount=-3 +kerning first=1198 second=1108 amount=-4 +kerning first=1198 second=1109 amount=-3 +kerning first=1198 second=1114 amount=-3 +kerning first=1198 second=1116 amount=-3 +kerning first=1198 second=1117 amount=-3 +kerning first=1198 second=1118 amount=-2 +kerning first=1198 second=1119 amount=-3 +kerning first=1198 second=1169 amount=-3 +kerning first=1198 second=1175 amount=-2 +kerning first=1198 second=1176 amount=-2 +kerning first=1198 second=1177 amount=-4 +kerning first=1198 second=1179 amount=-3 +kerning first=1198 second=1185 amount=-2 +kerning first=1198 second=1187 amount=-3 +kerning first=1198 second=1194 amount=-3 +kerning first=1198 second=1195 amount=-4 +kerning first=1198 second=1199 amount=-2 +kerning first=1198 second=1203 amount=-2 +kerning first=1198 second=1220 amount=-3 +kerning first=1198 second=1224 amount=-3 +kerning first=1198 second=1240 amount=-3 +kerning first=1198 second=1241 amount=-4 +kerning first=1198 second=1256 amount=-3 +kerning first=1198 second=1257 amount=-4 +kerning first=1198 second=1263 amount=-2 +kerning first=1198 second=1298 amount=-5 +kerning first=1198 second=8211 amount=-4 +kerning first=1198 second=8212 amount=-4 +kerning first=1198 second=8218 amount=-4 +kerning first=1198 second=8222 amount=-4 +kerning first=1198 second=8230 amount=-4 +kerning first=1198 second=8249 amount=-3 +kerning first=1198 second=8250 amount=-2 +kerning first=1199 second=44 amount=-2 +kerning first=1199 second=45 amount=-1 +kerning first=1199 second=46 amount=-2 +kerning first=1199 second=47 amount=-3 +kerning first=1199 second=97 amount=-1 +kerning first=1199 second=99 amount=-1 +kerning first=1199 second=100 amount=-1 +kerning first=1199 second=101 amount=-1 +kerning first=1199 second=103 amount=-1 +kerning first=1199 second=111 amount=-1 +kerning first=1199 second=113 amount=-1 +kerning first=1199 second=115 amount=-1 +kerning first=1199 second=171 amount=-1 +kerning first=1199 second=173 amount=-1 +kerning first=1199 second=224 amount=-1 +kerning first=1199 second=225 amount=-1 +kerning first=1199 second=226 amount=-1 +kerning first=1199 second=227 amount=-1 +kerning first=1199 second=228 amount=-1 +kerning first=1199 second=229 amount=-1 +kerning first=1199 second=230 amount=-1 +kerning first=1199 second=231 amount=-1 +kerning first=1199 second=232 amount=-1 +kerning first=1199 second=233 amount=-1 +kerning first=1199 second=234 amount=-1 +kerning first=1199 second=235 amount=-1 +kerning first=1199 second=240 amount=-1 +kerning first=1199 second=242 amount=-1 +kerning first=1199 second=243 amount=-1 +kerning first=1199 second=244 amount=-1 +kerning first=1199 second=245 amount=-1 +kerning first=1199 second=246 amount=-1 +kerning first=1199 second=248 amount=-1 +kerning first=1199 second=257 amount=-1 +kerning first=1199 second=259 amount=-1 +kerning first=1199 second=261 amount=-1 +kerning first=1199 second=263 amount=-1 +kerning first=1199 second=267 amount=-1 +kerning first=1199 second=269 amount=-1 +kerning first=1199 second=271 amount=-1 +kerning first=1199 second=273 amount=-1 +kerning first=1199 second=275 amount=-1 +kerning first=1199 second=277 amount=-1 +kerning first=1199 second=279 amount=-1 +kerning first=1199 second=281 amount=-1 +kerning first=1199 second=283 amount=-1 +kerning first=1199 second=287 amount=-1 +kerning first=1199 second=289 amount=-1 +kerning first=1199 second=291 amount=-1 +kerning first=1199 second=333 amount=-1 +kerning first=1199 second=335 amount=-1 +kerning first=1199 second=337 amount=-1 +kerning first=1199 second=339 amount=-1 +kerning first=1199 second=347 amount=-1 +kerning first=1199 second=351 amount=-1 +kerning first=1199 second=353 amount=-1 +kerning first=1199 second=940 amount=-1 +kerning first=1199 second=941 amount=-1 +kerning first=1199 second=945 amount=-1 +kerning first=1199 second=949 amount=-1 +kerning first=1199 second=950 amount=-2 +kerning first=1199 second=955 amount=-4 +kerning first=1199 second=959 amount=-1 +kerning first=1199 second=961 amount=-2 +kerning first=1199 second=962 amount=-1 +kerning first=1199 second=963 amount=-1 +kerning first=1199 second=966 amount=-1 +kerning first=1199 second=969 amount=-1 +kerning first=1199 second=972 amount=-1 +kerning first=1199 second=974 amount=-1 +kerning first=1199 second=1072 amount=-1 +kerning first=1199 second=1077 amount=-1 +kerning first=1199 second=1086 amount=-1 +kerning first=1199 second=1089 amount=-1 +kerning first=1199 second=1092 amount=-1 +kerning first=1199 second=1104 amount=-1 +kerning first=1199 second=1105 amount=-1 +kerning first=1199 second=1108 amount=-1 +kerning first=1199 second=1109 amount=-1 +kerning first=1199 second=1195 amount=-1 +kerning first=1199 second=1241 amount=-1 +kerning first=1199 second=1257 amount=-1 +kerning first=1199 second=8211 amount=-1 +kerning first=1199 second=8212 amount=-1 +kerning first=1199 second=8218 amount=-2 +kerning first=1199 second=8222 amount=-2 +kerning first=1199 second=8230 amount=-2 +kerning first=1199 second=8249 amount=-1 +kerning first=1202 second=34 amount=-2 +kerning first=1202 second=39 amount=-2 +kerning first=1202 second=45 amount=-2 +kerning first=1202 second=63 amount=-2 +kerning first=1202 second=67 amount=-1 +kerning first=1202 second=71 amount=-1 +kerning first=1202 second=79 amount=-1 +kerning first=1202 second=81 amount=-1 +kerning first=1202 second=84 amount=-2 +kerning first=1202 second=85 amount=-1 +kerning first=1202 second=89 amount=-2 +kerning first=1202 second=99 amount=-1 +kerning first=1202 second=100 amount=-1 +kerning first=1202 second=101 amount=-1 +kerning first=1202 second=106 amount=7 +kerning first=1202 second=111 amount=-1 +kerning first=1202 second=113 amount=-1 +kerning first=1202 second=118 amount=-2 +kerning first=1202 second=119 amount=-2 +kerning first=1202 second=171 amount=-1 +kerning first=1202 second=173 amount=-2 +kerning first=1202 second=199 amount=-1 +kerning first=1202 second=210 amount=-1 +kerning first=1202 second=211 amount=-1 +kerning first=1202 second=212 amount=-1 +kerning first=1202 second=213 amount=-1 +kerning first=1202 second=214 amount=-1 +kerning first=1202 second=216 amount=-1 +kerning first=1202 second=217 amount=-1 +kerning first=1202 second=218 amount=-1 +kerning first=1202 second=219 amount=-1 +kerning first=1202 second=220 amount=-1 +kerning first=1202 second=221 amount=-2 +kerning first=1202 second=231 amount=-1 +kerning first=1202 second=232 amount=-1 +kerning first=1202 second=233 amount=-1 +kerning first=1202 second=234 amount=-1 +kerning first=1202 second=235 amount=-1 +kerning first=1202 second=240 amount=-1 +kerning first=1202 second=242 amount=-1 +kerning first=1202 second=243 amount=-1 +kerning first=1202 second=244 amount=-1 +kerning first=1202 second=245 amount=-1 +kerning first=1202 second=246 amount=-1 +kerning first=1202 second=248 amount=-1 +kerning first=1202 second=262 amount=-1 +kerning first=1202 second=263 amount=-1 +kerning first=1202 second=266 amount=-1 +kerning first=1202 second=267 amount=-1 +kerning first=1202 second=268 amount=-1 +kerning first=1202 second=269 amount=-1 +kerning first=1202 second=271 amount=-1 +kerning first=1202 second=273 amount=-1 +kerning first=1202 second=275 amount=-1 +kerning first=1202 second=277 amount=-1 +kerning first=1202 second=279 amount=-1 +kerning first=1202 second=281 amount=-1 +kerning first=1202 second=283 amount=-1 +kerning first=1202 second=286 amount=-1 +kerning first=1202 second=288 amount=-1 +kerning first=1202 second=290 amount=-1 +kerning first=1202 second=332 amount=-1 +kerning first=1202 second=333 amount=-1 +kerning first=1202 second=334 amount=-1 +kerning first=1202 second=335 amount=-1 +kerning first=1202 second=336 amount=-1 +kerning first=1202 second=337 amount=-1 +kerning first=1202 second=338 amount=-1 +kerning first=1202 second=339 amount=-1 +kerning first=1202 second=354 amount=-2 +kerning first=1202 second=356 amount=-2 +kerning first=1202 second=360 amount=-1 +kerning first=1202 second=362 amount=-1 +kerning first=1202 second=364 amount=-1 +kerning first=1202 second=366 amount=-1 +kerning first=1202 second=368 amount=-1 +kerning first=1202 second=370 amount=-1 +kerning first=1202 second=373 amount=-2 +kerning first=1202 second=374 amount=-2 +kerning first=1202 second=376 amount=-2 +kerning first=1202 second=920 amount=-1 +kerning first=1202 second=927 amount=-1 +kerning first=1202 second=932 amount=-2 +kerning first=1202 second=933 amount=-2 +kerning first=1202 second=934 amount=-2 +kerning first=1202 second=939 amount=-2 +kerning first=1202 second=940 amount=-1 +kerning first=1202 second=941 amount=-1 +kerning first=1202 second=945 amount=-1 +kerning first=1202 second=947 amount=-2 +kerning first=1202 second=949 amount=-1 +kerning first=1202 second=957 amount=-2 +kerning first=1202 second=959 amount=-1 +kerning first=1202 second=962 amount=-1 +kerning first=1202 second=963 amount=-1 +kerning first=1202 second=964 amount=-2 +kerning first=1202 second=966 amount=-1 +kerning first=1202 second=972 amount=-1 +kerning first=1202 second=1026 amount=-2 +kerning first=1202 second=1028 amount=-1 +kerning first=1202 second=1035 amount=-2 +kerning first=1202 second=1038 amount=-1 +kerning first=1202 second=1054 amount=-1 +kerning first=1202 second=1057 amount=-1 +kerning first=1202 second=1058 amount=-2 +kerning first=1202 second=1059 amount=-1 +kerning first=1202 second=1060 amount=-2 +kerning first=1202 second=1063 amount=-2 +kerning first=1202 second=1066 amount=-2 +kerning first=1202 second=1077 amount=-1 +kerning first=1202 second=1086 amount=-1 +kerning first=1202 second=1089 amount=-1 +kerning first=1202 second=1090 amount=-2 +kerning first=1202 second=1092 amount=-1 +kerning first=1202 second=1098 amount=-2 +kerning first=1202 second=1104 amount=-1 +kerning first=1202 second=1105 amount=-1 +kerning first=1202 second=1108 amount=-1 +kerning first=1202 second=1112 amount=7 +kerning first=1202 second=1184 amount=-2 +kerning first=1202 second=1185 amount=-2 +kerning first=1202 second=1194 amount=-1 +kerning first=1202 second=1195 amount=-1 +kerning first=1202 second=1198 amount=-2 +kerning first=1202 second=1199 amount=-2 +kerning first=1202 second=1240 amount=-1 +kerning first=1202 second=1241 amount=-1 +kerning first=1202 second=1256 amount=-1 +kerning first=1202 second=1257 amount=-1 kerning first=1202 second=1262 amount=-1 -kerning first=253 second=356 amount=-5 -kerning first=256 second=116 amount=-1 -kerning first=376 second=268 amount=-3 -kerning first=166 second=368 amount=-2 -kerning first=276 second=972 amount=-1 -kerning first=8220 second=231 amount=-1 -kerning first=65 second=8220 amount=-3 -kerning first=214 second=227 amount=-1 -kerning first=354 second=973 amount=-2 -kerning first=1223 second=332 amount=-2 -kerning first=167 second=1066 amount=-5 -kerning first=164 second=8221 amount=-3 -kerning first=1028 second=106 amount=1 -kerning first=8217 second=1298 amount=-3 -kerning first=1063 second=962 amount=-1 -kerning first=195 second=240 amount=-1 -kerning first=304 second=1194 amount=-2 -kerning first=72 second=943 amount=-1 -kerning first=75 second=252 amount=-1 -kerning first=232 second=8222 amount=-1 -kerning first=361 second=229 amount=-1 -kerning first=956 second=119 amount=-4 -kerning first=1224 second=963 amount=-1 -kerning first=258 second=920 amount=-2 -kerning first=378 second=1195 amount=-1 -kerning first=36 second=103 amount=-1 -kerning first=1026 second=1026 amount=-5 -kerning first=175 second=253 amount=-1 -kerning first=8222 second=1090 amount=-3 -kerning first=8226 second=334 amount=-2 -kerning first=56 second=267 amount=-1 -kerning first=1099 second=360 amount=-2 -kerning first=1102 second=120 amount=-2 -kerning first=915 second=947 amount=-4 -kerning first=923 second=372 amount=-5 -kerning first=96 second=1101 amount=-1 -kerning first=239 second=945 amount=-1 -kerning first=34 second=972 amount=-1 -kerning first=37 second=281 amount=-1 -kerning first=1037 second=231 amount=-1 -kerning first=8230 second=965 amount=-1 -kerning first=1068 second=1202 amount=-2 -kerning first=1071 second=373 amount=-4 -kerning first=80 second=357 amount=-1 -kerning first=223 second=269 amount=-1 -kerning first=100 second=973 amount=-1 -kerning first=1187 second=232 amount=-1 -kerning first=963 second=244 amount=-1 -kerning first=126 second=216 amount=-2 -kerning first=271 second=106 amount=1 -kerning first=41 second=228 amount=-1 -kerning first=184 second=118 amount=-4 -kerning first=291 second=962 amount=-1 -kerning first=58 second=1194 amount=-2 -kerning first=61 second=370 amount=-2 -kerning first=1069 second=8230 amount=-1 -kerning first=1080 second=83 amount=-1 -kerning first=204 second=283 amount=-1 -kerning first=8363 second=1177 amount=-1 -kerning first=8366 second=363 amount=-1 -kerning first=81 second=1044 amount=-1 -kerning first=87 second=67 amount=-2 -kerning first=936 second=949 amount=-1 -kerning first=107 second=229 amount=-1 -kerning first=247 second=359 amount=-1 -kerning first=250 second=119 amount=-4 -kerning first=367 second=963 amount=-1 -kerning first=373 second=44 amount=-2 -kerning first=124 second=1195 amount=-1 -kerning first=160 second=371 amount=-1 -kerning first=273 second=286 amount=-2 -kerning first=39 second=1257 amount=-1 -kerning first=1039 second=1090 amount=-3 -kerning first=1046 second=334 amount=-3 -kerning first=300 second=218 amount=-2 -kerning first=325 second=360 amount=-2 -kerning first=8364 second=8212 amount=-2 -kerning first=8369 second=1059 amount=-2 -kerning first=903 second=273 amount=-1 -kerning first=906 second=45 amount=-2 -kerning first=900 second=964 amount=-3 -kerning first=85 second=923 amount=-2 -kerning first=88 second=242 amount=-2 -kerning first=225 second=947 amount=-1 -kerning first=105 second=1262 amount=-2 -kerning first=108 second=1240 amount=-2 +kerning first=1202 second=8211 amount=-2 +kerning first=1202 second=8212 amount=-2 +kerning first=1202 second=8216 amount=-2 +kerning first=1202 second=8217 amount=-2 +kerning first=1202 second=8220 amount=-2 +kerning first=1202 second=8221 amount=-2 +kerning first=1202 second=8249 amount=-1 +kerning first=1203 second=99 amount=-1 +kerning first=1203 second=100 amount=-1 +kerning first=1203 second=101 amount=-1 +kerning first=1203 second=111 amount=-1 +kerning first=1203 second=113 amount=-1 +kerning first=1203 second=231 amount=-1 +kerning first=1203 second=232 amount=-1 +kerning first=1203 second=233 amount=-1 +kerning first=1203 second=234 amount=-1 +kerning first=1203 second=235 amount=-1 +kerning first=1203 second=240 amount=-1 +kerning first=1203 second=242 amount=-1 +kerning first=1203 second=243 amount=-1 +kerning first=1203 second=244 amount=-1 +kerning first=1203 second=245 amount=-1 +kerning first=1203 second=246 amount=-1 +kerning first=1203 second=248 amount=-1 +kerning first=1203 second=263 amount=-1 +kerning first=1203 second=267 amount=-1 +kerning first=1203 second=269 amount=-1 +kerning first=1203 second=271 amount=-1 +kerning first=1203 second=273 amount=-1 +kerning first=1203 second=275 amount=-1 +kerning first=1203 second=277 amount=-1 +kerning first=1203 second=279 amount=-1 +kerning first=1203 second=281 amount=-1 +kerning first=1203 second=283 amount=-1 +kerning first=1203 second=333 amount=-1 kerning first=1203 second=335 amount=-1 -kerning first=1210 second=97 amount=-1 -kerning first=965 second=1108 amount=-1 -kerning first=968 second=347 amount=-1 -kerning first=161 second=1069 amount=-1 -kerning first=167 second=81 amount=-2 -kerning first=189 second=243 amount=-1 -kerning first=301 second=373 amount=-4 -kerning first=206 second=1263 amount=-1 -kerning first=1119 second=350 amount=-1 -kerning first=946 second=362 amount=-2 -kerning first=1219 second=275 amount=-1 -kerning first=255 second=244 amount=-1 -kerning first=1206 second=966 amount=-1 -kerning first=375 second=374 amount=-5 -kerning first=372 second=1203 amount=-1 -kerning first=47 second=962 amount=-1 -kerning first=1064 second=221 amount=-5 -kerning first=310 second=83 amount=-1 -kerning first=1084 second=1177 amount=-1 -kerning first=910 second=375 amount=-2 -kerning first=1171 second=290 amount=-2 -kerning first=236 second=257 amount=-1 -kerning first=944 second=8211 amount=-2 -kerning first=113 second=963 amount=-1 -kerning first=119 second=44 amount=-2 -kerning first=34 second=56 amount=-1 -kerning first=1027 second=234 amount=-1 -kerning first=279 second=1090 amount=-1 -kerning first=282 second=334 amount=-2 -kerning first=8224 second=277 amount=-1 -kerning first=8230 second=49 amount=-4 -kerning first=54 second=218 amount=-2 -kerning first=1065 second=376 amount=-2 -kerning first=194 second=346 amount=-1 -kerning first=74 second=360 amount=-2 -kerning first=1085 second=8212 amount=-2 -kerning first=214 second=964 amount=-3 -kerning first=906 second=8249 amount=-3 -kerning first=926 second=85 amount=-2 -kerning first=363 second=97 amount=-1 -kerning first=260 second=347 amount=-1 -kerning first=35 second=231 amount=-1 -kerning first=174 second=361 amount=-1 -kerning first=177 second=121 amount=-1 -kerning first=8240 second=224 amount=-1 -kerning first=55 second=373 amount=-4 -kerning first=1063 second=8250 amount=-1 -kerning first=195 second=1028 amount=-2 -kerning first=198 second=288 amount=-2 -kerning first=238 second=1176 amount=-1 -kerning first=244 second=122 amount=-1 -kerning first=361 second=966 amount=-1 -kerning first=121 second=374 amount=-5 -kerning first=1039 second=99 amount=-1 -kerning first=1036 second=337 amount=-2 -kerning first=182 second=71 amount=-2 -kerning first=294 second=221 amount=-5 -kerning first=53 second=8230 amount=-1 -kerning first=62 second=83 amount=-1 -kerning first=1074 second=261 amount=-1 -kerning first=202 second=233 amount=-1 -kerning first=314 second=1177 amount=-1 -kerning first=317 second=363 amount=-1 -kerning first=1186 second=338 amount=-1 -kerning first=239 second=8211 amount=-2 -kerning first=962 second=352 amount=-1 -kerning first=161 second=84 amount=-5 -kerning first=40 second=334 amount=-2 -kerning first=37 second=1090 amount=-3 -kerning first=1037 second=968 amount=-1 -kerning first=183 second=246 amount=-1 -kerning first=1041 second=277 amount=-1 -kerning first=318 second=1059 amount=-2 -kerning first=315 second=8212 amount=-3 -kerning first=8370 second=251 amount=-1 -kerning first=1116 second=113 amount=-2 -kerning first=162 second=259 amount=-1 -kerning first=165 second=34 amount=-3 -kerning first=8212 second=102 amount=-2 -kerning first=41 second=965 amount=-1 -kerning first=47 second=46 amount=-4 -kerning first=1048 second=224 amount=-1 -kerning first=187 second=196 amount=-3 -kerning first=291 second=8250 amount=-1 -kerning first=1080 second=366 amount=-2 -kerning first=207 second=336 amount=-2 -kerning first=327 second=248 amount=-1 -kerning first=905 second=171 amount=-3 -kerning first=87 second=350 amount=-1 -kerning first=936 second=8217 amount=-3 -kerning first=107 second=966 amount=-2 -kerning first=276 second=337 amount=-1 -kerning first=8220 second=52 amount=-1 -kerning first=48 second=221 amount=-5 -kerning first=191 second=111 amount=-1 -kerning first=188 second=351 amount=-1 -kerning first=303 second=261 amount=-1 -kerning first=300 second=953 amount=-1 -kerning first=65 second=1177 amount=-1 -kerning first=208 second=967 amount=-1 -kerning first=332 second=198 amount=-2 -kerning first=91 second=290 amount=-2 -kerning first=354 second=338 amount=-1 -kerning first=357 second=100 amount=-1 -kerning first=254 second=352 amount=-1 -kerning first=374 second=954 amount=-3 -kerning first=377 second=262 amount=-1 -kerning first=971 second=1241 amount=-1 -kerning first=167 second=364 amount=-2 -kerning first=280 second=277 amount=-1 -kerning first=8221 second=227 amount=-1 -kerning first=49 second=376 amount=-5 -kerning first=1051 second=1079 amount=-1 -kerning first=189 second=1035 amount=-5 -kerning first=192 second=291 amount=-1 -kerning first=1066 second=89 amount=-5 -kerning first=69 second=1059 amount=-2 -kerning first=1095 second=251 amount=-1 -kerning first=908 second=955 amount=-2 -kerning first=912 second=263 amount=-1 -kerning first=95 second=235 amount=-1 -kerning first=381 second=212 amount=-1 -kerning first=165 second=8216 amount=-3 -kerning first=8218 second=1256 amount=-1 -kerning first=47 second=8250 amount=-1 -kerning first=1067 second=266 amount=-2 -kerning first=305 second=1184 amount=-5 -kerning first=8361 second=79 amount=-2 -kerning first=76 second=248 amount=-1 -kerning first=923 second=213 amount=-2 -kerning first=233 second=8217 amount=-1 -kerning first=958 second=115 amount=-1 -kerning first=1263 second=267 amount=-1 -kerning first=34 second=337 amount=-1 -kerning first=37 second=99 amount=-1 -kerning first=176 second=249 amount=-1 -kerning first=172 second=940 amount=-1 -kerning first=57 second=261 amount=-1 -kerning first=54 second=953 amount=-1 -kerning first=1071 second=214 amount=-2 -kerning first=80 second=198 amount=-4 -kerning first=1103 second=116 amount=-1 -kerning first=926 second=368 amount=-2 -kerning first=100 second=338 amount=-2 -kerning first=103 second=100 amount=-1 -kerning first=1184 second=281 amount=-2 -kerning first=240 second=941 amount=-1 -kerning first=123 second=262 amount=-2 -kerning first=35 second=968 amount=-1 -kerning first=38 second=277 amount=-1 -kerning first=180 second=199 amount=-2 -kerning first=296 second=89 amount=-5 -kerning first=8260 second=269 amount=-1 -kerning first=61 second=211 amount=-2 -kerning first=1073 second=369 amount=-1 -kerning first=201 second=339 amount=-1 -kerning first=204 second=101 amount=-1 -kerning first=198 second=1098 amount=-3 -kerning first=321 second=251 amount=-1 -kerning first=84 second=113 amount=-3 -kerning first=221 second=955 amount=-2 -kerning first=928 second=1066 amount=-5 -kerning first=964 second=240 amount=-1 -kerning first=160 second=212 amount=-2 -kerning first=1299 second=1194 amount=-2 -kerning first=42 second=224 amount=-1 -kerning first=1036 second=1256 amount=-3 -kerning first=182 second=354 amount=-5 -kerning first=178 second=1118 amount=-1 -kerning first=297 second=266 amount=-2 -kerning first=300 second=39 amount=-3 -kerning first=59 second=1184 amount=-5 -kerning first=62 second=366 amount=-2 -kerning first=1070 second=8222 amount=-1 -kerning first=1081 second=79 amount=-2 -kerning first=205 second=279 amount=-1 -kerning first=202 second=970 amount=-1 -kerning first=8369 second=359 amount=-1 -kerning first=88 second=63 amount=-2 -kerning first=942 second=253 amount=-1 -kerning first=108 second=225 amount=-1 -kerning first=1186 second=1257 amount=-1 -kerning first=251 second=115 amount=-1 -kerning first=371 second=267 amount=-1 -kerning first=161 second=367 amount=-1 -kerning first=125 second=1185 amount=-3 -kerning first=183 second=1038 amount=-2 -kerning first=301 second=214 amount=-2 -kerning first=209 second=226 amount=-1 -kerning first=330 second=116 amount=-1 -kerning first=904 second=268 amount=-2 -kerning first=126 second=8220 amount=-3 -kerning first=278 second=227 amount=-1 -kerning first=47 second=326 amount=-1 -kerning first=50 second=89 amount=-5 -kerning first=302 second=369 amount=-1 -kerning first=70 second=251 amount=-1 -kerning first=210 second=381 amount=-1 -kerning first=910 second=216 amount=-3 -kerning first=1171 second=106 amount=1 -kerning first=227 second=8221 amount=-1 -kerning first=356 second=228 amount=-2 -kerning first=951 second=118 amount=-4 +kerning first=1203 second=337 amount=-1 +kerning first=1203 second=339 amount=-1 +kerning first=1203 second=940 amount=-1 +kerning first=1203 second=941 amount=-1 +kerning first=1203 second=945 amount=-1 +kerning first=1203 second=949 amount=-1 +kerning first=1203 second=959 amount=-1 +kerning first=1203 second=962 amount=-1 +kerning first=1203 second=963 amount=-1 +kerning first=1203 second=964 amount=-2 +kerning first=1203 second=966 amount=-1 +kerning first=1203 second=972 amount=-1 +kerning first=1203 second=1073 amount=-1 +kerning first=1203 second=1077 amount=-1 +kerning first=1203 second=1086 amount=-1 +kerning first=1203 second=1089 amount=-1 +kerning first=1203 second=1090 amount=-2 +kerning first=1203 second=1092 amount=-1 +kerning first=1203 second=1095 amount=-2 +kerning first=1203 second=1098 amount=-2 +kerning first=1203 second=1104 amount=-1 +kerning first=1203 second=1105 amount=-1 +kerning first=1203 second=1108 amount=-1 +kerning first=1203 second=1185 amount=-2 +kerning first=1203 second=1195 amount=-1 +kerning first=1203 second=1241 amount=-1 +kerning first=1203 second=1257 amount=-1 +kerning first=1206 second=34 amount=-2 +kerning first=1206 second=39 amount=-2 +kerning first=1206 second=45 amount=-2 +kerning first=1206 second=63 amount=-2 +kerning first=1206 second=67 amount=-1 +kerning first=1206 second=71 amount=-1 +kerning first=1206 second=79 amount=-1 +kerning first=1206 second=81 amount=-1 +kerning first=1206 second=84 amount=-2 +kerning first=1206 second=85 amount=-1 +kerning first=1206 second=89 amount=-2 +kerning first=1206 second=99 amount=-1 +kerning first=1206 second=100 amount=-1 +kerning first=1206 second=101 amount=-1 +kerning first=1206 second=106 amount=7 +kerning first=1206 second=111 amount=-1 +kerning first=1206 second=113 amount=-1 +kerning first=1206 second=118 amount=-2 +kerning first=1206 second=119 amount=-2 +kerning first=1206 second=171 amount=-1 +kerning first=1206 second=173 amount=-2 +kerning first=1206 second=199 amount=-1 +kerning first=1206 second=210 amount=-1 +kerning first=1206 second=211 amount=-1 +kerning first=1206 second=212 amount=-1 +kerning first=1206 second=213 amount=-1 +kerning first=1206 second=214 amount=-1 +kerning first=1206 second=216 amount=-1 +kerning first=1206 second=217 amount=-1 +kerning first=1206 second=218 amount=-1 +kerning first=1206 second=219 amount=-1 +kerning first=1206 second=220 amount=-1 +kerning first=1206 second=221 amount=-2 +kerning first=1206 second=231 amount=-1 +kerning first=1206 second=232 amount=-1 +kerning first=1206 second=233 amount=-1 +kerning first=1206 second=234 amount=-1 +kerning first=1206 second=235 amount=-1 +kerning first=1206 second=240 amount=-1 +kerning first=1206 second=242 amount=-1 +kerning first=1206 second=243 amount=-1 +kerning first=1206 second=244 amount=-1 +kerning first=1206 second=245 amount=-1 +kerning first=1206 second=246 amount=-1 +kerning first=1206 second=248 amount=-1 +kerning first=1206 second=262 amount=-1 +kerning first=1206 second=263 amount=-1 +kerning first=1206 second=266 amount=-1 +kerning first=1206 second=267 amount=-1 +kerning first=1206 second=268 amount=-1 +kerning first=1206 second=269 amount=-1 +kerning first=1206 second=271 amount=-1 +kerning first=1206 second=273 amount=-1 +kerning first=1206 second=275 amount=-1 +kerning first=1206 second=277 amount=-1 +kerning first=1206 second=279 amount=-1 +kerning first=1206 second=281 amount=-1 +kerning first=1206 second=283 amount=-1 +kerning first=1206 second=286 amount=-1 +kerning first=1206 second=288 amount=-1 +kerning first=1206 second=290 amount=-1 +kerning first=1206 second=332 amount=-1 +kerning first=1206 second=333 amount=-1 +kerning first=1206 second=334 amount=-1 +kerning first=1206 second=335 amount=-1 +kerning first=1206 second=336 amount=-1 +kerning first=1206 second=337 amount=-1 +kerning first=1206 second=338 amount=-1 +kerning first=1206 second=339 amount=-1 +kerning first=1206 second=354 amount=-2 +kerning first=1206 second=356 amount=-2 +kerning first=1206 second=360 amount=-1 +kerning first=1206 second=362 amount=-1 +kerning first=1206 second=364 amount=-1 +kerning first=1206 second=366 amount=-1 +kerning first=1206 second=368 amount=-1 +kerning first=1206 second=370 amount=-1 +kerning first=1206 second=373 amount=-2 +kerning first=1206 second=374 amount=-2 +kerning first=1206 second=376 amount=-2 +kerning first=1206 second=920 amount=-1 +kerning first=1206 second=927 amount=-1 +kerning first=1206 second=932 amount=-2 +kerning first=1206 second=933 amount=-2 +kerning first=1206 second=934 amount=-2 +kerning first=1206 second=939 amount=-2 +kerning first=1206 second=940 amount=-1 +kerning first=1206 second=941 amount=-1 +kerning first=1206 second=945 amount=-1 +kerning first=1206 second=947 amount=-2 +kerning first=1206 second=949 amount=-1 +kerning first=1206 second=957 amount=-2 +kerning first=1206 second=959 amount=-1 +kerning first=1206 second=962 amount=-1 +kerning first=1206 second=963 amount=-1 +kerning first=1206 second=964 amount=-2 +kerning first=1206 second=966 amount=-1 +kerning first=1206 second=972 amount=-1 +kerning first=1206 second=1026 amount=-2 +kerning first=1206 second=1028 amount=-1 +kerning first=1206 second=1035 amount=-2 +kerning first=1206 second=1038 amount=-1 +kerning first=1206 second=1054 amount=-1 +kerning first=1206 second=1057 amount=-1 +kerning first=1206 second=1058 amount=-2 +kerning first=1206 second=1059 amount=-1 +kerning first=1206 second=1060 amount=-2 +kerning first=1206 second=1063 amount=-2 +kerning first=1206 second=1066 amount=-2 +kerning first=1206 second=1077 amount=-1 +kerning first=1206 second=1086 amount=-1 +kerning first=1206 second=1089 amount=-1 +kerning first=1206 second=1090 amount=-2 +kerning first=1206 second=1092 amount=-1 +kerning first=1206 second=1098 amount=-2 +kerning first=1206 second=1104 amount=-1 +kerning first=1206 second=1105 amount=-1 +kerning first=1206 second=1108 amount=-1 +kerning first=1206 second=1112 amount=7 +kerning first=1206 second=1184 amount=-2 +kerning first=1206 second=1185 amount=-2 +kerning first=1206 second=1194 amount=-1 +kerning first=1206 second=1195 amount=-1 +kerning first=1206 second=1198 amount=-2 +kerning first=1206 second=1199 amount=-2 +kerning first=1206 second=1240 amount=-1 +kerning first=1206 second=1241 amount=-1 +kerning first=1206 second=1256 amount=-1 +kerning first=1206 second=1257 amount=-1 +kerning first=1206 second=1262 amount=-1 +kerning first=1206 second=8211 amount=-2 +kerning first=1206 second=8212 amount=-2 +kerning first=1206 second=8216 amount=-2 +kerning first=1206 second=8217 amount=-2 +kerning first=1206 second=8220 amount=-2 +kerning first=1206 second=8221 amount=-2 +kerning first=1206 second=8249 amount=-1 +kerning first=1207 second=99 amount=-1 +kerning first=1207 second=100 amount=-1 +kerning first=1207 second=101 amount=-1 +kerning first=1207 second=111 amount=-1 +kerning first=1207 second=113 amount=-1 +kerning first=1207 second=231 amount=-1 +kerning first=1207 second=232 amount=-1 +kerning first=1207 second=233 amount=-1 +kerning first=1207 second=234 amount=-1 +kerning first=1207 second=235 amount=-1 +kerning first=1207 second=240 amount=-1 +kerning first=1207 second=242 amount=-1 +kerning first=1207 second=243 amount=-1 +kerning first=1207 second=244 amount=-1 +kerning first=1207 second=245 amount=-1 +kerning first=1207 second=246 amount=-1 +kerning first=1207 second=248 amount=-1 +kerning first=1207 second=263 amount=-1 +kerning first=1207 second=267 amount=-1 +kerning first=1207 second=269 amount=-1 +kerning first=1207 second=271 amount=-1 +kerning first=1207 second=273 amount=-1 +kerning first=1207 second=275 amount=-1 +kerning first=1207 second=277 amount=-1 +kerning first=1207 second=279 amount=-1 +kerning first=1207 second=281 amount=-1 +kerning first=1207 second=283 amount=-1 +kerning first=1207 second=333 amount=-1 +kerning first=1207 second=335 amount=-1 +kerning first=1207 second=337 amount=-1 +kerning first=1207 second=339 amount=-1 +kerning first=1207 second=940 amount=-1 +kerning first=1207 second=941 amount=-1 +kerning first=1207 second=945 amount=-1 +kerning first=1207 second=949 amount=-1 +kerning first=1207 second=959 amount=-1 kerning first=1207 second=962 amount=-1 -kerning first=256 second=240 amount=-1 -kerning first=973 second=283 amount=-1 -kerning first=166 second=943 amount=-1 -kerning first=169 second=252 amount=-1 -kerning first=276 second=1256 amount=-2 -kerning first=279 second=382 amount=-1 -kerning first=8220 second=333 amount=-1 -kerning first=51 second=266 amount=-2 -kerning first=54 second=39 amount=-3 -kerning first=1065 second=217 amount=-1 -kerning first=906 second=1195 amount=-1 -kerning first=1174 second=286 amount=-1 -kerning first=237 second=253 amount=-1 -kerning first=354 second=1257 amount=-3 -kerning first=117 second=267 amount=-1 -kerning first=8240 second=45 amount=-2 -kerning first=8225 second=273 amount=-1 -kerning first=55 second=214 amount=-2 -kerning first=1063 second=947 amount=-4 -kerning first=192 second=1101 amount=-1 -kerning first=78 second=116 amount=-1 -kerning first=912 second=1069 amount=-1 -kerning first=928 second=81 amount=-2 -kerning first=95 second=972 amount=-1 -kerning first=1178 second=231 amount=-1 -kerning first=956 second=243 amount=-1 -kerning first=1026 second=1263 amount=-1 -kerning first=36 second=227 amount=-1 -kerning first=175 second=357 amount=-1 -kerning first=178 second=117 amount=-1 -kerning first=289 second=269 amount=-1 -kerning first=56 second=369 amount=-1 -kerning first=196 second=973 amount=-1 -kerning first=8361 second=362 amount=-2 -kerning first=102 second=228 amount=-1 -kerning first=245 second=118 amount=-1 -kerning first=1256 second=8230 amount=-1 -kerning first=1037 second=333 amount=-1 -kerning first=183 second=67 amount=-2 -kerning first=54 second=8222 amount=-1 -kerning first=63 second=79 amount=-2 -kerning first=1071 second=949 amount=-1 -kerning first=203 second=229 amount=-1 -kerning first=318 second=359 amount=-1 -kerning first=323 second=119 amount=-4 -kerning first=80 second=920 amount=-2 -kerning first=223 second=371 amount=-1 -kerning first=100 second=1257 amount=-1 -kerning first=1184 second=1090 amount=-4 -kerning first=369 second=218 amount=-2 -kerning first=963 second=346 amount=-1 -kerning first=271 second=230 amount=-1 +kerning first=1207 second=963 amount=-1 +kerning first=1207 second=964 amount=-2 +kerning first=1207 second=966 amount=-1 +kerning first=1207 second=972 amount=-1 +kerning first=1207 second=1073 amount=-1 +kerning first=1207 second=1077 amount=-1 +kerning first=1207 second=1086 amount=-1 +kerning first=1207 second=1089 amount=-1 +kerning first=1207 second=1090 amount=-2 +kerning first=1207 second=1092 amount=-1 +kerning first=1207 second=1095 amount=-2 +kerning first=1207 second=1098 amount=-2 +kerning first=1207 second=1104 amount=-1 +kerning first=1207 second=1105 amount=-1 +kerning first=1207 second=1108 amount=-1 +kerning first=1207 second=1185 amount=-2 +kerning first=1207 second=1195 amount=-1 +kerning first=1207 second=1241 amount=-1 +kerning first=1207 second=1257 amount=-1 +kerning first=1211 second=34 amount=-1 +kerning first=1211 second=39 amount=-1 +kerning first=1211 second=63 amount=-2 +kerning first=1211 second=102 amount=-1 +kerning first=1211 second=106 amount=1 +kerning first=1211 second=118 amount=-1 +kerning first=1211 second=119 amount=-1 +kerning first=1211 second=373 amount=-1 +kerning first=1211 second=947 amount=-1 +kerning first=1211 second=957 amount=-1 +kerning first=1211 second=964 amount=-1 +kerning first=1211 second=1090 amount=-1 +kerning first=1211 second=1098 amount=-1 +kerning first=1211 second=1112 amount=1 +kerning first=1211 second=1185 amount=-1 +kerning first=1211 second=1199 amount=-1 +kerning first=1211 second=8216 amount=-1 +kerning first=1211 second=8217 amount=-1 +kerning first=1211 second=8220 amount=-1 +kerning first=1211 second=8221 amount=-1 +kerning first=1240 second=44 amount=-1 +kerning first=1240 second=46 amount=-1 +kerning first=1240 second=47 amount=-1 +kerning first=1240 second=65 amount=-2 +kerning first=1240 second=84 amount=-2 +kerning first=1240 second=86 amount=-2 +kerning first=1240 second=87 amount=-2 +kerning first=1240 second=88 amount=-3 +kerning first=1240 second=89 amount=-3 +kerning first=1240 second=90 amount=-1 +kerning first=1240 second=193 amount=-2 +kerning first=1240 second=194 amount=-2 +kerning first=1240 second=196 amount=-2 +kerning first=1240 second=197 amount=-2 +kerning first=1240 second=198 amount=-2 +kerning first=1240 second=221 amount=-3 +kerning first=1240 second=256 amount=-2 +kerning first=1240 second=258 amount=-2 +kerning first=1240 second=260 amount=-2 +kerning first=1240 second=354 amount=-2 +kerning first=1240 second=356 amount=-2 +kerning first=1240 second=372 amount=-2 +kerning first=1240 second=374 amount=-3 +kerning first=1240 second=376 amount=-3 +kerning first=1240 second=377 amount=-1 +kerning first=1240 second=379 amount=-1 +kerning first=1240 second=381 amount=-1 +kerning first=1240 second=913 amount=-2 +kerning first=1240 second=916 amount=-2 +kerning first=1240 second=918 amount=-1 +kerning first=1240 second=923 amount=-2 +kerning first=1240 second=932 amount=-2 +kerning first=1240 second=933 amount=-3 +kerning first=1240 second=935 amount=-3 +kerning first=1240 second=939 amount=-3 +kerning first=1240 second=955 amount=-2 +kerning first=1240 second=967 amount=-1 +kerning first=1240 second=1026 amount=-2 +kerning first=1240 second=1033 amount=-1 +kerning first=1240 second=1035 amount=-2 +kerning first=1240 second=1040 amount=-2 +kerning first=1240 second=1044 amount=-1 +kerning first=1240 second=1046 amount=-3 +kerning first=1240 second=1051 amount=-1 +kerning first=1240 second=1058 amount=-2 +kerning first=1240 second=1061 amount=-3 +kerning first=1240 second=1066 amount=-2 +kerning first=1240 second=1071 amount=-1 +kerning first=1240 second=1174 amount=-3 +kerning first=1240 second=1184 amount=-2 +kerning first=1240 second=1198 amount=-3 +kerning first=1240 second=1202 amount=-3 +kerning first=1240 second=1298 amount=-1 +kerning first=1240 second=8218 amount=-1 +kerning first=1240 second=8222 amount=-1 +kerning first=1240 second=8230 amount=-1 +kerning first=1241 second=34 amount=-1 +kerning first=1241 second=39 amount=-1 +kerning first=1241 second=44 amount=-1 +kerning first=1241 second=46 amount=-1 +kerning first=1241 second=47 amount=-1 +kerning first=1241 second=63 amount=-2 +kerning first=1241 second=102 amount=-1 +kerning first=1241 second=118 amount=-1 +kerning first=1241 second=119 amount=-1 kerning first=1241 second=120 amount=-2 -kerning first=1048 second=45 amount=-2 -kerning first=184 second=242 amount=-1 -kerning first=1044 second=273 amount=-1 -kerning first=291 second=947 amount=-4 -kerning first=296 second=372 amount=-5 -kerning first=8240 second=8249 amount=-3 -kerning first=61 second=945 amount=-1 -kerning first=204 second=1240 amount=-2 -kerning first=201 second=1262 amount=-2 -kerning first=902 second=219 amount=-2 -kerning first=944 second=121 amount=-1 -kerning first=250 second=243 amount=-1 -kerning first=964 second=1028 amount=-2 -kerning first=967 second=288 amount=-2 -kerning first=1049 second=220 amount=-2 -kerning first=1081 second=362 amount=-2 -kerning first=903 second=374 amount=-5 -kerning first=91 second=106 amount=7 -kerning first=1118 second=289 amount=-1 -kerning first=108 second=962 amount=-1 -kerning first=1210 second=221 amount=-5 -kerning first=368 second=8230 amount=-1 -kerning first=971 second=233 amount=-1 -kerning first=49 second=217 amount=-2 -kerning first=1051 second=375 amount=-1 -kerning first=301 second=949 amount=-1 -kerning first=304 second=257 amount=-1 -kerning first=72 second=119 amount=-4 -kerning first=69 second=359 amount=-1 -kerning first=209 second=963 amount=-1 -kerning first=912 second=84 amount=-5 -kerning first=92 second=286 amount=-2 -kerning first=1170 second=234 amount=-1 -kerning first=950 second=246 amount=-1 -kerning first=1219 second=376 amount=-5 -kerning first=255 second=346 amount=-1 -kerning first=168 second=360 amount=-2 -kerning first=171 second=120 amount=-1 -kerning first=278 second=964 amount=-3 -kerning first=47 second=947 amount=-4 -kerning first=50 second=372 amount=-5 -kerning first=1048 second=8249 amount=-3 -kerning first=1067 second=85 amount=-2 -kerning first=193 second=287 amount=-1 -kerning first=915 second=259 amount=-1 -kerning first=923 second=34 amount=-3 -kerning first=96 second=231 amount=-1 -kerning first=910 second=951 amount=-3 -kerning first=233 second=1175 amount=-2 -kerning first=236 second=361 amount=-1 -kerning first=239 second=121 amount=-1 -kerning first=356 second=965 amount=-2 -kerning first=362 second=46 amount=-1 -kerning first=256 second=1028 amount=-2 -kerning first=1027 second=336 amount=-2 -kerning first=287 second=220 amount=-2 -kerning first=1068 second=260 amount=-1 -kerning first=197 second=232 amount=-1 -kerning first=306 second=1176 amount=-1 -kerning first=77 second=244 amount=-1 -kerning first=338 second=289 amount=-1 -kerning first=1184 second=99 amount=-2 -kerning first=363 second=221 amount=-5 -kerning first=960 second=111 amount=-1 -kerning first=955 second=351 amount=-1 -kerning first=123 second=83 amount=-1 -kerning first=1298 second=261 amount=-1 -kerning first=114 second=8230 amount=-3 -kerning first=35 second=333 amount=-1 -kerning first=177 second=245 amount=-1 -kerning first=55 second=949 amount=-1 -kerning first=58 second=257 amount=-1 -kerning first=1073 second=210 amount=-2 -kerning first=8363 second=250 amount=-1 -kerning first=81 second=194 amount=-2 -kerning first=928 second=364 amount=-2 -kerning first=98 second=1090 amount=-1 -kerning first=1185 second=277 amount=-2 -kerning first=956 second=1035 amount=-5 -kerning first=381 second=8212 amount=-3 -kerning first=36 second=964 amount=-3 -kerning first=42 second=45 amount=-2 -kerning first=39 second=273 amount=-1 -kerning first=297 second=85 amount=-2 -kerning first=1074 second=365 amount=-1 -kerning first=202 second=335 amount=-1 -kerning first=205 second=97 amount=-1 -kerning first=228 second=34 amount=-1 -kerning first=923 second=8216 amount=-3 -kerning first=8211 second=51 amount=-2 -kerning first=43 second=220 amount=-2 -kerning first=183 second=350 amount=-1 -kerning first=63 second=362 amount=-2 -kerning first=1071 second=8217 amount=-3 -kerning first=60 second=1176 amount=-1 -kerning first=203 second=966 amount=-1 -kerning first=206 second=275 amount=-1 -kerning first=8370 second=355 amount=-1 -kerning first=8377 second=115 amount=-1 -kerning first=86 second=289 amount=-1 -kerning first=904 second=87 amount=-5 -kerning first=252 second=111 amount=-1 -kerning first=249 second=351 amount=-1 -kerning first=369 second=953 amount=-1 -kerning first=372 second=261 amount=-2 -kerning first=126 second=1177 amount=-1 -kerning first=162 second=363 amount=-1 -kerning first=44 second=375 amount=-1 -kerning first=302 second=210 amount=-2 -kerning first=61 second=8211 amount=-2 -kerning first=1084 second=250 amount=-1 -kerning first=1080 second=941 amount=-1 -kerning first=327 second=352 amount=-1 -kerning first=905 second=262 amount=-2 -kerning first=90 second=234 amount=-1 -kerning first=1117 second=1241 amount=-1 -kerning first=1168 second=187 amount=-1 -kerning first=948 second=199 amount=-2 -kerning first=1220 second=89 amount=-5 -kerning first=250 second=1035 amount=-5 -kerning first=253 second=291 amount=-1 -kerning first=376 second=211 amount=-3 -kerning first=967 second=1098 amount=-3 -kerning first=160 second=8212 amount=-2 -kerning first=163 second=1059 amount=-2 -kerning first=973 second=101 amount=-1 -kerning first=42 second=8249 amount=-3 -kerning first=51 second=85 amount=-2 -kerning first=1062 second=263 amount=-1 -kerning first=191 second=235 amount=-1 -kerning first=303 second=365 amount=-1 -kerning first=211 second=377 amount=-1 -kerning first=228 second=8216 amount=-1 -kerning first=357 second=224 amount=-1 -kerning first=108 second=8250 amount=-1 -kerning first=1223 second=266 amount=-2 +kerning first=1241 second=122 amount=-1 +kerning first=1241 second=373 amount=-1 +kerning first=1241 second=378 amount=-1 +kerning first=1241 second=380 amount=-1 +kerning first=1241 second=382 amount=-1 +kerning first=1241 second=947 amount=-1 +kerning first=1241 second=955 amount=-1 +kerning first=1241 second=957 amount=-1 +kerning first=1241 second=964 amount=-1 +kerning first=1241 second=967 amount=-2 +kerning first=1241 second=1076 amount=-1 +kerning first=1241 second=1078 amount=-2 +kerning first=1241 second=1083 amount=-1 +kerning first=1241 second=1090 amount=-1 +kerning first=1241 second=1093 amount=-2 +kerning first=1241 second=1098 amount=-1 +kerning first=1241 second=1113 amount=-1 +kerning first=1241 second=1175 amount=-2 +kerning first=1241 second=1185 amount=-1 +kerning first=1241 second=1199 amount=-1 +kerning first=1241 second=1203 amount=-2 +kerning first=1241 second=1299 amount=-1 +kerning first=1241 second=8216 amount=-1 +kerning first=1241 second=8217 amount=-1 +kerning first=1241 second=8218 amount=-1 +kerning first=1241 second=8220 amount=-1 +kerning first=1241 second=8221 amount=-1 +kerning first=1241 second=8222 amount=-1 +kerning first=1241 second=8230 amount=-1 +kerning first=1256 second=44 amount=-1 +kerning first=1256 second=46 amount=-1 +kerning first=1256 second=47 amount=-1 +kerning first=1256 second=65 amount=-2 +kerning first=1256 second=84 amount=-2 +kerning first=1256 second=86 amount=-2 +kerning first=1256 second=87 amount=-2 +kerning first=1256 second=88 amount=-3 +kerning first=1256 second=89 amount=-3 +kerning first=1256 second=90 amount=-1 +kerning first=1256 second=193 amount=-2 +kerning first=1256 second=194 amount=-2 +kerning first=1256 second=196 amount=-2 +kerning first=1256 second=197 amount=-2 +kerning first=1256 second=198 amount=-2 +kerning first=1256 second=221 amount=-3 +kerning first=1256 second=256 amount=-2 +kerning first=1256 second=258 amount=-2 +kerning first=1256 second=260 amount=-2 +kerning first=1256 second=354 amount=-2 +kerning first=1256 second=356 amount=-2 +kerning first=1256 second=372 amount=-2 +kerning first=1256 second=374 amount=-3 +kerning first=1256 second=376 amount=-3 +kerning first=1256 second=377 amount=-1 +kerning first=1256 second=379 amount=-1 +kerning first=1256 second=381 amount=-1 +kerning first=1256 second=913 amount=-2 +kerning first=1256 second=916 amount=-2 +kerning first=1256 second=918 amount=-1 +kerning first=1256 second=923 amount=-2 +kerning first=1256 second=932 amount=-2 +kerning first=1256 second=933 amount=-3 +kerning first=1256 second=935 amount=-3 +kerning first=1256 second=939 amount=-3 +kerning first=1256 second=955 amount=-2 +kerning first=1256 second=967 amount=-1 +kerning first=1256 second=1026 amount=-2 +kerning first=1256 second=1033 amount=-1 +kerning first=1256 second=1035 amount=-2 +kerning first=1256 second=1040 amount=-2 +kerning first=1256 second=1044 amount=-1 +kerning first=1256 second=1046 amount=-3 +kerning first=1256 second=1051 amount=-1 +kerning first=1256 second=1058 amount=-2 +kerning first=1256 second=1061 amount=-3 +kerning first=1256 second=1066 amount=-2 +kerning first=1256 second=1071 amount=-1 +kerning first=1256 second=1174 amount=-3 +kerning first=1256 second=1184 amount=-2 +kerning first=1256 second=1198 amount=-3 +kerning first=1256 second=1202 amount=-3 +kerning first=1256 second=1298 amount=-1 +kerning first=1256 second=8218 amount=-1 +kerning first=1256 second=8222 amount=-1 +kerning first=1256 second=8230 amount=-1 +kerning first=1257 second=34 amount=-1 kerning first=1257 second=39 amount=-1 -kerning first=971 second=970 amount=-1 -kerning first=170 second=248 amount=-1 -kerning first=301 second=8217 amount=-3 -kerning first=1095 second=355 amount=-1 -kerning first=912 second=367 amount=-1 -kerning first=95 second=337 amount=-1 -kerning first=238 second=249 amount=-1 -kerning first=950 second=1038 amount=-2 -kerning first=118 second=261 amount=-1 -kerning first=281 second=1078 amount=-2 -kerning first=8226 second=268 amount=-2 -kerning first=56 second=210 amount=-2 -kerning first=1067 second=368 amount=-2 -kerning first=196 second=338 amount=-2 -kerning first=314 second=250 amount=-1 -kerning first=310 second=941 amount=-2 -kerning first=96 second=968 amount=-1 -kerning first=365 second=89 amount=-5 -kerning first=1263 second=369 amount=-1 -kerning first=259 second=1098 amount=-1 -kerning first=176 second=353 amount=-1 -kerning first=179 second=113 amount=-1 -kerning first=57 second=365 amount=-1 -kerning first=1065 second=8221 amount=-2 -kerning first=1068 second=1066 amount=-5 -kerning first=8365 second=118 amount=-4 -kerning first=1103 second=240 amount=-1 -kerning first=223 second=212 amount=-2 -kerning first=926 second=943 amount=-1 -kerning first=934 second=252 amount=-1 -kerning first=103 second=224 amount=-1 -kerning first=240 second=1118 amount=-1 -kerning first=369 second=39 amount=-3 -kerning first=123 second=366 amount=-2 +kerning first=1257 second=44 amount=-1 +kerning first=1257 second=46 amount=-1 +kerning first=1257 second=47 amount=-1 +kerning first=1257 second=63 amount=-2 +kerning first=1257 second=102 amount=-1 +kerning first=1257 second=118 amount=-1 +kerning first=1257 second=119 amount=-1 +kerning first=1257 second=120 amount=-2 +kerning first=1257 second=122 amount=-1 +kerning first=1257 second=373 amount=-1 +kerning first=1257 second=378 amount=-1 +kerning first=1257 second=380 amount=-1 +kerning first=1257 second=382 amount=-1 +kerning first=1257 second=947 amount=-1 +kerning first=1257 second=955 amount=-1 +kerning first=1257 second=957 amount=-1 +kerning first=1257 second=964 amount=-1 +kerning first=1257 second=967 amount=-2 +kerning first=1257 second=1076 amount=-1 +kerning first=1257 second=1078 amount=-2 +kerning first=1257 second=1083 amount=-1 +kerning first=1257 second=1090 amount=-1 +kerning first=1257 second=1093 amount=-2 +kerning first=1257 second=1098 amount=-1 +kerning first=1257 second=1113 amount=-1 +kerning first=1257 second=1175 amount=-2 +kerning first=1257 second=1185 amount=-1 +kerning first=1257 second=1199 amount=-1 +kerning first=1257 second=1203 amount=-2 +kerning first=1257 second=1299 amount=-1 +kerning first=1257 second=8216 amount=-1 +kerning first=1257 second=8217 amount=-1 +kerning first=1257 second=8218 amount=-1 +kerning first=1257 second=8220 amount=-1 +kerning first=1257 second=8221 amount=-1 kerning first=1257 second=8222 amount=-1 -kerning first=41 second=171 amount=-3 -kerning first=296 second=213 amount=-2 -kerning first=8260 second=371 amount=-1 -kerning first=8240 second=1195 amount=-1 -kerning first=55 second=8217 amount=-3 -kerning first=204 second=225 amount=-1 -kerning first=321 second=355 amount=-1 -kerning first=221 second=1185 amount=-2 -kerning first=273 second=226 amount=-1 -kerning first=1046 second=268 amount=-3 -kerning first=45 second=88 amount=-3 -kerning first=297 second=368 amount=-2 -kerning first=65 second=250 amount=-1 -kerning first=62 second=941 amount=-1 -kerning first=88 second=187 amount=-1 -kerning first=942 second=357 amount=-1 -kerning first=105 second=1079 amount=-1 -kerning first=1203 second=269 amount=-1 -kerning first=371 second=369 amount=-1 -kerning first=965 second=973 amount=-1 -kerning first=164 second=251 amount=-1 -kerning first=1051 second=216 amount=-2 -kerning first=298 second=1066 amount=-5 -kerning first=295 second=8221 amount=-1 -kerning first=1087 second=118 amount=-4 -kerning first=212 second=90 amount=-1 -kerning first=330 second=240 amount=-1 -kerning first=901 second=1194 amount=-2 -kerning first=904 second=370 amount=-2 -kerning first=86 second=1099 amount=-2 -kerning first=1119 second=283 amount=-1 -kerning first=950 second=67 amount=-2 -kerning first=115 second=39 amount=-1 -kerning first=1219 second=217 amount=-2 -kerning first=50 second=213 amount=-2 -kerning first=1048 second=1195 amount=-1 -kerning first=193 second=103 amount=-1 -kerning first=305 second=253 amount=-1 -kerning first=70 second=355 amount=-1 -kerning first=73 second=115 amount=-1 -kerning first=1171 second=230 amount=-1 -kerning first=951 second=242 amount=-1 -kerning first=1220 second=372 amount=-5 -kerning first=253 second=1101 amount=-1 -kerning first=376 second=945 amount=-4 -kerning first=973 second=1240 amount=-2 -kerning first=169 second=356 amount=-5 -kerning first=172 second=116 amount=-1 -kerning first=282 second=268 amount=-2 -kerning first=8224 second=219 amount=-2 -kerning first=51 second=368 amount=-2 -kerning first=191 second=972 amount=-1 -kerning first=194 second=281 amount=-1 -kerning first=1097 second=243 amount=-1 -kerning first=237 second=357 amount=-1 -kerning first=240 second=117 amount=-1 -kerning first=117 second=369 amount=-1 -kerning first=8225 second=374 amount=-5 -kerning first=52 second=1066 amount=-5 -kerning first=49 second=8221 amount=-3 -kerning first=1069 second=256 amount=-2 -kerning first=198 second=228 amount=-1 -kerning first=316 second=118 amount=-4 -kerning first=8363 second=71 amount=-2 -kerning first=78 second=240 amount=-1 -kerning first=215 second=1194 amount=-2 -kerning first=95 second=1256 amount=-2 -kerning first=98 second=382 amount=-1 -kerning first=1178 second=333 amount=-1 -kerning first=124 second=79 amount=-2 -kerning first=1299 second=257 amount=-1 -kerning first=1036 second=271 amount=-2 -kerning first=175 second=920 amount=-2 -kerning first=289 second=371 amount=-1 -kerning first=59 second=253 amount=-1 -kerning first=196 second=1257 amount=-1 -kerning first=8364 second=246 amount=-1 -kerning first=343 second=230 amount=-1 -kerning first=931 second=360 amount=-2 -kerning first=1186 second=273 amount=-1 -kerning first=1179 second=964 amount=-2 -kerning first=365 second=372 amount=-5 -kerning first=962 second=287 amount=-1 -kerning first=122 second=945 amount=-1 -kerning first=40 second=268 amount=-2 -kerning first=1041 second=219 amount=-2 -kerning first=298 second=81 amount=-2 -kerning first=323 second=243 amount=-1 -kerning first=1103 second=1028 amount=-2 -kerning first=271 second=332 amount=-2 +kerning first=1257 second=8230 amount=-1 +kerning first=1262 second=44 amount=-1 +kerning first=1262 second=46 amount=-1 +kerning first=1262 second=65 amount=-2 +kerning first=1262 second=193 amount=-2 +kerning first=1262 second=194 amount=-2 +kerning first=1262 second=196 amount=-2 +kerning first=1262 second=197 amount=-2 +kerning first=1262 second=198 amount=-2 +kerning first=1262 second=256 amount=-2 +kerning first=1262 second=258 amount=-2 +kerning first=1262 second=260 amount=-2 +kerning first=1262 second=913 amount=-2 +kerning first=1262 second=916 amount=-2 +kerning first=1262 second=923 amount=-2 +kerning first=1262 second=1033 amount=-1 +kerning first=1262 second=1040 amount=-2 +kerning first=1262 second=1044 amount=-1 +kerning first=1262 second=1051 amount=-1 +kerning first=1262 second=1298 amount=-1 +kerning first=1262 second=8218 amount=-1 +kerning first=1262 second=8222 amount=-1 +kerning first=1262 second=8230 amount=-1 +kerning first=8211 second=44 amount=-1 +kerning first=8211 second=46 amount=-1 +kerning first=8211 second=47 amount=-1 +kerning first=8211 second=49 amount=-3 +kerning first=8211 second=50 amount=-2 +kerning first=8211 second=51 amount=-2 +kerning first=8211 second=55 amount=-3 +kerning first=8211 second=65 amount=-2 +kerning first=8211 second=83 amount=-1 +kerning first=8211 second=84 amount=-4 +kerning first=8211 second=86 amount=-3 +kerning first=8211 second=87 amount=-2 +kerning first=8211 second=88 amount=-3 +kerning first=8211 second=89 amount=-4 +kerning first=8211 second=90 amount=-2 +kerning first=8211 second=102 amount=-2 +kerning first=8211 second=118 amount=-1 +kerning first=8211 second=119 amount=-1 +kerning first=8211 second=120 amount=-2 +kerning first=8211 second=122 amount=-2 +kerning first=8211 second=193 amount=-2 +kerning first=8211 second=194 amount=-2 +kerning first=8211 second=196 amount=-2 +kerning first=8211 second=197 amount=-2 +kerning first=8211 second=198 amount=-2 +kerning first=8211 second=221 amount=-4 +kerning first=8211 second=256 amount=-2 +kerning first=8211 second=258 amount=-2 +kerning first=8211 second=260 amount=-2 +kerning first=8211 second=346 amount=-1 +kerning first=8211 second=350 amount=-1 +kerning first=8211 second=352 amount=-1 +kerning first=8211 second=354 amount=-4 +kerning first=8211 second=356 amount=-4 +kerning first=8211 second=372 amount=-2 +kerning first=8211 second=373 amount=-1 +kerning first=8211 second=374 amount=-4 +kerning first=8211 second=376 amount=-4 +kerning first=8211 second=377 amount=-2 +kerning first=8211 second=378 amount=-2 +kerning first=8211 second=379 amount=-2 +kerning first=8211 second=380 amount=-2 +kerning first=8211 second=381 amount=-2 +kerning first=8211 second=382 amount=-2 +kerning first=8211 second=913 amount=-2 +kerning first=8211 second=916 amount=-2 +kerning first=8211 second=918 amount=-2 +kerning first=8211 second=923 amount=-2 +kerning first=8211 second=932 amount=-4 +kerning first=8211 second=933 amount=-4 +kerning first=8211 second=935 amount=-3 +kerning first=8211 second=939 amount=-4 +kerning first=8211 second=947 amount=-1 +kerning first=8211 second=957 amount=-1 +kerning first=8211 second=1026 amount=-4 +kerning first=8211 second=1029 amount=-1 +kerning first=8211 second=1033 amount=-4 +kerning first=8211 second=1035 amount=-4 +kerning first=8211 second=1040 amount=-2 +kerning first=8211 second=1044 amount=-4 +kerning first=8211 second=1046 amount=-3 +kerning first=8211 second=1051 amount=-4 +kerning first=8211 second=1058 amount=-4 +kerning first=8211 second=1061 amount=-3 +kerning first=8211 second=1066 amount=-4 +kerning first=8211 second=1069 amount=-1 +kerning first=8211 second=1071 amount=-1 +kerning first=8211 second=1078 amount=-2 +kerning first=8211 second=1093 amount=-2 +kerning first=8211 second=1174 amount=-3 +kerning first=8211 second=1175 amount=-2 +kerning first=8211 second=1176 amount=-1 +kerning first=8211 second=1184 amount=-4 +kerning first=8211 second=1198 amount=-4 +kerning first=8211 second=1199 amount=-1 +kerning first=8211 second=1202 amount=-3 +kerning first=8211 second=1203 amount=-2 +kerning first=8211 second=1298 amount=-4 +kerning first=8211 second=8218 amount=-1 +kerning first=8211 second=8222 amount=-1 +kerning first=8211 second=8230 amount=-1 +kerning first=8212 second=44 amount=-1 +kerning first=8212 second=46 amount=-1 kerning first=8212 second=47 amount=-1 -kerning first=44 second=216 amount=-1 -kerning first=1044 second=374 amount=-2 -kerning first=187 second=106 amount=1 -kerning first=1084 second=71 amount=-2 -kerning first=204 second=962 amount=-1 -kerning first=8378 second=111 amount=-1 -kerning first=8372 second=351 amount=-1 -kerning first=905 second=83 amount=-1 -kerning first=87 second=283 amount=-3 -kerning first=1117 second=233 amount=-1 -kerning first=944 second=245 amount=-1 -kerning first=373 second=257 amount=-1 -kerning first=163 second=359 amount=-1 -kerning first=166 second=119 amount=-4 -kerning first=273 second=963 amount=-1 -kerning first=276 second=271 amount=-1 -kerning first=279 second=44 amount=-1 -kerning first=42 second=1195 amount=-1 -kerning first=185 second=1026 amount=-5 -kerning first=188 second=286 amount=-2 -kerning first=1062 second=84 amount=-2 -kerning first=1085 second=246 amount=-1 -kerning first=91 second=230 amount=-1 -kerning first=234 second=120 amount=-2 -kerning first=354 second=273 amount=-3 -kerning first=357 second=45 amount=-2 -kerning first=108 second=947 amount=-4 -kerning first=1223 second=85 amount=-2 -kerning first=254 second=287 amount=-1 -kerning first=971 second=335 amount=-1 -kerning first=280 second=219 amount=-2 -kerning first=46 second=1069 amount=-1 -kerning first=52 second=81 amount=-2 -kerning first=1063 second=259 amount=-1 -kerning first=1066 second=34 amount=-2 -kerning first=192 second=231 amount=-1 -kerning first=304 second=361 amount=-1 -kerning first=72 second=243 amount=-1 -kerning first=330 second=1028 amount=-2 -kerning first=89 second=1263 amount=-2 -kerning first=1170 second=336 amount=-2 -kerning first=358 second=220 amount=-2 -kerning first=950 second=350 amount=-1 -kerning first=258 second=232 amount=-1 -kerning first=375 second=1176 amount=-1 -kerning first=1026 second=275 amount=-1 -kerning first=8226 second=87 amount=-5 -kerning first=314 second=71 amount=-2 -kerning first=1096 second=351 amount=-1 -kerning first=213 second=1071 amount=-1 -kerning first=1099 second=111 amount=-1 -kerning first=210 second=8230 amount=-1 -kerning first=910 second=1177 amount=-4 -kerning first=915 second=363 amount=-1 -kerning first=96 second=333 amount=-1 -kerning first=239 second=245 amount=-1 -kerning first=119 second=257 amount=-1 -kerning first=1263 second=210 amount=-2 -kerning first=376 second=8211 amount=-4 -kerning first=34 second=271 amount=-1 -kerning first=290 second=84 amount=-1 -kerning first=8230 second=262 amount=-1 -kerning first=194 second=1090 amount=-3 -kerning first=197 second=334 amount=-2 -kerning first=315 second=246 amount=-1 -kerning first=77 second=346 amount=-1 -kerning first=220 second=258 amount=-2 -kerning first=916 second=1059 amount=-2 -kerning first=103 second=45 amount=-2 -kerning first=100 second=273 amount=-1 -kerning first=97 second=964 amount=-1 -kerning first=357 second=8249 amount=-3 -kerning first=960 second=235 amount=-1 -kerning first=1298 second=365 amount=-1 -kerning first=38 second=219 amount=-2 -kerning first=174 second=1108 amount=-1 -kerning first=177 second=347 amount=-1 -kerning first=291 second=259 amount=-1 -kerning first=296 second=34 amount=-3 -kerning first=8260 second=212 amount=-2 -kerning first=58 second=361 amount=-1 -kerning first=61 second=121 amount=-1 -kerning first=1066 second=8216 amount=-2 -kerning first=198 second=965 amount=-1 -kerning first=8363 second=354 amount=-5 -kerning first=78 second=1028 amount=-2 -kerning first=936 second=248 amount=-1 -kerning first=1194 second=171 amount=-1 -kerning first=121 second=1176 amount=-1 -kerning first=124 second=362 amount=-2 -kerning first=182 second=289 amount=-1 -kerning first=65 second=71 amount=-2 -kerning first=1074 second=940 amount=-1 -kerning first=205 second=221 amount=-5 -kerning first=322 second=351 amount=-1 -kerning first=8364 second=1038 amount=-2 -kerning first=325 second=111 amount=-1 -kerning first=900 second=261 amount=-1 -kerning first=105 second=375 amount=-1 -kerning first=371 second=210 amount=-2 -kerning first=965 second=338 amount=-2 -kerning first=968 second=100 amount=-1 -kerning first=46 second=84 amount=-5 -kerning first=186 second=234 amount=-1 -kerning first=298 second=364 amount=-2 -kerning first=1083 second=199 amount=-2 -kerning first=206 second=376 amount=-5 -kerning first=323 second=1035 amount=-5 -kerning first=904 second=211 amount=-2 -kerning first=1119 second=101 amount=-1 -kerning first=223 second=8212 amount=-2 -kerning first=1116 second=339 amount=-2 -kerning first=946 second=113 amount=-1 -kerning first=103 second=8249 amount=-3 -kerning first=947 second=955 amount=-4 -kerning first=1206 second=263 amount=-1 -kerning first=252 second=235 amount=-1 -kerning first=372 second=365 amount=-2 -kerning first=47 second=259 amount=-1 -kerning first=50 second=34 amount=-3 -kerning first=296 second=8216 amount=-3 -kerning first=70 second=196 amount=-4 -kerning first=1080 second=1118 amount=-1 -kerning first=1084 second=354 amount=-5 -kerning first=204 second=8250 amount=-1 -kerning first=213 second=86 amount=-2 -kerning first=902 second=1184 amount=-5 -kerning first=905 second=366 amount=-2 -kerning first=90 second=336 amount=-1 -kerning first=1117 second=970 amount=-1 -kerning first=1168 second=279 amount=-1 -kerning first=356 second=171 amount=-3 -kerning first=1220 second=213 amount=-2 -kerning first=973 second=225 amount=-1 -kerning first=282 second=87 amount=-5 -kerning first=8220 second=267 amount=-1 -kerning first=1049 second=1185 amount=-3 -kerning first=191 second=337 amount=-1 -kerning first=194 second=99 amount=-1 -kerning first=303 second=940 amount=-1 -kerning first=306 second=249 amount=-1 -kerning first=1085 second=1038 amount=-2 -kerning first=74 second=111 amount=-1 -kerning first=214 second=261 amount=-1 -kerning first=354 second=1078 amount=-1 -kerning first=117 second=210 amount=-2 -kerning first=1223 second=368 amount=-2 -kerning first=260 second=100 amount=-1 -kerning first=377 second=941 amount=-1 -kerning first=170 second=352 amount=-1 -kerning first=52 second=364 amount=-2 -kerning first=1051 second=8220 amount=-3 -kerning first=192 second=968 amount=-1 -kerning first=195 second=277 amount=-1 -kerning first=313 second=199 amount=-1 -kerning first=72 second=1035 amount=-5 -kerning first=75 second=291 amount=-1 -kerning first=333 second=1098 amount=-1 -kerning first=238 second=353 amount=-1 -kerning first=361 second=263 amount=-1 -kerning first=1219 second=8221 amount=-3 -kerning first=1224 second=1066 amount=-5 -kerning first=289 second=212 amount=-2 -kerning first=8226 second=370 amount=-2 -kerning first=8222 second=1194 amount=-1 -kerning first=50 second=8216 amount=-3 -kerning first=1067 second=943 amount=-1 -kerning first=310 second=1118 amount=-2 -kerning first=314 second=354 amount=-5 -kerning first=8364 second=67 amount=-2 -kerning first=216 second=1184 amount=-2 -kerning first=245 second=63 amount=-2 -kerning first=365 second=213 amount=-2 -kerning first=962 second=103 amount=-1 -kerning first=1037 second=267 amount=-1 -kerning first=40 second=87 amount=-5 -kerning first=287 second=1185 amount=-3 -kerning first=60 second=249 amount=-1 -kerning first=57 second=940 amount=-1 -kerning first=315 second=1038 amount=-1 -kerning first=8365 second=242 amount=-1 -kerning first=217 second=8218 amount=-1 -kerning first=934 second=356 amount=-5 -kerning first=960 second=972 amount=-1 -kerning first=963 second=281 amount=-1 -kerning first=126 second=250 amount=-1 -kerning first=123 second=941 amount=-1 -kerning first=41 second=262 amount=-2 -kerning first=180 second=1241 amount=-1 -kerning first=184 second=187 amount=-1 -kerning first=64 second=199 amount=-2 -kerning first=1080 second=117 amount=-1 -kerning first=201 second=1079 amount=-1 -kerning first=207 second=89 amount=-5 -kerning first=84 second=339 amount=-3 -kerning first=87 second=101 amount=-3 -kerning first=107 second=263 amount=-2 -kerning first=1202 second=216 amount=-1 -kerning first=367 second=1066 amount=-5 -kerning first=967 second=228 amount=-1 -kerning first=1039 second=1194 amount=-2 -kerning first=297 second=943 amount=-1 -kerning first=300 second=252 amount=-1 -kerning first=65 second=354 amount=-5 -kerning first=62 second=1118 amount=-1 -kerning first=1085 second=67 amount=-2 -kerning first=906 second=79 amount=-2 -kerning first=88 second=279 amount=-2 -kerning first=1118 second=229 amount=-1 -kerning first=942 second=920 amount=-2 -kerning first=254 second=103 amount=-1 -kerning first=374 second=253 amount=-2 -kerning first=965 second=1257 amount=-1 -kerning first=164 second=355 amount=-1 -kerning first=167 second=115 amount=-1 -kerning first=43 second=1185 amount=-3 -kerning first=46 second=367 amount=-1 -kerning first=1087 second=242 amount=-1 -kerning first=904 second=945 amount=-1 -kerning first=92 second=226 amount=-1 -kerning first=1119 second=1240 amount=-2 -kerning first=1224 second=81 amount=-2 -kerning first=252 second=972 amount=-1 -kerning first=255 second=281 amount=-1 -kerning first=171 second=65 amount=-1 +kerning first=8212 second=49 amount=-3 +kerning first=8212 second=50 amount=-2 +kerning first=8212 second=51 amount=-2 +kerning first=8212 second=55 amount=-3 +kerning first=8212 second=65 amount=-2 +kerning first=8212 second=83 amount=-1 +kerning first=8212 second=84 amount=-4 +kerning first=8212 second=86 amount=-3 +kerning first=8212 second=87 amount=-2 +kerning first=8212 second=88 amount=-3 +kerning first=8212 second=89 amount=-4 +kerning first=8212 second=90 amount=-2 +kerning first=8212 second=102 amount=-2 +kerning first=8212 second=118 amount=-1 +kerning first=8212 second=119 amount=-1 +kerning first=8212 second=120 amount=-2 +kerning first=8212 second=122 amount=-2 +kerning first=8212 second=193 amount=-2 +kerning first=8212 second=194 amount=-2 +kerning first=8212 second=196 amount=-2 +kerning first=8212 second=197 amount=-2 +kerning first=8212 second=198 amount=-2 +kerning first=8212 second=221 amount=-4 +kerning first=8212 second=256 amount=-2 +kerning first=8212 second=258 amount=-2 +kerning first=8212 second=260 amount=-2 +kerning first=8212 second=346 amount=-1 +kerning first=8212 second=350 amount=-1 +kerning first=8212 second=352 amount=-1 +kerning first=8212 second=354 amount=-4 +kerning first=8212 second=356 amount=-4 +kerning first=8212 second=372 amount=-2 +kerning first=8212 second=373 amount=-1 +kerning first=8212 second=374 amount=-4 +kerning first=8212 second=376 amount=-4 +kerning first=8212 second=377 amount=-2 +kerning first=8212 second=378 amount=-2 +kerning first=8212 second=379 amount=-2 +kerning first=8212 second=380 amount=-2 +kerning first=8212 second=381 amount=-2 +kerning first=8212 second=382 amount=-2 +kerning first=8212 second=913 amount=-2 +kerning first=8212 second=916 amount=-2 +kerning first=8212 second=918 amount=-2 +kerning first=8212 second=923 amount=-2 +kerning first=8212 second=932 amount=-4 +kerning first=8212 second=933 amount=-4 +kerning first=8212 second=935 amount=-3 +kerning first=8212 second=939 amount=-4 +kerning first=8212 second=947 amount=-1 +kerning first=8212 second=957 amount=-1 +kerning first=8212 second=1026 amount=-4 +kerning first=8212 second=1029 amount=-1 +kerning first=8212 second=1033 amount=-4 +kerning first=8212 second=1035 amount=-4 +kerning first=8212 second=1040 amount=-2 +kerning first=8212 second=1044 amount=-4 +kerning first=8212 second=1046 amount=-3 +kerning first=8212 second=1051 amount=-4 +kerning first=8212 second=1058 amount=-4 +kerning first=8212 second=1061 amount=-3 +kerning first=8212 second=1066 amount=-4 +kerning first=8212 second=1069 amount=-1 +kerning first=8212 second=1071 amount=-1 +kerning first=8212 second=1078 amount=-2 +kerning first=8212 second=1093 amount=-2 +kerning first=8212 second=1174 amount=-3 +kerning first=8212 second=1175 amount=-2 +kerning first=8212 second=1176 amount=-1 +kerning first=8212 second=1184 amount=-4 +kerning first=8212 second=1198 amount=-4 +kerning first=8212 second=1199 amount=-1 kerning first=8212 second=1202 amount=-3 -kerning first=8218 second=373 amount=-2 -kerning first=44 second=8220 amount=-1 -kerning first=193 second=227 amount=-1 -kerning first=305 second=357 amount=-1 -kerning first=310 second=117 amount=-1 -kerning first=1171 second=332 amount=-2 -kerning first=954 second=106 amount=1 -kerning first=113 second=1066 amount=-5 -kerning first=110 second=8221 amount=-1 -kerning first=1256 second=256 amount=-2 -kerning first=973 second=962 amount=-1 -kerning first=172 second=240 amount=-1 -kerning first=282 second=370 amount=-2 +kerning first=8212 second=1203 amount=-2 +kerning first=8212 second=1298 amount=-4 +kerning first=8212 second=8218 amount=-1 +kerning first=8212 second=8222 amount=-1 +kerning first=8212 second=8230 amount=-1 +kerning first=8216 second=44 amount=-1 +kerning first=8216 second=46 amount=-1 +kerning first=8216 second=47 amount=-2 +kerning first=8216 second=52 amount=-1 +kerning first=8216 second=56 amount=-1 +kerning first=8216 second=65 amount=-3 +kerning first=8216 second=74 amount=-4 +kerning first=8216 second=97 amount=-1 +kerning first=8216 second=99 amount=-1 +kerning first=8216 second=100 amount=-1 +kerning first=8216 second=101 amount=-1 +kerning first=8216 second=103 amount=-1 +kerning first=8216 second=111 amount=-1 +kerning first=8216 second=113 amount=-1 +kerning first=8216 second=115 amount=-1 +kerning first=8216 second=193 amount=-3 +kerning first=8216 second=194 amount=-3 +kerning first=8216 second=196 amount=-3 +kerning first=8216 second=197 amount=-3 +kerning first=8216 second=198 amount=-3 +kerning first=8216 second=224 amount=-1 +kerning first=8216 second=225 amount=-1 +kerning first=8216 second=226 amount=-1 +kerning first=8216 second=227 amount=-1 +kerning first=8216 second=228 amount=-1 +kerning first=8216 second=229 amount=-1 +kerning first=8216 second=230 amount=-1 +kerning first=8216 second=231 amount=-1 +kerning first=8216 second=232 amount=-1 +kerning first=8216 second=233 amount=-1 +kerning first=8216 second=234 amount=-1 +kerning first=8216 second=235 amount=-1 +kerning first=8216 second=240 amount=-1 +kerning first=8216 second=242 amount=-1 +kerning first=8216 second=243 amount=-1 +kerning first=8216 second=244 amount=-1 +kerning first=8216 second=245 amount=-1 +kerning first=8216 second=246 amount=-1 +kerning first=8216 second=248 amount=-1 +kerning first=8216 second=256 amount=-3 +kerning first=8216 second=257 amount=-1 +kerning first=8216 second=258 amount=-3 +kerning first=8216 second=259 amount=-1 +kerning first=8216 second=260 amount=-3 +kerning first=8216 second=261 amount=-1 +kerning first=8216 second=263 amount=-1 +kerning first=8216 second=267 amount=-1 +kerning first=8216 second=269 amount=-1 +kerning first=8216 second=271 amount=-1 +kerning first=8216 second=273 amount=-1 +kerning first=8216 second=275 amount=-1 +kerning first=8216 second=277 amount=-1 +kerning first=8216 second=279 amount=-1 +kerning first=8216 second=281 amount=-1 +kerning first=8216 second=283 amount=-1 +kerning first=8216 second=287 amount=-1 +kerning first=8216 second=289 amount=-1 +kerning first=8216 second=291 amount=-1 +kerning first=8216 second=333 amount=-1 +kerning first=8216 second=335 amount=-1 +kerning first=8216 second=337 amount=-1 +kerning first=8216 second=339 amount=-1 +kerning first=8216 second=347 amount=-1 +kerning first=8216 second=351 amount=-1 +kerning first=8216 second=353 amount=-1 +kerning first=8216 second=913 amount=-3 +kerning first=8216 second=916 amount=-3 +kerning first=8216 second=923 amount=-3 +kerning first=8216 second=940 amount=-1 +kerning first=8216 second=941 amount=-1 +kerning first=8216 second=945 amount=-1 +kerning first=8216 second=949 amount=-1 +kerning first=8216 second=959 amount=-1 +kerning first=8216 second=962 amount=-1 +kerning first=8216 second=963 amount=-1 +kerning first=8216 second=966 amount=-1 +kerning first=8216 second=972 amount=-1 +kerning first=8216 second=1032 amount=-4 +kerning first=8216 second=1033 amount=-3 +kerning first=8216 second=1040 amount=-3 +kerning first=8216 second=1044 amount=-3 +kerning first=8216 second=1051 amount=-3 +kerning first=8216 second=1072 amount=-1 +kerning first=8216 second=1077 amount=-1 +kerning first=8216 second=1086 amount=-1 +kerning first=8216 second=1089 amount=-1 +kerning first=8216 second=1092 amount=-1 +kerning first=8216 second=1104 amount=-1 +kerning first=8216 second=1105 amount=-1 +kerning first=8216 second=1108 amount=-1 +kerning first=8216 second=1109 amount=-1 +kerning first=8216 second=1195 amount=-1 +kerning first=8216 second=1241 amount=-1 +kerning first=8216 second=1257 amount=-1 +kerning first=8216 second=1298 amount=-3 +kerning first=8216 second=8218 amount=-1 +kerning first=8216 second=8222 amount=-1 kerning first=8216 second=8230 amount=-1 -kerning first=51 second=943 amount=-1 -kerning first=54 second=252 amount=-1 -kerning first=191 second=1256 amount=-2 -kerning first=315 second=67 amount=-1 -kerning first=211 second=8222 amount=-1 -kerning first=338 second=229 amount=-1 -kerning first=916 second=359 amount=-1 -kerning first=926 second=119 amount=-4 -kerning first=1174 second=963 amount=-1 -kerning first=237 second=920 amount=-2 -kerning first=357 second=1195 amount=-1 -kerning first=952 second=1026 amount=-5 -kerning first=955 second=286 amount=-2 -kerning first=35 second=267 amount=-1 -kerning first=1035 second=218 amount=-2 -kerning first=1066 second=1174 amount=-2 -kerning first=1073 second=120 amount=-2 -kerning first=316 second=242 amount=-1 -kerning first=75 second=1101 amount=-1 -kerning first=361 second=1069 amount=-1 -kerning first=367 second=81 amount=-2 -kerning first=1299 second=361 amount=-1 -kerning first=1036 second=373 amount=-3 -kerning first=1033 second=1202 amount=-2 -kerning first=59 second=357 amount=-1 -kerning first=62 second=117 amount=-1 -kerning first=202 second=269 amount=-1 -kerning first=8364 second=350 amount=-1 -kerning first=1107 second=232 amount=-1 -kerning first=105 second=216 amount=-2 -kerning first=1186 second=374 amount=-2 -kerning first=368 second=256 amount=-2 -kerning first=161 second=118 amount=-4 -kerning first=37 second=1194 amount=-2 -kerning first=40 second=370 amount=-2 -kerning first=183 second=283 amount=-1 -kerning first=206 second=217 amount=-2 -kerning first=8370 second=290 amount=-2 -kerning first=86 second=229 amount=-3 -kerning first=901 second=257 amount=-1 -kerning first=229 second=119 amount=-1 -kerning first=103 second=1195 amount=-1 -kerning first=1187 second=1073 amount=-1 -kerning first=1206 second=84 amount=-2 -kerning first=249 second=286 amount=-2 -kerning first=963 second=1090 amount=-3 -kerning first=299 second=360 amount=-2 -kerning first=8260 second=8212 amount=-2 -kerning first=204 second=947 amount=-4 -kerning first=207 second=372 amount=-5 -kerning first=327 second=287 amount=-1 -kerning first=8378 second=235 amount=-1 -kerning first=87 second=1240 amount=-2 -kerning first=1117 second=335 amount=-1 -kerning first=1168 second=97 amount=-1 -kerning first=944 second=347 amount=-1 -kerning first=113 second=81 amount=-2 -kerning first=1220 second=34 amount=-3 -kerning first=253 second=231 amount=-1 -kerning first=376 second=121 amount=-2 -kerning first=967 second=965 amount=-1 -kerning first=166 second=243 amount=-1 -kerning first=276 second=373 amount=-4 -kerning first=185 second=1263 amount=-1 -kerning first=1085 second=350 amount=-1 -kerning first=903 second=1176 amount=-1 -kerning first=906 second=362 amount=-2 -kerning first=91 second=332 amount=-2 -kerning first=1118 second=966 amount=-1 -kerning first=1169 second=275 amount=-1 -kerning first=351 second=1203 amount=-1 -kerning first=8221 second=261 amount=-1 -kerning first=1051 second=1177 amount=-1 -kerning first=1063 second=363 amount=-1 -kerning first=192 second=333 amount=-1 -kerning first=1095 second=290 amount=-2 -kerning first=215 second=257 amount=-1 -kerning first=904 second=8211 amount=-2 -kerning first=92 second=963 amount=-1 -kerning first=95 second=271 amount=-1 -kerning first=908 second=1051 amount=-1 -kerning first=98 second=44 amount=-1 -kerning first=361 second=84 amount=-5 -kerning first=1224 second=364 amount=-2 -kerning first=258 second=334 amount=-2 -kerning first=255 second=1090 amount=-3 -kerning first=381 second=246 amount=-1 -kerning first=1026 second=376 amount=-5 -kerning first=8226 second=211 amount=-2 -kerning first=53 second=360 amount=-2 -kerning first=1064 second=1059 amount=-2 -kerning first=196 second=273 amount=-1 -kerning first=193 second=964 amount=-3 -kerning first=199 second=45 amount=-1 -kerning first=8361 second=113 amount=-1 -kerning first=76 second=287 amount=-1 -kerning first=1099 second=235 amount=-1 -kerning first=236 second=1108 amount=-1 -kerning first=239 second=347 amount=-1 -kerning first=365 second=34 amount=-3 -kerning first=1220 second=8216 amount=-3 -kerning first=973 second=8250 amount=-1 -kerning first=172 second=1028 amount=-2 -kerning first=176 second=288 amount=-2 -kerning first=8224 second=1184 amount=-5 -kerning first=8230 second=366 amount=-1 -kerning first=1071 second=248 amount=-1 -kerning first=200 second=220 amount=-2 -kerning first=80 second=232 amount=-1 -kerning first=338 second=966 amount=-1 -kerning first=341 second=275 amount=-1 -kerning first=100 second=374 amount=-5 -kerning first=960 second=337 amount=-1 -kerning first=963 second=99 amount=-1 -kerning first=126 second=71 amount=-2 -kerning first=1298 second=940 amount=-1 -kerning first=268 second=221 amount=-2 -kerning first=41 second=83 amount=-1 -kerning first=1035 second=953 amount=-1 -kerning first=180 second=233 amount=-1 -kerning first=291 second=363 amount=-1 -kerning first=61 second=245 amount=-1 -kerning first=201 second=375 amount=-1 -kerning first=321 second=290 amount=-2 -kerning first=221 second=1051 amount=-5 -kerning first=936 second=352 amount=-1 -kerning first=247 second=234 amount=-1 -kerning first=367 second=364 amount=-2 -kerning first=964 second=277 amount=-1 -kerning first=160 second=246 amount=-1 -kerning first=1046 second=211 amount=-3 -kerning first=289 second=8212 amount=-2 -kerning first=294 second=1059 amount=-2 -kerning first=1081 second=113 amount=-1 -kerning first=199 second=8249 amount=-1 -kerning first=1078 second=353 amount=-1 -kerning first=325 second=235 amount=-1 -kerning first=900 second=365 amount=-1 -kerning first=88 second=97 amount=-1 -kerning first=108 second=259 amount=-1 -kerning first=111 second=34 amount=-1 -kerning first=365 second=8216 amount=-3 -kerning first=374 second=74 amount=-6 -kerning first=968 second=224 amount=-1 -kerning first=1041 second=1184 amount=-5 -kerning first=186 second=336 amount=-2 -kerning first=301 second=248 amount=-1 -kerning first=86 second=966 amount=-1 -kerning first=89 second=275 amount=-4 -kerning first=1119 second=225 amount=-1 -kerning first=252 second=337 amount=-1 -kerning first=255 second=99 amount=-1 -kerning first=375 second=249 amount=-1 -kerning first=372 second=940 amount=-3 -kerning first=168 second=111 amount=-1 -kerning first=165 second=351 amount=-1 -kerning first=278 second=261 amount=-1 -kerning first=8218 second=214 amount=-1 -kerning first=47 second=363 amount=-1 -kerning first=70 second=290 amount=-2 -kerning first=8378 second=972 amount=-1 -kerning first=905 second=941 amount=-1 -kerning first=910 second=250 amount=-2 -kerning first=356 second=262 amount=-1 -kerning first=948 second=1241 amount=-1 -kerning first=951 second=187 amount=-1 -kerning first=113 second=364 amount=-2 -kerning first=1202 second=8220 amount=-2 -kerning first=253 second=968 amount=-1 -kerning first=256 second=277 amount=-1 -kerning first=379 second=199 amount=-1 -kerning first=166 second=1035 amount=-5 -kerning first=169 second=291 amount=-1 -kerning first=1027 second=89 amount=-5 -kerning first=282 second=211 amount=-2 -kerning first=48 second=1059 amount=-2 -kerning first=306 second=353 amount=-1 -kerning first=311 second=113 amount=-2 -kerning first=74 second=235 amount=-1 -kerning first=214 second=365 amount=-1 -kerning first=111 second=8216 amount=-1 -kerning first=1223 second=943 amount=-1 -kerning first=260 second=224 amount=-1 -kerning first=1035 second=39 amount=-3 -kerning first=280 second=1184 amount=-5 +kerning first=8217 second=44 amount=-1 +kerning first=8217 second=46 amount=-1 +kerning first=8217 second=47 amount=-2 +kerning first=8217 second=52 amount=-1 +kerning first=8217 second=56 amount=-1 +kerning first=8217 second=65 amount=-3 +kerning first=8217 second=74 amount=-4 +kerning first=8217 second=97 amount=-1 +kerning first=8217 second=99 amount=-1 +kerning first=8217 second=100 amount=-1 +kerning first=8217 second=101 amount=-1 +kerning first=8217 second=103 amount=-1 +kerning first=8217 second=111 amount=-1 +kerning first=8217 second=113 amount=-1 +kerning first=8217 second=115 amount=-1 +kerning first=8217 second=193 amount=-3 +kerning first=8217 second=194 amount=-3 +kerning first=8217 second=196 amount=-3 +kerning first=8217 second=197 amount=-3 +kerning first=8217 second=198 amount=-3 +kerning first=8217 second=224 amount=-1 +kerning first=8217 second=225 amount=-1 +kerning first=8217 second=226 amount=-1 +kerning first=8217 second=227 amount=-1 +kerning first=8217 second=228 amount=-1 +kerning first=8217 second=229 amount=-1 +kerning first=8217 second=230 amount=-1 +kerning first=8217 second=231 amount=-1 +kerning first=8217 second=232 amount=-1 +kerning first=8217 second=233 amount=-1 +kerning first=8217 second=234 amount=-1 +kerning first=8217 second=235 amount=-1 +kerning first=8217 second=240 amount=-1 +kerning first=8217 second=242 amount=-1 +kerning first=8217 second=243 amount=-1 +kerning first=8217 second=244 amount=-1 +kerning first=8217 second=245 amount=-1 +kerning first=8217 second=246 amount=-1 +kerning first=8217 second=248 amount=-1 +kerning first=8217 second=256 amount=-3 +kerning first=8217 second=257 amount=-1 +kerning first=8217 second=258 amount=-3 +kerning first=8217 second=259 amount=-1 +kerning first=8217 second=260 amount=-3 +kerning first=8217 second=261 amount=-1 +kerning first=8217 second=263 amount=-1 +kerning first=8217 second=267 amount=-1 +kerning first=8217 second=269 amount=-1 +kerning first=8217 second=271 amount=-1 +kerning first=8217 second=273 amount=-1 +kerning first=8217 second=275 amount=-1 +kerning first=8217 second=277 amount=-1 +kerning first=8217 second=279 amount=-1 +kerning first=8217 second=281 amount=-1 +kerning first=8217 second=283 amount=-1 +kerning first=8217 second=287 amount=-1 +kerning first=8217 second=289 amount=-1 +kerning first=8217 second=291 amount=-1 +kerning first=8217 second=333 amount=-1 +kerning first=8217 second=335 amount=-1 +kerning first=8217 second=337 amount=-1 +kerning first=8217 second=339 amount=-1 +kerning first=8217 second=347 amount=-1 +kerning first=8217 second=351 amount=-1 +kerning first=8217 second=353 amount=-1 +kerning first=8217 second=913 amount=-3 +kerning first=8217 second=916 amount=-3 +kerning first=8217 second=923 amount=-3 +kerning first=8217 second=940 amount=-1 +kerning first=8217 second=941 amount=-1 +kerning first=8217 second=945 amount=-1 +kerning first=8217 second=949 amount=-1 +kerning first=8217 second=959 amount=-1 +kerning first=8217 second=962 amount=-1 +kerning first=8217 second=963 amount=-1 +kerning first=8217 second=966 amount=-1 +kerning first=8217 second=972 amount=-1 +kerning first=8217 second=1032 amount=-4 +kerning first=8217 second=1033 amount=-3 +kerning first=8217 second=1040 amount=-3 +kerning first=8217 second=1044 amount=-3 +kerning first=8217 second=1051 amount=-3 +kerning first=8217 second=1072 amount=-1 +kerning first=8217 second=1077 amount=-1 +kerning first=8217 second=1086 amount=-1 +kerning first=8217 second=1089 amount=-1 +kerning first=8217 second=1092 amount=-1 +kerning first=8217 second=1104 amount=-1 +kerning first=8217 second=1105 amount=-1 +kerning first=8217 second=1108 amount=-1 +kerning first=8217 second=1109 amount=-1 +kerning first=8217 second=1195 amount=-1 +kerning first=8217 second=1241 amount=-1 +kerning first=8217 second=1257 amount=-1 +kerning first=8217 second=1298 amount=-3 +kerning first=8217 second=8218 amount=-1 kerning first=8217 second=8222 amount=-1 -kerning first=8240 second=79 amount=-2 -kerning first=55 second=248 amount=-1 -kerning first=198 second=171 amount=-3 -kerning first=928 second=115 amount=-1 -kerning first=1178 second=267 amount=-1 -kerning first=361 second=367 amount=-1 -kerning first=358 second=1185 amount=-3 -kerning first=121 second=249 amount=-1 -kerning first=118 second=940 amount=-1 -kerning first=36 second=261 amount=-1 -kerning first=1036 second=214 amount=-3 -kerning first=281 second=8218 amount=-1 -kerning first=8226 second=945 amount=-1 -kerning first=1074 second=116 amount=-1 -kerning first=1070 second=356 amount=-2 -kerning first=1099 second=972 amount=-1 -kerning first=962 second=227 amount=-1 -kerning first=125 second=199 amount=-2 -kerning first=270 second=89 amount=-3 -kerning first=40 second=211 amount=-2 -kerning first=1037 second=369 amount=-1 -kerning first=176 second=1098 amount=-3 -kerning first=179 second=339 amount=-1 -kerning first=183 second=101 amount=-1 -kerning first=60 second=353 amount=-1 -kerning first=63 second=113 amount=-1 -kerning first=203 second=263 amount=-1 -kerning first=8370 second=106 amount=1 -kerning first=1184 second=1194 amount=-3 -kerning first=369 second=252 amount=-1 -kerning first=960 second=1256 amount=-2 -kerning first=123 second=1118 amount=-1 -kerning first=126 second=354 amount=-5 -kerning first=271 second=266 amount=-2 -kerning first=275 second=39 amount=-1 -kerning first=38 second=1184 amount=-5 -kerning first=41 second=366 amount=-2 -kerning first=1048 second=79 amount=-2 -kerning first=184 second=279 amount=-1 -kerning first=180 second=970 amount=-1 -kerning first=207 second=213 amount=-2 -kerning first=8366 second=1026 amount=-5 -kerning first=8372 second=286 amount=-2 -kerning first=327 second=103 amount=-1 -kerning first=902 second=253 amount=-1 -kerning first=87 second=225 amount=-2 -kerning first=104 second=1185 amount=-1 -kerning first=160 second=1038 amount=-2 -kerning first=276 second=214 amount=-2 -kerning first=39 second=8218 amount=-1 -kerning first=1046 second=945 amount=-2 -kerning first=188 second=226 amount=-1 -kerning first=300 second=356 amount=-5 -kerning first=303 second=116 amount=-1 -kerning first=325 second=972 amount=-1 -kerning first=105 second=8220 amount=-3 -kerning first=254 second=227 amount=-1 -kerning first=971 second=269 amount=-1 -kerning first=49 second=251 amount=-1 -kerning first=206 second=8221 amount=-3 -kerning first=209 second=1066 amount=-5 -kerning first=1095 second=106 amount=1 -kerning first=912 second=118 amount=-4 -kerning first=89 second=1080 amount=-3 -kerning first=1119 second=962 amount=-1 -kerning first=950 second=283 amount=-1 -kerning first=252 second=1256 amount=-2 -kerning first=381 second=67 amount=-1 -kerning first=1026 second=217 amount=-2 -kerning first=275 second=8222 amount=-1 -kerning first=1064 second=359 amount=-1 -kerning first=1067 second=119 amount=-4 -kerning first=305 second=920 amount=-2 -kerning first=70 second=1100 amount=-1 -kerning first=1096 second=286 amount=-2 -kerning first=76 second=103 amount=-1 -kerning first=96 second=267 amount=-1 -kerning first=1176 second=218 amount=-2 -kerning first=954 second=230 amount=-1 -kerning first=382 second=242 amount=-1 -kerning first=973 second=947 amount=-4 -kerning first=1027 second=372 amount=-5 -kerning first=169 second=1101 amount=-1 -kerning first=282 second=945 amount=-1 -kerning first=54 second=356 amount=-5 -kerning first=57 second=116 amount=-1 -kerning first=197 second=268 amount=-2 -kerning first=74 second=972 amount=-1 -kerning first=77 second=281 amount=-1 -kerning first=926 second=243 amount=-1 -kerning first=952 second=1263 amount=-1 -kerning first=123 second=117 amount=-1 -kerning first=35 second=369 amount=-1 -kerning first=174 second=973 amount=-1 -kerning first=8225 second=1176 amount=-1 -kerning first=8240 second=362 amount=-2 -kerning first=1073 second=244 amount=-1 -kerning first=201 second=216 amount=-2 -kerning first=321 second=106 amount=1 -kerning first=8363 second=289 amount=-1 -kerning first=224 second=118 amount=-1 -kerning first=936 second=193 amount=-3 -kerning first=160 second=67 amount=-2 -kerning first=42 second=79 amount=-2 -kerning first=1039 second=257 amount=-1 -kerning first=1036 second=949 amount=-2 -kerning first=182 second=229 amount=-1 -kerning first=297 second=119 amount=-4 -kerning first=8226 second=8211 amount=-2 -kerning first=294 second=359 amount=-1 -kerning first=59 second=920 amount=-2 -kerning first=8249 second=1051 amount=-1 -kerning first=202 second=371 amount=-1 -kerning first=317 second=1026 amount=-5 -kerning first=322 second=286 amount=-2 -kerning first=8369 second=234 amount=-1 -kerning first=1102 second=1090 amount=-1 -kerning first=222 second=1046 amount=-3 -kerning first=965 second=273 amount=-1 -kerning first=968 second=45 amount=-2 -kerning first=161 second=242 amount=-1 -kerning first=962 second=964 amount=-3 -kerning first=267 second=947 amount=-1 -kerning first=270 second=372 amount=-2 -kerning first=40 second=945 amount=-1 -kerning first=183 second=1240 amount=-2 -kerning first=179 second=1262 amount=-2 -kerning first=1075 second=1108 amount=-1 -kerning first=203 second=1069 amount=-1 -kerning first=209 second=81 amount=-2 -kerning first=901 second=361 amount=-1 -kerning first=904 second=121 amount=-1 -kerning first=86 second=331 amount=-2 -kerning first=347 second=373 amount=-1 -kerning first=8212 second=260 amount=-2 -kerning first=1048 second=362 amount=-2 -kerning first=302 second=244 amount=-1 -kerning first=70 second=106 amount=1 -kerning first=1084 second=289 amount=-1 -kerning first=210 second=256 amount=-2 -kerning first=8378 second=337 amount=-1 -kerning first=87 second=962 amount=-3 -kerning first=910 second=71 amount=-3 -kerning first=1168 second=221 amount=-5 -kerning first=345 second=8230 amount=-3 -kerning first=356 second=83 amount=-1 -kerning first=948 second=233 amount=-1 -kerning first=253 second=333 amount=-1 -kerning first=376 second=245 amount=-4 -kerning first=276 second=949 amount=-1 -kerning first=48 second=359 amount=-1 -kerning first=51 second=119 amount=-4 -kerning first=1046 second=8211 amount=-3 -kerning first=188 second=963 amount=-1 -kerning first=191 second=271 amount=-1 -kerning first=68 second=1026 amount=-2 -kerning first=1094 second=234 amount=-1 -kerning first=328 second=1090 amount=-1 -kerning first=94 second=218 amount=-2 -kerning first=1210 second=1059 amount=-2 -kerning first=254 second=964 amount=-3 -kerning first=260 second=45 amount=-2 -kerning first=968 second=8249 amount=-3 -kerning first=170 second=287 amount=-1 -kerning first=195 second=219 amount=-2 -kerning first=304 second=1108 amount=-1 -kerning first=75 second=231 amount=-2 -kerning first=215 second=361 amount=-1 -kerning first=339 second=46 amount=-1 -kerning first=920 second=196 amount=-2 -kerning first=95 second=373 amount=-4 -kerning first=1119 second=8250 amount=-1 -kerning first=238 second=288 amount=-2 -kerning first=1033 second=260 amount=-1 -kerning first=175 second=232 amount=-1 +kerning first=8217 second=8230 amount=-1 +kerning first=8218 second=34 amount=-1 +kerning first=8218 second=39 amount=-1 +kerning first=8218 second=45 amount=-1 +kerning first=8218 second=48 amount=-1 +kerning first=8218 second=49 amount=-4 +kerning first=8218 second=51 amount=-1 +kerning first=8218 second=52 amount=-1 +kerning first=8218 second=53 amount=-1 +kerning first=8218 second=54 amount=-1 +kerning first=8218 second=55 amount=-1 +kerning first=8218 second=56 amount=-1 +kerning first=8218 second=67 amount=-1 +kerning first=8218 second=71 amount=-1 +kerning first=8218 second=79 amount=-1 +kerning first=8218 second=81 amount=-1 +kerning first=8218 second=84 amount=-5 +kerning first=8218 second=85 amount=-1 +kerning first=8218 second=86 amount=-4 +kerning first=8218 second=87 amount=-3 +kerning first=8218 second=89 amount=-4 +kerning first=8218 second=102 amount=-2 +kerning first=8218 second=103 amount=-1 +kerning first=8218 second=106 amount=2 +kerning first=8218 second=116 amount=-1 +kerning first=8218 second=117 amount=-1 +kerning first=8218 second=118 amount=-2 +kerning first=8218 second=119 amount=-2 +kerning first=8218 second=121 amount=-1 +kerning first=8218 second=173 amount=-1 +kerning first=8218 second=199 amount=-1 +kerning first=8218 second=210 amount=-1 +kerning first=8218 second=211 amount=-1 +kerning first=8218 second=212 amount=-1 +kerning first=8218 second=213 amount=-1 +kerning first=8218 second=214 amount=-1 +kerning first=8218 second=216 amount=-1 +kerning first=8218 second=217 amount=-1 +kerning first=8218 second=218 amount=-1 +kerning first=8218 second=219 amount=-1 +kerning first=8218 second=220 amount=-1 +kerning first=8218 second=221 amount=-4 +kerning first=8218 second=249 amount=-1 +kerning first=8218 second=250 amount=-1 +kerning first=8218 second=251 amount=-1 +kerning first=8218 second=252 amount=-1 +kerning first=8218 second=253 amount=-1 +kerning first=8218 second=262 amount=-1 +kerning first=8218 second=266 amount=-1 +kerning first=8218 second=268 amount=-1 +kerning first=8218 second=286 amount=-1 +kerning first=8218 second=287 amount=-1 +kerning first=8218 second=288 amount=-1 +kerning first=8218 second=289 amount=-1 +kerning first=8218 second=290 amount=-1 +kerning first=8218 second=291 amount=-1 +kerning first=8218 second=332 amount=-1 +kerning first=8218 second=334 amount=-1 +kerning first=8218 second=336 amount=-1 +kerning first=8218 second=338 amount=-1 +kerning first=8218 second=354 amount=-5 +kerning first=8218 second=355 amount=-1 +kerning first=8218 second=356 amount=-5 +kerning first=8218 second=357 amount=-1 +kerning first=8218 second=359 amount=-1 +kerning first=8218 second=360 amount=-1 +kerning first=8218 second=361 amount=-1 +kerning first=8218 second=362 amount=-1 +kerning first=8218 second=363 amount=-1 +kerning first=8218 second=364 amount=-1 +kerning first=8218 second=365 amount=-1 +kerning first=8218 second=366 amount=-1 +kerning first=8218 second=367 amount=-1 +kerning first=8218 second=368 amount=-1 +kerning first=8218 second=369 amount=-1 +kerning first=8218 second=370 amount=-1 +kerning first=8218 second=371 amount=-1 +kerning first=8218 second=372 amount=-3 +kerning first=8218 second=373 amount=-2 +kerning first=8218 second=374 amount=-4 +kerning first=8218 second=375 amount=-1 +kerning first=8218 second=376 amount=-4 +kerning first=8218 second=920 amount=-1 +kerning first=8218 second=927 amount=-1 +kerning first=8218 second=932 amount=-5 +kerning first=8218 second=933 amount=-4 +kerning first=8218 second=939 amount=-4 +kerning first=8218 second=947 amount=-2 +kerning first=8218 second=957 amount=-2 +kerning first=8218 second=964 amount=-3 +kerning first=8218 second=965 amount=-1 +kerning first=8218 second=968 amount=-1 +kerning first=8218 second=973 amount=-1 +kerning first=8218 second=1026 amount=-5 +kerning first=8218 second=1028 amount=-1 +kerning first=8218 second=1035 amount=-5 +kerning first=8218 second=1038 amount=-1 +kerning first=8218 second=1054 amount=-1 +kerning first=8218 second=1057 amount=-1 +kerning first=8218 second=1058 amount=-5 +kerning first=8218 second=1059 amount=-1 +kerning first=8218 second=1063 amount=-3 +kerning first=8218 second=1066 amount=-5 +kerning first=8218 second=1069 amount=-1 +kerning first=8218 second=1090 amount=-3 +kerning first=8218 second=1091 amount=-1 +kerning first=8218 second=1098 amount=-3 +kerning first=8218 second=1112 amount=2 +kerning first=8218 second=1118 amount=-1 +kerning first=8218 second=1176 amount=-1 +kerning first=8218 second=1184 amount=-5 +kerning first=8218 second=1185 amount=-3 +kerning first=8218 second=1194 amount=-1 +kerning first=8218 second=1198 amount=-4 +kerning first=8218 second=1199 amount=-2 +kerning first=8218 second=1240 amount=-1 +kerning first=8218 second=1256 amount=-1 +kerning first=8218 second=1262 amount=-1 +kerning first=8218 second=1263 amount=-1 +kerning first=8218 second=8211 amount=-1 +kerning first=8218 second=8212 amount=-1 +kerning first=8218 second=8216 amount=-1 kerning first=8218 second=8217 amount=-1 -kerning first=8222 second=1063 amount=-3 -kerning first=56 second=244 amount=-1 -kerning first=1070 second=197 amount=-2 -kerning first=196 second=374 amount=-5 -kerning first=314 second=289 amount=-1 -kerning first=1099 second=337 amount=-1 -kerning first=340 second=221 amount=-2 -kerning first=931 second=111 amount=-1 -kerning first=923 second=351 amount=-1 -kerning first=1176 second=953 amount=-1 -kerning first=122 second=245 amount=-1 -kerning first=34 second=949 amount=-1 -kerning first=37 second=257 amount=-1 -kerning first=1037 second=210 amount=-2 -kerning first=282 second=8211 amount=-2 -kerning first=1071 second=352 amount=-1 -kerning first=203 second=84 amount=-5 -kerning first=318 second=234 amount=-1 -kerning first=8365 second=187 amount=-1 -kerning first=77 second=1090 amount=-3 -kerning first=80 second=334 amount=-2 -kerning first=1103 second=277 amount=-1 -kerning first=223 second=246 amount=-1 -kerning first=926 second=1035 amount=-5 -kerning first=934 second=291 amount=-1 -kerning first=363 second=1059 amount=-2 -kerning first=260 second=8249 amount=-3 -kerning first=271 second=85 amount=-2 -kerning first=180 second=335 amount=-1 -kerning first=184 second=97 amount=-1 -kerning first=58 second=1108 amount=-1 -kerning first=61 second=347 amount=-1 -kerning first=204 second=259 amount=-1 -kerning first=207 second=34 amount=-3 -kerning first=902 second=74 amount=-1 -kerning first=87 second=46 amount=-3 -kerning first=350 second=86 amount=-2 -kerning first=247 second=336 amount=-2 -kerning first=967 second=171 amount=-3 -kerning first=160 second=350 amount=-1 -kerning first=42 second=362 amount=-2 -kerning first=45 second=122 amount=-2 -kerning first=182 second=966 amount=-1 -kerning first=185 second=275 amount=-1 -kerning first=65 second=289 amount=-1 -kerning first=325 second=337 amount=-1 -kerning first=900 second=940 amount=-1 -kerning first=903 second=249 amount=-1 -kerning first=105 second=1177 amount=-1 -kerning first=108 second=363 amount=-1 -kerning first=248 second=967 amount=-2 -kerning first=374 second=198 amount=-5 -kerning first=164 second=290 amount=-2 -kerning first=40 second=8211 amount=-2 -kerning first=1051 second=250 amount=-1 -kerning first=301 second=352 amount=-1 -kerning first=69 second=234 amount=-1 -kerning first=1083 second=1241 amount=-1 -kerning first=1087 second=187 amount=-1 -kerning first=209 second=364 amount=-2 -kerning first=330 second=277 amount=-1 -kerning first=1170 second=89 amount=-5 -kerning first=943 second=1098 amount=-2 -kerning first=946 second=339 amount=-1 -kerning first=950 second=101 amount=-1 -kerning first=1219 second=251 amount=-1 -kerning first=375 second=353 amount=-1 -kerning first=372 second=1117 amount=-2 -kerning first=378 second=113 amount=-1 -kerning first=969 second=955 amount=-1 -kerning first=168 second=235 amount=-1 -kerning first=278 second=365 amount=-1 -kerning first=8212 second=1066 amount=-4 -kerning first=207 second=8216 amount=-3 -kerning first=8378 second=1256 amount=-2 -kerning first=905 second=1118 amount=-1 -kerning first=87 second=8250 amount=-2 -kerning first=1171 second=266 amount=-2 -kerning first=1176 second=39 amount=-3 -kerning first=948 second=970 amount=-1 -kerning first=951 second=279 amount=-1 -kerning first=1027 second=213 amount=-2 -kerning first=276 second=8217 amount=-3 -kerning first=8224 second=253 amount=-1 -kerning first=197 second=87 amount=-5 -kerning first=74 second=337 amount=-1 -kerning first=77 second=99 amount=-1 -kerning first=214 second=940 amount=-1 -kerning first=94 second=953 amount=-1 -kerning first=354 second=8218 amount=-3 -kerning first=955 second=226 amount=-1 -kerning first=1298 second=116 amount=-1 -kerning first=35 second=210 amount=-2 -kerning first=174 second=338 amount=-2 -kerning first=177 second=100 amount=-1 -kerning first=55 second=352 amount=-1 -kerning first=198 second=262 amount=-2 -kerning first=313 second=1241 amount=-1 -kerning first=316 second=187 amount=-1 -kerning first=78 second=277 amount=-1 -kerning first=75 second=968 amount=-1 -kerning first=221 second=199 amount=-3 -kerning first=342 second=89 amount=-2 -kerning first=238 second=1098 amount=-3 -kerning first=124 second=113 amount=-1 -kerning first=121 second=353 amount=-1 -kerning first=36 second=365 amount=-1 -kerning first=1026 second=8221 amount=-3 -kerning first=1033 second=1066 amount=-5 -kerning first=1070 second=916 amount=-2 -kerning first=1074 second=240 amount=-1 -kerning first=202 second=212 amount=-2 -kerning first=8364 second=283 amount=-1 -kerning first=1099 second=1256 amount=-2 -kerning first=1102 second=382 amount=-1 -kerning first=222 second=354 amount=-2 -kerning first=1041 second=253 amount=-1 -kerning first=183 second=225 amount=-1 -kerning first=298 second=115 amount=-1 -kerning first=8250 second=1046 amount=-3 -kerning first=200 second=1185 amount=-3 -kerning first=203 second=367 amount=-1 -kerning first=8370 second=230 amount=-1 -kerning first=223 second=1038 amount=-2 -kerning first=934 second=1101 amount=-1 -kerning first=1187 second=945 amount=-1 -kerning first=249 second=226 amount=-1 -kerning first=369 second=356 amount=-5 -kerning first=271 second=368 amount=-2 -kerning first=41 second=941 amount=-1 -kerning first=44 second=250 amount=-1 -kerning first=64 second=1241 amount=-1 -kerning first=201 second=8220 amount=-3 -kerning first=327 second=227 amount=-1 -kerning first=8366 second=1263 amount=-1 -kerning first=902 second=357 amount=-1 -kerning first=905 second=117 amount=-1 -kerning first=84 second=1079 amount=-2 -kerning first=87 second=326 amount=-2 -kerning first=1117 second=269 amount=-1 -kerning first=273 second=1066 amount=-5 -kerning first=269 second=8221 amount=-1 -kerning first=8216 second=256 amount=-3 -kerning first=1062 second=118 amount=-2 -kerning first=303 second=240 amount=-1 -kerning first=1085 second=283 amount=-1 -kerning first=325 second=1256 amount=-2 -kerning first=91 second=266 amount=-2 -kerning first=94 second=39 amount=-3 -kerning first=357 second=79 amount=-2 -kerning first=1223 second=119 amount=-4 -kerning first=1210 second=359 amount=-1 -kerning first=374 second=920 amount=-3 -kerning first=968 second=1195 amount=-1 -kerning first=971 second=371 amount=-1 -kerning first=170 second=103 amount=-1 -kerning first=280 second=253 amount=-1 -kerning first=49 second=355 amount=-1 -kerning first=52 second=115 amount=-1 -kerning first=192 second=267 amount=-1 -kerning first=1095 second=230 amount=-1 -kerning first=912 second=242 amount=-1 -kerning first=95 second=214 amount=-2 -kerning first=1119 second=947 amount=-4 -kerning first=1170 second=372 amount=-5 -kerning first=908 second=923 amount=-2 -kerning first=950 second=1240 amount=-2 -kerning first=946 second=1262 amount=-2 -kerning first=258 second=268 amount=-2 -kerning first=168 second=972 amount=-1 -kerning first=8222 second=361 amount=-1 -kerning first=8226 second=121 amount=-1 -kerning first=1067 second=243 amount=-1 -kerning first=96 second=369 amount=-1 -kerning first=236 second=973 amount=-1 -kerning first=1263 second=244 amount=-1 -kerning first=1034 second=256 amount=-1 -kerning first=176 second=228 amount=-1 -kerning first=57 second=240 amount=-1 -kerning first=194 second=1194 amount=-2 -kerning first=197 second=370 amount=-2 -kerning first=315 second=283 amount=-1 -kerning first=74 second=1256 amount=-2 -kerning first=217 second=1044 amount=-1 -kerning first=223 second=67 amount=-2 -kerning first=103 second=79 amount=-2 -kerning first=1184 second=257 amount=-1 -kerning first=363 second=359 amount=-1 -kerning first=955 second=963 amount=-1 -kerning first=960 second=271 amount=-1 -kerning first=260 second=1195 amount=-1 -kerning first=38 second=253 amount=-1 -kerning first=174 second=1257 amount=-1 -kerning first=8260 second=246 amount=-1 -kerning first=1073 second=346 amount=-1 -kerning first=321 second=230 amount=-1 -kerning first=1101 second=964 amount=-1 -kerning first=221 second=923 amount=-5 -kerning first=339 second=947 amount=-1 -kerning first=342 second=372 amount=-1 -kerning first=936 second=287 amount=-1 -kerning first=964 second=219 amount=-2 -kerning first=1299 second=1108 amount=-1 -kerning first=266 second=1069 amount=1 -kerning first=273 second=81 amount=-2 -kerning first=1039 second=361 amount=-1 -kerning first=1046 second=121 amount=-1 -kerning first=297 second=243 amount=-1 -kerning first=1074 second=1028 amount=-2 -kerning first=317 second=1263 amount=-1 -kerning first=8369 second=336 amount=-2 -kerning first=942 second=232 amount=-1 -kerning first=371 second=244 amount=-1 -kerning first=965 second=374 amount=-5 -kerning first=164 second=106 amount=1 -kerning first=46 second=118 amount=-2 -kerning first=1051 second=71 amount=-2 -kerning first=183 second=962 amount=-1 -kerning first=1083 second=233 amount=-1 -kerning first=904 second=245 amount=-1 -kerning first=112 second=119 amount=-1 -kerning first=249 second=963 amount=-1 -kerning first=252 second=271 amount=-1 -kerning first=162 second=1026 amount=-5 -kerning first=165 second=286 amount=-2 -kerning first=1241 second=1090 amount=-1 -kerning first=190 second=218 amount=-2 -kerning first=302 second=346 amount=-1 -kerning first=70 second=230 amount=-1 -kerning first=327 second=964 amount=-3 -kerning first=87 second=947 amount=-1 -kerning first=1171 second=85 amount=-2 -kerning first=948 second=335 amount=-1 -kerning first=951 second=97 amount=-1 -kerning first=256 second=219 amount=-2 -kerning first=373 second=1108 amount=-1 -kerning first=376 second=347 amount=-3 -kerning first=973 second=259 amount=-1 -kerning first=1027 second=34 amount=-3 -kerning first=169 second=231 amount=-1 -kerning first=282 second=121 amount=-1 -kerning first=51 second=243 amount=-1 -kerning first=191 second=373 amount=-4 -kerning first=303 second=1028 amount=-2 -kerning first=306 second=288 amount=-2 -kerning first=237 second=232 amount=-1 -kerning first=357 second=362 amount=-2 -kerning first=952 second=275 amount=-1 -kerning first=117 second=244 amount=-1 +kerning first=8218 second=8220 amount=-1 +kerning first=8218 second=8221 amount=-1 +kerning first=8220 second=44 amount=-1 +kerning first=8220 second=46 amount=-1 +kerning first=8220 second=47 amount=-2 +kerning first=8220 second=52 amount=-1 +kerning first=8220 second=56 amount=-1 +kerning first=8220 second=65 amount=-3 +kerning first=8220 second=74 amount=-4 +kerning first=8220 second=97 amount=-1 +kerning first=8220 second=99 amount=-1 +kerning first=8220 second=100 amount=-1 +kerning first=8220 second=101 amount=-1 +kerning first=8220 second=103 amount=-1 +kerning first=8220 second=111 amount=-1 +kerning first=8220 second=113 amount=-1 +kerning first=8220 second=115 amount=-1 +kerning first=8220 second=193 amount=-3 +kerning first=8220 second=194 amount=-3 +kerning first=8220 second=196 amount=-3 +kerning first=8220 second=197 amount=-3 +kerning first=8220 second=198 amount=-3 +kerning first=8220 second=224 amount=-1 +kerning first=8220 second=225 amount=-1 +kerning first=8220 second=226 amount=-1 +kerning first=8220 second=227 amount=-1 +kerning first=8220 second=228 amount=-1 +kerning first=8220 second=229 amount=-1 +kerning first=8220 second=230 amount=-1 +kerning first=8220 second=231 amount=-1 +kerning first=8220 second=232 amount=-1 +kerning first=8220 second=233 amount=-1 +kerning first=8220 second=234 amount=-1 +kerning first=8220 second=235 amount=-1 +kerning first=8220 second=240 amount=-1 +kerning first=8220 second=242 amount=-1 +kerning first=8220 second=243 amount=-1 +kerning first=8220 second=244 amount=-1 +kerning first=8220 second=245 amount=-1 +kerning first=8220 second=246 amount=-1 +kerning first=8220 second=248 amount=-1 +kerning first=8220 second=256 amount=-3 +kerning first=8220 second=257 amount=-1 +kerning first=8220 second=258 amount=-3 +kerning first=8220 second=259 amount=-1 +kerning first=8220 second=260 amount=-3 +kerning first=8220 second=261 amount=-1 +kerning first=8220 second=263 amount=-1 +kerning first=8220 second=267 amount=-1 +kerning first=8220 second=269 amount=-1 +kerning first=8220 second=271 amount=-1 +kerning first=8220 second=273 amount=-1 +kerning first=8220 second=275 amount=-1 +kerning first=8220 second=277 amount=-1 +kerning first=8220 second=279 amount=-1 +kerning first=8220 second=281 amount=-1 +kerning first=8220 second=283 amount=-1 +kerning first=8220 second=287 amount=-1 +kerning first=8220 second=289 amount=-1 +kerning first=8220 second=291 amount=-1 +kerning first=8220 second=333 amount=-1 +kerning first=8220 second=335 amount=-1 +kerning first=8220 second=337 amount=-1 +kerning first=8220 second=339 amount=-1 +kerning first=8220 second=347 amount=-1 +kerning first=8220 second=351 amount=-1 +kerning first=8220 second=353 amount=-1 +kerning first=8220 second=913 amount=-3 +kerning first=8220 second=916 amount=-3 +kerning first=8220 second=923 amount=-3 +kerning first=8220 second=940 amount=-1 +kerning first=8220 second=941 amount=-1 +kerning first=8220 second=945 amount=-1 +kerning first=8220 second=949 amount=-1 +kerning first=8220 second=959 amount=-1 +kerning first=8220 second=962 amount=-1 +kerning first=8220 second=963 amount=-1 +kerning first=8220 second=966 amount=-1 +kerning first=8220 second=972 amount=-1 +kerning first=8220 second=1032 amount=-4 +kerning first=8220 second=1033 amount=-3 +kerning first=8220 second=1040 amount=-3 +kerning first=8220 second=1044 amount=-3 +kerning first=8220 second=1051 amount=-3 +kerning first=8220 second=1072 amount=-1 +kerning first=8220 second=1077 amount=-1 +kerning first=8220 second=1086 amount=-1 +kerning first=8220 second=1089 amount=-1 +kerning first=8220 second=1092 amount=-1 +kerning first=8220 second=1104 amount=-1 +kerning first=8220 second=1105 amount=-1 +kerning first=8220 second=1108 amount=-1 +kerning first=8220 second=1109 amount=-1 +kerning first=8220 second=1195 amount=-1 +kerning first=8220 second=1241 amount=-1 +kerning first=8220 second=1257 amount=-1 +kerning first=8220 second=1298 amount=-3 +kerning first=8220 second=8218 amount=-1 +kerning first=8220 second=8222 amount=-1 +kerning first=8220 second=8230 amount=-1 +kerning first=8221 second=44 amount=-1 +kerning first=8221 second=46 amount=-1 +kerning first=8221 second=47 amount=-2 +kerning first=8221 second=52 amount=-1 +kerning first=8221 second=56 amount=-1 +kerning first=8221 second=65 amount=-3 +kerning first=8221 second=74 amount=-4 +kerning first=8221 second=97 amount=-1 +kerning first=8221 second=99 amount=-1 +kerning first=8221 second=100 amount=-1 +kerning first=8221 second=101 amount=-1 +kerning first=8221 second=103 amount=-1 +kerning first=8221 second=111 amount=-1 +kerning first=8221 second=113 amount=-1 +kerning first=8221 second=115 amount=-1 +kerning first=8221 second=193 amount=-3 +kerning first=8221 second=194 amount=-3 +kerning first=8221 second=196 amount=-3 +kerning first=8221 second=197 amount=-3 +kerning first=8221 second=198 amount=-3 +kerning first=8221 second=224 amount=-1 +kerning first=8221 second=225 amount=-1 +kerning first=8221 second=226 amount=-1 +kerning first=8221 second=227 amount=-1 +kerning first=8221 second=228 amount=-1 +kerning first=8221 second=229 amount=-1 +kerning first=8221 second=230 amount=-1 +kerning first=8221 second=231 amount=-1 +kerning first=8221 second=232 amount=-1 +kerning first=8221 second=233 amount=-1 +kerning first=8221 second=234 amount=-1 +kerning first=8221 second=235 amount=-1 +kerning first=8221 second=240 amount=-1 +kerning first=8221 second=242 amount=-1 +kerning first=8221 second=243 amount=-1 +kerning first=8221 second=244 amount=-1 +kerning first=8221 second=245 amount=-1 +kerning first=8221 second=246 amount=-1 +kerning first=8221 second=248 amount=-1 +kerning first=8221 second=256 amount=-3 +kerning first=8221 second=257 amount=-1 +kerning first=8221 second=258 amount=-3 +kerning first=8221 second=259 amount=-1 +kerning first=8221 second=260 amount=-3 +kerning first=8221 second=261 amount=-1 +kerning first=8221 second=263 amount=-1 +kerning first=8221 second=267 amount=-1 +kerning first=8221 second=269 amount=-1 +kerning first=8221 second=271 amount=-1 +kerning first=8221 second=273 amount=-1 +kerning first=8221 second=275 amount=-1 +kerning first=8221 second=277 amount=-1 +kerning first=8221 second=279 amount=-1 +kerning first=8221 second=281 amount=-1 +kerning first=8221 second=283 amount=-1 +kerning first=8221 second=287 amount=-1 +kerning first=8221 second=289 amount=-1 +kerning first=8221 second=291 amount=-1 +kerning first=8221 second=333 amount=-1 +kerning first=8221 second=335 amount=-1 +kerning first=8221 second=337 amount=-1 +kerning first=8221 second=339 amount=-1 +kerning first=8221 second=347 amount=-1 +kerning first=8221 second=351 amount=-1 +kerning first=8221 second=353 amount=-1 +kerning first=8221 second=913 amount=-3 +kerning first=8221 second=916 amount=-3 +kerning first=8221 second=923 amount=-3 kerning first=8221 second=940 amount=-1 -kerning first=8225 second=249 amount=-1 -kerning first=55 second=193 amount=-5 -kerning first=198 second=83 amount=-1 -kerning first=313 second=233 amount=-1 -kerning first=75 second=333 amount=-2 -kerning first=95 second=949 amount=-1 -kerning first=1178 second=210 amount=-1 -kerning first=235 second=1299 amount=-1 -kerning first=266 second=84 amount=-1 -kerning first=175 second=334 amount=-2 -kerning first=289 second=246 amount=-1 -kerning first=56 second=346 amount=-1 -kerning first=1067 second=1035 amount=-5 -kerning first=196 second=950 amount=-1 -kerning first=199 second=258 amount=-1 -kerning first=8361 second=339 amount=-1 -kerning first=8364 second=101 amount=-1 -kerning first=82 second=45 amount=-1 -kerning first=931 second=235 amount=-1 -kerning first=119 second=1108 amount=-1 -kerning first=37 second=361 amount=-1 -kerning first=1027 second=8216 amount=-3 -kerning first=40 second=121 amount=-1 -kerning first=176 second=965 amount=-1 -kerning first=8230 second=1118 amount=-1 -kerning first=8250 second=354 amount=-3 -kerning first=57 second=1028 amount=-2 -kerning first=60 second=288 amount=-2 -kerning first=318 second=336 amount=-2 -kerning first=8365 second=279 amount=-1 -kerning first=223 second=350 amount=-1 -kerning first=103 second=362 amount=-2 -kerning first=100 second=1176 amount=-1 -kerning first=126 second=289 amount=-1 -kerning first=44 second=71 amount=-1 -kerning first=184 second=221 amount=-5 -kerning first=296 second=351 amount=-1 -kerning first=8260 second=1038 amount=-2 -kerning first=299 second=111 amount=-1 -kerning first=64 second=233 amount=-1 -kerning first=204 second=363 amount=-1 -kerning first=201 second=1177 amount=-1 -kerning first=8372 second=226 amount=-1 -kerning first=84 second=375 amount=-2 -kerning first=944 second=100 amount=-1 -kerning first=967 second=262 amount=-2 -kerning first=163 second=234 amount=-1 -kerning first=273 second=364 amount=-2 -kerning first=1049 second=199 amount=-2 -kerning first=185 second=376 amount=-5 -kerning first=297 second=1035 amount=-5 -kerning first=300 second=291 amount=-1 -kerning first=1081 second=339 amount=-1 -kerning first=205 second=1059 amount=-2 -kerning first=202 second=8212 amount=-2 -kerning first=1085 second=101 amount=-1 -kerning first=906 second=113 amount=-1 -kerning first=903 second=353 amount=-1 -kerning first=91 second=85 amount=-2 -kerning first=82 second=8249 amount=-1 -kerning first=1118 second=263 amount=-1 -kerning first=971 second=212 amount=-2 -kerning first=1051 second=354 amount=-5 -kerning first=183 second=8250 amount=-1 -kerning first=69 second=336 amount=-2 -kerning first=1083 second=970 amount=-1 -kerning first=1087 second=279 amount=-1 -kerning first=89 second=952 amount=-2 -kerning first=1170 second=213 amount=-2 -kerning first=347 second=8217 amount=-1 -kerning first=950 second=225 amount=-1 -kerning first=1219 second=355 amount=-1 -kerning first=1224 second=115 amount=-1 -kerning first=258 second=87 amount=-5 -kerning first=168 second=337 amount=-1 -kerning first=278 second=940 amount=-1 -kerning first=47 second=1114 amount=-1 -kerning first=53 second=111 amount=-1 -kerning first=50 second=351 amount=-1 -kerning first=190 second=953 amount=-1 -kerning first=193 second=261 amount=-1 -kerning first=1096 second=226 amount=-1 -kerning first=216 second=198 amount=-2 -kerning first=96 second=210 amount=-2 -kerning first=1171 second=368 amount=-2 -kerning first=236 second=338 amount=-2 -kerning first=239 second=100 amount=-1 -kerning first=356 second=941 amount=-3 -kerning first=113 second=1116 amount=2 -kerning first=379 second=1241 amount=-1 -kerning first=169 second=968 amount=-1 -kerning first=172 second=277 amount=-1 -kerning first=287 second=199 amount=-2 -kerning first=8224 second=357 amount=-1 +kerning first=8221 second=941 amount=-1 +kerning first=8221 second=945 amount=-1 +kerning first=8221 second=949 amount=-1 +kerning first=8221 second=959 amount=-1 +kerning first=8221 second=962 amount=-1 +kerning first=8221 second=963 amount=-1 +kerning first=8221 second=966 amount=-1 +kerning first=8221 second=972 amount=-1 +kerning first=8221 second=1032 amount=-4 +kerning first=8221 second=1033 amount=-3 +kerning first=8221 second=1040 amount=-3 +kerning first=8221 second=1044 amount=-3 +kerning first=8221 second=1051 amount=-3 +kerning first=8221 second=1072 amount=-1 +kerning first=8221 second=1077 amount=-1 +kerning first=8221 second=1086 amount=-1 +kerning first=8221 second=1089 amount=-1 +kerning first=8221 second=1092 amount=-1 +kerning first=8221 second=1104 amount=-1 +kerning first=8221 second=1105 amount=-1 +kerning first=8221 second=1108 amount=-1 +kerning first=8221 second=1109 amount=-1 +kerning first=8221 second=1195 amount=-1 +kerning first=8221 second=1241 amount=-1 +kerning first=8221 second=1257 amount=-1 +kerning first=8221 second=1298 amount=-3 +kerning first=8221 second=8218 amount=-1 +kerning first=8221 second=8222 amount=-1 +kerning first=8221 second=8230 amount=-1 +kerning first=8222 second=34 amount=-1 +kerning first=8222 second=39 amount=-1 +kerning first=8222 second=45 amount=-1 +kerning first=8222 second=48 amount=-1 +kerning first=8222 second=49 amount=-4 +kerning first=8222 second=51 amount=-1 +kerning first=8222 second=52 amount=-1 +kerning first=8222 second=53 amount=-1 +kerning first=8222 second=54 amount=-1 +kerning first=8222 second=55 amount=-1 +kerning first=8222 second=56 amount=-1 +kerning first=8222 second=67 amount=-1 +kerning first=8222 second=71 amount=-1 +kerning first=8222 second=79 amount=-1 +kerning first=8222 second=81 amount=-1 +kerning first=8222 second=84 amount=-5 +kerning first=8222 second=85 amount=-1 +kerning first=8222 second=86 amount=-4 +kerning first=8222 second=87 amount=-3 +kerning first=8222 second=89 amount=-4 +kerning first=8222 second=102 amount=-2 +kerning first=8222 second=103 amount=-1 +kerning first=8222 second=106 amount=2 +kerning first=8222 second=116 amount=-1 +kerning first=8222 second=117 amount=-1 +kerning first=8222 second=118 amount=-2 +kerning first=8222 second=119 amount=-2 +kerning first=8222 second=121 amount=-1 +kerning first=8222 second=173 amount=-1 +kerning first=8222 second=199 amount=-1 +kerning first=8222 second=210 amount=-1 +kerning first=8222 second=211 amount=-1 +kerning first=8222 second=212 amount=-1 +kerning first=8222 second=213 amount=-1 +kerning first=8222 second=214 amount=-1 +kerning first=8222 second=216 amount=-1 +kerning first=8222 second=217 amount=-1 +kerning first=8222 second=218 amount=-1 +kerning first=8222 second=219 amount=-1 +kerning first=8222 second=220 amount=-1 +kerning first=8222 second=221 amount=-4 +kerning first=8222 second=249 amount=-1 +kerning first=8222 second=250 amount=-1 +kerning first=8222 second=251 amount=-1 +kerning first=8222 second=252 amount=-1 +kerning first=8222 second=253 amount=-1 +kerning first=8222 second=262 amount=-1 +kerning first=8222 second=266 amount=-1 +kerning first=8222 second=268 amount=-1 +kerning first=8222 second=286 amount=-1 +kerning first=8222 second=287 amount=-1 +kerning first=8222 second=288 amount=-1 +kerning first=8222 second=289 amount=-1 +kerning first=8222 second=290 amount=-1 +kerning first=8222 second=291 amount=-1 +kerning first=8222 second=332 amount=-1 +kerning first=8222 second=334 amount=-1 +kerning first=8222 second=336 amount=-1 +kerning first=8222 second=338 amount=-1 +kerning first=8222 second=354 amount=-5 +kerning first=8222 second=355 amount=-1 +kerning first=8222 second=356 amount=-5 +kerning first=8222 second=357 amount=-1 +kerning first=8222 second=359 amount=-1 +kerning first=8222 second=360 amount=-1 +kerning first=8222 second=361 amount=-1 +kerning first=8222 second=362 amount=-1 +kerning first=8222 second=363 amount=-1 +kerning first=8222 second=364 amount=-1 +kerning first=8222 second=365 amount=-1 +kerning first=8222 second=366 amount=-1 +kerning first=8222 second=367 amount=-1 +kerning first=8222 second=368 amount=-1 +kerning first=8222 second=369 amount=-1 +kerning first=8222 second=370 amount=-1 +kerning first=8222 second=371 amount=-1 +kerning first=8222 second=372 amount=-3 +kerning first=8222 second=373 amount=-2 +kerning first=8222 second=374 amount=-4 +kerning first=8222 second=375 amount=-1 +kerning first=8222 second=376 amount=-4 +kerning first=8222 second=920 amount=-1 +kerning first=8222 second=927 amount=-1 +kerning first=8222 second=932 amount=-5 +kerning first=8222 second=933 amount=-4 +kerning first=8222 second=939 amount=-4 +kerning first=8222 second=947 amount=-2 +kerning first=8222 second=957 amount=-2 +kerning first=8222 second=964 amount=-3 +kerning first=8222 second=965 amount=-1 +kerning first=8222 second=968 amount=-1 +kerning first=8222 second=973 amount=-1 +kerning first=8222 second=1026 amount=-5 +kerning first=8222 second=1028 amount=-1 +kerning first=8222 second=1035 amount=-5 +kerning first=8222 second=1038 amount=-1 +kerning first=8222 second=1054 amount=-1 +kerning first=8222 second=1057 amount=-1 +kerning first=8222 second=1058 amount=-5 +kerning first=8222 second=1059 amount=-1 +kerning first=8222 second=1063 amount=-3 +kerning first=8222 second=1066 amount=-5 +kerning first=8222 second=1069 amount=-1 +kerning first=8222 second=1090 amount=-3 +kerning first=8222 second=1091 amount=-1 +kerning first=8222 second=1098 amount=-3 +kerning first=8222 second=1112 amount=2 +kerning first=8222 second=1118 amount=-1 +kerning first=8222 second=1176 amount=-1 +kerning first=8222 second=1184 amount=-5 +kerning first=8222 second=1185 amount=-3 +kerning first=8222 second=1194 amount=-1 +kerning first=8222 second=1198 amount=-4 +kerning first=8222 second=1199 amount=-2 +kerning first=8222 second=1240 amount=-1 +kerning first=8222 second=1256 amount=-1 +kerning first=8222 second=1262 amount=-1 +kerning first=8222 second=1263 amount=-1 +kerning first=8222 second=8211 amount=-1 +kerning first=8222 second=8212 amount=-1 +kerning first=8222 second=8216 amount=-1 +kerning first=8222 second=8217 amount=-1 +kerning first=8222 second=8220 amount=-1 +kerning first=8222 second=8221 amount=-1 +kerning first=8230 second=34 amount=-1 +kerning first=8230 second=39 amount=-1 +kerning first=8230 second=45 amount=-1 +kerning first=8230 second=48 amount=-1 +kerning first=8230 second=49 amount=-4 +kerning first=8230 second=51 amount=-1 +kerning first=8230 second=52 amount=-1 +kerning first=8230 second=53 amount=-1 +kerning first=8230 second=54 amount=-1 +kerning first=8230 second=55 amount=-1 +kerning first=8230 second=56 amount=-1 +kerning first=8230 second=67 amount=-1 +kerning first=8230 second=71 amount=-1 +kerning first=8230 second=79 amount=-1 +kerning first=8230 second=81 amount=-1 +kerning first=8230 second=84 amount=-5 +kerning first=8230 second=85 amount=-1 +kerning first=8230 second=86 amount=-4 +kerning first=8230 second=87 amount=-3 +kerning first=8230 second=89 amount=-4 +kerning first=8230 second=102 amount=-2 +kerning first=8230 second=103 amount=-1 +kerning first=8230 second=106 amount=2 +kerning first=8230 second=116 amount=-1 kerning first=8230 second=117 amount=-1 -kerning first=51 second=1035 amount=-5 -kerning first=54 second=291 amount=-1 -kerning first=197 second=211 amount=-2 -kerning first=306 second=1098 amount=-3 -kerning first=315 second=101 amount=-1 -kerning first=311 second=339 amount=-2 -kerning first=335 second=955 amount=-1 -kerning first=338 second=263 amount=-1 -kerning first=1174 second=1066 amount=-2 -kerning first=1298 second=240 amount=-1 -kerning first=1035 second=252 amount=-1 -kerning first=177 second=224 amount=-1 -kerning first=288 second=354 amount=-1 -kerning first=8260 second=67 amount=-2 -kerning first=195 second=1184 amount=-5 -kerning first=198 second=366 amount=-2 -kerning first=316 second=279 amount=-1 -kerning first=8363 second=229 amount=-1 -kerning first=224 second=63 amount=-2 -kerning first=95 second=8217 amount=-3 -kerning first=936 second=103 amount=-1 -kerning first=367 second=115 amount=-1 -kerning first=261 second=1185 amount=-1 -kerning first=36 second=940 amount=-1 -kerning first=289 second=1038 amount=-2 +kerning first=8230 second=118 amount=-2 +kerning first=8230 second=119 amount=-2 +kerning first=8230 second=121 amount=-1 +kerning first=8230 second=173 amount=-1 +kerning first=8230 second=199 amount=-1 +kerning first=8230 second=210 amount=-1 +kerning first=8230 second=211 amount=-1 +kerning first=8230 second=212 amount=-1 +kerning first=8230 second=213 amount=-1 +kerning first=8230 second=214 amount=-1 +kerning first=8230 second=216 amount=-1 +kerning first=8230 second=217 amount=-1 +kerning first=8230 second=218 amount=-1 +kerning first=8230 second=219 amount=-1 +kerning first=8230 second=220 amount=-1 +kerning first=8230 second=221 amount=-4 +kerning first=8230 second=249 amount=-1 +kerning first=8230 second=250 amount=-1 +kerning first=8230 second=251 amount=-1 +kerning first=8230 second=252 amount=-1 +kerning first=8230 second=253 amount=-1 +kerning first=8230 second=262 amount=-1 +kerning first=8230 second=266 amount=-1 +kerning first=8230 second=268 amount=-1 +kerning first=8230 second=286 amount=-1 +kerning first=8230 second=287 amount=-1 +kerning first=8230 second=288 amount=-1 +kerning first=8230 second=289 amount=-1 +kerning first=8230 second=290 amount=-1 +kerning first=8230 second=291 amount=-1 +kerning first=8230 second=332 amount=-1 +kerning first=8230 second=334 amount=-1 +kerning first=8230 second=336 amount=-1 +kerning first=8230 second=338 amount=-1 +kerning first=8230 second=354 amount=-5 +kerning first=8230 second=355 amount=-1 +kerning first=8230 second=356 amount=-5 +kerning first=8230 second=357 amount=-1 +kerning first=8230 second=359 amount=-1 +kerning first=8230 second=360 amount=-1 +kerning first=8230 second=361 amount=-1 +kerning first=8230 second=362 amount=-1 +kerning first=8230 second=363 amount=-1 +kerning first=8230 second=364 amount=-1 +kerning first=8230 second=365 amount=-1 +kerning first=8230 second=366 amount=-1 +kerning first=8230 second=367 amount=-1 +kerning first=8230 second=368 amount=-1 +kerning first=8230 second=369 amount=-1 +kerning first=8230 second=370 amount=-1 +kerning first=8230 second=371 amount=-1 +kerning first=8230 second=372 amount=-3 +kerning first=8230 second=373 amount=-2 +kerning first=8230 second=374 amount=-4 +kerning first=8230 second=375 amount=-1 +kerning first=8230 second=376 amount=-4 +kerning first=8230 second=920 amount=-1 +kerning first=8230 second=927 amount=-1 +kerning first=8230 second=932 amount=-5 +kerning first=8230 second=933 amount=-4 +kerning first=8230 second=939 amount=-4 +kerning first=8230 second=947 amount=-2 +kerning first=8230 second=957 amount=-2 +kerning first=8230 second=964 amount=-3 +kerning first=8230 second=965 amount=-1 +kerning first=8230 second=968 amount=-1 +kerning first=8230 second=973 amount=-1 +kerning first=8230 second=1026 amount=-5 +kerning first=8230 second=1028 amount=-1 +kerning first=8230 second=1035 amount=-5 +kerning first=8230 second=1038 amount=-1 +kerning first=8230 second=1054 amount=-1 +kerning first=8230 second=1057 amount=-1 +kerning first=8230 second=1058 amount=-5 +kerning first=8230 second=1059 amount=-1 +kerning first=8230 second=1063 amount=-3 +kerning first=8230 second=1066 amount=-5 +kerning first=8230 second=1069 amount=-1 +kerning first=8230 second=1090 amount=-3 +kerning first=8230 second=1091 amount=-1 +kerning first=8230 second=1098 amount=-3 +kerning first=8230 second=1112 amount=2 +kerning first=8230 second=1118 amount=-1 +kerning first=8230 second=1176 amount=-1 +kerning first=8230 second=1184 amount=-5 +kerning first=8230 second=1185 amount=-3 +kerning first=8230 second=1194 amount=-1 +kerning first=8230 second=1198 amount=-4 +kerning first=8230 second=1199 amount=-2 +kerning first=8230 second=1240 amount=-1 +kerning first=8230 second=1256 amount=-1 +kerning first=8230 second=1262 amount=-1 +kerning first=8230 second=1263 amount=-1 +kerning first=8230 second=8211 amount=-1 +kerning first=8230 second=8212 amount=-1 +kerning first=8230 second=8216 amount=-1 +kerning first=8230 second=8217 amount=-1 +kerning first=8230 second=8220 amount=-1 +kerning first=8230 second=8221 amount=-1 +kerning first=8249 second=65 amount=-1 +kerning first=8249 second=84 amount=-1 +kerning first=8249 second=88 amount=-1 +kerning first=8249 second=89 amount=-2 +kerning first=8249 second=120 amount=-1 +kerning first=8249 second=193 amount=-1 +kerning first=8249 second=194 amount=-1 +kerning first=8249 second=196 amount=-1 +kerning first=8249 second=197 amount=-1 +kerning first=8249 second=198 amount=-1 +kerning first=8249 second=221 amount=-2 +kerning first=8249 second=256 amount=-1 +kerning first=8249 second=258 amount=-1 +kerning first=8249 second=260 amount=-1 +kerning first=8249 second=354 amount=-1 +kerning first=8249 second=356 amount=-1 +kerning first=8249 second=374 amount=-2 +kerning first=8249 second=376 amount=-2 +kerning first=8249 second=913 amount=-1 +kerning first=8249 second=916 amount=-1 kerning first=8249 second=923 amount=-1 -kerning first=8361 second=1262 amount=-2 -kerning first=8364 second=1240 amount=-2 -kerning first=322 second=226 amount=-1 -kerning first=900 second=116 amount=-1 -kerning first=931 second=972 amount=-1 -kerning first=102 second=941 amount=-1 -kerning first=105 second=250 amount=-1 -kerning first=245 second=380 amount=-1 -kerning first=125 second=1241 amount=-1 -kerning first=161 second=187 amount=-1 -kerning first=43 second=199 amount=-2 -kerning first=1041 second=357 amount=-1 -kerning first=179 second=1079 amount=-1 -kerning first=186 second=89 amount=-5 -kerning first=60 second=1098 amount=-3 -kerning first=63 second=339 amount=-1 -kerning first=206 second=251 amount=-1 -kerning first=8370 second=332 amount=-2 -kerning first=86 second=263 amount=-1 -kerning first=89 second=38 amount=-2 -kerning first=1206 second=118 amount=-2 -kerning first=372 second=240 amount=-3 -kerning first=963 second=1194 amount=-2 -kerning first=271 second=943 amount=-1 -kerning first=1241 second=382 amount=-1 -kerning first=41 second=1118 amount=-1 -kerning first=47 second=114 amount=-1 -kerning first=44 second=354 amount=-5 -kerning first=190 second=39 amount=-3 -kerning first=64 second=970 amount=-1 -kerning first=1084 second=229 amount=-1 -kerning first=8372 second=963 amount=-1 -kerning first=8378 second=271 amount=-1 -kerning first=902 second=920 amount=-2 -kerning first=90 second=213 amount=-1 -kerning first=1117 second=371 amount=-1 -kerning first=113 second=115 amount=-1 -kerning first=253 second=267 amount=-1 -kerning first=1062 second=242 amount=-1 -kerning first=191 second=214 amount=-2 -kerning first=300 second=1101 amount=-1 -kerning first=1081 second=1262 amount=-2 -kerning first=1085 second=1240 amount=-2 -kerning first=214 second=116 amount=-1 -kerning first=211 second=356 amount=-2 -kerning first=91 second=368 amount=-2 -kerning first=1118 second=1069 amount=-1 -kerning first=1174 second=81 amount=-1 -kerning first=1223 second=243 amount=-1 -kerning first=374 second=1102 amount=-3 -kerning first=170 second=227 amount=-1 -kerning first=280 second=357 amount=-1 -kerning first=192 second=369 amount=-1 -kerning first=304 second=973 amount=-1 -kerning first=1095 second=332 amount=-2 -kerning first=92 second=1066 amount=-5 -kerning first=238 second=228 amount=-1 -kerning first=361 second=118 amount=-4 -kerning first=950 second=962 amount=-1 -kerning first=118 second=240 amount=-1 -kerning first=1262 second=193 amount=-2 -kerning first=255 second=1194 amount=-2 -kerning first=258 second=370 amount=-2 -kerning first=381 second=283 amount=-1 -kerning first=168 second=1256 amount=-2 -kerning first=289 second=67 amount=-2 -kerning first=8226 second=245 amount=-1 -kerning first=314 second=229 amount=-1 -kerning first=1096 second=963 amount=-1 -kerning first=1099 second=271 amount=-1 -kerning first=1102 second=44 amount=-1 -kerning first=915 second=1026 amount=-5 -kerning first=923 second=286 amount=-2 -kerning first=236 second=1257 amount=-1 -kerning first=958 second=218 amount=-2 -kerning first=1263 second=346 amount=-1 -kerning first=54 second=1101 amount=-1 -kerning first=1071 second=287 amount=-1 -kerning first=197 second=945 amount=-1 -kerning first=315 second=1240 amount=-1 -kerning first=8365 second=97 amount=-1 -kerning first=80 second=268 amount=-2 -kerning first=1103 second=219 amount=-2 -kerning first=338 second=1069 amount=-1 -kerning first=934 second=231 amount=-1 -kerning first=1177 second=1175 amount=-1 -kerning first=1184 second=361 amount=-1 -kerning first=960 second=373 amount=-4 -kerning first=1298 second=1028 amount=-2 -kerning first=38 second=357 amount=-1 -kerning first=41 second=117 amount=-1 -kerning first=180 second=269 amount=-1 -kerning first=8260 second=350 amount=-1 -kerning first=58 second=973 amount=-1 -kerning first=1076 second=232 amount=-1 -kerning first=321 second=332 amount=-2 -kerning first=8363 second=966 amount=-1 -kerning first=8366 second=275 amount=-1 -kerning first=84 second=216 amount=-1 -kerning first=1101 second=1203 amount=-2 -kerning first=227 second=106 amount=1 -kerning first=1202 second=71 amount=-1 -kerning first=370 second=193 amount=-2 -kerning first=967 second=83 amount=-1 -kerning first=160 second=283 amount=-1 -kerning first=39 second=1044 amount=-3 -kerning first=1046 second=245 amount=-2 -kerning first=185 second=217 amount=-2 -kerning first=65 second=229 amount=-1 -kerning first=205 second=359 amount=-1 -kerning first=322 second=963 amount=-1 -kerning first=325 second=271 amount=-1 -kerning first=1118 second=84 amount=-5 -kerning first=942 second=334 amount=-2 -kerning first=1203 second=246 amount=-1 -kerning first=251 second=218 amount=-2 -kerning first=371 second=346 amount=-1 -kerning first=164 second=230 amount=-1 -kerning first=270 second=1174 amount=-3 -kerning first=274 second=360 amount=-2 -kerning first=277 second=120 amount=-2 -kerning first=183 second=947 amount=-4 -kerning first=186 second=372 amount=-5 -kerning first=301 second=287 amount=-1 -kerning first=63 second=1262 amount=-2 -kerning first=1083 second=335 amount=-1 -kerning first=1087 second=97 amount=-1 -kerning first=330 second=219 amount=-2 -kerning first=901 second=1108 amount=-1 -kerning first=904 second=347 amount=-1 -kerning first=86 second=1069 amount=-1 -kerning first=92 second=81 amount=-2 -kerning first=1119 second=259 amount=-1 -kerning first=1170 second=34 amount=-3 -kerning first=347 second=1175 amount=-1 -kerning first=252 second=373 amount=-4 -kerning first=375 second=288 amount=-2 -kerning first=372 second=1028 amount=-2 +kerning first=8249 second=932 amount=-1 +kerning first=8249 second=933 amount=-2 +kerning first=8249 second=935 amount=-1 +kerning first=8249 second=939 amount=-2 +kerning first=8249 second=1026 amount=-1 +kerning first=8249 second=1033 amount=-1 +kerning first=8249 second=1035 amount=-1 +kerning first=8249 second=1040 amount=-1 +kerning first=8249 second=1044 amount=-1 +kerning first=8249 second=1046 amount=-1 +kerning first=8249 second=1051 amount=-1 +kerning first=8249 second=1058 amount=-1 +kerning first=8249 second=1061 amount=-1 +kerning first=8249 second=1066 amount=-1 +kerning first=8249 second=1078 amount=-1 +kerning first=8249 second=1093 amount=-1 +kerning first=8249 second=1174 amount=-1 +kerning first=8249 second=1175 amount=-1 +kerning first=8249 second=1184 amount=-1 +kerning first=8249 second=1198 amount=-2 +kerning first=8249 second=1202 amount=-1 +kerning first=8249 second=1203 amount=-1 +kerning first=8249 second=1298 amount=-1 +kerning first=8250 second=65 amount=-3 +kerning first=8250 second=83 amount=-1 +kerning first=8250 second=84 amount=-3 +kerning first=8250 second=86 amount=-2 +kerning first=8250 second=87 amount=-3 +kerning first=8250 second=88 amount=-3 +kerning first=8250 second=89 amount=-3 +kerning first=8250 second=106 amount=1 +kerning first=8250 second=120 amount=-2 +kerning first=8250 second=122 amount=-1 +kerning first=8250 second=193 amount=-3 +kerning first=8250 second=194 amount=-3 +kerning first=8250 second=196 amount=-3 +kerning first=8250 second=197 amount=-3 +kerning first=8250 second=198 amount=-3 +kerning first=8250 second=221 amount=-3 +kerning first=8250 second=256 amount=-3 +kerning first=8250 second=258 amount=-3 +kerning first=8250 second=260 amount=-3 +kerning first=8250 second=346 amount=-1 +kerning first=8250 second=350 amount=-1 +kerning first=8250 second=352 amount=-1 +kerning first=8250 second=354 amount=-3 +kerning first=8250 second=356 amount=-3 +kerning first=8250 second=372 amount=-3 +kerning first=8250 second=374 amount=-3 +kerning first=8250 second=376 amount=-3 +kerning first=8250 second=378 amount=-1 +kerning first=8250 second=380 amount=-1 +kerning first=8250 second=382 amount=-1 +kerning first=8250 second=913 amount=-3 +kerning first=8250 second=916 amount=-3 +kerning first=8250 second=923 amount=-3 +kerning first=8250 second=932 amount=-3 +kerning first=8250 second=933 amount=-3 +kerning first=8250 second=935 amount=-3 +kerning first=8250 second=939 amount=-3 +kerning first=8250 second=1026 amount=-3 +kerning first=8250 second=1029 amount=-1 +kerning first=8250 second=1033 amount=-2 +kerning first=8250 second=1035 amount=-3 +kerning first=8250 second=1040 amount=-3 +kerning first=8250 second=1044 amount=-2 +kerning first=8250 second=1046 amount=-3 +kerning first=8250 second=1051 amount=-2 +kerning first=8250 second=1058 amount=-3 +kerning first=8250 second=1061 amount=-3 +kerning first=8250 second=1066 amount=-3 +kerning first=8250 second=1071 amount=-1 +kerning first=8250 second=1078 amount=-2 +kerning first=8250 second=1093 amount=-2 +kerning first=8250 second=1112 amount=1 +kerning first=8250 second=1174 amount=-3 +kerning first=8250 second=1175 amount=-2 +kerning first=8250 second=1184 amount=-3 +kerning first=8250 second=1198 amount=-3 +kerning first=8250 second=1202 amount=-3 +kerning first=8250 second=1203 amount=-2 +kerning first=8250 second=1298 amount=-2 diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/font/coolvetica.png b/wizard-client/wizard-client-libgdx/core/src/main/resources/font/coolvetica.png index 5298f6b..2de5dc0 100644 Binary files a/wizard-client/wizard-client-libgdx/core/src/main/resources/font/coolvetica.png and b/wizard-client/wizard-client-libgdx/core/src/main/resources/font/coolvetica.png differ diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/uiskin.json b/wizard-client/wizard-client-libgdx/core/src/main/resources/uiskin.json index 4f8b38e..a9754b5 100644 --- a/wizard-client/wizard-client-libgdx/core/src/main/resources/uiskin.json +++ b/wizard-client/wizard-client-libgdx/core/src/main/resources/uiskin.json @@ -16,6 +16,7 @@ "red": { "a": 1.0, "b": 0.0, "g": 0.0, "r": 1.0 }, "black": { "a": 1.0, "b": 0.0, "g": 0.0, "r": 0.0 }, "gold": { "a": 1.0, "b": 0.318, "g": 0.753, "r": 0.89 }, + "darkened_gold": { "a": 1.0, "b": 0.176, "g": 0.659, "r": 0.845 }, "dark_gold": { "a": 1.0, "b": 0.034, "g": 0.565, "r": 0.80 }, "darker_gold": { "a": 1.0, "b": 0.191, "g": 0.452, "r": 0.534 }, "light_gray": { "a": 1.0, "b": 0.6, "g": 0.6, "r": 0.6} @@ -47,6 +48,7 @@ "font": "enchanted", "fontColor": "gold", "downFontColor": "dark_gold", + "overFontColor": "darkened_gold", "disabledFontColor" : "darker_gold" }, "simple": { @@ -192,7 +194,7 @@ "default": { "minus": "tree-minus", "plus": "tree-plus", - "selection": "default-select-selection" + "selection": "selection" } }, "TextTooltipStyle": {