Update website
This commit is contained in:
parent
4413528994
commit
1d90fbf296
6865 changed files with 1091082 additions and 0 deletions
19
vendor/symfony/polyfill-intl-normalizer/LICENSE
vendored
Normal file
19
vendor/symfony/polyfill-intl-normalizer/LICENSE
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
Copyright (c) 2015-present Fabien Potencier
|
||||
|
||||
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.
|
310
vendor/symfony/polyfill-intl-normalizer/Normalizer.php
vendored
Normal file
310
vendor/symfony/polyfill-intl-normalizer/Normalizer.php
vendored
Normal file
|
@ -0,0 +1,310 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Symfony\Polyfill\Intl\Normalizer;
|
||||
|
||||
/**
|
||||
* Normalizer is a PHP fallback implementation of the Normalizer class provided by the intl extension.
|
||||
*
|
||||
* It has been validated with Unicode 6.3 Normalization Conformance Test.
|
||||
* See http://www.unicode.org/reports/tr15/ for detailed info about Unicode normalizations.
|
||||
*
|
||||
* @author Nicolas Grekas <p@tchwork.com>
|
||||
*
|
||||
* @internal
|
||||
*/
|
||||
class Normalizer
|
||||
{
|
||||
public const FORM_D = \Normalizer::FORM_D;
|
||||
public const FORM_KD = \Normalizer::FORM_KD;
|
||||
public const FORM_C = \Normalizer::FORM_C;
|
||||
public const FORM_KC = \Normalizer::FORM_KC;
|
||||
public const NFD = \Normalizer::NFD;
|
||||
public const NFKD = \Normalizer::NFKD;
|
||||
public const NFC = \Normalizer::NFC;
|
||||
public const NFKC = \Normalizer::NFKC;
|
||||
|
||||
private static $C;
|
||||
private static $D;
|
||||
private static $KD;
|
||||
private static $cC;
|
||||
private static $ulenMask = ["\xC0" => 2, "\xD0" => 2, "\xE0" => 3, "\xF0" => 4];
|
||||
private static $ASCII = "\x20\x65\x69\x61\x73\x6E\x74\x72\x6F\x6C\x75\x64\x5D\x5B\x63\x6D\x70\x27\x0A\x67\x7C\x68\x76\x2E\x66\x62\x2C\x3A\x3D\x2D\x71\x31\x30\x43\x32\x2A\x79\x78\x29\x28\x4C\x39\x41\x53\x2F\x50\x22\x45\x6A\x4D\x49\x6B\x33\x3E\x35\x54\x3C\x44\x34\x7D\x42\x7B\x38\x46\x77\x52\x36\x37\x55\x47\x4E\x3B\x4A\x7A\x56\x23\x48\x4F\x57\x5F\x26\x21\x4B\x3F\x58\x51\x25\x59\x5C\x09\x5A\x2B\x7E\x5E\x24\x40\x60\x7F\x00\x01\x02\x03\x04\x05\x06\x07\x08\x0B\x0C\x0D\x0E\x0F\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1A\x1B\x1C\x1D\x1E\x1F";
|
||||
|
||||
public static function isNormalized(string $s, int $form = self::FORM_C)
|
||||
{
|
||||
if (!\in_array($form, [self::NFD, self::NFKD, self::NFC, self::NFKC])) {
|
||||
return false;
|
||||
}
|
||||
if (!isset($s[strspn($s, self::$ASCII)])) {
|
||||
return true;
|
||||
}
|
||||
if (self::NFC == $form && preg_match('//u', $s) && !preg_match('/[^\x00-\x{2FF}]/u', $s)) {
|
||||
return true;
|
||||
}
|
||||
|
||||
return self::normalize($s, $form) === $s;
|
||||
}
|
||||
|
||||
public static function normalize(string $s, int $form = self::FORM_C)
|
||||
{
|
||||
if (!preg_match('//u', $s)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
switch ($form) {
|
||||
case self::NFC: $C = true; $K = false; break;
|
||||
case self::NFD: $C = false; $K = false; break;
|
||||
case self::NFKC: $C = true; $K = true; break;
|
||||
case self::NFKD: $C = false; $K = true; break;
|
||||
default:
|
||||
if (\defined('Normalizer::NONE') && \Normalizer::NONE == $form) {
|
||||
return $s;
|
||||
}
|
||||
|
||||
if (80000 > \PHP_VERSION_ID) {
|
||||
return false;
|
||||
}
|
||||
|
||||
throw new \ValueError('normalizer_normalize(): Argument #2 ($form) must be a a valid normalization form');
|
||||
}
|
||||
|
||||
if ('' === $s) {
|
||||
return '';
|
||||
}
|
||||
|
||||
if ($K && null === self::$KD) {
|
||||
self::$KD = self::getData('compatibilityDecomposition');
|
||||
}
|
||||
|
||||
if (null === self::$D) {
|
||||
self::$D = self::getData('canonicalDecomposition');
|
||||
self::$cC = self::getData('combiningClass');
|
||||
}
|
||||
|
||||
if (null !== $mbEncoding = (2 /* MB_OVERLOAD_STRING */ & (int) \ini_get('mbstring.func_overload')) ? mb_internal_encoding() : null) {
|
||||
mb_internal_encoding('8bit');
|
||||
}
|
||||
|
||||
$r = self::decompose($s, $K);
|
||||
|
||||
if ($C) {
|
||||
if (null === self::$C) {
|
||||
self::$C = self::getData('canonicalComposition');
|
||||
}
|
||||
|
||||
$r = self::recompose($r);
|
||||
}
|
||||
if (null !== $mbEncoding) {
|
||||
mb_internal_encoding($mbEncoding);
|
||||
}
|
||||
|
||||
return $r;
|
||||
}
|
||||
|
||||
private static function recompose($s)
|
||||
{
|
||||
$ASCII = self::$ASCII;
|
||||
$compMap = self::$C;
|
||||
$combClass = self::$cC;
|
||||
$ulenMask = self::$ulenMask;
|
||||
|
||||
$result = $tail = '';
|
||||
|
||||
$i = $s[0] < "\x80" ? 1 : $ulenMask[$s[0] & "\xF0"];
|
||||
$len = \strlen($s);
|
||||
|
||||
$lastUchr = substr($s, 0, $i);
|
||||
$lastUcls = isset($combClass[$lastUchr]) ? 256 : 0;
|
||||
|
||||
while ($i < $len) {
|
||||
if ($s[$i] < "\x80") {
|
||||
// ASCII chars
|
||||
|
||||
if ($tail) {
|
||||
$lastUchr .= $tail;
|
||||
$tail = '';
|
||||
}
|
||||
|
||||
if ($j = strspn($s, $ASCII, $i + 1)) {
|
||||
$lastUchr .= substr($s, $i, $j);
|
||||
$i += $j;
|
||||
}
|
||||
|
||||
$result .= $lastUchr;
|
||||
$lastUchr = $s[$i];
|
||||
$lastUcls = 0;
|
||||
++$i;
|
||||
continue;
|
||||
}
|
||||
|
||||
$ulen = $ulenMask[$s[$i] & "\xF0"];
|
||||
$uchr = substr($s, $i, $ulen);
|
||||
|
||||
if ($lastUchr < "\xE1\x84\x80" || "\xE1\x84\x92" < $lastUchr
|
||||
|| $uchr < "\xE1\x85\xA1" || "\xE1\x85\xB5" < $uchr
|
||||
|| $lastUcls) {
|
||||
// Table lookup and combining chars composition
|
||||
|
||||
$ucls = $combClass[$uchr] ?? 0;
|
||||
|
||||
if (isset($compMap[$lastUchr.$uchr]) && (!$lastUcls || $lastUcls < $ucls)) {
|
||||
$lastUchr = $compMap[$lastUchr.$uchr];
|
||||
} elseif ($lastUcls = $ucls) {
|
||||
$tail .= $uchr;
|
||||
} else {
|
||||
if ($tail) {
|
||||
$lastUchr .= $tail;
|
||||
$tail = '';
|
||||
}
|
||||
|
||||
$result .= $lastUchr;
|
||||
$lastUchr = $uchr;
|
||||
}
|
||||
} else {
|
||||
// Hangul chars
|
||||
|
||||
$L = \ord($lastUchr[2]) - 0x80;
|
||||
$V = \ord($uchr[2]) - 0xA1;
|
||||
$T = 0;
|
||||
|
||||
$uchr = substr($s, $i + $ulen, 3);
|
||||
|
||||
if ("\xE1\x86\xA7" <= $uchr && $uchr <= "\xE1\x87\x82") {
|
||||
$T = \ord($uchr[2]) - 0xA7;
|
||||
0 > $T && $T += 0x40;
|
||||
$ulen += 3;
|
||||
}
|
||||
|
||||
$L = 0xAC00 + ($L * 21 + $V) * 28 + $T;
|
||||
$lastUchr = \chr(0xE0 | $L >> 12).\chr(0x80 | $L >> 6 & 0x3F).\chr(0x80 | $L & 0x3F);
|
||||
}
|
||||
|
||||
$i += $ulen;
|
||||
}
|
||||
|
||||
return $result.$lastUchr.$tail;
|
||||
}
|
||||
|
||||
private static function decompose($s, $c)
|
||||
{
|
||||
$result = '';
|
||||
|
||||
$ASCII = self::$ASCII;
|
||||
$decompMap = self::$D;
|
||||
$combClass = self::$cC;
|
||||
$ulenMask = self::$ulenMask;
|
||||
if ($c) {
|
||||
$compatMap = self::$KD;
|
||||
}
|
||||
|
||||
$c = [];
|
||||
$i = 0;
|
||||
$len = \strlen($s);
|
||||
|
||||
while ($i < $len) {
|
||||
if ($s[$i] < "\x80") {
|
||||
// ASCII chars
|
||||
|
||||
if ($c) {
|
||||
ksort($c);
|
||||
$result .= implode('', $c);
|
||||
$c = [];
|
||||
}
|
||||
|
||||
$j = 1 + strspn($s, $ASCII, $i + 1);
|
||||
$result .= substr($s, $i, $j);
|
||||
$i += $j;
|
||||
continue;
|
||||
}
|
||||
|
||||
$ulen = $ulenMask[$s[$i] & "\xF0"];
|
||||
$uchr = substr($s, $i, $ulen);
|
||||
$i += $ulen;
|
||||
|
||||
if ($uchr < "\xEA\xB0\x80" || "\xED\x9E\xA3" < $uchr) {
|
||||
// Table lookup
|
||||
|
||||
if ($uchr !== $j = $compatMap[$uchr] ?? ($decompMap[$uchr] ?? $uchr)) {
|
||||
$uchr = $j;
|
||||
|
||||
$j = \strlen($uchr);
|
||||
$ulen = $uchr[0] < "\x80" ? 1 : $ulenMask[$uchr[0] & "\xF0"];
|
||||
|
||||
if ($ulen != $j) {
|
||||
// Put trailing chars in $s
|
||||
|
||||
$j -= $ulen;
|
||||
$i -= $j;
|
||||
|
||||
if (0 > $i) {
|
||||
$s = str_repeat(' ', -$i).$s;
|
||||
$len -= $i;
|
||||
$i = 0;
|
||||
}
|
||||
|
||||
while ($j--) {
|
||||
$s[$i + $j] = $uchr[$ulen + $j];
|
||||
}
|
||||
|
||||
$uchr = substr($uchr, 0, $ulen);
|
||||
}
|
||||
}
|
||||
if (isset($combClass[$uchr])) {
|
||||
// Combining chars, for sorting
|
||||
|
||||
if (!isset($c[$combClass[$uchr]])) {
|
||||
$c[$combClass[$uchr]] = '';
|
||||
}
|
||||
$c[$combClass[$uchr]] .= $uchr;
|
||||
continue;
|
||||
}
|
||||
} else {
|
||||
// Hangul chars
|
||||
|
||||
$uchr = unpack('C*', $uchr);
|
||||
$j = (($uchr[1] - 224) << 12) + (($uchr[2] - 128) << 6) + $uchr[3] - 0xAC80;
|
||||
|
||||
$uchr = "\xE1\x84".\chr(0x80 + (int) ($j / 588))
|
||||
."\xE1\x85".\chr(0xA1 + (int) (($j % 588) / 28));
|
||||
|
||||
if ($j %= 28) {
|
||||
$uchr .= $j < 25
|
||||
? ("\xE1\x86".\chr(0xA7 + $j))
|
||||
: ("\xE1\x87".\chr(0x67 + $j));
|
||||
}
|
||||
}
|
||||
if ($c) {
|
||||
ksort($c);
|
||||
$result .= implode('', $c);
|
||||
$c = [];
|
||||
}
|
||||
|
||||
$result .= $uchr;
|
||||
}
|
||||
|
||||
if ($c) {
|
||||
ksort($c);
|
||||
$result .= implode('', $c);
|
||||
}
|
||||
|
||||
return $result;
|
||||
}
|
||||
|
||||
private static function getData($file)
|
||||
{
|
||||
if (file_exists($file = __DIR__.'/Resources/unidata/'.$file.'.php')) {
|
||||
return require $file;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
14
vendor/symfony/polyfill-intl-normalizer/README.md
vendored
Normal file
14
vendor/symfony/polyfill-intl-normalizer/README.md
vendored
Normal file
|
@ -0,0 +1,14 @@
|
|||
Symfony Polyfill / Intl: Normalizer
|
||||
===================================
|
||||
|
||||
This component provides a fallback implementation for the
|
||||
[`Normalizer`](https://php.net/Normalizer) class provided
|
||||
by the [Intl](https://php.net/intl) extension.
|
||||
|
||||
More information can be found in the
|
||||
[main Polyfill README](https://github.com/symfony/polyfill/blob/main/README.md).
|
||||
|
||||
License
|
||||
=======
|
||||
|
||||
This library is released under the [MIT license](LICENSE).
|
17
vendor/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php
vendored
Normal file
17
vendor/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
|
||||
class Normalizer extends Symfony\Polyfill\Intl\Normalizer\Normalizer
|
||||
{
|
||||
/**
|
||||
* @deprecated since ICU 56 and removed in PHP 8
|
||||
*/
|
||||
public const NONE = 2;
|
||||
public const FORM_D = 4;
|
||||
public const FORM_KD = 8;
|
||||
public const FORM_C = 16;
|
||||
public const FORM_KC = 32;
|
||||
public const NFD = 4;
|
||||
public const NFKD = 8;
|
||||
public const NFC = 16;
|
||||
public const NFKC = 32;
|
||||
}
|
945
vendor/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalComposition.php
vendored
Normal file
945
vendor/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalComposition.php
vendored
Normal file
|
@ -0,0 +1,945 @@
|
|||
<?php
|
||||
|
||||
return array (
|
||||
'À' => 'À',
|
||||
'Á' => 'Á',
|
||||
'Â' => 'Â',
|
||||
'Ã' => 'Ã',
|
||||
'Ä' => 'Ä',
|
||||
'Å' => 'Å',
|
||||
'Ç' => 'Ç',
|
||||
'È' => 'È',
|
||||
'É' => 'É',
|
||||
'Ê' => 'Ê',
|
||||
'Ë' => 'Ë',
|
||||
'Ì' => 'Ì',
|
||||
'Í' => 'Í',
|
||||
'Î' => 'Î',
|
||||
'Ï' => 'Ï',
|
||||
'Ñ' => 'Ñ',
|
||||
'Ò' => 'Ò',
|
||||
'Ó' => 'Ó',
|
||||
'Ô' => 'Ô',
|
||||
'Õ' => 'Õ',
|
||||
'Ö' => 'Ö',
|
||||
'Ù' => 'Ù',
|
||||
'Ú' => 'Ú',
|
||||
'Û' => 'Û',
|
||||
'Ü' => 'Ü',
|
||||
'Ý' => 'Ý',
|
||||
'à' => 'à',
|
||||
'á' => 'á',
|
||||
'â' => 'â',
|
||||
'ã' => 'ã',
|
||||
'ä' => 'ä',
|
||||
'å' => 'å',
|
||||
'ç' => 'ç',
|
||||
'è' => 'è',
|
||||
'é' => 'é',
|
||||
'ê' => 'ê',
|
||||
'ë' => 'ë',
|
||||
'ì' => 'ì',
|
||||
'í' => 'í',
|
||||
'î' => 'î',
|
||||
'ï' => 'ï',
|
||||
'ñ' => 'ñ',
|
||||
'ò' => 'ò',
|
||||
'ó' => 'ó',
|
||||
'ô' => 'ô',
|
||||
'õ' => 'õ',
|
||||
'ö' => 'ö',
|
||||
'ù' => 'ù',
|
||||
'ú' => 'ú',
|
||||
'û' => 'û',
|
||||
'ü' => 'ü',
|
||||
'ý' => 'ý',
|
||||
'ÿ' => 'ÿ',
|
||||
'Ā' => 'Ā',
|
||||
'ā' => 'ā',
|
||||
'Ă' => 'Ă',
|
||||
'ă' => 'ă',
|
||||
'Ą' => 'Ą',
|
||||
'ą' => 'ą',
|
||||
'Ć' => 'Ć',
|
||||
'ć' => 'ć',
|
||||
'Ĉ' => 'Ĉ',
|
||||
'ĉ' => 'ĉ',
|
||||
'Ċ' => 'Ċ',
|
||||
'ċ' => 'ċ',
|
||||
'Č' => 'Č',
|
||||
'č' => 'č',
|
||||
'Ď' => 'Ď',
|
||||
'ď' => 'ď',
|
||||
'Ē' => 'Ē',
|
||||
'ē' => 'ē',
|
||||
'Ĕ' => 'Ĕ',
|
||||
'ĕ' => 'ĕ',
|
||||
'Ė' => 'Ė',
|
||||
'ė' => 'ė',
|
||||
'Ę' => 'Ę',
|
||||
'ę' => 'ę',
|
||||
'Ě' => 'Ě',
|
||||
'ě' => 'ě',
|
||||
'Ĝ' => 'Ĝ',
|
||||
'ĝ' => 'ĝ',
|
||||
'Ğ' => 'Ğ',
|
||||
'ğ' => 'ğ',
|
||||
'Ġ' => 'Ġ',
|
||||
'ġ' => 'ġ',
|
||||
'Ģ' => 'Ģ',
|
||||
'ģ' => 'ģ',
|
||||
'Ĥ' => 'Ĥ',
|
||||
'ĥ' => 'ĥ',
|
||||
'Ĩ' => 'Ĩ',
|
||||
'ĩ' => 'ĩ',
|
||||
'Ī' => 'Ī',
|
||||
'ī' => 'ī',
|
||||
'Ĭ' => 'Ĭ',
|
||||
'ĭ' => 'ĭ',
|
||||
'Į' => 'Į',
|
||||
'į' => 'į',
|
||||
'İ' => 'İ',
|
||||
'Ĵ' => 'Ĵ',
|
||||
'ĵ' => 'ĵ',
|
||||
'Ķ' => 'Ķ',
|
||||
'ķ' => 'ķ',
|
||||
'Ĺ' => 'Ĺ',
|
||||
'ĺ' => 'ĺ',
|
||||
'Ļ' => 'Ļ',
|
||||
'ļ' => 'ļ',
|
||||
'Ľ' => 'Ľ',
|
||||
'ľ' => 'ľ',
|
||||
'Ń' => 'Ń',
|
||||
'ń' => 'ń',
|
||||
'Ņ' => 'Ņ',
|
||||
'ņ' => 'ņ',
|
||||
'Ň' => 'Ň',
|
||||
'ň' => 'ň',
|
||||
'Ō' => 'Ō',
|
||||
'ō' => 'ō',
|
||||
'Ŏ' => 'Ŏ',
|
||||
'ŏ' => 'ŏ',
|
||||
'Ő' => 'Ő',
|
||||
'ő' => 'ő',
|
||||
'Ŕ' => 'Ŕ',
|
||||
'ŕ' => 'ŕ',
|
||||
'Ŗ' => 'Ŗ',
|
||||
'ŗ' => 'ŗ',
|
||||
'Ř' => 'Ř',
|
||||
'ř' => 'ř',
|
||||
'Ś' => 'Ś',
|
||||
'ś' => 'ś',
|
||||
'Ŝ' => 'Ŝ',
|
||||
'ŝ' => 'ŝ',
|
||||
'Ş' => 'Ş',
|
||||
'ş' => 'ş',
|
||||
'Š' => 'Š',
|
||||
'š' => 'š',
|
||||
'Ţ' => 'Ţ',
|
||||
'ţ' => 'ţ',
|
||||
'Ť' => 'Ť',
|
||||
'ť' => 'ť',
|
||||
'Ũ' => 'Ũ',
|
||||
'ũ' => 'ũ',
|
||||
'Ū' => 'Ū',
|
||||
'ū' => 'ū',
|
||||
'Ŭ' => 'Ŭ',
|
||||
'ŭ' => 'ŭ',
|
||||
'Ů' => 'Ů',
|
||||
'ů' => 'ů',
|
||||
'Ű' => 'Ű',
|
||||
'ű' => 'ű',
|
||||
'Ų' => 'Ų',
|
||||
'ų' => 'ų',
|
||||
'Ŵ' => 'Ŵ',
|
||||
'ŵ' => 'ŵ',
|
||||
'Ŷ' => 'Ŷ',
|
||||
'ŷ' => 'ŷ',
|
||||
'Ÿ' => 'Ÿ',
|
||||
'Ź' => 'Ź',
|
||||
'ź' => 'ź',
|
||||
'Ż' => 'Ż',
|
||||
'ż' => 'ż',
|
||||
'Ž' => 'Ž',
|
||||
'ž' => 'ž',
|
||||
'Ơ' => 'Ơ',
|
||||
'ơ' => 'ơ',
|
||||
'Ư' => 'Ư',
|
||||
'ư' => 'ư',
|
||||
'Ǎ' => 'Ǎ',
|
||||
'ǎ' => 'ǎ',
|
||||
'Ǐ' => 'Ǐ',
|
||||
'ǐ' => 'ǐ',
|
||||
'Ǒ' => 'Ǒ',
|
||||
'ǒ' => 'ǒ',
|
||||
'Ǔ' => 'Ǔ',
|
||||
'ǔ' => 'ǔ',
|
||||
'Ǖ' => 'Ǖ',
|
||||
'ǖ' => 'ǖ',
|
||||
'Ǘ' => 'Ǘ',
|
||||
'ǘ' => 'ǘ',
|
||||
'Ǚ' => 'Ǚ',
|
||||
'ǚ' => 'ǚ',
|
||||
'Ǜ' => 'Ǜ',
|
||||
'ǜ' => 'ǜ',
|
||||
'Ǟ' => 'Ǟ',
|
||||
'ǟ' => 'ǟ',
|
||||
'Ǡ' => 'Ǡ',
|
||||
'ǡ' => 'ǡ',
|
||||
'Ǣ' => 'Ǣ',
|
||||
'ǣ' => 'ǣ',
|
||||
'Ǧ' => 'Ǧ',
|
||||
'ǧ' => 'ǧ',
|
||||
'Ǩ' => 'Ǩ',
|
||||
'ǩ' => 'ǩ',
|
||||
'Ǫ' => 'Ǫ',
|
||||
'ǫ' => 'ǫ',
|
||||
'Ǭ' => 'Ǭ',
|
||||
'ǭ' => 'ǭ',
|
||||
'Ǯ' => 'Ǯ',
|
||||
'ǯ' => 'ǯ',
|
||||
'ǰ' => 'ǰ',
|
||||
'Ǵ' => 'Ǵ',
|
||||
'ǵ' => 'ǵ',
|
||||
'Ǹ' => 'Ǹ',
|
||||
'ǹ' => 'ǹ',
|
||||
'Ǻ' => 'Ǻ',
|
||||
'ǻ' => 'ǻ',
|
||||
'Ǽ' => 'Ǽ',
|
||||
'ǽ' => 'ǽ',
|
||||
'Ǿ' => 'Ǿ',
|
||||
'ǿ' => 'ǿ',
|
||||
'Ȁ' => 'Ȁ',
|
||||
'ȁ' => 'ȁ',
|
||||
'Ȃ' => 'Ȃ',
|
||||
'ȃ' => 'ȃ',
|
||||
'Ȅ' => 'Ȅ',
|
||||
'ȅ' => 'ȅ',
|
||||
'Ȇ' => 'Ȇ',
|
||||
'ȇ' => 'ȇ',
|
||||
'Ȉ' => 'Ȉ',
|
||||
'ȉ' => 'ȉ',
|
||||
'Ȋ' => 'Ȋ',
|
||||
'ȋ' => 'ȋ',
|
||||
'Ȍ' => 'Ȍ',
|
||||
'ȍ' => 'ȍ',
|
||||
'Ȏ' => 'Ȏ',
|
||||
'ȏ' => 'ȏ',
|
||||
'Ȑ' => 'Ȑ',
|
||||
'ȑ' => 'ȑ',
|
||||
'Ȓ' => 'Ȓ',
|
||||
'ȓ' => 'ȓ',
|
||||
'Ȕ' => 'Ȕ',
|
||||
'ȕ' => 'ȕ',
|
||||
'Ȗ' => 'Ȗ',
|
||||
'ȗ' => 'ȗ',
|
||||
'Ș' => 'Ș',
|
||||
'ș' => 'ș',
|
||||
'Ț' => 'Ț',
|
||||
'ț' => 'ț',
|
||||
'Ȟ' => 'Ȟ',
|
||||
'ȟ' => 'ȟ',
|
||||
'Ȧ' => 'Ȧ',
|
||||
'ȧ' => 'ȧ',
|
||||
'Ȩ' => 'Ȩ',
|
||||
'ȩ' => 'ȩ',
|
||||
'Ȫ' => 'Ȫ',
|
||||
'ȫ' => 'ȫ',
|
||||
'Ȭ' => 'Ȭ',
|
||||
'ȭ' => 'ȭ',
|
||||
'Ȯ' => 'Ȯ',
|
||||
'ȯ' => 'ȯ',
|
||||
'Ȱ' => 'Ȱ',
|
||||
'ȱ' => 'ȱ',
|
||||
'Ȳ' => 'Ȳ',
|
||||
'ȳ' => 'ȳ',
|
||||
'΅' => '΅',
|
||||
'Ά' => 'Ά',
|
||||
'Έ' => 'Έ',
|
||||
'Ή' => 'Ή',
|
||||
'Ί' => 'Ί',
|
||||
'Ό' => 'Ό',
|
||||
'Ύ' => 'Ύ',
|
||||
'Ώ' => 'Ώ',
|
||||
'ΐ' => 'ΐ',
|
||||
'Ϊ' => 'Ϊ',
|
||||
'Ϋ' => 'Ϋ',
|
||||
'ά' => 'ά',
|
||||
'έ' => 'έ',
|
||||
'ή' => 'ή',
|
||||
'ί' => 'ί',
|
||||
'ΰ' => 'ΰ',
|
||||
'ϊ' => 'ϊ',
|
||||
'ϋ' => 'ϋ',
|
||||
'ό' => 'ό',
|
||||
'ύ' => 'ύ',
|
||||
'ώ' => 'ώ',
|
||||
'ϓ' => 'ϓ',
|
||||
'ϔ' => 'ϔ',
|
||||
'Ѐ' => 'Ѐ',
|
||||
'Ё' => 'Ё',
|
||||
'Ѓ' => 'Ѓ',
|
||||
'Ї' => 'Ї',
|
||||
'Ќ' => 'Ќ',
|
||||
'Ѝ' => 'Ѝ',
|
||||
'Ў' => 'Ў',
|
||||
'Й' => 'Й',
|
||||
'й' => 'й',
|
||||
'ѐ' => 'ѐ',
|
||||
'ё' => 'ё',
|
||||
'ѓ' => 'ѓ',
|
||||
'ї' => 'ї',
|
||||
'ќ' => 'ќ',
|
||||
'ѝ' => 'ѝ',
|
||||
'ў' => 'ў',
|
||||
'Ѷ' => 'Ѷ',
|
||||
'ѷ' => 'ѷ',
|
||||
'Ӂ' => 'Ӂ',
|
||||
'ӂ' => 'ӂ',
|
||||
'Ӑ' => 'Ӑ',
|
||||
'ӑ' => 'ӑ',
|
||||
'Ӓ' => 'Ӓ',
|
||||
'ӓ' => 'ӓ',
|
||||
'Ӗ' => 'Ӗ',
|
||||
'ӗ' => 'ӗ',
|
||||
'Ӛ' => 'Ӛ',
|
||||
'ӛ' => 'ӛ',
|
||||
'Ӝ' => 'Ӝ',
|
||||
'ӝ' => 'ӝ',
|
||||
'Ӟ' => 'Ӟ',
|
||||
'ӟ' => 'ӟ',
|
||||
'Ӣ' => 'Ӣ',
|
||||
'ӣ' => 'ӣ',
|
||||
'Ӥ' => 'Ӥ',
|
||||
'ӥ' => 'ӥ',
|
||||
'Ӧ' => 'Ӧ',
|
||||
'ӧ' => 'ӧ',
|
||||
'Ӫ' => 'Ӫ',
|
||||
'ӫ' => 'ӫ',
|
||||
'Ӭ' => 'Ӭ',
|
||||
'ӭ' => 'ӭ',
|
||||
'Ӯ' => 'Ӯ',
|
||||
'ӯ' => 'ӯ',
|
||||
'Ӱ' => 'Ӱ',
|
||||
'ӱ' => 'ӱ',
|
||||
'Ӳ' => 'Ӳ',
|
||||
'ӳ' => 'ӳ',
|
||||
'Ӵ' => 'Ӵ',
|
||||
'ӵ' => 'ӵ',
|
||||
'Ӹ' => 'Ӹ',
|
||||
'ӹ' => 'ӹ',
|
||||
'آ' => 'آ',
|
||||
'أ' => 'أ',
|
||||
'ؤ' => 'ؤ',
|
||||
'إ' => 'إ',
|
||||
'ئ' => 'ئ',
|
||||
'ۀ' => 'ۀ',
|
||||
'ۂ' => 'ۂ',
|
||||
'ۓ' => 'ۓ',
|
||||
'ऩ' => 'ऩ',
|
||||
'ऱ' => 'ऱ',
|
||||
'ऴ' => 'ऴ',
|
||||
'ো' => 'ো',
|
||||
'ৌ' => 'ৌ',
|
||||
'ୈ' => 'ୈ',
|
||||
'ୋ' => 'ୋ',
|
||||
'ୌ' => 'ୌ',
|
||||
'ஔ' => 'ஔ',
|
||||
'ொ' => 'ொ',
|
||||
'ோ' => 'ோ',
|
||||
'ௌ' => 'ௌ',
|
||||
'ై' => 'ై',
|
||||
'ೀ' => 'ೀ',
|
||||
'ೇ' => 'ೇ',
|
||||
'ೈ' => 'ೈ',
|
||||
'ೊ' => 'ೊ',
|
||||
'ೋ' => 'ೋ',
|
||||
'ൊ' => 'ൊ',
|
||||
'ോ' => 'ോ',
|
||||
'ൌ' => 'ൌ',
|
||||
'ේ' => 'ේ',
|
||||
'ො' => 'ො',
|
||||
'ෝ' => 'ෝ',
|
||||
'ෞ' => 'ෞ',
|
||||
'ဦ' => 'ဦ',
|
||||
'ᬆ' => 'ᬆ',
|
||||
'ᬈ' => 'ᬈ',
|
||||
'ᬊ' => 'ᬊ',
|
||||
'ᬌ' => 'ᬌ',
|
||||
'ᬎ' => 'ᬎ',
|
||||
'ᬒ' => 'ᬒ',
|
||||
'ᬻ' => 'ᬻ',
|
||||
'ᬽ' => 'ᬽ',
|
||||
'ᭀ' => 'ᭀ',
|
||||
'ᭁ' => 'ᭁ',
|
||||
'ᭃ' => 'ᭃ',
|
||||
'Ḁ' => 'Ḁ',
|
||||
'ḁ' => 'ḁ',
|
||||
'Ḃ' => 'Ḃ',
|
||||
'ḃ' => 'ḃ',
|
||||
'Ḅ' => 'Ḅ',
|
||||
'ḅ' => 'ḅ',
|
||||
'Ḇ' => 'Ḇ',
|
||||
'ḇ' => 'ḇ',
|
||||
'Ḉ' => 'Ḉ',
|
||||
'ḉ' => 'ḉ',
|
||||
'Ḋ' => 'Ḋ',
|
||||
'ḋ' => 'ḋ',
|
||||
'Ḍ' => 'Ḍ',
|
||||
'ḍ' => 'ḍ',
|
||||
'Ḏ' => 'Ḏ',
|
||||
'ḏ' => 'ḏ',
|
||||
'Ḑ' => 'Ḑ',
|
||||
'ḑ' => 'ḑ',
|
||||
'Ḓ' => 'Ḓ',
|
||||
'ḓ' => 'ḓ',
|
||||
'Ḕ' => 'Ḕ',
|
||||
'ḕ' => 'ḕ',
|
||||
'Ḗ' => 'Ḗ',
|
||||
'ḗ' => 'ḗ',
|
||||
'Ḙ' => 'Ḙ',
|
||||
'ḙ' => 'ḙ',
|
||||
'Ḛ' => 'Ḛ',
|
||||
'ḛ' => 'ḛ',
|
||||
'Ḝ' => 'Ḝ',
|
||||
'ḝ' => 'ḝ',
|
||||
'Ḟ' => 'Ḟ',
|
||||
'ḟ' => 'ḟ',
|
||||
'Ḡ' => 'Ḡ',
|
||||
'ḡ' => 'ḡ',
|
||||
'Ḣ' => 'Ḣ',
|
||||
'ḣ' => 'ḣ',
|
||||
'Ḥ' => 'Ḥ',
|
||||
'ḥ' => 'ḥ',
|
||||
'Ḧ' => 'Ḧ',
|
||||
'ḧ' => 'ḧ',
|
||||
'Ḩ' => 'Ḩ',
|
||||
'ḩ' => 'ḩ',
|
||||
'Ḫ' => 'Ḫ',
|
||||
'ḫ' => 'ḫ',
|
||||
'Ḭ' => 'Ḭ',
|
||||
'ḭ' => 'ḭ',
|
||||
'Ḯ' => 'Ḯ',
|
||||
'ḯ' => 'ḯ',
|
||||
'Ḱ' => 'Ḱ',
|
||||
'ḱ' => 'ḱ',
|
||||
'Ḳ' => 'Ḳ',
|
||||
'ḳ' => 'ḳ',
|
||||
'Ḵ' => 'Ḵ',
|
||||
'ḵ' => 'ḵ',
|
||||
'Ḷ' => 'Ḷ',
|
||||
'ḷ' => 'ḷ',
|
||||
'Ḹ' => 'Ḹ',
|
||||
'ḹ' => 'ḹ',
|
||||
'Ḻ' => 'Ḻ',
|
||||
'ḻ' => 'ḻ',
|
||||
'Ḽ' => 'Ḽ',
|
||||
'ḽ' => 'ḽ',
|
||||
'Ḿ' => 'Ḿ',
|
||||
'ḿ' => 'ḿ',
|
||||
'Ṁ' => 'Ṁ',
|
||||
'ṁ' => 'ṁ',
|
||||
'Ṃ' => 'Ṃ',
|
||||
'ṃ' => 'ṃ',
|
||||
'Ṅ' => 'Ṅ',
|
||||
'ṅ' => 'ṅ',
|
||||
'Ṇ' => 'Ṇ',
|
||||
'ṇ' => 'ṇ',
|
||||
'Ṉ' => 'Ṉ',
|
||||
'ṉ' => 'ṉ',
|
||||
'Ṋ' => 'Ṋ',
|
||||
'ṋ' => 'ṋ',
|
||||
'Ṍ' => 'Ṍ',
|
||||
'ṍ' => 'ṍ',
|
||||
'Ṏ' => 'Ṏ',
|
||||
'ṏ' => 'ṏ',
|
||||
'Ṑ' => 'Ṑ',
|
||||
'ṑ' => 'ṑ',
|
||||
'Ṓ' => 'Ṓ',
|
||||
'ṓ' => 'ṓ',
|
||||
'Ṕ' => 'Ṕ',
|
||||
'ṕ' => 'ṕ',
|
||||
'Ṗ' => 'Ṗ',
|
||||
'ṗ' => 'ṗ',
|
||||
'Ṙ' => 'Ṙ',
|
||||
'ṙ' => 'ṙ',
|
||||
'Ṛ' => 'Ṛ',
|
||||
'ṛ' => 'ṛ',
|
||||
'Ṝ' => 'Ṝ',
|
||||
'ṝ' => 'ṝ',
|
||||
'Ṟ' => 'Ṟ',
|
||||
'ṟ' => 'ṟ',
|
||||
'Ṡ' => 'Ṡ',
|
||||
'ṡ' => 'ṡ',
|
||||
'Ṣ' => 'Ṣ',
|
||||
'ṣ' => 'ṣ',
|
||||
'Ṥ' => 'Ṥ',
|
||||
'ṥ' => 'ṥ',
|
||||
'Ṧ' => 'Ṧ',
|
||||
'ṧ' => 'ṧ',
|
||||
'Ṩ' => 'Ṩ',
|
||||
'ṩ' => 'ṩ',
|
||||
'Ṫ' => 'Ṫ',
|
||||
'ṫ' => 'ṫ',
|
||||
'Ṭ' => 'Ṭ',
|
||||
'ṭ' => 'ṭ',
|
||||
'Ṯ' => 'Ṯ',
|
||||
'ṯ' => 'ṯ',
|
||||
'Ṱ' => 'Ṱ',
|
||||
'ṱ' => 'ṱ',
|
||||
'Ṳ' => 'Ṳ',
|
||||
'ṳ' => 'ṳ',
|
||||
'Ṵ' => 'Ṵ',
|
||||
'ṵ' => 'ṵ',
|
||||
'Ṷ' => 'Ṷ',
|
||||
'ṷ' => 'ṷ',
|
||||
'Ṹ' => 'Ṹ',
|
||||
'ṹ' => 'ṹ',
|
||||
'Ṻ' => 'Ṻ',
|
||||
'ṻ' => 'ṻ',
|
||||
'Ṽ' => 'Ṽ',
|
||||
'ṽ' => 'ṽ',
|
||||
'Ṿ' => 'Ṿ',
|
||||
'ṿ' => 'ṿ',
|
||||
'Ẁ' => 'Ẁ',
|
||||
'ẁ' => 'ẁ',
|
||||
'Ẃ' => 'Ẃ',
|
||||
'ẃ' => 'ẃ',
|
||||
'Ẅ' => 'Ẅ',
|
||||
'ẅ' => 'ẅ',
|
||||
'Ẇ' => 'Ẇ',
|
||||
'ẇ' => 'ẇ',
|
||||
'Ẉ' => 'Ẉ',
|
||||
'ẉ' => 'ẉ',
|
||||
'Ẋ' => 'Ẋ',
|
||||
'ẋ' => 'ẋ',
|
||||
'Ẍ' => 'Ẍ',
|
||||
'ẍ' => 'ẍ',
|
||||
'Ẏ' => 'Ẏ',
|
||||
'ẏ' => 'ẏ',
|
||||
'Ẑ' => 'Ẑ',
|
||||
'ẑ' => 'ẑ',
|
||||
'Ẓ' => 'Ẓ',
|
||||
'ẓ' => 'ẓ',
|
||||
'Ẕ' => 'Ẕ',
|
||||
'ẕ' => 'ẕ',
|
||||
'ẖ' => 'ẖ',
|
||||
'ẗ' => 'ẗ',
|
||||
'ẘ' => 'ẘ',
|
||||
'ẙ' => 'ẙ',
|
||||
'ẛ' => 'ẛ',
|
||||
'Ạ' => 'Ạ',
|
||||
'ạ' => 'ạ',
|
||||
'Ả' => 'Ả',
|
||||
'ả' => 'ả',
|
||||
'Ấ' => 'Ấ',
|
||||
'ấ' => 'ấ',
|
||||
'Ầ' => 'Ầ',
|
||||
'ầ' => 'ầ',
|
||||
'Ẩ' => 'Ẩ',
|
||||
'ẩ' => 'ẩ',
|
||||
'Ẫ' => 'Ẫ',
|
||||
'ẫ' => 'ẫ',
|
||||
'Ậ' => 'Ậ',
|
||||
'ậ' => 'ậ',
|
||||
'Ắ' => 'Ắ',
|
||||
'ắ' => 'ắ',
|
||||
'Ằ' => 'Ằ',
|
||||
'ằ' => 'ằ',
|
||||
'Ẳ' => 'Ẳ',
|
||||
'ẳ' => 'ẳ',
|
||||
'Ẵ' => 'Ẵ',
|
||||
'ẵ' => 'ẵ',
|
||||
'Ặ' => 'Ặ',
|
||||
'ặ' => 'ặ',
|
||||
'Ẹ' => 'Ẹ',
|
||||
'ẹ' => 'ẹ',
|
||||
'Ẻ' => 'Ẻ',
|
||||
'ẻ' => 'ẻ',
|
||||
'Ẽ' => 'Ẽ',
|
||||
'ẽ' => 'ẽ',
|
||||
'Ế' => 'Ế',
|
||||
'ế' => 'ế',
|
||||
'Ề' => 'Ề',
|
||||
'ề' => 'ề',
|
||||
'Ể' => 'Ể',
|
||||
'ể' => 'ể',
|
||||
'Ễ' => 'Ễ',
|
||||
'ễ' => 'ễ',
|
||||
'Ệ' => 'Ệ',
|
||||
'ệ' => 'ệ',
|
||||
'Ỉ' => 'Ỉ',
|
||||
'ỉ' => 'ỉ',
|
||||
'Ị' => 'Ị',
|
||||
'ị' => 'ị',
|
||||
'Ọ' => 'Ọ',
|
||||
'ọ' => 'ọ',
|
||||
'Ỏ' => 'Ỏ',
|
||||
'ỏ' => 'ỏ',
|
||||
'Ố' => 'Ố',
|
||||
'ố' => 'ố',
|
||||
'Ồ' => 'Ồ',
|
||||
'ồ' => 'ồ',
|
||||
'Ổ' => 'Ổ',
|
||||
'ổ' => 'ổ',
|
||||
'Ỗ' => 'Ỗ',
|
||||
'ỗ' => 'ỗ',
|
||||
'Ộ' => 'Ộ',
|
||||
'ộ' => 'ộ',
|
||||
'Ớ' => 'Ớ',
|
||||
'ớ' => 'ớ',
|
||||
'Ờ' => 'Ờ',
|
||||
'ờ' => 'ờ',
|
||||
'Ở' => 'Ở',
|
||||
'ở' => 'ở',
|
||||
'Ỡ' => 'Ỡ',
|
||||
'ỡ' => 'ỡ',
|
||||
'Ợ' => 'Ợ',
|
||||
'ợ' => 'ợ',
|
||||
'Ụ' => 'Ụ',
|
||||
'ụ' => 'ụ',
|
||||
'Ủ' => 'Ủ',
|
||||
'ủ' => 'ủ',
|
||||
'Ứ' => 'Ứ',
|
||||
'ứ' => 'ứ',
|
||||
'Ừ' => 'Ừ',
|
||||
'ừ' => 'ừ',
|
||||
'Ử' => 'Ử',
|
||||
'ử' => 'ử',
|
||||
'Ữ' => 'Ữ',
|
||||
'ữ' => 'ữ',
|
||||
'Ự' => 'Ự',
|
||||
'ự' => 'ự',
|
||||
'Ỳ' => 'Ỳ',
|
||||
'ỳ' => 'ỳ',
|
||||
'Ỵ' => 'Ỵ',
|
||||
'ỵ' => 'ỵ',
|
||||
'Ỷ' => 'Ỷ',
|
||||
'ỷ' => 'ỷ',
|
||||
'Ỹ' => 'Ỹ',
|
||||
'ỹ' => 'ỹ',
|
||||
'ἀ' => 'ἀ',
|
||||
'ἁ' => 'ἁ',
|
||||
'ἂ' => 'ἂ',
|
||||
'ἃ' => 'ἃ',
|
||||
'ἄ' => 'ἄ',
|
||||
'ἅ' => 'ἅ',
|
||||
'ἆ' => 'ἆ',
|
||||
'ἇ' => 'ἇ',
|
||||
'Ἀ' => 'Ἀ',
|
||||
'Ἁ' => 'Ἁ',
|
||||
'Ἂ' => 'Ἂ',
|
||||
'Ἃ' => 'Ἃ',
|
||||
'Ἄ' => 'Ἄ',
|
||||
'Ἅ' => 'Ἅ',
|
||||
'Ἆ' => 'Ἆ',
|
||||
'Ἇ' => 'Ἇ',
|
||||
'ἐ' => 'ἐ',
|
||||
'ἑ' => 'ἑ',
|
||||
'ἒ' => 'ἒ',
|
||||
'ἓ' => 'ἓ',
|
||||
'ἔ' => 'ἔ',
|
||||
'ἕ' => 'ἕ',
|
||||
'Ἐ' => 'Ἐ',
|
||||
'Ἑ' => 'Ἑ',
|
||||
'Ἒ' => 'Ἒ',
|
||||
'Ἓ' => 'Ἓ',
|
||||
'Ἔ' => 'Ἔ',
|
||||
'Ἕ' => 'Ἕ',
|
||||
'ἠ' => 'ἠ',
|
||||
'ἡ' => 'ἡ',
|
||||
'ἢ' => 'ἢ',
|
||||
'ἣ' => 'ἣ',
|
||||
'ἤ' => 'ἤ',
|
||||
'ἥ' => 'ἥ',
|
||||
'ἦ' => 'ἦ',
|
||||
'ἧ' => 'ἧ',
|
||||
'Ἠ' => 'Ἠ',
|
||||
'Ἡ' => 'Ἡ',
|
||||
'Ἢ' => 'Ἢ',
|
||||
'Ἣ' => 'Ἣ',
|
||||
'Ἤ' => 'Ἤ',
|
||||
'Ἥ' => 'Ἥ',
|
||||
'Ἦ' => 'Ἦ',
|
||||
'Ἧ' => 'Ἧ',
|
||||
'ἰ' => 'ἰ',
|
||||
'ἱ' => 'ἱ',
|
||||
'ἲ' => 'ἲ',
|
||||
'ἳ' => 'ἳ',
|
||||
'ἴ' => 'ἴ',
|
||||
'ἵ' => 'ἵ',
|
||||
'ἶ' => 'ἶ',
|
||||
'ἷ' => 'ἷ',
|
||||
'Ἰ' => 'Ἰ',
|
||||
'Ἱ' => 'Ἱ',
|
||||
'Ἲ' => 'Ἲ',
|
||||
'Ἳ' => 'Ἳ',
|
||||
'Ἴ' => 'Ἴ',
|
||||
'Ἵ' => 'Ἵ',
|
||||
'Ἶ' => 'Ἶ',
|
||||
'Ἷ' => 'Ἷ',
|
||||
'ὀ' => 'ὀ',
|
||||
'ὁ' => 'ὁ',
|
||||
'ὂ' => 'ὂ',
|
||||
'ὃ' => 'ὃ',
|
||||
'ὄ' => 'ὄ',
|
||||
'ὅ' => 'ὅ',
|
||||
'Ὀ' => 'Ὀ',
|
||||
'Ὁ' => 'Ὁ',
|
||||
'Ὂ' => 'Ὂ',
|
||||
'Ὃ' => 'Ὃ',
|
||||
'Ὄ' => 'Ὄ',
|
||||
'Ὅ' => 'Ὅ',
|
||||
'ὐ' => 'ὐ',
|
||||
'ὑ' => 'ὑ',
|
||||
'ὒ' => 'ὒ',
|
||||
'ὓ' => 'ὓ',
|
||||
'ὔ' => 'ὔ',
|
||||
'ὕ' => 'ὕ',
|
||||
'ὖ' => 'ὖ',
|
||||
'ὗ' => 'ὗ',
|
||||
'Ὑ' => 'Ὑ',
|
||||
'Ὓ' => 'Ὓ',
|
||||
'Ὕ' => 'Ὕ',
|
||||
'Ὗ' => 'Ὗ',
|
||||
'ὠ' => 'ὠ',
|
||||
'ὡ' => 'ὡ',
|
||||
'ὢ' => 'ὢ',
|
||||
'ὣ' => 'ὣ',
|
||||
'ὤ' => 'ὤ',
|
||||
'ὥ' => 'ὥ',
|
||||
'ὦ' => 'ὦ',
|
||||
'ὧ' => 'ὧ',
|
||||
'Ὠ' => 'Ὠ',
|
||||
'Ὡ' => 'Ὡ',
|
||||
'Ὢ' => 'Ὢ',
|
||||
'Ὣ' => 'Ὣ',
|
||||
'Ὤ' => 'Ὤ',
|
||||
'Ὥ' => 'Ὥ',
|
||||
'Ὦ' => 'Ὦ',
|
||||
'Ὧ' => 'Ὧ',
|
||||
'ὰ' => 'ὰ',
|
||||
'ὲ' => 'ὲ',
|
||||
'ὴ' => 'ὴ',
|
||||
'ὶ' => 'ὶ',
|
||||
'ὸ' => 'ὸ',
|
||||
'ὺ' => 'ὺ',
|
||||
'ὼ' => 'ὼ',
|
||||
'ᾀ' => 'ᾀ',
|
||||
'ᾁ' => 'ᾁ',
|
||||
'ᾂ' => 'ᾂ',
|
||||
'ᾃ' => 'ᾃ',
|
||||
'ᾄ' => 'ᾄ',
|
||||
'ᾅ' => 'ᾅ',
|
||||
'ᾆ' => 'ᾆ',
|
||||
'ᾇ' => 'ᾇ',
|
||||
'ᾈ' => 'ᾈ',
|
||||
'ᾉ' => 'ᾉ',
|
||||
'ᾊ' => 'ᾊ',
|
||||
'ᾋ' => 'ᾋ',
|
||||
'ᾌ' => 'ᾌ',
|
||||
'ᾍ' => 'ᾍ',
|
||||
'ᾎ' => 'ᾎ',
|
||||
'ᾏ' => 'ᾏ',
|
||||
'ᾐ' => 'ᾐ',
|
||||
'ᾑ' => 'ᾑ',
|
||||
'ᾒ' => 'ᾒ',
|
||||
'ᾓ' => 'ᾓ',
|
||||
'ᾔ' => 'ᾔ',
|
||||
'ᾕ' => 'ᾕ',
|
||||
'ᾖ' => 'ᾖ',
|
||||
'ᾗ' => 'ᾗ',
|
||||
'ᾘ' => 'ᾘ',
|
||||
'ᾙ' => 'ᾙ',
|
||||
'ᾚ' => 'ᾚ',
|
||||
'ᾛ' => 'ᾛ',
|
||||
'ᾜ' => 'ᾜ',
|
||||
'ᾝ' => 'ᾝ',
|
||||
'ᾞ' => 'ᾞ',
|
||||
'ᾟ' => 'ᾟ',
|
||||
'ᾠ' => 'ᾠ',
|
||||
'ᾡ' => 'ᾡ',
|
||||
'ᾢ' => 'ᾢ',
|
||||
'ᾣ' => 'ᾣ',
|
||||
'ᾤ' => 'ᾤ',
|
||||
'ᾥ' => 'ᾥ',
|
||||
'ᾦ' => 'ᾦ',
|
||||
'ᾧ' => 'ᾧ',
|
||||
'ᾨ' => 'ᾨ',
|
||||
'ᾩ' => 'ᾩ',
|
||||
'ᾪ' => 'ᾪ',
|
||||
'ᾫ' => 'ᾫ',
|
||||
'ᾬ' => 'ᾬ',
|
||||
'ᾭ' => 'ᾭ',
|
||||
'ᾮ' => 'ᾮ',
|
||||
'ᾯ' => 'ᾯ',
|
||||
'ᾰ' => 'ᾰ',
|
||||
'ᾱ' => 'ᾱ',
|
||||
'ᾲ' => 'ᾲ',
|
||||
'ᾳ' => 'ᾳ',
|
||||
'ᾴ' => 'ᾴ',
|
||||
'ᾶ' => 'ᾶ',
|
||||
'ᾷ' => 'ᾷ',
|
||||
'Ᾰ' => 'Ᾰ',
|
||||
'Ᾱ' => 'Ᾱ',
|
||||
'Ὰ' => 'Ὰ',
|
||||
'ᾼ' => 'ᾼ',
|
||||
'῁' => '῁',
|
||||
'ῂ' => 'ῂ',
|
||||
'ῃ' => 'ῃ',
|
||||
'ῄ' => 'ῄ',
|
||||
'ῆ' => 'ῆ',
|
||||
'ῇ' => 'ῇ',
|
||||
'Ὲ' => 'Ὲ',
|
||||
'Ὴ' => 'Ὴ',
|
||||
'ῌ' => 'ῌ',
|
||||
'῍' => '῍',
|
||||
'῎' => '῎',
|
||||
'῏' => '῏',
|
||||
'ῐ' => 'ῐ',
|
||||
'ῑ' => 'ῑ',
|
||||
'ῒ' => 'ῒ',
|
||||
'ῖ' => 'ῖ',
|
||||
'ῗ' => 'ῗ',
|
||||
'Ῐ' => 'Ῐ',
|
||||
'Ῑ' => 'Ῑ',
|
||||
'Ὶ' => 'Ὶ',
|
||||
'῝' => '῝',
|
||||
'῞' => '῞',
|
||||
'῟' => '῟',
|
||||
'ῠ' => 'ῠ',
|
||||
'ῡ' => 'ῡ',
|
||||
'ῢ' => 'ῢ',
|
||||
'ῤ' => 'ῤ',
|
||||
'ῥ' => 'ῥ',
|
||||
'ῦ' => 'ῦ',
|
||||
'ῧ' => 'ῧ',
|
||||
'Ῠ' => 'Ῠ',
|
||||
'Ῡ' => 'Ῡ',
|
||||
'Ὺ' => 'Ὺ',
|
||||
'Ῥ' => 'Ῥ',
|
||||
'῭' => '῭',
|
||||
'ῲ' => 'ῲ',
|
||||
'ῳ' => 'ῳ',
|
||||
'ῴ' => 'ῴ',
|
||||
'ῶ' => 'ῶ',
|
||||
'ῷ' => 'ῷ',
|
||||
'Ὸ' => 'Ὸ',
|
||||
'Ὼ' => 'Ὼ',
|
||||
'ῼ' => 'ῼ',
|
||||
'↚' => '↚',
|
||||
'↛' => '↛',
|
||||
'↮' => '↮',
|
||||
'⇍' => '⇍',
|
||||
'⇎' => '⇎',
|
||||
'⇏' => '⇏',
|
||||
'∄' => '∄',
|
||||
'∉' => '∉',
|
||||
'∌' => '∌',
|
||||
'∤' => '∤',
|
||||
'∦' => '∦',
|
||||
'≁' => '≁',
|
||||
'≄' => '≄',
|
||||
'≇' => '≇',
|
||||
'≉' => '≉',
|
||||
'≠' => '≠',
|
||||
'≢' => '≢',
|
||||
'≭' => '≭',
|
||||
'≮' => '≮',
|
||||
'≯' => '≯',
|
||||
'≰' => '≰',
|
||||
'≱' => '≱',
|
||||
'≴' => '≴',
|
||||
'≵' => '≵',
|
||||
'≸' => '≸',
|
||||
'≹' => '≹',
|
||||
'⊀' => '⊀',
|
||||
'⊁' => '⊁',
|
||||
'⊄' => '⊄',
|
||||
'⊅' => '⊅',
|
||||
'⊈' => '⊈',
|
||||
'⊉' => '⊉',
|
||||
'⊬' => '⊬',
|
||||
'⊭' => '⊭',
|
||||
'⊮' => '⊮',
|
||||
'⊯' => '⊯',
|
||||
'⋠' => '⋠',
|
||||
'⋡' => '⋡',
|
||||
'⋢' => '⋢',
|
||||
'⋣' => '⋣',
|
||||
'⋪' => '⋪',
|
||||
'⋫' => '⋫',
|
||||
'⋬' => '⋬',
|
||||
'⋭' => '⋭',
|
||||
'が' => 'が',
|
||||
'ぎ' => 'ぎ',
|
||||
'ぐ' => 'ぐ',
|
||||
'げ' => 'げ',
|
||||
'ご' => 'ご',
|
||||
'ざ' => 'ざ',
|
||||
'じ' => 'じ',
|
||||
'ず' => 'ず',
|
||||
'ぜ' => 'ぜ',
|
||||
'ぞ' => 'ぞ',
|
||||
'だ' => 'だ',
|
||||
'ぢ' => 'ぢ',
|
||||
'づ' => 'づ',
|
||||
'で' => 'で',
|
||||
'ど' => 'ど',
|
||||
'ば' => 'ば',
|
||||
'ぱ' => 'ぱ',
|
||||
'び' => 'び',
|
||||
'ぴ' => 'ぴ',
|
||||
'ぶ' => 'ぶ',
|
||||
'ぷ' => 'ぷ',
|
||||
'べ' => 'べ',
|
||||
'ぺ' => 'ぺ',
|
||||
'ぼ' => 'ぼ',
|
||||
'ぽ' => 'ぽ',
|
||||
'ゔ' => 'ゔ',
|
||||
'ゞ' => 'ゞ',
|
||||
'ガ' => 'ガ',
|
||||
'ギ' => 'ギ',
|
||||
'グ' => 'グ',
|
||||
'ゲ' => 'ゲ',
|
||||
'ゴ' => 'ゴ',
|
||||
'ザ' => 'ザ',
|
||||
'ジ' => 'ジ',
|
||||
'ズ' => 'ズ',
|
||||
'ゼ' => 'ゼ',
|
||||
'ゾ' => 'ゾ',
|
||||
'ダ' => 'ダ',
|
||||
'ヂ' => 'ヂ',
|
||||
'ヅ' => 'ヅ',
|
||||
'デ' => 'デ',
|
||||
'ド' => 'ド',
|
||||
'バ' => 'バ',
|
||||
'パ' => 'パ',
|
||||
'ビ' => 'ビ',
|
||||
'ピ' => 'ピ',
|
||||
'ブ' => 'ブ',
|
||||
'プ' => 'プ',
|
||||
'ベ' => 'ベ',
|
||||
'ペ' => 'ペ',
|
||||
'ボ' => 'ボ',
|
||||
'ポ' => 'ポ',
|
||||
'ヴ' => 'ヴ',
|
||||
'ヷ' => 'ヷ',
|
||||
'ヸ' => 'ヸ',
|
||||
'ヹ' => 'ヹ',
|
||||
'ヺ' => 'ヺ',
|
||||
'ヾ' => 'ヾ',
|
||||
'𑂚' => '𑂚',
|
||||
'𑂜' => '𑂜',
|
||||
'𑂫' => '𑂫',
|
||||
'𑄮' => '𑄮',
|
||||
'𑄯' => '𑄯',
|
||||
'𑍋' => '𑍋',
|
||||
'𑍌' => '𑍌',
|
||||
'𑒻' => '𑒻',
|
||||
'𑒼' => '𑒼',
|
||||
'𑒾' => '𑒾',
|
||||
'𑖺' => '𑖺',
|
||||
'𑖻' => '𑖻',
|
||||
'𑤸' => '𑤸',
|
||||
);
|
2065
vendor/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalDecomposition.php
vendored
Normal file
2065
vendor/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalDecomposition.php
vendored
Normal file
File diff suppressed because it is too large
Load diff
876
vendor/symfony/polyfill-intl-normalizer/Resources/unidata/combiningClass.php
vendored
Normal file
876
vendor/symfony/polyfill-intl-normalizer/Resources/unidata/combiningClass.php
vendored
Normal file
|
@ -0,0 +1,876 @@
|
|||
<?php
|
||||
|
||||
return array (
|
||||
'̀' => 230,
|
||||
'́' => 230,
|
||||
'̂' => 230,
|
||||
'̃' => 230,
|
||||
'̄' => 230,
|
||||
'̅' => 230,
|
||||
'̆' => 230,
|
||||
'̇' => 230,
|
||||
'̈' => 230,
|
||||
'̉' => 230,
|
||||
'̊' => 230,
|
||||
'̋' => 230,
|
||||
'̌' => 230,
|
||||
'̍' => 230,
|
||||
'̎' => 230,
|
||||
'̏' => 230,
|
||||
'̐' => 230,
|
||||
'̑' => 230,
|
||||
'̒' => 230,
|
||||
'̓' => 230,
|
||||
'̔' => 230,
|
||||
'̕' => 232,
|
||||
'̖' => 220,
|
||||
'̗' => 220,
|
||||
'̘' => 220,
|
||||
'̙' => 220,
|
||||
'̚' => 232,
|
||||
'̛' => 216,
|
||||
'̜' => 220,
|
||||
'̝' => 220,
|
||||
'̞' => 220,
|
||||
'̟' => 220,
|
||||
'̠' => 220,
|
||||
'̡' => 202,
|
||||
'̢' => 202,
|
||||
'̣' => 220,
|
||||
'̤' => 220,
|
||||
'̥' => 220,
|
||||
'̦' => 220,
|
||||
'̧' => 202,
|
||||
'̨' => 202,
|
||||
'̩' => 220,
|
||||
'̪' => 220,
|
||||
'̫' => 220,
|
||||
'̬' => 220,
|
||||
'̭' => 220,
|
||||
'̮' => 220,
|
||||
'̯' => 220,
|
||||
'̰' => 220,
|
||||
'̱' => 220,
|
||||
'̲' => 220,
|
||||
'̳' => 220,
|
||||
'̴' => 1,
|
||||
'̵' => 1,
|
||||
'̶' => 1,
|
||||
'̷' => 1,
|
||||
'̸' => 1,
|
||||
'̹' => 220,
|
||||
'̺' => 220,
|
||||
'̻' => 220,
|
||||
'̼' => 220,
|
||||
'̽' => 230,
|
||||
'̾' => 230,
|
||||
'̿' => 230,
|
||||
'̀' => 230,
|
||||
'́' => 230,
|
||||
'͂' => 230,
|
||||
'̓' => 230,
|
||||
'̈́' => 230,
|
||||
'ͅ' => 240,
|
||||
'͆' => 230,
|
||||
'͇' => 220,
|
||||
'͈' => 220,
|
||||
'͉' => 220,
|
||||
'͊' => 230,
|
||||
'͋' => 230,
|
||||
'͌' => 230,
|
||||
'͍' => 220,
|
||||
'͎' => 220,
|
||||
'͐' => 230,
|
||||
'͑' => 230,
|
||||
'͒' => 230,
|
||||
'͓' => 220,
|
||||
'͔' => 220,
|
||||
'͕' => 220,
|
||||
'͖' => 220,
|
||||
'͗' => 230,
|
||||
'͘' => 232,
|
||||
'͙' => 220,
|
||||
'͚' => 220,
|
||||
'͛' => 230,
|
||||
'͜' => 233,
|
||||
'͝' => 234,
|
||||
'͞' => 234,
|
||||
'͟' => 233,
|
||||
'͠' => 234,
|
||||
'͡' => 234,
|
||||
'͢' => 233,
|
||||
'ͣ' => 230,
|
||||
'ͤ' => 230,
|
||||
'ͥ' => 230,
|
||||
'ͦ' => 230,
|
||||
'ͧ' => 230,
|
||||
'ͨ' => 230,
|
||||
'ͩ' => 230,
|
||||
'ͪ' => 230,
|
||||
'ͫ' => 230,
|
||||
'ͬ' => 230,
|
||||
'ͭ' => 230,
|
||||
'ͮ' => 230,
|
||||
'ͯ' => 230,
|
||||
'҃' => 230,
|
||||
'҄' => 230,
|
||||
'҅' => 230,
|
||||
'҆' => 230,
|
||||
'҇' => 230,
|
||||
'֑' => 220,
|
||||
'֒' => 230,
|
||||
'֓' => 230,
|
||||
'֔' => 230,
|
||||
'֕' => 230,
|
||||
'֖' => 220,
|
||||
'֗' => 230,
|
||||
'֘' => 230,
|
||||
'֙' => 230,
|
||||
'֚' => 222,
|
||||
'֛' => 220,
|
||||
'֜' => 230,
|
||||
'֝' => 230,
|
||||
'֞' => 230,
|
||||
'֟' => 230,
|
||||
'֠' => 230,
|
||||
'֡' => 230,
|
||||
'֢' => 220,
|
||||
'֣' => 220,
|
||||
'֤' => 220,
|
||||
'֥' => 220,
|
||||
'֦' => 220,
|
||||
'֧' => 220,
|
||||
'֨' => 230,
|
||||
'֩' => 230,
|
||||
'֪' => 220,
|
||||
'֫' => 230,
|
||||
'֬' => 230,
|
||||
'֭' => 222,
|
||||
'֮' => 228,
|
||||
'֯' => 230,
|
||||
'ְ' => 10,
|
||||
'ֱ' => 11,
|
||||
'ֲ' => 12,
|
||||
'ֳ' => 13,
|
||||
'ִ' => 14,
|
||||
'ֵ' => 15,
|
||||
'ֶ' => 16,
|
||||
'ַ' => 17,
|
||||
'ָ' => 18,
|
||||
'ֹ' => 19,
|
||||
'ֺ' => 19,
|
||||
'ֻ' => 20,
|
||||
'ּ' => 21,
|
||||
'ֽ' => 22,
|
||||
'ֿ' => 23,
|
||||
'ׁ' => 24,
|
||||
'ׂ' => 25,
|
||||
'ׄ' => 230,
|
||||
'ׅ' => 220,
|
||||
'ׇ' => 18,
|
||||
'ؐ' => 230,
|
||||
'ؑ' => 230,
|
||||
'ؒ' => 230,
|
||||
'ؓ' => 230,
|
||||
'ؔ' => 230,
|
||||
'ؕ' => 230,
|
||||
'ؖ' => 230,
|
||||
'ؗ' => 230,
|
||||
'ؘ' => 30,
|
||||
'ؙ' => 31,
|
||||
'ؚ' => 32,
|
||||
'ً' => 27,
|
||||
'ٌ' => 28,
|
||||
'ٍ' => 29,
|
||||
'َ' => 30,
|
||||
'ُ' => 31,
|
||||
'ِ' => 32,
|
||||
'ّ' => 33,
|
||||
'ْ' => 34,
|
||||
'ٓ' => 230,
|
||||
'ٔ' => 230,
|
||||
'ٕ' => 220,
|
||||
'ٖ' => 220,
|
||||
'ٗ' => 230,
|
||||
'٘' => 230,
|
||||
'ٙ' => 230,
|
||||
'ٚ' => 230,
|
||||
'ٛ' => 230,
|
||||
'ٜ' => 220,
|
||||
'ٝ' => 230,
|
||||
'ٞ' => 230,
|
||||
'ٟ' => 220,
|
||||
'ٰ' => 35,
|
||||
'ۖ' => 230,
|
||||
'ۗ' => 230,
|
||||
'ۘ' => 230,
|
||||
'ۙ' => 230,
|
||||
'ۚ' => 230,
|
||||
'ۛ' => 230,
|
||||
'ۜ' => 230,
|
||||
'۟' => 230,
|
||||
'۠' => 230,
|
||||
'ۡ' => 230,
|
||||
'ۢ' => 230,
|
||||
'ۣ' => 220,
|
||||
'ۤ' => 230,
|
||||
'ۧ' => 230,
|
||||
'ۨ' => 230,
|
||||
'۪' => 220,
|
||||
'۫' => 230,
|
||||
'۬' => 230,
|
||||
'ۭ' => 220,
|
||||
'ܑ' => 36,
|
||||
'ܰ' => 230,
|
||||
'ܱ' => 220,
|
||||
'ܲ' => 230,
|
||||
'ܳ' => 230,
|
||||
'ܴ' => 220,
|
||||
'ܵ' => 230,
|
||||
'ܶ' => 230,
|
||||
'ܷ' => 220,
|
||||
'ܸ' => 220,
|
||||
'ܹ' => 220,
|
||||
'ܺ' => 230,
|
||||
'ܻ' => 220,
|
||||
'ܼ' => 220,
|
||||
'ܽ' => 230,
|
||||
'ܾ' => 220,
|
||||
'ܿ' => 230,
|
||||
'݀' => 230,
|
||||
'݁' => 230,
|
||||
'݂' => 220,
|
||||
'݃' => 230,
|
||||
'݄' => 220,
|
||||
'݅' => 230,
|
||||
'݆' => 220,
|
||||
'݇' => 230,
|
||||
'݈' => 220,
|
||||
'݉' => 230,
|
||||
'݊' => 230,
|
||||
'߫' => 230,
|
||||
'߬' => 230,
|
||||
'߭' => 230,
|
||||
'߮' => 230,
|
||||
'߯' => 230,
|
||||
'߰' => 230,
|
||||
'߱' => 230,
|
||||
'߲' => 220,
|
||||
'߳' => 230,
|
||||
'߽' => 220,
|
||||
'ࠖ' => 230,
|
||||
'ࠗ' => 230,
|
||||
'࠘' => 230,
|
||||
'࠙' => 230,
|
||||
'ࠛ' => 230,
|
||||
'ࠜ' => 230,
|
||||
'ࠝ' => 230,
|
||||
'ࠞ' => 230,
|
||||
'ࠟ' => 230,
|
||||
'ࠠ' => 230,
|
||||
'ࠡ' => 230,
|
||||
'ࠢ' => 230,
|
||||
'ࠣ' => 230,
|
||||
'ࠥ' => 230,
|
||||
'ࠦ' => 230,
|
||||
'ࠧ' => 230,
|
||||
'ࠩ' => 230,
|
||||
'ࠪ' => 230,
|
||||
'ࠫ' => 230,
|
||||
'ࠬ' => 230,
|
||||
'࠭' => 230,
|
||||
'࡙' => 220,
|
||||
'࡚' => 220,
|
||||
'࡛' => 220,
|
||||
'࣓' => 220,
|
||||
'ࣔ' => 230,
|
||||
'ࣕ' => 230,
|
||||
'ࣖ' => 230,
|
||||
'ࣗ' => 230,
|
||||
'ࣘ' => 230,
|
||||
'ࣙ' => 230,
|
||||
'ࣚ' => 230,
|
||||
'ࣛ' => 230,
|
||||
'ࣜ' => 230,
|
||||
'ࣝ' => 230,
|
||||
'ࣞ' => 230,
|
||||
'ࣟ' => 230,
|
||||
'࣠' => 230,
|
||||
'࣡' => 230,
|
||||
'ࣣ' => 220,
|
||||
'ࣤ' => 230,
|
||||
'ࣥ' => 230,
|
||||
'ࣦ' => 220,
|
||||
'ࣧ' => 230,
|
||||
'ࣨ' => 230,
|
||||
'ࣩ' => 220,
|
||||
'࣪' => 230,
|
||||
'࣫' => 230,
|
||||
'࣬' => 230,
|
||||
'࣭' => 220,
|
||||
'࣮' => 220,
|
||||
'࣯' => 220,
|
||||
'ࣰ' => 27,
|
||||
'ࣱ' => 28,
|
||||
'ࣲ' => 29,
|
||||
'ࣳ' => 230,
|
||||
'ࣴ' => 230,
|
||||
'ࣵ' => 230,
|
||||
'ࣶ' => 220,
|
||||
'ࣷ' => 230,
|
||||
'ࣸ' => 230,
|
||||
'ࣹ' => 220,
|
||||
'ࣺ' => 220,
|
||||
'ࣻ' => 230,
|
||||
'ࣼ' => 230,
|
||||
'ࣽ' => 230,
|
||||
'ࣾ' => 230,
|
||||
'ࣿ' => 230,
|
||||
'़' => 7,
|
||||
'्' => 9,
|
||||
'॑' => 230,
|
||||
'॒' => 220,
|
||||
'॓' => 230,
|
||||
'॔' => 230,
|
||||
'়' => 7,
|
||||
'্' => 9,
|
||||
'৾' => 230,
|
||||
'਼' => 7,
|
||||
'੍' => 9,
|
||||
'઼' => 7,
|
||||
'્' => 9,
|
||||
'଼' => 7,
|
||||
'୍' => 9,
|
||||
'்' => 9,
|
||||
'్' => 9,
|
||||
'ౕ' => 84,
|
||||
'ౖ' => 91,
|
||||
'಼' => 7,
|
||||
'್' => 9,
|
||||
'഻' => 9,
|
||||
'഼' => 9,
|
||||
'്' => 9,
|
||||
'්' => 9,
|
||||
'ุ' => 103,
|
||||
'ู' => 103,
|
||||
'ฺ' => 9,
|
||||
'่' => 107,
|
||||
'้' => 107,
|
||||
'๊' => 107,
|
||||
'๋' => 107,
|
||||
'ຸ' => 118,
|
||||
'ູ' => 118,
|
||||
'຺' => 9,
|
||||
'່' => 122,
|
||||
'້' => 122,
|
||||
'໊' => 122,
|
||||
'໋' => 122,
|
||||
'༘' => 220,
|
||||
'༙' => 220,
|
||||
'༵' => 220,
|
||||
'༷' => 220,
|
||||
'༹' => 216,
|
||||
'ཱ' => 129,
|
||||
'ི' => 130,
|
||||
'ུ' => 132,
|
||||
'ེ' => 130,
|
||||
'ཻ' => 130,
|
||||
'ོ' => 130,
|
||||
'ཽ' => 130,
|
||||
'ྀ' => 130,
|
||||
'ྂ' => 230,
|
||||
'ྃ' => 230,
|
||||
'྄' => 9,
|
||||
'྆' => 230,
|
||||
'྇' => 230,
|
||||
'࿆' => 220,
|
||||
'့' => 7,
|
||||
'္' => 9,
|
||||
'်' => 9,
|
||||
'ႍ' => 220,
|
||||
'፝' => 230,
|
||||
'፞' => 230,
|
||||
'፟' => 230,
|
||||
'᜔' => 9,
|
||||
'᜴' => 9,
|
||||
'្' => 9,
|
||||
'៝' => 230,
|
||||
'ᢩ' => 228,
|
||||
'᤹' => 222,
|
||||
'᤺' => 230,
|
||||
'᤻' => 220,
|
||||
'ᨗ' => 230,
|
||||
'ᨘ' => 220,
|
||||
'᩠' => 9,
|
||||
'᩵' => 230,
|
||||
'᩶' => 230,
|
||||
'᩷' => 230,
|
||||
'᩸' => 230,
|
||||
'᩹' => 230,
|
||||
'᩺' => 230,
|
||||
'᩻' => 230,
|
||||
'᩼' => 230,
|
||||
'᩿' => 220,
|
||||
'᪰' => 230,
|
||||
'᪱' => 230,
|
||||
'᪲' => 230,
|
||||
'᪳' => 230,
|
||||
'᪴' => 230,
|
||||
'᪵' => 220,
|
||||
'᪶' => 220,
|
||||
'᪷' => 220,
|
||||
'᪸' => 220,
|
||||
'᪹' => 220,
|
||||
'᪺' => 220,
|
||||
'᪻' => 230,
|
||||
'᪼' => 230,
|
||||
'᪽' => 220,
|
||||
'ᪿ' => 220,
|
||||
'ᫀ' => 220,
|
||||
'᬴' => 7,
|
||||
'᭄' => 9,
|
||||
'᭫' => 230,
|
||||
'᭬' => 220,
|
||||
'᭭' => 230,
|
||||
'᭮' => 230,
|
||||
'᭯' => 230,
|
||||
'᭰' => 230,
|
||||
'᭱' => 230,
|
||||
'᭲' => 230,
|
||||
'᭳' => 230,
|
||||
'᮪' => 9,
|
||||
'᮫' => 9,
|
||||
'᯦' => 7,
|
||||
'᯲' => 9,
|
||||
'᯳' => 9,
|
||||
'᰷' => 7,
|
||||
'᳐' => 230,
|
||||
'᳑' => 230,
|
||||
'᳒' => 230,
|
||||
'᳔' => 1,
|
||||
'᳕' => 220,
|
||||
'᳖' => 220,
|
||||
'᳗' => 220,
|
||||
'᳘' => 220,
|
||||
'᳙' => 220,
|
||||
'᳚' => 230,
|
||||
'᳛' => 230,
|
||||
'᳜' => 220,
|
||||
'᳝' => 220,
|
||||
'᳞' => 220,
|
||||
'᳟' => 220,
|
||||
'᳠' => 230,
|
||||
'᳢' => 1,
|
||||
'᳣' => 1,
|
||||
'᳤' => 1,
|
||||
'᳥' => 1,
|
||||
'᳦' => 1,
|
||||
'᳧' => 1,
|
||||
'᳨' => 1,
|
||||
'᳭' => 220,
|
||||
'᳴' => 230,
|
||||
'᳸' => 230,
|
||||
'᳹' => 230,
|
||||
'᷀' => 230,
|
||||
'᷁' => 230,
|
||||
'᷂' => 220,
|
||||
'᷃' => 230,
|
||||
'᷄' => 230,
|
||||
'᷅' => 230,
|
||||
'᷆' => 230,
|
||||
'᷇' => 230,
|
||||
'᷈' => 230,
|
||||
'᷉' => 230,
|
||||
'᷊' => 220,
|
||||
'᷋' => 230,
|
||||
'᷌' => 230,
|
||||
'᷍' => 234,
|
||||
'᷎' => 214,
|
||||
'᷏' => 220,
|
||||
'᷐' => 202,
|
||||
'᷑' => 230,
|
||||
'᷒' => 230,
|
||||
'ᷓ' => 230,
|
||||
'ᷔ' => 230,
|
||||
'ᷕ' => 230,
|
||||
'ᷖ' => 230,
|
||||
'ᷗ' => 230,
|
||||
'ᷘ' => 230,
|
||||
'ᷙ' => 230,
|
||||
'ᷚ' => 230,
|
||||
'ᷛ' => 230,
|
||||
'ᷜ' => 230,
|
||||
'ᷝ' => 230,
|
||||
'ᷞ' => 230,
|
||||
'ᷟ' => 230,
|
||||
'ᷠ' => 230,
|
||||
'ᷡ' => 230,
|
||||
'ᷢ' => 230,
|
||||
'ᷣ' => 230,
|
||||
'ᷤ' => 230,
|
||||
'ᷥ' => 230,
|
||||
'ᷦ' => 230,
|
||||
'ᷧ' => 230,
|
||||
'ᷨ' => 230,
|
||||
'ᷩ' => 230,
|
||||
'ᷪ' => 230,
|
||||
'ᷫ' => 230,
|
||||
'ᷬ' => 230,
|
||||
'ᷭ' => 230,
|
||||
'ᷮ' => 230,
|
||||
'ᷯ' => 230,
|
||||
'ᷰ' => 230,
|
||||
'ᷱ' => 230,
|
||||
'ᷲ' => 230,
|
||||
'ᷳ' => 230,
|
||||
'ᷴ' => 230,
|
||||
'᷵' => 230,
|
||||
'᷶' => 232,
|
||||
'᷷' => 228,
|
||||
'᷸' => 228,
|
||||
'᷹' => 220,
|
||||
'᷻' => 230,
|
||||
'᷼' => 233,
|
||||
'᷽' => 220,
|
||||
'᷾' => 230,
|
||||
'᷿' => 220,
|
||||
'⃐' => 230,
|
||||
'⃑' => 230,
|
||||
'⃒' => 1,
|
||||
'⃓' => 1,
|
||||
'⃔' => 230,
|
||||
'⃕' => 230,
|
||||
'⃖' => 230,
|
||||
'⃗' => 230,
|
||||
'⃘' => 1,
|
||||
'⃙' => 1,
|
||||
'⃚' => 1,
|
||||
'⃛' => 230,
|
||||
'⃜' => 230,
|
||||
'⃡' => 230,
|
||||
'⃥' => 1,
|
||||
'⃦' => 1,
|
||||
'⃧' => 230,
|
||||
'⃨' => 220,
|
||||
'⃩' => 230,
|
||||
'⃪' => 1,
|
||||
'⃫' => 1,
|
||||
'⃬' => 220,
|
||||
'⃭' => 220,
|
||||
'⃮' => 220,
|
||||
'⃯' => 220,
|
||||
'⃰' => 230,
|
||||
'⳯' => 230,
|
||||
'⳰' => 230,
|
||||
'⳱' => 230,
|
||||
'⵿' => 9,
|
||||
'ⷠ' => 230,
|
||||
'ⷡ' => 230,
|
||||
'ⷢ' => 230,
|
||||
'ⷣ' => 230,
|
||||
'ⷤ' => 230,
|
||||
'ⷥ' => 230,
|
||||
'ⷦ' => 230,
|
||||
'ⷧ' => 230,
|
||||
'ⷨ' => 230,
|
||||
'ⷩ' => 230,
|
||||
'ⷪ' => 230,
|
||||
'ⷫ' => 230,
|
||||
'ⷬ' => 230,
|
||||
'ⷭ' => 230,
|
||||
'ⷮ' => 230,
|
||||
'ⷯ' => 230,
|
||||
'ⷰ' => 230,
|
||||
'ⷱ' => 230,
|
||||
'ⷲ' => 230,
|
||||
'ⷳ' => 230,
|
||||
'ⷴ' => 230,
|
||||
'ⷵ' => 230,
|
||||
'ⷶ' => 230,
|
||||
'ⷷ' => 230,
|
||||
'ⷸ' => 230,
|
||||
'ⷹ' => 230,
|
||||
'ⷺ' => 230,
|
||||
'ⷻ' => 230,
|
||||
'ⷼ' => 230,
|
||||
'ⷽ' => 230,
|
||||
'ⷾ' => 230,
|
||||
'ⷿ' => 230,
|
||||
'〪' => 218,
|
||||
'〫' => 228,
|
||||
'〬' => 232,
|
||||
'〭' => 222,
|
||||
'〮' => 224,
|
||||
'〯' => 224,
|
||||
'゙' => 8,
|
||||
'゚' => 8,
|
||||
'꙯' => 230,
|
||||
'ꙴ' => 230,
|
||||
'ꙵ' => 230,
|
||||
'ꙶ' => 230,
|
||||
'ꙷ' => 230,
|
||||
'ꙸ' => 230,
|
||||
'ꙹ' => 230,
|
||||
'ꙺ' => 230,
|
||||
'ꙻ' => 230,
|
||||
'꙼' => 230,
|
||||
'꙽' => 230,
|
||||
'ꚞ' => 230,
|
||||
'ꚟ' => 230,
|
||||
'꛰' => 230,
|
||||
'꛱' => 230,
|
||||
'꠆' => 9,
|
||||
'꠬' => 9,
|
||||
'꣄' => 9,
|
||||
'꣠' => 230,
|
||||
'꣡' => 230,
|
||||
'꣢' => 230,
|
||||
'꣣' => 230,
|
||||
'꣤' => 230,
|
||||
'꣥' => 230,
|
||||
'꣦' => 230,
|
||||
'꣧' => 230,
|
||||
'꣨' => 230,
|
||||
'꣩' => 230,
|
||||
'꣪' => 230,
|
||||
'꣫' => 230,
|
||||
'꣬' => 230,
|
||||
'꣭' => 230,
|
||||
'꣮' => 230,
|
||||
'꣯' => 230,
|
||||
'꣰' => 230,
|
||||
'꣱' => 230,
|
||||
'꤫' => 220,
|
||||
'꤬' => 220,
|
||||
'꤭' => 220,
|
||||
'꥓' => 9,
|
||||
'꦳' => 7,
|
||||
'꧀' => 9,
|
||||
'ꪰ' => 230,
|
||||
'ꪲ' => 230,
|
||||
'ꪳ' => 230,
|
||||
'ꪴ' => 220,
|
||||
'ꪷ' => 230,
|
||||
'ꪸ' => 230,
|
||||
'ꪾ' => 230,
|
||||
'꪿' => 230,
|
||||
'꫁' => 230,
|
||||
'꫶' => 9,
|
||||
'꯭' => 9,
|
||||
'ﬞ' => 26,
|
||||
'︠' => 230,
|
||||
'︡' => 230,
|
||||
'︢' => 230,
|
||||
'︣' => 230,
|
||||
'︤' => 230,
|
||||
'︥' => 230,
|
||||
'︦' => 230,
|
||||
'︧' => 220,
|
||||
'︨' => 220,
|
||||
'︩' => 220,
|
||||
'︪' => 220,
|
||||
'︫' => 220,
|
||||
'︬' => 220,
|
||||
'︭' => 220,
|
||||
'︮' => 230,
|
||||
'︯' => 230,
|
||||
'𐇽' => 220,
|
||||
'𐋠' => 220,
|
||||
'𐍶' => 230,
|
||||
'𐍷' => 230,
|
||||
'𐍸' => 230,
|
||||
'𐍹' => 230,
|
||||
'𐍺' => 230,
|
||||
'𐨍' => 220,
|
||||
'𐨏' => 230,
|
||||
'𐨸' => 230,
|
||||
'𐨹' => 1,
|
||||
'𐨺' => 220,
|
||||
'𐨿' => 9,
|
||||
'𐫥' => 230,
|
||||
'𐫦' => 220,
|
||||
'𐴤' => 230,
|
||||
'𐴥' => 230,
|
||||
'𐴦' => 230,
|
||||
'𐴧' => 230,
|
||||
'𐺫' => 230,
|
||||
'𐺬' => 230,
|
||||
'𐽆' => 220,
|
||||
'𐽇' => 220,
|
||||
'𐽈' => 230,
|
||||
'𐽉' => 230,
|
||||
'𐽊' => 230,
|
||||
'𐽋' => 220,
|
||||
'𐽌' => 230,
|
||||
'𐽍' => 220,
|
||||
'𐽎' => 220,
|
||||
'𐽏' => 220,
|
||||
'𐽐' => 220,
|
||||
'𑁆' => 9,
|
||||
'𑁿' => 9,
|
||||
'𑂹' => 9,
|
||||
'𑂺' => 7,
|
||||
'𑄀' => 230,
|
||||
'𑄁' => 230,
|
||||
'𑄂' => 230,
|
||||
'𑄳' => 9,
|
||||
'𑄴' => 9,
|
||||
'𑅳' => 7,
|
||||
'𑇀' => 9,
|
||||
'𑇊' => 7,
|
||||
'𑈵' => 9,
|
||||
'𑈶' => 7,
|
||||
'𑋩' => 7,
|
||||
'𑋪' => 9,
|
||||
'𑌻' => 7,
|
||||
'𑌼' => 7,
|
||||
'𑍍' => 9,
|
||||
'𑍦' => 230,
|
||||
'𑍧' => 230,
|
||||
'𑍨' => 230,
|
||||
'𑍩' => 230,
|
||||
'𑍪' => 230,
|
||||
'𑍫' => 230,
|
||||
'𑍬' => 230,
|
||||
'𑍰' => 230,
|
||||
'𑍱' => 230,
|
||||
'𑍲' => 230,
|
||||
'𑍳' => 230,
|
||||
'𑍴' => 230,
|
||||
'𑑂' => 9,
|
||||
'𑑆' => 7,
|
||||
'𑑞' => 230,
|
||||
'𑓂' => 9,
|
||||
'𑓃' => 7,
|
||||
'𑖿' => 9,
|
||||
'𑗀' => 7,
|
||||
'𑘿' => 9,
|
||||
'𑚶' => 9,
|
||||
'𑚷' => 7,
|
||||
'𑜫' => 9,
|
||||
'𑠹' => 9,
|
||||
'𑠺' => 7,
|
||||
'𑤽' => 9,
|
||||
'𑤾' => 9,
|
||||
'𑥃' => 7,
|
||||
'𑧠' => 9,
|
||||
'𑨴' => 9,
|
||||
'𑩇' => 9,
|
||||
'𑪙' => 9,
|
||||
'𑰿' => 9,
|
||||
'𑵂' => 7,
|
||||
'𑵄' => 9,
|
||||
'𑵅' => 9,
|
||||
'𑶗' => 9,
|
||||
'𖫰' => 1,
|
||||
'𖫱' => 1,
|
||||
'𖫲' => 1,
|
||||
'𖫳' => 1,
|
||||
'𖫴' => 1,
|
||||
'𖬰' => 230,
|
||||
'𖬱' => 230,
|
||||
'𖬲' => 230,
|
||||
'𖬳' => 230,
|
||||
'𖬴' => 230,
|
||||
'𖬵' => 230,
|
||||
'𖬶' => 230,
|
||||
'𖿰' => 6,
|
||||
'𖿱' => 6,
|
||||
'𛲞' => 1,
|
||||
'𝅥' => 216,
|
||||
'𝅦' => 216,
|
||||
'𝅧' => 1,
|
||||
'𝅨' => 1,
|
||||
'𝅩' => 1,
|
||||
'𝅭' => 226,
|
||||
'𝅮' => 216,
|
||||
'𝅯' => 216,
|
||||
'𝅰' => 216,
|
||||
'𝅱' => 216,
|
||||
'𝅲' => 216,
|
||||
'𝅻' => 220,
|
||||
'𝅼' => 220,
|
||||
'𝅽' => 220,
|
||||
'𝅾' => 220,
|
||||
'𝅿' => 220,
|
||||
'𝆀' => 220,
|
||||
'𝆁' => 220,
|
||||
'𝆂' => 220,
|
||||
'𝆅' => 230,
|
||||
'𝆆' => 230,
|
||||
'𝆇' => 230,
|
||||
'𝆈' => 230,
|
||||
'𝆉' => 230,
|
||||
'𝆊' => 220,
|
||||
'𝆋' => 220,
|
||||
'𝆪' => 230,
|
||||
'𝆫' => 230,
|
||||
'𝆬' => 230,
|
||||
'𝆭' => 230,
|
||||
'𝉂' => 230,
|
||||
'𝉃' => 230,
|
||||
'𝉄' => 230,
|
||||
'𞀀' => 230,
|
||||
'𞀁' => 230,
|
||||
'𞀂' => 230,
|
||||
'𞀃' => 230,
|
||||
'𞀄' => 230,
|
||||
'𞀅' => 230,
|
||||
'𞀆' => 230,
|
||||
'𞀈' => 230,
|
||||
'𞀉' => 230,
|
||||
'𞀊' => 230,
|
||||
'𞀋' => 230,
|
||||
'𞀌' => 230,
|
||||
'𞀍' => 230,
|
||||
'𞀎' => 230,
|
||||
'𞀏' => 230,
|
||||
'𞀐' => 230,
|
||||
'𞀑' => 230,
|
||||
'𞀒' => 230,
|
||||
'𞀓' => 230,
|
||||
'𞀔' => 230,
|
||||
'𞀕' => 230,
|
||||
'𞀖' => 230,
|
||||
'𞀗' => 230,
|
||||
'𞀘' => 230,
|
||||
'𞀛' => 230,
|
||||
'𞀜' => 230,
|
||||
'𞀝' => 230,
|
||||
'𞀞' => 230,
|
||||
'𞀟' => 230,
|
||||
'𞀠' => 230,
|
||||
'𞀡' => 230,
|
||||
'𞀣' => 230,
|
||||
'𞀤' => 230,
|
||||
'𞀦' => 230,
|
||||
'𞀧' => 230,
|
||||
'𞀨' => 230,
|
||||
'𞀩' => 230,
|
||||
'𞀪' => 230,
|
||||
'𞄰' => 230,
|
||||
'𞄱' => 230,
|
||||
'𞄲' => 230,
|
||||
'𞄳' => 230,
|
||||
'𞄴' => 230,
|
||||
'𞄵' => 230,
|
||||
'𞄶' => 230,
|
||||
'𞋬' => 230,
|
||||
'𞋭' => 230,
|
||||
'𞋮' => 230,
|
||||
'𞋯' => 230,
|
||||
'𞣐' => 220,
|
||||
'𞣑' => 220,
|
||||
'𞣒' => 220,
|
||||
'𞣓' => 220,
|
||||
'𞣔' => 220,
|
||||
'𞣕' => 220,
|
||||
'𞣖' => 220,
|
||||
'𞥄' => 230,
|
||||
'𞥅' => 230,
|
||||
'𞥆' => 230,
|
||||
'𞥇' => 230,
|
||||
'𞥈' => 230,
|
||||
'𞥉' => 230,
|
||||
'𞥊' => 7,
|
||||
);
|
3695
vendor/symfony/polyfill-intl-normalizer/Resources/unidata/compatibilityDecomposition.php
vendored
Normal file
3695
vendor/symfony/polyfill-intl-normalizer/Resources/unidata/compatibilityDecomposition.php
vendored
Normal file
File diff suppressed because it is too large
Load diff
23
vendor/symfony/polyfill-intl-normalizer/bootstrap.php
vendored
Normal file
23
vendor/symfony/polyfill-intl-normalizer/bootstrap.php
vendored
Normal file
|
@ -0,0 +1,23 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
use Symfony\Polyfill\Intl\Normalizer as p;
|
||||
|
||||
if (\PHP_VERSION_ID >= 80000) {
|
||||
return require __DIR__.'/bootstrap80.php';
|
||||
}
|
||||
|
||||
if (!function_exists('normalizer_is_normalized')) {
|
||||
function normalizer_is_normalized($string, $form = p\Normalizer::FORM_C) { return p\Normalizer::isNormalized($string, $form); }
|
||||
}
|
||||
if (!function_exists('normalizer_normalize')) {
|
||||
function normalizer_normalize($string, $form = p\Normalizer::FORM_C) { return p\Normalizer::normalize($string, $form); }
|
||||
}
|
19
vendor/symfony/polyfill-intl-normalizer/bootstrap80.php
vendored
Normal file
19
vendor/symfony/polyfill-intl-normalizer/bootstrap80.php
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
use Symfony\Polyfill\Intl\Normalizer as p;
|
||||
|
||||
if (!function_exists('normalizer_is_normalized')) {
|
||||
function normalizer_is_normalized(?string $string, ?int $form = p\Normalizer::FORM_C): bool { return p\Normalizer::isNormalized((string) $string, (int) $form); }
|
||||
}
|
||||
if (!function_exists('normalizer_normalize')) {
|
||||
function normalizer_normalize(?string $string, ?int $form = p\Normalizer::FORM_C): string|false { return p\Normalizer::normalize((string) $string, (int) $form); }
|
||||
}
|
36
vendor/symfony/polyfill-intl-normalizer/composer.json
vendored
Normal file
36
vendor/symfony/polyfill-intl-normalizer/composer.json
vendored
Normal file
|
@ -0,0 +1,36 @@
|
|||
{
|
||||
"name": "symfony/polyfill-intl-normalizer",
|
||||
"type": "library",
|
||||
"description": "Symfony polyfill for intl's Normalizer class and related functions",
|
||||
"keywords": ["polyfill", "shim", "compatibility", "portable", "intl", "normalizer"],
|
||||
"homepage": "https://symfony.com",
|
||||
"license": "MIT",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Nicolas Grekas",
|
||||
"email": "p@tchwork.com"
|
||||
},
|
||||
{
|
||||
"name": "Symfony Community",
|
||||
"homepage": "https://symfony.com/contributors"
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
"php": ">=7.2"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": { "Symfony\\Polyfill\\Intl\\Normalizer\\": "" },
|
||||
"files": [ "bootstrap.php" ],
|
||||
"classmap": [ "Resources/stubs" ]
|
||||
},
|
||||
"suggest": {
|
||||
"ext-intl": "For best performance"
|
||||
},
|
||||
"minimum-stability": "dev",
|
||||
"extra": {
|
||||
"thanks": {
|
||||
"name": "symfony/polyfill",
|
||||
"url": "https://github.com/symfony/polyfill"
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue