From bb16c5fa03e22aa20b160653104ee3aa506f5703 Mon Sep 17 00:00:00 2001 From: Jonah Bauer Date: Fri, 19 Nov 2021 17:55:46 +0100 Subject: [PATCH] improved libGDX client performance added automatic texture packing --- buildSrc/build.gradle.kts | 1 + .../wizard/build/TexturePackerTask.kt | 73 + .../wizard-client-libgdx/build.gradle.kts | 2 +- .../core/build.gradle.kts | 16 + .../wizard/client/libgdx/WizardGame.java | 42 +- .../libgdx/actors/AutoFocusScrollPane.java | 43 + .../client/libgdx/screens/ConnectScreen.java | 67 + .../libgdx/screens/CreateGameScreen.java | 60 +- .../client/libgdx/screens/LobbyScreen.java | 155 + .../client/libgdx/screens/MainMenuScreen.java | 59 +- .../client/libgdx/screens/MenuScreen.java | 162 +- .../client/libgdx/screens/ServerScreen.java | 80 - .../libgdx/screens/SessionListScreen.java | 93 - .../client/libgdx/screens/WaitingScreen.java | 135 +- .../src/main/resources/font/coolvetica.fnt | 485 + .../src/main/resources/font/coolvetica.png | Bin 0 -> 92390 bytes .../resources/{skin => }/font/coolvetica.ttf | Bin .../src/main/resources/font/enchanted.fnt | 344 + .../resources/{skin => }/font/enchanted.png | Bin .../resources/{skin => }/font/enchanted.ttf | Bin .../main/resources/i18n/messages.properties | 23 + .../resources/i18n/messages_de.properties | 23 + .../core/src/main/resources/skin/cursor.9.png | Bin 86 -> 0 bytes .../main/resources/skin/default-pane.9.png | Bin 93 -> 0 bytes .../main/resources/skin/font/coolvetica.fnt | 2084 -- .../main/resources/skin/font/coolvetica.png | Bin 13151 -> 0 bytes .../main/resources/skin/font/enchanted.fnt | 18442 ---------------- .../src/main/resources/skin/selection.png | Bin 922 -> 0 bytes .../src/main/resources/skin/textfield.9.png | Bin 252 -> 0 bytes .../core/src/main/resources/skin/uiskin.atlas | 201 - .../core/src/main/resources/skin/uiskin.png | Bin 28299 -> 0 bytes .../src/main/resources/{skin => }/uiskin.json | 83 +- .../menu}/background.png | Bin .../{resources => textures/menu}/ecke_lo.png | Bin .../{resources => textures/menu}/ecke_lu.png | Bin .../{resources => textures/menu}/ecke_ro.png | Bin .../{resources => textures/menu}/ecke_ru.png | Bin .../core/src/main/textures/menu/pack.json | 4 + .../{resources => textures/menu}/symbol0.png | Bin .../{resources => textures/menu}/symbol1.png | Bin .../{resources => textures/menu}/symbol2.png | Bin .../{resources => textures/menu}/symbol3.png | Bin .../{resources => textures/menu}/title.png | Bin .../skin => textures/uiskin}/check-off.png | Bin .../skin => textures/uiskin}/check-on.png | Bin .../core/src/main/textures/uiskin/cursor.png | Bin 0 -> 119 bytes .../core/src/main/textures/uiskin/debug.9.png | Bin 0 -> 155 bytes .../uiskin}/default-pane-noborder.9.png | Bin .../main/textures/uiskin/default-pane.9.png | Bin 0 -> 311 bytes .../uiskin}/default-rect-down.9.png | Bin .../uiskin}/default-rect-pad.9.png | Bin .../uiskin}/default-rect.9.png | Bin .../uiskin}/default-round-down.9.png | Bin .../uiskin}/default-round-large.9.png | Bin .../uiskin}/default-round.9.png | Bin .../uiskin}/default-scroll.9.png | Bin .../uiskin}/default-select-selection.9.png | Bin .../uiskin}/default-select.9.png | Bin .../uiskin}/default-slider-knob.png | Bin .../uiskin}/default-slider.9.png | Bin .../uiskin}/default-splitpane-vertical.9.png | Bin .../uiskin}/default-splitpane.9.png | Bin .../uiskin}/default-window.9.png | Bin .../skin => textures/uiskin}/pack.json | 0 .../src/main/textures/uiskin/selection.png | Bin 0 -> 119 bytes .../src/main/textures/uiskin/textfield.9.png | Bin 0 -> 241 bytes .../skin => textures/uiskin}/tree-minus.png | Bin .../skin => textures/uiskin}/tree-plus.png | Bin .../skin => textures/uiskin}/white.png | Bin .../libgdx/desktop/DesktopLauncher.java | 1 + 70 files changed, 1595 insertions(+), 21083 deletions(-) create mode 100644 buildSrc/src/main/kotlin/eu/jonahbauer/wizard/build/TexturePackerTask.kt create mode 100644 wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/actors/AutoFocusScrollPane.java create mode 100644 wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/ConnectScreen.java create mode 100644 wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/LobbyScreen.java delete mode 100644 wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/ServerScreen.java delete mode 100644 wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/SessionListScreen.java create mode 100644 wizard-client/wizard-client-libgdx/core/src/main/resources/font/coolvetica.fnt create mode 100644 wizard-client/wizard-client-libgdx/core/src/main/resources/font/coolvetica.png rename wizard-client/wizard-client-libgdx/core/src/main/resources/{skin => }/font/coolvetica.ttf (100%) create mode 100644 wizard-client/wizard-client-libgdx/core/src/main/resources/font/enchanted.fnt rename wizard-client/wizard-client-libgdx/core/src/main/resources/{skin => }/font/enchanted.png (100%) rename wizard-client/wizard-client-libgdx/core/src/main/resources/{skin => }/font/enchanted.ttf (100%) create mode 100644 wizard-client/wizard-client-libgdx/core/src/main/resources/i18n/messages.properties create mode 100644 wizard-client/wizard-client-libgdx/core/src/main/resources/i18n/messages_de.properties delete mode 100644 wizard-client/wizard-client-libgdx/core/src/main/resources/skin/cursor.9.png delete mode 100644 wizard-client/wizard-client-libgdx/core/src/main/resources/skin/default-pane.9.png delete mode 100644 wizard-client/wizard-client-libgdx/core/src/main/resources/skin/font/coolvetica.fnt delete mode 100644 wizard-client/wizard-client-libgdx/core/src/main/resources/skin/font/coolvetica.png delete mode 100644 wizard-client/wizard-client-libgdx/core/src/main/resources/skin/font/enchanted.fnt delete mode 100644 wizard-client/wizard-client-libgdx/core/src/main/resources/skin/selection.png delete mode 100644 wizard-client/wizard-client-libgdx/core/src/main/resources/skin/textfield.9.png delete mode 100644 wizard-client/wizard-client-libgdx/core/src/main/resources/skin/uiskin.atlas delete mode 100644 wizard-client/wizard-client-libgdx/core/src/main/resources/skin/uiskin.png rename wizard-client/wizard-client-libgdx/core/src/main/resources/{skin => }/uiskin.json (68%) rename wizard-client/wizard-client-libgdx/core/src/main/{resources => textures/menu}/background.png (100%) rename wizard-client/wizard-client-libgdx/core/src/main/{resources => textures/menu}/ecke_lo.png (100%) rename wizard-client/wizard-client-libgdx/core/src/main/{resources => textures/menu}/ecke_lu.png (100%) rename wizard-client/wizard-client-libgdx/core/src/main/{resources => textures/menu}/ecke_ro.png (100%) rename wizard-client/wizard-client-libgdx/core/src/main/{resources => textures/menu}/ecke_ru.png (100%) create mode 100644 wizard-client/wizard-client-libgdx/core/src/main/textures/menu/pack.json rename wizard-client/wizard-client-libgdx/core/src/main/{resources => textures/menu}/symbol0.png (100%) rename wizard-client/wizard-client-libgdx/core/src/main/{resources => textures/menu}/symbol1.png (100%) rename wizard-client/wizard-client-libgdx/core/src/main/{resources => textures/menu}/symbol2.png (100%) rename wizard-client/wizard-client-libgdx/core/src/main/{resources => textures/menu}/symbol3.png (100%) rename wizard-client/wizard-client-libgdx/core/src/main/{resources => textures/menu}/title.png (100%) rename wizard-client/wizard-client-libgdx/core/src/main/{resources/skin => textures/uiskin}/check-off.png (100%) rename wizard-client/wizard-client-libgdx/core/src/main/{resources/skin => textures/uiskin}/check-on.png (100%) create mode 100644 wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/cursor.png create mode 100644 wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/debug.9.png rename wizard-client/wizard-client-libgdx/core/src/main/{resources/skin => textures/uiskin}/default-pane-noborder.9.png (100%) create mode 100644 wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/default-pane.9.png rename wizard-client/wizard-client-libgdx/core/src/main/{resources/skin => textures/uiskin}/default-rect-down.9.png (100%) rename wizard-client/wizard-client-libgdx/core/src/main/{resources/skin => textures/uiskin}/default-rect-pad.9.png (100%) rename wizard-client/wizard-client-libgdx/core/src/main/{resources/skin => textures/uiskin}/default-rect.9.png (100%) rename wizard-client/wizard-client-libgdx/core/src/main/{resources/skin => textures/uiskin}/default-round-down.9.png (100%) rename wizard-client/wizard-client-libgdx/core/src/main/{resources/skin => textures/uiskin}/default-round-large.9.png (100%) rename wizard-client/wizard-client-libgdx/core/src/main/{resources/skin => textures/uiskin}/default-round.9.png (100%) rename wizard-client/wizard-client-libgdx/core/src/main/{resources/skin => textures/uiskin}/default-scroll.9.png (100%) rename wizard-client/wizard-client-libgdx/core/src/main/{resources/skin => textures/uiskin}/default-select-selection.9.png (100%) rename wizard-client/wizard-client-libgdx/core/src/main/{resources/skin => textures/uiskin}/default-select.9.png (100%) rename wizard-client/wizard-client-libgdx/core/src/main/{resources/skin => textures/uiskin}/default-slider-knob.png (100%) rename wizard-client/wizard-client-libgdx/core/src/main/{resources/skin => textures/uiskin}/default-slider.9.png (100%) rename wizard-client/wizard-client-libgdx/core/src/main/{resources/skin => textures/uiskin}/default-splitpane-vertical.9.png (100%) rename wizard-client/wizard-client-libgdx/core/src/main/{resources/skin => textures/uiskin}/default-splitpane.9.png (100%) rename wizard-client/wizard-client-libgdx/core/src/main/{resources/skin => textures/uiskin}/default-window.9.png (100%) rename wizard-client/wizard-client-libgdx/core/src/main/{resources/skin => textures/uiskin}/pack.json (100%) create mode 100644 wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/selection.png create mode 100644 wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/textfield.9.png rename wizard-client/wizard-client-libgdx/core/src/main/{resources/skin => textures/uiskin}/tree-minus.png (100%) rename wizard-client/wizard-client-libgdx/core/src/main/{resources/skin => textures/uiskin}/tree-plus.png (100%) rename wizard-client/wizard-client-libgdx/core/src/main/{resources/skin => textures/uiskin}/white.png (100%) diff --git a/buildSrc/build.gradle.kts b/buildSrc/build.gradle.kts index 6488c73..3bab92d 100644 --- a/buildSrc/build.gradle.kts +++ b/buildSrc/build.gradle.kts @@ -7,5 +7,6 @@ repositories { } dependencies { + implementation("com.badlogicgames.gdx:gdx-tools:1.10.0") implementation(gradleApi()) } \ No newline at end of file diff --git a/buildSrc/src/main/kotlin/eu/jonahbauer/wizard/build/TexturePackerTask.kt b/buildSrc/src/main/kotlin/eu/jonahbauer/wizard/build/TexturePackerTask.kt new file mode 100644 index 0000000..575b4ab --- /dev/null +++ b/buildSrc/src/main/kotlin/eu/jonahbauer/wizard/build/TexturePackerTask.kt @@ -0,0 +1,73 @@ +import com.badlogic.gdx.tools.texturepacker.TexturePacker +import org.gradle.api.DefaultTask +import org.gradle.api.file.DirectoryProperty +import org.gradle.api.tasks.InputDirectory +import org.gradle.api.tasks.OutputDirectory +import org.gradle.api.tasks.TaskAction +import org.gradle.work.Incremental +import org.gradle.work.InputChanges +import java.io.File +import java.util.* + +import java.util.regex.Pattern +import kotlin.collections.HashSet + +abstract class TexturePackerTask : DefaultTask() { + @get:Incremental + @get:InputDirectory + abstract val input : DirectoryProperty + + @get:OutputDirectory + abstract val resourceOutput : DirectoryProperty + + @get:OutputDirectory + abstract val generatedSourceOutput : DirectoryProperty + + @TaskAction + fun pack(changes: InputChanges) { + val dirs = HashSet() + val inputDir = input.asFile.get() + + if (changes.isIncremental) { + val root = inputDir.toPath() + for (change in changes.getFileChanges(input)) { + if (!change.file.isFile) continue + dirs.add(root.resolve(root.relativize(change.file.toPath()).subpath(0, 1)).toFile()) + } + } else { + inputDir.listFiles()?.filter { it.isDirectory }?.forEach { dirs.add(it) } + } + + val outputDir = resourceOutput.get().asFile + for (dir in dirs) { + TexturePacker.process(dir.path, outputDir.path, dir.name) + + val atlas = File(outputDir, dir.name + ".atlas") + if (atlas.exists()) { + val name = dir.name[0].uppercaseChar() + dir.name.substring(1) + "Atlas" + val path = outputDir.toPath().relativize(atlas.toPath()).toString() + + val builder = StringBuilder() + builder.append(""" + package eu.jonahbauer.wizard.client.libgdx; + public class $name { + public static final String ${'$'}PATH = "$path"; + """.trimIndent()) + + val content = atlas.readText(Charsets.UTF_8) + val matcher = Pattern.compile("(?m)^([^:]*?)\$\\n {2}").matcher(content) + while (matcher.find()) { + val texture = matcher.group(1) + val field = texture.replace("-", "_").replace("/", "_").uppercase(Locale.ROOT) + builder.append(" public static final String $field = \"$texture\";\n") + } + + builder.append("}\n") + + val out = generatedSourceOutput.file("eu/jonahbauer/wizard/client/libgdx/${name}.java").get().asFile + out.parentFile.mkdirs() + out.writeText(builder.toString(), Charsets.UTF_8) + } + } + } +} \ No newline at end of file diff --git a/wizard-client/wizard-client-libgdx/build.gradle.kts b/wizard-client/wizard-client-libgdx/build.gradle.kts index be4cca3..636d257 100644 --- a/wizard-client/wizard-client-libgdx/build.gradle.kts +++ b/wizard-client/wizard-client-libgdx/build.gradle.kts @@ -14,7 +14,7 @@ project(":wizard-client:wizard-client-libgdx:core") { apply(plugin = "java-library") dependencies { - api( LibGDX.api) + api(LibGDX.api) api(LibGDX.box2d) } } diff --git a/wizard-client/wizard-client-libgdx/core/build.gradle.kts b/wizard-client/wizard-client-libgdx/core/build.gradle.kts index 86f14a0..7f25f31 100644 --- a/wizard-client/wizard-client-libgdx/core/build.gradle.kts +++ b/wizard-client/wizard-client-libgdx/core/build.gradle.kts @@ -4,3 +4,19 @@ val texturePackerGeneratedSources = "$buildDir/generated/sources/texturePacker/j sourceSets.main.get().java.srcDir(texturePackerGeneratedSources) sourceSets.main.get().resources.srcDir(texturePackerResources) + +tasks { + val packTextures = register("packTextures") { + input.set(file(texturePackerSource)) + resourceOutput.set(file(texturePackerResources)) + generatedSourceOutput.set(file(texturePackerGeneratedSources)) + } + + processResources { + dependsOn(packTextures) + } + + compileJava { + dependsOn(packTextures) + } +} \ No newline at end of file diff --git a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/WizardGame.java b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/WizardGame.java index 6793668..d880c43 100644 --- a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/WizardGame.java +++ b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/WizardGame.java @@ -2,20 +2,32 @@ package eu.jonahbauer.wizard.client.libgdx; import com.badlogic.gdx.Game; import com.badlogic.gdx.Gdx; +import com.badlogic.gdx.Graphics; +import com.badlogic.gdx.Input; import com.badlogic.gdx.audio.Music; import com.badlogic.gdx.graphics.Pixmap; import com.badlogic.gdx.graphics.g2d.SpriteBatch; +import com.badlogic.gdx.utils.I18NBundle; import eu.jonahbauer.wizard.client.libgdx.screens.MainMenuScreen; +import java.util.Locale; + public class WizardGame extends Game { + public static final boolean DEBUG = false; public static final int WIDTH = 1920; public static final int HEIGHT = 1080; public SpriteBatch batch; + public I18NBundle messages; + + private boolean toggle; + + private int oldHeight, oldWidth; @Override - public void create () { + public void create() { batch = new SpriteBatch(); + messages = I18NBundle.createBundle(Gdx.files.internal("i18n/messages"), Locale.getDefault()); // background music Music backgroundMusic = Gdx.audio.newMusic(Gdx.files.internal("background.wav")); @@ -30,8 +42,34 @@ public class WizardGame extends Game { this.setScreen(new MainMenuScreen(this)); } - + + @Override + public void render() { + super.render(); + + // alt + enter shortcut for fullscreen + var enter = Gdx.input.isKeyPressed(Input.Keys.ENTER); + var alt = (Gdx.input.isKeyPressed(Input.Keys.ALT_LEFT) || Gdx.input.isKeyPressed(Input.Keys.ALT_RIGHT)); + var toggle = enter && alt; + + if (toggle && !this.toggle) { + this.toggle = true; + var fullscreen = Gdx.graphics.isFullscreen(); + Graphics.DisplayMode displayMode = Gdx.graphics.getDisplayMode(); + if (fullscreen) { + Gdx.graphics.setWindowedMode(oldWidth, oldHeight); + } else { + oldWidth = Gdx.graphics.getWidth(); + oldHeight = Gdx.graphics.getHeight(); + Gdx.graphics.setFullscreenMode(displayMode); + } + } else if (!toggle) { + this.toggle = false; + } + } + @Override public void dispose () { + batch.dispose(); } } diff --git a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/actors/AutoFocusScrollPane.java b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/actors/AutoFocusScrollPane.java new file mode 100644 index 0000000..6027a2d --- /dev/null +++ b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/actors/AutoFocusScrollPane.java @@ -0,0 +1,43 @@ +package eu.jonahbauer.wizard.client.libgdx.actors; + +import com.badlogic.gdx.scenes.scene2d.Actor; +import com.badlogic.gdx.scenes.scene2d.InputEvent; +import com.badlogic.gdx.scenes.scene2d.InputListener; +import com.badlogic.gdx.scenes.scene2d.ui.ScrollPane; +import com.badlogic.gdx.scenes.scene2d.ui.Skin; + +@SuppressWarnings("unused") +public class AutoFocusScrollPane extends ScrollPane { + + public AutoFocusScrollPane(Actor widget) { + super(widget); + init(); + } + + public AutoFocusScrollPane(Actor widget, Skin skin) { + super(widget, skin); + init(); + } + + public AutoFocusScrollPane(Actor widget, Skin skin, String styleName) { + super(widget, skin, styleName); + init(); + } + + public AutoFocusScrollPane(Actor widget, ScrollPaneStyle style) { + super(widget, style); + init(); + } + + private void init() { + addListener(new InputListener() { + public void enter(InputEvent event, float x, float y, int pointer, Actor fromActor) { + getStage().setScrollFocus(AutoFocusScrollPane.this); + } + + public void exit(InputEvent event, float x, float y, int pointer, Actor toActor) { + getStage().setScrollFocus(null); + } + }); + } +} \ No newline at end of file diff --git a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/ConnectScreen.java b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/ConnectScreen.java new file mode 100644 index 0000000..04e4095 --- /dev/null +++ b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/ConnectScreen.java @@ -0,0 +1,67 @@ +package eu.jonahbauer.wizard.client.libgdx.screens; + +import com.badlogic.gdx.Gdx; +import com.badlogic.gdx.scenes.scene2d.Actor; +import com.badlogic.gdx.scenes.scene2d.ui.Label; +import com.badlogic.gdx.scenes.scene2d.ui.TextButton; +import com.badlogic.gdx.scenes.scene2d.ui.TextField; +import com.badlogic.gdx.scenes.scene2d.utils.ChangeListener; +import com.badlogic.gdx.utils.Align; +import eu.jonahbauer.wizard.client.libgdx.WizardGame; + +public class ConnectScreen extends MenuScreen { + + private TextButton buttonBack; + private TextButton buttonConnect; + + private TextField uri; + + private final ChangeListener listener = new ChangeListener() { + @Override + public void changed(ChangeEvent event, Actor actor) { + if (actor == buttonBack) { + game.setScreen(new MainMenuScreen(game, data)); + sfxClick(); + } else if (actor == buttonConnect) { + game.setScreen(new LobbyScreen(game, data)); + sfxClick(); + } + } + }; + + public ConnectScreen(WizardGame game, Data data) { + super(game, data); + } + + @Override + public void show() { + super.show(); + + buttonBack = new TextButton(game.messages.get("menu.connect.back"), data.skin); + buttonBack.setPosition(WizardGame.WIDTH * 0.275f, BUTTON_BAR_Y); + buttonConnect = new TextButton(game.messages.get("menu.connect.connect"), data.skin); + buttonConnect.setPosition(WizardGame.WIDTH * 0.725f - buttonConnect.getWidth(), BUTTON_BAR_Y); + + var label = new Label(game.messages.get("menu.connect.address.label"), data.skin); + label.setSize(0.4f * WizardGame.WIDTH, 64); + label.setAlignment(Align.center); + label.setPosition(0.5f * (WizardGame.WIDTH - label.getWidth()), 0.55f * (WizardGame.HEIGHT - label.getHeight())); + + uri = new TextField("", data.skin); + uri.setMessageText("wss://localhost/wizard"); + uri.setSize(0.4f * WizardGame.WIDTH, 64); + uri.setPosition(0.5f * (WizardGame.WIDTH - uri.getWidth()), 0.45f * (WizardGame.HEIGHT - uri.getHeight())); + + Gdx.input.setInputProcessor(data.stage); + data.stage.addActor(buttonBack); + data.stage.addActor(buttonConnect); + data.stage.addActor(uri); + data.stage.addActor(label); + + buttonBack.addListener(listener); + buttonConnect.addListener(listener); + } + + @Override + protected void renderInternal(float delta) {} +} 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 3d02927..d2152bc 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 @@ -1,10 +1,10 @@ package eu.jonahbauer.wizard.client.libgdx.screens; import com.badlogic.gdx.Gdx; -import com.badlogic.gdx.scenes.scene2d.InputEvent; +import com.badlogic.gdx.scenes.scene2d.Actor; import com.badlogic.gdx.scenes.scene2d.ui.TextButton; import com.badlogic.gdx.scenes.scene2d.ui.TextField; -import com.badlogic.gdx.scenes.scene2d.utils.ClickListener; +import com.badlogic.gdx.scenes.scene2d.utils.ChangeListener; import eu.jonahbauer.wizard.client.libgdx.WizardGame; public class CreateGameScreen extends MenuScreen { @@ -18,63 +18,61 @@ public class CreateGameScreen extends MenuScreen { TextField option5; TextField option6; - ClickListener listener = new ClickListener() { + ChangeListener listener = new ChangeListener() { @Override - public void clicked(InputEvent event, float x, float y) { - var target = event.getListenerActor(); - if (target == backButton) { - game.setScreen(new SessionListScreen(game)); + public void changed(ChangeEvent event, Actor actor) { + if (actor == backButton) { + game.setScreen(new LobbyScreen(game, data)); sfxClick(); - } else if (target == continueButton) { - game.setScreen(new WaitingScreen(game)); + } else if (actor == continueButton) { + game.setScreen(new WaitingScreen(game, data)); sfxClick(); } } }; - public CreateGameScreen(WizardGame game) { - super(game); + public CreateGameScreen(WizardGame game, Data data) { + super(game, data); } @Override public void show() { super.show(); - backButton = new TextButton("Zurück", skin); - backButton.setPosition(WizardGame.WIDTH * 0.3f, WizardGame.HEIGHT * 0.18f); - backButton.setSize(120, backButton.getHeight()); - continueButton = new TextButton("Fortfahren", skin); - continueButton.setPosition(WizardGame.WIDTH * 0.7f - continueButton.getWidth(), WizardGame.HEIGHT * 0.18f); + backButton = new TextButton("Zurück", data.skin); + backButton.setPosition(WizardGame.WIDTH * 0.275f, BUTTON_BAR_Y); + continueButton = new TextButton("Erstellen", data.skin); + continueButton.setPosition(WizardGame.WIDTH * 0.725f - continueButton.getWidth(), BUTTON_BAR_Y); - option1 = new TextField("1", skin); + option1 = new TextField("1", data.skin); option1.setPosition(WizardGame.WIDTH * 0.3f, WizardGame.HEIGHT * 0.6f); option1.setSize(250, continueButton.getHeight()); - option2 = new TextField("2", skin); + option2 = new TextField("2", data.skin); option2.setPosition(option1.getX(), option1.getY() - WizardGame.HEIGHT * 0.12f); option2.setSize(250, continueButton.getHeight()); - option3 = new TextField("3", skin); + option3 = new TextField("3", data.skin); option3.setPosition(option2.getX(), option2.getY() - WizardGame.HEIGHT * 0.12f); option3.setSize(250, continueButton.getHeight()); - option4 = new TextField("4", skin); + option4 = new TextField("4", data.skin); option4.setPosition(WizardGame.WIDTH * 0.65f - option4.getWidth(), option1.getY()); option4.setSize(250, continueButton.getHeight()); - option5 = new TextField("5", skin); + option5 = new TextField("5", data.skin); option5.setPosition(option4.getX(), option2.getY()); option5.setSize(250, continueButton.getHeight()); - option6 = new TextField("6", skin); + option6 = new TextField("6", data.skin); option6.setPosition(option4.getX(), option3.getY()); option6.setSize(250, continueButton.getHeight()); - Gdx.input.setInputProcessor(stage); - stage.addActor(backButton); - stage.addActor(continueButton); - stage.addActor(option1); - stage.addActor(option2); - stage.addActor(option3); - stage.addActor(option4); - stage.addActor(option5); - stage.addActor(option6); + Gdx.input.setInputProcessor(data.stage); + data.stage.addActor(backButton); + data.stage.addActor(continueButton); + data.stage.addActor(option1); + data.stage.addActor(option2); + data.stage.addActor(option3); + data.stage.addActor(option4); + data.stage.addActor(option5); + data.stage.addActor(option6); backButton.addListener(listener); continueButton.addListener(listener); 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 new file mode 100644 index 0000000..fbe905e --- /dev/null +++ b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/LobbyScreen.java @@ -0,0 +1,155 @@ +package eu.jonahbauer.wizard.client.libgdx.screens; + +import com.badlogic.gdx.Gdx; +import com.badlogic.gdx.scenes.scene2d.Actor; +import com.badlogic.gdx.scenes.scene2d.ui.*; +import com.badlogic.gdx.scenes.scene2d.utils.ChangeListener; +import eu.jonahbauer.wizard.client.libgdx.WizardGame; +import eu.jonahbauer.wizard.client.libgdx.actors.AutoFocusScrollPane; +import eu.jonahbauer.wizard.common.messages.data.SessionData; +import eu.jonahbauer.wizard.common.model.Configuration; + +import java.util.UUID; +import java.util.stream.IntStream; +import java.util.stream.StreamSupport; + +public class LobbyScreen extends MenuScreen { + + private TextButton buttonBack; + private TextButton buttonJoin; + private TextButton buttonCreate; + + private TextField playerName; + private Label labelSessionName; + private Label labelSessionPlayerCount; + private Label labelSessionConfiguration; + + private List sessions; + + private final ChangeListener listener = new ChangeListener() { + @Override + public void changed(ChangeEvent event, Actor actor) { + if (actor == buttonBack) { + game.setScreen(new ConnectScreen(game, data)); + sfxClick(); + } else if (actor == buttonJoin) { + game.setScreen(new WaitingScreen(game, data)); + sfxClick(); + } else if (actor == buttonCreate) { + game.setScreen(new CreateGameScreen(game, data)); + sfxClick(); + } + } + }; + + public LobbyScreen(WizardGame game, Data data) { + super(game, data); + } + + @Override + public void show() { + super.show(); + + buttonBack = new TextButton(game.messages.get("menu.lobby.back"), data.skin); + buttonJoin = new TextButton(game.messages.get("menu.lobby.join"), data.skin); + buttonJoin.setDisabled(true); + buttonCreate = new TextButton(game.messages.get("menu.lobby.create"), data.skin); + + sessions = new List<>(data.skin) { + @Override + public String toString(SessionData session) { + return session.getName(); + } + }; + sessions.addListener(new ChangeListener() { + @Override + public void changed(ChangeEvent event, Actor actor) { + updateData(sessions.getSelected()); + } + }); + + var listContainer = new AutoFocusScrollPane(sessions, data.skin); + listContainer.layout(); + + var content = new HorizontalGroup().grow().space(20); + content.setPosition(0.25f * WizardGame.WIDTH, 0.3f * WizardGame.HEIGHT); + content.setSize(0.5f * WizardGame.WIDTH, 400); + content.addActor(new Container<>(listContainer).width(0.2f * WizardGame.WIDTH).height(400)); + content.addActor(createInfoTable()); + content.layout(); + + var buttons = new HorizontalGroup(); + buttons.setPosition(WizardGame.WIDTH * 0.2f, BUTTON_BAR_Y); + buttons.setSize(WizardGame.WIDTH * 0.60f, 125); + buttons.addActor(buttonBack); + buttons.addActor(buttonCreate); + buttons.addActor(buttonJoin); + buttons.space(Math.max(0, (float) (buttons.getWidth() - StreamSupport.stream(buttons.getChildren().spliterator(), false).mapToDouble(Actor::getWidth).sum()) / (buttons.getChildren().size - 1))); + + Gdx.input.setInputProcessor(data.stage); + data.stage.addActor(content); + data.stage.addActor(buttons); + + buttonBack.addListener(listener); + buttonJoin.addListener(listener); + buttonCreate.addListener(listener); + + addSessions( + IntStream.range(1, 16) + .mapToObj(i -> new SessionData( + UUID.randomUUID(), + "Session " + i, + i % 5, + Configuration.values()[i % Configuration.values().length] + )) + .toArray(SessionData[]::new) + ); + } + + @Override + protected void renderInternal(float delta) {} + + public void addSessions(SessionData...sessions) { + for (SessionData session : sessions) { + this.sessions.getItems().add(session); + } + this.sessions.layout(); + ((ScrollPane)this.sessions.getParent()).layout(); + } + + private void updateData(SessionData data) { + System.out.println(data); + labelSessionName.setText(data.getName()); + labelSessionPlayerCount.setText(Integer.toString(data.getPlayerCount())); + labelSessionConfiguration.setText(data.getConfiguration().toString()); + buttonJoin.setDisabled(data == null); + } + + private Table createInfoTable() { + float infoTableWidth = 0.3f * WizardGame.WIDTH - 20; + + playerName = new TextField("", data.skin); + labelSessionName = new Label("", data.skin, "textfield"); + labelSessionConfiguration = new Label("", data.skin, "textfield"); + labelSessionPlayerCount = new Label("", data.skin, "textfield"); + + labelSessionName.setEllipsis(true); + labelSessionConfiguration.setEllipsis(true); + labelSessionPlayerCount.setEllipsis(true); + + var infoTable = new Table().center().left(); + infoTable.columnDefaults(0).growX().width(infoTableWidth); + infoTable.setSize(infoTableWidth, 400); + + infoTable.add(new Label(game.messages.get("menu.lobby.player_name.label"), data.skin)).row(); + infoTable.add(playerName).row(); + infoTable.add(new Label(game.messages.get("menu.lobby.session_name.label"), data.skin)).row(); + infoTable.add(labelSessionName).row(); + infoTable.add(new Label(game.messages.get("menu.lobby.session_configuration.label"), data.skin)).row(); + infoTable.add(labelSessionConfiguration).row(); + infoTable.add(new Label(game.messages.get("menu.lobby.session_player_count.label"), data.skin)).row(); + infoTable.add(labelSessionPlayerCount).row(); + + return infoTable; + } +} diff --git a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/MainMenuScreen.java b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/MainMenuScreen.java index f8d5619..9e62551 100644 --- a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/MainMenuScreen.java +++ b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/MainMenuScreen.java @@ -1,28 +1,25 @@ package eu.jonahbauer.wizard.client.libgdx.screens; import com.badlogic.gdx.Gdx; -import com.badlogic.gdx.graphics.Texture; -import com.badlogic.gdx.scenes.scene2d.InputEvent; +import com.badlogic.gdx.scenes.scene2d.Actor; import com.badlogic.gdx.scenes.scene2d.ui.TextButton; -import com.badlogic.gdx.scenes.scene2d.utils.ClickListener; +import com.badlogic.gdx.scenes.scene2d.utils.ChangeListener; import eu.jonahbauer.wizard.client.libgdx.WizardGame; public class MainMenuScreen extends MenuScreen { - Texture[] symbols; + private TextButton buttonPlay; + private TextButton buttonQuit; - TextButton chooseServerButton; - TextButton exitButton; - - ClickListener listener = new ClickListener() { + private final ChangeListener listener = new ChangeListener() { @Override - public void clicked(InputEvent event, float x, float y) { - var target = event.getListenerActor(); - if (target == chooseServerButton) { - game.setScreen(new ServerScreen(game)); + public void changed(ChangeEvent event, Actor actor) { + if (actor == buttonPlay) { + game.setScreen(new ConnectScreen(game, data)); sfxClick(); - } else if (target == exitButton) { + } else if (actor == buttonQuit) { sfxClick(); + dispose = true; Gdx.app.exit(); } } @@ -32,36 +29,34 @@ public class MainMenuScreen extends MenuScreen { super(game); } + public MainMenuScreen(WizardGame game, Data data) { + super(game, data); + } + @Override public void show() { super.show(); - symbols = new Texture[4]; - symbols[0] = new Texture(Gdx.files.internal("symbol0.png")); - symbols[1] = new Texture(Gdx.files.internal("symbol1.png")); - symbols[2] = new Texture(Gdx.files.internal("symbol2.png")); - symbols[3] = new Texture(Gdx.files.internal("symbol3.png")); - - chooseServerButton = new TextButton("Spiel beitreten", skin); - chooseServerButton.setPosition((WizardGame.WIDTH - chooseServerButton.getWidth()) / 2f, 192 + 504 - 120f - 125f); - exitButton = new TextButton("Verlassen", skin); - exitButton.setPosition((WizardGame.WIDTH - exitButton.getWidth()) / 2f, 192 + 120f); + buttonPlay = new TextButton(game.messages.get("menu.main.play"), data.skin); + buttonPlay.setPosition((WizardGame.WIDTH - buttonPlay.getWidth()) / 2f, 192 + 504 - 120f - 125f); + buttonQuit = new TextButton(game.messages.get("menu.main.quit"), data.skin); + buttonQuit.setPosition((WizardGame.WIDTH - buttonQuit.getWidth()) / 2f, 192 + 120f); - Gdx.input.setInputProcessor(stage); - stage.addActor(chooseServerButton); - stage.addActor(exitButton); + Gdx.input.setInputProcessor(data.stage); + data.stage.addActor(buttonPlay); + data.stage.addActor(buttonQuit); - chooseServerButton.addListener(listener); - exitButton.addListener(listener); + buttonPlay.addListener(listener); + buttonQuit.addListener(listener); } @Override protected void renderInternal(float delta) { int width = 160, height = 224; int left = 384, right = 384, top = 384, bottom = 192; - this.game.batch.draw(symbols[0], left, bottom, width, height); - this.game.batch.draw(symbols[1], left, WizardGame.HEIGHT - top - height, width, height); - this.game.batch.draw(symbols[2], WizardGame.WIDTH - right - width, bottom, width, height); - this.game.batch.draw(symbols[3], WizardGame.WIDTH - right - width, WizardGame.HEIGHT - top - height, width, height); + this.game.batch.draw(data.symbols[0], left, bottom, width, height); + this.game.batch.draw(data.symbols[1], left, WizardGame.HEIGHT - top - height, width, height); + this.game.batch.draw(data.symbols[2], WizardGame.WIDTH - right - width, bottom, width, height); + this.game.batch.draw(data.symbols[3], WizardGame.WIDTH - right - width, WizardGame.HEIGHT - top - height, width, height); } } 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 57e5dde..0f0fb89 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 @@ -5,74 +5,156 @@ import com.badlogic.gdx.Screen; import com.badlogic.gdx.audio.Sound; import com.badlogic.gdx.graphics.GL20; import com.badlogic.gdx.graphics.Texture; +import com.badlogic.gdx.graphics.g2d.BitmapFont; +import com.badlogic.gdx.graphics.g2d.TextureAtlas; +import com.badlogic.gdx.graphics.g2d.TextureRegion; +import com.badlogic.gdx.scenes.scene2d.InputEvent; import com.badlogic.gdx.scenes.scene2d.Stage; import com.badlogic.gdx.scenes.scene2d.ui.Skin; +import com.badlogic.gdx.utils.viewport.ExtendViewport; import com.badlogic.gdx.utils.viewport.FitViewport; -import com.badlogic.gdx.utils.viewport.Viewport; +import eu.jonahbauer.wizard.client.libgdx.MenuAtlas; +import eu.jonahbauer.wizard.client.libgdx.UiskinAtlas; import eu.jonahbauer.wizard.client.libgdx.WizardGame; public abstract class MenuScreen implements Screen { - protected WizardGame game; - - private Sound buttonClickSound; + protected final float BUTTON_BAR_Y = WizardGame.HEIGHT * 0.15f; - private Viewport viewport; - - private Texture title; - private Texture background; - private Texture[] corners; // counterclockwise starting top left + protected WizardGame game; - protected Skin skin; - protected Stage stage; + // shared data between all menu screens + protected static class Data { + public final ExtendViewport extendViewport; + public final FitViewport fitViewport; + + public final Sound buttonClickSound; + + public final TextureAtlas uiskinAtlas; + public final TextureAtlas menuAtlas; + + public final TextureRegion title; + public final TextureRegion background; + public final TextureRegion[] corners = new TextureRegion[4]; + public final TextureRegion[] symbols = new TextureRegion[4]; + + public final Skin skin; + public final Stage stage; + + public Data() { + this.extendViewport = new ExtendViewport(WizardGame.WIDTH, WizardGame.HEIGHT); + this.fitViewport = new FitViewport(WizardGame.WIDTH, WizardGame.HEIGHT); + + this.buttonClickSound = Gdx.audio.newSound(Gdx.files.internal("button_click_s.mp3")); + + this.uiskinAtlas = new TextureAtlas(Gdx.files.internal(UiskinAtlas.$PATH)); + this.menuAtlas = new TextureAtlas(Gdx.files.internal(MenuAtlas.$PATH)); + + this.title = menuAtlas.findRegion(MenuAtlas.TITLE); + this.background = menuAtlas.findRegion(MenuAtlas.BACKGROUND); + this.corners[0] = menuAtlas.findRegion(MenuAtlas.ECKE_LO); + this.corners[1] = menuAtlas.findRegion(MenuAtlas.ECKE_LU); + this.corners[2] = menuAtlas.findRegion(MenuAtlas.ECKE_RU); + this.corners[3] = menuAtlas.findRegion(MenuAtlas.ECKE_RO); + this.symbols[0] = menuAtlas.findRegion(MenuAtlas.SYMBOL0); + this.symbols[1] = menuAtlas.findRegion(MenuAtlas.SYMBOL1); + this.symbols[2] = menuAtlas.findRegion(MenuAtlas.SYMBOL2); + this.symbols[3] = menuAtlas.findRegion(MenuAtlas.SYMBOL3); + + this.skin = new Skin(Gdx.files.internal("uiskin.json"), uiskinAtlas); + this.skin.getAll(BitmapFont.class).forEach(entry -> + entry.value.getRegion().getTexture().setFilter(Texture.TextureFilter.Linear, Texture.TextureFilter.Linear) + ); + this.stage = new Stage(fitViewport); + } + + public void reset() { + stage.clear(); + } + + public void dispose() { + buttonClickSound.dispose(); + uiskinAtlas.dispose(); + menuAtlas.dispose(); + skin.dispose(); + stage.dispose(); + } + } + protected Data data; + protected boolean dispose; public MenuScreen(WizardGame game) { this.game = game; } + protected MenuScreen(WizardGame game, Data data) { + this.game = game; + this.data = data; + } + @Override public void show() { - this.buttonClickSound = Gdx.audio.newSound(Gdx.files.internal("button_click_s.mp3")); - - this.title = new Texture(Gdx.files.internal("title.png")); - this.background = new Texture(Gdx.files.internal("background.png")); - - this.corners = new Texture[4]; - this.corners[0] = new Texture(Gdx.files.internal("ecke_lo.png")); - this.corners[1] = new Texture(Gdx.files.internal("ecke_lu.png")); - this.corners[2] = new Texture(Gdx.files.internal("ecke_ru.png")); - this.corners[3] = new Texture(Gdx.files.internal("ecke_ro.png")); - - this.viewport = new FitViewport(WizardGame.WIDTH, WizardGame.HEIGHT); - - this.skin = new Skin(Gdx.files.internal("skin/uiskin.json")); - this.stage = new Stage(viewport); + if (data == null) { + data = new Data(); + } else { + data.reset(); + } + if (WizardGame.DEBUG) { + data.stage.setDebugAll(true); + data.stage.addListener(event -> { + if (!(event instanceof InputEvent input) || input.getType() == InputEvent.Type.mouseMoved) return false; + + var actor = event.getTarget(); + if (actor != null) { + System.out.printf( + "%s(name=%s, x=%f, y=%f, width=%f, height=%f)%n", + actor.getClass().getSimpleName(), + actor.getName(), + actor.getX(), + actor.getY(), + actor.getWidth(), + actor.getHeight() + ); + } + return false; + }); + } } @Override public final void render(float delta) { Gdx.gl.glClear(GL20.GL_COLOR_BUFFER_BIT); - viewport.getCamera().update(); - game.batch.setProjectionMatrix(viewport.getCamera().combined); + data.extendViewport.apply(true); + game.batch.setProjectionMatrix(data.extendViewport.getCamera().combined); game.batch.begin(); - game.batch.draw(background, 0, 0); - game.batch.draw(corners[0], 0, WizardGame.HEIGHT - corners[0].getHeight()); - game.batch.draw(corners[1], 0, 0); - game.batch.draw(corners[2], WizardGame.WIDTH - corners[2].getWidth(), 0); - game.batch.draw(corners[3], WizardGame.WIDTH - corners[3].getWidth(), WizardGame.HEIGHT - corners[3].getHeight()); - game.batch.draw(title, 555, WizardGame.HEIGHT - 192 - 96, 810, 192); + float scale = Math.max( + data.extendViewport.getWorldWidth() / WizardGame.WIDTH, + data.extendViewport.getWorldHeight() / WizardGame.HEIGHT + ); + game.batch.draw(data.background, 0, 0, scale * WizardGame.WIDTH, scale * WizardGame.HEIGHT); + game.batch.draw(data.corners[0], 0, data.extendViewport.getWorldHeight() - data.corners[0].getRegionHeight()); + game.batch.draw(data.corners[1], 0, 0); + game.batch.draw(data.corners[2], data.extendViewport.getWorldWidth() - data.corners[2].getRegionWidth(), 0); + game.batch.draw(data.corners[3], data.extendViewport.getWorldWidth() - data.corners[3].getRegionWidth(), data.extendViewport.getWorldHeight() - data.corners[3].getRegionHeight()); + game.batch.end(); + + data.fitViewport.apply(); + game.batch.setProjectionMatrix(data.fitViewport.getCamera().combined); + game.batch.begin(); + game.batch.draw(data.title, 555, WizardGame.HEIGHT - 192 - 96, 810, 192); renderInternal(delta); game.batch.end(); - stage.act(Gdx.graphics.getDeltaTime()); - stage.draw(); + data.stage.act(delta); + data.stage.draw(); } protected abstract void renderInternal(float delta); @Override public final void resize(int width, int height) { - viewport.update(width, height); + data.extendViewport.update(width, height); + data.fitViewport.update(width, height); } @Override @@ -92,10 +174,12 @@ public abstract class MenuScreen implements Screen { @Override public void dispose() { - + if (dispose) { + data.dispose(); + } } protected void sfxClick() { - buttonClickSound.play(0.6f); + data.buttonClickSound.play(0.6f); } } diff --git a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/ServerScreen.java b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/ServerScreen.java deleted file mode 100644 index 6370369..0000000 --- a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/ServerScreen.java +++ /dev/null @@ -1,80 +0,0 @@ -package eu.jonahbauer.wizard.client.libgdx.screens; - -import com.badlogic.gdx.Gdx; -import com.badlogic.gdx.scenes.scene2d.Group; -import com.badlogic.gdx.scenes.scene2d.InputEvent; -import com.badlogic.gdx.scenes.scene2d.ui.TextButton; -import com.badlogic.gdx.scenes.scene2d.ui.TextField; -import com.badlogic.gdx.scenes.scene2d.utils.ClickListener; -import eu.jonahbauer.wizard.client.libgdx.WizardGame; - -public class ServerScreen extends MenuScreen { - - TextButton backButton; - TextButton continueButton; - - TextField ip; - TextField port; - TextField playerName; - - Group inputs; - - ClickListener listener = new ClickListener() { - @Override - public void clicked(InputEvent event, float x, float y) { - var target = event.getListenerActor(); - if (target == backButton) { - game.setScreen(new MainMenuScreen(game)); - sfxClick(); - } else if (target == continueButton) { - game.setScreen(new SessionListScreen(game)); - sfxClick(); - } - } - }; - - public ServerScreen(WizardGame game) { - super(game); - } - - @Override - public void show() { - super.show(); - - backButton = new TextButton("Zurück", skin); - backButton.setPosition(WizardGame.WIDTH * 0.3f, WizardGame.HEIGHT * 0.18f); - backButton.setSize(120, backButton.getHeight()); - continueButton = new TextButton("Fortfahren", skin); - continueButton.setPosition(WizardGame.WIDTH * 0.7f - continueButton.getWidth(), WizardGame.HEIGHT * 0.18f); - - inputs = new Group(); - inputs.setSize(300, continueButton.getHeight()); - inputs.setPosition(WizardGame.WIDTH / 2f - inputs.getWidth() / 2, WizardGame.HEIGHT * 0.5f); - - ip = new TextField("", skin); - //ip.setPosition(WizardGame.WIDTH*0.4f, WizardGame.HEIGHT*0.5f); - ip.setSize(200, continueButton.getHeight()); - port = new TextField("", skin); - port.setPosition(ip.getX() + ip.getWidth() + WizardGame.WIDTH * 0.005f, ip.getY()); - port.setSize(80, continueButton.getHeight()); - playerName = new TextField("", skin); - playerName.setSize(250, continueButton.getHeight()); - playerName.setPosition(WizardGame.WIDTH / 2f - playerName.getWidth() / 2, inputs.getY() - WizardGame.HEIGHT * 0.12f); - - inputs.addActor(ip); - inputs.addActor(port); - - Gdx.input.setInputProcessor(stage); - stage.addActor(backButton); - stage.addActor(continueButton); - stage.addActor(playerName); - stage.addActor(inputs); - //stage.addActor(port); - - backButton.addListener(listener); - continueButton.addListener(listener); - } - - @Override - protected void renderInternal(float delta) {} -} diff --git a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/SessionListScreen.java b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/SessionListScreen.java deleted file mode 100644 index 0338e05..0000000 --- a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/SessionListScreen.java +++ /dev/null @@ -1,93 +0,0 @@ -package eu.jonahbauer.wizard.client.libgdx.screens; - -import com.badlogic.gdx.Gdx; -import com.badlogic.gdx.scenes.scene2d.InputEvent; -import com.badlogic.gdx.scenes.scene2d.ui.List; -import com.badlogic.gdx.scenes.scene2d.ui.ScrollPane; -import com.badlogic.gdx.scenes.scene2d.ui.TextButton; -import com.badlogic.gdx.scenes.scene2d.utils.ClickListener; -import eu.jonahbauer.wizard.client.libgdx.WizardGame; - -public class SessionListScreen extends MenuScreen { - - TextButton backButton; - TextButton continueButton; - TextButton createGameButton; - - List gameList; - ScrollPane listContainer; - - ClickListener listener = new ClickListener() { - @Override - public void clicked(InputEvent event, float x, float y) { - var target = event.getListenerActor(); - if (target == backButton) { - game.setScreen(new ServerScreen(game)); - sfxClick(); - } else if (target == continueButton) { - game.setScreen(new WaitingScreen(game)); - sfxClick(); - } else if (target == createGameButton) { - game.setScreen(new CreateGameScreen(game)); - sfxClick(); - } - } - }; - - public SessionListScreen(WizardGame game) { - super(game); - this.game = game; - } - - @Override - public void show() { - super.show(); - - backButton = new TextButton("Zurück", skin); - backButton.setPosition(WizardGame.WIDTH * 0.3f, WizardGame.HEIGHT * 0.18f); - backButton.setSize(120, backButton.getHeight()); - continueButton = new TextButton("Fortfahren", skin); - continueButton.setPosition(WizardGame.WIDTH * 0.6f, WizardGame.HEIGHT * 0.45f); - createGameButton = new TextButton("Spiel erstellen", skin); - createGameButton.setPosition(WizardGame.WIDTH * 0.7f - continueButton.getWidth(), WizardGame.HEIGHT * 0.18f); - createGameButton.setSize(120, backButton.getHeight()); - - gameList = new List<>(skin); - String[] items = new String[]{ - "testgame1", - "testgame2", - "testgame3", - "testgame4", - "testgame5", - "testgame6", - "testgame7", - "testgame8", - "testgame9", - "testgame10", - "testgame11", - "testgame12", - "testgame13", - "testgame14" - }; - gameList.setItems(items); - //gameList.setPosition(WizardGame.WIDTH*0.3f, WizardGame.HEIGHT*0.2f); - gameList.setSize(250, 400); - - listContainer = new ScrollPane(gameList); - listContainer.setSize(250, 300); - listContainer.setPosition(WizardGame.WIDTH * 0.3f, WizardGame.HEIGHT * 0.3f); - - Gdx.input.setInputProcessor(stage); - stage.addActor(backButton); - stage.addActor(continueButton); - stage.addActor(createGameButton); - stage.addActor(listContainer); - - backButton.addListener(listener); - continueButton.addListener(listener); - createGameButton.addListener(listener); - } - - @Override - protected void renderInternal(float delta) {} -} diff --git a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/WaitingScreen.java b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/WaitingScreen.java index 004d0dd..1bdb5be 100644 --- a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/WaitingScreen.java +++ b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/WaitingScreen.java @@ -1,48 +1,127 @@ package eu.jonahbauer.wizard.client.libgdx.screens; -import com.badlogic.gdx.Screen; +import com.badlogic.gdx.Gdx; +import com.badlogic.gdx.scenes.scene2d.Actor; +import com.badlogic.gdx.scenes.scene2d.ui.*; +import com.badlogic.gdx.scenes.scene2d.utils.ChangeListener; import eu.jonahbauer.wizard.client.libgdx.WizardGame; +import eu.jonahbauer.wizard.client.libgdx.actors.AutoFocusScrollPane; +import eu.jonahbauer.wizard.common.messages.data.PlayerData; +import eu.jonahbauer.wizard.common.messages.data.SessionData; +import eu.jonahbauer.wizard.common.model.Configuration; -public class WaitingScreen implements Screen { +import java.util.UUID; - WizardGame game; +public class WaitingScreen extends MenuScreen { - public WaitingScreen(WizardGame game) { - this.game = game; - } - - @Override - public void show() { - - } - - @Override - public void render(float delta) { - - } + private TextButton buttonLeave; + private TextButton buttonReady; - @Override - public void resize(int width, int height) { + private SessionData session; + private UUID myUUID; + private String myName; + private boolean myReady; + private List players; + { + // sample data + session = new SessionData(UUID.randomUUID(), "Session X", -1, Configuration.DEFAULT); + myUUID = UUID.randomUUID(); + myName = "Max Mustermann"; } - @Override - public void pause() { - + private final ChangeListener listener = new ChangeListener() { + @Override + public void changed(ChangeEvent event, Actor actor) { + if (actor == buttonLeave) { + game.setScreen(new LobbyScreen(game, data)); + sfxClick(); + } else if (actor == buttonReady) { + ready(!myReady); + sfxClick(); + } + } + }; + + public WaitingScreen(WizardGame game, Data data) { + super(game, data); } @Override - public void resume() { - + public void show() { + super.show(); + + buttonLeave = new TextButton(game.messages.get("menu.waiting.leave"), data.skin); + buttonLeave.setPosition(WizardGame.WIDTH * 0.275f, BUTTON_BAR_Y); + buttonReady = new TextButton(game.messages.get("menu.waiting.ready"), data.skin); + buttonReady.setPosition(WizardGame.WIDTH * 0.725f - buttonReady.getWidth(), BUTTON_BAR_Y); + + players = new List<>(data.skin) { + @Override + public String toString(PlayerData player) { + return player.getName(); + } + }; + + var listContainer = new AutoFocusScrollPane(players, data.skin); + listContainer.layout(); + + var content = new HorizontalGroup().grow().space(20); + content.setPosition(0.25f * WizardGame.WIDTH, 0.3f * WizardGame.HEIGHT); + content.setSize(0.5f * WizardGame.WIDTH, 400); + content.addActor(new Container<>(listContainer).width(0.2f * WizardGame.WIDTH).height(400)); + content.addActor(createInfoTable()); + content.layout(); + + Gdx.input.setInputProcessor(data.stage); + data.stage.addActor(buttonLeave); + data.stage.addActor(buttonReady); + data.stage.addActor(content); + + buttonLeave.addListener(listener); + buttonReady.addListener(listener); + + // sample data + for (int i = 1; i <= 4; i++) { + players.getItems().add(new PlayerData(UUID.randomUUID(), "Player " + i, false)); + } + players.layout(); } - @Override - public void hide() { - + private void ready(boolean ready) { + this.myReady = ready; + buttonReady.setText(game.messages.get(ready ? "menu.waiting.not_ready" : "menu.waiting.ready")); } @Override - public void dispose() { - + protected void renderInternal(float delta) {} + + private Table createInfoTable() { + float infoTableWidth = 0.3f * WizardGame.WIDTH - 20; + + var labelSessionName = new Label(session.getName(), data.skin, "textfield"); + var labelSessionUUID = new Label(session.getUuid().toString(), data.skin, "textfield"); + var labelSessionConfiguration = new Label(session.getConfiguration().toString(), data.skin, "textfield"); + var labelPlayerName = new Label(myName, data.skin, "textfield"); + + labelSessionName.setEllipsis(true); + labelSessionUUID.setEllipsis(true); + labelSessionConfiguration.setEllipsis(true); + labelPlayerName.setEllipsis(true); + + var infoTable = new Table().center().left(); + infoTable.columnDefaults(0).growX().width(infoTableWidth); + infoTable.setSize(infoTableWidth, 400); + + infoTable.add(new Label(game.messages.get("menu.waiting.session_name.label"), data.skin)).row(); + infoTable.add(labelSessionName).row(); + infoTable.add(new Label(game.messages.get("menu.waiting.session_uuid.label"), data.skin)).row(); + infoTable.add(labelSessionUUID).row(); + infoTable.add(new Label(game.messages.get("menu.waiting.session_configuration.label"), data.skin)).row(); + infoTable.add(labelSessionConfiguration).row(); + infoTable.add(new Label(game.messages.get("menu.waiting.player_name.label"), data.skin)).row(); + infoTable.add(labelPlayerName).row(); + + return infoTable; } } 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 new file mode 100644 index 0000000..f4cd6c3 --- /dev/null +++ b/wizard-client/wizard-client-libgdx/core/src/main/resources/font/coolvetica.fnt @@ -0,0 +1,485 @@ +info face="CoolveticaRg-Regular" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=1,1,1,0 spacing=0,0 +common lineHeight=41 base=31 scaleW=512 scaleH=512 pages=1 packed=0 +page id=0 file="coolvetica.png" +chars count=481 +char id=0 x=19 y=233 width=14 height=24 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=13 x=19 y=233 width=14 height=24 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=33 x=501 y=208 width=6 height=23 xoffset=2 yoffset=9 xadvance=9 page=0 chnl=0 +char id=34 x=188 y=388 width=9 height=10 xoffset=1 yoffset=9 xadvance=11 page=0 chnl=0 +char id=35 x=103 y=258 width=17 height=23 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 +char id=36 x=476 y=127 width=17 height=26 xoffset=0 yoffset=7 xadvance=17 page=0 chnl=0 +char id=37 x=33 y=233 width=22 height=24 xoffset=1 yoffset=9 xadvance=23 page=0 chnl=0 +char id=38 x=55 y=233 width=16 height=24 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=39 x=507 y=208 width=4 height=10 xoffset=1 yoffset=9 xadvance=6 page=0 chnl=0 +char id=40 x=423 y=66 width=10 height=30 xoffset=2 yoffset=7 xadvance=11 page=0 chnl=0 +char id=41 x=433 y=66 width=10 height=30 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 +char id=42 x=447 y=370 width=17 height=17 xoffset=1 yoffset=9 xadvance=19 page=0 chnl=0 +char id=43 x=464 y=370 width=16 height=17 xoffset=1 yoffset=12 xadvance=18 page=0 chnl=0 +char id=44 x=110 y=388 width=6 height=11 xoffset=1 yoffset=26 xadvance=7 page=0 chnl=0 +char id=45 x=276 y=388 width=9 height=6 xoffset=1 yoffset=18 xadvance=11 page=0 chnl=0 +char id=46 x=285 y=388 width=6 height=6 xoffset=1 yoffset=26 xadvance=7 page=0 chnl=0 +char id=47 x=120 y=258 width=12 height=23 xoffset=-1 yoffset=9 xadvance=11 page=0 chnl=0 +char id=48 x=71 y=233 width=16 height=24 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=49 x=132 y=258 width=11 height=23 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 +char id=50 x=143 y=258 width=16 height=23 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=51 x=87 y=233 width=16 height=24 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=52 x=159 y=258 width=17 height=23 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 +char id=53 x=103 y=233 width=17 height=24 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 +char id=54 x=120 y=233 width=16 height=24 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=55 x=176 y=258 width=16 height=23 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=56 x=136 y=233 width=16 height=24 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=57 x=152 y=233 width=16 height=24 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=58 x=502 y=351 width=6 height=17 xoffset=1 yoffset=15 xadvance=7 page=0 chnl=0 +char id=59 x=505 y=282 width=6 height=22 xoffset=1 yoffset=15 xadvance=7 page=0 chnl=0 +char id=60 x=495 y=328 width=16 height=18 xoffset=1 yoffset=11 xadvance=18 page=0 chnl=0 +char id=61 x=71 y=388 width=16 height=12 xoffset=1 yoffset=14 xadvance=18 page=0 chnl=0 +char id=62 x=19 y=351 width=16 height=18 xoffset=1 yoffset=11 xadvance=18 page=0 chnl=0 +char id=63 x=192 y=258 width=16 height=23 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=64 x=176 y=182 width=23 height=25 xoffset=1 yoffset=10 xadvance=25 page=0 chnl=0 +char id=65 x=208 y=258 width=22 height=23 xoffset=0 yoffset=9 xadvance=22 page=0 chnl=0 +char id=66 x=230 y=258 width=19 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=67 x=199 y=182 width=20 height=25 xoffset=1 yoffset=8 xadvance=21 page=0 chnl=0 +char id=68 x=249 y=258 width=19 height=23 xoffset=1 yoffset=9 xadvance=21 page=0 chnl=0 +char id=69 x=268 y=258 width=17 height=23 xoffset=1 yoffset=9 xadvance=19 page=0 chnl=0 +char id=70 x=285 y=258 width=16 height=23 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=71 x=168 y=233 width=21 height=24 xoffset=1 yoffset=9 xadvance=23 page=0 chnl=0 +char id=72 x=301 y=258 width=18 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=73 x=504 y=97 width=6 height=23 xoffset=1 yoffset=9 xadvance=7 page=0 chnl=0 +char id=74 x=189 y=233 width=15 height=24 xoffset=1 yoffset=9 xadvance=16 page=0 chnl=0 +char id=75 x=319 y=258 width=20 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=76 x=339 y=258 width=16 height=23 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=77 x=355 y=258 width=22 height=23 xoffset=1 yoffset=9 xadvance=24 page=0 chnl=0 +char id=78 x=377 y=258 width=19 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=79 x=219 y=182 width=22 height=25 xoffset=1 yoffset=8 xadvance=23 page=0 chnl=0 +char id=80 x=396 y=258 width=18 height=23 xoffset=1 yoffset=9 xadvance=19 page=0 chnl=0 +char id=81 x=443 y=66 width=22 height=30 xoffset=1 yoffset=9 xadvance=24 page=0 chnl=0 +char id=82 x=414 y=258 width=19 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=83 x=241 y=182 width=19 height=25 xoffset=1 yoffset=8 xadvance=20 page=0 chnl=0 +char id=84 x=433 y=258 width=18 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=85 x=204 y=233 width=18 height=24 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=86 x=451 y=258 width=20 height=23 xoffset=0 yoffset=9 xadvance=20 page=0 chnl=0 +char id=87 x=471 y=258 width=29 height=23 xoffset=0 yoffset=9 xadvance=28 page=0 chnl=0 +char id=88 x=0 y=282 width=21 height=23 xoffset=0 yoffset=9 xadvance=20 page=0 chnl=0 +char id=89 x=21 y=282 width=21 height=23 xoffset=-1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=90 x=42 y=282 width=17 height=23 xoffset=1 yoffset=9 xadvance=19 page=0 chnl=0 +char id=91 x=456 y=97 width=9 height=29 xoffset=2 yoffset=7 xadvance=11 page=0 chnl=0 +char id=92 x=59 y=282 width=12 height=23 xoffset=-1 yoffset=9 xadvance=10 page=0 chnl=0 +char id=93 x=465 y=97 width=10 height=29 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=94 x=260 y=388 width=16 height=8 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 +char id=95 x=380 y=388 width=17 height=4 xoffset=0 yoffset=32 xadvance=17 page=0 chnl=0 +char id=96 x=217 y=388 width=10 height=9 xoffset=1 yoffset=6 xadvance=12 page=0 chnl=0 +char id=97 x=35 y=351 width=16 height=18 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=98 x=71 y=282 width=17 height=23 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=99 x=51 y=351 width=16 height=18 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=100 x=88 y=282 width=17 height=23 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=101 x=67 y=351 width=16 height=18 xoffset=1 yoffset=14 xadvance=18 page=0 chnl=0 +char id=102 x=500 y=258 width=10 height=23 xoffset=1 yoffset=9 xadvance=12 page=0 chnl=0 +char id=103 x=260 y=182 width=17 height=25 xoffset=1 yoffset=14 xadvance=18 page=0 chnl=0 +char id=104 x=105 y=282 width=16 height=23 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=105 x=121 y=282 width=6 height=23 xoffset=1 yoffset=9 xadvance=7 page=0 chnl=0 +char id=106 x=465 y=66 width=14 height=30 xoffset=-7 yoffset=9 xadvance=7 page=0 chnl=0 +char id=107 x=127 y=282 width=16 height=23 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=108 x=504 y=97 width=6 height=23 xoffset=1 yoffset=9 xadvance=7 page=0 chnl=0 +char id=109 x=83 y=351 width=24 height=18 xoffset=1 yoffset=14 xadvance=26 page=0 chnl=0 +char id=110 x=107 y=351 width=16 height=18 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=111 x=123 y=351 width=17 height=18 xoffset=1 yoffset=14 xadvance=19 page=0 chnl=0 +char id=112 x=277 y=182 width=17 height=25 xoffset=1 yoffset=14 xadvance=18 page=0 chnl=0 +char id=113 x=294 y=182 width=25 height=25 xoffset=1 yoffset=14 xadvance=18 page=0 chnl=0 +char id=114 x=140 y=351 width=10 height=18 xoffset=1 yoffset=14 xadvance=12 page=0 chnl=0 +char id=115 x=150 y=351 width=16 height=18 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=116 x=418 y=328 width=14 height=22 xoffset=1 yoffset=10 xadvance=16 page=0 chnl=0 +char id=117 x=166 y=351 width=16 height=18 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=118 x=182 y=351 width=17 height=18 xoffset=0 yoffset=14 xadvance=17 page=0 chnl=0 +char id=119 x=199 y=351 width=24 height=18 xoffset=0 yoffset=14 xadvance=24 page=0 chnl=0 +char id=120 x=223 y=351 width=17 height=18 xoffset=0 yoffset=14 xadvance=17 page=0 chnl=0 +char id=121 x=319 y=182 width=16 height=25 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=122 x=240 y=351 width=14 height=18 xoffset=1 yoffset=14 xadvance=16 page=0 chnl=0 +char id=123 x=475 y=97 width=11 height=29 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 +char id=124 x=486 y=97 width=4 height=29 xoffset=4 yoffset=7 xadvance=12 page=0 chnl=0 +char id=125 x=490 y=97 width=10 height=29 xoffset=1 yoffset=7 xadvance=12 page=0 chnl=0 +char id=126 x=227 y=388 width=17 height=9 xoffset=1 yoffset=16 xadvance=19 page=0 chnl=0 +char id=160 x=0 y=0 width=0 height=0 xoffset=0 yoffset=30 xadvance=9 page=0 chnl=0 +char id=161 x=143 y=282 width=7 height=23 xoffset=1 yoffset=9 xadvance=9 page=0 chnl=0 +char id=162 x=150 y=282 width=16 height=23 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=163 x=166 y=282 width=15 height=23 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=164 x=0 y=351 width=19 height=19 xoffset=0 yoffset=11 xadvance=19 page=0 chnl=0 +char id=165 x=181 y=282 width=18 height=23 xoffset=0 yoffset=9 xadvance=18 page=0 chnl=0 +char id=166 x=500 y=97 width=4 height=29 xoffset=4 yoffset=7 xadvance=12 page=0 chnl=0 +char id=167 x=232 y=127 width=17 height=28 xoffset=1 yoffset=9 xadvance=19 page=0 chnl=0 +char id=168 x=291 y=388 width=12 height=6 xoffset=2 yoffset=8 xadvance=15 page=0 chnl=0 +char id=169 x=222 y=233 width=22 height=24 xoffset=1 yoffset=8 xadvance=24 page=0 chnl=0 +char id=170 x=116 y=388 width=9 height=11 xoffset=1 yoffset=12 xadvance=12 page=0 chnl=0 +char id=171 x=495 y=370 width=16 height=14 xoffset=0 yoffset=14 xadvance=16 page=0 chnl=0 +char id=172 x=254 y=351 width=20 height=18 xoffset=0 yoffset=14 xadvance=20 page=0 chnl=0 +char id=173 x=276 y=388 width=9 height=6 xoffset=1 yoffset=18 xadvance=11 page=0 chnl=0 +char id=174 x=0 y=388 width=13 height=14 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=175 x=303 y=388 width=13 height=6 xoffset=2 yoffset=7 xadvance=17 page=0 chnl=0 +char id=176 x=87 y=388 width=11 height=12 xoffset=1 yoffset=9 xadvance=13 page=0 chnl=0 +char id=177 x=463 y=328 width=16 height=21 xoffset=1 yoffset=12 xadvance=18 page=0 chnl=0 +char id=178 x=47 y=388 width=9 height=13 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 +char id=179 x=56 y=388 width=8 height=13 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 +char id=180 x=244 y=388 width=10 height=9 xoffset=1 yoffset=6 xadvance=12 page=0 chnl=0 +char id=182 x=249 y=127 width=19 height=28 xoffset=0 yoffset=9 xadvance=19 page=0 chnl=0 +char id=183 x=285 y=388 width=6 height=6 xoffset=1 yoffset=18 xadvance=7 page=0 chnl=0 +char id=184 x=254 y=388 width=6 height=9 xoffset=2 yoffset=31 xadvance=9 page=0 chnl=0 +char id=185 x=64 y=388 width=7 height=13 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 +char id=186 x=125 y=388 width=10 height=11 xoffset=1 yoffset=12 xadvance=12 page=0 chnl=0 +char id=187 x=13 y=388 width=16 height=14 xoffset=0 yoffset=14 xadvance=16 page=0 chnl=0 +char id=188 x=335 y=182 width=20 height=25 xoffset=0 yoffset=8 xadvance=21 page=0 chnl=0 +char id=189 x=355 y=182 width=21 height=25 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 +char id=190 x=376 y=182 width=20 height=25 xoffset=1 yoffset=8 xadvance=22 page=0 chnl=0 +char id=191 x=244 y=233 width=16 height=24 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=192 x=399 y=0 width=22 height=31 xoffset=0 yoffset=1 xadvance=22 page=0 chnl=0 +char id=193 x=421 y=0 width=22 height=31 xoffset=0 yoffset=1 xadvance=22 page=0 chnl=0 +char id=194 x=443 y=0 width=22 height=31 xoffset=0 yoffset=1 xadvance=22 page=0 chnl=0 +char id=195 x=479 y=66 width=22 height=30 xoffset=0 yoffset=2 xadvance=22 page=0 chnl=0 +char id=196 x=0 y=97 width=22 height=30 xoffset=-1 yoffset=2 xadvance=21 page=0 chnl=0 +char id=197 x=465 y=0 width=22 height=31 xoffset=0 yoffset=1 xadvance=22 page=0 chnl=0 +char id=198 x=199 y=282 width=29 height=23 xoffset=0 yoffset=9 xadvance=30 page=0 chnl=0 +char id=199 x=487 y=0 width=21 height=31 xoffset=1 yoffset=9 xadvance=21 page=0 chnl=0 +char id=200 x=0 y=35 width=17 height=31 xoffset=1 yoffset=1 xadvance=19 page=0 chnl=0 +char id=201 x=17 y=35 width=17 height=31 xoffset=1 yoffset=1 xadvance=19 page=0 chnl=0 +char id=202 x=34 y=35 width=17 height=31 xoffset=1 yoffset=1 xadvance=19 page=0 chnl=0 +char id=203 x=22 y=97 width=17 height=30 xoffset=1 yoffset=2 xadvance=19 page=0 chnl=0 +char id=204 x=51 y=35 width=10 height=31 xoffset=-2 yoffset=1 xadvance=7 page=0 chnl=0 +char id=205 x=61 y=35 width=10 height=31 xoffset=0 yoffset=1 xadvance=7 page=0 chnl=0 +char id=206 x=71 y=35 width=13 height=31 xoffset=-3 yoffset=1 xadvance=7 page=0 chnl=0 +char id=207 x=39 y=97 width=12 height=30 xoffset=-2 yoffset=2 xadvance=7 page=0 chnl=0 +char id=208 x=228 y=282 width=20 height=23 xoffset=0 yoffset=9 xadvance=21 page=0 chnl=0 +char id=209 x=51 y=97 width=19 height=30 xoffset=1 yoffset=2 xadvance=20 page=0 chnl=0 +char id=210 x=84 y=35 width=22 height=31 xoffset=1 yoffset=2 xadvance=23 page=0 chnl=0 +char id=211 x=106 y=35 width=22 height=31 xoffset=1 yoffset=2 xadvance=23 page=0 chnl=0 +char id=212 x=33 y=0 width=22 height=33 xoffset=1 yoffset=0 xadvance=23 page=0 chnl=0 +char id=213 x=128 y=35 width=22 height=31 xoffset=1 yoffset=2 xadvance=23 page=0 chnl=0 +char id=214 x=150 y=35 width=22 height=31 xoffset=1 yoffset=2 xadvance=23 page=0 chnl=0 +char id=215 x=480 y=370 width=15 height=16 xoffset=1 yoffset=12 xadvance=18 page=0 chnl=0 +char id=216 x=0 y=156 width=22 height=26 xoffset=1 yoffset=8 xadvance=23 page=0 chnl=0 +char id=217 x=274 y=0 width=18 height=32 xoffset=1 yoffset=1 xadvance=20 page=0 chnl=0 +char id=218 x=292 y=0 width=18 height=32 xoffset=1 yoffset=1 xadvance=20 page=0 chnl=0 +char id=219 x=55 y=0 width=18 height=33 xoffset=1 yoffset=0 xadvance=20 page=0 chnl=0 +char id=220 x=172 y=35 width=18 height=31 xoffset=1 yoffset=2 xadvance=20 page=0 chnl=0 +char id=221 x=190 y=35 width=21 height=31 xoffset=-1 yoffset=1 xadvance=20 page=0 chnl=0 +char id=222 x=248 y=282 width=18 height=23 xoffset=1 yoffset=9 xadvance=19 page=0 chnl=0 +char id=223 x=266 y=282 width=17 height=23 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=224 x=493 y=127 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=225 x=22 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=226 x=38 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=227 x=396 y=182 width=16 height=25 xoffset=1 yoffset=7 xadvance=17 page=0 chnl=0 +char id=228 x=412 y=182 width=16 height=25 xoffset=1 yoffset=7 xadvance=17 page=0 chnl=0 +char id=229 x=54 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=230 x=274 y=351 width=26 height=18 xoffset=1 yoffset=14 xadvance=28 page=0 chnl=0 +char id=231 x=70 y=156 width=16 height=26 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=232 x=86 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=18 page=0 chnl=0 +char id=233 x=102 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=18 page=0 chnl=0 +char id=234 x=118 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=18 page=0 chnl=0 +char id=235 x=428 y=182 width=16 height=25 xoffset=1 yoffset=7 xadvance=18 page=0 chnl=0 +char id=236 x=134 y=156 width=10 height=26 xoffset=-1 yoffset=6 xadvance=10 page=0 chnl=0 +char id=237 x=144 y=156 width=10 height=26 xoffset=1 yoffset=6 xadvance=10 page=0 chnl=0 +char id=238 x=154 y=156 width=14 height=26 xoffset=-2 yoffset=6 xadvance=10 page=0 chnl=0 +char id=239 x=260 y=233 width=12 height=24 xoffset=-1 yoffset=8 xadvance=9 page=0 chnl=0 +char id=240 x=272 y=233 width=17 height=24 xoffset=1 yoffset=8 xadvance=18 page=0 chnl=0 +char id=241 x=289 y=233 width=16 height=24 xoffset=1 yoffset=8 xadvance=17 page=0 chnl=0 +char id=242 x=168 y=156 width=17 height=26 xoffset=1 yoffset=6 xadvance=19 page=0 chnl=0 +char id=243 x=185 y=156 width=17 height=26 xoffset=1 yoffset=6 xadvance=19 page=0 chnl=0 +char id=244 x=202 y=156 width=17 height=26 xoffset=1 yoffset=6 xadvance=19 page=0 chnl=0 +char id=245 x=444 y=182 width=17 height=25 xoffset=1 yoffset=7 xadvance=19 page=0 chnl=0 +char id=246 x=461 y=182 width=17 height=25 xoffset=1 yoffset=7 xadvance=19 page=0 chnl=0 +char id=247 x=479 y=328 width=16 height=20 xoffset=1 yoffset=10 xadvance=18 page=0 chnl=0 +char id=248 x=432 y=328 width=17 height=22 xoffset=1 yoffset=12 xadvance=19 page=0 chnl=0 +char id=249 x=219 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=250 x=235 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=251 x=251 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=252 x=478 y=182 width=16 height=25 xoffset=1 yoffset=7 xadvance=17 page=0 chnl=0 +char id=253 x=73 y=0 width=16 height=33 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=254 x=70 y=97 width=17 height=30 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=255 x=310 y=0 width=16 height=32 xoffset=1 yoffset=7 xadvance=17 page=0 chnl=0 +char id=256 x=0 y=127 width=22 height=29 xoffset=-1 yoffset=3 xadvance=21 page=0 chnl=0 +char id=257 x=494 y=182 width=16 height=25 xoffset=1 yoffset=7 xadvance=17 page=0 chnl=0 +char id=258 x=211 y=35 width=23 height=31 xoffset=-1 yoffset=1 xadvance=22 page=0 chnl=0 +char id=259 x=267 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=260 x=87 y=97 width=22 height=30 xoffset=-1 yoffset=9 xadvance=22 page=0 chnl=0 +char id=261 x=0 y=208 width=15 height=25 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=262 x=234 y=35 width=20 height=31 xoffset=1 yoffset=2 xadvance=21 page=0 chnl=0 +char id=263 x=283 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=264 x=19 y=233 width=14 height=24 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=266 x=254 y=35 width=20 height=31 xoffset=1 yoffset=2 xadvance=21 page=0 chnl=0 +char id=267 x=15 y=208 width=16 height=25 xoffset=1 yoffset=7 xadvance=17 page=0 chnl=0 +char id=268 x=89 y=0 width=20 height=33 xoffset=1 yoffset=0 xadvance=21 page=0 chnl=0 +char id=269 x=299 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=270 x=274 y=35 width=19 height=31 xoffset=1 yoffset=1 xadvance=21 page=0 chnl=0 +char id=271 x=305 y=233 width=22 height=24 xoffset=1 yoffset=8 xadvance=22 page=0 chnl=0 +char id=273 x=283 y=282 width=17 height=23 xoffset=1 yoffset=9 xadvance=19 page=0 chnl=0 +char id=274 x=22 y=127 width=17 height=29 xoffset=1 yoffset=3 xadvance=19 page=0 chnl=0 +char id=275 x=31 y=208 width=16 height=25 xoffset=1 yoffset=7 xadvance=18 page=0 chnl=0 +char id=276 x=293 y=35 width=17 height=31 xoffset=1 yoffset=1 xadvance=19 page=0 chnl=0 +char id=277 x=315 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=18 page=0 chnl=0 +char id=278 x=109 y=97 width=17 height=30 xoffset=1 yoffset=2 xadvance=19 page=0 chnl=0 +char id=279 x=47 y=208 width=16 height=25 xoffset=1 yoffset=7 xadvance=18 page=0 chnl=0 +char id=280 x=126 y=97 width=17 height=30 xoffset=1 yoffset=9 xadvance=19 page=0 chnl=0 +char id=281 x=63 y=208 width=16 height=25 xoffset=1 yoffset=14 xadvance=18 page=0 chnl=0 +char id=282 x=310 y=35 width=17 height=31 xoffset=1 yoffset=1 xadvance=19 page=0 chnl=0 +char id=283 x=331 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=18 page=0 chnl=0 +char id=286 x=109 y=0 width=21 height=33 xoffset=1 yoffset=0 xadvance=23 page=0 chnl=0 +char id=287 x=130 y=0 width=17 height=33 xoffset=1 yoffset=6 xadvance=18 page=0 chnl=0 +char id=288 x=327 y=35 width=21 height=31 xoffset=1 yoffset=2 xadvance=23 page=0 chnl=0 +char id=289 x=326 y=0 width=17 height=32 xoffset=1 yoffset=7 xadvance=18 page=0 chnl=0 +char id=290 x=348 y=35 width=21 height=31 xoffset=1 yoffset=9 xadvance=23 page=0 chnl=0 +char id=291 x=16 y=0 width=17 height=34 xoffset=1 yoffset=5 xadvance=18 page=0 chnl=0 +char id=294 x=300 y=282 width=18 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=295 x=318 y=282 width=16 height=23 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 +char id=296 x=143 y=97 width=13 height=30 xoffset=-3 yoffset=2 xadvance=7 page=0 chnl=0 +char id=297 x=327 y=233 width=13 height=24 xoffset=-2 yoffset=8 xadvance=10 page=0 chnl=0 +char id=298 x=39 y=127 width=13 height=29 xoffset=-3 yoffset=3 xadvance=7 page=0 chnl=0 +char id=299 x=79 y=208 width=13 height=25 xoffset=-2 yoffset=7 xadvance=9 page=0 chnl=0 +char id=300 x=369 y=35 width=12 height=31 xoffset=-2 yoffset=1 xadvance=8 page=0 chnl=0 +char id=301 x=347 y=156 width=12 height=26 xoffset=-1 yoffset=6 xadvance=10 page=0 chnl=0 +char id=302 x=501 y=66 width=8 height=30 xoffset=-2 yoffset=9 xadvance=7 page=0 chnl=0 +char id=303 x=156 y=97 width=8 height=30 xoffset=-2 yoffset=9 xadvance=7 page=0 chnl=0 +char id=304 x=504 y=35 width=6 height=30 xoffset=1 yoffset=2 xadvance=7 page=0 chnl=0 +char id=305 x=300 y=351 width=6 height=18 xoffset=1 yoffset=14 xadvance=7 page=0 chnl=0 +char id=306 x=340 y=233 width=20 height=24 xoffset=1 yoffset=9 xadvance=22 page=0 chnl=0 +char id=307 x=164 y=97 width=14 height=30 xoffset=-1 yoffset=9 xadvance=13 page=0 chnl=0 +char id=310 x=381 y=35 width=20 height=31 xoffset=1 yoffset=9 xadvance=21 page=0 chnl=0 +char id=311 x=401 y=35 width=16 height=31 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=313 x=417 y=35 width=17 height=31 xoffset=0 yoffset=1 xadvance=18 page=0 chnl=0 +char id=314 x=434 y=35 width=10 height=31 xoffset=0 yoffset=1 xadvance=7 page=0 chnl=0 +char id=315 x=444 y=35 width=16 height=31 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=316 x=460 y=35 width=6 height=31 xoffset=1 yoffset=9 xadvance=7 page=0 chnl=0 +char id=317 x=360 y=233 width=16 height=24 xoffset=1 yoffset=8 xadvance=18 page=0 chnl=0 +char id=318 x=376 y=233 width=11 height=24 xoffset=1 yoffset=8 xadvance=11 page=0 chnl=0 +char id=321 x=334 y=282 width=16 height=23 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=322 x=350 y=282 width=9 height=23 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 +char id=323 x=466 y=35 width=19 height=31 xoffset=1 yoffset=1 xadvance=20 page=0 chnl=0 +char id=324 x=359 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=325 x=485 y=35 width=19 height=31 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=326 x=375 y=156 width=16 height=26 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=327 x=0 y=66 width=19 height=31 xoffset=1 yoffset=1 xadvance=20 page=0 chnl=0 +char id=328 x=391 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=330 x=178 y=97 width=19 height=30 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=331 x=92 y=208 width=16 height=25 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=332 x=19 y=66 width=22 height=31 xoffset=1 yoffset=2 xadvance=23 page=0 chnl=0 +char id=333 x=108 y=208 width=17 height=25 xoffset=1 yoffset=7 xadvance=19 page=0 chnl=0 +char id=334 x=147 y=0 width=22 height=33 xoffset=1 yoffset=0 xadvance=23 page=0 chnl=0 +char id=335 x=407 y=156 width=17 height=26 xoffset=1 yoffset=6 xadvance=19 page=0 chnl=0 +char id=336 x=343 y=0 width=22 height=32 xoffset=1 yoffset=1 xadvance=23 page=0 chnl=0 +char id=337 x=424 y=156 width=17 height=26 xoffset=1 yoffset=6 xadvance=19 page=0 chnl=0 +char id=338 x=387 y=233 width=33 height=24 xoffset=1 yoffset=9 xadvance=32 page=0 chnl=0 +char id=339 x=306 y=351 width=28 height=18 xoffset=1 yoffset=14 xadvance=29 page=0 chnl=0 +char id=340 x=41 y=66 width=19 height=31 xoffset=1 yoffset=1 xadvance=20 page=0 chnl=0 +char id=341 x=441 y=156 width=11 height=26 xoffset=1 yoffset=6 xadvance=12 page=0 chnl=0 +char id=342 x=60 y=66 width=19 height=31 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=343 x=452 y=156 width=10 height=26 xoffset=1 yoffset=14 xadvance=12 page=0 chnl=0 +char id=344 x=79 y=66 width=19 height=31 xoffset=1 yoffset=1 xadvance=20 page=0 chnl=0 +char id=345 x=462 y=156 width=14 height=26 xoffset=-1 yoffset=6 xadvance=12 page=0 chnl=0 +char id=346 x=98 y=66 width=19 height=31 xoffset=1 yoffset=2 xadvance=20 page=0 chnl=0 +char id=347 x=476 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=350 x=117 y=66 width=19 height=31 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=351 x=492 y=156 width=16 height=26 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=352 x=169 y=0 width=19 height=33 xoffset=1 yoffset=0 xadvance=20 page=0 chnl=0 +char id=353 x=0 y=182 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=354 x=136 y=66 width=18 height=31 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=355 x=197 y=97 width=14 height=30 xoffset=1 yoffset=10 xadvance=16 page=0 chnl=0 +char id=356 x=154 y=66 width=18 height=31 xoffset=1 yoffset=1 xadvance=20 page=0 chnl=0 +char id=357 x=420 y=233 width=19 height=24 xoffset=1 yoffset=8 xadvance=20 page=0 chnl=0 +char id=358 x=359 y=282 width=18 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=359 x=449 y=328 width=14 height=22 xoffset=1 yoffset=10 xadvance=16 page=0 chnl=0 +char id=360 x=172 y=66 width=18 height=31 xoffset=1 yoffset=2 xadvance=20 page=0 chnl=0 +char id=361 x=125 y=208 width=16 height=25 xoffset=1 yoffset=7 xadvance=17 page=0 chnl=0 +char id=362 x=190 y=66 width=18 height=31 xoffset=1 yoffset=2 xadvance=20 page=0 chnl=0 +char id=363 x=141 y=208 width=16 height=25 xoffset=1 yoffset=7 xadvance=17 page=0 chnl=0 +char id=364 x=188 y=0 width=18 height=33 xoffset=1 yoffset=0 xadvance=20 page=0 chnl=0 +char id=365 x=16 y=182 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=366 x=365 y=0 width=18 height=32 xoffset=1 yoffset=1 xadvance=20 page=0 chnl=0 +char id=367 x=32 y=182 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=368 x=206 y=0 width=18 height=33 xoffset=1 yoffset=0 xadvance=20 page=0 chnl=0 +char id=369 x=437 y=127 width=16 height=27 xoffset=1 yoffset=5 xadvance=17 page=0 chnl=0 +char id=370 x=211 y=97 width=18 height=30 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=371 x=157 y=208 width=15 height=25 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=372 x=208 y=66 width=29 height=31 xoffset=0 yoffset=1 xadvance=28 page=0 chnl=0 +char id=373 x=48 y=182 width=24 height=26 xoffset=0 yoffset=6 xadvance=24 page=0 chnl=0 +char id=374 x=237 y=66 width=21 height=31 xoffset=-1 yoffset=1 xadvance=20 page=0 chnl=0 +char id=375 x=224 y=0 width=16 height=33 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=376 x=229 y=97 width=21 height=30 xoffset=-1 yoffset=2 xadvance=19 page=0 chnl=0 +char id=377 x=258 y=66 width=17 height=31 xoffset=1 yoffset=1 xadvance=19 page=0 chnl=0 +char id=378 x=72 y=182 width=14 height=26 xoffset=1 yoffset=6 xadvance=16 page=0 chnl=0 +char id=379 x=250 y=97 width=17 height=30 xoffset=1 yoffset=2 xadvance=19 page=0 chnl=0 +char id=380 x=439 y=233 width=14 height=24 xoffset=1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=381 x=275 y=66 width=17 height=31 xoffset=1 yoffset=1 xadvance=19 page=0 chnl=0 +char id=382 x=86 y=182 width=14 height=26 xoffset=1 yoffset=6 xadvance=16 page=0 chnl=0 +char id=900 x=197 y=388 width=5 height=10 xoffset=1 yoffset=9 xadvance=6 page=0 chnl=0 +char id=901 x=202 y=388 width=15 height=10 xoffset=-14 yoffset=5 xadvance=1 page=0 chnl=0 +char id=902 x=377 y=282 width=22 height=23 xoffset=1 yoffset=9 xadvance=23 page=0 chnl=0 +char id=903 x=285 y=388 width=6 height=6 xoffset=1 yoffset=14 xadvance=7 page=0 chnl=0 +char id=904 x=399 y=282 width=22 height=23 xoffset=0 yoffset=9 xadvance=23 page=0 chnl=0 +char id=905 x=421 y=282 width=23 height=23 xoffset=0 yoffset=9 xadvance=24 page=0 chnl=0 +char id=906 x=444 y=282 width=11 height=23 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 +char id=908 x=453 y=233 width=25 height=24 xoffset=1 yoffset=9 xadvance=26 page=0 chnl=0 +char id=910 x=455 y=282 width=25 height=23 xoffset=0 yoffset=9 xadvance=25 page=0 chnl=0 +char id=911 x=480 y=282 width=25 height=23 xoffset=0 yoffset=9 xadvance=26 page=0 chnl=0 +char id=912 x=453 y=127 width=15 height=27 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 +char id=915 x=0 y=305 width=16 height=23 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=916 x=16 y=305 width=22 height=23 xoffset=0 yoffset=9 xadvance=22 page=0 chnl=0 +char id=920 x=478 y=233 width=22 height=24 xoffset=1 yoffset=9 xadvance=23 page=0 chnl=0 +char id=923 x=38 y=305 width=20 height=23 xoffset=0 yoffset=9 xadvance=20 page=0 chnl=0 +char id=926 x=58 y=305 width=18 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=928 x=76 y=305 width=18 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=931 x=94 y=305 width=18 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=934 x=112 y=305 width=23 height=23 xoffset=1 yoffset=9 xadvance=24 page=0 chnl=0 +char id=936 x=135 y=305 width=21 height=23 xoffset=1 yoffset=9 xadvance=23 page=0 chnl=0 +char id=937 x=156 y=305 width=21 height=23 xoffset=1 yoffset=9 xadvance=22 page=0 chnl=0 +char id=940 x=268 y=127 width=19 height=28 xoffset=1 yoffset=4 xadvance=21 page=0 chnl=0 +char id=941 x=287 y=127 width=16 height=28 xoffset=1 yoffset=4 xadvance=17 page=0 chnl=0 +char id=942 x=0 y=0 width=16 height=35 xoffset=1 yoffset=4 xadvance=17 page=0 chnl=0 +char id=943 x=468 y=127 width=8 height=27 xoffset=1 yoffset=5 xadvance=9 page=0 chnl=0 +char id=944 x=303 y=127 width=16 height=28 xoffset=1 yoffset=4 xadvance=17 page=0 chnl=0 +char id=945 x=334 y=351 width=19 height=18 xoffset=1 yoffset=14 xadvance=21 page=0 chnl=0 +char id=946 x=267 y=97 width=17 height=30 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=947 x=172 y=208 width=18 height=25 xoffset=0 yoffset=14 xadvance=17 page=0 chnl=0 +char id=948 x=177 y=305 width=17 height=23 xoffset=1 yoffset=9 xadvance=19 page=0 chnl=0 +char id=949 x=353 y=351 width=16 height=18 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=950 x=284 y=97 width=14 height=30 xoffset=1 yoffset=9 xadvance=16 page=0 chnl=0 +char id=951 x=190 y=208 width=16 height=25 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=952 x=194 y=305 width=17 height=23 xoffset=1 yoffset=9 xadvance=19 page=0 chnl=0 +char id=953 x=369 y=351 width=8 height=18 xoffset=1 yoffset=14 xadvance=9 page=0 chnl=0 +char id=954 x=377 y=351 width=16 height=18 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=955 x=211 y=305 width=19 height=23 xoffset=0 yoffset=9 xadvance=19 page=0 chnl=0 +char id=956 x=206 y=208 width=16 height=25 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=958 x=298 y=97 width=16 height=30 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=960 x=393 y=351 width=19 height=18 xoffset=1 yoffset=14 xadvance=21 page=0 chnl=0 +char id=961 x=222 y=208 width=17 height=25 xoffset=1 yoffset=14 xadvance=18 page=0 chnl=0 +char id=962 x=239 y=208 width=16 height=25 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=963 x=412 y=351 width=19 height=18 xoffset=1 yoffset=14 xadvance=20 page=0 chnl=0 +char id=964 x=431 y=351 width=16 height=18 xoffset=1 yoffset=14 xadvance=18 page=0 chnl=0 +char id=965 x=447 y=351 width=16 height=18 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=966 x=314 y=97 width=23 height=30 xoffset=1 yoffset=9 xadvance=24 page=0 chnl=0 +char id=967 x=255 y=208 width=17 height=25 xoffset=0 yoffset=14 xadvance=17 page=0 chnl=0 +char id=968 x=337 y=97 width=21 height=30 xoffset=1 yoffset=9 xadvance=23 page=0 chnl=0 +char id=969 x=463 y=351 width=23 height=18 xoffset=1 yoffset=14 xadvance=24 page=0 chnl=0 +char id=970 x=500 y=233 width=11 height=24 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 +char id=971 x=272 y=208 width=16 height=25 xoffset=1 yoffset=7 xadvance=17 page=0 chnl=0 +char id=972 x=319 y=127 width=17 height=28 xoffset=1 yoffset=4 xadvance=19 page=0 chnl=0 +char id=973 x=336 y=127 width=16 height=28 xoffset=1 yoffset=4 xadvance=17 page=0 chnl=0 +char id=974 x=352 y=127 width=23 height=28 xoffset=1 yoffset=4 xadvance=24 page=0 chnl=0 +char id=1026 x=358 y=97 width=24 height=30 xoffset=1 yoffset=9 xadvance=26 page=0 chnl=0 +char id=1027 x=292 y=66 width=16 height=31 xoffset=1 yoffset=1 xadvance=18 page=0 chnl=0 +char id=1028 x=288 y=208 width=21 height=25 xoffset=1 yoffset=8 xadvance=21 page=0 chnl=0 +char id=1033 x=230 y=305 width=32 height=23 xoffset=1 yoffset=9 xadvance=34 page=0 chnl=0 +char id=1034 x=262 y=305 width=27 height=23 xoffset=1 yoffset=9 xadvance=29 page=0 chnl=0 +char id=1035 x=289 y=305 width=24 height=23 xoffset=1 yoffset=9 xadvance=26 page=0 chnl=0 +char id=1036 x=308 y=66 width=20 height=31 xoffset=1 yoffset=1 xadvance=20 page=0 chnl=0 +char id=1037 x=328 y=66 width=19 height=31 xoffset=1 yoffset=1 xadvance=20 page=0 chnl=0 +char id=1038 x=240 y=0 width=18 height=33 xoffset=1 yoffset=0 xadvance=20 page=0 chnl=0 +char id=1039 x=52 y=127 width=18 height=29 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=1041 x=313 y=305 width=18 height=23 xoffset=1 yoffset=9 xadvance=19 page=0 chnl=0 +char id=1044 x=70 y=127 width=23 height=29 xoffset=1 yoffset=9 xadvance=25 page=0 chnl=0 +char id=1046 x=331 y=305 width=30 height=23 xoffset=0 yoffset=9 xadvance=29 page=0 chnl=0 +char id=1047 x=309 y=208 width=19 height=25 xoffset=1 yoffset=8 xadvance=21 page=0 chnl=0 +char id=1048 x=361 y=305 width=19 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=1049 x=347 y=66 width=19 height=31 xoffset=1 yoffset=1 xadvance=20 page=0 chnl=0 +char id=1051 x=380 y=305 width=20 height=23 xoffset=1 yoffset=9 xadvance=22 page=0 chnl=0 +char id=1059 x=0 y=258 width=18 height=24 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=1062 x=93 y=127 width=21 height=29 xoffset=1 yoffset=9 xadvance=23 page=0 chnl=0 +char id=1063 x=400 y=305 width=18 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=1064 x=418 y=305 width=26 height=23 xoffset=1 yoffset=9 xadvance=27 page=0 chnl=0 +char id=1065 x=114 y=127 width=28 height=29 xoffset=1 yoffset=9 xadvance=30 page=0 chnl=0 +char id=1066 x=444 y=305 width=25 height=23 xoffset=0 yoffset=9 xadvance=25 page=0 chnl=0 +char id=1067 x=469 y=305 width=23 height=23 xoffset=1 yoffset=9 xadvance=24 page=0 chnl=0 +char id=1068 x=492 y=305 width=18 height=23 xoffset=1 yoffset=9 xadvance=19 page=0 chnl=0 +char id=1069 x=328 y=208 width=21 height=25 xoffset=-1 yoffset=8 xadvance=21 page=0 chnl=0 +char id=1070 x=349 y=208 width=27 height=25 xoffset=1 yoffset=8 xadvance=29 page=0 chnl=0 +char id=1071 x=0 y=328 width=19 height=23 xoffset=0 yoffset=9 xadvance=20 page=0 chnl=0 +char id=1073 x=100 y=182 width=17 height=26 xoffset=1 yoffset=6 xadvance=19 page=0 chnl=0 +char id=1074 x=486 y=351 width=16 height=18 xoffset=1 yoffset=14 xadvance=18 page=0 chnl=0 +char id=1075 x=0 y=370 width=11 height=18 xoffset=1 yoffset=14 xadvance=13 page=0 chnl=0 +char id=1076 x=19 y=328 width=19 height=23 xoffset=1 yoffset=14 xadvance=21 page=0 chnl=0 +char id=1078 x=11 y=370 width=24 height=18 xoffset=0 yoffset=14 xadvance=23 page=0 chnl=0 +char id=1079 x=35 y=370 width=16 height=18 xoffset=0 yoffset=14 xadvance=16 page=0 chnl=0 +char id=1080 x=51 y=370 width=16 height=18 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=1081 x=117 y=182 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=1083 x=67 y=370 width=17 height=18 xoffset=1 yoffset=14 xadvance=19 page=0 chnl=0 +char id=1084 x=84 y=370 width=20 height=18 xoffset=1 yoffset=14 xadvance=21 page=0 chnl=0 +char id=1085 x=104 y=370 width=16 height=18 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=1087 x=120 y=370 width=16 height=18 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=1090 x=136 y=370 width=16 height=18 xoffset=1 yoffset=14 xadvance=18 page=0 chnl=0 +char id=1094 x=38 y=328 width=18 height=23 xoffset=1 yoffset=14 xadvance=20 page=0 chnl=0 +char id=1095 x=152 y=370 width=16 height=18 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=1096 x=168 y=370 width=24 height=18 xoffset=1 yoffset=14 xadvance=25 page=0 chnl=0 +char id=1097 x=56 y=328 width=25 height=23 xoffset=1 yoffset=14 xadvance=27 page=0 chnl=0 +char id=1098 x=192 y=370 width=22 height=18 xoffset=1 yoffset=14 xadvance=24 page=0 chnl=0 +char id=1099 x=214 y=370 width=22 height=18 xoffset=1 yoffset=14 xadvance=24 page=0 chnl=0 +char id=1100 x=236 y=370 width=16 height=18 xoffset=1 yoffset=14 xadvance=18 page=0 chnl=0 +char id=1101 x=252 y=370 width=17 height=18 xoffset=0 yoffset=14 xadvance=17 page=0 chnl=0 +char id=1102 x=269 y=370 width=23 height=18 xoffset=1 yoffset=14 xadvance=25 page=0 chnl=0 +char id=1103 x=292 y=370 width=17 height=18 xoffset=0 yoffset=14 xadvance=17 page=0 chnl=0 +char id=1106 x=382 y=97 width=16 height=30 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 +char id=1107 x=133 y=182 width=11 height=26 xoffset=1 yoffset=6 xadvance=13 page=0 chnl=0 +char id=1108 x=309 y=370 width=16 height=18 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=1113 x=325 y=370 width=28 height=18 xoffset=1 yoffset=14 xadvance=30 page=0 chnl=0 +char id=1114 x=353 y=370 width=25 height=18 xoffset=1 yoffset=14 xadvance=27 page=0 chnl=0 +char id=1116 x=144 y=182 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=1117 x=160 y=182 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=1118 x=258 y=0 width=16 height=33 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=1119 x=81 y=328 width=16 height=23 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=1168 x=142 y=127 width=16 height=29 xoffset=1 yoffset=3 xadvance=18 page=0 chnl=0 +char id=1169 x=97 y=328 width=11 height=23 xoffset=1 yoffset=9 xadvance=13 page=0 chnl=0 +char id=1170 x=108 y=328 width=19 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=1171 x=378 y=370 width=14 height=18 xoffset=0 yoffset=14 xadvance=14 page=0 chnl=0 +char id=1174 x=158 y=127 width=31 height=29 xoffset=0 yoffset=9 xadvance=32 page=0 chnl=0 +char id=1175 x=127 y=328 width=25 height=23 xoffset=0 yoffset=14 xadvance=26 page=0 chnl=0 +char id=1176 x=366 y=66 width=19 height=31 xoffset=1 yoffset=8 xadvance=21 page=0 chnl=0 +char id=1177 x=376 y=208 width=16 height=25 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=1178 x=189 y=127 width=21 height=29 xoffset=1 yoffset=9 xadvance=23 page=0 chnl=0 +char id=1179 x=152 y=328 width=17 height=23 xoffset=1 yoffset=14 xadvance=19 page=0 chnl=0 +char id=1184 x=169 y=328 width=27 height=23 xoffset=0 yoffset=9 xadvance=26 page=0 chnl=0 +char id=1185 x=392 y=370 width=22 height=18 xoffset=1 yoffset=14 xadvance=23 page=0 chnl=0 +char id=1186 x=375 y=127 width=21 height=28 xoffset=1 yoffset=9 xadvance=23 page=0 chnl=0 +char id=1187 x=196 y=328 width=18 height=23 xoffset=1 yoffset=14 xadvance=20 page=0 chnl=0 +char id=1194 x=385 y=66 width=20 height=31 xoffset=1 yoffset=8 xadvance=21 page=0 chnl=0 +char id=1195 x=392 y=208 width=16 height=25 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=1202 x=210 y=127 width=22 height=29 xoffset=0 yoffset=9 xadvance=23 page=0 chnl=0 +char id=1203 x=214 y=328 width=19 height=23 xoffset=-1 yoffset=14 xadvance=19 page=0 chnl=0 +char id=1206 x=396 y=127 width=20 height=28 xoffset=1 yoffset=9 xadvance=22 page=0 chnl=0 +char id=1207 x=233 y=328 width=18 height=23 xoffset=1 yoffset=14 xadvance=20 page=0 chnl=0 +char id=1210 x=251 y=328 width=18 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=1217 x=19 y=233 width=14 height=24 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=1219 x=398 y=97 width=20 height=30 xoffset=1 yoffset=9 xadvance=21 page=0 chnl=0 +char id=1220 x=408 y=208 width=16 height=25 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=1223 x=418 y=97 width=18 height=30 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=1224 x=424 y=208 width=16 height=25 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=1234 x=19 y=233 width=14 height=24 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=1240 x=440 y=208 width=22 height=25 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 +char id=1241 x=414 y=370 width=16 height=18 xoffset=1 yoffset=14 xadvance=18 page=0 chnl=0 +char id=1250 x=19 y=233 width=14 height=24 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=1256 x=462 y=208 width=21 height=25 xoffset=1 yoffset=8 xadvance=23 page=0 chnl=0 +char id=1257 x=430 y=370 width=17 height=18 xoffset=1 yoffset=14 xadvance=19 page=0 chnl=0 +char id=1262 x=405 y=66 width=18 height=31 xoffset=1 yoffset=2 xadvance=20 page=0 chnl=0 +char id=1263 x=383 y=0 width=16 height=32 xoffset=1 yoffset=7 xadvance=17 page=0 chnl=0 +char id=1266 x=19 y=233 width=14 height=24 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=1298 x=436 y=97 width=20 height=30 xoffset=1 yoffset=9 xadvance=22 page=0 chnl=0 +char id=1299 x=483 y=208 width=18 height=25 xoffset=0 yoffset=14 xadvance=18 page=0 chnl=0 +char id=8211 x=316 y=388 width=14 height=6 xoffset=1 yoffset=18 xadvance=16 page=0 chnl=0 +char id=8212 x=330 y=388 width=20 height=6 xoffset=1 yoffset=18 xadvance=22 page=0 chnl=0 +char id=8216 x=135 y=388 width=6 height=11 xoffset=1 yoffset=7 xadvance=7 page=0 chnl=0 +char id=8217 x=141 y=388 width=6 height=11 xoffset=1 yoffset=8 xadvance=7 page=0 chnl=0 +char id=8218 x=147 y=388 width=6 height=11 xoffset=1 yoffset=26 xadvance=7 page=0 chnl=0 +char id=8220 x=153 y=388 width=12 height=11 xoffset=1 yoffset=7 xadvance=13 page=0 chnl=0 +char id=8221 x=98 y=388 width=12 height=12 xoffset=1 yoffset=8 xadvance=13 page=0 chnl=0 +char id=8222 x=165 y=388 width=12 height=11 xoffset=1 yoffset=26 xadvance=14 page=0 chnl=0 +char id=8224 x=269 y=328 width=16 height=23 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=8225 x=285 y=328 width=16 height=23 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=8226 x=177 y=388 width=11 height=11 xoffset=1 yoffset=14 xadvance=14 page=0 chnl=0 +char id=8230 x=350 y=388 width=30 height=6 xoffset=1 yoffset=26 xadvance=31 page=0 chnl=0 +char id=8240 x=18 y=258 width=28 height=24 xoffset=1 yoffset=9 xadvance=29 page=0 chnl=0 +char id=8249 x=29 y=388 width=9 height=14 xoffset=0 yoffset=14 xadvance=8 page=0 chnl=0 +char id=8250 x=38 y=388 width=9 height=14 xoffset=0 yoffset=14 xadvance=8 page=0 chnl=0 +char id=8260 x=0 y=233 width=19 height=25 xoffset=-7 yoffset=9 xadvance=5 page=0 chnl=0 +char id=8361 x=301 y=328 width=24 height=23 xoffset=1 yoffset=9 xadvance=26 page=0 chnl=0 +char id=8363 x=325 y=328 width=16 height=23 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=8364 x=46 y=258 width=21 height=24 xoffset=0 yoffset=9 xadvance=21 page=0 chnl=0 +char id=8365 x=341 y=328 width=20 height=23 xoffset=1 yoffset=9 xadvance=21 page=0 chnl=0 +char id=8366 x=361 y=328 width=18 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=8369 x=379 y=328 width=19 height=23 xoffset=1 yoffset=9 xadvance=21 page=0 chnl=0 +char id=8370 x=416 y=127 width=21 height=28 xoffset=1 yoffset=6 xadvance=23 page=0 chnl=0 +char id=8372 x=67 y=258 width=18 height=24 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 +char id=8377 x=85 y=258 width=18 height=24 xoffset=1 yoffset=8 xadvance=19 page=0 chnl=0 +char id=8378 x=398 y=328 width=20 height=23 xoffset=1 yoffset=9 xadvance=21 page=0 chnl=0 \ No newline at end of file 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 new file mode 100644 index 0000000000000000000000000000000000000000..1dd989953b869fd31a1a3b16ba945178092dcd50 GIT binary patch literal 92390 zcmZs?cRbtg_cx9ZYK2lGh>;c@c5E?fwpHrgVYT*%+O>k%MQUrS_NcUIYg5$Tu?cPL z-P(J`zN4S_=l<_qe({%rY0dFp}VK0_74dO8Sz^( z5-K3^%O3LQF$qZ^$vridCrFdEI#7qFp`oxp8XZE*$h*xeF6|nJme4{oW_MsY>0hZu zseaU&2{^Gd6vnRJ80r|=>QYz3lrO=|Nts@u`u(yUDVaMWi2uu1Qr;hrS2V99k6z`?m& z3zfkSov@~FgH*<(-@|6Q(;x`2Q;DN2a0UgZn@@EYp68|>RIZ^cq8}8Wv?a$r8v+QW z4fXZg&8$8E7kKu#%A(TT z&uJJH7rO1@l`=*4%spXz*}^lnQu*A^+yhRfE|k(Yc{irR-Ro@~7Ci_)_>ObNOz+g` ztDL5PBAjBUnK+GQvLas{OBA>|-+LgNcd}b~!7>uPGRKZucl6(ox`^#d z$vIhaJl85QZ@5=R${~9UY?Ke)lMG-;=pE)|_!RxJ7PV8j9X>Wj{G-`Z0mtpk^6%@* zNdKC?YkZHEub+b^7cPcs&G*RComT*9AC`gwK2y3_?>tXDp!%$y65u9Ubc^qFI&gO% z7L|vlO$%FcbpzK&51wKRkJ*57jCzKOAHyTIq-#N-ML5M|C@gWh3>N$VIwF?1IkW zVR&bZM@8@%)W2k;{_#7YR{OO{G_o+j)b z;)o+!vf{xQi((!ydr54&p~cUef5QPDg8@H}Pr@P6Ck4x3z4I#2Ia}aKTLsNMR_}6+K9;P< z)wOQCcf_(pNS;`v)i1o(QDu}`3qI zZKiXrW;II_y14uE`iI1unSVolfCQhEQhu&l0UT8_c5Df>$31Xxq{@E!8eakD(uIYc zp3o?7CMIl1{=cz27bADyxIXKz^z6Jn@5*@LvJrqJo&Pkt8h|Y2AjxADrJm&|Bw2Cl zHtvck6abIp$LcYo@=`UJMsWM-ak16&$eh#NllzHM+4kjLohz??l9Ft|$8D+`o}v_- zCKrk(7E+ye7u_L}5yeplp~bC%=YVS!6Y}Q=q$<`SUD;nn6`1HIS{uTYNpFeyc5=VM z2Ce=<>JC?ylcM(gj?aYYq}PmvggU2d=ogq2bN1pz`OkSwfTo5gAN41mL;PP10nQkN z0K*=+6^hCHw9_{NL&9_uH50R%4Y|v3cms#wSZ9sgE_f;u}9JQV)E7gRz0yl39)17J_gFOZQQ9_ z0q@wDBd%?rf^uc&t2vh#PTdcI*5KKmGR)oG=7A6G??GG7>uc{Bk880;gEijkKXTf& zr!1qG{-$0=diAPND02l*Q%r+)hU7?2?ku-W?V3V<2(J==I^oQaRfH|rGVo-yg5jEg zBKZt)=?Z={{5s-)HFb;sT!WTQ;?cJ7qHW<)&{msjxCVLP&e4sBJ|kwDOm1&C@!lrj z*L`AiObjC90(%Thff`(4a8>wx#D+5>lJ%v1WlpF9kI2CePwa(irDRe*HZ+X03tZ<) z68&xqd`}Y=Af=+vf`1%!3g4zhX@UAle8iK)X)?d5QAYdMhO_y!YC&=mHm{z zE2eiNAN&ZevT^5|$^`_4a;5WTtSDs#Es`DrhdvQF{@}Q{#0r-bvv$jQ1AREsKNqA| z@;dEdsl?^(C6&&XM*ymkF^_U*IpXkkJu$*7XBV8D(qq0}4zkS`VGxbEN0nJR)-~FR znmEz>6C?6-qjNY$Z3^uay12LjFv;>Gb*w3WKiHux$8}dK050Q%`qIa}%1_Nk>%J}4 z(z`I9!DihU=csGTM0twyQEx-2ImbCxEIBSfQhX6=oCAIsNLS(Vqz^rUt^^YTOfM32 zaUKF%XxgH4k2!RI$^M!~8oKN3bN`&d(VWZw4%}e4e5o{V=w*XzJM02X|Bhd5#cs3J zn_sm?tU8nfNwV2w9p@r0805iFR&YgEW6TDB##gtmN^Z_@7f>%8#<%gMCJ}FqyZq>{ zeP7Po(>>U-g9@Yt<9N82JS@igEf@xBG?edvQ5bNIi^wF6Am#-UpKjKFf@2nkv9Q*N9VRK%#Pb+p?{@YOYI zaA|n@Wz<@<1b#8Dc!8wwX!s;HFk@znuk#Si3{238UKdnF(BMW%NpGS9%LB>Cr9YOM z7^$^QS1pFm-)ayPR3cA^B54x#`mzh!Q@%sD%a~)2EE+r>*tzI7nq_ZzxcciVoM%SR zXrrCMad-XA|Bqp>_H;hF#>{Bdws1OF&m59QJHd1+$w-^LzIJc^*GQl#_hb4Tx&cPB zlTdwaR+UQj;*_v;!$d}5EVnh4W6%x5y88zK_IBjV0WL*ETLkbCU)ce5*$Uho{=&1Knma$4nGUaX$?hA{Hze5& z@bC<~_;SN<{yTfTi8+QoWZH{g`ln+`U!b?^K{B$<{ivp+I`424yZY)3IXM_>P8A(Q z)+8#1|6vIi0|+tgPOrAO{xW?p*f28lTC!1)hhlfp^94`NbG9Vst`CfJn27IHQJJ?> z5`Q!U*b!RAECki5JTs$<`fU?%yvgj%L34v-2{q&CZ%MIr?rfg$=iVanqF1-;#ZFHe z(=#=@wjmg=wJ)eJ_VeQ;HkAYA@SWV{k%x|F{3g6FrrIIXJ<1zcVLC^pnDK0Xme<6)I++{>(1E)4FZF=9exsFEyl>vUfd`N>7(~8(^q5tJ$t_Thrm6w9p1IA zRcV)R?;opBLfr#cOoMU6@x}>BnvJLyW5egaHVA?Sw;kTUe)DWm5-T48S*U@FV*Be` zvi2yPIA1Jt}G1)bN)Qrq_eTB6DQA zF!soO=nwrg%-W=5h(t^E?8CBu(|5aI`@#SlWS0d^FW6e+cRc7f0{VZf}*t)+m zT0D_mOZfi`cB`zYM<|Q0`3&S85d0j^nxuU&WJ5D{NhQeJ?kE7@XV}B~y4D*=+qjx-?(>W)Z7_k8-(;Si!r$cmTCJ%NF~S=U-^@@L)>} zM#a>|Ymr0_r&x9HtH?gOKl4pantnj0wL#%&rCBaYRLwX*_mlpJVYvQ~Ld5ksXMGll zHJ|Lov|MSu-0epqaS8XF-C=z5M%lN=j(v!qqhtO1jj}WF;y$;o{>Q`@%g;$C^B}1{ zGcmQysH0F_=yJA70PWVKN{A)SL76^K&^jm19MlBirf+}htH&nQU!MHNq^S0p9t?Bh zW_U{hnxmHesxR=**9W&{J28k<&|hN~f7;TtLS`{DGq}1-=$;XwYi^s)fqK5k^Oe#) zMx?38TcddOjUq#1i=0T2Us1(SCU9tGuWpL+UjWG`#0!8^AbM#-l(!>&I{fCY4YYL$ zgOpC4Yb#5W7#)ok-c%=L=0b{1b+1*iWgjH-jM>PP-##bCme5={7TG*pDfc|RWXbP^ z{oWqYS`oKUEOWZ?d?kI(O;IoDy65srOhh*IQdLFTo+79g+c3iiK|d@!=K#qWjFjr>Fysl_cCr)nUg1#M%m#Erm06wbL+pMfn8t zQD6B`H%(}(_<_WnZ-+AN6J6F;iET)9!{@Mz+)viDvv3+UfUWZ*Gmy$&78z)j@ORsB z>K$7+_QPAV!yT`~8T_V4SPHWd!HM6SR~a7zs?Is&E^JV*V<&PFxKzu3?Gafk-9yK( zLc#RYu5b8#5@q!uTMBrx9rPw4p`1egPYCbWhbAp=A~L2Kxfl{WHdADHXl7phF%xZv zqm)75Q?Ze&-*%hl=1C1diTw+oA5j_V%f_O0sqMKxgjcdHgF4Q%rTHuX^_x-wdr|>v zi!#CXK`%a!DjTDLeN$PDO60lzmmuCzm-8>GScF*MPV(@L^uf`NcNGM$O-KeOmNbvw ztz~07x6p0~@1@))*aj1Ke9Tf{u7a`gO_zg_o7_<~@ShdsLJ~<7T!+`y9&D)rd zCfd#hx-pCiw>3()`V2WKV4_^5IZd1YNWsC3w?h@qIk6&k?B=hR3}(EI%QF_LmHyDh zHtvuLOrrlmDU9S;P%Szz(52O>kSdX%7E5f*0*;Fo)tf46Apv>oKcE)5f}n9q5+S8n z#QClHlZbw@YK^VZr^x_ewPC{RHxZAb@ zgFiA@GKtN`*$1hVq2Mvtjl;)=T1a|6K;DLvAWr5eB)wW=Lq>a25K4~ zw(K%6OX-E5Jq($D+lW~H63x6VarlqpnTpdR(zs&xm~>@r>M2#cn8iM|NG`=dp5$cr zKN>tMp1`Tei^17p`Wzv4J=np?)m!l?%6_G*p8|^pD+8#&Sh-J44&3 zD$L~oNO7<|HQz#NvdTgUENSN$i_< zKYcJ}0#edPD$T^egohh`9@S1=&^zisHN)H(A}Jw{3i6^0GE%(Hu}Q_(aa2cH++|r> zV`WXw=L|6w!TLrWV3MZNb4!GuaeB}AS#T{(M(&e(*%j1iOxT)vJdq{m@aQN8Hkxq9 zd^^up!;qN%l6yq&-L&-&?EUNZYts@>4rtdL&p6>DGk_Do7?4l+uRFdsK65C3aSQpi z^CpbRXH20h=tG6w`o8ws=Uo}D>0^hFwCu=2le}=?l?>8}L_w{cAM$?yv>ZtQ!uyS) z7WoHc$fAMqlY8miXfa8j2&JyrAlqxcw`vW?L2pR+(;8Sr$MWr%k<%Xzx85c&c5H&l zbk4qOMy)ja?kyK|(=Ej&%)`g9DOJjThS=)8t>TI!<<>)%JD7iTT9BF2oa7dWuX>*!Jk!8wacI0g8iVdo?gq>f zhMpWc-3N$%ZU-~E#=>*rL$b#)%)YglA>XR@e@)7`G^t)NLxHjeNY0=!Y~4Ee4so3a z5LWh8BV_2Z3f^eqmL1nK>(<7P%@e_48*59m8>Dcx5(t|(>XZH0$6;m|diJ@~!&8?){dINoyQ}k&nzSg|)M)ps z@GX<|LvmL~{Hi7!hSAD|q;X&Ggxrw8bI{ z>7UxScx;}o*o+85+htAb!En62? z^4|!)ilXNc$?F+)dIDOV!L9mX`g{n*iqPU!J4LQr3KJrP`SV%DIUl{4=`ZWdKU4lS z8E$-`V=LrvHF$C5yIkT^x9LV@TQ|i^sXmvNV7(F7L`Slf2g0)3rn$BgAKTYMlsdS? zbAXNiee?JA|NXf6as81}a45l`OAR_NA!$%OfMY1Yq-?qJy^VOicQwAF8 zn_kwk_>84t*$7BJ!8=jzrt=X_8m*RQkKc&$(624=Q8C)LGMY` zExy5-&(xg0NzCY?8vH7<>#t zS$ywMTB21D3HZGG&&zysTkauF|N02HYWe=|IZoWtf!bpYxbp1De={Zcfi|@#9kcPsaR$)GKz4UAZK>d zG7vMTELuxJi4ck;yHmrG7CCo(PhV)_^arJfbhM?a=MNKu1kW?1(5K+~EH{b{shjfE zjPd#ne9(MEQ;cx16gxp?)+nHrSR2Tn9JsS*@4B9Ln@wx!v#bJquoCH#bN;i(K`z*W zYrP_Ug-lZ`G4m!zf3mpU?J#2*RHbd$W(Fq)@hkxs{^Ex@wj8Nhvuu(KCD4z4#b4pV zjXciJHb^|-p zy`VpoHtKjv^A)l6q2yvws)2G@Lyq;t0LPY(&MjiDRW~n`Z2~#vXYec}3@5@ft4Bma_ld=gG~% ztu%{KD_xqsO)!a)f4liRJ2QL779n^P&)lf`4F`giEX2<0eP4|X$X>&o18wH7gA}&x0+Ws`?WsaZ7a{XAYg$+pq;`3YsDatE_9)2&sNLy3n1;=G z-*8;#471y)iWLrg#dRk7{F<_4>6M&n0k{U05%VlU0k5y?exssZ)xQNa13 zoxQQEI;&cLTCPCx%>m=`-JR>z$n6sOYd$6mx8)9XTuogH^6p@!h-I%s7^aH|M7uSP zWgGv|ZEXRIpDt&m)#(&)N>~6X85ienOwjQ6g0<~&KpuIe)IikajwR4XiaHm_+yn~5h7gJ+e9`@=nisf}j`kLN`;FODq1HU=vo z*iu$t#_EG2P!`bZ6{Fde$!{Q1ei3oR;Hc5G3P+g!Jn|#u9zNo9NVFr|1c3H(Mx};i z-stSAkIltOCbQyy#Ivq%A=7t$9HXxJhApXtXe!XnGVBGKB(_~xmyMG-jLO3%?*XB@xXPjah~rh2tQ^((b**>bAV`uHhPcHYJC4ka+V5 zvx{>7Qm!$rh}RJoyA20pqumW*^`^FF5f)b#=r4DWV{6a!3)R-xm5F2%$E1)>S%m>Y zn{>DzyIuV)m$_$(ldyvd`CqoLZ6}j`mp4Aodo!lA*L@c$n}Qf6s)rcD#J+a2oh^MN z4T02cCsr(!jYz01y3-`>RecPKaaHd}^CH`sCn_Z`7}GT*K0!vr)Bxk?K*AVm?9lSxLRuhK5urj$7m|+N&OBe#8b{1l)f&+Z{7yv+;5NI>PM9*2oQC z1^rmWAyG}cedJ)U#=ewpF_JD8?QoE^^akQ^8gU)a)p(NGsuvwp>zRBMn-TE3Q&yC$ zWya1V>`$Z^muce{4%g`$LrW}Z2(`>ZX`m1G`1I7Gj-LFsR13j&@_r)kSVlKdDvO|3 z^dwY?`KT@@fz7y2;ROZ1@ELDp-cq4y%*R86q!#SNp39M;Y8g3y4FNC_a%76`dOy#o z2DF;ez7^@Z^%l+{Cijz$+syBAkVgutVZbPH&4p+Do!G|lHKVGUS97MSP3_Lldg7vk^Y?!%Q4mKv$q5@ z<74w4=GtlcE)XV)9NTI> z6p2a<-$dE+dJGr$6WXGN?b0hD+^}5o`03O1-Nvdf``^W5zR<8?5rHBpwf1`-*36yo7RCyNtPiz6BKNXe z^k;XHkI>b7pB!j)w@A|u&k>3f?bqNS7>W3W7O_(lEAut}_fyzFRML?EmaeWH4jsA* zCzv^tgA^h^>gGtkKnFecPz?%9)NXmlYcwvVcH(1EUsou zM^wgKjwH^#9mRrfBOxD?6m!~@-*s9yalgsKHH|44Z7a)WFg{RapI+a4^uu@Nkc-%F z;+Agj=W;b2NSZN-umk_5DhQK*8Hl|z>RZ7sKk^n1xzU)Tw&wgiwA*$8x-$5#l$0Sd zFicj7sZn)o!SSI8nWuHsDU|L%8|7_n1TckB;^KD|rO!sRiM7~YM<$*MJVYN%XnoJ2 z5p((KB*?J!)($DIW-lLxFm?V(DFVZ=8Z2}QZQZ0k{Er`(a-*PJ#t0!|n-~5`Q^eqD zGDS*;SL$O@FyLJJ8VQVQq~G2W4e_A_dDC@FJf}a+E}#*2gSk@fX6~>sf?+-PX$vlX!Q~^-qVq}_wpY%lFWjV zZ}_km-{;$jg{g(?s&oF*+PMWrX!M-En~xG4NQ}38gZD>fC?H>6{nwWYfz_S=;R{?g zHr}KtJ{&2g%i)Ti8!5Z7{U?Du)Z37e5!68e`;ZJcP*tuX0=cB1yP*bBuee- z;csH$fNkoD$G{ZsKUy#qlqfq3oBO*MY2U#R^;D$~MHPDmcYG$^nLfMX@F)I|;x}8o zZf4eZ7fm{044k+f-iPJ}l=52iyNtfX?OCBKyv@)Ri;-kX+)qm%?47!^R6q~%{I$FP zWb%$J-29!V@m3$FEMc*b$$7!UJ>bb4N{oEPQAs*T;*-%(D4UE2U}LEEkw!_SMy1R5 z3QM%yg|hR{@I^b{Zd4L3Ze60Unn|0OFaE0kubfrLBgABu_}3^rVY0{p(7q=8(+$2U zgL3Dm&$c(MXt#s+h^bm=yPBQ#^kKGSMBVB;q5iGImmJy#C5T|$&STomvK+=ufV2j` z%tNT^&(8wZ(6J0Ay1AUDk3Y9K2O@(VTzgK6?A&F)ip32J6Ty!x_vGG8%e1kyGRju* zFF)sE(D?dy4@;YECaxPiuKIDN?DF1D`bOFJ9mh?b@i%a5hdz#nOK%yF?k35$~N=ZRrbxD%aaq+D*0c9O#dZVLCqp4i`_0^~X=Z>qDmO@T9Labq#OE2n@uJ#Ht-!&}j4 z+LNtx58F$CT=rr*>m)U564@2A3(i{AnC#uzYlR8@tG{9Of!$@5sQhl4K}%xiyVd5a z01n(XwSPq#=xbg6oiwm3Rg+CB1cq5<@mRh$imn*8L=ns?NPP7iaK5eya+ctGmsqaw zz9LH`NDsC*4OUnWMdxzQixmE&7q|%Ig~d}M^HVoBevzBvYi7V&4{ceY@t(ALi`+}m z#}i-gEFf(0oop0gqXUPAUU+Ntf0`>3#{CHUCo}YpjspBCwX`A;djXHF#Q<*sH|hFgAkgK^+TQH%xX(=@U#_$Lg+ z{kQ+_X|2`2(H$G+*gtyLWpQ4@g6|{{wR2Z|x_LFRfpFO%jL?bIi?ue2ND{;ShL|wh zansH72B&;)Fi8E>KvUn9jg_ain9pkWe62afy7koN`PMI{a+ZxeSKNbxsH#MqCO(jx zs}wl>Zjyw=`)hl#^%HuGK-BP$Q(_x6It~NAXA&Myc;NXQv{?U5CxxL+BMPA&)g|?x z&{q4GM*JU{2cuZ)PGwwBs-tmdeW!72%diq}J@dyRK)0~={Kry$yx2ai1Tdvv#2;(6 z!o?nW(2wVTOu~>U!RPUgjT)ZZ_mF7$&gzrrB>|QhBAjjE%?h_AeWMIsy|}xwlz) zm#J(VXYc{cvYwX^%LY&^vW30fPFDvt*+kjeeVcvbF%#vm>4(E-c1FM3g#Xt<5kA%O z?}lu|bw4@KcEHbj3l+2DI0jw+wN68zsDooM(Xl6UT|-l)B7btTL^i-oLaclEz1hqY zM~SIFH~xhvu6~MzJ7c#g?N!l@ScIvGG)TK9Cf(!q3kSj9t`BynS(GXIl%g!_dL)U7 zJvH>xo862EklnZ52Th{AgTFsBaNB1DH=@dh=j|w>%J)10zpWoOHVFCr#fw`9gsQ5n zme_f@cu!2`tUs*&huL8Wdx>l;gQH`u(tnB%T<7gIHV4ad+RhmJZ(`M+4Vss~@~_eB zR2u&WM#twuxF*>UXXcZK(yL9B+%4QcE3$#2R_=I5kL}boT5_`^k2M0iE|1gJ0ECPt znq$Ljw=*F{Y@gH1?6&HD_Q|5`9K#7V>VKy%ZvEb%Ha}gE`HV-Vj-T3eQ3Je@>P(g8 z!0ja!mWdC6sJ`#&*xo0OXb}b=m|w(fV#%CWiG5p##+Q{bzLqCT{SQ3)t<;Q1VwS}2 zaxL~V(5*pZUb^p4%g25Z>$-Cu<$NzD5(t*7AUdUCP-ylaz{o*_Tc2Yxn&75xL@z{b0^m4VeQj&BJ^E{Ovusuw!ePZmmAscI97@+Ng z!y?Ha(B8#aZk?R)r!Tf)!mfZ{8kbj3=(QmA9vt|nwK&<4+t9+;v;9t@q~uz$x9OKW zJkpdb3H}~1wRyLFstMYdvWE3db1d-)7S^uP0A%lhjtJ?C{)NlWf~vpVp!)ICa=Y>- zTjmLUPK$E!bIDJBct>~K_+6_#qJmza6MGrtk3+2;K+Ba$`nbi^01j-(DW9?f4TEwO zfzrob^&Rc0nuK&u3`GuNW5BPRe=Tp;oAJQ`AD<5J8(rY9Mg9RR^uc;^RS{nBG=Zni zLep6bd&C_b6NW$)qVpcd>5_2pxKKY7s>XJ;J;B@ z)XdyThGQUf;}1CpRP#ykH!WqsUCi8m++~c*(IimLC3U4dl@{`etON_qXvm>KDJvtL zwc-cy|189};n~r@q@szz@PacV-*{2%$Hw~F8JwoB-ujCbOXhxPx&k_;Bc z&0l?QqvisjG7!50M%7rViMjb?yhr-tTybkRS#L4tX1AQ?a`@p1dWSmx_Z8#S`z{k` z@1HARCN5e(XdJEEaON)`s%yKys{#%Y9OVl?t|j+@#s16&X>D$lQ@U-XHGGy7RqK^9 zmW=LjmOybMvLK8VZm)sCs=i>j;^UhY78oTo0dOToS9@=ZbMhMJrue|lZ9`-=Fo1)B zsVv7@&D*RR_}DCox@9*kQ0l#hOzk92+#(M=fR`|#-^{X5!6smDfr`Gm18xG6H0)d|CgPkLx{zT1ak9 zNcKbQCNL7EKCPRepx6hW;u-1UC~b$o1V0}Ho<-+r#VfTsxESg7`_C*huA``ugFZ}e zqy#|cpu%)P$#9_w%6yhQGI}PI#^eb(@Q6$ggi;=VdJ~eT|H0SxdR;+>yYl<*{h$oq zGS#z{prcch`lw9<1$@xSWGnNHYV9!h)9h=C2y~VuU@n=WnMZjr!J@`Ye5+ARlX*wT z_Tpt?*pe2&=j~IP>jPw!!DkXL_`&>~$*KGQ=#Wwetav=C-}>h$eCV*M_zg7}NYYht zWrnR*qg;*MAm**zthu^+9Yr2(;_3P$6Q4WcX~fOB4ztw2u=qaDJ$~@y#El>5vYWGF|Pa&1{@I{oCnbb-uUqCP_$RHQKmnoxOsfOn7Vt0nGVaCW_$d3%>pxl0S24v#sNb8HRWgC zMtcspVl(5S{edPFDc@j#$>OZa-rFPAlfZtvg0?>vYCptAY%E^+3DR7o)oCu;kpedC zixRI`G@$m7Vz4(2=CLNXq~=s^gvCB8%NH21+o^5V7T{B?2Es_rT(UPQo<*lerMvlS zfebc2_WfDo!1iA4j^S7AyQm|0&y0S}i6)~%-8nP4SaPfzKZ{nF{OCsq)nFuWHI{`; z5e8{C2_bo+m`RrHjF=}mJS)t#Lx?KmOv}Jt7#twPp!x&;`mwY+P5-eNcR8K{pafJIx(^f4`V+y9#1{3DWE-_gWi1_33fJ2#rh2GbrT*pE)k()Z- zJ0|R%VI(hjL~gF7l@NB_bm^vbfo;#{65?s4dnp`%>!Rae)W~gX44E9UuXS{Ubv3Fy!2w(8f2C^2V#E{6#r4p{MD&$CrPEW(qJkHroRM~3glGB*1t)ssnhOVU@ zzIm(YDEvDa5qz#190{BU0i(_9Z)3RGo4jt8`A&?IdcB{YqCZ3j5%O|c4A>HObIX5CwnERE zz53t%%WyZ;Xr`4I^2|~a@m1L#FnxEuFH-|L^$L+J#A?vvcNc(Ap;Irq-zYK&GfgPL zP|WeRbDFa4HQg~11Zf-uhOp?HRZ(K~cW&6MHA*q*yH_#BDcataYeBvBcw{#vc=0NQ zG2zxNBgLs=H=QS^&eSm+uKqBaRFpex6X%`B%x$j2@k_ZLWlMHZ6s8x=MMryN!7RSV zu|&Al9*jb zZGAESuKxl7MF6!KcaJ2*tp=PW?&-f5Wk=48K-Lg&_U=1j2IZGC=kt*)-Rw(~rfT&` z!~2BKzIqsn?wIN!%AV_{8aNgQiEN3U>=p((2d=-9ZUPCcu6=NrNJ#sa^B(xVurf`w zXTObAI3Wv<93x%dGEoJWUnMMAWu;)QpC^<_Sc&YN^|hOo2q2ZbQ?4xS+dN7x1)Wy}etPG^ z4!atFtGE+om_Jnh@;4PcE_aBS3@%kQTju-^zrHhyIie3aAGEU#ZCWx5LC%Z(6<*TB z*6Li!he_aFl3#x}>ne+F` z=9Rg-Y@nClENd@_S_fUzi;aHk0j*Q@@lq188!UD9=yypDQY%3sN=Z-SpygXZF=j^W zVxg5`)`kwaW>f>V`;Oo3*eV@{%U(zktT`fj36;V5GfF3MbTYdfmZE3|1B-!o8x3m0 zUx_*f>akXsYE}P(V$lXd9A*N|KQEAn($;6CzNe28E^B=70~PgbM}}0aN8%Q06nfJb<*Z*zS6PX7s{Su`RYcxy zW5$jH^sQYOUL1H8u&B;SGm~9-S&$@S6sNF$+?JU`a9)Qa0i^ z0MPruX=W1_ZG@y8E*CG9B+1SUTR;ZC%P3M?QL*hNPv|!B^i}%ras+%XcSY%Btj(KI>=Uj%!P6&;pq>$6?SJ%ZLq;v2ZN)B^4@?1p;~H=c$uit=+%XS*t0~8 z4Y7~&cZyh04waemCsV~x?RHkFUEyO6lHuT8O{@G#Rj2%2*sq-p@q79`O+*qYCY>z+ zr+q3-niWACzk>#`;KUrsS2IHiPV1Fz2b*CnCUK~8uCnRmn= z2&dN}FEj@z`ovpxUe=Dp7nE<;Y2imQu03HGewizYle~R$Gn6;&Ry-KE3+}uu7MhX= zInauKrm%i9a~p^q+|uF*c1_$Ol-#Ey`K3ON*euWo&`w0 zKT+{DN>W^D8vf3hi3#_i9eT_L|D6E~jP2r5k5m%1zfJNF|1dl7j{K{l$tj^2L%U~k z^m0`?-o1^J_HyHrH&TY^wieSw zEHwHA-OJETQVjx45hdpH3|w#N_Y>kNZJNpLHzZG4n9tNWal_n$%;==O#-$eF$ZMiA z^^mbcN?!c$mB;_-`ea&;qez7DK4gMvR&we=k)mMtQpho}BVidX2gE-U0SDQrJ;}$t zZ((jJ{_FacA9Jz1KIHLYTN^N=nTQPAa!gM6FXH+9+3l3MUD1L9HFzI<y(tKm#vLU^*|N&lUyO)-@RO)7Ca@v7Lm}*Sz8$2gY{?Peq=}A9 zt?E((*2|sDFyr+d&e$SMbu9s_wK?7Km~?5@#+#Wq28{{4ZCpbXc+cS8>j-C^d*%Dw zz54Gx*9PHF@@lp7N<5-8xbb0?zs;%x9r-u%|93*+60P=f#)lBg*D=607rbEAh}i6j zdWJG+;ZlnFBUY!M@rIvip9Bzu_O&Mt{-(!q1-xH=C`WGvO|$oz+W7VKCG90Of5*cW z#e(d(RGnzgr?cDob*1(@)E4Qv`7m_fp-!DG(pu2-z9x5#e@uEi)E=?mPAol=FX~9l zsPnl#O;>O5-mh0b( zP4cU3+!!m`8l$mp!F86i=*&&Y@kKpw;E4oL;b)f=W$+5gV72^o)jC_OCGS>0mn3me z=2=H8_oj9^j9A*i6qw*dyVpMv=MtL`$f>svJr0$Og_GI?vO!wGet59F(H~W4W;VijyFGyJ334F zrC?-Zho0S0&SyDs^S3GyPNG#9QCSbUm&EFo>>f zCp}nAux8fo?5@e4Y0cnAg9HKni2b$oJmN(C{$2j_JVACOh$FxzTfnDy7V`ON*WWd! zEC3DP`(}im-)eN`fDJ3R{*1*cT`Q1Zl3@_C-v1r1HzOZm0<)sy$)S!0)ZQi}=0aGQ zxni8Xuf0`>OkeySazy5g-KH0`g@FyQXxsPl6@=)hH6ojPf|8#*PYYt3mbhMSFfJ4K zWV_W&6HrcGeHXVmxKCrTHL(C@mvVQb#^X04D~`6*KnFx{{R6d0_$VVS^VaHsFJpU4wZ3+ zt_IKWs|+2(IrbUIb%3{3Lk9njx4mb{pxkP3dhO9!6m4|KD(%V zf9CY{)Qle=k|2tCltSkT8Ypc)0iiiomR0tK%?*wfASnN5$KF=c?0H53_9_-_l@o7|=kuVK6TD?7oWvQTmW_|LuvbkO zx#tUP*Ye!8^yzaX{?=wKsz;YCaEj()nmN$D-M2+?t}g**R_pbDFG@&=7wD-SSwv)1 zxW}3v2qgtOzC|4or}J&*`s9duI{t5&vi;lFdUqW1nBhx>{0H+VJSh<+VNI8oqSaYCnb`hWou<*+<3G?yx1Tz?D*hti|ky_QT(-a!TSCBR!+{5 z1wQx7YMVImvX(#J$?Z`qGVvHy)K?*B3)=H!$X_lw2-f@^PXP$?9<9jj+-)YgWnVFF z970Tq8rr9Hr%k|fBLJ6Ww!qi{-}da@5c}UPQNW_%s!`sk>oy0RneRCi0^2~E&WsY1 z1?Dm!cvTFkb?7TBmbT7gMC+dMBX^_~d5}wjzl&m8_q?WyLh(G}M3QH^cLl91&DS!m z3M~p&ebFpctHz+*Ghm@wJ-5bx$@y9PG_2pnF}<2=!AQc+|6=T|qoR7)wc(*r7zRY? z9wekex+Rqo1L;obluo5PB!`xe?(XiAhM~K=;obOqp7Wk_zUN)*`wxb-W^u>9?(5DS zZGb28Q>y>la>tQ)(K6MjU7XS6K~>r(LyQwkUp6>tYGqLu+KjnJ6hA>-G8qOffW)i?b*9luAhzuU z+fxHu>Q!=SKOzD}hLgU#dr1--xDKyC!x7=CcJr6Z<)XGYYMu1bFJJ;$l+*akFUCg7 z6i7qG)rvzVby6c{rudEzmxT}VR|vsNC+kpmPSh_-W_@{<6TPF|1ccjMx|f$qM<<(- zG6w+4{q<+ab_*)h1gAB(S3FEg8K4%A^0laH{jp{miZvlNdWO)pH2yAKr0?;e=kwh^g?HnMkQt;h*} z)Y|3!x?kfV>k&OTzdusGC?Go$J+H@`lCAf2l`y!CW|~L(QvRMxT@y$Rp+L4;k2NH$ zBx-};q>Arp7olbSsb^Xbaaj!1FJOFZ#?XwpmR~y7OCkyX4QRlGn&<<0;Rhp% zboWnTIO8~gFHd6cUA3?l_;3Ew{f-Euece1f+!glp7q~g}C(h8~(AI6E_G?^w*C`!P z5E=LV#J=FNmcaeQnhYH{O_%U4S?vfOk#Z&i&6MuL$0~hlOwg6v#Ovj>5Z|1;VesRu z&Thf{K?Jbh|5tSKQ1~#DYHP6Z(`I0q7h}qBNmG@7Cv{`Vt2gWFJzjcxE5_nc3(P() zhnnNCp3K*UL%CkAV>Jm_X*R_*v7vZ&XbpCad&F{JUXJ)S12j#{m$ebmkOD~Wf?fqJ zWHh|2t&|F$Th1U2wID#N5OLK%Oxq5Pej&JPx^(pY7g~E=2b7XL-Sy~h`Llu~Ir)!V zpI>S0jxgn`MK8YTY+I3?Hi-*`t?Cq|W%-5j)yXw9+e^&LlTW1^k4rBKpu{EO z3kvjSGtSp#`N8=-DUB*ss?%SpBC(Lnl4KwO{@-Fnj3nkJM1X4WW2uf#ewqKXby5&7gaGkY?p_!rye7Q-$Q7RXao9bz^KS>2*E@Y}Y# zFmr}g^yExK2nx9}Lp(*9hA;G;oQQVPG>s@wpW5!9A4zsW7M?zga0$d7cYH+d^Y<=m zlN!>qyUO2CGn{;C?7vWSV#l@OB!NGM5PY#!|0i0H0A6J8?ieUoAVtcngdW#hvFYAJ z+I8^)%3~bYWW;`G<%>FU{+(i|$nj8&a1WU?@OSG}oD_7FFpKj|e}|k9Aq$<>+~~Y_ z#4i`gM4?4Iiw;qy`tIfd3UhI(MOkg)i6y)XI&2dU96s4(O;&NJ&d48#=hF~#myO5C z6R!N8BXkf|Ma>0{%_G2tZ}=16IlV(`_H!)QXVcDsafSe1z;UW1!&Y5**6w$V1zQOq zQx)*uO9>%m!Y1c(l|C4Ac3Hq_*ae2C%Kxx*PiDiwk}H?4kUG2MuR*6&%kb<(T%4@W z>Js?&6ds$e5g%sLf9Tu^K5D&3$!{FNXh-8p#De^<1n2$& z-qJ>KN@0#5O|4z0>dIx5HH;0dpm!mxwRRA3OOUM?NOd)-(MkjZ!XZfq3e_YV$Kk=9 z^0hx~J+hi7A{!4H(@BpR66t7lpm-&K`s!(=8hT=Af5&8J7+DT=AZr#2fTfU8J%feI+iq>C9XHqPmAp zvvGj*`TJ$c%kSK>o|Hi}%Y*{#VSmN+9p~-C7@U+~nHN()6I)Euw3g_D)TEVkZDsKN zU8-m)R{FDZ+Kfi#^~*(oJM^|J*VBZE zZp6p!b>vD_%? ziG36?&ihWC#f#~Le*gUT2eNtgWsE*EXe3r^n0LJ;nIYKtA-I!NEtH;s@Sa=phG1%l ze?|RZL@Xb4?9J}pW~U1|vBNf3SSJJvpOU?UKHa~uBik4I5kv;{Z7glh3y@mJ*}@## z#t8|pz_(eBie?db@4`Iqqd+v-tUl7(7gGP@>QH?I2iOfU<=aF^MQo7?vU%e)U(mD8 zt>7IhSK>$!{&TO{$Rz`j@uhBEg{?C%7eG8A@B}}Hl4zB8IpSUs3A1ey?|q+0IISrw zp^`BBVNwZ8l#VJ+$rkvP^UbC9pC>L+nFq#F80|M9BX5WY{m8Pug^h^0qHi-tlV`oq z%qw%R9^LwP6Y*cywEp>ZzFCYVl;oGG8l_=Z-V*Tz_vp0I9!XZjFYc}=)0R@P{tc-2 z3o#w{S_DyIWisoKyFfeuwiV)6{d)MD5V~n+L$}v82-! zjPE6{tYR(ZGhmd|NrQaV#o^2Iq`zo}gz3H`i8J&|OM#b%I8ZMgvl3A&N0}8*aG@NN z5^P)CNWEZug#0&u>XcEto9!gH#;G2&rG_^fnj}A{wa6-Q7gd|<#u;SW6)6iB4^COl z^%5{PEd@5{`p`H-A5@z?@MWD;Qq8l1F-PvL2mNujf-7v}P{m#!VHBdAe5!ht$J>o) zTklB0gjgM5tigMM?Q_eTp@Hl5abg`9v`O5(u59K86>Gx0Qc3#vuE3d^5>EKBTwbGu z={-k-XB0%0HSSW9Suba|m1TQ71j1qjpcRxtPzD0T_WRyYfHoZrXl1pGvWb<(`Q z&sfYxM`v7r`9<(Azazpj4yx2nl(uC_`YpW8LNv9l4p|W!63I3Td^we41XO+p8+e|+ zZ4{6<0g0E`HLD^uBZZ*8rlOInTxr6{s%IRoEPj;h=tpLdUFQt1tPf?vCCa3?XB-a2 z6hp7DSoE$l=5d>=v~6Y+QgM18Fg{YcGmE$YBDf-u-Ep8l_@J_=4I9Lk3oTMtQ2hzd zp%{B+?#4j2<#+n@6DrUt2fmq94*MLlk}ZTz+ZufFH8D)i%H8n`l;RCPkzC@rw^ogN z#&dE=r3p_e6ToJu1{$n>-{&+Ln+8DysI~}|m&$`XErw72OA>5!lf>MH$|;J}kx&T+ z+I-C;*K)3SD;Y=vM(=|188%biZHnq^T;a~>SdGhr3SZCX^t zwhuh3C14g+0M!-h7}03?TYm24ueRBzM7=s{55i#*W*5jT81e_Eg)4drA!6PFx3MF= z#FJhVEM#+EVw;Lg8%(JsRkLEyqAv_L<43QOw!**J2>P1cxvlC=0wMhWA-?h3gOvI8 zSv$DIURg9MV`6Ew>!IMOen`_d_j&`ybMVnevdhn$!Y>hSvtxF+19^Fh<=PO;0gndA zOAUdP-+oB^J)Pv8gxaj|Au5V-w1mtuP@6~w22JhuQJ}wf5^P9&zSzk7jx!|BX~VMK ziVCq@r6->?pTJM_{yOlw!a7;48YkC`pNvAV#A9R3P`w8-5#@5o)n`odUB+C=&hL_1 zo!tNS%gKnTkm(j-)Xot)u`@6uy|uRJ1C_oNpS6A5^e-_OULi}6@DVPY^7A&&prP8I^hWZr&~#3Wqo#2a>2|KS^==gYPN*2=HyTlgdnm!`o^l*{5lsJe0y+%%j+9Kv-e+-7=<{YwzubKnnu71Rh^kg~ePf=yn} zS~&VAUYpwshwxhsjO_m;XtfZ!U-Z-jM(H=Bi2<)_DR~OLdNAW09}1-|`Z!Ws;_mDisiBPIf@I&+#a7aLA=64E@Q>4n2H_`V78;C|C>d$4)c_FFC}G z-12L6wYOg z%AZC*!U^r9Pj5oYtQ=6vFdi({U8bG+8S!_f+Et(GyI{^6MkfR9@4dZu)YL@jCp9H) zw3feIWlS!_YMUsMozB~oe#gL0+PZ|U3ouWWaQvFDcOgRB@=}Q8-T0;j1K5H|kO!m7 z+uadRbNA{UA9v$zB>QcU&NtU;#R;LI4`u?Fn&Ox6)r68=4(APQ(A*!r;x7*IsFj|x)Hm09 ze7<3k2W*d99OtV4fNCLTu@s8ltDEmrwy>k811FVF0(>`JEk1Q)M!Ru}9~6SyU0M$y zL|v{LyM7Rr=O%ZiM3>%!$)&Dh)%dK|+9SGYpTo^Ttb%5=Yzl?Tj}CP5-lMqFha z^Yt4O)Hz)Bi$uG7m{Vs8^&|;rKd9aQkn@x5DObivi(rGTqzp$SivO4B93y(YtZtiB zG_-JUL1K`IWns7uH$&@bR9z^+#In-KO$6R5xp=%&>W}@gno&z4Rakwt4q`7jLS+lNHn7mIoudztTGOJf=IKk*^a823YmwJw~X z;>!CkcJ6RCi5m;^FXkXihU?ZR+sTAd$Pb^T3v1Ajl}qI#i$^#u8ZS5pJPEe>JQ zLoCZr;pTF|>?i*2k+E7c-)hTu`6Sd}(E**t&{l{WJ7M~sQ;2llzu`C?jVW0*-km=& z6alK**`?upU23wk0nC+)*62R>UlMlCS-hOT{qQ!C!1&xhtOV^K>k9;6hsCB zZ%nS=ba@%ucCclzXN2p^4SnSXMBPu3 z+)}Nlq^8X1gGUG{g(pKC+&5{53n(8o@r)Clpu%y+id3m>87lXvhO`sSTzY_C7@Icv ze*EbzN8b27*b?J-s4v44t^BSz{pCT4*(r#|3D^828c0NG#9m*Bs-pZwakN6(S1$cw z9Fpb1VRfgc24fRLzy!FrO^2ltYq4zKXok~X-5(R=1VWs!);OX@;vz_f66V+<4&rWl z=lzQya>*kB*In7zjuhgz>fheR@cC5i7et*^q4uIY7&*!n8j)+&XxXr8G;<|i@bWLF z1U3#^d%B6$ttKD@6F|YDX~DUaxdn~$$XVw|kLWzKq%zptrL=)mp-3d+58Y)j9uT*@BC37pTCJd|sN%x+O^cwqyARhWF zo&?h-$ezkpZ}`5{&;-uVY!eVJsJ;fSlk7IA#w8`LSbxB}mU)!f5oL&+W+r{57JnXO zOk^*iby;26n5JPfKt3|VqKf6OA*v!=C;V?)pO^OLvI4azw6Iodo8f zL&5mvr;^IIPIRt;{@L6ydNQP1Ll-IHiyB~vHY!CxVpY~nDjzsxbtL08*3f2PlSh&T!9yxwJZ z@?S*SknGmvAnjyO{%0r4a;aYl8}AX_@Vmg{PHYX~jbxdY;?AEZ$oKW!qoc~{w|a#S z&qZu|Z6m7`FH3>#i^-png+tx{O$p%16%QDzx5-gatYCfxmPhqN>E)3WYM%rzB-xTD zPX2NyQ(d&M+p}n7A!T$TtWS{25{~pKgN(SBzzng=Vud&e71EJ`In|_lv_cO;KI5#! z33{LnOj**AVfm|#wEaUzw-3yX)|B?6$VELZ0UqTxO@Diz0%g3eODi+iz79Q{L0Fe~ zj4sbSiBD^1-qswUPd6}|i-!RVFMnNuZCUW_vRuZr7s}HG71HQ~6aGU)%{d@89n0LO z%|#F=#wJO9S$Tm#Al#+jFrgr^R;`_UhvRYkXW`MTr7$QbGV~EhkTj{E?2vRcouh&- zwT&dB7kp;mCn=2Xkg+4RcfzjA1ZUyyob+F?`EHN&#o3tE_xn@gH5jzP zj+reY2Qg<>8YI;`DAzB*7U3Bqc4(s$dNy`|-?)kr_xV?T7Pg5`R^+8lWNmw}eCTML~eiZDgRl-VD( zzF4DjL^@T(sWD)`s%bGP4KgjUKs_NqUB00$d!Vq~6?a@JGTW~w9lDf3lcCcUq4f<| z?E#`&7}qs*wkxLA{_I zeQv+C`hUqDbY>kA>^la|`mu3^M@!=gJF{RT>TK@9{%GXj?n-bNd?@wIQT{_=C!Ehw zAk0j-B!h4bUo6PXhzRGfqzx->s{HBD`%f0igT_PxtL7p_=nU9aAw?s+R%0o|E>7Yi z@0XDHZss%WRa`v6J$#THrH%HC{~&^`kwxLF$S|q5a>Rl>s9A|t3fQY1&Fq5W?zRWd zyWvb3kGH1fCL1@oyDHAWdx65hI2EU4Q`w=9>S);T&KgFavb818C|Pqi*-rk}-^Zwk z;QvF23060OIkBr#qdz^kS@?5tNsgyT9AH6ICq4hdl#i#{w%Z?y>5PNDNIP8Jn~mW{ z_Isu0E+oNvz30@(|4CCrm(4Bt-X4lL;fD_*Y5p-<@n zJ1Y^GuH}dBWd$ZANYQ8;NWz#Lh|x_b5bu=iQ_QOJ`D;A!w*4oTj?_QtN79+>k4HpE zPryBQ?0;LPc6I`%L6Amg^yW4^-9e|T%zt2%(C-gH#%E#Xlt^z0dW*#%9Z{u%qD;ZJR>NWr9a%(fl zVkICt3DpqYZy#FNTJbmxT?GaJm7Pb4&4*0I{}mUbc5r~Ac#o*1$Z2}I(N!GTE7sef z4N{z?k-JW*b;AsnK`n+ zJA)fXSdy*^SadSX_d`@}~07?3PiSFeJh>pc} z*oJLXZq(4V!Y5^NVMoQDZV)Ia=So6IV6DqPp`F^;Tr9|k%#~mzv$3$y?d>DT#^>Al z9G-#sKys<`6b#-^CO?jX;fuTdkR*|O5x#+W$*Sl75c6(ihQcHxJIM4pf3UCK8H~6} zIwk_4XF`)XHhm7%m^*R%NEx2H{R5dDz^3LkJFksff(73Ppj0KjL2iE^)AQ|X=>tfS zhQ$w{Oc#MT;|!PpU|?R;xCcMRO}tJY7smZ@YA8zjSxqe_5Hig7fb1VtXz{V>WdV$z zb{ln4Jaj#q&4Ul~S{+R*=)kdwz3(R2=C!Z1A2;n5eZt6{oBVY-2TaA!b>;{+LnCn- za&il5PeaLHk)L9*UEDdqq#}wL=1Z%5jHJ4v0Dsd@AhE|ftgHqH0hPMq0Uk$l|Bty= z`6)lkMLp_`F#la{s{Cp}iAXAFVg6@G2}j?RYa}}jf1gbbiQ0Knz<_Tt`D**0r&?a} zQxWUmESLDIpf!mTOKH~o*E9NB%#mxV+RXZbZF8QD%@3@;#(6R9-49As>BJ0Au`&H) zb@=X|uYxxuEg5>zqA0gVVGz6FYpH`kPAAP754sUgy(z8=H9`|N8L1%Pul(+kvZ6~X z560n@5@?T!W`toS3FlX12_m3t&$Y5xVesOJh*+4(#OMC+O}Zt|N}#GT{W~Ca{Tn~? z7$XAtC{YuC>OoISY$aSk_xb$3lw3OKWY^g#di#nQ?5YTx8^G^Ad%Dw*DzE7vs}Df@ zY7*v?U4nckX@b*`TP2-AzM(Ewc)B@7e1s2*SFXWl;7r7sgxy;wweeX;d9uLc;zXdr zW&Z*7YN3_?jMdejck|`m+rh-mrH+8(7T{kNx}W)Np#PForc)rxc;`)WdIDGayW>*H zdxAm}9Uk)XW96)RrCSklk5O2V`UufGwfYHH~caX#P+HjiL^I;Vi~vI!`LB zO8e~u#bz#HL7sROrYfv;N{~Lt!b>ZL$RA3pwrqJ>zuK2~XrZFITJ_X+;tEY%;JtQ| z$xsg34>@buST>?up@?I=t$^Co)g)ldwZ+&1uFV|;kj_lZ&pwC1uFhI>_5h2ZUH_vBGEz*s?%dvQyzC{QY`*0N z=6t=5G-27d1V!pcUG9Wrj-7}5%P>6w$HeI~n=leb>5Wu7co3?iM7mz^dEMprL1%vz zom;>3u4d^RdsIy|GtHe)32WhVxubSXR?PfY>;oukmdFE=W0OD< z@bZ9Xp=V=}4!=FZ{;3`2(R7o~;K;gAV{S^p__bA^H7=8bPo$dp-Tltb8eLfr5JOj??dnFV>XjT4QAjOioi8G%Mb3h)f$NivN-c?;*#5ra=WdUoyUGDmuVQydSg=P%(gKt^KER?V4r(Bj4YF1pg50jIlIjKhW7GAw(vRl^3`pv^6kAK&RY&E| z4y^ySCd|f>+2-zxLlK59OHtiLguepyrBcc{&j-N{S|p+Np>f@X5iui*ZABMG899DF z$t2qX9M5m#8+m>oi9i(Fq_PIuuiCfkDo{bkVdGH9tG!#otAcc%lR{g9($#*+U`Z?? zbvp&`zQhOsQle}FE1k}RRr4ImfK^52;{@o7!piJJ?CB?=Lz9 z4du`frN(88S>-m6TnhUhXW_%+R$oHhEBXfm6brwae39BwwK8jmwDYq1nH)^p44BoW z>;3JoIz4;#cn#t|IWrlMtIBO$K=%acB%3Pp~u6qCF+>zcfeZw(D*<`?P*8?;Bi@|lk_QM zYzkZ@mwNsSzKq~Y{vbge0CXve$We>!4Bss%D^ZN5J0gp#xePEmT2F6KXqO-1o#!6b zCQFMUzjhZL8ng$3ZE7=?ohkn~Whv1;!JGL&eB`U6Ri_p1+Hzk8RkEqq0b?%r0tJ3d z_0w4!5IAQYGkWYhhu8WJYMwc6m0MRFf>|OvoOtGc({8)YA0`&n_rc0DwSO3@OoV&w zU*mef7qnIPIvE?4Iaf*q_yZj5$b<$rcoM)qWzF>(?2J!R1^KSh=C zQ^pN;zcdM?!y+)3P``VYGS={MmIsF3y<;E3`5vnaQCMWPg31PIQG&T(Dez}k7oGV) z3Nc8=Gux<(d=<6%S@HVxNcgn5=p}ABsYg~9`Fqvw^nt%?3xn0H1K`ON9N}Jlk^I&K z8ePaCF~t-qjt4Xcr!O*=C!qcDi~L&4E^Uyssiz`_+PbbtlKr8r&+hjf7U4~Z#Lq1x zY@c0RC^?46NxO>A?mTvbNc%b{W}28s&ei7ye#1?S_jzimNmka9w{GEi%hPE zmobdY-1*q$9UpP;Q<-QBUg9<+B2yxq;EragfU}4C(m2HsyyqILdQ3L))*7bZ+$io9 z`x#BzC}L1UL>MPim_cSo*~$>u)9@4W?xoKhX!Guku6X=Bp4D}N@Ysqke{!iY$KT0q z4rW=~wlk?!nCYau^phbkb9RTK!J)i6YVL_u1&07(ZqVoPRy&WXkgF+r)`~?LkS3xBDAl0$l?^!r670? zw0OEX!|tp-<2^P&ei3l8M+|xpb~zxwHnkadYNeohrXNlbi(RYyQ%40|R2=8+n0l#4 zw{$nF+50zd5>n}&1nT^Zz?5(V82o~Rt}@K6tAjmuB#Uh zZ%4)XG~uWfF99hCUM8FMX?_#*+Fa`RoL|%erUolrz!O4Y`tK^5b$C<=3n z%v3{Q$nT85UkTS3O;7Qfsls`0@ar8XxaKJj&G?U+`T6!@Z%wLvUFKAMw9X??tNa;Qv z;-H0Ds(pRu^PPv3M^PR;Tb3Cqy2k_6b(ajr65%fUU@>JQo02@BeAf5YPSg%G<)zWO z5L$2}g{D1~tYjAb*0z&XzbU=Q4wIDXznl8kt^SL)GYiEVcPvitaG9Nwz z-j;_j*V_E&r}jPQ*|ThShSF3g1)`H9<*;yWn0_&G?^*SeL!a!`CnISKR0f$W<2zCA zNH4ITx%U;%VCT)-TCIS}sWnP6$;TfUm5h zLapF`PGO%SN$X$L31p_0&tj0Tr*Qr=T9trpph+*i$}g$ z4CyD4ZtHBETRMrZuNNe@Zq^{OQcapD2Bk6P7%7Y`H1k)1XY6@4J~w-v@9y}@u&3~R zO)DaN>W%u)`(N|j1v9LrA&tcfQVC}4=R1`Bia?*Bwhq6HUozxEMso@pE>G)ko``WQ zEcl}O@QiD4TuZOQ?MaTDVCW11J9jWKfDTEj<^@oOe0`p#`)J7 zi_VJr9jDT4tmlk=vEm}~VFSuH5hwhsMCsu#K1tA-v3TY~H{podA{y`tq*sG6A_Vb; z!J+KF6eaQ0Z0)z=JHL>20jrN>RCcLldzf7Q)g|OQkjsEGi6$>vYJCUd2$+O?TkLot zfZ6=Ik=&;*;zQGwb%n!EQF|IF!S5qDKjqNXT-*q)3ri|IMQgAzB9(4peJGditqKLD+Jqi2VlN~3L(`uV^Oz=W zGJj-=-Rr5a0hv!YNkZ|Xs7`fHf8KmfT%g_hB3j<%9^pUI9!ZX1`By}0ao{h6~~AQUQIKkqD9l?UK$ zXxu8;O(F|`-YLjm6L*WGZoVmu3Do7>``}a_?mnEAuFO*Q>f50^DcV^cb!HQO{x6P? zO2njSPT%z9nORhgXl*hCuE}_-Vc^dA$<7{6oF++z?d7Jx9qyHM(pNVTKq&c+* zOJAY{K7mgZV9%J%_Pa4%Su6CDe6Kh3Aw-E9xasL;C!v_%GSj;$>ZXy;MgJF;cFJ~(7Lho2bR;Pm$MeR&|ndgM3l*>CpCL!wsZ)e#fRzpKJT=BmD3JTy}Jmt^vq=PQxxdkl@3uR3z$Vv|rg-%&~Dh zW1AJeeFZUpH@>;%mw}(~(qF!ln8$c&CSvj0GCQQMz3UmO{X&vRVt`uq%^g#+(LM-& zJ^1Xip`1Udu=YmfHiH#M+zqZ3|3h`;h@CF*>_TDfw~%6p|Bz}?on&Z&gh1b!kCSa= zq4KC0OyVBGm10Uu)!uA3yDn$iXs479C~5I7=-i%BwWHavL}(#*E;aaH+Huh)X3xkj zm{0lq!Lwm;-EO^mMs{7J|nIKsiubd*|gDA|yq(P&hDqWc& z8^%uYX@1(r=a^OO!+Si^Q{Qax@A+Mh9#7HDp4dy8MA)Gj*B;U@_BUg`?Bf$^)Zk70 zF6GGXr0==~Od;%sq2NEIcZY);o1db8d#K?uKKMVUbn1ZO_xe~k7>wm?mm2o7JT+{3 zl{3gT7&%##u3SX^=sZPSVWrAp#tLHN;^OH-b$8!Zv}<16%SQi~Huy)yZullZ4p&9f z+K3|22@vu-hMg`G)|eu%Gv8F_xuai;LGN(BYZBjmz4%>Sh~;T%XLDHmsWbOK!{^a$ zC3JA}MaTNi_xtB<;dfs3Mzq?FHJ_LnAZgAWZi!>16}DVFx!|gsSAA$>OvBcOPCkzh zN^WKH&+-w!fKnSgQ}d;K2?2wZC{A!502q%jmlZmEO}b~g5V5Jx675&rg;d`%Vb94l zn|NxDcC!A+BEBR_sXUq;$yLB9s$n*dN7>?sFz(tNoj#I_+6CEEXmA&ZJntdwaAUju zO0Tp~Zw&q86_Ikv6R^DknSnN5q)yj4)yF-}7n1;0D94Elv(AytOjnkx`$Wd{UlfJ3 zUaKq9UFG9=Jez5=wVamXZuI%5#Me5PFY_h8N|tE;G<}M?Y(Y;!KSa(#MB9GmGO_!7 zfFIdMBMBr_ttu1Mh#yx1^~h2_3fH%lNK^3FYEEihcycu?=i{@cbjhIz4|~H^Tm`&M zrjYouInV580G3E)b{8rCUW!)v^@`S;j!%uK6R#HS>DeI?}%MV{(XQGbN>sYQz+ruw4o1S8PoX3=cZ%v)?c5ewY@mLZ+*)sMF%lm zc&a(LYuCDw@g6ldJGf(A@8i&y82=u6@+tpE3YWTXH#X6YN;ff+-lVtz!N#L~eJj6X zUbyz_-wqzi3#t{jr$^IPAftLMH`ekJ3c~n3knvZ~XktHs>(l%e?fiS*&?N?ezrZInr`MrNZa~xiDT+3qp z1NF9C%m%b=KE-zwW`#OdO}ag{{RGKOX|GU-8~I?8x_~eH!b|H!V9zT0c$S#yok@Oe7Y3nVRBqw}20pQ7-68g)n7HXi)3bKeluP8a^zgEtNvH%^yIC&R!PICAO504 zRn23J2GZntp24*+c{SK#+s}7x7M0}JtpX2jrc`vxW=09+LLeLPVXhgaN#Ea@S>1<< zUdy49ye`s`C=s%Z$b=}GlNpF|11~f4s;$Y+?q&=9O z4(ifKH7eKX!>4r~gFHKZeM>}exMGR0`AoniYU*kzayo&76F_U&)8cdNb5Gg)&*CMS zqmt3}qNgv^_2EPj~-V(vam`0J}e{C;f#Ysr1@kL$nD&TLkx2XMYl!R{H zeu~xWeJV_r>q9$?fM+AO)CC$EXw$Q4P?4{=m#)Mz+zyv>sr!J(aVROZiOS{kHEx{VttizcwX(y{#9Z~;q?s{4=P`{k+zEMG=ZwQ zKKYj!pIle)Zgd*0IKk`0$nVprxm!UJj|5+JnqwH0Px>bt{OLeMTb?VHTp8(aqic31E>rNiZrg!boMPd055S30d zYCrLoE4wh8D;cpa9IJn9GV9!FKe3XhRvfMq<5XrU0IA} z20VfLe^;b9q&cE*kC6jJ3>Gs-slM3TtMo+xrYj4_*t4diBg^;zSz z7kEK3IVs%(IJ*P;AjC;LCp$g@pHKH`+UL5b0xb4azR~q9x`IUU;!=Reex*&1;_XJ^ zKdz3&U^cc5!HB#@=x~NbvwU=i;;SFRfe&$+a~xC-`uXxWSxw_60{_W4Ws5r&%h9H- zyPu3JosV}g$r2;w-G4J(#tOes#(R?o^?QkAFN5aVBM>Zf{yf5sTE+|5+uc@Yt_~kS z31|@18bp5Rkx%IwAOT&5I%+g?FglNPVu4&KpDO8Nf%e`))hKL1(fie#_6=z5I2(32 zSI0MOiyjm5I6ezSlcYdk{vwN%71%F*3@+MrY8PC#inIEvnHtpDu)x1lMf z44SVDWz`Utj$cv>cdI=*bvqu`9ns|nN{*zWuZZZC%8>DZcJ#hy(!(3i+cjNBo!z9f z2f}`tQQokn%B*@htGYCbQ-$~ad`9xU;_jqQwb8bE@eLQgf5W#Q)Ts7c3#B(HJL3FS zw^LdpZhp`YW~I2v#sMi4v!TlsoZk*u`D#rtu$jAffE6eVV!WjJCPcDH6`h8emgC5=(I;8j>l zbp4zAq1xL0awX!}ZX_guP~3}OWWagWn`g_kr$Z-Fq0VcK1E?eI=bvjH^?~dX%*poj z#Mk+b)zS*PV)+l!gH1!D1QBfc+wb`@?BjLDkmg`Xni0iPnvFlNE81rA$^g&om1A#n2Z^cDF9nY~i9-!&qayeL9`4G=7qHNS-0Q6zdxcv&5k#ROIsMWpYfnR8lvw*za173736mynmL2&Wa+?-4rhPYv zGBOwPfRT<@vy-O^Z74!7uRmQ_$EOZ4?-}mdQ^X#f`;ycp2+qkh)(!|FHHf)3bCsqv z3<#|yOgna87uAB}H;b$f_R{&sj(4NvZUgHMe?nwP(?uv)u=p)_pLTn05x;hHBx$+K zfpOIqyErgpK##YS8n5Qf>kgtSa+PUP#QsS1GKBC>z_@rcW zv~r({5KVb5m64i*=}f*-HYye{k}d}wrdjxxyJdn@CdRr$SOBJ8mF$XT*OqgQAJ_%6hkN}gah0YoNxOYNek8Ojf0r1N;bQh4k4shl zU@>(t?lo7Ajk`WXe~>~xJ@)FNx-tTv_DrE>qVw~%41_opv0#~Q(>OIN%O*7?)#Hq z?1+HI$d-fT3g!9}@dr7@;q{foeKzlP+?>x38*lhFNeF5n7aMCKsd^u3!hYD*yOFR1 zS9FyPJKplT({-~C7Y-mwaj`GgceEsZ(;h%&p%<>(TD-NnrNb~U*jjBz-Qz^OvltGM zJ;v^7n5rgjVbso4xCt|Z82jU8>}7*KO~;u>l+hs?yE zIidVPaJxd=UYJsaH+X?(niS9x+P_oJ!M4lrmgn%uo0CW*^6F;OenZIbBK_f$VVIAfK%j{D z0nx2h!ypC$F|m<)h7g?1=%*g3Pls2o&7TZDj76usg-G-(N|JSL-mW5CdaL2Lax7LK zAS$zINEEH0-(;Al5|Lu;t%W=t8a}@7}JS51# za-fVXL-IX^w4B}p!tORx!5m9(^}7O-@QE7|`K_BtR8v*Df0*im$Ec;p#XA@$cA_;^ z-`zt=#rZ>S$jP$)n_#50RAH6X-|k$@)>>3cJQCzp_iai%yHW0F&t5$#c*WY@=hU@s zsbmE1T+%F`v42JsNXaUKq^eewnPImW&#fbxD0bEOT(phUDJ6Uj^U&&UR%;Owl(e&u zyM@!?T=zYNs?o#BgYP4Z@?(<>k~P*Tq1|{ywdK;yw*1J&^^zvv`%Wu*I(2-v?P%5v zhsy=cwR%m2p+(#Y_umtHN4h-d5nN7{HFu6^qH2F!d7PF!I-NIyipzUL%|z^Ja>$Rz z`{&Z8952$@SfIJ{o0y9D@nBk{xd&Zyl?1OY-r9u(fvgLL1?d+x@c=+eyoh)25~!3jz&ni-|_SmkJg-{Ri&4~uJQ4>y^+ z#gm?fb#z|nEe6%zreHO>tbf+>YAeE`!KMB2kW~DE78eUO)$pxF>d>*=t>hbItm$VR z-;s#>BfTK^WKSI7kp?Z=J{NqFDxjqYllW&?+nCrI(1X(-_i1&~q(~&P6Q%XyjT_WL z2pe9Fxw#n1XIpA7RQIccQTD9`B|iJZ^L<*}k2YTs3P>qWFnZ5RYkn1>9m>yONd0)~ zF|&^U4r8kwD@5ltlEX4@hYC`&%p`klBcHhAz*k&$){|wv1+MC*C{g^daifK>oPLp% z&OwS8tWt(+%xfM6o{zBnfi)v+Ekkdgn>r@c858Xs8*zO{CzD+b4OHH4c!U(EV0diw z;eI)0aU_IxZ=|h7>)q(2*{$oi-a5NeHPD8^^YaVO~ z(6wnYZJ=(B^7mDcbKLsBjT<8tc97|3+S(3}GN^)&l=CU-=;!39nm}npqXV#sF>X+>ZquF;N(?@+A zr4<(-8=W}a|9up(B8PCX-s=<@KlkUF>Yoq*BDtlPPBOUOVCc(DjvJQAS<6 zAPNWwA}uK>pn#MPIUo(vB_Q23NJztgNQ0ELFtl`ccXxMp_YeaE=fU^;&UL~~NCR)bMrBWu z%U#{CaxS03X3TaK3a3-3VzVb+szLTQYe08Qlb+gk1#3Zf@9&^vx)Fj(x>)Gma+MKr zieClVRQNtpSIlgiIwxM%- zDtY+~E8pR{qTWKO=(S~9(Vo4w2q}AwV3}-;2IjSkk=NhnplA5P5Q;*}>>|d=-nT&o zb93WfXboJ`^%ruaQKpY)uKUg!3Qni`{nFH}xuWan5fS_0_w@reD7V@tPPQP8_5n6&}<17W3&yy~*c+jnR*beTHnf zRMXjjDe83i{j|IdeP-3s5iU z*D?Vw7i5iSNk9Rx3|Qh5Wcy+!E+KgG@6LWzvv{&G+SJFgR7QH^LX{}XG`zQw^5~Up zvubu(5xqhQ&~z{<^7~TYcX(==x@6I5&{5UJcJj}UaP#L>+a#7}Z2f(o?zfS!t$NPb z;?(Lq5(u-V%&zq5U*I!;DxH~|MN{usCkA7^@pEUbzty7X-k=Yfsrl%U9&+&Zn_44` zL)wp+b;txyY-Q`MK0kda#(n$j&&J;f-SBeO$e8ef*Unah02zv5_jv5(!pBjkcR>|) zK?XvCB~>|S-c+nO4s|5uV>txXCLqENgsap>VW5Cf+ZO&dU(c@%%xM=7ssH@FzXRk| zLobuP((e^R&?M`>P4K!KxoP{p6fZqJ4cMMNrzpHgM!@cSmmQf!-_7wQ_c+Y`yj02%Gu$hT6cn(?7gtvkA?XPI`7Kr$}43fdrlqw;h1=@ zZzyyelT{E87y)zTkU&ifbafA6Z(e%-g-<2fmVA*@WZq`D06FLl2X9SMayuOr^;3ZD z3lpA+l{D%o)c~H_6^ugdpuYvyzbtSH3jh1)T7K3&BXpn(i=Hudl)8bSNxw|s$Y&Ga zv$7IZ1<=r1BP)+6n$pzo^ObA71i0-yoe%lGKP7i#`^`cRCpwMpF%59lAiq;ipxYbY z*?Rpg1*1A(Ohd+4_f_+@(0Ntd`Ika_A%@ky%@mL?*K4>Sv~H%rU`akF(c2e4YYsU5c%8>=^*Ccd7UYg$k!!?0)fS7_Rw z*`7woQPlV2dT!qNeC#;{kB3;v7pJ(`hwWOLe9U(@sMRWtPFveIa~I2 zu0@1!Zzmp-z~o-0-4t*aig5ZoXOsxZKSkX+d&MRv^j47Cci-3@@HHLw0|v?L>hZHL z6b<)p7J=YVka^{>@u^b%{gz5brT#FTYkrEARnl6~J;QE$X$#eD%o8A6`4iq1zgx!S z=6*74+>M~#(2vcWb7)-Lw0>!+ZuR&8qGJy2?oWD-y$CD9KRq2&JT}f3Z`{=-@^q6u zrz7f++n~tgBXCRLE#9?aQ55@4eB$&kB^M?1Y7;=WX8HbFZtL0Kr!P$^B<3}du+H&q zP|O#pD^)Tou;(5bG<*&5{J*o$|nMbd|+i$vF z5N4t3kZdSV*YD}Jd|c{3C5a*IJXKh-k1Cw?^|9nQjvtrTpb`pz4KNjWzWD;Rs;;yB zpTB6M5L$uzgN_qlZAX+U0|;rIf9D39TUJsT55>KAj6b)w?q0a-s9To%Cq$j?E5NZz z1e$^jq-N4SiMi{jt@<7o!5yNVHeUca%~hNAj9v^#7$aVR(3s&RON_yjvm@2`H2Ov} zLwioGgoYPL50vJ&Hg&c7es1*<_NlGpLrevNX=!oYD$r+WCgf^LIuE}4kaZvnK<3YP zefj8he^zCpHI|(op}6~B2xBIRW_4v|u5%3>4qHvp;z=e4$}uF^ zrg)w>^=fPob-b8UOljTIbm>EEU`5xgBUw*?cmz(zqCI23JUE>LK=^Ne8c{x7WPha% z?iy-(3aEd)dSwul7OM&ACMb&%^BbQT6BpnRXJz-%){uPN^lpl$&t_1p`HRZ$0)h-^ zmEki1geOAs^44{jY8XJ{oP-=-)Z+>d&PBQp5nPweXd|GOEDr{^d5VUS6#?-nBF`=}*-h^T2z4P)1bK=r0ady~Rl@4(X&6Yy^ z&K>2?=B=Nnio@(5xJnm;M^NL|_;wZ1{wk6&L z!FqXQoai5t{={0%TaRW}H!bBW_J<|RkvFxHI*>6ZS-&=MPH_JVY=S{25nR{s8vpf_ zrwRe&uJTiPOa9jtiD2r9$9$Q|4Fnxup;zvN#jz(ayDu(cC3iYGT6Ti!Y2gC|{QqN5 zj*LT3%P&9HEL7@Gj6pds`N78%A?-NUZDiIn=30*+j4BVy5#4?#*W6UKyTO~My?`Uy z)%;$+o{Ikxzy73t6rtI^qhU!i9=M6hZ}^=`!07A_%h%1dsQiCq5_B-k<>!6dW>{78 zQp5)~%B~s{5a!X_yY9`igC-+r_1KElY4qgOMLSCC>^%nLE`A$dD;X5egPB}jbH_oh zTdIuI7S`=U*}hz~{(c`m(b9Jz$CFo|rfz9y##EF1fRO>giima2+UC3v zZYr>S`k!I~7G&^HOaxVc{3?In@bF071-`qid<|WFa^(5%*bOp(lC2`M(~BD0J##o{ ztL8xYuBI^HA5k?1?>;DuJDcd7YZ+mFL z;unTAQ$3x0FLQ{?^U_EPtRjmt?vk7=4q*19^i{|8@TJM>j60r(3ROXoIYSNbpUKYQ zFLr`g3gNE|Qg^Uf-S2^_=(`ngrWprZqOnfvB}Tfx4SK`Nwyk|l(R8n?p37`FbBdX%OK6*uNzbrnFBj)kE2dR_uVzn$U!cIV z9a9MIK=q}BhfSpbq!fSsB~ar(RCIelWGsI=3ITbZ1b51j(cEvv?+S$NS)f_Nir=8U zU*>v;*&<&y;mRUBx6YK4+@Oq*D}Bl;e01c9=|**3+4%-O1Z5bUP$S#}a@1FH5zQVX zP1z7Nn?~ut)sI8ZLB8*yKq_ARR!{8!yn$y|XVsR$?>}_X)r97fgpk?~{eQx|O&UJW zTQ1e_4DsZIaeSU8gbQEIiIDoVsZ2RB{M`B8qHvzhTxa`K+8{Drn)>s)ID+h{ivZP? z0`1tz59IwwYmw0tu&~rVOyOFxF^PL)s~MRXHvKd{?H|Tj3 z<=dE?QIoV?2119s_KJFj_&}cay&p0U;e(v@Uq62~6pJwauI}`Dyrzw6=*VAZwN7W% z4N|$_gTh%j{WpI-upaq6A#Awda7hXRts7YJ5RUq>(6iroVVc7@;Rjqps2%ri?oe9c z5Z()8?+W+&+0EoxIFff?WH|xFDxmjn zyFLq--s4Lyb|Ddfw{qi;c?_(t*#dXk_;AncQj6_4 z1_ruk#$tzv~bkG3idbiJ-;1iygDQ<^)1st!ui7C_W2ij2X z6^$_v5zf}Qkj6PVO8k4rvaoKVn{ip@A`#P-lRkZ%Qk|@N8e2VtabeLst0D6oHNv6f zB%a2*Y^7|^;Ov_QhN(Fxlws(%o9JzwSAOJHVV$E(4Kdk>X>*|7&Gfq%_M@LNL`u4-MwFV_2R2+Qt|dMmz~Hrf zDxzN|o6lb%=I>&bWCeIr1{#a^oYP$QImP16LV;qf_U@F z3Oz}=Ut%)ZebI!RddlaAL24++|F+>^9?taN-VqEI#To?@h0Q@qpZa9io1 zlFl!NFK*VVSi(Q;0%a&6bZNsZ z{iygh{gtRReT^QMxIGG7V!U+@7SOaz!KU3hzqIxTLVLx{{&xwLM&Zp1H#7yH$zW?7fc&>c>e6KHH1g81H4MV5mR5#@DTkYj8;p=8q)PM0(p z4Gd8Y|Dk?4U5U0=zsQpUv_zl3km18fI7;9_9ZBM=#zkkN)T6Ua3P2HK#xJ#qy=4>! z8EW&aX3DV~y~re9&3OB{A~mHUN8r|%(daCH`t0Oa1~jDH$0twER_Sg)yu6y6O>>2uW8;#+rR^p3u^q>CJDM z+_-`@d|k5j(<@qo!zliT>!rp4U)}+!lwJNId5Mcjma{~KL{^@20vr@Iql8=LR)l8K z8Z=mged`{MCO81MkZ!x@{qAJ4a-?L%xMVdsFDC4bc+z^rEL)S#mYhX9&YoeSgM43*b%+jlF1=2@jp;Z!0FzGeiQV9^Gz;+yO-z( z$K90P3mSbFX)-+1TczS<9ng;ae&+2)vezf=pGyjkBt)ArIDnSI4emT9EncjFRfDIHtDdveqVv+WykDdEpiLGuogWL}u3cK1)$cP^ki>V(Zq`0j?{Fw1Br*D;v=PtGsUre=m5Zt0uw8!>88I8 zXf*Q+rm7>JACE4UB3=HL^`LVN^lA+p((Yon-=m$du( z6%up5^cpH6DcP_c?!7HYJX8qK;>eas$H+|3dfP3e=f0Lj@;&$e%x)pLL-isd){^j$ zG&l0XdvXu&Ous>^O-MlEhMrJoP)2-jYK{;->w5>o*k@mRl6Rq3v4eby#(%m$i!q|V z$#d0TF$1R}JKgTXbW0_-T+5sTDW3guy2&H%Vu~gbC zx5#HM4R)Je+O%wjd~p*>&GJ)&19C*+3_FrhUEYHq+cPhcdYo1cpvsxYS3huNk3Rt-(|2}&B?D>Qs0mLF!*N_LvlNl8`k>72wckI1=PXWl~&kAnqi*~ z!9)+_1y9d&%6CcZ&FqK!+<6WC_#2eB;jmEC-TuTLzdh3%3mX8SI2y@-B<*EOyNrSlZFE#E` z$$90MtO^+?C;twfQly)nN>9eFFkqB+Y`V=`vC5m7*pefTRjriJhVrJ=N+K6ywYyL0 z0?P3u5?2tV0j#Ku;+*ZWxckV&**06W zrk8~yo?|BHqufRBC0lc^>*aXnisJEDSY_@Vwz>Ax)d8t;h)s@sLyFN zmn5&t;m{T-{6rB@0V>zz;>GKWwnI^P(`}h8X(xw3>bj?=A(CA=aWB{6UCByA1R8ZH zPn6NfJLFu$s-&Lbf+LAEK=^NKXF7r!`-(exer`JKp1(_XTHKhMO*d2=qHM{^v!YzD zltaOBL3Pu3tT#Rxj?4lL372jVbbKiOqB-M(!f$wXqGO^?mw=EV%=bFe#*@>}9>ZOA z?!oXRQBy&ak`hk=$O5ldKdM0Qf4N{sOad*WVE7Q^PRgaQ^WdQJ#E@$5Nd?n!x zi)-}k4ln7swzzIub$f(u`5hp#3QdjLhCQ9Z2@_{sWV$|b!2CKHBlYVH~>RhhX0!bN!k+;`EKK466dg7X} zo&m_eX2#eXl_asy=JWTDHSHNShn>)W&4&3IaV}@eU*cU~eWHt?8}Nra3>PnYYdB{% z`A%Q{k|ZQD;uJY3s-*Z4H#9v0Xa`BN8(=q51YwMYBMbulxgTX2-ksDix;WW52N2@x zA3Jdv6by!L?=3zzy5~=Av|P$ZAml9VnSOsf!wkdG`3IZ=7d0y8r-EP3ZN#H6=%q?qjMJqAt)*B^68=B1M&YUg|vB|5)vl^b>S7(I_G-w=F)zQc$z+sfYSRU1)@{XEg>||b$!~!4>kYUe zHtG3|m*zsp#)v4D6)kC;f7S+$8_wrJ6)hyRgt6H(aL@fc3N^70s-!>>Omb2yEJK5V z(b{X1tsr78VMA!a5 zEz|Q{B60GQdUSltDvnk*4FJ=Ad&h7+rTZzpO+`MTSpV_f@1qz?A0ET&s1pniiUGMD zPB@{&%PAw#q8Y6$Tk!)+SkOPScnMW}r+qNY*6Q&Q4I_V1BR@O}2H8t#ZoaY3U#e~k z?%zz^9vNeIU9_kC(?G5bem$N&Mlg|7I0WFwhXL|xlwIGoiX3N#yJjI7yAmdDOr^-j z<*d9UMbv3(x|L&_VjW*@T>3XrgI!HgjE-F-WHsZ~y`RZ*`v}|^I(8{N-cYYw3b(`C zckkc)KL5k+G!zoena-NiXy&q=Jn(I~Yqv>n0CoAS>qou$SMlWjYmP7CiAvP%r9i3M z{ev~oOWpLPi~TV~(D?d2Qr&cGdvCdp91U4<7oBa;u1fJE;=kwyQSkfX3zL4_>8ne4 z_N(QN5KF)Rt_t{|Z6RxF`QVqn5^hYl&q()^BP{EiBL^}(&Z&L~rA6>5%VUJmh4eK5 zw3{O*0X)37V0*6t+~n4h84X5s%v$q7Hi+;@kCi%YJbyVdZqIYNkIvR#^L}d=i5VAL zPLNB(<}ZS^nechU%px4Iw-dq1FNvQBaGSJ~DZ86iz#Bk#)q{h!*ebVe(WbezB45ZQ z9-25f>B7$cMoK_*{A^8(2Vx{8+*nhR`vxx#oJB{0K5B75#XCdy#1e_}dUsu#e_B_Q z3h_014Lk17X5TaB^iIdsA>WOkm=rLs-|tnf_-qOr{VvSYa}!E;Ew4OST62$1&7Lm5 z0}3_ernH3biR^ z)3-SnUx6}H5cOGiDas)8rQhYj`R`+GN1d0)UG%0C-d5V^R|I{gj?Xc^UOL;{o5>5# z3z?RJ)W=HhJ7}SgF74`?vI0S7hSAnf?Qp4mKHR5Y#Ip4LN-{6e@$6PmbIZXU-V^>h z>2!4>gMP_UXVU5@C4%97L_Ea`qJ-!-%X{3ZFBT{G7)5QmRU zRUDvp1hx^bT6$-{?oU3oidZlvJcV}oVx@8CQs=PR`?#(1=i_50Fkk$Hrajty4Avgw zP0HzN490Bbhe7^=+C4e5$Kw3Wm$OxVB}tXsEhg!9a0FL28k!jP#(4BwQjijzTz6fR zIKe!kTP{Qmhe5g4bDm~Xp`lv(vy#6K!I_MWRr$&@RZ!;qjAub5}oCg;dGHe z9J9g6+ypo%v-DZUF&5HI3*kKc{3P0RCa_rmhNwW~;W$*p{@G#>p0$!nFGNyZzOk~K z^r^M>1~X_-fj_ss7T)XIY3>ONZR9(Q5U_2&9xIpB{gS3N0O2knyA(a~l=a6wC7~P= zEV?K^*lrdfpVZ(zzJzNb0V<|%F81zfmQ@vcnAM&35ukJM8>Od*IaZy;v}cDOS}B6Z z*Bl1~=A4Epz2h?So_B`OS;m%2LOU6mgX;=;Ym|TYEWQ15hVh?zu)Q zskz1Rd}2l|InTr$2lFkoIrU3CkGKvPkne|a>7hoaJpfS!Gid+%Rm2qmHzlCQ-2au zA49qI72j|4fES&-;3@P7hbL|ZKsSb(Y%CcCNlw?37*AnB`8ZiG`(=5c<=jh}Xk820 zT~$eoeK#z}(Vs8gEj-?+LoC!aDD!S3-gTHS5)&j;@UhU``)fsn7unB3+jsSH0O}9W z+z)2b`GP0Q>zrwc_|e(GRTOdbO^n_@7}4tW4#Za~S{4^AXizqG990p4MQe~$)%~%H zT_n-h3Tlf?1_vJx^mN9zN999;J0!HQS-qqVVqan-*w2gP_J}D* zP>(T}vEfG_3o8@!IK^%1BwMgJF@Av3rQNVDlFiP?mZlmIo-9-6P|q@}sHUF{l98d? z%6QDyR$gGfzR`JKtNQc^3$HeX^EAr5t}qQ&&K=fbWuek=ar9Q~Smy3G=X7N)+HGd` z=UDYuonIN2WH|D9#S*N?V>it0;R!p;uE;i zJ*cR6H&tD=x+!k#~W&CIj9`fGl!% z>jXB0NVhbnIdbw8DFb+&lYNmv1GA-a(8v(#7;3Hu{S;{Z|Jxk_^h|iQ&ayGRGM>De zA={Hi$-gcMZN}%&wjAu{%|5hIBb!jWX34#)x%7uP>mNi{Ff4Hk&G20Iy)-Cm)P%zY z^746u49a9DOQ$FHq-j{E>%G3sz@gt@Z$LB&eT?7b`@-2-d(2M+Pl zSIbht;d)r=u{7|Ag!}nxkk{XW0{(p{?n44qu30Ao!eEs#xe9zZbcY*LzIusjKt-!- zeC7)7dc5We9*S{<6?iqJ_loIBSdCo}EfJg+UkvWRH^85JQ;ZIf{t$tM7AimLN+WOM z^&r^`o)Wj)E{I3xy6*;k3{|Wtd5uAzlukE+3tiYc{A1ueegc_`<37fUw$a!dH#x?> z5x0h(%{wG(f%dBL5@CX{#!Kz7EJ_aC;u((05>u;1)8BAFK~*3dZl)2e$t=h&;klE6>)f&Fnp-tp02WCFNwtD`eSvjCng%DBa);0SF>MCj!=@OsRG2^ ziHT#yC4mbWWfKyjkn2fk3IDPm#lSH2Qe|Ok&!G?gic-1Vtwx}`ZDb1&FfIv3N1A@> zqT*rsfc zX5E5EXWLmJL=$j3%hag7>OT`jjLVxPQW0D8$*>ZMAO712 zf41QfyjR9o)o^10EEcZYuS~yxhQ1HJr4SoeBjnrY>8U_pS>)v|UQ>g+^bn5iJBItG z4+$ye4~e`Z>5bsww5&Fq_*N`5zKNNsp)=f75|Hw(0>|}>2SV>lvEuCd)3#GhU37*r zTX1DL`m6~-1r{j&YRY1_%pMcM*~yR`UWIfTatC3 zDzEqL4aQs^>zH(i*frRqtdc2WaJ~`{K8f2%9z;e*RhjRUufZdt;Ixo1^o(KU|*Un>*xEnpnl_DeXo&${7L1~^a7k}*2`wSqZrA-D&y z5}(QWj&vsd{_x{_iRvU?uR}NwTaba3HV@GW*qfVJ?a5KZW}lSkZEjrJjshgK_ivv$ z77$M{TGkXOlhL&5PUAAgpckpS@x1+jE;CxPZE$kpJWm==cjHb~LdbtUAEt3vV18dw zS?1gh@fhM^{uG&c2}TK{58k+aGJB8qRO zdWv2)Hut9Q_fiakk#1vtveqBCKLGxI_IsU_5l#bL^_Oo*scH34$OAEV!=;)M`8@6paLX zdh%sbpCLZ;Pj&j91LX{0xNx^J9?qXFtz+9Lbk470;L}1>Hs~MmEFYo`kdfvJz~moC zfF^t)9Kiu)Oxm?;*cQ2X4#ZdQbEJ7+J#olBNb)ip`DZafb8t*Nq!lvbtsD3~VfQv< zcQPk*{QMw1ToC#tMZ@*E2`)dUNmULbXm8~c;}vNHZ)OBHL#?OzyQ9IaHZVM$PnjZ0{i07|kYP1Ia{oR9Kw9_Jk6*5xBpEvdq=)>4k(y{cbV`- zk)YRYYCNBtr)8Gm{ zsmHv37_sUV!1dY$kR?-_`0G-B{A;{CSwv|!{nFEq5YObj31WSnh9Qv*>u@hk_CG`< z2@du{7;^Emlk~^Qvbg7*MsCib+ol1?H+>8dZnGrgf3YsM zoEz=qbKC^c`zd;i9cFk?hJ4yF`Dt2(RKBA198*dShEw9(zBn9X zi}{H)Y3RJQYl%@yZs)1~(u*uaWycbM^tZ30Z`QsHbQPvqDrQKRIOPang48URwKu+-#FO-+2P}@k+ zBD19l-e_{?J|N-IvlNBNKwbY1mXaBlDZ6`9=kbOPLDrK!ykr|^F-|Yn+0>x2y4bc{ z6j2kYj-s6I7>7y|^m&95 zP9~ppkh_uo{Z!wGu1ZpBh``LW(Hh>;kx1dQ9~zl5WE%**{OEVX7Yy&VC+v7}qnJVq zGULUDvE+LN^#7Ye^bgVF8lHOQuE0g#0oocjy-ypUJ`d2VvQ6je76D3#ocT|JOd`a8 zNq53xQ0xVPL3m&*v|#Usj*R!Ojy5qDGKYnDg5Zt--rjU^;EQ9y)i)NPEf}LWBT=H? z=kk~pXZIHY^~?@+8lGzt{?l}ctA-0UaA8Gqhc#DaEoDIt?HuKqO!fWLcvCvXUt`}w?wX}UCj;yA zB9>S46CC869epx*Xobbc$AS~$oR@2LFphg|nXk-#W_B4m(?Jiz?jk3%B%ttB@dOm4 zj@(ojGcfoh2Pk-v4N5gOL-+ZCprd&Y&o}pKDc^Jc%Mm^$`xVyaX93PYu}hOZRJSLJ z;lemMC%1u)&>)MGdMl1d53#Tg6$UlQ>-gRL?qpVgE936I*!3W3rUysYsepH1o)M3K zi^;;TqCjcPsGf>B!*t)VVZHE)g6*>1G&Dlaeyq87yJ|oCh~~ucu@_|ZRXTv;DD8Xs zJiC=&{&dL#GFO1Ai#$uT#1V3VpwfeKJVKX~}w=11PJY>9*&bia(j z6$$cGV%;j8JEb8Zp=p-gksN^~pkmlTTL_Sxn_#V8nRg)*U^Y(y4%|@hS|1I`+k(kH zaJK9G&)I>~534a~C~-70mhI$~iT*al{jNnH9gXuYX~(HsZqjOJxJYleRMhlw^~7uT3k<2MCiF8|_7oYe-p|V7?ZdrxgY5A4-(Td}HG;Cr-@s9O7FM zEifTc`KzZ14WWdpYEw8fGU@R??%Ce)O=ArrV82+R7mK07j=X+Zh;xxUp?cvz9$@bSzjuHStLaHHujBSn*Y4RfcEY@P^zZ6qRX^&p7tUF3; zde`{-h0UrqEe@kByMD5%NI6NZz|eW@`L|c#ya>;+K4B{5NMzoUF4iEzwOb{Qu^oFojQ~BDMm$l+Z$#iDqB|Q0J&ifW_FB94htWm< zQi&SeykE0f5fVOLbLPuPG7P1r)XBzi8;)-2L=5fuK33+&^Q%oMn?_sodQ%I^mZsRo zcb0#7{og61D4EQ}FmLy8Get}D7I%-1#Zs4VK^hR&dKQgqI7Sum)RYS$yaMjI)&&#V z^Sz)SO5T^@A%A^JzJ15H16)O~2OF{3#84e~`2ZJb1X%d$?8BEt9`#Bv+C-}fO2ybW zw;C(urp;2S+ z`k1FHiGxIXmjO%Vs!ess#_E#W9RJW981@LXp7@^YR~5bf@eEYkGBl?pzR>i#i_}kU6jQ8AW4H$jA_1kNYw^Ooc zR!bay6{{y$$MlxVuR#~{j#Qj)TFC;J!AcAGYwz9tw}LNU(JnA>rX1!~>sp!MHV037 zx{TxmAoIL8U~h-s=CWB9LTC&s_w_P+=pW;OKa?Hh=HVS~swjnzPA`Z{sfIQReRwvnb$zXUAhqN z^I28@6!l~bG4>wIzpZ;-8@RrQzTI&H6j1-lM!JO;lEMx#4GqTR>x+gBjY_6T%UNo> z%ysfk=XSm?H*RfCf7xoq;d7|FP>$%B8FFI|+~tWZU zD6O{uETSBamj33)_poBhi6vL{${@pA}U_-{_tdrr&~h*JWN^PVOD09gY|Ut}(A8=_K3NXxP#MVKd8AeCL7&XHrbUgMS+TQs?xM zMBM}ksI)h3CS^d&b(Yd9=`LiQ8%smN%3oEa8YL&JV&KM1e|w?;YkaD3N$o!Ds?CrTId<9_T-5=%?cQ+>wn7MAh4&34gx6 zX1)CGa~BVMilJ3k;z!!85#Dx2R*%3920LZ@^UayU=2UMheO1qr$A~h zXXvpH*@5NO@L+Q5E?Mb=+hmp-lZ6FIntOp2rFdZF^@C_4^ z41)U+qVy$SzhoI$#}g?hN4Fvp#FcCpt3CKLRTm^Izxq(oy(Y{}NWE3goWY%dPNLoDt}(eO{xB){Vp{QCJT>-~3euvP5n38z&m7S?)cada zj+oKeGs{i|7(&fJ{?ZDCyA|@{*NWaD-`A<+M(20e)aG z^}H4RW1IcG{cj!kf^vpF>mz09PR1$t3Hhx#Y^!#a^lRlXe^(H(PG$@vTT zy~-%61ZYX^8el)B^)^Ay@3GLm_$rSu=V}m^^A_Lf9!B*NaP2b^>7YMccK#E3L2v~m zB;A1GHK+ggmjSsU`y?aVpER1*DaRQpyLp|_3-Xp(S#W-}&>!`y;!mZ(=0)V0_d7W1 z3jcvezZR3h)s|3g#vJm+w}>uoM$TnsJ0=7LOSrcrwlu#h6m$ z_L9|WlVu2g;0U{!ov>K4>jbI;t2!1{wB?85BUD^Tld&HEV?yS-=M^Ij0(tnEZ(n)C zxkARh%!G!aqGMk^83s%6FOQHU`;ovMkY?Cpez`(3oTjZK-Sh}x_O+h0M9*y0PqLUv zGOCTQIz%60dguy3abSp0I!Mn#(y{UGI@FY8h$Ft6cf09HvJ z1pSozda%vxiRGzAzQkhgcC2H0wrnKskfFT>%>A!z-z>tIY0%3Q{7V1&4;ke+%kkpM zxFry6vo{L#A-(%8lzT_fwmxr1x3xxw=vDQk1^ITu^@DH&1dvly!=5twSL=78($j{T99;5_ zlbbMJXHc0=lWkwx%zo4GDEdV=e19-P&4Uth#yva)Y7zT|aK7qfjQinOlSm_V4ufC~ z(Dva|kc@Baf2@-U3gCx$VLDgIfQz42bxs!c`!5Hfjs7^AH6MuW^utI*y1yz@5hnPc zez{84EMP4qMvs^eE+(vV89|#53nBJ#UH!T&nY@icP7J*W6sYqRgp?|O9PxK{?RLe) zMOv$u26KZ&n29AiDHsEuEnJh&L>FfyVwLRA`dwe{685=V(={@*UkL)@A&7;cRa%&rKyX)Hj{yD@B}rww^{KQ(>)6w|z@m)|31MP+^Vx z+0BLOan#GrcmfYdj59hS!e@7SpkDw}_w?0#Kj(E7=!i)X#*z>bq~!2GR7#GLL)N`a zn>*DTH3sqdK`bTsfeWLM-^$m%Ou(#2SF$NJLh@<#nkC{`$KTU5_CS}!fwyDNANJI* z_UeY2?-y&*Jc-^J%s5k(Gt9n2;vg|zX(P}U-A=n-%wIyrmxv=QiZ@#%ClatE@P}|06L${k}H;cqw z@#w~YH#0^wubx)KTRY-8ccM00v`Q1xu+pHl_ORNwnek5-zc$Og zk&>tFk4t^)y6b@V%wR?EjJIq=?sVpEHNEro+W^uFEq`%5A%19J1+jbbte9Z_!EG1e z-x~qYv>k)_nr4brw}5%-VMLXR?teq^pqF5fF;5up^jsi$NnmMN?xI74GK*rdIyXRN zSNwliQu^`39b&3Q6z7sj0L54vIf>H4PxZ!?iT^?~{lnVfn0*lJ@rH{bI3j;m^U8+0 zj_Ao*hU{MPx>DxQw@pDvshxRq4Srx0I8fiD zipj2_-vt1uY2H$r<}yaf`_&unkmbgqBLseOi5gl{CL|t_f;8~FA8bnPO>}5`_s#>3 z0RiC@MMOd*^sKD}R$Zs4@Z+!RwB`5%;GiUb3LW-d)Jz%eo0{&`c|a(^q=Fl`#xZfK zX6-=J&3oPF6;!_<6_lE~DERG2=%upAl(J|v)0W-q*C(G&TO__p(xx$c4?7nBE!osF z;s|I$`FMQsz0ckEi@QkG6EAtW{b}stamlYJ64U81EndA|J1voiPXU^M1 z`#S7-)KM__+V}nG2UcP_B*j5~W)a^SQ?1-AlP7F7q0wa~po{=|<2GQ=*>%zj+_On83{<;8p_LJ@BwUxXE6brTZb3#bku>Pa`mW z>G952j&&1Z9!PsgVO8!rc}Z28QOfQ5;?l8cqou(iCVeEp97$Hz;dz67-S$^29uJTXUn#gYG^aq6B#?ADs6KOLM$r(ctR7x%*55#rma9 zAH~Q#w~o#;Nt$kDH#Nv0Wj?X91{<50SKl6Vz?+{7o2m%f6!eOt5VA3;E(~b3QCl*Z zn7U&JCDrjL{hGfHoKHWlEEu}}M8Z_IgPSB?RP6g0&;~WJ(or~d=({WK*HWUIwtOM4 zz{Ws+VqpCx;z0q`j&wY@S+lhCwaup`fXL5$ZVfG5xE6`q>faOK#$$c)x{3FQ97~V2 zb+XB^?os@B(RuGGhIk$J!R+q3*uaymCt<0h5E_qr4JCgcVgbpQv{87;KWKGYnQdpe z0Kbo{(A1e#oDaBtc0w;z^ZY07{)3{9y+!wfEK##Z>?ScMWtGnLq-pxl)Q;77Ie`jN zwLB9!*EXv`P@q1+7)L?hwikH_ zo@))QS%2U!&$@@im<58LGVhqM;f1p_lCxhA1jDBiFnAuVE&+@!vJj$(w4aIb-ecXh+CyBFQ2O(yTA-gCOUAdzJnSfCideCieRK2 z*5%tfG_p>k88ink%kyj>u`i~0#*a-keQN&uV2*DurD1v2@pek43=0+Y@?s;Jyvom; zIuKQP%Kw~%e^p09!3yn3Z*@UUUQ<#^;U|TBem>8R4Gh^wH1%0~7;}%&;hwkoThaRZ zT{Pcyx|dQh(^s6t7i^!8rqP~6p^rj0)e?DOIWM_FasN>J`qh{I4CYjACP(Hwv-z%R z)Z_i*i=34A$yof)dBX49ldyS{Q(W;!YmfB@B~G)i6xW!Frn6bFudk9lw->!@vkvO3 z3V*0-=pb|yRle4y4zw@+7lM7u%>8*TC>(@MlsZefX9L%%@40q^QH~WQKoq&9#E+5B zkDlu9wd1-REUbBk18*5hBqq2u=I+q`Yj~-Uor~!ft(!EWZ_?=s^RYWDh5Ay(RBgF} z;`$IHUx!gun#r3CRXQ1IE!5rjmF(1)T7tR$rUJmiU8QLqVpHPO z54bxJa)$b3FThW0xbGmqD)qw-qM5JP`~!R3DYB41#xnfBgRFNFL*r7(L+P5$nYsSj z2mL>irDqAyGcq$!^)dE$W+qv-W*j@#5x7L9=@lSS)I7jv3ioTowOfvZO zDVujkaX_1vsp7zP=W$mC3yN=aZI%QVZS?Z-d?QL~EV`iqRXT@D)otrgd?6}cQ(RA?DK1zt*1S7bX;nE z((Z1QaqF1{rD=Rut{_l^9HUy)D+1FR? zLJ@6502tF~427zQVAr^iaeZN1iInc?j7Pdxnp65QbjWExeaO7CD4o6$bJctf*%aGM z^E#;8O!Ea!yXb8lsQVP~PDR)H63xlac$dW&-6}KZyfwP-L!WtJB2j8#`0Y|SZEEp? zi)LH23raCl>aDkLyg^TMhd_Uk=|0t#8%$x-}!j?2CNlJ1AhLD zV*s(u3N-QyT%Q)!59F`W@dow@GNt3|0`R)>_I@2!FqIbF!keXeM1Mn`!9`e)j_|6c#sl# zqgQ8w$!r0!Huk)JcnLu{Dmb^jhfg2%12J8%zM#eBL^*s{ycI5;{1(XfDF`&{D(%R3 z>=R{|!T^46203no`;8O*_I}(lwj~Y7B=mXYdZ#alnq{w!&8Gj`bBlaIN)FR7un+?1 zeL5{%?mUMy0Kc*iU;d@LL@_!I`r^~t#9t1HrIfFMPpKZ{)ux{gl2ZJ$vxGJT` zV!i|9+OJ-d!0&3-!@f?wLa}A@o+Vxe8}Sk_5I|A5SIvx9b3!GFcU^m`0x9k9AFd}o zc-VOH%UvJ<8+vB=2HlX|wMoBING%`67o=hB6{yU~`u$HS0Mz7>`7+x3@CCk6^cGst zs}zAkWeC=cka^yLXirWBJuXncPEcR-kce%YbA~4d;8v87O@WRM6=l#gYgoCZj{rQY zgo-A$4z(o_(> zgiQq=f0@t{(Obpgl~qA9HYGs8E`AY8*nl9rV(C+>_U@hW2UZ`lgrynd;F=i3uG)c) z?~yho55SVT8x8=%27RfI9@Fj=n75$6Akm3tJ`XebhcOoRe$my_ZodhOn_F?1oW=SE zBU-ehV2rHSU8A7o_zWF_F84de{+%;-Kf--5heXf5Xtc6=VfJ6Ydo4o_E+q2< z^!s14@84?1MR+r^P{TT?&=<#tXluHq$L9MoBn|V<`q8%cXClM<%T!K^P`-ZcFDQFo z0cfcT)fAm0`k&K?Hsq=3)M>jppDe>dtq4Jt<$K*$(@Q^m>ZS^uZHU@kIw7~B_3gll znx)M8of56<;{HM7$o@MuoA~T>T{*)D&N$%GNFj$J*lH9qNSvl+7FwSqjFsO_ z8fIQ0mnxNhF&Vjbt9~L){ zcxdfkOOd{JhlpJ2ZSs!`{Hc$4+MLhyzCZ3*$_R2Xboxc*eI*;^o*j?zwSuRW1t+H< zn=32xrBvP_od^hdMRAnAnx(?;!!vBeb>N;*7oXNB3x^;>o0qcK&b-zrqDau4ZbUXxf0-`pDuSrIGNhj!mXVN8w$8Lk%Zwp9j?f2%N8; z%FuHL=lnGxCcJz<6lY}kMz@R@^iV%5sHxE%AXZ;HP1$L9F*J_GnucKyRXg0otw?2V(oTS|JPw`qcE(2krt{e2ueGb2@}A13JIXxk3AhlsKS(vlHkR zGfC1n?D3U)36Xai4(}2YYZxvw0q`0~m#701ce7@XNTps*AJMAfH|FgGa_ezl z_YqUp!BHLI^nMy>z04{i*~lB{9pVIXb67<}QK#Wg)4X3yQb`zc{)Yoc!E^(K7Zo2BI?^4o%&JfctY9V0*>E+c`+`c^E)8*Tm@CK|LM27T1 ziQx^IFSlW{S>!gYq!?>sr-Bv`y?U1MsS=yv&~Ailnk$gIe(j*puXdy4W>DL#O^U}a zzc%Fda?%}L!BXfmqVT6p@{boK|E8bYIx;j5^q1V17MI$3P6x!1?zRcbpUt5RBT%2D zbS5dLxnILyqr#6j;>mCae`p_@iedM&h^^WV*1q;qu5S9A1>&w?uIp!pnTSre&G5~{ z(tFb9!k(Djy6&cM$IbXc;&W~&p6ibdf98GcNS7(bg}!Supi%Kuahw2&EU$H=&4^GR zx}bd5C@4Vx_;Ga2kJOh0r&0th?sk|UJnX7I!-Q2aJjHNcZGgpPbNrClr5K_f>Nx#w zg1)xumJx5`(5S=YW+97#B6==}ybrK~bv$3DGv(>}wJEU0SZr#DL>h-ZP9>j?WA4kj zk+-W*_Rx_TBxWsZ%4o!rG2Co|H+YBhQBw5%hG@aQ@LP_khgFW*#5+_I=Htbp*$_%T zDLv)A9P3f}&GiPZr9Fgs`)Sz=s`U}GbFCKl8Q|?E^%QUjwadz2nxVn6;r8ek_=|3H zKW2}JE%(LD)PA{>QCS$v5XZ(Rdsgxhfz*7S_7j(g4x9x`pBeQVB`$y`IGVTI4dBfk z_ML{fW=*NyZkL&MmZ2{5XVUReQM+(=4{qtGJ#|gcV`A_?ix`>byW*8j)2kR!2#F^f zTg%9Id-$5sZNkAyl{cFa8Q%yj2oHPh3NG5^&d7sr%jWtUHjuCEkioLhCJXOt0_mvz zB$;l3CtCVnPGf$Bvwsv*SYFowZNF}=^^(AkRSie3DiwE=#IP8s+y{oa%7(Z0H&j3G zB|iFj`|*fK^ZF{10bHH*x*1O&Yy8a=-++mCD8`orw&fa2-_OYdx*`xwEW}JF&Lz1DN%hdBH3&EiF4!-p}(3refWn z7e?}z@b4H0kC5ivvj^h2w6O{a%?JmE5zcu}>ofI@*BsZb(Ve)lvM1t(5lYA$RJ`JE z0#CX#ANvQsD~Gy{`^kjs%crd7_4EUoTSpAvsZTR({kv4Pl)fzGpO0|Q64`PTZ+Zdi*2M!(wfai<5IFCkuYms23xeaY& zGW7WQdZu*eKijCkX&Pwjdh%fqy9Wvdi>GP1HdF08uojvfk~fA^vi@4Xv{hQr}%GzKSFw^%DPvrn2>Xw?BrpLrbd>bQP%E=HKlIjZ=nyH$|Zo z!XOzc=y2iio1a#CYrv*gGd!m}&GgN0_=zHqs#GduonBTVF&{;5_vo)3`yL_1M^LV0X`z{bWx#pqAJp`kz-gXDH z*h^0RuEh@Vp_r6QkPNF?JBPz~x_ga!d=~T)s_Mz9A~D+96c+S!aA~_YSSTOXgx}&$ zclf#u_(-3i)u7RIby{bk)&bcS$t-F+|9^kDev!$ZB}3mr+b&T6BthO4dC4re-O+o8 zBYEX|@c~cFOK|ko(;o*<>JdO=9vTl>PaC?5N2pK-P{atvfm?;5L!Lask^& zAH|UzfIx*@tZpKTXM?Smgs1p@rHvggG8yUS9*T>jWZjickx`e*ex+k0!K9+ZB%)3| zF)7@E$+Mbl*8ceEm`?e!;vBnL8UD7gE4{uOnzio1p;m=zWHY`6rR!?P$y;81{kQAbfngS%VobVT(@H`ufXYKTh;}k3$c74T#jo)%jGgHS5KpIJt)o8C@_f zt(4NK13)qQw^!H)z^T1-dBp1U!AB!}+$A>xsxCr3({Suz_ub`>kLuV?=wQJcasb8n zUNYSZ%fwLkc6v?RT-@j7!cX4P36Cr*Q^wZsfBi)Jd3f|s9NgwGa0BY_6)}8f|ElkV z8~2`o9rq`lPS^P*su{6ztgZbBkud0;&zZ2bwke+EOJl)h;;Bb3`vbj+pUM|5~W$A@xOX|hfSJO$bh9A3K1NE=dN>;W&>t#Q- zv~LZMJr$_hJ&S^+<|9 z@~-QAGhUgPit8(bc^i#MGYPM%=LcJ(dn_(q?@j$6{Ms#-zFUs^HipEM%|y8OG0i0Q zLeDmXIiGoT8Y;J_BVk*g+Psfy`6A_QZ30HUsvIbQdcWmHIVC5+0rV8|$sJZ81ICv%`UpCThB{;(022PDVHpWfL&;EPPXe#4291P(t) zt0WtGy6@-mkCM$+gueKwK$>yzDXvcVQl94pVbvXlWi;3<9o>JTa z&$C{B{{7%)anNTV`yNTsNPbQ5$W@q0hc8YQ!BZc>|DkspLVCa)IAF>t*;ytN$)4S8*6UdCGz zp9k5bioGq>L8+@v%;;a7&d~{?V_ECABR58uvcQYyrak{qKns%69&O{xeU|J@4u!Kt zQHknlr}e0TniCz$vwC@p%ylD96QpiLK%|_|2hJGgt-ZrDB__N^xoKTzl_#_D;um`! zmFx7J?6aG0FB7IW+v1fU?J%Xg-Hq74*}A{G>Cc|oFd1M#eQlgi?-HT)?&@ilfAQOK zW~a&c-@gUyRf}Htg&OE-Lw4N24Ssv_Lwl%+_z$u=0kda#3pcL~#QSUykX8Y24ZQuC)*Ck;t3v zfd1}mHK%A3i>(BAt4AD6U33LND+e?R-qA8&ba{W_&#qVeM^BJcB4F8{Vb%J_g?zYg zX>CK*{ZgOdvcx|wbiMw-wsQNW3Wcd%Mr`R|Irin5gM`6eln`ERY_I5(yOQcU1j{pn zAK{kxBhVJXhc>p~58(h6rmJ%e!!rIi&J>g?qnl#4^QE&q0P9x%8vlSm>neY;>;u^$ zlRZe;ET%_)tRL_0MUxyPpxdf_z9Is4Ut+$&ZGM@%pVB~Ua(7R{XAV-hy3#yw38qz8 z8ne|iL0q2BYiOz@!D6FYkt8ym8-j&2B+(y^@OO@&v@``$x~{X}m&SHN&1Oant{Xcg zXO^}&uc}`k2Lby3mha%X+$LU-Xl0^ub-EC^YXxasMzCnAQi|Vs+}j3x=WQ?$i$#m! zB|w~l?A)M@?onIByhXFf+r6+45gJ6b51XFxlAII3EIm+Km6Fa87U@fg?)O=dp}cS< zI4wxe)2tAb6+HeP3!%IP^S!@>{i}GsKbbPUl8g*5#J2mxyE&yi{7Z9RdZ$E09U?j@ z(*Qz*iCoSnGmlVQOw)=lR((US_d%@N?uHajGBhpoxY4R5&%Xc&Jxebj)~r-KdlH-l zgM)>9AURK(F8Vlrdw#YF>xlv`3h!G0xwakpHH{>fba`gJR zselV>tj==5mR6Cp=tEhxFkWY<8f$!axe5vD8L26XQb8So`1uw;a*P|yAK;xU`Z}Xi43IcmIXL>{S zE!znj5uIQrOoGuyo5zJB1U3X=XG&4i7*9?}E!<)N%BHE)ABIy$dL73qC!OAzyL;QG z*6kSOIp5h)Yf)r+eJF8DWg~b~8q-8@cnc}h@o8)TIy)<5}52WRP=5=7MG1d`D?c$$#8iXv`C7Za62-E;Dm`R`WFWt@1oqUZu zm8$OG8E$tW_iF(^{Pyn?0KeQMKF8KC#YuK*oAT3k{l0o5mpxB;H=Q{y-PJh40x;J@ zpvmk$Ji2c!vMPtQ|74Le6yEaSU;;^X-t0F?04wkr`gBEJ0}n-D%usgIH#)0U;7X!a z1HQx`Q)iHV*j2c7CY^7pbRoo1kUXw zHy$*BA~0s%75tLZ8zSDIC>c_E(zJZuCy@di$mqshC44qzvd~+ujZ}Ldep_@&&_7k{ zBXTr3ZHxM=n)7-F+j=nNGDH3Ph`60TGqrn2U*~^C%L7STxVRdmlY8Vk4|)RV z*T4rtz7iS!6!fBn#ma!3H86d>tz!1?vGy78kpz{o$r0jk=4#)y_9PJMp^z-YNxOY~ zGJQOF*-&ClOmyoW?)B7`_(QSOOPU-Z0vpvc$-bYC1bFh%a>@T1kTTr1XI8KuY(M^0 zw!7l^u0H%Q!qIP2AR-zqF8iYcd=en`TF*A|dl#xqbt9Oo9ltO>>tasLISRYrR+CXw zlnFCkMDTf0x(`3`^9)8E?>$ph9G?;1mU*VMV@>uh3~Op6sspMbx>1P_V~I{vS6;QF zY`2%wP5A-H>8@JXK;&Okk@}2;FSYguauJHy#C-n4<-BGizR}(9MtngOy?(D!uHl(~ z)K4v4m|D~=oVif_xmq0lDlAf~aj7ktmRp=n8E3eT*LMM%1>Dmlu*QX;_Ybt)jYalF)rezaE2!JG%`k(7GPd?nap8B_G$DEAC3H^1i5_Jl}GvBOoo3==!qo=ux= z1bbEaerMeb8l&GvB})1H$WE#IdiAn?`Y6y~+{dj_ZA$ni48 zEZqQ{gn1O1pWhNk#7j~}yLSAf`iEOVERYA!wiD2pwvVen39jEunsJ5Ok}o%u&2-f} zd*_HmxN$ZrcEkUHC-$@Ya6}O^!@WVqisFynLyEc;CUpO9X6(Vu{L3-{9^|(m#g=rWrQ0YK`SUUv(+r zEM)VMKJqYpDkQEx?f29ox-n+LQv*QW-~MX8ygkT}mh#py|GhHvv`~Zjt<+ZgCAV#q z)9=nmNBCAksmf@P)^sj6Dj>=rsAaaTOiFGUyxqQO{6&YVm6X-im3N__@mIlkAI8gOv- zr@8OE2SdF;tf~6JCk+)ue7I1I3*l@WL3xa!<$bMzp$_EDY}1r^r!R!?+@G(MkcA&n zg(hlTfQrbUkujO!v<^60zN^7sD*lIT^-eb^7kBeC|1SRG86$9oMdGTll1v|+i?|-z zu(HGEZPgm~5)8xcNMs_thG@ZMTR8`R-6>$uJU80M-O|9rtl&Q~TdW4B6G(+J86k+e zd$9_V--(9at}2HNXl4ieB?Jo>S7Qe`t+DK<%_weTS_5l8L&6~6Ta0Jz!m`XSz)3m_ zzY*j@@L2Kmw9GHc=xy02KdYTnfkFmm87rUp_|AHLR1}k!bFM@hATtr(Xif{?fg1HM zxj2dau9)O@VlX;iOg?UD||di9%eaLCS<7{UHbs_i#}XoQiP-QFR$rt18UE z^l=ng2H1pwe9{U~Px%c)kRPtqm&_0CA3}`;gD?jFv0*-DfV*|XBN~GghP+dFAWhJ4 z2;R_$Lwfnvx@~MV^(^6^8IU{?>lf=uzESD(JA)0svz(#cQ!js31vpR5_>bz!czBhI zK7wSnO^JqM(KG8dk>~vvrf&Bmza~=pF7z?I*HkY7bv-6%ywA86ili(+Wvd2jN4SX1 zQue!}wAyzK(ozrj>d+8l3L|vT(661AqTJgjA3RzjEWQLkhQxytjMsNxGWR`wK?P40Hg-%D;Q-KZ>OY){7S1WwA>@SXg=1_)6WrLr*|a` zZpH?3q*59Es-bs!qAU~kr`*pzA%gI7MPgV39ejxNG5Hq7TDLZjLJ+VgKwll78J0Mt zhx)^dOuWXEv|XP02$eo&gA?*mN;@X-Q2?Js$GI(<*mWboaD3sr;M;#uNdu4#<1NRt zgnK!dnaCewP1?T@SDMe{J_@ljkyl~{rgy9N_q)kKeh|lO7GIcVm1}OL|8Z9f@Ty;$ zYH+sH&N2^?iO-WV4DwcuMN_f#bB+HE({Z6jWecOw@~l$|dQM+N89pLRnNY=yN-;Qq zWMB0CV<%TCE~Av~jJTjnbBt*2t_`~UoH`&h!Mb662sAC|lQ16x=${@&^Za{kw(-2x zjls_d+{@|YWg0WLs#PuecJVX4ct~XO>a8`m)f*D8stq?W>;!$T13wA+94)09J6z-?^U z;Bj>_uI!(5t#%>$T|Ay2(eXaIV;+|b!ce=-A0Feg0Vgx?)6FE_esc@Kao(Kk z;Mc#R#RKJAaVVO|plI>XNue^w7684t){5J;)N^Tgu5@=t`u<`+y`o#wr*C@hqow2Sfm-6X{Ybp>m0)3bW4|hFebTh zle-12He{S9+h^w?=rCZ+*UN(J-|{gSH60zZp6F1(NgZ&)mijmQiuTF6!+7ckc$kK( zzR%_j(W+wlU)QVOpWlqXclv5Z5a<3-dE$SFS0et)=ZRpYA&{Ud2QQ0ai(GB+4$vW1p^f5-%+2&O6+79MhV0WBB`&xcM^)}M$06_k^3=@Te^ z!$5#Os=*XhiDW{D#Kds%FC|((dIXGuC-cwIy}aP3Fh3{RNHUsgIp3+JrnQ@z@quuR zR2EvUcm+VpuppJGRuK^z3KD6?3?6l}jXwgTN4=LA_U_80XNoq`4%n9F zFX^KY02h1MhzvRCJPZC~S9V%5?^)`=G(zKGT@>VDkg&Y7>A!q~7S^_AyIWFERwBi{ zY3@&D$4fd(L;t1Dh4L}YLQqab(6IX7JD+wa`!G5gkCIS`#EnIwV%kA<(VZnsgtbi7 z%B{|RDwLZgfRoFCBp$qo=KknlY8ggUlb8=b4=HE6JS*+9g$JNsw{gh$yhy&0m*2f@oea#ZR+}hSZH_ZUm3MSrozsy$ zAqWRKPSbcmVF(eFt7cb^yC;p_0bLG*yUQ#FZjbnuVE2MiV#(~!IK0j!OL*-jzOOKciNZ%lDj${!z- zLORH6Ub#CU8zEb+LcU5e1ogUox>xp7H!U^xT)Tc-mR@YuG3Fc~FFK01SG(S!j?ER0 z_W;)HuXS)Yc>ppI@;P)BiJJSJ9WHz(c1oYAFB&SaReb+ffW;B z(0844NpP14>-zKS&~xrui=NEgK1C>&{yqp?4z4tpkGF^WXJyGVW_-KMB1#@4#3;hH z$Lg;;Ihe%Vdv2aJ`Vl|h0DLB zG*oFF658TUx+bdpDjJ-fl0<%RqmI4BHwZ3m-R%uMfd=k${9lLDZoe}+KS5WPoqiT; z+!F0$1d4~ioHXoPvVu2Pn9^c{x3pO^^LcRnZ$Y=2gKXgMgOYN}T@`UF;^BMmF2r9!g+0aXVFe5#3@C+-j3RA~* zEMc;YveIttIt)1orn~%OK@D0of+6@b|ur^xE zrr^Jzl>;)m^LuQFmoa~B`%P~%WofiJZ+$Jlq2>G=yn4(4G2n5lk`f)D73i~n0YEBe zx7s3tKmcbm)qVVZ!k@EIDo`yD=g3LmvG>d zw0I!}(jj*vDXaN>zI3sRU#IngcM@zt`~H`D|G-u7jCSDgn+PW~yHv(HhoL$v2;9_} zM{i~;DALA$ywbw|GX95FwYgbr07{2t44x%Q8Va9_?6G%K>#VBiL+rdK!U~RL=rg<7 zqQ42g$Sw;)b-Xs4+NmY~;>EC7#cl_>zhjRvk=!1D$PEF6P)KGPJW2fj1;+~O8N?~$ zKI)X}N<8zX9IWUZ85P8mX4)KQYD%=$cO1INK`8lgAk9mJrdKt-bXu%~0s}f}_ zP#R~9m3j=ZS5=G~~2W z5J>L5^*_QWQq&YgT4DTmA2}SY`~mzXVaD8ugaFo`5ZERM!jrtcL9l>ZU{bbB5Us=p zd{B5o4)=!UI#2?72HB6F)Ti7uUE4ooj`K*al=0AJXdy4^PhiFi5INfT45o7~6t06S zta@M0QNAyyk;3||)ME}`mI-BVcDh+QrKz|jpSIuNfKv5o4lH+(EK_jplv3Ypxadjy z?3?*=wsMKBcYmhiom6}GlUh3g`H-;01Ny^Q4&YIRL2-W+H=|y2Gmpx{4;|koD%wO| zzt6SMp45yw>=YJq7xUSm7bokxj6Ixtwmi3AE!iGScMP~_xMUFKwB(;TT7TZrz^|PB zJ=L`JZlr>raZ~wJCzoy6){`kGrEYf|%X*!{Ny$Icp_ljj_C@gvyb0?`n}88Ij#d|f zB!y6PKe@A%{P*yvEy%9oheP$|7n_>|&0L}Bn0t|0ADn5|9%!YhJ!_bu&sH_5Gb1qi z(yzr~a28{$5{q6j_&VCZ>P$N0A(+BNtF`SLho)sgCS{R6*Ohy!Lx3mexL5e&A|&lI zarF=Z6q-fk;5x*bdqE8?=`VYKzLJ65CQdeQw-2Cqmr@mOeiUe}UGZLI8uX&SQ~#I6 zmbUizb1O-)+)l7_oZSQw-Zs_#y$@(s@QYC+!;S`PwrS66$iHH*b-PMNZClLYtl^dW z*AIdEs>7Y;eQ4iDn2r6EHw+$k? z4l2+y4y-?kS3vY75bxVMaeW-kU>m&M_Vp*x!5z;i4d5+!x({hF(7wgv4R~UZ7zeIQ zE>QBQK6q5|JD-F7fw|#cg1jb(UjvBcnU~Yfa1&!@Z!o8Pdqo1ALI?L^skDrhp!R7D zG{%Ms!q7Oexyt1>!IRmKNEgCa;lHNBgWH-%iA(#%R6`B7c$NwPc--}d0PHH)96hJy zp%26~cp-H)GgwMxl-tsrk>6O-fzUQB+whfvNJCs`m$n%+oAr*$2jd1@O(R=sucJT` zhWx;@mRg>8B+@_A)8(9{lcJMz{snl#6%PegfqXtW?F3NSL!wL_8;N8gvSa*Wsy z$PX5xsdVvH@gcS6FzdH-U0@e*EoGrT$7jyDb^nnvvR^n&;H3H0$r)3(dvk7E%yIuy zDlwC^34vE5oq43Zunhw7+23$SE#g+Dei4H7duYGmZK1<<6R%udpsIiGX05?z&rkUV8$02d|ETcEW4l;s_2sYuz+& z@6;OV*3*tl+p>r*$PIlqV8k5amD!vYlfA`257rx4GD@2gHpJ!b#1{hQun&i@B8D{=GpXo0T?xA*!21b9Vrn^tZEo z;@%b8-#jJM29yRQ-2Y=S74zMnRcmPY@+q|@xw}uvzmofvdhN4?anmknhpN$az*cdj zW?U#mK_DRLv2pu!M4n9zuB23Si%LWLj14KkQWU#^25ng6bbm)hBN?T#W8$8u89cTy zhKS{oQ(7$Hh15?RaCp$N47uUhyauEEnw~E^A7JsNTSZv4)0k*Z8hvqseenjN#9aub zk;;OxW^5(RLhya)%)qLk26Kh(T3nyNGws1uKx;2tXaX%F-x^XPVlY;!yVoJc`&Ov4 zk{*tm0BHJOBJQaSd_7OHWN;kq4dxAHjuDCJ{Hs+zmS%=`g!4IGZL^*vdUYK={MA-%M8L-){+AkppyP@ zst*sCfEO8j#v_EyUN0C);fj9+?&0!jj&Jk9m%Bg7VW|D-L&n_foZw7_zH2{!U9oZ-@C%FFJIdce;Xb z@>?c-Z%Y=+M6d)IE9)sqB9Jjbs!8DEv1e4I_Bl~uoxbZzwCH+UM6a@k04_+syl*D9 zQ}JYJn2g%;8+ZVF8bgYhfPQLu&wtXYpKQ9cwM`&s&1mhr>ut13b&2Q7{xl2e5$LLe z-K{NYt}XwJt?rdAfru@MoZK>wa0A;U7%MHlsjFfKdKpQLkO7eEkUu22hznv?V97=y zI4!O~TeDbPC<8*x(KNxa3{(Z+P6w= zoVWMCemT7*ay;yg5A5`-^2<9k^Sq&^)4M(O1&B(FKQ)3yFgM&{1TGlz68c2xdJLD zt4#8i>Hb4er4B-uQZMba(o}_29|_=Er@-z5<*fw2vHpYoubl_Z-!c2}V@R8{wnD?D zk?ry3&ftuFnSkT?6VIVfq$@1ZjvKX^`ro1!reN*(OngAf=xq&$~4B&@BU#r`b&e{?PE5Pqtke~0mxA%ae%!;Aq{ z-m&$#(B~*1o}tBbkEtdi3)Y-BdwA?2zHjLg@?=PIsC^7BeZEx5^EaGNLxU$CsZ}j@+n;v0(_2zy5FaznIQxY3n5$Au#h2;nf9$h4Ne zyz2j>>@DM>Y`=D45GACgTLfw8u2CtG79^xaN?N*6x~01n5RjJc7)lsGVhHKZ8FGMO zW?$U*^FIG)zk9zQ-YMBltI(M|0{>b0&$6z5hQ) z*KZmY$gZsIMx!Ek$*ubWLz)Eg5naSDyKF+eKTsVy8m8#Up=%8Fu>m{E0~ApBIB#?w z!|a6h8H+%}5Giq9(9iH~!ylMk-0#P!Y3*}(3yV4Zq%kjvxUBsWLSxUr(JKHPp(ql8 zjS;pBqoX69=D%2VS4!I+WaC@)emVQyT}4Rg$N>2E|2|DQpmmy;Ej!*e*R7tjEZ|5& ziskR`Sn{7i-lMF6R4!drJ2vY;uw&_9Zx8~alA3lRm@@o8<;nlSmUbRFr*)HlL}mnh z`sJ8U=bnz({ME~c<}%E>qTii7tuPva^czQ{$ZXz^RB)~y&1a1-yt#eNR4?8SV$FJt zsOP=GhVr=l?(fpXs}wmZYQT%sTOk{{INBA&9EFGvObYT?^lP{lE=bemiQeY(f)1mk zS8_wg`(uAfBrN~*qt;i37xI!>mRz=T!un<7djg8fc7*^kmI6pMA+IMTM}8rRXMbFG z%M5Z`z&yR2e2SuWY_M*XtSyXc*%gJg49lusm567E0q1%KOe2UE7^~rM>s~yOyw2HM zY5v`(j{+E*BOQkReq}(&LVqlbfYuy`R)Q0O5__o;K|F!U@7o5=sd)!spkZB!f3NQ~ z6O|@z1HKc#%U)w*myVGha>lk=@l2^Zja-LFEIg||eR31TKO~Y#K4Nz8PWS>-A-`~W zew^h*g;vLLD+X zEab>Xo`X& z-FCfoD>vC&SL18ns469*oFD>R^J3s55siAD68AyBj3?R1}q5yYz`P4RN^BpQYO~N?IM#cDy(&akF zhKbQ(ZR+Q_`U#(8@dM`N3AWeIcj(*HUHF~Y{)fi5XE0#oR5Gn%j-_xRbH(ErH?k6a?u6edsx^}+ zRsN*;E)^W>;6N7a*GX_#W<7rd^5Ol{=k5pfsdV5C|LB@YrDg5ydHEw)_)5T1i`jCs}%4qTK+BW*(9_IFGkrz&Y_y14uR- zvU#;JP;61r=>J`;S5>o&ZP2C%SA}u#2Bf1yG4Q54#BS~Qt9mK`C5-~A1G2is1#WOR zk@+fU4V42%H!Y?$ zt(>0Yw>_+OqTD$X>Py|ap7<6&`5xID#)Dz7s2Ukinb-td5G<(vTA#1GbFZllBjyRx zhK#+w=8)GXkzh^;)eE_^INsHmolhDkiyVE;XP(sjyY6AE+tst6ICuKN1(AOpOiThT z92Y05%^;nYK|KOukp$$*T<`24dNoz0IWuX)O3`H^egslS39D9|6b26i)R3&WPs`9;PP zeN@09u2A=iY9BUT0Hc=mcp?&duiQc$iX~lm0YKHK`6zI7T{eb|dmU#~b_5{3T@r7v z-GHI@qeEkx7}c@QcLq^mVZEgPAG000DsgeE&-mZtqC&h43Fn(wNKbTVjqwSBTO_+F z4H4Ub6C1!xl5)rx817yRxGw1idnVt6)jjL709fHAg6}K8|KaUQxEJ-!t%sspr|E8R zD#5-N@rvbqj$Wb7&dS0M9+%_W0H?{%=0AL2b1Rk+FP#YcznJBR%zm-kJ2$ts`<8^s z-T|B<_5d~GzPtu)LoPURs348C`C_8US=3{=f%>R79-ENcoozcaCpvVs{|4Kb?ZLVq zj2>zHw~;|`8?s$9N(i4HWWV&f=eYA_hnnqs4M;r=xJ=-;?;_J({`|=uB#(2~ z36wqyv+HuXM3@6aJk=av<f^Y6rSN~% z;uC$5KlzLQ?7r7H1sE>WnLfCA^+sl_9RoTqe(Fhi3^(W7L)px1I}hF_u$H$^^;>USXtp#J@;AcR-Ft43 zz3==FWA4O+MhPn#h#*cQj_zD6Nv>vL@f?Je3g-juj)?TtCSN2!(7Y3Uz_y*&Key&> zyw|+NB9Zni?B*viuRbbX5OK8QfM00Q9a082KtAc^>oS1aaS{-S8Lp+7zOmU|K_t1+ zC)o-HTEhc?8R;q@j=dTqe)bwQWa0LV$W*O(FWl5<*?RTuWGHVnpDM-~(&~Ja;wO5} zWHxRu6cNl{Oli^t=Al2 ze`7Asi3V8m``gx0GgL*hA%{_k$ox0y#Z^Uo0m`>GdvrgQAki($$6_1@m*pC{!l6gn zV;bLVY<3sQG>*RbE3YHcp#yE4oC9*Im7Iah-oq+UDTt^s(B2xElQW5QmTqw%4K)5W z&^vQR?pfu``(4GCC9l|~QVE-Okp5p;v-1Sd+S95R_hOF9Z4~0XurzNKMrep@T;l!- z6o-kYdHoVSzi1(%AwBvizJk9agbm|u&vB*^Ce)1=X7*7IO(`(~tIs;qCk|gUb`m$5 zk_)v&T8=TrryQhQ_C~xxDdQgFjuA(R7QFCW;#agQ3-D^*%wP=4I}AQ=EIZx_jkFj{ z8g~g2w>d1bOS;|=g4jQ4>B0U z?z$Fy54@gpnyhhuG*VJg?5ER#V!wPE&q%UW^6?troqGEsE>>+SK%0bIOs~eKfmSLk znW&}#7Z9}WGa4NuR_3?X)x09vHZn&I>8v=&^eVt{nt@t4cdo97-nwOOFkKel#EOA< zM?dg&+1R=ZcRX9d5D%O{QMYDfvuv+EY285HMZlpWvNJzO<*W&4GhjWqWh;+VW~Vjy znXm_S8Tisi+4nUS_wMT0`+_X-+Fm}Vrq7WijBe2oWX|N!2{2>zl}YCV@>lG`dmyIY z4QkWG9ZzJew=iIm=a+AncOL#;5np*AtJ&QQ4UsuRcvbtwpOWFFbl{BSRuD9;ZJMz2 z<#wZ&%ZM3Y?}9I0Np~`5VZlPjK4#>D2^%gs`c?cCI(NrJzj_5fT<~%U-XXrz3-#<> zcMgfi$f=)5m19KuO*C1*HwPB8w2`XeqmpKf)D2jsxK>s72f zZ7}$&`=@0MuW05-9q6oQ6{bB1jLk$S-iHPB#rolZq-CZi= zHw@F&xt0D%O5fr4jhM>|bezu*<4PM4O3I?v(N8rENC>V^>y7M$Eyb@7iL9EF0E%#$ z4Zfu5;&~Tmw|1Cv_>O*;dYoigQr| zPym+8`pD$Jopx>Guv2{q0r2%AtNW2~SG6ZD8V~oxI#3wyk9^LhO(!NywG#s`;DvE6 z83zv#udILlmU~b4DqD>i9=?sQl2s#!)l2W`{v+>a0ZYWb@|c#}nSX+D;<7D0gM(__ z4Y2EAUE>ypX?zMGJlT?t5j9Ka(lG{)GPqj0|1sx&J(`UNqn-OtYW# zoj%tzAlOz~bL9~lD%a?^aFW-5(gu~eI3MH2<>%>fQPYr=f(fTkg*4MK+7YZj?Ltgb z7+tXC9^NWYZ9N?Wo6%JSA%yMAAZ?ak4~Zbn&nMRm!*c-iGA<2>D0L$ z!(JHcnpZCuvZ4w6J{ht3V!m&h3T9*mY-Eo7QJ~?YzH`=X4oPtPprcX%&BO#)xK#s) z`lu;lrg0H8;H9p6t&2L?;d_hbCA7;SHGU9#A-dlfR`XPRSN)Z?j4_?Hpa||kQFPFM z=^=cCIFR(SU~0Y67%^CXB8R%$wBfNKcf8~86Or8HjGalApxQVO#v5Z}6F-})MoUY! z?Ib;hm3N~7Pvbk^2wV-__~rJDSSdzUqn0el7`;^~I=^?hsF`|ttmNpJaL6r>^qcN4 zn(dxsCCfmFX;NEtBkKg9;Amg3qgkN30p_FtEcBSyLWTPu*U6aA6HhA$-?8jq8DfXP zF`%d2Jv0-W;(RICy_zJ+8_P+5ae&~u;d3K!r`Y1Jh=s(*mFyBqKpm;zA$0;YK8Y63 z`S;xQKLsFyDzAW+$2{%j&0;}uooyniX#@!vmN9vl#qlwtzQ$}@j5g2bR~#z8)Gp&P zy7LwL2(aI18p6O3{u1^mo^2(h@U#a%neK(}3)$T9MNif{Hmf-4G;$wOj>#`7-Z#;o z+KE~~_?-`xQ$L@=Cy^n!I8h7^?H)<+H=BHN3Mc?sxXA|VJVk`{?s-7X z8vlby5}W7FIz0DUg9(Cmc6fARiQ&Hkg79!lafRTSo|+x^a+U*Mt{#@ll7hZ&mWY&t z)X~-d6b@xfCe0Y*c7orshEkHK!1LqZLqQ43 zcGCP{AZzV}#{aL=>Ne@~(ynIT0BnCorT4Ip=d{#4-OsEOrw{n+ zMqT9x>Q$`~wUxG(iB|1Ejd%m#pf9iM&jz(*O<{^DVms+fiuJ?;?Y*bwU#$#j_=iBW z;Or&g!$>}hh7$$dy3km=G-Z<6Iu_H}uCc)4I+*{b)U9wVx8?J!iOrgBUCE_yKRzOr zQf>4wQwpzQ1EhB3SvCNm92H(y+LkHj8g8O}O^o%zHD zNh0DNkd=Xz`d!rQJ^9@%_~rCO@K%3!z8*W}k7SwZaIGK)Ejm`!Q+b}!7yGs<*3r9oVyeB?E>x%H5%IlIen9ofpzM4 zGC#$#yp>>>oidbN-n5Uk7g4;E8B4)cdboCi6+N*?PT9*xlFjX7&L89mL7>`5(!xOn7Ml!qoVyd}ZfxVQR4ME7v) zqmDZJmEeJ%5hIe)>#nO~h5F0mP?v3Vt3joiQ&9Vrh(Mu#F0)AouGcG!zt^faT4~(d zKpgj1-5h(C7~We+lb2@y-czCBc3CPKmByo{;X%1i%zT(o!cc-(i{(1N=|S*-u&8sd zjuZDisMGig@^LpFaFbV?4phGt$YEiT%w5(Qk^q_jO>inxIHjn7yh+zT0$eWrMAXXf zn`IdwpA``K>A5^t=l^kkUtc5P!w$z&lk@(FI8=!T4p2`?IS_p#oqxJX31&8go8!P^ z@sO2Y!r7?>3hk&HmhwHp~23T*zQN6@h zMVqu_L+Wt*{&0p6U$Sbf`~eUvK(AysKJWije6;VOG}i{jNr~i6h*zP*DE-j6Wgp`h zocmuA7TXAx|9l=1@cKLv4_G840s67CsLx2$>VeddH0)|H%2P->M4`V6L^3AIV_TP4^`Y(`e zRvBVpluL!R%ST~tZvu&+>XeaQaXBRO`%b%_1 zv<1d*9L?!#DVTIu1;;*Qji$r;A#}f>_6~}|M-5A@(HT3B#zub3>&5Gxe;y8pbOUvX zY#~EU7t9x*?#fc2u$?JSHc+5&`@T7H^K$4Q8fvjqit{e z;EEJXW1wEbfOkrPevqs}$z+EpqmH|jatqmSs-es+*r5lqE&<`+689_PM@%K!pVSnv z4Ecs}_P&)SKvpcFKH^o$qQHM@2)B%!=@zX+kc<&$MOgY~B28RYvdz%m#4|4-7glLj z2FijPtNgn!sb1^fS*dLC|HVov;Y_?Cx1xQ<^CnXhp>TVirS*bS$po#1Bvg>Z?s8@_c+-1OI zoFL$lQ6G_1ZWRXt$sy|`EvGE}mA5Y`#D-z-y*^hmY|)wx$V1n>yA+jY0@VCywpjd2-Qq0zceu4Ufr zOV&gKwI>RG{?T}lK!bndAE8&g>hY#jGQ}{2lq2UX%n=XmQM}JQAse*vD}N_Pnay%W zvqqGJ8@DBl8;;|Al!KPtj`&3wFSFC7>2>8Tz4UoyE8$XZ^e2MV3_f&k1V#2R*~-mS zCwaJs@Vv!UTgF2l>G}g4NBob!n4p*)^(-vg5D#S}375sL9DcS**@n-HxmfbguL*uS zU9A3rVgj*J*?a{!Qm)unG0i6^5LK8U@>ik2BLdzBo=SvM-GuRA=5&sd+GQd;EB~JL2M+8nMct}M z?m4V}ugeDcTGbs{6K^pRKzycky$e25ezpr^CK{U+@x>67zmY~kTHtiNcT?Ci<>2*G zxS`s58XRNqKJqq#W)9BkfY_+rN$y)1mA*LZJq0JdKSLUC<7_ zL5=UIpM)v3sg-=%{z+41FNZZ7X4Hj;IJ>>kjLtedT>d73&seO^SNoREJQt)fxy0Jc z%SIedk)t+S3ZJNs?1Bt;z6*9!BlLu+KKO(CaKoQhoc0X~m1F&Hm!LSYkVsOQqj1u{ zwyuw3$B$ki`#hq%?<7Tpy_^*!V~~3~(ou_iA4wXw{(0-+0nSJ2oAh1W0DEW6L{mWX zbUJ{%73liRuzCja_CYE(k@ix%{-^>Gf0X2{3^{VOP?j*4qhhO|wx8Of_YzotxoQo{uu-w|1RbzHs{yV@at+6*4 z5(MP$jo|Z%4=uy3_9C!`%UZ!=M)}6^VWV_5g0!$p-RC7QoZk*6IVq1TP7Rm z35pPVOTnDzO*E6lXH+F`U1GDP$oK1)mt-x)e&zIXcz(ezdilT1RPRO4El?~R5FyMx z7U*BGoG=4}YVa1=`4>W=z9IRJ!Xev+8UXtI*59fWTQvK7btEo!)bpV9>)e1UsmAW3 zu)J~0aT%~|l*fi=YNgHb0J%fv2h$sr1g6a^14 z@WMOy6M6vl)V_K*39fa>J>*#IbMC}P{8+Ya&(~NSm}Y`2;(>~b(7%~zF{pW8(hE-k zbxx&|FFWQ@0b!_)De+G296_+6=+-O5VP8oZiu%8_qw&XFdRhMh8|LTD#3WWU>~x?? zXBjK;TFuQEK#$z>5uHC`5ltm^jQ&P>dC!R0)ScJ))6L9QCvl!htXWt$r&ifrWw@Br zCISogs_;ztp!{;#s$*0pJ&W^b9l~I0fb6kS)R^;j+-XoNaEdF&E9?X*{on>KQdjHyfjFAQ8(`F!Osecs@kOmNfsk+~egMsl?_7uM@dnpT zurhRfGtA})ce##!nRTi3(a$GM(s=dd7=-#=?GxX=cC>89uWD?p2~-`&;VQ3`{MxwpRZ3NHC+a3 zCAo7YzO&$;}a-=VnVOnAeGeRl{8^l9@BcB zJNdLPI^s%Q3i2{&>1@5kD>yjB9%n9On)MR62s&)sJQCr3RaDc912BEhCp0l;IK;9T zY)7Y>#vvm9B4t2|jJfLvibVqdvJ|}iz3eXMJl$1ddX^rvFzhG9N-JUnEz02=@$8t2UN?jB6~(dL0c^v-s>{9!mqY=tqDs{GNDtD^ zI8MnFrtwA=_HrO9?%BB98xzzx>tSHgh&$>Y1CCQUTwTul@{zSwwc60-+s6ZKaI6-^ z!Xf%K`-lJkh3mLq=rSqv(P(Eovx9b;7~uZzy7LqR0FZq4us^;f)%(!9e(yc>L>d;~ ztbw@Krzhq^a5S?Ha~cMW1L16vip|fOc2x&7#R%yO()C|nBrpLxqk?Z$li9%V9u!r+PpHz^a@`^YuNG6uF20M5?G==GanzbxmaN@ zB%f7%alL+#mj8KEMQ)AuL+$k*5ra~I zR)Js6UktKwwEHKM)F&LPOf@}@1rsp=w=nCW?bzu+^JJ7m{GDCeU4PU8ax(P*Kycq> zPyGpQ>b%zd=Iuv9g)&}vHN>a!d|;t9WMmwH?Ov^0ET;^9(y7ea@=d~Yy#N#I{l7e9ha%><6%jsn`<5|A*|q5kguktEz0&j5>aB3V?bgs0yc20gVs?tIA2SMg&J>aBh>qS?J!x3jLF4UUeHmni_7oSzd{zN z-2yx%a?Ppxb9NOHtUsR!#{Om>n@oDYNV-sJm|RBBqnea z7nzP~e1YoVy~NJN54yPr;SqJ&6)jL66MN0nL$ak*Uj=gh$-hfx_}ym#n1}Cw1D$sb z$~hxhMz>@`!e<$bb8TCxNT?Qw7yL&fz#S$OWWqgW`ZOz?FI0H&^mq^c>~Hx6cEdQI zx$=@A%*0#q?^vWVGI1NzSSVzZ7y30+C=-vu-uG)69~K`)O|{G?@9qQ5HtLJsY+cz6Im>;_G-g)cs&(m=Hmm#K>fO)$mVHvsPkS$d2cq z!}_2$EXh?iPGqB+Xh%Io#0y5SlLp?UdhFS+z)ymV+S z@5?YDlbGQwXuawUR*)VMY%fW*lrBR>k2-%fr=QQ8ar~)J0OvywvzHG-_-H^Dv?zcMYI-6jWwiUDy)^A!c~b%?Vo%ER zZMkw{KN>+)Ik^l6X+Ww_l@^~2X=RLNL(Fmkk&F~$vMrv3O$o(`VlYmlkKFT0T*=f)iIVPg<5tI~Q;$=25uHNbROi za#c2N>b_UylNc-0uBF@(N2+|u`rM$nb>$^kB`oW`!li^ySsmgj1gqu4#*WJDX?qTz|S1`Nu1Y4RX9*mf7A%=e;wCw0EI*Uhg$F=mhI{Kc;ayc%a zTOnI`3Gw}&IeT68|DXlkGk$qIv#BD{x~nBydOtvMonb#W2ccy2J4g{F``R4C_8lsJ z2cK}3$vdRb7t_UR8>)3!Xa^@WHt89((-G)+d+H`1d;_M_Iam!rQG_!4$Hf;=LCD09 z{9wVl@8;g_6vsW+tDG}y8q^LW%?`vRmc?S?ATD;t)MNTfS@dnk8<|8)Y#e3}Y=}tl ztp6_H^VM0y8d5m`valEP1tZV5z>lCUjWVSlv}RXY6d}qqiLSfwc1(WzAZEpEr;E1e zi`lRHu|DZQqsD-H zGmh+EoRoNtvsd|^O$SWRujW%aW)+*Osav9_hw*cN-HIj+accprPWV7t}UMX4H%vk zsxOBZl(xZBY*q(}*L|h(85zYOy(Lyh=U4(lk+*C1Zh19LyC^0kzEd9y`FEGB^lS9&?@>s~tZh$DS9r zrx@cd!%-+#JMW*($Ri`WB!@yK1q<5)6-{P98^JAS_dRWAfVB~Bzgbx3Z(d>r@6s~7 zP48XZr9DorGT!x78@8-I$EIlAM$DlE7}npX)AZ{9ZCHP6v*C*zpaqaqypP1sN+$9( z0_QqfEh{x#Auqr5(5j~>Ok6CAMXCDZ3k4P|t5xC1PEbIkVV#MCw znr`ck(G}*4^#{Ov$+Yp5z@_UcHSjzF8!FQenD&7s;K=Es=pQ?3UU_32EWj3;PxP`n zm)o6>giOYlWKYb8TYBJrqictN7Go6;mOW?#6x7$PFDI=JXfH*f+OzrQj+>Xt4^Ii@ z_#CM*CumLlZ;hCYPQt;DZfKK%Cpmj3o?G^`)PltX3N7e?NYO77xbxkDiEZgI-f=XC zY3ttO}qf0YKq-12_4?IJ+{!L_(a0D9>Bjw}`YlT+0qgt{tRgQ_l>1$X79DP1y8 zyT;Cfc#R7#?WBnX9qKAs3VQrfcw-|23u}m5A1@}x@xCf$m7VO7gRIqDqV?B>N^vEg zv6Xp+MVdyU1x0BiYED)qa5|)J(00f6at$M8lBn;*q`|M`2_Dr&e#H%Y!AdF+X8u^7 zhJZ81`~xewWys^0_fK3H*>>a-w3rCg(qG7j4u(Xr@q1HqseX7QLZY;tq5Ac62|*J5 zp`{4g^+Ix165T%2Jl1^NItfPy_n$6WSG8X(NZj}zM{kO}AoeSY=oNNgdYb&yqd{=c zBBp}GLvoU{$2N6GF*L4ZI@G#hZSc(HQ*S8;81swz!(d`Dk947x#)&$}<@Q8Ca=3aK zmh|gN`xW0+8m?+T{Ls$!9_Ik1xzj_F3%b@QPdc;R*mVqZX|#CT$MLf-rBk*uf8~}6 zSajSu1gPJ)PJsT{FUVl2xTg4170>O2+cq@xZ(hIi)Cd`|-PPA_^9W`7KA2_|>8P`V zkQ&Ijso;&TrfUuU_>k#FO%tcdtYJ4YMUja_*E{JEIdZ)%MTTwdPb;jBTH{QxyPjUJ zEeR9(XOk$a#N;aCZ73CPl1SGNa@6I?VNYP408jB;X|Odn5me*6B`^SZ1jwwDcM%W1 zylfSgmOFgX80?5W^G>V#Se2f}pgeZqzdYiACdbn4g&#cGZuQL~k>BJ!(Ao{89p z41wF!CimVmcvyI9Iv`{R=p1qyUcCA8MX2q5WS{L;zgJ-z9`gOWgZ-pqby)n5Rs#CB zR}q`7XXURk_(;O@Uatm<{RK2m5N#{Ew=x%nb)nt<#9v9aqYP_21{qfC)~!RqC1$c6 zXXfv79dr@)Clp?<=FzT;m? z$z1(+@A>;<3~(2zxkoSV zsQe-AmwAJLh?0JvycHT%H2$B5pWDz!PIu$p%)ayaBVInu)uB&HK30VKBGViKvp`#a z({iSDY5thx!G0F0{n!Q>S(BIN`HyOCqfO-WZJo8f>boJenj^tXw_T;SXB(dRgYW!V$V+hbD$tqYHpp-Lflin`>b zyR~9DRtdDYy|P?#&^#eSY!Lk?5O zd4dnSowSPG2*DU>8(9=#SSR2}($<(z_4dxV#}P?VGsQT7~S}LZd&uHUOY+A zDqqsPgrrb=VmR*wDeZP~e-^9lbwz&r>0s8^jdZ?@Cyp7qAVuE3UayZ#uob!;@lh zzgBvU?KjK%fdLtwbSq=`avwZr7d_GNTI#)V|0H+q6zWSd<+9j>_4~Q1q{5PUukZj} z&oK-_;awY3hJR_rp5;f$;PT_5hkq0-E;z#0>Bv2TPMfn~FE6>;no~`GT2`9fM(c?3cpf*U0m^zw{F4u0e$ zF;mS-7dJDvo`z6ZN;?cgyLdAWa+Jp{9Wyq;(vSNnRC_fAgKO;oLFUtjFsplw)b@DD zgpwdyX&H6#nsq%9`GhrH`fDy-_ka2?Zu}I6q}?FXAo~!Zs?zNRxM06uTc76$qm~r0buVqtM9saS)V{FUl>(#}^eWOPF01IXrNOe(8U?U4;9=W93qTM^+ zJE9ndan7-HtmN>U497b-gP1S+pj0@wfZj!!Jhj?ukN!A9gUU50y0hkTU8!8UPTRY1 zY<-U3&os$*aKY8X=xaEsI`@4BPVCsCG;L9@KB<}zIe1i0Y)d#gC>BM^cA7kzHnVEH zL1P}&=8oQ(65M%JxQ-C;*jZ`s0Uj$s1pnxrcM#%8LNFAab{`5LE_={tz{5e=%m!h{ zn|wdxguCADJBU(Fy>3BQd|r~PxPSCvfUv{%w(S!vJ|2m?^ZD(rlW1|ue?0xGEIsoN zu3`cmqCaQ1OTgm;!e&MSIan!GHy}@5#t#=3?}|P!aX-J-pIs+;YFLHUHbj)wkWQz& zFhD>N9KZ0_`-*_#U?v%1kXX+^3O@BcZj63Nqdm2l?;!AYNx{d$yC|kvpp{EgNqsd0 z<`tHIk6|a-5uXk>UeJNy096-;p`*7YYM8d$%RNg|Np%VR>?h16|K-^fyTNwny>kjH z{4{3{6D==Jjvkch%Ol_C83VB9)7%;np`HA7(sd85fGQZspB+mS$LASGpPaSScs^o_GAg6Y^F}gc6-22&uiLUmm$#F{umUstFD4JzfFFR~}C9 zIuC}n<`SC{YS$cQdU+>DHeeeQB_<&0{w@nN{V!W`|&2NXQu z(DM4|aW`n#W8c3w2K%gbP8z2!LpvOQ(!n$&&`TZ3rfYSrj(w2KX|o6-LoGdGy;k0j z1$|q%&fcWs9D5ysFSzzsRF4w%rtnRlYH*%}k~nGQ{Y9eUtcjZos(VEx0}hLZUEY}8 zN}qqwekh9w&}=(k8^^R_5L(NABWW zYxjhC8q66_27GhE9tG<1lL7i|0FXg*_ZVOh;e`TiXqAoVyz2Mr1)hn&Bs*126@QOF z57j@K)$z_ey_M-}4D%Nf_tACec%K=&YEDcjs&9S^Ix6U9jEmR*bRiYVG&57R;8kDo z?1(_>JERgpSZa&f!P4Gvf4&))tP(V0FL zuSR5UJcoYpKnIsS^~EhIhbw((U&8QDmU`Z*dKW&tnE|G{jW=aIVSvV`B;E)Ay+AA{ z_wb##{BjDrU&2UZ6`Y4>HfV23}AA)!*4#J=ys!-z!auYa8rp74pL~;V~6~L zJ2O^PoAW?a#ZBz~H8-zaF{DIuE94Kk_y;AkH6~XKxm}iVv zwhGJQaicU5uab@EHJ_z*z|pjF=wyA`hzCY((dM7W5o^7(q}KT{M>WzirRdH_ZrrtG zYAO7qia9Kz&}XOd7WLwSpdI%YO9e@?4)4@^6k8)N+}#Tw;|4@Av|$GForPN$U^rD6 zYgm8Sm9P;74Y)+$K1%v4-apHI?~L9*jU(8^DkarwU$tv&ji6Gztls`jUw1cd$l*G< zLg+xGt?0b+`9rjCa|N0Uxczd`I443_XC97o9_R_vITXKvI;8G6;-2Xl%{X2X4^@`@ zy(e{3L|8n>Nnd4i@nr%rg@+3tIZ}kmA>&MY5qws{MsN88pY7PxwLh+`9)rZ|-qWGqDS%s_FqA?ES)t%LZa}hd3S` zyApl&^9V=3@-?@V8l|9Bx^T7v40!h^;^ivThs@2+oQ}+U2Nx3~k@?P9Kgp8LsZI62 zeV>yYqo`Snc(f`_Glr&giKvM4)nA%(kycl&6UhBxvI=^(oC1!yv2Irt`(+TaY#-xW z=Gg^QO5tOQ*R{f;fYhHJFB#surAYg=aJww%YY49xRm!QR5BhUQMeni~^2i%*wu!&zcuINlH{rEl#>y_t(Ynz=P zC)Itz$DTH~o@$Rx8=AF)Xg)4}53*LR^L}@$Cc6A0xca>kYZ7j&+Dp{3`l_e5nlcgEw7*HP56!z%>0^;f@tB#LEYl}(@}?n z-F}HAO7e=Nzp`&dut`1axb>ueuaj_3DjjTq98241P{&@`=~fm-Z`!#}^6-FI^kaC# z#&S$}VRhDH$Nn4NAINhB7@z26S(ZDXV(xJlF!^Is@jqY2`YaDU(A2T!Q8Q25afiS} zvRo5f4x?6}#R3KE;KP=c!nDD>uoE+=)Aw!5VG!$?q3CsJ{^v+?UoD-Ok%-VaIrkVk+8BZ+_p& zD_wnNDyqOJ0R1*>X7%N24(qDdF^Lsbvs`>HYk2~t(76MXKXSd~by>M}b2G$!s9xuv z5SqW@^{x7W$yal0fp68vUluL}`OES=B65{g7Ih-9BYw~Zy^#>db4vbJyoY_FiB@tk%5ow$iGT7<$-xzU!HA)oHdJo28xm2eRsD57ha;j zFmEgR8{#22CzE92m!?&Fv)hR_qX*JU)1vE}EJPy-D8M?-gEsH`woSIUzr9@|Ydk;Q zT0ZLiW%Q@2oSvKICt+IsjdSV6%86~z+9a1z#lY=@TG;iuSPOdkSul+EW3+uEV`B1MprAk{`kKtd4<2nH;ufJzsTLk%sV zNa(#-KxzUCQbZvTr3FF?&S=~dNr1$OIa?)y$FpsIcXFAnfWGoY zbjaVUg$;FbD>8Yvz}3KX2HJ2YgXZG&@NSdrEmIrufJTTkn2l=)b^e1ffS4o9bQ!Oz0YK=HCrUXUmS)&@U&)>G=7 zVR;*ELi>2a(X{&O1&3mTfP;nto+OGa%C|OVdQn4MMwsb|VR(p1Nwk#s&gngCqhwT& z6QBMUxAu0UhbV5u)L$4qd3SD-e8x(eFmrvFg3b=Ml0C1$qu^;gm`y-HT5oM zYJnwo@B(1GJ0#~`=a;P;*|I%_b#@Hy=#_ydzalUzM4)W`fQyGGc($VB1 zDvLN@XGQ^>jEo|9NS0l=ECP8asmOj55v@qcURRaz@GTt{7!*K!qi6UJsx4z>f+b{| zhd%jd=v7SbW7OwCY}=IWj5<&u*5L4cWa*)nIN{}zT+rR6u~I?2|6nCf)tGb)pD-_Q z_oj>_*#{>NyCdLN$?Q7z58Z2>)H^NK_k|%G+{5=6ACVfZ0 z`s=r2@lfv@wMk9(Cq6)(40yOQf7Lc1Y#Cd^L@ESr)(dZ+uw%5R-=nQPDvlm2AM*6E zvVPX*_3E~SE%a{w<=l30xlD7qwpushRc}{vlgrCKr^io*-cBr>yUea+8UMJXnZcm_ z%iKx)s=<@3E|yHKYE+8FR!iENN)=;*gPOI|I<{3ZH*vIyWj8^ZxBrKX*u8ZtoDUGa zs;x?gPes9&a|VL+Kc978+T_jEdJFd!Dm;6bg1V^ncKXI)whP!_b2xM9XX&dYU_5MT zYTnfo4mY9K6tPLRs3+Lj)4HFv10Vw(GuFYWyxKnlW_ovSz1(bpoHD8j*-)bj=^5(~ zHJLG?s>-&x9W!pCi;oqw=!D`o=&7X&_5Gk1KJQf;4V{Oc`xbI-R98gr`+@7B*md0W zd|(w+GcuJcjv*-IUU2Fy7_BiuNa6NqC7u!mTsI59nvYBTq&@mX#8YKl)P9VaaAaPSRQK;`bD{33b*6G?`W77xj5;|~ z^djUTm^^+D-es{Y6mo zpcB?7b0PU{BP81eW1ydwyxT~8N~VHBhSyzx{DrVq<;n0_RlwhHc{2 zJQn8WljFVGqouQLg}R`AwSJ@KzrU4|5C{F1ni(Jm!Myr8;a~;hhq}~J3#P&@o#CHSqBv76Q_wj7u@zKVi9&0>z zadXw&0s5C^@2&2kvz~U3%ON6`_2QcsBegqTxn^7&^?W%ELdxVPSSw~SZ@?kQq4R~} zDH`HTFdKG#-^rE;8!UN1BR5}$)HjS~rKEk(7>G*yY|3@H3mTmDzKQ|6LVc zd@%U}qPJ$NM>!eGeV@jKRyNfLm)6a%(H8q$B%3%jCJAS^ zYS*KhRso0FJ_8+w`?G7qZ>P>52MGgKDLO6S4Svhkz>~B>(y|B zYlY9v+N}@X*=k>Ndil@QF%!>X^jD7`-AUaYXV3pXbA7T=g2jon`&AjZq*!o(rt*ok zxD}zWNA=S)a;tZPt9GC8Wd%Jt6ox*n8304Dq@Q56*Q_O7AOTWbAxxJ53xOrI`DEk9 zjKHS|QjB+t`0PP^adyAS3`~*d8eJ>}2buyo3#;j3i@U&P_i;P3cNf{ce#qz?tvRoR zpN%nZQ8%n*qzJsGDqSD*F*bSZ=xZ1U5Z|osPd@hc28}jwE=RpT@ypobQ!16UIx_{t z9!0D=!1!=HEd8ekD)ri6Ur5lN$bw2$@!E)H*Pg1jZ+D=&UZpm`*62gKy}zxkD5HT5 z;!XTj%q!556ls`Qa8`)U%*uVoO4G8ByU7ob+UPP8;=ac_Z|^#|h7clqNFDll0~ z%oK8IQ_X@)M=*3Fh88m3H9?#l1cfZGW``~BI7@=E)v}YgQh!&!(8?6c zvQoJWXR9KQ%wl8fyfb6IZAU`H+3|uXjcbyS5MOQn6)Bb@za$a)QKQGe>L9;_TV@V= zoZu*@hgmKd@GKz@l6TZm&8?(pXa%rv_>!6B0>L`y3@eYdXeb6QnNu!B0-2ZnwViaR zss1BrD+z>Nb9fCN*B`tGV9d23>M z?P-I$5u=f-2Zc{8FiIPJ7dJo4>3C_8A)umVl_L}yS6RNl^69g-Q3hT zu4}|^Ycsy}Ac0Z-K^c!QYc$h|6oDVJRW9*HT#>ZdJ+U9m^$smMx^)e0xhsvn(JKhh_cG8`+)CH#f5VyHYmB7W`*ch0qcNtn@GEHqd48JhreC}b&Tu2 zG4DsfPEziy^GtfrT)4<#&bxPs20>@COp#>vz$P;B&cdC|t?alrGmLNA$ca}%4 zuXIe)a8($ z(wrj+acg#(%Whm-IG7+$mXWu12Q1TTKiq#X%}MsK+?J0q-#;4l$SvE}s*eZx+(8J( zG`TD{y3*A`o!kQp296U|``r(Lwfpa8y7=)7I3~f2?c4^?mxV~6(PWicOS;z+VhZT+ z>fSv1_m>HjN&|1ji%u5tFzyrNf!zSfA`X%!HLwJ+N?xZ}iFAVj?b{Q!zmHTg4Alb} zb}Q?U5$DjHyt3jRYCRX(!5D`)b1nesO3AOCy~D5JIGt;=hM}(g%38=qXN%kqY~UU| z57xwL1(Scz5QI6ZpwR27^uU{N){TK7#f&gSYAVwd z`j0b>uk(ChveZpB^sle;uXS#51H=Si?afDz`jkZLXDst1^0HIN&;w}0 zMmc4HlXW3R1QF6ECE3A4Ao9XArLt_|$IZz63-7@IqVp9X=*Z2KuDuyLP`&rJOq&gM z%UmD}l*$5VI}XMgKEs;Q9%wDL)0^5K%>5Ij!)~Li7uKY>qnbA>tqypaSFX`PccZC9 z`)_C~n2JVL$;xiV{`Cez@9;|d~5l^)X+><;(0C)(M0lw{;C^iGsRdN$I6S2#qRy2 zyUNgcDFt|L#aZ$7%H`+9yMZ>9D}~yYpP8pager(S66~mm%2@cJ3nDh)uoN2%+=kAu z!4YtB2XZHEuf1Xx&-fh(n3C%0VEvdVC?*@unmRkDksFZx6ydDE-b?vS-l?w0w^8pu zRO@uU#RlL(mPFw9UKcE+oLSzZ;N&b6J}!IOX!||5Vr8Xf{c%tscvK6ML#N|I(;T+8 zeQKBihV2w}Ds5=Lo6Hu;IWKMl3Vmw;OIW7h<#E&bYZ3Ejd;96DO-D`(EAB!Jb)ysifkS-F=s&7QmL5&Ja&xa751$}NMcnB|$Cpw_SH)tNvev@O3ggkQjZ zqMz|t0(YF)5!uk{S#Ml+LW=J94OX!xzY@;kVbHqZUvs7Lc7>>Oh%tcBYsH1?#olPv z8oHmS0w%m%fMAG7C?yK1bVJ;Ta?@D3h%NHYDo-xh@_9*07|w$I^tBSp)TfUz$R(xH zm9L^$kj5hKkEcPe9vnWK{qQC}(x|(&xYEYKUlK%h3Yt+B0ChS}2o)H@t7)LU;<7UX z^l~P(_K9%)8voocjmXva5@}|~N{W)1_r0MyN1a`7&qj833{#d1N^E+Xt(%QOa~mqd zVl!2sp<#R2H}Ch=DlyAwFQjczM?VF1LTl6ETYQS+knuwmmi*4n>_bkvCNub`lp(Zb z{;WHwj06No2$Nz*SS+eN+GAW<)M!dLP1NrqhkroJ|3?22vHp>>{x|w3EOc+}f#x{o Vs{D`xegOJoa^3t|#TEO=e*utf?8N{8 literal 0 HcmV?d00001 diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/font/coolvetica.ttf b/wizard-client/wizard-client-libgdx/core/src/main/resources/font/coolvetica.ttf similarity index 100% rename from wizard-client/wizard-client-libgdx/core/src/main/resources/skin/font/coolvetica.ttf rename to wizard-client/wizard-client-libgdx/core/src/main/resources/font/coolvetica.ttf diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/font/enchanted.fnt b/wizard-client/wizard-client-libgdx/core/src/main/resources/font/enchanted.fnt new file mode 100644 index 0000000..caa0b7d --- /dev/null +++ b/wizard-client/wizard-client-libgdx/core/src/main/resources/font/enchanted.fnt @@ -0,0 +1,344 @@ +info face="Enchanted Land" size=96 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=4,4,4,4 spacing=-2,-2 +common lineHeight=119 base=83 scaleW=2048 scaleH=1024 pages=1 packed=0 +page id=0 file="enchanted.png" +chars count=340 +char id=0 x=0 y=0 width=0 height=0 xoffset=-4 yoffset=0 xadvance=6 page=0 chnl=0 +char id=13 x=0 y=0 width=0 height=0 xoffset=-4 yoffset=0 xadvance=6 page=0 chnl=0 +char id=33 x=2027 y=196 width=20 height=67 xoffset=-4 yoffset=21 xadvance=19 page=0 chnl=0 +char id=34 x=1431 y=495 width=26 height=29 xoffset=-4 yoffset=21 xadvance=24 page=0 chnl=0 +char id=35 x=850 y=495 width=39 height=41 xoffset=-4 yoffset=16 xadvance=38 page=0 chnl=0 +char id=36 x=1856 y=430 width=31 height=52 xoffset=-4 yoffset=4 xadvance=31 page=0 chnl=0 +char id=37 x=1121 y=430 width=35 height=62 xoffset=-4 yoffset=16 xadvance=34 page=0 chnl=0 +char id=38 x=318 y=359 width=37 height=68 xoffset=-4 yoffset=20 xadvance=36 page=0 chnl=0 +char id=39 x=1457 y=495 width=16 height=29 xoffset=-4 yoffset=21 xadvance=15 page=0 chnl=0 +char id=40 x=302 y=0 width=28 height=99 xoffset=-4 yoffset=3 xadvance=28 page=0 chnl=0 +char id=41 x=330 y=0 width=28 height=99 xoffset=-4 yoffset=3 xadvance=28 page=0 chnl=0 +char id=42 x=1293 y=495 width=30 height=33 xoffset=-4 yoffset=-3 xadvance=28 page=0 chnl=0 +char id=43 x=1371 y=495 width=31 height=31 xoffset=-4 yoffset=42 xadvance=30 page=0 chnl=0 +char id=44 x=1586 y=495 width=21 height=24 xoffset=-3 yoffset=68 xadvance=20 page=0 chnl=0 +char id=45 x=1996 y=495 width=31 height=14 xoffset=-4 yoffset=50 xadvance=30 page=0 chnl=0 +char id=46 x=1907 y=495 width=21 height=19 xoffset=-3 yoffset=68 xadvance=20 page=0 chnl=0 +char id=47 x=358 y=0 width=51 height=99 xoffset=-4 yoffset=3 xadvance=49 page=0 chnl=0 +char id=48 x=661 y=359 width=35 height=67 xoffset=-4 yoffset=21 xadvance=36 page=0 chnl=0 +char id=49 x=128 y=359 width=33 height=69 xoffset=-4 yoffset=21 xadvance=34 page=0 chnl=0 +char id=50 x=696 y=359 width=35 height=67 xoffset=-4 yoffset=22 xadvance=36 page=0 chnl=0 +char id=51 x=355 y=359 width=35 height=68 xoffset=-4 yoffset=21 xadvance=36 page=0 chnl=0 +char id=52 x=161 y=359 width=46 height=69 xoffset=-4 yoffset=21 xadvance=47 page=0 chnl=0 +char id=53 x=731 y=359 width=36 height=67 xoffset=-4 yoffset=21 xadvance=37 page=0 chnl=0 +char id=54 x=767 y=359 width=35 height=67 xoffset=-4 yoffset=21 xadvance=36 page=0 chnl=0 +char id=55 x=1285 y=359 width=45 height=66 xoffset=-3 yoffset=22 xadvance=47 page=0 chnl=0 +char id=56 x=390 y=359 width=35 height=68 xoffset=-4 yoffset=21 xadvance=36 page=0 chnl=0 +char id=57 x=802 y=359 width=35 height=67 xoffset=-4 yoffset=21 xadvance=36 page=0 chnl=0 +char id=58 x=2027 y=430 width=20 height=49 xoffset=-4 yoffset=38 xadvance=19 page=0 chnl=0 +char id=59 x=1722 y=430 width=20 height=54 xoffset=-4 yoffset=38 xadvance=19 page=0 chnl=0 +char id=60 x=1229 y=495 width=32 height=34 xoffset=-4 yoffset=40 xadvance=31 page=0 chnl=0 +char id=61 x=1523 y=495 width=31 height=26 xoffset=-4 yoffset=43 xadvance=30 page=0 chnl=0 +char id=62 x=1261 y=495 width=32 height=34 xoffset=-4 yoffset=40 xadvance=31 page=0 chnl=0 +char id=63 x=425 y=359 width=35 height=68 xoffset=-4 yoffset=20 xadvance=35 page=0 chnl=0 +char id=64 x=0 y=282 width=64 height=77 xoffset=-4 yoffset=10 xadvance=63 page=0 chnl=0 +char id=65 x=1229 y=196 width=83 height=82 xoffset=-7 yoffset=19 xadvance=77 page=0 chnl=0 +char id=66 x=1896 y=196 width=57 height=78 xoffset=-4 yoffset=15 xadvance=56 page=0 chnl=0 +char id=67 x=1610 y=282 width=53 height=72 xoffset=-4 yoffset=21 xadvance=51 page=0 chnl=0 +char id=68 x=124 y=282 width=60 height=76 xoffset=-4 yoffset=16 xadvance=61 page=0 chnl=0 +char id=69 x=568 y=282 width=56 height=75 xoffset=-4 yoffset=16 xadvance=55 page=0 chnl=0 +char id=70 x=781 y=282 width=56 height=74 xoffset=-4 yoffset=16 xadvance=55 page=0 chnl=0 +char id=71 x=1945 y=282 width=56 height=71 xoffset=-4 yoffset=21 xadvance=54 page=0 chnl=0 +char id=72 x=1328 y=282 width=60 height=73 xoffset=-4 yoffset=21 xadvance=59 page=0 chnl=0 +char id=73 x=1388 y=282 width=37 height=73 xoffset=-4 yoffset=19 xadvance=36 page=0 chnl=0 +char id=74 x=624 y=282 width=45 height=75 xoffset=-4 yoffset=16 xadvance=44 page=0 chnl=0 +char id=75 x=1623 y=196 width=64 height=80 xoffset=-4 yoffset=20 xadvance=63 page=0 chnl=0 +char id=76 x=669 y=282 width=48 height=75 xoffset=-4 yoffset=17 xadvance=47 page=0 chnl=0 +char id=77 x=1425 y=282 width=77 height=73 xoffset=-4 yoffset=21 xadvance=77 page=0 chnl=0 +char id=78 x=1663 y=282 width=60 height=72 xoffset=-4 yoffset=21 xadvance=59 page=0 chnl=0 +char id=79 x=0 y=359 width=64 height=71 xoffset=-4 yoffset=21 xadvance=63 page=0 chnl=0 +char id=80 x=184 y=282 width=60 height=76 xoffset=-4 yoffset=16 xadvance=59 page=0 chnl=0 +char id=81 x=1723 y=282 width=64 height=72 xoffset=-4 yoffset=21 xadvance=63 page=0 chnl=0 +char id=82 x=1687 y=196 width=64 height=80 xoffset=-4 yoffset=16 xadvance=62 page=0 chnl=0 +char id=83 x=1787 y=282 width=56 height=72 xoffset=-4 yoffset=19 xadvance=55 page=0 chnl=0 +char id=84 x=837 y=282 width=56 height=74 xoffset=-4 yoffset=16 xadvance=55 page=0 chnl=0 +char id=85 x=1843 y=282 width=52 height=72 xoffset=-4 yoffset=22 xadvance=50 page=0 chnl=0 +char id=86 x=1895 y=282 width=50 height=72 xoffset=-4 yoffset=22 xadvance=48 page=0 chnl=0 +char id=87 x=893 y=282 width=78 height=74 xoffset=-4 yoffset=21 xadvance=77 page=0 chnl=0 +char id=88 x=1502 y=282 width=59 height=73 xoffset=-5 yoffset=19 xadvance=57 page=0 chnl=0 +char id=89 x=1226 y=0 width=55 height=92 xoffset=-4 yoffset=21 xadvance=53 page=0 chnl=0 +char id=90 x=1561 y=282 width=49 height=73 xoffset=-4 yoffset=19 xadvance=47 page=0 chnl=0 +char id=91 x=643 y=0 width=20 height=98 xoffset=-4 yoffset=3 xadvance=19 page=0 chnl=0 +char id=92 x=409 y=0 width=51 height=99 xoffset=-4 yoffset=3 xadvance=49 page=0 chnl=0 +char id=93 x=663 y=0 width=20 height=98 xoffset=-4 yoffset=3 xadvance=19 page=0 chnl=0 +char id=94 x=1494 y=495 width=29 height=27 xoffset=-4 yoffset=7 xadvance=28 page=0 chnl=0 +char id=95 x=0 y=545 width=36 height=14 xoffset=-4 yoffset=86 xadvance=34 page=0 chnl=0 +char id=96 x=1731 y=495 width=23 height=23 xoffset=-4 yoffset=20 xadvance=22 page=0 chnl=0 +char id=97 x=167 y=495 width=36 height=49 xoffset=-4 yoffset=38 xadvance=35 page=0 chnl=0 +char id=98 x=1330 y=359 width=36 height=66 xoffset=-4 yoffset=21 xadvance=35 page=0 chnl=0 +char id=99 x=1927 y=430 width=33 height=50 xoffset=-4 yoffset=37 xadvance=32 page=0 chnl=0 +char id=100 x=1366 y=359 width=36 height=66 xoffset=-4 yoffset=21 xadvance=35 page=0 chnl=0 +char id=101 x=1960 y=430 width=33 height=50 xoffset=-4 yoffset=37 xadvance=32 page=0 chnl=0 +char id=102 x=1402 y=359 width=33 height=66 xoffset=-4 yoffset=21 xadvance=32 page=0 chnl=0 +char id=103 x=460 y=359 width=33 height=68 xoffset=-4 yoffset=36 xadvance=32 page=0 chnl=0 +char id=104 x=1435 y=359 width=40 height=66 xoffset=-4 yoffset=21 xadvance=38 page=0 chnl=0 +char id=105 x=1426 y=430 width=24 height=61 xoffset=-4 yoffset=26 xadvance=23 page=0 chnl=0 +char id=106 x=1953 y=196 width=34 height=78 xoffset=-3 yoffset=26 xadvance=34 page=0 chnl=0 +char id=107 x=1475 y=359 width=40 height=66 xoffset=-4 yoffset=22 xadvance=39 page=0 chnl=0 +char id=108 x=1515 y=359 width=24 height=66 xoffset=-4 yoffset=21 xadvance=22 page=0 chnl=0 +char id=109 x=203 y=495 width=55 height=49 xoffset=-4 yoffset=38 xadvance=54 page=0 chnl=0 +char id=110 x=258 y=495 width=40 height=49 xoffset=-4 yoffset=38 xadvance=38 page=0 chnl=0 +char id=111 x=1993 y=430 width=34 height=50 xoffset=-4 yoffset=37 xadvance=35 page=0 chnl=0 +char id=112 x=1539 y=359 width=36 height=66 xoffset=-4 yoffset=38 xadvance=35 page=0 chnl=0 +char id=113 x=1575 y=359 width=36 height=66 xoffset=-4 yoffset=38 xadvance=35 page=0 chnl=0 +char id=114 x=298 y=495 width=35 height=49 xoffset=-4 yoffset=38 xadvance=33 page=0 chnl=0 +char id=115 x=0 y=495 width=32 height=50 xoffset=-4 yoffset=37 xadvance=31 page=0 chnl=0 +char id=116 x=1156 y=430 width=24 height=62 xoffset=-4 yoffset=25 xadvance=23 page=0 chnl=0 +char id=117 x=333 y=495 width=39 height=49 xoffset=-4 yoffset=38 xadvance=38 page=0 chnl=0 +char id=118 x=372 y=495 width=36 height=49 xoffset=-4 yoffset=38 xadvance=35 page=0 chnl=0 +char id=119 x=408 y=495 width=52 height=49 xoffset=-4 yoffset=38 xadvance=51 page=0 chnl=0 +char id=120 x=460 y=495 width=34 height=49 xoffset=-2 yoffset=38 xadvance=36 page=0 chnl=0 +char id=121 x=1883 y=359 width=36 height=65 xoffset=-4 yoffset=38 xadvance=35 page=0 chnl=0 +char id=122 x=494 y=495 width=35 height=49 xoffset=-4 yoffset=38 xadvance=34 page=0 chnl=0 +char id=123 x=55 y=0 width=27 height=105 xoffset=-4 yoffset=0 xadvance=26 page=0 chnl=0 +char id=124 x=683 y=0 width=17 height=98 xoffset=-4 yoffset=3 xadvance=16 page=0 chnl=0 +char id=125 x=82 y=0 width=27 height=105 xoffset=-4 yoffset=0 xadvance=26 page=0 chnl=0 +char id=126 x=1836 y=495 width=37 height=20 xoffset=-4 yoffset=67 xadvance=35 page=0 chnl=0 +char id=160 x=0 y=0 width=0 height=0 xoffset=-4 yoffset=0 xadvance=16 page=0 chnl=0 +char id=161 x=2026 y=106 width=20 height=66 xoffset=-4 yoffset=21 xadvance=19 page=0 chnl=0 +char id=162 x=1689 y=430 width=33 height=55 xoffset=-4 yoffset=6 xadvance=32 page=0 chnl=0 +char id=163 x=594 y=495 width=33 height=48 xoffset=-4 yoffset=6 xadvance=32 page=0 chnl=0 +char id=164 x=889 y=495 width=42 height=41 xoffset=-4 yoffset=11 xadvance=40 page=0 chnl=0 +char id=165 x=627 y=495 width=28 height=48 xoffset=-4 yoffset=8 xadvance=27 page=0 chnl=0 +char id=166 x=460 y=0 width=17 height=99 xoffset=-4 yoffset=2 xadvance=16 page=0 chnl=0 +char id=167 x=1662 y=430 width=27 height=56 xoffset=-4 yoffset=6 xadvance=26 page=0 chnl=0 +char id=168 x=1873 y=495 width=34 height=20 xoffset=-4 yoffset=24 xadvance=32 page=0 chnl=0 +char id=169 x=760 y=495 width=45 height=46 xoffset=-4 yoffset=6 xadvance=44 page=0 chnl=0 +char id=170 x=1323 y=495 width=27 height=33 xoffset=-4 yoffset=7 xadvance=26 page=0 chnl=0 +char id=171 x=931 y=495 width=37 height=40 xoffset=-4 yoffset=30 xadvance=37 page=0 chnl=0 +char id=172 x=1777 y=495 width=40 height=22 xoffset=-4 yoffset=34 xadvance=39 page=0 chnl=0 +char id=174 x=805 y=495 width=45 height=46 xoffset=-4 yoffset=6 xadvance=44 page=0 chnl=0 +char id=175 x=36 y=545 width=29 height=14 xoffset=-4 yoffset=29 xadvance=28 page=0 chnl=0 +char id=176 x=1473 y=495 width=21 height=28 xoffset=-4 yoffset=12 xadvance=20 page=0 chnl=0 +char id=177 x=968 y=495 width=31 height=40 xoffset=-4 yoffset=41 xadvance=30 page=0 chnl=0 +char id=178 x=1162 y=495 width=22 height=38 xoffset=-4 yoffset=7 xadvance=21 page=0 chnl=0 +char id=179 x=1082 y=495 width=22 height=39 xoffset=-4 yoffset=6 xadvance=20 page=0 chnl=0 +char id=180 x=1754 y=495 width=23 height=23 xoffset=-4 yoffset=20 xadvance=22 page=0 chnl=0 +char id=181 x=1919 y=359 width=39 height=65 xoffset=-4 yoffset=38 xadvance=38 page=0 chnl=0 +char id=182 x=1184 y=495 width=23 height=38 xoffset=-4 yoffset=7 xadvance=23 page=0 chnl=0 +char id=183 x=1976 y=495 width=20 height=18 xoffset=-3 yoffset=38 xadvance=16 page=0 chnl=0 +char id=184 x=1350 y=495 width=21 height=32 xoffset=-4 yoffset=74 xadvance=19 page=0 chnl=0 +char id=185 x=1104 y=495 width=21 height=39 xoffset=-4 yoffset=6 xadvance=20 page=0 chnl=0 +char id=186 x=1207 y=495 width=22 height=38 xoffset=-4 yoffset=7 xadvance=20 page=0 chnl=0 +char id=187 x=999 y=495 width=37 height=40 xoffset=-4 yoffset=30 xadvance=37 page=0 chnl=0 +char id=188 x=328 y=196 width=53 height=84 xoffset=-4 yoffset=5 xadvance=51 page=0 chnl=0 +char id=189 x=381 y=196 width=47 height=84 xoffset=-4 yoffset=5 xadvance=45 page=0 chnl=0 +char id=190 x=105 y=196 width=53 height=85 xoffset=-4 yoffset=5 xadvance=51 page=0 chnl=0 +char id=191 x=837 y=359 width=35 height=67 xoffset=-3 yoffset=20 xadvance=35 page=0 chnl=0 +char id=192 x=477 y=0 width=83 height=99 xoffset=-7 yoffset=2 xadvance=77 page=0 chnl=0 +char id=193 x=560 y=0 width=83 height=99 xoffset=-7 yoffset=2 xadvance=77 page=0 chnl=0 +char id=194 x=830 y=0 width=83 height=96 xoffset=-7 yoffset=5 xadvance=77 page=0 chnl=0 +char id=195 x=1143 y=0 width=83 height=93 xoffset=-7 yoffset=8 xadvance=77 page=0 chnl=0 +char id=196 x=913 y=0 width=83 height=95 xoffset=-7 yoffset=6 xadvance=77 page=0 chnl=0 +char id=197 x=109 y=0 width=83 height=104 xoffset=-7 yoffset=-3 xadvance=77 page=0 chnl=0 +char id=198 x=244 y=282 width=81 height=76 xoffset=-6 yoffset=19 xadvance=75 page=0 chnl=0 +char id=199 x=742 y=106 width=53 height=87 xoffset=-4 yoffset=21 xadvance=51 page=0 chnl=0 +char id=200 x=52 y=106 width=56 height=89 xoffset=-4 yoffset=2 xadvance=55 page=0 chnl=0 +char id=201 x=1618 y=0 width=56 height=90 xoffset=-4 yoffset=1 xadvance=55 page=0 chnl=0 +char id=202 x=795 y=106 width=56 height=87 xoffset=-4 yoffset=4 xadvance=55 page=0 chnl=0 +char id=203 x=1585 y=106 width=56 height=86 xoffset=-4 yoffset=5 xadvance=55 page=0 chnl=0 +char id=204 x=1674 y=0 width=37 height=90 xoffset=-4 yoffset=2 xadvance=36 page=0 chnl=0 +char id=205 x=1711 y=0 width=37 height=90 xoffset=-4 yoffset=2 xadvance=36 page=0 chnl=0 +char id=206 x=2000 y=0 width=37 height=87 xoffset=-4 yoffset=5 xadvance=36 page=0 chnl=0 +char id=207 x=851 y=106 width=37 height=87 xoffset=-4 yoffset=5 xadvance=36 page=0 chnl=0 +char id=208 x=325 y=282 width=60 height=76 xoffset=-4 yoffset=16 xadvance=61 page=0 chnl=0 +char id=209 x=428 y=196 width=60 height=84 xoffset=-4 yoffset=9 xadvance=59 page=0 chnl=0 +char id=210 x=108 y=106 width=64 height=89 xoffset=-4 yoffset=3 xadvance=63 page=0 chnl=0 +char id=211 x=172 y=106 width=64 height=89 xoffset=-4 yoffset=3 xadvance=63 page=0 chnl=0 +char id=212 x=888 y=106 width=64 height=87 xoffset=-4 yoffset=5 xadvance=63 page=0 chnl=0 +char id=213 x=488 y=196 width=64 height=84 xoffset=-4 yoffset=8 xadvance=63 page=0 chnl=0 +char id=214 x=1641 y=106 width=64 height=86 xoffset=-4 yoffset=6 xadvance=63 page=0 chnl=0 +char id=215 x=1402 y=495 width=29 height=30 xoffset=-4 yoffset=42 xadvance=28 page=0 chnl=0 +char id=216 x=64 y=359 width=64 height=71 xoffset=-4 yoffset=21 xadvance=63 page=0 chnl=0 +char id=217 x=236 y=106 width=52 height=89 xoffset=-4 yoffset=5 xadvance=50 page=0 chnl=0 +char id=218 x=1748 y=0 width=52 height=90 xoffset=-4 yoffset=4 xadvance=50 page=0 chnl=0 +char id=219 x=952 y=106 width=52 height=87 xoffset=-4 yoffset=7 xadvance=50 page=0 chnl=0 +char id=220 x=1705 y=106 width=52 height=86 xoffset=-4 yoffset=8 xadvance=50 page=0 chnl=0 +char id=221 x=0 y=0 width=55 height=106 xoffset=-4 yoffset=7 xadvance=53 page=0 chnl=0 +char id=222 x=64 y=282 width=60 height=77 xoffset=-4 yoffset=15 xadvance=59 page=0 chnl=0 +char id=223 x=1958 y=359 width=41 height=65 xoffset=-4 yoffset=22 xadvance=40 page=0 chnl=0 +char id=224 x=872 y=359 width=36 height=67 xoffset=-4 yoffset=20 xadvance=35 page=0 chnl=0 +char id=225 x=493 y=359 width=36 height=68 xoffset=-4 yoffset=20 xadvance=35 page=0 chnl=0 +char id=226 x=1999 y=359 width=36 height=65 xoffset=-4 yoffset=23 xadvance=35 page=0 chnl=0 +char id=227 x=1180 y=430 width=36 height=62 xoffset=-4 yoffset=26 xadvance=35 page=0 chnl=0 +char id=228 x=514 y=430 width=36 height=63 xoffset=-4 yoffset=24 xadvance=35 page=0 chnl=0 +char id=229 x=207 y=359 width=36 height=69 xoffset=-4 yoffset=18 xadvance=35 page=0 chnl=0 +char id=230 x=32 y=495 width=50 height=50 xoffset=-4 yoffset=37 xadvance=49 page=0 chnl=0 +char id=231 x=98 y=430 width=33 height=64 xoffset=-4 yoffset=37 xadvance=32 page=0 chnl=0 +char id=232 x=908 y=359 width=33 height=67 xoffset=-4 yoffset=20 xadvance=32 page=0 chnl=0 +char id=233 x=941 y=359 width=33 height=67 xoffset=-4 yoffset=20 xadvance=32 page=0 chnl=0 +char id=234 x=131 y=430 width=33 height=64 xoffset=-4 yoffset=23 xadvance=32 page=0 chnl=0 +char id=235 x=550 y=430 width=34 height=63 xoffset=-4 yoffset=24 xadvance=32 page=0 chnl=0 +char id=236 x=974 y=359 width=25 height=67 xoffset=-5 yoffset=20 xadvance=23 page=0 chnl=0 +char id=237 x=529 y=359 width=24 height=68 xoffset=-4 yoffset=20 xadvance=23 page=0 chnl=0 +char id=238 x=0 y=430 width=26 height=65 xoffset=-4 yoffset=23 xadvance=23 page=0 chnl=0 +char id=239 x=584 y=430 width=42 height=63 xoffset=-9 yoffset=24 xadvance=22 page=0 chnl=0 +char id=240 x=26 y=430 width=36 height=65 xoffset=-4 yoffset=22 xadvance=35 page=0 chnl=0 +char id=241 x=1216 y=430 width=40 height=62 xoffset=-4 yoffset=26 xadvance=38 page=0 chnl=0 +char id=242 x=999 y=359 width=34 height=67 xoffset=-4 yoffset=20 xadvance=35 page=0 chnl=0 +char id=243 x=1033 y=359 width=34 height=67 xoffset=-4 yoffset=20 xadvance=35 page=0 chnl=0 +char id=244 x=626 y=430 width=34 height=63 xoffset=-4 yoffset=24 xadvance=35 page=0 chnl=0 +char id=245 x=1256 y=430 width=34 height=62 xoffset=-4 yoffset=25 xadvance=35 page=0 chnl=0 +char id=246 x=660 y=430 width=34 height=63 xoffset=-4 yoffset=24 xadvance=35 page=0 chnl=0 +char id=247 x=1125 y=495 width=37 height=39 xoffset=-4 yoffset=38 xadvance=36 page=0 chnl=0 +char id=248 x=82 y=495 width=35 height=50 xoffset=-4 yoffset=38 xadvance=33 page=0 chnl=0 +char id=249 x=1067 y=359 width=39 height=67 xoffset=-4 yoffset=20 xadvance=38 page=0 chnl=0 +char id=250 x=1106 y=359 width=39 height=67 xoffset=-4 yoffset=21 xadvance=38 page=0 chnl=0 +char id=251 x=694 y=430 width=39 height=63 xoffset=-4 yoffset=24 xadvance=38 page=0 chnl=0 +char id=252 x=733 y=430 width=39 height=63 xoffset=-4 yoffset=24 xadvance=38 page=0 chnl=0 +char id=253 x=988 y=196 width=36 height=83 xoffset=-4 yoffset=20 xadvance=35 page=0 chnl=0 +char id=254 x=1024 y=196 width=36 height=83 xoffset=-4 yoffset=21 xadvance=35 page=0 chnl=0 +char id=255 x=1824 y=196 width=36 height=79 xoffset=-4 yoffset=24 xadvance=35 page=0 chnl=0 +char id=256 x=1800 y=0 width=83 height=90 xoffset=-7 yoffset=11 xadvance=77 page=0 chnl=0 +char id=257 x=1489 y=430 width=36 height=59 xoffset=-4 yoffset=29 xadvance=35 page=0 chnl=0 +char id=258 x=996 y=0 width=83 height=95 xoffset=-7 yoffset=6 xadvance=77 page=0 chnl=0 +char id=259 x=1290 y=430 width=36 height=62 xoffset=-4 yoffset=25 xadvance=35 page=0 chnl=0 +char id=260 x=700 y=0 width=83 height=98 xoffset=-7 yoffset=19 xadvance=77 page=0 chnl=0 +char id=261 x=164 y=430 width=36 height=64 xoffset=-4 yoffset=38 xadvance=35 page=0 chnl=0 +char id=262 x=1883 y=0 width=53 height=90 xoffset=-4 yoffset=3 xadvance=51 page=0 chnl=0 +char id=263 x=1145 y=359 width=33 height=67 xoffset=-4 yoffset=20 xadvance=32 page=0 chnl=0 +char id=264 x=1004 y=106 width=53 height=87 xoffset=-4 yoffset=6 xadvance=51 page=0 chnl=0 +char id=265 x=772 y=430 width=33 height=63 xoffset=-4 yoffset=24 xadvance=32 page=0 chnl=0 +char id=266 x=1757 y=106 width=53 height=86 xoffset=-4 yoffset=7 xadvance=51 page=0 chnl=0 +char id=267 x=805 y=430 width=33 height=63 xoffset=-4 yoffset=24 xadvance=32 page=0 chnl=0 +char id=268 x=1057 y=106 width=53 height=87 xoffset=-4 yoffset=6 xadvance=51 page=0 chnl=0 +char id=269 x=838 y=430 width=33 height=63 xoffset=-4 yoffset=24 xadvance=32 page=0 chnl=0 +char id=270 x=1110 y=106 width=60 height=87 xoffset=-4 yoffset=5 xadvance=61 page=0 chnl=0 +char id=271 x=1611 y=359 width=47 height=66 xoffset=-4 yoffset=21 xadvance=45 page=0 chnl=0 +char id=272 x=385 y=282 width=60 height=76 xoffset=-4 yoffset=16 xadvance=61 page=0 chnl=0 +char id=273 x=1658 y=359 width=40 height=66 xoffset=-4 yoffset=21 xadvance=38 page=0 chnl=0 +char id=274 x=1312 y=196 width=56 height=82 xoffset=-4 yoffset=9 xadvance=55 page=0 chnl=0 +char id=275 x=1525 y=430 width=33 height=59 xoffset=-4 yoffset=29 xadvance=32 page=0 chnl=0 +char id=276 x=1170 y=106 width=56 height=87 xoffset=-4 yoffset=4 xadvance=55 page=0 chnl=0 +char id=277 x=200 y=430 width=33 height=64 xoffset=-4 yoffset=23 xadvance=32 page=0 chnl=0 +char id=278 x=1810 y=106 width=56 height=86 xoffset=-4 yoffset=5 xadvance=55 page=0 chnl=0 +char id=279 x=871 y=430 width=33 height=63 xoffset=-4 yoffset=24 xadvance=32 page=0 chnl=0 +char id=280 x=1226 y=106 width=56 height=87 xoffset=-4 yoffset=16 xadvance=55 page=0 chnl=0 +char id=281 x=904 y=430 width=33 height=63 xoffset=-4 yoffset=37 xadvance=32 page=0 chnl=0 +char id=282 x=404 y=106 width=56 height=88 xoffset=-4 yoffset=3 xadvance=55 page=0 chnl=0 +char id=283 x=937 y=430 width=33 height=63 xoffset=-4 yoffset=24 xadvance=32 page=0 chnl=0 +char id=284 x=552 y=196 width=56 height=84 xoffset=-4 yoffset=8 xadvance=54 page=0 chnl=0 +char id=285 x=1368 y=196 width=33 height=82 xoffset=-4 yoffset=22 xadvance=32 page=0 chnl=0 +char id=286 x=608 y=196 width=56 height=84 xoffset=-4 yoffset=8 xadvance=54 page=0 chnl=0 +char id=287 x=1401 y=196 width=33 height=82 xoffset=-4 yoffset=22 xadvance=32 page=0 chnl=0 +char id=288 x=664 y=196 width=56 height=84 xoffset=-4 yoffset=8 xadvance=54 page=0 chnl=0 +char id=289 x=1751 y=196 width=33 height=80 xoffset=-4 yoffset=24 xadvance=32 page=0 chnl=0 +char id=290 x=460 y=106 width=56 height=88 xoffset=-4 yoffset=21 xadvance=54 page=0 chnl=0 +char id=291 x=1866 y=106 width=33 height=86 xoffset=-4 yoffset=18 xadvance=32 page=0 chnl=0 +char id=292 x=1899 y=106 width=58 height=86 xoffset=-4 yoffset=7 xadvance=56 page=0 chnl=0 +char id=293 x=1784 y=196 width=40 height=80 xoffset=-4 yoffset=7 xadvance=38 page=0 chnl=0 +char id=294 x=971 y=282 width=60 height=74 xoffset=-4 yoffset=19 xadvance=59 page=0 chnl=0 +char id=295 x=1698 y=359 width=46 height=66 xoffset=-8 yoffset=21 xadvance=38 page=0 chnl=0 +char id=296 x=158 y=196 width=37 height=85 xoffset=-4 yoffset=7 xadvance=36 page=0 chnl=0 +char id=297 x=1326 y=430 width=37 height=62 xoffset=-9 yoffset=26 xadvance=23 page=0 chnl=0 +char id=298 x=1434 y=196 width=37 height=82 xoffset=-4 yoffset=10 xadvance=36 page=0 chnl=0 +char id=299 x=1558 y=430 width=31 height=59 xoffset=-7 yoffset=29 xadvance=23 page=0 chnl=0 +char id=300 x=1282 y=106 width=37 height=87 xoffset=-4 yoffset=5 xadvance=36 page=0 chnl=0 +char id=301 x=233 y=430 width=28 height=64 xoffset=-6 yoffset=24 xadvance=23 page=0 chnl=0 +char id=302 x=195 y=196 width=37 height=85 xoffset=-4 yoffset=19 xadvance=36 page=0 chnl=0 +char id=303 x=445 y=282 width=27 height=76 xoffset=-6 yoffset=26 xadvance=23 page=0 chnl=0 +char id=304 x=1319 y=106 width=37 height=87 xoffset=-4 yoffset=5 xadvance=36 page=0 chnl=0 +char id=305 x=529 y=495 width=24 height=49 xoffset=-4 yoffset=38 xadvance=23 page=0 chnl=0 +char id=306 x=472 y=282 width=72 height=76 xoffset=-4 yoffset=16 xadvance=71 page=0 chnl=0 +char id=307 x=1987 y=196 width=40 height=78 xoffset=-4 yoffset=26 xadvance=39 page=0 chnl=0 +char id=308 x=1957 y=106 width=45 height=86 xoffset=-4 yoffset=5 xadvance=44 page=0 chnl=0 +char id=309 x=1523 y=196 width=36 height=81 xoffset=-3 yoffset=23 xadvance=36 page=0 chnl=0 +char id=310 x=1936 y=0 width=64 height=90 xoffset=-4 yoffset=21 xadvance=63 page=0 chnl=0 +char id=311 x=232 y=196 width=40 height=85 xoffset=-4 yoffset=22 xadvance=39 page=0 chnl=0 +char id=312 x=1887 y=430 width=40 height=51 xoffset=-4 yoffset=37 xadvance=39 page=0 chnl=0 +char id=313 x=1329 y=0 width=48 height=91 xoffset=-4 yoffset=1 xadvance=47 page=0 chnl=0 +char id=314 x=720 y=196 width=24 height=84 xoffset=-4 yoffset=4 xadvance=23 page=0 chnl=0 +char id=315 x=1281 y=0 width=48 height=92 xoffset=-4 yoffset=17 xadvance=47 page=0 chnl=0 +char id=316 x=2002 y=106 width=24 height=86 xoffset=-4 yoffset=21 xadvance=23 page=0 chnl=0 +char id=317 x=1031 y=282 width=48 height=74 xoffset=-4 yoffset=18 xadvance=47 page=0 chnl=0 +char id=318 x=1744 y=359 width=36 height=66 xoffset=-4 yoffset=21 xadvance=34 page=0 chnl=0 +char id=319 x=516 y=106 width=48 height=88 xoffset=-4 yoffset=4 xadvance=47 page=0 chnl=0 +char id=320 x=1780 y=359 width=35 height=66 xoffset=-4 yoffset=21 xadvance=33 page=0 chnl=0 +char id=321 x=1079 y=282 width=50 height=74 xoffset=-4 yoffset=18 xadvance=49 page=0 chnl=0 +char id=322 x=1815 y=359 width=38 height=66 xoffset=-8 yoffset=21 xadvance=22 page=0 chnl=0 +char id=323 x=1356 y=106 width=60 height=87 xoffset=-4 yoffset=6 xadvance=59 page=0 chnl=0 +char id=324 x=1178 y=359 width=40 height=67 xoffset=-4 yoffset=21 xadvance=38 page=0 chnl=0 +char id=325 x=288 y=106 width=60 height=89 xoffset=-4 yoffset=21 xadvance=59 page=0 chnl=0 +char id=326 x=243 y=359 width=40 height=69 xoffset=-4 yoffset=38 xadvance=38 page=0 chnl=0 +char id=327 x=1060 y=196 width=60 height=83 xoffset=-4 yoffset=10 xadvance=59 page=0 chnl=0 +char id=328 x=261 y=430 width=39 height=64 xoffset=-4 yoffset=24 xadvance=38 page=0 chnl=0 +char id=329 x=1804 y=430 width=52 height=53 xoffset=-4 yoffset=34 xadvance=50 page=0 chnl=0 +char id=330 x=1120 y=196 width=57 height=83 xoffset=-4 yoffset=21 xadvance=55 page=0 chnl=0 +char id=331 x=62 y=430 width=36 height=65 xoffset=-4 yoffset=38 xadvance=35 page=0 chnl=0 +char id=332 x=1559 y=196 width=64 height=81 xoffset=-4 yoffset=11 xadvance=63 page=0 chnl=0 +char id=333 x=1589 y=430 width=34 height=59 xoffset=-4 yoffset=29 xadvance=35 page=0 chnl=0 +char id=334 x=1416 y=106 width=64 height=87 xoffset=-4 yoffset=6 xadvance=63 page=0 chnl=0 +char id=335 x=300 y=430 width=34 height=64 xoffset=-4 yoffset=23 xadvance=35 page=0 chnl=0 +char id=336 x=1377 y=0 width=64 height=91 xoffset=-4 yoffset=1 xadvance=63 page=0 chnl=0 +char id=337 x=553 y=359 width=34 height=68 xoffset=-4 yoffset=19 xadvance=35 page=0 chnl=0 +char id=338 x=1129 y=282 width=78 height=74 xoffset=-4 yoffset=21 xadvance=76 page=0 chnl=0 +char id=339 x=117 y=495 width=50 height=50 xoffset=-4 yoffset=37 xadvance=49 page=0 chnl=0 +char id=340 x=1079 y=0 width=64 height=95 xoffset=-4 yoffset=1 xadvance=62 page=0 chnl=0 +char id=341 x=587 y=359 width=35 height=68 xoffset=-4 yoffset=20 xadvance=33 page=0 chnl=0 +char id=342 x=1441 y=0 width=64 height=91 xoffset=-4 yoffset=16 xadvance=62 page=0 chnl=0 +char id=343 x=283 y=359 width=35 height=69 xoffset=-4 yoffset=38 xadvance=33 page=0 chnl=0 +char id=344 x=1505 y=0 width=64 height=91 xoffset=-4 yoffset=5 xadvance=62 page=0 chnl=0 +char id=345 x=334 y=430 width=35 height=64 xoffset=-4 yoffset=24 xadvance=33 page=0 chnl=0 +char id=346 x=348 y=106 width=56 height=89 xoffset=-4 yoffset=2 xadvance=55 page=0 chnl=0 +char id=347 x=1218 y=359 width=32 height=67 xoffset=-4 yoffset=20 xadvance=31 page=0 chnl=0 +char id=348 x=0 y=196 width=56 height=86 xoffset=-4 yoffset=5 xadvance=55 page=0 chnl=0 +char id=349 x=970 y=430 width=32 height=63 xoffset=-4 yoffset=24 xadvance=31 page=0 chnl=0 +char id=350 x=1480 y=106 width=56 height=87 xoffset=-4 yoffset=19 xadvance=55 page=0 chnl=0 +char id=351 x=369 y=430 width=32 height=64 xoffset=-4 yoffset=37 xadvance=31 page=0 chnl=0 +char id=352 x=272 y=196 width=56 height=85 xoffset=-4 yoffset=6 xadvance=55 page=0 chnl=0 +char id=353 x=1002 y=430 width=32 height=63 xoffset=-4 yoffset=24 xadvance=31 page=0 chnl=0 +char id=354 x=744 y=196 width=64 height=84 xoffset=-4 yoffset=16 xadvance=63 page=0 chnl=0 +char id=355 x=544 y=282 width=24 height=76 xoffset=-4 yoffset=25 xadvance=23 page=0 chnl=0 +char id=356 x=808 y=196 width=64 height=84 xoffset=-4 yoffset=6 xadvance=63 page=0 chnl=0 +char id=357 x=1363 y=430 width=38 height=62 xoffset=-4 yoffset=25 xadvance=36 page=0 chnl=0 +char id=358 x=717 y=282 width=64 height=75 xoffset=-4 yoffset=16 xadvance=63 page=0 chnl=0 +char id=359 x=1401 y=430 width=25 height=62 xoffset=-4 yoffset=25 xadvance=23 page=0 chnl=0 +char id=360 x=1471 y=196 width=52 height=82 xoffset=-4 yoffset=12 xadvance=50 page=0 chnl=0 +char id=361 x=1450 y=430 width=39 height=60 xoffset=-4 yoffset=27 xadvance=38 page=0 chnl=0 +char id=362 x=872 y=196 width=52 height=84 xoffset=-4 yoffset=10 xadvance=50 page=0 chnl=0 +char id=363 x=1623 y=430 width=39 height=59 xoffset=-4 yoffset=29 xadvance=38 page=0 chnl=0 +char id=364 x=1177 y=196 width=52 height=83 xoffset=-4 yoffset=11 xadvance=50 page=0 chnl=0 +char id=365 x=401 y=430 width=39 height=64 xoffset=-4 yoffset=24 xadvance=38 page=0 chnl=0 +char id=366 x=0 y=106 width=52 height=90 xoffset=-4 yoffset=4 xadvance=50 page=0 chnl=0 +char id=367 x=2001 y=282 width=39 height=71 xoffset=-4 yoffset=16 xadvance=38 page=0 chnl=0 +char id=368 x=564 y=106 width=52 height=88 xoffset=-4 yoffset=6 xadvance=50 page=0 chnl=0 +char id=369 x=622 y=359 width=39 height=68 xoffset=-4 yoffset=19 xadvance=38 page=0 chnl=0 +char id=370 x=616 y=106 width=52 height=88 xoffset=-4 yoffset=22 xadvance=50 page=0 chnl=0 +char id=371 x=440 y=430 width=39 height=64 xoffset=-4 yoffset=38 xadvance=38 page=0 chnl=0 +char id=372 x=668 y=106 width=74 height=88 xoffset=-4 yoffset=7 xadvance=73 page=0 chnl=0 +char id=373 x=1034 y=430 width=52 height=63 xoffset=-4 yoffset=24 xadvance=51 page=0 chnl=0 +char id=374 x=192 y=0 width=55 height=103 xoffset=-4 yoffset=10 xadvance=53 page=0 chnl=0 +char id=375 x=1860 y=196 width=36 height=79 xoffset=-4 yoffset=24 xadvance=35 page=0 chnl=0 +char id=376 x=247 y=0 width=55 height=103 xoffset=-4 yoffset=10 xadvance=53 page=0 chnl=0 +char id=377 x=1569 y=0 width=49 height=91 xoffset=-4 yoffset=1 xadvance=47 page=0 chnl=0 +char id=378 x=1250 y=359 width=35 height=67 xoffset=-4 yoffset=20 xadvance=34 page=0 chnl=0 +char id=379 x=56 y=196 width=49 height=86 xoffset=-4 yoffset=6 xadvance=47 page=0 chnl=0 +char id=380 x=1086 y=430 width=35 height=63 xoffset=-4 yoffset=24 xadvance=34 page=0 chnl=0 +char id=381 x=1536 y=106 width=49 height=87 xoffset=-4 yoffset=5 xadvance=47 page=0 chnl=0 +char id=382 x=479 y=430 width=35 height=64 xoffset=-4 yoffset=23 xadvance=34 page=0 chnl=0 +char id=383 x=1853 y=359 width=30 height=66 xoffset=-4 yoffset=21 xadvance=29 page=0 chnl=0 +char id=884 x=1207 y=282 width=121 height=74 xoffset=-3 yoffset=-1 xadvance=121 page=0 chnl=0 +char id=8211 x=65 y=545 width=42 height=14 xoffset=-4 yoffset=50 xadvance=40 page=0 chnl=0 +char id=8212 x=107 y=545 width=55 height=14 xoffset=-4 yoffset=50 xadvance=54 page=0 chnl=0 +char id=8216 x=1607 y=495 width=20 height=24 xoffset=-4 yoffset=22 xadvance=19 page=0 chnl=0 +char id=8217 x=1627 y=495 width=20 height=24 xoffset=-4 yoffset=22 xadvance=19 page=0 chnl=0 +char id=8218 x=1647 y=495 width=20 height=24 xoffset=-4 yoffset=68 xadvance=19 page=0 chnl=0 +char id=8220 x=1554 y=495 width=32 height=25 xoffset=-4 yoffset=21 xadvance=31 page=0 chnl=0 +char id=8221 x=1667 y=495 width=32 height=24 xoffset=-4 yoffset=22 xadvance=31 page=0 chnl=0 +char id=8222 x=1699 y=495 width=32 height=24 xoffset=-4 yoffset=68 xadvance=31 page=0 chnl=0 +char id=8224 x=1742 y=430 width=31 height=54 xoffset=-4 yoffset=34 xadvance=31 page=0 chnl=0 +char id=8225 x=1773 y=430 width=31 height=54 xoffset=-4 yoffset=34 xadvance=31 page=0 chnl=0 +char id=8226 x=1817 y=495 width=19 height=21 xoffset=-4 yoffset=41 xadvance=19 page=0 chnl=0 +char id=8230 x=1928 y=495 width=48 height=19 xoffset=-4 yoffset=68 xadvance=47 page=0 chnl=0 +char id=8240 x=924 y=196 width=64 height=84 xoffset=-4 yoffset=5 xadvance=62 page=0 chnl=0 +char id=8249 x=1036 y=495 width=23 height=40 xoffset=-4 yoffset=30 xadvance=23 page=0 chnl=0 +char id=8250 x=1059 y=495 width=23 height=40 xoffset=-4 yoffset=30 xadvance=23 page=0 chnl=0 +char id=8260 x=783 y=0 width=47 height=97 xoffset=-4 yoffset=3 xadvance=46 page=0 chnl=0 +char id=8355 x=688 y=495 width=31 height=47 xoffset=-4 yoffset=7 xadvance=30 page=0 chnl=0 +char id=8356 x=655 y=495 width=33 height=48 xoffset=-4 yoffset=6 xadvance=32 page=0 chnl=0 +char id=8359 x=553 y=495 width=41 height=49 xoffset=-4 yoffset=7 xadvance=40 page=0 chnl=0 +char id=8364 x=719 y=495 width=41 height=47 xoffset=-4 yoffset=7 xadvance=39 page=0 chnl=0 \ No newline at end of file diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/font/enchanted.png b/wizard-client/wizard-client-libgdx/core/src/main/resources/font/enchanted.png similarity index 100% rename from wizard-client/wizard-client-libgdx/core/src/main/resources/skin/font/enchanted.png rename to wizard-client/wizard-client-libgdx/core/src/main/resources/font/enchanted.png diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/font/enchanted.ttf b/wizard-client/wizard-client-libgdx/core/src/main/resources/font/enchanted.ttf similarity index 100% rename from wizard-client/wizard-client-libgdx/core/src/main/resources/skin/font/enchanted.ttf rename to wizard-client/wizard-client-libgdx/core/src/main/resources/font/enchanted.ttf diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/i18n/messages.properties b/wizard-client/wizard-client-libgdx/core/src/main/resources/i18n/messages.properties new file mode 100644 index 0000000..795e4d4 --- /dev/null +++ b/wizard-client/wizard-client-libgdx/core/src/main/resources/i18n/messages.properties @@ -0,0 +1,23 @@ +menu.main.play=Play +menu.main.quit=Close + +menu.connect.connect=Connect +menu.connect.back=Back +menu.connect.address.label=Enter Server Address + +menu.lobby.join=Join +menu.lobby.create=Create +menu.lobby.back=Back +menu.lobby.player_name.label=Player Name +menu.lobby.session_name.label=Session Name +menu.lobby.session_player_count.label=Current Player Count +menu.lobby.session_configuration.label=Configuration + +menu.waiting.ready=Ready +menu.waiting.not_ready=Not Ready +menu.waiting.leave=Leave + +menu.waiting.player_name.label=Own Name +menu.waiting.session_name.label=Session Name +menu.waiting.session_uuid.label=Session UUID +menu.waiting.session_configuration.label=Configuration \ No newline at end of file diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/i18n/messages_de.properties b/wizard-client/wizard-client-libgdx/core/src/main/resources/i18n/messages_de.properties new file mode 100644 index 0000000..b5a9175 --- /dev/null +++ b/wizard-client/wizard-client-libgdx/core/src/main/resources/i18n/messages_de.properties @@ -0,0 +1,23 @@ +menu.main.play=Spiel beitreten +menu.main.quit=Verlassen + +menu.connect.connect=Verbinden +menu.connect.back=Zurück +menu.connect.address.label=Server-Adresse eingeben + +menu.lobby.join=Beitreten +menu.lobby.create=Erstellen +menu.lobby.back=Verlassen +menu.lobby.player_name.label=Spielername +menu.lobby.session_name.label=Session Name +menu.lobby.session_player_count.label=Spieleranzahl +menu.lobby.session_configuration.label=Spielvariante + +menu.waiting.ready=Bereit +menu.waiting.not_ready=Nicht Bereit +menu.waiting.leave=Verlassen + +menu.waiting.player_name.label=Eigener Name +menu.waiting.session_name.label=Session Name +menu.waiting.session_uuid.label=Session UUID +menu.waiting.session_configuration.label=Spielvariante \ No newline at end of file diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/cursor.9.png b/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/cursor.9.png deleted file mode 100644 index aeed93c009400d3b42ab1dc075b312153c328178..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 86 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 W=Eb<^o7;;sfR>uRYL&7>^#2EHe8Qdp diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/font/enchanted.fnt b/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/font/enchanted.fnt deleted file mode 100644 index 3695782..0000000 --- a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/font/enchanted.fnt +++ /dev/null @@ -1,18442 +0,0 @@ -info face="Enchanted Land" size=96 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=4,4,4,4 spacing=-2,-2 -common lineHeight=119 base=83 scaleW=2048 scaleH=1024 pages=1 packed=0 -page id=0 file="enchanted.png" -chars count=340 -char id=0 x=0 y=0 width=0 height=0 xoffset=-4 yoffset=0 xadvance=6 page=0 chnl=0 -char id=13 x=0 y=0 width=0 height=0 xoffset=-4 yoffset=0 xadvance=6 page=0 chnl=0 -char id=33 x=2027 y=196 width=20 height=67 xoffset=-4 yoffset=21 xadvance=19 page=0 chnl=0 -char id=34 x=1431 y=495 width=26 height=29 xoffset=-4 yoffset=21 xadvance=24 page=0 chnl=0 -char id=35 x=850 y=495 width=39 height=41 xoffset=-4 yoffset=16 xadvance=38 page=0 chnl=0 -char id=36 x=1856 y=430 width=31 height=52 xoffset=-4 yoffset=4 xadvance=31 page=0 chnl=0 -char id=37 x=1121 y=430 width=35 height=62 xoffset=-4 yoffset=16 xadvance=34 page=0 chnl=0 -char id=38 x=318 y=359 width=37 height=68 xoffset=-4 yoffset=20 xadvance=36 page=0 chnl=0 -char id=39 x=1457 y=495 width=16 height=29 xoffset=-4 yoffset=21 xadvance=15 page=0 chnl=0 -char id=40 x=302 y=0 width=28 height=99 xoffset=-4 yoffset=3 xadvance=28 page=0 chnl=0 -char id=41 x=330 y=0 width=28 height=99 xoffset=-4 yoffset=3 xadvance=28 page=0 chnl=0 -char id=42 x=1293 y=495 width=30 height=33 xoffset=-4 yoffset=-3 xadvance=28 page=0 chnl=0 -char id=43 x=1371 y=495 width=31 height=31 xoffset=-4 yoffset=42 xadvance=30 page=0 chnl=0 -char id=44 x=1586 y=495 width=21 height=24 xoffset=-3 yoffset=68 xadvance=20 page=0 chnl=0 -char id=45 x=1996 y=495 width=31 height=14 xoffset=-4 yoffset=50 xadvance=30 page=0 chnl=0 -char id=46 x=1907 y=495 width=21 height=19 xoffset=-3 yoffset=68 xadvance=20 page=0 chnl=0 -char id=47 x=358 y=0 width=51 height=99 xoffset=-4 yoffset=3 xadvance=49 page=0 chnl=0 -char id=48 x=661 y=359 width=35 height=67 xoffset=-4 yoffset=21 xadvance=36 page=0 chnl=0 -char id=49 x=128 y=359 width=33 height=69 xoffset=-4 yoffset=21 xadvance=34 page=0 chnl=0 -char id=50 x=696 y=359 width=35 height=67 xoffset=-4 yoffset=22 xadvance=36 page=0 chnl=0 -char id=51 x=355 y=359 width=35 height=68 xoffset=-4 yoffset=21 xadvance=36 page=0 chnl=0 -char id=52 x=161 y=359 width=46 height=69 xoffset=-4 yoffset=21 xadvance=47 page=0 chnl=0 -char id=53 x=731 y=359 width=36 height=67 xoffset=-4 yoffset=21 xadvance=37 page=0 chnl=0 -char id=54 x=767 y=359 width=35 height=67 xoffset=-4 yoffset=21 xadvance=36 page=0 chnl=0 -char id=55 x=1285 y=359 width=45 height=66 xoffset=-3 yoffset=22 xadvance=47 page=0 chnl=0 -char id=56 x=390 y=359 width=35 height=68 xoffset=-4 yoffset=21 xadvance=36 page=0 chnl=0 -char id=57 x=802 y=359 width=35 height=67 xoffset=-4 yoffset=21 xadvance=36 page=0 chnl=0 -char id=58 x=2027 y=430 width=20 height=49 xoffset=-4 yoffset=38 xadvance=19 page=0 chnl=0 -char id=59 x=1722 y=430 width=20 height=54 xoffset=-4 yoffset=38 xadvance=19 page=0 chnl=0 -char id=60 x=1229 y=495 width=32 height=34 xoffset=-4 yoffset=40 xadvance=31 page=0 chnl=0 -char id=61 x=1523 y=495 width=31 height=26 xoffset=-4 yoffset=43 xadvance=30 page=0 chnl=0 -char id=62 x=1261 y=495 width=32 height=34 xoffset=-4 yoffset=40 xadvance=31 page=0 chnl=0 -char id=63 x=425 y=359 width=35 height=68 xoffset=-4 yoffset=20 xadvance=35 page=0 chnl=0 -char id=64 x=0 y=282 width=64 height=77 xoffset=-4 yoffset=10 xadvance=63 page=0 chnl=0 -char id=65 x=1229 y=196 width=83 height=82 xoffset=-7 yoffset=19 xadvance=77 page=0 chnl=0 -char id=66 x=1896 y=196 width=57 height=78 xoffset=-4 yoffset=15 xadvance=56 page=0 chnl=0 -char id=67 x=1610 y=282 width=53 height=72 xoffset=-4 yoffset=21 xadvance=51 page=0 chnl=0 -char id=68 x=124 y=282 width=60 height=76 xoffset=-4 yoffset=16 xadvance=61 page=0 chnl=0 -char id=69 x=568 y=282 width=56 height=75 xoffset=-4 yoffset=16 xadvance=55 page=0 chnl=0 -char id=70 x=781 y=282 width=56 height=74 xoffset=-4 yoffset=16 xadvance=55 page=0 chnl=0 -char id=71 x=1945 y=282 width=56 height=71 xoffset=-4 yoffset=21 xadvance=54 page=0 chnl=0 -char id=72 x=1328 y=282 width=60 height=73 xoffset=-4 yoffset=21 xadvance=59 page=0 chnl=0 -char id=73 x=1388 y=282 width=37 height=73 xoffset=-4 yoffset=19 xadvance=36 page=0 chnl=0 -char id=74 x=624 y=282 width=45 height=75 xoffset=-4 yoffset=16 xadvance=44 page=0 chnl=0 -char id=75 x=1623 y=196 width=64 height=80 xoffset=-4 yoffset=20 xadvance=63 page=0 chnl=0 -char id=76 x=669 y=282 width=48 height=75 xoffset=-4 yoffset=17 xadvance=47 page=0 chnl=0 -char id=77 x=1425 y=282 width=77 height=73 xoffset=-4 yoffset=21 xadvance=77 page=0 chnl=0 -char id=78 x=1663 y=282 width=60 height=72 xoffset=-4 yoffset=21 xadvance=59 page=0 chnl=0 -char id=79 x=0 y=359 width=64 height=71 xoffset=-4 yoffset=21 xadvance=63 page=0 chnl=0 -char id=80 x=184 y=282 width=60 height=76 xoffset=-4 yoffset=16 xadvance=59 page=0 chnl=0 -char id=81 x=1723 y=282 width=64 height=72 xoffset=-4 yoffset=21 xadvance=63 page=0 chnl=0 -char id=82 x=1687 y=196 width=64 height=80 xoffset=-4 yoffset=16 xadvance=62 page=0 chnl=0 -char id=83 x=1787 y=282 width=56 height=72 xoffset=-4 yoffset=19 xadvance=55 page=0 chnl=0 -char id=84 x=837 y=282 width=56 height=74 xoffset=-4 yoffset=16 xadvance=55 page=0 chnl=0 -char id=85 x=1843 y=282 width=52 height=72 xoffset=-4 yoffset=22 xadvance=50 page=0 chnl=0 -char id=86 x=1895 y=282 width=50 height=72 xoffset=-4 yoffset=22 xadvance=48 page=0 chnl=0 -char id=87 x=893 y=282 width=78 height=74 xoffset=-4 yoffset=21 xadvance=77 page=0 chnl=0 -char id=88 x=1502 y=282 width=59 height=73 xoffset=-5 yoffset=19 xadvance=57 page=0 chnl=0 -char id=89 x=1226 y=0 width=55 height=92 xoffset=-4 yoffset=21 xadvance=53 page=0 chnl=0 -char id=90 x=1561 y=282 width=49 height=73 xoffset=-4 yoffset=19 xadvance=47 page=0 chnl=0 -char id=91 x=643 y=0 width=20 height=98 xoffset=-4 yoffset=3 xadvance=19 page=0 chnl=0 -char id=92 x=409 y=0 width=51 height=99 xoffset=-4 yoffset=3 xadvance=49 page=0 chnl=0 -char id=93 x=663 y=0 width=20 height=98 xoffset=-4 yoffset=3 xadvance=19 page=0 chnl=0 -char id=94 x=1494 y=495 width=29 height=27 xoffset=-4 yoffset=7 xadvance=28 page=0 chnl=0 -char id=95 x=0 y=545 width=36 height=14 xoffset=-4 yoffset=86 xadvance=34 page=0 chnl=0 -char id=96 x=1731 y=495 width=23 height=23 xoffset=-4 yoffset=20 xadvance=22 page=0 chnl=0 -char id=97 x=167 y=495 width=36 height=49 xoffset=-4 yoffset=38 xadvance=35 page=0 chnl=0 -char id=98 x=1330 y=359 width=36 height=66 xoffset=-4 yoffset=21 xadvance=35 page=0 chnl=0 -char id=99 x=1927 y=430 width=33 height=50 xoffset=-4 yoffset=37 xadvance=32 page=0 chnl=0 -char id=100 x=1366 y=359 width=36 height=66 xoffset=-4 yoffset=21 xadvance=35 page=0 chnl=0 -char id=101 x=1960 y=430 width=33 height=50 xoffset=-4 yoffset=37 xadvance=32 page=0 chnl=0 -char id=102 x=1402 y=359 width=33 height=66 xoffset=-4 yoffset=21 xadvance=32 page=0 chnl=0 -char id=103 x=460 y=359 width=33 height=68 xoffset=-4 yoffset=36 xadvance=32 page=0 chnl=0 -char id=104 x=1435 y=359 width=40 height=66 xoffset=-4 yoffset=21 xadvance=38 page=0 chnl=0 -char id=105 x=1426 y=430 width=24 height=61 xoffset=-4 yoffset=26 xadvance=23 page=0 chnl=0 -char id=106 x=1953 y=196 width=34 height=78 xoffset=-3 yoffset=26 xadvance=34 page=0 chnl=0 -char id=107 x=1475 y=359 width=40 height=66 xoffset=-4 yoffset=22 xadvance=39 page=0 chnl=0 -char id=108 x=1515 y=359 width=24 height=66 xoffset=-4 yoffset=21 xadvance=22 page=0 chnl=0 -char id=109 x=203 y=495 width=55 height=49 xoffset=-4 yoffset=38 xadvance=54 page=0 chnl=0 -char id=110 x=258 y=495 width=40 height=49 xoffset=-4 yoffset=38 xadvance=38 page=0 chnl=0 -char id=111 x=1993 y=430 width=34 height=50 xoffset=-4 yoffset=37 xadvance=35 page=0 chnl=0 -char id=112 x=1539 y=359 width=36 height=66 xoffset=-4 yoffset=38 xadvance=35 page=0 chnl=0 -char id=113 x=1575 y=359 width=36 height=66 xoffset=-4 yoffset=38 xadvance=35 page=0 chnl=0 -char id=114 x=298 y=495 width=35 height=49 xoffset=-4 yoffset=38 xadvance=33 page=0 chnl=0 -char id=115 x=0 y=495 width=32 height=50 xoffset=-4 yoffset=37 xadvance=31 page=0 chnl=0 -char id=116 x=1156 y=430 width=24 height=62 xoffset=-4 yoffset=25 xadvance=23 page=0 chnl=0 -char id=117 x=333 y=495 width=39 height=49 xoffset=-4 yoffset=38 xadvance=38 page=0 chnl=0 -char id=118 x=372 y=495 width=36 height=49 xoffset=-4 yoffset=38 xadvance=35 page=0 chnl=0 -char id=119 x=408 y=495 width=52 height=49 xoffset=-4 yoffset=38 xadvance=51 page=0 chnl=0 -char id=120 x=460 y=495 width=34 height=49 xoffset=-2 yoffset=38 xadvance=36 page=0 chnl=0 -char id=121 x=1883 y=359 width=36 height=65 xoffset=-4 yoffset=38 xadvance=35 page=0 chnl=0 -char id=122 x=494 y=495 width=35 height=49 xoffset=-4 yoffset=38 xadvance=34 page=0 chnl=0 -char id=123 x=55 y=0 width=27 height=105 xoffset=-4 yoffset=0 xadvance=26 page=0 chnl=0 -char id=124 x=683 y=0 width=17 height=98 xoffset=-4 yoffset=3 xadvance=16 page=0 chnl=0 -char id=125 x=82 y=0 width=27 height=105 xoffset=-4 yoffset=0 xadvance=26 page=0 chnl=0 -char id=126 x=1836 y=495 width=37 height=20 xoffset=-4 yoffset=67 xadvance=35 page=0 chnl=0 -char id=160 x=0 y=0 width=0 height=0 xoffset=-4 yoffset=0 xadvance=16 page=0 chnl=0 -char id=161 x=2026 y=106 width=20 height=66 xoffset=-4 yoffset=21 xadvance=19 page=0 chnl=0 -char id=162 x=1689 y=430 width=33 height=55 xoffset=-4 yoffset=6 xadvance=32 page=0 chnl=0 -char id=163 x=594 y=495 width=33 height=48 xoffset=-4 yoffset=6 xadvance=32 page=0 chnl=0 -char id=164 x=889 y=495 width=42 height=41 xoffset=-4 yoffset=11 xadvance=40 page=0 chnl=0 -char id=165 x=627 y=495 width=28 height=48 xoffset=-4 yoffset=8 xadvance=27 page=0 chnl=0 -char id=166 x=460 y=0 width=17 height=99 xoffset=-4 yoffset=2 xadvance=16 page=0 chnl=0 -char id=167 x=1662 y=430 width=27 height=56 xoffset=-4 yoffset=6 xadvance=26 page=0 chnl=0 -char id=168 x=1873 y=495 width=34 height=20 xoffset=-4 yoffset=24 xadvance=32 page=0 chnl=0 -char id=169 x=760 y=495 width=45 height=46 xoffset=-4 yoffset=6 xadvance=44 page=0 chnl=0 -char id=170 x=1323 y=495 width=27 height=33 xoffset=-4 yoffset=7 xadvance=26 page=0 chnl=0 -char id=171 x=931 y=495 width=37 height=40 xoffset=-4 yoffset=30 xadvance=37 page=0 chnl=0 -char id=172 x=1777 y=495 width=40 height=22 xoffset=-4 yoffset=34 xadvance=39 page=0 chnl=0 -char id=174 x=805 y=495 width=45 height=46 xoffset=-4 yoffset=6 xadvance=44 page=0 chnl=0 -char id=175 x=36 y=545 width=29 height=14 xoffset=-4 yoffset=29 xadvance=28 page=0 chnl=0 -char id=176 x=1473 y=495 width=21 height=28 xoffset=-4 yoffset=12 xadvance=20 page=0 chnl=0 -char id=177 x=968 y=495 width=31 height=40 xoffset=-4 yoffset=41 xadvance=30 page=0 chnl=0 -char id=178 x=1162 y=495 width=22 height=38 xoffset=-4 yoffset=7 xadvance=21 page=0 chnl=0 -char id=179 x=1082 y=495 width=22 height=39 xoffset=-4 yoffset=6 xadvance=20 page=0 chnl=0 -char id=180 x=1754 y=495 width=23 height=23 xoffset=-4 yoffset=20 xadvance=22 page=0 chnl=0 -char id=181 x=1919 y=359 width=39 height=65 xoffset=-4 yoffset=38 xadvance=38 page=0 chnl=0 -char id=182 x=1184 y=495 width=23 height=38 xoffset=-4 yoffset=7 xadvance=23 page=0 chnl=0 -char id=183 x=1976 y=495 width=20 height=18 xoffset=-3 yoffset=38 xadvance=16 page=0 chnl=0 -char id=184 x=1350 y=495 width=21 height=32 xoffset=-4 yoffset=74 xadvance=19 page=0 chnl=0 -char id=185 x=1104 y=495 width=21 height=39 xoffset=-4 yoffset=6 xadvance=20 page=0 chnl=0 -char id=186 x=1207 y=495 width=22 height=38 xoffset=-4 yoffset=7 xadvance=20 page=0 chnl=0 -char id=187 x=999 y=495 width=37 height=40 xoffset=-4 yoffset=30 xadvance=37 page=0 chnl=0 -char id=188 x=328 y=196 width=53 height=84 xoffset=-4 yoffset=5 xadvance=51 page=0 chnl=0 -char id=189 x=381 y=196 width=47 height=84 xoffset=-4 yoffset=5 xadvance=45 page=0 chnl=0 -char id=190 x=105 y=196 width=53 height=85 xoffset=-4 yoffset=5 xadvance=51 page=0 chnl=0 -char id=191 x=837 y=359 width=35 height=67 xoffset=-3 yoffset=20 xadvance=35 page=0 chnl=0 -char id=192 x=477 y=0 width=83 height=99 xoffset=-7 yoffset=2 xadvance=77 page=0 chnl=0 -char id=193 x=560 y=0 width=83 height=99 xoffset=-7 yoffset=2 xadvance=77 page=0 chnl=0 -char id=194 x=830 y=0 width=83 height=96 xoffset=-7 yoffset=5 xadvance=77 page=0 chnl=0 -char id=195 x=1143 y=0 width=83 height=93 xoffset=-7 yoffset=8 xadvance=77 page=0 chnl=0 -char id=196 x=913 y=0 width=83 height=95 xoffset=-7 yoffset=6 xadvance=77 page=0 chnl=0 -char id=197 x=109 y=0 width=83 height=104 xoffset=-7 yoffset=-3 xadvance=77 page=0 chnl=0 -char id=198 x=244 y=282 width=81 height=76 xoffset=-6 yoffset=19 xadvance=75 page=0 chnl=0 -char id=199 x=742 y=106 width=53 height=87 xoffset=-4 yoffset=21 xadvance=51 page=0 chnl=0 -char id=200 x=52 y=106 width=56 height=89 xoffset=-4 yoffset=2 xadvance=55 page=0 chnl=0 -char id=201 x=1618 y=0 width=56 height=90 xoffset=-4 yoffset=1 xadvance=55 page=0 chnl=0 -char id=202 x=795 y=106 width=56 height=87 xoffset=-4 yoffset=4 xadvance=55 page=0 chnl=0 -char id=203 x=1585 y=106 width=56 height=86 xoffset=-4 yoffset=5 xadvance=55 page=0 chnl=0 -char id=204 x=1674 y=0 width=37 height=90 xoffset=-4 yoffset=2 xadvance=36 page=0 chnl=0 -char id=205 x=1711 y=0 width=37 height=90 xoffset=-4 yoffset=2 xadvance=36 page=0 chnl=0 -char id=206 x=2000 y=0 width=37 height=87 xoffset=-4 yoffset=5 xadvance=36 page=0 chnl=0 -char id=207 x=851 y=106 width=37 height=87 xoffset=-4 yoffset=5 xadvance=36 page=0 chnl=0 -char id=208 x=325 y=282 width=60 height=76 xoffset=-4 yoffset=16 xadvance=61 page=0 chnl=0 -char id=209 x=428 y=196 width=60 height=84 xoffset=-4 yoffset=9 xadvance=59 page=0 chnl=0 -char id=210 x=108 y=106 width=64 height=89 xoffset=-4 yoffset=3 xadvance=63 page=0 chnl=0 -char id=211 x=172 y=106 width=64 height=89 xoffset=-4 yoffset=3 xadvance=63 page=0 chnl=0 -char id=212 x=888 y=106 width=64 height=87 xoffset=-4 yoffset=5 xadvance=63 page=0 chnl=0 -char id=213 x=488 y=196 width=64 height=84 xoffset=-4 yoffset=8 xadvance=63 page=0 chnl=0 -char id=214 x=1641 y=106 width=64 height=86 xoffset=-4 yoffset=6 xadvance=63 page=0 chnl=0 -char id=215 x=1402 y=495 width=29 height=30 xoffset=-4 yoffset=42 xadvance=28 page=0 chnl=0 -char id=216 x=64 y=359 width=64 height=71 xoffset=-4 yoffset=21 xadvance=63 page=0 chnl=0 -char id=217 x=236 y=106 width=52 height=89 xoffset=-4 yoffset=5 xadvance=50 page=0 chnl=0 -char id=218 x=1748 y=0 width=52 height=90 xoffset=-4 yoffset=4 xadvance=50 page=0 chnl=0 -char id=219 x=952 y=106 width=52 height=87 xoffset=-4 yoffset=7 xadvance=50 page=0 chnl=0 -char id=220 x=1705 y=106 width=52 height=86 xoffset=-4 yoffset=8 xadvance=50 page=0 chnl=0 -char id=221 x=0 y=0 width=55 height=106 xoffset=-4 yoffset=7 xadvance=53 page=0 chnl=0 -char id=222 x=64 y=282 width=60 height=77 xoffset=-4 yoffset=15 xadvance=59 page=0 chnl=0 -char id=223 x=1958 y=359 width=41 height=65 xoffset=-4 yoffset=22 xadvance=40 page=0 chnl=0 -char id=224 x=872 y=359 width=36 height=67 xoffset=-4 yoffset=20 xadvance=35 page=0 chnl=0 -char id=225 x=493 y=359 width=36 height=68 xoffset=-4 yoffset=20 xadvance=35 page=0 chnl=0 -char id=226 x=1999 y=359 width=36 height=65 xoffset=-4 yoffset=23 xadvance=35 page=0 chnl=0 -char id=227 x=1180 y=430 width=36 height=62 xoffset=-4 yoffset=26 xadvance=35 page=0 chnl=0 -char id=228 x=514 y=430 width=36 height=63 xoffset=-4 yoffset=24 xadvance=35 page=0 chnl=0 -char id=229 x=207 y=359 width=36 height=69 xoffset=-4 yoffset=18 xadvance=35 page=0 chnl=0 -char id=230 x=32 y=495 width=50 height=50 xoffset=-4 yoffset=37 xadvance=49 page=0 chnl=0 -char id=231 x=98 y=430 width=33 height=64 xoffset=-4 yoffset=37 xadvance=32 page=0 chnl=0 -char id=232 x=908 y=359 width=33 height=67 xoffset=-4 yoffset=20 xadvance=32 page=0 chnl=0 -char id=233 x=941 y=359 width=33 height=67 xoffset=-4 yoffset=20 xadvance=32 page=0 chnl=0 -char id=234 x=131 y=430 width=33 height=64 xoffset=-4 yoffset=23 xadvance=32 page=0 chnl=0 -char id=235 x=550 y=430 width=34 height=63 xoffset=-4 yoffset=24 xadvance=32 page=0 chnl=0 -char id=236 x=974 y=359 width=25 height=67 xoffset=-5 yoffset=20 xadvance=23 page=0 chnl=0 -char id=237 x=529 y=359 width=24 height=68 xoffset=-4 yoffset=20 xadvance=23 page=0 chnl=0 -char id=238 x=0 y=430 width=26 height=65 xoffset=-4 yoffset=23 xadvance=23 page=0 chnl=0 -char id=239 x=584 y=430 width=42 height=63 xoffset=-9 yoffset=24 xadvance=22 page=0 chnl=0 -char id=240 x=26 y=430 width=36 height=65 xoffset=-4 yoffset=22 xadvance=35 page=0 chnl=0 -char id=241 x=1216 y=430 width=40 height=62 xoffset=-4 yoffset=26 xadvance=38 page=0 chnl=0 -char id=242 x=999 y=359 width=34 height=67 xoffset=-4 yoffset=20 xadvance=35 page=0 chnl=0 -char id=243 x=1033 y=359 width=34 height=67 xoffset=-4 yoffset=20 xadvance=35 page=0 chnl=0 -char id=244 x=626 y=430 width=34 height=63 xoffset=-4 yoffset=24 xadvance=35 page=0 chnl=0 -char id=245 x=1256 y=430 width=34 height=62 xoffset=-4 yoffset=25 xadvance=35 page=0 chnl=0 -char id=246 x=660 y=430 width=34 height=63 xoffset=-4 yoffset=24 xadvance=35 page=0 chnl=0 -char id=247 x=1125 y=495 width=37 height=39 xoffset=-4 yoffset=38 xadvance=36 page=0 chnl=0 -char id=248 x=82 y=495 width=35 height=50 xoffset=-4 yoffset=38 xadvance=33 page=0 chnl=0 -char id=249 x=1067 y=359 width=39 height=67 xoffset=-4 yoffset=20 xadvance=38 page=0 chnl=0 -char id=250 x=1106 y=359 width=39 height=67 xoffset=-4 yoffset=21 xadvance=38 page=0 chnl=0 -char id=251 x=694 y=430 width=39 height=63 xoffset=-4 yoffset=24 xadvance=38 page=0 chnl=0 -char id=252 x=733 y=430 width=39 height=63 xoffset=-4 yoffset=24 xadvance=38 page=0 chnl=0 -char id=253 x=988 y=196 width=36 height=83 xoffset=-4 yoffset=20 xadvance=35 page=0 chnl=0 -char id=254 x=1024 y=196 width=36 height=83 xoffset=-4 yoffset=21 xadvance=35 page=0 chnl=0 -char id=255 x=1824 y=196 width=36 height=79 xoffset=-4 yoffset=24 xadvance=35 page=0 chnl=0 -char id=256 x=1800 y=0 width=83 height=90 xoffset=-7 yoffset=11 xadvance=77 page=0 chnl=0 -char id=257 x=1489 y=430 width=36 height=59 xoffset=-4 yoffset=29 xadvance=35 page=0 chnl=0 -char id=258 x=996 y=0 width=83 height=95 xoffset=-7 yoffset=6 xadvance=77 page=0 chnl=0 -char id=259 x=1290 y=430 width=36 height=62 xoffset=-4 yoffset=25 xadvance=35 page=0 chnl=0 -char id=260 x=700 y=0 width=83 height=98 xoffset=-7 yoffset=19 xadvance=77 page=0 chnl=0 -char id=261 x=164 y=430 width=36 height=64 xoffset=-4 yoffset=38 xadvance=35 page=0 chnl=0 -char id=262 x=1883 y=0 width=53 height=90 xoffset=-4 yoffset=3 xadvance=51 page=0 chnl=0 -char id=263 x=1145 y=359 width=33 height=67 xoffset=-4 yoffset=20 xadvance=32 page=0 chnl=0 -char id=264 x=1004 y=106 width=53 height=87 xoffset=-4 yoffset=6 xadvance=51 page=0 chnl=0 -char id=265 x=772 y=430 width=33 height=63 xoffset=-4 yoffset=24 xadvance=32 page=0 chnl=0 -char id=266 x=1757 y=106 width=53 height=86 xoffset=-4 yoffset=7 xadvance=51 page=0 chnl=0 -char id=267 x=805 y=430 width=33 height=63 xoffset=-4 yoffset=24 xadvance=32 page=0 chnl=0 -char id=268 x=1057 y=106 width=53 height=87 xoffset=-4 yoffset=6 xadvance=51 page=0 chnl=0 -char id=269 x=838 y=430 width=33 height=63 xoffset=-4 yoffset=24 xadvance=32 page=0 chnl=0 -char id=270 x=1110 y=106 width=60 height=87 xoffset=-4 yoffset=5 xadvance=61 page=0 chnl=0 -char id=271 x=1611 y=359 width=47 height=66 xoffset=-4 yoffset=21 xadvance=45 page=0 chnl=0 -char id=272 x=385 y=282 width=60 height=76 xoffset=-4 yoffset=16 xadvance=61 page=0 chnl=0 -char id=273 x=1658 y=359 width=40 height=66 xoffset=-4 yoffset=21 xadvance=38 page=0 chnl=0 -char id=274 x=1312 y=196 width=56 height=82 xoffset=-4 yoffset=9 xadvance=55 page=0 chnl=0 -char id=275 x=1525 y=430 width=33 height=59 xoffset=-4 yoffset=29 xadvance=32 page=0 chnl=0 -char id=276 x=1170 y=106 width=56 height=87 xoffset=-4 yoffset=4 xadvance=55 page=0 chnl=0 -char id=277 x=200 y=430 width=33 height=64 xoffset=-4 yoffset=23 xadvance=32 page=0 chnl=0 -char id=278 x=1810 y=106 width=56 height=86 xoffset=-4 yoffset=5 xadvance=55 page=0 chnl=0 -char id=279 x=871 y=430 width=33 height=63 xoffset=-4 yoffset=24 xadvance=32 page=0 chnl=0 -char id=280 x=1226 y=106 width=56 height=87 xoffset=-4 yoffset=16 xadvance=55 page=0 chnl=0 -char id=281 x=904 y=430 width=33 height=63 xoffset=-4 yoffset=37 xadvance=32 page=0 chnl=0 -char id=282 x=404 y=106 width=56 height=88 xoffset=-4 yoffset=3 xadvance=55 page=0 chnl=0 -char id=283 x=937 y=430 width=33 height=63 xoffset=-4 yoffset=24 xadvance=32 page=0 chnl=0 -char id=284 x=552 y=196 width=56 height=84 xoffset=-4 yoffset=8 xadvance=54 page=0 chnl=0 -char id=285 x=1368 y=196 width=33 height=82 xoffset=-4 yoffset=22 xadvance=32 page=0 chnl=0 -char id=286 x=608 y=196 width=56 height=84 xoffset=-4 yoffset=8 xadvance=54 page=0 chnl=0 -char id=287 x=1401 y=196 width=33 height=82 xoffset=-4 yoffset=22 xadvance=32 page=0 chnl=0 -char id=288 x=664 y=196 width=56 height=84 xoffset=-4 yoffset=8 xadvance=54 page=0 chnl=0 -char id=289 x=1751 y=196 width=33 height=80 xoffset=-4 yoffset=24 xadvance=32 page=0 chnl=0 -char id=290 x=460 y=106 width=56 height=88 xoffset=-4 yoffset=21 xadvance=54 page=0 chnl=0 -char id=291 x=1866 y=106 width=33 height=86 xoffset=-4 yoffset=18 xadvance=32 page=0 chnl=0 -char id=292 x=1899 y=106 width=58 height=86 xoffset=-4 yoffset=7 xadvance=56 page=0 chnl=0 -char id=293 x=1784 y=196 width=40 height=80 xoffset=-4 yoffset=7 xadvance=38 page=0 chnl=0 -char id=294 x=971 y=282 width=60 height=74 xoffset=-4 yoffset=19 xadvance=59 page=0 chnl=0 -char id=295 x=1698 y=359 width=46 height=66 xoffset=-8 yoffset=21 xadvance=38 page=0 chnl=0 -char id=296 x=158 y=196 width=37 height=85 xoffset=-4 yoffset=7 xadvance=36 page=0 chnl=0 -char id=297 x=1326 y=430 width=37 height=62 xoffset=-9 yoffset=26 xadvance=23 page=0 chnl=0 -char id=298 x=1434 y=196 width=37 height=82 xoffset=-4 yoffset=10 xadvance=36 page=0 chnl=0 -char id=299 x=1558 y=430 width=31 height=59 xoffset=-7 yoffset=29 xadvance=23 page=0 chnl=0 -char id=300 x=1282 y=106 width=37 height=87 xoffset=-4 yoffset=5 xadvance=36 page=0 chnl=0 -char id=301 x=233 y=430 width=28 height=64 xoffset=-6 yoffset=24 xadvance=23 page=0 chnl=0 -char id=302 x=195 y=196 width=37 height=85 xoffset=-4 yoffset=19 xadvance=36 page=0 chnl=0 -char id=303 x=445 y=282 width=27 height=76 xoffset=-6 yoffset=26 xadvance=23 page=0 chnl=0 -char id=304 x=1319 y=106 width=37 height=87 xoffset=-4 yoffset=5 xadvance=36 page=0 chnl=0 -char id=305 x=529 y=495 width=24 height=49 xoffset=-4 yoffset=38 xadvance=23 page=0 chnl=0 -char id=306 x=472 y=282 width=72 height=76 xoffset=-4 yoffset=16 xadvance=71 page=0 chnl=0 -char id=307 x=1987 y=196 width=40 height=78 xoffset=-4 yoffset=26 xadvance=39 page=0 chnl=0 -char id=308 x=1957 y=106 width=45 height=86 xoffset=-4 yoffset=5 xadvance=44 page=0 chnl=0 -char id=309 x=1523 y=196 width=36 height=81 xoffset=-3 yoffset=23 xadvance=36 page=0 chnl=0 -char id=310 x=1936 y=0 width=64 height=90 xoffset=-4 yoffset=21 xadvance=63 page=0 chnl=0 -char id=311 x=232 y=196 width=40 height=85 xoffset=-4 yoffset=22 xadvance=39 page=0 chnl=0 -char id=312 x=1887 y=430 width=40 height=51 xoffset=-4 yoffset=37 xadvance=39 page=0 chnl=0 -char id=313 x=1329 y=0 width=48 height=91 xoffset=-4 yoffset=1 xadvance=47 page=0 chnl=0 -char id=314 x=720 y=196 width=24 height=84 xoffset=-4 yoffset=4 xadvance=23 page=0 chnl=0 -char id=315 x=1281 y=0 width=48 height=92 xoffset=-4 yoffset=17 xadvance=47 page=0 chnl=0 -char id=316 x=2002 y=106 width=24 height=86 xoffset=-4 yoffset=21 xadvance=23 page=0 chnl=0 -char id=317 x=1031 y=282 width=48 height=74 xoffset=-4 yoffset=18 xadvance=47 page=0 chnl=0 -char id=318 x=1744 y=359 width=36 height=66 xoffset=-4 yoffset=21 xadvance=34 page=0 chnl=0 -char id=319 x=516 y=106 width=48 height=88 xoffset=-4 yoffset=4 xadvance=47 page=0 chnl=0 -char id=320 x=1780 y=359 width=35 height=66 xoffset=-4 yoffset=21 xadvance=33 page=0 chnl=0 -char id=321 x=1079 y=282 width=50 height=74 xoffset=-4 yoffset=18 xadvance=49 page=0 chnl=0 -char id=322 x=1815 y=359 width=38 height=66 xoffset=-8 yoffset=21 xadvance=22 page=0 chnl=0 -char id=323 x=1356 y=106 width=60 height=87 xoffset=-4 yoffset=6 xadvance=59 page=0 chnl=0 -char id=324 x=1178 y=359 width=40 height=67 xoffset=-4 yoffset=21 xadvance=38 page=0 chnl=0 -char id=325 x=288 y=106 width=60 height=89 xoffset=-4 yoffset=21 xadvance=59 page=0 chnl=0 -char id=326 x=243 y=359 width=40 height=69 xoffset=-4 yoffset=38 xadvance=38 page=0 chnl=0 -char id=327 x=1060 y=196 width=60 height=83 xoffset=-4 yoffset=10 xadvance=59 page=0 chnl=0 -char id=328 x=261 y=430 width=39 height=64 xoffset=-4 yoffset=24 xadvance=38 page=0 chnl=0 -char id=329 x=1804 y=430 width=52 height=53 xoffset=-4 yoffset=34 xadvance=50 page=0 chnl=0 -char id=330 x=1120 y=196 width=57 height=83 xoffset=-4 yoffset=21 xadvance=55 page=0 chnl=0 -char id=331 x=62 y=430 width=36 height=65 xoffset=-4 yoffset=38 xadvance=35 page=0 chnl=0 -char id=332 x=1559 y=196 width=64 height=81 xoffset=-4 yoffset=11 xadvance=63 page=0 chnl=0 -char id=333 x=1589 y=430 width=34 height=59 xoffset=-4 yoffset=29 xadvance=35 page=0 chnl=0 -char id=334 x=1416 y=106 width=64 height=87 xoffset=-4 yoffset=6 xadvance=63 page=0 chnl=0 -char id=335 x=300 y=430 width=34 height=64 xoffset=-4 yoffset=23 xadvance=35 page=0 chnl=0 -char id=336 x=1377 y=0 width=64 height=91 xoffset=-4 yoffset=1 xadvance=63 page=0 chnl=0 -char id=337 x=553 y=359 width=34 height=68 xoffset=-4 yoffset=19 xadvance=35 page=0 chnl=0 -char id=338 x=1129 y=282 width=78 height=74 xoffset=-4 yoffset=21 xadvance=76 page=0 chnl=0 -char id=339 x=117 y=495 width=50 height=50 xoffset=-4 yoffset=37 xadvance=49 page=0 chnl=0 -char id=340 x=1079 y=0 width=64 height=95 xoffset=-4 yoffset=1 xadvance=62 page=0 chnl=0 -char id=341 x=587 y=359 width=35 height=68 xoffset=-4 yoffset=20 xadvance=33 page=0 chnl=0 -char id=342 x=1441 y=0 width=64 height=91 xoffset=-4 yoffset=16 xadvance=62 page=0 chnl=0 -char id=343 x=283 y=359 width=35 height=69 xoffset=-4 yoffset=38 xadvance=33 page=0 chnl=0 -char id=344 x=1505 y=0 width=64 height=91 xoffset=-4 yoffset=5 xadvance=62 page=0 chnl=0 -char id=345 x=334 y=430 width=35 height=64 xoffset=-4 yoffset=24 xadvance=33 page=0 chnl=0 -char id=346 x=348 y=106 width=56 height=89 xoffset=-4 yoffset=2 xadvance=55 page=0 chnl=0 -char id=347 x=1218 y=359 width=32 height=67 xoffset=-4 yoffset=20 xadvance=31 page=0 chnl=0 -char id=348 x=0 y=196 width=56 height=86 xoffset=-4 yoffset=5 xadvance=55 page=0 chnl=0 -char id=349 x=970 y=430 width=32 height=63 xoffset=-4 yoffset=24 xadvance=31 page=0 chnl=0 -char id=350 x=1480 y=106 width=56 height=87 xoffset=-4 yoffset=19 xadvance=55 page=0 chnl=0 -char id=351 x=369 y=430 width=32 height=64 xoffset=-4 yoffset=37 xadvance=31 page=0 chnl=0 -char id=352 x=272 y=196 width=56 height=85 xoffset=-4 yoffset=6 xadvance=55 page=0 chnl=0 -char id=353 x=1002 y=430 width=32 height=63 xoffset=-4 yoffset=24 xadvance=31 page=0 chnl=0 -char id=354 x=744 y=196 width=64 height=84 xoffset=-4 yoffset=16 xadvance=63 page=0 chnl=0 -char id=355 x=544 y=282 width=24 height=76 xoffset=-4 yoffset=25 xadvance=23 page=0 chnl=0 -char id=356 x=808 y=196 width=64 height=84 xoffset=-4 yoffset=6 xadvance=63 page=0 chnl=0 -char id=357 x=1363 y=430 width=38 height=62 xoffset=-4 yoffset=25 xadvance=36 page=0 chnl=0 -char id=358 x=717 y=282 width=64 height=75 xoffset=-4 yoffset=16 xadvance=63 page=0 chnl=0 -char id=359 x=1401 y=430 width=25 height=62 xoffset=-4 yoffset=25 xadvance=23 page=0 chnl=0 -char id=360 x=1471 y=196 width=52 height=82 xoffset=-4 yoffset=12 xadvance=50 page=0 chnl=0 -char id=361 x=1450 y=430 width=39 height=60 xoffset=-4 yoffset=27 xadvance=38 page=0 chnl=0 -char id=362 x=872 y=196 width=52 height=84 xoffset=-4 yoffset=10 xadvance=50 page=0 chnl=0 -char id=363 x=1623 y=430 width=39 height=59 xoffset=-4 yoffset=29 xadvance=38 page=0 chnl=0 -char id=364 x=1177 y=196 width=52 height=83 xoffset=-4 yoffset=11 xadvance=50 page=0 chnl=0 -char id=365 x=401 y=430 width=39 height=64 xoffset=-4 yoffset=24 xadvance=38 page=0 chnl=0 -char id=366 x=0 y=106 width=52 height=90 xoffset=-4 yoffset=4 xadvance=50 page=0 chnl=0 -char id=367 x=2001 y=282 width=39 height=71 xoffset=-4 yoffset=16 xadvance=38 page=0 chnl=0 -char id=368 x=564 y=106 width=52 height=88 xoffset=-4 yoffset=6 xadvance=50 page=0 chnl=0 -char id=369 x=622 y=359 width=39 height=68 xoffset=-4 yoffset=19 xadvance=38 page=0 chnl=0 -char id=370 x=616 y=106 width=52 height=88 xoffset=-4 yoffset=22 xadvance=50 page=0 chnl=0 -char id=371 x=440 y=430 width=39 height=64 xoffset=-4 yoffset=38 xadvance=38 page=0 chnl=0 -char id=372 x=668 y=106 width=74 height=88 xoffset=-4 yoffset=7 xadvance=73 page=0 chnl=0 -char id=373 x=1034 y=430 width=52 height=63 xoffset=-4 yoffset=24 xadvance=51 page=0 chnl=0 -char id=374 x=192 y=0 width=55 height=103 xoffset=-4 yoffset=10 xadvance=53 page=0 chnl=0 -char id=375 x=1860 y=196 width=36 height=79 xoffset=-4 yoffset=24 xadvance=35 page=0 chnl=0 -char id=376 x=247 y=0 width=55 height=103 xoffset=-4 yoffset=10 xadvance=53 page=0 chnl=0 -char id=377 x=1569 y=0 width=49 height=91 xoffset=-4 yoffset=1 xadvance=47 page=0 chnl=0 -char id=378 x=1250 y=359 width=35 height=67 xoffset=-4 yoffset=20 xadvance=34 page=0 chnl=0 -char id=379 x=56 y=196 width=49 height=86 xoffset=-4 yoffset=6 xadvance=47 page=0 chnl=0 -char id=380 x=1086 y=430 width=35 height=63 xoffset=-4 yoffset=24 xadvance=34 page=0 chnl=0 -char id=381 x=1536 y=106 width=49 height=87 xoffset=-4 yoffset=5 xadvance=47 page=0 chnl=0 -char id=382 x=479 y=430 width=35 height=64 xoffset=-4 yoffset=23 xadvance=34 page=0 chnl=0 -char id=383 x=1853 y=359 width=30 height=66 xoffset=-4 yoffset=21 xadvance=29 page=0 chnl=0 -char id=884 x=1207 y=282 width=121 height=74 xoffset=-3 yoffset=-1 xadvance=121 page=0 chnl=0 -char id=8211 x=65 y=545 width=42 height=14 xoffset=-4 yoffset=50 xadvance=40 page=0 chnl=0 -char id=8212 x=107 y=545 width=55 height=14 xoffset=-4 yoffset=50 xadvance=54 page=0 chnl=0 -char id=8216 x=1607 y=495 width=20 height=24 xoffset=-4 yoffset=22 xadvance=19 page=0 chnl=0 -char id=8217 x=1627 y=495 width=20 height=24 xoffset=-4 yoffset=22 xadvance=19 page=0 chnl=0 -char id=8218 x=1647 y=495 width=20 height=24 xoffset=-4 yoffset=68 xadvance=19 page=0 chnl=0 -char id=8220 x=1554 y=495 width=32 height=25 xoffset=-4 yoffset=21 xadvance=31 page=0 chnl=0 -char id=8221 x=1667 y=495 width=32 height=24 xoffset=-4 yoffset=22 xadvance=31 page=0 chnl=0 -char id=8222 x=1699 y=495 width=32 height=24 xoffset=-4 yoffset=68 xadvance=31 page=0 chnl=0 -char id=8224 x=1742 y=430 width=31 height=54 xoffset=-4 yoffset=34 xadvance=31 page=0 chnl=0 -char id=8225 x=1773 y=430 width=31 height=54 xoffset=-4 yoffset=34 xadvance=31 page=0 chnl=0 -char id=8226 x=1817 y=495 width=19 height=21 xoffset=-4 yoffset=41 xadvance=19 page=0 chnl=0 -char id=8230 x=1928 y=495 width=48 height=19 xoffset=-4 yoffset=68 xadvance=47 page=0 chnl=0 -char id=8240 x=924 y=196 width=64 height=84 xoffset=-4 yoffset=5 xadvance=62 page=0 chnl=0 -char id=8249 x=1036 y=495 width=23 height=40 xoffset=-4 yoffset=30 xadvance=23 page=0 chnl=0 -char id=8250 x=1059 y=495 width=23 height=40 xoffset=-4 yoffset=30 xadvance=23 page=0 chnl=0 -char id=8260 x=783 y=0 width=47 height=97 xoffset=-4 yoffset=3 xadvance=46 page=0 chnl=0 -char id=8355 x=688 y=495 width=31 height=47 xoffset=-4 yoffset=7 xadvance=30 page=0 chnl=0 -char id=8356 x=655 y=495 width=33 height=48 xoffset=-4 yoffset=6 xadvance=32 page=0 chnl=0 -char id=8359 x=553 y=495 width=41 height=49 xoffset=-4 yoffset=7 xadvance=40 page=0 chnl=0 -char id=8364 x=719 y=495 width=41 height=47 xoffset=-4 yoffset=7 xadvance=39 page=0 chnl=0 -kernings count=18097 -kerning first=269 second=289 amount=1 -kerning first=272 second=69 amount=-6 -kerning first=292 second=226 amount=2 -kerning first=207 second=238 amount=-2 -kerning first=312 second=353 amount=1 -kerning first=338 second=70 amount=-7 -kerning first=358 second=227 amount=-10 -kerning first=73 second=263 amount=-2 -kerning first=339 second=240 amount=2 -kerning first=119 second=107 amount=2 -kerning first=254 second=252 amount=2 -kerning first=57 second=56 amount=2 -kerning first=192 second=201 amount=-10 -kerning first=77 second=213 amount=3 -kerning first=100 second=120 amount=2 -kerning first=258 second=202 amount=-10 -kerning first=366 second=97 amount=2 -kerning first=193 second=341 amount=-12 -kerning first=196 second=121 amount=-4 -kerning first=347 second=110 amount=1 -kerning first=197 second=291 amount=-10 -kerning first=220 second=228 amount=2 -kerning first=105 second=240 amount=2 -kerning first=240 second=355 amount=-1 -kerning first=348 second=280 amount=-3 -kerning first=329 second=293 amount=-1 -kerning first=332 second=73 amount=3 -kerning first=267 second=242 amount=-1 -kerning first=287 second=369 amount=2 -kerning first=70 second=46 amount=-8 -kerning first=225 second=318 amount=-1 -kerning first=228 second=98 amount=-1 -kerning first=376 second=307 amount=-3 -kerning first=206 second=331 amount=-2 -kerning first=160 second=72 amount=-6 -kerning first=272 second=332 amount=4 -kerning first=360 second=100 amount=2 -kerning first=72 second=356 amount=-6 -kerning first=341 second=113 amount=-2 -kerning first=118 second=230 amount=2 -kerning first=358 second=8211 amount=-7 -kerning first=276 second=282 amount=-5 -kerning first=194 second=74 amount=-9 -kerning first=99 second=243 amount=-1 -kerning first=257 second=295 amount=-1 -kerning first=260 second=75 amount=-5 -kerning first=195 second=244 amount=-12 -kerning first=300 second=359 amount=-2 -kerning first=80 second=256 amount=-14 -kerning first=304 second=309 amount=-14 -kerning first=84 second=206 amount=-2 -kerning first=107 second=113 amount=2 -kerning first=347 second=373 amount=1 -kerning first=285 second=322 amount=2 -kerning first=223 second=271 amount=2 -kerning first=108 second=283 amount=1 -kerning first=354 second=103 amount=-10 -kerning first=269 second=115 amount=1 -kerning first=374 second=260 amount=-3 -kerning first=335 second=116 amount=-1 -kerning first=112 second=233 amount=2 -kerning first=355 second=273 amount=2 -kerning first=270 second=285 amount=2 -kerning first=70 second=309 amount=-13 -kerning first=359 second=223 amount=4 -kerning first=74 second=259 amount=-5 -kerning first=232 second=311 amount=-1 -kerning first=120 second=103 amount=2 -kerning first=193 second=197 amount=-7 -kerning first=298 second=312 amount=-2 -kerning first=101 second=116 amount=-1 -kerning first=121 second=273 amount=7 -kerning first=59 second=222 amount=-4 -kerning first=194 second=337 amount=-12 -kerning first=197 second=117 amount=-13 -kerning first=217 second=274 amount=-6 -kerning first=325 second=199 amount=3 -kerning first=348 second=106 amount=-11 -kerning first=260 second=338 amount=-11 -kerning first=263 second=118 amount=-1 -kerning first=283 second=275 amount=1 -kerning first=198 second=287 amount=-3 -kerning first=86 second=79 amount=5 -kerning first=221 second=224 amount=-3 -kerning first=241 second=351 amount=1 -kerning first=287 second=225 amount=5 -kerning first=330 second=289 amount=2 -kerning first=245 second=301 amount=-2 -kerning first=353 second=226 amount=3 -kerning first=8212 second=121 amount=2 -kerning first=373 second=353 amount=1 -kerning first=45 second=325 amount=-2 -kerning first=68 second=262 amount=4 -kerning first=226 second=314 amount=-1 -kerning first=111 second=326 amount=-2 -kerning first=114 second=106 amount=-10 -kerning first=358 second=316 amount=-3 -kerning first=296 second=265 amount=-2 -kerning first=119 second=226 amount=5 -kerning first=362 second=266 amount=2 -kerning first=192 second=290 amount=-11 -kerning first=195 second=70 amount=-17 -kerning first=80 second=82 amount=-7 -kerning first=323 second=122 amount=3 -kerning first=343 second=279 amount=-2 -kerning first=346 second=59 amount=-4 -kerning first=258 second=291 amount=-10 -kerning first=366 second=216 amount=2 -kerning first=281 second=228 amount=2 -kerning first=196 second=240 amount=-10 -kerning first=347 second=229 amount=3 -kerning first=65 second=45 amount=-12 -kerning first=85 second=202 amount=-6 -kerning first=223 second=97 amount=2 -kerning first=105 second=329 amount=-2 -kerning first=243 second=254 amount=-1 -kerning first=286 second=318 amount=2 -kerning first=289 second=98 amount=2 -kerning first=204 second=110 amount=-2 -kerning first=355 second=99 amount=1 -kerning first=8211 second=244 amount=4 -kerning first=67 second=355 amount=2 -kerning first=113 second=229 amount=2 -kerning first=356 second=269 amount=-7 -kerning first=271 second=281 amount=-9 -kerning first=71 second=305 amount=1 -kerning first=229 second=357 amount=-1 -kerning first=275 second=231 amount=1 -kerning first=341 second=232 amount=-2 -kerning first=121 second=99 amount=3 -kerning first=256 second=244 amount=-12 -kerning first=361 second=359 amount=-1 -kerning first=276 second=371 amount=-2 -kerning first=194 second=193 amount=-7 -kerning first=302 second=88 amount=2 -kerning first=79 second=205 amount=3 -kerning first=217 second=100 amount=2 -kerning first=102 second=112 amount=-7 -kerning first=237 second=257 amount=2 -kerning first=260 second=194 amount=-7 -kerning first=365 second=309 amount=-10 -kerning first=368 second=89 amount=2 -kerning first=283 second=101 amount=1 -kerning first=195 second=333 amount=-12 -kerning first=198 second=113 amount=-3 -kerning first=218 second=270 amount=-6 -kerning first=369 second=259 amount=2 -kerning first=84 second=295 amount=-3 -kerning first=107 second=232 amount=1 -kerning first=350 second=272 amount=-3 -kerning first=68 second=88 amount=-3 -kerning first=88 second=245 amount=-2 -kerning first=331 second=285 amount=2 -kerning first=246 second=297 amount=-2 -kerning first=354 second=222 amount=-5 -kerning first=374 second=349 amount=-4 -kerning first=289 second=361 amount=2 -kerning first=204 second=373 amount=-2 -kerning first=112 second=322 amount=3 -kerning first=53 second=51 amount=1 -kerning first=316 second=248 amount=1 -kerning first=359 second=312 amount=-1 -kerning first=274 second=324 amount=-2 -kerning first=277 second=104 amount=-1 -kerning first=192 second=116 amount=-12 -kerning first=97 second=285 amount=2 -kerning first=258 second=117 amount=-13 -kerning first=278 second=274 amount=-5 -kerning first=193 second=286 amount=-11 -kerning first=196 second=66 amount=-8 -kerning first=101 second=235 amount=1 -kerning first=259 second=287 amount=2 -kerning first=302 second=351 amount=-2 -kerning first=325 second=288 amount=3 -kerning first=102 second=375 amount=-7 -kerning first=86 second=198 amount=-6 -kerning first=221 second=313 amount=-3 -kerning first=244 second=250 amount=-2 -kerning first=349 second=365 amount=1 -kerning first=8211 second=70 amount=-7 -kerning first=44 second=274 amount=-4 -kerning first=287 second=314 amount=2 -kerning first=202 second=326 amount=-2 -kerning first=205 second=106 amount=-14 -kerning first=87 second=338 amount=2 -kerning first=8212 second=240 amount=4 -kerning first=268 second=327 amount=4 -kerning first=337 second=108 amount=-1 -kerning first=114 second=225 amount=-2 -kerning first=357 second=265 amount=-9 -kerning first=75 second=81 amount=-8 -kerning first=318 second=121 amount=-11 -kerning first=230 second=353 amount=1 -kerning first=338 second=278 amount=-4 -kerning first=341 second=58 amount=-7 -kerning first=115 second=365 amount=1 -kerning first=256 second=70 amount=-17 -kerning first=296 second=354 amount=-2 -kerning first=257 second=240 amount=2 -kerning first=192 second=379 amount=-7 -kerning first=80 second=201 amount=-9 -kerning first=103 second=108 amount=2 -kerning first=196 second=329 amount=-19 -kerning first=304 second=254 amount=-2 -kerning first=84 second=121 amount=-10 -kerning first=222 second=46 amount=-8 -kerning first=347 second=318 amount=1 -kerning first=262 second=330 amount=4 -kerning first=285 second=267 amount=2 -kerning first=85 second=291 amount=2 -kerning first=88 second=71 amount=-4 -kerning first=108 second=228 amount=2 -kerning first=266 second=280 amount=-2 -kerning first=69 second=84 amount=-5 -kerning first=8211 second=333 amount=4 -kerning first=290 second=357 amount=2 -kerning first=70 second=254 amount=-2 -kerning first=205 second=369 amount=-2 -kerning first=113 second=318 amount=-1 -kerning first=356 second=358 amount=-8 -kerning first=337 second=371 amount=-2 -kerning first=160 second=280 amount=-6 -kerning first=275 second=320 amount=-1 -kerning first=75 second=344 amount=-7 -kerning first=98 second=281 amount=2 -kerning first=256 second=333 amount=-12 -kerning first=259 second=113 amount=2 -kerning first=194 second=282 amount=-10 -kerning first=102 second=231 amount=-8 -kerning first=345 second=271 amount=-2 -kerning first=368 second=208 amount=-6 -kerning first=198 second=232 amount=-5 -kerning first=303 second=347 amount=1 -kerning first=103 second=371 amount=2 -kerning first=222 second=309 amount=-11 -kerning first=8212 second=66 amount=-7 -kerning first=265 second=373 amount=-1 -kerning first=45 second=270 amount=-7 -kerning first=206 second=102 amount=-3 -kerning first=88 second=334 amount=-4 -kerning first=226 second=259 amount=2 -kerning first=354 second=311 amount=-3 -kerning first=272 second=103 amount=2 -kerning first=335 second=324 amount=-2 -kerning first=273 second=273 amount=2 -kerning first=73 second=297 amount=-2 -kerning first=316 second=337 amount=1 -kerning first=231 second=349 amount=1 -kerning first=362 second=211 amount=2 -kerning first=277 second=223 amount=4 -kerning first=192 second=235 amount=-12 -kerning first=323 second=67 amount=3 -kerning first=343 second=224 amount=-2 -kerning first=120 second=311 amount=-1 -kerning first=363 second=351 amount=1 -kerning first=278 second=363 amount=-2 -kerning first=193 second=375 amount=-4 -kerning first=304 second=80 amount=-2 -kerning first=104 second=104 amount=-1 -kerning first=370 second=81 amount=2 -kerning first=197 second=325 amount=-15 -kerning first=82 second=337 amount=-2 -kerning first=325 second=377 amount=4 -kerning first=86 second=287 amount=6 -kerning first=89 second=67 amount=-1 -kerning first=109 second=224 amount=2 -kerning first=352 second=264 amount=3 -kerning first=67 second=300 amount=3 -kerning first=70 second=80 amount=-7 -kerning first=356 second=214 amount=-2 -kerning first=271 second=226 amount=-8 -kerning first=376 second=341 amount=-5 -kerning first=291 second=353 amount=2 -kerning first=206 second=365 amount=-2 -kerning first=114 second=314 amount=-1 -kerning first=160 second=106 amount=-9 -kerning first=75 second=200 amount=-9 -kerning first=318 second=240 amount=-8 -kerning first=98 second=107 amount=3 -kerning first=364 second=84 amount=-6 -kerning first=194 second=108 amount=-12 -kerning first=76 second=340 amount=-4 -kerning first=345 second=97 amount=-2 -kerning first=257 second=329 amount=-3 -kerning first=260 second=109 amount=-13 -kerning first=365 second=254 amount=-1 -kerning first=195 second=278 amount=-10 -kerning first=80 second=290 amount=3 -kerning first=83 second=70 amount=-3 -kerning first=103 second=227 amount=5 -kerning first=84 second=240 amount=-10 -kerning first=327 second=280 amount=-6 -kerning first=265 second=229 amount=1 -kerning first=370 second=344 amount=-2 -kerning first=331 second=230 amount=1 -kerning first=351 second=357 amount=1 -kerning first=46 second=266 amount=-3 -kerning first=69 second=203 amount=-5 -kerning first=204 second=318 amount=-2 -kerning first=207 second=98 amount=-2 -kerning first=312 second=243 amount=1 -kerning first=112 second=267 amount=2 -kerning first=358 second=87 amount=-1 -kerning first=70 second=343 amount=-3 -kerning first=208 second=268 amount=4 -kerning first=339 second=100 amount=2 -kerning first=254 second=112 amount=2 -kerning first=359 second=257 amount=2 -kerning first=97 second=230 amount=1 -kerning first=337 second=8211 amount=3 -kerning first=117 second=357 amount=-1 -kerning first=193 second=231 amount=-12 -kerning first=121 second=307 amount=3 -kerning first=279 second=359 amount=-1 -kerning first=194 second=371 amount=-13 -kerning first=82 second=193 amount=3 -kerning first=220 second=88 amount=3 -kerning first=105 second=100 amount=2 -kerning first=240 second=245 amount=1 -kerning first=283 second=309 amount=-13 -kerning first=286 second=89 amount=4 -kerning first=86 second=113 amount=6 -kerning first=221 second=258 amount=-3 -kerning first=103 second=8211 amount=4 -kerning first=264 second=322 amount=2 -kerning first=287 second=259 amount=5 -kerning first=268 second=272 amount=-2 -kerning first=376 second=197 amount=-3 -kerning first=272 second=222 amount=-5 -kerning first=207 second=361 amount=-2 -kerning first=358 second=350 amount=-6 -kerning first=296 second=299 amount=-2 -kerning first=99 second=103 amount=1 -kerning first=234 second=248 amount=1 -kerning first=254 second=375 amount=2 -kerning first=192 second=324 amount=-13 -kerning first=195 second=104 amount=-12 -kerning first=77 second=336 amount=3 -kerning first=300 second=249 amount=-2 -kerning first=100 second=273 amount=2 -kerning first=258 second=325 amount=-15 -kerning first=196 second=274 amount=-10 -kerning first=84 second=66 amount=-8 -kerning first=327 second=106 amount=-12 -kerning first=104 second=223 amount=3 -kerning first=242 second=118 amount=-2 -kerning first=347 second=263 amount=1 -kerning first=370 second=200 amount=-6 -kerning first=65 second=79 amount=-11 -kerning first=374 second=120 amount=-7 -kerning first=309 second=289 amount=2 -kerning first=8211 second=278 amount=-7 -kerning first=290 second=302 amount=3 -kerning first=205 second=314 amount=-2 -kerning first=113 second=263 amount=1 -kerning first=356 second=303 amount=-2 -kerning first=71 second=339 amount=3 -kerning first=209 second=264 amount=3 -kerning first=212 second=44 amount=-5 -kerning first=337 second=316 amount=-1 -kerning first=275 second=265 amount=1 -kerning first=75 second=289 amount=-7 -kerning first=78 second=69 amount=-6 -kerning first=98 second=226 amount=5 -kerning first=118 second=353 amount=2 -kerning first=256 second=278 amount=-10 -kerning first=364 second=203 amount=-6 -kerning first=59 second=82 amount=-4 -kerning first=194 second=227 amount=-10 -kerning first=237 second=291 amount=2 -kerning first=260 second=228 amount=-10 -kerning first=195 second=367 amount=-13 -kerning first=80 second=379 amount=-4 -kerning first=103 second=316 amount=2 -kerning first=326 second=229 amount=2 -kerning first=346 second=356 amount=-3 -kerning first=369 second=293 amount=-1 -kerning first=307 second=242 amount=1 -kerning first=265 second=318 amount=-1 -kerning first=268 second=98 amount=2 -kerning first=373 second=243 amount=4 -kerning first=65 second=342 amount=-17 -kerning first=88 second=279 amount=-2 -kerning first=246 second=331 amount=-2 -kerning first=354 second=256 amount=-13 -kerning first=358 second=206 amount=-2 -kerning first=73 second=242 amount=-2 -kerning first=254 second=231 amount=2 -kerning first=274 second=358 amount=-5 -kerning first=382 second=283 amount=1 -kerning first=320 second=232 amount=-1 -kerning first=100 second=99 amount=1 -kerning first=235 second=244 amount=1 -kerning first=340 second=359 amount=-2 -kerning first=193 second=320 amount=-12 -kerning first=196 second=100 amount=-10 -kerning first=301 second=245 amount=1 -kerning first=78 second=332 amount=3 -kerning first=101 second=269 amount=1 -kerning first=194 second=8211 amount=-12 -kerning first=197 second=270 amount=-10 -kerning first=243 second=114 amount=-2 -kerning first=260 second=8212 amount=-12 -kerning first=263 second=271 amount=1 -kerning first=286 second=208 amount=-2 -kerning first=66 second=75 amount=-3 -kerning first=86 second=232 amount=3 -kerning first=221 second=347 amount=-4 -kerning first=110 second=309 amount=-10 -kerning first=8212 second=274 amount=-7 -kerning first=376 second=286 amount=-1 -kerning first=209 second=90 amount=4 -kerning first=114 second=259 amount=-2 -kerning first=357 second=299 amount=-3 -kerning first=360 second=79 amount=2 -kerning first=75 second=115 amount=-8 -kerning first=256 second=104 amount=-12 -kerning first=234 second=337 amount=1 -kerning first=119 second=349 amount=2 -kerning first=195 second=223 amount=-10 -kerning first=238 second=287 amount=2 -kerning first=346 second=212 amount=3 -kerning first=261 second=224 amount=2 -kerning first=281 second=351 amount=1 -kerning first=196 second=363 amount=-13 -kerning first=222 second=80 amount=-7 -kerning first=327 second=225 amount=2 -kerning first=104 second=312 amount=-1 -kerning first=242 second=237 amount=-2 -kerning first=370 second=289 amount=2 -kerning first=285 second=301 amount=3 -kerning first=65 second=198 amount=-6 -kerning first=354 second=82 amount=-5 -kerning first=266 second=314 amount=2 -kerning first=46 second=211 amount=-3 -kerning first=289 second=251 amount=2 -kerning first=69 second=118 amount=-2 -kerning first=204 second=263 amount=-2 -kerning first=8211 second=367 amount=2 -kerning first=270 second=264 amount=4 -kerning first=208 second=213 amount=4 -kerning first=231 second=120 amount=2 -kerning first=74 second=238 amount=-1 -kerning first=360 second=342 amount=-2 -kerning first=236 second=240 amount=2 -kerning first=341 second=355 amount=-1 -kerning first=121 second=252 amount=3 -kerning first=256 second=367 amount=-13 -kerning first=282 second=84 amount=-5 -kerning first=59 second=201 amount=-4 -kerning first=194 second=316 amount=-12 -kerning first=302 second=241 amount=-2 -kerning first=82 second=108 amount=-2 -kerning first=102 second=265 amount=-8 -kerning first=263 second=97 amount=1 -kerning first=283 second=254 amount=-1 -kerning first=198 second=266 amount=-7 -kerning first=83 second=278 amount=-3 -kerning first=221 second=203 amount=-4 -kerning first=326 second=318 amount=-1 -kerning first=329 second=98 amount=-1 -kerning first=244 second=110 amount=-2 -kerning first=87 second=228 amount=2 -kerning first=330 second=268 amount=3 -kerning first=8212 second=100 amount=4 -kerning first=45 second=304 amount=-5 -kerning first=376 second=112 amount=-5 -kerning first=203 second=356 amount=-5 -kerning first=311 second=281 amount=1 -kerning first=226 second=293 amount=-1 -kerning first=354 second=345 amount=-6 -kerning first=269 second=357 amount=-1 -kerning first=230 second=243 amount=1 -kerning first=358 second=295 amount=-3 -kerning first=296 second=244 amount=-2 -kerning first=73 second=331 amount=-2 -kerning first=254 second=320 amount=3 -kerning first=257 second=100 amount=2 -kerning first=277 second=257 amount=2 -kerning first=192 second=269 amount=-12 -kerning first=235 second=333 amount=1 -kerning first=238 second=113 amount=2 -kerning first=258 second=270 amount=-10 -kerning first=304 second=114 amount=-2 -kerning first=324 second=271 amount=2 -kerning first=197 second=359 amount=-12 -kerning first=371 second=285 amount=2 -kerning first=374 second=65 amount=-3 -kerning first=66 second=194 amount=-5 -kerning first=201 second=309 amount=-10 -kerning first=309 second=234 amount=1 -kerning first=244 second=373 amount=-2 -kerning first=375 second=235 amount=3 -kerning first=70 second=114 amount=-3 -kerning first=333 second=311 amount=-1 -kerning first=356 second=248 amount=-7 -kerning first=8212 second=363 amount=2 -kerning first=376 second=375 amount=-5 -kerning first=71 second=284 amount=3 -kerning first=232 second=116 amount=-1 -kerning first=298 second=117 amount=-2 -kerning first=75 second=234 amount=-10 -kerning first=256 second=223 amount=-10 -kerning first=299 second=287 amount=2 -kerning first=368 second=68 amount=-6 -kerning first=195 second=312 amount=-12 -kerning first=80 second=324 amount=1 -kerning first=84 second=274 amount=-8 -kerning first=222 second=199 amount=4 -kerning first=242 second=326 amount=-2 -kerning first=245 second=106 amount=-13 -kerning first=65 second=287 amount=-10 -kerning first=68 second=67 amount=4 -kerning first=223 second=339 amount=1 -kerning first=334 second=44 amount=-5 -kerning first=108 second=351 amount=1 -kerning first=354 second=201 amount=-8 -kerning first=374 second=328 amount=-5 -kerning first=312 second=277 amount=1 -kerning first=227 second=289 amount=2 -kerning first=112 second=301 amount=2 -kerning first=358 second=121 amount=-10 -kerning first=296 second=70 amount=-2 -kerning first=316 second=227 amount=2 -kerning first=359 second=291 amount=2 -kerning first=362 second=71 amount=2 -kerning first=297 second=240 amount=2 -kerning first=193 second=265 amount=-12 -kerning first=196 second=45 amount=-12 -kerning first=324 second=97 amount=2 -kerning first=236 second=329 amount=-2 -kerning first=344 second=254 amount=-2 -kerning first=364 second=381 amount=4 -kerning first=282 second=203 amount=-5 -kerning first=59 second=290 amount=-3 -kerning first=217 second=342 amount=-2 -kerning first=240 second=279 amount=1 -kerning first=198 second=355 amount=-2 -kerning first=264 second=356 amount=-2 -kerning first=287 second=293 amount=2 -kerning first=290 second=73 amount=3 -kerning first=110 second=254 amount=-1 -kerning first=245 second=369 amount=-2 -kerning first=356 second=74 amount=-7 -kerning first=376 second=231 amount=-4 -kerning first=291 second=243 amount=2 -kerning first=71 second=110 amount=2 -kerning first=357 second=244 amount=-9 -kerning first=272 second=256 amount=-8 -kerning first=72 second=280 amount=-6 -kerning first=210 second=205 amount=3 -kerning first=318 second=100 amount=-8 -kerning first=296 second=333 amount=-2 -kerning first=299 second=113 amount=2 -kerning first=362 second=334 amount=2 -kerning first=192 second=358 amount=-20 -kerning first=300 second=283 amount=-2 -kerning first=343 second=347 amount=-2 -kerning first=258 second=359 amount=-12 -kerning first=366 second=284 amount=2 -kerning first=199 second=88 amount=1 -kerning first=304 second=233 amount=-2 -kerning first=84 second=100 amount=-10 -kerning first=104 second=257 amount=2 -kerning first=347 second=297 amount=1 -kerning first=65 second=113 amount=-10 -kerning first=285 second=246 amount=2 -kerning first=85 second=270 amount=-6 -kerning first=243 second=322 amount=-1 -kerning first=246 second=102 amount=-2 -kerning first=66 second=283 amount=2 -kerning first=312 second=103 amount=2 -kerning first=227 second=115 amount=1 -kerning first=109 second=347 amount=1 -kerning first=8211 second=312 amount=2 -kerning first=375 second=324 amount=3 -kerning first=70 second=233 amount=-4 -kerning first=228 second=285 amount=2 -kerning first=356 second=337 amount=-7 -kerning first=271 second=349 amount=-8 -kerning first=71 second=373 amount=2 -kerning first=232 second=235 amount=1 -kerning first=360 second=287 amount=2 -kerning first=298 second=236 amount=-2 -kerning first=78 second=103 amount=2 -kerning first=318 second=363 amount=-9 -kerning first=344 second=80 amount=-8 -kerning first=256 second=312 amount=-12 -kerning first=260 second=262 amount=-11 -kerning first=198 second=211 amount=-7 -kerning first=83 second=223 amount=2 -kerning first=221 second=118 amount=-4 -kerning first=44 second=79 amount=-3 -kerning first=287 second=119 amount=2 -kerning first=84 second=363 amount=-6 -kerning first=222 second=288 amount=4 -kerning first=330 second=213 amount=3 -kerning first=350 second=340 amount=-3 -kerning first=353 second=120 amount=2 -kerning first=373 second=277 amount=4 -kerning first=45 second=249 amount=2 -kerning first=311 second=226 amount=2 -kerning first=331 second=353 amount=1 -kerning first=111 second=250 amount=-2 -kerning first=246 second=365 amount=-2 -kerning first=354 second=290 amount=-2 -kerning first=272 second=82 amount=-3 -kerning first=69 second=326 amount=-2 -kerning first=72 second=106 amount=-12 -kerning first=207 second=251 amount=-2 -kerning first=358 second=240 amount=-10 -kerning first=234 second=108 amount=-1 -kerning first=119 second=120 amount=5 -kerning first=254 second=265 amount=2 -kerning first=192 second=214 amount=-11 -kerning first=297 second=329 amount=-2 -kerning first=300 second=109 amount=-2 -kerning first=77 second=226 amount=1 -kerning first=97 second=353 amount=1 -kerning first=278 second=342 amount=-6 -kerning first=193 second=354 amount=-20 -kerning first=301 second=279 amount=1 -kerning first=239 second=228 amount=2 -kerning first=259 second=355 amount=-1 -kerning first=197 second=304 amount=-7 -kerning first=200 second=84 amount=-5 -kerning first=82 second=316 amount=-2 -kerning first=305 second=229 amount=2 -kerning first=325 second=356 amount=-6 -kerning first=266 second=85 amount=4 -kerning first=371 second=230 amount=1 -kerning first=86 second=266 amount=5 -kerning first=89 second=46 amount=-5 -kerning first=221 second=381 amount=-2 -kerning first=244 second=318 amount=-1 -kerning first=44 second=342 amount=-4 -kerning first=70 second=59 amount=-8 -kerning first=356 second=193 amount=-13 -kerning first=376 second=320 amount=-2 -kerning first=71 second=229 amount=5 -kerning first=206 second=344 amount=-2 -kerning first=114 second=293 amount=-1 -kerning first=357 second=333 amount=-9 -kerning first=160 second=85 amount=-3 -kerning first=360 second=113 amount=2 -kerning first=377 second=8211 amount=-6 -kerning first=233 second=231 amount=1 -kerning first=118 second=243 amount=4 -kerning first=194 second=87 amount=-7 -kerning first=260 second=88 amount=-9 -kerning first=280 second=245 amount=-2 -kerning first=195 second=257 amount=-10 -kerning first=323 second=309 amount=-12 -kerning first=199 second=207 amount=3 -kerning first=304 second=322 amount=-2 -kerning first=327 second=259 amount=2 -kerning first=350 second=196 amount=-9 -kerning first=45 second=75 amount=-5 -kerning first=373 second=103 amount=2 -kerning first=285 second=335 amount=2 -kerning first=65 second=232 amount=-12 -kerning first=354 second=116 amount=-3 -kerning first=374 second=273 amount=-3 -kerning first=289 second=285 amount=5 -kerning first=204 second=297 amount=-2 -kerning first=112 second=246 amount=2 -kerning first=358 second=66 amount=-8 -kerning first=70 second=322 amount=-2 -kerning first=73 second=102 amount=-3 -kerning first=274 second=248 amount=-2 -kerning first=74 second=272 amount=-5 -kerning first=235 second=104 amount=-1 -kerning first=120 second=116 amount=-1 -kerning first=160 second=348 amount=-3 -kerning first=193 second=210 amount=-11 -kerning first=78 second=222 amount=-2 -kerning first=98 second=349 amount=2 -kerning first=367 second=106 amount=-10 -kerning first=282 second=118 amount=-2 -kerning first=194 second=350 amount=-8 -kerning first=302 second=275 amount=-2 -kerning first=217 second=287 amount=2 -kerning first=325 second=212 amount=3 -kerning first=102 second=299 amount=-7 -kerning first=240 second=224 amount=2 -kerning first=345 second=339 amount=-2 -kerning first=260 second=351 amount=-11 -kerning first=368 second=276 amount=-6 -kerning first=286 second=68 amount=-2 -kerning first=201 second=80 amount=-6 -kerning first=221 second=237 amount=-3 -kerning first=349 second=289 amount=3 -kerning first=352 second=69 amount=-3 -kerning first=372 second=226 amount=2 -kerning first=287 second=238 amount=3 -kerning first=87 second=262 amount=2 -kerning first=245 second=314 amount=-1 -kerning first=353 second=239 amount=1 -kerning first=45 second=338 amount=5 -kerning first=229 second=107 amount=-1 -kerning first=354 second=379 amount=-2 -kerning first=272 second=201 amount=-6 -kerning first=295 second=108 amount=-1 -kerning first=72 second=225 amount=2 -kerning first=207 second=340 amount=-2 -kerning first=230 second=277 amount=1 -kerning first=338 second=202 amount=-4 -kerning first=115 second=289 amount=3 -kerning first=276 second=121 amount=-3 -kerning first=73 second=365 amount=-2 -kerning first=234 second=227 amount=2 -kerning first=119 second=239 amount=2 -kerning first=277 second=291 amount=2 -kerning first=195 second=83 amount=-8 -kerning first=320 second=355 amount=-2 -kerning first=258 second=304 amount=-7 -kerning first=366 second=229 amount=2 -kerning first=84 second=45 amount=-7 -kerning first=347 second=242 amount=1 -kerning first=262 second=254 amount=2 -kerning first=65 second=58 amount=-10 -kerning first=200 second=203 amount=-5 -kerning first=266 second=204 amount=3 -kerning first=46 second=71 amount=-3 -kerning first=374 second=99 amount=-4 -kerning first=289 second=111 amount=2 -kerning first=66 second=228 amount=3 -kerning first=86 second=355 amount=3 -kerning first=332 second=205 amount=3 -kerning first=352 second=332 amount=3 -kerning first=8211 second=257 amount=4 -kerning first=375 second=269 amount=3 -kerning first=205 second=293 amount=-2 -kerning first=228 second=230 amount=1 -kerning first=113 second=242 amount=1 -kerning first=248 second=357 amount=-1 -kerning first=356 second=282 amount=-8 -kerning first=71 second=318 amount=2 -kerning first=160 second=204 amount=-4 -kerning first=275 second=244 amount=1 -kerning first=75 second=268 amount=-8 -kerning first=233 second=320 amount=-1 -kerning first=236 second=100 amount=2 -kerning first=341 second=245 amount=-2 -kerning first=121 second=112 amount=3 -kerning first=256 second=257 amount=-10 -kerning first=194 second=206 amount=-7 -kerning first=302 second=101 amount=-2 -kerning first=217 second=113 amount=2 -kerning first=260 second=207 amount=-7 -kerning first=365 second=322 amount=-1 -kerning first=195 second=346 amount=-8 -kerning first=303 second=271 amount=2 -kerning first=80 second=358 amount=-9 -kerning first=103 second=295 amount=2 -kerning first=261 second=347 amount=1 -kerning first=199 second=296 amount=3 -kerning first=87 second=88 amount=3 -kerning first=107 second=245 amount=1 -kerning first=45 second=194 amount=-13 -kerning first=203 second=246 amount=-2 -kerning first=88 second=258 amount=-5 -kerning first=354 second=235 amount=-7 -kerning first=46 second=334 amount=-3 -kerning first=66 second=8212 amount=5 -kerning first=230 second=103 amount=2 -kerning first=112 second=335 amount=2 -kerning first=296 second=104 amount=-2 -kerning first=208 second=336 amount=4 -kerning first=231 second=273 amount=1 -kerning first=116 second=285 amount=2 -kerning first=274 second=337 amount=-2 -kerning first=74 second=361 amount=-4 -kerning first=235 second=223 amount=4 -kerning first=196 second=79 amount=-11 -kerning first=301 second=224 amount=2 -kerning first=101 second=248 amount=1 -kerning first=121 second=375 amount=3 -kerning first=262 second=80 amount=-2 -kerning first=367 second=225 amount=2 -kerning first=86 second=211 amount=5 -kerning first=221 second=326 amount=-5 -kerning first=224 second=106 amount=-10 -kerning first=290 second=107 amount=2 -kerning first=205 second=119 amount=-2 -kerning first=353 second=328 amount=1 -kerning first=356 second=108 amount=-3 -kerning first=268 second=340 amount=-4 -kerning first=271 second=120 amount=-11 -kerning first=376 second=265 amount=-4 -kerning first=291 second=277 amount=2 -kerning first=379 second=45 amount=-6 -kerning first=209 second=69 amount=-6 -kerning first=8212 second=253 amount=2 -kerning first=229 second=226 amount=2 -kerning first=337 second=121 amount=-2 -kerning first=272 second=290 amount=4 -kerning first=295 second=227 amount=2 -kerning first=256 second=83 amount=-8 -kerning first=361 second=228 amount=2 -kerning first=296 second=367 amount=-2 -kerning first=79 second=44 amount=-5 -kerning first=234 second=316 amount=-1 -kerning first=119 second=328 amount=2 -kerning first=195 second=202 amount=-10 -kerning first=303 second=97 amount=2 -kerning first=80 second=214 amount=3 -kerning first=103 second=121 amount=2 -kerning first=369 second=98 amount=-1 -kerning first=196 second=342 amount=-17 -kerning first=304 second=267 amount=-2 -kerning first=222 second=59 amount=-8 -kerning first=104 second=291 amount=2 -kerning first=347 second=331 amount=1 -kerning first=370 second=268 amount=2 -kerning first=88 second=84 amount=-2 -kerning first=223 second=229 amount=2 -kerning first=351 second=281 amount=1 -kerning first=266 second=293 amount=2 -kerning first=289 second=230 amount=2 -kerning first=204 second=242 amount=-2 -kerning first=89 second=254 amount=-2 -kerning first=355 second=231 amount=1 -kerning first=70 second=267 amount=-4 -kerning first=208 second=192 amount=-8 -kerning first=116 second=111 amount=1 -kerning first=356 second=371 amount=-6 -kerning first=297 second=100 amount=2 -kerning first=209 second=332 amount=3 -kerning first=232 second=269 amount=1 -kerning first=340 second=194 amount=3 -kerning first=275 second=333 amount=1 -kerning first=75 second=357 amount=-7 -kerning first=121 second=231 amount=3 -kerning first=256 second=346 amount=-8 -kerning first=364 second=271 amount=2 -kerning first=279 second=283 amount=1 -kerning first=194 second=295 amount=-12 -kerning first=197 second=75 amount=-5 -kerning first=102 second=244 amount=-8 -kerning first=260 second=296 amount=-7 -kerning first=283 second=233 amount=1 -kerning first=198 second=245 amount=-5 -kerning first=241 second=309 amount=-10 -kerning first=349 second=234 amount=1 -kerning first=8212 second=79 amount=5 -kerning first=373 second=311 amount=2 -kerning first=45 second=283 amount=4 -kerning first=203 second=335 amount=-2 -kerning first=206 second=115 amount=-2 -kerning first=291 second=103 amount=5 -kerning first=354 second=324 amount=-6 -kerning first=292 second=273 amount=2 -kerning first=115 second=234 amount=1 -kerning first=358 second=274 amount=-8 -kerning first=276 second=66 amount=-5 -kerning first=76 second=90 amount=2 -kerning first=339 second=287 amount=2 -kerning first=254 second=299 amount=2 -kerning first=362 second=224 amount=2 -kerning first=192 second=248 amount=-12 -kerning first=323 second=80 amount=-2 -kerning first=196 second=198 amount=-6 -kerning first=101 second=337 amount=1 -kerning first=367 second=314 amount=-1 -kerning first=282 second=326 amount=-2 -kerning first=197 second=338 amount=-11 -kerning first=200 second=118 amount=-2 -kerning first=105 second=287 amount=2 -kerning first=351 second=107 amount=1 -kerning first=374 second=44 amount=-5 -kerning first=286 second=276 amount=-2 -kerning first=86 second=300 amount=5 -kerning first=89 second=80 amount=-1 -kerning first=224 second=225 amount=2 -kerning first=8211 second=202 amount=-7 -kerning first=267 second=289 amount=1 -kerning first=270 second=69 amount=-6 -kerning first=205 second=238 amount=-2 -kerning first=356 second=227 amount=-10 -kerning first=8212 second=342 amount=-6 -kerning first=271 second=239 amount=-3 -kerning first=71 second=263 amount=3 -kerning first=117 second=107 amount=-1 -kerning first=357 second=367 amount=-9 -kerning first=55 second=56 amount=-6 -kerning first=295 second=316 amount=-1 -kerning first=75 second=213 amount=-8 -kerning first=98 second=120 amount=-1 -kerning first=233 second=265 amount=1 -kerning first=118 second=277 amount=4 -kerning first=256 second=202 amount=-10 -kerning first=364 second=97 amount=2 -kerning first=194 second=121 amount=-4 -kerning first=260 second=122 amount=-7 -kerning first=195 second=291 amount=-10 -kerning first=198 second=71 amount=-7 -kerning first=80 second=303 amount=1 -kerning first=218 second=228 amount=2 -kerning first=103 second=240 amount=5 -kerning first=346 second=280 amount=-3 -kerning first=304 second=356 amount=-2 -kerning first=265 second=242 amount=-1 -kerning first=45 second=109 amount=2 -kerning first=285 second=369 amount=2 -kerning first=65 second=266 amount=-11 -kerning first=68 second=46 amount=-3 -kerning first=88 second=203 amount=-2 -kerning first=226 second=98 amount=-1 -kerning first=111 second=110 amount=-2 -kerning first=374 second=307 amount=-3 -kerning first=204 second=331 amount=-2 -kerning first=207 second=111 amount=-2 -kerning first=89 second=343 amount=-5 -kerning first=355 second=320 amount=-1 -kerning first=358 second=100 amount=-10 -kerning first=270 second=332 amount=4 -kerning first=70 second=356 amount=-9 -kerning first=339 second=113 amount=2 -kerning first=356 second=8211 amount=-7 -kerning first=274 second=282 amount=-5 -kerning first=192 second=74 amount=-9 -kerning first=258 second=75 amount=-5 -kerning first=193 second=244 amount=-12 -kerning first=298 second=359 amount=-2 -kerning first=121 second=320 amount=3 -kerning first=197 second=194 amount=-7 -kerning first=302 second=309 amount=-14 -kerning first=102 second=333 amount=-8 -kerning first=105 second=113 amount=2 -kerning first=283 second=322 amount=-1 -kerning first=198 second=334 amount=-7 -kerning first=221 second=271 amount=-3 -kerning first=106 second=283 amount=1 -kerning first=267 second=115 amount=1 -kerning first=330 second=336 amount=3 -kerning first=333 second=116 amount=-1 -kerning first=353 second=273 amount=3 -kerning first=376 second=210 amount=-1 -kerning first=68 second=309 amount=-12 -kerning first=71 second=89 amount=4 -kerning first=206 second=234 amount=-2 -kerning first=311 second=349 amount=1 -kerning first=111 second=373 amount=-2 -kerning first=357 second=223 amount=3 -kerning first=72 second=259 amount=2 -kerning first=230 second=311 amount=-1 -kerning first=118 second=103 amount=5 -kerning first=358 second=363 amount=-6 -kerning first=56 second=52 amount=-2 -kerning first=296 second=312 amount=-2 -kerning first=99 second=116 amount=-1 -kerning first=119 second=273 amount=5 -kerning first=192 second=337 amount=-12 -kerning first=195 second=117 amount=-13 -kerning first=323 second=199 amount=3 -kerning first=346 second=106 amount=-11 -kerning first=258 second=338 amount=-11 -kerning first=281 second=275 amount=1 -kerning first=196 second=287 amount=-10 -kerning first=84 second=79 amount=-2 -kerning first=219 second=224 amount=2 -kerning first=239 second=351 amount=1 -kerning first=370 second=213 amount=2 -kerning first=285 second=225 amount=5 -kerning first=328 second=289 amount=2 -kerning first=243 second=301 amount=-2 -kerning first=351 second=226 amount=3 -kerning first=371 second=353 amount=1 -kerning first=66 second=262 amount=3 -kerning first=89 second=199 amount=-1 -kerning first=224 second=314 amount=-1 -kerning first=112 second=106 amount=-8 -kerning first=8211 second=291 amount=4 -kerning first=375 second=303 amount=3 -kerning first=356 second=316 amount=-3 -kerning first=271 second=328 amount=-9 -kerning first=337 second=329 amount=-3 -kerning first=117 second=226 amount=2 -kerning first=360 second=266 amount=2 -kerning first=193 second=70 amount=-17 -kerning first=78 second=82 amount=-2 -kerning first=98 second=239 amount=2 -kerning first=341 second=279 amount=-2 -kerning first=256 second=291 amount=-10 -kerning first=364 second=216 amount=2 -kerning first=279 second=228 amount=2 -kerning first=194 second=240 amount=-10 -kerning first=345 second=229 amount=-2 -kerning first=83 second=202 amount=-3 -kerning first=221 second=97 amount=-3 -kerning first=241 second=254 amount=-1 -kerning first=284 second=318 amount=2 -kerning first=287 second=98 amount=2 -kerning first=199 second=330 amount=4 -kerning first=202 second=110 amount=-2 -kerning first=84 second=342 amount=-5 -kerning first=107 second=279 amount=1 -kerning first=353 second=99 amount=1 -kerning first=45 second=228 amount=4 -kerning first=65 second=355 amount=-12 -kerning first=203 second=280 amount=-5 -kerning first=354 second=269 amount=-7 -kerning first=227 second=357 amount=-1 -kerning first=112 second=369 amount=2 -kerning first=273 second=231 amount=1 -kerning first=339 second=232 amount=1 -kerning first=119 second=99 amount=4 -kerning first=254 second=244 amount=2 -kerning first=359 second=359 amount=-1 -kerning first=274 second=371 amount=-2 -kerning first=57 second=48 amount=2 -kerning first=192 second=193 amount=-7 -kerning first=300 second=88 amount=2 -kerning first=320 second=245 amount=-1 -kerning first=235 second=257 amount=2 -kerning first=258 second=194 amount=-7 -kerning first=363 second=309 amount=-10 -kerning first=366 second=89 amount=2 -kerning first=281 second=101 amount=1 -kerning first=193 second=333 amount=-12 -kerning first=196 second=113 amount=-10 -kerning first=213 second=8211 amount=3 -kerning first=367 second=259 amount=2 -kerning first=59 second=358 amount=-10 -kerning first=197 second=283 amount=-12 -kerning first=328 second=115 amount=1 -kerning first=105 second=232 amount=1 -kerning first=240 second=347 amount=1 -kerning first=348 second=272 amount=-3 -kerning first=86 second=245 amount=3 -kerning first=329 second=285 amount=2 -kerning first=352 second=222 amount=-3 -kerning first=8211 second=117 amount=2 -kerning first=287 second=361 amount=2 -kerning first=202 second=373 amount=-2 -kerning first=110 second=322 amount=-1 -kerning first=8212 second=287 amount=4 -kerning first=51 second=51 amount=2 -kerning first=291 second=311 amount=2 -kerning first=71 second=208 amount=-2 -kerning first=209 second=103 amount=2 -kerning first=275 second=104 amount=-1 -kerning first=256 second=117 amount=-13 -kerning first=276 second=274 amount=-5 -kerning first=194 second=66 amount=-8 -kerning first=257 second=287 amount=2 -kerning first=260 second=67 amount=-11 -kerning first=300 second=351 amount=-2 -kerning first=323 second=288 amount=3 -kerning first=304 second=301 amount=-2 -kerning first=84 second=198 amount=-13 -kerning first=242 second=250 amount=-2 -kerning first=347 second=365 amount=1 -kerning first=285 second=314 amount=2 -kerning first=65 second=211 amount=-11 -kerning first=200 second=326 amount=-2 -kerning first=203 second=106 amount=-10 -kerning first=85 second=338 amount=2 -kerning first=88 second=118 amount=-4 -kerning first=223 second=263 amount=1 -kerning first=108 second=275 amount=1 -kerning first=266 second=327 amount=4 -kerning first=66 second=351 amount=1 -kerning first=89 second=288 amount=-1 -kerning first=335 second=108 amount=-1 -kerning first=112 second=225 amount=5 -kerning first=358 second=45 amount=-7 -kerning first=70 second=301 amount=-4 -kerning first=208 second=226 amount=2 -kerning first=228 second=353 amount=1 -kerning first=294 second=354 amount=-6 -kerning first=160 second=327 amount=-8 -kerning first=78 second=201 amount=-6 -kerning first=98 second=328 amount=2 -kerning first=101 second=108 amount=-1 -kerning first=121 second=265 amount=3 -kerning first=59 second=214 amount=-3 -kerning first=194 second=329 amount=-19 -kerning first=197 second=109 amount=-13 -kerning first=302 second=254 amount=-2 -kerning first=345 second=318 amount=-1 -kerning first=260 second=330 amount=-15 -kerning first=283 second=267 amount=1 -kerning first=198 second=279 amount=-5 -kerning first=86 second=71 amount=5 -kerning first=221 second=216 amount=-1 -kerning first=106 second=228 amount=2 -kerning first=264 second=280 amount=-2 -kerning first=67 second=84 amount=-2 -kerning first=222 second=356 amount=-9 -kerning first=245 second=293 amount=-1 -kerning first=8212 second=113 amount=4 -kerning first=203 second=369 amount=-2 -kerning first=111 second=318 amount=-1 -kerning first=114 second=98 amount=-1 -kerning first=354 second=358 amount=-8 -kerning first=335 second=371 amount=-2 -kerning first=273 second=320 amount=-1 -kerning first=73 second=344 amount=-2 -kerning first=254 second=333 amount=2 -kerning first=257 second=113 amount=2 -kerning first=192 second=282 amount=-10 -kerning first=80 second=74 amount=-7 -kerning first=100 second=231 amount=1 -kerning first=343 second=271 amount=-2 -kerning first=258 second=283 amount=-12 -kerning first=366 second=208 amount=-6 -kerning first=196 second=232 amount=-12 -kerning first=301 second=347 amount=1 -kerning first=220 second=309 amount=-12 -kerning first=108 second=101 amount=1 -kerning first=263 second=373 amount=-1 -kerning first=204 second=102 amount=-3 -kerning first=86 second=334 amount=5 -kerning first=89 second=114 amount=-5 -kerning first=224 second=259 amount=2 -kerning first=109 second=271 amount=2 -kerning first=8211 second=236 amount=2 -kerning first=270 second=103 amount=2 -kerning first=375 second=248 amount=3 -kerning first=333 second=324 amount=-2 -kerning first=8212 second=376 amount=3 -kerning first=271 second=273 amount=-8 -kerning first=71 second=297 amount=1 -kerning first=209 second=222 amount=-2 -kerning first=229 second=349 amount=1 -kerning first=360 second=211 amount=2 -kerning first=275 second=223 amount=4 -kerning first=318 second=287 amount=-8 -kerning first=341 second=224 amount=-2 -kerning first=118 second=311 amount=2 -kerning first=361 second=351 amount=1 -kerning first=276 second=363 amount=-2 -kerning first=302 second=80 amount=-2 -kerning first=368 second=81 amount=2 -kerning first=195 second=325 amount=-15 -kerning first=198 second=105 amount=-7 -kerning first=323 second=377 amount=4 -kerning first=84 second=287 amount=-10 -kerning first=87 second=67 amount=2 -kerning first=222 second=212 amount=4 -kerning first=107 second=224 amount=2 -kerning first=245 second=119 amount=-2 -kerning first=350 second=264 amount=3 -kerning first=65 second=300 amount=-7 -kerning first=68 second=80 amount=-5 -kerning first=354 second=214 amount=-2 -kerning first=269 second=226 amount=1 -kerning first=374 second=341 amount=-5 -kerning first=289 second=353 amount=2 -kerning first=204 second=365 amount=-2 -kerning first=315 second=70 amount=-4 -kerning first=89 second=377 amount=-2 -kerning first=112 second=314 amount=3 -kerning first=316 second=240 amount=2 -kerning first=362 second=84 amount=-6 -kerning first=192 second=108 amount=-12 -kerning first=74 second=340 amount=-4 -kerning first=77 second=120 amount=-3 -kerning first=343 second=97 amount=-2 -kerning first=258 second=109 amount=-13 -kerning first=363 second=254 amount=-1 -kerning first=193 second=278 amount=-10 -kerning first=196 second=58 amount=-10 -kerning first=78 second=290 amount=3 -kerning first=101 second=227 amount=2 -kerning first=197 second=228 amount=-10 -kerning first=325 second=280 amount=-6 -kerning first=102 second=367 amount=-7 -kerning first=263 second=229 amount=1 -kerning first=368 second=344 amount=-2 -kerning first=221 second=305 amount=-3 -kerning first=329 second=230 amount=1 -kerning first=109 second=97 amount=2 -kerning first=349 second=357 amount=1 -kerning first=44 second=266 amount=-3 -kerning first=290 second=86 amount=4 -kerning first=67 second=203 amount=-2 -kerning first=205 second=98 amount=-2 -kerning first=353 second=307 amount=1 -kerning first=356 second=87 amount=-1 -kerning first=271 second=99 amount=-9 -kerning first=8212 second=232 amount=4 -kerning first=357 second=257 amount=-8 -kerning first=318 second=113 amount=-8 -kerning first=335 second=8211 amount=3 -kerning first=338 second=270 amount=-2 -kerning first=115 second=357 amount=1 -kerning first=234 second=295 amount=-1 -kerning first=119 second=307 amount=2 -kerning first=277 second=359 amount=-1 -kerning first=192 second=371 amount=-13 -kerning first=80 second=193 amount=-14 -kerning first=218 second=88 amount=3 -kerning first=100 second=320 amount=-1 -kerning first=103 second=100 amount=5 -kerning first=281 second=309 amount=-13 -kerning first=284 second=89 amount=4 -kerning first=304 second=246 amount=-2 -kerning first=84 second=113 amount=-10 -kerning first=262 second=322 amount=2 -kerning first=285 second=259 amount=5 -kerning first=197 second=8212 amount=-12 -kerning first=331 second=103 amount=2 -kerning first=266 second=272 amount=-2 -kerning first=374 second=197 amount=-3 -kerning first=89 second=233 amount=-4 -kerning first=8211 second=325 amount=-2 -kerning first=270 second=222 amount=-5 -kerning first=47 second=309 amount=-19 -kerning first=375 second=337 amount=3 -kerning first=70 second=246 amount=-4 -kerning first=205 second=361 amount=-2 -kerning first=356 second=350 amount=-6 -kerning first=74 second=196 amount=-8 -kerning first=97 second=103 amount=2 -kerning first=232 second=248 amount=1 -kerning first=337 second=363 amount=-2 -kerning first=160 second=272 amount=-6 -kerning first=193 second=104 amount=-12 -kerning first=298 second=249 amount=-2 -kerning first=75 second=336 amount=-8 -kerning first=98 second=273 amount=5 -kerning first=256 second=325 amount=-15 -kerning first=194 second=274 amount=-10 -kerning first=325 second=106 amount=-12 -kerning first=345 second=263 amount=-2 -kerning first=368 second=200 amount=-6 -kerning first=198 second=224 amount=-3 -kerning first=303 second=339 amount=1 -kerning first=103 second=363 amount=2 -kerning first=307 second=289 amount=2 -kerning first=222 second=301 amount=2 -kerning first=330 second=226 amount=2 -kerning first=245 second=238 amount=-2 -kerning first=45 second=262 amount=5 -kerning first=376 second=70 amount=-1 -kerning first=288 second=302 amount=3 -kerning first=68 second=199 amount=4 -kerning first=88 second=326 amount=-3 -kerning first=354 second=303 amount=-2 -kerning first=210 second=44 amount=-5 -kerning first=335 second=316 amount=-1 -kerning first=316 second=329 amount=-1 -kerning first=116 second=353 amount=1 -kerning first=362 second=203 amount=-6 -kerning first=192 second=227 amount=-10 -kerning first=77 second=239 amount=1 -kerning first=320 second=279 amount=-1 -kerning first=235 second=291 amount=2 -kerning first=258 second=228 amount=-10 -kerning first=193 second=367 amount=-13 -kerning first=78 second=379 amount=4 -kerning first=216 second=304 amount=3 -kerning first=219 second=84 amount=-6 -kerning first=324 second=229 amount=2 -kerning first=101 second=316 amount=-1 -kerning first=344 second=356 amount=-8 -kerning first=367 second=293 amount=-1 -kerning first=82 second=329 amount=-2 -kerning first=263 second=318 amount=-1 -kerning first=266 second=98 amount=2 -kerning first=86 second=279 amount=3 -kerning first=89 second=59 amount=-5 -kerning first=244 second=331 amount=-2 -kerning first=352 second=256 amount=-9 -kerning first=290 second=205 amount=3 -kerning first=356 second=206 amount=-2 -kerning first=376 second=333 amount=-4 -kerning first=71 second=242 amount=3 -kerning first=206 second=357 amount=-2 -kerning first=272 second=358 amount=-6 -kerning first=380 second=283 amount=1 -kerning first=75 second=192 amount=-3 -kerning first=318 second=232 amount=-9 -kerning first=98 second=99 amount=2 -kerning first=233 second=244 amount=1 -kerning first=194 second=100 amount=-10 -kerning first=192 second=8211 amount=-12 -kerning first=195 second=270 amount=-10 -kerning first=80 second=282 amount=-9 -kerning first=258 second=8212 amount=-12 -kerning first=261 second=271 amount=2 -kerning first=284 second=208 amount=-2 -kerning first=304 second=335 amount=-2 -kerning first=84 second=232 amount=-7 -kerning first=307 second=115 amount=1 -kerning first=327 second=272 amount=-6 -kerning first=104 second=359 amount=-1 -kerning first=370 second=336 amount=2 -kerning first=45 second=88 amount=-6 -kerning first=373 second=116 amount=2 -kerning first=65 second=245 amount=-12 -kerning first=108 second=309 amount=-12 -kerning first=374 second=286 amount=-1 -kerning first=312 second=235 amount=1 -kerning first=89 second=322 amount=-2 -kerning first=112 second=259 amount=5 -kerning first=358 second=79 amount=-2 -kerning first=70 second=335 amount=-4 -kerning first=73 second=115 amount=-2 -kerning first=208 second=260 amount=-8 -kerning first=254 second=104 amount=3 -kerning first=74 second=285 amount=-5 -kerning first=232 second=337 amount=1 -kerning first=117 second=349 amount=1 -kerning first=58 second=78 amount=-5 -kerning first=193 second=223 amount=-10 -kerning first=236 second=287 amount=2 -kerning first=121 second=299 amount=3 -kerning first=259 second=224 amount=2 -kerning first=279 second=351 amount=1 -kerning first=194 second=363 amount=-13 -kerning first=220 second=80 amount=-2 -kerning first=325 second=225 amount=2 -kerning first=102 second=312 amount=-7 -kerning first=368 second=289 amount=2 -kerning first=198 second=313 amount=-3 -kerning first=86 second=105 amount=3 -kerning first=352 second=82 amount=-3 -kerning first=264 second=314 amount=2 -kerning first=44 second=211 amount=-3 -kerning first=287 second=251 amount=2 -kerning first=248 second=107 amount=-1 -kerning first=353 second=252 amount=1 -kerning first=45 second=351 amount=4 -kerning first=68 second=288 amount=4 -kerning first=71 second=68 amount=-2 -kerning first=229 second=120 amount=-1 -kerning first=337 second=45 amount=3 -kerning first=272 second=214 amount=4 -kerning first=207 second=353 amount=-2 -kerning first=358 second=342 amount=-5 -kerning first=234 second=240 amount=2 -kerning first=339 second=355 amount=-1 -kerning first=119 second=252 amount=2 -kerning first=254 second=367 amount=2 -kerning first=280 second=84 amount=-5 -kerning first=192 second=316 amount=-12 -kerning first=300 second=241 amount=-2 -kerning first=100 second=265 amount=1 -kerning first=103 second=45 amount=4 -kerning first=261 second=97 amount=2 -kerning first=281 second=254 amount=-1 -kerning first=196 second=266 amount=-11 -kerning first=84 second=58 amount=-15 -kerning first=219 second=203 amount=-6 -kerning first=324 second=318 amount=-1 -kerning first=242 second=110 amount=-2 -kerning first=65 second=71 amount=-11 -kerning first=85 second=228 amount=2 -kerning first=46 second=84 amount=-10 -kerning first=374 second=112 amount=-5 -kerning first=286 second=344 amount=-4 -kerning first=201 second=356 amount=-5 -kerning first=309 second=281 amount=1 -kerning first=224 second=293 amount=-1 -kerning first=8211 second=270 amount=-7 -kerning first=267 second=357 amount=-1 -kerning first=208 second=86 amount=2 -kerning first=356 second=295 amount=-3 -kerning first=271 second=307 amount=-3 -kerning first=71 second=331 amount=2 -kerning first=74 second=111 amount=-5 -kerning first=275 second=257 amount=2 -kerning first=75 second=281 amount=-10 -kerning first=213 second=206 amount=3 -kerning first=233 second=333 amount=1 -kerning first=236 second=113 amount=2 -kerning first=256 second=270 amount=-10 -kerning first=302 second=114 amount=-2 -kerning first=319 second=8212 amount=-5 -kerning first=237 second=283 amount=1 -kerning first=195 second=359 amount=-12 -kerning first=80 second=371 amount=1 -kerning first=221 second=76 amount=-3 -kerning first=369 second=285 amount=2 -kerning first=307 second=234 amount=1 -kerning first=242 second=373 amount=-2 -kerning first=45 second=207 amount=-5 -kerning first=373 second=235 amount=4 -kerning first=65 second=334 amount=-11 -kerning first=331 second=311 amount=-1 -kerning first=354 second=248 amount=-7 -kerning first=374 second=375 amount=-5 -kerning first=230 second=116 amount=-1 -kerning first=358 second=198 amount=-13 -kerning first=296 second=117 amount=-2 -kerning first=73 second=234 amount=-2 -kerning first=382 second=275 amount=1 -kerning first=297 second=287 amount=2 -kerning first=97 second=311 amount=-1 -kerning first=366 second=68 amount=-6 -kerning first=193 second=312 amount=-12 -kerning first=197 second=262 amount=-11 -kerning first=243 second=106 amount=-13 -kerning first=286 second=200 amount=-2 -kerning first=66 second=67 amount=3 -kerning first=86 second=224 amount=6 -kerning first=221 second=339 amount=-4 -kerning first=332 second=44 amount=-5 -kerning first=352 second=201 amount=-3 -kerning first=225 second=289 amount=2 -kerning first=356 second=121 amount=-10 -kerning first=8212 second=266 amount=5 -kerning first=376 second=278 amount=-4 -kerning first=294 second=70 amount=-2 -kerning first=209 second=82 amount=-2 -kerning first=357 second=291 amount=-8 -kerning first=360 second=71 amount=2 -kerning first=295 second=240 amount=2 -kerning first=75 second=107 amount=-7 -kerning first=338 second=304 amount=-1 -kerning first=194 second=45 amount=-12 -kerning first=342 second=254 amount=-2 -kerning first=260 second=46 amount=-10 -kerning first=362 second=381 amount=4 -kerning first=280 second=203 amount=-5 -kerning first=196 second=355 amount=-12 -kerning first=262 second=356 amount=-2 -kerning first=285 second=293 amount=2 -kerning first=288 second=73 amount=3 -kerning first=223 second=242 amount=1 -kerning first=328 second=357 amount=-1 -kerning first=243 second=369 amount=-2 -kerning first=354 second=74 amount=-7 -kerning first=46 second=203 amount=-4 -kerning first=374 second=231 amount=-4 -kerning first=289 second=243 amount=2 -kerning first=69 second=110 amount=-2 -kerning first=89 second=267 amount=-4 -kerning first=355 second=244 amount=1 -kerning first=270 second=256 amount=-8 -kerning first=375 second=371 amount=3 -kerning first=70 second=280 amount=-9 -kerning first=316 second=100 amount=2 -kerning first=382 second=101 amount=1 -kerning first=297 second=113 amount=2 -kerning first=74 second=230 amount=-4 -kerning first=360 second=334 amount=2 -kerning first=298 second=283 amount=-2 -kerning first=98 second=307 amount=2 -kerning first=236 second=232 amount=1 -kerning first=341 second=347 amount=-2 -kerning first=121 second=244 amount=3 -kerning first=256 second=359 amount=-12 -kerning first=364 second=284 amount=2 -kerning first=197 second=88 amount=-9 -kerning first=302 second=233 amount=-2 -kerning first=102 second=257 amount=-6 -kerning first=283 second=246 amount=1 -kerning first=198 second=258 amount=-6 -kerning first=80 second=8211 amount=2 -kerning first=83 second=270 amount=-3 -kerning first=221 second=195 amount=-3 -kerning first=241 second=322 amount=-1 -kerning first=244 second=102 amount=-2 -kerning first=202 second=208 amount=-5 -kerning first=225 second=115 amount=1 -kerning first=107 second=347 amount=1 -kerning first=268 second=209 amount=4 -kerning first=45 second=296 amount=-5 -kerning first=373 second=324 amount=2 -kerning first=291 second=116 amount=2 -kerning first=376 second=104 amount=-2 -kerning first=311 second=273 amount=2 -kerning first=226 second=285 amount=2 -kerning first=354 second=337 amount=-7 -kerning first=357 second=117 amount=-9 -kerning first=269 second=349 amount=1 -kerning first=69 second=373 amount=-2 -kerning first=230 second=235 amount=1 -kerning first=358 second=287 amount=-10 -kerning first=296 second=236 amount=-2 -kerning first=231 second=375 amount=-1 -kerning first=342 second=80 amount=-8 -kerning first=254 second=312 amount=2 -kerning first=77 second=273 amount=1 -kerning first=258 second=262 amount=-11 -kerning first=58 second=286 amount=-3 -kerning first=196 second=211 amount=-11 -kerning first=304 second=106 amount=-14 -kerning first=216 second=338 amount=3 -kerning first=285 second=119 amount=2 -kerning first=197 second=351 amount=-11 -kerning first=348 second=340 amount=-3 -kerning first=351 second=120 amount=2 -kerning first=309 second=226 amount=2 -kerning first=86 second=313 amount=4 -kerning first=329 second=353 amount=1 -kerning first=244 second=365 amount=-2 -kerning first=352 second=290 amount=3 -kerning first=270 second=82 amount=-3 -kerning first=375 second=227 amount=7 -kerning first=70 second=106 amount=-13 -kerning first=205 second=251 amount=-2 -kerning first=356 second=240 amount=-10 -kerning first=376 second=367 amount=-5 -kerning first=71 second=276 amount=-2 -kerning first=209 second=201 amount=-6 -kerning first=232 second=108 amount=-1 -kerning first=337 second=253 amount=-2 -kerning first=117 second=120 amount=2 -kerning first=295 second=329 amount=-3 -kerning first=298 second=109 amount=-2 -kerning first=75 second=226 amount=-7 -kerning first=276 second=342 amount=-6 -kerning first=237 second=228 amount=2 -kerning first=257 second=355 amount=-1 -kerning first=195 second=304 amount=-7 -kerning first=198 second=84 amount=-2 -kerning first=303 second=229 amount=2 -kerning first=323 second=356 amount=-6 -kerning first=103 second=253 amount=2 -kerning first=264 second=85 amount=4 -kerning first=369 second=230 amount=1 -kerning first=199 second=254 amount=2 -kerning first=304 second=369 amount=-2 -kerning first=84 second=266 amount=-2 -kerning first=219 second=381 amount=4 -kerning first=242 second=318 amount=-1 -kerning first=245 second=98 amount=-1 -kerning first=65 second=279 amount=-12 -kerning first=68 second=59 amount=-3 -kerning first=311 second=99 amount=1 -kerning first=88 second=216 amount=-4 -kerning first=354 second=193 amount=-13 -kerning first=374 second=320 amount=-2 -kerning first=204 second=344 amount=-2 -kerning first=312 second=269 amount=1 -kerning first=112 second=293 amount=3 -kerning first=355 second=333 amount=1 -kerning first=358 second=113 amount=-10 -kerning first=70 second=369 amount=-3 -kerning first=359 second=283 amount=1 -kerning first=192 second=87 amount=-7 -kerning first=258 second=88 amount=-9 -kerning first=278 second=245 amount=-2 -kerning first=193 second=257 amount=-10 -kerning first=121 second=333 amount=3 -kerning first=59 second=282 amount=-4 -kerning first=197 second=207 amount=-7 -kerning first=302 second=322 amount=-2 -kerning first=325 second=259 amount=2 -kerning first=240 second=271 amount=2 -kerning first=348 second=196 amount=-9 -kerning first=371 second=103 amount=2 -kerning first=283 second=335 amount=1 -kerning first=198 second=347 amount=-4 -kerning first=221 second=284 amount=-1 -kerning first=372 second=273 amount=2 -kerning first=287 second=285 amount=5 -kerning first=87 second=309 amount=-12 -kerning first=90 second=89 amount=3 -kerning first=245 second=361 amount=-2 -kerning first=356 second=66 amount=-8 -kerning first=8212 second=211 amount=5 -kerning first=268 second=298 amount=3 -kerning first=291 second=235 amount=2 -kerning first=71 second=102 amount=1 -kerning first=357 second=236 amount=-3 -kerning first=72 second=272 amount=-6 -kerning first=233 second=104 amount=-1 -kerning first=118 second=116 amount=2 -kerning first=76 second=222 amount=-4 -kerning first=365 second=106 amount=-10 -kerning first=280 second=118 amount=-2 -kerning first=192 second=350 amount=-8 -kerning first=300 second=275 amount=-2 -kerning first=323 second=212 amount=3 -kerning first=238 second=224 amount=2 -kerning first=343 second=339 amount=-2 -kerning first=258 second=351 amount=-11 -kerning first=366 second=276 amount=-6 -kerning first=284 second=68 amount=-2 -kerning first=196 second=300 amount=-7 -kerning first=199 second=80 amount=-2 -kerning first=347 second=289 amount=3 -kerning first=350 second=69 amount=-3 -kerning first=370 second=226 amount=2 -kerning first=285 second=238 amount=3 -kerning first=85 second=262 amount=2 -kerning first=220 second=377 amount=4 -kerning first=243 second=314 amount=-1 -kerning first=351 second=239 amount=1 -kerning first=66 second=275 amount=2 -kerning first=89 second=212 amount=-1 -kerning first=227 second=107 amount=-1 -kerning first=112 second=119 amount=2 -kerning first=8211 second=304 amount=-5 -kerning first=270 second=201 amount=-6 -kerning first=70 second=225 amount=-3 -kerning first=205 second=340 amount=-2 -kerning first=208 second=120 amount=-3 -kerning first=90 second=352 amount=2 -kerning first=113 second=289 amount=2 -kerning first=271 second=341 amount=-9 -kerning first=274 second=121 amount=-3 -kerning first=294 second=278 amount=-6 -kerning first=71 second=365 amount=2 -kerning first=209 second=290 amount=3 -kerning first=232 second=227 amount=2 -kerning first=275 second=291 amount=2 -kerning first=193 second=83 amount=-8 -kerning first=75 second=315 amount=-3 -kerning first=98 second=252 amount=2 -kerning first=256 second=304 amount=-7 -kerning first=364 second=229 amount=2 -kerning first=240 second=97 amount=2 -kerning first=345 second=242 amount=-2 -kerning first=260 second=254 amount=-3 -kerning first=198 second=203 amount=-2 -kerning first=221 second=110 amount=-5 -kerning first=264 second=204 amount=3 -kerning first=44 second=71 amount=-3 -kerning first=287 second=111 amount=2 -kerning first=84 second=355 amount=-3 -kerning first=222 second=280 amount=-9 -kerning first=350 second=332 amount=3 -kerning first=353 second=112 amount=1 -kerning first=373 second=269 amount=4 -kerning first=45 second=241 amount=2 -kerning first=226 second=230 amount=1 -kerning first=246 second=357 amount=-1 -kerning first=354 second=282 amount=-8 -kerning first=207 second=243 amount=-2 -kerning first=358 second=232 amount=-7 -kerning first=273 second=244 amount=1 -kerning first=231 second=320 amount=-1 -kerning first=234 second=100 amount=2 -kerning first=339 second=245 amount=1 -kerning first=119 second=112 amount=2 -kerning first=254 second=257 amount=5 -kerning first=192 second=206 amount=-7 -kerning first=300 second=101 amount=-2 -kerning first=258 second=207 amount=-7 -kerning first=363 second=322 amount=-1 -kerning first=193 second=346 amount=-8 -kerning first=301 second=271 amount=2 -kerning first=78 second=358 amount=-6 -kerning first=101 second=295 amount=-1 -kerning first=344 second=335 amount=-2 -kerning first=259 second=347 amount=1 -kerning first=197 second=296 amount=-7 -kerning first=85 second=88 amount=3 -kerning first=105 second=245 amount=1 -kerning first=66 second=101 amount=2 -kerning first=201 second=246 amount=-2 -kerning first=86 second=258 amount=-3 -kerning first=221 second=373 amount=-4 -kerning first=44 second=334 amount=-3 -kerning first=228 second=103 amount=2 -kerning first=353 second=375 amount=1 -kerning first=8212 second=300 amount=-5 -kerning first=376 second=312 amount=-2 -kerning first=291 second=324 amount=2 -kerning first=229 second=273 amount=2 -kerning first=114 second=285 amount=-2 -kerning first=160 second=77 amount=-3 -kerning first=233 second=223 amount=4 -kerning first=118 second=235 amount=4 -kerning first=194 second=79 amount=-11 -kerning first=299 second=224 amount=2 -kerning first=99 second=248 amount=-1 -kerning first=119 second=375 amount=2 -kerning first=260 second=80 amount=-17 -kerning first=365 second=225 amount=2 -kerning first=304 second=314 amount=-2 -kerning first=84 second=211 amount=-2 -kerning first=222 second=106 amount=-11 -kerning first=45 second=67 amount=5 -kerning first=65 second=224 amount=-10 -kerning first=203 second=119 amount=-2 -kerning first=351 second=328 amount=1 -kerning first=354 second=108 amount=-3 -kerning first=266 second=340 amount=-4 -kerning first=269 second=120 amount=2 -kerning first=374 second=265 amount=-4 -kerning first=377 second=45 amount=-6 -kerning first=289 second=277 amount=2 -kerning first=227 second=226 amount=2 -kerning first=335 second=121 amount=-2 -kerning first=112 second=238 amount=2 -kerning first=358 second=58 amount=-15 -kerning first=270 second=290 amount=4 -kerning first=70 second=314 amount=-2 -kerning first=359 second=228 amount=2 -kerning first=209 second=379 amount=4 -kerning first=232 second=316 amount=-1 -kerning first=120 second=108 amount=-1 -kerning first=160 second=340 amount=-9 -kerning first=193 second=202 amount=-10 -kerning first=301 second=97 amount=2 -kerning first=78 second=214 amount=3 -kerning first=367 second=98 amount=-1 -kerning first=282 second=110 amount=-2 -kerning first=194 second=342 amount=-17 -kerning first=197 second=122 amount=-7 -kerning first=302 second=267 amount=-2 -kerning first=102 second=291 amount=-6 -kerning first=260 second=343 amount=-12 -kerning first=368 second=268 amount=2 -kerning first=221 second=229 amount=-3 -kerning first=349 second=281 amount=1 -kerning first=264 second=293 amount=2 -kerning first=287 second=230 amount=2 -kerning first=202 second=242 amount=-2 -kerning first=222 second=369 amount=2 -kerning first=353 second=231 amount=1 -kerning first=45 second=330 amount=-2 -kerning first=111 second=331 amount=-2 -kerning first=114 second=111 amount=-2 -kerning first=354 second=371 amount=-6 -kerning first=272 second=193 amount=-8 -kerning first=295 second=100 amount=2 -kerning first=230 second=269 amount=1 -kerning first=115 second=281 amount=1 -kerning first=273 second=333 amount=1 -kerning first=73 second=357 amount=-2 -kerning first=119 second=231 amount=4 -kerning first=362 second=271 amount=2 -kerning first=277 second=283 amount=1 -kerning first=192 second=295 amount=-12 -kerning first=195 second=75 amount=-5 -kerning first=77 second=307 amount=1 -kerning first=100 second=244 amount=1 -kerning first=235 second=359 amount=-1 -kerning first=258 second=296 amount=-7 -kerning first=281 second=233 amount=1 -kerning first=196 second=245 amount=-12 -kerning first=239 second=309 amount=-11 -kerning first=347 second=234 amount=1 -kerning first=282 second=373 amount=-2 -kerning first=371 second=311 amount=-1 -kerning first=289 second=103 amount=5 -kerning first=201 second=335 amount=-2 -kerning first=204 second=115 amount=-2 -kerning first=86 second=347 amount=3 -kerning first=355 second=104 amount=-1 -kerning first=8211 second=249 amount=2 -kerning first=208 second=65 amount=-8 -kerning first=113 second=234 amount=1 -kerning first=356 second=274 amount=-8 -kerning first=274 second=66 amount=-5 -kerning first=294 second=223 amount=2 -kerning first=160 second=196 amount=-3 -kerning first=360 second=224 amount=2 -kerning first=75 second=260 amount=-3 -kerning first=118 second=324 amount=2 -kerning first=121 second=104 amount=3 -kerning first=194 second=198 amount=-6 -kerning first=99 second=337 amount=-1 -kerning first=102 second=117 amount=-7 -kerning first=260 second=199 amount=-11 -kerning first=365 second=314 amount=-1 -kerning first=280 second=326 amount=-2 -kerning first=283 second=106 amount=-13 -kerning first=195 second=338 amount=-11 -kerning first=198 second=118 amount=-6 -kerning first=303 second=263 amount=1 -kerning first=103 second=287 amount=5 -kerning first=349 second=107 amount=1 -kerning first=284 second=276 amount=-2 -kerning first=202 second=68 amount=-5 -kerning first=84 second=300 amount=-2 -kerning first=87 second=80 amount=-2 -kerning first=327 second=340 amount=-2 -kerning first=265 second=289 amount=1 -kerning first=268 second=69 amount=-2 -kerning first=65 second=313 amount=-7 -kerning first=354 second=227 amount=-10 -kerning first=115 second=107 amount=1 -kerning first=53 second=56 amount=1 -kerning first=362 second=97 amount=2 -kerning first=192 second=121 amount=-4 -kerning first=120 second=227 amount=2 -kerning first=258 second=122 amount=-7 -kerning first=193 second=291 amount=-10 -kerning first=196 second=71 amount=-11 -kerning first=101 second=240 amount=2 -kerning first=121 second=367 amount=3 -kerning first=302 second=356 amount=-2 -kerning first=263 second=242 amount=-1 -kerning first=198 second=381 amount=-3 -kerning first=221 second=318 amount=-2 -kerning first=224 second=98 amount=-1 -kerning first=8211 second=75 amount=-5 -kerning first=202 second=331 amount=-2 -kerning first=205 second=111 amount=-2 -kerning first=353 second=320 amount=1 -kerning first=356 second=100 amount=-10 -kerning first=271 second=112 amount=-11 -kerning first=376 second=257 amount=-3 -kerning first=8212 second=245 amount=4 -kerning first=291 second=269 amount=2 -kerning first=68 second=356 amount=-6 -kerning first=206 second=281 amount=-2 -kerning first=354 second=8211 amount=-7 -kerning first=272 second=282 amount=-6 -kerning first=75 second=86 amount=-3 -kerning first=256 second=75 amount=-5 -kerning first=296 second=359 amount=-2 -kerning first=119 second=320 amount=2 -kerning first=195 second=194 amount=-7 -kerning first=300 second=309 amount=-14 -kerning first=100 second=333 amount=1 -kerning first=103 second=113 amount=5 -kerning first=281 second=322 amount=-1 -kerning first=196 second=334 amount=-11 -kerning first=216 second=8212 amount=3 -kerning first=219 second=271 amount=2 -kerning first=265 second=115 amount=1 -kerning first=331 second=116 amount=-1 -kerning first=108 second=233 amount=1 -kerning first=351 second=273 amount=3 -kerning first=374 second=210 amount=-1 -kerning first=66 second=309 amount=-12 -kerning first=204 second=234 amount=-2 -kerning first=89 second=246 amount=-4 -kerning first=355 second=223 amount=4 -kerning first=8211 second=338 amount=5 -kerning first=70 second=259 amount=-3 -kerning first=228 second=311 amount=-1 -kerning first=116 second=103 amount=2 -kerning first=356 second=363 amount=-6 -kerning first=54 second=52 amount=-2 -kerning first=97 second=116 amount=-1 -kerning first=117 second=273 amount=2 -kerning first=193 second=117 amount=-13 -kerning first=75 second=349 amount=-8 -kerning first=121 second=223 amount=5 -kerning first=256 second=338 amount=-11 -kerning first=279 second=275 amount=1 -kerning first=194 second=287 amount=-10 -kerning first=197 second=67 amount=-11 -kerning first=217 second=224 amount=2 -kerning first=102 second=236 amount=-7 -kerning first=237 second=351 amount=1 -kerning first=260 second=288 amount=-11 -kerning first=368 second=213 amount=2 -kerning first=283 second=225 amount=2 -kerning first=198 second=237 amount=-7 -kerning first=326 second=289 amount=2 -kerning first=349 second=226 amount=3 -kerning first=369 second=353 amount=1 -kerning first=87 second=199 amount=2 -kerning first=110 second=106 amount=-10 -kerning first=245 second=251 amount=-2 -kerning first=8212 second=71 amount=5 -kerning first=45 second=275 amount=4 -kerning first=373 second=303 amount=2 -kerning first=376 second=83 amount=-4 -kerning first=68 second=212 amount=4 -kerning first=206 second=107 amount=-2 -kerning first=88 second=339 amount=-2 -kerning first=354 second=316 amount=-3 -kerning first=207 second=277 amount=-2 -kerning first=335 second=329 amount=-3 -kerning first=115 second=226 amount=3 -kerning first=358 second=266 amount=-2 -kerning first=76 second=82 amount=-4 -kerning first=339 second=279 amount=1 -kerning first=254 second=291 amount=5 -kerning first=362 second=216 amount=2 -kerning first=277 second=228 amount=2 -kerning first=192 second=240 amount=-10 -kerning first=343 second=229 amount=-2 -kerning first=120 second=316 amount=-1 -kerning first=219 second=97 amount=2 -kerning first=370 second=86 amount=2 -kerning first=285 second=98 amount=2 -kerning first=197 second=330 amount=-15 -kerning first=200 second=110 amount=-2 -kerning first=82 second=342 amount=-8 -kerning first=105 second=279 amount=1 -kerning first=351 second=99 amount=1 -kerning first=201 second=280 amount=-5 -kerning first=109 second=229 amount=2 -kerning first=8211 second=194 amount=-13 -kerning first=225 second=357 amount=-1 -kerning first=8212 second=334 amount=5 -kerning first=271 second=231 amount=-9 -kerning first=376 second=346 amount=-4 -kerning first=55 second=48 amount=-6 -kerning first=298 second=88 amount=2 -kerning first=318 second=245 amount=-9 -kerning first=98 second=112 amount=2 -kerning first=233 second=257 amount=2 -kerning first=118 second=269 amount=4 -kerning first=256 second=194 amount=-7 -kerning first=361 second=309 amount=-10 -kerning first=279 second=101 amount=1 -kerning first=364 second=89 amount=2 -kerning first=194 second=113 amount=-10 -kerning first=211 second=8211 amount=3 -kerning first=260 second=114 amount=-12 -kerning first=365 second=259 amount=2 -kerning first=195 second=283 amount=-12 -kerning first=326 second=115 amount=1 -kerning first=103 second=232 amount=2 -kerning first=238 second=347 amount=1 -kerning first=346 second=272 amount=-3 -kerning first=84 second=245 amount=-7 -kerning first=327 second=285 amount=2 -kerning first=242 second=297 amount=-2 -kerning first=350 second=222 amount=-3 -kerning first=45 second=101 amount=4 -kerning first=285 second=361 amount=2 -kerning first=65 second=258 amount=-7 -kerning first=200 second=373 amount=-2 -kerning first=88 second=195 amount=-5 -kerning first=111 second=102 amount=-2 -kerning first=49 second=51 amount=-1 -kerning first=289 second=311 amount=2 -kerning first=69 second=208 amount=-5 -kerning first=312 second=248 amount=1 -kerning first=89 second=335 amount=-4 -kerning first=355 second=312 amount=-1 -kerning first=273 second=104 amount=-1 -kerning first=208 second=273 amount=2 -kerning first=254 second=117 amount=2 -kerning first=274 second=274 amount=-5 -kerning first=192 second=66 amount=-8 -kerning first=258 second=67 amount=-11 -kerning first=298 second=351 amount=-2 -kerning first=98 second=375 amount=2 -kerning first=121 second=312 amount=3 -kerning first=302 second=301 amount=-2 -kerning first=82 second=198 amount=3 -kerning first=260 second=377 amount=-7 -kerning first=283 second=314 amount=-1 -kerning first=198 second=326 amount=-6 -kerning first=201 second=106 amount=-10 -kerning first=83 second=338 amount=3 -kerning first=86 second=118 amount=3 -kerning first=221 second=263 amount=-4 -kerning first=106 second=275 amount=1 -kerning first=264 second=327 amount=4 -kerning first=202 second=276 amount=-5 -kerning first=87 second=288 amount=2 -kerning first=333 second=108 amount=-1 -kerning first=110 second=225 amount=2 -kerning first=248 second=120 amount=-2 -kerning first=353 second=265 amount=1 -kerning first=356 second=45 amount=-7 -kerning first=45 second=364 amount=5 -kerning first=376 second=202 amount=-4 -kerning first=226 second=353 amount=1 -kerning first=111 second=365 amount=-2 -kerning first=272 second=227 amount=2 -kerning first=292 second=354 amount=-6 -kerning first=358 second=355 amount=-3 -kerning first=99 second=108 amount=-1 -kerning first=119 second=265 amount=4 -kerning first=192 second=329 amount=-19 -kerning first=195 second=109 amount=-13 -kerning first=300 second=254 amount=-2 -kerning first=80 second=121 amount=1 -kerning first=343 second=318 amount=-1 -kerning first=258 second=330 amount=-15 -kerning first=281 second=267 amount=1 -kerning first=58 second=354 amount=-10 -kerning first=196 second=279 amount=-12 -kerning first=84 second=71 amount=-2 -kerning first=104 second=228 amount=2 -kerning first=262 second=280 amount=-2 -kerning first=65 second=84 amount=-20 -kerning first=220 second=356 amount=-6 -kerning first=243 second=293 amount=-1 -kerning first=286 second=357 amount=2 -kerning first=201 second=369 amount=-2 -kerning first=109 second=318 amount=-1 -kerning first=112 second=98 amount=3 -kerning first=352 second=358 amount=-3 -kerning first=8211 second=283 amount=4 -kerning first=333 second=371 amount=-2 -kerning first=294 second=257 amount=2 -kerning first=71 second=344 amount=-4 -kerning first=272 second=8211 amount=4 -kerning first=98 second=231 amount=2 -kerning first=341 second=271 amount=-2 -kerning first=256 second=283 amount=-12 -kerning first=364 second=208 amount=-6 -kerning first=194 second=232 amount=-12 -kerning first=299 second=347 amount=1 -kerning first=83 second=194 amount=-9 -kerning first=218 second=309 amount=-12 -kerning first=106 second=101 amount=1 -kerning first=199 second=322 amount=2 -kerning first=84 second=334 amount=-2 -kerning first=107 second=271 amount=2 -kerning first=373 second=248 amount=4 -kerning first=65 second=347 amount=-11 -kerning first=203 second=272 amount=-5 -kerning first=88 second=284 amount=-4 -kerning first=269 second=273 amount=1 -kerning first=207 second=222 amount=-2 -kerning first=312 second=337 amount=1 -kerning first=227 second=349 amount=1 -kerning first=112 second=361 amount=2 -kerning first=358 second=211 amount=-2 -kerning first=273 second=223 amount=4 -kerning first=316 second=287 amount=2 -kerning first=339 second=224 amount=2 -kerning first=254 second=236 amount=2 -kerning first=359 second=351 amount=1 -kerning first=274 second=363 amount=-2 -kerning first=300 second=80 amount=-2 -kerning first=100 second=104 amount=-1 -kerning first=366 second=81 amount=2 -kerning first=58 second=210 amount=-3 -kerning first=193 second=325 amount=-15 -kerning first=344 second=314 amount=-2 -kerning first=197 second=275 amount=-12 -kerning first=85 second=67 amount=2 -kerning first=328 second=107 amount=-1 -kerning first=105 second=224 amount=2 -kerning first=240 second=339 amount=1 -kerning first=243 second=119 amount=-2 -kerning first=348 second=264 amount=3 -kerning first=66 second=80 amount=-1 -kerning first=309 second=120 amount=-3 -kerning first=86 second=237 amount=3 -kerning first=221 second=352 amount=-4 -kerning first=352 second=214 amount=3 -kerning first=8211 second=109 amount=2 -kerning first=267 second=226 amount=1 -kerning first=375 second=121 amount=3 -kerning first=287 second=353 amount=2 -kerning first=202 second=365 amount=-2 -kerning first=313 second=70 amount=-4 -kerning first=87 second=377 amount=4 -kerning first=110 second=314 amount=-1 -kerning first=8212 second=279 amount=4 -kerning first=376 second=291 amount=-3 -kerning first=291 second=303 amount=3 -kerning first=71 second=200 amount=-2 -kerning first=360 second=84 amount=-6 -kerning first=72 second=340 amount=-2 -kerning first=75 second=120 amount=-10 -kerning first=213 second=45 amount=3 -kerning first=341 second=97 amount=-2 -kerning first=256 second=109 amount=-13 -kerning first=361 second=254 amount=-1 -kerning first=194 second=58 amount=-10 -kerning first=99 second=227 amount=1 -kerning first=260 second=59 amount=-10 -kerning first=195 second=228 amount=-10 -kerning first=323 second=280 amount=-6 -kerning first=261 second=229 amount=2 -kerning first=366 second=344 amount=-2 -kerning first=304 second=293 amount=-2 -kerning first=107 second=97 amount=2 -kerning first=347 second=357 amount=1 -kerning first=65 second=203 amount=-10 -kerning first=88 second=110 amount=-3 -kerning first=108 second=267 amount=1 -kerning first=351 second=307 amount=1 -kerning first=354 second=87 amount=-1 -kerning first=46 second=216 amount=-3 -kerning first=309 second=383 amount=1 -kerning first=89 second=280 amount=-4 -kerning first=355 second=257 amount=2 -kerning first=70 second=293 amount=-2 -kerning first=316 second=113 amount=2 -kerning first=333 second=8211 amount=3 -kerning first=113 second=357 amount=-1 -kerning first=74 second=243 amount=-5 -kerning first=209 second=358 amount=-6 -kerning first=232 second=295 amount=-1 -kerning first=275 second=359 amount=-1 -kerning first=98 second=320 amount=3 -kerning first=101 second=100 amount=2 -kerning first=236 second=245 amount=1 -kerning first=121 second=257 amount=7 -kerning first=279 second=309 amount=-13 -kerning first=197 second=101 amount=-12 -kerning first=302 second=246 amount=-2 -kerning first=260 second=322 amount=-12 -kerning first=283 second=259 amount=2 -kerning first=195 second=8212 amount=-12 -kerning first=198 second=271 amount=-3 -kerning first=221 second=208 amount=-4 -kerning first=329 second=103 amount=2 -kerning first=264 second=272 amount=-2 -kerning first=330 second=273 amount=2 -kerning first=8212 second=105 amount=2 -kerning first=268 second=222 amount=-2 -kerning first=45 second=309 amount=-7 -kerning first=373 second=337 amount=4 -kerning first=376 second=117 amount=-5 -kerning first=203 second=361 amount=-2 -kerning first=88 second=373 amount=-4 -kerning first=354 second=350 amount=-6 -kerning first=207 second=311 amount=-2 -kerning first=230 second=248 amount=1 -kerning first=335 second=363 amount=-2 -kerning first=358 second=300 amount=-2 -kerning first=273 second=312 amount=-1 -kerning first=296 second=249 amount=-2 -kerning first=192 second=274 amount=-10 -kerning first=77 second=286 amount=3 -kerning first=80 second=66 amount=-9 -kerning first=323 second=106 amount=-12 -kerning first=100 second=223 amount=4 -kerning first=343 second=263 amount=-2 -kerning first=258 second=275 amount=-12 -kerning first=366 second=200 amount=-6 -kerning first=196 second=224 amount=-10 -kerning first=301 second=339 amount=1 -kerning first=304 second=119 amount=-2 -kerning first=370 second=120 amount=-2 -kerning first=305 second=289 amount=2 -kerning first=328 second=226 amount=2 -kerning first=243 second=238 amount=-2 -kerning first=374 second=70 amount=-1 -kerning first=286 second=302 amount=3 -kerning first=66 second=199 amount=3 -kerning first=86 second=326 amount=2 -kerning first=89 second=106 amount=-7 -kerning first=8211 second=228 amount=4 -kerning first=375 second=240 amount=7 -kerning first=70 second=119 amount=-4 -kerning first=208 second=44 amount=-3 -kerning first=333 second=316 amount=-1 -kerning first=248 second=328 amount=-2 -kerning first=8212 second=368 amount=5 -kerning first=271 second=265 amount=-9 -kerning first=294 second=202 amount=-6 -kerning first=71 second=289 amount=5 -kerning first=74 second=69 amount=-5 -kerning first=209 second=214 amount=3 -kerning first=114 second=353 amount=-2 -kerning first=360 second=203 amount=-6 -kerning first=75 second=239 amount=-7 -kerning first=318 second=279 amount=-9 -kerning first=233 second=291 amount=2 -kerning first=118 second=303 amount=2 -kerning first=256 second=228 amount=-10 -kerning first=76 second=379 amount=2 -kerning first=214 second=304 amount=3 -kerning first=217 second=84 amount=-6 -kerning first=99 second=316 amount=-1 -kerning first=342 second=356 amount=-8 -kerning first=365 second=293 amount=-1 -kerning first=198 second=97 amount=-3 -kerning first=303 second=242 amount=1 -kerning first=261 second=318 amount=-1 -kerning first=264 second=98 amount=2 -kerning first=84 second=279 amount=-7 -kerning first=242 second=331 amount=-2 -kerning first=350 second=256 amount=-9 -kerning first=288 second=205 amount=3 -kerning first=354 second=206 amount=-2 -kerning first=374 second=333 amount=-4 -kerning first=69 second=242 amount=-2 -kerning first=204 second=357 amount=-2 -kerning first=89 second=369 amount=-5 -kerning first=270 second=358 amount=-6 -kerning first=378 second=283 amount=1 -kerning first=70 second=382 amount=-6 -kerning first=316 second=232 amount=1 -kerning first=231 second=244 amount=-1 -kerning first=192 second=100 amount=-10 -kerning first=258 second=101 amount=-12 -kerning first=193 second=270 amount=-10 -kerning first=78 second=282 amount=-6 -kerning first=216 second=207 amount=3 -kerning first=256 second=8212 amount=-12 -kerning first=259 second=271 amount=2 -kerning first=282 second=208 amount=-5 -kerning first=302 second=335 amount=-2 -kerning first=305 second=115 amount=1 -kerning first=325 second=272 amount=-6 -kerning first=368 second=336 amount=2 -kerning first=371 second=116 amount=-1 -kerning first=106 second=309 amount=-2 -kerning first=110 second=259 amount=2 -kerning first=353 second=299 amount=1 -kerning first=356 second=79 amount=-2 -kerning first=268 second=311 amount=2 -kerning first=8212 second=224 amount=4 -kerning first=291 second=248 amount=2 -kerning first=71 second=115 amount=2 -kerning first=72 second=285 amount=2 -kerning first=75 second=65 amount=-3 -kerning first=318 second=105 amount=-3 -kerning first=230 second=337 amount=1 -kerning first=234 second=287 amount=2 -kerning first=119 second=299 amount=2 -kerning first=257 second=224 amount=2 -kerning first=277 second=351 amount=1 -kerning first=192 second=363 amount=-13 -kerning first=218 second=80 amount=-2 -kerning first=323 second=225 amount=2 -kerning first=100 second=312 amount=-1 -kerning first=366 second=289 amount=2 -kerning first=196 second=313 amount=-7 -kerning first=84 second=105 amount=-2 -kerning first=304 second=238 amount=-2 -kerning first=350 second=82 amount=-3 -kerning first=262 second=314 amount=2 -kerning first=285 second=251 amount=2 -kerning first=65 second=118 amount=-13 -kerning first=246 second=107 amount=-1 -kerning first=351 second=252 amount=1 -kerning first=69 second=68 amount=-5 -kerning first=89 second=225 amount=-3 -kerning first=227 second=120 amount=-1 -kerning first=335 second=45 amount=3 -kerning first=270 second=214 amount=4 -kerning first=70 second=238 amount=-1 -kerning first=205 second=353 amount=-2 -kerning first=356 second=342 amount=-5 -kerning first=294 second=291 amount=2 -kerning first=232 second=240 amount=2 -kerning first=337 second=355 amount=-1 -kerning first=160 second=264 amount=-3 -kerning first=278 second=84 amount=-5 -kerning first=298 second=241 amount=-2 -kerning first=75 second=328 amount=-8 -kerning first=98 second=265 amount=2 -kerning first=259 second=97 amount=2 -kerning first=279 second=254 amount=-1 -kerning first=194 second=266 amount=-11 -kerning first=197 second=46 amount=-10 -kerning first=217 second=203 amount=-6 -kerning first=198 second=216 amount=-7 -kerning first=103 second=355 amount=2 -kerning first=44 second=84 amount=-10 -kerning first=284 second=344 amount=-4 -kerning first=199 second=356 amount=-2 -kerning first=307 second=281 amount=1 -kerning first=265 second=357 amount=-1 -kerning first=65 second=381 amount=-7 -kerning first=311 second=231 amount=1 -kerning first=354 second=295 amount=-3 -kerning first=272 second=87 amount=2 -kerning first=69 second=331 amount=-2 -kerning first=358 second=245 amount=-7 -kerning first=273 second=257 amount=2 -kerning first=73 second=281 amount=-2 -kerning first=211 second=206 amount=3 -kerning first=231 second=333 amount=-1 -kerning first=234 second=113 amount=2 -kerning first=300 second=114 amount=-2 -kerning first=120 second=295 amount=-1 -kerning first=193 second=359 amount=-12 -kerning first=216 second=296 amount=3 -kerning first=367 second=285 amount=2 -kerning first=83 second=8212 amount=4 -kerning first=86 second=271 amount=6 -kerning first=329 second=311 amount=-1 -kerning first=228 second=116 amount=-1 -kerning first=356 second=198 amount=-13 -kerning first=8212 second=313 amount=3 -kerning first=291 second=337 amount=2 -kerning first=71 second=234 amount=3 -kerning first=206 second=349 amount=-2 -kerning first=380 second=275 amount=1 -kerning first=295 second=287 amount=2 -kerning first=318 second=224 amount=-8 -kerning first=118 second=248 amount=4 -kerning first=364 second=68 amount=-6 -kerning first=195 second=262 amount=-11 -kerning first=80 second=274 amount=-9 -kerning first=241 second=106 amount=-10 -kerning first=284 second=200 amount=-2 -kerning first=84 second=224 amount=-10 -kerning first=222 second=119 amount=1 -kerning first=327 second=264 amount=3 -kerning first=104 second=351 amount=1 -kerning first=350 second=201 amount=-3 -kerning first=373 second=108 amount=2 -kerning first=45 second=80 amount=-6 -kerning first=223 second=289 amount=2 -kerning first=354 second=121 amount=-10 -kerning first=374 second=278 amount=-4 -kerning first=292 second=70 amount=-2 -kerning first=207 second=82 amount=-2 -kerning first=312 second=227 amount=2 -kerning first=89 second=314 amount=-2 -kerning first=112 second=251 amount=2 -kerning first=355 second=291 amount=2 -kerning first=358 second=71 amount=-2 -kerning first=73 second=107 amount=-2 -kerning first=336 second=304 amount=3 -kerning first=192 second=45 amount=-12 -kerning first=74 second=277 amount=-5 -kerning first=340 second=254 amount=-2 -kerning first=258 second=46 amount=-10 -kerning first=360 second=381 amount=4 -kerning first=278 second=203 amount=-5 -kerning first=58 second=70 amount=-4 -kerning first=78 second=227 amount=2 -kerning first=236 second=279 amount=1 -kerning first=121 second=291 amount=7 -kerning first=194 second=355 amount=-12 -kerning first=240 second=229 amount=2 -kerning first=260 second=356 amount=-20 -kerning first=283 second=293 amount=-1 -kerning first=286 second=73 amount=3 -kerning first=86 second=97 amount=6 -kerning first=221 second=242 amount=-4 -kerning first=326 second=357 amount=-1 -kerning first=44 second=203 amount=-4 -kerning first=287 second=243 amount=2 -kerning first=353 second=244 amount=1 -kerning first=373 second=371 amount=2 -kerning first=68 second=280 amount=-6 -kerning first=380 second=101 amount=1 -kerning first=295 second=113 amount=2 -kerning first=338 second=207 amount=-1 -kerning first=358 second=334 amount=-2 -kerning first=296 second=283 amount=-2 -kerning first=234 second=232 amount=1 -kerning first=339 second=347 amount=1 -kerning first=119 second=244 amount=4 -kerning first=254 second=359 amount=3 -kerning first=362 second=284 amount=2 -kerning first=195 second=88 amount=-9 -kerning first=300 second=233 amount=-2 -kerning first=100 second=257 amount=2 -kerning first=281 second=246 amount=1 -kerning first=196 second=258 amount=-7 -kerning first=327 second=90 amount=4 -kerning first=242 second=102 amount=-2 -kerning first=200 second=208 amount=-5 -kerning first=105 second=347 amount=1 -kerning first=266 second=209 amount=4 -kerning first=374 second=104 amount=-2 -kerning first=289 second=116 amount=2 -kerning first=66 second=233 amount=2 -kerning first=309 second=273 amount=2 -kerning first=224 second=285 amount=2 -kerning first=8211 second=262 amount=5 -kerning first=267 second=349 amount=1 -kerning first=356 second=287 amount=-10 -kerning first=271 second=299 amount=-3 -kerning first=74 second=103 amount=-5 -kerning first=340 second=80 amount=-8 -kerning first=160 second=209 amount=-8 -kerning first=75 second=273 amount=-7 -kerning first=213 second=198 amount=-7 -kerning first=118 second=337 amount=4 -kerning first=121 second=117 amount=3 -kerning first=256 second=262 amount=-11 -kerning first=194 second=211 amount=-11 -kerning first=302 second=106 amount=-14 -kerning first=214 second=338 amount=3 -kerning first=237 second=275 amount=1 -kerning first=260 second=212 amount=-11 -kerning first=195 second=351 amount=-11 -kerning first=80 second=363 amount=1 -kerning first=221 second=68 amount=-4 -kerning first=241 second=225 amount=2 -kerning first=346 second=340 amount=-3 -kerning first=349 second=120 amount=2 -kerning first=307 second=226 amount=2 -kerning first=84 second=313 amount=-1 -kerning first=222 second=238 amount=2 -kerning first=242 second=365 amount=-2 -kerning first=350 second=290 amount=3 -kerning first=268 second=82 amount=-4 -kerning first=45 second=199 amount=5 -kerning first=373 second=227 amount=5 -kerning first=65 second=326 amount=-13 -kerning first=68 second=106 amount=-12 -kerning first=88 second=263 amount=-2 -kerning first=354 second=240 amount=-10 -kerning first=374 second=367 amount=-5 -kerning first=69 second=276 amount=-5 -kerning first=230 second=108 amount=-1 -kerning first=335 second=253 amount=-2 -kerning first=115 second=120 amount=2 -kerning first=296 second=109 amount=-2 -kerning first=274 second=342 amount=-6 -kerning first=235 second=228 amount=2 -kerning first=120 second=240 amount=2 -kerning first=193 second=304 amount=-7 -kerning first=196 second=84 amount=-20 -kerning first=301 second=229 amount=2 -kerning first=344 second=293 amount=-2 -kerning first=262 second=85 amount=4 -kerning first=367 second=230 amount=1 -kerning first=282 second=242 amount=-2 -kerning first=197 second=254 amount=-3 -kerning first=302 second=369 amount=-2 -kerning first=217 second=381 amount=4 -kerning first=240 second=318 amount=-1 -kerning first=243 second=98 amount=-1 -kerning first=309 second=99 amount=1 -kerning first=86 second=216 amount=5 -kerning first=221 second=331 amount=-5 -kerning first=352 second=193 amount=-9 -kerning first=8211 second=88 amount=-6 -kerning first=375 second=100 amount=7 -kerning first=202 second=344 amount=-6 -kerning first=87 second=356 amount=-6 -kerning first=110 second=293 amount=-1 -kerning first=353 second=333 amount=1 -kerning first=356 second=113 amount=-10 -kerning first=8212 second=258 amount=-13 -kerning first=376 second=270 amount=-4 -kerning first=114 second=243 amount=-2 -kerning first=357 second=283 amount=-9 -kerning first=75 second=99 amount=-10 -kerning first=338 second=296 amount=-1 -kerning first=256 second=88 amount=-9 -kerning first=276 second=245 amount=-2 -kerning first=237 second=101 amount=1 -kerning first=119 second=333 amount=4 -kerning first=195 second=207 amount=-7 -kerning first=300 second=322 amount=-2 -kerning first=323 second=259 amount=2 -kerning first=238 second=271 amount=2 -kerning first=346 second=196 amount=-9 -kerning first=369 second=103 amount=2 -kerning first=281 second=335 amount=1 -kerning first=196 second=347 amount=-11 -kerning first=370 second=273 amount=2 -kerning first=285 second=285 amount=5 -kerning first=88 second=89 amount=2 -kerning first=223 second=234 amount=1 -kerning first=328 second=349 amount=1 -kerning first=108 second=246 amount=1 -kerning first=243 second=361 amount=-2 -kerning first=354 second=66 amount=-8 -kerning first=266 second=298 amount=3 -kerning first=289 second=235 amount=2 -kerning first=89 second=259 amount=-3 -kerning first=8211 second=351 amount=4 -kerning first=375 second=363 amount=3 -kerning first=70 second=272 amount=-9 -kerning first=208 second=197 amount=-8 -kerning first=231 second=104 amount=-1 -kerning first=74 second=222 amount=-4 -kerning first=363 second=106 amount=-10 -kerning first=160 second=298 amount=-4 -kerning first=278 second=118 amount=-2 -kerning first=298 second=275 amount=-2 -kerning first=98 second=299 amount=2 -kerning first=236 second=224 amount=2 -kerning first=121 second=236 amount=3 -kerning first=256 second=351 amount=-11 -kerning first=341 second=339 amount=-2 -kerning first=364 second=276 amount=-6 -kerning first=282 second=68 amount=-5 -kerning first=194 second=300 amount=-7 -kerning first=197 second=80 amount=-17 -kerning first=102 second=249 amount=-7 -kerning first=345 second=289 amount=-2 -kerning first=348 second=69 amount=-3 -kerning first=368 second=226 amount=2 -kerning first=198 second=250 amount=-7 -kerning first=83 second=262 amount=3 -kerning first=218 second=377 amount=4 -kerning first=241 second=314 amount=-1 -kerning first=349 second=239 amount=1 -kerning first=202 second=200 amount=-5 -kerning first=87 second=212 amount=2 -kerning first=225 second=107 amount=-1 -kerning first=107 second=339 amount=1 -kerning first=8212 second=84 amount=-7 -kerning first=268 second=201 amount=-2 -kerning first=45 second=288 amount=5 -kerning first=373 second=316 amount=2 -kerning first=291 second=108 amount=2 -kerning first=68 second=225 amount=2 -kerning first=203 second=340 amount=-6 -kerning first=206 second=120 amount=-1 -kerning first=311 second=265 amount=1 -kerning first=357 second=109 amount=-9 -kerning first=292 second=278 amount=-6 -kerning first=69 second=365 amount=-2 -kerning first=230 second=227 amount=2 -kerning first=115 second=239 amount=1 -kerning first=358 second=279 amount=-7 -kerning first=273 second=291 amount=2 -kerning first=362 second=229 amount=2 -kerning first=80 second=45 amount=2 -kerning first=238 second=97 amount=2 -kerning first=343 second=242 amount=-2 -kerning first=258 second=254 amount=-3 -kerning first=58 second=278 amount=-4 -kerning first=196 second=203 amount=-10 -kerning first=304 second=98 amount=-2 -kerning first=262 second=204 amount=3 -kerning first=282 second=331 amount=-2 -kerning first=285 second=111 amount=2 -kerning first=197 second=343 amount=-12 -kerning first=82 second=355 amount=-2 -kerning first=220 second=280 amount=-6 -kerning first=348 second=332 amount=3 -kerning first=351 second=112 amount=1 -kerning first=86 second=305 amount=3 -kerning first=224 second=230 amount=1 -kerning first=244 second=357 amount=-1 -kerning first=352 second=282 amount=-3 -kerning first=8211 second=207 amount=-5 -kerning first=67 second=318 amount=2 -kerning first=70 second=98 amount=-2 -kerning first=205 second=243 amount=-2 -kerning first=248 second=307 amount=-2 -kerning first=356 second=232 amount=-7 -kerning first=8212 second=347 amount=4 -kerning first=271 second=244 amount=-9 -kerning first=376 second=359 amount=-2 -kerning first=291 second=371 amount=2 -kerning first=71 second=268 amount=3 -kerning first=229 second=320 amount=-1 -kerning first=232 second=100 amount=2 -kerning first=298 second=101 amount=-2 -kerning first=256 second=207 amount=-7 -kerning first=361 second=322 amount=-1 -kerning first=299 second=271 amount=2 -kerning first=99 second=295 amount=-1 -kerning first=342 second=335 amount=-2 -kerning first=345 second=115 amount=-2 -kerning first=122 second=232 amount=1 -kerning first=257 second=347 amount=1 -kerning first=195 second=296 amount=-7 -kerning first=198 second=76 amount=-3 -kerning first=103 second=245 amount=2 -kerning first=304 second=361 amount=-2 -kerning first=84 second=258 amount=-13 -kerning first=45 second=114 amount=2 -kerning first=65 second=271 amount=-10 -kerning first=88 second=208 amount=-2 -kerning first=226 second=103 amount=2 -kerning first=108 second=335 amount=1 -kerning first=351 second=375 amount=1 -kerning first=374 second=312 amount=-2 -kerning first=46 second=284 amount=-3 -kerning first=289 second=324 amount=2 -kerning first=207 second=116 amount=-2 -kerning first=89 second=348 amount=-4 -kerning first=227 second=273 amount=2 -kerning first=112 second=285 amount=5 -kerning first=358 second=105 amount=-2 -kerning first=70 second=361 amount=-3 -kerning first=208 second=286 amount=4 -kerning first=231 second=223 amount=2 -kerning first=336 second=338 amount=3 -kerning first=116 second=235 amount=1 -kerning first=359 second=275 amount=1 -kerning first=192 second=79 amount=-11 -kerning first=297 second=224 amount=2 -kerning first=258 second=80 amount=-17 -kerning first=363 second=225 amount=2 -kerning first=59 second=274 amount=-4 -kerning first=197 second=199 amount=-11 -kerning first=302 second=314 amount=-2 -kerning first=220 second=106 amount=-12 -kerning first=240 second=263 amount=1 -kerning first=286 second=107 amount=2 -kerning first=198 second=339 amount=-5 -kerning first=201 second=119 amount=-2 -kerning first=221 second=276 amount=-4 -kerning first=349 second=328 amount=1 -kerning first=264 second=340 amount=-4 -kerning first=267 second=120 amount=2 -kerning first=287 second=277 amount=2 -kerning first=225 second=226 amount=2 -kerning first=333 second=121 amount=-2 -kerning first=356 second=58 amount=-15 -kerning first=8212 second=203 amount=-7 -kerning first=45 second=377 amount=-4 -kerning first=291 second=227 amount=5 -kerning first=206 second=239 amount=-2 -kerning first=357 second=228 amount=-8 -kerning first=272 second=240 amount=2 -kerning first=75 second=44 amount=-5 -kerning first=230 second=316 amount=-1 -kerning first=115 second=328 amount=1 -kerning first=118 second=108 amount=2 -kerning first=56 second=57 amount=2 -kerning first=299 second=97 amount=2 -kerning first=99 second=121 amount=-1 -kerning first=365 second=98 amount=-1 -kerning first=280 second=110 amount=-2 -kerning first=192 second=342 amount=-17 -kerning first=195 second=122 amount=-7 -kerning first=300 second=267 amount=-2 -kerning first=77 second=354 amount=-7 -kerning first=100 second=291 amount=2 -kerning first=258 second=343 amount=-12 -kerning first=366 second=268 amount=2 -kerning first=81 second=304 amount=3 -kerning first=84 second=84 amount=-8 -kerning first=219 second=229 amount=2 -kerning first=347 second=281 amount=1 -kerning first=262 second=293 amount=2 -kerning first=285 second=230 amount=2 -kerning first=65 second=97 amount=-10 -kerning first=200 second=242 amount=-2 -kerning first=351 second=231 amount=1 -kerning first=66 second=267 amount=2 -kerning first=112 second=111 amount=2 -kerning first=8211 second=296 amount=-5 -kerning first=270 second=193 amount=-8 -kerning first=290 second=320 amount=2 -kerning first=90 second=344 amount=2 -kerning first=113 second=281 amount=1 -kerning first=359 second=101 amount=1 -kerning first=271 second=333 amount=-9 -kerning first=291 second=8211 amount=4 -kerning first=71 second=357 amount=2 -kerning first=209 second=282 amount=-6 -kerning first=294 second=270 amount=-6 -kerning first=360 second=271 amount=2 -kerning first=275 second=283 amount=1 -kerning first=193 second=75 amount=-5 -kerning first=75 second=307 amount=-7 -kerning first=318 second=347 amount=-8 -kerning first=98 second=244 amount=2 -kerning first=233 second=359 amount=-1 -kerning first=118 second=371 amount=2 -kerning first=256 second=296 amount=-7 -kerning first=279 second=233 amount=1 -kerning first=194 second=245 amount=-12 -kerning first=237 second=309 amount=-11 -kerning first=345 second=234 amount=-2 -kerning first=280 second=373 amount=-2 -kerning first=198 second=195 amount=-6 -kerning first=221 second=102 amount=-4 -kerning first=241 second=259 amount=2 -kerning first=369 second=311 amount=-1 -kerning first=287 second=103 amount=5 -kerning first=84 second=347 amount=-10 -kerning first=222 second=272 amount=-9 -kerning first=353 second=104 amount=1 -kerning first=268 second=116 amount=2 -kerning first=45 second=233 amount=4 -kerning first=373 second=261 amount=5 -kerning first=354 second=274 amount=-8 -kerning first=272 second=66 amount=-6 -kerning first=292 second=223 amount=2 -kerning first=72 second=90 amount=4 -kerning first=207 second=235 amount=-2 -kerning first=358 second=224 amount=-10 -kerning first=319 second=80 amount=-4 -kerning first=119 second=104 amount=2 -kerning first=254 second=249 amount=2 -kerning first=192 second=198 amount=-6 -kerning first=77 second=210 amount=3 -kerning first=258 second=199 amount=-11 -kerning first=363 second=314 amount=-1 -kerning first=278 second=326 amount=-2 -kerning first=281 second=106 amount=-13 -kerning first=193 second=338 amount=-11 -kerning first=196 second=118 amount=-13 -kerning first=301 second=263 amount=1 -kerning first=101 second=287 amount=2 -kerning first=347 second=107 amount=1 -kerning first=282 second=276 amount=-5 -kerning first=197 second=288 amount=-11 -kerning first=200 second=68 amount=-5 -kerning first=85 second=80 amount=-2 -kerning first=220 second=225 amount=2 -kerning first=325 second=340 amount=-2 -kerning first=328 second=120 amount=-1 -kerning first=263 second=289 amount=1 -kerning first=266 second=69 amount=-2 -kerning first=221 second=365 amount=-5 -kerning first=372 second=354 amount=-6 -kerning first=47 second=106 amount=-19 -kerning first=113 second=107 amount=-1 -kerning first=248 second=252 amount=-2 -kerning first=353 second=367 amount=1 -kerning first=51 second=56 amount=2 -kerning first=291 second=316 amount=2 -kerning first=206 second=328 amount=-2 -kerning first=114 second=277 amount=-2 -kerning first=160 second=69 amount=-6 -kerning first=360 second=97 amount=2 -kerning first=213 second=58 amount=-5 -kerning first=118 second=227 amount=5 -kerning first=256 second=122 amount=-7 -kerning first=194 second=71 amount=-11 -kerning first=99 second=240 amount=1 -kerning first=234 second=355 amount=-1 -kerning first=119 second=367 amount=2 -kerning first=260 second=72 amount=-4 -kerning first=300 second=356 amount=-2 -kerning first=80 second=253 amount=1 -kerning first=196 second=381 amount=-7 -kerning first=84 second=203 amount=-8 -kerning first=65 second=216 amount=-11 -kerning first=200 second=331 amount=-2 -kerning first=203 second=111 amount=-2 -kerning first=351 second=320 amount=1 -kerning first=354 second=100 amount=-10 -kerning first=374 second=257 amount=-3 -kerning first=289 second=269 amount=2 -kerning first=66 second=356 amount=-4 -kerning first=204 second=281 amount=-2 -kerning first=89 second=293 amount=-2 -kerning first=112 second=230 amount=2 -kerning first=352 second=8211 amount=4 -kerning first=270 second=282 amount=-6 -kerning first=74 second=256 amount=-8 -kerning first=117 second=320 amount=-1 -kerning first=120 second=100 amount=2 -kerning first=160 second=332 amount=-3 -kerning first=193 second=194 amount=-7 -kerning first=298 second=309 amount=-14 -kerning first=98 second=333 amount=2 -kerning first=101 second=113 amount=2 -kerning first=118 second=8211 amount=4 -kerning first=279 second=322 amount=-1 -kerning first=194 second=334 amount=-11 -kerning first=197 second=114 amount=-12 -kerning first=214 second=8212 amount=3 -kerning first=217 second=271 amount=2 -kerning first=102 second=283 amount=-8 -kerning first=260 second=335 amount=-12 -kerning first=263 second=115 amount=1 -kerning first=198 second=284 amount=-7 -kerning first=86 second=76 amount=4 -kerning first=329 second=116 amount=-1 -kerning first=106 second=233 amount=1 -kerning first=349 second=273 amount=3 -kerning first=67 second=89 amount=4 -kerning first=307 second=349 amount=1 -kerning first=222 second=361 amount=2 -kerning first=330 second=286 amount=3 -kerning first=8212 second=118 amount=2 -kerning first=68 second=259 amount=2 -kerning first=226 second=311 amount=-1 -kerning first=114 second=103 amount=-2 -kerning first=354 second=363 amount=-6 -kerning first=269 second=375 amount=-1 -kerning first=207 second=324 amount=-2 -kerning first=115 second=273 amount=3 -kerning first=358 second=313 amount=-1 -kerning first=73 second=349 amount=-2 -kerning first=119 second=223 amount=5 -kerning first=277 second=275 amount=1 -kerning first=192 second=287 amount=-10 -kerning first=195 second=67 amount=-11 -kerning first=77 second=299 amount=1 -kerning first=80 second=79 amount=3 -kerning first=320 second=339 amount=-1 -kerning first=235 second=351 amount=1 -kerning first=258 second=288 amount=-11 -kerning first=366 second=213 amount=2 -kerning first=281 second=225 amount=2 -kerning first=324 second=289 amount=2 -kerning first=327 second=69 amount=-6 -kerning first=347 second=226 amount=3 -kerning first=367 second=353 amount=1 -kerning first=282 second=365 amount=-2 -kerning first=197 second=377 amount=-7 -kerning first=85 second=199 amount=2 -kerning first=108 second=106 amount=-12 -kerning first=243 second=251 amount=-2 -kerning first=374 second=83 amount=-4 -kerning first=204 second=107 amount=-2 -kerning first=86 second=339 amount=3 -kerning first=89 second=119 amount=-4 -kerning first=8211 second=241 amount=2 -kerning first=375 second=253 amount=3 -kerning first=205 second=277 amount=-2 -kerning first=333 second=329 amount=-3 -kerning first=113 second=226 amount=2 -kerning first=356 second=266 amount=-2 -kerning first=8212 second=381 amount=-4 -kerning first=71 second=302 amount=3 -kerning first=74 second=82 amount=-4 -kerning first=209 second=227 amount=2 -kerning first=360 second=216 amount=2 -kerning first=275 second=228 amount=2 -kerning first=295 second=355 amount=-1 -kerning first=341 second=229 amount=-2 -kerning first=118 second=316 amount=2 -kerning first=217 second=97 amount=2 -kerning first=99 second=329 amount=-4 -kerning first=102 second=109 amount=-7 -kerning first=368 second=86 amount=2 -kerning first=283 second=98 amount=-1 -kerning first=195 second=330 amount=-15 -kerning first=198 second=110 amount=-6 -kerning first=80 second=342 amount=-7 -kerning first=103 second=279 amount=2 -kerning first=349 second=99 amount=1 -kerning first=199 second=280 amount=-2 -kerning first=327 second=332 amount=3 -kerning first=107 second=229 amount=2 -kerning first=68 second=85 amount=2 -kerning first=88 second=242 amount=-2 -kerning first=374 second=346 amount=-4 -kerning first=115 second=99 amount=1 -kerning first=355 second=359 amount=-1 -kerning first=53 second=48 amount=1 -kerning first=296 second=88 amount=2 -kerning first=316 second=245 amount=1 -kerning first=231 second=257 amount=1 -kerning first=359 second=309 amount=-12 -kerning first=362 second=89 amount=2 -kerning first=277 second=101 amount=1 -kerning first=192 second=113 amount=-10 -kerning first=258 second=114 amount=-12 -kerning first=363 second=259 amount=2 -kerning first=193 second=283 amount=-12 -kerning first=324 second=115 amount=1 -kerning first=101 second=232 amount=1 -kerning first=236 second=347 amount=1 -kerning first=121 second=359 amount=3 -kerning first=197 second=233 amount=-12 -kerning first=325 second=285 amount=2 -kerning first=348 second=222 amount=-3 -kerning first=198 second=373 amount=-6 -kerning first=86 second=195 amount=-3 -kerning first=8211 second=67 amount=5 -kerning first=287 second=311 amount=2 -kerning first=67 second=208 amount=-2 -kerning first=353 second=312 amount=1 -kerning first=8212 second=237 amount=2 -kerning first=337 second=105 amount=-2 -kerning first=272 second=274 amount=-6 -kerning first=318 second=118 amount=-10 -kerning first=256 second=67 amount=-11 -kerning first=296 second=351 amount=-2 -kerning first=119 second=312 amount=2 -kerning first=300 second=301 amount=-2 -kerning first=80 second=198 amount=-15 -kerning first=103 second=105 amount=3 -kerning first=258 second=377 amount=-7 -kerning first=281 second=314 amount=-1 -kerning first=196 second=326 amount=-13 -kerning first=304 second=251 amount=-2 -kerning first=81 second=338 amount=3 -kerning first=84 second=118 amount=-5 -kerning first=262 second=327 amount=4 -kerning first=200 second=276 amount=-5 -kerning first=85 second=288 amount=2 -kerning first=88 second=68 amount=-2 -kerning first=331 second=108 amount=-1 -kerning first=108 second=225 amount=2 -kerning first=246 second=120 amount=-2 -kerning first=351 second=265 amount=1 -kerning first=354 second=45 amount=-7 -kerning first=374 second=202 amount=-4 -kerning first=89 second=238 amount=-3 -kerning first=224 second=353 amount=1 -kerning first=8211 second=330 amount=-2 -kerning first=270 second=227 amount=2 -kerning first=290 second=354 amount=-2 -kerning first=356 second=355 amount=-3 -kerning first=271 second=367 amount=-9 -kerning first=74 second=201 amount=-5 -kerning first=97 second=108 amount=-1 -kerning first=193 second=109 amount=-13 -kerning first=298 second=254 amount=-2 -kerning first=75 second=341 amount=-9 -kerning first=216 second=46 amount=-5 -kerning first=341 second=318 amount=-1 -kerning first=344 second=98 amount=-2 -kerning first=256 second=330 amount=-15 -kerning first=279 second=267 amount=1 -kerning first=194 second=279 amount=-12 -kerning first=197 second=59 amount=-10 -kerning first=102 second=228 amount=-6 -kerning first=260 second=280 amount=-10 -kerning first=198 second=229 amount=-3 -kerning first=218 second=356 amount=-6 -kerning first=241 second=293 amount=-1 -kerning first=284 second=357 amount=2 -kerning first=84 second=381 amount=-2 -kerning first=110 second=98 amount=-1 -kerning first=350 second=358 amount=-3 -kerning first=45 second=267 amount=4 -kerning first=373 second=295 amount=2 -kerning first=206 second=99 amount=-2 -kerning first=311 second=244 amount=1 -kerning first=88 second=331 amount=-3 -kerning first=269 second=320 amount=-1 -kerning first=272 second=100 amount=2 -kerning first=292 second=257 amount=2 -kerning first=69 second=344 amount=-6 -kerning first=207 second=269 amount=-2 -kerning first=358 second=258 amount=-13 -kerning first=270 second=8211 amount=4 -kerning first=336 second=8212 amount=3 -kerning first=339 second=271 amount=2 -kerning first=254 second=283 amount=2 -kerning first=362 second=208 amount=-6 -kerning first=192 second=232 amount=-12 -kerning first=297 second=347 amount=1 -kerning first=258 second=233 amount=-12 -kerning first=197 second=322 amount=-12 -kerning first=220 second=259 amount=2 -kerning first=105 second=271 amount=2 -kerning first=201 second=272 amount=-5 -kerning first=86 second=284 amount=5 -kerning first=267 second=273 amount=1 -kerning first=205 second=222 amount=-2 -kerning first=225 second=349 amount=1 -kerning first=356 second=211 amount=-2 -kerning first=8212 second=326 amount=2 -kerning first=376 second=338 amount=-1 -kerning first=114 second=311 amount=-1 -kerning first=357 second=351 amount=-8 -kerning first=298 second=80 amount=-2 -kerning first=75 second=197 amount=-3 -kerning first=318 second=237 amount=-3 -kerning first=98 second=104 amount=3 -kerning first=118 second=261 amount=5 -kerning first=364 second=81 amount=2 -kerning first=319 second=377 amount=2 -kerning first=342 second=314 amount=-2 -kerning first=195 second=275 amount=-12 -kerning first=83 second=67 amount=3 -kerning first=326 second=107 amount=-1 -kerning first=103 second=224 amount=5 -kerning first=346 second=264 amount=3 -kerning first=304 second=340 amount=-2 -kerning first=84 second=237 amount=-2 -kerning first=350 second=214 amount=3 -kerning first=265 second=226 amount=1 -kerning first=373 second=121 amount=2 -kerning first=285 second=353 amount=2 -kerning first=200 second=365 amount=-2 -kerning first=85 second=377 amount=4 -kerning first=331 second=227 amount=2 -kerning first=246 second=239 amount=-2 -kerning first=374 second=291 amount=-3 -kerning first=289 second=303 amount=3 -kerning first=69 second=200 amount=-5 -kerning first=312 second=240 amount=2 -kerning first=358 second=84 amount=-8 -kerning first=70 second=340 amount=-7 -kerning first=73 second=120 amount=-1 -kerning first=211 second=45 amount=3 -kerning first=339 second=97 amount=2 -kerning first=254 second=109 amount=2 -kerning first=359 second=254 amount=-1 -kerning first=192 second=58 amount=-10 -kerning first=77 second=70 amount=-4 -kerning first=97 second=227 amount=2 -kerning first=258 second=59 amount=-10 -kerning first=193 second=228 amount=-10 -kerning first=78 second=240 amount=2 -kerning first=98 second=367 amount=2 -kerning first=259 second=229 amount=2 -kerning first=364 second=344 amount=-2 -kerning first=302 second=293 amount=-2 -kerning first=105 second=97 amount=2 -kerning first=240 second=242 amount=1 -kerning first=345 second=357 amount=-1 -kerning first=260 second=369 amount=-13 -kerning first=286 second=86 amount=4 -kerning first=198 second=318 amount=-2 -kerning first=86 second=110 amount=2 -kerning first=106 second=267 amount=1 -kerning first=349 second=307 amount=1 -kerning first=44 second=216 amount=-3 -kerning first=87 second=280 amount=-6 -kerning first=248 second=112 amount=-2 -kerning first=353 second=257 amount=3 -kerning first=376 second=194 amount=-3 -kerning first=45 second=356 amount=-7 -kerning first=71 second=73 amount=3 -kerning first=311 second=333 amount=1 -kerning first=111 second=357 amount=-1 -kerning first=207 second=358 amount=-2 -kerning first=230 second=295 amount=-1 -kerning first=115 second=307 amount=1 -kerning first=358 second=347 amount=-10 -kerning first=273 second=359 amount=-1 -kerning first=99 second=100 amount=1 -kerning first=234 second=245 amount=1 -kerning first=119 second=257 amount=5 -kerning first=277 second=309 amount=-13 -kerning first=195 second=101 amount=-12 -kerning first=300 second=246 amount=-2 -kerning first=80 second=113 amount=2 -kerning first=258 second=322 amount=-12 -kerning first=281 second=259 amount=2 -kerning first=193 second=8212 amount=-12 -kerning first=196 second=271 amount=-10 -kerning first=219 second=208 amount=-6 -kerning first=327 second=103 amount=2 -kerning first=239 second=335 amount=1 -kerning first=262 second=272 amount=-2 -kerning first=65 second=76 amount=-7 -kerning first=328 second=273 amount=2 -kerning first=266 second=222 amount=-2 -kerning first=374 second=117 amount=-5 -kerning first=66 second=246 amount=2 -kerning first=201 second=361 amount=-2 -kerning first=86 second=373 amount=3 -kerning first=8211 second=275 amount=4 -kerning first=375 second=287 amount=7 -kerning first=70 second=196 amount=-12 -kerning first=205 second=311 amount=-2 -kerning first=333 second=363 amount=-2 -kerning first=248 second=375 amount=-2 -kerning first=356 second=300 amount=-2 -kerning first=160 second=222 amount=-6 -kerning first=75 second=286 amount=-8 -kerning first=78 second=66 amount=2 -kerning first=318 second=326 amount=-9 -kerning first=98 second=223 amount=3 -kerning first=341 second=263 amount=-2 -kerning first=256 second=275 amount=-12 -kerning first=364 second=200 amount=-6 -kerning first=59 second=79 amount=-3 -kerning first=194 second=224 amount=-10 -kerning first=302 second=119 amount=-2 -kerning first=260 second=225 amount=-10 -kerning first=368 second=120 amount=-2 -kerning first=303 second=289 amount=2 -kerning first=221 second=81 amount=-1 -kerning first=326 second=226 amount=2 -kerning first=372 second=70 amount=-2 -kerning first=284 second=302 amount=3 -kerning first=199 second=314 amount=2 -kerning first=84 second=326 amount=-6 -kerning first=87 second=106 amount=-12 -kerning first=107 second=263 amount=1 -kerning first=45 second=212 amount=5 -kerning first=373 second=240 amount=5 -kerning first=65 second=339 amount=-12 -kerning first=88 second=276 amount=-2 -kerning first=331 second=316 amount=-1 -kerning first=246 second=328 amount=-2 -kerning first=272 second=45 amount=4 -kerning first=292 second=202 amount=-6 -kerning first=72 second=69 amount=-6 -kerning first=312 second=329 amount=-2 -kerning first=112 second=353 amount=2 -kerning first=358 second=203 amount=-8 -kerning first=73 second=239 amount=-2 -kerning first=208 second=354 amount=-6 -kerning first=316 second=279 amount=1 -kerning first=231 second=291 amount=1 -kerning first=254 second=228 amount=5 -kerning first=212 second=304 amount=3 -kerning first=97 second=316 amount=-1 -kerning first=340 second=356 amount=-8 -kerning first=363 second=293 amount=-1 -kerning first=58 second=202 amount=-4 -kerning first=196 second=97 amount=-10 -kerning first=301 second=242 amount=1 -kerning first=259 second=318 amount=-1 -kerning first=262 second=98 amount=2 -kerning first=59 second=342 amount=-4 -kerning first=197 second=267 amount=-12 -kerning first=348 second=256 amount=-9 -kerning first=286 second=205 amount=3 -kerning first=86 second=229 amount=6 -kerning first=221 second=344 amount=-1 -kerning first=8211 second=101 amount=4 -kerning first=375 second=113 amount=7 -kerning first=8212 second=271 amount=4 -kerning first=268 second=358 amount=-2 -kerning first=291 second=295 amount=2 -kerning first=206 second=307 amount=-2 -kerning first=256 second=101 amount=-12 -kerning first=214 second=207 amount=3 -kerning first=254 second=8212 amount=3 -kerning first=257 second=271 amount=2 -kerning first=280 second=208 amount=-5 -kerning first=300 second=335 amount=-2 -kerning first=303 second=115 amount=1 -kerning first=323 second=272 amount=-6 -kerning first=100 second=359 amount=-1 -kerning first=366 second=336 amount=2 -kerning first=369 second=116 amount=-1 -kerning first=327 second=222 amount=-2 -kerning first=370 second=286 amount=2 -kerning first=65 second=195 amount=-7 -kerning first=108 second=259 amount=2 -kerning first=351 second=299 amount=1 -kerning first=354 second=79 amount=-2 -kerning first=266 second=311 amount=2 -kerning first=46 second=208 amount=-3 -kerning first=289 second=248 amount=2 -kerning first=66 second=335 amount=2 -kerning first=89 second=272 amount=-4 -kerning first=8211 second=364 amount=5 -kerning first=70 second=285 amount=-3 -kerning first=208 second=210 amount=4 -kerning first=382 second=106 amount=-8 -kerning first=74 second=235 amount=-5 -kerning first=232 second=287 amount=2 -kerning first=275 second=351 amount=1 -kerning first=75 second=375 amount=-4 -kerning first=213 second=300 amount=3 -kerning first=98 second=312 amount=2 -kerning first=121 second=249 amount=3 -kerning first=364 second=289 amount=2 -kerning first=194 second=313 amount=-7 -kerning first=302 second=238 amount=-2 -kerning first=348 second=82 amount=-3 -kerning first=260 second=314 amount=-12 -kerning first=198 second=263 amount=-5 -kerning first=221 second=200 amount=-4 -kerning first=244 second=107 amount=-1 -kerning first=349 second=252 amount=1 -kerning first=67 second=68 amount=-2 -kerning first=87 second=225 amount=2 -kerning first=222 second=340 amount=-7 -kerning first=225 second=120 amount=-1 -kerning first=333 second=45 amount=3 -kerning first=8212 second=97 amount=4 -kerning first=373 second=329 amount=-3 -kerning first=45 second=301 amount=2 -kerning first=376 second=109 amount=-5 -kerning first=291 second=121 amount=2 -kerning first=88 second=365 amount=-3 -kerning first=354 second=342 amount=-5 -kerning first=357 second=122 amount=-10 -kerning first=292 second=291 amount=2 -kerning first=207 second=303 amount=-2 -kerning first=230 second=240 amount=2 -kerning first=335 second=355 amount=-1 -kerning first=115 second=252 amount=1 -kerning first=276 second=84 amount=-5 -kerning first=296 second=241 amount=-2 -kerning first=73 second=328 amount=-2 -kerning first=257 second=97 amount=2 -kerning first=277 second=254 amount=-1 -kerning first=192 second=266 amount=-11 -kerning first=195 second=46 amount=-10 -kerning first=80 second=58 amount=-4 -kerning first=320 second=318 amount=-2 -kerning first=258 second=267 amount=-12 -kerning first=196 second=216 amount=-11 -kerning first=304 second=111 amount=-2 -kerning first=101 second=355 amount=-1 -kerning first=282 second=344 amount=-6 -kerning first=197 second=356 amount=-20 -kerning first=263 second=357 amount=-1 -kerning first=309 second=231 amount=1 -kerning first=86 second=318 amount=3 -kerning first=89 second=98 amount=-2 -kerning first=270 second=87 amount=2 -kerning first=375 second=232 amount=3 -kerning first=70 second=111 amount=-4 -kerning first=248 second=320 amount=-1 -kerning first=356 second=245 amount=-7 -kerning first=8212 second=360 amount=5 -kerning first=271 second=257 amount=-8 -kerning first=71 second=281 amount=3 -kerning first=232 second=113 amount=2 -kerning first=298 second=114 amount=-2 -kerning first=75 second=231 amount=-10 -kerning first=315 second=8212 amount=-5 -kerning first=318 second=271 amount=-8 -kerning first=233 second=283 amount=1 -kerning first=118 second=295 amount=2 -kerning first=214 second=296 amount=3 -kerning first=237 second=233 amount=1 -kerning first=365 second=285 amount=2 -kerning first=198 second=89 amount=-2 -kerning first=303 second=234 amount=1 -kerning first=81 second=8212 amount=3 -kerning first=84 second=271 amount=-10 -kerning first=222 second=196 amount=-13 -kerning first=65 second=284 amount=-11 -kerning first=88 second=221 amount=2 -kerning first=226 second=116 amount=-1 -kerning first=354 second=198 amount=-13 -kerning first=289 second=337 amount=2 -kerning first=204 second=349 amount=-2 -kerning first=89 second=361 amount=-5 -kerning first=358 second=118 amount=-5 -kerning first=378 second=275 amount=1 -kerning first=316 second=224 amount=2 -kerning first=362 second=68 amount=-6 -kerning first=74 second=324 amount=-4 -kerning first=193 second=262 amount=-11 -kerning first=78 second=274 amount=-6 -kerning first=239 second=106 amount=-11 -kerning first=282 second=200 amount=-5 -kerning first=197 second=212 amount=-11 -kerning first=325 second=264 amount=3 -kerning first=102 second=351 amount=-7 -kerning first=348 second=201 amount=-3 -kerning first=371 second=108 amount=-1 -kerning first=198 second=352 amount=-3 -kerning first=221 second=289 amount=-3 -kerning first=372 second=278 amount=-6 -kerning first=290 second=70 amount=-2 -kerning first=205 second=82 amount=-2 -kerning first=330 second=354 amount=-6 -kerning first=353 second=291 amount=3 -kerning first=356 second=71 amount=-2 -kerning first=8212 second=216 amount=5 -kerning first=376 second=228 amount=-3 -kerning first=291 second=240 amount=5 -kerning first=71 second=107 amount=2 -kerning first=206 second=252 amount=-2 -kerning first=334 second=304 amount=3 -kerning first=318 second=97 amount=-8 -kerning first=118 second=121 amount=2 -kerning first=256 second=46 amount=-10 -kerning first=358 second=381 amount=-2 -kerning first=276 second=203 amount=-5 -kerning first=234 second=279 amount=1 -kerning first=119 second=291 amount=5 -kerning first=192 second=355 amount=-12 -kerning first=238 second=229 amount=2 -kerning first=258 second=356 amount=-20 -kerning first=281 second=293 amount=-1 -kerning first=284 second=73 amount=3 -kerning first=199 second=85 amount=4 -kerning first=84 second=97 amount=-10 -kerning first=324 second=357 amount=-1 -kerning first=104 second=254 amount=-1 -kerning first=285 second=243 amount=2 -kerning first=65 second=110 amount=-13 -kerning first=351 second=244 amount=1 -kerning first=66 second=280 amount=-4 -kerning first=312 second=100 amount=2 -kerning first=8211 second=309 amount=-7 -kerning first=378 second=101 amount=1 -kerning first=70 second=230 amount=-6 -kerning first=336 second=207 amount=3 -kerning first=356 second=334 amount=-2 -kerning first=232 second=232 amount=1 -kerning first=360 second=284 amount=2 -kerning first=160 second=256 amount=-3 -kerning first=193 second=88 amount=-9 -kerning first=298 second=233 amount=-2 -kerning first=75 second=320 amount=-7 -kerning first=78 second=100 amount=2 -kerning first=98 second=257 amount=5 -kerning first=279 second=246 amount=1 -kerning first=194 second=258 amount=-7 -kerning first=76 second=8211 amount=-5 -kerning first=325 second=90 amount=4 -kerning first=260 second=259 amount=-10 -kerning first=198 second=208 amount=-2 -kerning first=221 second=115 amount=-4 -kerning first=103 second=347 amount=2 -kerning first=264 second=209 amount=4 -kerning first=287 second=116 amount=2 -kerning first=307 second=273 amount=2 -kerning first=222 second=285 amount=2 -kerning first=330 second=210 amount=3 -kerning first=353 second=117 amount=1 -kerning first=265 second=349 amount=1 -kerning first=45 second=246 amount=4 -kerning first=65 second=373 amount=-13 -kerning first=311 second=223 amount=3 -kerning first=354 second=287 amount=-10 -kerning first=272 second=79 amount=4 -kerning first=72 second=103 amount=2 -kerning first=207 second=248 amount=-2 -kerning first=338 second=80 amount=-7 -kerning first=358 second=237 amount=-2 -kerning first=211 second=198 amount=-7 -kerning first=116 second=337 amount=1 -kerning first=119 second=117 amount=2 -kerning first=192 second=211 amount=-11 -kerning first=300 second=106 amount=-14 -kerning first=77 second=223 amount=2 -kerning first=212 second=338 amount=3 -kerning first=320 second=263 amount=-1 -kerning first=120 second=287 amount=2 -kerning first=258 second=212 amount=-11 -kerning first=193 second=351 amount=-11 -kerning first=219 second=68 amount=-6 -kerning first=239 second=225 amount=2 -kerning first=344 second=340 amount=-8 -kerning first=347 second=120 amount=2 -kerning first=305 second=226 amount=2 -kerning first=82 second=313 amount=3 -kerning first=348 second=290 amount=3 -kerning first=266 second=82 amount=-4 -kerning first=371 second=227 amount=2 -kerning first=66 second=106 amount=-12 -kerning first=86 second=263 amount=3 -kerning first=67 second=276 amount=-2 -kerning first=228 second=108 amount=-1 -kerning first=333 second=253 amount=-2 -kerning first=71 second=226 amount=5 -kerning first=160 second=82 amount=-9 -kerning first=272 second=342 amount=-3 -kerning first=233 second=228 amount=2 -kerning first=118 second=240 amount=5 -kerning first=194 second=84 amount=-20 -kerning first=299 second=229 amount=2 -kerning first=342 second=293 amount=-2 -kerning first=260 second=85 amount=-7 -kerning first=365 second=230 amount=1 -kerning first=280 second=242 amount=-2 -kerning first=195 second=254 amount=-3 -kerning first=300 second=369 amount=-2 -kerning first=80 second=266 amount=3 -kerning first=83 second=46 amount=-4 -kerning first=241 second=98 amount=-1 -kerning first=199 second=204 amount=3 -kerning first=84 second=216 amount=-2 -kerning first=307 second=99 amount=1 -kerning first=350 second=193 amount=-9 -kerning first=373 second=100 amount=5 -kerning first=65 second=229 amount=-10 -kerning first=200 second=344 amount=-6 -kerning first=85 second=356 amount=-6 -kerning first=223 second=281 amount=1 -kerning first=351 second=333 amount=1 -kerning first=354 second=113 amount=-10 -kerning first=374 second=270 amount=-4 -kerning first=207 second=74 amount=-2 -kerning first=112 second=243 amount=2 -kerning first=355 second=283 amount=1 -kerning first=70 second=319 amount=-4 -kerning first=73 second=99 amount=-2 -kerning first=336 second=296 amount=3 -kerning first=359 second=233 amount=1 -kerning first=274 second=245 amount=-2 -kerning first=74 second=269 amount=-5 -kerning first=120 second=113 amount=2 -kerning first=193 second=207 amount=-7 -kerning first=298 second=322 amount=-2 -kerning first=236 second=271 amount=2 -kerning first=344 second=196 amount=3 -kerning first=121 second=283 amount=3 -kerning first=367 second=103 amount=2 -kerning first=279 second=335 amount=1 -kerning first=194 second=347 amount=-11 -kerning first=260 second=348 amount=-8 -kerning first=368 second=273 amount=2 -kerning first=283 second=285 amount=2 -kerning first=198 second=297 amount=-7 -kerning first=86 second=89 amount=4 -kerning first=221 second=234 amount=-4 -kerning first=326 second=349 amount=1 -kerning first=106 second=246 amount=1 -kerning first=352 second=66 amount=-3 -kerning first=264 second=298 amount=3 -kerning first=372 second=223 amount=2 -kerning first=287 second=235 amount=2 -kerning first=87 second=259 amount=2 -kerning first=245 second=311 amount=-1 -kerning first=353 second=236 amount=1 -kerning first=373 second=363 amount=2 -kerning first=45 second=335 amount=4 -kerning first=68 second=272 amount=-6 -kerning first=229 second=104 amount=-1 -kerning first=114 second=116 amount=-1 -kerning first=272 second=198 amount=-10 -kerning first=72 second=222 amount=-2 -kerning first=207 second=337 amount=-2 -kerning first=358 second=326 amount=-6 -kerning first=361 second=106 amount=-10 -kerning first=276 second=118 amount=-2 -kerning first=296 second=275 amount=-2 -kerning first=234 second=224 amount=2 -kerning first=119 second=236 amount=2 -kerning first=254 second=351 amount=2 -kerning first=339 second=339 amount=1 -kerning first=362 second=276 amount=-6 -kerning first=280 second=68 amount=-5 -kerning first=192 second=300 amount=-7 -kerning first=195 second=80 amount=-17 -kerning first=343 second=289 amount=-2 -kerning first=346 second=69 amount=-3 -kerning first=366 second=226 amount=2 -kerning first=58 second=325 amount=-5 -kerning first=327 second=82 amount=-2 -kerning first=347 second=239 amount=1 -kerning first=200 second=200 amount=-5 -kerning first=85 second=212 amount=2 -kerning first=105 second=339 amount=1 -kerning first=266 second=201 amount=-2 -kerning first=46 second=68 amount=-3 -kerning first=371 second=316 amount=-1 -kerning first=289 second=108 amount=2 -kerning first=66 second=225 amount=3 -kerning first=201 second=340 amount=-6 -kerning first=204 second=120 amount=-1 -kerning first=309 second=265 amount=1 -kerning first=109 second=289 amount=2 -kerning first=352 second=329 amount=-5 -kerning first=290 second=278 amount=-2 -kerning first=208 second=70 amount=-5 -kerning first=228 second=227 amount=2 -kerning first=356 second=279 amount=-7 -kerning first=271 second=291 amount=-8 -kerning first=294 second=228 amount=2 -kerning first=209 second=240 amount=2 -kerning first=360 second=229 amount=2 -kerning first=160 second=201 amount=-6 -kerning first=75 second=265 amount=-10 -kerning first=318 second=305 amount=-3 -kerning first=236 second=97 amount=2 -kerning first=121 second=109 amount=3 -kerning first=256 second=254 amount=-3 -kerning first=341 second=242 amount=-2 -kerning first=194 second=203 amount=-10 -kerning first=302 second=98 amount=-2 -kerning first=237 second=267 amount=1 -kerning first=122 second=279 amount=1 -kerning first=260 second=204 amount=-7 -kerning first=280 second=331 amount=-2 -kerning first=283 second=111 amount=1 -kerning first=195 second=343 amount=-12 -kerning first=218 second=280 amount=-6 -kerning first=346 second=332 amount=3 -kerning first=349 second=112 amount=1 -kerning first=199 second=293 amount=2 -kerning first=84 second=305 amount=-2 -kerning first=107 second=242 amount=1 -kerning first=242 second=357 amount=-1 -kerning first=350 second=282 amount=-3 -kerning first=65 second=318 amount=-12 -kerning first=203 second=243 amount=-2 -kerning first=331 second=295 amount=-1 -kerning first=246 second=307 amount=-2 -kerning first=354 second=232 amount=-7 -kerning first=269 second=244 amount=-1 -kerning first=374 second=359 amount=-2 -kerning first=289 second=371 amount=2 -kerning first=227 second=320 amount=-1 -kerning first=230 second=100 amount=2 -kerning first=115 second=112 amount=1 -kerning first=296 second=101 amount=-2 -kerning first=359 second=322 amount=-1 -kerning first=297 second=271 amount=2 -kerning first=74 second=358 amount=-5 -kerning first=97 second=295 amount=-1 -kerning first=340 second=335 amount=-2 -kerning first=343 second=115 amount=-2 -kerning first=193 second=296 amount=-7 -kerning first=196 second=76 amount=-7 -kerning first=101 second=245 amount=1 -kerning first=197 second=246 amount=-12 -kerning first=82 second=258 amount=3 -kerning first=302 second=361 amount=-2 -kerning first=224 second=103 amount=2 -kerning first=106 second=335 amount=1 -kerning first=109 second=115 amount=1 -kerning first=349 second=375 amount=1 -kerning first=8211 second=80 amount=-6 -kerning first=44 second=284 amount=-3 -kerning first=287 second=324 amount=2 -kerning first=290 second=104 amount=2 -kerning first=205 second=116 amount=-2 -kerning first=225 second=273 amount=2 -kerning first=110 second=285 amount=2 -kerning first=356 second=105 amount=-2 -kerning first=8212 second=250 amount=2 -kerning first=271 second=117 amount=-9 -kerning first=376 second=262 amount=-1 -kerning first=209 second=66 amount=2 -kerning first=334 second=338 amount=3 -kerning first=114 second=235 amount=-2 -kerning first=337 second=118 amount=-2 -kerning first=357 second=275 amount=-9 -kerning first=272 second=287 amount=2 -kerning first=295 second=224 amount=2 -kerning first=115 second=375 amount=1 -kerning first=256 second=80 amount=-17 -kerning first=361 second=225 amount=2 -kerning first=195 second=199 amount=-11 -kerning first=300 second=314 amount=-2 -kerning first=80 second=211 amount=3 -kerning first=218 second=106 amount=-12 -kerning first=103 second=118 amount=2 -kerning first=284 second=107 amount=2 -kerning first=196 second=339 amount=-12 -kerning first=219 second=276 amount=-6 -kerning first=327 second=201 amount=-6 -kerning first=347 second=328 amount=1 -kerning first=262 second=340 amount=-4 -kerning first=265 second=120 amount=2 -kerning first=285 second=277 amount=2 -kerning first=203 second=69 amount=-5 -kerning first=88 second=81 amount=-4 -kerning first=223 second=226 amount=2 -kerning first=354 second=58 amount=-15 -kerning first=289 second=227 amount=5 -kerning first=204 second=239 amount=-2 -kerning first=355 second=228 amount=2 -kerning first=270 second=240 amount=2 -kerning first=228 second=316 amount=-1 -kerning first=54 second=57 amount=2 -kerning first=297 second=97 amount=2 -kerning first=363 second=98 amount=-1 -kerning first=160 second=290 amount=-3 -kerning first=278 second=110 amount=-2 -kerning first=193 second=122 amount=-7 -kerning first=298 second=267 amount=-2 -kerning first=75 second=354 amount=-9 -kerning first=216 second=59 amount=-5 -kerning first=98 second=291 amount=5 -kerning first=344 second=111 amount=-2 -kerning first=121 second=228 amount=7 -kerning first=256 second=343 amount=-12 -kerning first=364 second=268 amount=2 -kerning first=197 second=72 amount=-4 -kerning first=79 second=304 amount=3 -kerning first=82 second=84 amount=-8 -kerning first=217 second=229 amount=2 -kerning first=102 second=241 amount=-7 -kerning first=345 second=281 amount=-2 -kerning first=260 second=293 amount=-12 -kerning first=198 second=242 amount=-5 -kerning first=349 second=231 amount=1 -kerning first=8212 second=76 amount=3 -kerning first=45 second=280 amount=-7 -kerning first=291 second=100 amount=5 -kerning first=206 second=112 amount=-2 -kerning first=311 second=257 amount=2 -kerning first=357 second=101 amount=-9 -kerning first=269 second=333 amount=-1 -kerning first=272 second=113 amount=2 -kerning first=289 second=8211 amount=4 -kerning first=292 second=270 amount=-6 -kerning first=115 second=231 amount=1 -kerning first=358 second=271 amount=-10 -kerning first=273 second=283 amount=1 -kerning first=73 second=307 amount=-2 -kerning first=316 second=347 amount=1 -kerning first=231 second=359 amount=-1 -kerning first=277 second=233 amount=1 -kerning first=192 second=245 amount=-12 -kerning first=77 second=257 amount=1 -kerning first=235 second=309 amount=-13 -kerning first=343 second=234 amount=-2 -kerning first=258 second=246 amount=-12 -kerning first=278 second=373 amount=-2 -kerning first=58 second=270 amount=-3 -kerning first=196 second=195 amount=-7 -kerning first=81 second=207 amount=3 -kerning first=239 second=259 amount=2 -kerning first=121 second=8212 amount=4 -kerning first=367 second=311 amount=-1 -kerning first=285 second=103 amount=5 -kerning first=197 second=335 amount=-12 -kerning first=220 second=272 amount=-6 -kerning first=351 second=104 amount=1 -kerning first=266 second=116 amount=2 -kerning first=86 second=297 amount=3 -kerning first=352 second=274 amount=-3 -kerning first=8211 second=199 amount=5 -kerning first=270 second=66 amount=-6 -kerning first=290 second=223 amount=3 -kerning first=205 second=235 amount=-2 -kerning first=356 second=224 amount=-10 -kerning first=8212 second=339 amount=4 -kerning first=271 second=236 amount=-3 -kerning first=376 second=351 amount=-4 -kerning first=291 second=363 amount=2 -kerning first=206 second=375 amount=-2 -kerning first=229 second=312 amount=-1 -kerning first=337 second=237 amount=-2 -kerning first=117 second=104 amount=-1 -kerning first=75 second=210 amount=-8 -kerning first=98 second=117 amount=2 -kerning first=256 second=199 amount=-11 -kerning first=361 second=314 amount=-1 -kerning first=276 second=326 amount=-2 -kerning first=279 second=106 amount=-13 -kerning first=194 second=118 amount=-13 -kerning first=99 second=287 amount=1 -kerning first=345 second=107 amount=-1 -kerning first=260 second=119 amount=-13 -kerning first=280 second=276 amount=-5 -kerning first=195 second=288 amount=-11 -kerning first=198 second=68 amount=-2 -kerning first=83 second=80 amount=-3 -kerning first=218 second=225 amount=2 -kerning first=323 second=340 amount=-2 -kerning first=103 second=237 amount=3 -kerning first=326 second=120 amount=-1 -kerning first=261 second=289 amount=2 -kerning first=264 second=69 amount=-2 -kerning first=304 second=353 amount=-2 -kerning first=327 second=290 amount=3 -kerning first=330 second=70 amount=-2 -kerning first=370 second=354 amount=-6 -kerning first=45 second=106 amount=-7 -kerning first=65 second=263 amount=-12 -kerning first=88 second=200 amount=-2 -kerning first=331 second=240 amount=2 -kerning first=111 second=107 amount=-1 -kerning first=246 second=252 amount=-2 -kerning first=351 second=367 amount=1 -kerning first=46 second=276 amount=-4 -kerning first=289 second=316 amount=2 -kerning first=204 second=328 amount=-2 -kerning first=207 second=108 amount=-2 -kerning first=89 second=340 amount=-1 -kerning first=112 second=277 amount=2 -kerning first=358 second=97 amount=-10 -kerning first=70 second=353 amount=-4 -kerning first=208 second=278 amount=-6 -kerning first=211 second=58 amount=-5 -kerning first=116 second=227 amount=2 -kerning first=359 second=267 amount=1 -kerning first=192 second=71 amount=-11 -kerning first=74 second=303 amount=-1 -kerning first=97 second=240 amount=2 -kerning first=232 second=355 amount=-1 -kerning first=258 second=72 amount=-4 -kerning first=298 second=356 amount=-2 -kerning first=344 second=230 amount=-2 -kerning first=59 second=266 amount=-3 -kerning first=194 second=381 amount=-7 -kerning first=198 second=331 amount=-6 -kerning first=201 second=111 amount=-2 -kerning first=221 second=268 amount=-1 -kerning first=349 second=320 amount=1 -kerning first=372 second=257 amount=2 -kerning first=287 second=269 amount=2 -kerning first=110 second=230 amount=1 -kerning first=350 second=8211 amount=4 -kerning first=8212 second=195 amount=-13 -kerning first=268 second=282 amount=-2 -kerning first=45 second=369 amount=2 -kerning first=71 second=86 amount=4 -kerning first=206 second=231 amount=-2 -kerning first=207 second=371 amount=-2 -kerning first=115 second=320 amount=1 -kerning first=118 second=100 amount=5 -kerning first=296 second=309 amount=-14 -kerning first=99 second=113 amount=1 -kerning first=277 second=322 amount=-1 -kerning first=192 second=334 amount=-11 -kerning first=195 second=114 amount=-12 -kerning first=212 second=8212 amount=3 -kerning first=100 second=283 amount=1 -kerning first=258 second=335 amount=-12 -kerning first=261 second=115 amount=1 -kerning first=196 second=284 amount=-11 -kerning first=81 second=296 amount=3 -kerning first=84 second=76 amount=-1 -kerning first=347 second=273 amount=3 -kerning first=370 second=210 amount=2 -kerning first=65 second=89 amount=-7 -kerning first=305 second=349 amount=1 -kerning first=66 second=259 amount=3 -kerning first=89 second=196 amount=-3 -kerning first=224 second=311 amount=-1 -kerning first=112 second=103 amount=5 -kerning first=8211 second=288 amount=5 -kerning first=267 second=375 amount=-1 -kerning first=50 second=52 amount=-3 -kerning first=290 second=312 amount=2 -kerning first=205 second=324 amount=-2 -kerning first=113 second=273 amount=2 -kerning first=356 second=313 amount=-1 -kerning first=71 second=349 amount=2 -kerning first=209 second=274 amount=-6 -kerning first=337 second=326 amount=-2 -kerning first=117 second=223 amount=4 -kerning first=275 second=275 amount=1 -kerning first=193 second=67 amount=-11 -kerning first=75 second=299 amount=-7 -kerning first=78 second=79 amount=3 -kerning first=318 second=339 amount=-9 -kerning first=98 second=236 amount=2 -kerning first=233 second=351 amount=1 -kerning first=118 second=363 amount=2 -kerning first=256 second=288 amount=-11 -kerning first=364 second=213 amount=2 -kerning first=279 second=225 amount=2 -kerning first=325 second=69 amount=-6 -kerning first=345 second=226 amount=-2 -kerning first=365 second=353 amount=1 -kerning first=280 second=365 amount=-2 -kerning first=195 second=377 amount=-7 -kerning first=83 second=199 amount=3 -kerning first=103 second=326 amount=2 -kerning first=106 second=106 amount=-2 -kerning first=199 second=327 amount=4 -kerning first=84 second=339 amount=-7 -kerning first=222 second=264 amount=4 -kerning first=327 second=379 amount=4 -kerning first=268 second=108 amount=2 -kerning first=45 second=225 amount=4 -kerning first=373 second=253 amount=2 -kerning first=291 second=45 amount=4 -kerning first=65 second=352 amount=-8 -kerning first=331 second=329 amount=-3 -kerning first=354 second=266 amount=-2 -kerning first=272 second=58 amount=-3 -kerning first=72 second=82 amount=-2 -kerning first=358 second=216 amount=-2 -kerning first=273 second=228 amount=2 -kerning first=73 second=252 amount=-2 -kerning first=339 second=229 amount=2 -kerning first=254 second=241 amount=2 -kerning first=320 second=242 amount=-1 -kerning first=97 second=329 amount=-3 -kerning first=235 second=254 amount=-1 -kerning first=366 second=86 amount=2 -kerning first=281 second=98 amount=-1 -kerning first=193 second=330 amount=-15 -kerning first=196 second=110 amount=-13 -kerning first=78 second=342 amount=-2 -kerning first=101 second=279 amount=1 -kerning first=344 second=319 amount=3 -kerning first=347 second=99 amount=1 -kerning first=197 second=280 amount=-10 -kerning first=325 second=332 amount=3 -kerning first=105 second=229 amount=2 -kerning first=66 second=85 amount=2 -kerning first=86 second=242 amount=3 -kerning first=221 second=357 amount=-2 -kerning first=8211 second=114 amount=2 -kerning first=113 second=99 amount=1 -kerning first=353 second=359 amount=1 -kerning first=8212 second=284 amount=5 -kerning first=51 second=48 amount=2 -kerning first=294 second=88 amount=3 -kerning first=71 second=205 amount=3 -kerning first=206 second=320 amount=-2 -kerning first=209 second=100 amount=2 -kerning first=229 second=257 amount=2 -kerning first=114 second=269 amount=-2 -kerning first=357 second=309 amount=-13 -kerning first=360 second=89 amount=2 -kerning first=275 second=101 amount=1 -kerning first=256 second=114 amount=-12 -kerning first=361 second=259 amount=2 -kerning first=234 second=347 amount=1 -kerning first=119 second=359 amount=2 -kerning first=195 second=233 amount=-12 -kerning first=323 second=285 amount=2 -kerning first=346 second=222 amount=-3 -kerning first=196 second=373 amount=-13 -kerning first=84 second=195 amount=-13 -kerning first=285 second=311 amount=2 -kerning first=65 second=208 amount=-10 -kerning first=351 second=312 amount=1 -kerning first=269 second=104 amount=-1 -kerning first=89 second=285 amount=-3 -kerning first=335 second=105 amount=-2 -kerning first=8211 second=377 amount=-4 -kerning first=270 second=274 amount=-6 -kerning first=208 second=223 amount=2 -kerning first=74 second=248 amount=-5 -kerning first=298 second=301 amount=-2 -kerning first=256 second=377 amount=-7 -kerning first=279 second=314 amount=-1 -kerning first=59 second=211 amount=-3 -kerning first=194 second=326 amount=-13 -kerning first=302 second=251 amount=-2 -kerning first=79 second=338 amount=3 -kerning first=102 second=275 amount=-8 -kerning first=260 second=327 amount=-15 -kerning first=198 second=276 amount=-2 -kerning first=83 second=288 amount=3 -kerning first=221 second=213 amount=-1 -kerning first=329 second=108 amount=-1 -kerning first=106 second=225 amount=2 -kerning first=244 second=120 amount=-2 -kerning first=349 second=265 amount=1 -kerning first=352 second=45 amount=4 -kerning first=372 second=202 amount=-6 -kerning first=222 second=353 amount=1 -kerning first=330 second=278 amount=-6 -kerning first=8212 second=110 amount=2 -kerning first=311 second=291 amount=2 -kerning first=354 second=355 amount=-3 -kerning first=72 second=201 amount=-6 -kerning first=207 second=316 amount=-2 -kerning first=115 second=265 amount=1 -kerning first=118 second=45 amount=4 -kerning first=358 second=305 amount=-2 -kerning first=296 second=254 amount=-2 -kerning first=214 second=46 amount=-5 -kerning first=339 second=318 amount=-1 -kerning first=342 second=98 amount=-2 -kerning first=277 second=267 amount=1 -kerning first=192 second=279 amount=-12 -kerning first=195 second=59 amount=-10 -kerning first=77 second=291 amount=1 -kerning first=80 second=71 amount=3 -kerning first=100 second=228 amount=2 -kerning first=120 second=355 amount=-1 -kerning first=258 second=280 amount=-10 -kerning first=196 second=229 amount=-10 -kerning first=197 second=369 amount=-13 -kerning first=348 second=358 amount=-3 -kerning first=371 second=295 amount=-1 -kerning first=204 second=99 amount=-2 -kerning first=309 second=244 amount=1 -kerning first=86 second=331 amount=2 -kerning first=89 second=111 amount=-4 -kerning first=8211 second=233 amount=4 -kerning first=267 second=320 amount=-1 -kerning first=270 second=100 amount=2 -kerning first=375 second=245 amount=3 -kerning first=67 second=344 amount=-4 -kerning first=205 second=269 amount=-2 -kerning first=356 second=258 amount=-13 -kerning first=8212 second=373 amount=2 -kerning first=334 second=8212 amount=3 -kerning first=360 second=208 amount=-6 -kerning first=295 second=347 amount=1 -kerning first=75 second=244 amount=-10 -kerning first=256 second=233 amount=-12 -kerning first=102 second=101 amount=-8 -kerning first=237 second=246 amount=1 -kerning first=195 second=322 amount=-12 -kerning first=198 second=102 amount=-5 -kerning first=80 second=334 amount=3 -kerning first=218 second=259 amount=2 -kerning first=103 second=271 amount=5 -kerning first=199 second=272 amount=-2 -kerning first=84 second=284 amount=-2 -kerning first=245 second=116 amount=-1 -kerning first=265 second=273 amount=1 -kerning first=203 second=222 amount=-6 -kerning first=88 second=234 amount=-2 -kerning first=354 second=211 amount=-2 -kerning first=269 second=223 amount=2 -kerning first=374 second=338 amount=-1 -kerning first=312 second=287 amount=2 -kerning first=112 second=311 amount=3 -kerning first=355 second=351 amount=1 -kerning first=296 second=80 amount=-2 -kerning first=362 second=81 amount=2 -kerning first=74 second=337 amount=-5 -kerning first=340 second=314 amount=-2 -kerning first=193 second=275 amount=-12 -kerning first=78 second=287 amount=2 -kerning first=324 second=107 amount=-1 -kerning first=101 second=224 amount=2 -kerning first=236 second=339 amount=1 -kerning first=121 second=351 amount=2 -kerning first=197 second=225 amount=-10 -kerning first=302 second=340 amount=-2 -kerning first=240 second=289 amount=2 -kerning first=348 second=214 amount=3 -kerning first=263 second=226 amount=1 -kerning first=283 second=353 amount=1 -kerning first=198 second=365 amount=-6 -kerning first=329 second=227 amount=2 -kerning first=372 second=291 amount=2 -kerning first=287 second=303 amount=3 -kerning first=67 second=200 amount=-2 -kerning first=356 second=84 amount=-8 -kerning first=8212 second=229 amount=4 -kerning first=268 second=316 amount=2 -kerning first=291 second=253 amount=2 -kerning first=68 second=340 amount=-3 -kerning first=206 second=265 amount=-2 -kerning first=272 second=266 amount=4 -kerning first=75 second=70 amount=-7 -kerning first=318 second=110 amount=-9 -kerning first=256 second=59 amount=-10 -kerning first=257 second=229 amount=2 -kerning first=362 second=344 amount=-2 -kerning first=300 second=293 amount=-2 -kerning first=103 second=97 amount=5 -kerning first=343 second=357 amount=-1 -kerning first=258 second=369 amount=-13 -kerning first=284 second=86 amount=4 -kerning first=196 second=318 amount=-12 -kerning first=199 second=98 amount=2 -kerning first=84 second=110 amount=-6 -kerning first=304 second=243 amount=-2 -kerning first=347 second=307 amount=1 -kerning first=85 second=280 amount=-6 -kerning first=328 second=320 amount=-1 -kerning first=331 second=100 amount=2 -kerning first=246 second=112 amount=-2 -kerning first=351 second=257 amount=3 -kerning first=374 second=194 amount=-3 -kerning first=309 second=333 amount=1 -kerning first=89 second=230 amount=-3 -kerning first=312 second=113 amount=2 -kerning first=109 second=357 amount=-1 -kerning first=70 second=243 amount=-4 -kerning first=205 second=358 amount=-2 -kerning first=228 second=295 amount=-1 -kerning first=356 second=347 amount=-10 -kerning first=74 second=193 amount=-8 -kerning first=97 second=100 amount=2 -kerning first=232 second=245 amount=1 -kerning first=117 second=257 amount=2 -kerning first=275 second=309 amount=-13 -kerning first=193 second=101 amount=-12 -kerning first=298 second=246 amount=-2 -kerning first=75 second=333 amount=-10 -kerning first=78 second=113 amount=2 -kerning first=318 second=373 amount=-10 -kerning first=256 second=322 amount=-12 -kerning first=279 second=259 amount=2 -kerning first=194 second=271 amount=-10 -kerning first=217 second=208 amount=-6 -kerning first=325 second=103 amount=2 -kerning first=237 second=335 amount=1 -kerning first=240 second=115 amount=1 -kerning first=122 second=347 amount=1 -kerning first=260 second=272 amount=-10 -kerning first=326 second=273 amount=2 -kerning first=241 second=285 amount=2 -kerning first=264 second=222 amount=-2 -kerning first=84 second=373 amount=-5 -kerning first=330 second=223 amount=2 -kerning first=373 second=287 amount=5 -kerning first=45 second=259 amount=4 -kerning first=376 second=67 amount=-1 -kerning first=68 second=196 amount=-8 -kerning first=246 second=375 amount=-2 -kerning first=354 second=300 amount=-2 -kerning first=319 second=106 amount=-6 -kerning first=339 second=263 amount=1 -kerning first=254 second=275 amount=2 -kerning first=362 second=200 amount=-6 -kerning first=192 second=224 amount=-10 -kerning first=300 second=119 amount=-2 -kerning first=77 second=236 amount=1 -kerning first=258 second=225 amount=-10 -kerning first=366 second=120 amount=-2 -kerning first=301 second=289 amount=2 -kerning first=324 second=226 amount=2 -kerning first=370 second=70 amount=-2 -kerning first=197 second=314 amount=-12 -kerning first=105 second=263 amount=1 -kerning first=371 second=240 amount=2 -kerning first=329 second=316 amount=-1 -kerning first=244 second=328 amount=-2 -kerning first=270 second=45 amount=4 -kerning first=290 second=202 amount=-2 -kerning first=70 second=69 amount=-9 -kerning first=336 second=46 amount=-5 -kerning first=110 second=353 amount=1 -kerning first=356 second=203 amount=-8 -kerning first=71 second=239 amount=1 -kerning first=206 second=354 amount=-2 -kerning first=229 second=291 amount=2 -kerning first=357 second=343 amount=-9 -kerning first=72 second=379 amount=4 -kerning first=210 second=304 amount=3 -kerning first=318 second=229 amount=-8 -kerning first=338 second=356 amount=-4 -kerning first=118 second=253 amount=2 -kerning first=361 second=293 amount=-1 -kerning first=194 second=97 amount=-10 -kerning first=76 second=329 amount=-3 -kerning first=257 second=318 amount=-1 -kerning first=260 second=98 amount=-12 -kerning first=195 second=267 amount=-12 -kerning first=83 second=59 amount=-4 -kerning first=346 second=256 amount=-9 -kerning first=284 second=205 amount=3 -kerning first=84 second=229 amount=-10 -kerning first=219 second=344 amount=-2 -kerning first=45 second=85 amount=5 -kerning first=373 second=113 amount=5 -kerning first=65 second=242 amount=-12 -kerning first=266 second=358 amount=-2 -kerning first=289 second=295 amount=2 -kerning first=204 second=307 amount=-2 -kerning first=312 second=232 amount=1 -kerning first=89 second=319 amount=-3 -kerning first=358 second=76 amount=-1 -kerning first=73 second=112 amount=-2 -kerning first=208 second=257 amount=2 -kerning first=254 second=101 amount=2 -kerning first=359 second=246 amount=1 -kerning first=74 second=282 amount=-5 -kerning first=212 second=207 amount=3 -kerning first=160 second=358 amount=-12 -kerning first=278 second=208 amount=-5 -kerning first=298 second=335 amount=-2 -kerning first=301 second=115 amount=1 -kerning first=98 second=359 amount=3 -kerning first=364 second=336 amount=2 -kerning first=367 second=116 amount=-1 -kerning first=325 second=222 amount=-2 -kerning first=102 second=309 amount=-13 -kerning first=240 second=234 amount=1 -kerning first=345 second=349 amount=-2 -kerning first=260 second=361 amount=-13 -kerning first=368 second=286 amount=2 -kerning first=86 second=102 amount=2 -kerning first=106 second=259 amount=2 -kerning first=349 second=299 amount=1 -kerning first=352 second=79 amount=3 -kerning first=264 second=311 amount=2 -kerning first=44 second=208 amount=-3 -kerning first=287 second=248 amount=2 -kerning first=87 second=272 amount=-6 -kerning first=245 second=324 amount=-2 -kerning first=248 second=104 amount=-1 -kerning first=353 second=249 amount=1 -kerning first=68 second=285 amount=2 -kerning first=272 second=211 amount=4 -kerning first=380 second=106 amount=-8 -kerning first=230 second=287 amount=2 -kerning first=115 second=299 amount=1 -kerning first=358 second=339 amount=-7 -kerning first=273 second=351 amount=1 -kerning first=73 second=375 amount=-2 -kerning first=211 second=300 amount=3 -kerning first=119 second=249 amount=2 -kerning first=362 second=289 amount=2 -kerning first=192 second=313 amount=-7 -kerning first=300 second=238 amount=-2 -kerning first=80 second=105 amount=1 -kerning first=346 second=82 amount=-3 -kerning first=258 second=314 amount=-12 -kerning first=58 second=338 amount=-3 -kerning first=196 second=263 amount=-12 -kerning first=219 second=200 amount=-6 -kerning first=242 second=107 amount=-1 -kerning first=347 second=252 amount=1 -kerning first=65 second=68 amount=-10 -kerning first=85 second=225 amount=2 -kerning first=220 second=340 amount=-2 -kerning first=223 second=120 amount=-2 -kerning first=371 second=329 amount=-3 -kerning first=46 second=81 amount=-3 -kerning first=374 second=109 amount=-5 -kerning first=289 second=121 amount=2 -kerning first=86 second=365 amount=2 -kerning first=352 second=342 amount=-3 -kerning first=8211 second=267 amount=4 -kerning first=375 second=279 amount=3 -kerning first=205 second=303 amount=-2 -kerning first=228 second=240 amount=2 -kerning first=333 second=355 amount=-1 -kerning first=248 second=367 amount=-2 -kerning first=274 second=84 amount=-5 -kerning first=71 second=328 amount=2 -kerning first=160 second=214 amount=-3 -kerning first=275 second=254 amount=-1 -kerning first=193 second=46 amount=-10 -kerning first=75 second=278 amount=-9 -kerning first=121 second=122 amount=4 -kerning first=256 second=267 amount=-12 -kerning first=59 second=71 amount=-3 -kerning first=194 second=216 amount=-11 -kerning first=302 second=111 amount=-2 -kerning first=99 second=355 amount=-1 -kerning first=280 second=344 amount=-6 -kerning first=195 second=356 amount=-20 -kerning first=303 second=281 amount=1 -kerning first=103 second=305 amount=3 -kerning first=241 second=230 amount=1 -kerning first=261 second=357 amount=-1 -kerning first=307 second=231 amount=1 -kerning first=84 second=318 amount=-3 -kerning first=327 second=358 amount=-6 -kerning first=268 second=87 amount=4 -kerning first=45 second=204 amount=-5 -kerning first=373 second=232 amount=4 -kerning first=65 second=331 amount=-13 -kerning first=88 second=268 amount=-4 -kerning first=246 second=320 amount=-1 -kerning first=354 second=245 amount=-7 -kerning first=269 second=257 amount=1 -kerning first=46 second=344 amount=-4 -kerning first=230 second=113 amount=2 -kerning first=112 second=345 amount=2 -kerning first=358 second=195 amount=-13 -kerning first=296 second=114 amount=-2 -kerning first=73 second=231 amount=-2 -kerning first=313 second=8212 amount=-5 -kerning first=316 second=271 amount=2 -kerning first=359 second=335 amount=1 -kerning first=74 second=371 amount=-4 -kerning first=212 second=296 amount=3 -kerning first=363 second=285 amount=2 -kerning first=196 second=89 amount=-7 -kerning first=301 second=234 amount=1 -kerning first=59 second=334 amount=-3 -kerning first=197 second=259 amount=-10 -kerning first=79 second=8212 amount=3 -kerning first=221 second=336 amount=-1 -kerning first=224 second=116 amount=-1 -kerning first=352 second=198 amount=-11 -kerning first=375 second=105 amount=3 -kerning first=287 second=337 amount=2 -kerning first=248 second=223 amount=2 -kerning first=356 second=118 amount=-5 -kerning first=8212 second=263 amount=4 -kerning first=291 second=287 amount=5 -kerning first=206 second=299 amount=-2 -kerning first=209 second=79 amount=3 -kerning first=114 second=248 amount=-2 -kerning first=360 second=68 amount=-6 -kerning first=75 second=104 amount=-7 -kerning first=237 second=106 amount=-11 -kerning first=280 second=200 amount=-5 -kerning first=195 second=212 amount=-11 -kerning first=323 second=264 amount=3 -kerning first=100 second=351 amount=1 -kerning first=346 second=201 amount=-3 -kerning first=369 second=108 amount=-1 -kerning first=196 second=352 amount=-8 -kerning first=304 second=277 amount=-2 -kerning first=219 second=289 amount=2 -kerning first=222 second=69 amount=-9 -kerning first=327 second=214 amount=3 -kerning first=370 second=278 amount=-6 -kerning first=203 second=82 amount=-6 -kerning first=351 second=291 amount=3 -kerning first=354 second=71 amount=-2 -kerning first=374 second=228 amount=-3 -kerning first=46 second=200 amount=-4 -kerning first=289 second=240 amount=5 -kerning first=204 second=252 amount=-2 -kerning first=89 second=264 amount=-1 -kerning first=332 second=304 amount=3 -kerning first=8211 second=356 amount=-7 -kerning first=70 second=277 amount=-6 -kerning first=208 second=202 amount=-6 -kerning first=316 second=97 amount=2 -kerning first=228 second=329 amount=-3 -kerning first=356 second=381 amount=-2 -kerning first=274 second=203 amount=-5 -kerning first=74 second=227 amount=-5 -kerning first=209 second=342 amount=-2 -kerning first=232 second=279 amount=1 -kerning first=117 second=291 amount=2 -kerning first=75 second=367 amount=-8 -kerning first=236 second=229 amount=2 -kerning first=121 second=241 amount=3 -kerning first=256 second=356 amount=-20 -kerning first=279 second=293 amount=-1 -kerning first=197 second=85 amount=-7 -kerning first=283 second=243 amount=1 -kerning first=221 second=192 amount=-3 -kerning first=349 second=244 amount=1 -kerning first=222 second=332 amount=4 -kerning first=330 second=257 amount=2 -kerning first=8212 second=89 amount=3 -kerning first=268 second=206 amount=3 -kerning first=291 second=113 amount=5 -kerning first=334 second=207 amount=3 -kerning first=354 second=334 amount=-2 -kerning first=357 second=114 amount=-9 -kerning first=207 second=295 amount=-2 -kerning first=230 second=232 amount=1 -kerning first=115 second=244 amount=1 -kerning first=358 second=284 amount=-2 -kerning first=296 second=233 amount=-2 -kerning first=73 second=320 amount=-2 -kerning first=254 second=309 amount=-9 -kerning first=277 second=246 amount=1 -kerning first=192 second=258 amount=-7 -kerning first=74 second=8211 amount=-3 -kerning first=323 second=90 amount=4 -kerning first=235 second=322 amount=-1 -kerning first=258 second=259 amount=-10 -kerning first=196 second=208 amount=-10 -kerning first=101 second=347 amount=1 -kerning first=262 second=209 amount=4 -kerning first=285 second=116 amount=2 -kerning first=197 second=348 amount=-8 -kerning first=305 second=273 amount=2 -kerning first=220 second=285 amount=2 -kerning first=351 second=117 amount=1 -kerning first=263 second=349 amount=1 -kerning first=309 second=223 amount=3 -kerning first=89 second=90 amount=-2 -kerning first=8211 second=212 amount=5 -kerning first=270 second=79 amount=4 -kerning first=375 second=224 amount=7 -kerning first=67 second=323 amount=4 -kerning first=70 second=103 amount=-3 -kerning first=205 second=248 amount=-2 -kerning first=248 second=312 amount=-2 -kerning first=356 second=237 amount=-2 -kerning first=71 second=273 amount=5 -kerning first=337 second=250 amount=-2 -kerning first=114 second=337 amount=-2 -kerning first=298 second=106 amount=-14 -kerning first=210 second=338 amount=3 -kerning first=318 second=263 amount=-9 -kerning first=233 second=275 amount=1 -kerning first=118 second=287 amount=5 -kerning first=256 second=212 amount=-11 -kerning first=217 second=68 amount=-6 -kerning first=237 second=225 amount=2 -kerning first=342 second=340 amount=-8 -kerning first=345 second=120 amount=-2 -kerning first=198 second=81 amount=-7 -kerning first=303 second=226 amount=2 -kerning first=103 second=250 amount=2 -kerning first=346 second=290 amount=3 -kerning first=264 second=82 amount=-4 -kerning first=369 second=227 amount=2 -kerning first=84 second=263 amount=-7 -kerning first=45 second=119 amount=2 -kerning first=65 second=276 amount=-10 -kerning first=203 second=201 amount=-5 -kerning first=88 second=213 amount=-4 -kerning first=226 second=108 amount=-1 -kerning first=111 second=120 amount=-2 -kerning first=207 second=121 amount=-2 -kerning first=89 second=353 amount=-4 -kerning first=358 second=110 amount=-6 -kerning first=270 second=342 amount=-3 -kerning first=208 second=291 amount=2 -kerning first=231 second=228 amount=1 -kerning first=116 second=240 amount=2 -kerning first=192 second=84 amount=-20 -kerning first=297 second=229 amount=2 -kerning first=340 second=293 amount=-2 -kerning first=258 second=85 amount=-7 -kerning first=363 second=230 amount=1 -kerning first=278 second=242 amount=-2 -kerning first=193 second=254 amount=-3 -kerning first=298 second=369 amount=-2 -kerning first=78 second=266 amount=3 -kerning first=81 second=46 amount=-5 -kerning first=197 second=204 amount=-7 -kerning first=348 second=193 amount=-9 -kerning first=371 second=100 amount=2 -kerning first=83 second=356 amount=-3 -kerning first=349 second=333 amount=1 -kerning first=372 second=270 amount=-6 -kerning first=205 second=74 amount=-2 -kerning first=90 second=86 amount=3 -kerning first=353 second=283 amount=1 -kerning first=8212 second=208 amount=-7 -kerning first=268 second=295 amount=2 -kerning first=291 second=232 amount=2 -kerning first=71 second=99 amount=3 -kerning first=206 second=244 amount=-2 -kerning first=334 second=296 amount=3 -kerning first=357 second=233 amount=-9 -kerning first=233 second=101 amount=1 -kerning first=115 second=333 amount=1 -kerning first=118 second=113 amount=5 -kerning first=358 second=373 amount=-5 -kerning first=296 second=322 amount=-2 -kerning first=234 second=271 amount=2 -kerning first=342 second=196 amount=3 -kerning first=119 second=283 amount=4 -kerning first=365 second=103 amount=2 -kerning first=277 second=335 amount=1 -kerning first=192 second=347 amount=-11 -kerning first=258 second=348 amount=-8 -kerning first=366 second=273 amount=2 -kerning first=281 second=285 amount=2 -kerning first=84 second=89 amount=-1 -kerning first=304 second=222 amount=-2 -kerning first=324 second=349 amount=1 -kerning first=350 second=66 amount=-3 -kerning first=262 second=298 amount=3 -kerning first=370 second=223 amount=2 -kerning first=285 second=235 amount=2 -kerning first=65 second=102 amount=-12 -kerning first=85 second=259 amount=2 -kerning first=243 second=311 amount=-1 -kerning first=351 second=236 amount=1 -kerning first=66 second=272 amount=-4 -kerning first=227 second=104 amount=-1 -kerning first=112 second=116 amount=3 -kerning first=8211 second=301 amount=2 -kerning first=270 second=198 amount=-10 -kerning first=70 second=222 amount=-7 -kerning first=205 second=337 amount=-2 -kerning first=356 second=326 amount=-6 -kerning first=359 second=106 amount=-12 -kerning first=274 second=118 amount=-2 -kerning first=209 second=287 amount=2 -kerning first=232 second=224 amount=2 -kerning first=360 second=276 amount=-6 -kerning first=278 second=68 amount=-5 -kerning first=193 second=80 amount=-17 -kerning first=75 second=312 amount=-7 -kerning first=98 second=249 amount=2 -kerning first=341 second=289 amount=-2 -kerning first=364 second=226 amount=2 -kerning first=325 second=82 amount=-2 -kerning first=198 second=200 amount=-2 -kerning first=83 second=212 amount=3 -kerning first=221 second=107 amount=-2 -kerning first=103 second=339 amount=2 -kerning first=264 second=201 amount=-2 -kerning first=369 second=316 amount=-1 -kerning first=44 second=68 amount=-3 -kerning first=287 second=108 amount=2 -kerning first=199 second=340 amount=-4 -kerning first=307 second=265 amount=1 -kerning first=84 second=352 amount=-6 -kerning first=330 second=202 amount=-6 -kerning first=107 second=289 amount=2 -kerning first=350 second=329 amount=-5 -kerning first=353 second=109 amount=1 -kerning first=376 second=46 amount=-5 -kerning first=45 second=238 amount=2 -kerning first=65 second=365 amount=-13 -kerning first=206 second=70 amount=-2 -kerning first=226 second=227 amount=2 -kerning first=354 second=279 amount=-7 -kerning first=269 second=291 amount=1 -kerning first=272 second=71 amount=4 -kerning first=292 second=228 amount=2 -kerning first=358 second=229 amount=-10 -kerning first=73 second=265 amount=-2 -kerning first=76 second=45 amount=-5 -kerning first=234 second=97 amount=2 -kerning first=116 second=329 amount=-1 -kerning first=119 second=109 amount=2 -kerning first=254 second=254 amount=3 -kerning first=339 second=242 amount=1 -kerning first=192 second=203 amount=-10 -kerning first=300 second=98 amount=-2 -kerning first=258 second=204 amount=-7 -kerning first=278 second=331 amount=-2 -kerning first=281 second=111 amount=1 -kerning first=193 second=343 amount=-12 -kerning first=347 second=112 amount=1 -kerning first=197 second=293 amount=-12 -kerning first=85 second=85 amount=2 -kerning first=105 second=242 amount=1 -kerning first=240 second=357 amount=-1 -kerning first=348 second=282 amount=-3 -kerning first=201 second=243 amount=-2 -kerning first=329 second=295 amount=-1 -kerning first=244 second=307 amount=-2 -kerning first=267 second=244 amount=-1 -kerning first=287 second=371 amount=2 -kerning first=225 second=320 amount=-1 -kerning first=228 second=100 amount=2 -kerning first=8212 second=297 amount=2 -kerning first=206 second=333 amount=-2 -kerning first=209 second=113 amount=2 -kerning first=160 second=74 amount=-3 -kerning first=272 second=334 amount=4 -kerning first=295 second=271 amount=2 -kerning first=72 second=358 amount=-6 -kerning first=341 second=115 amount=-2 -kerning first=118 second=232 amount=4 -kerning first=194 second=76 amount=-7 -kerning first=99 second=245 amount=-1 -kerning first=260 second=77 amount=-8 -kerning first=195 second=246 amount=-12 -kerning first=80 second=258 amount=-14 -kerning first=300 second=361 amount=-2 -kerning first=304 second=311 amount=-2 -kerning first=84 second=208 amount=-8 -kerning first=222 second=103 amount=2 -kerning first=107 second=115 amount=1 -kerning first=347 second=375 amount=1 -kerning first=285 second=324 amount=2 -kerning first=223 second=273 amount=2 -kerning first=108 second=285 amount=2 -kerning first=354 second=105 amount=-2 -kerning first=374 second=262 amount=-1 -kerning first=332 second=338 amount=3 -kerning first=112 second=235 amount=2 -kerning first=335 second=118 amount=-2 -kerning first=270 second=287 amount=2 -kerning first=70 second=311 amount=-2 -kerning first=359 second=225 amount=2 -kerning first=193 second=199 amount=-11 -kerning first=298 second=314 amount=-2 -kerning first=78 second=211 amount=3 -kerning first=236 second=263 amount=1 -kerning first=121 second=275 amount=3 -kerning first=194 second=339 amount=-12 -kerning first=197 second=119 amount=-13 -kerning first=217 second=276 amount=-6 -kerning first=325 second=201 amount=-6 -kerning first=260 second=340 amount=-17 -kerning first=263 second=120 amount=2 -kerning first=283 second=277 amount=1 -kerning first=198 second=289 amount=-3 -kerning first=201 second=69 amount=-5 -kerning first=86 second=81 amount=5 -kerning first=221 second=226 amount=-3 -kerning first=241 second=353 amount=1 -kerning first=352 second=58 amount=-4 -kerning first=287 second=227 amount=5 -kerning first=330 second=291 amount=2 -kerning first=245 second=303 amount=-2 -kerning first=353 second=228 amount=3 -kerning first=373 second=355 amount=2 -kerning first=45 second=327 amount=-2 -kerning first=68 second=264 amount=4 -kerning first=226 second=316 amount=-1 -kerning first=111 second=328 amount=-2 -kerning first=114 second=108 amount=-1 -kerning first=295 second=97 amount=2 -kerning first=207 second=329 amount=-4 -kerning first=358 second=318 amount=-3 -kerning first=361 second=98 amount=-1 -kerning first=276 second=110 amount=-2 -kerning first=296 second=267 amount=-2 -kerning first=73 second=354 amount=-2 -kerning first=214 second=59 amount=-5 -kerning first=342 second=111 amount=-2 -kerning first=119 second=228 amount=5 -kerning first=362 second=268 amount=2 -kerning first=195 second=72 amount=-4 -kerning first=80 second=84 amount=-9 -kerning first=343 second=281 amount=-2 -kerning first=258 second=293 amount=-12 -kerning first=196 second=242 amount=-12 -kerning first=347 second=231 amount=1 -kerning first=223 second=99 amount=1 -kerning first=108 second=111 amount=1 -kerning first=286 second=320 amount=2 -kerning first=289 second=100 amount=5 -kerning first=204 second=112 amount=-2 -kerning first=309 second=257 amount=2 -kerning first=355 second=101 amount=1 -kerning first=8211 second=246 amount=4 -kerning first=267 second=333 amount=-1 -kerning first=270 second=113 amount=2 -kerning first=287 second=8211 amount=4 -kerning first=67 second=357 amount=2 -kerning first=290 second=270 amount=-2 -kerning first=113 second=231 amount=1 -kerning first=356 second=271 amount=-10 -kerning first=271 second=283 amount=-9 -kerning first=71 second=307 amount=1 -kerning first=229 second=359 amount=-1 -kerning first=160 second=193 amount=-3 -kerning first=275 second=233 amount=1 -kerning first=75 second=257 amount=-7 -kerning first=318 second=297 amount=-3 -kerning first=233 second=309 amount=-13 -kerning first=341 second=234 amount=-2 -kerning first=121 second=101 amount=3 -kerning first=256 second=246 amount=-12 -kerning first=276 second=373 amount=-2 -kerning first=194 second=195 amount=-7 -kerning first=79 second=207 amount=3 -kerning first=102 second=114 amount=-7 -kerning first=237 second=259 amount=2 -kerning first=119 second=8212 amount=4 -kerning first=260 second=196 amount=-7 -kerning first=365 second=311 amount=-1 -kerning first=283 second=103 amount=2 -kerning first=195 second=335 amount=-12 -kerning first=198 second=115 amount=-4 -kerning first=218 second=272 amount=-6 -kerning first=349 second=104 amount=1 -kerning first=264 second=116 amount=2 -kerning first=84 second=297 amount=-2 -kerning first=222 second=222 amount=-7 -kerning first=107 second=234 amount=1 -kerning first=350 second=274 amount=-3 -kerning first=268 second=66 amount=-2 -kerning first=331 second=287 amount=2 -kerning first=246 second=299 amount=-2 -kerning first=354 second=224 amount=-10 -kerning first=46 second=323 amount=-5 -kerning first=374 second=351 amount=-4 -kerning first=289 second=363 amount=2 -kerning first=204 second=375 amount=-2 -kerning first=315 second=80 amount=-4 -kerning first=227 second=312 amount=-1 -kerning first=335 second=237 amount=-2 -kerning first=112 second=324 amount=2 -kerning first=115 second=104 amount=1 -kerning first=359 second=314 amount=-1 -kerning first=274 second=326 amount=-2 -kerning first=277 second=106 amount=-13 -kerning first=192 second=118 amount=-13 -kerning first=97 second=287 amount=2 -kerning first=120 second=224 amount=2 -kerning first=258 second=119 amount=-13 -kerning first=343 second=107 amount=-1 -kerning first=278 second=276 amount=-5 -kerning first=193 second=288 amount=-11 -kerning first=196 second=68 amount=-10 -kerning first=324 second=120 amount=-1 -kerning first=259 second=289 amount=2 -kerning first=262 second=69 amount=-2 -kerning first=302 second=353 amount=-2 -kerning first=325 second=290 amount=3 -kerning first=368 second=354 amount=-6 -kerning first=221 second=315 amount=-3 -kerning first=329 second=240 amount=2 -kerning first=109 second=107 amount=-1 -kerning first=244 second=252 amount=-2 -kerning first=349 second=367 amount=1 -kerning first=44 second=276 amount=-4 -kerning first=287 second=316 amount=2 -kerning first=202 second=328 amount=-2 -kerning first=205 second=108 amount=-2 -kerning first=87 second=340 amount=-2 -kerning first=356 second=97 amount=-10 -kerning first=8212 second=242 amount=4 -kerning first=271 second=109 amount=-9 -kerning first=376 second=254 amount=-2 -kerning first=337 second=110 amount=-2 -kerning first=114 second=227 amount=-2 -kerning first=357 second=267 amount=-9 -kerning first=230 second=355 amount=-1 -kerning first=338 second=280 amount=-4 -kerning first=115 second=367 amount=1 -kerning first=256 second=72 amount=-4 -kerning first=296 second=356 amount=-2 -kerning first=342 second=230 amount=-2 -kerning first=192 second=381 amount=-7 -kerning first=80 second=203 amount=-9 -kerning first=103 second=110 amount=2 -kerning first=196 second=331 amount=-13 -kerning first=347 second=320 amount=1 -kerning first=370 second=257 amount=2 -kerning first=285 second=269 amount=2 -kerning first=331 second=113 amount=2 -kerning first=348 second=8211 amount=4 -kerning first=266 second=282 amount=-2 -kerning first=204 second=231 amount=-2 -kerning first=89 second=243 amount=-4 -kerning first=8211 second=335 amount=4 -kerning first=290 second=359 amount=2 -kerning first=70 second=256 amount=-12 -kerning first=205 second=371 amount=-2 -kerning first=113 second=320 amount=-1 -kerning first=116 second=100 amount=2 -kerning first=294 second=309 amount=-12 -kerning first=97 second=113 amount=2 -kerning first=337 second=373 amount=-2 -kerning first=160 second=282 amount=-6 -kerning first=275 second=322 amount=-1 -kerning first=193 second=114 amount=-12 -kerning first=210 second=8212 amount=3 -kerning first=98 second=283 amount=2 -kerning first=256 second=335 amount=-12 -kerning first=259 second=115 amount=1 -kerning first=194 second=284 amount=-11 -kerning first=79 second=296 amount=3 -kerning first=82 second=76 amount=3 -kerning first=102 second=233 amount=-8 -kerning first=345 second=273 amount=-2 -kerning first=260 second=285 amount=-10 -kerning first=368 second=210 amount=2 -kerning first=198 second=234 amount=-5 -kerning first=303 second=349 amount=1 -kerning first=103 second=373 amount=2 -kerning first=110 second=103 amount=2 -kerning first=8212 second=68 amount=-7 -kerning first=265 second=375 amount=-1 -kerning first=376 second=80 amount=-1 -kerning first=45 second=272 amount=-7 -kerning first=48 second=52 amount=-2 -kerning first=203 second=324 amount=-2 -kerning first=206 second=104 amount=-2 -kerning first=88 second=336 amount=-4 -kerning first=354 second=313 amount=-1 -kerning first=335 second=326 amount=-2 -kerning first=115 second=223 amount=4 -kerning first=358 second=263 amount=-7 -kerning first=273 second=275 amount=1 -kerning first=73 second=299 amount=-2 -kerning first=316 second=339 amount=1 -kerning first=231 second=351 amount=1 -kerning first=362 second=213 amount=2 -kerning first=277 second=225 amount=2 -kerning first=323 second=69 amount=-6 -kerning first=343 second=226 amount=-2 -kerning first=363 second=353 amount=1 -kerning first=278 second=365 amount=-2 -kerning first=58 second=262 amount=-3 -kerning first=193 second=377 amount=-7 -kerning first=304 second=82 amount=-2 -kerning first=104 second=106 amount=-10 -kerning first=197 second=327 amount=-15 -kerning first=325 second=379 amount=4 -kerning first=266 second=108 amount=2 -kerning first=289 second=45 amount=4 -kerning first=86 second=289 amount=6 -kerning first=89 second=69 amount=-4 -kerning first=329 second=329 amount=-3 -kerning first=109 second=226 amount=2 -kerning first=352 second=266 amount=3 -kerning first=270 second=58 amount=-3 -kerning first=67 second=302 amount=3 -kerning first=70 second=82 amount=-7 -kerning first=336 second=59 amount=-5 -kerning first=356 second=216 amount=-2 -kerning first=271 second=228 amount=-8 -kerning first=376 second=343 amount=-5 -kerning first=8212 second=331 amount=2 -kerning first=291 second=355 amount=2 -kerning first=206 second=367 amount=-2 -kerning first=114 second=316 amount=-1 -kerning first=75 second=202 amount=-9 -kerning first=318 second=242 amount=-9 -kerning first=98 second=109 amount=2 -kerning first=233 second=254 amount=-1 -kerning first=364 second=86 amount=2 -kerning first=279 second=98 amount=-1 -kerning first=194 second=110 amount=-13 -kerning first=76 second=342 amount=-4 -kerning first=342 second=319 amount=3 -kerning first=345 second=99 amount=-2 -kerning first=260 second=111 amount=-12 -kerning first=195 second=280 amount=-10 -kerning first=323 second=332 amount=3 -kerning first=103 second=229 amount=5 -kerning first=84 second=242 amount=-7 -kerning first=327 second=282 amount=-6 -kerning first=88 second=192 amount=-5 -kerning first=351 second=359 amount=1 -kerning first=46 second=268 amount=-3 -kerning first=292 second=88 amount=3 -kerning first=204 second=320 amount=-2 -kerning first=89 second=332 amount=-1 -kerning first=227 second=257 amount=2 -kerning first=312 second=245 amount=1 -kerning first=112 second=269 amount=2 -kerning first=355 second=309 amount=-12 -kerning first=358 second=89 amount=-1 -kerning first=70 second=345 amount=-3 -kerning first=208 second=270 amount=-6 -kerning first=254 second=114 amount=2 -kerning first=359 second=259 amount=2 -kerning first=232 second=347 amount=1 -kerning first=117 second=359 amount=-1 -kerning first=193 second=233 amount=-12 -kerning first=344 second=222 amount=-8 -kerning first=194 second=373 amount=-13 -kerning first=82 second=195 amount=3 -kerning first=220 second=90 amount=4 -kerning first=283 second=311 amount=-1 -kerning first=86 second=115 amount=3 -kerning first=221 second=260 amount=-3 -kerning first=349 second=312 amount=1 -kerning first=267 second=104 amount=-1 -kerning first=87 second=285 amount=2 -kerning first=333 second=105 amount=-2 -kerning first=248 second=117 amount=-2 -kerning first=268 second=274 amount=-2 -kerning first=45 second=361 amount=2 -kerning first=376 second=199 amount=-1 -kerning first=272 second=224 amount=2 -kerning first=207 second=363 amount=-2 -kerning first=115 second=312 amount=1 -kerning first=358 second=352 amount=-6 -kerning first=296 second=301 amount=-2 -kerning first=277 second=314 amount=-1 -kerning first=192 second=326 amount=-13 -kerning first=300 second=251 amount=-2 -kerning first=77 second=338 amount=3 -kerning first=80 second=118 amount=1 -kerning first=100 second=275 amount=1 -kerning first=258 second=327 amount=-15 -kerning first=261 second=107 amount=-1 -kerning first=196 second=276 amount=-10 -kerning first=84 second=68 amount=-8 -kerning first=104 second=225 amount=2 -kerning first=242 second=120 amount=-2 -kerning first=347 second=265 amount=1 -kerning first=350 second=45 amount=4 -kerning first=370 second=202 amount=-6 -kerning first=65 second=81 amount=-11 -kerning first=286 second=354 amount=-2 -kerning first=309 second=291 amount=2 -kerning first=8211 second=280 amount=-7 -kerning first=290 second=304 amount=3 -kerning first=70 second=201 amount=-9 -kerning first=205 second=316 amount=-2 -kerning first=113 second=265 amount=1 -kerning first=356 second=305 amount=-2 -kerning first=71 second=341 amount=1 -kerning first=209 second=266 amount=3 -kerning first=212 second=46 amount=-5 -kerning first=337 second=318 amount=-1 -kerning first=340 second=98 amount=-2 -kerning first=275 second=267 amount=1 -kerning first=193 second=59 amount=-10 -kerning first=75 second=291 amount=-7 -kerning first=78 second=71 amount=3 -kerning first=318 second=331 amount=-9 -kerning first=98 second=228 amount=5 -kerning first=118 second=355 amount=2 -kerning first=256 second=280 amount=-10 -kerning first=59 second=84 amount=-10 -kerning first=194 second=229 amount=-10 -kerning first=260 second=230 amount=-10 -kerning first=195 second=369 amount=-13 -kerning first=80 second=381 amount=-4 -kerning first=103 second=318 amount=2 -kerning first=346 second=358 amount=-3 -kerning first=369 second=295 amount=-1 -kerning first=84 second=331 amount=-6 -kerning first=222 second=256 amount=-13 -kerning first=307 second=244 amount=1 -kerning first=265 second=320 amount=-1 -kerning first=373 second=245 amount=4 -kerning first=65 second=344 amount=-17 -kerning first=88 second=281 amount=-2 -kerning first=354 second=258 amount=-13 -kerning first=332 second=8212 amount=3 -kerning first=358 second=208 amount=-8 -kerning first=73 second=244 amount=-2 -kerning first=254 second=233 amount=2 -kerning first=320 second=234 amount=-1 -kerning first=100 second=101 amount=1 -kerning first=193 second=322 amount=-12 -kerning first=196 second=102 amount=-12 -kerning first=78 second=334 amount=3 -kerning first=98 second=8212 amount=4 -kerning first=101 second=271 amount=2 -kerning first=344 second=311 amount=-2 -kerning first=197 second=272 amount=-10 -kerning first=328 second=104 amount=-1 -kerning first=243 second=116 amount=-1 -kerning first=263 second=273 amount=1 -kerning first=66 second=77 amount=2 -kerning first=201 second=222 amount=-6 -kerning first=86 second=234 amount=3 -kerning first=221 second=349 amount=-4 -kerning first=352 second=211 amount=3 -kerning first=8211 second=106 amount=-7 -kerning first=267 second=223 amount=2 -kerning first=375 second=118 amount=3 -kerning first=110 second=311 amount=-1 -kerning first=8212 second=276 amount=-7 -kerning first=376 second=288 amount=-1 -kerning first=294 second=80 amount=-2 -kerning first=206 second=312 amount=-2 -kerning first=114 second=261 amount=-2 -kerning first=357 second=301 amount=-3 -kerning first=360 second=81 amount=2 -kerning first=75 second=117 amount=-8 -kerning first=315 second=377 amount=2 -kerning first=99 second=224 amount=1 -kerning first=234 second=339 amount=1 -kerning first=345 second=44 amount=-7 -kerning first=119 second=351 amount=2 -kerning first=195 second=225 amount=-10 -kerning first=80 second=237 amount=1 -kerning first=300 second=340 amount=-2 -kerning first=238 second=289 amount=2 -kerning first=346 second=214 amount=3 -kerning first=261 second=226 amount=2 -kerning first=281 second=353 amount=1 -kerning first=196 second=365 amount=-13 -kerning first=222 second=82 amount=-7 -kerning first=327 second=227 amount=2 -kerning first=104 second=314 amount=-1 -kerning first=242 second=239 amount=-2 -kerning first=370 second=291 amount=2 -kerning first=285 second=303 amount=3 -kerning first=65 second=200 amount=-10 -kerning first=354 second=84 amount=-8 -kerning first=266 second=316 amount=2 -kerning first=46 second=213 amount=-3 -kerning first=289 second=253 amount=2 -kerning first=66 second=340 amount=-1 -kerning first=204 second=265 amount=-2 -kerning first=355 second=254 amount=-1 -kerning first=8211 second=369 amount=2 -kerning first=270 second=266 amount=4 -kerning first=73 second=70 amount=-2 -kerning first=74 second=240 amount=-5 -kerning first=360 second=344 amount=-2 -kerning first=298 second=293 amount=-2 -kerning first=101 second=97 amount=2 -kerning first=236 second=242 amount=1 -kerning first=341 second=357 amount=-1 -kerning first=121 second=254 amount=3 -kerning first=256 second=369 amount=-13 -kerning first=59 second=203 amount=-4 -kerning first=194 second=318 amount=-12 -kerning first=197 second=98 amount=-12 -kerning first=302 second=243 amount=-2 -kerning first=102 second=267 amount=-8 -kerning first=198 second=268 amount=-7 -kerning first=83 second=280 amount=-3 -kerning first=326 second=320 amount=-1 -kerning first=329 second=100 amount=2 -kerning first=244 second=112 amount=-2 -kerning first=349 second=257 amount=3 -kerning first=67 second=73 amount=3 -kerning first=307 second=333 amount=1 -kerning first=330 second=270 amount=-6 -kerning first=376 second=114 amount=-5 -kerning first=203 second=358 amount=-5 -kerning first=311 second=283 amount=1 -kerning first=226 second=295 amount=-1 -kerning first=111 second=307 amount=-2 -kerning first=354 second=347 amount=-10 -kerning first=269 second=359 amount=-1 -kerning first=230 second=245 amount=1 -kerning first=115 second=257 amount=3 -kerning first=358 second=297 amount=-2 -kerning first=273 second=309 amount=-12 -kerning first=296 second=246 amount=-2 -kerning first=73 second=333 amount=-2 -kerning first=254 second=322 amount=3 -kerning first=277 second=259 amount=2 -kerning first=192 second=271 amount=-10 -kerning first=323 second=103 amount=2 -kerning first=235 second=335 amount=1 -kerning first=238 second=115 amount=1 -kerning first=258 second=272 amount=-10 -kerning first=304 second=116 amount=-2 -kerning first=324 second=273 amount=2 -kerning first=239 second=285 amount=2 -kerning first=262 second=222 amount=-2 -kerning first=197 second=361 amount=-13 -kerning first=328 second=223 amount=4 -kerning first=371 second=287 amount=2 -kerning first=374 second=67 amount=-1 -kerning first=66 second=196 amount=-5 -kerning first=86 second=323 amount=2 -kerning first=89 second=103 amount=-3 -kerning first=244 second=375 amount=-2 -kerning first=8211 second=225 amount=4 -kerning first=375 second=237 amount=3 -kerning first=70 second=116 amount=-2 -kerning first=8212 second=365 amount=2 -kerning first=376 second=377 amount=-2 -kerning first=71 second=286 amount=3 -kerning first=74 second=66 amount=-5 -kerning first=209 second=211 amount=3 -kerning first=360 second=200 amount=-6 -kerning first=298 second=119 amount=-2 -kerning first=75 second=236 amount=-7 -kerning first=256 second=225 amount=-10 -kerning first=364 second=120 amount=-2 -kerning first=299 second=289 amount=2 -kerning first=368 second=70 amount=-2 -kerning first=195 second=314 amount=-12 -kerning first=80 second=326 amount=1 -kerning first=83 second=106 amount=-11 -kerning first=103 second=263 amount=2 -kerning first=369 second=240 amount=2 -kerning first=84 second=276 amount=-8 -kerning first=222 second=201 amount=-9 -kerning first=242 second=328 amount=-2 -kerning first=245 second=108 amount=-1 -kerning first=65 second=289 amount=-10 -kerning first=68 second=69 amount=-6 -kerning first=334 second=46 amount=-5 -kerning first=108 second=353 amount=1 -kerning first=354 second=203 amount=-8 -kerning first=204 second=354 amount=-2 -kerning first=312 second=279 amount=1 -kerning first=227 second=291 amount=2 -kerning first=112 second=303 amount=2 -kerning first=316 second=229 amount=2 -kerning first=359 second=293 amount=-1 -kerning first=192 second=97 amount=-10 -kerning first=258 second=98 amount=-12 -kerning first=193 second=267 amount=-12 -kerning first=81 second=59 amount=-5 -kerning first=216 second=204 amount=3 -kerning first=239 second=111 amount=1 -kerning first=344 second=256 amount=3 -kerning first=217 second=344 amount=-2 -kerning first=240 second=281 amount=1 -kerning first=371 second=113 amount=2 -kerning first=198 second=357 amount=-2 -kerning first=264 second=358 amount=-2 -kerning first=287 second=295 amount=2 -kerning first=245 second=371 amount=-2 -kerning first=356 second=76 amount=-1 -kerning first=8212 second=221 amount=3 -kerning first=376 second=233 amount=-4 -kerning first=291 second=245 amount=2 -kerning first=68 second=332 amount=4 -kerning first=71 second=112 amount=1 -kerning first=357 second=246 amount=-9 -kerning first=272 second=258 amount=-8 -kerning first=72 second=282 amount=-6 -kerning first=210 second=207 amount=3 -kerning first=318 second=102 amount=-4 -kerning first=276 second=208 amount=-5 -kerning first=296 second=335 amount=-2 -kerning first=299 second=115 amount=1 -kerning first=362 second=336 amount=2 -kerning first=365 second=116 amount=-1 -kerning first=323 second=222 amount=-2 -kerning first=100 second=309 amount=-12 -kerning first=343 second=349 amount=-2 -kerning first=258 second=361 amount=-13 -kerning first=366 second=286 amount=2 -kerning first=304 second=235 amount=-2 -kerning first=84 second=102 amount=-3 -kerning first=104 second=259 amount=2 -kerning first=347 second=299 amount=1 -kerning first=350 second=79 amount=3 -kerning first=262 second=311 amount=2 -kerning first=285 second=248 amount=2 -kerning first=65 second=115 amount=-11 -kerning first=85 second=272 amount=-6 -kerning first=243 second=324 amount=-2 -kerning first=246 second=104 amount=-1 -kerning first=351 second=249 amount=1 -kerning first=66 second=285 amount=3 -kerning first=89 second=222 amount=-1 -kerning first=109 second=349 amount=1 -kerning first=270 second=211 amount=4 -kerning first=375 second=326 amount=3 -kerning first=378 second=106 amount=-8 -kerning first=70 second=235 amount=-4 -kerning first=228 second=287 amount=2 -kerning first=356 second=339 amount=-7 -kerning first=271 second=351 amount=-8 -kerning first=71 second=375 amount=1 -kerning first=360 second=289 amount=2 -kerning first=298 second=238 amount=-2 -kerning first=318 second=365 amount=-9 -kerning first=344 second=82 amount=-8 -kerning first=256 second=314 amount=-12 -kerning first=194 second=263 amount=-12 -kerning first=217 second=200 amount=-6 -kerning first=240 second=107 amount=-1 -kerning first=260 second=264 amount=-11 -kerning first=198 second=213 amount=-7 -kerning first=218 second=340 amount=-2 -kerning first=221 second=120 amount=-7 -kerning first=369 second=329 amount=-3 -kerning first=44 second=81 amount=-3 -kerning first=287 second=121 amount=2 -kerning first=84 second=365 amount=-6 -kerning first=222 second=290 amount=4 -kerning first=350 second=342 amount=-3 -kerning first=373 second=279 amount=4 -kerning first=45 second=251 amount=2 -kerning first=376 second=59 amount=-5 -kerning first=311 second=228 amount=2 -kerning first=226 second=240 amount=2 -kerning first=331 second=355 amount=-1 -kerning first=111 second=252 amount=-2 -kerning first=246 second=367 amount=-2 -kerning first=272 second=84 amount=-6 -kerning first=69 second=328 amount=-2 -kerning first=207 second=253 amount=-2 -kerning first=358 second=242 amount=-7 -kerning first=273 second=254 amount=-1 -kerning first=254 second=267 amount=2 -kerning first=192 second=216 amount=-11 -kerning first=300 second=111 amount=-2 -kerning first=77 second=228 amount=1 -kerning first=97 second=355 amount=-1 -kerning first=278 second=344 amount=-6 -kerning first=193 second=356 amount=-20 -kerning first=301 second=281 amount=1 -kerning first=259 second=357 amount=-1 -kerning first=82 second=318 amount=-2 -kerning first=325 second=358 amount=-6 -kerning first=266 second=87 amount=4 -kerning first=66 second=111 amount=2 -kerning first=86 second=268 amount=5 -kerning first=244 second=320 amount=-1 -kerning first=267 second=257 amount=1 -kerning first=44 second=344 amount=-4 -kerning first=228 second=113 amount=2 -kerning first=245 second=8211 amount=3 -kerning first=356 second=195 amount=-13 -kerning first=376 second=322 amount=-2 -kerning first=71 second=231 amount=3 -kerning first=114 second=295 amount=-1 -kerning first=357 second=335 amount=-9 -kerning first=160 second=87 amount=-3 -kerning first=210 second=296 amount=3 -kerning first=233 second=233 amount=1 -kerning first=118 second=245 amount=4 -kerning first=361 second=285 amount=2 -kerning first=194 second=89 amount=-7 -kerning first=260 second=90 amount=-7 -kerning first=195 second=259 amount=-10 -kerning first=241 second=103 amount=2 -kerning first=199 second=209 amount=4 -kerning first=304 second=324 amount=-2 -kerning first=350 second=198 amount=-11 -kerning first=45 second=77 amount=4 -kerning first=373 second=105 amount=2 -kerning first=285 second=337 amount=2 -kerning first=65 second=234 amount=-12 -kerning first=246 second=223 amount=2 -kerning first=354 second=118 amount=-5 -kerning first=289 second=287 amount=5 -kerning first=204 second=299 amount=-2 -kerning first=89 second=311 amount=-2 -kerning first=312 second=224 amount=2 -kerning first=112 second=248 amount=2 -kerning first=358 second=68 amount=-8 -kerning first=70 second=324 amount=-3 -kerning first=73 second=104 amount=-2 -kerning first=294 second=377 amount=4 -kerning first=74 second=274 amount=-5 -kerning first=235 second=106 amount=-13 -kerning first=160 second=350 amount=-3 -kerning first=278 second=200 amount=-5 -kerning first=58 second=67 amount=-3 -kerning first=193 second=212 amount=-11 -kerning first=78 second=224 amount=2 -kerning first=98 second=351 amount=2 -kerning first=367 second=108 amount=-1 -kerning first=194 second=352 amount=-8 -kerning first=302 second=277 amount=-2 -kerning first=217 second=289 amount=2 -kerning first=220 second=69 amount=-6 -kerning first=325 second=214 amount=3 -kerning first=102 second=301 amount=-7 -kerning first=240 second=226 amount=2 -kerning first=260 second=353 amount=-11 -kerning first=368 second=278 amount=-6 -kerning first=286 second=70 amount=-2 -kerning first=201 second=82 amount=-6 -kerning first=349 second=291 amount=3 -kerning first=352 second=71 amount=3 -kerning first=372 second=228 amount=2 -kerning first=44 second=200 amount=-4 -kerning first=287 second=240 amount=5 -kerning first=67 second=107 amount=2 -kerning first=87 second=264 amount=2 -kerning first=245 second=316 amount=-1 -kerning first=353 second=241 amount=1 -kerning first=45 second=340 amount=-6 -kerning first=226 second=329 amount=-3 -kerning first=354 second=381 amount=-2 -kerning first=272 second=203 amount=-6 -kerning first=72 second=227 amount=2 -kerning first=207 second=342 amount=-2 -kerning first=230 second=279 amount=1 -kerning first=338 second=204 amount=-1 -kerning first=115 second=291 amount=3 -kerning first=358 second=331 amount=-6 -kerning first=73 second=367 amount=-2 -kerning first=234 second=229 amount=2 -kerning first=119 second=241 amount=2 -kerning first=277 second=293 amount=-1 -kerning first=195 second=85 amount=-7 -kerning first=320 second=357 amount=-2 -kerning first=100 second=254 amount=-1 -kerning first=281 second=243 amount=1 -kerning first=58 second=330 amount=-5 -kerning first=347 second=244 amount=1 -kerning first=328 second=257 amount=2 -kerning first=266 second=206 amount=3 -kerning first=289 second=113 amount=5 -kerning first=86 second=357 amount=3 -kerning first=332 second=207 amount=3 -kerning first=352 second=334 amount=3 -kerning first=8211 second=259 amount=4 -kerning first=375 second=271 amount=7 -kerning first=205 second=295 amount=-2 -kerning first=113 second=244 amount=1 -kerning first=248 second=359 amount=-1 -kerning first=356 second=284 amount=-2 -kerning first=71 second=320 amount=2 -kerning first=74 second=100 amount=-5 -kerning first=160 second=206 amount=-4 -kerning first=275 second=246 amount=1 -kerning first=75 second=270 amount=-9 -kerning first=233 second=322 amount=-1 -kerning first=121 second=114 amount=3 -kerning first=256 second=259 amount=-10 -kerning first=194 second=208 amount=-10 -kerning first=99 second=347 amount=1 -kerning first=260 second=209 amount=-15 -kerning first=283 second=116 amount=-1 -kerning first=195 second=348 amount=-8 -kerning first=303 second=273 amount=2 -kerning first=218 second=285 amount=2 -kerning first=221 second=65 amount=-3 -kerning first=103 second=297 amount=3 -kerning first=349 second=117 amount=1 -kerning first=261 second=349 amount=1 -kerning first=199 second=298 amount=3 -kerning first=307 second=223 amount=3 -kerning first=87 second=90 amount=4 -kerning first=45 second=196 amount=-13 -kerning first=373 second=224 amount=5 -kerning first=65 second=323 amount=-15 -kerning first=68 second=103 amount=2 -kerning first=203 second=248 amount=-2 -kerning first=88 second=260 amount=-5 -kerning first=246 second=312 amount=-2 -kerning first=354 second=237 amount=-2 -kerning first=46 second=336 amount=-3 -kerning first=335 second=250 amount=-2 -kerning first=112 second=337 amount=2 -kerning first=115 second=117 amount=1 -kerning first=296 second=106 amount=-14 -kerning first=208 second=338 amount=4 -kerning first=316 second=263 amount=1 -kerning first=116 second=287 amount=2 -kerning first=74 second=363 amount=-4 -kerning first=235 second=225 amount=2 -kerning first=340 second=340 amount=-8 -kerning first=343 second=120 amount=-2 -kerning first=196 second=81 amount=-11 -kerning first=301 second=226 amount=2 -kerning first=262 second=82 amount=-4 -kerning first=367 second=227 amount=2 -kerning first=201 second=201 amount=-5 -kerning first=86 second=213 amount=5 -kerning first=221 second=328 amount=-5 -kerning first=224 second=108 amount=-1 -kerning first=109 second=120 amount=-1 -kerning first=8211 second=85 amount=5 -kerning first=375 second=97 amount=7 -kerning first=205 second=121 amount=-2 -kerning first=356 second=110 amount=-6 -kerning first=268 second=342 amount=-4 -kerning first=271 second=122 amount=-10 -kerning first=291 second=279 amount=2 -kerning first=376 second=267 amount=-4 -kerning first=209 second=71 amount=3 -kerning first=229 second=228 amount=2 -kerning first=114 second=240 amount=-2 -kerning first=295 second=229 amount=2 -kerning first=256 second=85 amount=-7 -kerning first=361 second=230 amount=1 -kerning first=276 second=242 amount=-2 -kerning first=296 second=369 amount=-2 -kerning first=79 second=46 amount=-5 -kerning first=234 second=318 amount=-1 -kerning first=195 second=204 amount=-7 -kerning first=80 second=216 amount=3 -kerning first=303 second=99 amount=1 -kerning first=346 second=193 amount=-9 -kerning first=369 second=100 amount=2 -kerning first=196 second=344 amount=-17 -kerning first=304 second=269 amount=-2 -kerning first=104 second=293 amount=-1 -kerning first=347 second=333 amount=1 -kerning first=370 second=270 amount=-6 -kerning first=223 second=231 amount=1 -kerning first=108 second=243 amount=1 -kerning first=351 second=283 amount=1 -kerning first=266 second=295 amount=2 -kerning first=289 second=232 amount=2 -kerning first=204 second=244 amount=-2 -kerning first=89 second=256 amount=-3 -kerning first=332 second=296 amount=3 -kerning first=70 second=269 amount=-4 -kerning first=208 second=194 amount=-8 -kerning first=113 second=333 amount=1 -kerning first=116 second=113 amount=2 -kerning first=356 second=373 amount=-5 -kerning first=209 second=334 amount=3 -kerning first=232 second=271 amount=2 -kerning first=340 second=196 amount=3 -kerning first=363 second=103 amount=2 -kerning first=275 second=335 amount=1 -kerning first=75 second=359 amount=-7 -kerning first=344 second=116 amount=-2 -kerning first=121 second=233 amount=3 -kerning first=256 second=348 amount=-8 -kerning first=364 second=273 amount=2 -kerning first=279 second=285 amount=2 -kerning first=197 second=77 amount=-8 -kerning first=302 second=222 amount=-2 -kerning first=102 second=246 amount=-8 -kerning first=348 second=66 amount=-3 -kerning first=260 second=298 amount=-7 -kerning first=368 second=223 amount=2 -kerning first=283 second=235 amount=1 -kerning first=241 second=311 amount=-1 -kerning first=349 second=236 amount=1 -kerning first=222 second=324 amount=2 -kerning first=225 second=104 amount=-1 -kerning first=110 second=116 amount=-1 -kerning first=8212 second=81 amount=5 -kerning first=45 second=285 amount=4 -kerning first=291 second=105 amount=3 -kerning first=68 second=222 amount=-5 -kerning first=203 second=337 amount=-2 -kerning first=206 second=117 amount=-2 -kerning first=354 second=326 amount=-6 -kerning first=357 second=106 amount=-13 -kerning first=230 second=224 amount=2 -kerning first=115 second=236 amount=1 -kerning first=358 second=276 amount=-8 -kerning first=276 second=68 amount=-5 -kerning first=73 second=312 amount=-2 -kerning first=339 second=289 amount=2 -kerning first=254 second=301 amount=2 -kerning first=362 second=226 amount=2 -kerning first=77 second=262 amount=3 -kerning first=323 second=82 amount=-2 -kerning first=235 second=314 amount=-1 -kerning first=196 second=200 amount=-10 -kerning first=101 second=339 amount=1 -kerning first=262 second=201 amount=-2 -kerning first=367 second=316 amount=-1 -kerning first=282 second=328 amount=-2 -kerning first=285 second=108 amount=2 -kerning first=197 second=340 amount=-17 -kerning first=105 second=289 amount=2 -kerning first=348 second=329 amount=-5 -kerning first=351 second=109 amount=1 -kerning first=374 second=46 amount=-5 -kerning first=286 second=278 amount=-2 -kerning first=204 second=70 amount=-2 -kerning first=86 second=302 amount=5 -kerning first=89 second=82 amount=-1 -kerning first=224 second=227 amount=2 -kerning first=8211 second=204 amount=-5 -kerning first=267 second=291 amount=1 -kerning first=270 second=71 amount=4 -kerning first=356 second=229 amount=-10 -kerning first=8212 second=344 amount=-6 -kerning first=71 second=265 amount=3 -kerning first=74 second=45 amount=-3 -kerning first=232 second=97 amount=2 -kerning first=357 second=369 amount=-9 -kerning first=295 second=318 amount=-1 -kerning first=298 second=98 amount=-2 -kerning first=233 second=267 amount=1 -kerning first=118 second=279 amount=4 -kerning first=256 second=204 amount=-7 -kerning first=276 second=331 amount=-2 -kerning first=279 second=111 amount=1 -kerning first=195 second=293 amount=-12 -kerning first=103 second=242 amount=2 -kerning first=346 second=282 amount=-3 -kerning first=304 second=358 amount=-2 -kerning first=242 second=307 amount=-2 -kerning first=265 second=244 amount=-1 -kerning first=45 second=111 amount=4 -kerning first=285 second=371 amount=2 -kerning first=65 second=268 amount=-11 -kerning first=226 second=100 amount=2 -kerning first=111 second=112 amount=-2 -kerning first=204 second=333 amount=-2 -kerning first=89 second=345 amount=-5 -kerning first=358 second=102 amount=-3 -kerning first=270 second=334 amount=4 -kerning first=70 second=358 amount=-9 -kerning first=339 second=115 amount=1 -kerning first=192 second=76 amount=-7 -kerning first=258 second=77 amount=-8 -kerning first=193 second=246 amount=-12 -kerning first=298 second=361 amount=-2 -kerning first=121 second=322 amount=3 -kerning first=197 second=196 amount=-7 -kerning first=302 second=311 amount=-2 -kerning first=220 second=103 amount=2 -kerning first=102 second=335 amount=-8 -kerning first=105 second=115 amount=1 -kerning first=286 second=104 amount=2 -kerning first=198 second=336 amount=-7 -kerning first=221 second=273 amount=-3 -kerning first=106 second=285 amount=2 -kerning first=330 second=338 amount=3 -kerning first=333 second=118 amount=-2 -kerning first=353 second=275 amount=1 -kerning first=8212 second=200 amount=-7 -kerning first=45 second=374 amount=3 -kerning first=376 second=212 amount=-1 -kerning first=291 second=224 amount=5 -kerning first=206 second=236 amount=-2 -kerning first=311 second=351 amount=1 -kerning first=111 second=375 amount=-2 -kerning first=357 second=225 amount=-8 -kerning first=118 second=105 amount=2 -kerning first=358 second=365 amount=-6 -kerning first=56 second=54 amount=2 -kerning first=296 second=314 amount=-2 -kerning first=99 second=118 amount=-1 -kerning first=234 second=263 amount=1 -kerning first=119 second=275 amount=4 -kerning first=192 second=339 amount=-12 -kerning first=195 second=119 amount=-13 -kerning first=323 second=201 amount=-6 -kerning first=258 second=340 amount=-17 -kerning first=261 second=120 amount=-1 -kerning first=281 second=277 amount=1 -kerning first=196 second=289 amount=-10 -kerning first=199 second=69 amount=-2 -kerning first=84 second=81 amount=-2 -kerning first=219 second=226 amount=2 -kerning first=239 second=353 amount=1 -kerning first=350 second=58 amount=-4 -kerning first=285 second=227 amount=5 -kerning first=328 second=291 amount=2 -kerning first=243 second=303 amount=-2 -kerning first=351 second=228 amount=3 -kerning first=371 second=355 amount=-1 -kerning first=66 second=264 amount=3 -kerning first=89 second=201 amount=-4 -kerning first=224 second=316 amount=-1 -kerning first=112 second=108 amount=3 -kerning first=205 second=329 amount=-4 -kerning first=356 second=318 amount=-3 -kerning first=359 second=98 amount=-1 -kerning first=274 second=110 amount=-2 -kerning first=71 second=354 amount=-2 -kerning first=212 second=59 amount=-5 -kerning first=337 second=331 amount=-2 -kerning first=117 second=228 amount=2 -kerning first=340 second=111 amount=-2 -kerning first=360 second=268 amount=2 -kerning first=193 second=72 amount=-4 -kerning first=78 second=84 amount=-6 -kerning first=98 second=241 amount=2 -kerning first=341 second=281 amount=-2 -kerning first=256 second=293 amount=-12 -kerning first=194 second=242 amount=-12 -kerning first=345 second=231 amount=-2 -kerning first=198 second=192 amount=-6 -kerning first=221 second=99 amount=-4 -kerning first=103 second=331 amount=2 -kerning first=106 second=111 amount=1 -kerning first=372 second=88 amount=3 -kerning first=284 second=320 amount=2 -kerning first=287 second=100 amount=5 -kerning first=307 second=257 amount=2 -kerning first=84 second=344 amount=-5 -kerning first=107 second=281 amount=1 -kerning first=353 second=101 amount=1 -kerning first=265 second=333 amount=-1 -kerning first=285 second=8211 amount=4 -kerning first=65 second=357 amount=-12 -kerning first=203 second=282 amount=-5 -kerning first=354 second=271 amount=-10 -kerning first=207 second=232 amount=-2 -kerning first=312 second=347 amount=1 -kerning first=227 second=359 amount=-1 -kerning first=112 second=371 amount=2 -kerning first=273 second=233 amount=1 -kerning first=231 second=309 amount=-11 -kerning first=339 second=234 amount=1 -kerning first=119 second=101 amount=4 -kerning first=254 second=246 amount=2 -kerning first=274 second=373 amount=-2 -kerning first=192 second=195 amount=-7 -kerning first=235 second=259 amount=2 -kerning first=120 second=271 amount=2 -kerning first=258 second=196 amount=-7 -kerning first=363 second=311 amount=-1 -kerning first=281 second=103 amount=2 -kerning first=193 second=335 amount=-12 -kerning first=196 second=115 amount=-11 -kerning first=347 second=104 amount=1 -kerning first=262 second=116 amount=2 -kerning first=197 second=285 amount=-10 -kerning first=220 second=222 amount=-2 -kerning first=105 second=234 amount=1 -kerning first=240 second=349 amount=1 -kerning first=348 second=274 amount=-3 -kerning first=266 second=66 amount=-2 -kerning first=286 second=223 amount=3 -kerning first=329 second=287 amount=2 -kerning first=8211 second=119 amount=2 -kerning first=44 second=323 amount=-5 -kerning first=287 second=363 amount=2 -kerning first=202 second=375 amount=-3 -kerning first=313 second=80 amount=-4 -kerning first=225 second=312 amount=-1 -kerning first=333 second=237 amount=-2 -kerning first=113 second=104 amount=-1 -kerning first=248 second=249 amount=-2 -kerning first=8212 second=289 amount=4 -kerning first=160 second=66 amount=-6 -kerning first=275 second=106 amount=-13 -kerning first=118 second=224 amount=5 -kerning first=256 second=119 amount=-13 -kerning first=341 second=107 amount=-1 -kerning first=276 second=276 amount=-5 -kerning first=194 second=68 amount=-10 -kerning first=319 second=340 amount=-4 -kerning first=257 second=289 amount=2 -kerning first=260 second=69 amount=-10 -kerning first=300 second=353 amount=-2 -kerning first=80 second=250 amount=1 -kerning first=323 second=290 amount=3 -kerning first=366 second=354 amount=-6 -kerning first=304 second=303 amount=-2 -kerning first=84 second=200 amount=-8 -kerning first=327 second=240 amount=2 -kerning first=242 second=252 amount=-2 -kerning first=347 second=367 amount=1 -kerning first=285 second=316 amount=2 -kerning first=65 second=213 amount=-11 -kerning first=200 second=328 amount=-2 -kerning first=85 second=340 amount=-2 -kerning first=223 second=265 amount=1 -kerning first=108 second=277 amount=1 -kerning first=354 second=97 amount=-10 -kerning first=374 second=254 amount=-2 -kerning first=66 second=353 amount=1 -kerning first=89 second=290 amount=-1 -kerning first=335 second=110 amount=-2 -kerning first=112 second=227 amount=5 -kerning first=70 second=303 amount=-4 -kerning first=208 second=228 amount=2 -kerning first=228 second=355 amount=-1 -kerning first=294 second=356 amount=-6 -kerning first=340 second=230 amount=-2 -kerning first=120 second=97 amount=2 -kerning first=78 second=203 amount=-6 -kerning first=121 second=267 amount=3 -kerning first=59 second=216 amount=-3 -kerning first=194 second=331 amount=-13 -kerning first=197 second=111 amount=-12 -kerning first=345 second=320 amount=-1 -kerning first=260 second=332 amount=-11 -kerning first=368 second=257 amount=2 -kerning first=283 second=269 amount=1 -kerning first=198 second=281 amount=-5 -kerning first=86 second=73 amount=5 -kerning first=329 second=113 amount=2 -kerning first=106 second=230 amount=1 -kerning first=346 second=8211 amount=4 -kerning first=264 second=282 amount=-2 -kerning first=67 second=86 amount=4 -kerning first=222 second=358 amount=-9 -kerning first=245 second=295 amount=-1 -kerning first=8212 second=115 amount=4 -kerning first=45 second=319 amount=3 -kerning first=373 second=347 amount=1 -kerning first=68 second=256 amount=-8 -kerning first=203 second=371 amount=-2 -kerning first=111 second=320 amount=-1 -kerning first=114 second=100 amount=-2 -kerning first=292 second=309 amount=-12 -kerning first=335 second=373 amount=-2 -kerning first=112 second=8211 amount=4 -kerning first=273 second=322 amount=-1 -kerning first=208 second=8212 amount=4 -kerning first=254 second=335 amount=2 -kerning first=257 second=115 amount=1 -kerning first=192 second=284 amount=-11 -kerning first=100 second=233 amount=1 -kerning first=343 second=273 amount=-2 -kerning first=258 second=285 amount=-10 -kerning first=366 second=210 amount=2 -kerning first=58 second=309 amount=-11 -kerning first=196 second=234 amount=-12 -kerning first=301 second=349 amount=1 -kerning first=327 second=66 amount=2 -kerning first=108 second=103 amount=2 -kerning first=263 second=375 amount=-1 -kerning first=374 second=80 amount=-1 -kerning first=286 second=312 amount=2 -kerning first=201 second=324 amount=-2 -kerning first=204 second=104 amount=-2 -kerning first=86 second=336 amount=5 -kerning first=89 second=116 amount=-2 -kerning first=109 second=273 amount=2 -kerning first=8211 second=238 amount=2 -kerning first=375 second=250 amount=3 -kerning first=333 second=326 amount=-2 -kerning first=113 second=223 amount=2 -kerning first=356 second=263 amount=-7 -kerning first=271 second=275 amount=-9 -kerning first=71 second=299 amount=1 -kerning first=209 second=224 amount=2 -kerning first=229 second=351 amount=1 -kerning first=360 second=213 amount=2 -kerning first=275 second=225 amount=2 -kerning first=318 second=289 amount=-8 -kerning first=341 second=226 amount=-2 -kerning first=361 second=353 amount=1 -kerning first=276 second=365 amount=-2 -kerning first=302 second=82 amount=-2 -kerning first=102 second=106 amount=-13 -kerning first=195 second=327 amount=-15 -kerning first=198 second=107 amount=-2 -kerning first=221 second=44 amount=-5 -kerning first=323 second=379 amount=4 -kerning first=264 second=108 amount=2 -kerning first=287 second=45 amount=4 -kerning first=84 second=289 amount=-10 -kerning first=87 second=69 amount=-6 -kerning first=222 second=214 amount=4 -kerning first=107 second=226 amount=2 -kerning first=245 second=121 amount=-2 -kerning first=350 second=266 amount=3 -kerning first=65 second=302 amount=-7 -kerning first=68 second=82 amount=-3 -kerning first=334 second=59 amount=-5 -kerning first=354 second=216 amount=-2 -kerning first=269 second=228 amount=1 -kerning first=374 second=343 amount=-5 -kerning first=289 second=355 amount=2 -kerning first=204 second=367 amount=-2 -kerning first=89 second=379 amount=-2 -kerning first=112 second=316 amount=3 -kerning first=316 second=242 amount=1 -kerning first=231 second=254 amount=-1 -kerning first=362 second=86 amount=2 -kerning first=277 second=98 amount=-1 -kerning first=192 second=110 amount=-13 -kerning first=74 second=342 amount=-4 -kerning first=340 second=319 amount=3 -kerning first=258 second=111 amount=-12 -kerning first=343 second=99 amount=-2 -kerning first=193 second=280 amount=-10 -kerning first=101 second=229 amount=2 -kerning first=197 second=230 amount=-10 -kerning first=325 second=282 amount=-6 -kerning first=102 second=369 amount=-7 -kerning first=86 second=192 amount=-3 -kerning first=221 second=307 amount=-3 -kerning first=349 second=359 amount=1 -kerning first=44 second=268 amount=-3 -kerning first=290 second=88 amount=1 -kerning first=67 second=205 amount=3 -kerning first=87 second=332 amount=2 -kerning first=225 second=257 amount=2 -kerning first=353 second=309 amount=-9 -kerning first=356 second=89 amount=-1 -kerning first=271 second=101 amount=-9 -kerning first=376 second=246 amount=-4 -kerning first=8212 second=234 amount=4 -kerning first=337 second=102 amount=-2 -kerning first=357 second=259 amount=-8 -kerning first=272 second=271 amount=2 -kerning first=318 second=115 amount=-8 -kerning first=230 second=347 amount=1 -kerning first=338 second=272 amount=-2 -kerning first=115 second=359 amount=1 -kerning first=119 second=309 amount=-9 -kerning first=342 second=222 amount=-8 -kerning first=192 second=373 amount=-13 -kerning first=80 second=195 amount=-14 -kerning first=218 second=90 amount=4 -kerning first=100 second=322 amount=-1 -kerning first=281 second=311 amount=-1 -kerning first=196 second=323 amount=-15 -kerning first=304 second=248 amount=-2 -kerning first=84 second=115 amount=-10 -kerning first=347 second=312 amount=1 -kerning first=265 second=104 amount=-1 -kerning first=85 second=285 amount=2 -kerning first=88 second=65 amount=-5 -kerning first=246 second=117 amount=-2 -kerning first=266 second=274 amount=-2 -kerning first=374 second=199 amount=-1 -kerning first=8211 second=327 amount=-2 -kerning first=270 second=224 amount=2 -kerning first=375 second=339 amount=3 -kerning first=70 second=248 amount=-4 -kerning first=205 second=363 amount=-2 -kerning first=356 second=352 amount=-6 -kerning first=74 second=198 amount=-9 -kerning first=337 second=365 amount=-2 -kerning first=160 second=274 amount=-6 -kerning first=275 second=314 amount=-1 -kerning first=298 second=251 amount=-2 -kerning first=75 second=338 amount=-8 -kerning first=98 second=275 amount=2 -kerning first=256 second=327 amount=-15 -kerning first=259 second=107 amount=-1 -kerning first=194 second=276 amount=-10 -kerning first=102 second=225 amount=-6 -kerning first=240 second=120 amount=-1 -kerning first=345 second=265 amount=-2 -kerning first=348 second=45 amount=4 -kerning first=368 second=202 amount=-6 -kerning first=198 second=226 amount=-3 -kerning first=103 second=365 amount=2 -kerning first=284 second=354 amount=-2 -kerning first=307 second=291 amount=2 -kerning first=222 second=303 amount=2 -kerning first=330 second=228 amount=2 -kerning first=45 second=264 amount=5 -kerning first=288 second=304 amount=3 -kerning first=68 second=201 amount=-6 -kerning first=88 second=328 amount=-3 -kerning first=354 second=305 amount=-2 -kerning first=272 second=97 amount=2 -kerning first=210 second=46 amount=-5 -kerning first=335 second=318 amount=-1 -kerning first=192 second=229 amount=-10 -kerning first=320 second=281 amount=-1 -kerning first=235 second=293 amount=-1 -kerning first=258 second=230 amount=-10 -kerning first=193 second=369 amount=-13 -kerning first=304 second=74 amount=-2 -kerning first=78 second=381 amount=4 -kerning first=101 second=318 amount=-1 -kerning first=104 second=98 amount=-1 -kerning first=344 second=358 amount=-8 -kerning first=367 second=295 amount=-1 -kerning first=197 second=319 amount=-7 -kerning first=263 second=320 amount=-1 -kerning first=86 second=281 amount=3 -kerning first=352 second=258 amount=-9 -kerning first=290 second=207 amount=3 -kerning first=70 second=74 amount=-5 -kerning first=356 second=208 amount=-8 -kerning first=8212 second=323 amount=-2 -kerning first=376 second=335 amount=-4 -kerning first=291 second=347 amount=2 -kerning first=71 second=244 amount=3 -kerning first=206 second=359 amount=-2 -kerning first=75 second=194 amount=-3 -kerning first=318 second=234 amount=-9 -kerning first=98 second=101 amount=2 -kerning first=233 second=246 amount=1 -kerning first=194 second=102 amount=-12 -kerning first=99 second=271 amount=1 -kerning first=342 second=311 amount=-2 -kerning first=260 second=103 amount=-10 -kerning first=195 second=272 amount=-10 -kerning first=80 second=284 amount=3 -kerning first=326 second=104 amount=-1 -kerning first=241 second=116 amount=-1 -kerning first=261 second=273 amount=2 -kerning first=199 second=222 amount=-2 -kerning first=304 second=337 amount=-2 -kerning first=84 second=234 amount=-7 -kerning first=327 second=274 amount=-6 -kerning first=350 second=211 amount=3 -kerning first=265 second=223 amount=2 -kerning first=45 second=90 amount=-4 -kerning first=370 second=338 amount=2 -kerning first=373 second=118 amount=3 -kerning first=331 second=224 amount=2 -kerning first=246 second=236 amount=-2 -kerning first=374 second=288 amount=-1 -kerning first=292 second=80 amount=-2 -kerning first=204 second=312 amount=-2 -kerning first=89 second=324 amount=-5 -kerning first=358 second=81 amount=-2 -kerning first=70 second=337 amount=-4 -kerning first=73 second=117 amount=-2 -kerning first=208 second=262 amount=4 -kerning first=313 second=377 amount=2 -kerning first=254 second=106 amount=-9 -kerning first=74 second=287 amount=-5 -kerning first=77 second=67 amount=3 -kerning first=320 second=107 amount=-2 -kerning first=97 second=224 amount=2 -kerning first=232 second=339 amount=1 -kerning first=343 second=44 amount=-7 -kerning first=117 second=351 amount=1 -kerning first=58 second=80 amount=-4 -kerning first=193 second=225 amount=-10 -kerning first=298 second=340 amount=-2 -kerning first=236 second=289 amount=2 -kerning first=121 second=301 amount=3 -kerning first=259 second=226 amount=2 -kerning first=279 second=353 amount=1 -kerning first=194 second=365 amount=-13 -kerning first=220 second=82 amount=-2 -kerning first=325 second=227 amount=2 -kerning first=368 second=291 amount=2 -kerning first=198 second=315 amount=-3 -kerning first=86 second=107 amount=3 -kerning first=352 second=84 amount=-3 -kerning first=264 second=316 amount=2 -kerning first=44 second=213 amount=-3 -kerning first=287 second=253 amount=2 -kerning first=245 second=329 amount=-3 -kerning first=248 second=109 amount=-2 -kerning first=45 second=353 amount=4 -kerning first=68 second=290 amount=4 -kerning first=71 second=70 amount=-2 -kerning first=272 second=216 amount=4 -kerning first=72 second=240 amount=2 -kerning first=207 second=355 amount=-2 -kerning first=358 second=344 amount=-5 -kerning first=296 second=293 amount=-2 -kerning first=99 second=97 amount=1 -kerning first=234 second=242 amount=1 -kerning first=339 second=357 amount=-1 -kerning first=119 second=254 amount=3 -kerning first=254 second=369 amount=2 -kerning first=192 second=318 amount=-12 -kerning first=195 second=98 amount=-12 -kerning first=80 second=110 amount=1 -kerning first=300 second=243 amount=-2 -kerning first=100 second=267 amount=1 -kerning first=258 second=319 amount=-7 -kerning first=196 second=268 amount=-11 -kerning first=324 second=320 amount=-1 -kerning first=327 second=100 amount=2 -kerning first=242 second=112 amount=-2 -kerning first=347 second=257 amount=3 -kerning first=65 second=73 amount=-7 -kerning first=374 second=114 amount=-5 -kerning first=66 second=243 amount=2 -kerning first=201 second=358 amount=-5 -kerning first=309 second=283 amount=1 -kerning first=224 second=295 amount=-1 -kerning first=8211 second=272 amount=-7 -kerning first=267 second=359 amount=-1 -kerning first=290 second=296 amount=3 -kerning first=70 second=193 amount=-12 -kerning first=208 second=88 amount=-3 -kerning first=113 second=257 amount=2 -kerning first=356 second=297 amount=-2 -kerning first=271 second=309 amount=-13 -kerning first=71 second=333 amount=3 -kerning first=74 second=113 amount=-5 -kerning first=275 second=259 amount=2 -kerning first=75 second=283 amount=-10 -kerning first=233 second=335 amount=1 -kerning first=236 second=115 amount=1 -kerning first=118 second=347 amount=2 -kerning first=256 second=272 amount=-10 -kerning first=302 second=116 amount=-2 -kerning first=237 second=285 amount=2 -kerning first=260 second=222 amount=-17 -kerning first=195 second=361 amount=-13 -kerning first=80 second=373 amount=1 -kerning first=326 second=223 amount=4 -kerning first=369 second=287 amount=2 -kerning first=199 second=311 amount=2 -kerning first=84 second=323 amount=-1 -kerning first=87 second=103 amount=2 -kerning first=242 second=375 amount=-2 -kerning first=45 second=209 amount=-2 -kerning first=373 second=237 amount=2 -kerning first=65 second=336 amount=-11 -kerning first=374 second=377 amount=-2 -kerning first=72 second=66 amount=-6 -kerning first=315 second=106 amount=-6 -kerning first=358 second=200 amount=-8 -kerning first=296 second=119 amount=-2 -kerning first=73 second=236 amount=-2 -kerning first=254 second=225 amount=5 -kerning first=362 second=120 amount=-2 -kerning first=382 second=277 amount=1 -kerning first=297 second=289 amount=2 -kerning first=366 second=70 amount=-2 -kerning first=58 second=199 amount=-3 -kerning first=193 second=314 amount=-12 -kerning first=101 second=263 amount=1 -kerning first=367 second=240 amount=2 -kerning first=197 second=264 amount=-11 -kerning first=220 second=201 amount=-6 -kerning first=243 second=108 amount=-1 -kerning first=286 second=202 amount=-2 -kerning first=66 second=69 amount=-4 -kerning first=86 second=226 amount=6 -kerning first=221 second=341 amount=-5 -kerning first=332 second=46 amount=-5 -kerning first=352 second=203 amount=-3 -kerning first=375 second=110 amount=3 -kerning first=202 second=354 amount=-5 -kerning first=225 second=291 amount=2 -kerning first=8212 second=268 amount=5 -kerning first=268 second=355 amount=2 -kerning first=376 second=280 amount=-4 -kerning first=209 second=84 amount=-6 -kerning first=75 second=109 amount=-8 -kerning first=256 second=98 amount=-12 -kerning first=79 second=59 amount=-5 -kerning first=214 second=204 amount=3 -kerning first=237 second=111 amount=1 -kerning first=342 second=256 amount=3 -kerning first=369 second=113 amount=2 -kerning first=196 second=357 amount=-12 -kerning first=222 second=74 amount=-5 -kerning first=262 second=358 amount=-2 -kerning first=285 second=295 amount=2 -kerning first=65 second=192 amount=-7 -kerning first=88 second=99 amount=-2 -kerning first=223 second=244 amount=1 -kerning first=328 second=359 amount=-1 -kerning first=243 second=371 amount=-2 -kerning first=354 second=76 amount=-1 -kerning first=374 second=233 amount=-4 -kerning first=289 second=245 amount=2 -kerning first=89 second=269 amount=-4 -kerning first=8211 second=361 amount=2 -kerning first=270 second=258 amount=-8 -kerning first=375 second=373 amount=3 -kerning first=70 second=282 amount=-9 -kerning first=248 second=8212 amount=3 -kerning first=274 second=208 amount=-5 -kerning first=297 second=115 amount=1 -kerning first=74 second=232 amount=-5 -kerning first=360 second=336 amount=2 -kerning first=363 second=116 amount=-1 -kerning first=98 second=309 amount=-7 -kerning first=236 second=234 amount=1 -kerning first=341 second=349 amount=-2 -kerning first=121 second=246 amount=3 -kerning first=256 second=361 amount=-13 -kerning first=364 second=286 amount=2 -kerning first=197 second=90 amount=-7 -kerning first=302 second=235 amount=-2 -kerning first=102 second=259 amount=-6 -kerning first=348 second=79 amount=3 -kerning first=260 second=311 amount=-12 -kerning first=283 second=248 amount=1 -kerning first=198 second=260 amount=-6 -kerning first=83 second=272 amount=-3 -kerning first=221 second=197 amount=-3 -kerning first=244 second=104 amount=-1 -kerning first=349 second=249 amount=1 -kerning first=87 second=222 amount=-2 -kerning first=330 second=262 amount=3 -kerning first=107 second=349 amount=1 -kerning first=45 second=298 amount=-5 -kerning first=373 second=326 amount=2 -kerning first=291 second=118 amount=2 -kerning first=376 second=106 amount=-7 -kerning first=311 second=275 amount=1 -kerning first=226 second=287 amount=2 -kerning first=354 second=339 amount=-7 -kerning first=357 second=119 amount=-10 -kerning first=269 second=351 amount=1 -kerning first=69 second=375 amount=-3 -kerning first=115 second=249 amount=1 -kerning first=358 second=289 amount=-10 -kerning first=296 second=238 amount=-2 -kerning first=342 second=82 amount=-8 -kerning first=254 second=314 amount=3 -kerning first=192 second=263 amount=-12 -kerning first=258 second=264 amount=-11 -kerning first=58 second=288 amount=-3 -kerning first=196 second=213 amount=-11 -kerning first=304 second=108 amount=-2 -kerning first=367 second=329 amount=-3 -kerning first=285 second=121 amount=2 -kerning first=197 second=353 amount=-11 -kerning first=348 second=342 amount=-3 -kerning first=374 second=59 amount=-5 -kerning first=309 second=228 amount=2 -kerning first=86 second=315 amount=4 -kerning first=224 second=240 amount=2 -kerning first=329 second=355 amount=-1 -kerning first=244 second=367 amount=-2 -kerning first=270 second=84 amount=-6 -kerning first=375 second=229 amount=7 -kerning first=70 second=108 amount=-2 -kerning first=205 second=253 amount=-2 -kerning first=356 second=242 amount=-7 -kerning first=376 second=369 amount=-5 -kerning first=71 second=278 amount=-2 -kerning first=74 second=58 amount=-5 -kerning first=209 second=203 amount=-6 -kerning first=298 second=111 amount=-2 -kerning first=75 second=228 amount=-7 -kerning first=276 second=344 amount=-6 -kerning first=257 second=357 amount=-1 -kerning first=198 second=86 amount=-2 -kerning first=303 second=231 amount=1 -kerning first=323 second=358 amount=-6 -kerning first=264 second=87 amount=4 -kerning first=304 second=371 amount=-2 -kerning first=84 second=268 amount=-2 -kerning first=222 second=193 amount=-13 -kerning first=330 second=88 amount=3 -kerning first=242 second=320 amount=-1 -kerning first=265 second=257 amount=1 -kerning first=65 second=281 amount=-12 -kerning first=311 second=101 amount=1 -kerning first=223 second=333 amount=1 -kerning first=226 second=113 amount=2 -kerning first=243 second=8211 amount=3 -kerning first=354 second=195 amount=-13 -kerning first=374 second=322 amount=-2 -kerning first=312 second=271 amount=2 -kerning first=112 second=295 amount=3 -kerning first=355 second=335 amount=1 -kerning first=358 second=115 amount=-10 -kerning first=70 second=371 amount=-3 -kerning first=359 second=285 amount=2 -kerning first=192 second=89 amount=-7 -kerning first=258 second=90 amount=-7 -kerning first=193 second=259 amount=-10 -kerning first=75 second=8212 amount=-10 -kerning first=78 second=271 amount=2 -kerning first=239 second=103 amount=2 -kerning first=121 second=335 amount=3 -kerning first=59 second=284 amount=-3 -kerning first=197 second=209 amount=-15 -kerning first=302 second=324 amount=-2 -kerning first=240 second=273 amount=2 -kerning first=348 second=198 amount=-11 -kerning first=283 second=337 amount=1 -kerning first=198 second=349 amount=-4 -kerning first=221 second=286 amount=-1 -kerning first=244 second=223 amount=2 -kerning first=287 second=287 amount=5 -kerning first=245 second=363 amount=-2 -kerning first=356 second=68 amount=-8 -kerning first=8212 second=213 amount=5 -kerning first=268 second=300 amount=3 -kerning first=376 second=225 amount=-3 -kerning first=291 second=237 amount=3 -kerning first=71 second=104 amount=2 -kerning first=206 second=249 amount=-2 -kerning first=357 second=238 amount=-3 -kerning first=292 second=377 amount=4 -kerning first=72 second=274 amount=-6 -kerning first=233 second=106 amount=-13 -kerning first=118 second=118 amount=3 -kerning first=276 second=200 amount=-5 -kerning first=365 second=108 amount=-1 -kerning first=192 second=352 amount=-8 -kerning first=300 second=277 amount=-2 -kerning first=218 second=69 amount=-6 -kerning first=323 second=214 amount=3 -kerning first=238 second=226 amount=2 -kerning first=258 second=353 amount=-11 -kerning first=366 second=278 amount=-6 -kerning first=284 second=70 amount=-2 -kerning first=196 second=302 amount=-7 -kerning first=199 second=82 amount=-4 -kerning first=347 second=291 amount=3 -kerning first=350 second=71 amount=3 -kerning first=370 second=228 amount=2 -kerning first=285 second=240 amount=5 -kerning first=65 second=107 amount=-12 -kerning first=85 second=264 amount=2 -kerning first=220 second=379 amount=4 -kerning first=243 second=316 amount=-1 -kerning first=351 second=241 amount=1 -kerning first=66 second=277 amount=2 -kerning first=312 second=97 amount=2 -kerning first=89 second=214 amount=-1 -kerning first=224 second=329 amount=-3 -kerning first=112 second=121 amount=2 -kerning first=270 second=203 amount=-6 -kerning first=70 second=227 amount=-3 -kerning first=205 second=342 amount=-2 -kerning first=336 second=204 amount=3 -kerning first=113 second=291 amount=2 -kerning first=356 second=331 amount=-6 -kerning first=359 second=111 amount=1 -kerning first=271 second=343 amount=-9 -kerning first=294 second=280 amount=-6 -kerning first=71 second=367 amount=2 -kerning first=232 second=229 amount=2 -kerning first=275 second=293 amount=-1 -kerning first=193 second=85 amount=-7 -kerning first=78 second=97 amount=2 -kerning first=98 second=254 amount=3 -kerning first=279 second=243 amount=1 -kerning first=240 second=99 amount=1 -kerning first=345 second=244 amount=-2 -kerning first=260 second=256 amount=-7 -kerning first=221 second=112 amount=-5 -kerning first=326 second=257 amount=2 -kerning first=264 second=206 amount=3 -kerning first=287 second=113 amount=5 -kerning first=84 second=357 amount=-3 -kerning first=222 second=282 amount=-9 -kerning first=350 second=334 amount=3 -kerning first=353 second=114 amount=1 -kerning first=373 second=271 amount=5 -kerning first=45 second=243 amount=4 -kerning first=331 second=347 amount=1 -kerning first=246 second=359 amount=-1 -kerning first=354 second=284 amount=-2 -kerning first=72 second=100 amount=2 -kerning first=207 second=245 amount=-2 -kerning first=358 second=234 amount=-7 -kerning first=319 second=90 amount=2 -kerning first=231 second=322 amount=-1 -kerning first=119 second=114 amount=2 -kerning first=254 second=259 amount=5 -kerning first=192 second=208 amount=-10 -kerning first=97 second=347 amount=1 -kerning first=258 second=209 amount=-15 -kerning first=281 second=116 amount=-1 -kerning first=193 second=348 amount=-8 -kerning first=301 second=273 amount=2 -kerning first=344 second=337 amount=-2 -kerning first=347 second=117 amount=1 -kerning first=259 second=349 amount=1 -kerning first=197 second=298 amount=-7 -kerning first=85 second=90 amount=4 -kerning first=371 second=224 amount=2 -kerning first=66 second=103 amount=3 -kerning first=201 second=248 amount=-2 -kerning first=86 second=260 amount=-3 -kerning first=221 second=375 amount=-5 -kerning first=244 second=312 amount=-2 -kerning first=44 second=336 amount=-3 -kerning first=333 second=250 amount=-2 -kerning first=8212 second=302 amount=-5 -kerning first=376 second=314 amount=-2 -kerning first=291 second=326 amount=2 -kerning first=71 second=223 amount=3 -kerning first=294 second=106 amount=-12 -kerning first=114 second=287 amount=-2 -kerning first=160 second=79 amount=-3 -kerning first=233 second=225 amount=2 -kerning first=338 second=340 amount=-7 -kerning first=118 second=237 amount=2 -kerning first=341 second=120 amount=-2 -kerning first=194 second=81 amount=-11 -kerning first=299 second=226 amount=2 -kerning first=260 second=82 amount=-17 -kerning first=365 second=227 amount=2 -kerning first=199 second=201 amount=-2 -kerning first=304 second=316 amount=-2 -kerning first=84 second=213 amount=-2 -kerning first=245 second=45 amount=3 -kerning first=45 second=69 amount=-7 -kerning first=373 second=97 amount=5 -kerning first=65 second=226 amount=-10 -kerning first=203 second=121 amount=-3 -kerning first=354 second=110 amount=-6 -kerning first=266 second=342 amount=-4 -kerning first=374 second=267 amount=-4 -kerning first=289 second=279 amount=2 -kerning first=227 second=228 amount=2 -kerning first=112 second=240 amount=5 -kerning first=70 second=316 amount=-2 -kerning first=359 second=230 amount=1 -kerning first=274 second=242 amount=-2 -kerning first=209 second=381 amount=4 -kerning first=232 second=318 amount=-1 -kerning first=235 second=98 amount=-1 -kerning first=160 second=342 amount=-9 -kerning first=193 second=204 amount=-7 -kerning first=301 second=99 amount=1 -kerning first=78 second=216 amount=3 -kerning first=344 second=193 amount=3 -kerning first=367 second=100 amount=2 -kerning first=194 second=344 amount=-17 -kerning first=302 second=269 amount=-2 -kerning first=345 second=333 amount=-2 -kerning first=260 second=345 amount=-12 -kerning first=368 second=270 amount=-6 -kerning first=86 second=86 amount=4 -kerning first=221 second=231 amount=-4 -kerning first=106 second=243 amount=1 -kerning first=349 second=283 amount=1 -kerning first=264 second=295 amount=2 -kerning first=287 second=232 amount=2 -kerning first=202 second=244 amount=-2 -kerning first=222 second=371 amount=2 -kerning first=353 second=233 amount=1 -kerning first=45 second=332 amount=5 -kerning first=311 second=309 amount=-12 -kerning first=114 second=113 amount=-2 -kerning first=354 second=373 amount=-5 -kerning first=272 second=195 amount=-8 -kerning first=230 second=271 amount=2 -kerning first=115 second=283 amount=1 -kerning first=358 second=323 amount=-1 -kerning first=361 second=103 amount=2 -kerning first=273 second=335 amount=1 -kerning first=73 second=359 amount=-2 -kerning first=342 second=116 amount=-2 -kerning first=119 second=233 amount=4 -kerning first=362 second=273 amount=2 -kerning first=277 second=285 amount=2 -kerning first=195 second=77 amount=-8 -kerning first=300 second=222 amount=-2 -kerning first=77 second=309 amount=-11 -kerning first=100 second=246 amount=1 -kerning first=346 second=66 amount=-3 -kerning first=258 second=298 amount=-7 -kerning first=366 second=223 amount=2 -kerning first=281 second=235 amount=1 -kerning first=327 second=79 amount=3 -kerning first=347 second=236 amount=1 -kerning first=282 second=375 amount=-3 -kerning first=289 second=105 amount=3 -kerning first=66 second=222 amount=-1 -kerning first=201 second=337 amount=-2 -kerning first=204 second=117 amount=-2 -kerning first=86 second=349 amount=3 -kerning first=355 second=106 amount=-12 -kerning first=8211 second=251 amount=2 -kerning first=375 second=263 amount=3 -kerning first=208 second=67 amount=4 -kerning first=228 second=224 amount=2 -kerning first=356 second=276 amount=-8 -kerning first=274 second=68 amount=-5 -kerning first=294 second=225 amount=2 -kerning first=71 second=312 amount=2 -kerning first=360 second=226 amount=2 -kerning first=75 second=262 amount=-8 -kerning first=233 second=314 amount=-1 -kerning first=118 second=326 amount=2 -kerning first=194 second=200 amount=-10 -kerning first=102 second=119 amount=-7 -kerning first=260 second=201 amount=-10 -kerning first=365 second=316 amount=-1 -kerning first=280 second=328 amount=-2 -kerning first=283 second=108 amount=-1 -kerning first=195 second=340 amount=-17 -kerning first=198 second=120 amount=-5 -kerning first=303 second=265 amount=1 -kerning first=103 second=289 amount=5 -kerning first=346 second=329 amount=-5 -kerning first=349 second=109 amount=1 -kerning first=284 second=278 amount=-2 -kerning first=202 second=70 amount=-6 -kerning first=84 second=302 amount=-2 -kerning first=87 second=82 amount=-2 -kerning first=327 second=342 amount=-2 -kerning first=330 second=122 amount=3 -kerning first=265 second=291 amount=1 -kerning first=65 second=315 amount=-7 -kerning first=354 second=229 amount=-10 -kerning first=230 second=97 amount=2 -kerning first=115 second=109 amount=1 -kerning first=296 second=98 amount=-2 -kerning first=274 second=331 amount=-2 -kerning first=277 second=111 amount=1 -kerning first=120 second=229 amount=2 -kerning first=193 second=293 amount=-12 -kerning first=196 second=73 amount=-7 -kerning first=101 second=242 amount=1 -kerning first=121 second=369 amount=3 -kerning first=197 second=243 amount=-12 -kerning first=302 second=358 amount=-2 -kerning first=263 second=244 amount=-1 -kerning first=86 second=205 amount=5 -kerning first=221 second=320 amount=-2 -kerning first=224 second=100 amount=2 -kerning first=8211 second=77 amount=4 -kerning first=372 second=309 amount=-12 -kerning first=202 second=333 amount=-2 -kerning first=222 second=8211 amount=3 -kerning first=353 second=322 amount=1 -kerning first=356 second=102 amount=-3 -kerning first=271 second=114 amount=-9 -kerning first=376 second=259 amount=-3 -kerning first=291 second=271 amount=5 -kerning first=68 second=358 amount=-6 -kerning first=206 second=283 amount=-2 -kerning first=114 second=232 amount=-2 -kerning first=272 second=284 amount=4 -kerning first=256 second=77 amount=-8 -kerning first=296 second=361 amount=-2 -kerning first=119 second=322 amount=2 -kerning first=122 second=102 amount=2 -kerning first=195 second=196 amount=-7 -kerning first=300 second=311 amount=-2 -kerning first=80 second=208 amount=-9 -kerning first=218 second=103 amount=2 -kerning first=100 second=335 amount=1 -kerning first=103 second=115 amount=2 -kerning first=284 second=104 amount=2 -kerning first=196 second=336 amount=-11 -kerning first=199 second=116 amount=2 -kerning first=219 second=273 amount=2 -kerning first=104 second=285 amount=2 -kerning first=370 second=262 amount=2 -kerning first=203 second=66 amount=-5 -kerning first=108 second=235 amount=1 -kerning first=351 second=275 amount=1 -kerning first=374 second=212 amount=-1 -kerning first=289 second=224 amount=5 -kerning first=204 second=236 amount=-2 -kerning first=355 second=225 amount=2 -kerning first=8211 second=340 amount=-6 -kerning first=356 second=365 amount=-6 -kerning first=54 second=54 amount=2 -kerning first=232 second=263 amount=1 -kerning first=193 second=119 amount=-13 -kerning first=75 second=351 amount=-8 -kerning first=344 second=108 amount=-2 -kerning first=121 second=225 amount=7 -kerning first=256 second=340 amount=-17 -kerning first=259 second=120 amount=-1 -kerning first=279 second=277 amount=1 -kerning first=194 second=289 amount=-10 -kerning first=197 second=69 amount=-10 -kerning first=217 second=226 amount=2 -kerning first=102 second=238 amount=-7 -kerning first=237 second=353 amount=1 -kerning first=348 second=58 amount=-4 -kerning first=260 second=290 amount=-11 -kerning first=283 second=227 amount=2 -kerning first=198 second=239 amount=-7 -kerning first=326 second=291 amount=2 -kerning first=349 second=228 amount=3 -kerning first=369 second=355 amount=-1 -kerning first=87 second=201 amount=-6 -kerning first=110 second=108 amount=-1 -kerning first=245 second=253 amount=-2 -kerning first=8212 second=73 amount=-5 -kerning first=45 second=277 amount=4 -kerning first=48 second=57 amount=2 -kerning first=291 second=97 amount=5 -kerning first=68 second=214 amount=4 -kerning first=206 second=109 amount=-2 -kerning first=373 second=305 amount=2 -kerning first=88 second=341 amount=-2 -kerning first=114 second=58 amount=-7 -kerning first=354 second=318 amount=-3 -kerning first=69 second=354 amount=-5 -kerning first=207 second=279 amount=-2 -kerning first=210 second=59 amount=-5 -kerning first=335 second=331 amount=-2 -kerning first=115 second=228 amount=3 -kerning first=358 second=268 amount=-2 -kerning first=339 second=281 amount=1 -kerning first=254 second=293 amount=3 -kerning first=192 second=242 amount=-12 -kerning first=343 second=231 amount=-2 -kerning first=120 second=318 amount=-1 -kerning first=258 second=243 amount=-12 -kerning first=196 second=192 amount=-7 -kerning first=81 second=204 amount=3 -kerning first=370 second=88 amount=3 -kerning first=285 second=100 amount=5 -kerning first=197 second=332 amount=-11 -kerning first=305 second=257 amount=2 -kerning first=82 second=344 amount=-8 -kerning first=105 second=281 amount=1 -kerning first=351 second=101 amount=1 -kerning first=263 second=333 amount=-1 -kerning first=286 second=270 amount=-2 -kerning first=201 second=282 amount=-5 -kerning first=8211 second=196 amount=-13 -kerning first=205 second=232 amount=-2 -kerning first=225 second=359 amount=-1 -kerning first=8212 second=336 amount=5 -kerning first=271 second=233 amount=-9 -kerning first=376 second=348 amount=-4 -kerning first=71 second=257 amount=5 -kerning first=229 second=309 amount=-10 -kerning first=357 second=361 amount=-9 -kerning first=55 second=50 amount=-6 -kerning first=98 second=114 amount=2 -kerning first=233 second=259 amount=2 -kerning first=118 second=271 amount=5 -kerning first=256 second=196 amount=-7 -kerning first=361 second=311 amount=-1 -kerning first=279 second=103 amount=2 -kerning first=194 second=115 amount=-11 -kerning first=345 second=104 amount=-1 -kerning first=260 second=116 amount=-12 -kerning first=195 second=285 amount=-10 -kerning first=198 second=65 amount=-6 -kerning first=80 second=297 amount=1 -kerning first=218 second=222 amount=-2 -kerning first=103 second=234 amount=2 -kerning first=238 second=349 amount=1 -kerning first=346 second=274 amount=-3 -kerning first=264 second=66 amount=-2 -kerning first=284 second=223 amount=3 -kerning first=327 second=287 amount=2 -kerning first=330 second=67 amount=3 -kerning first=242 second=299 amount=-2 -kerning first=45 second=103 amount=4 -kerning first=285 second=363 amount=2 -kerning first=65 second=260 amount=-7 -kerning first=200 second=375 amount=-3 -kerning first=88 second=197 amount=-5 -kerning first=111 second=104 amount=-1 -kerning first=246 second=249 amount=-2 -kerning first=49 second=53 amount=-2 -kerning first=207 second=105 amount=-2 -kerning first=89 second=337 amount=-4 -kerning first=355 second=314 amount=-1 -kerning first=273 second=106 amount=-12 -kerning first=116 second=224 amount=2 -kerning first=254 second=119 amount=2 -kerning first=339 second=107 amount=-1 -kerning first=274 second=276 amount=-5 -kerning first=192 second=68 amount=-10 -kerning first=77 second=80 amount=-4 -kerning first=320 second=120 amount=-3 -kerning first=258 second=69 amount=-10 -kerning first=298 second=353 amount=-2 -kerning first=121 second=314 amount=3 -kerning first=364 second=354 amount=-6 -kerning first=302 second=303 amount=-2 -kerning first=325 second=240 amount=2 -kerning first=260 second=379 amount=-7 -kerning first=283 second=316 amount=-1 -kerning first=198 second=328 amount=-6 -kerning first=83 second=340 amount=-3 -kerning first=221 second=265 amount=-4 -kerning first=106 second=277 amount=1 -kerning first=202 second=278 amount=-5 -kerning first=87 second=290 amount=2 -kerning first=90 second=70 amount=2 -kerning first=333 second=110 amount=-2 -kerning first=110 second=227 amount=2 -kerning first=353 second=267 amount=1 -kerning first=45 second=366 amount=5 -kerning first=8212 second=192 amount=-13 -kerning first=226 second=355 amount=-1 -kerning first=111 second=367 amount=-2 -kerning first=272 second=229 amount=2 -kerning first=292 second=356 amount=-6 -kerning first=118 second=97 amount=5 -kerning first=358 second=357 amount=-3 -kerning first=119 second=267 amount=4 -kerning first=192 second=331 amount=-13 -kerning first=195 second=111 amount=-12 -kerning first=343 second=320 amount=-1 -kerning first=258 second=332 amount=-11 -kerning first=366 second=257 amount=2 -kerning first=281 second=269 amount=1 -kerning first=58 second=356 amount=-10 -kerning first=196 second=281 amount=-12 -kerning first=84 second=73 amount=-2 -kerning first=327 second=113 amount=2 -kerning first=104 second=230 amount=1 -kerning first=262 second=282 amount=-2 -kerning first=65 second=86 amount=-7 -kerning first=220 second=358 amount=-6 -kerning first=243 second=295 amount=-1 -kerning first=371 second=347 amount=1 -kerning first=286 second=359 amount=2 -kerning first=66 second=256 amount=-5 -kerning first=201 second=371 amount=-2 -kerning first=89 second=193 amount=-3 -kerning first=109 second=320 amount=-1 -kerning first=112 second=100 amount=5 -kerning first=8211 second=285 amount=4 -kerning first=50 second=49 amount=-4 -kerning first=375 second=297 amount=3 -kerning first=333 second=373 amount=-2 -kerning first=294 second=259 amount=2 -kerning first=209 second=271 amount=2 -kerning first=98 second=233 amount=2 -kerning first=341 second=273 amount=-2 -kerning first=256 second=285 amount=-10 -kerning first=364 second=210 amount=2 -kerning first=194 second=234 amount=-12 -kerning first=299 second=349 amount=1 -kerning first=325 second=66 amount=2 -kerning first=99 second=373 amount=-1 -kerning first=260 second=235 amount=-12 -kerning first=83 second=196 amount=-9 -kerning first=106 second=103 amount=2 -kerning first=372 second=80 amount=-2 -kerning first=284 second=312 amount=2 -kerning first=84 second=336 amount=-2 -kerning first=107 second=273 amount=2 -kerning first=373 second=250 amount=2 -kerning first=45 second=222 amount=-8 -kerning first=65 second=349 amount=-11 -kerning first=203 second=274 amount=-5 -kerning first=88 second=286 amount=-4 -kerning first=111 second=223 amount=2 -kerning first=354 second=263 amount=-7 -kerning first=312 second=339 amount=1 -kerning first=227 second=351 amount=1 -kerning first=112 second=363 amount=2 -kerning first=358 second=213 amount=-2 -kerning first=273 second=225 amount=2 -kerning first=73 second=249 amount=-2 -kerning first=316 second=289 amount=2 -kerning first=339 second=226 amount=2 -kerning first=254 second=238 amount=2 -kerning first=359 second=353 amount=1 -kerning first=274 second=365 amount=-2 -kerning first=300 second=82 amount=-2 -kerning first=77 second=199 amount=3 -kerning first=100 second=106 amount=-12 -kerning first=58 second=212 amount=-3 -kerning first=193 second=327 amount=-15 -kerning first=196 second=107 amount=-12 -kerning first=344 second=316 amount=-2 -kerning first=262 second=108 amount=2 -kerning first=285 second=45 amount=4 -kerning first=197 second=277 amount=-12 -kerning first=85 second=69 amount=-6 -kerning first=105 second=226 amount=2 -kerning first=243 second=121 amount=-2 -kerning first=348 second=266 amount=3 -kerning first=66 second=82 amount=-1 -kerning first=86 second=239 amount=3 -kerning first=332 second=59 amount=-5 -kerning first=352 second=216 amount=3 -kerning first=267 second=228 amount=1 -kerning first=8211 second=111 amount=4 -kerning first=287 second=355 amount=2 -kerning first=202 second=367 amount=-2 -kerning first=87 second=379 amount=4 -kerning first=110 second=316 amount=-1 -kerning first=248 second=241 amount=-2 -kerning first=8212 second=281 amount=4 -kerning first=376 second=293 amount=-2 -kerning first=291 second=305 amount=3 -kerning first=71 second=202 amount=-2 -kerning first=209 second=97 amount=2 -kerning first=229 second=254 amount=-1 -kerning first=360 second=86 amount=2 -kerning first=275 second=98 amount=-1 -kerning first=72 second=342 amount=-2 -kerning first=75 second=122 amount=-4 -kerning first=341 second=99 amount=-2 -kerning first=256 second=111 amount=-12 -kerning first=99 second=229 amount=1 -kerning first=195 second=230 amount=-10 -kerning first=323 second=282 amount=-6 -kerning first=304 second=295 amount=-2 -kerning first=84 second=192 amount=-13 -kerning first=107 second=99 amount=1 -kerning first=347 second=359 amount=1 -kerning first=65 second=205 amount=-7 -kerning first=85 second=332 amount=2 -kerning first=88 second=112 amount=-3 -kerning first=223 second=257 amount=2 -kerning first=108 second=269 amount=1 -kerning first=351 second=309 amount=-9 -kerning first=354 second=89 amount=-1 -kerning first=374 second=246 amount=-4 -kerning first=89 second=282 amount=-4 -kerning first=335 second=102 amount=-2 -kerning first=355 second=259 amount=2 -kerning first=8211 second=374 amount=3 -kerning first=270 second=271 amount=2 -kerning first=70 second=295 amount=-2 -kerning first=316 second=115 amount=1 -kerning first=228 second=347 amount=1 -kerning first=113 second=359 amount=-1 -kerning first=74 second=245 amount=-5 -kerning first=340 second=222 amount=-8 -kerning first=117 second=309 amount=-10 -kerning first=98 second=322 amount=3 -kerning first=121 second=259 amount=7 -kerning first=279 second=311 amount=-1 -kerning first=59 second=208 amount=-3 -kerning first=194 second=323 amount=-15 -kerning first=197 second=103 amount=-10 -kerning first=302 second=248 amount=-2 -kerning first=260 second=324 amount=-13 -kerning first=263 second=104 amount=-1 -kerning first=198 second=273 amount=-3 -kerning first=86 second=65 amount=-3 -kerning first=221 second=210 amount=-1 -kerning first=244 second=117 amount=-2 -kerning first=264 second=274 amount=-2 -kerning first=67 second=78 amount=4 -kerning first=202 second=223 amount=3 -kerning first=373 second=339 amount=4 -kerning first=376 second=119 amount=-4 -kerning first=203 second=363 amount=-2 -kerning first=111 second=312 amount=-2 -kerning first=354 second=352 amount=-6 -kerning first=335 second=365 amount=-2 -kerning first=358 second=302 amount=-2 -kerning first=273 second=314 amount=-1 -kerning first=296 second=251 amount=-2 -kerning first=257 second=107 amount=-1 -kerning first=192 second=276 amount=-10 -kerning first=77 second=288 amount=3 -kerning first=80 second=68 amount=-9 -kerning first=100 second=225 amount=2 -kerning first=343 second=265 amount=-2 -kerning first=346 second=45 amount=4 -kerning first=258 second=277 amount=-12 -kerning first=366 second=202 amount=-6 -kerning first=196 second=226 amount=-10 -kerning first=304 second=121 amount=-2 -kerning first=282 second=354 amount=-5 -kerning first=305 second=291 amount=2 -kerning first=328 second=228 amount=2 -kerning first=286 second=304 amount=3 -kerning first=66 second=201 amount=-4 -kerning first=86 second=328 amount=2 -kerning first=89 second=108 amount=-2 -kerning first=112 second=45 amount=4 -kerning first=270 second=97 amount=2 -kerning first=375 second=242 amount=3 -kerning first=290 second=254 amount=2 -kerning first=70 second=121 amount=-3 -kerning first=208 second=46 amount=-3 -kerning first=333 second=318 amount=-1 -kerning first=8212 second=370 amount=5 -kerning first=271 second=267 amount=-9 -kerning first=71 second=291 amount=5 -kerning first=209 second=216 amount=3 -kerning first=114 second=355 amount=-1 -kerning first=318 second=281 amount=-9 -kerning first=233 second=293 amount=-1 -kerning first=118 second=305 amount=2 -kerning first=256 second=230 amount=-10 -kerning first=302 second=74 amount=-2 -kerning first=76 second=381 amount=2 -kerning first=99 second=318 amount=-1 -kerning first=237 second=243 amount=1 -kerning first=342 second=358 amount=-8 -kerning first=365 second=295 amount=-1 -kerning first=195 second=319 amount=-7 -kerning first=198 second=99 amount=-5 -kerning first=80 second=331 amount=1 -kerning first=303 second=244 amount=1 -kerning first=261 second=320 amount=-1 -kerning first=84 second=281 amount=-7 -kerning first=350 second=258 amount=-9 -kerning first=288 second=207 amount=3 -kerning first=88 second=231 amount=-2 -kerning first=331 second=271 amount=2 -kerning first=354 second=208 amount=-8 -kerning first=374 second=335 amount=-4 -kerning first=289 second=347 amount=2 -kerning first=69 second=244 amount=-2 -kerning first=204 second=359 amount=-2 -kerning first=89 second=371 amount=-5 -kerning first=208 second=309 amount=-12 -kerning first=316 second=234 amount=1 -kerning first=231 second=246 amount=-1 -kerning first=192 second=102 amount=-12 -kerning first=97 second=271 amount=2 -kerning first=340 second=311 amount=-2 -kerning first=258 second=103 amount=-10 -kerning first=193 second=272 amount=-10 -kerning first=78 second=284 amount=3 -kerning first=324 second=104 amount=-1 -kerning first=259 second=273 amount=2 -kerning first=197 second=222 amount=-17 -kerning first=302 second=337 amount=-2 -kerning first=325 second=274 amount=-6 -kerning first=102 second=361 amount=-7 -kerning first=348 second=211 amount=3 -kerning first=263 second=223 amount=2 -kerning first=368 second=338 amount=2 -kerning first=329 second=224 amount=2 -kerning first=290 second=80 amount=-2 -kerning first=353 second=301 amount=1 -kerning first=356 second=81 amount=-2 -kerning first=8212 second=226 amount=4 -kerning first=376 second=238 amount=-3 -kerning first=291 second=250 amount=2 -kerning first=71 second=117 amount=2 -kerning first=72 second=287 amount=2 -kerning first=75 second=67 amount=-8 -kerning first=230 second=339 amount=1 -kerning first=341 second=44 amount=-7 -kerning first=296 second=340 amount=-2 -kerning first=234 second=289 amount=2 -kerning first=119 second=301 amount=2 -kerning first=257 second=226 amount=2 -kerning first=277 second=353 amount=1 -kerning first=192 second=365 amount=-13 -kerning first=218 second=82 amount=-2 -kerning first=323 second=227 amount=2 -kerning first=100 second=314 amount=-1 -kerning first=366 second=291 amount=2 -kerning first=196 second=315 amount=-7 -kerning first=84 second=107 amount=-3 -kerning first=350 second=84 amount=-3 -kerning first=262 second=316 amount=2 -kerning first=285 second=253 amount=2 -kerning first=65 second=120 amount=-14 -kerning first=331 second=97 amount=2 -kerning first=243 second=329 amount=-3 -kerning first=246 second=109 amount=-2 -kerning first=66 second=290 amount=3 -kerning first=69 second=70 amount=-6 -kerning first=89 second=227 amount=-3 -kerning first=8211 second=319 amount=3 -kerning first=270 second=216 amount=4 -kerning first=375 second=331 amount=3 -kerning first=70 second=240 amount=-3 -kerning first=205 second=355 amount=-2 -kerning first=356 second=344 amount=-5 -kerning first=97 second=97 amount=2 -kerning first=232 second=242 amount=1 -kerning first=337 second=357 amount=-1 -kerning first=117 second=254 amount=-1 -kerning first=160 second=266 amount=-3 -kerning first=193 second=98 amount=-12 -kerning first=298 second=243 amount=-2 -kerning first=98 second=267 amount=2 -kerning first=256 second=319 amount=-7 -kerning first=194 second=268 amount=-11 -kerning first=325 second=100 amount=2 -kerning first=345 second=257 amount=-2 -kerning first=303 second=333 amount=1 -kerning first=103 second=357 amount=2 -kerning first=199 second=358 amount=-2 -kerning first=307 second=283 amount=1 -kerning first=265 second=359 amount=-1 -kerning first=45 second=256 amount=-13 -kerning first=288 second=296 amount=3 -kerning first=68 second=193 amount=-8 -kerning first=206 second=88 amount=2 -kerning first=311 second=233 amount=1 -kerning first=354 second=297 amount=-2 -kerning first=269 second=309 amount=-11 -kerning first=272 second=89 amount=2 -kerning first=69 second=333 amount=-2 -kerning first=72 second=113 amount=2 -kerning first=273 second=259 amount=2 -kerning first=73 second=283 amount=-2 -kerning first=231 second=335 amount=-1 -kerning first=234 second=115 amount=1 -kerning first=116 second=347 amount=1 -kerning first=300 second=116 amount=-2 -kerning first=235 second=285 amount=2 -kerning first=258 second=222 amount=-17 -kerning first=193 second=361 amount=-13 -kerning first=216 second=298 amount=3 -kerning first=324 second=223 amount=4 -kerning first=239 second=235 amount=1 -kerning first=367 second=287 amount=2 -kerning first=370 second=67 amount=2 -kerning first=197 second=311 amount=-12 -kerning first=85 second=103 amount=2 -kerning first=86 second=273 amount=6 -kerning first=372 second=377 amount=4 -kerning first=70 second=66 amount=-9 -kerning first=313 second=106 amount=-6 -kerning first=90 second=223 amount=2 -kerning first=356 second=200 amount=-8 -kerning first=8212 second=315 amount=3 -kerning first=291 second=339 amount=2 -kerning first=71 second=236 amount=1 -kerning first=206 second=351 amount=-2 -kerning first=360 second=120 amount=-2 -kerning first=380 second=277 amount=1 -kerning first=295 second=289 amount=2 -kerning first=318 second=226 amount=-8 -kerning first=118 second=250 amount=2 -kerning first=364 second=70 amount=-2 -kerning first=365 second=240 amount=2 -kerning first=195 second=264 amount=-11 -kerning first=80 second=276 amount=-9 -kerning first=218 second=201 amount=-6 -kerning first=241 second=108 amount=-1 -kerning first=284 second=202 amount=-2 -kerning first=304 second=329 amount=-4 -kerning first=84 second=226 amount=-10 -kerning first=222 second=121 amount=1 -kerning first=327 second=266 amount=3 -kerning first=104 second=353 amount=1 -kerning first=350 second=203 amount=-3 -kerning first=373 second=110 amount=2 -kerning first=45 second=82 amount=-6 -kerning first=200 second=354 amount=-5 -kerning first=223 second=291 amount=2 -kerning first=266 second=355 amount=2 -kerning first=374 second=280 amount=-4 -kerning first=207 second=84 amount=-2 -kerning first=312 second=229 amount=2 -kerning first=89 second=316 amount=-2 -kerning first=112 second=253 amount=2 -kerning first=355 second=293 amount=-1 -kerning first=358 second=73 amount=-2 -kerning first=73 second=109 amount=-2 -kerning first=254 second=98 amount=3 -kerning first=359 second=243 amount=1 -kerning first=74 second=279 amount=-5 -kerning first=212 second=204 amount=3 -kerning first=320 second=99 amount=-1 -kerning first=235 second=111 amount=1 -kerning first=340 second=256 amount=3 -kerning first=78 second=229 amount=2 -kerning first=236 second=281 amount=1 -kerning first=121 second=293 amount=3 -kerning first=367 second=113 amount=2 -kerning first=194 second=357 amount=-12 -kerning first=240 second=231 amount=1 -kerning first=260 second=358 amount=-20 -kerning first=283 second=295 amount=-1 -kerning first=198 second=307 amount=-7 -kerning first=86 second=99 amount=3 -kerning first=326 second=359 amount=-1 -kerning first=287 second=245 amount=2 -kerning first=330 second=309 amount=-12 -kerning first=353 second=246 amount=1 -kerning first=373 second=373 amount=3 -kerning first=68 second=282 amount=-6 -kerning first=246 second=8212 amount=3 -kerning first=272 second=208 amount=-6 -kerning first=295 second=115 amount=1 -kerning first=207 second=347 amount=-2 -kerning first=358 second=336 amount=-2 -kerning first=361 second=116 amount=-1 -kerning first=319 second=222 amount=-4 -kerning first=234 second=234 amount=1 -kerning first=339 second=349 amount=1 -kerning first=119 second=246 amount=4 -kerning first=254 second=361 amount=2 -kerning first=362 second=286 amount=2 -kerning first=195 second=90 amount=-7 -kerning first=300 second=235 amount=-2 -kerning first=100 second=259 amount=2 -kerning first=346 second=79 amount=3 -kerning first=258 second=311 amount=-12 -kerning first=281 second=248 amount=1 -kerning first=196 second=260 amount=-7 -kerning first=242 second=104 amount=-1 -kerning first=347 second=249 amount=1 -kerning first=65 second=65 amount=-7 -kerning first=85 second=222 amount=-2 -kerning first=105 second=349 amount=1 -kerning first=46 second=78 amount=-5 -kerning first=374 second=106 amount=-7 -kerning first=289 second=118 amount=2 -kerning first=66 second=235 amount=2 -kerning first=309 second=275 amount=1 -kerning first=224 second=287 amount=2 -kerning first=8211 second=264 amount=5 -kerning first=267 second=351 amount=1 -kerning first=208 second=80 amount=-5 -kerning first=356 second=289 amount=-10 -kerning first=271 second=301 amount=-3 -kerning first=74 second=105 amount=-1 -kerning first=340 second=82 amount=-8 -kerning first=160 second=211 amount=-3 -kerning first=75 second=275 amount=-10 -kerning first=118 second=339 amount=4 -kerning first=121 second=119 amount=3 -kerning first=256 second=264 amount=-11 -kerning first=59 second=68 amount=-3 -kerning first=194 second=213 amount=-11 -kerning first=302 second=108 amount=-2 -kerning first=237 second=277 amount=1 -kerning first=260 second=214 amount=-11 -kerning first=365 second=329 amount=-3 -kerning first=195 second=353 amount=-11 -kerning first=80 second=365 amount=1 -kerning first=221 second=70 amount=-1 -kerning first=241 second=227 amount=2 -kerning first=346 second=342 amount=-3 -kerning first=307 second=228 amount=2 -kerning first=84 second=315 amount=-1 -kerning first=242 second=367 amount=-2 -kerning first=268 second=84 amount=-2 -kerning first=45 second=201 amount=-7 -kerning first=373 second=229 amount=5 -kerning first=65 second=328 amount=-13 -kerning first=88 second=265 amount=-2 -kerning first=354 second=242 amount=-7 -kerning first=269 second=254 amount=-1 -kerning first=374 second=369 amount=-5 -kerning first=69 second=278 amount=-5 -kerning first=358 second=192 amount=-13 -kerning first=296 second=111 amount=-2 -kerning first=274 second=344 amount=-6 -kerning first=196 second=86 amount=-7 -kerning first=301 second=231 amount=1 -kerning first=262 second=87 amount=4 -kerning first=282 second=244 amount=-2 -kerning first=197 second=256 amount=-7 -kerning first=302 second=371 amount=-2 -kerning first=240 second=320 amount=-1 -kerning first=263 second=257 amount=1 -kerning first=309 second=101 amount=1 -kerning first=221 second=333 amount=-4 -kerning first=224 second=113 amount=2 -kerning first=352 second=195 amount=-9 -kerning first=8211 second=90 amount=-4 -kerning first=375 second=102 amount=4 -kerning first=47 second=74 amount=-2 -kerning first=87 second=358 amount=-6 -kerning first=110 second=295 amount=-1 -kerning first=353 second=335 amount=1 -kerning first=356 second=115 amount=-10 -kerning first=8212 second=260 amount=-13 -kerning first=376 second=272 amount=-4 -kerning first=114 second=245 amount=-2 -kerning first=357 second=285 amount=-8 -kerning first=75 second=101 amount=-10 -kerning first=338 second=298 amount=-1 -kerning first=256 second=90 amount=-7 -kerning first=237 second=103 amount=2 -kerning first=119 second=335 amount=4 -kerning first=122 second=115 amount=1 -kerning first=195 second=209 amount=-15 -kerning first=300 second=324 amount=-2 -kerning first=238 second=273 amount=2 -kerning first=346 second=198 amount=-11 -kerning first=281 second=337 amount=1 -kerning first=196 second=349 amount=-11 -kerning first=222 second=66 amount=-9 -kerning first=327 second=211 amount=3 -kerning first=242 second=223 amount=2 -kerning first=285 second=287 amount=5 -kerning first=328 second=351 amount=1 -kerning first=108 second=248 amount=1 -kerning first=243 second=363 amount=-2 -kerning first=354 second=68 amount=-8 -kerning first=266 second=300 amount=3 -kerning first=374 second=225 amount=-3 -kerning first=289 second=237 amount=3 -kerning first=204 second=249 amount=-2 -kerning first=8211 second=353 amount=4 -kerning first=375 second=365 amount=3 -kerning first=70 second=274 amount=-9 -kerning first=208 second=199 amount=4 -kerning first=231 second=106 amount=-11 -kerning first=274 second=200 amount=-5 -kerning first=74 second=224 amount=-5 -kerning first=363 second=108 amount=-1 -kerning first=160 second=300 amount=-4 -kerning first=298 second=277 amount=-2 -kerning first=98 second=301 amount=2 -kerning first=236 second=226 amount=2 -kerning first=121 second=238 amount=3 -kerning first=256 second=353 amount=-11 -kerning first=364 second=278 amount=-6 -kerning first=282 second=70 amount=-6 -kerning first=194 second=302 amount=-7 -kerning first=197 second=82 amount=-17 -kerning first=102 second=251 amount=-7 -kerning first=345 second=291 amount=-2 -kerning first=348 second=71 amount=3 -kerning first=368 second=228 amount=2 -kerning first=283 second=240 amount=2 -kerning first=198 second=252 amount=-7 -kerning first=83 second=264 amount=3 -kerning first=218 second=379 amount=4 -kerning first=241 second=316 amount=-1 -kerning first=349 second=241 amount=1 -kerning first=202 second=202 amount=-5 -kerning first=87 second=214 amount=2 -kerning first=8212 second=86 amount=3 -kerning first=268 second=203 amount=-2 -kerning first=45 second=290 amount=5 -kerning first=373 second=318 amount=5 -kerning first=291 second=110 amount=2 -kerning first=376 second=98 amount=-2 -kerning first=68 second=227 amount=2 -kerning first=203 second=342 amount=-6 -kerning first=88 second=354 amount=-2 -kerning first=311 second=267 amount=1 -kerning first=334 second=204 amount=3 -kerning first=354 second=331 amount=-6 -kerning first=357 second=111 amount=-9 -kerning first=292 second=280 amount=-6 -kerning first=69 second=367 amount=-2 -kerning first=230 second=229 amount=2 -kerning first=115 second=241 amount=1 -kerning first=358 second=281 amount=-7 -kerning first=273 second=293 amount=-1 -kerning first=277 second=243 amount=1 -kerning first=343 second=244 amount=-2 -kerning first=258 second=256 amount=-7 -kerning first=58 second=280 amount=-4 -kerning first=196 second=205 amount=-7 -kerning first=324 second=257 amount=2 -kerning first=262 second=206 amount=3 -kerning first=282 second=333 amount=-2 -kerning first=285 second=113 amount=5 -kerning first=197 second=345 amount=-12 -kerning first=82 second=357 amount=-2 -kerning first=220 second=282 amount=-6 -kerning first=348 second=334 amount=3 -kerning first=351 second=114 amount=1 -kerning first=371 second=271 amount=2 -kerning first=86 second=307 amount=3 -kerning first=329 second=347 amount=1 -kerning first=244 second=359 amount=-1 -kerning first=352 second=284 amount=3 -kerning first=8211 second=209 amount=-2 -kerning first=67 second=320 amount=2 -kerning first=70 second=100 amount=-3 -kerning first=205 second=245 amount=-2 -kerning first=248 second=309 amount=-13 -kerning first=356 second=234 amount=-7 -kerning first=271 second=246 amount=-9 -kerning first=376 second=361 amount=-5 -kerning first=8212 second=349 amount=4 -kerning first=291 second=373 amount=2 -kerning first=68 second=8211 amount=4 -kerning first=71 second=270 amount=-2 -kerning first=229 second=322 amount=-1 -kerning first=256 second=209 amount=-15 -kerning first=279 second=116 amount=-1 -kerning first=299 second=273 amount=2 -kerning first=342 second=337 amount=-2 -kerning first=257 second=349 amount=1 -kerning first=195 second=298 amount=-7 -kerning first=303 second=223 amount=3 -kerning first=369 second=224 amount=2 -kerning first=304 second=363 amount=-2 -kerning first=84 second=260 amount=-13 -kerning first=330 second=80 amount=-2 -kerning first=242 second=312 amount=-2 -kerning first=65 second=273 amount=-10 -kerning first=88 second=210 amount=-4 -kerning first=108 second=337 amount=1 -kerning first=111 second=117 amount=-2 -kerning first=374 second=314 amount=-2 -kerning first=46 second=286 amount=-3 -kerning first=289 second=326 amount=2 -kerning first=69 second=223 amount=3 -kerning first=207 second=118 amount=-2 -kerning first=292 second=106 amount=-12 -kerning first=89 second=350 amount=-4 -kerning first=312 second=263 amount=1 -kerning first=112 second=287 amount=5 -kerning first=358 second=107 amount=-3 -kerning first=70 second=363 amount=-3 -kerning first=208 second=288 amount=4 -kerning first=231 second=225 amount=1 -kerning first=339 second=120 amount=-2 -kerning first=359 second=277 amount=1 -kerning first=192 second=81 amount=-11 -kerning first=297 second=226 amount=2 -kerning first=258 second=82 amount=-17 -kerning first=363 second=227 amount=2 -kerning first=58 second=106 amount=-11 -kerning first=59 second=276 amount=-4 -kerning first=197 second=201 amount=-10 -kerning first=302 second=316 amount=-2 -kerning first=240 second=265 amount=1 -kerning first=243 second=45 amount=3 -kerning first=371 second=97 amount=2 -kerning first=201 second=121 amount=-3 -kerning first=221 second=278 amount=-4 -kerning first=264 second=342 amount=-4 -kerning first=287 second=279 amount=2 -kerning first=90 second=83 amount=2 -kerning first=225 second=228 amount=2 -kerning first=110 second=240 amount=2 -kerning first=245 second=355 amount=-1 -kerning first=8212 second=205 amount=-5 -kerning first=45 second=379 amount=-4 -kerning first=291 second=229 amount=5 -kerning first=206 second=241 amount=-2 -kerning first=75 second=46 amount=-5 -kerning first=230 second=318 amount=-1 -kerning first=233 second=98 amount=-1 -kerning first=118 second=110 amount=2 -kerning first=342 second=193 amount=3 -kerning first=365 second=100 amount=2 -kerning first=192 second=344 amount=-17 -kerning first=300 second=269 amount=-2 -kerning first=77 second=356 amount=-7 -kerning first=100 second=293 amount=-1 -kerning first=343 second=333 amount=-2 -kerning first=258 second=345 amount=-12 -kerning first=366 second=270 amount=-6 -kerning first=84 second=86 amount=-1 -kerning first=347 second=283 amount=1 -kerning first=262 second=295 amount=2 -kerning first=285 second=232 amount=2 -kerning first=65 second=99 amount=-12 -kerning first=200 second=244 amount=-2 -kerning first=351 second=233 amount=1 -kerning first=66 second=269 amount=2 -kerning first=309 second=309 amount=-2 -kerning first=112 second=113 amount=5 -kerning first=8211 second=298 amount=-5 -kerning first=270 second=195 amount=-8 -kerning first=290 second=322 amount=2 -kerning first=90 second=346 amount=2 -kerning first=228 second=271 amount=2 -kerning first=113 second=283 amount=1 -kerning first=356 second=323 amount=-1 -kerning first=359 second=103 amount=2 -kerning first=271 second=335 amount=-9 -kerning first=294 second=272 amount=-6 -kerning first=71 second=359 amount=2 -kerning first=209 second=284 amount=3 -kerning first=340 second=116 amount=-2 -kerning first=360 second=273 amount=2 -kerning first=275 second=285 amount=2 -kerning first=193 second=77 amount=-8 -kerning first=298 second=222 amount=-2 -kerning first=318 second=349 amount=-8 -kerning first=98 second=246 amount=2 -kerning first=118 second=373 amount=3 -kerning first=256 second=298 amount=-7 -kerning first=364 second=223 amount=2 -kerning first=279 second=235 amount=1 -kerning first=325 second=79 amount=3 -kerning first=260 second=248 amount=-12 -kerning first=280 second=375 amount=-3 -kerning first=198 second=197 amount=-6 -kerning first=221 second=104 amount=-2 -kerning first=287 second=105 amount=3 -kerning first=202 second=117 amount=-2 -kerning first=84 second=349 amount=-10 -kerning first=222 second=274 amount=-9 -kerning first=330 second=199 amount=3 -kerning first=353 second=106 amount=-9 -kerning first=45 second=235 amount=4 -kerning first=373 second=263 amount=4 -kerning first=226 second=224 amount=2 -kerning first=354 second=276 amount=-8 -kerning first=272 second=68 amount=-6 -kerning first=292 second=225 amount=2 -kerning first=207 second=237 amount=-2 -kerning first=338 second=69 amount=-4 -kerning first=358 second=226 amount=-10 -kerning first=319 second=82 amount=-4 -kerning first=231 second=314 amount=-1 -kerning first=119 second=106 amount=-9 -kerning first=254 second=251 amount=2 -kerning first=192 second=200 amount=-10 -kerning first=77 second=212 amount=3 -kerning first=258 second=201 amount=-10 -kerning first=363 second=316 amount=-1 -kerning first=278 second=328 amount=-2 -kerning first=281 second=108 amount=-1 -kerning first=193 second=340 amount=-17 -kerning first=196 second=120 amount=-14 -kerning first=301 second=265 amount=1 -kerning first=101 second=289 amount=2 -kerning first=344 second=329 amount=-2 -kerning first=347 second=109 amount=1 -kerning first=282 second=278 amount=-5 -kerning first=197 second=290 amount=-11 -kerning first=200 second=70 amount=-6 -kerning first=85 second=82 amount=-2 -kerning first=220 second=227 amount=2 -kerning first=325 second=342 amount=-2 -kerning first=263 second=291 amount=1 -kerning first=221 second=367 amount=-5 -kerning first=372 second=356 amount=-6 -kerning first=228 second=97 amount=2 -kerning first=110 second=329 amount=-3 -kerning first=248 second=254 amount=-1 -kerning first=353 second=369 amount=1 -kerning first=291 second=318 amount=2 -kerning first=114 second=279 amount=-2 -kerning first=160 second=71 amount=-3 -kerning first=275 second=111 amount=1 -kerning first=118 second=229 amount=5 -kerning first=194 second=73 amount=-7 -kerning first=99 second=242 amount=-1 -kerning first=234 second=357 amount=-1 -kerning first=119 second=369 amount=2 -kerning first=260 second=74 amount=-9 -kerning first=195 second=243 amount=-12 -kerning first=300 second=358 amount=-2 -kerning first=84 second=205 amount=-2 -kerning first=200 second=333 amount=-2 -kerning first=351 second=322 amount=1 -kerning first=354 second=102 amount=-3 -kerning first=374 second=259 amount=-3 -kerning first=289 second=271 amount=5 -kerning first=66 second=358 amount=-4 -kerning first=204 second=283 amount=-2 -kerning first=112 second=232 amount=2 -kerning first=270 second=284 amount=4 -kerning first=73 second=88 amount=2 -kerning first=74 second=258 amount=-8 -kerning first=117 second=322 amount=-1 -kerning first=160 second=334 amount=-3 -kerning first=193 second=196 amount=-7 -kerning first=298 second=311 amount=-2 -kerning first=78 second=208 amount=-6 -kerning first=98 second=335 amount=2 -kerning first=101 second=115 amount=1 -kerning first=194 second=336 amount=-11 -kerning first=197 second=116 amount=-12 -kerning first=217 second=273 amount=2 -kerning first=102 second=285 amount=-6 -kerning first=260 second=337 amount=-12 -kerning first=368 second=262 amount=2 -kerning first=198 second=286 amount=-7 -kerning first=201 second=66 amount=-5 -kerning first=86 second=78 amount=2 -kerning first=106 second=235 amount=1 -kerning first=349 second=275 amount=1 -kerning first=287 second=224 amount=5 -kerning first=307 second=351 amount=1 -kerning first=222 second=363 amount=2 -kerning first=330 second=288 amount=3 -kerning first=353 second=225 amount=3 -kerning first=45 second=324 amount=2 -kerning first=354 second=365 amount=-6 -kerning first=207 second=326 amount=-2 -kerning first=230 second=263 amount=1 -kerning first=115 second=275 amount=1 -kerning first=358 second=315 amount=-1 -kerning first=73 second=351 amount=-2 -kerning first=342 second=108 amount=-2 -kerning first=119 second=225 amount=5 -kerning first=257 second=120 amount=-1 -kerning first=277 second=277 amount=1 -kerning first=192 second=289 amount=-10 -kerning first=195 second=69 amount=-10 -kerning first=77 second=301 amount=1 -kerning first=80 second=81 amount=3 -kerning first=235 second=353 amount=1 -kerning first=346 second=58 amount=-4 -kerning first=258 second=290 amount=-11 -kerning first=281 second=227 amount=2 -kerning first=324 second=291 amount=2 -kerning first=327 second=71 amount=3 -kerning first=347 second=228 amount=3 -kerning first=367 second=355 amount=-1 -kerning first=282 second=367 amount=-2 -kerning first=65 second=44 amount=-10 -kerning first=197 second=379 amount=-7 -kerning first=85 second=201 amount=-6 -kerning first=243 second=253 amount=-2 -kerning first=289 second=97 amount=5 -kerning first=204 second=109 amount=-2 -kerning first=86 second=341 amount=3 -kerning first=89 second=121 amount=-5 -kerning first=355 second=98 amount=-1 -kerning first=8211 second=243 amount=4 -kerning first=67 second=354 amount=-2 -kerning first=205 second=279 amount=-2 -kerning first=208 second=59 amount=-3 -kerning first=333 second=331 amount=-2 -kerning first=113 second=228 amount=2 -kerning first=356 second=268 amount=-2 -kerning first=71 second=304 amount=3 -kerning first=74 second=84 amount=-5 -kerning first=209 second=229 amount=2 -kerning first=295 second=357 amount=-1 -kerning first=75 second=254 amount=-7 -kerning first=341 second=231 amount=-2 -kerning first=118 second=318 amount=5 -kerning first=121 second=98 amount=3 -kerning first=256 second=243 amount=-12 -kerning first=194 second=192 amount=-7 -kerning first=79 second=204 amount=3 -kerning first=102 second=111 amount=-8 -kerning first=260 second=193 amount=-7 -kerning first=368 second=88 amount=3 -kerning first=283 second=100 amount=2 -kerning first=195 second=332 amount=-11 -kerning first=198 second=112 amount=-7 -kerning first=80 second=344 amount=-7 -kerning first=303 second=257 amount=2 -kerning first=103 second=281 amount=2 -kerning first=349 second=101 amount=1 -kerning first=284 second=270 amount=-2 -kerning first=199 second=282 amount=-2 -kerning first=327 second=334 amount=3 -kerning first=107 second=231 amount=1 -kerning first=68 second=87 amount=2 -kerning first=88 second=244 amount=-2 -kerning first=374 second=348 amount=-4 -kerning first=227 second=309 amount=-10 -kerning first=115 second=101 amount=1 -kerning first=231 second=259 amount=1 -kerning first=116 second=271 amount=2 -kerning first=359 second=311 amount=-1 -kerning first=277 second=103 amount=2 -kerning first=192 second=115 amount=-11 -kerning first=343 second=104 amount=-1 -kerning first=258 second=116 amount=-12 -kerning first=193 second=285 amount=-10 -kerning first=196 second=65 amount=-7 -kerning first=101 second=234 amount=1 -kerning first=236 second=349 amount=1 -kerning first=121 second=361 amount=3 -kerning first=262 second=66 amount=-2 -kerning first=282 second=223 amount=3 -kerning first=197 second=235 amount=-12 -kerning first=325 second=287 amount=2 -kerning first=198 second=375 amount=-7 -kerning first=86 second=197 amount=-3 -kerning first=221 second=312 amount=-2 -kerning first=109 second=104 amount=-1 -kerning first=244 second=249 amount=-2 -kerning first=8211 second=69 amount=-7 -kerning first=205 second=105 amount=-2 -kerning first=330 second=377 amount=4 -kerning first=353 second=314 amount=1 -kerning first=8212 second=239 amount=2 -kerning first=271 second=106 amount=-13 -kerning first=291 second=263 amount=2 -kerning first=206 second=275 amount=-2 -kerning first=114 second=224 amount=-2 -kerning first=337 second=107 amount=-1 -kerning first=272 second=276 amount=-6 -kerning first=75 second=80 amount=-7 -kerning first=315 second=340 amount=-4 -kerning first=318 second=120 amount=-11 -kerning first=256 second=69 amount=-10 -kerning first=296 second=353 amount=-2 -kerning first=119 second=314 amount=2 -kerning first=362 second=354 amount=-6 -kerning first=300 second=303 amount=-2 -kerning first=80 second=200 amount=-9 -kerning first=323 second=240 amount=2 -kerning first=103 second=107 amount=2 -kerning first=258 second=379 amount=-7 -kerning first=281 second=316 amount=-1 -kerning first=196 second=328 amount=-13 -kerning first=199 second=108 amount=2 -kerning first=84 second=120 amount=-13 -kerning first=222 second=45 amount=3 -kerning first=304 second=253 amount=-2 -kerning first=200 second=278 amount=-5 -kerning first=85 second=290 amount=2 -kerning first=88 second=70 amount=-2 -kerning first=108 second=227 amount=2 -kerning first=351 second=267 amount=1 -kerning first=89 second=240 amount=-3 -kerning first=224 second=355 amount=-1 -kerning first=8211 second=332 amount=5 -kerning first=270 second=229 amount=2 -kerning first=290 second=356 amount=-2 -kerning first=116 second=97 amount=2 -kerning first=356 second=357 amount=-3 -kerning first=271 second=369 amount=-9 -kerning first=74 second=203 amount=-5 -kerning first=193 second=111 amount=-12 -kerning first=75 second=343 amount=-9 -kerning first=341 second=320 amount=-1 -kerning first=256 second=332 amount=-11 -kerning first=364 second=257 amount=2 -kerning first=279 second=269 amount=1 -kerning first=194 second=281 amount=-12 -kerning first=325 second=113 amount=2 -kerning first=102 second=230 amount=-7 -kerning first=260 second=282 amount=-10 -kerning first=198 second=231 amount=-5 -kerning first=218 second=358 amount=-6 -kerning first=241 second=295 amount=-1 -kerning first=369 second=347 amount=1 -kerning first=284 second=359 amount=2 -kerning first=110 second=100 amount=2 -kerning first=8212 second=65 amount=-13 -kerning first=45 second=269 amount=4 -kerning first=373 second=297 amount=2 -kerning first=206 second=101 amount=-2 -kerning first=311 second=246 amount=1 -kerning first=88 second=333 amount=-2 -kerning first=269 second=322 amount=-1 -kerning first=292 second=259 amount=2 -kerning first=358 second=260 amount=-13 -kerning first=339 second=273 amount=2 -kerning first=254 second=285 amount=5 -kerning first=362 second=210 amount=2 -kerning first=192 second=234 amount=-12 -kerning first=297 second=349 amount=1 -kerning first=323 second=66 amount=2 -kerning first=258 second=235 amount=-12 -kerning first=104 second=103 amount=2 -kerning first=370 second=80 amount=-2 -kerning first=197 second=324 amount=-13 -kerning first=105 second=273 amount=2 -kerning first=201 second=274 amount=-5 -kerning first=86 second=286 amount=5 -kerning first=109 second=223 amount=4 -kerning first=225 second=351 amount=1 -kerning first=356 second=213 amount=-2 -kerning first=8212 second=328 amount=2 -kerning first=271 second=225 amount=-8 -kerning first=376 second=340 amount=-1 -kerning first=357 second=353 amount=-8 -kerning first=298 second=82 amount=-2 -kerning first=75 second=199 amount=-8 -kerning first=318 second=239 amount=-3 -kerning first=98 second=106 amount=-7 -kerning first=118 second=263 amount=4 -kerning first=194 second=107 amount=-12 -kerning first=319 second=379 amount=2 -kerning first=342 second=316 amount=-2 -kerning first=260 second=108 amount=-12 -kerning first=195 second=277 amount=-12 -kerning first=83 second=69 amount=-3 -kerning first=103 second=226 amount=5 -kerning first=346 second=266 amount=3 -kerning first=304 second=342 amount=-2 -kerning first=84 second=239 amount=-2 -kerning first=219 second=354 amount=-6 -kerning first=350 second=216 amount=3 -kerning first=265 second=228 amount=1 -kerning first=285 second=355 amount=2 -kerning first=200 second=367 amount=-2 -kerning first=85 second=379 amount=4 -kerning first=331 second=229 amount=2 -kerning first=246 second=241 amount=-2 -kerning first=374 second=293 amount=-2 -kerning first=289 second=305 amount=3 -kerning first=69 second=202 amount=-5 -kerning first=312 second=242 amount=1 -kerning first=89 second=329 amount=-6 -kerning first=227 second=254 amount=-1 -kerning first=358 second=86 amount=-1 -kerning first=273 second=98 amount=-1 -kerning first=70 second=342 amount=-7 -kerning first=339 second=99 amount=1 -kerning first=254 second=111 amount=2 -kerning first=97 second=229 amount=2 -kerning first=193 second=230 amount=-10 -kerning first=98 second=369 amount=2 -kerning first=302 second=295 amount=-2 -kerning first=82 second=192 amount=3 -kerning first=105 second=99 amount=1 -kerning first=240 second=244 amount=1 -kerning first=345 second=359 amount=-1 -kerning first=260 second=371 amount=-13 -kerning first=286 second=88 amount=1 -kerning first=198 second=320 amount=-2 -kerning first=83 second=332 amount=3 -kerning first=86 second=112 amount=3 -kerning first=221 second=257 amount=-3 -kerning first=106 second=269 amount=1 -kerning first=349 second=309 amount=-9 -kerning first=202 second=270 amount=-5 -kerning first=87 second=282 amount=-6 -kerning first=333 second=102 amount=-2 -kerning first=248 second=114 amount=-2 -kerning first=353 second=259 amount=3 -kerning first=376 second=196 amount=-3 -kerning first=45 second=358 amount=-7 -kerning first=311 second=335 amount=1 -kerning first=226 second=347 amount=1 -kerning first=111 second=359 amount=-1 -kerning first=338 second=222 amount=-7 -kerning first=115 second=309 amount=-9 -kerning first=358 second=349 amount=-10 -kerning first=119 second=259 amount=5 -kerning first=277 second=311 amount=-1 -kerning first=192 second=323 amount=-15 -kerning first=195 second=103 amount=-10 -kerning first=300 second=248 amount=-2 -kerning first=258 second=324 amount=-13 -kerning first=261 second=104 amount=-1 -kerning first=196 second=273 amount=-10 -kerning first=84 second=65 amount=-13 -kerning first=239 second=337 amount=1 -kerning first=242 second=117 amount=-2 -kerning first=262 second=274 amount=-2 -kerning first=370 second=199 amount=2 -kerning first=65 second=78 amount=-15 -kerning first=200 second=223 amount=3 -kerning first=374 second=119 amount=-4 -kerning first=66 second=248 amount=2 -kerning first=201 second=363 amount=-2 -kerning first=86 second=375 amount=3 -kerning first=8211 second=277 amount=4 -kerning first=375 second=289 amount=7 -kerning first=70 second=198 amount=-15 -kerning first=333 second=365 amount=-2 -kerning first=356 second=302 amount=-2 -kerning first=71 second=338 amount=3 -kerning first=75 second=288 amount=-8 -kerning first=78 second=68 amount=-6 -kerning first=318 second=328 amount=-9 -kerning first=98 second=225 amount=5 -kerning first=341 second=265 amount=-2 -kerning first=256 second=277 amount=-12 -kerning first=364 second=202 amount=-6 -kerning first=59 second=81 amount=-3 -kerning first=194 second=226 amount=-10 -kerning first=302 second=121 amount=-2 -kerning first=260 second=227 amount=-10 -kerning first=280 second=354 amount=-5 -kerning first=303 second=291 amount=2 -kerning first=221 second=83 amount=-4 -kerning first=326 second=228 amount=2 -kerning first=241 second=240 amount=2 -kerning first=284 second=304 amount=3 -kerning first=199 second=316 amount=2 -kerning first=84 second=328 amount=-6 -kerning first=107 second=265 amount=1 -kerning first=45 second=214 amount=5 -kerning first=373 second=242 amount=4 -kerning first=65 second=341 amount=-12 -kerning first=88 second=278 amount=-2 -kerning first=331 second=318 amount=-1 -kerning first=46 second=354 amount=-10 -kerning first=112 second=355 amount=3 -kerning first=358 second=205 amount=-2 -kerning first=73 second=241 amount=-2 -kerning first=208 second=356 amount=-6 -kerning first=316 second=281 amount=1 -kerning first=231 second=293 amount=-1 -kerning first=254 second=230 amount=2 -kerning first=300 second=74 amount=-2 -kerning first=320 second=231 amount=-1 -kerning first=97 second=318 amount=-1 -kerning first=100 second=98 amount=-1 -kerning first=340 second=358 amount=-8 -kerning first=363 second=295 amount=-1 -kerning first=193 second=319 amount=-7 -kerning first=196 second=99 amount=-12 -kerning first=301 second=244 amount=1 -kerning first=259 second=320 amount=-1 -kerning first=59 second=344 amount=-4 -kerning first=197 second=269 amount=-12 -kerning first=240 second=333 amount=1 -kerning first=348 second=258 amount=-9 -kerning first=260 second=8211 amount=-12 -kerning first=286 second=207 amount=3 -kerning first=66 second=74 amount=-1 -kerning first=86 second=231 amount=3 -kerning first=221 second=346 amount=-4 -kerning first=329 second=271 amount=2 -kerning first=352 second=208 amount=-3 -kerning first=8211 second=103 amount=4 -kerning first=287 second=347 amount=2 -kerning first=8212 second=273 amount=4 -kerning first=376 second=285 amount=-3 -kerning first=291 second=297 amount=3 -kerning first=206 second=309 amount=-14 -kerning first=75 second=114 amount=-9 -kerning first=256 second=103 amount=-10 -kerning first=257 second=273 amount=2 -kerning first=195 second=222 amount=-17 -kerning first=300 second=337 amount=-2 -kerning first=323 second=274 amount=-6 -kerning first=346 second=211 amount=3 -kerning first=366 second=338 amount=2 -kerning first=222 second=79 amount=4 -kerning first=327 second=224 amount=2 -kerning first=104 second=311 amount=-1 -kerning first=242 second=236 amount=-2 -kerning first=370 second=288 amount=2 -kerning first=65 second=197 amount=-7 -kerning first=351 second=301 amount=1 -kerning first=354 second=81 amount=-2 -kerning first=374 second=238 amount=-3 -kerning first=46 second=210 amount=-3 -kerning first=66 second=337 amount=2 -kerning first=69 second=117 amount=-2 -kerning first=289 second=250 amount=2 -kerning first=89 second=274 amount=-4 -kerning first=8211 second=366 amount=5 -kerning first=70 second=287 amount=-3 -kerning first=208 second=212 amount=4 -kerning first=231 second=119 amount=-1 -kerning first=294 second=340 amount=-2 -kerning first=74 second=237 amount=-1 -kerning first=232 second=289 amount=2 -kerning first=275 second=353 amount=1 -kerning first=213 second=302 amount=3 -kerning first=98 second=314 amount=3 -kerning first=121 second=251 amount=3 -kerning first=364 second=291 amount=2 -kerning first=59 second=200 amount=-4 -kerning first=194 second=315 amount=-7 -kerning first=82 second=107 amount=-2 -kerning first=348 second=84 amount=-3 -kerning first=260 second=316 amount=-12 -kerning first=198 second=265 amount=-5 -kerning first=221 second=202 amount=-4 -kerning first=329 second=97 amount=2 -kerning first=241 second=329 amount=-3 -kerning first=244 second=109 amount=-2 -kerning first=67 second=70 amount=-2 -kerning first=87 second=227 amount=2 -kerning first=222 second=342 amount=-7 -kerning first=8212 second=99 amount=4 -kerning first=45 second=303 amount=2 -kerning first=373 second=331 amount=2 -kerning first=376 second=111 amount=-4 -kerning first=68 second=240 amount=2 -kerning first=88 second=367 amount=-3 -kerning first=354 second=344 amount=-5 -kerning first=230 second=242 amount=1 -kerning first=335 second=357 amount=-1 -kerning first=296 second=243 amount=-2 -kerning first=192 second=268 amount=-11 -kerning first=320 second=320 amount=-2 -kerning first=323 second=100 amount=2 -kerning first=343 second=257 amount=-2 -kerning first=258 second=269 amount=-12 -kerning first=301 second=333 amount=1 -kerning first=101 second=357 amount=-1 -kerning first=197 second=358 amount=-20 -kerning first=263 second=359 amount=-1 -kerning first=286 second=296 amount=3 -kerning first=66 second=193 amount=-5 -kerning first=204 second=88 amount=2 -kerning first=309 second=233 amount=1 -kerning first=86 second=320 amount=3 -kerning first=89 second=100 amount=-3 -kerning first=109 second=257 amount=2 -kerning first=8211 second=222 amount=-8 -kerning first=267 second=309 amount=-11 -kerning first=270 second=89 amount=2 -kerning first=375 second=234 amount=3 -kerning first=70 second=113 amount=-3 -kerning first=8212 second=362 amount=5 -kerning first=271 second=259 amount=-8 -kerning first=71 second=283 amount=3 -kerning first=209 second=208 amount=-6 -kerning first=232 second=115 amount=1 -kerning first=114 second=347 amount=-2 -kerning first=298 second=116 amount=-2 -kerning first=75 second=233 amount=-10 -kerning first=318 second=273 amount=-8 -kerning first=233 second=285 amount=2 -kerning first=118 second=297 amount=2 -kerning first=256 second=222 amount=-17 -kerning first=214 second=298 amount=3 -kerning first=322 second=223 amount=3 -kerning first=237 second=235 amount=1 -kerning first=365 second=287 amount=2 -kerning first=368 second=67 amount=2 -kerning first=195 second=311 amount=-12 -kerning first=261 second=312 amount=-1 -kerning first=84 second=273 amount=-10 -kerning first=222 second=198 amount=-15 -kerning first=245 second=105 amount=-2 -kerning first=370 second=377 amount=4 -kerning first=65 second=286 amount=-11 -kerning first=68 second=66 amount=-6 -kerning first=311 second=106 amount=-12 -kerning first=354 second=200 amount=-8 -kerning first=289 second=339 amount=2 -kerning first=204 second=351 amount=-2 -kerning first=89 second=363 amount=-5 -kerning first=358 second=120 amount=-13 -kerning first=378 second=277 amount=1 -kerning first=316 second=226 amount=2 -kerning first=362 second=70 amount=-2 -kerning first=74 second=326 amount=-4 -kerning first=77 second=106 amount=-11 -kerning first=363 second=240 amount=2 -kerning first=193 second=264 amount=-11 -kerning first=196 second=44 amount=-10 -kerning first=78 second=276 amount=-6 -kerning first=282 second=202 amount=-5 -kerning first=197 second=214 amount=-11 -kerning first=302 second=329 amount=-4 -kerning first=325 second=266 amount=3 -kerning first=102 second=353 amount=-7 -kerning first=348 second=203 amount=-3 -kerning first=198 second=354 amount=-2 -kerning first=221 second=291 amount=-3 -kerning first=264 second=355 amount=2 -kerning first=372 second=280 amount=-6 -kerning first=205 second=84 amount=-2 -kerning first=330 second=356 amount=-6 -kerning first=353 second=293 amount=1 -kerning first=356 second=73 amount=-2 -kerning first=376 second=230 amount=-3 -kerning first=291 second=242 amount=2 -kerning first=71 second=109 amount=2 -kerning first=206 second=254 amount=-2 -kerning first=357 second=243 amount=-9 -kerning first=75 second=59 amount=-5 -kerning first=210 second=204 amount=3 -kerning first=318 second=99 amount=-9 -kerning first=233 second=111 amount=1 -kerning first=234 second=281 amount=1 -kerning first=119 second=293 amount=2 -kerning first=365 second=113 amount=2 -kerning first=192 second=357 amount=-12 -kerning first=258 second=358 amount=-20 -kerning first=281 second=295 amount=-1 -kerning first=199 second=87 amount=4 -kerning first=304 second=232 amount=-2 -kerning first=84 second=99 amount=-7 -kerning first=324 second=359 amount=-1 -kerning first=285 second=245 amount=2 -kerning first=328 second=309 amount=-10 -kerning first=351 second=246 amount=1 -kerning first=66 second=282 amount=-4 -kerning first=244 second=8212 amount=3 -kerning first=270 second=208 amount=-6 -kerning first=70 second=232 amount=-6 -kerning first=205 second=347 amount=-2 -kerning first=356 second=336 amount=-2 -kerning first=359 second=116 amount=-1 -kerning first=294 second=285 amount=2 -kerning first=232 second=234 amount=1 -kerning first=360 second=286 amount=2 -kerning first=160 second=258 amount=-3 -kerning first=193 second=90 amount=-7 -kerning first=298 second=235 amount=-2 -kerning first=75 second=322 amount=-7 -kerning first=98 second=259 amount=5 -kerning first=256 second=311 amount=-12 -kerning first=279 second=248 amount=1 -kerning first=194 second=260 amount=-7 -kerning first=240 second=104 amount=-1 -kerning first=198 second=210 amount=-7 -kerning first=83 second=222 amount=-3 -kerning first=221 second=117 amount=-5 -kerning first=103 second=349 amount=2 -kerning first=44 second=78 amount=-5 -kerning first=372 second=106 amount=-12 -kerning first=287 second=118 amount=2 -kerning first=307 second=275 amount=1 -kerning first=222 second=287 amount=2 -kerning first=330 second=212 amount=3 -kerning first=353 second=119 amount=1 -kerning first=265 second=351 amount=1 -kerning first=45 second=248 amount=4 -kerning first=65 second=375 amount=-4 -kerning first=206 second=80 amount=-2 -kerning first=311 second=225 amount=2 -kerning first=111 second=249 amount=-2 -kerning first=354 second=289 amount=-10 -kerning first=272 second=81 amount=4 -kerning first=207 second=250 amount=-2 -kerning first=338 second=82 amount=-7 -kerning first=358 second=239 amount=-2 -kerning first=73 second=275 amount=-2 -kerning first=234 second=107 amount=-1 -kerning first=119 second=119 amount=3 -kerning first=192 second=213 amount=-11 -kerning first=300 second=108 amount=-2 -kerning first=77 second=225 amount=1 -kerning first=320 second=265 amount=-1 -kerning first=120 second=289 amount=2 -kerning first=258 second=214 amount=-11 -kerning first=363 second=329 amount=-3 -kerning first=193 second=353 amount=-11 -kerning first=219 second=70 amount=-2 -kerning first=239 second=227 amount=2 -kerning first=344 second=342 amount=-8 -kerning first=305 second=228 amount=2 -kerning first=82 second=315 amount=3 -kerning first=220 second=240 amount=2 -kerning first=266 second=84 amount=-2 -kerning first=371 second=229 amount=2 -kerning first=86 second=265 amount=3 -kerning first=267 second=254 amount=-1 -kerning first=67 second=278 amount=-2 -kerning first=70 second=58 amount=-8 -kerning first=356 second=192 amount=-13 -kerning first=8212 second=307 amount=2 -kerning first=376 second=319 amount=-3 -kerning first=291 second=331 amount=2 -kerning first=71 second=228 amount=5 -kerning first=160 second=84 amount=-12 -kerning first=272 second=344 amount=-3 -kerning first=213 second=73 amount=3 -kerning first=118 second=242 amount=4 -kerning first=194 second=86 amount=-7 -kerning first=260 second=87 amount=-7 -kerning first=280 second=244 amount=-2 -kerning first=195 second=256 amount=-7 -kerning first=80 second=268 amount=3 -kerning first=300 second=371 amount=-2 -kerning first=241 second=100 amount=2 -kerning first=261 second=257 amount=2 -kerning first=199 second=206 amount=3 -kerning first=307 second=101 amount=1 -kerning first=222 second=113 amount=3 -kerning first=350 second=195 amount=-9 -kerning first=373 second=102 amount=2 -kerning first=45 second=74 amount=-7 -kerning first=65 second=231 amount=-12 -kerning first=85 second=358 amount=-6 -kerning first=223 second=283 amount=1 -kerning first=351 second=335 amount=1 -kerning first=354 second=115 amount=-10 -kerning first=374 second=272 amount=-4 -kerning first=112 second=245 amount=2 -kerning first=355 second=285 amount=2 -kerning first=358 second=65 amount=-13 -kerning first=73 second=101 amount=-2 -kerning first=336 second=298 amount=3 -kerning first=359 second=235 amount=1 -kerning first=71 second=8212 amount=4 -kerning first=74 second=271 amount=-5 -kerning first=235 second=103 amount=2 -kerning first=193 second=209 amount=-15 -kerning first=298 second=324 amount=-2 -kerning first=236 second=273 amount=2 -kerning first=344 second=198 amount=3 -kerning first=121 second=285 amount=7 -kerning first=279 second=337 amount=1 -kerning first=282 second=117 amount=-2 -kerning first=194 second=349 amount=-11 -kerning first=220 second=66 amount=-6 -kerning first=325 second=211 amount=3 -kerning first=260 second=350 amount=-8 -kerning first=283 second=287 amount=2 -kerning first=198 second=299 amount=-7 -kerning first=326 second=351 amount=1 -kerning first=106 second=248 amount=1 -kerning first=352 second=68 amount=-3 -kerning first=264 second=300 amount=3 -kerning first=372 second=225 amount=2 -kerning first=287 second=237 amount=3 -kerning first=67 second=104 amount=2 -kerning first=353 second=238 amount=1 -kerning first=373 second=365 amount=2 -kerning first=45 second=337 amount=4 -kerning first=68 second=274 amount=-6 -kerning first=229 second=106 amount=-10 -kerning first=272 second=200 amount=-6 -kerning first=72 second=224 amount=2 -kerning first=207 second=339 amount=-2 -kerning first=295 second=107 amount=-1 -kerning first=338 second=201 amount=-4 -kerning first=358 second=328 amount=-6 -kerning first=361 second=108 amount=-1 -kerning first=296 second=277 amount=-2 -kerning first=234 second=226 amount=2 -kerning first=119 second=238 amount=2 -kerning first=254 second=353 amount=2 -kerning first=362 second=278 amount=-6 -kerning first=280 second=70 amount=-6 -kerning first=192 second=302 amount=-7 -kerning first=195 second=82 amount=-17 -kerning first=343 second=291 amount=-2 -kerning first=346 second=71 amount=3 -kerning first=366 second=228 amount=2 -kerning first=281 second=240 amount=2 -kerning first=58 second=327 amount=-5 -kerning first=84 second=44 amount=-15 -kerning first=327 second=84 amount=-6 -kerning first=347 second=241 amount=1 -kerning first=200 second=202 amount=-5 -kerning first=85 second=214 amount=2 -kerning first=328 second=254 amount=-1 -kerning first=266 second=203 amount=-2 -kerning first=46 second=70 amount=-4 -kerning first=371 second=318 amount=-1 -kerning first=289 second=110 amount=2 -kerning first=374 second=98 amount=-2 -kerning first=66 second=227 amount=3 -kerning first=201 second=342 amount=-6 -kerning first=309 second=267 amount=1 -kerning first=332 second=204 amount=3 -kerning first=109 second=291 amount=2 -kerning first=355 second=111 amount=1 -kerning first=8211 second=256 amount=-13 -kerning first=290 second=280 amount=-2 -kerning first=228 second=229 amount=2 -kerning first=356 second=281 amount=-7 -kerning first=74 second=97 amount=-5 -kerning first=160 second=203 amount=-6 -kerning first=275 second=243 amount=1 -kerning first=75 second=267 amount=-10 -kerning first=318 second=307 amount=-3 -kerning first=236 second=99 amount=1 -kerning first=341 second=244 amount=-2 -kerning first=118 second=331 amount=2 -kerning first=121 second=111 amount=3 -kerning first=256 second=256 amount=-7 -kerning first=194 second=205 amount=-7 -kerning first=237 second=269 amount=1 -kerning first=122 second=281 amount=1 -kerning first=260 second=206 amount=-7 -kerning first=280 second=333 amount=-2 -kerning first=283 second=113 amount=2 -kerning first=195 second=345 amount=-12 -kerning first=218 second=282 amount=-6 -kerning first=346 second=334 amount=3 -kerning first=349 second=114 amount=1 -kerning first=369 second=271 amount=2 -kerning first=199 second=295 amount=2 -kerning first=84 second=307 amount=-2 -kerning first=107 second=244 amount=1 -kerning first=242 second=359 amount=-1 -kerning first=350 second=284 amount=3 -kerning first=45 second=193 amount=-13 -kerning first=65 second=320 amount=-12 -kerning first=68 second=100 amount=2 -kerning first=203 second=245 amount=-2 -kerning first=246 second=309 amount=-13 -kerning first=354 second=234 amount=-7 -kerning first=269 second=246 amount=-1 -kerning first=374 second=361 amount=-5 -kerning first=289 second=373 amount=2 -kerning first=66 second=8211 amount=5 -kerning first=69 second=270 amount=-5 -kerning first=315 second=90 amount=2 -kerning first=227 second=322 amount=-1 -kerning first=115 second=114 amount=1 -kerning first=277 second=116 amount=-1 -kerning first=297 second=273 amount=2 -kerning first=340 second=337 amount=-2 -kerning first=193 second=298 amount=-7 -kerning first=196 second=78 amount=-15 -kerning first=301 second=223 amount=3 -kerning first=367 second=224 amount=2 -kerning first=59 second=323 amount=-5 -kerning first=197 second=248 amount=-12 -kerning first=82 second=260 amount=3 -kerning first=302 second=363 amount=-2 -kerning first=240 second=312 amount=-1 -kerning first=86 second=210 amount=5 -kerning first=106 second=337 amount=1 -kerning first=8211 second=82 amount=-6 -kerning first=44 second=286 amount=-3 -kerning first=287 second=326 amount=2 -kerning first=67 second=223 amount=3 -kerning first=205 second=118 amount=-2 -kerning first=110 second=287 amount=2 -kerning first=356 second=107 amount=-3 -kerning first=8212 second=252 amount=2 -kerning first=271 second=119 amount=-10 -kerning first=376 second=264 amount=-1 -kerning first=209 second=68 amount=-6 -kerning first=229 second=225 amount=2 -kerning first=337 second=120 amount=-2 -kerning first=357 second=277 amount=-9 -kerning first=272 second=289 amount=2 -kerning first=295 second=226 amount=2 -kerning first=256 second=82 amount=-17 -kerning first=361 second=227 amount=2 -kerning first=195 second=201 amount=-10 -kerning first=300 second=316 amount=-2 -kerning first=80 second=213 amount=3 -kerning first=103 second=120 amount=-1 -kerning first=369 second=97 amount=2 -kerning first=196 second=341 amount=-12 -kerning first=219 second=278 amount=-6 -kerning first=222 second=58 amount=-8 -kerning first=327 second=203 amount=-6 -kerning first=262 second=342 amount=-4 -kerning first=285 second=279 amount=2 -kerning first=223 second=228 amount=2 -kerning first=108 second=240 amount=2 -kerning first=243 second=355 amount=-1 -kerning first=289 second=229 amount=5 -kerning first=204 second=241 amount=-2 -kerning first=355 second=230 amount=1 -kerning first=228 second=318 amount=-1 -kerning first=231 second=98 amount=-1 -kerning first=340 second=193 amount=3 -kerning first=363 second=100 amount=2 -kerning first=160 second=292 amount=-6 -kerning first=298 second=269 amount=-2 -kerning first=75 second=356 amount=-9 -kerning first=98 second=293 amount=3 -kerning first=341 second=333 amount=-2 -kerning first=121 second=230 amount=2 -kerning first=256 second=345 amount=-12 -kerning first=364 second=270 amount=-6 -kerning first=197 second=74 amount=-9 -kerning first=102 second=243 amount=-8 -kerning first=345 second=283 amount=-2 -kerning first=260 second=295 amount=-12 -kerning first=283 second=232 amount=1 -kerning first=198 second=244 amount=-5 -kerning first=83 second=256 amount=-9 -kerning first=349 second=233 amount=1 -kerning first=307 second=309 amount=-11 -kerning first=107 second=333 amount=1 -kerning first=110 second=113 amount=2 -kerning first=8212 second=78 amount=-2 -kerning first=45 second=282 amount=-7 -kerning first=376 second=90 amount=-2 -kerning first=206 second=114 amount=-2 -kerning first=311 second=259 amount=2 -kerning first=226 second=271 amount=2 -kerning first=354 second=323 amount=-1 -kerning first=357 second=103 amount=-8 -kerning first=269 second=335 amount=-1 -kerning first=292 second=272 amount=-6 -kerning first=115 second=233 amount=1 -kerning first=358 second=273 amount=-10 -kerning first=273 second=285 amount=2 -kerning first=296 second=222 amount=-2 -kerning first=73 second=309 amount=-14 -kerning first=316 second=349 amount=1 -kerning first=362 second=223 amount=2 -kerning first=277 second=235 amount=1 -kerning first=77 second=259 amount=1 -kerning first=323 second=79 amount=3 -kerning first=235 second=311 amount=-1 -kerning first=258 second=248 amount=-12 -kerning first=278 second=375 amount=-3 -kerning first=58 second=272 amount=-3 -kerning first=196 second=197 amount=-7 -kerning first=104 second=116 amount=-1 -kerning first=285 second=105 amount=3 -kerning first=197 second=337 amount=-12 -kerning first=200 second=117 amount=-2 -kerning first=220 second=274 amount=-6 -kerning first=351 second=106 amount=-9 -kerning first=86 second=299 amount=3 -kerning first=89 second=79 amount=-1 -kerning first=224 second=224 amount=2 -kerning first=352 second=276 amount=-3 -kerning first=8211 second=201 amount=-7 -kerning first=270 second=68 amount=-6 -kerning first=67 second=312 amount=2 -kerning first=205 second=237 amount=-2 -kerning first=356 second=226 amount=-10 -kerning first=271 second=238 amount=-3 -kerning first=376 second=353 amount=-4 -kerning first=291 second=365 amount=2 -kerning first=71 second=262 amount=3 -kerning first=229 second=314 amount=-1 -kerning first=117 second=106 amount=-10 -kerning first=55 second=55 amount=-8 -kerning first=75 second=212 amount=-8 -kerning first=98 second=119 amount=2 -kerning first=256 second=201 amount=-10 -kerning first=361 second=316 amount=-1 -kerning first=276 second=328 amount=-2 -kerning first=279 second=108 amount=-1 -kerning first=194 second=120 amount=-14 -kerning first=99 second=289 amount=1 -kerning first=342 second=329 amount=-2 -kerning first=260 second=121 amount=-4 -kerning first=280 second=278 amount=-5 -kerning first=195 second=290 amount=-11 -kerning first=198 second=70 amount=-2 -kerning first=83 second=82 amount=-3 -kerning first=218 second=227 amount=2 -kerning first=323 second=342 amount=-2 -kerning first=103 second=239 amount=3 -kerning first=261 second=291 amount=2 -kerning first=304 second=355 amount=-2 -kerning first=370 second=356 amount=-6 -kerning first=65 second=265 amount=-12 -kerning first=68 second=45 amount=4 -kerning first=88 second=202 amount=-2 -kerning first=226 second=97 amount=2 -kerning first=108 second=329 amount=-1 -kerning first=111 second=109 amount=-2 -kerning first=246 second=254 amount=-1 -kerning first=351 second=369 amount=1 -kerning first=46 second=278 amount=-4 -kerning first=289 second=318 amount=2 -kerning first=207 second=110 amount=-2 -kerning first=89 second=342 amount=-1 -kerning first=112 second=279 amount=2 -kerning first=358 second=99 amount=-7 -kerning first=273 second=111 amount=1 -kerning first=70 second=355 amount=-2 -kerning first=208 second=280 amount=-6 -kerning first=116 second=229 amount=2 -kerning first=359 second=269 amount=1 -kerning first=192 second=73 amount=-7 -kerning first=74 second=305 amount=-1 -kerning first=232 second=357 amount=-1 -kerning first=258 second=74 amount=-9 -kerning first=193 second=243 amount=-12 -kerning first=298 second=358 amount=-2 -kerning first=59 second=268 amount=-3 -kerning first=197 second=193 amount=-7 -kerning first=220 second=100 amount=2 -kerning first=240 second=257 amount=2 -kerning first=198 second=333 amount=-5 -kerning first=221 second=270 amount=-4 -kerning first=349 second=322 amount=1 -kerning first=372 second=259 amount=2 -kerning first=287 second=271 amount=5 -kerning first=8212 second=197 amount=-13 -kerning first=45 second=371 amount=2 -kerning first=71 second=88 amount=1 -kerning first=206 second=233 amount=-2 -kerning first=207 second=373 amount=-2 -kerning first=115 second=322 amount=1 -kerning first=118 second=102 amount=2 -kerning first=56 second=51 amount=2 -kerning first=296 second=311 amount=-2 -kerning first=99 second=115 amount=1 -kerning first=192 second=336 amount=-11 -kerning first=195 second=116 amount=-12 -kerning first=100 second=285 amount=2 -kerning first=258 second=337 amount=-12 -kerning first=366 second=262 amount=2 -kerning first=196 second=286 amount=-11 -kerning first=199 second=66 amount=-2 -kerning first=81 second=298 amount=3 -kerning first=84 second=78 amount=-1 -kerning first=219 second=223 amount=2 -kerning first=347 second=275 amount=1 -kerning first=370 second=212 amount=2 -kerning first=285 second=224 amount=5 -kerning first=305 second=351 amount=1 -kerning first=351 second=225 amount=3 -kerning first=112 second=105 amount=2 -kerning first=8211 second=290 amount=5 -kerning first=290 second=314 amount=2 -kerning first=205 second=326 amount=-2 -kerning first=208 second=106 amount=-12 -kerning first=113 second=275 amount=1 -kerning first=356 second=315 amount=-1 -kerning first=71 second=351 amount=2 -kerning first=209 second=276 amount=-6 -kerning first=337 second=328 amount=-2 -kerning first=117 second=225 amount=2 -kerning first=340 second=108 amount=-2 -kerning first=275 second=277 amount=1 -kerning first=193 second=69 amount=-10 -kerning first=75 second=301 amount=-7 -kerning first=78 second=81 amount=3 -kerning first=318 second=341 amount=-9 -kerning first=98 second=238 amount=2 -kerning first=233 second=353 amount=1 -kerning first=118 second=365 amount=2 -kerning first=256 second=290 amount=-11 -kerning first=279 second=227 amount=2 -kerning first=325 second=71 amount=3 -kerning first=345 second=228 amount=-2 -kerning first=260 second=240 amount=-10 -kerning first=365 second=355 amount=-1 -kerning first=280 second=367 amount=-2 -kerning first=195 second=379 amount=-7 -kerning first=83 second=201 amount=-3 -kerning first=103 second=328 amount=2 -kerning first=287 second=97 amount=5 -kerning first=202 second=109 amount=-2 -kerning first=84 second=341 amount=-6 -kerning first=222 second=266 amount=4 -kerning first=327 second=381 amount=4 -kerning first=353 second=98 amount=1 -kerning first=45 second=227 amount=4 -kerning first=65 second=354 amount=-20 -kerning first=354 second=268 amount=-2 -kerning first=72 second=84 amount=-6 -kerning first=273 second=230 amount=1 -kerning first=73 second=254 amount=-2 -kerning first=339 second=231 amount=1 -kerning first=119 second=98 amount=2 -kerning first=254 second=243 amount=2 -kerning first=192 second=192 amount=-7 -kerning first=320 second=244 amount=-1 -kerning first=100 second=111 amount=1 -kerning first=258 second=193 amount=-7 -kerning first=366 second=88 amount=3 -kerning first=281 second=100 amount=2 -kerning first=193 second=332 amount=-11 -kerning first=301 second=257 amount=2 -kerning first=78 second=344 amount=-2 -kerning first=101 second=281 amount=1 -kerning first=347 second=101 amount=1 -kerning first=282 second=270 amount=-5 -kerning first=197 second=282 amount=-10 -kerning first=325 second=334 amount=3 -kerning first=105 second=231 amount=1 -kerning first=66 second=87 amount=2 -kerning first=86 second=244 amount=3 -kerning first=221 second=359 amount=-2 -kerning first=225 second=309 amount=-10 -kerning first=113 second=101 amount=1 -kerning first=353 second=361 amount=1 -kerning first=8212 second=286 amount=5 -kerning first=294 second=90 amount=4 -kerning first=71 second=207 amount=3 -kerning first=206 second=322 amount=-2 -kerning first=229 second=259 amount=2 -kerning first=111 second=8212 amount=3 -kerning first=114 second=271 amount=-2 -kerning first=275 second=103 amount=2 -kerning first=341 second=104 amount=-1 -kerning first=256 second=116 amount=-12 -kerning first=194 second=65 amount=-7 -kerning first=234 second=349 amount=1 -kerning first=119 second=361 amount=2 -kerning first=260 second=66 amount=-8 -kerning first=280 second=223 amount=3 -kerning first=195 second=235 amount=-12 -kerning first=323 second=287 amount=2 -kerning first=196 second=375 amount=-4 -kerning first=84 second=197 amount=-13 -kerning first=242 second=249 amount=-2 -kerning first=65 second=210 amount=-11 -kerning first=88 second=117 amount=-3 -kerning first=351 second=314 amount=1 -kerning first=269 second=106 amount=-11 -kerning first=289 second=263 amount=2 -kerning first=204 second=275 amount=-2 -kerning first=89 second=287 amount=-3 -kerning first=112 second=224 amount=5 -kerning first=335 second=107 amount=-1 -kerning first=358 second=44 amount=-15 -kerning first=8211 second=379 amount=-4 -kerning first=270 second=276 amount=-6 -kerning first=73 second=80 amount=-2 -kerning first=208 second=225 amount=2 -kerning first=313 second=340 amount=-4 -kerning first=316 second=120 amount=2 -kerning first=117 second=314 amount=-1 -kerning first=360 second=354 amount=-6 -kerning first=298 second=303 amount=-2 -kerning first=78 second=200 amount=-6 -kerning first=101 second=107 amount=-1 -kerning first=256 second=379 amount=-7 -kerning first=279 second=316 amount=-1 -kerning first=59 second=213 amount=-3 -kerning first=194 second=328 amount=-13 -kerning first=197 second=108 amount=-12 -kerning first=82 second=120 amount=-2 -kerning first=302 second=253 amount=-2 -kerning first=102 second=277 amount=-8 -kerning first=260 second=329 amount=-19 -kerning first=198 second=278 amount=-2 -kerning first=83 second=290 amount=3 -kerning first=106 second=227 amount=2 -kerning first=349 second=267 amount=1 -kerning first=87 second=240 amount=2 -kerning first=330 second=280 amount=-6 -kerning first=8212 second=112 amount=2 -kerning first=114 second=97 amount=-2 -kerning first=354 second=357 amount=-3 -kerning first=72 second=203 amount=-6 -kerning first=207 second=318 amount=-2 -kerning first=115 second=267 amount=1 -kerning first=358 second=307 amount=-2 -kerning first=339 second=320 amount=-1 -kerning first=362 second=257 amount=2 -kerning first=277 second=269 amount=1 -kerning first=192 second=281 amount=-12 -kerning first=320 second=333 amount=-1 -kerning first=100 second=230 amount=1 -kerning first=323 second=113 amount=2 -kerning first=120 second=357 amount=-1 -kerning first=258 second=282 amount=-10 -kerning first=196 second=231 amount=-12 -kerning first=367 second=347 amount=1 -kerning first=197 second=371 amount=-13 -kerning first=108 second=100 amount=2 -kerning first=204 second=101 amount=-2 -kerning first=309 second=246 amount=1 -kerning first=86 second=333 amount=3 -kerning first=89 second=113 amount=-3 -kerning first=8211 second=235 amount=4 -kerning first=267 second=322 amount=-1 -kerning first=356 second=260 amount=-13 -kerning first=8212 second=375 amount=2 -kerning first=71 second=296 amount=3 -kerning first=360 second=210 amount=2 -kerning first=295 second=349 amount=1 -kerning first=75 second=246 amount=-10 -kerning first=256 second=235 amount=-12 -kerning first=102 second=103 amount=-6 -kerning first=237 second=248 amount=1 -kerning first=368 second=80 amount=-2 -kerning first=195 second=324 amount=-13 -kerning first=198 second=104 amount=-2 -kerning first=80 second=336 amount=3 -kerning first=103 second=273 amount=5 -kerning first=199 second=274 amount=-2 -kerning first=84 second=286 amount=-2 -kerning first=87 second=66 amount=-6 -kerning first=222 second=211 amount=4 -kerning first=107 second=223 amount=3 -kerning first=245 second=118 amount=-2 -kerning first=330 second=106 amount=-12 -kerning first=68 second=79 amount=4 -kerning first=354 second=213 amount=-2 -kerning first=269 second=225 amount=1 -kerning first=374 second=340 amount=-1 -kerning first=312 second=289 amount=2 -kerning first=355 second=353 amount=1 -kerning first=296 second=82 amount=-2 -kerning first=192 second=107 amount=-12 -kerning first=74 second=339 amount=-5 -kerning first=340 second=316 amount=-2 -kerning first=258 second=108 amount=-12 -kerning first=193 second=277 amount=-12 -kerning first=78 second=289 amount=2 -kerning first=101 second=226 amount=2 -kerning first=121 second=353 amount=2 -kerning first=197 second=227 amount=-10 -kerning first=302 second=342 amount=-2 -kerning first=217 second=354 amount=-6 -kerning first=240 second=291 amount=2 -kerning first=348 second=216 amount=3 -kerning first=263 second=228 amount=1 -kerning first=283 second=355 amount=-1 -kerning first=198 second=367 amount=-6 -kerning first=329 second=229 amount=2 -kerning first=244 second=241 amount=-2 -kerning first=287 second=305 amount=3 -kerning first=67 second=202 amount=-2 -kerning first=290 second=85 amount=4 -kerning first=225 second=254 amount=-1 -kerning first=356 second=86 amount=-1 -kerning first=8212 second=231 amount=4 -kerning first=268 second=318 amount=2 -kerning first=376 second=243 amount=-4 -kerning first=68 second=342 amount=-3 -kerning first=206 second=267 amount=-2 -kerning first=272 second=268 amount=4 -kerning first=318 second=112 amount=-11 -kerning first=300 second=295 amount=-2 -kerning first=80 second=192 amount=-14 -kerning first=103 second=99 amount=2 -kerning first=343 second=359 amount=-1 -kerning first=258 second=371 amount=-13 -kerning first=284 second=88 amount=1 -kerning first=196 second=320 amount=-12 -kerning first=84 second=112 amount=-6 -kerning first=219 second=257 amount=2 -kerning first=304 second=245 amount=-2 -kerning first=347 second=309 amount=-9 -kerning first=197 second=8211 amount=-12 -kerning first=200 second=270 amount=-5 -kerning first=85 second=282 amount=-6 -kerning first=328 second=322 amount=-1 -kerning first=246 second=114 amount=-2 -kerning first=351 second=259 amount=3 -kerning first=374 second=196 amount=-3 -kerning first=309 second=335 amount=1 -kerning first=224 second=347 amount=1 -kerning first=312 second=115 amount=1 -kerning first=109 second=359 amount=-1 -kerning first=8211 second=324 amount=2 -kerning first=70 second=245 amount=-4 -kerning first=356 second=349 amount=-10 -kerning first=271 second=361 amount=-9 -kerning first=74 second=195 amount=-8 -kerning first=117 second=259 amount=2 -kerning first=275 second=311 amount=-1 -kerning first=193 second=103 amount=-10 -kerning first=298 second=248 amount=-2 -kerning first=75 second=335 amount=-10 -kerning first=256 second=324 amount=-13 -kerning first=259 second=104 amount=-1 -kerning first=194 second=273 amount=-10 -kerning first=82 second=65 amount=3 -kerning first=237 second=337 amount=1 -kerning first=122 second=349 amount=1 -kerning first=260 second=274 amount=-10 -kerning first=368 second=199 amount=2 -kerning first=241 second=287 amount=2 -kerning first=84 second=375 amount=-10 -kerning first=330 second=225 amount=2 -kerning first=245 second=237 amount=-2 -kerning first=373 second=289 amount=5 -kerning first=376 second=69 amount=-4 -kerning first=68 second=198 amount=-10 -kerning first=354 second=302 amount=-2 -kerning first=269 second=314 amount=-1 -kerning first=207 second=263 amount=-2 -kerning first=234 second=120 amount=-2 -kerning first=339 second=265 amount=1 -kerning first=254 second=277 amount=2 -kerning first=362 second=202 amount=-6 -kerning first=192 second=226 amount=-10 -kerning first=300 second=121 amount=-2 -kerning first=77 second=238 amount=1 -kerning first=258 second=227 amount=-10 -kerning first=278 second=354 amount=-5 -kerning first=301 second=291 amount=2 -kerning first=324 second=228 amount=2 -kerning first=239 second=240 amount=2 -kerning first=344 second=355 amount=-2 -kerning first=197 second=316 amount=-12 -kerning first=105 second=265 amount=1 -kerning first=286 second=254 amount=2 -kerning first=89 second=58 amount=-5 -kerning first=329 second=318 amount=-1 -kerning first=44 second=354 amount=-10 -kerning first=290 second=204 amount=3 -kerning first=110 second=355 amount=-1 -kerning first=356 second=205 amount=-2 -kerning first=376 second=332 amount=-1 -kerning first=206 second=356 amount=-2 -kerning first=229 second=293 amount=-1 -kerning first=357 second=345 amount=-9 -kerning first=298 second=74 amount=-2 -kerning first=72 second=381 amount=4 -kerning first=318 second=231 amount=-9 -kerning first=98 second=98 amount=3 -kerning first=233 second=243 amount=1 -kerning first=338 second=358 amount=-4 -kerning first=361 second=295 amount=-1 -kerning first=194 second=99 amount=-12 -kerning first=257 second=320 amount=-1 -kerning first=260 second=100 amount=-10 -kerning first=195 second=269 amount=-12 -kerning first=238 second=333 amount=1 -kerning first=241 second=113 amount=2 -kerning first=346 second=258 amount=-9 -kerning first=258 second=8211 amount=-12 -kerning first=284 second=207 amount=3 -kerning first=84 second=231 amount=-7 -kerning first=327 second=271 amount=2 -kerning first=350 second=208 amount=-3 -kerning first=45 second=87 amount=3 -kerning first=373 second=115 amount=1 -kerning first=285 second=347 amount=2 -kerning first=65 second=244 amount=-12 -kerning first=374 second=285 amount=-3 -kerning first=289 second=297 amount=3 -kerning first=204 second=309 amount=-14 -kerning first=312 second=234 amount=1 -kerning first=358 second=78 amount=-1 -kerning first=73 second=114 amount=-2 -kerning first=208 second=259 amount=2 -kerning first=90 second=8212 amount=-6 -kerning first=254 second=103 amount=5 -kerning first=359 second=248 amount=1 -kerning first=320 second=104 amount=-2 -kerning first=235 second=116 amount=-1 -kerning first=193 second=222 amount=-17 -kerning first=298 second=337 amount=-2 -kerning first=98 second=361 amount=2 -kerning first=364 second=338 amount=2 -kerning first=325 second=224 amount=2 -kerning first=345 second=351 amount=-2 -kerning first=260 second=363 amount=-13 -kerning first=368 second=288 amount=2 -kerning first=286 second=80 amount=-2 -kerning first=198 second=312 amount=-7 -kerning first=86 second=104 amount=3 -kerning first=106 second=261 amount=1 -kerning first=349 second=301 amount=1 -kerning first=352 second=81 amount=3 -kerning first=44 second=210 amount=-3 -kerning first=287 second=250 amount=2 -kerning first=87 second=274 amount=-6 -kerning first=245 second=326 amount=-2 -kerning first=248 second=106 amount=-13 -kerning first=353 second=251 amount=1 -kerning first=68 second=287 amount=2 -kerning first=71 second=67 amount=3 -kerning first=272 second=213 amount=4 -kerning first=292 second=340 amount=-2 -kerning first=230 second=289 amount=2 -kerning first=115 second=301 amount=1 -kerning first=358 second=341 amount=-6 -kerning first=273 second=353 amount=1 -kerning first=211 second=302 amount=3 -kerning first=119 second=251 amount=2 -kerning first=362 second=291 amount=2 -kerning first=192 second=315 amount=-7 -kerning first=346 second=84 amount=-3 -kerning first=258 second=316 amount=-12 -kerning first=58 second=340 amount=-4 -kerning first=196 second=265 amount=-12 -kerning first=219 second=202 amount=-6 -kerning first=327 second=97 amount=2 -kerning first=239 second=329 amount=-2 -kerning first=242 second=109 amount=-2 -kerning first=65 second=70 amount=-17 -kerning first=85 second=227 amount=2 -kerning first=220 second=342 amount=-2 -kerning first=223 second=122 amount=-1 -kerning first=374 second=111 amount=-4 -kerning first=66 second=240 amount=3 -kerning first=86 second=367 amount=2 -kerning first=352 second=344 amount=-3 -kerning first=8211 second=269 amount=4 -kerning first=375 second=281 amount=3 -kerning first=290 second=293 amount=2 -kerning first=208 second=85 amount=2 -kerning first=333 second=357 amount=-1 -kerning first=248 second=369 amount=-2 -kerning first=74 second=110 amount=-4 -kerning first=337 second=307 amount=-2 -kerning first=160 second=216 amount=-3 -kerning first=75 second=280 amount=-9 -kerning first=213 second=205 amount=3 -kerning first=341 second=257 amount=-2 -kerning first=256 second=269 amount=-12 -kerning first=299 second=333 amount=1 -kerning first=319 second=8211 amount=-5 -kerning first=99 second=357 amount=-1 -kerning first=195 second=358 amount=-20 -kerning first=303 second=283 amount=1 -kerning first=103 second=307 amount=3 -kerning first=261 second=359 amount=-1 -kerning first=284 second=296 amount=3 -kerning first=202 second=88 amount=3 -kerning first=307 second=233 amount=1 -kerning first=84 second=320 amount=-3 -kerning first=87 second=100 amount=2 -kerning first=107 second=257 amount=2 -kerning first=265 second=309 amount=-11 -kerning first=45 second=206 amount=-5 -kerning first=268 second=89 amount=4 -kerning first=373 second=234 amount=4 -kerning first=65 second=333 amount=-12 -kerning first=68 second=113 amount=2 -kerning first=88 second=270 amount=-2 -kerning first=246 second=322 amount=-1 -kerning first=269 second=259 amount=1 -kerning first=230 second=115 amount=1 -kerning first=112 second=347 amount=2 -kerning first=358 second=197 amount=-13 -kerning first=296 second=116 amount=-2 -kerning first=73 second=233 amount=-2 -kerning first=316 second=273 amount=2 -kerning first=231 second=285 amount=1 -kerning first=359 second=337 amount=1 -kerning first=212 second=298 amount=3 -kerning first=320 second=223 amount=3 -kerning first=235 second=235 amount=1 -kerning first=363 second=287 amount=2 -kerning first=366 second=67 amount=2 -kerning first=193 second=311 amount=-12 -kerning first=259 second=312 amount=-1 -kerning first=59 second=336 amount=-3 -kerning first=243 second=105 amount=-2 -kerning first=368 second=377 amount=4 -kerning first=66 second=66 amount=-4 -kerning first=309 second=106 amount=-2 -kerning first=86 second=223 amount=5 -kerning first=221 second=338 amount=-1 -kerning first=352 second=200 amount=-3 -kerning first=287 second=339 amount=2 -kerning first=356 second=120 amount=-13 -kerning first=8212 second=265 amount=4 -kerning first=291 second=289 amount=5 -kerning first=294 second=69 amount=-6 -kerning first=206 second=301 amount=-2 -kerning first=209 second=81 amount=3 -kerning first=360 second=70 amount=-2 -kerning first=361 second=240 amount=2 -kerning first=194 second=44 amount=-10 -kerning first=260 second=45 amount=-12 -kerning first=280 second=202 amount=-5 -kerning first=195 second=214 amount=-11 -kerning first=300 second=329 amount=-4 -kerning first=323 second=266 amount=3 -kerning first=100 second=353 amount=1 -kerning first=346 second=203 amount=-3 -kerning first=196 second=354 amount=-20 -kerning first=304 second=279 amount=-2 -kerning first=219 second=291 amount=2 -kerning first=222 second=71 amount=4 -kerning first=327 second=216 amount=3 -kerning first=262 second=355 amount=2 -kerning first=370 second=280 amount=-6 -kerning first=203 second=84 amount=-5 -kerning first=351 second=293 amount=1 -kerning first=354 second=73 amount=-2 -kerning first=374 second=230 amount=-3 -kerning first=46 second=202 amount=-4 -kerning first=289 second=242 amount=2 -kerning first=66 second=329 amount=-1 -kerning first=69 second=109 amount=-2 -kerning first=204 second=254 amount=-2 -kerning first=89 second=266 amount=-1 -kerning first=8211 second=358 amount=-7 -kerning first=70 second=279 amount=-6 -kerning first=316 second=99 amount=1 -kerning first=231 second=111 amount=-1 -kerning first=74 second=229 amount=-5 -kerning first=209 second=344 amount=-2 -kerning first=232 second=281 amount=1 -kerning first=117 second=293 amount=-1 -kerning first=363 second=113 amount=2 -kerning first=75 second=369 amount=-8 -kerning first=236 second=231 amount=1 -kerning first=121 second=243 amount=3 -kerning first=256 second=358 amount=-20 -kerning first=279 second=295 amount=-1 -kerning first=197 second=87 amount=-7 -kerning first=302 second=232 amount=-2 -kerning first=283 second=245 amount=1 -kerning first=198 second=257 amount=-3 -kerning first=221 second=194 amount=-3 -kerning first=326 second=309 amount=-10 -kerning first=349 second=246 amount=1 -kerning first=222 second=334 amount=4 -kerning first=330 second=259 amount=2 -kerning first=242 second=8212 amount=3 -kerning first=268 second=208 amount=-2 -kerning first=376 second=103 amount=-3 -kerning first=291 second=115 amount=2 -kerning first=354 second=336 amount=-2 -kerning first=292 second=285 amount=2 -kerning first=207 second=297 amount=-2 -kerning first=315 second=222 amount=-4 -kerning first=230 second=234 amount=1 -kerning first=115 second=246 amount=1 -kerning first=358 second=286 amount=-2 -kerning first=296 second=235 amount=-2 -kerning first=73 second=322 amount=-2 -kerning first=254 second=311 amount=3 -kerning first=277 second=248 amount=1 -kerning first=192 second=260 amount=-7 -kerning first=320 second=312 amount=-2 -kerning first=196 second=210 amount=-11 -kerning first=304 second=105 amount=-2 -kerning first=101 second=349 amount=1 -kerning first=285 second=118 amount=2 -kerning first=197 second=350 amount=-8 -kerning first=220 second=287 amount=2 -kerning first=351 second=119 amount=1 -kerning first=263 second=351 amount=1 -kerning first=204 second=80 amount=-2 -kerning first=309 second=225 amount=2 -kerning first=86 second=312 amount=3 -kerning first=8211 second=214 amount=5 -kerning first=270 second=81 amount=4 -kerning first=375 second=226 amount=7 -kerning first=67 second=325 amount=4 -kerning first=70 second=105 amount=-1 -kerning first=205 second=250 amount=-2 -kerning first=248 second=314 amount=-1 -kerning first=356 second=239 amount=-2 -kerning first=8212 second=354 amount=-7 -kerning first=71 second=275 amount=3 -kerning first=209 second=200 amount=-6 -kerning first=232 second=107 amount=-1 -kerning first=337 second=252 amount=-2 -kerning first=114 second=339 amount=-2 -kerning first=298 second=108 amount=-2 -kerning first=75 second=225 amount=-7 -kerning first=318 second=265 amount=-9 -kerning first=233 second=277 amount=1 -kerning first=118 second=289 amount=5 -kerning first=256 second=214 amount=-11 -kerning first=361 second=329 amount=-3 -kerning first=217 second=70 amount=-2 -kerning first=237 second=227 amount=2 -kerning first=342 second=342 amount=-8 -kerning first=198 second=83 amount=-3 -kerning first=303 second=228 amount=2 -kerning first=218 second=240 amount=2 -kerning first=103 second=252 amount=2 -kerning first=264 second=84 amount=-2 -kerning first=369 second=229 amount=2 -kerning first=84 second=265 amount=-7 -kerning first=265 second=254 amount=-1 -kerning first=45 second=121 amount=2 -kerning first=65 second=278 amount=-10 -kerning first=68 second=58 amount=-3 -kerning first=203 second=203 amount=-5 -kerning first=354 second=192 amount=-13 -kerning first=374 second=319 amount=-3 -kerning first=289 second=331 amount=2 -kerning first=89 second=355 amount=-2 -kerning first=358 second=112 amount=-6 -kerning first=270 second=344 amount=-3 -kerning first=211 second=73 amount=3 -kerning first=192 second=86 amount=-7 -kerning first=258 second=87 amount=-7 -kerning first=278 second=244 amount=-2 -kerning first=193 second=256 amount=-7 -kerning first=298 second=371 amount=-2 -kerning first=78 second=268 amount=3 -kerning first=239 second=100 amount=2 -kerning first=259 second=257 amount=2 -kerning first=197 second=206 amount=-7 -kerning first=220 second=113 amount=2 -kerning first=348 second=195 amount=-9 -kerning first=198 second=346 amount=-3 -kerning first=83 second=358 amount=-3 -kerning first=349 second=335 amount=1 -kerning first=372 second=272 amount=-6 -kerning first=90 second=88 amount=3 -kerning first=353 second=285 amount=3 -kerning first=356 second=65 amount=-13 -kerning first=8212 second=210 amount=5 -kerning first=376 second=222 amount=-1 -kerning first=291 second=234 amount=2 -kerning first=71 second=101 amount=3 -kerning first=206 second=246 amount=-2 -kerning first=334 second=298 amount=3 -kerning first=357 second=235 amount=-9 -kerning first=72 second=271 amount=2 -kerning first=233 second=103 amount=2 -kerning first=115 second=335 amount=1 -kerning first=118 second=115 amount=2 -kerning first=358 second=375 amount=-10 -kerning first=296 second=324 amount=-2 -kerning first=234 second=273 amount=2 -kerning first=342 second=198 amount=3 -kerning first=119 second=285 amount=5 -kerning first=277 second=337 amount=1 -kerning first=280 second=117 amount=-2 -kerning first=192 second=349 amount=-11 -kerning first=218 second=66 amount=-6 -kerning first=323 second=211 amount=3 -kerning first=238 second=223 amount=3 -kerning first=258 second=350 amount=-8 -kerning first=281 second=287 amount=2 -kerning first=324 second=351 amount=1 -kerning first=350 second=68 amount=-3 -kerning first=262 second=300 amount=3 -kerning first=370 second=225 amount=2 -kerning first=285 second=237 amount=3 -kerning first=65 second=104 amount=-12 -kerning first=351 second=238 amount=1 -kerning first=66 second=274 amount=-4 -kerning first=89 second=211 amount=-1 -kerning first=227 second=106 amount=-10 -kerning first=112 second=118 amount=2 -kerning first=8211 second=303 amount=2 -kerning first=270 second=200 amount=-6 -kerning first=70 second=224 amount=-3 -kerning first=205 second=339 amount=-2 -kerning first=356 second=328 amount=-6 -kerning first=359 second=108 amount=-1 -kerning first=209 second=289 amount=2 -kerning first=232 second=226 amount=2 -kerning first=360 second=278 amount=-6 -kerning first=278 second=70 amount=-6 -kerning first=193 second=82 amount=-17 -kerning first=75 second=314 amount=-7 -kerning first=98 second=251 amount=2 -kerning first=341 second=291 amount=-2 -kerning first=364 second=228 amount=2 -kerning first=279 second=240 amount=2 -kerning first=325 second=84 amount=-6 -kerning first=198 second=202 amount=-2 -kerning first=83 second=214 amount=3 -kerning first=221 second=109 amount=-5 -kerning first=326 second=254 amount=-1 -kerning first=264 second=203 amount=-2 -kerning first=44 second=70 amount=-4 -kerning first=369 second=318 amount=-1 -kerning first=287 second=110 amount=2 -kerning first=199 second=342 amount=-4 -kerning first=307 second=267 amount=1 -kerning first=84 second=354 amount=-8 -kerning first=107 second=291 amount=2 -kerning first=353 second=111 amount=1 -kerning first=45 second=240 amount=4 -kerning first=65 second=367 amount=-13 -kerning first=226 second=229 amount=2 -kerning first=111 second=241 amount=-2 -kerning first=354 second=281 amount=-7 -kerning first=269 second=293 amount=-1 -kerning first=72 second=97 amount=2 -kerning first=207 second=242 amount=-2 -kerning first=358 second=231 amount=-7 -kerning first=273 second=243 amount=1 -kerning first=73 second=267 amount=-2 -kerning first=234 second=99 amount=1 -kerning first=339 second=244 amount=1 -kerning first=119 second=111 amount=4 -kerning first=192 second=205 amount=-7 -kerning first=258 second=206 amount=-7 -kerning first=278 second=333 amount=-2 -kerning first=281 second=113 amount=2 -kerning first=193 second=345 amount=-12 -kerning first=347 second=114 amount=1 -kerning first=367 second=271 amount=2 -kerning first=197 second=295 amount=-12 -kerning first=85 second=87 amount=2 -kerning first=105 second=244 amount=1 -kerning first=240 second=359 amount=-1 -kerning first=348 second=284 amount=3 -kerning first=66 second=100 amount=3 -kerning first=201 second=245 amount=-2 -kerning first=86 second=257 amount=6 -kerning first=267 second=246 amount=-1 -kerning first=287 second=373 amount=2 -kerning first=67 second=270 amount=-2 -kerning first=313 second=90 amount=2 -kerning first=225 second=322 amount=-1 -kerning first=8212 second=299 amount=2 -kerning first=376 second=311 amount=-2 -kerning first=294 second=103 amount=2 -kerning first=206 second=335 amount=-2 -kerning first=357 second=324 amount=-9 -kerning first=272 second=336 amount=4 -kerning first=275 second=116 amount=-1 -kerning first=295 second=273 amount=2 -kerning first=118 second=234 amount=4 -kerning first=194 second=78 amount=-15 -kerning first=299 second=223 amount=3 -kerning first=260 second=79 amount=-11 -kerning first=365 second=224 amount=2 -kerning first=195 second=248 amount=-12 -kerning first=80 second=260 amount=-14 -kerning first=300 second=363 amount=-2 -kerning first=84 second=210 amount=-2 -kerning first=222 second=105 amount=2 -kerning first=45 second=66 amount=-7 -kerning first=285 second=326 amount=2 -kerning first=65 second=223 amount=-10 -kerning first=203 second=118 amount=-2 -kerning first=223 second=275 amount=1 -kerning first=108 second=287 amount=2 -kerning first=354 second=107 amount=-3 -kerning first=269 second=119 amount=-1 -kerning first=374 second=264 amount=-1 -kerning first=227 second=225 amount=2 -kerning first=335 second=120 amount=-2 -kerning first=112 second=237 amount=2 -kerning first=270 second=289 amount=2 -kerning first=70 second=313 amount=-4 -kerning first=359 second=227 amount=2 -kerning first=74 second=263 amount=-5 -kerning first=120 second=107 amount=-1 -kerning first=193 second=201 amount=-10 -kerning first=298 second=316 amount=-2 -kerning first=78 second=213 amount=3 -kerning first=101 second=120 amount=-2 -kerning first=236 second=265 amount=1 -kerning first=121 second=277 amount=3 -kerning first=367 second=97 amount=2 -kerning first=282 second=109 amount=-2 -kerning first=194 second=341 amount=-12 -kerning first=197 second=121 amount=-4 -kerning first=217 second=278 amount=-6 -kerning first=325 second=203 amount=-6 -kerning first=260 second=342 amount=-17 -kerning first=283 second=279 amount=1 -kerning first=198 second=291 amount=-3 -kerning first=221 second=228 amount=-3 -kerning first=106 second=240 amount=2 -kerning first=241 second=355 amount=-1 -kerning first=287 second=229 amount=5 -kerning first=353 second=230 amount=2 -kerning first=373 second=357 amount=5 -kerning first=68 second=266 amount=4 -kerning first=226 second=318 amount=-1 -kerning first=229 second=98 amount=-1 -kerning first=272 second=192 amount=-8 -kerning first=207 second=331 amount=-2 -kerning first=358 second=320 amount=-3 -kerning first=361 second=100 amount=2 -kerning first=296 second=269 amount=-2 -kerning first=73 second=356 amount=-2 -kerning first=339 second=333 amount=1 -kerning first=119 second=230 amount=2 -kerning first=362 second=270 amount=-6 -kerning first=195 second=74 amount=-9 -kerning first=100 second=243 amount=1 -kerning first=343 second=283 amount=-2 -kerning first=258 second=295 amount=-12 -kerning first=281 second=232 amount=1 -kerning first=196 second=244 amount=-12 -kerning first=347 second=233 amount=1 -kerning first=305 second=309 amount=-11 -kerning first=223 second=101 amount=1 -kerning first=105 second=333 amount=1 -kerning first=108 second=113 amount=2 -kerning first=374 second=90 amount=-2 -kerning first=286 second=322 amount=2 -kerning first=204 second=114 amount=-2 -kerning first=309 second=259 amount=2 -kerning first=224 second=271 amount=2 -kerning first=355 second=103 amount=2 -kerning first=8211 second=248 amount=4 -kerning first=267 second=335 amount=-1 -kerning first=290 second=272 amount=-2 -kerning first=67 second=359 amount=2 -kerning first=113 second=233 amount=1 -kerning first=356 second=273 amount=-10 -kerning first=271 second=285 amount=-8 -kerning first=71 second=309 amount=-10 -kerning first=294 second=222 amount=-2 -kerning first=360 second=223 amount=2 -kerning first=160 second=195 amount=-3 -kerning first=275 second=235 amount=1 -kerning first=75 second=259 amount=-7 -kerning first=318 second=299 amount=-3 -kerning first=233 second=311 amount=-1 -kerning first=121 second=103 amount=7 -kerning first=256 second=248 amount=-12 -kerning first=276 second=375 amount=-3 -kerning first=194 second=197 amount=-7 -kerning first=260 second=198 amount=-6 -kerning first=195 second=337 amount=-12 -kerning first=198 second=117 amount=-6 -kerning first=218 second=274 amount=-6 -kerning first=349 second=106 amount=-9 -kerning first=84 second=299 amount=-2 -kerning first=87 second=79 amount=2 -kerning first=350 second=276 amount=-3 -kerning first=268 second=68 amount=-2 -kerning first=65 second=312 amount=-12 -kerning first=331 second=289 amount=2 -kerning first=246 second=301 amount=-2 -kerning first=354 second=226 amount=-10 -kerning first=46 second=325 amount=-5 -kerning first=374 second=353 amount=-4 -kerning first=289 second=365 amount=2 -kerning first=315 second=82 amount=-4 -kerning first=227 second=314 amount=-1 -kerning first=112 second=326 amount=2 -kerning first=115 second=106 amount=-9 -kerning first=359 second=316 amount=-1 -kerning first=274 second=328 amount=-2 -kerning first=277 second=108 amount=-1 -kerning first=192 second=120 amount=-14 -kerning first=97 second=289 amount=2 -kerning first=340 second=329 amount=-2 -kerning first=120 second=226 amount=2 -kerning first=258 second=121 amount=-4 -kerning first=278 second=278 amount=-5 -kerning first=193 second=290 amount=-11 -kerning first=196 second=70 amount=-17 -kerning first=259 second=291 amount=2 -kerning first=197 second=240 amount=-10 -kerning first=302 second=355 amount=-2 -kerning first=368 second=356 amount=-6 -kerning first=66 second=45 amount=5 -kerning first=224 second=97 amount=2 -kerning first=106 second=329 amount=-2 -kerning first=244 second=254 amount=-1 -kerning first=349 second=369 amount=1 -kerning first=8211 second=74 amount=-7 -kerning first=44 second=278 amount=-4 -kerning first=287 second=318 amount=2 -kerning first=290 second=98 amount=2 -kerning first=205 second=110 amount=-2 -kerning first=87 second=342 amount=-2 -kerning first=356 second=99 amount=-7 -kerning first=8212 second=244 amount=4 -kerning first=271 second=111 amount=-9 -kerning first=376 second=256 amount=-3 -kerning first=337 second=112 amount=-2 -kerning first=114 second=229 amount=-2 -kerning first=357 second=269 amount=-9 -kerning first=75 second=85 amount=-3 -kerning first=230 second=357 amount=-1 -kerning first=338 second=282 amount=-4 -kerning first=115 second=369 amount=1 -kerning first=256 second=74 amount=-9 -kerning first=296 second=358 amount=-2 -kerning first=195 second=193 amount=-7 -kerning first=218 second=100 amount=2 -kerning first=103 second=112 amount=2 -kerning first=238 second=257 amount=2 -kerning first=196 second=333 amount=-12 -kerning first=216 second=8211 amount=3 -kerning first=219 second=270 amount=-6 -kerning first=347 second=322 amount=1 -kerning first=370 second=259 amount=2 -kerning first=285 second=271 amount=5 -kerning first=331 second=115 amount=1 -kerning first=108 second=232 amount=1 -kerning first=69 second=88 amount=3 -kerning first=204 second=233 amount=-2 -kerning first=89 second=245 amount=-4 -kerning first=8211 second=337 amount=4 -kerning first=70 second=258 amount=-12 -kerning first=205 second=373 amount=-2 -kerning first=113 second=322 amount=-1 -kerning first=54 second=51 amount=2 -kerning first=74 second=208 amount=-5 -kerning first=97 second=115 amount=1 -kerning first=337 second=375 amount=-2 -kerning first=160 second=284 amount=-3 -kerning first=193 second=116 amount=-12 -kerning first=98 second=285 amount=5 -kerning first=256 second=337 amount=-12 -kerning first=364 second=262 amount=2 -kerning first=194 second=286 amount=-11 -kerning first=197 second=66 amount=-8 -kerning first=79 second=298 amount=3 -kerning first=217 second=223 amount=2 -kerning first=102 second=235 amount=-8 -kerning first=345 second=275 amount=-2 -kerning first=260 second=287 amount=-10 -kerning first=368 second=212 amount=2 -kerning first=283 second=224 amount=2 -kerning first=198 second=236 amount=-7 -kerning first=303 second=351 amount=1 -kerning first=103 second=375 amount=2 -kerning first=349 second=225 amount=3 -kerning first=245 second=250 amount=-2 -kerning first=8212 second=70 amount=-7 -kerning first=376 second=82 amount=-1 -kerning first=45 second=274 amount=-7 -kerning first=48 second=54 amount=2 -kerning first=68 second=211 amount=4 -kerning first=203 second=326 amount=-2 -kerning first=206 second=106 amount=-14 -kerning first=88 second=338 amount=-4 -kerning first=354 second=315 amount=-1 -kerning first=335 second=328 amount=-2 -kerning first=115 second=225 amount=3 -kerning first=358 second=265 amount=-7 -kerning first=73 second=301 amount=-2 -kerning first=231 second=353 amount=1 -kerning first=277 second=227 amount=2 -kerning first=323 second=71 amount=3 -kerning first=343 second=228 amount=-2 -kerning first=258 second=240 amount=-10 -kerning first=363 second=355 amount=-1 -kerning first=278 second=367 amount=-2 -kerning first=58 second=264 amount=-3 -kerning first=193 second=379 amount=-7 -kerning first=304 second=84 amount=-2 -kerning first=104 second=108 amount=-1 -kerning first=370 second=85 amount=2 -kerning first=285 second=97 amount=5 -kerning first=197 second=329 amount=-19 -kerning first=200 second=109 amount=-2 -kerning first=325 second=381 amount=4 -kerning first=351 second=98 amount=1 -kerning first=86 second=291 amount=6 -kerning first=89 second=71 amount=-1 -kerning first=109 second=228 amount=2 -kerning first=352 second=268 amount=3 -kerning first=8211 second=193 amount=-13 -kerning first=67 second=304 amount=3 -kerning first=70 second=84 amount=-9 -kerning first=248 second=293 amount=-1 -kerning first=8212 second=333 amount=4 -kerning first=376 second=345 amount=-5 -kerning first=291 second=357 amount=2 -kerning first=71 second=254 amount=2 -kerning first=206 second=369 amount=-2 -kerning first=114 second=318 amount=-1 -kerning first=117 second=98 amount=-1 -kerning first=318 second=244 amount=-9 -kerning first=98 second=111 amount=2 -kerning first=256 second=193 amount=-7 -kerning first=364 second=88 amount=3 -kerning first=279 second=100 amount=2 -kerning first=299 second=257 amount=2 -kerning first=76 second=344 amount=-4 -kerning first=345 second=101 amount=-2 -kerning first=260 second=113 amount=-10 -kerning first=280 second=270 amount=-5 -kerning first=195 second=282 amount=-10 -kerning first=323 second=334 amount=3 -kerning first=103 second=231 amount=2 -kerning first=304 second=347 amount=-2 -kerning first=84 second=244 amount=-7 -kerning first=327 second=284 amount=3 -kerning first=45 second=100 amount=4 -kerning first=65 second=257 amount=-10 -kerning first=88 second=194 amount=-5 -kerning first=223 second=309 amount=-12 -kerning first=351 second=361 amount=1 -kerning first=46 second=270 amount=-3 -kerning first=292 second=90 amount=4 -kerning first=204 second=322 amount=-2 -kerning first=207 second=102 amount=-3 -kerning first=89 second=334 amount=-1 -kerning first=227 second=259 amount=2 -kerning first=112 second=271 amount=5 -kerning first=355 second=311 amount=-1 -kerning first=273 second=103 amount=2 -kerning first=70 second=347 amount=-4 -kerning first=208 second=272 amount=-6 -kerning first=339 second=104 amount=-1 -kerning first=254 second=116 amount=3 -kerning first=192 second=65 amount=-7 -kerning first=74 second=297 amount=-1 -kerning first=232 second=349 amount=1 -kerning first=258 second=66 amount=-8 -kerning first=278 second=223 amount=3 -kerning first=193 second=235 amount=-12 -kerning first=121 second=311 amount=3 -kerning first=194 second=375 amount=-4 -kerning first=82 second=197 amount=3 -kerning first=102 second=324 amount=-7 -kerning first=86 second=117 amount=2 -kerning first=221 second=262 amount=-1 -kerning first=349 second=314 amount=1 -kerning first=267 second=106 amount=-11 -kerning first=287 second=263 amount=2 -kerning first=87 second=287 amount=2 -kerning first=333 second=107 amount=-1 -kerning first=110 second=224 amount=2 -kerning first=248 second=119 amount=-2 -kerning first=356 second=44 amount=-15 -kerning first=268 second=276 amount=-2 -kerning first=45 second=363 amount=2 -kerning first=376 second=201 amount=-4 -kerning first=71 second=80 amount=-2 -kerning first=272 second=226 amount=2 -kerning first=207 second=365 amount=-2 -kerning first=115 second=314 amount=1 -kerning first=358 second=354 amount=-8 -kerning first=296 second=303 amount=-2 -kerning first=277 second=316 amount=-1 -kerning first=192 second=328 amount=-13 -kerning first=195 second=108 amount=-12 -kerning first=77 second=340 amount=-4 -kerning first=80 second=120 amount=-2 -kerning first=300 second=253 amount=-2 -kerning first=100 second=277 amount=1 -kerning first=258 second=329 amount=-19 -kerning first=196 second=278 amount=-10 -kerning first=84 second=70 amount=-5 -kerning first=104 second=227 amount=2 -kerning first=347 second=267 amount=1 -kerning first=65 second=83 amount=-8 -kerning first=85 second=240 amount=2 -kerning first=286 second=356 amount=-2 -kerning first=112 second=97 amount=5 -kerning first=8211 second=282 amount=-7 -kerning first=70 second=203 amount=-9 -kerning first=205 second=318 amount=-2 -kerning first=113 second=267 amount=1 -kerning first=356 second=307 amount=-2 -kerning first=71 second=343 amount=1 -kerning first=209 second=268 amount=3 -kerning first=337 second=320 amount=-1 -kerning first=360 second=257 amount=2 -kerning first=275 second=269 amount=1 -kerning first=75 second=293 amount=-7 -kerning first=318 second=333 amount=-9 -kerning first=98 second=230 amount=2 -kerning first=118 second=357 amount=5 -kerning first=256 second=282 amount=-10 -kerning first=194 second=231 amount=-12 -kerning first=365 second=347 amount=1 -kerning first=195 second=371 amount=-13 -kerning first=83 second=193 amount=-9 -kerning first=103 second=320 amount=2 -kerning first=106 second=100 amount=2 -kerning first=84 second=333 amount=-7 -kerning first=87 second=113 amount=2 -kerning first=222 second=258 amount=-13 -kerning first=307 second=246 amount=1 -kerning first=265 second=322 amount=-1 -kerning first=65 second=346 amount=-8 -kerning first=88 second=283 amount=-2 -kerning first=354 second=260 amount=-13 -kerning first=358 second=210 amount=-2 -kerning first=73 second=246 amount=-2 -kerning first=339 second=223 amount=4 -kerning first=254 second=235 amount=2 -kerning first=100 second=103 amount=2 -kerning first=235 second=248 amount=1 -kerning first=366 second=80 amount=-2 -kerning first=58 second=209 amount=-5 -kerning first=193 second=324 amount=-13 -kerning first=196 second=104 amount=-12 -kerning first=78 second=336 amount=3 -kerning first=101 second=273 amount=2 -kerning first=344 second=313 amount=3 -kerning first=197 second=274 amount=-10 -kerning first=85 second=66 amount=-6 -kerning first=328 second=106 amount=-10 -kerning first=105 second=223 amount=3 -kerning first=243 second=118 amount=-2 -kerning first=86 second=236 amount=3 -kerning first=221 second=351 amount=-4 -kerning first=352 second=213 amount=3 -kerning first=267 second=225 amount=1 -kerning first=372 second=340 amount=-2 -kerning first=375 second=120 amount=3 -kerning first=248 second=238 amount=-2 -kerning first=8212 second=278 amount=-7 -kerning first=376 second=290 amount=-1 -kerning first=294 second=82 amount=-2 -kerning first=71 second=199 amount=3 -kerning first=206 second=314 amount=-2 -kerning first=114 second=263 amount=-2 -kerning first=357 second=303 amount=-3 -kerning first=75 second=119 amount=-10 -kerning first=213 second=44 amount=-5 -kerning first=315 second=379 amount=2 -kerning first=256 second=108 amount=-12 -kerning first=319 second=329 amount=-3 -kerning first=99 second=226 amount=1 -kerning first=345 second=46 amount=-7 -kerning first=119 second=353 amount=2 -kerning first=260 second=58 amount=-10 -kerning first=195 second=227 amount=-10 -kerning first=80 second=239 amount=1 -kerning first=300 second=342 amount=-2 -kerning first=238 second=291 amount=2 -kerning first=346 second=216 amount=3 -kerning first=261 second=228 amount=2 -kerning first=281 second=355 amount=-1 -kerning first=196 second=367 amount=-13 -kerning first=222 second=84 amount=-9 -kerning first=327 second=229 amount=2 -kerning first=104 second=316 amount=-1 -kerning first=242 second=241 amount=-2 -kerning first=285 second=305 amount=3 -kerning first=65 second=202 amount=-10 -kerning first=88 second=109 amount=-3 -kerning first=354 second=86 amount=-1 -kerning first=266 second=318 amount=2 -kerning first=269 second=98 amount=-1 -kerning first=374 second=243 amount=-4 -kerning first=66 second=342 amount=-1 -kerning first=204 second=267 amount=-2 -kerning first=8211 second=371 amount=2 -kerning first=270 second=268 amount=4 -kerning first=74 second=242 amount=-5 -kerning first=298 second=295 amount=-2 -kerning first=101 second=99 amount=1 -kerning first=236 second=244 amount=1 -kerning first=341 second=359 amount=-1 -kerning first=256 second=371 amount=-13 -kerning first=282 second=88 amount=3 -kerning first=194 second=320 amount=-12 -kerning first=197 second=100 amount=-10 -kerning first=302 second=245 amount=-2 -kerning first=217 second=257 amount=2 -kerning first=102 second=269 amount=-8 -kerning first=345 second=309 amount=-10 -kerning first=195 second=8211 amount=-12 -kerning first=198 second=270 amount=-2 -kerning first=83 second=282 amount=-3 -kerning first=326 second=322 amount=-1 -kerning first=244 second=114 amount=-2 -kerning first=349 second=259 amount=3 -kerning first=307 second=335 amount=1 -kerning first=222 second=347 amount=1 -kerning first=330 second=272 amount=-6 -kerning first=376 second=116 amount=-2 -kerning first=311 second=285 amount=2 -kerning first=354 second=349 amount=-10 -kerning first=115 second=259 amount=3 -kerning first=358 second=299 amount=-2 -kerning first=273 second=311 amount=-1 -kerning first=296 second=248 amount=-2 -kerning first=73 second=335 amount=-2 -kerning first=254 second=324 amount=2 -kerning first=257 second=104 amount=-1 -kerning first=192 second=273 amount=-10 -kerning first=77 second=285 amount=1 -kerning first=80 second=65 amount=-14 -kerning first=235 second=337 amount=1 -kerning first=258 second=274 amount=-10 -kerning first=366 second=199 amount=2 -kerning first=196 second=223 amount=-10 -kerning first=304 second=118 amount=-2 -kerning first=239 second=287 amount=2 -kerning first=197 second=363 amount=-13 -kerning first=328 second=225 amount=2 -kerning first=243 second=237 amount=-2 -kerning first=371 second=289 amount=2 -kerning first=374 second=69 amount=-4 -kerning first=86 second=325 amount=2 -kerning first=89 second=105 amount=-3 -kerning first=8211 second=227 amount=4 -kerning first=267 second=314 amount=-1 -kerning first=375 second=239 amount=3 -kerning first=70 second=118 amount=-4 -kerning first=205 second=263 amount=-2 -kerning first=8212 second=367 amount=2 -kerning first=376 second=379 amount=-2 -kerning first=294 second=201 amount=-6 -kerning first=74 second=68 amount=-5 -kerning first=209 second=213 amount=3 -kerning first=232 second=120 amount=-2 -kerning first=360 second=202 amount=-6 -kerning first=298 second=121 amount=-2 -kerning first=75 second=238 amount=-7 -kerning first=256 second=227 amount=-10 -kerning first=276 second=354 amount=-5 -kerning first=299 second=291 amount=2 -kerning first=237 second=240 amount=2 -kerning first=342 second=355 amount=-2 -kerning first=195 second=316 amount=-12 -kerning first=80 second=328 amount=1 -kerning first=103 second=265 amount=2 -kerning first=284 second=254 amount=2 -kerning first=84 second=278 amount=-8 -kerning first=222 second=203 amount=-9 -kerning first=245 second=110 amount=-2 -kerning first=288 second=204 amount=3 -kerning first=65 second=291 amount=-10 -kerning first=68 second=71 amount=4 -kerning first=311 second=111 amount=1 -kerning first=354 second=205 amount=-2 -kerning first=374 second=332 amount=-1 -kerning first=204 second=356 amount=-2 -kerning first=312 second=281 amount=1 -kerning first=227 second=293 amount=-1 -kerning first=296 second=74 amount=-2 -kerning first=316 second=231 amount=1 -kerning first=231 second=243 amount=-1 -kerning first=359 second=295 amount=-1 -kerning first=382 second=232 amount=1 -kerning first=192 second=99 amount=-12 -kerning first=74 second=331 amount=-4 -kerning first=258 second=100 amount=-10 -kerning first=193 second=269 amount=-12 -kerning first=216 second=206 amount=3 -kerning first=236 second=333 amount=1 -kerning first=239 second=113 amount=2 -kerning first=344 second=258 amount=3 -kerning first=256 second=8211 amount=-12 -kerning first=325 second=271 amount=2 -kerning first=240 second=283 amount=1 -kerning first=348 second=208 amount=-3 -kerning first=371 second=115 amount=1 -kerning first=283 second=347 amount=1 -kerning first=198 second=359 amount=-2 -kerning first=372 second=285 amount=2 -kerning first=287 second=297 amount=3 -kerning first=202 second=309 amount=-10 -kerning first=245 second=373 amount=-2 -kerning first=356 second=78 amount=-1 -kerning first=68 second=334 amount=4 -kerning first=71 second=114 amount=1 -kerning first=88 second=8212 amount=-8 -kerning first=357 second=248 amount=-9 -kerning first=272 second=260 amount=-8 -kerning first=233 second=116 amount=-1 -kerning first=296 second=337 amount=-2 -kerning first=362 second=338 amount=2 -kerning first=323 second=224 amount=2 -kerning first=100 second=311 amount=-1 -kerning first=343 second=351 amount=-2 -kerning first=258 second=363 amount=-13 -kerning first=366 second=288 amount=2 -kerning first=284 second=80 amount=-2 -kerning first=196 second=312 amount=-12 -kerning first=304 second=237 amount=-2 -kerning first=84 second=104 amount=-3 -kerning first=347 second=301 amount=1 -kerning first=350 second=81 amount=3 -kerning first=285 second=250 amount=2 -kerning first=65 second=117 amount=-13 -kerning first=85 second=274 amount=-6 -kerning first=328 second=314 amount=-1 -kerning first=243 second=326 amount=-2 -kerning first=246 second=106 amount=-13 -kerning first=351 second=251 amount=1 -kerning first=66 second=287 amount=3 -kerning first=89 second=224 amount=-3 -kerning first=109 second=351 amount=1 -kerning first=270 second=213 amount=4 -kerning first=375 second=328 amount=3 -kerning first=290 second=340 amount=-4 -kerning first=70 second=237 amount=-1 -kerning first=228 second=289 amount=2 -kerning first=356 second=341 amount=-6 -kerning first=271 second=353 amount=-8 -kerning first=360 second=291 amount=2 -kerning first=318 second=367 amount=-9 -kerning first=344 second=84 amount=-8 -kerning first=256 second=316 amount=-12 -kerning first=194 second=265 amount=-12 -kerning first=197 second=45 amount=-12 -kerning first=217 second=202 amount=-6 -kerning first=325 second=97 amount=2 -kerning first=237 second=329 amount=-2 -kerning first=345 second=254 amount=-1 -kerning first=260 second=266 amount=-11 -kerning first=218 second=342 amount=-2 -kerning first=199 second=355 amount=2 -kerning first=84 second=367 amount=-6 -kerning first=350 second=344 amount=-3 -kerning first=373 second=281 amount=4 -kerning first=45 second=253 amount=2 -kerning first=311 second=230 amount=1 -kerning first=331 second=357 amount=-1 -kerning first=111 second=254 amount=-1 -kerning first=246 second=369 amount=-2 -kerning first=272 second=86 amount=2 -kerning first=335 second=307 amount=-2 -kerning first=358 second=244 amount=-7 -kerning first=211 second=205 amount=3 -kerning first=339 second=257 amount=2 -kerning first=254 second=269 amount=2 -kerning first=297 second=333 amount=1 -kerning first=97 second=357 amount=-1 -kerning first=193 second=358 amount=-20 -kerning first=301 second=283 amount=1 -kerning first=259 second=359 amount=-1 -kerning first=200 second=88 amount=3 -kerning first=82 second=320 amount=-2 -kerning first=85 second=100 amount=2 -kerning first=105 second=257 amount=2 -kerning first=263 second=309 amount=-11 -kerning first=266 second=89 amount=4 -kerning first=66 second=113 amount=3 -kerning first=83 second=8211 amount=4 -kerning first=267 second=259 amount=1 -kerning first=228 second=115 amount=1 -kerning first=110 second=347 amount=1 -kerning first=356 second=197 amount=-13 -kerning first=8212 second=312 amount=2 -kerning first=376 second=324 amount=-5 -kerning first=71 second=233 amount=3 -kerning first=229 second=285 amount=2 -kerning first=357 second=337 amount=-9 -kerning first=160 second=89 amount=-3 -kerning first=210 second=298 amount=3 -kerning first=318 second=223 amount=3 -kerning first=233 second=235 amount=1 -kerning first=361 second=287 amount=2 -kerning first=364 second=67 amount=2 -kerning first=257 second=312 amount=-1 -kerning first=366 second=377 amount=4 -kerning first=304 second=326 amount=-2 -kerning first=307 second=106 amount=-11 -kerning first=84 second=223 amount=1 -kerning first=222 second=118 amount=1 -kerning first=350 second=200 amount=-3 -kerning first=45 second=79 amount=5 -kerning first=285 second=339 amount=2 -kerning first=373 second=107 amount=2 -kerning first=354 second=120 amount=-13 -kerning first=289 second=289 amount=5 -kerning first=292 second=69 amount=-6 -kerning first=204 second=301 amount=-2 -kerning first=89 second=313 amount=-3 -kerning first=312 second=226 amount=2 -kerning first=112 second=250 amount=2 -kerning first=358 second=70 amount=-5 -kerning first=70 second=326 amount=-3 -kerning first=73 second=106 amount=-14 -kerning first=359 second=240 amount=2 -kerning first=192 second=44 amount=-10 -kerning first=294 second=379 amount=4 -kerning first=74 second=276 amount=-5 -kerning first=235 second=108 amount=-1 -kerning first=258 second=45 amount=-12 -kerning first=160 second=352 amount=-3 -kerning first=278 second=202 amount=-5 -kerning first=58 second=69 amount=-4 -kerning first=193 second=214 amount=-11 -kerning first=298 second=329 amount=-4 -kerning first=78 second=226 amount=2 -kerning first=98 second=353 amount=2 -kerning first=194 second=354 amount=-20 -kerning first=302 second=279 amount=-2 -kerning first=217 second=291 amount=2 -kerning first=325 second=216 amount=3 -kerning first=102 second=303 amount=-7 -kerning first=240 second=228 amount=2 -kerning first=260 second=355 amount=-12 -kerning first=368 second=280 amount=-6 -kerning first=201 second=84 amount=-5 -kerning first=349 second=293 amount=1 -kerning first=44 second=202 amount=-4 -kerning first=287 second=242 amount=2 -kerning first=87 second=266 amount=2 -kerning first=245 second=318 amount=-1 -kerning first=248 second=98 amount=-1 -kerning first=353 second=243 amount=1 -kerning first=45 second=342 amount=-6 -kerning first=72 second=229 amount=2 -kerning first=207 second=344 amount=-2 -kerning first=230 second=281 amount=1 -kerning first=338 second=206 amount=-1 -kerning first=115 second=293 amount=1 -kerning first=358 second=333 amount=-7 -kerning first=361 second=113 amount=2 -kerning first=73 second=369 amount=-2 -kerning first=234 second=231 amount=1 -kerning first=119 second=243 amount=4 -kerning first=277 second=295 amount=-1 -kerning first=195 second=87 amount=-7 -kerning first=300 second=232 amount=-2 -kerning first=320 second=359 amount=-2 -kerning first=281 second=245 amount=1 -kerning first=58 second=332 amount=-3 -kerning first=196 second=257 amount=-10 -kerning first=324 second=309 amount=-10 -kerning first=347 second=246 amount=1 -kerning first=328 second=259 amount=2 -kerning first=266 second=208 amount=-2 -kerning first=374 second=103 amount=-3 -kerning first=289 second=115 amount=2 -kerning first=66 second=232 amount=2 -kerning first=86 second=359 amount=3 -kerning first=352 second=336 amount=3 -kerning first=355 second=116 amount=-1 -kerning first=375 second=273 amount=7 -kerning first=205 second=297 amount=-2 -kerning first=313 second=222 amount=-4 -kerning first=113 second=246 amount=1 -kerning first=248 second=361 amount=-2 -kerning first=356 second=286 amount=-2 -kerning first=71 second=322 amount=2 -kerning first=160 second=208 amount=-6 -kerning first=275 second=248 amount=1 -kerning first=75 second=272 amount=-9 -kerning first=121 second=116 amount=3 -kerning first=194 second=210 amount=-11 -kerning first=302 second=105 amount=-2 -kerning first=99 second=349 amount=1 -kerning first=260 second=211 amount=-11 -kerning first=195 second=350 amount=-8 -kerning first=303 second=275 amount=1 -kerning first=218 second=287 amount=2 -kerning first=221 second=67 amount=-1 -kerning first=103 second=299 amount=3 -kerning first=241 second=224 amount=2 -kerning first=349 second=119 amount=1 -kerning first=261 second=351 amount=1 -kerning first=199 second=300 amount=3 -kerning first=202 second=80 amount=-6 -kerning first=84 second=312 amount=-3 -kerning first=222 second=237 amount=2 -kerning first=307 second=225 amount=2 -kerning first=373 second=226 amount=5 -kerning first=65 second=325 amount=-15 -kerning first=88 second=262 amount=-4 -kerning first=246 second=314 amount=-1 -kerning first=354 second=239 amount=-2 -kerning first=46 second=338 amount=-3 -kerning first=230 second=107 amount=-1 -kerning first=335 second=252 amount=-2 -kerning first=112 second=339 amount=2 -kerning first=115 second=119 amount=1 -kerning first=296 second=108 amount=-2 -kerning first=208 second=340 amount=-3 -kerning first=316 second=265 amount=1 -kerning first=319 second=45 amount=-5 -kerning first=116 second=289 amount=2 -kerning first=359 second=329 amount=-1 -kerning first=74 second=365 amount=-4 -kerning first=235 second=227 amount=2 -kerning first=340 second=342 amount=-8 -kerning first=196 second=83 amount=-8 -kerning first=301 second=228 amount=2 -kerning first=262 second=84 amount=-2 -kerning first=367 second=229 amount=2 -kerning first=263 second=254 amount=-1 -kerning first=201 second=203 amount=-5 -kerning first=352 second=192 amount=-9 -kerning first=8211 second=87 amount=3 -kerning first=375 second=99 amount=3 -kerning first=287 second=331 amount=2 -kerning first=356 second=112 amount=-6 -kerning first=8212 second=257 amount=4 -kerning first=268 second=344 amount=-4 -kerning first=376 second=269 amount=-4 -kerning first=291 second=281 amount=2 -kerning first=206 second=293 amount=-2 -kerning first=229 second=230 amount=1 -kerning first=114 second=242 amount=-2 -kerning first=75 second=98 amount=-7 -kerning first=256 second=87 amount=-7 -kerning first=276 second=244 amount=-2 -kerning first=296 second=371 amount=-2 -kerning first=234 second=320 amount=-1 -kerning first=237 second=100 amount=2 -kerning first=257 second=257 amount=2 -kerning first=195 second=206 amount=-7 -kerning first=303 second=101 amount=1 -kerning first=218 second=113 amount=2 -kerning first=346 second=195 amount=-9 -kerning first=196 second=346 amount=-8 -kerning first=327 second=208 amount=-6 -kerning first=347 second=335 amount=1 -kerning first=370 second=272 amount=-6 -kerning first=223 second=233 amount=1 -kerning first=108 second=245 amount=1 -kerning first=351 second=285 amount=3 -kerning first=354 second=65 amount=-13 -kerning first=374 second=222 amount=-1 -kerning first=289 second=234 amount=2 -kerning first=204 second=246 amount=-2 -kerning first=89 second=258 amount=-3 -kerning first=332 second=298 amount=3 -kerning first=355 second=235 amount=1 -kerning first=70 second=271 amount=-3 -kerning first=208 second=196 amount=-8 -kerning first=231 second=103 amount=1 -kerning first=113 second=335 amount=1 -kerning first=116 second=115 amount=1 -kerning first=356 second=375 amount=-10 -kerning first=209 second=336 amount=3 -kerning first=232 second=273 amount=2 -kerning first=340 second=198 amount=3 -kerning first=117 second=285 amount=2 -kerning first=275 second=337 amount=1 -kerning first=278 second=117 amount=-2 -kerning first=75 second=361 amount=-8 -kerning first=236 second=223 amount=3 -kerning first=121 second=235 amount=3 -kerning first=256 second=350 amount=-8 -kerning first=279 second=287 amount=2 -kerning first=197 second=79 amount=-11 -kerning first=102 second=248 amount=-8 -kerning first=348 second=68 amount=-3 -kerning first=260 second=300 amount=-7 -kerning first=368 second=225 amount=2 -kerning first=198 second=249 amount=-7 -kerning first=349 second=238 amount=1 -kerning first=87 second=211 amount=2 -kerning first=222 second=326 amount=2 -kerning first=225 second=106 amount=-10 -kerning first=268 second=200 amount=-2 -kerning first=45 second=287 amount=4 -kerning first=68 second=224 amount=2 -kerning first=206 second=119 amount=-2 -kerning first=291 second=107 amount=2 -kerning first=354 second=328 amount=-6 -kerning first=272 second=120 amount=-3 -kerning first=230 second=226 amount=2 -kerning first=115 second=238 amount=1 -kerning first=358 second=278 amount=-8 -kerning first=276 second=70 amount=-6 -kerning first=73 second=314 amount=-2 -kerning first=339 second=291 amount=2 -kerning first=254 second=303 amount=2 -kerning first=362 second=228 amount=2 -kerning first=277 second=240 amount=2 -kerning first=77 second=264 amount=3 -kerning first=80 second=44 amount=-4 -kerning first=323 second=84 amount=-6 -kerning first=235 second=316 amount=-1 -kerning first=196 second=202 amount=-10 -kerning first=324 second=254 amount=-1 -kerning first=262 second=203 amount=-2 -kerning first=367 second=318 amount=-1 -kerning first=285 second=110 amount=2 -kerning first=197 second=342 amount=-17 -kerning first=82 second=354 amount=-8 -kerning first=105 second=291 amount=2 -kerning first=351 second=111 amount=1 -kerning first=286 second=280 amount=-2 -kerning first=86 second=304 amount=5 -kerning first=224 second=229 amount=2 -kerning first=8211 second=206 amount=-5 -kerning first=267 second=293 amount=-1 -kerning first=70 second=97 amount=-3 -kerning first=205 second=242 amount=-2 -kerning first=356 second=231 amount=-7 -kerning first=271 second=243 amount=-9 -kerning first=71 second=267 amount=3 -kerning first=74 second=47 amount=-7 -kerning first=232 second=99 amount=1 -kerning first=357 second=371 amount=-9 -kerning first=295 second=320 amount=-1 -kerning first=318 second=257 amount=-8 -kerning first=233 second=269 amount=1 -kerning first=118 second=281 amount=4 -kerning first=256 second=206 amount=-7 -kerning first=276 second=333 amount=-2 -kerning first=279 second=113 amount=2 -kerning first=365 second=271 amount=2 -kerning first=195 second=295 amount=-12 -kerning first=198 second=75 amount=-3 -kerning first=80 second=307 amount=1 -kerning first=103 second=244 amount=2 -kerning first=346 second=284 amount=3 -kerning first=84 second=257 amount=-10 -kerning first=242 second=309 amount=-13 -kerning first=265 second=246 amount=-1 -kerning first=45 second=113 amount=4 -kerning first=285 second=373 amount=2 -kerning first=65 second=270 amount=-10 -kerning first=111 second=114 amount=-2 -kerning first=374 second=311 amount=-2 -kerning first=292 second=103 amount=2 -kerning first=204 second=335 amount=-2 -kerning first=207 second=115 amount=-2 -kerning first=89 second=347 amount=-4 -kerning first=358 second=104 amount=-3 -kerning first=270 second=336 amount=4 -kerning first=273 second=116 amount=-1 -kerning first=208 second=285 amount=2 -kerning first=192 second=78 amount=-15 -kerning first=297 second=223 amount=3 -kerning first=258 second=79 amount=-11 -kerning first=363 second=224 amount=2 -kerning first=193 second=248 amount=-12 -kerning first=298 second=363 amount=-2 -kerning first=121 second=324 amount=3 -kerning first=197 second=198 amount=-6 -kerning first=102 second=337 amount=-8 -kerning first=198 second=338 amount=-7 -kerning first=201 second=118 amount=-2 -kerning first=106 second=287 amount=2 -kerning first=267 second=119 amount=-1 -kerning first=90 second=80 amount=2 -kerning first=225 second=225 amount=2 -kerning first=330 second=340 amount=-2 -kerning first=333 second=120 amount=-2 -kerning first=353 second=277 amount=1 -kerning first=8212 second=202 amount=-7 -kerning first=45 second=376 amount=3 -kerning first=376 second=214 amount=-1 -kerning first=291 second=226 amount=5 -kerning first=206 second=238 amount=-2 -kerning first=311 second=353 amount=1 -kerning first=357 second=227 amount=-8 -kerning first=118 second=107 amount=2 -kerning first=358 second=367 amount=-6 -kerning first=56 second=56 amount=2 -kerning first=296 second=316 amount=-2 -kerning first=99 second=120 amount=2 -kerning first=234 second=265 amount=1 -kerning first=119 second=277 amount=4 -kerning first=365 second=97 amount=2 -kerning first=280 second=109 amount=-2 -kerning first=192 second=341 amount=-12 -kerning first=195 second=121 amount=-4 -kerning first=323 second=203 amount=-6 -kerning first=258 second=342 amount=-17 -kerning first=281 second=279 amount=1 -kerning first=196 second=291 amount=-10 -kerning first=84 second=83 amount=-6 -kerning first=219 second=228 amount=2 -kerning first=104 second=240 amount=2 -kerning first=285 second=229 amount=5 -kerning first=328 second=293 amount=-1 -kerning first=351 second=230 amount=2 -kerning first=371 second=357 amount=-1 -kerning first=66 second=266 amount=3 -kerning first=89 second=203 amount=-4 -kerning first=224 second=318 amount=-1 -kerning first=112 second=110 amount=2 -kerning first=227 second=98 amount=-1 -kerning first=270 second=192 amount=-8 -kerning first=375 second=307 amount=3 -kerning first=205 second=331 amount=-2 -kerning first=356 second=320 amount=-3 -kerning first=359 second=100 amount=2 -kerning first=71 second=356 amount=-2 -kerning first=117 second=230 amount=1 -kerning first=360 second=270 amount=-6 -kerning first=193 second=74 amount=-9 -kerning first=98 second=243 amount=2 -kerning first=341 second=283 amount=-2 -kerning first=256 second=295 amount=-12 -kerning first=279 second=232 amount=1 -kerning first=194 second=244 amount=-12 -kerning first=345 second=233 amount=-2 -kerning first=198 second=194 amount=-6 -kerning first=303 second=309 amount=-11 -kerning first=103 second=333 amount=2 -kerning first=106 second=113 amount=2 -kerning first=372 second=90 amount=4 -kerning first=284 second=322 amount=2 -kerning first=307 second=259 amount=2 -kerning first=84 second=346 amount=-6 -kerning first=107 second=283 amount=1 -kerning first=353 second=103 amount=3 -kerning first=265 second=335 amount=-1 -kerning first=45 second=232 amount=4 -kerning first=65 second=359 amount=-12 -kerning first=354 second=273 amount=-10 -kerning first=269 second=285 amount=1 -kerning first=272 second=65 amount=-8 -kerning first=69 second=309 amount=-10 -kerning first=207 second=234 amount=-2 -kerning first=292 second=222 amount=-2 -kerning first=312 second=349 amount=1 -kerning first=112 second=373 amount=2 -kerning first=358 second=223 amount=1 -kerning first=273 second=235 amount=1 -kerning first=119 second=103 amount=5 -kerning first=254 second=248 amount=2 -kerning first=274 second=375 amount=-3 -kerning first=57 second=52 amount=-2 -kerning first=192 second=197 amount=-7 -kerning first=100 second=116 amount=-1 -kerning first=120 second=273 amount=2 -kerning first=258 second=198 amount=-6 -kerning first=58 second=222 amount=-4 -kerning first=193 second=337 amount=-12 -kerning first=196 second=117 amount=-13 -kerning first=347 second=106 amount=-9 -kerning first=197 second=287 amount=-10 -kerning first=85 second=79 amount=2 -kerning first=220 second=224 amount=2 -kerning first=240 second=351 amount=1 -kerning first=348 second=276 amount=-3 -kerning first=266 second=68 amount=-2 -kerning first=329 second=289 amount=2 -kerning first=8211 second=121 amount=2 -kerning first=44 second=325 amount=-5 -kerning first=287 second=365 amount=2 -kerning first=313 second=82 amount=-4 -kerning first=225 second=314 amount=-1 -kerning first=248 second=251 amount=-2 -kerning first=8212 second=291 amount=4 -kerning first=160 second=68 amount=-6 -kerning first=275 second=108 amount=-1 -kerning first=118 second=226 amount=5 -kerning first=256 second=121 amount=-4 -kerning first=276 second=278 amount=-5 -kerning first=194 second=70 amount=-17 -kerning first=319 second=342 amount=-4 -kerning first=345 second=59 amount=-7 -kerning first=257 second=291 amount=2 -kerning first=260 second=71 amount=-11 -kerning first=195 second=240 amount=-10 -kerning first=300 second=355 amount=-2 -kerning first=80 second=252 amount=1 -kerning first=366 second=356 amount=-6 -kerning first=84 second=202 amount=-8 -kerning first=104 second=329 amount=-3 -kerning first=242 second=254 amount=-1 -kerning first=347 second=369 amount=1 -kerning first=285 second=318 amount=2 -kerning first=203 second=110 amount=-2 -kerning first=85 second=342 amount=-2 -kerning first=223 second=267 amount=1 -kerning first=108 second=279 amount=1 -kerning first=354 second=99 amount=-7 -kerning first=269 second=111 amount=-1 -kerning first=374 second=256 amount=-3 -kerning first=335 second=112 amount=-2 -kerning first=112 second=229 amount=5 -kerning first=70 second=305 amount=-1 -kerning first=228 second=357 amount=-1 -kerning first=294 second=358 amount=-6 -kerning first=193 second=193 amount=-7 -kerning first=236 second=257 amount=2 -kerning first=121 second=269 amount=3 -kerning first=194 second=333 amount=-12 -kerning first=197 second=113 amount=-10 -kerning first=214 second=8211 amount=3 -kerning first=217 second=270 amount=-6 -kerning first=345 second=322 amount=-1 -kerning first=260 second=334 amount=-11 -kerning first=368 second=259 amount=2 -kerning first=283 second=271 amount=2 -kerning first=198 second=283 amount=-5 -kerning first=329 second=115 amount=1 -kerning first=106 second=232 amount=1 -kerning first=241 second=347 amount=1 -kerning first=67 second=88 amount=1 -kerning first=330 second=285 amount=2 -kerning first=245 second=297 amount=-2 -kerning first=8212 second=117 amount=2 -kerning first=373 second=349 amount=1 -kerning first=68 second=258 amount=-8 -kerning first=203 second=373 amount=-2 -kerning first=72 second=208 amount=-6 -kerning first=335 second=375 amount=-2 -kerning first=358 second=312 amount=-3 -kerning first=254 second=337 amount=2 -kerning first=362 second=262 amount=2 -kerning first=192 second=286 amount=-11 -kerning first=195 second=66 amount=-8 -kerning first=100 second=235 amount=1 -kerning first=343 second=275 amount=-2 -kerning first=258 second=287 amount=-10 -kerning first=366 second=212 amount=2 -kerning first=281 second=224 amount=2 -kerning first=301 second=351 amount=1 -kerning first=327 second=68 amount=-6 -kerning first=347 second=225 amount=3 -kerning first=243 second=250 amount=-2 -kerning first=374 second=82 amount=-1 -kerning first=286 second=314 amount=2 -kerning first=201 second=326 amount=-2 -kerning first=204 second=106 amount=-14 -kerning first=86 second=338 amount=5 -kerning first=89 second=118 amount=-4 -kerning first=8211 second=240 amount=4 -kerning first=375 second=252 amount=3 -kerning first=333 second=328 amount=-2 -kerning first=113 second=225 amount=2 -kerning first=356 second=265 amount=-7 -kerning first=271 second=277 amount=-9 -kerning first=71 second=301 amount=1 -kerning first=209 second=226 amount=2 -kerning first=229 second=353 amount=1 -kerning first=275 second=227 amount=2 -kerning first=318 second=291 amount=-8 -kerning first=341 second=228 amount=-2 -kerning first=256 second=240 amount=-10 -kerning first=361 second=355 amount=-1 -kerning first=276 second=367 amount=-2 -kerning first=302 second=84 amount=-2 -kerning first=368 second=85 amount=2 -kerning first=283 second=97 amount=2 -kerning first=195 second=329 amount=-19 -kerning first=198 second=109 amount=-6 -kerning first=221 second=46 amount=-5 -kerning first=323 second=381 amount=4 -kerning first=349 second=98 amount=1 -kerning first=84 second=291 amount=-10 -kerning first=87 second=71 amount=2 -kerning first=222 second=216 amount=4 -kerning first=107 second=228 amount=2 -kerning first=350 second=268 amount=3 -kerning first=65 second=304 amount=-7 -kerning first=68 second=84 amount=-6 -kerning first=246 second=293 amount=-1 -kerning first=374 second=345 amount=-5 -kerning first=289 second=357 amount=2 -kerning first=204 second=369 amount=-2 -kerning first=89 second=381 amount=-2 -kerning first=112 second=318 amount=3 -kerning first=115 second=98 amount=1 -kerning first=316 second=244 amount=1 -kerning first=362 second=88 amount=3 -kerning first=277 second=100 amount=2 -kerning first=297 second=257 amount=2 -kerning first=74 second=344 amount=-4 -kerning first=343 second=101 amount=-2 -kerning first=258 second=113 amount=-10 -kerning first=278 second=270 amount=-5 -kerning first=193 second=282 amount=-10 -kerning first=101 second=231 amount=1 -kerning first=197 second=232 amount=-12 -kerning first=302 second=347 amount=-2 -kerning first=325 second=284 amount=3 -kerning first=102 second=371 amount=-7 -kerning first=86 second=194 amount=-3 -kerning first=349 second=361 amount=1 -kerning first=8211 second=66 amount=-7 -kerning first=44 second=270 amount=-3 -kerning first=67 second=207 amount=3 -kerning first=205 second=102 amount=-3 -kerning first=87 second=334 amount=2 -kerning first=225 second=259 amount=2 -kerning first=110 second=271 amount=2 -kerning first=353 second=311 amount=1 -kerning first=8212 second=236 amount=2 -kerning first=268 second=323 amount=4 -kerning first=271 second=103 amount=-8 -kerning first=337 second=104 amount=-1 -kerning first=272 second=273 amount=2 -kerning first=318 second=117 amount=-9 -kerning first=230 second=349 amount=1 -kerning first=338 second=274 amount=-4 -kerning first=115 second=361 amount=1 -kerning first=256 second=66 amount=-8 -kerning first=276 second=223 amount=3 -kerning first=119 second=311 amount=2 -kerning first=192 second=375 amount=-4 -kerning first=80 second=197 amount=-14 -kerning first=103 second=104 amount=2 -kerning first=196 second=325 amount=-15 -kerning first=304 second=250 amount=-2 -kerning first=84 second=117 amount=-6 -kerning first=347 second=314 amount=1 -kerning first=265 second=106 amount=-11 -kerning first=285 second=263 amount=2 -kerning first=85 second=287 amount=2 -kerning first=88 second=67 amount=-4 -kerning first=108 second=224 amount=2 -kerning first=246 second=119 amount=-2 -kerning first=331 second=107 amount=-1 -kerning first=354 second=44 amount=-15 -kerning first=266 second=276 amount=-2 -kerning first=374 second=201 amount=-4 -kerning first=69 second=80 amount=-6 -kerning first=89 second=237 amount=-3 -kerning first=270 second=226 amount=2 -kerning first=205 second=365 amount=-2 -kerning first=113 second=314 amount=-1 -kerning first=356 second=354 amount=-8 -kerning first=74 second=200 amount=-5 -kerning first=97 second=107 amount=-1 -kerning first=337 second=367 amount=-2 -kerning first=160 second=276 amount=-6 -kerning first=275 second=316 amount=-1 -kerning first=193 second=108 amount=-12 -kerning first=298 second=253 amount=-2 -kerning first=75 second=340 amount=-7 -kerning first=216 second=45 amount=3 -kerning first=98 second=277 amount=2 -kerning first=256 second=329 amount=-19 -kerning first=194 second=278 amount=-10 -kerning first=197 second=58 amount=-10 -kerning first=82 second=70 amount=-8 -kerning first=102 second=227 amount=-6 -kerning first=345 second=267 amount=-2 -kerning first=198 second=228 amount=-3 -kerning first=103 second=367 amount=2 -kerning first=284 second=356 amount=-2 -kerning first=222 second=305 amount=2 -kerning first=110 second=97 amount=2 -kerning first=45 second=266 amount=5 -kerning first=68 second=203 amount=-6 -kerning first=206 second=98 amount=-2 -kerning first=311 second=243 amount=1 -kerning first=354 second=307 amount=-2 -kerning first=335 second=320 amount=-1 -kerning first=358 second=257 amount=-10 -kerning first=273 second=269 amount=1 -kerning first=73 second=293 amount=-2 -kerning first=316 second=333 amount=1 -kerning first=336 second=8211 amount=3 -kerning first=192 second=231 amount=-12 -kerning first=320 second=283 amount=-1 -kerning first=235 second=295 amount=-1 -kerning first=258 second=232 amount=-12 -kerning first=363 second=347 amount=1 -kerning first=193 second=371 amount=-13 -kerning first=219 second=88 amount=3 -kerning first=101 second=320 amount=-1 -kerning first=104 second=100 amount=2 -kerning first=282 second=309 amount=-10 -kerning first=82 second=333 amount=-2 -kerning first=85 second=113 amount=2 -kerning first=263 second=322 amount=-1 -kerning first=86 second=283 amount=3 -kerning first=352 second=260 amount=-9 -kerning first=67 second=296 amount=3 -kerning first=70 second=76 amount=-4 -kerning first=356 second=210 amount=-2 -kerning first=8212 second=325 amount=-2 -kerning first=376 second=337 amount=-4 -kerning first=291 second=349 amount=2 -kerning first=71 second=246 amount=3 -kerning first=206 second=361 amount=-2 -kerning first=337 second=223 amount=2 -kerning first=75 second=196 amount=-3 -kerning first=318 second=236 amount=-3 -kerning first=98 second=103 amount=5 -kerning first=233 second=248 amount=1 -kerning first=364 second=80 amount=-2 -kerning first=194 second=104 amount=-12 -kerning first=99 second=273 amount=1 -kerning first=342 second=313 amount=3 -kerning first=195 second=274 amount=-10 -kerning first=80 second=286 amount=3 -kerning first=83 second=66 amount=-3 -kerning first=326 second=106 amount=-10 -kerning first=103 second=223 amount=5 -kerning first=304 second=339 amount=-2 -kerning first=84 second=236 amount=-2 -kerning first=327 second=276 amount=-6 -kerning first=350 second=213 amount=3 -kerning first=265 second=225 amount=1 -kerning first=370 second=340 amount=-2 -kerning first=373 second=120 amount=5 -kerning first=331 second=226 amount=2 -kerning first=246 second=238 amount=-2 -kerning first=46 second=262 amount=-3 -kerning first=374 second=290 amount=-1 -kerning first=292 second=82 amount=-2 -kerning first=204 second=314 amount=-2 -kerning first=89 second=326 amount=-5 -kerning first=112 second=263 amount=2 -kerning first=358 second=83 amount=-6 -kerning first=70 second=339 amount=-4 -kerning first=73 second=119 amount=-2 -kerning first=208 second=264 amount=4 -kerning first=211 second=44 amount=-5 -kerning first=313 second=379 amount=2 -kerning first=254 second=108 amount=3 -kerning first=74 second=289 amount=-5 -kerning first=97 second=226 amount=2 -kerning first=343 second=46 amount=-7 -kerning first=117 second=353 amount=1 -kerning first=258 second=58 amount=-10 -kerning first=58 second=82 amount=-4 -kerning first=193 second=227 amount=-10 -kerning first=298 second=342 amount=-2 -kerning first=236 second=291 amount=2 -kerning first=121 second=303 amount=3 -kerning first=259 second=228 amount=2 -kerning first=279 second=355 amount=-1 -kerning first=194 second=367 amount=-13 -kerning first=220 second=84 amount=-6 -kerning first=325 second=229 amount=2 -kerning first=286 second=85 amount=4 -kerning first=83 second=329 amount=-5 -kerning first=86 second=109 amount=2 -kerning first=221 second=254 amount=-2 -kerning first=264 second=318 amount=2 -kerning first=267 second=98 amount=-1 -kerning first=245 second=331 amount=-2 -kerning first=376 second=193 amount=-3 -kerning first=207 second=357 amount=-2 -kerning first=358 second=346 amount=-6 -kerning first=296 second=295 amount=-2 -kerning first=234 second=244 amount=1 -kerning first=339 second=359 amount=-1 -kerning first=254 second=371 amount=2 -kerning first=280 second=88 amount=3 -kerning first=192 second=320 amount=-12 -kerning first=195 second=100 amount=-10 -kerning first=77 second=332 amount=3 -kerning first=80 second=112 amount=1 -kerning first=300 second=245 amount=-2 -kerning first=100 second=269 amount=1 -kerning first=343 second=309 amount=-10 -kerning first=193 second=8211 amount=-12 -kerning first=196 second=270 amount=-10 -kerning first=324 second=322 amount=-1 -kerning first=242 second=114 amount=-2 -kerning first=347 second=259 amount=3 -kerning first=65 second=75 amount=-5 -kerning first=374 second=116 amount=-2 -kerning first=66 second=245 amount=2 -kerning first=309 second=285 amount=2 -kerning first=109 second=309 amount=-10 -kerning first=8211 second=274 amount=-7 -kerning first=290 second=298 amount=3 -kerning first=70 second=195 amount=-12 -kerning first=113 second=259 amount=2 -kerning first=356 second=299 amount=-2 -kerning first=71 second=335 amount=3 -kerning first=337 second=312 amount=-2 -kerning first=75 second=285 amount=-7 -kerning first=233 second=337 amount=1 -kerning first=118 second=349 amount=2 -kerning first=256 second=274 amount=-10 -kerning first=364 second=199 amount=2 -kerning first=59 second=78 amount=-5 -kerning first=194 second=223 amount=-10 -kerning first=302 second=118 amount=-2 -kerning first=237 second=287 amount=2 -kerning first=260 second=224 amount=-10 -kerning first=195 second=363 amount=-13 -kerning first=80 second=375 amount=1 -kerning first=221 second=80 amount=-1 -kerning first=326 second=225 amount=2 -kerning first=103 second=312 amount=2 -kerning first=369 second=289 amount=2 -kerning first=372 second=69 amount=-6 -kerning first=84 second=325 amount=-1 -kerning first=265 second=314 amount=-1 -kerning first=373 second=239 amount=2 -kerning first=45 second=211 amount=5 -kerning first=65 second=338 amount=-11 -kerning first=88 second=275 amount=-2 -kerning first=272 second=44 amount=-3 -kerning first=374 second=379 amount=-2 -kerning first=292 second=201 amount=-6 -kerning first=72 second=68 amount=-6 -kerning first=230 second=120 amount=-2 -kerning first=358 second=202 amount=-8 -kerning first=296 second=121 amount=-2 -kerning first=73 second=238 amount=-2 -kerning first=254 second=227 amount=5 -kerning first=274 second=354 amount=-5 -kerning first=382 second=279 amount=1 -kerning first=297 second=291 amount=2 -kerning first=235 second=240 amount=2 -kerning first=340 second=355 amount=-2 -kerning first=58 second=201 amount=-4 -kerning first=193 second=316 amount=-12 -kerning first=101 second=265 amount=1 -kerning first=197 second=266 amount=-11 -kerning first=220 second=203 amount=-6 -kerning first=328 second=98 amount=-1 -kerning first=243 second=110 amount=-2 -kerning first=286 second=204 amount=3 -kerning first=66 second=71 amount=3 -kerning first=309 second=111 amount=1 -kerning first=86 second=228 amount=6 -kerning first=221 second=343 amount=-5 -kerning first=8211 second=100 amount=4 -kerning first=375 second=112 amount=3 -kerning first=202 second=356 amount=-5 -kerning first=225 second=293 amount=-1 -kerning first=8212 second=270 amount=-7 -kerning first=268 second=357 amount=2 -kerning first=376 second=282 amount=-4 -kerning first=380 second=232 amount=1 -kerning first=75 second=111 amount=-10 -kerning first=256 second=100 amount=-10 -kerning first=214 second=206 amount=3 -kerning first=234 second=333 amount=1 -kerning first=237 second=113 amount=2 -kerning first=342 second=258 amount=3 -kerning first=254 second=8211 amount=3 -kerning first=323 second=271 amount=2 -kerning first=346 second=208 amount=-3 -kerning first=369 second=115 amount=1 -kerning first=281 second=347 amount=1 -kerning first=196 second=359 amount=-12 -kerning first=370 second=285 amount=2 -kerning first=285 second=297 amount=3 -kerning first=65 second=194 amount=-7 -kerning first=200 second=309 amount=-10 -kerning first=88 second=101 amount=-2 -kerning first=223 second=246 amount=1 -kerning first=243 second=373 amount=-2 -kerning first=354 second=78 amount=-1 -kerning first=89 second=271 amount=-3 -kerning first=8211 second=363 amount=2 -kerning first=270 second=260 amount=-8 -kerning first=375 second=375 amount=3 -kerning first=231 second=116 amount=-1 -kerning first=74 second=234 amount=-5 -kerning first=160 second=310 amount=-6 -kerning first=360 second=338 amount=2 -kerning first=98 second=311 amount=3 -kerning first=341 second=351 amount=-2 -kerning first=121 second=248 amount=3 -kerning first=256 second=363 amount=-13 -kerning first=364 second=288 amount=2 -kerning first=282 second=80 amount=-6 -kerning first=194 second=312 amount=-12 -kerning first=302 second=237 amount=-2 -kerning first=82 second=104 amount=-2 -kerning first=102 second=261 amount=-7 -kerning first=348 second=81 amount=3 -kerning first=198 second=262 amount=-7 -kerning first=83 second=274 amount=-3 -kerning first=221 second=199 amount=-1 -kerning first=326 second=314 amount=-1 -kerning first=244 second=106 amount=-13 -kerning first=349 second=251 amount=1 -kerning first=87 second=224 amount=2 -kerning first=330 second=264 amount=3 -kerning first=107 second=351 amount=1 -kerning first=45 second=300 amount=-5 -kerning first=373 second=328 amount=2 -kerning first=291 second=120 amount=-1 -kerning first=376 second=108 amount=-2 -kerning first=311 second=277 amount=1 -kerning first=226 second=289 amount=2 -kerning first=354 second=341 amount=-6 -kerning first=357 second=121 amount=-11 -kerning first=269 second=353 amount=1 -kerning first=115 second=251 amount=1 -kerning first=358 second=291 amount=-10 -kerning first=342 second=84 amount=-8 -kerning first=254 second=316 amount=3 -kerning first=192 second=265 amount=-12 -kerning first=195 second=45 amount=-12 -kerning first=323 second=97 amount=2 -kerning first=343 second=254 amount=-1 -kerning first=258 second=266 amount=-11 -kerning first=58 second=290 amount=-3 -kerning first=304 second=110 amount=-2 -kerning first=197 second=355 amount=-12 -kerning first=348 second=344 amount=-3 -kerning first=286 second=293 amount=2 -kerning first=309 second=230 amount=1 -kerning first=89 second=97 amount=-3 -kerning first=329 second=357 amount=-1 -kerning first=109 second=254 amount=-1 -kerning first=244 second=369 amount=-2 -kerning first=270 second=86 amount=2 -kerning first=375 second=231 amount=3 -kerning first=67 second=330 amount=4 -kerning first=70 second=110 amount=-3 -kerning first=333 second=307 amount=-2 -kerning first=356 second=244 amount=-7 -kerning first=376 second=371 amount=-5 -kerning first=71 second=280 amount=-2 -kerning first=75 second=230 amount=-8 -kerning first=315 second=8211 amount=-5 -kerning first=381 second=8212 amount=-6 -kerning first=237 second=232 amount=1 -kerning first=257 second=359 amount=-1 -kerning first=303 second=233 amount=1 -kerning first=103 second=257 amount=5 -kerning first=261 second=309 amount=-10 -kerning first=264 second=89 amount=4 -kerning first=304 second=373 amount=-2 -kerning first=81 second=8211 amount=3 -kerning first=84 second=270 amount=-8 -kerning first=222 second=195 amount=-13 -kerning first=330 second=90 amount=4 -kerning first=242 second=322 amount=-1 -kerning first=245 second=102 amount=-2 -kerning first=265 second=259 amount=1 -kerning first=65 second=283 amount=-12 -kerning first=203 second=208 amount=-5 -kerning first=311 second=103 amount=2 -kerning first=223 second=335 amount=1 -kerning first=226 second=115 amount=1 -kerning first=108 second=347 amount=1 -kerning first=354 second=197 amount=-13 -kerning first=374 second=324 amount=-5 -kerning first=312 second=273 amount=2 -kerning first=227 second=285 amount=2 -kerning first=112 second=297 amount=2 -kerning first=355 second=337 amount=1 -kerning first=358 second=117 amount=-6 -kerning first=70 second=373 amount=-4 -kerning first=316 second=223 amount=4 -kerning first=359 second=287 amount=2 -kerning first=362 second=67 amount=2 -kerning first=77 second=103 amount=1 -kerning first=78 second=273 amount=2 -kerning first=216 second=198 amount=-7 -kerning first=121 second=337 amount=3 -kerning first=364 second=377 amount=4 -kerning first=59 second=286 amount=-3 -kerning first=197 second=211 amount=-11 -kerning first=302 second=326 amount=-2 -kerning first=305 second=106 amount=-11 -kerning first=240 second=275 amount=1 -kerning first=348 second=200 amount=-3 -kerning first=371 second=107 amount=-1 -kerning first=283 second=339 amount=1 -kerning first=198 second=351 amount=-4 -kerning first=221 second=288 amount=-1 -kerning first=287 second=289 amount=5 -kerning first=290 second=69 amount=-2 -kerning first=245 second=365 amount=-2 -kerning first=356 second=70 amount=-5 -kerning first=268 second=302 amount=3 -kerning first=376 second=227 amount=-3 -kerning first=291 second=239 amount=3 -kerning first=71 second=106 amount=-10 -kerning first=206 second=251 amount=-2 -kerning first=357 second=240 amount=-8 -kerning first=292 second=379 amount=4 -kerning first=72 second=276 amount=-6 -kerning first=233 second=108 amount=-1 -kerning first=118 second=120 amount=3 -kerning first=256 second=45 amount=-12 -kerning first=276 second=202 amount=-5 -kerning first=296 second=329 amount=-4 -kerning first=192 second=354 amount=-20 -kerning first=300 second=279 amount=-2 -kerning first=323 second=216 amount=3 -kerning first=238 second=228 amount=2 -kerning first=258 second=355 amount=-12 -kerning first=366 second=280 amount=-6 -kerning first=196 second=304 amount=-7 -kerning first=199 second=84 amount=-2 -kerning first=347 second=293 amount=1 -kerning first=285 second=242 amount=2 -kerning first=65 second=109 amount=-13 -kerning first=85 second=266 amount=2 -kerning first=220 second=381 amount=4 -kerning first=243 second=318 amount=-1 -kerning first=246 second=98 amount=-1 -kerning first=351 second=243 amount=1 -kerning first=66 second=279 amount=2 -kerning first=312 second=99 amount=1 -kerning first=89 second=216 amount=-1 -kerning first=70 second=229 amount=-3 -kerning first=205 second=344 amount=-2 -kerning first=336 second=206 amount=3 -kerning first=113 second=293 amount=-1 -kerning first=356 second=333 amount=-7 -kerning first=359 second=113 amount=2 -kerning first=271 second=345 amount=-9 -kerning first=294 second=282 amount=-6 -kerning first=71 second=369 amount=2 -kerning first=232 second=231 amount=1 -kerning first=275 second=295 amount=-1 -kerning first=193 second=87 amount=-7 -kerning first=298 second=232 amount=-2 -kerning first=75 second=319 amount=-3 -kerning first=344 second=76 amount=3 -kerning first=279 second=245 amount=1 -kerning first=194 second=257 amount=-10 -kerning first=240 second=101 amount=1 -kerning first=345 second=246 amount=-2 -kerning first=260 second=258 amount=-7 -kerning first=221 second=114 amount=-5 -kerning first=326 second=259 amount=2 -kerning first=241 second=271 amount=2 -kerning first=264 second=208 amount=-2 -kerning first=372 second=103 amount=2 -kerning first=287 second=115 amount=2 -kerning first=84 second=359 amount=-3 -kerning first=222 second=284 amount=4 -kerning first=350 second=336 amount=3 -kerning first=353 second=116 amount=1 -kerning first=373 second=273 amount=5 -kerning first=45 second=245 amount=4 -kerning first=88 second=309 amount=-10 -kerning first=331 second=349 amount=1 -kerning first=246 second=361 amount=-2 -kerning first=354 second=286 amount=-2 -kerning first=358 second=236 amount=-2 -kerning first=273 second=248 amount=1 -kerning first=234 second=104 amount=-1 -kerning first=119 second=116 amount=2 -kerning first=192 second=210 amount=-11 -kerning first=300 second=105 amount=-2 -kerning first=77 second=222 amount=-4 -kerning first=97 second=349 amount=1 -kerning first=258 second=211 amount=-11 -kerning first=193 second=350 amount=-8 -kerning first=301 second=275 amount=1 -kerning first=239 second=224 amount=2 -kerning first=347 second=119 amount=1 -kerning first=259 second=351 amount=1 -kerning first=197 second=300 amount=-7 -kerning first=200 second=80 amount=-6 -kerning first=82 second=312 amount=-2 -kerning first=305 second=225 amount=2 -kerning first=371 second=226 amount=2 -kerning first=86 second=262 amount=5 -kerning first=221 second=377 amount=-2 -kerning first=244 second=314 amount=-1 -kerning first=44 second=338 amount=-3 -kerning first=228 second=107 amount=-1 -kerning first=333 second=252 amount=-2 -kerning first=8212 second=304 amount=-5 -kerning first=376 second=316 amount=-2 -kerning first=291 second=328 amount=2 -kerning first=71 second=225 amount=5 -kerning first=206 second=340 amount=-2 -kerning first=114 second=289 amount=-2 -kerning first=160 second=81 amount=-3 -kerning first=233 second=227 amount=2 -kerning first=338 second=342 amount=-7 -kerning first=118 second=239 amount=2 -kerning first=194 second=83 amount=-8 -kerning first=299 second=228 amount=2 -kerning first=102 second=160 amount=-5 -kerning first=260 second=84 amount=-20 -kerning first=365 second=229 amount=2 -kerning first=83 second=45 amount=4 -kerning first=241 second=97 amount=2 -kerning first=261 second=254 amount=-1 -kerning first=199 second=203 amount=-2 -kerning first=304 second=318 amount=-2 -kerning first=222 second=110 amount=2 -kerning first=350 second=192 amount=-9 -kerning first=45 second=71 amount=5 -kerning first=373 second=99 amount=4 -kerning first=285 second=331 amount=2 -kerning first=65 second=228 amount=-10 -kerning first=354 second=112 amount=-6 -kerning first=266 second=344 amount=-4 -kerning first=374 second=269 amount=-4 -kerning first=289 second=281 amount=2 -kerning first=204 second=293 amount=-2 -kerning first=89 second=305 amount=-3 -kerning first=227 second=230 amount=1 -kerning first=112 second=242 amount=2 -kerning first=70 second=318 amount=-2 -kerning first=73 second=98 amount=-2 -kerning first=359 second=232 amount=1 -kerning first=274 second=244 amount=-2 -kerning first=232 second=320 amount=-1 -kerning first=235 second=100 amount=2 -kerning first=160 second=344 amount=-9 -kerning first=193 second=206 amount=-7 -kerning first=301 second=101 amount=1 -kerning first=344 second=195 amount=3 -kerning first=194 second=346 amount=-8 -kerning first=325 second=208 amount=-6 -kerning first=345 second=335 amount=-2 -kerning first=260 second=347 amount=-11 -kerning first=368 second=272 amount=-6 -kerning first=221 second=233 amount=-4 -kerning first=106 second=245 amount=1 -kerning first=349 second=285 amount=3 -kerning first=352 second=65 amount=-9 -kerning first=372 second=222 amount=-2 -kerning first=287 second=234 amount=2 -kerning first=202 second=246 amount=-2 -kerning first=222 second=373 amount=1 -kerning first=353 second=235 amount=1 -kerning first=45 second=334 amount=5 -kerning first=65 second=8212 amount=-12 -kerning first=68 second=271 amount=2 -kerning first=229 second=103 amount=2 -kerning first=114 second=115 amount=-2 -kerning first=354 second=375 amount=-10 -kerning first=272 second=197 amount=-8 -kerning first=295 second=104 amount=-1 -kerning first=230 second=273 amount=2 -kerning first=115 second=285 amount=3 -kerning first=358 second=325 amount=-1 -kerning first=273 second=337 amount=1 -kerning first=276 second=117 amount=-2 -kerning first=73 second=361 amount=-2 -kerning first=234 second=223 amount=4 -kerning first=119 second=235 amount=4 -kerning first=277 second=287 amount=2 -kerning first=195 second=79 amount=-11 -kerning first=100 second=248 amount=1 -kerning first=346 second=68 amount=-3 -kerning first=258 second=300 amount=-7 -kerning first=366 second=225 amount=2 -kerning first=327 second=81 amount=3 -kerning first=347 second=238 amount=1 -kerning first=85 second=211 amount=2 -kerning first=223 second=106 amount=-12 -kerning first=266 second=200 amount=-2 -kerning first=46 second=67 amount=-3 -kerning first=66 second=224 amount=3 -kerning first=204 second=119 amount=-2 -kerning first=289 second=107 amount=2 -kerning first=86 second=351 amount=3 -kerning first=355 second=108 amount=-1 -kerning first=8211 second=253 amount=2 -kerning first=270 second=120 amount=-3 -kerning first=375 second=265 amount=3 -kerning first=208 second=69 amount=-6 -kerning first=228 second=226 amount=2 -kerning first=356 second=278 amount=-8 -kerning first=274 second=70 amount=-6 -kerning first=294 second=227 amount=2 -kerning first=71 second=314 amount=2 -kerning first=160 second=200 amount=-6 -kerning first=360 second=228 amount=2 -kerning first=275 second=240 amount=2 -kerning first=75 second=264 amount=-8 -kerning first=233 second=316 amount=-1 -kerning first=118 second=328 amount=2 -kerning first=121 second=108 amount=3 -kerning first=194 second=202 amount=-10 -kerning first=102 second=121 amount=-7 -kerning first=260 second=203 amount=-10 -kerning first=365 second=318 amount=-1 -kerning first=195 second=342 amount=-17 -kerning first=198 second=122 amount=-2 -kerning first=80 second=354 amount=-9 -kerning first=221 second=59 amount=-5 -kerning first=303 second=267 amount=1 -kerning first=103 second=291 amount=5 -kerning first=349 second=111 amount=1 -kerning first=284 second=280 amount=-2 -kerning first=84 second=304 amount=-2 -kerning first=87 second=84 amount=-6 -kerning first=327 second=344 amount=-2 -kerning first=265 second=293 amount=-1 -kerning first=268 second=73 amount=3 -kerning first=68 second=97 amount=2 -kerning first=203 second=242 amount=-2 -kerning first=354 second=231 amount=-7 -kerning first=269 second=243 amount=-1 -kerning first=46 second=330 amount=-5 -kerning first=230 second=99 amount=1 -kerning first=112 second=331 amount=2 -kerning first=115 second=111 amount=1 -kerning first=208 second=332 amount=4 -kerning first=316 second=257 amount=2 -kerning first=274 second=333 amount=-2 -kerning first=277 second=113 amount=2 -kerning first=363 second=271 amount=2 -kerning first=193 second=295 amount=-12 -kerning first=196 second=75 amount=-5 -kerning first=101 second=244 amount=1 -kerning first=121 second=371 amount=3 -kerning first=197 second=245 amount=-12 -kerning first=240 second=309 amount=-10 -kerning first=263 second=246 amount=-1 -kerning first=86 second=207 amount=5 -kerning first=221 second=322 amount=-2 -kerning first=8211 second=79 amount=5 -kerning first=202 second=335 amount=-2 -kerning first=205 second=115 amount=-2 -kerning first=353 second=324 amount=1 -kerning first=356 second=104 amount=-3 -kerning first=8212 second=249 amount=2 -kerning first=291 second=273 amount=5 -kerning first=337 second=117 amount=-2 -kerning first=114 second=234 amount=-2 -kerning first=272 second=286 amount=4 -kerning first=295 second=223 amount=3 -kerning first=256 second=79 amount=-11 -kerning first=361 second=224 amount=2 -kerning first=296 second=363 amount=-2 -kerning first=119 second=324 amount=2 -kerning first=195 second=198 amount=-6 -kerning first=80 second=210 amount=3 -kerning first=100 second=337 amount=1 -kerning first=103 second=117 amount=2 -kerning first=196 second=338 amount=-11 -kerning first=304 second=263 amount=-2 -kerning first=327 second=200 amount=-6 -kerning first=104 second=287 amount=2 -kerning first=265 second=119 amount=-1 -kerning first=370 second=264 amount=2 -kerning first=203 second=68 amount=-5 -kerning first=223 second=225 amount=2 -kerning first=331 second=120 amount=-1 -kerning first=351 second=277 amount=1 -kerning first=374 second=214 amount=-1 -kerning first=289 second=226 amount=5 -kerning first=204 second=238 amount=-2 -kerning first=355 second=227 amount=2 -kerning first=8211 second=342 amount=-6 -kerning first=70 second=263 amount=-4 -kerning first=356 second=367 amount=-6 -kerning first=54 second=56 amount=2 -kerning first=97 second=120 amount=-1 -kerning first=232 second=265 amount=1 -kerning first=363 second=97 amount=2 -kerning first=278 second=109 amount=-2 -kerning first=193 second=121 amount=-4 -kerning first=75 second=353 amount=-8 -kerning first=216 second=58 amount=-5 -kerning first=121 second=227 amount=7 -kerning first=256 second=342 amount=-17 -kerning first=279 second=279 amount=1 -kerning first=194 second=291 amount=-10 -kerning first=197 second=71 amount=-11 -kerning first=217 second=228 amount=2 -kerning first=102 second=240 amount=-6 -kerning first=283 second=229 amount=2 -kerning first=198 second=241 amount=-7 -kerning first=326 second=293 amount=-1 -kerning first=349 second=230 amount=2 -kerning first=369 second=357 amount=-1 -kerning first=87 second=203 amount=-6 -kerning first=225 second=98 amount=-1 -kerning first=8212 second=75 amount=-5 -kerning first=45 second=279 amount=4 -kerning first=373 second=307 amount=2 -kerning first=291 second=99 amount=2 -kerning first=68 second=216 amount=4 -kerning first=203 second=331 amount=-2 -kerning first=206 second=111 amount=-2 -kerning first=88 second=343 amount=-2 -kerning first=354 second=320 amount=-3 -kerning first=357 second=100 amount=-8 -kerning first=69 second=356 amount=-5 -kerning first=207 second=281 amount=-2 -kerning first=115 second=230 amount=2 -kerning first=358 second=270 amount=-8 -kerning first=339 second=283 amount=1 -kerning first=254 second=295 amount=3 -kerning first=277 second=232 amount=1 -kerning first=192 second=244 amount=-12 -kerning first=343 second=233 amount=-2 -kerning first=120 second=320 amount=-1 -kerning first=258 second=245 amount=-12 -kerning first=196 second=194 amount=-7 -kerning first=81 second=206 amount=3 -kerning first=301 second=309 amount=-11 -kerning first=101 second=333 amount=1 -kerning first=104 second=113 amount=2 -kerning first=121 second=8211 amount=4 -kerning first=370 second=90 amount=4 -kerning first=197 second=334 amount=-11 -kerning first=305 second=259 amount=2 -kerning first=220 second=271 amount=2 -kerning first=105 second=283 amount=1 -kerning first=351 second=103 amount=3 -kerning first=263 second=335 amount=-1 -kerning first=286 second=272 amount=-2 -kerning first=86 second=296 amount=5 -kerning first=89 second=76 amount=-3 -kerning first=267 second=285 amount=1 -kerning first=270 second=65 amount=-8 -kerning first=290 second=222 amount=-2 -kerning first=205 second=234 amount=-2 -kerning first=356 second=223 amount=1 -kerning first=8212 second=338 amount=5 -kerning first=271 second=235 amount=-9 -kerning first=376 second=350 amount=-4 -kerning first=71 second=259 amount=5 -kerning first=229 second=311 amount=-1 -kerning first=117 second=103 amount=2 -kerning first=357 second=363 amount=-9 -kerning first=295 second=312 amount=-1 -kerning first=98 second=116 amount=3 -kerning first=118 second=273 amount=5 -kerning first=256 second=198 amount=-6 -kerning first=194 second=117 amount=-13 -kerning first=345 second=106 amount=-10 -kerning first=260 second=118 amount=-13 -kerning first=195 second=287 amount=-10 -kerning first=198 second=67 amount=-7 -kerning first=80 second=299 amount=1 -kerning first=83 second=79 amount=3 -kerning first=218 second=224 amount=2 -kerning first=103 second=236 amount=3 -kerning first=238 second=351 amount=1 -kerning first=346 second=276 amount=-3 -kerning first=264 second=68 amount=-2 -kerning first=327 second=289 amount=2 -kerning first=330 second=69 amount=-6 -kerning first=242 second=301 amount=-2 -kerning first=45 second=105 amount=2 -kerning first=285 second=365 amount=2 -kerning first=65 second=262 amount=-11 -kerning first=88 second=199 amount=-4 -kerning first=111 second=106 amount=-13 -kerning first=246 second=251 amount=-2 -kerning first=49 second=55 amount=-8 -kerning first=207 second=107 amount=-2 -kerning first=89 second=339 amount=-4 -kerning first=355 second=316 amount=-1 -kerning first=273 second=108 amount=-1 -kerning first=116 second=226 amount=2 -kerning first=254 second=121 amount=2 -kerning first=274 second=278 amount=-5 -kerning first=192 second=70 amount=-17 -kerning first=77 second=82 amount=-4 -kerning first=343 second=59 amount=-7 -kerning first=258 second=71 amount=-11 -kerning first=193 second=240 amount=-10 -kerning first=298 second=355 amount=-2 -kerning first=121 second=316 amount=3 -kerning first=364 second=356 amount=-6 -kerning first=220 second=97 amount=2 -kerning first=102 second=329 amount=-8 -kerning first=240 second=254 amount=-1 -kerning first=260 second=381 amount=-7 -kerning first=283 second=318 amount=-1 -kerning first=286 second=98 amount=2 -kerning first=201 second=110 amount=-2 -kerning first=83 second=342 amount=-3 -kerning first=86 second=122 amount=2 -kerning first=221 second=267 amount=-4 -kerning first=106 second=279 amount=1 -kerning first=267 second=111 amount=-1 -kerning first=202 second=280 amount=-5 -kerning first=330 second=332 amount=3 -kerning first=333 second=112 amount=-2 -kerning first=110 second=229 amount=2 -kerning first=353 second=269 amount=1 -kerning first=8212 second=194 amount=-13 -kerning first=45 second=368 amount=5 -kerning first=71 second=85 amount=4 -kerning first=226 second=357 amount=-1 -kerning first=111 second=369 amount=-2 -kerning first=292 second=358 amount=-6 -kerning first=118 second=99 amount=4 -kerning first=358 second=359 amount=-3 -kerning first=56 second=48 amount=2 -kerning first=234 second=257 amount=2 -kerning first=119 second=269 amount=4 -kerning first=192 second=333 amount=-12 -kerning first=195 second=113 amount=-10 -kerning first=212 second=8211 amount=3 -kerning first=343 second=322 amount=-1 -kerning first=258 second=334 amount=-11 -kerning first=366 second=259 amount=2 -kerning first=281 second=271 amount=2 -kerning first=58 second=358 amount=-10 -kerning first=196 second=283 amount=-12 -kerning first=84 second=75 amount=-7 -kerning first=239 second=347 amount=1 -kerning first=65 second=88 amount=-9 -kerning first=328 second=285 amount=2 -kerning first=243 second=297 amount=-2 -kerning first=371 second=349 amount=1 -kerning first=66 second=258 amount=-5 -kerning first=201 second=373 amount=-2 -kerning first=89 second=195 amount=-3 -kerning first=109 second=322 amount=-1 -kerning first=112 second=102 amount=3 -kerning first=8211 second=287 amount=4 -kerning first=375 second=299 amount=3 -kerning first=290 second=311 amount=2 -kerning first=70 second=208 amount=-9 -kerning first=208 second=103 amount=2 -kerning first=333 second=375 amount=-2 -kerning first=356 second=312 amount=-3 -kerning first=271 second=324 amount=-9 -kerning first=209 second=273 amount=2 -kerning first=360 second=262 amount=2 -kerning first=193 second=66 amount=-8 -kerning first=98 second=235 amount=2 -kerning first=341 second=275 amount=-2 -kerning first=256 second=287 amount=-10 -kerning first=364 second=212 amount=2 -kerning first=279 second=224 amount=2 -kerning first=299 second=351 amount=1 -kerning first=325 second=68 amount=-6 -kerning first=99 second=375 amount=-1 -kerning first=345 second=225 amount=-2 -kerning first=83 second=198 amount=-11 -kerning first=372 second=82 amount=-2 -kerning first=284 second=314 amount=2 -kerning first=202 second=106 amount=-10 -kerning first=84 second=338 amount=-2 -kerning first=107 second=275 amount=1 -kerning first=268 second=107 amount=2 -kerning first=45 second=224 amount=4 -kerning first=373 second=252 amount=2 -kerning first=65 second=351 amount=-11 -kerning first=203 second=276 amount=-5 -kerning first=88 second=288 amount=-4 -kerning first=354 second=265 amount=-7 -kerning first=227 second=353 amount=1 -kerning first=112 second=365 amount=2 -kerning first=273 second=227 amount=2 -kerning first=73 second=251 amount=-2 -kerning first=316 second=291 amount=2 -kerning first=339 second=228 amount=2 -kerning first=254 second=240 amount=5 -kerning first=359 second=355 amount=-1 -kerning first=274 second=367 amount=-2 -kerning first=300 second=84 amount=-2 -kerning first=100 second=108 amount=-1 -kerning first=366 second=85 amount=2 -kerning first=281 second=97 amount=2 -kerning first=58 second=214 amount=-3 -kerning first=193 second=329 amount=-19 -kerning first=196 second=109 amount=-13 -kerning first=344 second=318 amount=-2 -kerning first=347 second=98 amount=1 -kerning first=59 second=354 amount=-10 -kerning first=197 second=279 amount=-12 -kerning first=85 second=71 amount=2 -kerning first=105 second=228 amount=2 -kerning first=348 second=268 amount=3 -kerning first=66 second=84 amount=-4 -kerning first=244 second=293 amount=-1 -kerning first=8211 second=113 amount=4 -kerning first=287 second=357 amount=2 -kerning first=67 second=254 amount=2 -kerning first=202 second=369 amount=-2 -kerning first=87 second=381 amount=4 -kerning first=110 second=318 amount=-1 -kerning first=113 second=98 amount=-1 -kerning first=8212 second=283 amount=4 -kerning first=291 second=307 amount=3 -kerning first=71 second=204 amount=3 -kerning first=360 second=88 amount=3 -kerning first=275 second=100 amount=2 -kerning first=295 second=257 amount=2 -kerning first=72 second=344 amount=-2 -kerning first=341 second=101 amount=-2 -kerning first=256 second=113 amount=-10 -kerning first=276 second=270 amount=-5 -kerning first=195 second=232 amount=-12 -kerning first=300 second=347 amount=-2 -kerning first=323 second=284 amount=3 -kerning first=304 second=297 amount=-2 -kerning first=84 second=194 amount=-13 -kerning first=219 second=309 amount=-12 -kerning first=107 second=101 amount=1 -kerning first=347 second=361 amount=1 -kerning first=65 second=207 amount=-7 -kerning first=85 second=334 amount=2 -kerning first=88 second=114 amount=-2 -kerning first=223 second=259 amount=2 -kerning first=108 second=271 amount=2 -kerning first=351 second=311 amount=1 -kerning first=266 second=323 amount=4 -kerning first=269 second=103 amount=1 -kerning first=66 second=347 amount=1 -kerning first=89 second=284 amount=-1 -kerning first=335 second=104 amount=-1 -kerning first=8211 second=376 amount=3 -kerning first=270 second=273 amount=2 -kerning first=70 second=297 amount=-4 -kerning first=208 second=222 amount=-5 -kerning first=228 second=349 amount=1 -kerning first=274 second=223 amount=3 -kerning first=117 second=311 amount=-1 -kerning first=160 second=323 amount=-8 -kerning first=98 second=324 amount=2 -kerning first=101 second=104 amount=-1 -kerning first=59 second=210 amount=-3 -kerning first=194 second=325 amount=-15 -kerning first=302 second=250 amount=-2 -kerning first=345 second=314 amount=-1 -kerning first=260 second=326 amount=-13 -kerning first=263 second=106 amount=-11 -kerning first=283 second=263 amount=1 -kerning first=198 second=275 amount=-5 -kerning first=86 second=67 amount=5 -kerning first=221 second=212 amount=-1 -kerning first=106 second=224 amount=2 -kerning first=244 second=119 amount=-2 -kerning first=329 second=107 amount=-1 -kerning first=352 second=44 amount=-4 -kerning first=264 second=276 amount=-2 -kerning first=372 second=201 amount=-6 -kerning first=67 second=80 amount=-2 -kerning first=8212 second=109 amount=2 -kerning first=45 second=313 amount=3 -kerning first=376 second=121 amount=-5 -kerning first=203 second=365 amount=-2 -kerning first=111 second=314 amount=-1 -kerning first=354 second=354 amount=-8 -kerning first=72 second=200 amount=-6 -kerning first=335 second=367 amount=-2 -kerning first=358 second=304 amount=-2 -kerning first=273 second=316 amount=-1 -kerning first=296 second=253 amount=-2 -kerning first=73 second=340 amount=-2 -kerning first=214 second=45 amount=3 -kerning first=192 second=278 amount=-10 -kerning first=195 second=58 amount=-10 -kerning first=77 second=290 amount=3 -kerning first=80 second=70 amount=-7 -kerning first=100 second=227 amount=2 -kerning first=343 second=267 amount=-2 -kerning first=258 second=279 amount=-12 -kerning first=196 second=228 amount=-10 -kerning first=282 second=356 amount=-5 -kerning first=328 second=230 amount=1 -kerning first=108 second=97 amount=2 -kerning first=66 second=203 amount=-4 -kerning first=204 second=98 amount=-2 -kerning first=309 second=243 amount=1 -kerning first=86 second=330 amount=2 -kerning first=89 second=110 amount=-5 -kerning first=8211 second=232 amount=4 -kerning first=375 second=244 amount=3 -kerning first=333 second=320 amount=-1 -kerning first=356 second=257 amount=-10 -kerning first=271 second=269 amount=-9 -kerning first=71 second=293 amount=2 -kerning first=334 second=8211 amount=3 -kerning first=114 second=357 amount=-1 -kerning first=75 second=243 amount=-10 -kerning first=318 second=283 amount=-9 -kerning first=233 second=295 amount=-1 -kerning first=118 second=307 amount=2 -kerning first=256 second=232 amount=-12 -kerning first=361 second=347 amount=1 -kerning first=217 second=88 amount=3 -kerning first=99 second=320 amount=-1 -kerning first=102 second=100 amount=-6 -kerning first=237 second=245 amount=1 -kerning first=280 second=309 amount=-10 -kerning first=198 second=101 amount=-5 -kerning first=303 second=246 amount=1 -kerning first=261 second=322 amount=-1 -kerning first=196 second=8212 amount=-12 -kerning first=84 second=283 amount=-7 -kerning first=222 second=208 amount=-9 -kerning first=330 second=103 amount=2 -kerning first=350 second=260 amount=-9 -kerning first=65 second=296 amount=-7 -kerning first=88 second=233 amount=-2 -kerning first=331 second=273 amount=2 -kerning first=354 second=210 amount=-2 -kerning first=374 second=337 amount=-4 -kerning first=46 second=309 amount=-11 -kerning first=289 second=349 amount=2 -kerning first=69 second=246 amount=-2 -kerning first=204 second=361 amount=-2 -kerning first=89 second=373 amount=-4 -kerning first=335 second=223 amount=2 -kerning first=231 second=248 amount=-1 -kerning first=362 second=80 amount=-2 -kerning first=192 second=104 amount=-12 -kerning first=97 second=273 amount=2 -kerning first=340 second=313 amount=3 -kerning first=193 second=274 amount=-10 -kerning first=78 second=286 amount=3 -kerning first=324 second=106 amount=-10 -kerning first=101 second=223 amount=4 -kerning first=197 second=224 amount=-10 -kerning first=302 second=339 amount=-2 -kerning first=325 second=276 amount=-6 -kerning first=102 second=363 amount=-7 -kerning first=348 second=213 amount=3 -kerning first=263 second=225 amount=1 -kerning first=368 second=340 amount=-2 -kerning first=371 second=120 amount=-1 -kerning first=329 second=226 amount=2 -kerning first=244 second=238 amount=-2 -kerning first=44 second=262 amount=-3 -kerning first=290 second=82 amount=-4 -kerning first=353 second=303 amount=1 -kerning first=356 second=83 amount=-6 -kerning first=8212 second=228 amount=4 -kerning first=376 second=240 amount=-3 -kerning first=291 second=252 amount=2 -kerning first=71 second=119 amount=2 -kerning first=72 second=289 amount=2 -kerning first=75 second=69 amount=-9 -kerning first=315 second=329 amount=-3 -kerning first=318 second=109 amount=-9 -kerning first=341 second=46 amount=-7 -kerning first=256 second=58 amount=-10 -kerning first=296 second=342 amount=-2 -kerning first=234 second=291 amount=2 -kerning first=119 second=303 amount=2 -kerning first=257 second=228 amount=2 -kerning first=277 second=355 amount=-1 -kerning first=192 second=367 amount=-13 -kerning first=218 second=84 amount=-6 -kerning first=323 second=229 amount=2 -kerning first=100 second=316 amount=-1 -kerning first=284 second=85 amount=4 -kerning first=304 second=242 amount=-2 -kerning first=84 second=109 amount=-6 -kerning first=262 second=318 amount=2 -kerning first=265 second=98 amount=-1 -kerning first=65 second=122 amount=-7 -kerning first=243 second=331 amount=-2 -kerning first=374 second=193 amount=-3 -kerning first=89 second=229 amount=-3 -kerning first=375 second=333 amount=3 -kerning first=70 second=242 amount=-4 -kerning first=205 second=357 amount=-2 -kerning first=356 second=346 amount=-6 -kerning first=74 second=192 amount=-8 -kerning first=232 second=244 amount=1 -kerning first=337 second=359 amount=-1 -kerning first=160 second=268 amount=-3 -kerning first=278 second=88 amount=3 -kerning first=193 second=100 amount=-10 -kerning first=298 second=245 amount=-2 -kerning first=75 second=332 amount=-8 -kerning first=98 second=269 amount=2 -kerning first=341 second=309 amount=-10 -kerning first=194 second=270 amount=-10 -kerning first=345 second=259 amount=-2 -kerning first=260 second=271 amount=-10 -kerning first=303 second=335 amount=1 -kerning first=103 second=359 amount=2 -kerning first=307 second=285 amount=2 -kerning first=222 second=297 amount=2 -kerning first=330 second=222 amount=-2 -kerning first=107 second=309 amount=-12 -kerning first=45 second=258 amount=-13 -kerning first=288 second=298 amount=3 -kerning first=68 second=195 amount=-8 -kerning first=311 second=235 amount=1 -kerning first=354 second=299 amount=-2 -kerning first=69 second=335 amount=-2 -kerning first=335 second=312 amount=-2 -kerning first=231 second=337 amount=-1 -kerning first=116 second=349 amount=1 -kerning first=362 second=199 amount=2 -kerning first=192 second=223 amount=-10 -kerning first=300 second=118 amount=-2 -kerning first=320 second=275 amount=-1 -kerning first=235 second=287 amount=2 -kerning first=258 second=224 amount=-10 -kerning first=193 second=363 amount=-13 -kerning first=216 second=300 amount=3 -kerning first=219 second=80 amount=-2 -kerning first=324 second=225 amount=2 -kerning first=367 second=289 amount=2 -kerning first=370 second=69 amount=-6 -kerning first=197 second=313 amount=-7 -kerning first=263 second=314 amount=-1 -kerning first=86 second=275 amount=3 -kerning first=270 second=44 amount=-3 -kerning first=372 second=379 amount=4 -kerning first=290 second=201 amount=-2 -kerning first=70 second=68 amount=-9 -kerning first=228 second=120 amount=-1 -kerning first=336 second=45 amount=3 -kerning first=356 second=202 amount=-8 -kerning first=376 second=329 amount=-6 -kerning first=71 second=238 amount=1 -kerning first=206 second=353 amount=-2 -kerning first=272 second=354 amount=-6 -kerning first=380 second=279 amount=1 -kerning first=295 second=291 amount=2 -kerning first=318 second=228 amount=-8 -kerning first=233 second=240 amount=2 -kerning first=118 second=252 amount=2 -kerning first=260 second=97 amount=-10 -kerning first=195 second=266 amount=-11 -kerning first=80 second=278 amount=-9 -kerning first=83 second=58 amount=-4 -kerning first=218 second=203 amount=-6 -kerning first=326 second=98 amount=-1 -kerning first=284 second=204 amount=3 -kerning first=304 second=331 amount=-2 -kerning first=84 second=228 amount=-10 -kerning first=307 second=111 amount=1 -kerning first=327 second=268 amount=3 -kerning first=104 second=355 amount=-1 -kerning first=370 second=332 amount=2 -kerning first=45 second=84 amount=-7 -kerning first=373 second=112 amount=2 -kerning first=200 second=356 amount=-5 -kerning first=266 second=357 amount=2 -kerning first=374 second=282 amount=-4 -kerning first=312 second=231 amount=1 -kerning first=89 second=318 amount=-2 -kerning first=355 second=295 amount=-1 -kerning first=358 second=75 amount=-7 -kerning first=378 second=232 amount=1 -kerning first=70 second=331 amount=-3 -kerning first=73 second=111 amount=-2 -kerning first=208 second=256 amount=-8 -kerning first=254 second=100 amount=5 -kerning first=359 second=245 amount=1 -kerning first=74 second=281 amount=-5 -kerning first=212 second=206 amount=3 -kerning first=320 second=101 amount=-1 -kerning first=232 second=333 amount=1 -kerning first=235 second=113 amount=2 -kerning first=340 second=258 amount=3 -kerning first=236 second=283 amount=1 -kerning first=121 second=295 amount=3 -kerning first=367 second=115 amount=1 -kerning first=279 second=347 amount=1 -kerning first=194 second=359 amount=-12 -kerning first=240 second=233 amount=1 -kerning first=368 second=285 amount=2 -kerning first=198 second=309 amount=-13 -kerning first=86 second=101 amount=3 -kerning first=221 second=246 amount=-4 -kerning first=84 second=8212 amount=-7 -kerning first=87 second=271 amount=2 -kerning first=353 second=248 amount=1 -kerning first=45 second=347 amount=4 -kerning first=373 second=375 amount=2 -kerning first=68 second=284 amount=4 -kerning first=229 second=116 amount=-1 -kerning first=272 second=210 amount=4 -kerning first=207 second=349 amount=-2 -kerning first=358 second=338 amount=-2 -kerning first=339 second=351 amount=1 -kerning first=119 second=248 amount=4 -kerning first=254 second=363 amount=2 -kerning first=362 second=288 amount=2 -kerning first=280 second=80 amount=-6 -kerning first=192 second=312 amount=-12 -kerning first=300 second=237 amount=-2 -kerning first=346 second=81 amount=3 -kerning first=258 second=313 amount=-7 -kerning first=196 second=262 amount=-11 -kerning first=324 second=314 amount=-1 -kerning first=242 second=106 amount=-13 -kerning first=347 second=251 amount=1 -kerning first=65 second=67 amount=-11 -kerning first=85 second=224 amount=2 -kerning first=105 second=351 amount=1 -kerning first=46 second=80 amount=-4 -kerning first=374 second=108 amount=-2 -kerning first=286 second=340 amount=-4 -kerning first=289 second=120 amount=-1 -kerning first=309 second=277 amount=1 -kerning first=224 second=289 amount=2 -kerning first=8211 second=266 amount=5 -kerning first=267 second=353 amount=1 -kerning first=208 second=82 amount=-3 -kerning first=356 second=291 amount=-10 -kerning first=271 second=303 amount=-3 -kerning first=294 second=240 amount=2 -kerning first=340 second=84 amount=-8 -kerning first=160 second=213 amount=-3 -kerning first=193 second=45 amount=-12 -kerning first=75 second=277 amount=-10 -kerning first=341 second=254 amount=-1 -kerning first=121 second=121 amount=3 -kerning first=256 second=266 amount=-11 -kerning first=59 second=70 amount=-4 -kerning first=302 second=110 amount=-2 -kerning first=237 second=279 amount=1 -kerning first=260 second=216 amount=-11 -kerning first=195 second=355 amount=-12 -kerning first=80 second=367 amount=1 -kerning first=241 second=229 amount=2 -kerning first=346 second=344 amount=-3 -kerning first=284 second=293 amount=2 -kerning first=307 second=230 amount=2 -kerning first=87 second=97 amount=2 -kerning first=242 second=369 amount=-2 -kerning first=268 second=86 amount=4 -kerning first=45 second=203 amount=-7 -kerning first=373 second=231 amount=4 -kerning first=65 second=330 amount=-15 -kerning first=88 second=267 amount=-2 -kerning first=354 second=244 amount=-7 -kerning first=374 second=371 amount=-5 -kerning first=69 second=280 amount=-5 -kerning first=358 second=194 amount=-13 -kerning first=313 second=8211 amount=-5 -kerning first=379 second=8212 amount=-6 -kerning first=196 second=88 amount=-9 -kerning first=301 second=233 amount=1 -kerning first=101 second=257 amount=2 -kerning first=259 second=309 amount=-10 -kerning first=262 second=89 amount=4 -kerning first=282 second=246 amount=-2 -kerning first=197 second=258 amount=-7 -kerning first=302 second=373 amount=-2 -kerning first=79 second=8211 amount=3 -kerning first=240 second=322 amount=-1 -kerning first=243 second=102 amount=-2 -kerning first=263 second=259 amount=1 -kerning first=201 second=208 amount=-5 -kerning first=309 second=103 amount=2 -kerning first=221 second=335 amount=-4 -kerning first=224 second=115 amount=1 -kerning first=352 second=197 amount=-9 -kerning first=290 second=116 amount=2 -kerning first=225 second=285 amount=2 -kerning first=353 second=337 amount=1 -kerning first=356 second=117 amount=-6 -kerning first=8212 second=262 amount=5 -kerning first=376 second=274 amount=-4 -kerning first=294 second=66 amount=-6 -kerning first=314 second=223 amount=3 -kerning first=357 second=287 amount=-8 -kerning first=360 second=67 amount=2 -kerning first=75 second=103 amount=-7 -kerning first=338 second=300 amount=-1 -kerning first=214 second=198 amount=-7 -kerning first=119 second=337 amount=4 -kerning first=362 second=377 amount=4 -kerning first=195 second=211 amount=-11 -kerning first=300 second=326 amount=-2 -kerning first=303 second=106 amount=-11 -kerning first=80 second=223 amount=3 -kerning first=346 second=200 amount=-3 -kerning first=369 second=107 amount=-1 -kerning first=281 second=339 amount=1 -kerning first=196 second=351 amount=-11 -kerning first=222 second=68 amount=-9 -kerning first=327 second=213 amount=3 -kerning first=285 second=289 amount=5 -kerning first=328 second=353 amount=1 -kerning first=243 second=365 amount=-2 -kerning first=354 second=70 amount=-5 -kerning first=266 second=302 amount=3 -kerning first=374 second=227 amount=-3 -kerning first=46 second=199 amount=-3 -kerning first=289 second=239 amount=3 -kerning first=69 second=106 amount=-10 -kerning first=204 second=251 amount=-2 -kerning first=89 second=263 amount=-4 -kerning first=355 second=240 amount=2 -kerning first=375 second=367 amount=3 -kerning first=70 second=276 amount=-9 -kerning first=208 second=201 amount=-6 -kerning first=231 second=108 amount=-1 -kerning first=116 second=120 amount=2 -kerning first=254 second=45 amount=3 -kerning first=274 second=202 amount=-5 -kerning first=74 second=226 amount=-5 -kerning first=160 second=302 amount=-4 -kerning first=298 second=279 amount=-2 -kerning first=98 second=303 amount=2 -kerning first=236 second=228 amount=2 -kerning first=121 second=240 amount=7 -kerning first=256 second=355 amount=-12 -kerning first=364 second=280 amount=-6 -kerning first=194 second=304 amount=-7 -kerning first=197 second=84 amount=-20 -kerning first=102 second=253 amount=-7 -kerning first=345 second=293 amount=-1 -kerning first=283 second=242 amount=1 -kerning first=198 second=254 amount=-2 -kerning first=83 second=266 amount=3 -kerning first=218 second=381 amount=4 -kerning first=241 second=318 amount=-1 -kerning first=244 second=98 amount=-1 -kerning first=349 second=243 amount=1 -kerning first=87 second=216 amount=2 -kerning first=222 second=331 amount=2 -kerning first=8212 second=88 amount=-6 -kerning first=268 second=205 amount=3 -kerning first=373 second=320 amount=2 -kerning first=376 second=100 amount=-3 -kerning first=291 second=112 amount=2 -kerning first=68 second=229 amount=2 -kerning first=203 second=344 amount=-6 -kerning first=88 second=356 amount=-2 -kerning first=311 second=269 amount=1 -kerning first=334 second=206 amount=3 -kerning first=111 second=293 amount=-1 -kerning first=354 second=333 amount=-7 -kerning first=357 second=113 amount=-8 -kerning first=292 second=282 amount=-6 -kerning first=69 second=369 amount=-2 -kerning first=230 second=231 amount=1 -kerning first=115 second=243 amount=1 -kerning first=358 second=283 amount=-7 -kerning first=273 second=295 amount=-1 -kerning first=296 second=232 amount=-2 -kerning first=342 second=76 amount=3 -kerning first=277 second=245 amount=1 -kerning first=192 second=257 amount=-10 -kerning first=320 second=309 amount=-12 -kerning first=343 second=246 amount=-2 -kerning first=258 second=258 amount=-7 -kerning first=58 second=282 amount=-4 -kerning first=196 second=207 amount=-7 -kerning first=304 second=102 amount=-3 -kerning first=324 second=259 amount=2 -kerning first=239 second=271 amount=2 -kerning first=262 second=208 amount=-2 -kerning first=370 second=103 amount=2 -kerning first=282 second=335 amount=-2 -kerning first=285 second=115 amount=2 -kerning first=197 second=347 amount=-11 -kerning first=82 second=359 amount=-2 -kerning first=348 second=336 amount=3 -kerning first=351 second=116 amount=1 -kerning first=371 second=273 amount=2 -kerning first=86 second=309 amount=-9 -kerning first=329 second=349 amount=1 -kerning first=244 second=361 amount=-2 -kerning first=352 second=286 amount=3 -kerning first=8211 second=211 amount=5 -kerning first=375 second=223 amount=5 -kerning first=67 second=322 amount=2 -kerning first=248 second=311 amount=-1 -kerning first=356 second=236 amount=-2 -kerning first=271 second=248 amount=-9 -kerning first=376 second=363 amount=-5 -kerning first=8212 second=351 amount=4 -kerning first=291 second=375 amount=2 -kerning first=71 second=272 amount=-2 -kerning first=232 second=104 amount=-1 -kerning first=337 second=249 amount=-2 -kerning first=117 second=116 amount=-1 -kerning first=298 second=105 amount=-2 -kerning first=75 second=222 amount=-7 -kerning first=256 second=211 amount=-11 -kerning first=237 second=224 amount=2 -kerning first=257 second=351 amount=1 -kerning first=195 second=300 amount=-7 -kerning first=303 second=225 amount=2 -kerning first=80 second=312 amount=1 -kerning first=103 second=249 amount=2 -kerning first=369 second=226 amount=2 -kerning first=304 second=365 amount=-2 -kerning first=84 second=262 amount=-2 -kerning first=219 second=377 amount=4 -kerning first=330 second=82 amount=-2 -kerning first=242 second=314 amount=-1 -kerning first=45 second=118 amount=2 -kerning first=65 second=275 amount=-12 -kerning first=203 second=200 amount=-5 -kerning first=88 second=212 amount=-4 -kerning first=226 second=107 amount=-1 -kerning first=108 second=339 amount=1 -kerning first=111 second=119 amount=-2 -kerning first=374 second=316 amount=-2 -kerning first=46 second=288 amount=-3 -kerning first=289 second=328 amount=2 -kerning first=204 second=340 amount=-2 -kerning first=207 second=120 amount=-1 -kerning first=312 second=265 amount=1 -kerning first=89 second=352 amount=-4 -kerning first=315 second=45 amount=-5 -kerning first=112 second=289 amount=5 -kerning first=355 second=329 amount=-1 -kerning first=358 second=109 amount=-6 -kerning first=70 second=365 amount=-3 -kerning first=208 second=290 amount=4 -kerning first=231 second=227 amount=1 -kerning first=359 second=279 amount=1 -kerning first=192 second=83 amount=-8 -kerning first=297 second=228 amount=2 -kerning first=258 second=84 amount=-20 -kerning first=363 second=229 amount=2 -kerning first=81 second=45 amount=3 -kerning first=239 second=97 amount=2 -kerning first=259 second=254 amount=-1 -kerning first=59 second=278 amount=-4 -kerning first=197 second=203 amount=-10 -kerning first=302 second=318 amount=-2 -kerning first=240 second=267 amount=1 -kerning first=348 second=192 amount=-9 -kerning first=221 second=280 amount=-4 -kerning first=264 second=344 amount=-4 -kerning first=287 second=281 amount=2 -kerning first=90 second=85 amount=3 -kerning first=225 second=230 amount=1 -kerning first=245 second=357 amount=-1 -kerning first=8212 second=207 amount=-5 -kerning first=45 second=381 amount=-4 -kerning first=291 second=231 amount=2 -kerning first=71 second=98 amount=2 -kerning first=206 second=243 amount=-2 -kerning first=357 second=232 amount=-9 -kerning first=230 second=320 amount=-1 -kerning first=233 second=100 amount=2 -kerning first=118 second=112 amount=2 -kerning first=342 second=195 amount=3 -kerning first=192 second=346 amount=-8 -kerning first=77 second=358 amount=-7 -kerning first=323 second=208 amount=-6 -kerning first=100 second=295 amount=-1 -kerning first=343 second=335 amount=-2 -kerning first=258 second=347 amount=-11 -kerning first=366 second=272 amount=-6 -kerning first=196 second=296 amount=-7 -kerning first=84 second=88 amount=-3 -kerning first=347 second=285 amount=3 -kerning first=350 second=65 amount=-9 -kerning first=370 second=222 amount=-2 -kerning first=285 second=234 amount=2 -kerning first=65 second=101 amount=-12 -kerning first=200 second=246 amount=-2 -kerning first=351 second=235 amount=1 -kerning first=66 second=271 amount=3 -kerning first=89 second=208 amount=-4 -kerning first=227 second=103 amount=2 -kerning first=112 second=115 amount=2 -kerning first=8211 second=300 amount=-5 -kerning first=270 second=197 amount=-8 -kerning first=375 second=312 amount=3 -kerning first=90 second=348 amount=2 -kerning first=228 second=273 amount=2 -kerning first=336 second=198 amount=-7 -kerning first=113 second=285 amount=2 -kerning first=356 second=325 amount=-1 -kerning first=271 second=337 amount=-9 -kerning first=274 second=117 amount=-2 -kerning first=294 second=274 amount=-6 -kerning first=71 second=361 amount=2 -kerning first=209 second=286 amount=3 -kerning first=232 second=223 amount=4 -kerning first=275 second=287 amount=2 -kerning first=193 second=79 amount=-11 -kerning first=75 second=311 amount=-7 -kerning first=318 second=351 amount=-8 -kerning first=98 second=248 amount=2 -kerning first=118 second=375 amount=2 -kerning first=256 second=300 amount=-7 -kerning first=364 second=225 amount=2 -kerning first=325 second=81 amount=3 -kerning first=198 second=199 amount=-7 -kerning first=83 second=211 amount=3 -kerning first=221 second=106 amount=-7 -kerning first=264 second=200 amount=-2 -kerning first=44 second=67 amount=-3 -kerning first=287 second=107 amount=2 -kerning first=202 second=119 amount=-2 -kerning first=84 second=351 amount=-10 -kerning first=222 second=276 amount=-9 -kerning first=330 second=201 amount=-6 -kerning first=353 second=108 amount=1 -kerning first=45 second=237 amount=2 -kerning first=373 second=265 amount=4 -kerning first=226 second=226 amount=2 -kerning first=111 second=238 amount=-2 -kerning first=354 second=278 amount=-8 -kerning first=272 second=70 amount=-5 -kerning first=292 second=227 amount=2 -kerning first=207 second=239 amount=-2 -kerning first=358 second=228 amount=-10 -kerning first=273 second=240 amount=2 -kerning first=231 second=316 amount=-1 -kerning first=119 second=108 amount=2 -kerning first=254 second=253 amount=2 -kerning first=57 second=57 amount=2 -kerning first=192 second=202 amount=-10 -kerning first=77 second=214 amount=3 -kerning first=320 second=254 amount=-2 -kerning first=258 second=203 amount=-10 -kerning first=363 second=318 amount=-1 -kerning first=193 second=342 amount=-17 -kerning first=196 second=122 amount=-7 -kerning first=78 second=354 amount=-6 -kerning first=301 second=267 amount=1 -kerning first=101 second=291 amount=2 -kerning first=347 second=111 amount=1 -kerning first=282 second=280 amount=-5 -kerning first=85 second=84 amount=-6 -kerning first=220 second=229 amount=2 -kerning first=325 second=344 amount=-2 -kerning first=263 second=293 amount=-1 -kerning first=266 second=73 amount=3 -kerning first=66 second=97 amount=3 -kerning first=201 second=242 amount=-2 -kerning first=86 second=254 amount=3 -kerning first=221 second=369 amount=-5 -kerning first=267 second=243 amount=-1 -kerning first=372 second=358 amount=-6 -kerning first=44 second=330 amount=-5 -kerning first=113 second=111 amount=1 -kerning first=353 second=371 amount=1 -kerning first=8212 second=296 amount=-5 -kerning first=291 second=320 amount=2 -kerning first=294 second=100 amount=2 -kerning first=114 second=281 amount=-2 -kerning first=160 second=73 amount=-4 -kerning first=275 second=113 amount=2 -kerning first=118 second=231 amount=4 -kerning first=358 second=8212 amount=-7 -kerning first=361 second=271 amount=2 -kerning first=194 second=75 amount=-5 -kerning first=99 second=244 amount=-1 -kerning first=234 second=359 amount=-1 -kerning first=119 second=371 amount=2 -kerning first=195 second=245 amount=-12 -kerning first=84 second=207 amount=-2 -kerning first=200 second=335 amount=-2 -kerning first=351 second=324 amount=1 -kerning first=354 second=104 amount=-3 -kerning first=269 second=116 amount=-1 -kerning first=289 second=273 amount=5 -kerning first=335 second=117 amount=-2 -kerning first=112 second=234 amount=2 -kerning first=270 second=286 amount=4 -kerning first=293 second=223 amount=3 -kerning first=359 second=224 amount=2 -kerning first=74 second=260 amount=-8 -kerning first=120 second=104 amount=-1 -kerning first=160 second=336 amount=-3 -kerning first=193 second=198 amount=-6 -kerning first=78 second=210 amount=3 -kerning first=98 second=337 amount=2 -kerning first=282 second=106 amount=-10 -kerning first=194 second=338 amount=-11 -kerning first=197 second=118 amount=-13 -kerning first=302 second=263 amount=-2 -kerning first=325 second=200 amount=-6 -kerning first=102 second=287 amount=-6 -kerning first=263 second=119 amount=-1 -kerning first=368 second=264 amount=2 -kerning first=198 second=288 amount=-7 -kerning first=201 second=68 amount=-5 -kerning first=221 second=225 amount=-3 -kerning first=329 second=120 amount=-1 -kerning first=349 second=277 amount=1 -kerning first=287 second=226 amount=5 -kerning first=307 second=353 amount=1 -kerning first=222 second=365 amount=2 -kerning first=330 second=290 amount=3 -kerning first=353 second=227 amount=3 -kerning first=45 second=326 amount=2 -kerning first=114 second=107 amount=-1 -kerning first=354 second=367 amount=-6 -kerning first=207 second=328 amount=-2 -kerning first=230 second=265 amount=1 -kerning first=115 second=277 amount=1 -kerning first=361 second=97 amount=2 -kerning first=273 second=329 amount=-1 -kerning first=276 second=109 amount=-2 -kerning first=73 second=353 amount=-2 -kerning first=214 second=58 amount=-5 -kerning first=119 second=227 amount=5 -kerning first=277 second=279 amount=1 -kerning first=192 second=291 amount=-10 -kerning first=195 second=71 amount=-11 -kerning first=77 second=303 amount=1 -kerning first=100 second=240 amount=2 -kerning first=235 second=355 amount=-1 -kerning first=281 second=229 amount=2 -kerning first=324 second=293 amount=-1 -kerning first=347 second=230 amount=2 -kerning first=367 second=357 amount=-1 -kerning first=282 second=369 amount=-2 -kerning first=65 second=46 amount=-10 -kerning first=197 second=381 amount=-7 -kerning first=85 second=203 amount=-6 -kerning first=289 second=99 amount=2 -kerning first=201 second=331 amount=-2 -kerning first=204 second=111 amount=-2 -kerning first=86 second=343 amount=3 -kerning first=355 second=100 amount=2 -kerning first=8211 second=245 amount=4 -kerning first=375 second=257 amount=7 -kerning first=67 second=356 amount=-2 -kerning first=205 second=281 amount=-2 -kerning first=356 second=270 amount=-8 -kerning first=160 second=192 amount=-3 -kerning first=275 second=232 amount=1 -kerning first=295 second=359 amount=-1 -kerning first=75 second=256 amount=-3 -kerning first=341 second=233 amount=-2 -kerning first=118 second=320 amount=2 -kerning first=121 second=100 amount=7 -kerning first=256 second=245 amount=-12 -kerning first=194 second=194 amount=-7 -kerning first=79 second=206 amount=3 -kerning first=99 second=333 amount=-1 -kerning first=102 second=113 amount=-6 -kerning first=119 second=8211 amount=4 -kerning first=260 second=195 amount=-7 -kerning first=368 second=90 amount=4 -kerning first=195 second=334 amount=-11 -kerning first=198 second=114 amount=-7 -kerning first=303 second=259 amount=2 -kerning first=218 second=271 amount=2 -kerning first=103 second=283 amount=2 -kerning first=349 second=103 amount=3 -kerning first=284 second=272 amount=-2 -kerning first=84 second=296 amount=-2 -kerning first=327 second=336 amount=3 -kerning first=107 second=233 amount=1 -kerning first=265 second=285 amount=1 -kerning first=68 second=89 amount=2 -kerning first=88 second=246 amount=-2 -kerning first=354 second=223 amount=1 -kerning first=374 second=350 amount=-4 -kerning first=227 second=311 amount=-1 -kerning first=115 second=103 amount=3 -kerning first=116 second=273 amount=2 -kerning first=192 second=117 amount=-13 -kerning first=343 second=106 amount=-10 -kerning first=120 second=223 amount=1 -kerning first=258 second=118 amount=-13 -kerning first=193 second=287 amount=-10 -kerning first=196 second=67 amount=-11 -kerning first=236 second=351 amount=1 -kerning first=121 second=363 amount=3 -kerning first=262 second=68 amount=-2 -kerning first=325 second=289 amount=2 -kerning first=198 second=377 amount=-3 -kerning first=86 second=199 amount=5 -kerning first=221 second=314 amount=-2 -kerning first=109 second=106 amount=-10 -kerning first=244 second=251 amount=-2 -kerning first=8211 second=71 amount=5 -kerning first=205 second=107 amount=-2 -kerning first=330 second=379 amount=4 -kerning first=353 second=316 amount=1 -kerning first=8212 second=241 amount=2 -kerning first=291 second=265 amount=2 -kerning first=206 second=277 amount=-2 -kerning first=337 second=109 amount=-2 -kerning first=114 second=226 amount=-2 -kerning first=272 second=278 amount=-6 -kerning first=75 second=82 amount=-7 -kerning first=315 second=342 amount=-4 -kerning first=318 second=122 amount=-10 -kerning first=341 second=59 amount=-7 -kerning first=256 second=71 amount=-11 -kerning first=296 second=355 amount=-2 -kerning first=119 second=316 amount=2 -kerning first=362 second=356 amount=-6 -kerning first=80 second=202 amount=-9 -kerning first=218 second=97 amount=2 -kerning first=100 second=329 amount=-1 -kerning first=103 second=109 amount=2 -kerning first=258 second=381 amount=-7 -kerning first=281 second=318 amount=-1 -kerning first=196 second=330 amount=-15 -kerning first=284 second=98 amount=2 -kerning first=84 second=122 amount=-10 -kerning first=265 second=111 amount=-1 -kerning first=200 second=280 amount=-5 -kerning first=108 second=229 amount=2 -kerning first=351 second=269 amount=1 -kerning first=89 second=242 amount=-4 -kerning first=224 second=357 amount=-1 -kerning first=8211 second=334 amount=5 -kerning first=290 second=358 amount=-2 -kerning first=356 second=359 amount=-3 -kerning first=271 second=371 amount=-9 -kerning first=54 second=48 amount=2 -kerning first=232 second=257 amount=2 -kerning first=193 second=113 amount=-10 -kerning first=75 second=345 amount=-9 -kerning first=210 second=8211 amount=3 -kerning first=341 second=322 amount=-1 -kerning first=256 second=334 amount=-11 -kerning first=364 second=259 amount=2 -kerning first=279 second=271 amount=2 -kerning first=194 second=283 amount=-12 -kerning first=102 second=232 amount=-8 -kerning first=237 second=347 amount=1 -kerning first=260 second=284 amount=-11 -kerning first=198 second=233 amount=-5 -kerning first=326 second=285 amount=2 -kerning first=369 second=349 amount=1 -kerning first=8212 second=67 amount=5 -kerning first=45 second=271 amount=4 -kerning first=48 second=51 amount=2 -kerning first=373 second=299 amount=2 -kerning first=376 second=79 amount=-1 -kerning first=68 second=208 amount=-6 -kerning first=311 second=248 amount=1 -kerning first=88 second=335 amount=-2 -kerning first=354 second=312 amount=-3 -kerning first=358 second=262 amount=-2 -kerning first=339 second=275 amount=1 -kerning first=254 second=287 amount=5 -kerning first=362 second=212 amount=2 -kerning first=277 second=224 amount=2 -kerning first=297 second=351 amount=1 -kerning first=323 second=68 amount=-6 -kerning first=343 second=225 amount=-2 -kerning first=120 second=312 amount=-1 -kerning first=81 second=198 amount=-7 -kerning first=370 second=82 amount=-2 -kerning first=197 second=326 amount=-13 -kerning first=200 second=106 amount=-10 -kerning first=105 second=275 amount=1 -kerning first=266 second=107 amount=2 -kerning first=201 second=276 amount=-5 -kerning first=86 second=288 amount=5 -kerning first=89 second=68 amount=-4 -kerning first=109 second=225 amount=2 -kerning first=225 second=353 amount=1 -kerning first=336 second=58 amount=-5 -kerning first=8212 second=330 amount=-2 -kerning first=271 second=227 amount=-8 -kerning first=376 second=342 amount=-1 -kerning first=298 second=84 amount=-2 -kerning first=75 second=201 amount=-9 -kerning first=98 second=108 amount=3 -kerning first=118 second=265 amount=4 -kerning first=121 second=45 amount=4 -kerning first=364 second=85 amount=2 -kerning first=279 second=97 amount=2 -kerning first=194 second=109 amount=-13 -kerning first=319 second=381 amount=2 -kerning first=342 second=318 amount=-2 -kerning first=345 second=98 amount=-1 -kerning first=260 second=110 amount=-13 -kerning first=195 second=279 amount=-12 -kerning first=83 second=71 amount=3 -kerning first=103 second=228 amount=5 -kerning first=346 second=268 amount=3 -kerning first=304 second=344 amount=-2 -kerning first=219 second=356 amount=-6 -kerning first=242 second=293 amount=-1 -kerning first=45 second=97 amount=4 -kerning first=285 second=357 amount=2 -kerning first=65 second=254 amount=-3 -kerning first=200 second=369 amount=-2 -kerning first=85 second=381 amount=4 -kerning first=111 second=98 amount=-1 -kerning first=289 second=307 amount=3 -kerning first=207 second=99 amount=-2 -kerning first=312 second=244 amount=1 -kerning first=89 second=331 amount=-5 -kerning first=358 second=88 amount=-3 -kerning first=273 second=100 amount=2 -kerning first=70 second=344 amount=-7 -kerning first=339 second=101 amount=1 -kerning first=254 second=113 amount=5 -kerning first=274 second=270 amount=-5 -kerning first=337 second=8212 amount=3 -kerning first=193 second=232 amount=-12 -kerning first=298 second=347 amount=-2 -kerning first=98 second=371 amount=2 -kerning first=302 second=297 amount=-2 -kerning first=82 second=194 amount=3 -kerning first=217 second=309 amount=-12 -kerning first=105 second=101 amount=1 -kerning first=240 second=246 amount=1 -kerning first=260 second=373 amount=-13 -kerning first=198 second=322 amount=-2 -kerning first=83 second=334 amount=3 -kerning first=86 second=114 amount=3 -kerning first=221 second=259 amount=-3 -kerning first=103 second=8212 amount=4 -kerning first=106 second=271 amount=2 -kerning first=349 second=311 amount=1 -kerning first=264 second=323 amount=4 -kerning first=267 second=103 amount=1 -kerning first=202 second=272 amount=-5 -kerning first=87 second=284 amount=2 -kerning first=333 second=104 amount=-1 -kerning first=248 second=116 amount=-1 -kerning first=45 second=360 amount=5 -kerning first=206 second=222 amount=-2 -kerning first=311 second=337 amount=1 -kerning first=226 second=349 amount=1 -kerning first=111 second=361 amount=-2 -kerning first=272 second=223 amount=2 -kerning first=115 second=311 amount=1 -kerning first=358 second=351 amount=-10 -kerning first=99 second=104 amount=-1 -kerning first=119 second=261 amount=5 -kerning first=192 second=325 amount=-15 -kerning first=300 second=250 amount=-2 -kerning first=80 second=117 amount=1 -kerning first=343 second=314 amount=-1 -kerning first=258 second=326 amount=-13 -kerning first=261 second=106 amount=-10 -kerning first=281 second=263 amount=1 -kerning first=196 second=275 amount=-12 -kerning first=84 second=67 amount=-2 -kerning first=104 second=224 amount=2 -kerning first=242 second=119 amount=-2 -kerning first=350 second=44 amount=-4 -kerning first=262 second=276 amount=-2 -kerning first=370 second=201 amount=-6 -kerning first=65 second=80 amount=-17 -kerning first=374 second=121 amount=-5 -kerning first=201 second=365 amount=-2 -kerning first=109 second=314 amount=-1 -kerning first=352 second=354 amount=-3 -kerning first=8211 second=279 amount=4 -kerning first=375 second=291 amount=7 -kerning first=70 second=200 amount=-9 -kerning first=333 second=367 amount=-2 -kerning first=356 second=304 amount=-2 -kerning first=71 second=340 amount=-4 -kerning first=212 second=45 amount=3 -kerning first=193 second=58 amount=-10 -kerning first=75 second=290 amount=-8 -kerning first=78 second=70 amount=-2 -kerning first=98 second=227 amount=5 -kerning first=341 second=267 amount=-2 -kerning first=256 second=279 amount=-12 -kerning first=194 second=228 amount=-10 -kerning first=260 second=229 amount=-10 -kerning first=280 second=356 amount=-5 -kerning first=326 second=230 amount=1 -kerning first=106 second=97 amount=2 -kerning first=199 second=318 amount=2 -kerning first=307 second=243 amount=1 -kerning first=84 second=330 amount=-1 -kerning first=107 second=267 amount=1 -kerning first=45 second=216 amount=5 -kerning first=373 second=244 amount=4 -kerning first=65 second=343 amount=-12 -kerning first=88 second=280 amount=-2 -kerning first=331 second=320 amount=-1 -kerning first=354 second=257 amount=-10 -kerning first=46 second=356 amount=-10 -kerning first=312 second=333 amount=1 -kerning first=332 second=8211 amount=3 -kerning first=112 second=357 amount=3 -kerning first=358 second=207 amount=-2 -kerning first=73 second=243 amount=-2 -kerning first=208 second=358 amount=-6 -kerning first=316 second=283 amount=1 -kerning first=231 second=295 amount=-1 -kerning first=254 second=232 amount=2 -kerning first=359 second=347 amount=1 -kerning first=320 second=233 amount=-1 -kerning first=97 second=320 amount=-1 -kerning first=100 second=100 amount=2 -kerning first=120 second=257 amount=2 -kerning first=278 second=309 amount=-10 -kerning first=196 second=101 amount=-12 -kerning first=301 second=246 amount=1 -kerning first=98 second=8211 amount=4 -kerning first=259 second=322 amount=-1 -kerning first=194 second=8212 amount=-12 -kerning first=197 second=271 amount=-10 -kerning first=220 second=208 amount=-6 -kerning first=328 second=103 amount=2 -kerning first=240 second=335 amount=1 -kerning first=348 second=260 amount=-9 -kerning first=86 second=233 amount=3 -kerning first=221 second=348 amount=-4 -kerning first=329 second=273 amount=2 -kerning first=352 second=210 amount=3 -kerning first=8211 second=105 amount=2 -kerning first=375 second=117 amount=3 -kerning first=44 second=309 amount=-11 -kerning first=287 second=349 amount=2 -kerning first=202 second=361 amount=-2 -kerning first=333 second=223 amount=2 -kerning first=8212 second=275 amount=4 -kerning first=376 second=287 amount=-3 -kerning first=291 second=299 amount=3 -kerning first=206 second=311 amount=-2 -kerning first=360 second=80 amount=-2 -kerning first=75 second=116 amount=-7 -kerning first=99 second=223 amount=2 -kerning first=195 second=224 amount=-10 -kerning first=300 second=339 amount=-2 -kerning first=80 second=236 amount=1 -kerning first=323 second=276 amount=-6 -kerning first=346 second=213 amount=3 -kerning first=261 second=225 amount=2 -kerning first=366 second=340 amount=-2 -kerning first=369 second=120 amount=-1 -kerning first=222 second=81 amount=4 -kerning first=327 second=226 amount=2 -kerning first=242 second=238 amount=-2 -kerning first=370 second=290 amount=2 -kerning first=65 second=199 amount=-11 -kerning first=88 second=106 amount=-10 -kerning first=108 second=263 amount=1 -kerning first=351 second=303 amount=1 -kerning first=354 second=83 amount=-6 -kerning first=374 second=240 amount=-3 -kerning first=46 second=212 amount=-3 -kerning first=289 second=252 amount=2 -kerning first=66 second=339 amount=2 -kerning first=69 second=119 amount=-2 -kerning first=89 second=276 amount=-4 -kerning first=8211 second=368 amount=5 -kerning first=70 second=289 amount=-3 -kerning first=208 second=214 amount=4 -kerning first=313 second=329 amount=-3 -kerning first=231 second=121 amount=-1 -kerning first=294 second=342 amount=-2 -kerning first=74 second=239 amount=-1 -kerning first=209 second=354 amount=-6 -kerning first=232 second=291 amount=2 -kerning first=275 second=355 amount=-1 -kerning first=213 second=304 amount=3 -kerning first=98 second=316 amount=3 -kerning first=121 second=253 amount=3 -kerning first=59 second=202 amount=-4 -kerning first=197 second=97 amount=-10 -kerning first=302 second=242 amount=-2 -kerning first=260 second=318 amount=-12 -kerning first=263 second=98 amount=-1 -kerning first=198 second=267 amount=-5 -kerning first=87 second=229 amount=2 -kerning first=222 second=344 amount=-7 -kerning first=8212 second=101 amount=4 -kerning first=373 second=333 amount=4 -kerning first=376 second=113 amount=-3 -kerning first=88 second=369 amount=-3 -kerning first=354 second=346 amount=-6 -kerning first=207 second=307 amount=-2 -kerning first=230 second=244 amount=1 -kerning first=335 second=359 amount=-1 -kerning first=358 second=296 amount=-2 -kerning first=276 second=88 amount=3 -kerning first=296 second=245 amount=-2 -kerning first=339 second=309 amount=-13 -kerning first=192 second=270 amount=-10 -kerning first=320 second=322 amount=-2 -kerning first=343 second=259 amount=-2 -kerning first=258 second=271 amount=-10 -kerning first=301 second=335 amount=1 -kerning first=304 second=115 amount=-2 -kerning first=101 second=359 amount=-1 -kerning first=305 second=285 amount=2 -kerning first=105 second=309 amount=-11 -kerning first=286 second=298 amount=3 -kerning first=66 second=195 amount=-5 -kerning first=309 second=235 amount=1 -kerning first=86 second=322 amount=3 -kerning first=89 second=102 amount=-4 -kerning first=109 second=259 amount=2 -kerning first=8211 second=224 amount=4 -kerning first=375 second=236 amount=3 -kerning first=70 second=115 amount=-4 -kerning first=333 second=312 amount=-2 -kerning first=248 second=324 amount=-2 -kerning first=8212 second=364 amount=5 -kerning first=71 second=285 amount=5 -kerning first=74 second=65 amount=-8 -kerning first=209 second=210 amount=3 -kerning first=114 second=349 amount=-2 -kerning first=360 second=199 amount=2 -kerning first=298 second=118 amount=-2 -kerning first=75 second=235 amount=-10 -kerning first=318 second=275 amount=-9 -kerning first=233 second=287 amount=2 -kerning first=118 second=299 amount=2 -kerning first=256 second=224 amount=-10 -kerning first=214 second=300 amount=3 -kerning first=217 second=80 amount=-2 -kerning first=365 second=289 amount=2 -kerning first=368 second=69 amount=-6 -kerning first=195 second=313 amount=-7 -kerning first=261 second=314 amount=-1 -kerning first=84 second=275 amount=-7 -kerning first=222 second=200 amount=-9 -kerning first=245 second=107 amount=-1 -kerning first=370 second=379 amount=4 -kerning first=65 second=288 amount=-11 -kerning first=68 second=68 amount=-6 -kerning first=226 second=120 amount=-1 -kerning first=334 second=45 amount=3 -kerning first=354 second=202 amount=-8 -kerning first=374 second=329 amount=-6 -kerning first=204 second=353 amount=-2 -kerning first=89 second=365 amount=-5 -kerning first=358 second=122 amount=-10 -kerning first=270 second=354 amount=-6 -kerning first=378 second=279 amount=1 -kerning first=70 second=378 amount=-6 -kerning first=316 second=228 amount=2 -kerning first=231 second=240 amount=1 -kerning first=74 second=328 amount=-4 -kerning first=258 second=97 amount=-10 -kerning first=193 second=266 amount=-11 -kerning first=196 second=46 amount=-10 -kerning first=78 second=278 amount=-6 -kerning first=81 second=58 amount=-5 -kerning first=324 second=98 amount=-1 -kerning first=197 second=216 amount=-11 -kerning first=302 second=331 amount=-2 -kerning first=325 second=268 amount=3 -kerning first=368 second=332 amount=2 -kerning first=198 second=356 amount=-2 -kerning first=221 second=293 amount=-2 -kerning first=264 second=357 amount=2 -kerning first=372 second=282 amount=-6 -kerning first=330 second=358 amount=-6 -kerning first=353 second=295 amount=1 -kerning first=356 second=75 amount=-7 -kerning first=291 second=244 amount=2 -kerning first=71 second=111 amount=3 -kerning first=357 second=245 amount=-9 -kerning first=272 second=257 amount=2 -kerning first=210 second=206 amount=3 -kerning first=318 second=101 amount=-9 -kerning first=230 second=333 amount=1 -kerning first=233 second=113 amount=2 -kerning first=234 second=283 amount=1 -kerning first=119 second=295 amount=2 -kerning first=365 second=115 amount=1 -kerning first=277 second=347 amount=1 -kerning first=192 second=359 amount=-12 -kerning first=366 second=285 amount=2 -kerning first=199 second=89 amount=4 -kerning first=304 second=234 amount=-2 -kerning first=84 second=101 amount=-7 -kerning first=65 second=114 amount=-12 -kerning first=85 second=271 amount=2 -kerning first=328 second=311 amount=-1 -kerning first=351 second=248 amount=1 -kerning first=66 second=284 amount=3 -kerning first=227 second=116 amount=-1 -kerning first=8211 second=313 amount=3 -kerning first=270 second=210 amount=4 -kerning first=70 second=234 amount=-4 -kerning first=205 second=349 amount=-2 -kerning first=356 second=338 amount=-2 -kerning first=294 second=287 amount=2 -kerning first=360 second=288 amount=2 -kerning first=160 second=260 amount=-3 -kerning first=278 second=80 amount=-6 -kerning first=298 second=237 amount=-2 -kerning first=75 second=324 amount=-8 -kerning first=256 second=313 amount=-7 -kerning first=194 second=262 amount=-11 -kerning first=240 second=106 amount=-10 -kerning first=198 second=212 amount=-7 -kerning first=221 second=119 amount=-4 -kerning first=103 second=351 amount=2 -kerning first=44 second=80 amount=-4 -kerning first=284 second=340 amount=-4 -kerning first=287 second=120 amount=-1 -kerning first=307 second=277 amount=1 -kerning first=222 second=289 amount=2 -kerning first=330 second=214 amount=3 -kerning first=353 second=121 amount=1 -kerning first=265 second=353 amount=1 -kerning first=45 second=250 amount=2 -kerning first=376 second=58 amount=-5 -kerning first=65 second=377 amount=-7 -kerning first=206 second=82 amount=-2 -kerning first=311 second=227 amount=2 -kerning first=111 second=251 amount=-2 -kerning first=354 second=291 amount=-10 -kerning first=292 second=240 amount=2 -kerning first=207 second=252 amount=-2 -kerning first=338 second=84 amount=-4 -kerning first=73 second=277 amount=-2 -kerning first=231 second=329 amount=-4 -kerning first=339 second=254 amount=-1 -kerning first=119 second=121 amount=2 -kerning first=300 second=110 amount=-2 -kerning first=77 second=227 amount=1 -kerning first=320 second=267 amount=-1 -kerning first=120 second=291 amount=2 -kerning first=258 second=216 amount=-11 -kerning first=193 second=355 amount=-12 -kerning first=239 second=229 amount=2 -kerning first=344 second=344 amount=-8 -kerning first=85 second=97 amount=2 -kerning first=266 second=86 amount=4 -kerning first=86 second=267 amount=3 -kerning first=67 second=280 amount=-2 -kerning first=356 second=194 amount=-13 -kerning first=8212 second=309 amount=-7 -kerning first=291 second=333 amount=2 -kerning first=294 second=113 amount=2 -kerning first=71 second=230 amount=4 -kerning first=160 second=86 amount=-3 -kerning first=377 second=8212 amount=-6 -kerning first=233 second=232 amount=1 -kerning first=118 second=244 amount=4 -kerning first=194 second=88 amount=-9 -kerning first=99 second=257 amount=1 -kerning first=257 second=309 amount=-10 -kerning first=260 second=89 amount=-7 -kerning first=280 second=246 amount=-2 -kerning first=195 second=258 amount=-7 -kerning first=300 second=373 amount=-2 -kerning first=80 second=270 amount=-9 -kerning first=261 second=259 amount=2 -kerning first=199 second=208 amount=-2 -kerning first=307 second=103 amount=2 -kerning first=222 second=115 amount=1 -kerning first=104 second=347 amount=1 -kerning first=350 second=197 amount=-9 -kerning first=373 second=104 amount=2 -kerning first=45 second=76 amount=3 -kerning first=65 second=233 amount=-12 -kerning first=223 second=285 amount=2 -kerning first=351 second=337 amount=1 -kerning first=354 second=117 amount=-6 -kerning first=374 second=274 amount=-4 -kerning first=292 second=66 amount=-6 -kerning first=355 second=287 amount=2 -kerning first=358 second=67 amount=-2 -kerning first=336 second=300 amount=3 -kerning first=74 second=273 amount=-5 -kerning first=212 second=198 amount=-7 -kerning first=360 second=377 amount=4 -kerning first=193 second=211 amount=-11 -kerning first=298 second=326 amount=-2 -kerning first=301 second=106 amount=-11 -kerning first=78 second=223 amount=2 -kerning first=213 second=338 amount=3 -kerning first=236 second=275 amount=1 -kerning first=121 second=287 amount=7 -kerning first=367 second=107 amount=-1 -kerning first=279 second=339 amount=1 -kerning first=282 second=119 amount=-2 -kerning first=194 second=351 amount=-11 -kerning first=220 second=68 amount=-6 -kerning first=325 second=213 amount=3 -kerning first=240 second=225 amount=2 -kerning first=260 second=352 amount=-8 -kerning first=283 second=289 amount=2 -kerning first=286 second=69 amount=-2 -kerning first=198 second=301 amount=-7 -kerning first=221 second=238 amount=-3 -kerning first=326 second=353 amount=1 -kerning first=352 second=70 amount=-3 -kerning first=264 second=302 amount=3 -kerning first=372 second=227 amount=2 -kerning first=44 second=199 amount=-3 -kerning first=287 second=239 amount=3 -kerning first=353 second=240 amount=3 -kerning first=373 second=367 amount=2 -kerning first=45 second=339 amount=4 -kerning first=68 second=276 amount=-6 -kerning first=229 second=108 amount=-1 -kerning first=114 second=120 amount=-2 -kerning first=272 second=202 amount=-6 -kerning first=72 second=226 amount=2 -kerning first=338 second=203 amount=-4 -kerning first=358 second=330 amount=-1 -kerning first=296 second=279 amount=-2 -kerning first=234 second=228 amount=2 -kerning first=119 second=240 amount=5 -kerning first=254 second=355 amount=3 -kerning first=362 second=280 amount=-6 -kerning first=192 second=304 amount=-7 -kerning first=195 second=84 amount=-20 -kerning first=343 second=293 amount=-1 -kerning first=281 second=242 amount=1 -kerning first=196 second=254 amount=-3 -kerning first=84 second=46 amount=-15 -kerning first=242 second=98 amount=-1 -kerning first=347 second=243 amount=1 -kerning first=65 second=59 amount=-10 -kerning first=85 second=216 amount=2 -kerning first=223 second=111 amount=1 -kerning first=266 second=205 amount=3 -kerning first=371 second=320 amount=-1 -kerning first=374 second=100 amount=-3 -kerning first=289 second=112 amount=2 -kerning first=66 second=229 amount=3 -kerning first=201 second=344 amount=-6 -kerning first=309 second=269 amount=1 -kerning first=332 second=206 amount=3 -kerning first=109 second=293 amount=-1 -kerning first=355 second=113 amount=2 -kerning first=8211 second=258 amount=-13 -kerning first=290 second=282 amount=-2 -kerning first=113 second=243 amount=1 -kerning first=356 second=283 amount=-7 -kerning first=74 second=99 amount=-5 -kerning first=340 second=76 amount=3 -kerning first=160 second=205 amount=-4 -kerning first=275 second=245 amount=1 -kerning first=75 second=269 amount=-10 -kerning first=318 second=309 amount=-13 -kerning first=236 second=101 amount=1 -kerning first=341 second=246 amount=-2 -kerning first=118 second=333 amount=4 -kerning first=121 second=113 amount=7 -kerning first=256 second=258 amount=-7 -kerning first=194 second=207 amount=-7 -kerning first=302 second=102 amount=-3 -kerning first=237 second=271 amount=2 -kerning first=122 second=283 amount=1 -kerning first=260 second=208 amount=-10 -kerning first=368 second=103 amount=2 -kerning first=280 second=335 amount=-2 -kerning first=283 second=115 amount=1 -kerning first=195 second=347 amount=-11 -kerning first=346 second=336 amount=3 -kerning first=349 second=116 amount=1 -kerning first=369 second=273 amount=2 -kerning first=84 second=309 amount=-13 -kerning first=107 second=246 amount=1 -kerning first=242 second=361 amount=-2 -kerning first=350 second=286 amount=3 -kerning first=268 second=78 amount=4 -kerning first=45 second=195 amount=-13 -kerning first=373 second=223 amount=5 -kerning first=65 second=322 amount=-12 -kerning first=246 second=311 amount=-1 -kerning first=354 second=236 amount=-2 -kerning first=269 second=248 amount=-1 -kerning first=374 second=363 amount=-5 -kerning first=289 second=375 amount=2 -kerning first=69 second=272 amount=-5 -kerning first=230 second=104 amount=-1 -kerning first=335 second=249 amount=-2 -kerning first=115 second=116 amount=1 -kerning first=296 second=105 amount=-2 -kerning first=73 second=222 amount=-2 -kerning first=235 second=224 amount=2 -kerning first=193 second=300 amount=-7 -kerning first=196 second=80 amount=-17 -kerning first=301 second=225 amount=2 -kerning first=367 second=226 amount=2 -kerning first=59 second=325 amount=-5 -kerning first=302 second=365 amount=-2 -kerning first=217 second=377 amount=4 -kerning first=240 second=314 amount=-1 -kerning first=201 second=200 amount=-5 -kerning first=86 second=212 amount=5 -kerning first=224 second=107 amount=-1 -kerning first=106 second=339 amount=1 -kerning first=8211 second=84 amount=-7 -kerning first=44 second=288 amount=-3 -kerning first=287 second=328 amount=2 -kerning first=290 second=108 amount=2 -kerning first=202 second=340 amount=-6 -kerning first=205 second=120 amount=-1 -kerning first=313 second=45 amount=-5 -kerning first=110 second=289 amount=2 -kerning first=356 second=109 amount=-6 -kerning first=271 second=121 amount=-11 -kerning first=376 second=266 amount=-1 -kerning first=209 second=70 amount=-2 -kerning first=229 second=227 amount=2 -kerning first=357 second=279 amount=-9 -kerning first=272 second=291 amount=2 -kerning first=295 second=228 amount=2 -kerning first=256 second=84 amount=-20 -kerning first=361 second=229 amount=2 -kerning first=79 second=45 amount=3 -kerning first=237 second=97 amount=2 -kerning first=257 second=254 amount=-1 -kerning first=195 second=203 amount=-10 -kerning first=300 second=318 amount=-2 -kerning first=346 second=192 amount=-9 -kerning first=196 second=343 amount=-12 -kerning first=219 second=280 amount=-6 -kerning first=262 second=344 amount=-4 -kerning first=285 second=281 amount=2 -kerning first=108 second=242 amount=1 -kerning first=243 second=357 amount=-1 -kerning first=289 second=231 amount=2 -kerning first=204 second=243 amount=-2 -kerning first=8211 second=347 amount=4 -kerning first=208 second=193 amount=-8 -kerning first=228 second=320 amount=-1 -kerning first=231 second=100 amount=1 -kerning first=340 second=195 amount=3 -kerning first=160 second=294 amount=-6 -kerning first=75 second=358 amount=-9 -kerning first=98 second=295 amount=3 -kerning first=341 second=335 amount=-2 -kerning first=121 second=232 amount=3 -kerning first=256 second=347 amount=-11 -kerning first=364 second=272 amount=-6 -kerning first=194 second=296 amount=-7 -kerning first=197 second=76 amount=-7 -kerning first=102 second=245 amount=-8 -kerning first=345 second=285 amount=-2 -kerning first=348 second=65 amount=-9 -kerning first=368 second=222 amount=-2 -kerning first=283 second=234 amount=1 -kerning first=198 second=246 amount=-5 -kerning first=83 second=258 amount=-9 -kerning first=349 second=235 amount=1 -kerning first=87 second=208 amount=-6 -kerning first=225 second=103 amount=2 -kerning first=107 second=335 amount=1 -kerning first=110 second=115 amount=1 -kerning first=8212 second=80 amount=-6 -kerning first=45 second=284 amount=5 -kerning first=373 second=312 amount=2 -kerning first=291 second=104 amount=2 -kerning first=206 second=116 amount=-2 -kerning first=226 second=273 amount=2 -kerning first=334 second=198 amount=-7 -kerning first=354 second=325 amount=-1 -kerning first=357 second=105 amount=-3 -kerning first=269 second=337 amount=-1 -kerning first=292 second=274 amount=-6 -kerning first=69 second=361 amount=-2 -kerning first=230 second=223 amount=4 -kerning first=115 second=235 amount=1 -kerning first=358 second=275 amount=-7 -kerning first=273 second=287 amount=2 -kerning first=73 second=311 amount=-2 -kerning first=316 second=351 amount=1 -kerning first=362 second=225 amount=2 -kerning first=323 second=81 amount=3 -kerning first=58 second=274 amount=-4 -kerning first=196 second=199 amount=-11 -kerning first=219 second=106 amount=-12 -kerning first=262 second=200 amount=-2 -kerning first=285 second=107 amount=2 -kerning first=197 second=339 amount=-12 -kerning first=200 second=119 amount=-2 -kerning first=220 second=276 amount=-6 -kerning first=351 second=108 amount=1 -kerning first=86 second=301 amount=3 -kerning first=89 second=81 amount=-1 -kerning first=224 second=226 amount=2 -kerning first=352 second=278 amount=-3 -kerning first=270 second=70 amount=-5 -kerning first=8211 second=203 amount=-7 -kerning first=67 second=314 amount=2 -kerning first=205 second=239 amount=-2 -kerning first=356 second=228 amount=-10 -kerning first=271 second=240 amount=-8 -kerning first=376 second=355 amount=-2 -kerning first=291 second=367 amount=2 -kerning first=71 second=264 amount=3 -kerning first=74 second=44 amount=-5 -kerning first=229 second=316 amount=-1 -kerning first=337 second=241 amount=-2 -kerning first=117 second=108 amount=-1 -kerning first=55 second=57 amount=-5 -kerning first=75 second=214 amount=-8 -kerning first=98 second=121 amount=2 -kerning first=256 second=203 amount=-10 -kerning first=361 second=318 amount=-1 -kerning first=194 second=122 amount=-7 -kerning first=99 second=291 amount=1 -kerning first=345 second=111 amount=-2 -kerning first=280 second=280 amount=-5 -kerning first=198 second=72 amount=-5 -kerning first=83 second=84 amount=-3 -kerning first=218 second=229 amount=2 -kerning first=323 second=344 amount=-2 -kerning first=103 second=241 amount=2 -kerning first=261 second=293 amount=-1 -kerning first=264 second=73 amount=3 -kerning first=304 second=357 amount=-2 -kerning first=84 second=254 amount=-3 -kerning first=265 second=243 amount=-1 -kerning first=370 second=358 amount=-6 -kerning first=45 second=110 amount=2 -kerning first=65 second=267 amount=-12 -kerning first=351 second=371 amount=1 -kerning first=46 second=280 amount=-4 -kerning first=289 second=320 amount=2 -kerning first=292 second=100 amount=2 -kerning first=207 second=112 amount=-2 -kerning first=312 second=257 amount=2 -kerning first=89 second=344 amount=-1 -kerning first=112 second=281 amount=2 -kerning first=358 second=101 amount=-7 -kerning first=273 second=113 amount=2 -kerning first=70 second=357 amount=-2 -kerning first=208 second=282 amount=-6 -kerning first=356 second=8212 amount=-7 -kerning first=359 second=271 amount=2 -kerning first=192 second=75 amount=-5 -kerning first=74 second=307 amount=-1 -kerning first=232 second=359 amount=-1 -kerning first=258 second=76 amount=-7 -kerning first=193 second=245 amount=-12 -kerning first=78 second=257 amount=2 -kerning first=236 second=309 amount=-11 -kerning first=59 second=270 amount=-3 -kerning first=197 second=195 amount=-7 -kerning first=240 second=259 amount=2 -kerning first=198 second=335 amount=-5 -kerning first=221 second=272 amount=-4 -kerning first=349 second=324 amount=1 -kerning first=267 second=116 amount=-1 -kerning first=287 second=273 amount=5 -kerning first=333 second=117 amount=-2 -kerning first=8212 second=199 amount=5 -kerning first=376 second=211 amount=-1 -kerning first=45 second=373 amount=2 -kerning first=291 second=223 amount=5 -kerning first=206 second=235 amount=-2 -kerning first=357 second=224 amount=-8 -kerning first=207 second=375 amount=-2 -kerning first=115 second=324 amount=1 -kerning first=118 second=104 amount=2 -kerning first=280 second=106 amount=-10 -kerning first=192 second=338 amount=-11 -kerning first=195 second=118 amount=-13 -kerning first=300 second=263 amount=-2 -kerning first=323 second=200 amount=-6 -kerning first=100 second=287 amount=2 -kerning first=258 second=339 amount=-12 -kerning first=366 second=264 amount=2 -kerning first=196 second=288 amount=-11 -kerning first=199 second=68 amount=-2 -kerning first=81 second=300 amount=3 -kerning first=84 second=80 amount=-5 -kerning first=219 second=225 amount=2 -kerning first=347 second=277 amount=1 -kerning first=370 second=214 amount=2 -kerning first=285 second=226 amount=5 -kerning first=305 second=353 amount=1 -kerning first=351 second=227 amount=3 -kerning first=46 second=106 amount=-11 -kerning first=66 second=263 amount=2 -kerning first=89 second=200 amount=-4 -kerning first=112 second=107 amount=3 -kerning first=290 second=316 amount=2 -kerning first=205 second=328 amount=-2 -kerning first=90 second=340 amount=2 -kerning first=113 second=277 amount=1 -kerning first=359 second=97 amount=2 -kerning first=274 second=109 amount=-2 -kerning first=71 second=353 amount=2 -kerning first=209 second=278 amount=-6 -kerning first=212 second=58 amount=-5 -kerning first=117 second=227 amount=2 -kerning first=275 second=279 amount=1 -kerning first=193 second=71 amount=-11 -kerning first=75 second=303 amount=-7 -kerning first=318 second=343 amount=-9 -kerning first=98 second=240 amount=5 -kerning first=233 second=355 amount=-1 -kerning first=118 second=367 amount=2 -kerning first=279 second=229 amount=2 -kerning first=365 second=357 amount=-1 -kerning first=280 second=369 amount=-2 -kerning first=195 second=381 amount=-7 -kerning first=83 second=203 amount=-3 -kerning first=221 second=98 amount=-2 -kerning first=287 second=99 amount=2 -kerning first=202 second=111 amount=-2 -kerning first=84 second=343 amount=-6 -kerning first=222 second=268 amount=4 -kerning first=353 second=100 amount=3 -kerning first=45 second=229 amount=4 -kerning first=373 second=257 amount=5 -kerning first=65 second=356 amount=-20 -kerning first=354 second=270 amount=-8 -kerning first=207 second=231 amount=-2 -kerning first=339 second=233 amount=1 -kerning first=119 second=100 amount=5 -kerning first=254 second=245 amount=2 -kerning first=192 second=194 amount=-7 -kerning first=320 second=246 amount=-1 -kerning first=100 second=113 amount=2 -kerning first=258 second=195 amount=-7 -kerning first=366 second=90 amount=4 -kerning first=193 second=334 amount=-11 -kerning first=196 second=114 amount=-12 -kerning first=301 second=259 amount=2 -kerning first=213 second=8212 amount=3 -kerning first=101 second=283 amount=1 -kerning first=347 second=103 amount=3 -kerning first=282 second=272 amount=-5 -kerning first=197 second=284 amount=-11 -kerning first=325 second=336 amount=3 -kerning first=328 second=116 amount=-1 -kerning first=105 second=233 amount=1 -kerning first=263 second=285 amount=1 -kerning first=66 second=89 amount=2 -kerning first=286 second=222 amount=-2 -kerning first=86 second=246 amount=3 -kerning first=221 second=361 amount=-5 -kerning first=352 second=223 amount=2 -kerning first=8211 second=118 amount=2 -kerning first=225 second=311 amount=-1 -kerning first=113 second=103 amount=2 -kerning first=353 second=363 amount=1 -kerning first=8212 second=288 amount=5 -kerning first=51 second=52 amount=-2 -kerning first=291 second=312 amount=2 -kerning first=206 second=324 amount=-2 -kerning first=114 second=273 amount=-2 -kerning first=160 second=65 amount=-3 -kerning first=341 second=106 amount=-10 -kerning first=118 second=223 amount=5 -kerning first=256 second=118 amount=-13 -kerning first=194 second=67 amount=-11 -kerning first=234 second=351 amount=1 -kerning first=119 second=363 amount=2 -kerning first=260 second=68 amount=-10 -kerning first=80 second=249 amount=1 -kerning first=323 second=289 amount=2 -kerning first=196 second=377 amount=-7 -kerning first=84 second=199 amount=-2 -kerning first=107 second=106 amount=-12 -kerning first=242 second=251 amount=-2 -kerning first=65 second=212 amount=-11 -kerning first=88 second=119 amount=-4 -kerning first=351 second=316 amount=1 -kerning first=269 second=108 amount=-1 -kerning first=289 second=265 amount=2 -kerning first=204 second=277 amount=-2 -kerning first=89 second=289 amount=-3 -kerning first=335 second=109 amount=-2 -kerning first=112 second=226 amount=5 -kerning first=358 second=46 amount=-15 -kerning first=8211 second=381 amount=-4 -kerning first=270 second=278 amount=-6 -kerning first=73 second=82 amount=-2 -kerning first=208 second=227 amount=2 -kerning first=313 second=342 amount=-4 -kerning first=117 second=316 amount=-1 -kerning first=360 second=356 amount=-6 -kerning first=78 second=202 amount=-6 -kerning first=256 second=381 amount=-7 -kerning first=279 second=318 amount=-1 -kerning first=194 second=330 amount=-15 -kerning first=197 second=110 amount=-13 -kerning first=102 second=279 amount=-8 -kerning first=260 second=331 amount=-13 -kerning first=263 second=111 amount=-1 -kerning first=198 second=280 amount=-2 -kerning first=106 second=229 amount=2 -kerning first=349 second=269 amount=1 -kerning first=67 second=85 amount=4 -kerning first=330 second=282 amount=-6 -kerning first=8212 second=114 amount=2 -kerning first=114 second=99 amount=-2 -kerning first=354 second=359 amount=-3 -kerning first=207 second=320 amount=-2 -kerning first=230 second=257 amount=2 -kerning first=115 second=269 amount=1 -kerning first=358 second=309 amount=-13 -kerning first=208 second=8211 amount=4 -kerning first=339 second=322 amount=-1 -kerning first=362 second=259 amount=2 -kerning first=277 second=271 amount=2 -kerning first=192 second=283 amount=-12 -kerning first=80 second=75 amount=-6 -kerning first=320 second=335 amount=-1 -kerning first=100 second=232 amount=1 -kerning first=235 second=347 amount=1 -kerning first=120 second=359 amount=-1 -kerning first=258 second=284 amount=-11 -kerning first=196 second=233 amount=-12 -kerning first=324 second=285 amount=2 -kerning first=367 second=349 amount=1 -kerning first=282 second=361 amount=-2 -kerning first=197 second=373 amount=-13 -kerning first=374 second=79 amount=-1 -kerning first=286 second=311 amount=2 -kerning first=66 second=208 amount=-4 -kerning first=309 second=248 amount=1 -kerning first=86 second=335 amount=3 -kerning first=89 second=115 amount=-4 -kerning first=8211 second=237 amount=2 -kerning first=375 second=249 amount=3 -kerning first=356 second=262 amount=-2 -kerning first=8212 second=377 amount=-4 -kerning first=71 second=298 amount=3 -kerning first=209 second=223 amount=2 -kerning first=360 second=212 amount=2 -kerning first=275 second=224 amount=2 -kerning first=295 second=351 amount=1 -kerning first=75 second=248 amount=-10 -kerning first=341 second=225 amount=-2 -kerning first=118 second=312 amount=2 -kerning first=79 second=198 amount=-7 -kerning first=102 second=105 amount=-7 -kerning first=368 second=82 amount=-2 -kerning first=195 second=326 amount=-13 -kerning first=198 second=106 amount=-13 -kerning first=80 second=338 amount=3 -kerning first=103 second=275 amount=2 -kerning first=264 second=107 amount=2 -kerning first=199 second=276 amount=-2 -kerning first=84 second=288 amount=-2 -kerning first=87 second=68 amount=-6 -kerning first=107 second=225 amount=2 -kerning first=222 second=213 amount=4 -kerning first=245 second=120 amount=-2 -kerning first=68 second=81 amount=4 -kerning first=334 second=58 amount=-5 -kerning first=269 second=227 amount=1 -kerning first=374 second=342 amount=-1 -kerning first=312 second=291 amount=2 -kerning first=355 second=355 amount=-1 -kerning first=296 second=84 amount=-2 -kerning first=119 second=45 amount=4 -kerning first=362 second=85 amount=2 -kerning first=277 second=97 amount=2 -kerning first=192 second=109 amount=-13 -kerning first=340 second=318 amount=-2 -kerning first=343 second=98 amount=-1 -kerning first=258 second=110 amount=-13 -kerning first=193 second=279 amount=-12 -kerning first=196 second=59 amount=-10 -kerning first=78 second=291 amount=2 -kerning first=101 second=228 amount=2 -kerning first=121 second=355 amount=3 -kerning first=197 second=229 amount=-10 -kerning first=302 second=344 amount=-2 -kerning first=217 second=356 amount=-6 -kerning first=240 second=293 amount=-1 -kerning first=283 second=357 amount=-1 -kerning first=198 second=369 amount=-6 -kerning first=109 second=98 amount=-1 -kerning first=287 second=307 amount=3 -kerning first=67 second=204 amount=3 -kerning first=205 second=99 amount=-2 -kerning first=290 second=87 amount=4 -kerning first=356 second=88 amount=-3 -kerning first=8212 second=233 amount=4 -kerning first=268 second=320 amount=2 -kerning first=271 second=100 amount=-8 -kerning first=376 second=245 amount=-4 -kerning first=291 second=257 amount=5 -kerning first=68 second=344 amount=-3 -kerning first=206 second=269 amount=-2 -kerning first=272 second=270 amount=-6 -kerning first=318 second=114 amount=-9 -kerning first=335 second=8212 amount=3 -kerning first=296 second=347 amount=-2 -kerning first=300 second=297 amount=-2 -kerning first=80 second=194 amount=-14 -kerning first=103 second=101 amount=2 -kerning first=258 second=373 amount=-13 -kerning first=196 second=322 amount=-12 -kerning first=84 second=114 amount=-6 -kerning first=219 second=259 amount=2 -kerning first=104 second=271 amount=2 -kerning first=347 second=311 amount=1 -kerning first=262 second=323 amount=4 -kerning first=265 second=103 amount=1 -kerning first=200 second=272 amount=-5 -kerning first=85 second=284 amount=2 -kerning first=331 second=104 amount=-1 -kerning first=246 second=116 amount=-1 -kerning first=204 second=222 amount=-2 -kerning first=309 second=337 amount=1 -kerning first=89 second=234 amount=-4 -kerning first=224 second=349 amount=1 -kerning first=8211 second=326 amount=2 -kerning first=270 second=223 amount=2 -kerning first=113 second=311 amount=-1 -kerning first=356 second=351 amount=-10 -kerning first=271 second=363 amount=-9 -kerning first=74 second=197 amount=-8 -kerning first=97 second=104 amount=-1 -kerning first=298 second=250 amount=-2 -kerning first=75 second=337 amount=-10 -kerning first=341 second=314 amount=-1 -kerning first=256 second=326 amount=-13 -kerning first=259 second=106 amount=-10 -kerning first=279 second=263 amount=1 -kerning first=194 second=275 amount=-12 -kerning first=102 second=224 amount=-6 -kerning first=237 second=339 amount=1 -kerning first=348 second=44 amount=-4 -kerning first=122 second=351 amount=1 -kerning first=260 second=276 amount=-10 -kerning first=368 second=201 amount=-6 -kerning first=198 second=225 amount=-3 -kerning first=241 second=289 amount=2 -kerning first=84 second=377 amount=-2 -kerning first=330 second=227 amount=2 -kerning first=245 second=239 amount=-2 -kerning first=350 second=354 amount=-3 -kerning first=45 second=263 amount=4 -kerning first=373 second=291 amount=2 -kerning first=376 second=71 amount=-1 -kerning first=68 second=200 amount=-6 -kerning first=311 second=240 amount=2 -kerning first=114 second=44 amount=-7 -kerning first=354 second=304 amount=-2 -kerning first=269 second=316 amount=-1 -kerning first=69 second=340 amount=-6 -kerning first=207 second=265 amount=-2 -kerning first=210 second=45 amount=3 -kerning first=358 second=254 amount=-3 -kerning first=76 second=70 amount=-4 -kerning first=339 second=267 amount=1 -kerning first=254 second=279 amount=2 -kerning first=192 second=228 amount=-10 -kerning first=77 second=240 amount=1 -kerning first=258 second=229 amount=-10 -kerning first=278 second=356 amount=-5 -kerning first=324 second=230 amount=1 -kerning first=104 second=97 amount=2 -kerning first=344 second=357 amount=-2 -kerning first=197 second=318 amount=-12 -kerning first=105 second=267 amount=1 -kerning first=329 second=320 amount=-1 -kerning first=44 second=356 amount=-10 -kerning first=290 second=206 amount=3 -kerning first=67 second=293 amount=2 -kerning first=110 second=357 amount=-1 -kerning first=356 second=207 amount=-2 -kerning first=376 second=334 amount=-1 -kerning first=71 second=243 amount=3 -kerning first=206 second=358 amount=-2 -kerning first=229 second=295 amount=-1 -kerning first=357 second=347 amount=-8 -kerning first=75 second=193 amount=-3 -kerning first=318 second=233 amount=-9 -kerning first=98 second=100 amount=5 -kerning first=233 second=245 amount=1 -kerning first=118 second=257 amount=5 -kerning first=276 second=309 amount=-10 -kerning first=194 second=101 amount=-12 -kerning first=257 second=322 amount=-1 -kerning first=260 second=102 amount=-12 -kerning first=192 second=8212 amount=-12 -kerning first=195 second=271 amount=-10 -kerning first=218 second=208 amount=-6 -kerning first=326 second=103 amount=2 -kerning first=238 second=335 amount=1 -kerning first=241 second=115 amount=1 -kerning first=346 second=260 amount=-9 -kerning first=84 second=233 amount=-7 -kerning first=327 second=273 amount=2 -kerning first=350 second=210 amount=3 -kerning first=373 second=117 amount=2 -kerning first=45 second=89 amount=3 -kerning first=285 second=349 amount=2 -kerning first=65 second=246 amount=-12 -kerning first=200 second=361 amount=-2 -kerning first=331 second=223 amount=4 -kerning first=374 second=287 amount=-3 -kerning first=289 second=299 amount=3 -kerning first=204 second=311 amount=-2 -kerning first=358 second=80 amount=-5 -kerning first=73 second=116 amount=-2 -kerning first=254 second=105 amount=2 -kerning first=320 second=106 amount=-12 -kerning first=58 second=79 amount=-3 -kerning first=193 second=224 amount=-10 -kerning first=298 second=339 amount=-2 -kerning first=98 second=363 amount=2 -kerning first=259 second=225 amount=2 -kerning first=364 second=340 amount=-2 -kerning first=367 second=120 amount=-1 -kerning first=325 second=226 amount=2 -kerning first=345 second=353 amount=-2 -kerning first=260 second=365 amount=-13 -kerning first=368 second=290 amount=2 -kerning first=286 second=82 amount=-4 -kerning first=198 second=314 amount=-2 -kerning first=86 second=106 amount=-9 -kerning first=106 second=263 amount=1 -kerning first=349 second=303 amount=1 -kerning first=372 second=240 amount=2 -kerning first=44 second=212 amount=-3 -kerning first=287 second=252 amount=2 -kerning first=87 second=276 amount=-6 -kerning first=245 second=328 amount=-2 -kerning first=248 second=108 amount=-1 -kerning first=353 second=253 amount=1 -kerning first=68 second=289 amount=2 -kerning first=71 second=69 amount=-2 -kerning first=311 second=329 amount=-2 -kerning first=292 second=342 amount=-2 -kerning first=207 second=354 amount=-2 -kerning first=230 second=291 amount=2 -kerning first=115 second=303 amount=1 -kerning first=358 second=343 amount=-6 -kerning first=273 second=355 amount=-1 -kerning first=211 second=304 amount=3 -kerning first=119 second=253 amount=2 -kerning first=195 second=97 amount=-10 -kerning first=300 second=242 amount=-2 -kerning first=80 second=109 amount=1 -kerning first=258 second=318 amount=-12 -kerning first=261 second=98 amount=-1 -kerning first=58 second=342 amount=-4 -kerning first=196 second=267 amount=-12 -kerning first=84 second=59 amount=-15 -kerning first=65 second=72 amount=-4 -kerning first=85 second=229 amount=2 -kerning first=220 second=344 amount=-2 -kerning first=374 second=113 amount=-3 -kerning first=66 second=242 amount=2 -kerning first=86 second=369 amount=2 -kerning first=8211 second=271 amount=4 -kerning first=375 second=283 amount=3 -kerning first=290 second=295 amount=2 -kerning first=70 second=192 amount=-12 -kerning first=205 second=307 amount=-2 -kerning first=208 second=87 amount=2 -kerning first=333 second=359 amount=-1 -kerning first=248 second=371 amount=-2 -kerning first=356 second=296 amount=-2 -kerning first=274 second=88 amount=3 -kerning first=209 second=257 amount=2 -kerning first=75 second=282 amount=-9 -kerning first=213 second=207 amount=3 -kerning first=341 second=259 amount=-2 -kerning first=256 second=271 amount=-10 -kerning first=299 second=335 amount=1 -kerning first=302 second=115 amount=-2 -kerning first=99 second=359 amount=-1 -kerning first=303 second=285 amount=2 -kerning first=372 second=66 amount=-6 -kerning first=284 second=298 amount=3 -kerning first=307 second=235 amount=1 -kerning first=84 second=322 amount=-3 -kerning first=107 second=259 amount=2 -kerning first=45 second=208 amount=-7 -kerning first=373 second=236 amount=2 -kerning first=65 second=335 amount=-12 -kerning first=88 second=272 amount=-2 -kerning first=246 second=324 amount=-2 -kerning first=112 second=349 amount=2 -kerning first=358 second=199 amount=-2 -kerning first=296 second=118 amount=-2 -kerning first=73 second=235 amount=-2 -kerning first=316 second=275 amount=1 -kerning first=231 second=287 amount=1 -kerning first=254 second=224 amount=5 -kerning first=359 second=339 amount=1 -kerning first=212 second=300 amount=3 -kerning first=97 second=312 amount=-1 -kerning first=363 second=289 amount=2 -kerning first=366 second=69 amount=-6 -kerning first=193 second=313 amount=-7 -kerning first=259 second=314 amount=-1 -kerning first=59 second=338 amount=-3 -kerning first=197 second=263 amount=-12 -kerning first=220 second=200 amount=-6 -kerning first=243 second=107 amount=-1 -kerning first=368 second=379 amount=4 -kerning first=286 second=201 amount=-2 -kerning first=66 second=68 amount=-4 -kerning first=86 second=225 amount=6 -kerning first=221 second=340 amount=-1 -kerning first=224 second=120 amount=-1 -kerning first=332 second=45 amount=3 -kerning first=352 second=202 amount=-3 -kerning first=8211 second=97 amount=4 -kerning first=375 second=109 amount=3 -kerning first=356 second=122 amount=-10 -kerning first=8212 second=267 amount=4 -kerning first=268 second=354 amount=-2 -kerning first=291 second=291 amount=5 -kerning first=206 second=303 amount=-2 -kerning first=229 second=240 amount=2 -kerning first=75 second=108 amount=-7 -kerning first=98 second=45 amount=4 -kerning first=256 second=97 amount=-10 -kerning first=194 second=46 amount=-10 -kerning first=79 second=58 amount=-5 -kerning first=195 second=216 amount=-11 -kerning first=300 second=331 amount=-2 -kerning first=303 second=111 amount=1 -kerning first=323 second=268 amount=3 -kerning first=100 second=355 amount=-1 -kerning first=366 second=332 amount=2 -kerning first=196 second=356 amount=-20 -kerning first=304 second=281 amount=-2 -kerning first=262 second=357 amount=2 -kerning first=370 second=282 amount=-6 -kerning first=223 second=243 amount=1 -kerning first=351 second=295 amount=1 -kerning first=354 second=75 amount=-7 -kerning first=289 second=244 amount=2 -kerning first=69 second=111 amount=-2 -kerning first=89 second=268 amount=-1 -kerning first=8211 second=360 amount=5 -kerning first=270 second=257 amount=2 -kerning first=70 second=281 amount=-6 -kerning first=316 second=101 amount=1 -kerning first=231 second=113 amount=1 -kerning first=248 second=8211 amount=3 -kerning first=74 second=231 amount=-5 -kerning first=232 second=283 amount=1 -kerning first=117 second=295 amount=-1 -kerning first=363 second=115 amount=1 -kerning first=275 second=347 amount=1 -kerning first=75 second=371 amount=-8 -kerning first=213 second=296 amount=3 -kerning first=236 second=233 amount=1 -kerning first=121 second=245 amount=3 -kerning first=364 second=285 amount=2 -kerning first=197 second=89 amount=-7 -kerning first=302 second=234 amount=-2 -kerning first=198 second=259 amount=-3 -kerning first=80 second=8212 amount=2 -kerning first=221 second=196 amount=-3 -kerning first=326 second=311 amount=-1 -kerning first=349 second=248 amount=1 -kerning first=222 second=336 amount=4 -kerning first=225 second=116 amount=-1 -kerning first=376 second=105 amount=-3 -kerning first=45 second=297 amount=2 -kerning first=291 second=117 amount=2 -kerning first=88 second=361 amount=-3 -kerning first=354 second=338 amount=-2 -kerning first=357 second=118 amount=-10 -kerning first=292 second=287 amount=2 -kerning first=207 second=299 amount=-2 -kerning first=115 second=248 amount=1 -kerning first=358 second=288 amount=-2 -kerning first=276 second=80 amount=-6 -kerning first=296 second=237 amount=-2 -kerning first=73 second=324 amount=-2 -kerning first=192 second=262 amount=-11 -kerning first=320 second=314 amount=-2 -kerning first=238 second=106 amount=-11 -kerning first=258 second=263 amount=-12 -kerning first=196 second=212 amount=-11 -kerning first=304 second=107 amount=-2 -kerning first=101 second=351 amount=1 -kerning first=282 second=340 amount=-6 -kerning first=197 second=352 amount=-8 -kerning first=285 second=120 amount=-1 -kerning first=220 second=289 amount=2 -kerning first=351 second=121 amount=1 -kerning first=263 second=353 amount=1 -kerning first=374 second=58 amount=-5 -kerning first=204 second=82 amount=-2 -kerning first=309 second=227 amount=2 -kerning first=86 second=314 amount=3 -kerning first=8211 second=216 amount=5 -kerning first=375 second=228 amount=7 -kerning first=67 second=327 amount=4 -kerning first=70 second=107 amount=-2 -kerning first=205 second=252 amount=-2 -kerning first=248 second=316 amount=-1 -kerning first=8212 second=356 amount=-7 -kerning first=71 second=277 amount=3 -kerning first=209 second=202 amount=-6 -kerning first=229 second=329 amount=-3 -kerning first=337 second=254 amount=-1 -kerning first=298 second=110 amount=-2 -kerning first=75 second=227 amount=-7 -kerning first=318 second=267 amount=-9 -kerning first=233 second=279 amount=1 -kerning first=118 second=291 amount=5 -kerning first=256 second=216 amount=-11 -kerning first=237 second=229 amount=2 -kerning first=342 second=344 amount=-8 -kerning first=198 second=85 amount=-2 -kerning first=103 second=254 amount=3 -kerning first=264 second=86 amount=4 -kerning first=84 second=267 amount=-7 -kerning first=222 second=192 amount=-13 -kerning first=65 second=280 amount=-10 -kerning first=311 second=100 amount=2 -kerning first=331 second=257 amount=2 -kerning first=354 second=194 amount=-13 -kerning first=289 second=333 amount=2 -kerning first=292 second=113 amount=2 -kerning first=89 second=357 amount=-2 -kerning first=358 second=114 amount=-6 -kerning first=116 second=244 amount=1 -kerning first=192 second=88 amount=-9 -kerning first=77 second=100 amount=1 -kerning first=97 second=257 amount=2 -kerning first=258 second=89 amount=-7 -kerning first=278 second=246 amount=-2 -kerning first=193 second=258 amount=-7 -kerning first=298 second=373 amount=-2 -kerning first=75 second=8211 amount=-10 -kerning first=78 second=270 amount=-6 -kerning first=259 second=259 amount=2 -kerning first=197 second=208 amount=-10 -kerning first=305 second=103 amount=2 -kerning first=102 second=347 amount=-7 -kerning first=348 second=197 amount=-9 -kerning first=371 second=104 amount=-1 -kerning first=286 second=116 amount=2 -kerning first=198 second=348 amount=-3 -kerning first=221 second=285 amount=-3 -kerning first=349 second=337 amount=1 -kerning first=372 second=274 amount=-6 -kerning first=290 second=66 amount=-2 -kerning first=353 second=287 amount=3 -kerning first=356 second=67 amount=-2 -kerning first=8212 second=212 amount=5 -kerning first=376 second=224 amount=-3 -kerning first=291 second=236 amount=3 -kerning first=71 second=103 amount=5 -kerning first=206 second=248 amount=-2 -kerning first=334 second=300 amount=3 -kerning first=357 second=237 amount=-3 -kerning first=72 second=273 amount=2 -kerning first=210 second=198 amount=-7 -kerning first=115 second=337 amount=1 -kerning first=118 second=117 amount=2 -kerning first=358 second=377 amount=-2 -kerning first=296 second=326 amount=-2 -kerning first=299 second=106 amount=-11 -kerning first=211 second=338 amount=3 -kerning first=234 second=275 amount=1 -kerning first=119 second=287 amount=5 -kerning first=365 second=107 amount=-1 -kerning first=277 second=339 amount=1 -kerning first=280 second=119 amount=-2 -kerning first=192 second=351 amount=-11 -kerning first=218 second=68 amount=-6 -kerning first=323 second=213 amount=3 -kerning first=238 second=225 amount=2 -kerning first=258 second=352 amount=-8 -kerning first=281 second=289 amount=2 -kerning first=284 second=69 amount=-2 -kerning first=324 second=353 amount=1 -kerning first=350 second=70 amount=-3 -kerning first=262 second=302 amount=3 -kerning first=370 second=227 amount=2 -kerning first=285 second=239 amount=3 -kerning first=351 second=240 amount=3 -kerning first=66 second=276 amount=-4 -kerning first=89 second=213 amount=-1 -kerning first=227 second=108 amount=-1 -kerning first=112 second=120 amount=2 -kerning first=270 second=202 amount=-6 -kerning first=70 second=226 amount=-3 -kerning first=356 second=330 amount=-1 -kerning first=209 second=291 amount=2 -kerning first=232 second=228 amount=2 -kerning first=117 second=240 amount=2 -kerning first=360 second=280 amount=-6 -kerning first=193 second=84 amount=-20 -kerning first=75 second=316 amount=-7 -kerning first=98 second=253 amount=2 -kerning first=341 second=293 amount=-1 -kerning first=279 second=242 amount=1 -kerning first=194 second=254 amount=-3 -kerning first=240 second=98 amount=-1 -kerning first=345 second=243 amount=-2 -kerning first=83 second=216 amount=3 -kerning first=221 second=111 amount=-4 -kerning first=264 second=205 amount=3 -kerning first=369 second=320 amount=-1 -kerning first=372 second=100 amount=2 -kerning first=287 second=112 amount=2 -kerning first=199 second=344 amount=-4 -kerning first=307 second=269 amount=1 -kerning first=84 second=356 amount=-8 -kerning first=353 second=113 amount=3 -kerning first=45 second=242 amount=4 -kerning first=65 second=369 amount=-13 -kerning first=206 second=74 amount=-2 -kerning first=354 second=283 amount=-7 -kerning first=269 second=295 amount=-1 -kerning first=207 second=244 amount=-2 -kerning first=358 second=233 amount=-7 -kerning first=73 second=269 amount=-2 -kerning first=316 second=309 amount=-12 -kerning first=234 second=101 amount=1 -kerning first=339 second=246 amount=1 -kerning first=116 second=333 amount=1 -kerning first=119 second=113 amount=5 -kerning first=192 second=207 amount=-7 -kerning first=300 second=102 amount=-3 -kerning first=235 second=271 amount=2 -kerning first=258 second=208 amount=-10 -kerning first=366 second=103 amount=2 -kerning first=278 second=335 amount=-2 -kerning first=281 second=115 amount=1 -kerning first=193 second=347 amount=-11 -kerning first=347 second=116 amount=1 -kerning first=367 second=273 amount=2 -kerning first=85 second=89 amount=2 -kerning first=105 second=246 amount=1 -kerning first=348 second=286 amount=3 -kerning first=266 second=78 amount=4 -kerning first=371 second=223 amount=4 -kerning first=86 second=259 amount=6 -kerning first=244 second=311 amount=-1 -kerning first=267 second=248 amount=-1 -kerning first=287 second=375 amount=2 -kerning first=67 second=272 amount=-2 -kerning first=228 second=104 amount=-1 -kerning first=333 second=249 amount=-2 -kerning first=113 second=116 amount=-1 -kerning first=8212 second=301 amount=2 -kerning first=376 second=313 amount=-3 -kerning first=71 second=222 amount=-2 -kerning first=206 second=337 amount=-2 -kerning first=160 second=78 amount=-8 -kerning first=357 second=326 amount=-9 -kerning first=272 second=338 amount=4 -kerning first=233 second=224 amount=2 -kerning first=118 second=236 amount=2 -kerning first=194 second=80 amount=-17 -kerning first=299 second=225 amount=2 -kerning first=260 second=81 amount=-11 -kerning first=365 second=226 amount=2 -kerning first=300 second=365 amount=-2 -kerning first=80 second=262 amount=3 -kerning first=199 second=200 amount=-2 -kerning first=84 second=212 amount=-2 -kerning first=45 second=68 amount=-7 -kerning first=285 second=328 amount=2 -kerning first=65 second=225 amount=-10 -kerning first=200 second=340 amount=-6 -kerning first=223 second=277 amount=1 -kerning first=108 second=289 amount=2 -kerning first=354 second=109 amount=-6 -kerning first=269 second=121 amount=-1 -kerning first=374 second=266 amount=-1 -kerning first=207 second=70 amount=-2 -kerning first=227 second=227 amount=2 -kerning first=112 second=239 amount=2 -kerning first=355 second=279 amount=1 -kerning first=358 second=59 amount=-15 -kerning first=270 second=291 amount=2 -kerning first=70 second=315 amount=-4 -kerning first=208 second=240 amount=2 -kerning first=359 second=229 amount=2 -kerning first=74 second=265 amount=-5 -kerning first=235 second=97 amount=2 -kerning first=117 second=329 amount=-3 -kerning first=193 second=203 amount=-10 -kerning first=298 second=318 amount=-2 -kerning first=236 second=267 amount=1 -kerning first=344 second=192 amount=3 -kerning first=121 second=279 amount=3 -kerning first=282 second=111 amount=-2 -kerning first=194 second=343 amount=-12 -kerning first=217 second=280 amount=-6 -kerning first=260 second=344 amount=-17 -kerning first=283 second=281 amount=1 -kerning first=198 second=293 amount=-2 -kerning first=86 second=85 amount=4 -kerning first=221 second=230 amount=-3 -kerning first=106 second=242 amount=1 -kerning first=241 second=357 amount=-1 -kerning first=67 second=98 amount=2 -kerning first=202 second=243 amount=-2 -kerning first=287 second=231 amount=2 -kerning first=245 second=307 amount=-2 -kerning first=353 second=232 amount=1 -kerning first=373 second=359 amount=2 -kerning first=45 second=331 amount=2 -kerning first=68 second=268 amount=4 -kerning first=226 second=320 amount=-1 -kerning first=229 second=100 amount=2 -kerning first=272 second=194 amount=-8 -kerning first=207 second=333 amount=-2 -kerning first=358 second=322 amount=-3 -kerning first=73 second=358 amount=-2 -kerning first=339 second=335 amount=1 -kerning first=119 second=232 amount=4 -kerning first=254 second=347 amount=2 -kerning first=362 second=272 amount=-6 -kerning first=192 second=296 amount=-7 -kerning first=195 second=76 amount=-7 -kerning first=80 second=88 amount=-3 -kerning first=100 second=245 amount=1 -kerning first=343 second=285 amount=-2 -kerning first=346 second=65 amount=-9 -kerning first=366 second=222 amount=-2 -kerning first=281 second=234 amount=1 -kerning first=196 second=246 amount=-12 -kerning first=347 second=235 amount=1 -kerning first=85 second=208 amount=-6 -kerning first=223 second=103 amount=2 -kerning first=105 second=335 amount=1 -kerning first=108 second=115 amount=1 -kerning first=289 second=104 amount=2 -kerning first=204 second=116 amount=-2 -kerning first=309 second=261 amount=1 -kerning first=224 second=273 amount=2 -kerning first=332 second=198 amount=-7 -kerning first=109 second=285 amount=2 -kerning first=8211 second=250 amount=2 -kerning first=267 second=337 amount=-1 -kerning first=290 second=274 amount=-2 -kerning first=208 second=66 amount=-6 -kerning first=113 second=235 amount=1 -kerning first=356 second=275 amount=-7 -kerning first=271 second=287 amount=-8 -kerning first=71 second=311 amount=2 -kerning first=294 second=224 amount=2 -kerning first=360 second=225 amount=2 -kerning first=160 second=197 amount=-3 -kerning first=318 second=301 amount=-3 -kerning first=121 second=105 amount=3 -kerning first=194 second=199 amount=-11 -kerning first=217 second=106 amount=-12 -kerning first=102 second=118 amount=-7 -kerning first=237 second=263 amount=1 -kerning first=122 second=275 amount=1 -kerning first=260 second=200 amount=-10 -kerning first=283 second=107 amount=-1 -kerning first=195 second=339 amount=-12 -kerning first=198 second=119 amount=-6 -kerning first=218 second=276 amount=-6 -kerning first=349 second=108 amount=1 -kerning first=202 second=69 amount=-5 -kerning first=84 second=301 amount=-2 -kerning first=87 second=81 amount=2 -kerning first=350 second=278 amount=-3 -kerning first=268 second=70 amount=-2 -kerning first=65 second=314 amount=-12 -kerning first=331 second=291 amount=2 -kerning first=246 second=303 amount=-2 -kerning first=354 second=228 amount=-10 -kerning first=269 second=240 amount=1 -kerning first=46 second=327 amount=-5 -kerning first=374 second=355 amount=-2 -kerning first=289 second=367 amount=2 -kerning first=227 second=316 amount=-1 -kerning first=335 second=241 amount=-2 -kerning first=112 second=328 amount=2 -kerning first=115 second=108 amount=1 -kerning first=53 second=57 amount=1 -kerning first=359 second=318 amount=-1 -kerning first=192 second=122 amount=-7 -kerning first=74 second=354 amount=-5 -kerning first=97 second=291 amount=2 -kerning first=343 second=111 amount=-2 -kerning first=120 second=228 amount=2 -kerning first=278 second=280 amount=-5 -kerning first=196 second=72 amount=-4 -kerning first=259 second=293 amount=-1 -kerning first=262 second=73 amount=3 -kerning first=197 second=242 amount=-12 -kerning first=302 second=357 amount=-2 -kerning first=82 second=254 amount=-2 -kerning first=263 second=243 amount=-1 -kerning first=368 second=358 amount=-6 -kerning first=86 second=204 amount=5 -kerning first=221 second=319 amount=-3 -kerning first=349 second=371 amount=1 -kerning first=8211 second=76 amount=3 -kerning first=44 second=280 amount=-4 -kerning first=287 second=320 amount=2 -kerning first=205 second=112 amount=-2 -kerning first=87 second=344 amount=-2 -kerning first=356 second=101 amount=-7 -kerning first=8212 second=246 amount=4 -kerning first=271 second=113 amount=-8 -kerning first=376 second=258 amount=-3 -kerning first=337 second=114 amount=-2 -kerning first=114 second=231 amount=-2 -kerning first=354 second=8212 amount=-7 -kerning first=357 second=271 amount=-8 -kerning first=75 second=87 amount=-3 -kerning first=230 second=359 amount=-1 -kerning first=115 second=371 amount=1 -kerning first=256 second=76 amount=-7 -kerning first=234 second=309 amount=-13 -kerning first=122 second=101 amount=1 -kerning first=195 second=195 amount=-7 -kerning first=103 second=114 amount=2 -kerning first=238 second=259 amount=2 -kerning first=196 second=335 amount=-12 -kerning first=219 second=272 amount=-6 -kerning first=347 second=324 amount=1 -kerning first=265 second=116 amount=-1 -kerning first=285 second=273 amount=5 -kerning first=108 second=234 amount=1 -kerning first=374 second=211 amount=-1 -kerning first=289 second=223 amount=5 -kerning first=204 second=235 amount=-2 -kerning first=355 second=224 amount=2 -kerning first=8211 second=339 amount=4 -kerning first=70 second=260 amount=-12 -kerning first=205 second=375 amount=-2 -kerning first=228 second=312 amount=-1 -kerning first=160 second=286 amount=-3 -kerning first=278 second=106 amount=-10 -kerning first=193 second=118 amount=-13 -kerning first=298 second=263 amount=-2 -kerning first=98 second=287 amount=5 -kerning first=344 second=107 amount=-2 -kerning first=121 second=224 amount=7 -kerning first=256 second=339 amount=-12 -kerning first=364 second=264 amount=2 -kerning first=194 second=288 amount=-11 -kerning first=197 second=68 amount=-10 -kerning first=79 second=300 amount=3 -kerning first=82 second=80 amount=-8 -kerning first=217 second=225 amount=2 -kerning first=102 second=237 amount=-7 -kerning first=345 second=277 amount=-2 -kerning first=260 second=289 amount=-10 -kerning first=368 second=214 amount=2 -kerning first=283 second=226 amount=2 -kerning first=198 second=238 amount=-7 -kerning first=303 second=353 amount=1 -kerning first=349 second=227 amount=3 -kerning first=44 second=106 amount=-11 -kerning first=87 second=200 amount=-6 -kerning first=330 second=240 amount=2 -kerning first=110 second=107 amount=-1 -kerning first=245 second=252 amount=-2 -kerning first=45 second=276 amount=-7 -kerning first=48 second=56 amount=2 -kerning first=68 second=213 amount=4 -kerning first=203 second=328 amount=-2 -kerning first=206 second=108 amount=-2 -kerning first=357 second=97 amount=-8 -kerning first=269 second=329 amount=-4 -kerning first=210 second=58 amount=-5 -kerning first=115 second=227 amount=3 -kerning first=358 second=267 amount=-7 -kerning first=273 second=279 amount=1 -kerning first=73 second=303 amount=-2 -kerning first=231 second=355 amount=-1 -kerning first=277 second=229 amount=2 -kerning first=320 second=293 amount=-2 -kerning first=258 second=242 amount=-12 -kerning first=363 second=357 amount=-1 -kerning first=278 second=369 amount=-2 -kerning first=58 second=266 amount=-3 -kerning first=193 second=381 amount=-7 -kerning first=370 second=87 amount=2 -kerning first=285 second=99 amount=2 -kerning first=197 second=331 amount=-13 -kerning first=200 second=111 amount=-2 -kerning first=351 second=100 amount=3 -kerning first=371 second=257 amount=2 -kerning first=86 second=293 amount=3 -kerning first=109 second=230 amount=1 -kerning first=352 second=270 amount=-3 -kerning first=8211 second=195 amount=-13 -kerning first=205 second=231 amount=-2 -kerning first=248 second=295 amount=-1 -kerning first=8212 second=335 amount=4 -kerning first=271 second=232 amount=-9 -kerning first=376 second=347 amount=-4 -kerning first=291 second=359 amount=2 -kerning first=206 second=371 amount=-2 -kerning first=114 second=320 amount=-1 -kerning first=117 second=100 amount=2 -kerning first=55 second=49 amount=-4 -kerning first=318 second=246 amount=-9 -kerning first=98 second=113 amount=5 -kerning first=256 second=195 amount=-7 -kerning first=364 second=90 amount=4 -kerning first=194 second=114 amount=-12 -kerning first=299 second=259 amount=2 -kerning first=211 second=8212 amount=3 -kerning first=345 second=103 amount=-2 -kerning first=260 second=115 amount=-11 -kerning first=280 second=272 amount=-5 -kerning first=195 second=284 amount=-11 -kerning first=323 second=336 amount=3 -kerning first=326 second=116 amount=-1 -kerning first=103 second=233 amount=2 -kerning first=261 second=285 amount=2 -kerning first=284 second=222 amount=-2 -kerning first=304 second=349 amount=-2 -kerning first=84 second=246 amount=-7 -kerning first=327 second=286 amount=3 -kerning first=330 second=66 amount=2 -kerning first=350 second=223 amount=2 -kerning first=65 second=259 amount=-10 -kerning first=88 second=196 amount=-5 -kerning first=351 second=363 amount=1 -kerning first=46 second=272 amount=-3 -kerning first=49 second=52 amount=-6 -kerning first=289 second=312 amount=2 -kerning first=204 second=324 amount=-2 -kerning first=207 second=104 amount=-2 -kerning first=89 second=336 amount=-1 -kerning first=112 second=273 amount=5 -kerning first=70 second=349 amount=-4 -kerning first=208 second=274 amount=-6 -kerning first=339 second=106 amount=-13 -kerning first=116 second=223 amount=4 -kerning first=254 second=118 amount=2 -kerning first=359 second=263 amount=1 -kerning first=192 second=67 amount=-11 -kerning first=74 second=299 amount=-1 -kerning first=77 second=79 amount=3 -kerning first=232 second=351 amount=1 -kerning first=258 second=68 amount=-10 -kerning first=59 second=262 amount=-3 -kerning first=194 second=377 amount=-7 -kerning first=102 second=326 amount=-7 -kerning first=105 second=106 amount=-11 -kerning first=86 second=119 amount=3 -kerning first=221 second=264 amount=-1 -kerning first=349 second=316 amount=1 -kerning first=267 second=108 amount=-1 -kerning first=287 second=265 amount=2 -kerning first=87 second=289 amount=2 -kerning first=333 second=109 amount=-2 -kerning first=110 second=226 amount=2 -kerning first=248 second=121 amount=-2 -kerning first=356 second=46 amount=-15 -kerning first=268 second=278 amount=-2 -kerning first=45 second=365 amount=2 -kerning first=376 second=203 amount=-4 -kerning first=71 second=82 amount=-4 -kerning first=272 second=228 amount=2 -kerning first=207 second=367 amount=-2 -kerning first=115 second=316 amount=1 -kerning first=358 second=356 amount=-8 -kerning first=234 second=254 amount=-1 -kerning first=277 second=318 amount=-1 -kerning first=192 second=330 amount=-15 -kerning first=195 second=110 amount=-13 -kerning first=77 second=342 amount=-4 -kerning first=100 second=279 amount=1 -kerning first=258 second=331 amount=-13 -kerning first=196 second=280 amount=-10 -kerning first=104 second=229 amount=2 -kerning first=347 second=269 amount=1 -kerning first=65 second=85 amount=-7 -kerning first=286 second=358 amount=-2 -kerning first=89 second=192 amount=-3 -kerning first=112 second=99 amount=2 -kerning first=8211 second=284 amount=5 -kerning first=205 second=320 amount=-2 -kerning first=208 second=100 amount=2 -kerning first=228 second=257 amount=2 -kerning first=113 second=269 amount=1 -kerning first=356 second=309 amount=-13 -kerning first=71 second=345 amount=1 -kerning first=209 second=270 amount=-6 -kerning first=360 second=259 amount=2 -kerning first=272 second=8212 amount=4 -kerning first=275 second=271 amount=2 -kerning first=75 second=295 amount=-7 -kerning first=318 second=335 amount=-9 -kerning first=98 second=232 amount=2 -kerning first=233 second=347 amount=1 -kerning first=118 second=359 amount=2 -kerning first=256 second=284 amount=-11 -kerning first=194 second=233 amount=-12 -kerning first=365 second=349 amount=1 -kerning first=280 second=361 amount=-2 -kerning first=195 second=373 amount=-13 -kerning first=83 second=195 amount=-9 -kerning first=221 second=90 amount=-2 -kerning first=103 second=322 amount=2 -kerning first=284 second=311 amount=2 -kerning first=199 second=323 amount=4 -kerning first=84 second=335 amount=-7 -kerning first=222 second=260 amount=-13 -kerning first=307 second=248 amount=1 -kerning first=268 second=104 amount=2 -kerning first=45 second=221 amount=3 -kerning first=373 second=249 amount=2 -kerning first=65 second=348 amount=-8 -kerning first=354 second=262 amount=-2 -kerning first=358 second=212 amount=-2 -kerning first=273 second=224 amount=2 -kerning first=73 second=248 amount=-2 -kerning first=339 second=225 amount=2 -kerning first=254 second=237 amount=2 -kerning first=366 second=82 amount=-2 -kerning first=58 second=211 amount=-3 -kerning first=193 second=326 amount=-13 -kerning first=78 second=338 amount=3 -kerning first=101 second=275 amount=1 -kerning first=344 second=315 amount=3 -kerning first=262 second=107 amount=2 -kerning first=197 second=276 amount=-10 -kerning first=85 second=68 amount=-6 -kerning first=328 second=108 amount=-1 -kerning first=105 second=225 amount=2 -kerning first=243 second=120 amount=-2 -kerning first=86 second=238 amount=3 -kerning first=221 second=353 amount=-4 -kerning first=332 second=58 amount=-5 -kerning first=8211 second=110 amount=2 -kerning first=267 second=227 amount=1 -kerning first=372 second=342 amount=-2 -kerning first=375 second=122 amount=4 -kerning first=353 second=355 amount=1 -kerning first=8212 second=280 amount=-7 -kerning first=294 second=84 amount=-6 -kerning first=71 second=201 amount=-2 -kerning first=206 second=316 amount=-2 -kerning first=114 second=265 amount=-2 -kerning first=357 second=305 amount=-3 -kerning first=360 second=85 amount=2 -kerning first=275 second=97 amount=2 -kerning first=295 second=254 amount=-1 -kerning first=75 second=121 amount=-4 -kerning first=213 second=46 amount=-5 -kerning first=315 second=381 amount=2 -kerning first=341 second=98 amount=-1 -kerning first=256 second=110 amount=-13 -kerning first=194 second=59 amount=-10 -kerning first=99 second=228 amount=1 -kerning first=119 second=355 amount=2 -kerning first=195 second=229 amount=-10 -kerning first=80 second=241 amount=1 -kerning first=300 second=344 amount=-2 -kerning first=261 second=230 amount=1 -kerning first=281 second=357 amount=-1 -kerning first=196 second=369 amount=-13 -kerning first=104 second=318 amount=-1 -kerning first=285 second=307 amount=3 -kerning first=65 second=204 amount=-7 -kerning first=88 second=111 amount=-2 -kerning first=354 second=88 amount=-3 -kerning first=266 second=320 amount=2 -kerning first=269 second=100 amount=1 -kerning first=374 second=245 amount=-4 -kerning first=289 second=257 amount=5 -kerning first=66 second=344 amount=-1 -kerning first=204 second=269 amount=-2 -kerning first=8211 second=373 amount=2 -kerning first=270 second=270 amount=-6 -kerning first=73 second=74 amount=-2 -kerning first=333 second=8212 amount=3 -kerning first=74 second=244 amount=-5 -kerning first=298 second=297 amount=-2 -kerning first=101 second=101 amount=1 -kerning first=236 second=246 amount=1 -kerning first=256 second=373 amount=-13 -kerning first=194 second=322 amount=-12 -kerning first=197 second=102 amount=-12 -kerning first=217 second=259 amount=2 -kerning first=102 second=271 amount=-6 -kerning first=345 second=311 amount=-1 -kerning first=260 second=323 amount=-15 -kerning first=263 second=103 amount=1 -kerning first=198 second=272 amount=-2 -kerning first=83 second=284 amount=3 -kerning first=329 second=104 amount=-1 -kerning first=244 second=116 amount=-1 -kerning first=202 second=222 amount=-6 -kerning first=307 second=337 amount=1 -kerning first=222 second=349 amount=1 -kerning first=330 second=274 amount=-6 -kerning first=8212 second=106 amount=-7 -kerning first=268 second=223 amount=3 -kerning first=376 second=118 amount=-4 -kerning first=311 second=287 amount=2 -kerning first=88 second=374 amount=2 -kerning first=111 second=311 amount=-1 -kerning first=354 second=351 amount=-10 -kerning first=207 second=312 amount=-2 -kerning first=358 second=301 amount=-2 -kerning first=296 second=250 amount=-2 -kerning first=73 second=337 amount=-2 -kerning first=339 second=314 amount=-1 -kerning first=254 second=326 amount=2 -kerning first=257 second=106 amount=-10 -kerning first=277 second=263 amount=1 -kerning first=192 second=275 amount=-12 -kerning first=77 second=287 amount=1 -kerning first=80 second=67 amount=3 -kerning first=100 second=224 amount=2 -kerning first=346 second=44 amount=-4 -kerning first=258 second=276 amount=-10 -kerning first=366 second=201 amount=-6 -kerning first=196 second=225 amount=-10 -kerning first=304 second=120 amount=-1 -kerning first=239 second=289 amount=2 -kerning first=197 second=365 amount=-13 -kerning first=328 second=227 amount=2 -kerning first=243 second=239 amount=-2 -kerning first=348 second=354 amount=-3 -kerning first=371 second=291 amount=2 -kerning first=374 second=71 amount=-1 -kerning first=66 second=200 amount=-4 -kerning first=309 second=240 amount=2 -kerning first=86 second=327 amount=2 -kerning first=89 second=107 amount=-2 -kerning first=8211 second=229 amount=4 -kerning first=267 second=316 amount=-1 -kerning first=375 second=241 amount=3 -kerning first=67 second=340 amount=-4 -kerning first=70 second=120 amount=-7 -kerning first=205 second=265 amount=-2 -kerning first=208 second=45 amount=4 -kerning first=248 second=329 amount=-3 -kerning first=356 second=254 amount=-3 -kerning first=8212 second=369 amount=2 -kerning first=376 second=381 amount=-2 -kerning first=294 second=203 amount=-6 -kerning first=71 second=290 amount=3 -kerning first=74 second=70 amount=-4 -kerning first=75 second=240 amount=-7 -kerning first=256 second=229 amount=-10 -kerning first=276 second=356 amount=-5 -kerning first=102 second=97 amount=-6 -kerning first=237 second=242 amount=1 -kerning first=342 second=357 amount=-2 -kerning first=195 second=318 amount=-12 -kerning first=198 second=98 amount=-2 -kerning first=303 second=243 amount=1 -kerning first=103 second=267 amount=2 -kerning first=84 second=280 amount=-8 -kerning first=330 second=100 amount=2 -kerning first=245 second=112 amount=-2 -kerning first=288 second=206 amount=3 -kerning first=65 second=293 amount=-12 -kerning first=311 second=113 amount=2 -kerning first=354 second=207 amount=-2 -kerning first=374 second=334 amount=-1 -kerning first=69 second=243 amount=-2 -kerning first=204 second=358 amount=-2 -kerning first=312 second=283 amount=1 -kerning first=227 second=295 amount=-1 -kerning first=112 second=307 amount=2 -kerning first=355 second=347 amount=1 -kerning first=316 second=233 amount=1 -kerning first=231 second=245 amount=-1 -kerning first=116 second=257 amount=2 -kerning first=274 second=309 amount=-10 -kerning first=192 second=101 amount=-12 -kerning first=74 second=333 amount=-5 -kerning first=77 second=113 amount=1 -kerning first=258 second=102 amount=-12 -kerning first=193 second=271 amount=-10 -kerning first=324 second=103 amount=2 -kerning first=236 second=335 amount=1 -kerning first=239 second=115 amount=1 -kerning first=121 second=347 amount=2 -kerning first=344 second=260 amount=3 -kerning first=325 second=273 amount=2 -kerning first=240 second=285 amount=2 -kerning first=348 second=210 amount=3 -kerning first=283 second=349 amount=1 -kerning first=198 second=361 amount=-6 -kerning first=372 second=287 amount=2 -kerning first=287 second=299 amount=3 -kerning first=245 second=375 amount=-2 -kerning first=356 second=80 amount=-5 -kerning first=8212 second=225 amount=4 -kerning first=268 second=312 amount=2 -kerning first=376 second=237 amount=-3 -kerning first=291 second=249 amount=2 -kerning first=68 second=336 amount=4 -kerning first=71 second=116 amount=2 -kerning first=272 second=262 amount=4 -kerning first=75 second=66 amount=-9 -kerning first=318 second=106 amount=-13 -kerning first=296 second=339 amount=-2 -kerning first=257 second=225 amount=2 -kerning first=362 second=340 amount=-2 -kerning first=365 second=120 amount=-1 -kerning first=323 second=226 amount=2 -kerning first=343 second=353 amount=-2 -kerning first=258 second=365 amount=-13 -kerning first=366 second=290 amount=2 -kerning first=284 second=82 amount=-4 -kerning first=196 second=314 amount=-12 -kerning first=84 second=106 amount=-13 -kerning first=304 second=239 amount=-2 -kerning first=347 second=303 amount=1 -kerning first=370 second=240 amount=2 -kerning first=285 second=252 amount=2 -kerning first=65 second=119 amount=-13 -kerning first=85 second=276 amount=-6 -kerning first=328 second=316 amount=-1 -kerning first=243 second=328 amount=-2 -kerning first=246 second=108 amount=-1 -kerning first=351 second=253 amount=1 -kerning first=66 second=289 amount=3 -kerning first=69 second=69 amount=-5 -kerning first=309 second=329 amount=-2 -kerning first=89 second=226 amount=-3 -kerning first=109 second=353 amount=1 -kerning first=290 second=342 amount=-4 -kerning first=70 second=239 amount=-1 -kerning first=205 second=354 amount=-2 -kerning first=228 second=291 amount=2 -kerning first=356 second=343 amount=-6 -kerning first=193 second=97 amount=-10 -kerning first=298 second=242 amount=-2 -kerning first=75 second=329 amount=-9 -kerning first=318 second=369 amount=-9 -kerning first=256 second=318 amount=-12 -kerning first=259 second=98 amount=-1 -kerning first=194 second=267 amount=-12 -kerning first=240 second=111 amount=1 -kerning first=260 second=268 amount=-11 -kerning first=218 second=344 amount=-2 -kerning first=372 second=113 amount=2 -kerning first=199 second=357 amount=2 -kerning first=84 second=369 amount=-6 -kerning first=373 second=283 amount=4 -kerning first=68 second=192 amount=-8 -kerning first=311 second=232 amount=1 -kerning first=331 second=359 amount=-1 -kerning first=246 second=371 amount=-2 -kerning first=354 second=296 amount=-2 -kerning first=272 second=88 amount=-3 -kerning first=358 second=246 amount=-7 -kerning first=211 second=207 amount=3 -kerning first=339 second=259 amount=2 -kerning first=254 second=271 amount=5 -kerning first=297 second=335 amount=1 -kerning first=300 second=115 amount=-2 -kerning first=97 second=359 amount=-1 -kerning first=301 second=285 amount=2 -kerning first=101 second=309 amount=-13 -kerning first=370 second=66 amount=-6 -kerning first=105 second=259 amount=2 -kerning first=66 second=115 amount=1 -kerning first=329 second=312 amount=-1 -kerning first=244 second=324 amount=-2 -kerning first=70 second=65 amount=-12 -kerning first=90 second=222 amount=2 -kerning first=110 second=349 amount=1 -kerning first=356 second=199 amount=-2 -kerning first=376 second=326 amount=-5 -kerning first=71 second=235 amount=3 -kerning first=229 second=287 amount=2 -kerning first=357 second=339 amount=-9 -kerning first=210 second=300 amount=3 -kerning first=318 second=225 amount=-8 -kerning first=118 second=249 amount=2 -kerning first=361 second=289 amount=2 -kerning first=364 second=69 amount=-6 -kerning first=257 second=314 amount=-1 -kerning first=195 second=263 amount=-12 -kerning first=218 second=200 amount=-6 -kerning first=241 second=107 amount=-1 -kerning first=366 second=379 amount=4 -kerning first=284 second=201 amount=-2 -kerning first=304 second=328 amount=-2 -kerning first=84 second=225 amount=-10 -kerning first=219 second=340 amount=-2 -kerning first=222 second=120 amount=-2 -kerning first=350 second=202 amount=-3 -kerning first=45 second=81 amount=5 -kerning first=373 second=109 amount=2 -kerning first=354 second=122 amount=-10 -kerning first=266 second=354 amount=-2 -kerning first=289 second=291 amount=5 -kerning first=204 second=303 amount=-2 -kerning first=89 second=315 amount=-3 -kerning first=227 second=240 amount=2 -kerning first=312 second=228 amount=2 -kerning first=112 second=252 amount=2 -kerning first=70 second=328 amount=-3 -kerning first=73 second=108 amount=-2 -kerning first=254 second=97 amount=5 -kerning first=359 second=242 amount=1 -kerning first=192 second=46 amount=-10 -kerning first=294 second=381 amount=4 -kerning first=74 second=278 amount=-5 -kerning first=320 second=98 amount=-2 -kerning first=160 second=354 amount=-12 -kerning first=58 second=71 amount=-3 -kerning first=193 second=216 amount=-11 -kerning first=298 second=331 amount=-2 -kerning first=78 second=228 amount=2 -kerning first=301 second=111 amount=1 -kerning first=98 second=355 amount=3 -kerning first=364 second=332 amount=2 -kerning first=194 second=356 amount=-20 -kerning first=302 second=281 amount=-2 -kerning first=240 second=230 amount=1 -kerning first=260 second=357 amount=-12 -kerning first=368 second=282 amount=-6 -kerning first=86 second=98 amount=3 -kerning first=221 second=243 amount=-4 -kerning first=349 second=295 amount=1 -kerning first=287 second=244 amount=2 -kerning first=87 second=268 amount=2 -kerning first=245 second=320 amount=-1 -kerning first=353 second=245 amount=1 -kerning first=45 second=344 amount=-6 -kerning first=229 second=113 amount=2 -kerning first=246 second=8211 amount=3 -kerning first=230 second=283 amount=1 -kerning first=338 second=208 amount=-2 -kerning first=115 second=295 amount=1 -kerning first=358 second=335 amount=-7 -kerning first=361 second=115 amount=1 -kerning first=273 second=347 amount=1 -kerning first=73 second=371 amount=-2 -kerning first=211 second=296 amount=3 -kerning first=234 second=233 amount=1 -kerning first=119 second=245 amount=4 -kerning first=362 second=285 amount=2 -kerning first=195 second=89 amount=-7 -kerning first=300 second=234 amount=-2 -kerning first=58 second=334 amount=-3 -kerning first=196 second=259 amount=-10 -kerning first=324 second=311 amount=-1 -kerning first=347 second=248 amount=1 -kerning first=374 second=105 amount=-3 -kerning first=289 second=117 amount=2 -kerning first=66 second=234 amount=2 -kerning first=86 second=361 amount=2 -kerning first=352 second=338 amount=3 -kerning first=8211 second=263 amount=4 -kerning first=375 second=275 amount=3 -kerning first=205 second=299 amount=-2 -kerning first=208 second=79 amount=4 -kerning first=113 second=248 amount=1 -kerning first=248 second=363 amount=-2 -kerning first=356 second=288 amount=-2 -kerning first=274 second=80 amount=-6 -kerning first=71 second=324 amount=2 -kerning first=160 second=210 amount=-3 -kerning first=75 second=274 amount=-9 -kerning first=236 second=106 amount=-11 -kerning first=121 second=118 amount=3 -kerning first=256 second=263 amount=-12 -kerning first=59 second=67 amount=-3 -kerning first=194 second=212 amount=-11 -kerning first=302 second=107 amount=-2 -kerning first=99 second=351 amount=1 -kerning first=260 second=213 amount=-11 -kerning first=280 second=340 amount=-6 -kerning first=283 second=120 amount=-2 -kerning first=195 second=352 amount=-8 -kerning first=303 second=277 amount=1 -kerning first=218 second=289 amount=2 -kerning first=221 second=69 amount=-4 -kerning first=103 second=301 amount=3 -kerning first=241 second=226 amount=2 -kerning first=349 second=121 amount=1 -kerning first=261 second=353 amount=1 -kerning first=199 second=302 amount=3 -kerning first=202 second=82 amount=-6 -kerning first=84 second=314 amount=-3 -kerning first=222 second=239 amount=2 -kerning first=307 second=227 amount=2 -kerning first=327 second=354 amount=-6 -kerning first=45 second=200 amount=-7 -kerning first=373 second=228 amount=5 -kerning first=65 second=327 amount=-15 -kerning first=88 second=264 amount=-4 -kerning first=246 second=316 amount=-1 -kerning first=46 second=340 amount=-4 -kerning first=227 second=329 amount=-3 -kerning first=335 second=254 amount=-1 -kerning first=112 second=341 amount=2 -kerning first=115 second=121 amount=1 -kerning first=296 second=110 amount=-2 -kerning first=208 second=342 amount=-3 -kerning first=316 second=267 amount=1 -kerning first=116 second=291 amount=2 -kerning first=74 second=367 amount=-4 -kerning first=235 second=229 amount=2 -kerning first=340 second=344 amount=-8 -kerning first=196 second=85 amount=-7 -kerning first=101 second=254 amount=-1 -kerning first=262 second=86 amount=4 -kerning first=282 second=243 amount=-2 -kerning first=59 second=330 amount=-5 -kerning first=309 second=100 amount=2 -kerning first=221 second=332 amount=-1 -kerning first=329 second=257 amount=2 -kerning first=352 second=194 amount=-9 -kerning first=8211 second=89 amount=3 -kerning first=375 second=101 amount=3 -kerning first=287 second=333 amount=2 -kerning first=356 second=114 amount=-6 -kerning first=8212 second=259 amount=4 -kerning first=376 second=271 amount=-3 -kerning first=291 second=283 amount=2 -kerning first=206 second=295 amount=-2 -kerning first=114 second=244 amount=-2 -kerning first=75 second=100 amount=-7 -kerning first=256 second=89 amount=-7 -kerning first=276 second=246 amount=-2 -kerning first=296 second=373 amount=-2 -kerning first=234 second=322 amount=-1 -kerning first=257 second=259 amount=2 -kerning first=195 second=208 amount=-10 -kerning first=303 second=103 amount=2 -kerning first=100 second=347 amount=1 -kerning first=346 second=197 amount=-9 -kerning first=369 second=104 amount=-1 -kerning first=284 second=116 amount=2 -kerning first=196 second=348 amount=-8 -kerning first=219 second=285 amount=2 -kerning first=222 second=65 amount=-13 -kerning first=327 second=210 amount=3 -kerning first=347 second=337 amount=1 -kerning first=370 second=274 amount=-6 -kerning first=223 second=235 amount=1 -kerning first=351 second=287 amount=3 -kerning first=354 second=67 amount=-2 -kerning first=374 second=224 amount=-3 -kerning first=289 second=236 amount=3 -kerning first=204 second=248 amount=-2 -kerning first=89 second=260 amount=-3 -kerning first=332 second=300 amount=3 -kerning first=70 second=273 amount=-3 -kerning first=208 second=198 amount=-10 -kerning first=113 second=337 amount=1 -kerning first=356 second=377 amount=-2 -kerning first=297 second=106 amount=-11 -kerning first=74 second=223 amount=2 -kerning first=209 second=338 amount=3 -kerning first=232 second=275 amount=1 -kerning first=117 second=287 amount=2 -kerning first=363 second=107 amount=-1 -kerning first=275 second=339 amount=1 -kerning first=278 second=119 amount=-2 -kerning first=75 second=363 amount=-8 -kerning first=236 second=225 amount=2 -kerning first=344 second=120 amount=-2 -kerning first=121 second=237 amount=3 -kerning first=256 second=352 amount=-8 -kerning first=279 second=289 amount=2 -kerning first=282 second=69 amount=-5 -kerning first=197 second=81 amount=-11 -kerning first=102 second=250 amount=-7 -kerning first=348 second=70 amount=-3 -kerning first=260 second=302 amount=-7 -kerning first=368 second=227 amount=2 -kerning first=198 second=251 amount=-7 -kerning first=349 second=240 amount=3 -kerning first=202 second=201 amount=-5 -kerning first=87 second=213 amount=2 -kerning first=222 second=328 amount=2 -kerning first=225 second=108 amount=-1 -kerning first=110 second=120 amount=-1 -kerning first=248 second=45 amount=3 -kerning first=8212 second=85 amount=5 -kerning first=268 second=202 amount=-2 -kerning first=376 second=97 amount=-3 -kerning first=45 second=289 amount=4 -kerning first=291 second=109 amount=2 -kerning first=68 second=226 amount=2 -kerning first=206 second=121 amount=-2 -kerning first=354 second=330 amount=-1 -kerning first=357 second=110 amount=-9 -kerning first=230 second=228 amount=2 -kerning first=115 second=240 amount=3 -kerning first=358 second=280 amount=-8 -kerning first=73 second=316 amount=-2 -kerning first=339 second=293 amount=-1 -kerning first=277 second=242 amount=1 -kerning first=192 second=254 amount=-3 -kerning first=77 second=266 amount=3 -kerning first=80 second=46 amount=-4 -kerning first=235 second=318 amount=-1 -kerning first=343 second=243 amount=-2 -kerning first=196 second=204 amount=-7 -kerning first=304 second=99 amount=-2 -kerning first=262 second=205 amount=3 -kerning first=367 second=320 amount=-1 -kerning first=370 second=100 amount=2 -kerning first=285 second=112 amount=2 -kerning first=197 second=344 amount=-17 -kerning first=82 second=356 amount=-8 -kerning first=351 second=113 amount=3 -kerning first=286 second=282 amount=-2 -kerning first=204 second=74 amount=-2 -kerning first=8211 second=208 amount=-7 -kerning first=267 second=295 amount=-1 -kerning first=70 second=99 amount=-4 -kerning first=205 second=244 amount=-2 -kerning first=356 second=233 amount=-7 -kerning first=271 second=245 amount=-9 -kerning first=71 second=269 amount=3 -kerning first=232 second=101 amount=1 -kerning first=114 second=333 amount=-2 -kerning first=117 second=113 amount=2 -kerning first=357 second=373 amount=-10 -kerning first=298 second=102 amount=-3 -kerning first=318 second=259 amount=-8 -kerning first=233 second=271 amount=2 -kerning first=118 second=283 amount=4 -kerning first=256 second=208 amount=-10 -kerning first=364 second=103 amount=2 -kerning first=276 second=335 amount=-2 -kerning first=279 second=115 amount=1 -kerning first=345 second=116 amount=-1 -kerning first=365 second=273 amount=2 -kerning first=80 second=309 amount=-10 -kerning first=103 second=246 amount=2 -kerning first=346 second=286 amount=3 -kerning first=264 second=78 amount=4 -kerning first=369 second=223 amount=4 -kerning first=84 second=259 amount=-10 -kerning first=330 second=79 amount=3 -kerning first=242 second=311 amount=-1 -kerning first=265 second=248 amount=-1 -kerning first=45 second=115 amount=4 -kerning first=285 second=375 amount=2 -kerning first=65 second=272 amount=-10 -kerning first=226 second=104 amount=-1 -kerning first=111 second=116 amount=-1 -kerning first=374 second=313 amount=-3 -kerning first=69 second=222 amount=-6 -kerning first=204 second=337 amount=-2 -kerning first=89 second=349 amount=-4 -kerning first=207 second=117 amount=-2 -kerning first=358 second=106 amount=-13 -kerning first=270 second=338 amount=4 -kerning first=208 second=287 amount=2 -kerning first=231 second=224 amount=1 -kerning first=192 second=80 amount=-17 -kerning first=297 second=225 amount=2 -kerning first=258 second=81 amount=-11 -kerning first=363 second=226 amount=2 -kerning first=298 second=365 amount=-2 -kerning first=78 second=262 amount=3 -kerning first=121 second=326 amount=3 -kerning first=197 second=200 amount=-10 -kerning first=102 second=339 amount=-8 -kerning first=286 second=108 amount=2 -kerning first=106 second=289 amount=2 -kerning first=267 second=121 amount=-1 -kerning first=205 second=70 amount=-2 -kerning first=90 second=82 amount=2 -kerning first=225 second=227 amount=2 -kerning first=330 second=342 amount=-2 -kerning first=353 second=279 amount=1 -kerning first=356 second=59 amount=-15 -kerning first=8212 second=204 amount=-5 -kerning first=376 second=216 amount=-1 -kerning first=291 second=228 amount=5 -kerning first=357 second=229 amount=-8 -kerning first=75 second=45 amount=-10 -kerning first=233 second=97 amount=2 -kerning first=118 second=109 amount=2 -kerning first=358 second=369 amount=-6 -kerning first=296 second=318 amount=-2 -kerning first=234 second=267 amount=1 -kerning first=342 second=192 amount=3 -kerning first=119 second=279 amount=4 -kerning first=280 second=111 amount=-2 -kerning first=192 second=343 amount=-12 -kerning first=258 second=344 amount=-17 -kerning first=281 second=281 amount=1 -kerning first=196 second=293 amount=-12 -kerning first=199 second=73 amount=3 -kerning first=84 second=85 amount=-1 -kerning first=285 second=231 amount=2 -kerning first=65 second=98 amount=-12 -kerning first=200 second=243 amount=-2 -kerning first=328 second=295 amount=-1 -kerning first=243 second=307 amount=-2 -kerning first=351 second=232 amount=1 -kerning first=371 second=359 amount=-1 -kerning first=66 second=268 amount=3 -kerning first=224 second=320 amount=-1 -kerning first=112 second=112 amount=2 -kerning first=227 second=100 amount=2 -kerning first=8211 second=297 amount=2 -kerning first=270 second=194 amount=-8 -kerning first=205 second=333 amount=-2 -kerning first=208 second=113 amount=2 -kerning first=356 second=322 amount=-3 -kerning first=291 second=8212 amount=4 -kerning first=294 second=271 amount=2 -kerning first=71 second=358 amount=-2 -kerning first=360 second=272 amount=-6 -kerning first=193 second=76 amount=-7 -kerning first=78 second=88 amount=3 -kerning first=98 second=245 amount=2 -kerning first=341 second=285 amount=-2 -kerning first=344 second=65 amount=3 -kerning first=364 second=222 amount=-2 -kerning first=279 second=234 amount=1 -kerning first=194 second=246 amount=-12 -kerning first=345 second=235 amount=-2 -kerning first=198 second=196 amount=-6 -kerning first=83 second=208 amount=-3 -kerning first=221 second=103 amount=-3 -kerning first=103 second=335 amount=2 -kerning first=287 second=104 amount=2 -kerning first=84 second=348 amount=-6 -kerning first=107 second=285 amount=2 -kerning first=353 second=105 amount=1 -kerning first=265 second=337 amount=-1 -kerning first=45 second=234 amount=4 -kerning first=65 second=361 amount=-13 -kerning first=354 second=275 amount=-7 -kerning first=269 second=287 amount=1 -kerning first=272 second=67 amount=4 -kerning first=292 second=224 amount=2 -kerning first=207 second=236 amount=-2 -kerning first=312 second=351 amount=1 -kerning first=338 second=68 amount=-2 -kerning first=112 second=375 amount=2 -kerning first=358 second=225 amount=-10 -kerning first=119 second=105 amount=2 -kerning first=254 second=250 amount=2 -kerning first=57 second=54 amount=2 -kerning first=192 second=199 amount=-11 -kerning first=77 second=211 amount=3 -kerning first=258 second=200 amount=-10 -kerning first=281 second=107 amount=-1 -kerning first=193 second=339 amount=-12 -kerning first=196 second=119 amount=-13 -kerning first=347 second=108 amount=1 -kerning first=197 second=289 amount=-10 -kerning first=200 second=69 amount=-5 -kerning first=85 second=81 amount=2 -kerning first=220 second=226 amount=2 -kerning first=240 second=353 amount=1 -kerning first=348 second=278 amount=-3 -kerning first=266 second=70 amount=-2 -kerning first=329 second=291 amount=2 -kerning first=267 second=240 amount=1 -kerning first=44 second=327 amount=-5 -kerning first=287 second=367 amount=2 -kerning first=70 second=44 amount=-8 -kerning first=225 second=316 amount=-1 -kerning first=333 second=241 amount=-2 -kerning first=113 second=108 amount=-1 -kerning first=248 second=253 amount=-2 -kerning first=376 second=305 amount=-3 -kerning first=51 second=57 amount=2 -kerning first=294 second=97 amount=2 -kerning first=206 second=329 amount=-4 -kerning first=160 second=70 amount=-9 -kerning first=72 second=354 amount=-6 -kerning first=213 second=59 amount=-5 -kerning first=341 second=111 amount=-2 -kerning first=118 second=228 amount=5 -kerning first=276 second=280 amount=-5 -kerning first=194 second=72 amount=-4 -kerning first=319 second=344 amount=-4 -kerning first=257 second=293 amount=-1 -kerning first=260 second=73 amount=-7 -kerning first=195 second=242 amount=-12 -kerning first=300 second=357 amount=-2 -kerning first=366 second=358 amount=-6 -kerning first=304 second=307 amount=-2 -kerning first=84 second=204 amount=-2 -kerning first=107 second=111 amount=1 -kerning first=347 second=371 amount=1 -kerning first=285 second=320 amount=2 -kerning first=85 second=344 amount=-2 -kerning first=223 second=269 amount=1 -kerning first=108 second=281 amount=1 -kerning first=354 second=101 amount=-7 -kerning first=269 second=113 amount=1 -kerning first=374 second=258 amount=-3 -kerning first=335 second=114 amount=-2 -kerning first=112 second=231 amount=2 -kerning first=352 second=8212 amount=4 -kerning first=355 second=271 amount=2 -kerning first=70 second=307 amount=-1 -kerning first=228 second=359 amount=-1 -kerning first=74 second=257 amount=-5 -kerning first=232 second=309 amount=-13 -kerning first=193 second=195 amount=-7 -kerning first=236 second=259 amount=2 -kerning first=118 second=8212 amount=4 -kerning first=121 second=271 amount=7 -kerning first=194 second=335 amount=-12 -kerning first=197 second=115 amount=-11 -kerning first=217 second=272 amount=-6 -kerning first=260 second=336 amount=-11 -kerning first=263 second=116 amount=-1 -kerning first=283 second=273 amount=2 -kerning first=198 second=285 amount=-3 -kerning first=86 second=77 amount=5 -kerning first=221 second=222 amount=-1 -kerning first=106 second=234 amount=1 -kerning first=241 second=349 amount=1 -kerning first=287 second=223 amount=5 -kerning first=330 second=287 amount=2 -kerning first=245 second=299 amount=-2 -kerning first=353 second=224 amount=3 -kerning first=8212 second=119 amount=2 -kerning first=373 second=351 amount=1 -kerning first=45 second=323 amount=-2 -kerning first=68 second=260 amount=-8 -kerning first=203 second=375 amount=-3 -kerning first=226 second=312 amount=-1 -kerning first=111 second=324 amount=-2 -kerning first=114 second=104 amount=-1 -kerning first=52 second=53 amount=-3 -kerning first=358 second=314 amount=-3 -kerning first=276 second=106 amount=-10 -kerning first=296 second=263 amount=-2 -kerning first=342 second=107 amount=-2 -kerning first=119 second=224 amount=5 -kerning first=254 second=339 amount=2 -kerning first=362 second=264 amount=2 -kerning first=192 second=288 amount=-11 -kerning first=195 second=68 amount=-10 -kerning first=80 second=80 amount=-7 -kerning first=343 second=277 amount=-2 -kerning first=258 second=289 amount=-10 -kerning first=366 second=214 amount=2 -kerning first=281 second=226 amount=2 -kerning first=301 second=353 amount=1 -kerning first=327 second=70 amount=-2 -kerning first=347 second=227 amount=3 -kerning first=85 second=200 amount=-6 -kerning first=328 second=240 amount=2 -kerning first=243 second=252 amount=-2 -kerning first=286 second=316 amount=2 -kerning first=201 second=328 amount=-2 -kerning first=204 second=108 amount=-2 -kerning first=89 second=120 amount=-7 -kerning first=355 second=97 amount=2 -kerning first=8211 second=242 amount=4 -kerning first=267 second=329 amount=-4 -kerning first=208 second=58 amount=-3 -kerning first=113 second=227 amount=2 -kerning first=356 second=267 amount=-7 -kerning first=271 second=279 amount=-9 -kerning first=71 second=303 amount=1 -kerning first=209 second=228 amount=2 -kerning first=229 second=355 amount=-1 -kerning first=275 second=229 amount=2 -kerning first=121 second=97 amount=7 -kerning first=256 second=242 amount=-12 -kerning first=361 second=357 amount=-1 -kerning first=276 second=369 amount=-2 -kerning first=102 second=110 amount=-7 -kerning first=260 second=192 amount=-7 -kerning first=368 second=87 amount=2 -kerning first=283 second=99 amount=1 -kerning first=195 second=331 amount=-13 -kerning first=198 second=111 amount=-5 -kerning first=349 second=100 amount=3 -kerning first=369 second=257 amount=2 -kerning first=84 second=293 amount=-3 -kerning first=330 second=113 amount=2 -kerning first=107 second=230 amount=1 -kerning first=350 second=270 amount=-3 -kerning first=68 second=86 amount=2 -kerning first=88 second=243 amount=-2 -kerning first=246 second=295 amount=-1 -kerning first=374 second=347 amount=-4 -kerning first=289 second=359 amount=2 -kerning first=204 second=371 amount=-2 -kerning first=112 second=320 amount=3 -kerning first=115 second=100 amount=3 -kerning first=53 second=49 amount=-3 -kerning first=316 second=246 amount=1 -kerning first=362 second=90 amount=4 -kerning first=192 second=114 amount=-12 -kerning first=297 second=259 amount=2 -kerning first=343 second=103 amount=-2 -kerning first=258 second=115 amount=-11 -kerning first=278 second=272 amount=-5 -kerning first=193 second=284 amount=-11 -kerning first=324 second=116 amount=-1 -kerning first=101 second=233 amount=1 -kerning first=259 second=285 amount=2 -kerning first=59 second=309 amount=-11 -kerning first=197 second=234 amount=-12 -kerning first=282 second=222 amount=-6 -kerning first=302 second=349 amount=-2 -kerning first=325 second=286 amount=3 -kerning first=102 second=373 amount=-7 -kerning first=348 second=223 amount=2 -kerning first=86 second=196 amount=-3 -kerning first=221 second=311 amount=-2 -kerning first=109 second=103 amount=2 -kerning first=349 second=363 amount=1 -kerning first=8211 second=68 amount=-7 -kerning first=44 second=272 amount=-3 -kerning first=287 second=312 amount=2 -kerning first=67 second=209 amount=4 -kerning first=202 second=324 amount=-2 -kerning first=205 second=104 amount=-2 -kerning first=87 second=336 amount=2 -kerning first=110 second=273 amount=2 -kerning first=8212 second=238 amount=2 -kerning first=268 second=325 amount=4 -kerning first=271 second=105 amount=-3 -kerning first=337 second=106 amount=-13 -kerning first=114 second=223 amount=2 -kerning first=357 second=263 amount=-9 -kerning first=75 second=79 amount=-8 -kerning first=318 second=119 amount=-10 -kerning first=230 second=351 amount=1 -kerning first=338 second=276 amount=-4 -kerning first=115 second=363 amount=1 -kerning first=256 second=68 amount=-10 -kerning first=192 second=377 amount=-7 -kerning first=80 second=199 amount=3 -kerning first=196 second=327 amount=-15 -kerning first=199 second=107 amount=2 -kerning first=304 second=252 amount=-2 -kerning first=84 second=119 amount=-5 -kerning first=222 second=44 amount=-8 -kerning first=347 second=316 amount=1 -kerning first=265 second=108 amount=-1 -kerning first=285 second=265 amount=2 -kerning first=85 second=289 amount=2 -kerning first=88 second=69 amount=-2 -kerning first=328 second=329 amount=-3 -kerning first=108 second=226 amount=2 -kerning first=246 second=121 amount=-2 -kerning first=354 second=46 amount=-15 -kerning first=266 second=278 amount=-2 -kerning first=374 second=203 amount=-4 -kerning first=69 second=82 amount=-6 -kerning first=8211 second=331 amount=2 -kerning first=270 second=228 amount=2 -kerning first=290 second=355 amount=2 -kerning first=205 second=367 amount=-2 -kerning first=113 second=316 amount=-1 -kerning first=356 second=356 amount=-8 -kerning first=74 second=202 amount=-5 -kerning first=232 second=254 amount=-1 -kerning first=337 second=369 amount=-2 -kerning first=160 second=278 amount=-6 -kerning first=275 second=318 amount=-1 -kerning first=193 second=110 amount=-13 -kerning first=75 second=342 amount=-7 -kerning first=78 second=122 amount=3 -kerning first=98 second=279 amount=2 -kerning first=256 second=331 amount=-13 -kerning first=194 second=280 amount=-10 -kerning first=102 second=229 amount=-6 -kerning first=345 second=269 amount=-2 -kerning first=103 second=369 amount=2 -kerning first=284 second=358 amount=-2 -kerning first=222 second=307 amount=2 -kerning first=376 second=76 amount=-3 -kerning first=45 second=268 amount=5 -kerning first=48 second=48 amount=2 -kerning first=311 second=245 amount=1 -kerning first=88 second=332 amount=-4 -kerning first=226 second=257 amount=2 -kerning first=354 second=309 amount=-13 -kerning first=358 second=259 amount=-10 -kerning first=270 second=8212 amount=4 -kerning first=273 second=271 amount=2 -kerning first=73 second=295 amount=-2 -kerning first=316 second=335 amount=1 -kerning first=231 second=347 amount=1 -kerning first=192 second=233 amount=-12 -kerning first=120 second=309 amount=-9 -kerning first=258 second=234 amount=-12 -kerning first=363 second=349 amount=1 -kerning first=278 second=361 amount=-2 -kerning first=193 second=373 amount=-13 -kerning first=219 second=90 amount=4 -kerning first=101 second=322 amount=-1 -kerning first=370 second=79 amount=2 -kerning first=197 second=323 amount=-15 -kerning first=82 second=335 amount=-2 -kerning first=266 second=104 amount=2 -kerning first=86 second=285 amount=6 -kerning first=89 second=65 amount=-3 -kerning first=352 second=262 amount=3 -kerning first=67 second=298 amount=3 -kerning first=356 second=212 amount=-2 -kerning first=8212 second=327 amount=-2 -kerning first=271 second=224 amount=-8 -kerning first=376 second=339 amount=-4 -kerning first=291 second=351 amount=2 -kerning first=71 second=248 amount=3 -kerning first=206 second=363 amount=-2 -kerning first=318 second=238 amount=-3 -kerning first=98 second=105 amount=2 -kerning first=364 second=82 amount=-2 -kerning first=342 second=315 amount=3 -kerning first=260 second=107 amount=-12 -kerning first=195 second=276 amount=-10 -kerning first=80 second=288 amount=3 -kerning first=83 second=68 amount=-3 -kerning first=326 second=108 amount=-1 -kerning first=103 second=225 amount=5 -kerning first=241 second=120 amount=-1 -kerning first=84 second=238 amount=-2 -kerning first=327 second=278 amount=-6 -kerning first=265 second=227 amount=1 -kerning first=370 second=342 amount=-2 -kerning first=331 second=228 amount=2 -kerning first=351 second=355 amount=1 -kerning first=46 second=264 amount=-3 -kerning first=292 second=84 amount=-6 -kerning first=69 second=201 amount=-5 -kerning first=204 second=316 amount=-2 -kerning first=89 second=328 amount=-5 -kerning first=112 second=265 amount=2 -kerning first=358 second=85 amount=-1 -kerning first=273 second=97 amount=2 -kerning first=70 second=341 amount=-3 -kerning first=73 second=121 amount=-2 -kerning first=208 second=266 amount=4 -kerning first=211 second=46 amount=-5 -kerning first=313 second=381 amount=2 -kerning first=339 second=98 amount=-1 -kerning first=254 second=110 amount=2 -kerning first=192 second=59 amount=-10 -kerning first=74 second=291 amount=-5 -kerning first=77 second=71 amount=3 -kerning first=320 second=111 amount=-1 -kerning first=97 second=228 amount=2 -kerning first=117 second=355 amount=-1 -kerning first=58 second=84 amount=-10 -kerning first=193 second=229 amount=-10 -kerning first=298 second=344 amount=-2 -kerning first=259 second=230 amount=1 -kerning first=279 second=357 amount=-1 -kerning first=194 second=369 amount=-13 -kerning first=240 second=243 amount=1 -kerning first=286 second=87 amount=4 -kerning first=198 second=319 amount=-3 -kerning first=86 second=111 amount=3 -kerning first=221 second=256 amount=-3 -kerning first=264 second=320 amount=2 -kerning first=267 second=100 amount=1 -kerning first=287 second=257 amount=5 -kerning first=268 second=270 amount=-2 -kerning first=376 second=195 amount=-3 -kerning first=207 second=359 amount=-2 -kerning first=358 second=348 amount=-6 -kerning first=296 second=297 amount=-2 -kerning first=234 second=246 amount=1 -kerning first=254 second=373 amount=2 -kerning first=192 second=322 amount=-12 -kerning first=195 second=102 amount=-12 -kerning first=77 second=334 amount=3 -kerning first=80 second=114 amount=1 -kerning first=100 second=271 amount=2 -kerning first=343 second=311 amount=-1 -kerning first=258 second=323 amount=-15 -kerning first=261 second=103 amount=2 -kerning first=196 second=272 amount=-10 -kerning first=242 second=116 amount=-1 -kerning first=65 second=77 amount=-8 -kerning first=200 second=222 amount=-6 -kerning first=266 second=223 amount=3 -kerning first=374 second=118 amount=-4 -kerning first=309 second=287 amount=2 -kerning first=109 second=311 amount=-1 -kerning first=8211 second=276 amount=-7 -kerning first=290 second=300 amount=3 -kerning first=70 second=197 amount=-12 -kerning first=205 second=312 amount=-2 -kerning first=356 second=301 amount=-2 -kerning first=71 second=337 amount=3 -kerning first=74 second=117 amount=-4 -kerning first=209 second=262 amount=3 -kerning first=337 second=314 amount=-1 -kerning first=275 second=263 amount=1 -kerning first=75 second=287 amount=-7 -kerning first=78 second=67 amount=3 -kerning first=98 second=224 amount=5 -kerning first=233 second=339 amount=1 -kerning first=118 second=351 amount=2 -kerning first=256 second=276 amount=-10 -kerning first=364 second=201 amount=-6 -kerning first=59 second=80 amount=-4 -kerning first=194 second=225 amount=-10 -kerning first=302 second=120 amount=-1 -kerning first=237 second=289 amount=2 -kerning first=260 second=226 amount=-10 -kerning first=195 second=365 amount=-13 -kerning first=80 second=377 amount=-4 -kerning first=221 second=82 amount=-1 -kerning first=326 second=227 amount=2 -kerning first=103 second=314 amount=2 -kerning first=346 second=354 amount=-3 -kerning first=369 second=291 amount=2 -kerning first=84 second=327 amount=-1 -kerning first=307 second=240 amount=2 -kerning first=265 second=316 amount=-1 -kerning first=373 second=241 amount=2 -kerning first=45 second=213 amount=5 -kerning first=65 second=340 amount=-17 -kerning first=68 second=120 amount=-3 -kerning first=88 second=277 amount=-2 -kerning first=246 second=329 amount=-3 -kerning first=354 second=254 amount=-3 -kerning first=272 second=46 amount=-3 -kerning first=374 second=381 amount=-2 -kerning first=292 second=203 amount=-6 -kerning first=72 second=70 amount=-2 -kerning first=358 second=204 amount=-2 -kerning first=254 second=229 amount=5 -kerning first=274 second=356 amount=-5 -kerning first=382 second=281 amount=1 -kerning first=100 second=97 amount=2 -kerning first=340 second=357 amount=-2 -kerning first=120 second=254 amount=-2 -kerning first=58 second=203 amount=-4 -kerning first=193 second=318 amount=-12 -kerning first=196 second=98 amount=-12 -kerning first=301 second=243 amount=1 -kerning first=101 second=267 amount=1 -kerning first=197 second=268 amount=-11 -kerning first=328 second=100 amount=2 -kerning first=243 second=112 amount=-2 -kerning first=286 second=206 amount=3 -kerning first=309 second=113 amount=2 -kerning first=86 second=230 amount=4 -kerning first=221 second=345 amount=-5 -kerning first=375 second=114 amount=3 -kerning first=202 second=358 amount=-5 -kerning first=225 second=295 amount=-1 -kerning first=8212 second=272 amount=-7 -kerning first=268 second=359 amount=2 -kerning first=376 second=284 amount=-1 -kerning first=209 second=88 amount=3 -kerning first=114 second=257 amount=-2 -kerning first=357 second=297 amount=-3 -kerning first=272 second=309 amount=-12 -kerning first=75 second=113 amount=-7 -kerning first=256 second=102 amount=-12 -kerning first=234 second=335 amount=1 -kerning first=237 second=115 amount=1 -kerning first=119 second=347 amount=2 -kerning first=342 second=260 amount=3 -kerning first=323 second=273 amount=2 -kerning first=238 second=285 amount=2 -kerning first=346 second=210 amount=3 -kerning first=281 second=349 amount=1 -kerning first=196 second=361 amount=-13 -kerning first=327 second=223 amount=2 -kerning first=370 second=287 amount=2 -kerning first=285 second=299 amount=3 -kerning first=65 second=196 amount=-7 -kerning first=223 second=248 amount=1 -kerning first=243 second=375 amount=-2 -kerning first=354 second=80 amount=-5 -kerning first=266 second=312 amount=2 -kerning first=46 second=209 amount=-5 -kerning first=374 second=237 amount=-3 -kerning first=289 second=249 amount=2 -kerning first=89 second=273 amount=-3 -kerning first=8211 second=365 amount=2 -kerning first=270 second=262 amount=4 -kerning first=208 second=211 amount=4 -kerning first=316 second=106 amount=-12 -kerning first=231 second=118 amount=-1 -kerning first=74 second=236 amount=-1 -kerning first=360 second=340 amount=-2 -kerning first=363 second=120 amount=-1 -kerning first=341 second=353 amount=-2 -kerning first=121 second=250 amount=3 -kerning first=256 second=365 amount=-13 -kerning first=364 second=290 amount=2 -kerning first=282 second=82 amount=-6 -kerning first=59 second=199 amount=-3 -kerning first=194 second=314 amount=-12 -kerning first=302 second=239 amount=-2 -kerning first=102 second=263 amount=-8 -kerning first=368 second=240 amount=2 -kerning first=198 second=264 amount=-7 -kerning first=83 second=276 amount=-3 -kerning first=221 second=201 amount=-4 -kerning first=326 second=316 amount=-1 -kerning first=244 second=108 amount=-1 -kerning first=349 second=253 amount=1 -kerning first=67 second=69 amount=-2 -kerning first=307 second=329 amount=-2 -kerning first=87 second=226 amount=2 -kerning first=330 second=266 amount=3 -kerning first=107 second=353 amount=1 -kerning first=45 second=302 amount=-5 -kerning first=376 second=110 amount=-5 -kerning first=203 second=354 amount=-5 -kerning first=311 second=279 amount=1 -kerning first=226 second=291 amount=2 -kerning first=354 second=343 amount=-6 -kerning first=269 second=355 amount=-1 -kerning first=115 second=253 amount=1 -kerning first=358 second=293 amount=-3 -kerning first=296 second=242 amount=-2 -kerning first=73 second=329 amount=-4 -kerning first=254 second=318 amount=3 -kerning first=257 second=98 amount=-1 -kerning first=192 second=267 amount=-12 -kerning first=80 second=59 amount=-4 -kerning first=238 second=111 amount=1 -kerning first=258 second=268 amount=-11 -kerning first=304 second=112 amount=-2 -kerning first=370 second=113 amount=2 -kerning first=197 second=357 amount=-12 -kerning first=286 second=295 amount=2 -kerning first=66 second=192 amount=-5 -kerning first=309 second=232 amount=1 -kerning first=86 second=319 amount=4 -kerning first=89 second=99 amount=-4 -kerning first=329 second=359 amount=-1 -kerning first=244 second=371 amount=-2 -kerning first=270 second=88 amount=-3 -kerning first=375 second=233 amount=3 -kerning first=8211 second=221 amount=3 -kerning first=70 second=112 amount=-3 -kerning first=356 second=246 amount=-7 -kerning first=8212 second=361 amount=2 -kerning first=376 second=373 amount=-4 -kerning first=71 second=282 amount=-2 -kerning first=298 second=115 amount=-2 -kerning first=75 second=232 amount=-10 -kerning first=299 second=285 amount=2 -kerning first=99 second=309 amount=-11 -kerning first=237 second=234 amount=1 -kerning first=368 second=66 amount=-6 -kerning first=198 second=90 amount=-3 -kerning first=303 second=235 amount=1 -kerning first=103 second=259 amount=5 -kerning first=261 second=311 amount=-1 -kerning first=304 second=375 amount=-2 -kerning first=84 second=272 amount=-8 -kerning first=222 second=197 amount=-13 -kerning first=242 second=324 amount=-2 -kerning first=245 second=104 amount=-1 -kerning first=65 second=285 amount=-10 -kerning first=68 second=65 amount=-8 -kerning first=223 second=337 amount=1 -kerning first=108 second=349 amount=1 -kerning first=354 second=199 amount=-2 -kerning first=374 second=326 amount=-5 -kerning first=312 second=275 amount=1 -kerning first=227 second=287 amount=2 -kerning first=112 second=299 amount=2 -kerning first=355 second=339 amount=1 -kerning first=358 second=119 amount=-5 -kerning first=70 second=375 amount=-3 -kerning first=316 second=225 amount=2 -kerning first=359 second=289 amount=2 -kerning first=362 second=69 amount=-6 -kerning first=77 second=105 amount=1 -kerning first=193 second=263 amount=-12 -kerning first=121 second=339 amount=3 -kerning first=364 second=379 amount=4 -kerning first=282 second=201 amount=-5 -kerning first=59 second=288 amount=-3 -kerning first=197 second=213 amount=-11 -kerning first=302 second=328 amount=-2 -kerning first=217 second=340 amount=-2 -kerning first=240 second=277 amount=1 -kerning first=348 second=202 amount=-3 -kerning first=198 second=353 amount=-4 -kerning first=221 second=290 amount=-1 -kerning first=264 second=354 amount=-2 -kerning first=287 second=291 amount=5 -kerning first=225 second=240 amount=2 -kerning first=245 second=367 amount=-2 -kerning first=268 second=304 amount=3 -kerning first=376 second=229 amount=-3 -kerning first=291 second=241 amount=2 -kerning first=71 second=108 amount=2 -kerning first=206 second=253 amount=-2 -kerning first=357 second=242 amount=-9 -kerning first=292 second=381 amount=4 -kerning first=72 second=278 amount=-6 -kerning first=75 second=58 amount=-5 -kerning first=296 second=331 amount=-2 -kerning first=299 second=111 amount=1 -kerning first=362 second=332 amount=2 -kerning first=192 second=356 amount=-20 -kerning first=300 second=281 amount=-2 -kerning first=258 second=357 amount=-12 -kerning first=366 second=282 amount=-6 -kerning first=199 second=86 amount=4 -kerning first=304 second=231 amount=-2 -kerning first=84 second=98 amount=-3 -kerning first=347 second=295 amount=1 -kerning first=65 second=111 amount=-12 -kerning first=285 second=244 amount=2 -kerning first=85 second=268 amount=2 -kerning first=243 second=320 amount=-1 -kerning first=351 second=245 amount=1 -kerning first=66 second=281 amount=2 -kerning first=312 second=101 amount=1 -kerning first=227 second=113 amount=2 -kerning first=244 second=8211 amount=3 -kerning first=70 second=231 amount=-4 -kerning first=113 second=295 amount=-1 -kerning first=356 second=335 amount=-7 -kerning first=359 second=115 amount=1 -kerning first=271 second=347 amount=-8 -kerning first=71 second=371 amount=2 -kerning first=232 second=233 amount=1 -kerning first=360 second=285 amount=2 -kerning first=193 second=89 amount=-7 -kerning first=298 second=234 amount=-2 -kerning first=318 second=361 amount=-9 -kerning first=194 second=259 amount=-10 -kerning first=76 second=8212 amount=-5 -kerning first=240 second=103 amount=2 -kerning first=345 second=248 amount=-2 -kerning first=260 second=260 amount=-7 -kerning first=221 second=116 amount=-2 -kerning first=241 second=273 amount=2 -kerning first=287 second=117 amount=2 -kerning first=84 second=361 amount=-6 -kerning first=222 second=286 amount=4 -kerning first=330 second=211 amount=3 -kerning first=245 second=223 amount=2 -kerning first=350 second=338 amount=3 -kerning first=353 second=118 amount=1 -kerning first=373 second=275 amount=4 -kerning first=311 second=224 amount=2 -kerning first=331 second=351 amount=1 -kerning first=246 second=363 amount=-2 -kerning first=354 second=288 amount=-2 -kerning first=272 second=80 amount=-5 -kerning first=69 second=324 amount=-2 -kerning first=207 second=249 amount=-2 -kerning first=358 second=238 amount=-2 -kerning first=234 second=106 amount=-13 -kerning first=119 second=118 amount=3 -kerning first=254 second=263 amount=2 -kerning first=192 second=212 amount=-11 -kerning first=300 second=107 amount=-2 -kerning first=77 second=224 amount=1 -kerning first=97 second=351 amount=1 -kerning first=258 second=213 amount=-11 -kerning first=278 second=340 amount=-6 -kerning first=281 second=120 amount=-2 -kerning first=193 second=352 amount=-8 -kerning first=301 second=277 amount=1 -kerning first=219 second=69 amount=-6 -kerning first=239 second=226 amount=2 -kerning first=347 second=121 amount=1 -kerning first=259 second=353 amount=1 -kerning first=197 second=302 amount=-7 -kerning first=200 second=82 amount=-6 -kerning first=82 second=314 amount=-2 -kerning first=305 second=227 amount=2 -kerning first=325 second=354 amount=-6 -kerning first=371 second=228 amount=2 -kerning first=86 second=264 amount=5 -kerning first=89 second=44 amount=-5 -kerning first=221 second=379 amount=-2 -kerning first=244 second=316 amount=-1 -kerning first=44 second=340 amount=-4 -kerning first=225 second=329 amount=-3 -kerning first=333 second=254 amount=-1 -kerning first=376 second=318 amount=-2 -kerning first=71 second=227 amount=5 -kerning first=206 second=342 amount=-2 -kerning first=209 second=122 amount=3 -kerning first=114 second=291 amount=-2 -kerning first=357 second=331 amount=-9 -kerning first=160 second=83 amount=-3 -kerning first=233 second=229 amount=2 -kerning first=338 second=344 amount=-7 -kerning first=118 second=241 amount=2 -kerning first=194 second=85 amount=-7 -kerning first=99 second=254 amount=-1 -kerning first=260 second=86 amount=-7 -kerning first=280 second=243 amount=-2 -kerning first=199 second=205 amount=3 -kerning first=304 second=320 amount=-2 -kerning first=307 second=100 amount=2 -kerning first=222 second=112 amount=1 -kerning first=327 second=257 amount=2 -kerning first=350 second=194 amount=-9 -kerning first=45 second=73 amount=-5 -kerning first=373 second=101 amount=4 -kerning first=285 second=333 amount=2 -kerning first=65 second=230 amount=-10 -kerning first=354 second=114 amount=-6 -kerning first=374 second=271 amount=-3 -kerning first=289 second=283 amount=2 -kerning first=204 second=295 amount=-2 -kerning first=89 second=307 amount=-3 -kerning first=112 second=244 amount=2 -kerning first=70 second=320 amount=-2 -kerning first=359 second=234 amount=1 -kerning first=274 second=246 amount=-2 -kerning first=71 second=8211 amount=4 -kerning first=74 second=270 amount=-5 -kerning first=232 second=322 amount=-1 -kerning first=160 second=346 amount=-3 -kerning first=193 second=208 amount=-10 -kerning first=301 second=103 amount=2 -kerning first=98 second=347 amount=2 -kerning first=344 second=197 amount=3 -kerning first=367 second=104 amount=-1 -kerning first=194 second=348 amount=-8 -kerning first=217 second=285 amount=2 -kerning first=325 second=210 amount=3 -kerning first=102 second=297 amount=-7 -kerning first=345 second=337 amount=-2 -kerning first=260 second=349 amount=-11 -kerning first=368 second=274 amount=-6 -kerning first=286 second=66 amount=-2 -kerning first=349 second=287 amount=3 -kerning first=352 second=67 amount=3 -kerning first=372 second=224 amount=2 -kerning first=287 second=236 amount=3 -kerning first=202 second=248 amount=-2 -kerning first=222 second=375 amount=1 -kerning first=245 second=312 amount=-2 -kerning first=353 second=237 amount=1 -kerning first=45 second=336 amount=5 -kerning first=68 second=273 amount=2 -kerning first=354 second=377 amount=-2 -kerning first=272 second=199 amount=4 -kerning first=295 second=106 amount=-10 -kerning first=72 second=223 amount=2 -kerning first=230 second=275 amount=1 -kerning first=338 second=200 amount=-4 -kerning first=115 second=287 amount=3 -kerning first=358 second=327 amount=-1 -kerning first=361 second=107 amount=-1 -kerning first=273 second=339 amount=1 -kerning first=276 second=119 amount=-2 -kerning first=73 second=363 amount=-2 -kerning first=234 second=225 amount=2 -kerning first=342 second=120 amount=-2 -kerning first=119 second=237 amount=2 -kerning first=277 second=289 amount=2 -kerning first=280 second=69 amount=-5 -kerning first=195 second=81 amount=-11 -kerning first=346 second=70 amount=-3 -kerning first=258 second=302 amount=-7 -kerning first=366 second=227 amount=2 -kerning first=347 second=240 amount=3 -kerning first=200 second=201 amount=-5 -kerning first=85 second=213 amount=2 -kerning first=108 second=120 amount=2 -kerning first=246 second=45 amount=3 -kerning first=266 second=202 amount=-2 -kerning first=374 second=97 amount=-3 -kerning first=46 second=69 amount=-4 -kerning first=289 second=109 amount=2 -kerning first=66 second=226 amount=3 -kerning first=204 second=121 amount=-2 -kerning first=86 second=353 amount=3 -kerning first=375 second=267 amount=3 -kerning first=208 second=71 amount=4 -kerning first=228 second=228 amount=2 -kerning first=113 second=240 amount=2 -kerning first=248 second=355 amount=-1 -kerning first=356 second=280 amount=-8 -kerning first=294 second=229 amount=2 -kerning first=71 second=316 amount=2 -kerning first=337 second=293 amount=-1 -kerning first=160 second=202 amount=-6 -kerning first=275 second=242 amount=1 -kerning first=75 second=266 amount=-8 -kerning first=233 second=318 amount=-1 -kerning first=341 second=243 amount=-2 -kerning first=121 second=110 amount=3 -kerning first=194 second=204 amount=-7 -kerning first=302 second=99 amount=-2 -kerning first=260 second=205 amount=-7 -kerning first=365 second=320 amount=-1 -kerning first=368 second=100 amount=2 -kerning first=195 second=344 amount=-17 -kerning first=303 second=269 amount=1 -kerning first=80 second=356 amount=-9 -kerning first=103 second=293 amount=2 -kerning first=349 second=113 amount=3 -kerning first=284 second=282 amount=-2 -kerning first=107 second=243 amount=1 -kerning first=265 second=295 amount=-1 -kerning first=45 second=192 amount=-13 -kerning first=65 second=319 amount=-7 -kerning first=203 second=244 amount=-2 -kerning first=88 second=256 amount=-5 -kerning first=354 second=233 amount=-7 -kerning first=269 second=245 amount=-1 -kerning first=46 second=332 amount=-3 -kerning first=312 second=309 amount=-12 -kerning first=230 second=101 amount=1 -kerning first=112 second=333 amount=2 -kerning first=115 second=113 amount=3 -kerning first=296 second=102 amount=-3 -kerning first=208 second=334 amount=4 -kerning first=316 second=259 amount=2 -kerning first=231 second=271 amount=1 -kerning first=362 second=103 amount=2 -kerning first=274 second=335 amount=-2 -kerning first=277 second=115 amount=1 -kerning first=343 second=116 amount=-1 -kerning first=363 second=273 amount=2 -kerning first=196 second=77 amount=-8 -kerning first=78 second=309 amount=-12 -kerning first=101 second=246 amount=1 -kerning first=121 second=373 amount=3 -kerning first=262 second=78 amount=4 -kerning first=367 second=223 amount=4 -kerning first=240 second=311 amount=-1 -kerning first=263 second=248 amount=-1 -kerning first=86 second=209 amount=2 -kerning first=221 second=324 amount=-5 -kerning first=224 second=104 amount=-1 -kerning first=109 second=116 amount=-1 -kerning first=8211 second=81 amount=5 -kerning first=67 second=222 amount=-2 -kerning first=202 second=337 amount=-2 -kerning first=205 second=117 amount=-2 -kerning first=353 second=326 amount=1 -kerning first=356 second=106 amount=-13 -kerning first=271 second=118 amount=-10 -kerning first=376 second=263 amount=-4 -kerning first=8212 second=251 amount=2 -kerning first=291 second=275 amount=2 -kerning first=209 second=67 amount=3 -kerning first=229 second=224 amount=2 -kerning first=337 second=119 amount=-2 -kerning first=272 second=288 amount=4 -kerning first=295 second=225 amount=2 -kerning first=256 second=81 amount=-11 -kerning first=361 second=226 amount=2 -kerning first=296 second=365 amount=-2 -kerning first=234 second=314 amount=-1 -kerning first=119 second=326 amount=2 -kerning first=122 second=106 amount=-9 -kerning first=195 second=200 amount=-10 -kerning first=80 second=212 amount=3 -kerning first=100 second=339 amount=1 -kerning first=103 second=119 amount=2 -kerning first=284 second=108 amount=2 -kerning first=196 second=340 amount=-17 -kerning first=304 second=265 amount=-2 -kerning first=327 second=202 amount=-6 -kerning first=104 second=289 amount=2 -kerning first=265 second=121 amount=-1 -kerning first=370 second=266 amount=2 -kerning first=203 second=70 amount=-6 -kerning first=223 second=227 amount=2 -kerning first=351 second=279 amount=1 -kerning first=354 second=59 amount=-15 -kerning first=374 second=216 amount=-1 -kerning first=289 second=228 amount=5 -kerning first=355 second=229 amount=2 -kerning first=8211 second=344 amount=-6 -kerning first=70 second=265 amount=-4 -kerning first=231 second=97 amount=1 -kerning first=113 second=329 amount=-3 -kerning first=356 second=369 amount=-6 -kerning first=232 second=267 amount=1 -kerning first=340 second=192 amount=3 -kerning first=278 second=111 amount=-2 -kerning first=75 second=355 amount=-7 -kerning first=121 second=229 amount=7 -kerning first=256 second=344 amount=-17 -kerning first=279 second=281 amount=1 -kerning first=194 second=293 amount=-12 -kerning first=197 second=73 amount=-7 -kerning first=102 second=242 amount=-8 -kerning first=283 second=231 amount=1 -kerning first=198 second=243 amount=-5 -kerning first=326 second=295 amount=-1 -kerning first=349 second=232 amount=1 -kerning first=369 second=359 amount=-1 -kerning first=225 second=100 amount=2 -kerning first=8212 second=77 amount=4 -kerning first=45 second=281 amount=4 -kerning first=373 second=309 amount=-7 -kerning first=291 second=101 amount=2 -kerning first=203 second=333 amount=-2 -kerning first=88 second=345 amount=-2 -kerning first=354 second=322 amount=-3 -kerning first=357 second=102 amount=-4 -kerning first=289 second=8212 amount=4 -kerning first=292 second=271 amount=2 -kerning first=69 second=358 amount=-5 -kerning first=207 second=283 amount=-2 -kerning first=115 second=232 amount=1 -kerning first=358 second=272 amount=-8 -kerning first=339 second=285 amount=2 -kerning first=342 second=65 amount=3 -kerning first=254 second=297 amount=2 -kerning first=362 second=222 amount=-2 -kerning first=277 second=234 amount=1 -kerning first=192 second=246 amount=-12 -kerning first=343 second=235 amount=-2 -kerning first=120 second=322 amount=-1 -kerning first=196 second=196 amount=-7 -kerning first=219 second=103 amount=2 -kerning first=101 second=335 amount=1 -kerning first=104 second=115 amount=1 -kerning first=282 second=324 amount=-2 -kerning first=285 second=104 amount=2 -kerning first=197 second=336 amount=-11 -kerning first=220 second=273 amount=2 -kerning first=105 second=285 amount=2 -kerning first=351 second=105 amount=1 -kerning first=263 second=337 amount=-1 -kerning first=286 second=274 amount=-2 -kerning first=86 second=298 amount=5 -kerning first=8211 second=200 amount=-7 -kerning first=267 second=287 amount=1 -kerning first=270 second=67 amount=4 -kerning first=67 second=311 amount=2 -kerning first=205 second=236 amount=-2 -kerning first=356 second=225 amount=-10 -kerning first=8212 second=340 amount=-6 -kerning first=271 second=237 amount=-3 -kerning first=376 second=352 amount=-4 -kerning first=337 second=238 amount=-2 -kerning first=357 second=365 amount=-9 -kerning first=55 second=54 amount=-6 -kerning first=295 second=314 amount=-1 -kerning first=75 second=211 amount=-8 -kerning first=98 second=118 amount=2 -kerning first=233 second=263 amount=1 -kerning first=118 second=275 amount=4 -kerning first=256 second=200 amount=-10 -kerning first=279 second=107 amount=-1 -kerning first=194 second=119 amount=-13 -kerning first=345 second=108 amount=-1 -kerning first=260 second=120 amount=-14 -kerning first=195 second=289 amount=-10 -kerning first=198 second=69 amount=-2 -kerning first=80 second=301 amount=1 -kerning first=83 second=81 amount=3 -kerning first=218 second=226 amount=2 -kerning first=103 second=238 amount=3 -kerning first=238 second=353 amount=1 -kerning first=346 second=278 amount=-3 -kerning first=264 second=70 amount=-2 -kerning first=304 second=354 amount=-2 -kerning first=327 second=291 amount=2 -kerning first=330 second=71 amount=3 -kerning first=242 second=303 amount=-2 -kerning first=265 second=240 amount=1 -kerning first=285 second=367 amount=2 -kerning first=65 second=264 amount=-11 -kerning first=68 second=44 amount=-3 -kerning first=88 second=201 amount=-2 -kerning first=111 second=108 amount=-1 -kerning first=246 second=253 amount=-2 -kerning first=374 second=305 amount=-3 -kerning first=49 second=57 amount=-2 -kerning first=292 second=97 amount=2 -kerning first=204 second=329 amount=-4 -kerning first=207 second=109 amount=-2 -kerning first=89 second=341 amount=-5 -kerning first=355 second=318 amount=-1 -kerning first=358 second=98 amount=-3 -kerning first=70 second=354 amount=-9 -kerning first=211 second=59 amount=-5 -kerning first=339 second=111 amount=1 -kerning first=116 second=228 amount=2 -kerning first=274 second=280 amount=-5 -kerning first=192 second=72 amount=-4 -kerning first=77 second=84 amount=-7 -kerning first=258 second=73 amount=-7 -kerning first=193 second=242 amount=-12 -kerning first=298 second=357 amount=-2 -kerning first=121 second=318 amount=3 -kerning first=364 second=358 amount=-6 -kerning first=197 second=192 amount=-7 -kerning first=302 second=307 amount=-2 -kerning first=102 second=331 amount=-7 -kerning first=105 second=111 amount=1 -kerning first=283 second=320 amount=-1 -kerning first=198 second=332 amount=-7 -kerning first=83 second=344 amount=-3 -kerning first=221 second=269 amount=-4 -kerning first=106 second=281 amount=1 -kerning first=267 second=113 amount=1 -kerning first=202 second=282 amount=-5 -kerning first=330 second=334 amount=3 -kerning first=333 second=114 amount=-2 -kerning first=350 second=8212 amount=4 -kerning first=353 second=271 amount=3 -kerning first=8212 second=196 amount=-13 -kerning first=45 second=370 amount=5 -kerning first=376 second=208 amount=-4 -kerning first=71 second=87 amount=4 -kerning first=206 second=232 amount=-2 -kerning first=311 second=347 amount=1 -kerning first=226 second=359 amount=-1 -kerning first=111 second=371 amount=-2 -kerning first=72 second=257 amount=2 -kerning first=230 second=309 amount=-12 -kerning first=118 second=101 amount=4 -kerning first=358 second=361 amount=-6 -kerning first=234 second=259 amount=2 -kerning first=119 second=271 amount=5 -kerning first=192 second=335 amount=-12 -kerning first=195 second=115 amount=-11 -kerning first=258 second=336 amount=-11 -kerning first=261 second=116 amount=-1 -kerning first=281 second=273 amount=2 -kerning first=196 second=285 amount=-10 -kerning first=84 second=77 amount=-7 -kerning first=219 second=222 amount=-2 -kerning first=239 second=349 amount=1 -kerning first=370 second=211 amount=2 -kerning first=285 second=223 amount=5 -kerning first=65 second=90 amount=-7 -kerning first=328 second=287 amount=2 -kerning first=243 second=299 amount=-2 -kerning first=351 second=224 amount=3 -kerning first=371 second=351 amount=1 -kerning first=66 second=260 amount=-5 -kerning first=201 second=375 amount=-3 -kerning first=89 second=197 amount=-3 -kerning first=224 second=312 amount=-1 -kerning first=112 second=104 amount=3 -kerning first=8211 second=289 amount=4 -kerning first=375 second=301 amount=3 -kerning first=356 second=314 amount=-3 -kerning first=271 second=326 amount=-9 -kerning first=274 second=106 amount=-10 -kerning first=340 second=107 amount=-2 -kerning first=117 second=224 amount=2 -kerning first=360 second=264 amount=2 -kerning first=193 second=68 amount=-10 -kerning first=78 second=80 amount=-2 -kerning first=98 second=237 amount=2 -kerning first=341 second=277 amount=-2 -kerning first=256 second=289 amount=-10 -kerning first=364 second=214 amount=2 -kerning first=279 second=226 amount=2 -kerning first=299 second=353 amount=1 -kerning first=325 second=70 amount=-2 -kerning first=345 second=227 amount=-2 -kerning first=83 second=200 amount=-3 -kerning first=326 second=240 amount=2 -kerning first=372 second=84 amount=-6 -kerning first=284 second=316 amount=2 -kerning first=84 second=340 amount=-5 -kerning first=107 second=277 amount=1 -kerning first=353 second=97 amount=3 -kerning first=265 second=329 amount=-4 -kerning first=373 second=254 amount=-1 -kerning first=45 second=226 amount=4 -kerning first=65 second=353 amount=-11 -kerning first=203 second=278 amount=-5 -kerning first=88 second=290 amount=-4 -kerning first=354 second=267 amount=-7 -kerning first=272 second=59 amount=-3 -kerning first=227 second=355 amount=-1 -kerning first=112 second=367 amount=2 -kerning first=273 second=229 amount=2 -kerning first=73 second=253 amount=-2 -kerning first=119 second=97 amount=5 -kerning first=254 second=242 amount=2 -kerning first=359 second=357 amount=-1 -kerning first=274 second=369 amount=-2 -kerning first=320 second=243 amount=-1 -kerning first=258 second=192 amount=-7 -kerning first=366 second=87 amount=2 -kerning first=281 second=99 amount=1 -kerning first=58 second=216 amount=-3 -kerning first=193 second=331 amount=-13 -kerning first=196 second=111 amount=-12 -kerning first=344 second=320 amount=-2 -kerning first=347 second=100 amount=3 -kerning first=367 second=257 amount=2 -kerning first=59 second=356 amount=-10 -kerning first=197 second=281 amount=-12 -kerning first=82 second=293 amount=-2 -kerning first=328 second=113 amount=2 -kerning first=348 second=270 amount=-3 -kerning first=66 second=86 amount=2 -kerning first=86 second=243 amount=3 -kerning first=8211 second=115 amount=4 -kerning first=287 second=359 amount=2 -kerning first=202 second=371 amount=-2 -kerning first=110 second=320 amount=-1 -kerning first=113 second=100 amount=2 -kerning first=8212 second=285 amount=4 -kerning first=51 second=49 amount=-4 -kerning first=71 second=206 amount=3 -kerning first=111 second=8211 amount=3 -kerning first=360 second=90 amount=4 -kerning first=295 second=259 amount=2 -kerning first=341 second=103 amount=-2 -kerning first=256 second=115 amount=-11 -kerning first=276 second=272 amount=-5 -kerning first=257 second=285 amount=2 -kerning first=260 second=65 amount=-7 -kerning first=280 second=222 amount=-6 -kerning first=195 second=234 amount=-12 -kerning first=300 second=349 amount=-2 -kerning first=323 second=286 amount=3 -kerning first=346 second=223 amount=2 -kerning first=304 second=299 amount=-2 -kerning first=84 second=196 amount=-13 -kerning first=107 second=103 amount=2 -kerning first=347 second=363 amount=1 -kerning first=285 second=312 amount=2 -kerning first=65 second=209 amount=-15 -kerning first=200 second=324 amount=-2 -kerning first=85 second=336 amount=2 -kerning first=108 second=273 amount=2 -kerning first=266 second=325 amount=4 -kerning first=46 second=222 amount=-4 -kerning first=66 second=349 amount=1 -kerning first=89 second=286 amount=-1 -kerning first=335 second=106 amount=-13 -kerning first=112 second=223 amount=5 -kerning first=70 second=299 amount=-4 -kerning first=208 second=224 amount=2 -kerning first=228 second=351 amount=1 -kerning first=160 second=325 amount=-8 -kerning first=78 second=199 amount=3 -kerning first=98 second=326 amount=2 -kerning first=101 second=106 amount=-13 -kerning first=121 second=263 amount=3 -kerning first=59 second=212 amount=-3 -kerning first=194 second=327 amount=-15 -kerning first=197 second=107 amount=-12 -kerning first=302 second=252 amount=-2 -kerning first=345 second=316 amount=-1 -kerning first=260 second=328 amount=-13 -kerning first=263 second=108 amount=-1 -kerning first=283 second=265 amount=1 -kerning first=198 second=277 amount=-5 -kerning first=221 second=214 amount=-1 -kerning first=326 second=329 amount=-3 -kerning first=106 second=226 amount=2 -kerning first=244 second=121 amount=-2 -kerning first=352 second=46 amount=-4 -kerning first=264 second=278 amount=-2 -kerning first=372 second=203 amount=-6 -kerning first=67 second=82 amount=-4 -kerning first=222 second=354 amount=-9 -kerning first=8212 second=111 amount=4 -kerning first=45 second=315 amount=3 -kerning first=203 second=367 amount=-2 -kerning first=111 second=316 amount=-1 -kerning first=354 second=356 amount=-8 -kerning first=72 second=202 amount=-6 -kerning first=230 second=254 amount=-1 -kerning first=335 second=369 amount=-2 -kerning first=273 second=318 amount=-1 -kerning first=73 second=342 amount=-2 -kerning first=254 second=331 amount=2 -kerning first=192 second=280 amount=-10 -kerning first=100 second=229 amount=2 -kerning first=343 second=269 amount=-2 -kerning first=258 second=281 amount=-12 -kerning first=196 second=230 amount=-10 -kerning first=282 second=358 amount=-5 -kerning first=108 second=99 amount=1 -kerning first=374 second=76 amount=-3 -kerning first=309 second=245 amount=1 -kerning first=86 second=332 amount=5 -kerning first=89 second=112 amount=-5 -kerning first=224 second=257 amount=2 -kerning first=8211 second=234 amount=4 -kerning first=375 second=246 amount=3 -kerning first=356 second=259 amount=-10 -kerning first=8212 second=374 amount=3 -kerning first=271 second=271 amount=-8 -kerning first=294 second=208 amount=-6 -kerning first=71 second=295 amount=2 -kerning first=74 second=75 amount=-2 -kerning first=229 second=347 amount=1 -kerning first=114 second=359 amount=-1 -kerning first=75 second=245 amount=-10 -kerning first=318 second=285 amount=-8 -kerning first=118 second=309 amount=-9 -kerning first=256 second=234 amount=-12 -kerning first=361 second=349 amount=1 -kerning first=276 second=361 amount=-2 -kerning first=217 second=90 amount=4 -kerning first=99 second=322 amount=-1 -kerning first=102 second=102 amount=-3 -kerning first=368 second=79 amount=2 -kerning first=195 second=323 amount=-15 -kerning first=198 second=103 amount=-3 -kerning first=303 second=248 amount=1 -kerning first=264 second=104 amount=2 -kerning first=84 second=285 amount=-10 -kerning first=222 second=210 amount=4 -kerning first=245 second=117 amount=-2 -kerning first=350 second=262 amount=3 -kerning first=65 second=298 amount=-7 -kerning first=203 second=223 amount=3 -kerning first=88 second=235 amount=-2 -kerning first=354 second=212 amount=-2 -kerning first=269 second=224 amount=1 -kerning first=374 second=339 amount=-4 -kerning first=289 second=351 amount=2 -kerning first=69 second=248 amount=-2 -kerning first=204 second=363 amount=-2 -kerning first=89 second=375 amount=-5 -kerning first=112 second=312 amount=2 -kerning first=362 second=82 amount=-2 -kerning first=340 second=315 amount=3 -kerning first=258 second=107 amount=-12 -kerning first=193 second=276 amount=-10 -kerning first=78 second=288 amount=3 -kerning first=324 second=108 amount=-1 -kerning first=101 second=225 amount=2 -kerning first=197 second=226 amount=-10 -kerning first=325 second=278 amount=-6 -kerning first=102 second=365 amount=-7 -kerning first=263 second=227 amount=1 -kerning first=368 second=342 amount=-2 -kerning first=329 second=228 amount=2 -kerning first=349 second=355 amount=1 -kerning first=44 second=264 amount=-3 -kerning first=290 second=84 amount=-2 -kerning first=67 second=201 amount=-2 -kerning first=356 second=85 amount=-1 -kerning first=271 second=97 amount=-8 -kerning first=376 second=242 amount=-4 -kerning first=291 second=254 amount=3 -kerning first=71 second=121 amount=1 -kerning first=337 second=98 amount=-1 -kerning first=72 second=291 amount=2 -kerning first=75 second=71 amount=-8 -kerning first=318 second=111 amount=-9 -kerning first=115 second=355 amount=1 -kerning first=296 second=344 amount=-2 -kerning first=234 second=293 amount=-1 -kerning first=119 second=305 amount=2 -kerning first=257 second=230 amount=1 -kerning first=277 second=357 amount=-1 -kerning first=192 second=369 amount=-13 -kerning first=100 second=318 amount=-1 -kerning first=103 second=98 amount=2 -kerning first=284 second=87 amount=4 -kerning first=196 second=319 amount=-7 -kerning first=304 second=244 amount=-2 -kerning first=84 second=111 amount=-7 -kerning first=262 second=320 amount=2 -kerning first=265 second=100 amount=1 -kerning first=285 second=257 amount=5 -kerning first=266 second=270 amount=-2 -kerning first=374 second=195 amount=-3 -kerning first=89 second=231 amount=-4 -kerning first=8211 second=323 amount=-2 -kerning first=375 second=335 amount=3 -kerning first=70 second=244 amount=-4 -kerning first=205 second=359 amount=-2 -kerning first=356 second=348 amount=-6 -kerning first=74 second=194 amount=-8 -kerning first=209 second=309 amount=-12 -kerning first=232 second=246 amount=1 -kerning first=337 second=361 amount=-2 -kerning first=160 second=270 amount=-6 -kerning first=193 second=102 amount=-12 -kerning first=75 second=334 amount=-8 -kerning first=98 second=271 amount=5 -kerning first=341 second=311 amount=-1 -kerning first=256 second=323 amount=-15 -kerning first=259 second=103 amount=2 -kerning first=194 second=272 amount=-10 -kerning first=240 second=116 amount=-1 -kerning first=345 second=261 amount=-2 -kerning first=260 second=273 amount=-10 -kerning first=303 second=337 amount=1 -kerning first=103 second=361 amount=2 -kerning first=264 second=223 amount=3 -kerning first=307 second=287 amount=2 -kerning first=222 second=299 amount=2 -kerning first=330 second=224 amount=2 -kerning first=245 second=236 amount=-2 -kerning first=45 second=260 amount=-13 -kerning first=376 second=68 amount=-4 -kerning first=288 second=300 amount=3 -kerning first=68 second=197 amount=-8 -kerning first=88 second=324 amount=-3 -kerning first=354 second=301 amount=-2 -kerning first=69 second=337 amount=-2 -kerning first=335 second=314 amount=-1 -kerning first=273 second=263 amount=1 -kerning first=116 second=351 amount=1 -kerning first=362 second=201 amount=-6 -kerning first=192 second=225 amount=-10 -kerning first=300 second=120 amount=-1 -kerning first=77 second=237 amount=1 -kerning first=320 second=277 amount=-1 -kerning first=235 second=289 amount=2 -kerning first=258 second=226 amount=-10 -kerning first=193 second=365 amount=-13 -kerning first=304 second=70 amount=-2 -kerning first=78 second=377 amount=4 -kerning first=216 second=302 amount=3 -kerning first=219 second=82 amount=-2 -kerning first=324 second=227 amount=2 -kerning first=101 second=314 amount=-1 -kerning first=344 second=354 amount=-8 -kerning first=367 second=291 amount=2 -kerning first=370 second=71 amount=2 -kerning first=197 second=315 amount=-7 -kerning first=305 second=240 amount=2 -kerning first=263 second=316 amount=-1 -kerning first=66 second=120 amount=-2 -kerning first=86 second=277 amount=3 -kerning first=244 second=329 amount=-3 -kerning first=270 second=46 amount=-3 -kerning first=372 second=381 amount=4 -kerning first=290 second=203 amount=-2 -kerning first=70 second=70 amount=-7 -kerning first=356 second=204 amount=-2 -kerning first=8212 second=319 amount=3 -kerning first=376 second=331 amount=-5 -kerning first=71 second=240 amount=5 -kerning first=206 second=355 amount=-2 -kerning first=272 second=356 amount=-6 -kerning first=380 second=281 amount=1 -kerning first=295 second=293 amount=-1 -kerning first=98 second=97 amount=5 -kerning first=233 second=242 amount=1 -kerning first=118 second=254 amount=3 -kerning first=194 second=98 amount=-12 -kerning first=195 second=268 amount=-11 -kerning first=80 second=280 amount=-9 -kerning first=326 second=100 amount=2 -kerning first=284 second=206 amount=3 -kerning first=304 second=333 amount=-2 -kerning first=84 second=230 amount=-9 -kerning first=307 second=113 amount=2 -kerning first=327 second=270 amount=-6 -kerning first=104 second=357 amount=-1 -kerning first=370 second=334 amount=2 -kerning first=45 second=86 amount=3 -kerning first=373 second=114 amount=2 -kerning first=65 second=243 amount=-12 -kerning first=200 second=358 amount=-5 -kerning first=266 second=359 amount=2 -kerning first=374 second=284 amount=-1 -kerning first=207 second=88 amount=2 -kerning first=312 second=233 amount=1 -kerning first=89 second=320 amount=-2 -kerning first=112 second=257 amount=5 -kerning first=358 second=77 amount=-7 -kerning first=270 second=309 amount=-12 -kerning first=70 second=333 amount=-4 -kerning first=208 second=258 amount=-8 -kerning first=90 second=8211 amount=-6 -kerning first=74 second=283 amount=-5 -kerning first=232 second=335 amount=1 -kerning first=235 second=115 amount=1 -kerning first=117 second=347 amount=1 -kerning first=340 second=260 amount=3 -kerning first=236 second=285 amount=2 -kerning first=121 second=297 amount=3 -kerning first=279 second=349 amount=1 -kerning first=194 second=361 amount=-13 -kerning first=325 second=223 amount=2 -kerning first=240 second=235 amount=1 -kerning first=368 second=287 amount=2 -kerning first=198 second=311 amount=-2 -kerning first=86 second=103 amount=6 -kerning first=352 second=80 amount=-3 -kerning first=264 second=312 amount=2 -kerning first=44 second=209 amount=-5 -kerning first=287 second=249 amount=2 -kerning first=67 second=116 amount=2 -kerning first=87 second=273 amount=2 -kerning first=248 second=105 amount=-2 -kerning first=353 second=250 amount=1 -kerning first=45 second=349 amount=4 -kerning first=68 second=286 amount=4 -kerning first=71 second=66 amount=-2 -kerning first=272 second=212 amount=4 -kerning first=207 second=351 amount=-2 -kerning first=358 second=340 amount=-5 -kerning first=361 second=120 amount=-1 -kerning first=339 second=353 amount=1 -kerning first=119 second=250 amount=2 -kerning first=254 second=365 amount=2 -kerning first=362 second=290 amount=2 -kerning first=280 second=82 amount=-6 -kerning first=192 second=314 amount=-12 -kerning first=300 second=239 amount=-2 -kerning first=80 second=106 amount=-10 -kerning first=100 second=263 amount=1 -kerning first=258 second=315 amount=-7 -kerning first=366 second=240 amount=2 -kerning first=196 second=264 amount=-11 -kerning first=219 second=201 amount=-6 -kerning first=324 second=316 amount=-1 -kerning first=242 second=108 amount=-1 -kerning first=347 second=253 amount=1 -kerning first=65 second=69 amount=-10 -kerning first=85 second=226 amount=2 -kerning first=105 second=353 amount=1 -kerning first=46 second=82 amount=-4 -kerning first=374 second=110 amount=-5 -kerning first=286 second=342 amount=-4 -kerning first=201 second=354 amount=-5 -kerning first=309 second=279 amount=1 -kerning first=224 second=291 amount=2 -kerning first=8211 second=268 amount=5 -kerning first=267 second=355 amount=-1 -kerning first=208 second=84 amount=-6 -kerning first=356 second=293 amount=-3 -kerning first=271 second=305 amount=-3 -kerning first=74 second=109 amount=-4 -kerning first=75 second=279 amount=-10 -kerning first=213 second=204 amount=3 -kerning first=236 second=111 amount=1 -kerning first=256 second=268 amount=-11 -kerning first=302 second=112 amount=-2 -kerning first=237 second=281 amount=1 -kerning first=368 second=113 amount=2 -kerning first=195 second=357 amount=-12 -kerning first=80 second=369 amount=1 -kerning first=284 second=295 amount=2 -kerning first=84 second=319 amount=-1 -kerning first=307 second=232 amount=1 -kerning first=242 second=371 amount=-2 -kerning first=268 second=88 amount=1 -kerning first=373 second=233 amount=4 -kerning first=45 second=205 amount=-5 -kerning first=65 second=332 amount=-11 -kerning first=88 second=269 amount=-2 -kerning first=331 second=309 amount=-10 -kerning first=354 second=246 amount=-7 -kerning first=374 second=373 amount=-4 -kerning first=69 second=282 amount=-5 -kerning first=358 second=196 amount=-13 -kerning first=296 second=115 amount=-2 -kerning first=73 second=232 amount=-2 -kerning first=297 second=285 amount=2 -kerning first=97 second=309 amount=-10 -kerning first=366 second=66 amount=-6 -kerning first=196 second=90 amount=-7 -kerning first=301 second=235 amount=1 -kerning first=101 second=259 amount=2 -kerning first=259 second=311 amount=-1 -kerning first=282 second=248 amount=-2 -kerning first=197 second=260 amount=-7 -kerning first=302 second=375 amount=-2 -kerning first=243 second=104 amount=-1 -kerning first=66 second=65 amount=-5 -kerning first=221 second=337 amount=-4 -kerning first=352 second=199 amount=3 -kerning first=225 second=287 amount=2 -kerning first=353 second=339 amount=1 -kerning first=356 second=119 amount=-5 -kerning first=8212 second=264 amount=5 -kerning first=376 second=276 amount=-4 -kerning first=294 second=68 amount=-6 -kerning first=209 second=80 amount=-2 -kerning first=357 second=289 amount=-8 -kerning first=360 second=69 amount=-6 -kerning first=75 second=105 amount=-7 -kerning first=338 second=302 amount=-1 -kerning first=119 second=339 amount=4 -kerning first=260 second=44 amount=-10 -kerning first=362 second=379 amount=4 -kerning first=280 second=201 amount=-5 -kerning first=195 second=213 amount=-11 -kerning first=300 second=328 amount=-2 -kerning first=346 second=202 amount=-3 -kerning first=196 second=353 amount=-11 -kerning first=222 second=70 amount=-7 -kerning first=262 second=354 amount=-2 -kerning first=285 second=291 amount=5 -kerning first=223 second=240 amount=2 -kerning first=328 second=355 amount=-1 -kerning first=243 second=367 amount=-2 -kerning first=266 second=304 amount=3 -kerning first=46 second=201 amount=-4 -kerning first=374 second=229 amount=-3 -kerning first=289 second=241 amount=2 -kerning first=204 second=253 amount=-2 -kerning first=89 second=265 amount=-4 -kerning first=375 second=369 amount=3 -kerning first=70 second=278 amount=-9 -kerning first=208 second=203 amount=-6 -kerning first=297 second=111 amount=1 -kerning first=74 second=228 amount=-5 -kerning first=160 second=304 amount=-4 -kerning first=360 second=332 amount=2 -kerning first=298 second=281 amount=-2 -kerning first=216 second=73 amount=3 -kerning first=121 second=242 amount=3 -kerning first=256 second=357 amount=-12 -kerning first=364 second=282 amount=-6 -kerning first=197 second=86 amount=-7 -kerning first=302 second=231 amount=-2 -kerning first=82 second=98 amount=-2 -kerning first=345 second=295 amount=-1 -kerning first=283 second=244 amount=1 -kerning first=198 second=256 amount=-6 -kerning first=83 second=268 amount=3 -kerning first=221 second=193 amount=-3 -kerning first=241 second=320 amount=-1 -kerning first=349 second=245 amount=1 -kerning first=225 second=113 amount=2 -kerning first=242 second=8211 amount=3 -kerning first=8212 second=90 amount=-4 -kerning first=268 second=207 amount=3 -kerning first=373 second=322 amount=2 -kerning first=376 second=102 amount=-4 -kerning first=291 second=114 amount=2 -kerning first=311 second=271 amount=2 -kerning first=88 second=358 amount=-2 -kerning first=354 second=335 amount=-7 -kerning first=357 second=115 amount=-8 -kerning first=269 second=347 amount=1 -kerning first=69 second=371 amount=-2 -kerning first=230 second=233 amount=1 -kerning first=115 second=245 amount=1 -kerning first=358 second=285 amount=-10 -kerning first=296 second=234 amount=-2 -kerning first=231 second=373 amount=-1 -kerning first=192 second=259 amount=-10 -kerning first=74 second=8212 amount=-3 -kerning first=77 second=271 amount=1 -kerning first=320 second=311 amount=-2 -kerning first=238 second=103 amount=2 -kerning first=343 second=248 amount=-2 -kerning first=258 second=260 amount=-7 -kerning first=58 second=284 amount=-3 -kerning first=196 second=209 amount=-15 -kerning first=304 second=104 amount=-2 -kerning first=239 second=273 amount=2 -kerning first=282 second=337 amount=-2 -kerning first=285 second=117 amount=2 -kerning first=197 second=349 amount=-11 -kerning first=243 second=223 amount=2 -kerning first=348 second=338 amount=3 -kerning first=351 second=118 amount=1 -kerning first=309 second=224 amount=2 -kerning first=86 second=311 amount=3 -kerning first=329 second=351 amount=1 -kerning first=244 second=363 amount=-2 -kerning first=352 second=288 amount=3 -kerning first=8211 second=213 amount=5 -kerning first=270 second=80 amount=-5 -kerning first=375 second=225 amount=7 -kerning first=70 second=104 amount=-2 -kerning first=205 second=249 amount=-2 -kerning first=356 second=238 amount=-2 -kerning first=8212 second=353 amount=4 -kerning first=376 second=365 amount=-5 -kerning first=71 second=274 amount=-2 -kerning first=209 second=199 amount=3 -kerning first=232 second=106 amount=-13 -kerning first=337 second=251 amount=-2 -kerning first=298 second=107 amount=-2 -kerning first=75 second=224 amount=-7 -kerning first=256 second=213 amount=-11 -kerning first=276 second=340 amount=-6 -kerning first=279 second=120 amount=-2 -kerning first=217 second=69 amount=-6 -kerning first=237 second=226 amount=2 -kerning first=257 second=353 amount=1 -kerning first=195 second=302 amount=-7 -kerning first=303 second=227 amount=2 -kerning first=323 second=354 amount=-6 -kerning first=103 second=251 amount=2 -kerning first=369 second=228 amount=2 -kerning first=304 second=367 amount=-2 -kerning first=84 second=264 amount=-2 -kerning first=219 second=379 amount=4 -kerning first=330 second=84 amount=-6 -kerning first=242 second=316 amount=-1 -kerning first=65 second=277 amount=-12 -kerning first=203 second=202 amount=-5 -kerning first=311 second=97 amount=2 -kerning first=88 second=214 amount=-4 -kerning first=331 second=254 amount=-1 -kerning first=111 second=121 amount=-2 -kerning first=374 second=318 amount=-2 -kerning first=46 second=290 amount=-3 -kerning first=204 second=342 amount=-2 -kerning first=312 second=267 amount=1 -kerning first=112 second=291 amount=5 -kerning first=358 second=111 amount=-7 -kerning first=70 second=367 amount=-3 -kerning first=231 second=229 amount=1 -kerning first=359 second=281 amount=1 -kerning first=192 second=85 amount=-7 -kerning first=77 second=97 amount=1 -kerning first=97 second=254 amount=-1 -kerning first=258 second=86 amount=-7 -kerning first=278 second=243 amount=-2 -kerning first=121 second=331 amount=3 -kerning first=59 second=280 amount=-4 -kerning first=197 second=205 amount=-7 -kerning first=302 second=320 amount=-2 -kerning first=305 second=100 amount=2 -kerning first=325 second=257 amount=2 -kerning first=240 second=269 amount=1 -kerning first=348 second=194 amount=-9 -kerning first=283 second=333 amount=1 -kerning first=221 second=282 amount=-4 -kerning first=372 second=271 amount=2 -kerning first=287 second=283 amount=2 -kerning first=90 second=87 amount=3 -kerning first=245 second=359 amount=-1 -kerning first=8212 second=209 amount=-2 -kerning first=268 second=296 amount=3 -kerning first=291 second=233 amount=2 -kerning first=71 second=100 amount=5 -kerning first=206 second=245 amount=-2 -kerning first=357 second=234 amount=-9 -kerning first=72 second=270 amount=-6 -kerning first=230 second=322 amount=-1 -kerning first=118 second=114 amount=2 -kerning first=299 second=103 amount=2 -kerning first=342 second=197 amount=3 -kerning first=365 second=104 amount=-1 -kerning first=192 second=348 amount=-8 -kerning first=323 second=210 amount=3 -kerning first=343 second=337 amount=-2 -kerning first=258 second=349 amount=-11 -kerning first=366 second=274 amount=-6 -kerning first=284 second=66 amount=-2 -kerning first=196 second=298 amount=-7 -kerning first=199 second=78 amount=4 -kerning first=84 second=90 amount=-2 -kerning first=347 second=287 amount=3 -kerning first=350 second=67 amount=3 -kerning first=370 second=224 amount=2 -kerning first=285 second=236 amount=3 -kerning first=65 second=103 amount=-10 -kerning first=200 second=248 amount=-2 -kerning first=243 second=312 amount=-2 -kerning first=351 second=237 amount=1 -kerning first=66 second=273 amount=3 -kerning first=89 second=210 amount=-1 -kerning first=112 second=117 amount=2 -kerning first=8211 second=302 amount=-5 -kerning first=270 second=199 amount=4 -kerning first=70 second=223 amount=3 -kerning first=90 second=350 amount=2 -kerning first=113 second=287 amount=2 -kerning first=356 second=327 amount=-1 -kerning first=359 second=107 amount=-1 -kerning first=271 second=339 amount=-9 -kerning first=274 second=119 amount=-2 -kerning first=294 second=276 amount=-6 -kerning first=71 second=363 amount=2 -kerning first=209 second=288 amount=3 -kerning first=232 second=225 amount=2 -kerning first=340 second=120 amount=-2 -kerning first=275 second=289 amount=2 -kerning first=278 second=69 amount=-5 -kerning first=193 second=81 amount=-11 -kerning first=75 second=313 amount=-3 -kerning first=318 second=353 amount=-8 -kerning first=98 second=250 amount=2 -kerning first=344 second=70 amount=-8 -kerning first=256 second=302 amount=-7 -kerning first=364 second=227 amount=2 -kerning first=59 second=106 amount=-11 -kerning first=345 second=240 amount=-2 -kerning first=198 second=201 amount=-2 -kerning first=83 second=213 amount=3 -kerning first=221 second=108 amount=-2 -kerning first=106 second=120 amount=-3 -kerning first=244 second=45 amount=3 -kerning first=264 second=202 amount=-2 -kerning first=372 second=97 amount=2 -kerning first=44 second=69 amount=-4 -kerning first=287 second=109 amount=2 -kerning first=202 second=121 amount=-3 -kerning first=84 second=353 amount=-10 -kerning first=222 second=278 amount=-9 -kerning first=330 second=203 amount=-6 -kerning first=353 second=110 amount=1 -kerning first=45 second=239 amount=2 -kerning first=373 second=267 amount=4 -kerning first=226 second=228 amount=2 -kerning first=246 second=355 amount=-1 -kerning first=354 second=280 amount=-8 -kerning first=292 second=229 amount=2 -kerning first=207 second=241 amount=-2 -kerning first=335 second=293 amount=-1 -kerning first=338 second=73 amount=-1 -kerning first=358 second=230 amount=-9 -kerning first=273 second=242 amount=1 -kerning first=231 second=318 amount=-1 -kerning first=234 second=98 amount=-1 -kerning first=339 second=243 amount=1 -kerning first=119 second=110 amount=2 -kerning first=192 second=204 amount=-7 -kerning first=300 second=99 amount=-2 -kerning first=77 second=216 amount=3 -kerning first=258 second=205 amount=-7 -kerning first=363 second=320 amount=-1 -kerning first=366 second=100 amount=2 -kerning first=193 second=344 amount=-17 -kerning first=301 second=269 amount=1 -kerning first=78 second=356 amount=-6 -kerning first=101 second=293 amount=-1 -kerning first=344 second=333 amount=-2 -kerning first=347 second=113 amount=3 -kerning first=282 second=282 amount=-5 -kerning first=85 second=86 amount=2 -kerning first=105 second=243 amount=1 -kerning first=263 second=295 amount=-1 -kerning first=66 second=99 amount=2 -kerning first=201 second=244 amount=-2 -kerning first=86 second=256 amount=-3 -kerning first=221 second=371 amount=-5 -kerning first=106 second=383 amount=1 -kerning first=267 second=245 amount=-1 -kerning first=44 second=332 amount=-3 -kerning first=113 second=113 amount=2 -kerning first=353 second=373 amount=1 -kerning first=8212 second=298 amount=-5 -kerning first=291 second=322 amount=2 -kerning first=229 second=271 amount=2 -kerning first=114 second=283 amount=-2 -kerning first=160 second=75 amount=-3 -kerning first=360 second=103 amount=2 -kerning first=275 second=115 amount=1 -kerning first=341 second=116 amount=-1 -kerning first=118 second=233 amount=4 -kerning first=361 second=273 amount=2 -kerning first=194 second=77 amount=-8 -kerning first=99 second=246 amount=-1 -kerning first=119 second=373 amount=3 -kerning first=260 second=78 amount=-15 -kerning first=365 second=223 amount=4 -kerning first=304 second=312 amount=-2 -kerning first=84 second=209 amount=-1 -kerning first=45 second=65 amount=-13 -kerning first=65 second=222 amount=-17 -kerning first=200 second=337 amount=-2 -kerning first=203 second=117 amount=-2 -kerning first=351 second=326 amount=1 -kerning first=354 second=106 amount=-13 -kerning first=269 second=118 amount=-1 -kerning first=374 second=263 amount=-4 -kerning first=289 second=275 amount=2 -kerning first=227 second=224 amount=2 -kerning first=335 second=119 amount=-2 -kerning first=112 second=236 amount=2 -kerning first=270 second=288 amount=4 -kerning first=70 second=312 amount=-2 -kerning first=359 second=226 amount=2 -kerning first=209 second=377 amount=4 -kerning first=232 second=314 amount=-1 -kerning first=120 second=106 amount=-9 -kerning first=160 second=338 amount=-3 -kerning first=193 second=200 amount=-10 -kerning first=78 second=212 amount=3 -kerning first=98 second=339 amount=2 -kerning first=194 second=340 amount=-17 -kerning first=197 second=120 amount=-14 -kerning first=302 second=265 amount=-2 -kerning first=325 second=202 amount=-6 -kerning first=102 second=289 amount=-6 -kerning first=260 second=341 amount=-12 -kerning first=263 second=121 amount=-1 -kerning first=368 second=266 amount=2 -kerning first=198 second=290 amount=-7 -kerning first=201 second=70 amount=-6 -kerning first=221 second=227 amount=-3 -kerning first=349 second=279 amount=1 -kerning first=352 second=59 amount=-4 -kerning first=287 second=228 amount=5 -kerning first=222 second=367 amount=2 -kerning first=353 second=229 amount=3 -kerning first=45 second=328 amount=2 -kerning first=71 second=45 amount=4 -kerning first=229 second=97 amount=2 -kerning first=111 second=329 amount=-3 -kerning first=354 second=369 amount=-6 -kerning first=295 second=98 amount=-1 -kerning first=230 second=267 amount=1 -kerning first=115 second=279 amount=1 -kerning first=358 second=319 amount=-1 -kerning first=276 second=111 amount=-2 -kerning first=73 second=355 amount=-2 -kerning first=119 second=229 amount=5 -kerning first=277 second=281 amount=1 -kerning first=192 second=293 amount=-12 -kerning first=195 second=73 amount=-7 -kerning first=77 second=305 amount=1 -kerning first=100 second=242 amount=1 -kerning first=235 second=357 amount=-1 -kerning first=281 second=231 amount=1 -kerning first=196 second=243 amount=-12 -kerning first=324 second=295 amount=-1 -kerning first=347 second=232 amount=1 -kerning first=367 second=359 amount=-1 -kerning first=282 second=371 amount=-2 -kerning first=223 second=100 amount=2 -kerning first=371 second=309 amount=-10 -kerning first=289 second=101 amount=2 -kerning first=201 second=333 amount=-2 -kerning first=86 second=345 amount=3 -kerning first=375 second=259 amount=7 -kerning first=287 second=8212 amount=4 -kerning first=67 second=358 amount=-2 -kerning first=205 second=283 amount=-2 -kerning first=113 second=232 amount=1 -kerning first=356 second=272 amount=-8 -kerning first=340 second=65 amount=3 -kerning first=160 second=194 amount=-3 -kerning first=275 second=234 amount=1 -kerning first=360 second=222 amount=-2 -kerning first=75 second=258 amount=-3 -kerning first=341 second=235 amount=-2 -kerning first=118 second=322 amount=2 -kerning first=121 second=102 amount=4 -kerning first=194 second=196 amount=-7 -kerning first=217 second=103 amount=2 -kerning first=99 second=335 amount=-1 -kerning first=102 second=115 amount=-7 -kerning first=260 second=197 amount=-7 -kerning first=280 second=324 amount=-2 -kerning first=283 second=104 amount=-1 -kerning first=195 second=336 amount=-11 -kerning first=198 second=116 amount=-2 -kerning first=218 second=273 amount=2 -kerning first=103 second=285 amount=5 -kerning first=349 second=105 amount=1 -kerning first=284 second=274 amount=-2 -kerning first=202 second=66 amount=-5 -kerning first=84 second=298 amount=-2 -kerning first=222 second=223 amount=3 -kerning first=327 second=338 amount=3 -kerning first=107 second=235 amount=1 -kerning first=265 second=287 amount=1 -kerning first=65 second=311 amount=-12 -kerning first=88 second=248 amount=-2 -kerning first=354 second=225 amount=-10 -kerning first=374 second=352 amount=-4 -kerning first=335 second=238 amount=-2 -kerning first=115 second=105 amount=1 -kerning first=53 second=54 amount=1 -kerning first=277 second=107 amount=-1 -kerning first=192 second=119 amount=-13 -kerning first=343 second=108 amount=-1 -kerning first=120 second=225 amount=2 -kerning first=258 second=120 amount=-14 -kerning first=193 second=289 amount=-10 -kerning first=196 second=69 amount=-10 -kerning first=236 second=353 amount=1 -kerning first=121 second=365 amount=3 -kerning first=262 second=70 amount=-2 -kerning first=302 second=354 amount=-2 -kerning first=325 second=291 amount=2 -kerning first=263 second=240 amount=1 -kerning first=198 second=379 amount=-3 -kerning first=221 second=316 amount=-2 -kerning first=109 second=108 amount=-1 -kerning first=244 second=253 amount=-2 -kerning first=8211 second=73 amount=-5 -kerning first=205 second=109 amount=-2 -kerning first=330 second=381 amount=4 -kerning first=353 second=318 amount=1 -kerning first=356 second=98 amount=-3 -kerning first=268 second=330 amount=4 -kerning first=271 second=110 amount=-9 -kerning first=8212 second=243 amount=4 -kerning first=291 second=267 amount=2 -kerning first=68 second=354 amount=-6 -kerning first=206 second=279 amount=-2 -kerning first=114 second=228 amount=-2 -kerning first=272 second=280 amount=-6 -kerning first=75 second=84 amount=-9 -kerning first=315 second=344 amount=-4 -kerning first=256 second=73 amount=-7 -kerning first=296 second=357 amount=-2 -kerning first=119 second=318 amount=5 -kerning first=362 second=358 amount=-6 -kerning first=195 second=192 amount=-7 -kerning first=300 second=307 amount=-2 -kerning first=103 second=111 amount=2 -kerning first=281 second=320 amount=-1 -kerning first=196 second=332 amount=-11 -kerning first=265 second=113 amount=1 -kerning first=200 second=282 amount=-5 -kerning first=108 second=231 amount=1 -kerning first=348 second=8212 amount=4 -kerning first=351 second=271 amount=3 -kerning first=374 second=208 amount=-4 -kerning first=204 second=232 amount=-2 -kerning first=224 second=359 amount=-1 -kerning first=8211 second=336 amount=5 -kerning first=70 second=257 amount=-3 -kerning first=228 second=309 amount=-10 -kerning first=356 second=361 amount=-6 -kerning first=271 second=373 amount=-10 -kerning first=232 second=259 amount=2 -kerning first=117 second=271 amount=2 -kerning first=193 second=115 amount=-11 -kerning first=75 second=347 amount=-8 -kerning first=344 second=104 amount=-2 -kerning first=256 second=336 amount=-11 -kerning first=259 second=116 amount=-1 -kerning first=279 second=273 amount=2 -kerning first=194 second=285 amount=-10 -kerning first=197 second=65 amount=-7 -kerning first=217 second=222 amount=-2 -kerning first=102 second=234 amount=-8 -kerning first=237 second=349 amount=1 -kerning first=260 second=286 amount=-11 -kerning first=368 second=211 amount=2 -kerning first=283 second=223 amount=4 -kerning first=198 second=235 amount=-5 -kerning first=326 second=287 amount=2 -kerning first=349 second=224 amount=3 -kerning first=369 second=351 amount=1 -kerning first=110 second=104 amount=-1 -kerning first=245 second=249 amount=-2 -kerning first=8212 second=69 amount=-7 -kerning first=45 second=273 amount=4 -kerning first=373 second=301 amount=2 -kerning first=376 second=81 amount=-1 -kerning first=68 second=210 amount=4 -kerning first=206 second=105 amount=-2 -kerning first=88 second=337 amount=-2 -kerning first=354 second=314 amount=-3 -kerning first=272 second=106 amount=-12 -kerning first=207 second=275 amount=-2 -kerning first=115 second=224 amount=3 -kerning first=358 second=264 amount=-2 -kerning first=76 second=80 amount=-4 -kerning first=339 second=277 amount=1 -kerning first=254 second=289 amount=5 -kerning first=362 second=214 amount=2 -kerning first=277 second=226 amount=2 -kerning first=297 second=353 amount=1 -kerning first=323 second=70 amount=-2 -kerning first=343 second=227 amount=-2 -kerning first=120 second=314 amount=-1 -kerning first=324 second=240 amount=2 -kerning first=104 second=107 amount=-1 -kerning first=370 second=84 amount=-6 -kerning first=197 second=328 amount=-13 -kerning first=82 second=340 amount=-8 -kerning first=85 second=120 amount=-2 -kerning first=105 second=277 amount=1 -kerning first=351 second=97 amount=3 -kerning first=263 second=329 amount=-4 -kerning first=371 second=254 amount=-1 -kerning first=201 second=278 amount=-5 -kerning first=86 second=290 amount=5 -kerning first=89 second=70 amount=-1 -kerning first=109 second=227 amount=2 -kerning first=8211 second=192 amount=-13 -kerning first=270 second=59 amount=-3 -kerning first=225 second=355 amount=-1 -kerning first=8212 second=332 amount=5 -kerning first=271 second=229 amount=-8 -kerning first=376 second=344 amount=-1 -kerning first=117 second=97 amount=2 -kerning first=75 second=203 amount=-9 -kerning first=318 second=243 amount=-9 -kerning first=98 second=110 amount=2 -kerning first=118 second=267 amount=4 -kerning first=256 second=192 amount=-7 -kerning first=364 second=87 amount=2 -kerning first=279 second=99 amount=1 -kerning first=194 second=111 amount=-12 -kerning first=342 second=320 amount=-2 -kerning first=345 second=100 amount=-2 -kerning first=365 second=257 amount=2 -kerning first=195 second=281 amount=-12 -kerning first=326 second=113 amount=2 -kerning first=103 second=230 amount=2 -kerning first=346 second=270 amount=-3 -kerning first=84 second=243 amount=-7 -kerning first=219 second=358 amount=-6 -kerning first=242 second=295 amount=-1 -kerning first=45 second=99 amount=4 -kerning first=285 second=359 amount=2 -kerning first=65 second=256 amount=-7 -kerning first=200 second=371 amount=-2 -kerning first=88 second=193 amount=-5 -kerning first=207 second=101 amount=-2 -kerning first=312 second=246 amount=1 -kerning first=89 second=333 amount=-4 -kerning first=358 second=90 amount=-2 -kerning first=208 second=271 amount=2 -kerning first=339 second=103 amount=2 -kerning first=254 second=115 amount=2 -kerning first=274 second=272 amount=-5 -kerning first=320 second=116 amount=-2 -kerning first=258 second=65 amount=-7 -kerning first=278 second=222 amount=-6 -kerning first=193 second=234 amount=-12 -kerning first=298 second=349 amount=-2 -kerning first=98 second=373 amount=2 -kerning first=302 second=299 amount=-2 -kerning first=82 second=196 amount=3 -kerning first=105 second=103 amount=2 -kerning first=240 second=248 amount=1 -kerning first=260 second=375 amount=-4 -kerning first=198 second=324 amount=-6 -kerning first=83 second=336 amount=3 -kerning first=86 second=116 amount=3 -kerning first=106 second=273 amount=2 -kerning first=264 second=325 amount=4 -kerning first=44 second=222 amount=-4 -kerning first=202 second=274 amount=-5 -kerning first=87 second=286 amount=2 -kerning first=333 second=106 amount=-13 -kerning first=110 second=223 amount=4 -kerning first=248 second=118 amount=-2 -kerning first=353 second=263 amount=1 -kerning first=376 second=200 amount=-4 -kerning first=45 second=362 amount=5 -kerning first=311 second=339 amount=1 -kerning first=226 second=351 amount=1 -kerning first=111 second=363 amount=-2 -kerning first=272 second=225 amount=2 -kerning first=358 second=353 amount=-10 -kerning first=99 second=106 amount=-11 -kerning first=119 second=263 amount=4 -kerning first=192 second=327 amount=-15 -kerning first=195 second=107 amount=-12 -kerning first=300 second=252 amount=-2 -kerning first=80 second=119 amount=1 -kerning first=343 second=316 amount=-1 -kerning first=258 second=328 amount=-13 -kerning first=261 second=108 amount=-1 -kerning first=281 second=265 amount=1 -kerning first=196 second=277 amount=-12 -kerning first=84 second=69 amount=-8 -kerning first=324 second=329 amount=-3 -kerning first=104 second=226 amount=2 -kerning first=242 second=121 amount=-2 -kerning first=350 second=46 amount=-4 -kerning first=262 second=278 amount=-2 -kerning first=370 second=203 amount=-6 -kerning first=65 second=82 amount=-17 -kerning first=220 second=354 amount=-6 -kerning first=286 second=355 amount=2 -kerning first=201 second=367 amount=-2 -kerning first=109 second=316 amount=-1 -kerning first=352 second=356 amount=-3 -kerning first=8211 second=281 amount=4 -kerning first=70 second=202 amount=-9 -kerning first=208 second=97 amount=2 -kerning first=90 second=329 amount=-6 -kerning first=228 second=254 amount=-1 -kerning first=333 second=369 amount=-2 -kerning first=71 second=342 amount=-4 -kerning first=98 second=229 amount=5 -kerning first=341 second=269 amount=-2 -kerning first=256 second=281 amount=-12 -kerning first=194 second=230 amount=-10 -kerning first=280 second=358 amount=-5 -kerning first=83 second=192 amount=-9 -kerning first=106 second=99 amount=1 -kerning first=199 second=320 amount=2 -kerning first=307 second=245 amount=1 -kerning first=84 second=332 amount=-2 -kerning first=107 second=269 amount=1 -kerning first=373 second=246 amount=4 -kerning first=65 second=345 amount=-12 -kerning first=203 second=270 amount=-5 -kerning first=88 second=282 amount=-2 -kerning first=331 second=322 amount=-1 -kerning first=354 second=259 amount=-10 -kerning first=269 second=271 amount=1 -kerning first=46 second=358 amount=-10 -kerning first=292 second=208 amount=-6 -kerning first=312 second=335 amount=1 -kerning first=227 second=347 amount=1 -kerning first=112 second=359 amount=3 -kerning first=358 second=209 amount=-1 -kerning first=73 second=245 amount=-2 -kerning first=316 second=285 amount=2 -kerning first=116 second=309 amount=-12 -kerning first=254 second=234 amount=2 -kerning first=359 second=349 amount=1 -kerning first=274 second=361 amount=-2 -kerning first=320 second=235 amount=-1 -kerning first=97 second=322 amount=-1 -kerning first=120 second=259 amount=2 -kerning first=366 second=79 amount=2 -kerning first=58 second=208 amount=-3 -kerning first=193 second=323 amount=-15 -kerning first=196 second=103 amount=-10 -kerning first=301 second=248 amount=1 -kerning first=344 second=312 amount=-2 -kerning first=262 second=104 amount=2 -kerning first=197 second=273 amount=-10 -kerning first=240 second=337 amount=1 -kerning first=243 second=117 amount=-2 -kerning first=348 second=262 amount=3 -kerning first=201 second=223 amount=3 -kerning first=86 second=235 amount=3 -kerning first=221 second=350 amount=-4 -kerning first=352 second=212 amount=3 -kerning first=267 second=224 amount=1 -kerning first=375 second=119 amount=3 -kerning first=287 second=351 amount=2 -kerning first=202 second=363 amount=-2 -kerning first=248 second=237 amount=-2 -kerning first=8212 second=277 amount=4 -kerning first=376 second=289 amount=-3 -kerning first=291 second=301 amount=3 -kerning first=71 second=198 amount=-5 -kerning first=360 second=82 amount=-2 -kerning first=75 second=118 amount=-10 -kerning first=256 second=107 amount=-12 -kerning first=99 second=225 amount=1 -kerning first=195 second=226 amount=-10 -kerning first=80 second=238 amount=1 -kerning first=323 second=278 amount=-6 -kerning first=261 second=227 amount=2 -kerning first=366 second=342 amount=-2 -kerning first=327 second=228 amount=2 -kerning first=347 second=355 amount=1 -kerning first=65 second=201 amount=-10 -kerning first=108 second=265 amount=1 -kerning first=111 second=45 amount=3 -kerning first=354 second=85 amount=-1 -kerning first=269 second=97 amount=1 -kerning first=46 second=214 amount=-3 -kerning first=374 second=242 amount=-4 -kerning first=289 second=254 amount=3 -kerning first=69 second=121 amount=-3 -kerning first=89 second=278 amount=-4 -kerning first=335 second=98 amount=-1 -kerning first=8211 second=370 amount=5 -kerning first=70 second=291 amount=-3 -kerning first=208 second=216 amount=4 -kerning first=316 second=111 amount=1 -kerning first=113 second=355 amount=-1 -kerning first=294 second=344 amount=-2 -kerning first=209 second=356 amount=-6 -kerning first=232 second=293 amount=-1 -kerning first=275 second=357 amount=-1 -kerning first=98 second=318 amount=3 -kerning first=101 second=98 amount=-1 -kerning first=236 second=243 amount=1 -kerning first=194 second=319 amount=-7 -kerning first=197 second=99 amount=-12 -kerning first=302 second=244 amount=-2 -kerning first=82 second=111 amount=-2 -kerning first=260 second=320 amount=-12 -kerning first=263 second=100 amount=1 -kerning first=283 second=257 amount=2 -kerning first=198 second=269 amount=-5 -kerning first=264 second=270 amount=-2 -kerning first=330 second=271 amount=2 -kerning first=8212 second=103 amount=4 -kerning first=45 second=307 amount=2 -kerning first=373 second=335 amount=4 -kerning first=376 second=115 amount=-4 -kerning first=88 second=371 amount=-3 -kerning first=354 second=348 amount=-6 -kerning first=207 second=309 amount=-14 -kerning first=230 second=246 amount=1 -kerning first=335 second=361 amount=-2 -kerning first=358 second=298 amount=-2 -kerning first=339 second=311 amount=-1 -kerning first=257 second=103 amount=2 -kerning first=192 second=272 amount=-10 -kerning first=77 second=284 amount=3 -kerning first=343 second=261 amount=-2 -kerning first=258 second=273 amount=-10 -kerning first=196 second=222 amount=-17 -kerning first=301 second=337 amount=1 -kerning first=304 second=117 amount=-2 -kerning first=262 second=223 amount=3 -kerning first=305 second=287 amount=2 -kerning first=328 second=224 amount=2 -kerning first=243 second=236 amount=-2 -kerning first=374 second=68 amount=-4 -kerning first=286 second=300 amount=3 -kerning first=66 second=197 amount=-5 -kerning first=86 second=324 amount=2 -kerning first=89 second=104 amount=-2 -kerning first=8211 second=226 amount=4 -kerning first=375 second=238 amount=3 -kerning first=70 second=117 amount=-3 -kerning first=333 second=314 amount=-1 -kerning first=248 second=326 amount=-2 -kerning first=8212 second=366 amount=5 -kerning first=271 second=263 amount=-9 -kerning first=294 second=200 amount=-6 -kerning first=71 second=287 amount=5 -kerning first=209 second=212 amount=3 -kerning first=114 second=351 amount=-2 -kerning first=360 second=201 amount=-6 -kerning first=298 second=120 amount=-1 -kerning first=75 second=237 amount=-7 -kerning first=318 second=277 amount=-9 -kerning first=233 second=289 amount=2 -kerning first=118 second=301 amount=2 -kerning first=256 second=226 amount=-10 -kerning first=302 second=70 amount=-2 -kerning first=76 second=377 amount=2 -kerning first=214 second=302 amount=3 -kerning first=217 second=82 amount=-2 -kerning first=99 second=314 amount=-1 -kerning first=342 second=354 amount=-8 -kerning first=365 second=291 amount=2 -kerning first=368 second=71 amount=2 -kerning first=195 second=315 amount=-7 -kerning first=303 second=240 amount=2 -kerning first=261 second=316 amount=-1 -kerning first=84 second=277 amount=-7 -kerning first=222 second=202 amount=-9 -kerning first=330 second=97 amount=2 -kerning first=242 second=329 amount=-3 -kerning first=245 second=109 amount=-2 -kerning first=370 second=381 amount=4 -kerning first=65 second=290 amount=-11 -kerning first=68 second=70 amount=-5 -kerning first=354 second=204 amount=-2 -kerning first=374 second=331 amount=-5 -kerning first=204 second=355 amount=-2 -kerning first=89 second=367 amount=-5 -kerning first=270 second=356 amount=-6 -kerning first=378 second=281 amount=1 -kerning first=70 second=380 amount=-6 -kerning first=231 second=242 amount=-1 -kerning first=192 second=98 amount=-12 -kerning first=258 second=99 amount=-12 -kerning first=193 second=268 amount=-11 -kerning first=78 second=280 amount=-6 -kerning first=216 second=205 amount=3 -kerning first=324 second=100 amount=2 -kerning first=302 second=333 amount=-2 -kerning first=82 second=230 amount=-2 -kerning first=305 second=113 amount=2 -kerning first=325 second=270 amount=-6 -kerning first=368 second=334 amount=2 -kerning first=198 second=358 amount=-2 -kerning first=264 second=359 amount=2 -kerning first=205 second=88 amount=2 -kerning first=110 second=257 amount=2 -kerning first=353 second=297 amount=1 -kerning first=356 second=77 amount=-7 -kerning first=8212 second=222 amount=-8 -kerning first=376 second=234 amount=-4 -kerning first=291 second=246 amount=2 -kerning first=71 second=113 amount=5 -kerning first=88 second=8211 amount=-8 -kerning first=272 second=259 amount=2 -kerning first=318 second=103 amount=-8 -kerning first=230 second=335 amount=1 -kerning first=233 second=115 amount=1 -kerning first=234 second=285 amount=2 -kerning first=119 second=297 amount=2 -kerning first=277 second=349 amount=1 -kerning first=192 second=361 amount=-13 -kerning first=323 second=223 amount=2 -kerning first=366 second=287 amount=2 -kerning first=196 second=311 amount=-12 -kerning first=84 second=103 amount=-10 -kerning first=304 second=236 amount=-2 -kerning first=350 second=80 amount=-3 -kerning first=262 second=312 amount=2 -kerning first=285 second=249 amount=2 -kerning first=65 second=116 amount=-12 -kerning first=85 second=273 amount=2 -kerning first=246 second=105 amount=-2 -kerning first=351 second=250 amount=1 -kerning first=66 second=286 amount=3 -kerning first=69 second=66 amount=-5 -kerning first=312 second=106 amount=-12 -kerning first=8211 second=315 amount=3 -kerning first=270 second=212 amount=4 -kerning first=70 second=236 amount=-4 -kerning first=205 second=351 amount=-2 -kerning first=356 second=340 amount=-5 -kerning first=359 second=120 amount=2 -kerning first=294 second=289 amount=2 -kerning first=360 second=290 amount=2 -kerning first=160 second=262 amount=-3 -kerning first=278 second=82 amount=-6 -kerning first=298 second=239 amount=-2 -kerning first=75 second=326 amount=-8 -kerning first=78 second=106 amount=-12 -kerning first=98 second=263 amount=2 -kerning first=256 second=315 amount=-7 -kerning first=364 second=240 amount=2 -kerning first=194 second=264 amount=-11 -kerning first=197 second=44 amount=-10 -kerning first=217 second=201 amount=-6 -kerning first=240 second=108 amount=-1 -kerning first=198 second=214 amount=-7 -kerning first=303 second=329 amount=-2 -kerning first=221 second=121 amount=-5 -kerning first=103 second=353 amount=2 -kerning first=44 second=82 amount=-4 -kerning first=284 second=342 amount=-4 -kerning first=199 second=354 amount=-2 -kerning first=307 second=279 amount=1 -kerning first=222 second=291 amount=2 -kerning first=330 second=216 amount=3 -kerning first=265 second=355 amount=-1 -kerning first=45 second=252 amount=2 -kerning first=65 second=379 amount=-7 -kerning first=206 second=84 amount=-2 -kerning first=311 second=229 amount=2 -kerning first=111 second=253 amount=-2 -kerning first=354 second=293 amount=-3 -kerning first=272 second=85 amount=2 -kerning first=207 second=254 amount=-2 -kerning first=358 second=243 amount=-7 -kerning first=73 second=279 amount=-2 -kerning first=211 second=204 amount=3 -kerning first=234 second=111 amount=1 -kerning first=300 second=112 amount=-2 -kerning first=77 second=229 amount=1 -kerning first=320 second=269 amount=-1 -kerning first=120 second=293 amount=-1 -kerning first=366 second=113 amount=2 -kerning first=193 second=357 amount=-12 -kerning first=82 second=319 amount=3 -kerning first=266 second=88 amount=1 -kerning first=86 second=269 amount=3 -kerning first=329 second=309 amount=-10 -kerning first=67 second=282 amount=-2 -kerning first=245 second=8212 amount=3 -kerning first=356 second=196 amount=-13 -kerning first=291 second=335 amount=2 -kerning first=71 second=232 amount=3 -kerning first=206 second=347 amount=-2 -kerning first=295 second=285 amount=2 -kerning first=233 second=234 amount=1 -kerning first=118 second=246 amount=4 -kerning first=364 second=66 amount=-6 -kerning first=194 second=90 amount=-7 -kerning first=99 second=259 amount=1 -kerning first=257 second=311 amount=-1 -kerning first=280 second=248 amount=-2 -kerning first=195 second=260 amount=-7 -kerning first=300 second=375 amount=-2 -kerning first=80 second=272 amount=-9 -kerning first=241 second=104 amount=-1 -kerning first=84 second=222 amount=-5 -kerning first=222 second=117 amount=2 -kerning first=327 second=262 amount=3 -kerning first=104 second=349 amount=1 -kerning first=350 second=199 amount=3 -kerning first=373 second=106 amount=-9 -kerning first=45 second=78 amount=-2 -kerning first=65 second=235 amount=-12 -kerning first=223 second=287 amount=2 -kerning first=351 second=339 amount=1 -kerning first=354 second=119 amount=-5 -kerning first=374 second=276 amount=-4 -kerning first=292 second=68 amount=-6 -kerning first=207 second=80 amount=-2 -kerning first=312 second=225 amount=2 -kerning first=89 second=312 amount=-2 -kerning first=112 second=249 amount=2 -kerning first=355 second=289 amount=2 -kerning first=358 second=69 amount=-8 -kerning first=73 second=105 amount=-2 -kerning first=336 second=302 amount=3 -kerning first=74 second=275 amount=-5 -kerning first=235 second=107 amount=-1 -kerning first=258 second=44 amount=-10 -kerning first=360 second=379 amount=4 -kerning first=278 second=201 amount=-5 -kerning first=58 second=68 amount=-3 -kerning first=193 second=213 amount=-11 -kerning first=298 second=328 amount=-2 -kerning first=78 second=225 amount=2 -kerning first=236 second=277 amount=1 -kerning first=121 second=289 amount=7 -kerning first=282 second=121 amount=-3 -kerning first=194 second=353 amount=-11 -kerning first=220 second=70 amount=-2 -kerning first=240 second=227 amount=2 -kerning first=260 second=354 amount=-20 -kerning first=283 second=291 amount=2 -kerning first=198 second=303 amount=-7 -kerning first=221 second=240 amount=-3 -kerning first=326 second=355 amount=-1 -kerning first=264 second=304 amount=3 -kerning first=44 second=201 amount=-4 -kerning first=372 second=229 amount=2 -kerning first=287 second=241 amount=2 -kerning first=67 second=108 amount=2 -kerning first=90 second=45 amount=-6 -kerning first=353 second=242 amount=1 -kerning first=268 second=254 amount=2 -kerning first=373 second=369 amount=2 -kerning first=68 second=278 amount=-6 -kerning first=72 second=228 amount=2 -kerning first=338 second=205 amount=-1 -kerning first=358 second=332 amount=-2 -kerning first=296 second=281 amount=-2 -kerning first=214 second=73 amount=3 -kerning first=119 second=242 amount=4 -kerning first=254 second=357 amount=3 -kerning first=362 second=282 amount=-6 -kerning first=195 second=86 amount=-7 -kerning first=300 second=231 amount=-2 -kerning first=343 second=295 amount=-1 -kerning first=281 second=244 amount=1 -kerning first=196 second=256 amount=-7 -kerning first=327 second=88 amount=3 -kerning first=347 second=245 amount=1 -kerning first=223 second=113 amount=2 -kerning first=266 second=207 amount=3 -kerning first=371 second=322 amount=-1 -kerning first=374 second=102 amount=-4 -kerning first=289 second=114 amount=2 -kerning first=66 second=231 amount=2 -kerning first=309 second=271 amount=2 -kerning first=109 second=295 amount=-1 -kerning first=355 second=115 amount=1 -kerning first=8211 second=260 amount=-13 -kerning first=267 second=347 amount=1 -kerning first=113 second=245 amount=1 -kerning first=356 second=285 amount=-10 -kerning first=271 second=297 amount=-3 -kerning first=74 second=101 amount=-5 -kerning first=160 second=207 amount=-4 -kerning first=75 second=271 amount=-7 -kerning first=236 second=103 amount=2 -kerning first=341 second=248 amount=-2 -kerning first=118 second=335 amount=4 -kerning first=121 second=115 amount=2 -kerning first=256 second=260 amount=-7 -kerning first=194 second=209 amount=-15 -kerning first=302 second=104 amount=-2 -kerning first=237 second=273 amount=2 -kerning first=260 second=210 amount=-11 -kerning first=280 second=337 amount=-2 -kerning first=195 second=349 amount=-11 -kerning first=80 second=361 amount=1 -kerning first=346 second=338 amount=3 -kerning first=349 second=118 amount=1 -kerning first=307 second=224 amount=2 -kerning first=84 second=311 amount=-3 -kerning first=222 second=236 amount=2 -kerning first=107 second=248 amount=1 -kerning first=242 second=363 amount=-2 -kerning first=350 second=288 amount=3 -kerning first=268 second=80 amount=-2 -kerning first=45 second=197 amount=-13 -kerning first=373 second=225 amount=5 -kerning first=65 second=324 amount=-13 -kerning first=354 second=238 amount=-2 -kerning first=374 second=365 amount=-5 -kerning first=69 second=274 amount=-5 -kerning first=230 second=106 amount=-12 -kerning first=335 second=251 amount=-2 -kerning first=115 second=118 amount=1 -kerning first=296 second=107 amount=-2 -kerning first=274 second=340 amount=-6 -kerning first=277 second=120 amount=-2 -kerning first=235 second=226 amount=2 -kerning first=193 second=302 amount=-7 -kerning first=196 second=82 amount=-17 -kerning first=301 second=227 amount=2 -kerning first=367 second=228 amount=2 -kerning first=59 second=327 amount=-5 -kerning first=302 second=367 amount=-2 -kerning first=217 second=379 amount=4 -kerning first=240 second=316 amount=-1 -kerning first=201 second=202 amount=-5 -kerning first=309 second=97 amount=2 -kerning first=86 second=214 amount=5 -kerning first=221 second=329 amount=-6 -kerning first=329 second=254 amount=-1 -kerning first=8211 second=86 amount=3 -kerning first=44 second=290 amount=-3 -kerning first=202 second=342 amount=-6 -kerning first=87 second=354 amount=-6 -kerning first=110 second=291 amount=2 -kerning first=353 second=331 amount=1 -kerning first=356 second=111 amount=-7 -kerning first=8212 second=256 amount=-13 -kerning first=376 second=268 amount=-1 -kerning first=229 second=229 amount=2 -kerning first=357 second=281 amount=-9 -kerning first=295 second=230 amount=1 -kerning first=75 second=97 amount=-7 -kerning first=256 second=86 amount=-7 -kerning first=276 second=243 amount=-2 -kerning first=237 second=99 amount=1 -kerning first=119 second=331 amount=2 -kerning first=195 second=205 amount=-7 -kerning first=300 second=320 amount=-2 -kerning first=303 second=100 amount=2 -kerning first=323 second=257 amount=2 -kerning first=346 second=194 amount=-9 -kerning first=281 second=333 amount=1 -kerning first=196 second=345 amount=-12 -kerning first=219 second=282 amount=-6 -kerning first=370 second=271 amount=2 -kerning first=285 second=283 amount=2 -kerning first=223 second=232 amount=1 -kerning first=328 second=347 amount=1 -kerning first=108 second=244 amount=1 -kerning first=243 second=359 amount=-1 -kerning first=266 second=296 amount=3 -kerning first=289 second=233 amount=2 -kerning first=204 second=245 amount=-2 -kerning first=89 second=257 amount=-3 -kerning first=355 second=234 amount=1 -kerning first=8211 second=349 amount=4 -kerning first=375 second=361 amount=3 -kerning first=70 second=270 amount=-9 -kerning first=208 second=195 amount=-8 -kerning first=228 second=322 amount=-1 -kerning first=297 second=103 amount=2 -kerning first=340 second=197 amount=3 -kerning first=363 second=104 amount=-1 -kerning first=160 second=296 amount=-4 -kerning first=98 second=297 amount=2 -kerning first=341 second=337 amount=-2 -kerning first=121 second=234 amount=3 -kerning first=256 second=349 amount=-11 -kerning first=364 second=274 amount=-6 -kerning first=282 second=66 amount=-5 -kerning first=194 second=298 amount=-7 -kerning first=197 second=78 amount=-15 -kerning first=345 second=287 amount=-2 -kerning first=348 second=67 amount=3 -kerning first=368 second=224 amount=2 -kerning first=198 second=248 amount=-5 -kerning first=83 second=260 amount=-9 -kerning first=241 second=312 amount=-1 -kerning first=349 second=237 amount=1 -kerning first=87 second=210 amount=2 -kerning first=107 second=337 amount=1 -kerning first=8212 second=82 amount=-6 -kerning first=45 second=286 amount=5 -kerning first=373 second=314 amount=2 -kerning first=68 second=223 amount=2 -kerning first=206 second=118 amount=-2 -kerning first=311 second=263 amount=1 -kerning first=354 second=327 amount=-1 -kerning first=292 second=276 amount=-6 -kerning first=69 second=363 amount=-2 -kerning first=230 second=225 amount=2 -kerning first=115 second=237 amount=1 -kerning first=358 second=277 amount=-7 -kerning first=273 second=289 amount=2 -kerning first=276 second=69 amount=-5 -kerning first=316 second=353 amount=1 -kerning first=342 second=70 amount=-8 -kerning first=362 second=227 amount=2 -kerning first=343 second=240 amount=-2 -kerning first=58 second=276 amount=-4 -kerning first=196 second=201 amount=-10 -kerning first=242 second=45 amount=3 -kerning first=262 second=202 amount=-2 -kerning first=370 second=97 amount=2 -kerning first=285 second=109 amount=2 -kerning first=197 second=341 amount=-12 -kerning first=200 second=121 amount=-3 -kerning first=220 second=278 amount=-6 -kerning first=351 second=110 amount=1 -kerning first=86 second=303 amount=3 -kerning first=89 second=83 amount=-4 -kerning first=224 second=228 amount=2 -kerning first=109 second=240 amount=2 -kerning first=244 second=355 amount=-1 -kerning first=352 second=280 amount=-3 -kerning first=8211 second=205 amount=-5 -kerning first=67 second=316 amount=2 -kerning first=205 second=241 amount=-2 -kerning first=333 second=293 amount=-1 -kerning first=336 second=73 amount=3 -kerning first=356 second=230 amount=-9 -kerning first=271 second=242 amount=-9 -kerning first=376 second=357 amount=-2 -kerning first=291 second=369 amount=2 -kerning first=71 second=266 amount=3 -kerning first=74 second=46 amount=-5 -kerning first=229 second=318 amount=-1 -kerning first=232 second=98 amount=-1 -kerning first=298 second=99 amount=-2 -kerning first=75 second=216 amount=-8 -kerning first=256 second=205 amount=-7 -kerning first=361 second=320 amount=-1 -kerning first=364 second=100 amount=2 -kerning first=99 second=293 amount=-1 -kerning first=342 second=333 amount=-2 -kerning first=345 second=113 amount=-2 -kerning first=280 second=282 amount=-5 -kerning first=103 second=243 amount=2 -kerning first=261 second=295 amount=-1 -kerning first=304 second=359 amount=-2 -kerning first=84 second=256 amount=-13 -kerning first=265 second=245 amount=-1 -kerning first=45 second=112 amount=2 -kerning first=65 second=269 amount=-12 -kerning first=108 second=333 amount=1 -kerning first=351 second=373 amount=1 -kerning first=46 second=282 amount=-4 -kerning first=289 second=322 amount=2 -kerning first=207 second=114 amount=-2 -kerning first=312 second=259 amount=2 -kerning first=89 second=346 amount=-4 -kerning first=227 second=271 amount=2 -kerning first=112 second=283 amount=2 -kerning first=358 second=103 amount=-10 -kerning first=273 second=115 amount=1 -kerning first=70 second=359 amount=-2 -kerning first=208 second=284 amount=4 -kerning first=339 second=116 amount=-1 -kerning first=359 second=273 amount=2 -kerning first=192 second=77 amount=-8 -kerning first=258 second=78 amount=-15 -kerning first=363 second=223 amount=4 -kerning first=78 second=259 amount=2 -kerning first=59 second=272 amount=-3 -kerning first=197 second=197 amount=-7 -kerning first=302 second=312 amount=-2 -kerning first=198 second=337 amount=-5 -kerning first=201 second=117 amount=-2 -kerning first=221 second=274 amount=-4 -kerning first=349 second=326 amount=1 -kerning first=352 second=106 amount=-11 -kerning first=267 second=118 amount=-1 -kerning first=287 second=275 amount=2 -kerning first=225 second=224 amount=2 -kerning first=333 second=119 amount=-2 -kerning first=8212 second=201 amount=-7 -kerning first=376 second=213 amount=-1 -kerning first=45 second=375 amount=2 -kerning first=291 second=225 amount=5 -kerning first=206 second=237 amount=-2 -kerning first=357 second=226 amount=-8 -kerning first=230 second=314 amount=-1 -kerning first=115 second=326 amount=1 -kerning first=118 second=106 amount=-9 -kerning first=99 second=119 amount=-1 -kerning first=192 second=340 amount=-17 -kerning first=195 second=120 amount=-14 -kerning first=300 second=265 amount=-2 -kerning first=323 second=202 amount=-6 -kerning first=100 second=289 amount=2 -kerning first=258 second=341 amount=-12 -kerning first=366 second=266 amount=2 -kerning first=196 second=290 amount=-11 -kerning first=199 second=70 amount=-2 -kerning first=81 second=302 amount=3 -kerning first=84 second=82 amount=-5 -kerning first=219 second=227 amount=2 -kerning first=327 second=122 amount=3 -kerning first=347 second=279 amount=1 -kerning first=350 second=59 amount=-4 -kerning first=370 second=216 amount=2 -kerning first=285 second=228 amount=5 -kerning first=351 second=229 amount=3 -kerning first=66 second=265 amount=2 -kerning first=89 second=202 amount=-4 -kerning first=227 second=97 amount=2 -kerning first=109 second=329 amount=-3 -kerning first=112 second=109 amount=2 -kerning first=290 second=318 amount=2 -kerning first=90 second=342 amount=2 -kerning first=113 second=279 amount=1 -kerning first=356 second=319 amount=-1 -kerning first=359 second=99 amount=1 -kerning first=271 second=331 amount=-9 -kerning first=274 second=111 amount=-2 -kerning first=71 second=355 amount=2 -kerning first=209 second=280 amount=-6 -kerning first=117 second=229 amount=2 -kerning first=275 second=281 amount=1 -kerning first=193 second=73 amount=-7 -kerning first=75 second=305 amount=-7 -kerning first=318 second=345 amount=-9 -kerning first=98 second=242 amount=2 -kerning first=233 second=357 amount=-1 -kerning first=118 second=369 amount=2 -kerning first=279 second=231 amount=1 -kerning first=194 second=243 amount=-12 -kerning first=345 second=232 amount=-2 -kerning first=260 second=244 amount=-12 -kerning first=365 second=359 amount=-1 -kerning first=280 second=371 amount=-2 -kerning first=198 second=193 amount=-6 -kerning first=221 second=100 amount=-3 -kerning first=241 second=257 amount=2 -kerning first=369 second=309 amount=-10 -kerning first=287 second=101 amount=2 -kerning first=84 second=345 amount=-6 -kerning first=222 second=270 amount=-9 -kerning first=45 second=231 amount=4 -kerning first=373 second=259 amount=5 -kerning first=285 second=8212 amount=4 -kerning first=65 second=358 amount=-20 -kerning first=354 second=272 amount=-8 -kerning first=72 second=88 amount=3 -kerning first=207 second=233 amount=-2 -kerning first=358 second=222 amount=-5 -kerning first=339 second=235 amount=1 -kerning first=119 second=102 amount=2 -kerning first=57 second=51 amount=2 -kerning first=192 second=196 amount=-7 -kerning first=320 second=248 amount=-1 -kerning first=100 second=115 amount=1 -kerning first=258 second=197 amount=-7 -kerning first=278 second=324 amount=-2 -kerning first=281 second=104 amount=-1 -kerning first=193 second=336 amount=-11 -kerning first=196 second=116 amount=-12 -kerning first=101 second=285 amount=2 -kerning first=347 second=105 amount=1 -kerning first=282 second=274 amount=-5 -kerning first=197 second=286 amount=-11 -kerning first=200 second=66 amount=-5 -kerning first=220 second=223 amount=2 -kerning first=325 second=338 amount=3 -kerning first=105 second=235 amount=1 -kerning first=263 second=287 amount=1 -kerning first=86 second=248 amount=3 -kerning first=221 second=363 amount=-5 -kerning first=333 second=238 amount=-2 -kerning first=248 second=250 amount=-2 -kerning first=353 second=365 amount=1 -kerning first=8212 second=290 amount=5 -kerning first=51 second=54 amount=2 -kerning first=291 second=314 amount=2 -kerning first=206 second=326 amount=-2 -kerning first=209 second=106 amount=-12 -kerning first=114 second=275 amount=-2 -kerning first=160 second=67 amount=-3 -kerning first=275 second=107 amount=-1 -kerning first=341 second=108 amount=-1 -kerning first=118 second=225 amount=5 -kerning first=256 second=120 amount=-14 -kerning first=194 second=69 amount=-10 -kerning first=234 second=353 amount=1 -kerning first=345 second=58 amount=-7 -kerning first=119 second=365 amount=2 -kerning first=260 second=70 amount=-17 -kerning first=300 second=354 amount=-2 -kerning first=80 second=251 amount=1 -kerning first=323 second=291 amount=2 -kerning first=261 second=240 amount=2 -kerning first=196 second=379 amount=-7 -kerning first=84 second=201 amount=-8 -kerning first=242 second=253 amount=-2 -kerning first=65 second=214 amount=-11 -kerning first=203 second=109 amount=-2 -kerning first=351 second=318 amount=1 -kerning first=354 second=98 amount=-3 -kerning first=266 second=330 amount=4 -kerning first=289 second=267 amount=2 -kerning first=66 second=354 amount=-4 -kerning first=204 second=279 amount=-2 -kerning first=89 second=291 amount=-3 -kerning first=112 second=228 amount=5 -kerning first=270 second=280 amount=-6 -kerning first=73 second=84 amount=-2 -kerning first=208 second=229 amount=2 -kerning first=313 second=344 amount=-4 -kerning first=117 second=318 amount=-1 -kerning first=120 second=98 amount=-1 -kerning first=360 second=358 amount=-6 -kerning first=160 second=330 amount=-8 -kerning first=193 second=192 amount=-7 -kerning first=298 second=307 amount=-2 -kerning first=98 second=331 amount=2 -kerning first=101 second=111 amount=1 -kerning first=279 second=320 amount=-1 -kerning first=194 second=332 amount=-11 -kerning first=102 second=281 amount=-8 -kerning first=260 second=333 amount=-12 -kerning first=263 second=113 amount=1 -kerning first=198 second=282 amount=-2 -kerning first=106 second=231 amount=1 -kerning first=346 second=8212 amount=4 -kerning first=349 second=271 amount=3 -kerning first=372 second=208 amount=-6 -kerning first=67 second=87 amount=4 -kerning first=307 second=347 amount=1 -kerning first=330 second=284 amount=3 -kerning first=68 second=257 amount=2 -kerning first=226 second=309 amount=-10 -kerning first=114 second=101 amount=-2 -kerning first=354 second=361 amount=-6 -kerning first=269 second=373 amount=-1 -kerning first=207 second=322 amount=-2 -kerning first=230 second=259 amount=2 -kerning first=112 second=8212 amount=4 -kerning first=115 second=271 amount=3 -kerning first=358 second=311 amount=-3 -kerning first=73 second=347 amount=-2 -kerning first=342 second=104 amount=-2 -kerning first=257 second=116 amount=-1 -kerning first=277 second=273 amount=2 -kerning first=192 second=285 amount=-10 -kerning first=195 second=65 amount=-7 -kerning first=77 second=297 amount=1 -kerning first=320 second=337 amount=-1 -kerning first=100 second=234 amount=1 -kerning first=235 second=349 amount=1 -kerning first=258 second=286 amount=-11 -kerning first=366 second=211 amount=2 -kerning first=281 second=223 amount=4 -kerning first=196 second=235 amount=-12 -kerning first=324 second=287 amount=2 -kerning first=327 second=67 amount=3 -kerning first=347 second=224 amount=3 -kerning first=367 second=351 amount=1 -kerning first=282 second=363 amount=-2 -kerning first=197 second=375 amount=-4 -kerning first=243 second=249 amount=-2 -kerning first=374 second=81 amount=-1 -kerning first=204 second=105 amount=-2 -kerning first=86 second=337 amount=3 -kerning first=89 second=117 amount=-5 -kerning first=8211 second=239 amount=2 -kerning first=270 second=106 amount=-12 -kerning first=375 second=251 amount=3 -kerning first=205 second=275 amount=-2 -kerning first=113 second=224 amount=2 -kerning first=356 second=264 amount=-2 -kerning first=8212 second=379 amount=-4 -kerning first=71 second=300 amount=3 -kerning first=74 second=80 amount=-4 -kerning first=209 second=225 amount=2 -kerning first=360 second=214 amount=2 -kerning first=275 second=226 amount=2 -kerning first=295 second=353 amount=1 -kerning first=341 second=227 amount=-2 -kerning first=118 second=314 amount=2 -kerning first=368 second=84 amount=-6 -kerning first=195 second=328 amount=-13 -kerning first=198 second=108 amount=-2 -kerning first=80 second=340 amount=-7 -kerning first=103 second=277 amount=2 -kerning first=349 second=97 amount=3 -kerning first=261 second=329 amount=-3 -kerning first=369 second=254 amount=-1 -kerning first=199 second=278 amount=-2 -kerning first=84 second=290 amount=-2 -kerning first=87 second=70 amount=-2 -kerning first=107 second=227 amount=2 -kerning first=269 second=229 amount=1 -kerning first=374 second=344 amount=-1 -kerning first=115 second=97 amount=3 -kerning first=355 second=357 amount=-1 -kerning first=316 second=243 amount=1 -kerning first=362 second=87 amount=2 -kerning first=277 second=99 amount=1 -kerning first=192 second=111 amount=-12 -kerning first=340 second=320 amount=-2 -kerning first=343 second=100 amount=-2 -kerning first=363 second=257 amount=2 -kerning first=193 second=281 amount=-12 -kerning first=81 second=73 amount=3 -kerning first=324 second=113 amount=2 -kerning first=121 second=357 amount=3 -kerning first=197 second=231 amount=-12 -kerning first=217 second=358 amount=-6 -kerning first=240 second=295 amount=-1 -kerning first=283 second=359 amount=-1 -kerning first=198 second=371 amount=-6 -kerning first=86 second=193 amount=-3 -kerning first=109 second=100 amount=2 -kerning first=8211 second=65 amount=-13 -kerning first=290 second=89 amount=4 -kerning first=67 second=206 amount=3 -kerning first=205 second=101 amount=-2 -kerning first=356 second=90 amount=-2 -kerning first=8212 second=235 amount=4 -kerning first=268 second=322 amount=2 -kerning first=271 second=102 amount=-4 -kerning first=291 second=259 amount=5 -kerning first=272 second=272 amount=-6 -kerning first=75 second=76 amount=-3 -kerning first=256 second=65 amount=-7 -kerning first=276 second=222 amount=-6 -kerning first=296 second=349 amount=-2 -kerning first=300 second=299 amount=-2 -kerning first=80 second=196 amount=-14 -kerning first=103 second=103 amount=5 -kerning first=258 second=375 amount=-4 -kerning first=196 second=324 amount=-13 -kerning first=199 second=104 amount=2 -kerning first=84 second=116 amount=-3 -kerning first=304 second=249 amount=-2 -kerning first=104 second=273 amount=2 -kerning first=262 second=325 amount=4 -kerning first=200 second=274 amount=-5 -kerning first=85 second=286 amount=2 -kerning first=88 second=66 amount=-2 -kerning first=331 second=106 amount=-10 -kerning first=108 second=223 amount=4 -kerning first=246 second=118 amount=-2 -kerning first=351 second=263 amount=1 -kerning first=374 second=200 amount=-4 -kerning first=309 second=339 amount=1 -kerning first=224 second=351 amount=1 -kerning first=8211 second=328 amount=2 -kerning first=270 second=225 amount=2 -kerning first=356 second=353 amount=-10 -kerning first=271 second=365 amount=-9 -kerning first=97 second=106 amount=-10 -kerning first=193 second=107 amount=-12 -kerning first=298 second=252 amount=-2 -kerning first=75 second=339 amount=-10 -kerning first=216 second=44 amount=-5 -kerning first=341 second=316 amount=-1 -kerning first=256 second=328 amount=-13 -kerning first=259 second=108 amount=-1 -kerning first=279 second=265 amount=1 -kerning first=194 second=277 amount=-12 -kerning first=102 second=226 amount=-6 -kerning first=348 second=46 amount=-4 -kerning first=122 second=353 amount=1 -kerning first=260 second=278 amount=-10 -kerning first=368 second=203 amount=-6 -kerning first=198 second=227 amount=-3 -kerning first=218 second=354 amount=-6 -kerning first=241 second=291 amount=2 -kerning first=284 second=355 amount=2 -kerning first=84 second=379 amount=-2 -kerning first=330 second=229 amount=2 -kerning first=245 second=241 amount=-2 -kerning first=350 second=356 amount=-3 -kerning first=45 second=265 amount=4 -kerning first=373 second=293 amount=2 -kerning first=68 second=202 amount=-6 -kerning first=311 second=242 amount=1 -kerning first=88 second=329 amount=-6 -kerning first=226 second=254 amount=-1 -kerning first=114 second=46 amount=-7 -kerning first=269 second=318 amount=-1 -kerning first=69 second=342 amount=-6 -kerning first=207 second=267 amount=-2 -kerning first=358 second=256 amount=-13 -kerning first=339 second=269 amount=1 -kerning first=254 second=281 amount=2 -kerning first=192 second=230 amount=-10 -kerning first=258 second=231 amount=-12 -kerning first=278 second=358 amount=-5 -kerning first=239 second=244 amount=1 -kerning first=344 second=359 amount=-2 -kerning first=197 second=320 amount=-12 -kerning first=220 second=257 amount=2 -kerning first=105 second=269 amount=1 -kerning first=201 second=270 amount=-5 -kerning first=329 second=322 amount=-1 -kerning first=267 second=271 amount=1 -kerning first=44 second=358 amount=-10 -kerning first=290 second=208 amount=-2 -kerning first=67 second=295 amount=2 -kerning first=225 second=347 amount=1 -kerning first=110 second=359 amount=-1 -kerning first=356 second=209 amount=-1 -kerning first=8212 second=324 amount=2 -kerning first=376 second=336 amount=-1 -kerning first=71 second=245 amount=3 -kerning first=114 second=309 amount=-10 -kerning first=357 second=349 amount=-8 -kerning first=75 second=195 amount=-3 -kerning first=318 second=235 amount=-9 -kerning first=118 second=259 amount=5 -kerning first=364 second=79 amount=2 -kerning first=194 second=103 amount=-10 -kerning first=342 second=312 amount=-2 -kerning first=260 second=104 amount=-12 -kerning first=195 second=273 amount=-10 -kerning first=83 second=65 amount=-9 -kerning first=238 second=337 amount=1 -kerning first=346 second=262 amount=3 -kerning first=199 second=223 amount=3 -kerning first=84 second=235 amount=-7 -kerning first=350 second=212 amount=3 -kerning first=265 second=224 amount=1 -kerning first=373 second=119 amount=3 -kerning first=285 second=351 amount=2 -kerning first=65 second=248 amount=-12 -kerning first=200 second=363 amount=-2 -kerning first=331 second=225 amount=2 -kerning first=246 second=237 amount=-2 -kerning first=374 second=289 amount=-3 -kerning first=289 second=301 amount=3 -kerning first=358 second=82 amount=-5 -kerning first=73 second=118 amount=-2 -kerning first=254 second=107 amount=3 -kerning first=320 second=108 amount=-2 -kerning first=97 second=225 amount=2 -kerning first=235 second=120 amount=-2 -kerning first=58 second=81 amount=-3 -kerning first=193 second=226 amount=-10 -kerning first=98 second=365 amount=2 -kerning first=259 second=227 amount=2 -kerning first=364 second=342 amount=-2 -kerning first=325 second=228 amount=2 -kerning first=240 second=240 amount=2 -kerning first=345 second=355 amount=-1 -kerning first=260 second=367 amount=-13 -kerning first=286 second=84 amount=-2 -kerning first=198 second=316 amount=-2 -kerning first=86 second=108 amount=3 -kerning first=106 second=265 amount=1 -kerning first=267 second=97 amount=1 -kerning first=44 second=214 amount=-3 -kerning first=287 second=254 amount=3 -kerning first=87 second=278 amount=-6 -kerning first=333 second=98 amount=-1 -kerning first=248 second=110 amount=-2 -kerning first=376 second=192 amount=-3 -kerning first=45 second=354 amount=-7 -kerning first=68 second=291 amount=2 -kerning first=71 second=71 amount=3 -kerning first=111 second=355 amount=-1 -kerning first=292 second=344 amount=-2 -kerning first=207 second=356 amount=-2 -kerning first=230 second=293 amount=-1 -kerning first=358 second=345 amount=-6 -kerning first=273 second=357 amount=-1 -kerning first=99 second=98 amount=-1 -kerning first=234 second=243 amount=1 -kerning first=192 second=319 amount=-7 -kerning first=195 second=99 amount=-12 -kerning first=300 second=244 amount=-2 -kerning first=258 second=320 amount=-12 -kerning first=261 second=100 amount=2 -kerning first=281 second=257 amount=2 -kerning first=58 second=344 amount=-4 -kerning first=196 second=269 amount=-12 -kerning first=239 second=333 amount=1 -kerning first=262 second=270 amount=-2 -kerning first=65 second=74 amount=-9 -kerning first=328 second=271 amount=2 -kerning first=374 second=115 amount=-4 -kerning first=66 second=244 amount=2 -kerning first=86 second=371 amount=2 -kerning first=8211 second=273 amount=4 -kerning first=375 second=285 amount=7 -kerning first=70 second=194 amount=-12 -kerning first=205 second=309 amount=-14 -kerning first=208 second=89 amount=2 -kerning first=333 second=361 amount=-2 -kerning first=248 second=373 amount=-2 -kerning first=356 second=298 amount=-2 -kerning first=209 second=259 amount=2 -kerning first=337 second=311 amount=-1 -kerning first=75 second=284 amount=-8 -kerning first=318 second=324 amount=-9 -kerning first=341 second=261 amount=-2 -kerning first=256 second=273 amount=-10 -kerning first=194 second=222 amount=-17 -kerning first=299 second=337 amount=1 -kerning first=302 second=117 amount=-2 -kerning first=260 second=223 amount=-10 -kerning first=303 second=287 amount=2 -kerning first=221 second=79 amount=-1 -kerning first=103 second=311 amount=2 -kerning first=326 second=224 amount=2 -kerning first=372 second=68 amount=-6 -kerning first=284 second=300 amount=3 -kerning first=199 second=312 amount=2 -kerning first=84 second=324 amount=-6 -kerning first=45 second=210 amount=5 -kerning first=373 second=238 amount=2 -kerning first=65 second=337 amount=-12 -kerning first=88 second=274 amount=-2 -kerning first=331 second=314 amount=-1 -kerning first=246 second=326 amount=-2 -kerning first=292 second=200 amount=-6 -kerning first=112 second=351 amount=2 -kerning first=358 second=201 amount=-8 -kerning first=296 second=120 amount=-1 -kerning first=73 second=237 amount=-2 -kerning first=316 second=277 amount=1 -kerning first=231 second=289 amount=1 -kerning first=254 second=226 amount=5 -kerning first=300 second=70 amount=-2 -kerning first=212 second=302 amount=3 -kerning first=97 second=314 amount=-1 -kerning first=340 second=354 amount=-8 -kerning first=363 second=291 amount=2 -kerning first=366 second=71 amount=2 -kerning first=58 second=200 amount=-4 -kerning first=193 second=315 amount=-7 -kerning first=301 second=240 amount=2 -kerning first=259 second=316 amount=-1 -kerning first=59 second=340 amount=-4 -kerning first=197 second=265 amount=-12 -kerning first=220 second=202 amount=-6 -kerning first=328 second=97 amount=2 -kerning first=240 second=329 amount=-3 -kerning first=243 second=109 amount=-2 -kerning first=368 second=381 amount=4 -kerning first=286 second=203 amount=-2 -kerning first=66 second=70 amount=-1 -kerning first=86 second=227 amount=6 -kerning first=221 second=342 amount=-1 -kerning first=8211 second=99 amount=4 -kerning first=375 second=111 amount=3 -kerning first=8212 second=269 amount=4 -kerning first=268 second=356 amount=-2 -kerning first=291 second=293 amount=2 -kerning first=114 second=254 amount=-1 -kerning first=75 second=110 amount=-8 -kerning first=256 second=99 amount=-12 -kerning first=214 second=205 amount=3 -kerning first=300 second=333 amount=-2 -kerning first=303 second=113 amount=2 -kerning first=323 second=270 amount=-6 -kerning first=100 second=357 amount=-1 -kerning first=366 second=334 amount=2 -kerning first=196 second=358 amount=-20 -kerning first=304 second=283 amount=-2 -kerning first=262 second=359 amount=2 -kerning first=370 second=284 amount=2 -kerning first=65 second=193 amount=-7 -kerning first=203 second=88 amount=3 -kerning first=223 second=245 amount=1 -kerning first=108 second=257 amount=2 -kerning first=351 second=297 amount=1 -kerning first=354 second=77 amount=-7 -kerning first=374 second=234 amount=-4 -kerning first=289 second=246 amount=2 -kerning first=66 second=333 amount=2 -kerning first=89 second=270 amount=-4 -kerning first=8211 second=362 amount=5 -kerning first=270 second=259 amount=2 -kerning first=70 second=283 amount=-6 -kerning first=208 second=208 amount=-6 -kerning first=316 second=103 amount=2 -kerning first=231 second=115 amount=1 -kerning first=74 second=233 amount=-5 -kerning first=232 second=285 amount=2 -kerning first=160 second=309 amount=-9 -kerning first=275 second=349 amount=1 -kerning first=75 second=373 amount=-10 -kerning first=213 second=298 amount=3 -kerning first=236 second=235 amount=1 -kerning first=364 second=287 amount=2 -kerning first=194 second=311 amount=-12 -kerning first=302 second=236 amount=-2 -kerning first=348 second=80 amount=-3 -kerning first=260 second=312 amount=-12 -kerning first=244 second=105 amount=-2 -kerning first=349 second=250 amount=1 -kerning first=67 second=66 amount=-2 -kerning first=87 second=223 amount=2 -kerning first=222 second=338 amount=4 -kerning first=376 second=107 amount=-2 -kerning first=45 second=299 amount=2 -kerning first=291 second=119 amount=2 -kerning first=88 second=363 amount=-3 -kerning first=354 second=340 amount=-5 -kerning first=357 second=120 amount=-11 -kerning first=292 second=289 amount=2 -kerning first=207 second=301 amount=-2 -kerning first=115 second=250 amount=1 -kerning first=358 second=290 amount=-2 -kerning first=276 second=82 amount=-6 -kerning first=296 second=239 amount=-2 -kerning first=73 second=326 amount=-2 -kerning first=76 second=106 amount=-6 -kerning first=362 second=240 amount=2 -kerning first=192 second=264 amount=-11 -kerning first=195 second=44 amount=-10 -kerning first=320 second=316 amount=-2 -kerning first=258 second=265 amount=-12 -kerning first=196 second=214 amount=-11 -kerning first=301 second=329 amount=-2 -kerning first=304 second=109 amount=-2 -kerning first=101 second=353 amount=1 -kerning first=282 second=342 amount=-6 -kerning first=197 second=354 amount=-20 -kerning first=220 second=291 amount=2 -kerning first=263 second=355 amount=-1 -kerning first=204 second=84 amount=-2 -kerning first=309 second=229 amount=2 -kerning first=86 second=316 amount=3 -kerning first=270 second=85 amount=2 -kerning first=70 second=109 amount=-3 -kerning first=205 second=254 amount=-2 -kerning first=248 second=318 amount=-1 -kerning first=356 second=243 amount=-7 -kerning first=8212 second=358 amount=-7 -kerning first=71 second=279 amount=3 -kerning first=74 second=59 amount=-5 -kerning first=232 second=111 amount=1 -kerning first=298 second=112 amount=-2 -kerning first=75 second=229 amount=-7 -kerning first=318 second=269 amount=-9 -kerning first=233 second=281 amount=1 -kerning first=118 second=293 amount=2 -kerning first=364 second=113 amount=2 -kerning first=381 second=8211 amount=-6 -kerning first=237 second=231 amount=1 -kerning first=198 second=87 amount=-2 -kerning first=303 second=232 amount=1 -kerning first=264 second=88 amount=1 -kerning first=84 second=269 amount=-7 -kerning first=222 second=194 amount=-13 -kerning first=327 second=309 amount=-12 -kerning first=65 second=282 amount=-10 -kerning first=331 second=259 amount=2 -kerning first=243 second=8212 amount=3 -kerning first=354 second=196 amount=-13 -kerning first=289 second=335 amount=2 -kerning first=204 second=347 amount=-2 -kerning first=89 second=359 amount=-2 -kerning first=358 second=116 amount=-3 -kerning first=362 second=66 amount=-6 -kerning first=192 second=90 amount=-7 -kerning first=97 second=259 amount=2 -kerning first=278 second=248 amount=-2 -kerning first=193 second=260 amount=-7 -kerning first=298 second=375 amount=-2 -kerning first=78 second=272 amount=-6 -kerning first=197 second=210 amount=-11 -kerning first=82 second=222 amount=-8 -kerning first=325 second=262 amount=3 -kerning first=102 second=349 amount=-7 -kerning first=348 second=199 amount=3 -kerning first=371 second=106 amount=-10 -kerning first=198 second=350 amount=-3 -kerning first=221 second=287 amount=-3 -kerning first=349 second=339 amount=1 -kerning first=372 second=276 amount=-6 -kerning first=290 second=68 amount=-2 -kerning first=205 second=80 amount=-2 -kerning first=353 second=289 amount=3 -kerning first=356 second=69 amount=-8 -kerning first=8212 second=214 amount=5 -kerning first=376 second=226 amount=-3 -kerning first=291 second=238 amount=3 -kerning first=71 second=105 amount=1 -kerning first=206 second=250 amount=-2 -kerning first=334 second=302 amount=3 -kerning first=357 second=239 amount=-3 -kerning first=233 second=107 amount=-1 -kerning first=115 second=339 amount=1 -kerning first=118 second=119 amount=3 -kerning first=256 second=44 amount=-10 -kerning first=358 second=379 amount=-2 -kerning first=276 second=201 amount=-5 -kerning first=296 second=328 amount=-2 -kerning first=234 second=277 amount=1 -kerning first=119 second=289 amount=5 -kerning first=280 second=121 amount=-3 -kerning first=192 second=353 amount=-11 -kerning first=218 second=70 amount=-2 -kerning first=238 second=227 amount=2 -kerning first=258 second=354 amount=-20 -kerning first=281 second=291 amount=2 -kerning first=219 second=240 amount=2 -kerning first=324 second=355 amount=-1 -kerning first=262 second=304 amount=3 -kerning first=370 second=229 amount=2 -kerning first=285 second=241 amount=2 -kerning first=65 second=108 amount=-12 -kerning first=88 second=45 amount=-8 -kerning first=351 second=242 amount=1 -kerning first=266 second=254 amount=2 -kerning first=66 second=278 amount=-4 -kerning first=8211 second=307 amount=2 -kerning first=70 second=228 amount=-3 -kerning first=336 second=205 amount=3 -kerning first=356 second=332 amount=-2 -kerning first=212 second=73 amount=3 -kerning first=360 second=282 amount=-6 -kerning first=193 second=86 amount=-7 -kerning first=298 second=231 amount=-2 -kerning first=75 second=318 amount=-7 -kerning first=341 second=295 amount=-1 -kerning first=279 second=244 amount=1 -kerning first=194 second=256 amount=-7 -kerning first=325 second=88 amount=3 -kerning first=240 second=100 amount=2 -kerning first=345 second=245 amount=-2 -kerning first=260 second=257 amount=-10 -kerning first=221 second=113 amount=-3 -kerning first=264 second=207 amount=3 -kerning first=369 second=322 amount=-1 -kerning first=287 second=114 amount=2 -kerning first=307 second=271 amount=2 -kerning first=84 second=358 amount=-8 -kerning first=330 second=208 amount=-6 -kerning first=265 second=347 amount=1 -kerning first=45 second=244 amount=4 -kerning first=65 second=371 amount=-13 -kerning first=354 second=285 amount=-10 -kerning first=207 second=246 amount=-2 -kerning first=358 second=235 amount=-7 -kerning first=234 second=103 amount=2 -kerning first=339 second=248 amount=1 -kerning first=116 second=335 amount=1 -kerning first=119 second=115 amount=2 -kerning first=192 second=209 amount=-15 -kerning first=300 second=104 amount=-2 -kerning first=235 second=273 amount=2 -kerning first=120 second=285 amount=2 -kerning first=258 second=210 amount=-11 -kerning first=278 second=337 amount=-2 -kerning first=193 second=349 amount=-11 -kerning first=219 second=66 amount=-6 -kerning first=239 second=223 amount=3 -kerning first=347 second=118 amount=1 -kerning first=305 second=224 amount=2 -kerning first=82 second=311 amount=-2 -kerning first=105 second=248 amount=1 -kerning first=348 second=288 amount=3 -kerning first=266 second=80 amount=-2 -kerning first=371 second=225 amount=2 -kerning first=67 second=274 amount=-2 -kerning first=228 second=106 amount=-10 -kerning first=333 second=251 amount=-2 -kerning first=8212 second=303 amount=2 -kerning first=376 second=315 amount=-3 -kerning first=71 second=224 amount=5 -kerning first=206 second=339 amount=-2 -kerning first=357 second=328 amount=-9 -kerning first=272 second=340 amount=-3 -kerning first=275 second=120 amount=-2 -kerning first=233 second=226 amount=2 -kerning first=118 second=238 amount=2 -kerning first=194 second=82 amount=-17 -kerning first=299 second=227 amount=2 -kerning first=260 second=83 amount=-8 -kerning first=365 second=228 amount=2 -kerning first=300 second=367 amount=-2 -kerning first=80 second=264 amount=3 -kerning first=83 second=44 amount=-4 -kerning first=199 second=202 amount=-2 -kerning first=307 second=97 amount=2 -kerning first=84 second=214 amount=-2 -kerning first=222 second=109 amount=2 -kerning first=373 second=98 amount=2 -kerning first=45 second=70 amount=-7 -kerning first=65 second=227 amount=-10 -kerning first=200 second=342 amount=-6 -kerning first=85 second=354 amount=-6 -kerning first=223 second=279 amount=1 -kerning first=108 second=291 amount=2 -kerning first=351 second=331 amount=1 -kerning first=354 second=111 amount=-7 -kerning first=374 second=268 amount=-1 -kerning first=227 second=229 amount=2 -kerning first=112 second=241 amount=2 -kerning first=359 second=231 amount=1 -kerning first=274 second=243 amount=-2 -kerning first=74 second=267 amount=-5 -kerning first=193 second=205 amount=-7 -kerning first=298 second=320 amount=-2 -kerning first=301 second=100 amount=2 -kerning first=236 second=269 amount=1 -kerning first=344 second=194 amount=3 -kerning first=121 second=281 amount=3 -kerning first=279 second=333 amount=1 -kerning first=194 second=345 amount=-12 -kerning first=217 second=282 amount=-6 -kerning first=260 second=346 amount=-8 -kerning first=368 second=271 amount=2 -kerning first=283 second=283 amount=1 -kerning first=198 second=295 amount=-2 -kerning first=86 second=87 amount=4 -kerning first=326 second=347 amount=1 -kerning first=106 second=244 amount=1 -kerning first=241 second=359 amount=-1 -kerning first=264 second=296 amount=3 -kerning first=287 second=233 amount=2 -kerning first=202 second=245 amount=-2 -kerning first=87 second=257 amount=2 -kerning first=245 second=309 amount=-13 -kerning first=353 second=234 amount=1 -kerning first=373 second=361 amount=2 -kerning first=45 second=333 amount=4 -kerning first=65 second=8211 amount=-12 -kerning first=68 second=270 amount=-6 -kerning first=226 second=322 amount=-1 -kerning first=272 second=196 amount=-8 -kerning first=295 second=103 amount=2 -kerning first=207 second=335 amount=-2 -kerning first=358 second=324 amount=-6 -kerning first=361 second=104 amount=-1 -kerning first=339 second=337 amount=1 -kerning first=119 second=234 amount=4 -kerning first=254 second=349 amount=2 -kerning first=362 second=274 amount=-6 -kerning first=280 second=66 amount=-5 -kerning first=192 second=298 amount=-7 -kerning first=195 second=78 amount=-15 -kerning first=80 second=90 amount=-4 -kerning first=343 second=287 amount=-2 -kerning first=346 second=67 amount=3 -kerning first=366 second=224 amount=2 -kerning first=58 second=323 amount=-5 -kerning first=196 second=248 amount=-12 -kerning first=327 second=80 amount=-2 -kerning first=347 second=237 amount=1 -kerning first=85 second=210 amount=2 -kerning first=105 second=337 amount=1 -kerning first=371 second=314 amount=-1 -kerning first=66 second=223 amount=3 -kerning first=204 second=118 amount=-2 -kerning first=309 second=263 amount=1 -kerning first=109 second=287 amount=2 -kerning first=355 second=107 amount=-1 -kerning first=8211 second=252 amount=2 -kerning first=290 second=276 amount=-2 -kerning first=208 second=68 amount=-6 -kerning first=228 second=225 amount=2 -kerning first=356 second=277 amount=-7 -kerning first=271 second=289 amount=-8 -kerning first=274 second=69 amount=-5 -kerning first=294 second=226 amount=2 -kerning first=340 second=70 amount=-8 -kerning first=360 second=227 amount=2 -kerning first=160 second=199 amount=-3 -kerning first=75 second=263 amount=-10 -kerning first=318 second=303 amount=-3 -kerning first=341 second=240 amount=-2 -kerning first=121 second=107 amount=3 -kerning first=194 second=201 amount=-10 -kerning first=102 second=120 amount=-7 -kerning first=237 second=265 amount=1 -kerning first=122 second=277 amount=1 -kerning first=260 second=202 amount=-10 -kerning first=368 second=97 amount=2 -kerning first=195 second=341 amount=-12 -kerning first=198 second=121 amount=-7 -kerning first=218 second=278 amount=-6 -kerning first=221 second=58 amount=-5 -kerning first=349 second=110 amount=1 -kerning first=84 second=303 amount=-2 -kerning first=107 second=240 amount=2 -kerning first=242 second=355 amount=-1 -kerning first=350 second=280 amount=-3 -kerning first=65 second=316 amount=-12 -kerning first=331 second=293 amount=-1 -kerning first=334 second=73 amount=3 -kerning first=354 second=230 amount=-9 -kerning first=269 second=242 amount=-1 -kerning first=374 second=357 amount=-2 -kerning first=289 second=369 amount=2 -kerning first=227 second=318 amount=-1 -kerning first=230 second=98 amount=-1 -kerning first=115 second=110 amount=1 -kerning first=296 second=99 amount=-2 -kerning first=359 second=320 amount=-1 -kerning first=362 second=100 amount=2 -kerning first=74 second=356 amount=-5 -kerning first=97 second=293 amount=-1 -kerning first=340 second=333 amount=-2 -kerning first=343 second=113 amount=-2 -kerning first=278 second=282 amount=-5 -kerning first=196 second=74 amount=-9 -kerning first=101 second=243 amount=1 -kerning first=259 second=295 amount=-1 -kerning first=197 second=244 amount=-12 -kerning first=302 second=359 amount=-2 -kerning first=82 second=256 amount=3 -kerning first=102 second=383 amount=-7 -kerning first=263 second=245 amount=-1 -kerning first=86 second=206 amount=5 -kerning first=106 second=333 amount=1 -kerning first=109 second=113 amount=2 -kerning first=349 second=373 amount=1 -kerning first=8211 second=78 amount=-2 -kerning first=44 second=282 amount=-4 -kerning first=287 second=322 amount=2 -kerning first=205 second=114 amount=-2 -kerning first=222 second=8212 amount=3 -kerning first=225 second=271 amount=2 -kerning first=356 second=103 amount=-10 -kerning first=8212 second=248 amount=4 -kerning first=271 second=115 amount=-8 -kerning first=376 second=260 amount=-3 -kerning first=337 second=116 amount=-1 -kerning first=114 second=233 amount=-2 -kerning first=357 second=273 amount=-8 -kerning first=272 second=285 amount=2 -kerning first=72 second=309 amount=-12 -kerning first=75 second=89 amount=-3 -kerning first=115 second=373 amount=1 -kerning first=256 second=78 amount=-15 -kerning first=361 second=223 amount=4 -kerning first=234 second=311 amount=-1 -kerning first=195 second=197 amount=-7 -kerning first=300 second=312 amount=-2 -kerning first=103 second=116 amount=2 -kerning first=196 second=337 amount=-12 -kerning first=219 second=274 amount=-6 -kerning first=327 second=199 amount=3 -kerning first=347 second=326 amount=1 -kerning first=350 second=106 amount=-11 -kerning first=265 second=118 amount=-1 -kerning first=285 second=275 amount=2 -kerning first=88 second=79 amount=-4 -kerning first=223 second=224 amount=2 -kerning first=374 second=213 amount=-1 -kerning first=289 second=225 amount=5 -kerning first=204 second=237 amount=-2 -kerning first=355 second=226 amount=2 -kerning first=228 second=314 amount=-1 -kerning first=116 second=106 amount=-12 -kerning first=54 second=55 amount=-3 -kerning first=160 second=288 amount=-3 -kerning first=193 second=120 amount=-14 -kerning first=298 second=265 amount=-2 -kerning first=98 second=289 amount=5 -kerning first=121 second=226 amount=7 -kerning first=256 second=341 amount=-12 -kerning first=364 second=266 amount=2 -kerning first=194 second=290 amount=-11 -kerning first=197 second=70 amount=-17 -kerning first=79 second=302 amount=3 -kerning first=82 second=82 amount=-8 -kerning first=217 second=227 amount=2 -kerning first=102 second=239 amount=-7 -kerning first=325 second=122 amount=3 -kerning first=345 second=279 amount=-2 -kerning first=348 second=59 amount=-4 -kerning first=260 second=291 amount=-10 -kerning first=368 second=216 amount=2 -kerning first=283 second=228 amount=2 -kerning first=198 second=240 amount=-3 -kerning first=349 second=229 amount=3 -kerning first=87 second=202 amount=-6 -kerning first=225 second=97 amount=2 -kerning first=107 second=329 amount=-2 -kerning first=245 second=254 amount=-1 -kerning first=8212 second=74 amount=-7 -kerning first=45 second=278 amount=-7 -kerning first=291 second=98 amount=2 -kerning first=206 second=110 amount=-2 -kerning first=114 second=59 amount=-7 -kerning first=354 second=319 amount=-1 -kerning first=357 second=99 amount=-9 -kerning first=115 second=229 amount=3 -kerning first=358 second=269 amount=-7 -kerning first=273 second=281 amount=1 -kerning first=231 second=357 amount=-1 -kerning first=277 second=231 amount=1 -kerning first=192 second=243 amount=-12 -kerning first=320 second=295 amount=-2 -kerning first=343 second=232 amount=-2 -kerning first=258 second=244 amount=-12 -kerning first=363 second=359 amount=-1 -kerning first=278 second=371 amount=-2 -kerning first=58 second=268 amount=-3 -kerning first=196 second=193 amount=-7 -kerning first=304 second=88 amount=2 -kerning first=81 second=205 amount=3 -kerning first=219 second=100 amount=2 -kerning first=239 second=257 amount=2 -kerning first=367 second=309 amount=-10 -kerning first=370 second=89 amount=2 -kerning first=285 second=101 amount=2 -kerning first=197 second=333 amount=-12 -kerning first=220 second=270 amount=-6 -kerning first=371 second=259 amount=2 -kerning first=86 second=295 amount=3 -kerning first=352 second=272 amount=-3 -kerning first=8211 second=197 amount=-13 -kerning first=205 second=233 amount=-2 -kerning first=356 second=222 amount=-5 -kerning first=271 second=234 amount=-9 -kerning first=376 second=349 amount=-4 -kerning first=8212 second=337 amount=4 -kerning first=291 second=361 amount=2 -kerning first=206 second=373 amount=-2 -kerning first=114 second=322 amount=-1 -kerning first=55 second=51 amount=-5 -kerning first=295 second=311 amount=-1 -kerning first=75 second=208 amount=-9 -kerning first=318 second=248 amount=-9 -kerning first=98 second=115 amount=2 -kerning first=256 second=197 amount=-7 -kerning first=276 second=324 amount=-2 -kerning first=279 second=104 amount=-1 -kerning first=194 second=116 amount=-12 -kerning first=99 second=285 amount=1 -kerning first=260 second=117 amount=-13 -kerning first=280 second=274 amount=-5 -kerning first=195 second=286 amount=-11 -kerning first=198 second=66 amount=-2 -kerning first=218 second=223 amount=2 -kerning first=323 second=338 amount=3 -kerning first=103 second=235 amount=2 -kerning first=261 second=287 amount=2 -kerning first=304 second=351 amount=-2 -kerning first=84 second=248 amount=-7 -kerning first=327 second=288 amount=3 -kerning first=330 second=68 amount=-6 -kerning first=111 second=105 amount=-2 -kerning first=246 second=250 amount=-2 -kerning first=351 second=365 amount=1 -kerning first=46 second=274 amount=-4 -kerning first=289 second=314 amount=2 -kerning first=204 second=326 amount=-2 -kerning first=207 second=106 amount=-14 -kerning first=89 second=338 amount=-1 -kerning first=112 second=275 amount=2 -kerning first=273 second=107 amount=-1 -kerning first=70 second=351 amount=-4 -kerning first=208 second=276 amount=-6 -kerning first=339 second=108 amount=-1 -kerning first=116 second=225 amount=2 -kerning first=254 second=120 amount=-1 -kerning first=359 second=265 amount=1 -kerning first=192 second=69 amount=-10 -kerning first=74 second=301 amount=-1 -kerning first=77 second=81 amount=3 -kerning first=232 second=353 amount=1 -kerning first=343 second=58 amount=-7 -kerning first=258 second=70 amount=-17 -kerning first=298 second=354 amount=-2 -kerning first=259 second=240 amount=2 -kerning first=59 second=264 amount=-3 -kerning first=194 second=379 amount=-7 -kerning first=102 second=328 amount=-7 -kerning first=201 second=109 amount=-2 -kerning first=86 second=121 amount=3 -kerning first=221 second=266 amount=-1 -kerning first=349 second=318 amount=1 -kerning first=264 second=330 amount=4 -kerning first=287 second=267 amount=2 -kerning first=87 second=291 amount=2 -kerning first=110 second=228 amount=2 -kerning first=8212 second=193 amount=-13 -kerning first=268 second=280 amount=-2 -kerning first=45 second=367 amount=2 -kerning first=71 second=84 amount=-2 -kerning first=207 second=369 amount=-2 -kerning first=115 second=318 amount=1 -kerning first=118 second=98 amount=2 -kerning first=358 second=358 amount=-8 -kerning first=296 second=307 amount=-2 -kerning first=99 second=111 amount=-1 -kerning first=277 second=320 amount=-1 -kerning first=192 second=332 amount=-11 -kerning first=77 second=344 amount=-4 -kerning first=100 second=281 amount=1 -kerning first=258 second=333 amount=-12 -kerning first=261 second=113 amount=2 -kerning first=196 second=282 amount=-10 -kerning first=84 second=74 amount=-7 -kerning first=347 second=271 amount=3 -kerning first=370 second=208 amount=-6 -kerning first=65 second=87 amount=-7 -kerning first=305 second=347 amount=1 -kerning first=66 second=257 amount=3 -kerning first=89 second=194 amount=-3 -kerning first=224 second=309 amount=-10 -kerning first=112 second=101 amount=2 -kerning first=8211 second=286 amount=5 -kerning first=267 second=373 amount=-1 -kerning first=205 second=322 amount=-2 -kerning first=228 second=259 amount=2 -kerning first=113 second=271 amount=2 -kerning first=356 second=311 amount=-3 -kerning first=71 second=347 amount=2 -kerning first=209 second=272 amount=-6 -kerning first=337 second=324 amount=-2 -kerning first=340 second=104 amount=-2 -kerning first=275 second=273 amount=2 -kerning first=193 second=65 amount=-7 -kerning first=75 second=297 amount=-7 -kerning first=318 second=337 amount=-9 -kerning first=98 second=234 amount=2 -kerning first=233 second=349 amount=1 -kerning first=118 second=361 amount=2 -kerning first=256 second=286 amount=-11 -kerning first=364 second=211 amount=2 -kerning first=279 second=223 amount=4 -kerning first=194 second=235 amount=-12 -kerning first=325 second=67 amount=3 -kerning first=345 second=224 amount=-2 -kerning first=365 second=351 amount=1 -kerning first=280 second=363 amount=-2 -kerning first=195 second=375 amount=-4 -kerning first=83 second=197 amount=-9 -kerning first=103 second=324 amount=2 -kerning first=199 second=325 amount=4 -kerning first=84 second=337 amount=-7 -kerning first=222 second=262 amount=4 -kerning first=327 second=377 amount=4 -kerning first=373 second=251 amount=2 -kerning first=65 second=350 amount=-8 -kerning first=354 second=264 amount=-2 -kerning first=72 second=80 amount=-2 -kerning first=358 second=214 amount=-2 -kerning first=273 second=226 amount=2 -kerning first=73 second=250 amount=-2 -kerning first=319 second=70 amount=-4 -kerning first=339 second=227 amount=2 -kerning first=254 second=239 amount=2 -kerning first=100 second=107 amount=-1 -kerning first=366 second=84 amount=-6 -kerning first=58 second=213 amount=-3 -kerning first=193 second=328 amount=-13 -kerning first=196 second=108 amount=-12 -kerning first=78 second=340 amount=-2 -kerning first=101 second=277 amount=1 -kerning first=347 second=97 amount=3 -kerning first=259 second=329 amount=-3 -kerning first=367 second=254 amount=-1 -kerning first=197 second=278 amount=-10 -kerning first=85 second=70 amount=-2 -kerning first=105 second=227 amount=2 -kerning first=86 second=240 amount=6 -kerning first=221 second=355 amount=-2 -kerning first=8211 second=112 amount=2 -kerning first=267 second=229 amount=1 -kerning first=372 second=344 amount=-2 -kerning first=113 second=97 amount=2 -kerning first=353 second=357 amount=1 -kerning first=8212 second=282 amount=-7 -kerning first=71 second=203 amount=-2 -kerning first=206 second=318 amount=-2 -kerning first=114 second=267 amount=-2 -kerning first=357 second=307 amount=-3 -kerning first=360 second=87 amount=2 -kerning first=275 second=99 amount=1 -kerning first=341 second=100 amount=-2 -kerning first=361 second=257 amount=2 -kerning first=79 second=73 amount=3 -kerning first=119 second=357 amount=5 -kerning first=195 second=231 amount=-12 -kerning first=281 second=359 amount=-1 -kerning first=196 second=371 amount=-13 -kerning first=84 second=193 amount=-13 -kerning first=222 second=88 amount=-6 -kerning first=104 second=320 amount=-1 -kerning first=107 second=100 amount=2 -kerning first=65 second=206 amount=-7 -kerning first=354 second=90 amount=-2 -kerning first=266 second=322 amount=2 -kerning first=289 second=259 amount=5 -kerning first=8211 second=375 amount=2 -kerning first=270 second=272 amount=-6 -kerning first=274 second=222 amount=-6 -kerning first=74 second=246 amount=-5 -kerning first=298 second=299 amount=-2 -kerning first=101 second=103 amount=2 -kerning first=236 second=248 amount=1 -kerning first=256 second=375 amount=-4 -kerning first=59 second=209 amount=-5 -kerning first=194 second=324 amount=-13 -kerning first=197 second=104 amount=-12 -kerning first=82 second=116 amount=-2 -kerning first=302 second=249 amount=-2 -kerning first=102 second=273 amount=-6 -kerning first=260 second=325 amount=-15 -kerning first=198 second=274 amount=-2 -kerning first=83 second=286 amount=3 -kerning first=221 second=211 amount=-1 -kerning first=329 second=106 amount=-10 -kerning first=106 second=223 amount=3 -kerning first=244 second=118 amount=-2 -kerning first=349 second=263 amount=1 -kerning first=372 second=200 amount=-6 -kerning first=307 second=339 amount=1 -kerning first=222 second=351 amount=1 -kerning first=330 second=276 amount=-6 -kerning first=376 second=120 amount=-7 -kerning first=45 second=312 amount=2 -kerning first=311 second=289 amount=2 -kerning first=88 second=376 amount=2 -kerning first=354 second=353 amount=-10 -kerning first=207 second=314 amount=-2 -kerning first=115 second=263 amount=1 -kerning first=358 second=303 amount=-2 -kerning first=296 second=252 amount=-2 -kerning first=73 second=339 amount=-2 -kerning first=214 second=44 amount=-5 -kerning first=339 second=316 amount=-1 -kerning first=254 second=328 amount=2 -kerning first=257 second=108 amount=-1 -kerning first=277 second=265 amount=1 -kerning first=192 second=277 amount=-12 -kerning first=77 second=289 amount=1 -kerning first=80 second=69 amount=-9 -kerning first=100 second=226 amount=2 -kerning first=346 second=46 amount=-4 -kerning first=258 second=278 amount=-10 -kerning first=366 second=203 amount=-6 -kerning first=196 second=227 amount=-10 -kerning first=239 second=291 amount=2 -kerning first=197 second=367 amount=-13 -kerning first=328 second=229 amount=2 -kerning first=243 second=241 amount=-2 -kerning first=348 second=356 amount=-3 -kerning first=371 second=293 amount=-1 -kerning first=66 second=202 amount=-4 -kerning first=309 second=242 amount=1 -kerning first=86 second=329 amount=2 -kerning first=89 second=109 amount=-5 -kerning first=224 second=254 amount=-1 -kerning first=8211 second=231 amount=4 -kerning first=267 second=318 amount=-1 -kerning first=375 second=243 amount=3 -kerning first=67 second=342 amount=-4 -kerning first=70 second=122 amount=-6 -kerning first=205 second=267 amount=-2 -kerning first=248 second=331 amount=-2 -kerning first=356 second=256 amount=-13 -kerning first=8212 second=371 amount=2 -kerning first=75 second=242 amount=-10 -kerning first=256 second=231 amount=-12 -kerning first=276 second=358 amount=-5 -kerning first=102 second=99 amount=-8 -kerning first=237 second=244 amount=1 -kerning first=342 second=359 amount=-2 -kerning first=195 second=320 amount=-12 -kerning first=198 second=100 amount=-3 -kerning first=80 second=332 amount=3 -kerning first=218 second=257 amount=2 -kerning first=303 second=245 amount=1 -kerning first=103 second=269 amount=2 -kerning first=196 second=8211 amount=-12 -kerning first=199 second=270 amount=-2 -kerning first=84 second=282 amount=-8 -kerning first=245 second=114 amount=-2 -kerning first=265 second=271 amount=1 -kerning first=65 second=295 amount=-12 -kerning first=311 second=115 amount=1 -kerning first=88 second=232 amount=-2 -kerning first=354 second=209 amount=-1 -kerning first=374 second=336 amount=-1 -kerning first=69 second=245 amount=-2 -kerning first=312 second=285 amount=2 -kerning first=112 second=309 amount=-8 -kerning first=355 second=349 amount=1 -kerning first=316 second=235 amount=1 -kerning first=116 second=259 amount=2 -kerning first=362 second=79 amount=2 -kerning first=192 second=103 amount=-10 -kerning first=74 second=335 amount=-5 -kerning first=340 second=312 amount=-2 -kerning first=258 second=104 amount=-12 -kerning first=193 second=273 amount=-10 -kerning first=78 second=285 amount=2 -kerning first=236 second=337 amount=1 -kerning first=121 second=349 amount=2 -kerning first=197 second=223 amount=-10 -kerning first=240 second=287 amount=2 -kerning first=348 second=212 amount=3 -kerning first=263 second=224 amount=1 -kerning first=283 second=351 amount=1 -kerning first=198 second=363 amount=-6 -kerning first=329 second=225 amount=2 -kerning first=244 second=237 amount=-2 -kerning first=372 second=289 amount=2 -kerning first=287 second=301 amount=3 -kerning first=356 second=82 amount=-5 -kerning first=8212 second=227 amount=4 -kerning first=268 second=314 amount=2 -kerning first=291 second=251 amount=2 -kerning first=68 second=338 amount=4 -kerning first=71 second=118 amount=2 -kerning first=206 second=263 amount=-2 -kerning first=272 second=264 amount=4 -kerning first=75 second=68 amount=-9 -kerning first=233 second=120 amount=-2 -kerning first=257 second=227 amount=2 -kerning first=362 second=342 amount=-2 -kerning first=323 second=228 amount=2 -kerning first=238 second=240 amount=2 -kerning first=343 second=355 amount=-1 -kerning first=258 second=367 amount=-13 -kerning first=284 second=84 amount=-2 -kerning first=196 second=316 amount=-12 -kerning first=84 second=108 amount=-3 -kerning first=304 second=241 amount=-2 -kerning first=265 second=97 amount=1 -kerning first=285 second=254 amount=3 -kerning first=65 second=121 amount=-4 -kerning first=85 second=278 amount=-6 -kerning first=328 second=318 amount=-1 -kerning first=331 second=98 amount=-1 -kerning first=246 second=110 amount=-2 -kerning first=374 second=192 amount=-3 -kerning first=66 second=291 amount=3 -kerning first=312 second=111 amount=1 -kerning first=89 second=228 amount=-3 -kerning first=109 second=355 amount=-1 -kerning first=290 second=344 amount=-4 -kerning first=205 second=356 amount=-2 -kerning first=228 second=293 amount=-1 -kerning first=356 second=345 amount=-6 -kerning first=97 second=98 amount=-1 -kerning first=232 second=243 amount=1 -kerning first=193 second=99 amount=-12 -kerning first=298 second=244 amount=-2 -kerning first=75 second=331 amount=-8 -kerning first=318 second=371 amount=-9 -kerning first=256 second=320 amount=-12 -kerning first=259 second=100 amount=2 -kerning first=279 second=257 amount=2 -kerning first=194 second=269 amount=-12 -kerning first=237 second=333 amount=1 -kerning first=240 second=113 amount=2 -kerning first=260 second=270 amount=-10 -kerning first=326 second=271 amount=2 -kerning first=199 second=359 amount=2 -kerning first=84 second=371 amount=-6 -kerning first=373 second=285 amount=2 -kerning first=45 second=257 amount=4 -kerning first=376 second=65 amount=-3 -kerning first=68 second=194 amount=-8 -kerning first=203 second=309 amount=-10 -kerning first=311 second=234 amount=1 -kerning first=246 second=373 amount=-2 -kerning first=354 second=298 amount=-2 -kerning first=335 second=311 amount=-1 -kerning first=358 second=248 amount=-7 -kerning first=234 second=116 amount=-1 -kerning first=254 second=273 amount=5 -kerning first=192 second=222 amount=-17 -kerning first=297 second=337 amount=1 -kerning first=300 second=117 amount=-2 -kerning first=258 second=223 amount=-10 -kerning first=301 second=287 amount=2 -kerning first=324 second=224 amount=2 -kerning first=101 second=311 amount=-1 -kerning first=370 second=68 amount=-6 -kerning first=197 second=312 amount=-12 -kerning first=329 second=314 amount=-1 -kerning first=244 second=326 amount=-2 -kerning first=290 second=200 amount=-2 -kerning first=336 second=44 amount=-5 -kerning first=110 second=351 amount=1 -kerning first=356 second=201 amount=-8 -kerning first=376 second=328 amount=-5 -kerning first=71 second=237 amount=1 -kerning first=229 second=289 amount=2 -kerning first=357 second=341 amount=-9 -kerning first=298 second=70 amount=-2 -kerning first=72 second=377 amount=4 -kerning first=210 second=302 amount=3 -kerning first=318 second=227 amount=-8 -kerning first=338 second=354 amount=-4 -kerning first=118 second=251 amount=2 -kerning first=361 second=291 amount=2 -kerning first=364 second=71 amount=2 -kerning first=299 second=240 amount=2 -kerning first=257 second=316 amount=-1 -kerning first=195 second=265 amount=-12 -kerning first=218 second=202 amount=-6 -kerning first=326 second=97 amount=2 -kerning first=238 second=329 amount=-2 -kerning first=366 second=381 amount=4 -kerning first=284 second=203 amount=-2 -kerning first=84 second=227 amount=-10 -kerning first=219 second=342 amount=-2 -kerning first=373 second=111 amount=4 -kerning first=65 second=240 amount=-10 -kerning first=266 second=356 amount=-2 -kerning first=289 second=293 amount=2 -kerning first=312 second=230 amount=1 -kerning first=112 second=254 amount=3 -kerning first=358 second=74 amount=-7 -kerning first=73 second=110 amount=-2 -kerning first=254 second=99 amount=2 -kerning first=359 second=244 amount=1 -kerning first=74 second=280 amount=-5 -kerning first=212 second=205 amount=3 -kerning first=160 second=356 amount=-12 -kerning first=298 second=333 amount=-2 -kerning first=301 second=113 amount=2 -kerning first=98 second=357 amount=3 -kerning first=364 second=334 amount=2 -kerning first=194 second=358 amount=-20 -kerning first=302 second=283 amount=-2 -kerning first=102 second=307 amount=-7 -kerning first=240 second=232 amount=1 -kerning first=345 second=347 amount=-2 -kerning first=260 second=359 amount=-12 -kerning first=368 second=284 amount=2 -kerning first=201 second=88 amount=3 -kerning first=86 second=100 amount=6 -kerning first=221 second=245 amount=-4 -kerning first=106 second=257 amount=2 -kerning first=349 second=297 amount=1 -kerning first=287 second=246 amount=2 -kerning first=84 second=8211 amount=-7 -kerning first=87 second=270 amount=-6 -kerning first=245 second=322 amount=-1 -kerning first=248 second=102 amount=-2 -kerning first=229 second=115 amount=1 -kerning first=295 second=116 amount=-1 -kerning first=230 second=285 amount=2 -kerning first=115 second=297 amount=1 -kerning first=358 second=337 amount=-7 -kerning first=273 second=349 amount=1 -kerning first=73 second=373 amount=-2 -kerning first=211 second=298 amount=3 -kerning first=234 second=235 amount=1 -kerning first=362 second=287 amount=2 -kerning first=192 second=311 amount=-12 -kerning first=300 second=236 amount=-2 -kerning first=346 second=80 amount=-3 -kerning first=258 second=312 amount=-12 -kerning first=58 second=336 amount=-3 -kerning first=242 second=105 amount=-2 -kerning first=347 second=250 amount=1 -kerning first=65 second=66 amount=-8 -kerning first=85 second=223 amount=2 -kerning first=374 second=107 amount=-2 -kerning first=46 second=79 amount=-3 -kerning first=289 second=119 amount=2 -kerning first=86 second=363 amount=2 -kerning first=352 second=340 amount=-3 -kerning first=355 second=120 amount=2 -kerning first=8211 second=265 amount=4 -kerning first=375 second=277 amount=3 -kerning first=205 second=301 amount=-2 -kerning first=208 second=81 amount=4 -kerning first=248 second=365 amount=-2 -kerning first=356 second=290 amount=-2 -kerning first=274 second=82 amount=-6 -kerning first=71 second=326 amount=2 -kerning first=160 second=212 amount=-3 -kerning first=360 second=240 amount=2 -kerning first=193 second=44 amount=-10 -kerning first=75 second=276 amount=-9 -kerning first=121 second=120 amount=3 -kerning first=256 second=265 amount=-12 -kerning first=59 second=69 amount=-4 -kerning first=194 second=214 amount=-11 -kerning first=299 second=329 amount=-2 -kerning first=302 second=109 amount=-2 -kerning first=99 second=353 amount=1 -kerning first=280 second=342 amount=-6 -kerning first=195 second=354 amount=-20 -kerning first=303 second=279 amount=1 -kerning first=218 second=291 amount=2 -kerning first=221 second=71 amount=-1 -kerning first=103 second=303 amount=3 -kerning first=241 second=228 amount=2 -kerning first=261 second=355 amount=-1 -kerning first=199 second=304 amount=3 -kerning first=202 second=84 amount=-5 -kerning first=84 second=316 amount=-3 -kerning first=307 second=229 amount=2 -kerning first=327 second=356 amount=-6 -kerning first=268 second=85 amount=4 -kerning first=45 second=202 amount=-7 -kerning first=373 second=230 amount=1 -kerning first=65 second=329 amount=-19 -kerning first=88 second=266 amount=-4 -kerning first=246 second=318 amount=-1 -kerning first=354 second=243 amount=-7 -kerning first=46 second=342 amount=-4 -kerning first=230 second=111 amount=1 -kerning first=112 second=343 amount=2 -kerning first=358 second=193 amount=-13 -kerning first=296 second=112 amount=-2 -kerning first=208 second=344 amount=-3 -kerning first=316 second=269 amount=1 -kerning first=359 second=333 amount=1 -kerning first=362 second=113 amount=2 -kerning first=379 second=8211 amount=-6 -kerning first=74 second=369 amount=-4 -kerning first=196 second=87 amount=-7 -kerning first=301 second=232 amount=1 -kerning first=262 second=88 amount=1 -kerning first=282 second=245 amount=-2 -kerning first=59 second=332 amount=-3 -kerning first=197 second=257 amount=-10 -kerning first=325 second=309 amount=-12 -kerning first=221 second=334 amount=-1 -kerning first=329 second=259 amount=2 -kerning first=352 second=196 amount=-9 -kerning first=375 second=103 amount=7 -kerning first=287 second=335 amount=2 -kerning first=356 second=116 amount=-3 -kerning first=376 second=273 amount=-3 -kerning first=291 second=285 amount=5 -kerning first=206 second=297 amount=-2 -kerning first=114 second=246 amount=-2 -kerning first=360 second=66 amount=-6 -kerning first=75 second=102 amount=-8 -kerning first=276 second=248 amount=-2 -kerning first=296 second=375 amount=-2 -kerning first=195 second=210 amount=-11 -kerning first=80 second=222 amount=-7 -kerning first=323 second=262 amount=3 -kerning first=100 second=349 amount=1 -kerning first=346 second=199 amount=3 -kerning first=369 second=106 amount=-10 -kerning first=196 second=350 amount=-8 -kerning first=304 second=275 amount=-2 -kerning first=219 second=287 amount=2 -kerning first=222 second=67 amount=4 -kerning first=327 second=212 amount=3 -kerning first=347 second=339 amount=1 -kerning first=370 second=276 amount=-6 -kerning first=203 second=80 amount=-6 -kerning first=351 second=289 amount=3 -kerning first=354 second=69 amount=-8 -kerning first=374 second=226 amount=-3 -kerning first=289 second=238 amount=3 -kerning first=204 second=250 amount=-2 -kerning first=89 second=262 amount=-1 -kerning first=332 second=302 amount=3 -kerning first=8211 second=354 amount=-7 -kerning first=70 second=275 amount=-6 -kerning first=208 second=200 amount=-6 -kerning first=113 second=339 amount=1 -kerning first=356 second=379 amount=-2 -kerning first=274 second=201 amount=-5 -kerning first=74 second=225 amount=-5 -kerning first=209 second=340 amount=-2 -kerning first=232 second=277 amount=1 -kerning first=117 second=289 amount=2 -kerning first=278 second=121 amount=-3 -kerning first=75 second=365 amount=-8 -kerning first=236 second=227 amount=2 -kerning first=121 second=239 amount=3 -kerning first=256 second=354 amount=-20 -kerning first=279 second=291 amount=2 -kerning first=197 second=83 amount=-8 -kerning first=217 second=240 amount=2 -kerning first=102 second=252 amount=-7 -kerning first=260 second=304 amount=-7 -kerning first=368 second=229 amount=2 -kerning first=198 second=253 amount=-7 -kerning first=349 second=242 amount=1 -kerning first=264 second=254 amount=2 -kerning first=202 second=203 amount=-5 -kerning first=8212 second=87 amount=3 -kerning first=268 second=204 amount=3 -kerning first=45 second=291 amount=4 -kerning first=376 second=99 amount=-4 -kerning first=291 second=111 amount=2 -kerning first=68 second=228 amount=2 -kerning first=334 second=205 amount=3 -kerning first=354 second=332 amount=-2 -kerning first=357 second=112 amount=-11 -kerning first=207 second=293 amount=-2 -kerning first=210 second=73 amount=3 -kerning first=115 second=242 amount=1 -kerning first=358 second=282 amount=-8 -kerning first=296 second=231 amount=-2 -kerning first=73 second=318 amount=-2 -kerning first=339 second=295 amount=-1 -kerning first=254 second=307 amount=2 -kerning first=277 second=244 amount=1 -kerning first=192 second=256 amount=-7 -kerning first=77 second=268 amount=3 -kerning first=323 second=88 amount=3 -kerning first=235 second=320 amount=-1 -kerning first=238 second=100 amount=2 -kerning first=343 second=245 amount=-2 -kerning first=258 second=257 amount=-10 -kerning first=196 second=206 amount=-7 -kerning first=304 second=101 amount=-2 -kerning first=219 second=113 amount=2 -kerning first=262 second=207 amount=3 -kerning first=367 second=322 amount=-1 -kerning first=285 second=114 amount=2 -kerning first=197 second=346 amount=-8 -kerning first=305 second=271 amount=2 -kerning first=82 second=358 amount=-8 -kerning first=263 second=347 amount=1 -kerning first=8211 second=210 amount=5 -kerning first=70 second=101 amount=-6 -kerning first=205 second=246 amount=-2 -kerning first=356 second=235 amount=-7 -kerning first=68 second=8212 amount=4 -kerning first=71 second=271 amount=5 -kerning first=232 second=103 amount=2 -kerning first=114 second=335 amount=-2 -kerning first=117 second=115 amount=1 -kerning first=298 second=104 amount=-2 -kerning first=233 second=273 amount=2 -kerning first=118 second=285 amount=5 -kerning first=256 second=210 amount=-11 -kerning first=276 second=337 amount=-2 -kerning first=217 second=66 amount=-6 -kerning first=237 second=223 amount=3 -kerning first=198 second=79 amount=-7 -kerning first=303 second=224 amount=2 -kerning first=103 second=248 amount=2 -kerning first=346 second=288 amount=3 -kerning first=264 second=80 amount=-2 -kerning first=369 second=225 amount=2 -kerning first=330 second=81 amount=3 -kerning first=45 second=117 amount=2 -kerning first=65 second=274 amount=-10 -kerning first=88 second=211 amount=-4 -kerning first=226 second=106 amount=-10 -kerning first=111 second=118 amount=-2 -kerning first=374 second=315 amount=-3 -kerning first=204 second=339 amount=-2 -kerning first=207 second=119 amount=-2 -kerning first=89 second=351 amount=-4 -kerning first=358 second=108 amount=-3 -kerning first=270 second=340 amount=-3 -kerning first=273 second=120 amount=2 -kerning first=381 second=45 amount=-6 -kerning first=208 second=289 amount=2 -kerning first=231 second=226 amount=1 -kerning first=192 second=82 amount=-17 -kerning first=297 second=227 amount=2 -kerning first=258 second=83 amount=-8 -kerning first=363 second=228 amount=2 -kerning first=298 second=367 amount=-2 -kerning first=78 second=264 amount=3 -kerning first=81 second=44 amount=-5 -kerning first=121 second=328 amount=3 -kerning first=197 second=202 amount=-10 -kerning first=305 second=97 amount=2 -kerning first=371 second=98 amount=-1 -kerning first=83 second=354 amount=-3 -kerning first=106 second=291 amount=2 -kerning first=349 second=331 amount=1 -kerning first=225 second=229 amount=2 -kerning first=330 second=344 amount=-2 -kerning first=353 second=281 amount=1 -kerning first=8212 second=206 amount=-5 -kerning first=268 second=293 amount=2 -kerning first=291 second=230 amount=2 -kerning first=71 second=97 amount=5 -kerning first=206 second=242 amount=-2 -kerning first=357 second=231 amount=-9 -kerning first=233 second=99 amount=1 -kerning first=115 second=331 amount=1 -kerning first=118 second=111 amount=4 -kerning first=358 second=371 amount=-6 -kerning first=296 second=320 amount=-2 -kerning first=299 second=100 amount=2 -kerning first=234 second=269 amount=1 -kerning first=342 second=194 amount=3 -kerning first=119 second=281 amount=4 -kerning first=277 second=333 amount=1 -kerning first=192 second=345 amount=-12 -kerning first=258 second=346 amount=-8 -kerning first=366 second=271 amount=2 -kerning first=281 second=283 amount=1 -kerning first=196 second=295 amount=-12 -kerning first=84 second=87 amount=-1 -kerning first=324 second=347 amount=1 -kerning first=262 second=296 amount=3 -kerning first=285 second=233 amount=2 -kerning first=65 second=100 amount=-10 -kerning first=200 second=245 amount=-2 -kerning first=85 second=257 amount=2 -kerning first=243 second=309 amount=-13 -kerning first=351 second=234 amount=1 -kerning first=66 second=270 amount=-4 -kerning first=224 second=322 amount=-1 -kerning first=112 second=114 amount=2 -kerning first=8211 second=299 amount=2 -kerning first=270 second=196 amount=-8 -kerning first=205 second=335 amount=-2 -kerning first=356 second=324 amount=-6 -kerning first=359 second=104 amount=-1 -kerning first=294 second=273 amount=2 -kerning first=209 second=285 amount=2 -kerning first=360 second=274 amount=-6 -kerning first=278 second=66 amount=-5 -kerning first=193 second=78 amount=-15 -kerning first=78 second=90 amount=4 -kerning first=341 second=287 amount=-2 -kerning first=364 second=224 amount=2 -kerning first=194 second=248 amount=-12 -kerning first=325 second=80 amount=-2 -kerning first=198 second=198 amount=-7 -kerning first=83 second=210 amount=3 -kerning first=221 second=105 amount=-3 -kerning first=103 second=337 amount=2 -kerning first=369 second=314 amount=-1 -kerning first=202 second=118 amount=-2 -kerning first=307 second=263 amount=1 -kerning first=84 second=350 amount=-6 -kerning first=330 second=200 amount=-6 -kerning first=107 second=287 amount=2 -kerning first=353 second=107 amount=1 -kerning first=376 second=44 amount=-5 -kerning first=45 second=236 amount=2 -kerning first=65 second=363 amount=-13 -kerning first=226 second=225 amount=2 -kerning first=111 second=237 amount=-2 -kerning first=354 second=277 amount=-7 diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/selection.png b/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/selection.png deleted file mode 100644 index d2533cb0d1e63aab296d61dd504bdb62bd59fb74..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 922 zcmaJ=J#W)M7zq8!^7)PDu9mje`px)(1{q(JHP)F zPDZPkq5)0Vl6&&vrYCu**ywQT3dTo_T^CjC&zWG!oW-Cstf~ZD29eLwWP^7c!;TW+ zMjo{-6G{a&2z;Yq5v^Wnm8}}agmiJE+}5qS-mR6Zi!P32_vFi6+se(Z@o6Nx uoy)d<^6BkY`6M3NR%?{~m|T7Q^576F2d|XhAKoiB`D?MeJ?nG(>h&K(z!-%9 diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/textfield.9.png b/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/textfield.9.png deleted file mode 100644 index cb8ad314f455c26c219fee5e0c0adc6680110e44..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 252 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`hdo^!Ln>}fo$SrkYQW`;&VLR*vemXvd0X!9Gh4ZzuX)Xt%+vhH-+-~I zn!_hyUb@fa5~qLCJ`MjASkw%7oCSOqy#K8*!{K^q+^ub?ciKF&doB9z&ZukbTD@wQ zzcTA&701YFaZ`fy+S$(U_Q~&dG4cJpZ{osl%$etbX0(@W0eXkQ)78&qol`;+0BhD~ AH~;_u diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/uiskin.atlas b/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/uiskin.atlas deleted file mode 100644 index e51dee1..0000000 --- a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/uiskin.atlas +++ /dev/null @@ -1,201 +0,0 @@ - -uiskin.png -size: 256,128 -format: RGBA8888 -filter: Linear,Linear -repeat: none -check-off - rotate: false - xy: 11, 5 - size: 14, 14 - orig: 14, 14 - offset: 0, 0 - index: -1 -textfield - rotate: false - xy: 11, 5 - size: 14, 14 - split: 3, 3, 3, 3 - orig: 14, 14 - offset: 0, 0 - index: -1 -check-on - rotate: false - xy: 125, 35 - size: 14, 14 - orig: 14, 14 - offset: 0, 0 - index: -1 -cursor - rotate: false - xy: 23, 1 - size: 3, 3 - split: 1, 1, 1, 1 - orig: 3, 3 - offset: 0, 0 - index: -1 -default - rotate: false - xy: 1, 50 - size: 254, 77 - orig: 254, 77 - offset: 0, 0 - index: -1 -default-pane - rotate: false - xy: 11, 1 - size: 5, 3 - split: 1, 1, 1, 1 - orig: 5, 3 - offset: 0, 0 - index: -1 -default-rect-pad - rotate: false - xy: 11, 1 - size: 5, 3 - split: 1, 1, 1, 1 - orig: 5, 3 - offset: 0, 0 - index: -1 -default-pane-noborder - rotate: false - xy: 170, 44 - size: 1, 1 - split: 0, 0, 0, 0 - orig: 1, 1 - offset: 0, 0 - index: -1 -default-rect - rotate: false - xy: 38, 25 - size: 3, 3 - split: 1, 1, 1, 1 - orig: 3, 3 - offset: 0, 0 - index: -1 -default-rect-down - rotate: false - xy: 170, 46 - size: 3, 3 - split: 1, 1, 1, 1 - orig: 3, 3 - offset: 0, 0 - index: -1 -default-round - rotate: false - xy: 112, 29 - size: 12, 20 - split: 5, 5, 5, 4 - pad: 4, 4, 1, 1 - orig: 12, 20 - offset: 0, 0 - index: -1 -default-round-down - rotate: false - xy: 99, 29 - size: 12, 20 - split: 5, 5, 5, 4 - pad: 4, 4, 1, 1 - orig: 12, 20 - offset: 0, 0 - index: -1 -default-round-large - rotate: false - xy: 57, 29 - size: 20, 20 - split: 5, 5, 5, 4 - orig: 20, 20 - offset: 0, 0 - index: -1 -default-scroll - rotate: false - xy: 78, 29 - size: 20, 20 - split: 2, 2, 2, 2 - orig: 20, 20 - offset: 0, 0 - index: -1 -default-select - rotate: false - xy: 29, 29 - size: 27, 20 - split: 4, 14, 4, 4 - orig: 27, 20 - offset: 0, 0 - index: -1 -default-select-selection - rotate: false - xy: 26, 16 - size: 3, 3 - split: 1, 1, 1, 1 - orig: 3, 3 - offset: 0, 0 - index: -1 -default-slider - rotate: false - xy: 29, 20 - size: 8, 8 - split: 2, 2, 2, 2 - orig: 8, 8 - offset: 0, 0 - index: -1 -default-slider-knob - rotate: false - xy: 1, 1 - size: 9, 18 - orig: 9, 18 - offset: 0, 0 - index: -1 -default-splitpane - rotate: false - xy: 17, 1 - size: 5, 3 - split: 0, 5, 0, 0 - orig: 5, 3 - offset: 0, 0 - index: -1 -default-splitpane-vertical - rotate: false - xy: 125, 29 - size: 3, 5 - split: 0, 0, 0, 5 - orig: 3, 5 - offset: 0, 0 - index: -1 -default-window - rotate: false - xy: 1, 20 - size: 27, 29 - split: 4, 3, 20, 3 - orig: 27, 29 - offset: 0, 0 - index: -1 -selection - rotate: false - xy: 174, 48 - size: 1, 1 - orig: 1, 1 - offset: 0, 0 - index: -1 -tree-minus - rotate: false - xy: 140, 35 - size: 14, 14 - orig: 14, 14 - offset: 0, 0 - index: -1 -tree-plus - rotate: false - xy: 155, 35 - size: 14, 14 - orig: 14, 14 - offset: 0, 0 - index: -1 -white - rotate: false - xy: 129, 31 - size: 3, 3 - orig: 3, 3 - offset: 0, 0 - index: -1 - diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/uiskin.png b/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/uiskin.png deleted file mode 100644 index c1e5f1a210e11a24ba2065e93e665839852b6aed..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 28299 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 literal 0 HcmV?d00001 diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/skin/default-pane-noborder.9.png b/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/default-pane-noborder.9.png similarity index 100% rename from wizard-client/wizard-client-libgdx/core/src/main/resources/skin/default-pane-noborder.9.png rename to wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/default-pane-noborder.9.png diff --git a/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/default-pane.9.png b/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/default-pane.9.png new file mode 100644 index 0000000000000000000000000000000000000000..798d6e90c2332e920319ee6de0f778a0ef530cb0 GIT binary patch literal 311 zcmeAS@N?(olHy`uVBq!ia0vp^q9Dw{1|(OCFP#RY7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`0h7I;J!GcfQS24TkI`72U@f@eHk978PplmGnxZ_jMlFi~*H7klL?-Qo?r zdv_>LvY6b-@JsIW!E4RDwUz%FLuS+{tXt8Lso^0YyP#V*h}~!krxqJ~;?L&~BqS3a zCkL}LNwftqUpNvVroqd;T20C^@&}_`sfHdatC`g?Hjb6fh9V->Hw=spsPP{E