keycloak-uncached
Changes
testsuite/integration-arquillian/tests/other/console/src/main/java/org/keycloak/testsuite/console/page/clients/credentials/SAMLClientCredentialsForm.java 2(+1 -1)
testsuite/integration-arquillian/tests/other/console/src/main/java/org/keycloak/testsuite/console/page/federation/LdapUserProviderForm.java 2(+1 -1)
testsuite/integration-arquillian/tests/other/console/src/main/java/org/keycloak/testsuite/console/page/users/UserCredentials.java 4(+2 -2)
themes/src/main/resources/theme/base/admin/resources/partials/client-credentials-jwt-key-export.html 11(+4 -7)
themes/src/main/resources/theme/base/admin/resources/partials/client-credentials-jwt-key-import.html 7(+2 -5)
themes/src/main/resources/theme/base/admin/resources/partials/realm-identity-provider-bitbucket.html 5(+1 -4)
themes/src/main/resources/theme/base/admin/resources/partials/realm-identity-provider-gitlab.html 5(+1 -4)
themes/src/main/resources/theme/base/admin/resources/partials/realm-identity-provider-oidc.html 5(+1 -4)
themes/src/main/resources/theme/base/admin/resources/partials/realm-identity-provider-openshift-v3.html 7(+1 -6)
themes/src/main/resources/theme/base/admin/resources/partials/realm-identity-provider-social.html 5(+1 -4)
themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/.npmignore 4(+4 -0)
themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/assets/circle.svg 16(+16 -0)
themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/assets/disc.svg 5(+5 -0)
themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/assets/square.svg 5(+5 -0)
themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security.css 24(+24 -0)
themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-circle.eot 0(+0 -0)
themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-circle.svg 2316(+2316 -0)
themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-circle.ttf 0(+0 -0)
themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-circle.woff 0(+0 -0)
themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-disc.eot 0(+0 -0)
themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-disc.svg 2316(+2316 -0)
themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-disc.ttf 0(+0 -0)
themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-disc.woff 0(+0 -0)
themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-square.eot 0(+0 -0)
themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-square.svg 2316(+2316 -0)
themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-square.ttf 0(+0 -0)
themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-square.woff 0(+0 -0)
themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/index.js 89(+89 -0)
themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/LICENSE 21(+21 -0)
themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/package.json 60(+60 -0)
themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/README.md 52(+52 -0)
Details
diff --git a/testsuite/integration-arquillian/tests/other/console/src/main/java/org/keycloak/testsuite/console/page/clients/credentials/SAMLClientCredentialsForm.java b/testsuite/integration-arquillian/tests/other/console/src/main/java/org/keycloak/testsuite/console/page/clients/credentials/SAMLClientCredentialsForm.java
index 95dd490..1790834 100644
--- a/testsuite/integration-arquillian/tests/other/console/src/main/java/org/keycloak/testsuite/console/page/clients/credentials/SAMLClientCredentialsForm.java
+++ b/testsuite/integration-arquillian/tests/other/console/src/main/java/org/keycloak/testsuite/console/page/clients/credentials/SAMLClientCredentialsForm.java
@@ -40,7 +40,7 @@ public class SAMLClientCredentialsForm extends Form {
@FindBy(id = "uploadKeyAlias")
private WebElement uploadKeyAlias;
- @FindBy(id = "uploadStorePassword")
+ @FindBy(id = "uploadStorePas")
private WebElement uploadStorePassword;
public void importPemCertificateKey() {
diff --git a/testsuite/integration-arquillian/tests/other/console/src/main/java/org/keycloak/testsuite/console/page/federation/LdapUserProviderForm.java b/testsuite/integration-arquillian/tests/other/console/src/main/java/org/keycloak/testsuite/console/page/federation/LdapUserProviderForm.java
index 0174686..65510eb 100644
--- a/testsuite/integration-arquillian/tests/other/console/src/main/java/org/keycloak/testsuite/console/page/federation/LdapUserProviderForm.java
+++ b/testsuite/integration-arquillian/tests/other/console/src/main/java/org/keycloak/testsuite/console/page/federation/LdapUserProviderForm.java
@@ -48,7 +48,7 @@ public class LdapUserProviderForm extends Form {
@FindBy(id = "ldapBindDn")
private WebElement ldapBindDnInput;
- @FindBy(id = "ldapBindCredential")
+ @FindBy(id = "ldapBindCred")
private WebElement ldapBindCredentialInput;
@FindBy(id = "customUserSearchFilter")
diff --git a/testsuite/integration-arquillian/tests/other/console/src/main/java/org/keycloak/testsuite/console/page/users/UserCredentials.java b/testsuite/integration-arquillian/tests/other/console/src/main/java/org/keycloak/testsuite/console/page/users/UserCredentials.java
index ff091a4..886cbb4 100644
--- a/testsuite/integration-arquillian/tests/other/console/src/main/java/org/keycloak/testsuite/console/page/users/UserCredentials.java
+++ b/testsuite/integration-arquillian/tests/other/console/src/main/java/org/keycloak/testsuite/console/page/users/UserCredentials.java
@@ -18,10 +18,10 @@ public class UserCredentials extends User {
return super.getUriFragment() + "/user-credentials";
}
- @FindBy(id = "password")
+ @FindBy(id = "newPas")
private WebElement newPasswordInput;
- @FindBy(id = "confirmPassword")
+ @FindBy(id = "confirmPas")
private WebElement confirmPasswordInput;
@FindBy(xpath = ".//div[@class='onoffswitch' and ./input[@id='temporaryPassword']]")
diff --git a/themes/src/main/resources/theme/base/admin/resources/js/app.js b/themes/src/main/resources/theme/base/admin/resources/js/app.js
index 540f236..0e25ae9 100755
--- a/themes/src/main/resources/theme/base/admin/resources/js/app.js
+++ b/themes/src/main/resources/theme/base/admin/resources/js/app.js
@@ -2955,4 +2955,15 @@ module.filter('startFrom', function () {
}
return [];
};
+});
+
+
+module.directive('kcPassword', function ($compile, Notifications) {
+ return {
+ restrict: 'A',
+ link: function ($scope, elem, attr, ctrl) {
+ elem.addClass("password-conceal");
+ elem.attr("type","text");
+ }
+ }
});
\ No newline at end of file
diff --git a/themes/src/main/resources/theme/base/admin/resources/partials/authenticator-config.html b/themes/src/main/resources/theme/base/admin/resources/partials/authenticator-config.html
index 9ce157f..8542060 100755
--- a/themes/src/main/resources/theme/base/admin/resources/partials/authenticator-config.html
+++ b/themes/src/main/resources/theme/base/admin/resources/partials/authenticator-config.html
@@ -16,9 +16,6 @@
</h1>
<form class="form-horizontal" name="realmForm" novalidate kc-read-only="!access.manageRealm">
- <input type="text" readonly value="this is not a login form" style="display: none;">
- <input type="password" readonly value="this is not a login form" style="display: none;">
-
<fieldset>
<div class="form-group clearfix" data-ng-show="!create">
<label class="col-md-2 control-label" for="configId">{{:: 'id' | translate}} </label>
diff --git a/themes/src/main/resources/theme/base/admin/resources/partials/client-credentials-jwt-key-export.html b/themes/src/main/resources/theme/base/admin/resources/partials/client-credentials-jwt-key-export.html
index 82e50b7..a1da8c1 100644
--- a/themes/src/main/resources/theme/base/admin/resources/partials/client-credentials-jwt-key-export.html
+++ b/themes/src/main/resources/theme/base/admin/resources/partials/client-credentials-jwt-key-export.html
@@ -10,9 +10,6 @@
<h1>{{:: 'generate-private-key' | translate}}</h1>
<form class="form-horizontal" name="keyForm" novalidate kc-read-only="!client.access.configure">
- <input type="text" readonly value="this is not a login form" style="display: none;">
- <input type="password" readonly value="this is not a login form" style="display: none;">
-
<fieldset class="form-group col-sm-10">
<div class="form-group">
<label class="col-md-2 control-label" for="downloadKeyFormat">{{:: 'archive-format' | translate}}</label>
@@ -34,16 +31,16 @@
<kc-tooltip>{{:: 'key-alias.tooltip' | translate}}</kc-tooltip>
</div>
<div class="form-group">
- <label class="col-md-2 control-label" for="keyPassword">{{:: 'key-password' | translate}}</label>
+ <label class="col-md-2 control-label" for="keyPas">{{:: 'key-password' | translate}}</label>
<div class="col-md-6">
- <input class="form-control" type="password" id="keyPassword" name="keyPassword" data-ng-model="jks.keyPassword" autofocus required>
+ <input class="form-control" kc-password id="keyPas" name="keyPas" data-ng-model="jks.keyPassword" autofocus required>
</div>
<kc-tooltip>{{:: 'key-password.tooltip' | translate}}</kc-tooltip>
</div>
<div class="form-group">
- <label class="col-md-2 control-label" for="storePassword">{{:: 'store-password' | translate}}</label>
+ <label class="col-md-2 control-label" for="storePas">{{:: 'store-password' | translate}}</label>
<div class="col-md-6">
- <input class="form-control" type="password" id="storePassword" name="storePassword" data-ng-model="jks.storePassword" autofocus required>
+ <input class="form-control" kc-password id="storePas" name="storePassword" data-ng-model="jks.storePassword" autofocus required>
</div>
<kc-tooltip>{{:: 'store-password.tooltip' | translate}}</kc-tooltip>
</div>
diff --git a/themes/src/main/resources/theme/base/admin/resources/partials/client-credentials-jwt-key-import.html b/themes/src/main/resources/theme/base/admin/resources/partials/client-credentials-jwt-key-import.html
index ec88cd6..6ea0118 100644
--- a/themes/src/main/resources/theme/base/admin/resources/partials/client-credentials-jwt-key-import.html
+++ b/themes/src/main/resources/theme/base/admin/resources/partials/client-credentials-jwt-key-import.html
@@ -10,9 +10,6 @@
<h1>{{:: 'import-client-certificate' | translate}}</h1>
<form class="form-horizontal" name="keyForm" novalidate kc-read-only="!client.access.configure">
- <input type="text" readonly value="this is not a login form" style="display: none;">
- <input type="password" readonly value="this is not a login form" style="display: none;">
-
<fieldset>
<div class="form-group">
<label class="col-md-2 control-label" for="uploadKeyFormat">{{:: 'archive-format' | translate}}</label>
@@ -34,9 +31,9 @@
<kc-tooltip>{{:: 'jwt-import.key-alias.tooltip' | translate}}</kc-tooltip>
</div>
<div class="form-group" data-ng-hide="hideKeystoreSettings()">
- <label class="col-md-2 control-label" for="uploadStorePassword">{{:: 'store-password' | translate}}</label>
+ <label class="col-md-2 control-label" for="uploadStorePas">{{:: 'store-password' | translate}}</label>
<div class="col-md-6">
- <input class="form-control" type="password" id="uploadStorePassword" name="uploadStorePassword" data-ng-model="uploadStorePassword" autofocus required>
+ <input class="form-control" kc-password id="uploadStorePas" name="uploadStorePas" data-ng-model="uploadStorePassword" autofocus required>
</div>
<kc-tooltip>{{:: 'store-password.tooltip' | translate}}</kc-tooltip>
</div>
diff --git a/themes/src/main/resources/theme/base/admin/resources/partials/client-keys.html b/themes/src/main/resources/theme/base/admin/resources/partials/client-keys.html
index c74f54f..c412e27 100755
--- a/themes/src/main/resources/theme/base/admin/resources/partials/client-keys.html
+++ b/themes/src/main/resources/theme/base/admin/resources/partials/client-keys.html
@@ -8,9 +8,6 @@
<kc-tabs-client></kc-tabs-client>
<form class="form-horizontal" name="keyForm" novalidate kc-read-only="!client.access.configure">
- <input type="text" readonly value="this is not a login form" style="display: none;">
- <input type="password" readonly value="this is not a login form" style="display: none;">
-
<fieldset>
<legend collapsed><span class="text">{{:: 'import-keys-and-cert' | translate}}</span> <kc-tooltip>{{:: 'import-keys-and-cert.tooltip' | translate}}</kc-tooltip></legend>
<div class="form-group">
@@ -33,16 +30,16 @@
<kc-tooltip>{{:: 'key-alias.tooltip' | translate}}</kc-tooltip>
</div>
<div class="form-group">
- <label class="col-md-2 control-label" for="keyPassword">{{:: 'key-password' | translate}}</label>
+ <label class="col-md-2 control-label" for="uploadKeyPas">{{:: 'key-password' | translate}}</label>
<div class="col-md-6">
- <input class="form-control" type="password" id="uploadKeyPassword" name="uploadKeyPassword" data-ng-model="uploadKeyPassword" autofocus required>
+ <input class="form-control" kc-password id="uploadKeyPas" name="uploadKeyPassword" data-ng-model="uploadKeyPassword" autofocus required>
</div>
<kc-tooltip>{{:: 'key-password.tooltip' | translate}}</kc-tooltip>
</div>
<div class="form-group">
- <label class="col-md-2 control-label" for="uploadStorePassword">{{:: 'store-password' | translate}}</label>
+ <label class="col-md-2 control-label" for="uploadStorePas">{{:: 'store-password' | translate}}</label>
<div class="col-md-6">
- <input class="form-control" type="password" id="uploadStorePassword" name="uploadStorePassword" data-ng-model="uploadStorePassword" autofocus required>
+ <input class="form-control" kc-password id="uploadStorePas" name="uploadStorePas" data-ng-model="uploadStorePassword" autofocus required>
</div>
<kc-tooltip>{{:: 'store-password.tooltip' | translate}}</kc-tooltip>
</div>
@@ -85,9 +82,9 @@
<kc-tooltip>Archive alias for your private key and certificate.</kc-tooltip>
</div>
<div class="form-group">
- <label class="col-md-2 control-label" for="keyPassword">Key Password</label>
+ <label class="col-md-2 control-label" for="keyPas">Key Password</label>
<div class="col-md-6">
- <input class="form-control" type="password" id="keyPassword" name="keyPassword" data-ng-model="jks.keyPassword" autofocus required>
+ <input class="form-control" kc-password id="keyPas" name="keyPas" data-ng-model="jks.keyPassword" autofocus required>
</div>
<kc-tooltip>Password to access the private key in the archive</kc-tooltip>
</div>
@@ -99,9 +96,9 @@
<kc-tooltip>Realm certificate is stored in archive too. This is the alias to it.</kc-tooltip>
</div>
<div class="form-group">
- <label class="col-md-2 control-label" for="storePassword">Store Password</label>
+ <label class="col-md-2 control-label" for="storePas">Store Password</label>
<div class="col-md-6">
- <input class="form-control" type="password" id="storePassword" name="storePassword" data-ng-model="jks.storePassword" autofocus required>
+ <input class="form-control" kc-password id="storePas" name="storePas" data-ng-model="jks.storePassword" autofocus required>
</div>
<kc-tooltip>Password to access the archive itself</kc-tooltip>
</div>
diff --git a/themes/src/main/resources/theme/base/admin/resources/partials/client-saml-key-export.html b/themes/src/main/resources/theme/base/admin/resources/partials/client-saml-key-export.html
index ec51e96..1c8f737 100755
--- a/themes/src/main/resources/theme/base/admin/resources/partials/client-saml-key-export.html
+++ b/themes/src/main/resources/theme/base/admin/resources/partials/client-saml-key-export.html
@@ -10,9 +10,6 @@
<h1>{{:: 'export-saml-key' | translate}} {{client.clientId|capitalize}}</h1>
<form class="form-horizontal" name="keyForm" novalidate kc-read-only="!client.access.configure">
- <input type="text" readonly value="this is not a login form" style="display: none;">
- <input type="password" readonly value="this is not a login form" style="display: none;">
-
<fieldset class="form-group col-sm-10">
<div class="form-group">
<label class="col-md-2 control-label" for="downloadKeyFormat">{{:: 'archive-format' | translate}}</label>
@@ -34,9 +31,9 @@
<kc-tooltip>{{:: 'key-alias.tooltip' | translate}}</kc-tooltip>
</div>
<div class="form-group" data-ng-hide="!keyInfo.privateKey">
- <label class="col-md-2 control-label" for="keyPassword">{{:: 'key-password' | translate}}</label>
+ <label class="col-md-2 control-label" for="keyPas">{{:: 'key-password' | translate}}</label>
<div class="col-md-6">
- <input class="form-control" type="password" id="keyPassword" name="keyPassword" data-ng-model="jks.keyPassword" autofocus required>
+ <input class="form-control" kc-password id="keyPas" name="keyPas" data-ng-model="jks.keyPassword" autofocus required>
</div>
<kc-tooltip>{{:: 'key-password.tooltip' | translate}}</kc-tooltip>
</div>
@@ -48,9 +45,9 @@
<kc-tooltip>{{:: 'realm-certificate-alias.tooltip' | translate}}</kc-tooltip>
</div>
<div class="form-group">
- <label class="col-md-2 control-label" for="storePassword">{{:: 'store-password' | translate}}</label>
+ <label class="col-md-2 control-label" for="storePas">{{:: 'store-password' | translate}}</label>
<div class="col-md-6">
- <input class="form-control" type="password" id="storePassword" name="storePassword" data-ng-model="jks.storePassword" autofocus required>
+ <input class="form-control" kc-password id="storePas" name="storePas" data-ng-model="jks.storePassword" autofocus required>
</div>
<kc-tooltip>{{:: 'store-password.tooltip' | translate}}</kc-tooltip>
</div>
diff --git a/themes/src/main/resources/theme/base/admin/resources/partials/client-saml-key-import.html b/themes/src/main/resources/theme/base/admin/resources/partials/client-saml-key-import.html
index a580a61..5b14c24 100755
--- a/themes/src/main/resources/theme/base/admin/resources/partials/client-saml-key-import.html
+++ b/themes/src/main/resources/theme/base/admin/resources/partials/client-saml-key-import.html
@@ -10,9 +10,6 @@
<h1>{{:: 'import-saml-key' | translate}} {{client.clientId|capitalize}}</h1>
<form class="form-horizontal" name="keyForm" novalidate kc-read-only="!client.access.configure">
- <input type="text" readonly value="this is not a login form" style="display: none;">
- <input type="password" readonly value="this is not a login form" style="display: none;">
-
<fieldset>
<div class="form-group">
<label class="col-md-2 control-label" for="uploadKeyFormat">{{:: 'archive-format' | translate}}</label>
@@ -34,9 +31,9 @@
<kc-tooltip>{{:: 'key-alias.tooltip' | translate}}</kc-tooltip>
</div>
<div class="form-group" data-ng-hide="hideKeystoreSettings()">
- <label class="col-md-2 control-label" for="uploadStorePassword">{{:: 'store-password' | translate}}</label>
+ <label class="col-md-2 control-label" for="uploadStorePas">{{:: 'store-password' | translate}}</label>
<div class="col-md-6">
- <input class="form-control" type="password" id="uploadStorePassword" name="uploadStorePassword" data-ng-model="uploadStorePassword" autofocus required>
+ <input class="form-control" kc-password id="uploadStorePas" name="uploadStorePas" data-ng-model="uploadStorePassword" autofocus required>
</div>
<kc-tooltip>{{:: 'store-password.tooltip' | translate}}</kc-tooltip>
</div>
diff --git a/themes/src/main/resources/theme/base/admin/resources/partials/realm-identity-provider-bitbucket.html b/themes/src/main/resources/theme/base/admin/resources/partials/realm-identity-provider-bitbucket.html
index 90d5c1f..9667b34 100755
--- a/themes/src/main/resources/theme/base/admin/resources/partials/realm-identity-provider-bitbucket.html
+++ b/themes/src/main/resources/theme/base/admin/resources/partials/realm-identity-provider-bitbucket.html
@@ -8,9 +8,6 @@
<kc-tabs-identity-provider></kc-tabs-identity-provider>
<form class="form-horizontal" name="realmForm" novalidate kc-read-only="!access.manageIdentityProviders">
- <input type="text" readonly value="this is not a login form" style="display: none;">
- <input type="password" readonly value="this is not a login form" style="display: none;">
-
<fieldset>
<div class="form-group clearfix">
<label class="col-md-2 control-label" for="redirectUri">{{:: 'redirect-uri' | translate}}</label>
@@ -31,7 +28,7 @@
<div class="form-group clearfix">
<label class="col-md-2 control-label" for="clientSecret"><span class="required">*</span> {{:: 'bitbucket-consumer-secret' | translate}}</label>
<div class="col-md-6">
- <input class="form-control" id="clientSecret" type="password" ng-model="identityProvider.config.clientSecret" required>
+ <input class="form-control" id="clientSecret" kc-password ng-model="identityProvider.config.clientSecret" required>
</div>
<kc-tooltip>{{:: 'bitbucket.secret.tooltip' | translate}}</kc-tooltip>
</div>
diff --git a/themes/src/main/resources/theme/base/admin/resources/partials/realm-identity-provider-gitlab.html b/themes/src/main/resources/theme/base/admin/resources/partials/realm-identity-provider-gitlab.html
index 152d1f1..9a30c52 100755
--- a/themes/src/main/resources/theme/base/admin/resources/partials/realm-identity-provider-gitlab.html
+++ b/themes/src/main/resources/theme/base/admin/resources/partials/realm-identity-provider-gitlab.html
@@ -8,9 +8,6 @@
<kc-tabs-identity-provider></kc-tabs-identity-provider>
<form class="form-horizontal" name="realmForm" novalidate kc-read-only="!access.manageIdentityProviders">
- <input type="text" readonly value="this is not a login form" style="display: none;">
- <input type="password" readonly value="this is not a login form" style="display: none;">
-
<fieldset>
<div class="form-group clearfix">
<label class="col-md-2 control-label" for="redirectUri">{{:: 'redirect-uri' | translate}}</label>
@@ -31,7 +28,7 @@
<div class="form-group clearfix">
<label class="col-md-2 control-label" for="clientSecret"><span class="required">*</span> {{:: 'gitlab-application-secret' | translate}}</label>
<div class="col-md-6">
- <input class="form-control" id="clientSecret" type="password" ng-model="identityProvider.config.clientSecret" required>
+ <input class="form-control" id="clientSecret" kc-password ng-model="identityProvider.config.clientSecret" required>
</div>
<kc-tooltip>{{:: 'gitlab.application-secret.tooltip' | translate}}</kc-tooltip>
</div>
diff --git a/themes/src/main/resources/theme/base/admin/resources/partials/realm-identity-provider-oidc.html b/themes/src/main/resources/theme/base/admin/resources/partials/realm-identity-provider-oidc.html
index ee815a3..54bbcd6 100755
--- a/themes/src/main/resources/theme/base/admin/resources/partials/realm-identity-provider-oidc.html
+++ b/themes/src/main/resources/theme/base/admin/resources/partials/realm-identity-provider-oidc.html
@@ -9,9 +9,6 @@
<kc-tabs-identity-provider></kc-tabs-identity-provider>
<form class="form-horizontal" name="realmForm" novalidate kc-read-only="!access.manageIdentityProviders">
- <input type="text" readonly value="this is not a login form" style="display: none;">
- <input type="password" readonly value="this is not a login form" style="display: none;">
-
<fieldset>
<div class="form-group clearfix">
<label class="col-md-2 control-label" for="redirectUri">{{:: 'redirect-uri' | translate}}</label>
@@ -172,7 +169,7 @@
<div class="form-group clearfix">
<label class="col-md-2 control-label" for="clientSecret"><span class="required">*</span> {{:: 'client-secret' | translate}}</label>
<div class="col-md-6">
- <input class="form-control" id="clientSecret" type="password" ng-model="identityProvider.config.clientSecret" required>
+ <input class="form-control" id="clientSecret" kc-password ng-model="identityProvider.config.clientSecret" required>
</div>
<kc-tooltip>{{:: 'client-secret.tooltip' | translate}}</kc-tooltip>
</div>
diff --git a/themes/src/main/resources/theme/base/admin/resources/partials/realm-identity-provider-openshift-v3.html b/themes/src/main/resources/theme/base/admin/resources/partials/realm-identity-provider-openshift-v3.html
index 054b98a..3323e1d 100755
--- a/themes/src/main/resources/theme/base/admin/resources/partials/realm-identity-provider-openshift-v3.html
+++ b/themes/src/main/resources/theme/base/admin/resources/partials/realm-identity-provider-openshift-v3.html
@@ -8,11 +8,6 @@
<kc-tabs-identity-provider></kc-tabs-identity-provider>
<form class="form-horizontal" name="realmForm" novalidate kc-read-only="!access.manageIdentityProviders">
- <input type="text" readonly value="this is not a login form" style="display: none;">
- <input type="password" readonly value="this is not a login form" style="display: none;">
-
-
-
<fieldset>
<div class="form-group clearfix">
<label class="col-md-2 control-label" for="redirectUri">{{:: 'redirect-uri' | translate}}</label>
@@ -47,7 +42,7 @@
<div class="form-group clearfix">
<label class="col-md-2 control-label" for="clientSecret"><span class="required">*</span> {{:: 'client-secret' | translate}}</label>
<div class="col-md-6">
- <input class="form-control" id="clientSecret" type="password" ng-model="identityProvider.config.clientSecret" required>
+ <input class="form-control" id="clientSecret" kc-password ng-model="identityProvider.config.clientSecret" required>
</div>
<kc-tooltip>{{:: 'social.client-secret.tooltip' | translate}}</kc-tooltip>
</div>
diff --git a/themes/src/main/resources/theme/base/admin/resources/partials/realm-identity-provider-social.html b/themes/src/main/resources/theme/base/admin/resources/partials/realm-identity-provider-social.html
index 1976fde..191002f 100755
--- a/themes/src/main/resources/theme/base/admin/resources/partials/realm-identity-provider-social.html
+++ b/themes/src/main/resources/theme/base/admin/resources/partials/realm-identity-provider-social.html
@@ -8,9 +8,6 @@
<kc-tabs-identity-provider></kc-tabs-identity-provider>
<form class="form-horizontal" name="realmForm" novalidate kc-read-only="!access.manageIdentityProviders">
- <input type="text" readonly value="this is not a login form" style="display: none;">
- <input type="password" readonly value="this is not a login form" style="display: none;">
-
<fieldset>
<div class="form-group clearfix">
<label class="col-md-2 control-label" for="redirectUri">{{:: 'redirect-uri' | translate}}</label>
@@ -31,7 +28,7 @@
<div class="form-group clearfix">
<label class="col-md-2 control-label" for="clientSecret"><span class="required">*</span> {{:: 'client-secret' | translate}}</label>
<div class="col-md-6">
- <input class="form-control" id="clientSecret" type="password" ng-model="identityProvider.config.clientSecret" required>
+ <input class="form-control" id="clientSecret" kc-password ng-model="identityProvider.config.clientSecret" required>
</div>
<kc-tooltip>{{:: 'social.client-secret.tooltip' | translate}}</kc-tooltip>
</div>
diff --git a/themes/src/main/resources/theme/base/admin/resources/partials/realm-smtp.html b/themes/src/main/resources/theme/base/admin/resources/partials/realm-smtp.html
index 43df761..d1a0d98 100755
--- a/themes/src/main/resources/theme/base/admin/resources/partials/realm-smtp.html
+++ b/themes/src/main/resources/theme/base/admin/resources/partials/realm-smtp.html
@@ -2,9 +2,6 @@
<kc-tabs-realm></kc-tabs-realm>
<form class="form-horizontal" name="realmForm" novalidate kc-read-only="!access.manageRealm">
- <input type="text" readonly value="this is not a login form" style="display: none;">
- <input type="password" readonly value="this is not a login form" style="display: none;">
-
<div class="form-group clearfix">
<label class="col-md-2 control-label" for="smtpHost"><span class="required">*</span> {{:: 'host' | translate}}</label>
<div class="col-md-6">
@@ -79,9 +76,9 @@
</div>
</div>
<div class="form-group clearfix" data-ng-show="realm.smtpServer.auth">
- <label class="col-md-2 control-label" for="smtpPassword"><span class="required">*</span> {{:: 'password' | translate}}</label>
+ <label class="col-md-2 control-label" for="smtpPas"><span class="required">*</span> {{:: 'password' | translate}}</label>
<div class="col-md-6">
- <input class="form-control" id="smtpPassword" type="password" ng-model="realm.smtpServer.password" placeholder="{{:: 'login-password' | translate}}" ng-disabled="!realm.smtpServer.auth" ng-required="realm.smtpServer.auth">
+ <input class="form-control" id="smtpPas" kc-password ng-model="realm.smtpServer.password" placeholder="{{:: 'login-password' | translate}}" ng-disabled="!realm.smtpServer.auth" ng-required="realm.smtpServer.auth">
</div>
</div>
diff --git a/themes/src/main/resources/theme/base/admin/resources/partials/user-credentials.html b/themes/src/main/resources/theme/base/admin/resources/partials/user-credentials.html
index 5c27605..c35a767 100755
--- a/themes/src/main/resources/theme/base/admin/resources/partials/user-credentials.html
+++ b/themes/src/main/resources/theme/base/admin/resources/partials/user-credentials.html
@@ -7,22 +7,19 @@
<kc-tabs-user></kc-tabs-user>
<form class="form-horizontal" name="userForm" novalidate>
- <input type="text" readonly value="this is not a login form" style="display: none;">
- <input type="password" readonly value="this is not a login form" style="display: none;">
-
<fieldset class="border-top">
<legend><span class="text">{{:: 'manage-user-password' | translate}}</span></legend>
<div class="form-group">
- <label class="col-md-2 control-label" for="password">{{:: 'new-password' | translate}} <span class="required" data-ng-show="create">*</span></label>
+ <label class="col-md-2 control-label" for="newPas">{{:: 'new-password' | translate}} <span class="required" data-ng-show="create">*</span></label>
<div class="col-md-6">
- <input class="form-control" type="password" id="password" name="password" data-ng-model="password" required>
+ <input class="form-control" kc-password type="text" id="newPas" name="newPas" data-ng-model="password" required>
</div>
</div>
<div class="form-group">
- <label class="col-md-2 control-label" for="confirmPassword">{{:: 'password-confirmation' | translate}} <span class="required" data-ng-show="create">*</span></label>
+ <label class="col-md-2 control-label" for="confirmPas">{{:: 'password-confirmation' | translate}} <span class="required" data-ng-show="create">*</span></label>
<div class="col-md-6">
- <input class="form-control" type="password" id="confirmPassword" name="confirmPassword" data-ng-model="confirmPassword" required>
+ <input class="form-control" kc-password id="confirmPas" name="confirmPas" data-ng-model="confirmPassword" required>
</div>
</div>
diff --git a/themes/src/main/resources/theme/base/admin/resources/partials/user-storage-ldap.html b/themes/src/main/resources/theme/base/admin/resources/partials/user-storage-ldap.html
index 0a391b9..abf9045 100755
--- a/themes/src/main/resources/theme/base/admin/resources/partials/user-storage-ldap.html
+++ b/themes/src/main/resources/theme/base/admin/resources/partials/user-storage-ldap.html
@@ -8,9 +8,6 @@
<kc-tabs-ldap></kc-tabs-ldap>
<form class="form-horizontal" name="realmForm" novalidate kc-read-only="!access.manageRealm">
- <input type="text" readonly value="this is not a login form" style="display: none;">
- <input type="password" readonly value="this is not a login form" style="display: none;">
-
<fieldset>
<legend><span class="text">{{:: 'required-settings' | translate}}</span></legend>
<div class="form-group clearfix" data-ng-show="!create">
@@ -151,9 +148,9 @@
<kc-tooltip>{{:: 'ldap.bind-dn.tooltip' | translate}}</kc-tooltip>
</div>
<div class="form-group clearfix" data-ng-hide="instance.config['authType'][0] == 'none'">
- <label class="col-md-2 control-label" for="ldapBindCredential"><span class="required">*</span> {{:: 'bind-credential' | translate}}</label>
+ <label class="col-md-2 control-label" for="ldapBindCred"><span class="required">*</span> {{:: 'bind-credential' | translate}}</label>
<div class="col-md-6">
- <input class="form-control" id="ldapBindCredential" type="password" ng-model="instance.config['bindCredential'][0]" placeholder="{{:: 'ldap-bind-credentials' | translate}}" data-ng-required="instance.config['authType'][0] != 'none'">
+ <input class="form-control" id="ldapBindCred" kc-password ng-model="instance.config['bindCredential'][0]" placeholder="{{:: 'ldap-bind-credentials' | translate}}" data-ng-required="instance.config['authType'][0] != 'none'">
</div>
<kc-tooltip>{{:: 'ldap.bind-credential.tooltip' | translate}}</kc-tooltip>
<div class="col-sm-4" data-ng-show="access.manageRealm">
diff --git a/themes/src/main/resources/theme/keycloak/admin/resources/css/styles.css b/themes/src/main/resources/theme/keycloak/admin/resources/css/styles.css
index 6f72a78..8b0a4d3 100755
--- a/themes/src/main/resources/theme/keycloak/admin/resources/css/styles.css
+++ b/themes/src/main/resources/theme/keycloak/admin/resources/css/styles.css
@@ -399,4 +399,9 @@ table.kc-authz-table-expanded {
.no-gutter > [class*='col-'] {
padding-right:0!important;
padding-left:0!important;
+}
+
+.password-conceal {
+ font-family: 'text-security-disc';
+ font-size: 14px;
}
\ No newline at end of file
diff --git a/themes/src/main/resources/theme/keycloak/admin/theme.properties b/themes/src/main/resources/theme/keycloak/admin/theme.properties
index 8519d89..83e4e92 100755
--- a/themes/src/main/resources/theme/keycloak/admin/theme.properties
+++ b/themes/src/main/resources/theme/keycloak/admin/theme.properties
@@ -1,3 +1,3 @@
parent=base
import=common/keycloak
-styles=lib/patternfly/css/patternfly.css node_modules/select2/select2.css css/styles.css lib/angular/treeview/css/angular.treeview.css
\ No newline at end of file
+styles=lib/patternfly/css/patternfly.css node_modules/select2/select2.css css/styles.css lib/angular/treeview/css/angular.treeview.css node_modules/text-security/dist/text-security.css
\ No newline at end of file
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/.npmignore b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/.npmignore
new file mode 100644
index 0000000..2a11bc9
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/.npmignore
@@ -0,0 +1,4 @@
+demo.html
+.eslintrc*
+.vscode/
+.idea/
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/assets/circle.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/assets/circle.svg
new file mode 100644
index 0000000..3209584
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/assets/circle.svg
@@ -0,0 +1,16 @@
+<?xml version="1.0"?>
+<svg viewBox="0 0 200 400" version="1.1"
+ xmlns="http://www.w3.org/2000/svg">
+ <path d="
+ M 100, 200
+ m -50, 0
+ a 50,50 0 1,0 100,0
+ a 50,50 0 1,0 -100,0
+
+ M 100, 200
+ m 40, 0
+ a 40,40 0 1,1 -80,0
+ a 40,40 0 1,1 80,0
+ "
+ fill-rule="evenodd"/>
+</svg>
\ No newline at end of file
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/assets/disc.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/assets/disc.svg
new file mode 100644
index 0000000..dbee77f
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/assets/disc.svg
@@ -0,0 +1,5 @@
+<?xml version="1.0"?>
+<svg viewBox="0 0 140 500" version="1.1"
+ xmlns="http://www.w3.org/2000/svg">
+ <circle cx="70" cy="250" r="55"/>
+</svg>
\ No newline at end of file
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/assets/square.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/assets/square.svg
new file mode 100644
index 0000000..60dc8eb
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/assets/square.svg
@@ -0,0 +1,5 @@
+<?xml version="1.0"?>
+<svg viewBox="0 0 300 500" version="1.1"
+ xmlns="http://www.w3.org/2000/svg">
+ <rect x="0" y="250" width="220" height="220"/>
+</svg>
\ No newline at end of file
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security.css b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security.css
new file mode 100644
index 0000000..89e4581
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security.css
@@ -0,0 +1,24 @@
+@font-face {
+ font-family: 'text-security-circle';
+ src: url('text-security-circle.eot');
+ src: url('text-security-circle.eot?#iefix') format('embedded-opentype'),
+ url('text-security-circle.woff') format('woff'),
+ url('text-security-circle.ttf') format('truetype'),
+ url('text-security-circle.svg#text-security') format('svg');
+}
+@font-face {
+ font-family: 'text-security-square';
+ src: url('text-security-square.eot');
+ src: url('text-security-square.eot?#iefix') format('embedded-opentype'),
+ url('text-security-square.woff') format('woff'),
+ url('text-security-square.ttf') format('truetype'),
+ url('text-security-square.svg#text-security') format('svg');
+}
+@font-face {
+ font-family: 'text-security-disc';
+ src: url('text-security-disc.eot');
+ src: url('text-security-disc.eot?#iefix') format('embedded-opentype'),
+ url('text-security-disc.woff') format('woff'),
+ url('text-security-disc.ttf') format('truetype'),
+ url('text-security-disc.svg#text-security') format('svg');
+}
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-circle.eot b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-circle.eot
new file mode 100644
index 0000000..6581a44
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-circle.eot differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-circle.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-circle.svg
new file mode 100644
index 0000000..4bd8ce8
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-circle.svg
@@ -0,0 +1,2316 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg xmlns="http://www.w3.org/2000/svg">
+<defs>
+ <font id="text-security-circle" horiz-adv-x="200">
+ <font-face font-family="text-security-circle"
+ units-per-em="400" ascent="400"
+ descent="0" />
+ <missing-glyph horiz-adv-x="0" />
+ <glyph glyph-name="circle"
+ unicode="�"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-1"
+ unicode=""
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-2"
+ unicode=""
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-3"
+ unicode=""
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-4"
+ unicode=""
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-5"
+ unicode=""
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-6"
+ unicode=""
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-7"
+ unicode=""
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-8"
+ unicode=""
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-9"
+ unicode="	"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-10"
+ unicode="
"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-11"
+ unicode=""
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-12"
+ unicode=""
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-13"
+ unicode="
"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-14"
+ unicode=""
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-15"
+ unicode=""
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-16"
+ unicode=""
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-17"
+ unicode=""
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-18"
+ unicode=""
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-19"
+ unicode=""
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-20"
+ unicode=""
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-21"
+ unicode=""
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-22"
+ unicode=""
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-23"
+ unicode=""
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-24"
+ unicode=""
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-25"
+ unicode=""
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-26"
+ unicode=""
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-27"
+ unicode=""
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-28"
+ unicode=""
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-29"
+ unicode=""
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-30"
+ unicode=""
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-31"
+ unicode=""
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-32"
+ unicode=" "
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-33"
+ unicode="!"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-34"
+ unicode="""
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-35"
+ unicode="#"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-36"
+ unicode="$"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-37"
+ unicode="%"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-38"
+ unicode="&"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-39"
+ unicode="'"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-40"
+ unicode="("
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-41"
+ unicode=")"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-42"
+ unicode="*"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-43"
+ unicode="+"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-44"
+ unicode=","
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-45"
+ unicode="-"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-46"
+ unicode="."
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-47"
+ unicode="/"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-48"
+ unicode="0"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-49"
+ unicode="1"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-50"
+ unicode="2"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-51"
+ unicode="3"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-52"
+ unicode="4"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-53"
+ unicode="5"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-54"
+ unicode="6"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-55"
+ unicode="7"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-56"
+ unicode="8"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-57"
+ unicode="9"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-58"
+ unicode=":"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-59"
+ unicode=";"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-60"
+ unicode="<"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-61"
+ unicode="="
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-62"
+ unicode=">"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-63"
+ unicode="?"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-64"
+ unicode="@"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-65"
+ unicode="A"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-66"
+ unicode="B"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-67"
+ unicode="C"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-68"
+ unicode="D"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-69"
+ unicode="E"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-70"
+ unicode="F"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-71"
+ unicode="G"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-72"
+ unicode="H"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-73"
+ unicode="I"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-74"
+ unicode="J"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-75"
+ unicode="K"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-76"
+ unicode="L"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-77"
+ unicode="M"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-78"
+ unicode="N"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-79"
+ unicode="O"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-80"
+ unicode="P"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-81"
+ unicode="Q"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-82"
+ unicode="R"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-83"
+ unicode="S"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-84"
+ unicode="T"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-85"
+ unicode="U"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-86"
+ unicode="V"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-87"
+ unicode="W"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-88"
+ unicode="X"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-89"
+ unicode="Y"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-90"
+ unicode="Z"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-91"
+ unicode="["
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-92"
+ unicode="\"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-93"
+ unicode="]"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-94"
+ unicode="^"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-95"
+ unicode="_"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-96"
+ unicode="`"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-97"
+ unicode="a"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-98"
+ unicode="b"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-99"
+ unicode="c"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-100"
+ unicode="d"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-101"
+ unicode="e"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-102"
+ unicode="f"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-103"
+ unicode="g"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-104"
+ unicode="h"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-105"
+ unicode="i"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-106"
+ unicode="j"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-107"
+ unicode="k"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-108"
+ unicode="l"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-109"
+ unicode="m"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-110"
+ unicode="n"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-111"
+ unicode="o"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-112"
+ unicode="p"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-113"
+ unicode="q"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-114"
+ unicode="r"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-115"
+ unicode="s"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-116"
+ unicode="t"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-117"
+ unicode="u"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-118"
+ unicode="v"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-119"
+ unicode="w"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-120"
+ unicode="x"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-121"
+ unicode="y"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-122"
+ unicode="z"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-123"
+ unicode="{"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-124"
+ unicode="|"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-125"
+ unicode="}"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-126"
+ unicode="~"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-127"
+ unicode=""
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-128"
+ unicode="€"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-129"
+ unicode=""
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-130"
+ unicode="‚"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-131"
+ unicode="ƒ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-132"
+ unicode="„"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-133"
+ unicode="…"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-134"
+ unicode="†"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-135"
+ unicode="‡"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-136"
+ unicode="ˆ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-137"
+ unicode="‰"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-138"
+ unicode="Š"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-139"
+ unicode="‹"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-140"
+ unicode="Œ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-141"
+ unicode=""
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-142"
+ unicode="Ž"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-143"
+ unicode=""
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-144"
+ unicode=""
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-145"
+ unicode="‘"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-146"
+ unicode="’"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-147"
+ unicode="“"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-148"
+ unicode="”"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-149"
+ unicode="•"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-150"
+ unicode="–"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-151"
+ unicode="—"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-152"
+ unicode="˜"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-153"
+ unicode="™"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-154"
+ unicode="š"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-155"
+ unicode="›"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-156"
+ unicode="œ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-157"
+ unicode=""
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-158"
+ unicode="ž"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-159"
+ unicode="Ÿ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-160"
+ unicode=" "
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-161"
+ unicode="¡"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-162"
+ unicode="¢"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-163"
+ unicode="£"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-164"
+ unicode="¤"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-165"
+ unicode="¥"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-166"
+ unicode="¦"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-167"
+ unicode="§"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-168"
+ unicode="¨"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-169"
+ unicode="©"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-170"
+ unicode="ª"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-171"
+ unicode="«"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-172"
+ unicode="¬"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-173"
+ unicode="­"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-174"
+ unicode="®"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-175"
+ unicode="¯"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-176"
+ unicode="°"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-177"
+ unicode="±"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-178"
+ unicode="²"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-179"
+ unicode="³"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-180"
+ unicode="´"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-181"
+ unicode="µ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-182"
+ unicode="¶"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-183"
+ unicode="·"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-184"
+ unicode="¸"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-185"
+ unicode="¹"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-186"
+ unicode="º"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-187"
+ unicode="»"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-188"
+ unicode="¼"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-189"
+ unicode="½"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-190"
+ unicode="¾"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-191"
+ unicode="¿"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-192"
+ unicode="À"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-193"
+ unicode="Á"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-194"
+ unicode="Â"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-195"
+ unicode="Ã"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-196"
+ unicode="Ä"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-197"
+ unicode="Å"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-198"
+ unicode="Æ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-199"
+ unicode="Ç"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-200"
+ unicode="È"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-201"
+ unicode="É"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-202"
+ unicode="Ê"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-203"
+ unicode="Ë"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-204"
+ unicode="Ì"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-205"
+ unicode="Í"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-206"
+ unicode="Î"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-207"
+ unicode="Ï"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-208"
+ unicode="Ð"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-209"
+ unicode="Ñ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-210"
+ unicode="Ò"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-211"
+ unicode="Ó"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-212"
+ unicode="Ô"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-213"
+ unicode="Õ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-214"
+ unicode="Ö"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-215"
+ unicode="×"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-216"
+ unicode="Ø"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-217"
+ unicode="Ù"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-218"
+ unicode="Ú"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-219"
+ unicode="Û"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-220"
+ unicode="Ü"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-221"
+ unicode="Ý"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-222"
+ unicode="Þ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-223"
+ unicode="ß"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-224"
+ unicode="à"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-225"
+ unicode="á"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-226"
+ unicode="â"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-227"
+ unicode="ã"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-228"
+ unicode="ä"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-229"
+ unicode="å"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-230"
+ unicode="æ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-231"
+ unicode="ç"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-232"
+ unicode="è"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-233"
+ unicode="é"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-234"
+ unicode="ê"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-235"
+ unicode="ë"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-236"
+ unicode="ì"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-237"
+ unicode="í"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-238"
+ unicode="î"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-239"
+ unicode="ï"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-240"
+ unicode="ð"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-241"
+ unicode="ñ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-242"
+ unicode="ò"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-243"
+ unicode="ó"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-244"
+ unicode="ô"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-245"
+ unicode="õ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-246"
+ unicode="ö"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-247"
+ unicode="÷"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-248"
+ unicode="ø"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-249"
+ unicode="ù"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-250"
+ unicode="ú"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-251"
+ unicode="û"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-252"
+ unicode="ü"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-253"
+ unicode="ý"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-254"
+ unicode="þ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-255"
+ unicode="ÿ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-256"
+ unicode="Ā"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-257"
+ unicode="ā"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-258"
+ unicode="Ă"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-259"
+ unicode="ă"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-260"
+ unicode="Ą"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-261"
+ unicode="ą"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-262"
+ unicode="Ć"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-263"
+ unicode="ć"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-264"
+ unicode="Ĉ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-265"
+ unicode="ĉ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-266"
+ unicode="Ċ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-267"
+ unicode="ċ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-268"
+ unicode="Č"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-269"
+ unicode="č"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-270"
+ unicode="Ď"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-271"
+ unicode="ď"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-272"
+ unicode="Đ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-273"
+ unicode="đ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-274"
+ unicode="Ē"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-275"
+ unicode="ē"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-276"
+ unicode="Ĕ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-277"
+ unicode="ĕ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-278"
+ unicode="Ė"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-279"
+ unicode="ė"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-280"
+ unicode="Ę"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-281"
+ unicode="ę"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-282"
+ unicode="Ě"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-283"
+ unicode="ě"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-284"
+ unicode="Ĝ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-285"
+ unicode="ĝ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-286"
+ unicode="Ğ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-287"
+ unicode="ğ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-288"
+ unicode="Ġ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-289"
+ unicode="ġ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-290"
+ unicode="Ģ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-291"
+ unicode="ģ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-292"
+ unicode="Ĥ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-293"
+ unicode="ĥ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-294"
+ unicode="Ħ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-295"
+ unicode="ħ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-296"
+ unicode="Ĩ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-297"
+ unicode="ĩ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-298"
+ unicode="Ī"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-299"
+ unicode="ī"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-300"
+ unicode="Ĭ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-301"
+ unicode="ĭ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-302"
+ unicode="Į"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-303"
+ unicode="į"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-304"
+ unicode="İ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-305"
+ unicode="ı"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-306"
+ unicode="IJ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-307"
+ unicode="ij"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-308"
+ unicode="Ĵ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-309"
+ unicode="ĵ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-310"
+ unicode="Ķ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-311"
+ unicode="ķ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-312"
+ unicode="ĸ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-313"
+ unicode="Ĺ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-314"
+ unicode="ĺ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-315"
+ unicode="Ļ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-316"
+ unicode="ļ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-317"
+ unicode="Ľ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-318"
+ unicode="ľ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-319"
+ unicode="Ŀ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-320"
+ unicode="ŀ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-321"
+ unicode="Ł"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-322"
+ unicode="ł"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-323"
+ unicode="Ń"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-324"
+ unicode="ń"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-325"
+ unicode="Ņ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-326"
+ unicode="ņ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-327"
+ unicode="Ň"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-328"
+ unicode="ň"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-329"
+ unicode="ʼn"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-330"
+ unicode="Ŋ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-331"
+ unicode="ŋ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-332"
+ unicode="Ō"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-333"
+ unicode="ō"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-334"
+ unicode="Ŏ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-335"
+ unicode="ŏ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-336"
+ unicode="Ő"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-337"
+ unicode="ő"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-338"
+ unicode="Œ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-339"
+ unicode="œ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-340"
+ unicode="Ŕ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-341"
+ unicode="ŕ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-342"
+ unicode="Ŗ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-343"
+ unicode="ŗ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-344"
+ unicode="Ř"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-345"
+ unicode="ř"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-346"
+ unicode="Ś"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-347"
+ unicode="ś"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-348"
+ unicode="Ŝ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-349"
+ unicode="ŝ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-350"
+ unicode="Ş"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-351"
+ unicode="ş"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-352"
+ unicode="Š"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-353"
+ unicode="š"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-354"
+ unicode="Ţ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-355"
+ unicode="ţ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-356"
+ unicode="Ť"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-357"
+ unicode="ť"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-358"
+ unicode="Ŧ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-359"
+ unicode="ŧ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-360"
+ unicode="Ũ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-361"
+ unicode="ũ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-362"
+ unicode="Ū"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-363"
+ unicode="ū"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-364"
+ unicode="Ŭ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-365"
+ unicode="ŭ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-366"
+ unicode="Ů"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-367"
+ unicode="ů"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-368"
+ unicode="Ű"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-369"
+ unicode="ű"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-370"
+ unicode="Ų"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-371"
+ unicode="ų"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-372"
+ unicode="Ŵ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-373"
+ unicode="ŵ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-374"
+ unicode="Ŷ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-375"
+ unicode="ŷ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-376"
+ unicode="Ÿ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-377"
+ unicode="Ź"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-378"
+ unicode="ź"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-379"
+ unicode="Ż"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-380"
+ unicode="ż"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-381"
+ unicode="Ž"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-382"
+ unicode="ž"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-383"
+ unicode="ſ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-384"
+ unicode="ƀ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-385"
+ unicode="Ɓ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-386"
+ unicode="Ƃ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-387"
+ unicode="ƃ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-388"
+ unicode="Ƅ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-389"
+ unicode="ƅ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-390"
+ unicode="Ɔ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-391"
+ unicode="Ƈ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-392"
+ unicode="ƈ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-393"
+ unicode="Ɖ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-394"
+ unicode="Ɗ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-395"
+ unicode="Ƌ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-396"
+ unicode="ƌ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-397"
+ unicode="ƍ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-398"
+ unicode="Ǝ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-399"
+ unicode="Ə"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-400"
+ unicode="Ɛ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-401"
+ unicode="Ƒ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-402"
+ unicode="ƒ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-403"
+ unicode="Ɠ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-404"
+ unicode="Ɣ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-405"
+ unicode="ƕ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-406"
+ unicode="Ɩ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-407"
+ unicode="Ɨ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-408"
+ unicode="Ƙ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-409"
+ unicode="ƙ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-410"
+ unicode="ƚ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-411"
+ unicode="ƛ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-412"
+ unicode="Ɯ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-413"
+ unicode="Ɲ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-414"
+ unicode="ƞ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-415"
+ unicode="Ɵ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-416"
+ unicode="Ơ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-417"
+ unicode="ơ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-418"
+ unicode="Ƣ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-419"
+ unicode="ƣ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-420"
+ unicode="Ƥ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-421"
+ unicode="ƥ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-422"
+ unicode="Ʀ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-423"
+ unicode="Ƨ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-424"
+ unicode="ƨ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-425"
+ unicode="Ʃ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-426"
+ unicode="ƪ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-427"
+ unicode="ƫ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-428"
+ unicode="Ƭ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-429"
+ unicode="ƭ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-430"
+ unicode="Ʈ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-431"
+ unicode="Ư"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-432"
+ unicode="ư"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-433"
+ unicode="Ʊ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-434"
+ unicode="Ʋ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-435"
+ unicode="Ƴ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-436"
+ unicode="ƴ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-437"
+ unicode="Ƶ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-438"
+ unicode="ƶ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-439"
+ unicode="Ʒ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-440"
+ unicode="Ƹ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-441"
+ unicode="ƹ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-442"
+ unicode="ƺ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-443"
+ unicode="ƻ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-444"
+ unicode="Ƽ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-445"
+ unicode="ƽ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-446"
+ unicode="ƾ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-447"
+ unicode="ƿ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-448"
+ unicode="ǀ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-449"
+ unicode="ǁ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-450"
+ unicode="ǂ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-451"
+ unicode="ǃ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-452"
+ unicode="DŽ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-453"
+ unicode="Dž"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-454"
+ unicode="dž"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-455"
+ unicode="LJ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-456"
+ unicode="Lj"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-457"
+ unicode="lj"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-458"
+ unicode="NJ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-459"
+ unicode="Nj"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-460"
+ unicode="nj"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-461"
+ unicode="Ǎ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-462"
+ unicode="ǎ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-463"
+ unicode="Ǐ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-464"
+ unicode="ǐ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-465"
+ unicode="Ǒ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-466"
+ unicode="ǒ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-467"
+ unicode="Ǔ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-468"
+ unicode="ǔ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-469"
+ unicode="Ǖ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-470"
+ unicode="ǖ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-471"
+ unicode="Ǘ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-472"
+ unicode="ǘ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-473"
+ unicode="Ǚ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-474"
+ unicode="ǚ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-475"
+ unicode="Ǜ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-476"
+ unicode="ǜ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-477"
+ unicode="ǝ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-478"
+ unicode="Ǟ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-479"
+ unicode="ǟ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-480"
+ unicode="Ǡ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-481"
+ unicode="ǡ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-482"
+ unicode="Ǣ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-483"
+ unicode="ǣ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-484"
+ unicode="Ǥ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-485"
+ unicode="ǥ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-486"
+ unicode="Ǧ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-487"
+ unicode="ǧ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-488"
+ unicode="Ǩ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-489"
+ unicode="ǩ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-490"
+ unicode="Ǫ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-491"
+ unicode="ǫ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-492"
+ unicode="Ǭ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-493"
+ unicode="ǭ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-494"
+ unicode="Ǯ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-495"
+ unicode="ǯ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-496"
+ unicode="ǰ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-497"
+ unicode="DZ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-498"
+ unicode="Dz"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-499"
+ unicode="dz"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-500"
+ unicode="Ǵ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-501"
+ unicode="ǵ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-502"
+ unicode="Ƕ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-503"
+ unicode="Ƿ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-504"
+ unicode="Ǹ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-505"
+ unicode="ǹ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-506"
+ unicode="Ǻ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-507"
+ unicode="ǻ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-508"
+ unicode="Ǽ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-509"
+ unicode="ǽ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-510"
+ unicode="Ǿ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-511"
+ unicode="ǿ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-512"
+ unicode="Ȁ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-513"
+ unicode="ȁ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-514"
+ unicode="Ȃ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-515"
+ unicode="ȃ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-516"
+ unicode="Ȅ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-517"
+ unicode="ȅ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-518"
+ unicode="Ȇ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-519"
+ unicode="ȇ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-520"
+ unicode="Ȉ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-521"
+ unicode="ȉ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-522"
+ unicode="Ȋ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-523"
+ unicode="ȋ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-524"
+ unicode="Ȍ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-525"
+ unicode="ȍ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-526"
+ unicode="Ȏ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-527"
+ unicode="ȏ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-528"
+ unicode="Ȑ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-529"
+ unicode="ȑ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-530"
+ unicode="Ȓ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-531"
+ unicode="ȓ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-532"
+ unicode="Ȕ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-533"
+ unicode="ȕ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-534"
+ unicode="Ȗ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-535"
+ unicode="ȗ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-536"
+ unicode="Ș"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-537"
+ unicode="ș"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-538"
+ unicode="Ț"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-539"
+ unicode="ț"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-540"
+ unicode="Ȝ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-541"
+ unicode="ȝ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-542"
+ unicode="Ȟ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-543"
+ unicode="ȟ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-544"
+ unicode="Ƞ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-545"
+ unicode="ȡ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-546"
+ unicode="Ȣ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-547"
+ unicode="ȣ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-548"
+ unicode="Ȥ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-549"
+ unicode="ȥ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-550"
+ unicode="Ȧ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-551"
+ unicode="ȧ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-552"
+ unicode="Ȩ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-553"
+ unicode="ȩ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-554"
+ unicode="Ȫ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-555"
+ unicode="ȫ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-556"
+ unicode="Ȭ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-557"
+ unicode="ȭ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-558"
+ unicode="Ȯ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-559"
+ unicode="ȯ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-560"
+ unicode="Ȱ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-561"
+ unicode="ȱ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-562"
+ unicode="Ȳ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-563"
+ unicode="ȳ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-564"
+ unicode="ȴ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-565"
+ unicode="ȵ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-566"
+ unicode="ȶ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-567"
+ unicode="ȷ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-568"
+ unicode="ȸ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-569"
+ unicode="ȹ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-570"
+ unicode="Ⱥ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-571"
+ unicode="Ȼ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-572"
+ unicode="ȼ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-573"
+ unicode="Ƚ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-574"
+ unicode="Ⱦ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-575"
+ unicode="ȿ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-576"
+ unicode="ɀ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-577"
+ unicode="Ɂ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-578"
+ unicode="ɂ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-579"
+ unicode="Ƀ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-580"
+ unicode="Ʉ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-581"
+ unicode="Ʌ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-582"
+ unicode="Ɇ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-583"
+ unicode="ɇ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-584"
+ unicode="Ɉ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-585"
+ unicode="ɉ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-586"
+ unicode="Ɋ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-587"
+ unicode="ɋ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-588"
+ unicode="Ɍ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-589"
+ unicode="ɍ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-590"
+ unicode="Ɏ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-591"
+ unicode="ɏ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-592"
+ unicode="ɐ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-593"
+ unicode="ɑ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-594"
+ unicode="ɒ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-595"
+ unicode="ɓ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-596"
+ unicode="ɔ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-597"
+ unicode="ɕ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-598"
+ unicode="ɖ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-599"
+ unicode="ɗ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-600"
+ unicode="ɘ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-601"
+ unicode="ə"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-602"
+ unicode="ɚ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-603"
+ unicode="ɛ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-604"
+ unicode="ɜ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-605"
+ unicode="ɝ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-606"
+ unicode="ɞ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-607"
+ unicode="ɟ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-608"
+ unicode="ɠ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-609"
+ unicode="ɡ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-610"
+ unicode="ɢ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-611"
+ unicode="ɣ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-612"
+ unicode="ɤ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-613"
+ unicode="ɥ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-614"
+ unicode="ɦ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-615"
+ unicode="ɧ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-616"
+ unicode="ɨ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-617"
+ unicode="ɩ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-618"
+ unicode="ɪ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-619"
+ unicode="ɫ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-620"
+ unicode="ɬ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-621"
+ unicode="ɭ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-622"
+ unicode="ɮ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-623"
+ unicode="ɯ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-624"
+ unicode="ɰ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-625"
+ unicode="ɱ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-626"
+ unicode="ɲ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-627"
+ unicode="ɳ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-628"
+ unicode="ɴ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-629"
+ unicode="ɵ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-630"
+ unicode="ɶ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-631"
+ unicode="ɷ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-632"
+ unicode="ɸ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-633"
+ unicode="ɹ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-634"
+ unicode="ɺ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-635"
+ unicode="ɻ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-636"
+ unicode="ɼ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-637"
+ unicode="ɽ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-638"
+ unicode="ɾ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-639"
+ unicode="ɿ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-640"
+ unicode="ʀ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-641"
+ unicode="ʁ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-642"
+ unicode="ʂ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-643"
+ unicode="ʃ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-644"
+ unicode="ʄ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-645"
+ unicode="ʅ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-646"
+ unicode="ʆ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-647"
+ unicode="ʇ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-648"
+ unicode="ʈ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-649"
+ unicode="ʉ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-650"
+ unicode="ʊ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-651"
+ unicode="ʋ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-652"
+ unicode="ʌ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-653"
+ unicode="ʍ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-654"
+ unicode="ʎ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-655"
+ unicode="ʏ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-656"
+ unicode="ʐ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-657"
+ unicode="ʑ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-658"
+ unicode="ʒ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-659"
+ unicode="ʓ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-660"
+ unicode="ʔ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-661"
+ unicode="ʕ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-662"
+ unicode="ʖ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-663"
+ unicode="ʗ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-664"
+ unicode="ʘ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-665"
+ unicode="ʙ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-666"
+ unicode="ʚ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-667"
+ unicode="ʛ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-668"
+ unicode="ʜ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-669"
+ unicode="ʝ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-670"
+ unicode="ʞ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-671"
+ unicode="ʟ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-672"
+ unicode="ʠ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-673"
+ unicode="ʡ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-674"
+ unicode="ʢ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-675"
+ unicode="ʣ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-676"
+ unicode="ʤ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-677"
+ unicode="ʥ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-678"
+ unicode="ʦ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-679"
+ unicode="ʧ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-680"
+ unicode="ʨ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-681"
+ unicode="ʩ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-682"
+ unicode="ʪ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-683"
+ unicode="ʫ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-684"
+ unicode="ʬ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-685"
+ unicode="ʭ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-686"
+ unicode="ʮ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-687"
+ unicode="ʯ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-688"
+ unicode="ʰ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-689"
+ unicode="ʱ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-690"
+ unicode="ʲ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-691"
+ unicode="ʳ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-692"
+ unicode="ʴ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-693"
+ unicode="ʵ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-694"
+ unicode="ʶ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-695"
+ unicode="ʷ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-696"
+ unicode="ʸ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-697"
+ unicode="ʹ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-698"
+ unicode="ʺ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-699"
+ unicode="ʻ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-700"
+ unicode="ʼ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-701"
+ unicode="ʽ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-702"
+ unicode="ʾ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-703"
+ unicode="ʿ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-704"
+ unicode="ˀ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-705"
+ unicode="ˁ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-706"
+ unicode="˂"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-707"
+ unicode="˃"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-708"
+ unicode="˄"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-709"
+ unicode="˅"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-710"
+ unicode="ˆ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-711"
+ unicode="ˇ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-712"
+ unicode="ˈ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-713"
+ unicode="ˉ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-714"
+ unicode="ˊ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-715"
+ unicode="ˋ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-716"
+ unicode="ˌ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-717"
+ unicode="ˍ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-718"
+ unicode="ˎ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-719"
+ unicode="ˏ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-720"
+ unicode="ː"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-721"
+ unicode="ˑ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-722"
+ unicode="˒"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-723"
+ unicode="˓"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-724"
+ unicode="˔"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-725"
+ unicode="˕"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-726"
+ unicode="˖"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-727"
+ unicode="˗"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-728"
+ unicode="˘"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-729"
+ unicode="˙"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-730"
+ unicode="˚"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-731"
+ unicode="˛"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-732"
+ unicode="˜"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-733"
+ unicode="˝"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-734"
+ unicode="˞"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-735"
+ unicode="˟"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-736"
+ unicode="ˠ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-737"
+ unicode="ˡ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-738"
+ unicode="ˢ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-739"
+ unicode="ˣ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-740"
+ unicode="ˤ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-741"
+ unicode="˥"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-742"
+ unicode="˦"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-743"
+ unicode="˧"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-744"
+ unicode="˨"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-745"
+ unicode="˩"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-746"
+ unicode="˪"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-747"
+ unicode="˫"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-748"
+ unicode="ˬ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-749"
+ unicode="˭"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-750"
+ unicode="ˮ"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-751"
+ unicode="˯"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-752"
+ unicode="˰"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-753"
+ unicode="˱"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-754"
+ unicode="˲"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-755"
+ unicode="˳"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-756"
+ unicode="˴"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-757"
+ unicode="˵"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-758"
+ unicode="˶"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-759"
+ unicode="˷"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-760"
+ unicode="˸"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-761"
+ unicode="˹"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-762"
+ unicode="˺"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-763"
+ unicode="˻"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-764"
+ unicode="˼"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-765"
+ unicode="˽"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-766"
+ unicode="˾"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ <glyph glyph-name="circle-767"
+ unicode="˿"
+ horiz-adv-x="200" d=" M100 200M50 200A50 50 0 1 1 150 200A50 50 0 1 1 50 200M100 200M140 200A40 40 0 1 0 60 200A40 40 0 1 0 140 200" />
+ </font>
+</defs>
+</svg>
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-circle.ttf b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-circle.ttf
new file mode 100644
index 0000000..0f62fc3
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-circle.ttf differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-circle.woff b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-circle.woff
new file mode 100644
index 0000000..6751851
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-circle.woff differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-disc.eot b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-disc.eot
new file mode 100644
index 0000000..21f4c87
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-disc.eot differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-disc.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-disc.svg
new file mode 100644
index 0000000..f12aad2
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-disc.svg
@@ -0,0 +1,2316 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg xmlns="http://www.w3.org/2000/svg">
+<defs>
+ <font id="text-security-disc" horiz-adv-x="140">
+ <font-face font-family="text-security-disc"
+ units-per-em="500" ascent="500"
+ descent="0" />
+ <missing-glyph horiz-adv-x="0" />
+ <glyph glyph-name="disc"
+ unicode="�"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-1"
+ unicode=""
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-2"
+ unicode=""
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-3"
+ unicode=""
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-4"
+ unicode=""
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-5"
+ unicode=""
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-6"
+ unicode=""
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-7"
+ unicode=""
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-8"
+ unicode=""
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-9"
+ unicode="	"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-10"
+ unicode="
"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-11"
+ unicode=""
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-12"
+ unicode=""
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-13"
+ unicode="
"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-14"
+ unicode=""
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-15"
+ unicode=""
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-16"
+ unicode=""
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-17"
+ unicode=""
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-18"
+ unicode=""
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-19"
+ unicode=""
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-20"
+ unicode=""
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-21"
+ unicode=""
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-22"
+ unicode=""
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-23"
+ unicode=""
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-24"
+ unicode=""
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-25"
+ unicode=""
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-26"
+ unicode=""
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-27"
+ unicode=""
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-28"
+ unicode=""
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-29"
+ unicode=""
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-30"
+ unicode=""
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-31"
+ unicode=""
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-32"
+ unicode=" "
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-33"
+ unicode="!"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-34"
+ unicode="""
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-35"
+ unicode="#"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-36"
+ unicode="$"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-37"
+ unicode="%"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-38"
+ unicode="&"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-39"
+ unicode="'"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-40"
+ unicode="("
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-41"
+ unicode=")"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-42"
+ unicode="*"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-43"
+ unicode="+"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-44"
+ unicode=","
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-45"
+ unicode="-"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-46"
+ unicode="."
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-47"
+ unicode="/"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-48"
+ unicode="0"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-49"
+ unicode="1"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-50"
+ unicode="2"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-51"
+ unicode="3"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-52"
+ unicode="4"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-53"
+ unicode="5"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-54"
+ unicode="6"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-55"
+ unicode="7"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-56"
+ unicode="8"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-57"
+ unicode="9"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-58"
+ unicode=":"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-59"
+ unicode=";"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-60"
+ unicode="<"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-61"
+ unicode="="
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-62"
+ unicode=">"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-63"
+ unicode="?"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-64"
+ unicode="@"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-65"
+ unicode="A"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-66"
+ unicode="B"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-67"
+ unicode="C"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-68"
+ unicode="D"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-69"
+ unicode="E"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-70"
+ unicode="F"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-71"
+ unicode="G"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-72"
+ unicode="H"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-73"
+ unicode="I"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-74"
+ unicode="J"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-75"
+ unicode="K"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-76"
+ unicode="L"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-77"
+ unicode="M"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-78"
+ unicode="N"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-79"
+ unicode="O"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-80"
+ unicode="P"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-81"
+ unicode="Q"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-82"
+ unicode="R"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-83"
+ unicode="S"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-84"
+ unicode="T"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-85"
+ unicode="U"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-86"
+ unicode="V"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-87"
+ unicode="W"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-88"
+ unicode="X"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-89"
+ unicode="Y"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-90"
+ unicode="Z"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-91"
+ unicode="["
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-92"
+ unicode="\"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-93"
+ unicode="]"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-94"
+ unicode="^"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-95"
+ unicode="_"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-96"
+ unicode="`"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-97"
+ unicode="a"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-98"
+ unicode="b"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-99"
+ unicode="c"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-100"
+ unicode="d"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-101"
+ unicode="e"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-102"
+ unicode="f"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-103"
+ unicode="g"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-104"
+ unicode="h"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-105"
+ unicode="i"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-106"
+ unicode="j"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-107"
+ unicode="k"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-108"
+ unicode="l"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-109"
+ unicode="m"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-110"
+ unicode="n"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-111"
+ unicode="o"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-112"
+ unicode="p"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-113"
+ unicode="q"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-114"
+ unicode="r"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-115"
+ unicode="s"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-116"
+ unicode="t"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-117"
+ unicode="u"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-118"
+ unicode="v"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-119"
+ unicode="w"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-120"
+ unicode="x"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-121"
+ unicode="y"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-122"
+ unicode="z"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-123"
+ unicode="{"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-124"
+ unicode="|"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-125"
+ unicode="}"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-126"
+ unicode="~"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-127"
+ unicode=""
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-128"
+ unicode="€"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-129"
+ unicode=""
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-130"
+ unicode="‚"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-131"
+ unicode="ƒ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-132"
+ unicode="„"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-133"
+ unicode="…"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-134"
+ unicode="†"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-135"
+ unicode="‡"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-136"
+ unicode="ˆ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-137"
+ unicode="‰"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-138"
+ unicode="Š"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-139"
+ unicode="‹"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-140"
+ unicode="Œ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-141"
+ unicode=""
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-142"
+ unicode="Ž"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-143"
+ unicode=""
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-144"
+ unicode=""
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-145"
+ unicode="‘"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-146"
+ unicode="’"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-147"
+ unicode="“"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-148"
+ unicode="”"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-149"
+ unicode="•"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-150"
+ unicode="–"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-151"
+ unicode="—"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-152"
+ unicode="˜"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-153"
+ unicode="™"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-154"
+ unicode="š"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-155"
+ unicode="›"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-156"
+ unicode="œ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-157"
+ unicode=""
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-158"
+ unicode="ž"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-159"
+ unicode="Ÿ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-160"
+ unicode=" "
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-161"
+ unicode="¡"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-162"
+ unicode="¢"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-163"
+ unicode="£"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-164"
+ unicode="¤"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-165"
+ unicode="¥"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-166"
+ unicode="¦"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-167"
+ unicode="§"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-168"
+ unicode="¨"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-169"
+ unicode="©"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-170"
+ unicode="ª"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-171"
+ unicode="«"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-172"
+ unicode="¬"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-173"
+ unicode="­"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-174"
+ unicode="®"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-175"
+ unicode="¯"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-176"
+ unicode="°"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-177"
+ unicode="±"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-178"
+ unicode="²"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-179"
+ unicode="³"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-180"
+ unicode="´"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-181"
+ unicode="µ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-182"
+ unicode="¶"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-183"
+ unicode="·"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-184"
+ unicode="¸"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-185"
+ unicode="¹"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-186"
+ unicode="º"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-187"
+ unicode="»"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-188"
+ unicode="¼"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-189"
+ unicode="½"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-190"
+ unicode="¾"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-191"
+ unicode="¿"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-192"
+ unicode="À"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-193"
+ unicode="Á"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-194"
+ unicode="Â"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-195"
+ unicode="Ã"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-196"
+ unicode="Ä"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-197"
+ unicode="Å"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-198"
+ unicode="Æ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-199"
+ unicode="Ç"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-200"
+ unicode="È"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-201"
+ unicode="É"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-202"
+ unicode="Ê"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-203"
+ unicode="Ë"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-204"
+ unicode="Ì"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-205"
+ unicode="Í"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-206"
+ unicode="Î"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-207"
+ unicode="Ï"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-208"
+ unicode="Ð"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-209"
+ unicode="Ñ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-210"
+ unicode="Ò"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-211"
+ unicode="Ó"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-212"
+ unicode="Ô"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-213"
+ unicode="Õ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-214"
+ unicode="Ö"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-215"
+ unicode="×"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-216"
+ unicode="Ø"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-217"
+ unicode="Ù"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-218"
+ unicode="Ú"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-219"
+ unicode="Û"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-220"
+ unicode="Ü"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-221"
+ unicode="Ý"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-222"
+ unicode="Þ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-223"
+ unicode="ß"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-224"
+ unicode="à"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-225"
+ unicode="á"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-226"
+ unicode="â"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-227"
+ unicode="ã"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-228"
+ unicode="ä"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-229"
+ unicode="å"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-230"
+ unicode="æ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-231"
+ unicode="ç"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-232"
+ unicode="è"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-233"
+ unicode="é"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-234"
+ unicode="ê"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-235"
+ unicode="ë"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-236"
+ unicode="ì"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-237"
+ unicode="í"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-238"
+ unicode="î"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-239"
+ unicode="ï"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-240"
+ unicode="ð"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-241"
+ unicode="ñ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-242"
+ unicode="ò"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-243"
+ unicode="ó"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-244"
+ unicode="ô"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-245"
+ unicode="õ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-246"
+ unicode="ö"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-247"
+ unicode="÷"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-248"
+ unicode="ø"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-249"
+ unicode="ù"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-250"
+ unicode="ú"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-251"
+ unicode="û"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-252"
+ unicode="ü"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-253"
+ unicode="ý"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-254"
+ unicode="þ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-255"
+ unicode="ÿ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-256"
+ unicode="Ā"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-257"
+ unicode="ā"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-258"
+ unicode="Ă"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-259"
+ unicode="ă"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-260"
+ unicode="Ą"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-261"
+ unicode="ą"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-262"
+ unicode="Ć"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-263"
+ unicode="ć"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-264"
+ unicode="Ĉ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-265"
+ unicode="ĉ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-266"
+ unicode="Ċ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-267"
+ unicode="ċ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-268"
+ unicode="Č"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-269"
+ unicode="č"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-270"
+ unicode="Ď"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-271"
+ unicode="ď"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-272"
+ unicode="Đ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-273"
+ unicode="đ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-274"
+ unicode="Ē"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-275"
+ unicode="ē"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-276"
+ unicode="Ĕ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-277"
+ unicode="ĕ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-278"
+ unicode="Ė"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-279"
+ unicode="ė"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-280"
+ unicode="Ę"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-281"
+ unicode="ę"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-282"
+ unicode="Ě"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-283"
+ unicode="ě"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-284"
+ unicode="Ĝ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-285"
+ unicode="ĝ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-286"
+ unicode="Ğ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-287"
+ unicode="ğ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-288"
+ unicode="Ġ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-289"
+ unicode="ġ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-290"
+ unicode="Ģ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-291"
+ unicode="ģ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-292"
+ unicode="Ĥ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-293"
+ unicode="ĥ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-294"
+ unicode="Ħ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-295"
+ unicode="ħ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-296"
+ unicode="Ĩ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-297"
+ unicode="ĩ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-298"
+ unicode="Ī"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-299"
+ unicode="ī"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-300"
+ unicode="Ĭ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-301"
+ unicode="ĭ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-302"
+ unicode="Į"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-303"
+ unicode="į"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-304"
+ unicode="İ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-305"
+ unicode="ı"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-306"
+ unicode="IJ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-307"
+ unicode="ij"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-308"
+ unicode="Ĵ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-309"
+ unicode="ĵ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-310"
+ unicode="Ķ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-311"
+ unicode="ķ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-312"
+ unicode="ĸ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-313"
+ unicode="Ĺ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-314"
+ unicode="ĺ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-315"
+ unicode="Ļ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-316"
+ unicode="ļ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-317"
+ unicode="Ľ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-318"
+ unicode="ľ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-319"
+ unicode="Ŀ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-320"
+ unicode="ŀ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-321"
+ unicode="Ł"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-322"
+ unicode="ł"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-323"
+ unicode="Ń"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-324"
+ unicode="ń"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-325"
+ unicode="Ņ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-326"
+ unicode="ņ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-327"
+ unicode="Ň"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-328"
+ unicode="ň"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-329"
+ unicode="ʼn"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-330"
+ unicode="Ŋ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-331"
+ unicode="ŋ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-332"
+ unicode="Ō"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-333"
+ unicode="ō"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-334"
+ unicode="Ŏ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-335"
+ unicode="ŏ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-336"
+ unicode="Ő"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-337"
+ unicode="ő"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-338"
+ unicode="Œ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-339"
+ unicode="œ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-340"
+ unicode="Ŕ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-341"
+ unicode="ŕ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-342"
+ unicode="Ŗ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-343"
+ unicode="ŗ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-344"
+ unicode="Ř"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-345"
+ unicode="ř"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-346"
+ unicode="Ś"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-347"
+ unicode="ś"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-348"
+ unicode="Ŝ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-349"
+ unicode="ŝ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-350"
+ unicode="Ş"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-351"
+ unicode="ş"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-352"
+ unicode="Š"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-353"
+ unicode="š"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-354"
+ unicode="Ţ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-355"
+ unicode="ţ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-356"
+ unicode="Ť"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-357"
+ unicode="ť"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-358"
+ unicode="Ŧ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-359"
+ unicode="ŧ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-360"
+ unicode="Ũ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-361"
+ unicode="ũ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-362"
+ unicode="Ū"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-363"
+ unicode="ū"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-364"
+ unicode="Ŭ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-365"
+ unicode="ŭ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-366"
+ unicode="Ů"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-367"
+ unicode="ů"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-368"
+ unicode="Ű"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-369"
+ unicode="ű"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-370"
+ unicode="Ų"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-371"
+ unicode="ų"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-372"
+ unicode="Ŵ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-373"
+ unicode="ŵ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-374"
+ unicode="Ŷ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-375"
+ unicode="ŷ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-376"
+ unicode="Ÿ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-377"
+ unicode="Ź"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-378"
+ unicode="ź"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-379"
+ unicode="Ż"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-380"
+ unicode="ż"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-381"
+ unicode="Ž"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-382"
+ unicode="ž"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-383"
+ unicode="ſ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-384"
+ unicode="ƀ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-385"
+ unicode="Ɓ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-386"
+ unicode="Ƃ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-387"
+ unicode="ƃ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-388"
+ unicode="Ƅ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-389"
+ unicode="ƅ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-390"
+ unicode="Ɔ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-391"
+ unicode="Ƈ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-392"
+ unicode="ƈ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-393"
+ unicode="Ɖ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-394"
+ unicode="Ɗ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-395"
+ unicode="Ƌ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-396"
+ unicode="ƌ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-397"
+ unicode="ƍ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-398"
+ unicode="Ǝ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-399"
+ unicode="Ə"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-400"
+ unicode="Ɛ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-401"
+ unicode="Ƒ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-402"
+ unicode="ƒ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-403"
+ unicode="Ɠ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-404"
+ unicode="Ɣ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-405"
+ unicode="ƕ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-406"
+ unicode="Ɩ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-407"
+ unicode="Ɨ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-408"
+ unicode="Ƙ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-409"
+ unicode="ƙ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-410"
+ unicode="ƚ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-411"
+ unicode="ƛ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-412"
+ unicode="Ɯ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-413"
+ unicode="Ɲ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-414"
+ unicode="ƞ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-415"
+ unicode="Ɵ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-416"
+ unicode="Ơ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-417"
+ unicode="ơ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-418"
+ unicode="Ƣ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-419"
+ unicode="ƣ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-420"
+ unicode="Ƥ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-421"
+ unicode="ƥ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-422"
+ unicode="Ʀ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-423"
+ unicode="Ƨ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-424"
+ unicode="ƨ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-425"
+ unicode="Ʃ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-426"
+ unicode="ƪ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-427"
+ unicode="ƫ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-428"
+ unicode="Ƭ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-429"
+ unicode="ƭ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-430"
+ unicode="Ʈ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-431"
+ unicode="Ư"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-432"
+ unicode="ư"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-433"
+ unicode="Ʊ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-434"
+ unicode="Ʋ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-435"
+ unicode="Ƴ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-436"
+ unicode="ƴ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-437"
+ unicode="Ƶ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-438"
+ unicode="ƶ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-439"
+ unicode="Ʒ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-440"
+ unicode="Ƹ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-441"
+ unicode="ƹ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-442"
+ unicode="ƺ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-443"
+ unicode="ƻ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-444"
+ unicode="Ƽ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-445"
+ unicode="ƽ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-446"
+ unicode="ƾ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-447"
+ unicode="ƿ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-448"
+ unicode="ǀ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-449"
+ unicode="ǁ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-450"
+ unicode="ǂ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-451"
+ unicode="ǃ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-452"
+ unicode="DŽ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-453"
+ unicode="Dž"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-454"
+ unicode="dž"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-455"
+ unicode="LJ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-456"
+ unicode="Lj"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-457"
+ unicode="lj"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-458"
+ unicode="NJ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-459"
+ unicode="Nj"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-460"
+ unicode="nj"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-461"
+ unicode="Ǎ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-462"
+ unicode="ǎ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-463"
+ unicode="Ǐ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-464"
+ unicode="ǐ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-465"
+ unicode="Ǒ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-466"
+ unicode="ǒ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-467"
+ unicode="Ǔ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-468"
+ unicode="ǔ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-469"
+ unicode="Ǖ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-470"
+ unicode="ǖ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-471"
+ unicode="Ǘ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-472"
+ unicode="ǘ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-473"
+ unicode="Ǚ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-474"
+ unicode="ǚ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-475"
+ unicode="Ǜ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-476"
+ unicode="ǜ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-477"
+ unicode="ǝ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-478"
+ unicode="Ǟ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-479"
+ unicode="ǟ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-480"
+ unicode="Ǡ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-481"
+ unicode="ǡ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-482"
+ unicode="Ǣ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-483"
+ unicode="ǣ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-484"
+ unicode="Ǥ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-485"
+ unicode="ǥ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-486"
+ unicode="Ǧ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-487"
+ unicode="ǧ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-488"
+ unicode="Ǩ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-489"
+ unicode="ǩ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-490"
+ unicode="Ǫ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-491"
+ unicode="ǫ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-492"
+ unicode="Ǭ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-493"
+ unicode="ǭ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-494"
+ unicode="Ǯ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-495"
+ unicode="ǯ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-496"
+ unicode="ǰ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-497"
+ unicode="DZ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-498"
+ unicode="Dz"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-499"
+ unicode="dz"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-500"
+ unicode="Ǵ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-501"
+ unicode="ǵ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-502"
+ unicode="Ƕ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-503"
+ unicode="Ƿ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-504"
+ unicode="Ǹ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-505"
+ unicode="ǹ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-506"
+ unicode="Ǻ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-507"
+ unicode="ǻ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-508"
+ unicode="Ǽ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-509"
+ unicode="ǽ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-510"
+ unicode="Ǿ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-511"
+ unicode="ǿ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-512"
+ unicode="Ȁ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-513"
+ unicode="ȁ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-514"
+ unicode="Ȃ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-515"
+ unicode="ȃ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-516"
+ unicode="Ȅ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-517"
+ unicode="ȅ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-518"
+ unicode="Ȇ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-519"
+ unicode="ȇ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-520"
+ unicode="Ȉ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-521"
+ unicode="ȉ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-522"
+ unicode="Ȋ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-523"
+ unicode="ȋ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-524"
+ unicode="Ȍ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-525"
+ unicode="ȍ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-526"
+ unicode="Ȏ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-527"
+ unicode="ȏ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-528"
+ unicode="Ȑ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-529"
+ unicode="ȑ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-530"
+ unicode="Ȓ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-531"
+ unicode="ȓ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-532"
+ unicode="Ȕ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-533"
+ unicode="ȕ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-534"
+ unicode="Ȗ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-535"
+ unicode="ȗ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-536"
+ unicode="Ș"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-537"
+ unicode="ș"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-538"
+ unicode="Ț"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-539"
+ unicode="ț"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-540"
+ unicode="Ȝ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-541"
+ unicode="ȝ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-542"
+ unicode="Ȟ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-543"
+ unicode="ȟ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-544"
+ unicode="Ƞ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-545"
+ unicode="ȡ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-546"
+ unicode="Ȣ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-547"
+ unicode="ȣ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-548"
+ unicode="Ȥ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-549"
+ unicode="ȥ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-550"
+ unicode="Ȧ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-551"
+ unicode="ȧ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-552"
+ unicode="Ȩ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-553"
+ unicode="ȩ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-554"
+ unicode="Ȫ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-555"
+ unicode="ȫ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-556"
+ unicode="Ȭ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-557"
+ unicode="ȭ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-558"
+ unicode="Ȯ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-559"
+ unicode="ȯ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-560"
+ unicode="Ȱ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-561"
+ unicode="ȱ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-562"
+ unicode="Ȳ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-563"
+ unicode="ȳ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-564"
+ unicode="ȴ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-565"
+ unicode="ȵ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-566"
+ unicode="ȶ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-567"
+ unicode="ȷ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-568"
+ unicode="ȸ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-569"
+ unicode="ȹ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-570"
+ unicode="Ⱥ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-571"
+ unicode="Ȼ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-572"
+ unicode="ȼ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-573"
+ unicode="Ƚ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-574"
+ unicode="Ⱦ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-575"
+ unicode="ȿ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-576"
+ unicode="ɀ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-577"
+ unicode="Ɂ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-578"
+ unicode="ɂ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-579"
+ unicode="Ƀ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-580"
+ unicode="Ʉ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-581"
+ unicode="Ʌ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-582"
+ unicode="Ɇ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-583"
+ unicode="ɇ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-584"
+ unicode="Ɉ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-585"
+ unicode="ɉ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-586"
+ unicode="Ɋ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-587"
+ unicode="ɋ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-588"
+ unicode="Ɍ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-589"
+ unicode="ɍ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-590"
+ unicode="Ɏ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-591"
+ unicode="ɏ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-592"
+ unicode="ɐ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-593"
+ unicode="ɑ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-594"
+ unicode="ɒ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-595"
+ unicode="ɓ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-596"
+ unicode="ɔ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-597"
+ unicode="ɕ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-598"
+ unicode="ɖ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-599"
+ unicode="ɗ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-600"
+ unicode="ɘ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-601"
+ unicode="ə"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-602"
+ unicode="ɚ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-603"
+ unicode="ɛ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-604"
+ unicode="ɜ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-605"
+ unicode="ɝ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-606"
+ unicode="ɞ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-607"
+ unicode="ɟ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-608"
+ unicode="ɠ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-609"
+ unicode="ɡ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-610"
+ unicode="ɢ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-611"
+ unicode="ɣ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-612"
+ unicode="ɤ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-613"
+ unicode="ɥ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-614"
+ unicode="ɦ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-615"
+ unicode="ɧ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-616"
+ unicode="ɨ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-617"
+ unicode="ɩ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-618"
+ unicode="ɪ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-619"
+ unicode="ɫ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-620"
+ unicode="ɬ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-621"
+ unicode="ɭ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-622"
+ unicode="ɮ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-623"
+ unicode="ɯ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-624"
+ unicode="ɰ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-625"
+ unicode="ɱ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-626"
+ unicode="ɲ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-627"
+ unicode="ɳ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-628"
+ unicode="ɴ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-629"
+ unicode="ɵ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-630"
+ unicode="ɶ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-631"
+ unicode="ɷ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-632"
+ unicode="ɸ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-633"
+ unicode="ɹ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-634"
+ unicode="ɺ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-635"
+ unicode="ɻ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-636"
+ unicode="ɼ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-637"
+ unicode="ɽ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-638"
+ unicode="ɾ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-639"
+ unicode="ɿ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-640"
+ unicode="ʀ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-641"
+ unicode="ʁ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-642"
+ unicode="ʂ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-643"
+ unicode="ʃ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-644"
+ unicode="ʄ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-645"
+ unicode="ʅ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-646"
+ unicode="ʆ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-647"
+ unicode="ʇ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-648"
+ unicode="ʈ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-649"
+ unicode="ʉ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-650"
+ unicode="ʊ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-651"
+ unicode="ʋ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-652"
+ unicode="ʌ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-653"
+ unicode="ʍ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-654"
+ unicode="ʎ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-655"
+ unicode="ʏ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-656"
+ unicode="ʐ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-657"
+ unicode="ʑ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-658"
+ unicode="ʒ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-659"
+ unicode="ʓ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-660"
+ unicode="ʔ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-661"
+ unicode="ʕ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-662"
+ unicode="ʖ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-663"
+ unicode="ʗ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-664"
+ unicode="ʘ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-665"
+ unicode="ʙ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-666"
+ unicode="ʚ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-667"
+ unicode="ʛ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-668"
+ unicode="ʜ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-669"
+ unicode="ʝ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-670"
+ unicode="ʞ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-671"
+ unicode="ʟ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-672"
+ unicode="ʠ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-673"
+ unicode="ʡ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-674"
+ unicode="ʢ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-675"
+ unicode="ʣ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-676"
+ unicode="ʤ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-677"
+ unicode="ʥ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-678"
+ unicode="ʦ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-679"
+ unicode="ʧ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-680"
+ unicode="ʨ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-681"
+ unicode="ʩ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-682"
+ unicode="ʪ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-683"
+ unicode="ʫ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-684"
+ unicode="ʬ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-685"
+ unicode="ʭ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-686"
+ unicode="ʮ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-687"
+ unicode="ʯ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-688"
+ unicode="ʰ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-689"
+ unicode="ʱ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-690"
+ unicode="ʲ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-691"
+ unicode="ʳ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-692"
+ unicode="ʴ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-693"
+ unicode="ʵ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-694"
+ unicode="ʶ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-695"
+ unicode="ʷ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-696"
+ unicode="ʸ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-697"
+ unicode="ʹ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-698"
+ unicode="ʺ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-699"
+ unicode="ʻ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-700"
+ unicode="ʼ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-701"
+ unicode="ʽ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-702"
+ unicode="ʾ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-703"
+ unicode="ʿ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-704"
+ unicode="ˀ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-705"
+ unicode="ˁ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-706"
+ unicode="˂"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-707"
+ unicode="˃"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-708"
+ unicode="˄"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-709"
+ unicode="˅"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-710"
+ unicode="ˆ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-711"
+ unicode="ˇ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-712"
+ unicode="ˈ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-713"
+ unicode="ˉ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-714"
+ unicode="ˊ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-715"
+ unicode="ˋ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-716"
+ unicode="ˌ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-717"
+ unicode="ˍ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-718"
+ unicode="ˎ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-719"
+ unicode="ˏ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-720"
+ unicode="ː"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-721"
+ unicode="ˑ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-722"
+ unicode="˒"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-723"
+ unicode="˓"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-724"
+ unicode="˔"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-725"
+ unicode="˕"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-726"
+ unicode="˖"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-727"
+ unicode="˗"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-728"
+ unicode="˘"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-729"
+ unicode="˙"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-730"
+ unicode="˚"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-731"
+ unicode="˛"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-732"
+ unicode="˜"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-733"
+ unicode="˝"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-734"
+ unicode="˞"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-735"
+ unicode="˟"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-736"
+ unicode="ˠ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-737"
+ unicode="ˡ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-738"
+ unicode="ˢ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-739"
+ unicode="ˣ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-740"
+ unicode="ˤ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-741"
+ unicode="˥"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-742"
+ unicode="˦"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-743"
+ unicode="˧"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-744"
+ unicode="˨"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-745"
+ unicode="˩"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-746"
+ unicode="˪"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-747"
+ unicode="˫"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-748"
+ unicode="ˬ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-749"
+ unicode="˭"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-750"
+ unicode="ˮ"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-751"
+ unicode="˯"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-752"
+ unicode="˰"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-753"
+ unicode="˱"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-754"
+ unicode="˲"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-755"
+ unicode="˳"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-756"
+ unicode="˴"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-757"
+ unicode="˵"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-758"
+ unicode="˶"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-759"
+ unicode="˷"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-760"
+ unicode="˸"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-761"
+ unicode="˹"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-762"
+ unicode="˺"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-763"
+ unicode="˻"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-764"
+ unicode="˼"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-765"
+ unicode="˽"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-766"
+ unicode="˾"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ <glyph glyph-name="disc-767"
+ unicode="˿"
+ horiz-adv-x="140" d=" M15 250C15 219.6243387593064 39.6243387593064 195 70 195C100.3756612406937 195 125 219.6243387593064 125 250C125 280.3756612406937 100.3756612406937 305 70 305C39.6243387593064 305 15 280.3756612406937 15 250z" />
+ </font>
+</defs>
+</svg>
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-disc.ttf b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-disc.ttf
new file mode 100644
index 0000000..566a358
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-disc.ttf differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-disc.woff b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-disc.woff
new file mode 100644
index 0000000..160d289
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-disc.woff differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-square.eot b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-square.eot
new file mode 100644
index 0000000..25ec7c6
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-square.eot differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-square.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-square.svg
new file mode 100644
index 0000000..dd80a74
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-square.svg
@@ -0,0 +1,2316 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg xmlns="http://www.w3.org/2000/svg">
+<defs>
+ <font id="text-security-square" horiz-adv-x="300">
+ <font-face font-family="text-security-square"
+ units-per-em="500" ascent="500"
+ descent="0" />
+ <missing-glyph horiz-adv-x="0" />
+ <glyph glyph-name="square"
+ unicode="�"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-1"
+ unicode=""
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-2"
+ unicode=""
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-3"
+ unicode=""
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-4"
+ unicode=""
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-5"
+ unicode=""
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-6"
+ unicode=""
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-7"
+ unicode=""
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-8"
+ unicode=""
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-9"
+ unicode="	"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-10"
+ unicode="
"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-11"
+ unicode=""
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-12"
+ unicode=""
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-13"
+ unicode="
"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-14"
+ unicode=""
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-15"
+ unicode=""
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-16"
+ unicode=""
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-17"
+ unicode=""
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-18"
+ unicode=""
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-19"
+ unicode=""
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-20"
+ unicode=""
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-21"
+ unicode=""
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-22"
+ unicode=""
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-23"
+ unicode=""
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-24"
+ unicode=""
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-25"
+ unicode=""
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-26"
+ unicode=""
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-27"
+ unicode=""
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-28"
+ unicode=""
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-29"
+ unicode=""
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-30"
+ unicode=""
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-31"
+ unicode=""
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-32"
+ unicode=" "
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-33"
+ unicode="!"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-34"
+ unicode="""
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-35"
+ unicode="#"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-36"
+ unicode="$"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-37"
+ unicode="%"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-38"
+ unicode="&"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-39"
+ unicode="'"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-40"
+ unicode="("
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-41"
+ unicode=")"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-42"
+ unicode="*"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-43"
+ unicode="+"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-44"
+ unicode=","
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-45"
+ unicode="-"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-46"
+ unicode="."
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-47"
+ unicode="/"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-48"
+ unicode="0"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-49"
+ unicode="1"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-50"
+ unicode="2"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-51"
+ unicode="3"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-52"
+ unicode="4"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-53"
+ unicode="5"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-54"
+ unicode="6"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-55"
+ unicode="7"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-56"
+ unicode="8"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-57"
+ unicode="9"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-58"
+ unicode=":"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-59"
+ unicode=";"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-60"
+ unicode="<"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-61"
+ unicode="="
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-62"
+ unicode=">"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-63"
+ unicode="?"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-64"
+ unicode="@"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-65"
+ unicode="A"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-66"
+ unicode="B"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-67"
+ unicode="C"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-68"
+ unicode="D"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-69"
+ unicode="E"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-70"
+ unicode="F"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-71"
+ unicode="G"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-72"
+ unicode="H"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-73"
+ unicode="I"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-74"
+ unicode="J"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-75"
+ unicode="K"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-76"
+ unicode="L"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-77"
+ unicode="M"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-78"
+ unicode="N"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-79"
+ unicode="O"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-80"
+ unicode="P"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-81"
+ unicode="Q"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-82"
+ unicode="R"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-83"
+ unicode="S"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-84"
+ unicode="T"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-85"
+ unicode="U"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-86"
+ unicode="V"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-87"
+ unicode="W"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-88"
+ unicode="X"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-89"
+ unicode="Y"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-90"
+ unicode="Z"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-91"
+ unicode="["
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-92"
+ unicode="\"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-93"
+ unicode="]"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-94"
+ unicode="^"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-95"
+ unicode="_"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-96"
+ unicode="`"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-97"
+ unicode="a"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-98"
+ unicode="b"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-99"
+ unicode="c"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-100"
+ unicode="d"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-101"
+ unicode="e"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-102"
+ unicode="f"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-103"
+ unicode="g"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-104"
+ unicode="h"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-105"
+ unicode="i"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-106"
+ unicode="j"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-107"
+ unicode="k"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-108"
+ unicode="l"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-109"
+ unicode="m"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-110"
+ unicode="n"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-111"
+ unicode="o"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-112"
+ unicode="p"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-113"
+ unicode="q"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-114"
+ unicode="r"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-115"
+ unicode="s"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-116"
+ unicode="t"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-117"
+ unicode="u"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-118"
+ unicode="v"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-119"
+ unicode="w"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-120"
+ unicode="x"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-121"
+ unicode="y"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-122"
+ unicode="z"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-123"
+ unicode="{"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-124"
+ unicode="|"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-125"
+ unicode="}"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-126"
+ unicode="~"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-127"
+ unicode=""
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-128"
+ unicode="€"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-129"
+ unicode=""
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-130"
+ unicode="‚"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-131"
+ unicode="ƒ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-132"
+ unicode="„"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-133"
+ unicode="…"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-134"
+ unicode="†"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-135"
+ unicode="‡"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-136"
+ unicode="ˆ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-137"
+ unicode="‰"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-138"
+ unicode="Š"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-139"
+ unicode="‹"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-140"
+ unicode="Œ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-141"
+ unicode=""
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-142"
+ unicode="Ž"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-143"
+ unicode=""
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-144"
+ unicode=""
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-145"
+ unicode="‘"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-146"
+ unicode="’"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-147"
+ unicode="“"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-148"
+ unicode="”"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-149"
+ unicode="•"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-150"
+ unicode="–"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-151"
+ unicode="—"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-152"
+ unicode="˜"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-153"
+ unicode="™"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-154"
+ unicode="š"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-155"
+ unicode="›"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-156"
+ unicode="œ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-157"
+ unicode=""
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-158"
+ unicode="ž"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-159"
+ unicode="Ÿ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-160"
+ unicode=" "
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-161"
+ unicode="¡"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-162"
+ unicode="¢"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-163"
+ unicode="£"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-164"
+ unicode="¤"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-165"
+ unicode="¥"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-166"
+ unicode="¦"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-167"
+ unicode="§"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-168"
+ unicode="¨"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-169"
+ unicode="©"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-170"
+ unicode="ª"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-171"
+ unicode="«"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-172"
+ unicode="¬"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-173"
+ unicode="­"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-174"
+ unicode="®"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-175"
+ unicode="¯"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-176"
+ unicode="°"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-177"
+ unicode="±"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-178"
+ unicode="²"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-179"
+ unicode="³"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-180"
+ unicode="´"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-181"
+ unicode="µ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-182"
+ unicode="¶"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-183"
+ unicode="·"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-184"
+ unicode="¸"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-185"
+ unicode="¹"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-186"
+ unicode="º"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-187"
+ unicode="»"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-188"
+ unicode="¼"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-189"
+ unicode="½"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-190"
+ unicode="¾"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-191"
+ unicode="¿"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-192"
+ unicode="À"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-193"
+ unicode="Á"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-194"
+ unicode="Â"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-195"
+ unicode="Ã"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-196"
+ unicode="Ä"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-197"
+ unicode="Å"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-198"
+ unicode="Æ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-199"
+ unicode="Ç"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-200"
+ unicode="È"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-201"
+ unicode="É"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-202"
+ unicode="Ê"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-203"
+ unicode="Ë"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-204"
+ unicode="Ì"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-205"
+ unicode="Í"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-206"
+ unicode="Î"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-207"
+ unicode="Ï"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-208"
+ unicode="Ð"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-209"
+ unicode="Ñ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-210"
+ unicode="Ò"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-211"
+ unicode="Ó"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-212"
+ unicode="Ô"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-213"
+ unicode="Õ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-214"
+ unicode="Ö"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-215"
+ unicode="×"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-216"
+ unicode="Ø"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-217"
+ unicode="Ù"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-218"
+ unicode="Ú"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-219"
+ unicode="Û"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-220"
+ unicode="Ü"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-221"
+ unicode="Ý"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-222"
+ unicode="Þ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-223"
+ unicode="ß"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-224"
+ unicode="à"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-225"
+ unicode="á"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-226"
+ unicode="â"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-227"
+ unicode="ã"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-228"
+ unicode="ä"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-229"
+ unicode="å"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-230"
+ unicode="æ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-231"
+ unicode="ç"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-232"
+ unicode="è"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-233"
+ unicode="é"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-234"
+ unicode="ê"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-235"
+ unicode="ë"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-236"
+ unicode="ì"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-237"
+ unicode="í"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-238"
+ unicode="î"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-239"
+ unicode="ï"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-240"
+ unicode="ð"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-241"
+ unicode="ñ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-242"
+ unicode="ò"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-243"
+ unicode="ó"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-244"
+ unicode="ô"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-245"
+ unicode="õ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-246"
+ unicode="ö"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-247"
+ unicode="÷"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-248"
+ unicode="ø"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-249"
+ unicode="ù"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-250"
+ unicode="ú"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-251"
+ unicode="û"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-252"
+ unicode="ü"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-253"
+ unicode="ý"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-254"
+ unicode="þ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-255"
+ unicode="ÿ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-256"
+ unicode="Ā"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-257"
+ unicode="ā"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-258"
+ unicode="Ă"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-259"
+ unicode="ă"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-260"
+ unicode="Ą"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-261"
+ unicode="ą"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-262"
+ unicode="Ć"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-263"
+ unicode="ć"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-264"
+ unicode="Ĉ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-265"
+ unicode="ĉ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-266"
+ unicode="Ċ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-267"
+ unicode="ċ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-268"
+ unicode="Č"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-269"
+ unicode="č"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-270"
+ unicode="Ď"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-271"
+ unicode="ď"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-272"
+ unicode="Đ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-273"
+ unicode="đ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-274"
+ unicode="Ē"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-275"
+ unicode="ē"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-276"
+ unicode="Ĕ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-277"
+ unicode="ĕ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-278"
+ unicode="Ė"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-279"
+ unicode="ė"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-280"
+ unicode="Ę"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-281"
+ unicode="ę"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-282"
+ unicode="Ě"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-283"
+ unicode="ě"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-284"
+ unicode="Ĝ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-285"
+ unicode="ĝ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-286"
+ unicode="Ğ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-287"
+ unicode="ğ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-288"
+ unicode="Ġ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-289"
+ unicode="ġ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-290"
+ unicode="Ģ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-291"
+ unicode="ģ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-292"
+ unicode="Ĥ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-293"
+ unicode="ĥ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-294"
+ unicode="Ħ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-295"
+ unicode="ħ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-296"
+ unicode="Ĩ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-297"
+ unicode="ĩ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-298"
+ unicode="Ī"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-299"
+ unicode="ī"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-300"
+ unicode="Ĭ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-301"
+ unicode="ĭ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-302"
+ unicode="Į"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-303"
+ unicode="į"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-304"
+ unicode="İ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-305"
+ unicode="ı"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-306"
+ unicode="IJ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-307"
+ unicode="ij"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-308"
+ unicode="Ĵ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-309"
+ unicode="ĵ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-310"
+ unicode="Ķ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-311"
+ unicode="ķ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-312"
+ unicode="ĸ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-313"
+ unicode="Ĺ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-314"
+ unicode="ĺ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-315"
+ unicode="Ļ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-316"
+ unicode="ļ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-317"
+ unicode="Ľ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-318"
+ unicode="ľ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-319"
+ unicode="Ŀ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-320"
+ unicode="ŀ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-321"
+ unicode="Ł"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-322"
+ unicode="ł"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-323"
+ unicode="Ń"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-324"
+ unicode="ń"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-325"
+ unicode="Ņ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-326"
+ unicode="ņ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-327"
+ unicode="Ň"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-328"
+ unicode="ň"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-329"
+ unicode="ʼn"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-330"
+ unicode="Ŋ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-331"
+ unicode="ŋ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-332"
+ unicode="Ō"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-333"
+ unicode="ō"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-334"
+ unicode="Ŏ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-335"
+ unicode="ŏ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-336"
+ unicode="Ő"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-337"
+ unicode="ő"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-338"
+ unicode="Œ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-339"
+ unicode="œ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-340"
+ unicode="Ŕ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-341"
+ unicode="ŕ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-342"
+ unicode="Ŗ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-343"
+ unicode="ŗ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-344"
+ unicode="Ř"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-345"
+ unicode="ř"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-346"
+ unicode="Ś"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-347"
+ unicode="ś"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-348"
+ unicode="Ŝ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-349"
+ unicode="ŝ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-350"
+ unicode="Ş"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-351"
+ unicode="ş"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-352"
+ unicode="Š"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-353"
+ unicode="š"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-354"
+ unicode="Ţ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-355"
+ unicode="ţ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-356"
+ unicode="Ť"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-357"
+ unicode="ť"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-358"
+ unicode="Ŧ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-359"
+ unicode="ŧ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-360"
+ unicode="Ũ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-361"
+ unicode="ũ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-362"
+ unicode="Ū"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-363"
+ unicode="ū"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-364"
+ unicode="Ŭ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-365"
+ unicode="ŭ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-366"
+ unicode="Ů"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-367"
+ unicode="ů"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-368"
+ unicode="Ű"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-369"
+ unicode="ű"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-370"
+ unicode="Ų"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-371"
+ unicode="ų"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-372"
+ unicode="Ŵ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-373"
+ unicode="ŵ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-374"
+ unicode="Ŷ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-375"
+ unicode="ŷ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-376"
+ unicode="Ÿ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-377"
+ unicode="Ź"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-378"
+ unicode="ź"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-379"
+ unicode="Ż"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-380"
+ unicode="ż"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-381"
+ unicode="Ž"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-382"
+ unicode="ž"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-383"
+ unicode="ſ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-384"
+ unicode="ƀ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-385"
+ unicode="Ɓ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-386"
+ unicode="Ƃ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-387"
+ unicode="ƃ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-388"
+ unicode="Ƅ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-389"
+ unicode="ƅ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-390"
+ unicode="Ɔ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-391"
+ unicode="Ƈ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-392"
+ unicode="ƈ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-393"
+ unicode="Ɖ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-394"
+ unicode="Ɗ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-395"
+ unicode="Ƌ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-396"
+ unicode="ƌ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-397"
+ unicode="ƍ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-398"
+ unicode="Ǝ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-399"
+ unicode="Ə"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-400"
+ unicode="Ɛ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-401"
+ unicode="Ƒ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-402"
+ unicode="ƒ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-403"
+ unicode="Ɠ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-404"
+ unicode="Ɣ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-405"
+ unicode="ƕ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-406"
+ unicode="Ɩ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-407"
+ unicode="Ɨ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-408"
+ unicode="Ƙ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-409"
+ unicode="ƙ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-410"
+ unicode="ƚ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-411"
+ unicode="ƛ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-412"
+ unicode="Ɯ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-413"
+ unicode="Ɲ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-414"
+ unicode="ƞ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-415"
+ unicode="Ɵ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-416"
+ unicode="Ơ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-417"
+ unicode="ơ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-418"
+ unicode="Ƣ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-419"
+ unicode="ƣ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-420"
+ unicode="Ƥ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-421"
+ unicode="ƥ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-422"
+ unicode="Ʀ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-423"
+ unicode="Ƨ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-424"
+ unicode="ƨ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-425"
+ unicode="Ʃ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-426"
+ unicode="ƪ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-427"
+ unicode="ƫ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-428"
+ unicode="Ƭ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-429"
+ unicode="ƭ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-430"
+ unicode="Ʈ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-431"
+ unicode="Ư"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-432"
+ unicode="ư"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-433"
+ unicode="Ʊ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-434"
+ unicode="Ʋ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-435"
+ unicode="Ƴ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-436"
+ unicode="ƴ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-437"
+ unicode="Ƶ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-438"
+ unicode="ƶ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-439"
+ unicode="Ʒ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-440"
+ unicode="Ƹ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-441"
+ unicode="ƹ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-442"
+ unicode="ƺ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-443"
+ unicode="ƻ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-444"
+ unicode="Ƽ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-445"
+ unicode="ƽ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-446"
+ unicode="ƾ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-447"
+ unicode="ƿ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-448"
+ unicode="ǀ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-449"
+ unicode="ǁ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-450"
+ unicode="ǂ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-451"
+ unicode="ǃ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-452"
+ unicode="DŽ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-453"
+ unicode="Dž"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-454"
+ unicode="dž"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-455"
+ unicode="LJ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-456"
+ unicode="Lj"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-457"
+ unicode="lj"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-458"
+ unicode="NJ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-459"
+ unicode="Nj"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-460"
+ unicode="nj"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-461"
+ unicode="Ǎ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-462"
+ unicode="ǎ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-463"
+ unicode="Ǐ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-464"
+ unicode="ǐ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-465"
+ unicode="Ǒ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-466"
+ unicode="ǒ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-467"
+ unicode="Ǔ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-468"
+ unicode="ǔ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-469"
+ unicode="Ǖ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-470"
+ unicode="ǖ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-471"
+ unicode="Ǘ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-472"
+ unicode="ǘ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-473"
+ unicode="Ǚ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-474"
+ unicode="ǚ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-475"
+ unicode="Ǜ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-476"
+ unicode="ǜ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-477"
+ unicode="ǝ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-478"
+ unicode="Ǟ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-479"
+ unicode="ǟ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-480"
+ unicode="Ǡ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-481"
+ unicode="ǡ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-482"
+ unicode="Ǣ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-483"
+ unicode="ǣ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-484"
+ unicode="Ǥ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-485"
+ unicode="ǥ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-486"
+ unicode="Ǧ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-487"
+ unicode="ǧ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-488"
+ unicode="Ǩ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-489"
+ unicode="ǩ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-490"
+ unicode="Ǫ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-491"
+ unicode="ǫ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-492"
+ unicode="Ǭ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-493"
+ unicode="ǭ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-494"
+ unicode="Ǯ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-495"
+ unicode="ǯ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-496"
+ unicode="ǰ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-497"
+ unicode="DZ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-498"
+ unicode="Dz"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-499"
+ unicode="dz"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-500"
+ unicode="Ǵ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-501"
+ unicode="ǵ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-502"
+ unicode="Ƕ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-503"
+ unicode="Ƿ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-504"
+ unicode="Ǹ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-505"
+ unicode="ǹ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-506"
+ unicode="Ǻ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-507"
+ unicode="ǻ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-508"
+ unicode="Ǽ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-509"
+ unicode="ǽ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-510"
+ unicode="Ǿ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-511"
+ unicode="ǿ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-512"
+ unicode="Ȁ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-513"
+ unicode="ȁ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-514"
+ unicode="Ȃ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-515"
+ unicode="ȃ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-516"
+ unicode="Ȅ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-517"
+ unicode="ȅ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-518"
+ unicode="Ȇ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-519"
+ unicode="ȇ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-520"
+ unicode="Ȉ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-521"
+ unicode="ȉ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-522"
+ unicode="Ȋ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-523"
+ unicode="ȋ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-524"
+ unicode="Ȍ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-525"
+ unicode="ȍ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-526"
+ unicode="Ȏ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-527"
+ unicode="ȏ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-528"
+ unicode="Ȑ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-529"
+ unicode="ȑ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-530"
+ unicode="Ȓ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-531"
+ unicode="ȓ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-532"
+ unicode="Ȕ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-533"
+ unicode="ȕ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-534"
+ unicode="Ȗ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-535"
+ unicode="ȗ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-536"
+ unicode="Ș"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-537"
+ unicode="ș"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-538"
+ unicode="Ț"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-539"
+ unicode="ț"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-540"
+ unicode="Ȝ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-541"
+ unicode="ȝ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-542"
+ unicode="Ȟ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-543"
+ unicode="ȟ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-544"
+ unicode="Ƞ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-545"
+ unicode="ȡ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-546"
+ unicode="Ȣ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-547"
+ unicode="ȣ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-548"
+ unicode="Ȥ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-549"
+ unicode="ȥ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-550"
+ unicode="Ȧ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-551"
+ unicode="ȧ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-552"
+ unicode="Ȩ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-553"
+ unicode="ȩ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-554"
+ unicode="Ȫ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-555"
+ unicode="ȫ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-556"
+ unicode="Ȭ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-557"
+ unicode="ȭ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-558"
+ unicode="Ȯ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-559"
+ unicode="ȯ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-560"
+ unicode="Ȱ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-561"
+ unicode="ȱ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-562"
+ unicode="Ȳ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-563"
+ unicode="ȳ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-564"
+ unicode="ȴ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-565"
+ unicode="ȵ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-566"
+ unicode="ȶ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-567"
+ unicode="ȷ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-568"
+ unicode="ȸ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-569"
+ unicode="ȹ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-570"
+ unicode="Ⱥ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-571"
+ unicode="Ȼ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-572"
+ unicode="ȼ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-573"
+ unicode="Ƚ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-574"
+ unicode="Ⱦ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-575"
+ unicode="ȿ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-576"
+ unicode="ɀ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-577"
+ unicode="Ɂ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-578"
+ unicode="ɂ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-579"
+ unicode="Ƀ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-580"
+ unicode="Ʉ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-581"
+ unicode="Ʌ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-582"
+ unicode="Ɇ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-583"
+ unicode="ɇ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-584"
+ unicode="Ɉ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-585"
+ unicode="ɉ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-586"
+ unicode="Ɋ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-587"
+ unicode="ɋ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-588"
+ unicode="Ɍ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-589"
+ unicode="ɍ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-590"
+ unicode="Ɏ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-591"
+ unicode="ɏ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-592"
+ unicode="ɐ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-593"
+ unicode="ɑ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-594"
+ unicode="ɒ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-595"
+ unicode="ɓ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-596"
+ unicode="ɔ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-597"
+ unicode="ɕ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-598"
+ unicode="ɖ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-599"
+ unicode="ɗ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-600"
+ unicode="ɘ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-601"
+ unicode="ə"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-602"
+ unicode="ɚ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-603"
+ unicode="ɛ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-604"
+ unicode="ɜ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-605"
+ unicode="ɝ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-606"
+ unicode="ɞ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-607"
+ unicode="ɟ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-608"
+ unicode="ɠ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-609"
+ unicode="ɡ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-610"
+ unicode="ɢ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-611"
+ unicode="ɣ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-612"
+ unicode="ɤ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-613"
+ unicode="ɥ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-614"
+ unicode="ɦ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-615"
+ unicode="ɧ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-616"
+ unicode="ɨ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-617"
+ unicode="ɩ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-618"
+ unicode="ɪ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-619"
+ unicode="ɫ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-620"
+ unicode="ɬ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-621"
+ unicode="ɭ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-622"
+ unicode="ɮ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-623"
+ unicode="ɯ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-624"
+ unicode="ɰ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-625"
+ unicode="ɱ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-626"
+ unicode="ɲ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-627"
+ unicode="ɳ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-628"
+ unicode="ɴ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-629"
+ unicode="ɵ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-630"
+ unicode="ɶ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-631"
+ unicode="ɷ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-632"
+ unicode="ɸ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-633"
+ unicode="ɹ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-634"
+ unicode="ɺ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-635"
+ unicode="ɻ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-636"
+ unicode="ɼ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-637"
+ unicode="ɽ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-638"
+ unicode="ɾ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-639"
+ unicode="ɿ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-640"
+ unicode="ʀ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-641"
+ unicode="ʁ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-642"
+ unicode="ʂ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-643"
+ unicode="ʃ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-644"
+ unicode="ʄ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-645"
+ unicode="ʅ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-646"
+ unicode="ʆ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-647"
+ unicode="ʇ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-648"
+ unicode="ʈ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-649"
+ unicode="ʉ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-650"
+ unicode="ʊ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-651"
+ unicode="ʋ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-652"
+ unicode="ʌ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-653"
+ unicode="ʍ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-654"
+ unicode="ʎ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-655"
+ unicode="ʏ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-656"
+ unicode="ʐ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-657"
+ unicode="ʑ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-658"
+ unicode="ʒ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-659"
+ unicode="ʓ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-660"
+ unicode="ʔ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-661"
+ unicode="ʕ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-662"
+ unicode="ʖ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-663"
+ unicode="ʗ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-664"
+ unicode="ʘ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-665"
+ unicode="ʙ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-666"
+ unicode="ʚ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-667"
+ unicode="ʛ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-668"
+ unicode="ʜ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-669"
+ unicode="ʝ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-670"
+ unicode="ʞ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-671"
+ unicode="ʟ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-672"
+ unicode="ʠ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-673"
+ unicode="ʡ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-674"
+ unicode="ʢ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-675"
+ unicode="ʣ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-676"
+ unicode="ʤ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-677"
+ unicode="ʥ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-678"
+ unicode="ʦ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-679"
+ unicode="ʧ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-680"
+ unicode="ʨ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-681"
+ unicode="ʩ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-682"
+ unicode="ʪ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-683"
+ unicode="ʫ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-684"
+ unicode="ʬ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-685"
+ unicode="ʭ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-686"
+ unicode="ʮ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-687"
+ unicode="ʯ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-688"
+ unicode="ʰ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-689"
+ unicode="ʱ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-690"
+ unicode="ʲ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-691"
+ unicode="ʳ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-692"
+ unicode="ʴ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-693"
+ unicode="ʵ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-694"
+ unicode="ʶ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-695"
+ unicode="ʷ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-696"
+ unicode="ʸ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-697"
+ unicode="ʹ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-698"
+ unicode="ʺ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-699"
+ unicode="ʻ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-700"
+ unicode="ʼ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-701"
+ unicode="ʽ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-702"
+ unicode="ʾ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-703"
+ unicode="ʿ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-704"
+ unicode="ˀ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-705"
+ unicode="ˁ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-706"
+ unicode="˂"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-707"
+ unicode="˃"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-708"
+ unicode="˄"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-709"
+ unicode="˅"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-710"
+ unicode="ˆ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-711"
+ unicode="ˇ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-712"
+ unicode="ˈ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-713"
+ unicode="ˉ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-714"
+ unicode="ˊ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-715"
+ unicode="ˋ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-716"
+ unicode="ˌ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-717"
+ unicode="ˍ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-718"
+ unicode="ˎ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-719"
+ unicode="ˏ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-720"
+ unicode="ː"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-721"
+ unicode="ˑ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-722"
+ unicode="˒"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-723"
+ unicode="˓"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-724"
+ unicode="˔"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-725"
+ unicode="˕"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-726"
+ unicode="˖"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-727"
+ unicode="˗"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-728"
+ unicode="˘"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-729"
+ unicode="˙"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-730"
+ unicode="˚"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-731"
+ unicode="˛"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-732"
+ unicode="˜"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-733"
+ unicode="˝"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-734"
+ unicode="˞"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-735"
+ unicode="˟"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-736"
+ unicode="ˠ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-737"
+ unicode="ˡ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-738"
+ unicode="ˢ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-739"
+ unicode="ˣ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-740"
+ unicode="ˤ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-741"
+ unicode="˥"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-742"
+ unicode="˦"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-743"
+ unicode="˧"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-744"
+ unicode="˨"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-745"
+ unicode="˩"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-746"
+ unicode="˪"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-747"
+ unicode="˫"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-748"
+ unicode="ˬ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-749"
+ unicode="˭"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-750"
+ unicode="ˮ"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-751"
+ unicode="˯"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-752"
+ unicode="˰"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-753"
+ unicode="˱"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-754"
+ unicode="˲"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-755"
+ unicode="˳"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-756"
+ unicode="˴"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-757"
+ unicode="˵"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-758"
+ unicode="˶"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-759"
+ unicode="˷"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-760"
+ unicode="˸"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-761"
+ unicode="˹"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-762"
+ unicode="˺"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-763"
+ unicode="˻"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-764"
+ unicode="˼"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-765"
+ unicode="˽"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-766"
+ unicode="˾"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ <glyph glyph-name="square-767"
+ unicode="˿"
+ horiz-adv-x="300" d=" M0 250H220V30H0V250z" />
+ </font>
+</defs>
+</svg>
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-square.ttf b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-square.ttf
new file mode 100644
index 0000000..bea2cf8
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-square.ttf differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-square.woff b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-square.woff
new file mode 100644
index 0000000..1c4b7a9
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/dist/text-security-square.woff differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/index.js b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/index.js
new file mode 100644
index 0000000..7a48412
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/index.js
@@ -0,0 +1,89 @@
+var
+ icons2font = require('svgicons2svgfont'),
+ fs = require('fs'),
+ path = require('path'),
+ svg2ttf = require('svg2ttf'),
+ ttf2eot = require('ttf2eot'),
+ ttf2woff = require('ttf2woff'),
+ args = require('yargs').argv;
+/**
+ * We need to loop through the unicode character list and pass them all for svgicons2svgfont.
+ * If you want to reduce the file-sizes with the cost of worse character support, you can
+ * specify --max={number} when building. This number will be the highest supported character
+ * code. For example, building with `npm run build -- --max=126` would only support the Basic Latin unicode block.
+ *
+ * @todo Perhaps this could be better achieved by just defining the notdef glyph?
+ * That would probably reduce the file sizes quite a bit, but I'm not quite sure how that would work with the
+ * tff and woff versions.
+ * @param {number=} [max=767]
+ */
+var MAX_VALUE = args.max || 767;
+/**
+ * Comma-separated list of the supported shapes.
+ * @param {string} [shapes='circle,square,disc']
+ */
+var SHAPES = args.shapes || 'circle,square,disc';
+
+var styleTemplate = fs.readFileSync('style-template.css', 'utf-8'), stylesheet = '',
+ characters = [];
+
+for (var i = 0; i <= MAX_VALUE; i++){
+ characters.push(String.fromCharCode(i));
+}
+
+function bufferFrom(source) {
+ return typeof Buffer.from === 'function' ? Buffer.from(source) : new Buffer(source);
+}
+
+function logError(err) {
+ if (err) {
+ console.error(err);
+ }
+}
+
+var DIST_DIR = path.join(__dirname, 'dist');
+
+if (!fs.existsSync(DIST_DIR)) {
+ fs.mkdirSync(DIST_DIR);
+}
+
+SHAPES.split(',').forEach(function (shape) {
+ var
+ fontName = 'text-security-' + shape,
+ fontPath = path.join(DIST_DIR, fontName),
+ fontStream = icons2font({
+ fontName: fontName
+ });
+
+ fontStream
+ .pipe(fs.createWriteStream(fontPath + '.svg'))//Create the .svg font
+ .on('finish', function () {
+ //Create the other formats using the newly created font and Fontello's conversion libs
+
+ var ttf = svg2ttf(fs.readFileSync(fontPath + '.svg', 'utf-8'), {});
+ fs.writeFileSync(fontPath + '.ttf', bufferFrom(ttf.buffer), 'utf-8');
+
+ // ttf2eot and ttf2woff expect a buffer, while svg2ttf seems to expect a string
+ // this would be better read from the buffer, but will do for now
+ var ttfFile = fs.readFileSync(fontPath + '.ttf');
+
+ var eot = ttf2eot(ttfFile, {});
+ fs.writeFile(fontPath + '.eot', bufferFrom(eot.buffer), 'utf-8', logError);
+
+ var woff = ttf2woff(ttfFile, {});
+ fs.writeFile(fontPath + '.woff', bufferFrom(woff.buffer), 'utf-8', logError);
+ })
+ .on('error', logError);
+
+ var glyph = fs.createReadStream(path.join(__dirname, 'assets', shape + '.svg'));
+ glyph.metadata = {
+ unicode: characters,
+ name: shape
+ };
+ fontStream.write(glyph);
+ fontStream.end();
+ //Append the new shape to the generated stylesheet
+ stylesheet += styleTemplate.replace(/\{\{shape}}/g, shape) + '\n';
+});
+
+fs.writeFile(path.join(__dirname, 'dist', 'text-security.css'), stylesheet, logError);
\ No newline at end of file
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/LICENSE b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/LICENSE
new file mode 100644
index 0000000..a664c94
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/LICENSE
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2016 Oskari Noppa
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/package.json b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/package.json
new file mode 100644
index 0000000..bf7d7f1
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/package.json
@@ -0,0 +1,60 @@
+{
+ "_from": "text-security@^1.0.1",
+ "_id": "text-security@1.0.1",
+ "_inBundle": false,
+ "_integrity": "sha512-Y5fStAKoEvLr6h2oz/nkSm+P3b5f3t+JAnNkycFJr15mz32XvrfBONjO+fNAnKaP5+YuD69tVNmlmKmfZu9ZGw==",
+ "_location": "/text-security",
+ "_phantomChildren": {},
+ "_requested": {
+ "type": "range",
+ "registry": true,
+ "raw": "text-security@^1.0.1",
+ "name": "text-security",
+ "escapedName": "text-security",
+ "rawSpec": "^1.0.1",
+ "saveSpec": null,
+ "fetchSpec": "^1.0.1"
+ },
+ "_requiredBy": [
+ "/"
+ ],
+ "_resolved": "https://registry.npmjs.org/text-security/-/text-security-1.0.1.tgz",
+ "_shasum": "9a04f42c322123b1f1fffa49d1d62c638fe72ba3",
+ "_spec": "text-security@^1.0.1",
+ "_where": "/home/st/dev/keycloak/themes/src/main/resources/theme/keycloak/common/resources",
+ "author": {
+ "name": "Oskari Noppa"
+ },
+ "bugs": {
+ "url": "https://github.com/noppa/text-security/issues"
+ },
+ "bundleDependencies": false,
+ "deprecated": false,
+ "description": "Cross-browser alternative to -webkit-text-security",
+ "devDependencies": {
+ "svg2ttf": "4.0.0",
+ "svgicons2svgfont": "5.0.0",
+ "ttf2eot": "2.0.0",
+ "ttf2woff": "2.0.1",
+ "yargs": "4.6.0"
+ },
+ "homepage": "https://github.com/noppa/text-security#readme",
+ "keywords": [
+ "-webkit-text-security",
+ "conceal",
+ "password"
+ ],
+ "license": "MIT",
+ "main": "index.js",
+ "name": "text-security",
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/noppa/text-security.git"
+ },
+ "scripts": {
+ "build": "node index.js",
+ "prebuild": "npm install",
+ "test": ""
+ },
+ "version": "1.0.1"
+}
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/README.md b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/README.md
new file mode 100644
index 0000000..3f421f2
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/README.md
@@ -0,0 +1,52 @@
+# text-security
+Cross-browser alternative to `-webkit-text-security`
+
+This is a simple set of fonts that only consists of 3 different characters.
+Disc <img
+src="https://cdn.rawgit.com/noppa/text-security/master/assets/disc.svg"
+width="5px"> circle <img
+src="https://cdn.rawgit.com/noppa/text-security/master/assets/circle.svg"
+width="10px"> and square <img
+src="https://cdn.rawgit.com/noppa/text-security/master/assets/square.svg"
+width="10px">. For example, setting `font-family: "text-security-circle"` for
+an element should then display all the element's characters in a concealed
+way, like it was a password field.
+
+This is useful if you want to get the benefits of `input[type="password"]`
+but also combine that with other element types, like `input[type="tel"]`. In
+fact, the project was created for this exact purpose [as an answer to a
+StackOverflow
+question](https://stackoverflow.com/questions/36935576/how-to-make-input-type-tel-work-as-type-password/36950075#36950075).
+
+## Installation
+```
+npm install text-security
+```
+
+You can use the fonts by adding this repo as a dependency and including
+`dist/text-security.css` in your project, like so
+
+`<link rel="stylesheet" type="text/css"
+href="node_modules/text-security/dist/text-security.css">`
+
+## Building with custom modifications
+If you want to make your own tweaks, the `npm run build` command has two
+optional arguments for you. By default, 768 different unicode characters are
+included in the fonts, making it reliable for different use-cases but also
+adding quite a big font files as a dependency. You can use the
+`--max={number}` option to reduce the amount of included unicode characters.
+
+If you are feeling wild, you can also add your custom shapes by dropping them
+to *assets* folder and running the build with `--shapes={string}` option. The
+value should be comma-separated list of svg file names (don't include the
+file extension in the name). The default value is `circle,square,disc`.
+The generated css will have class names with `text-security-*` prefix
+followed by the name of the shape, like `text-security-disc`.
+
+## Demo
+*demo.html* contains a proof-of-concept demo file, which you can just open in
+any browser. The same thing can also be found [as a
+fiddle](https://jsfiddle.net/449Lamue/6/). In development, you can also try
+out the library by just including the css using RawGit `<link
+rel="stylesheet" type="text/css"
+href="https://rawgit.com/noppa/text-security/master/dist/text-security.css">`
\ No newline at end of file
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/style-template.css b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/style-template.css
new file mode 100644
index 0000000..4691893
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/text-security/style-template.css
@@ -0,0 +1,8 @@
+@font-face {
+ font-family: 'text-security-{{shape}}';
+ src: url('text-security-{{shape}}.eot');
+ src: url('text-security-{{shape}}.eot?#iefix') format('embedded-opentype'),
+ url('text-security-{{shape}}.woff') format('woff'),
+ url('text-security-{{shape}}.ttf') format('truetype'),
+ url('text-security-{{shape}}.svg#text-security') format('svg');
+}
\ No newline at end of file
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/package.json b/themes/src/main/resources/theme/keycloak/common/resources/package.json
index f0150f0..067ca36 100644
--- a/themes/src/main/resources/theme/keycloak/common/resources/package.json
+++ b/themes/src/main/resources/theme/keycloak/common/resources/package.json
@@ -4,22 +4,23 @@
"description": "Keycloak Admin Console",
"license": "Apache-2.0",
"dependencies": {
- "angular": "^1.6.6",
- "angular-cookies": "^1.6.6",
- "angular-loader": "^1.6.6",
- "angular-resource": "^1.6.6",
- "angular-route": "^1.6.6",
- "angular-sanitize": "^1.6.6",
- "angular-translate": "^2.15.1",
- "angular-translate-loader-url": "^2.15.1",
- "angular-treeview": "^0.1.5",
- "angular-ui-select2": "^0.0.5",
- "autofill-event": "^0.0.1",
- "bootstrap": "^3.3.7",
- "filesaver": "^0.0.13",
- "font-awesome": "^4.7.0",
- "jquery": "^3.2.1",
- "ng-file-upload": "^12.2.13",
- "select2": "3.5.1"
+ "angular": "1.6.6",
+ "angular-cookies": "1.6.6",
+ "angular-loader": "1.6.6",
+ "angular-resource": "1.6.6",
+ "angular-route": "1.6.6",
+ "angular-sanitize": "1.6.6",
+ "angular-translate": "2.15.1",
+ "angular-translate-loader-url": "2.15.1",
+ "angular-treeview": "0.1.5",
+ "angular-ui-select2": "0.0.5",
+ "autofill-event": "0.0.1",
+ "bootstrap": "3.3.7",
+ "filesaver": "0.0.13",
+ "font-awesome": "4.7.0",
+ "jquery": "3.2.1",
+ "ng-file-upload": "12.2.13",
+ "select2": "3.5.1",
+ "text-security": "1.0.1"
}
}
diff --git a/themes/src/main/resources-product/theme/rh-sso/admin/resources/css/styles.css b/themes/src/main/resources-product/theme/rh-sso/admin/resources/css/styles.css
index a1960ed..b59b231 100644
--- a/themes/src/main/resources-product/theme/rh-sso/admin/resources/css/styles.css
+++ b/themes/src/main/resources-product/theme/rh-sso/admin/resources/css/styles.css
@@ -409,3 +409,8 @@ table.kc-authz-table-expanded {
padding-right:0!important;
padding-left:0!important;
}
+
+.password-conceal {
+ font-family: 'text-security-disc';
+ font-size: 14px;
+}
diff --git a/themes/src/main/resources-product/theme/rh-sso/admin/theme.properties b/themes/src/main/resources-product/theme/rh-sso/admin/theme.properties
index 5b489c1..7efe91f 100755
--- a/themes/src/main/resources-product/theme/rh-sso/admin/theme.properties
+++ b/themes/src/main/resources-product/theme/rh-sso/admin/theme.properties
@@ -1,3 +1,3 @@
parent=keycloak
import=common/rh-sso
-styles=lib/rcue/css/rcue.min.css lib/rcue/css/rcue-additions.min.css node_modules/select2/select2.css css/styles.css lib/angular/treeview/css/angular.treeview.css
+styles=lib/rcue/css/rcue.min.css lib/rcue/css/rcue-additions.min.css node_modules/select2/select2.css css/styles.css lib/angular/treeview/css/angular.treeview.css node_modules/text-security/dist/text-security.css