diff --git a/.env b/.env index 94407fc..a8d7b6d 100755 --- a/.env +++ b/.env @@ -15,31 +15,44 @@ APP_DOMAIN_TLD=test LOG_CHANNEL=stack +# Standard Database Connection DB_CONNECTION=mysql -DB_HOST=192.168.1.8 +DB_HOST=mysql DB_PORT=3306 -DB_DATABASE=cmssso_db1 -DB_USERNAME=kadmin -DB_PASSWORD=KT32vQ7ix +DB_DATABASE=stern_crm +DB_USERNAME=sail +DB_PASSWORD=password -DB_CONNECTION_STERN=mysql -DB_HOST_STERN=192.168.1.8 +# STERN Database Connection +DB_HOST_STERN=mysql-stern DB_PORT_STERN=3306 -DB_DATABASE_STERN=relaunch1 -DB_USERNAME_STERN=kadmin -DB_PASSWORD_STERN=KT32vQ7ix +DB_DATABASE_STERN=stern_db +DB_USERNAME_STERN=sail +DB_PASSWORD_STERN=password + +# Docker Port Forwards +FORWARD_DB_PORT=33064 +FORWARD_DB_PORT_STERN=33065 +FORWARD_REDIS_PORT=6379 +MYSQL_EXTRA_OPTIONS= BROADCAST_DRIVER=log CACHE_DRIVER=file +QUEUE_CONNECTION=sync SESSION_DRIVER=file SESSION_LIFETIME=120 -QUEUE_DRIVER=sync -REDIS_HOST=127.0.0.1 +REDIS_HOST=redis REDIS_PASSWORD=null REDIS_PORT=6379 +# Vite Port for Development +VITE_PORT=5173 +# Sail Configuration +WWWGROUP=1000 +WWWUSER=1000 +SAIL_XDEBUG_MODE=off MAIL_BBC=kevin@adametz.media MAIL_FEWO_EMPLOYEE=kevin@adametz.media diff --git a/.gitignore b/.gitignore index bf547c7..62510ac 100644 --- a/.gitignore +++ b/.gitignore @@ -25,11 +25,24 @@ Icon Network Trash Folder Temporary Items .apdisk +.idea/ +.claude/ +.cursor/ +.cursorrules/ +.cursorrules.md/ +.cursorrules.md.txt/ +.cursorrules.md.txt.txt/ +.cursorrules.md.txt.txt.txt/ /vendor /node_modules +/storage/app /storage/language /storage/framework /storage/logs /public/vendor -.idea +.idea/ +.vscode/ +_static/ +_work/ +_storage/ diff --git a/_ide_helper.php b/_ide_helper.php index 8f50f20..eb861cb 100644 --- a/_ide_helper.php +++ b/_ide_helper.php @@ -14,16 +14,14 @@ namespace Illuminate\Support\Facades { /** - * - * * @see \Illuminate\Contracts\Foundation\Application */ class App { /** * Get the version number of the application. * - * @return string - * @static + * @return string + * @static */ public static function version() { @@ -34,8 +32,8 @@ * Run the given array of bootstrap classes. * * @param string[] $bootstrappers - * @return void - * @static + * @return void + * @static */ public static function bootstrapWith($bootstrappers) { @@ -46,8 +44,8 @@ * Register a callback to run after loading the environment. * * @param \Closure $callback - * @return void - * @static + * @return void + * @static */ public static function afterLoadingEnvironment($callback) { @@ -59,8 +57,8 @@ * * @param string $bootstrapper * @param \Closure $callback - * @return void - * @static + * @return void + * @static */ public static function beforeBootstrapping($bootstrapper, $callback) { @@ -72,8 +70,8 @@ * * @param string $bootstrapper * @param \Closure $callback - * @return void - * @static + * @return void + * @static */ public static function afterBootstrapping($bootstrapper, $callback) { @@ -83,8 +81,8 @@ /** * Determine if the application has been bootstrapped before. * - * @return bool - * @static + * @return bool + * @static */ public static function hasBeenBootstrapped() { @@ -95,8 +93,8 @@ * Set the base path for the application. * * @param string $basePath - * @return \Illuminate\Foundation\Application - * @static + * @return \Illuminate\Foundation\Application + * @static */ public static function setBasePath($basePath) { @@ -107,8 +105,8 @@ * Get the path to the application "app" directory. * * @param string $path - * @return string - * @static + * @return string + * @static */ public static function path($path = '') { @@ -119,8 +117,8 @@ * Set the application directory. * * @param string $path - * @return \Illuminate\Foundation\Application - * @static + * @return \Illuminate\Foundation\Application + * @static */ public static function useAppPath($path) { @@ -131,8 +129,8 @@ * Get the base path of the Laravel installation. * * @param string $path - * @return string - * @static + * @return string + * @static */ public static function basePath($path = '') { @@ -143,8 +141,8 @@ * Get the path to the bootstrap directory. * * @param string $path - * @return string - * @static + * @return string + * @static */ public static function bootstrapPath($path = '') { @@ -155,8 +153,8 @@ * Get the path to the application configuration files. * * @param string $path - * @return string - * @static + * @return string + * @static */ public static function configPath($path = '') { @@ -167,8 +165,8 @@ * Get the path to the database directory. * * @param string $path - * @return string - * @static + * @return string + * @static */ public static function databasePath($path = '') { @@ -179,8 +177,8 @@ * Set the database directory. * * @param string $path - * @return \Illuminate\Foundation\Application - * @static + * @return \Illuminate\Foundation\Application + * @static */ public static function useDatabasePath($path) { @@ -190,8 +188,8 @@ /** * Get the path to the language files. * - * @return string - * @static + * @return string + * @static */ public static function langPath() { @@ -202,8 +200,8 @@ * Set the language file directory. * * @param string $path - * @return \Illuminate\Foundation\Application - * @static + * @return \Illuminate\Foundation\Application + * @static */ public static function useLangPath($path) { @@ -213,8 +211,8 @@ /** * Get the path to the public / web directory. * - * @return string - * @static + * @return string + * @static */ public static function publicPath() { @@ -224,8 +222,8 @@ /** * Get the path to the storage directory. * - * @return string - * @static + * @return string + * @static */ public static function storagePath() { @@ -236,8 +234,8 @@ * Set the storage directory. * * @param string $path - * @return \Illuminate\Foundation\Application - * @static + * @return \Illuminate\Foundation\Application + * @static */ public static function useStoragePath($path) { @@ -248,8 +246,8 @@ * Get the path to the resources directory. * * @param string $path - * @return string - * @static + * @return string + * @static */ public static function resourcePath($path = '') { @@ -262,8 +260,8 @@ * This method returns the first configured path in the array of view paths. * * @param string $path - * @return string - * @static + * @return string + * @static */ public static function viewPath($path = '') { @@ -273,8 +271,8 @@ /** * Get the path to the environment file directory. * - * @return string - * @static + * @return string + * @static */ public static function environmentPath() { @@ -285,8 +283,8 @@ * Set the directory for the environment file. * * @param string $path - * @return \Illuminate\Foundation\Application - * @static + * @return \Illuminate\Foundation\Application + * @static */ public static function useEnvironmentPath($path) { @@ -297,8 +295,8 @@ * Set the environment file to be loaded during bootstrapping. * * @param string $file - * @return \Illuminate\Foundation\Application - * @static + * @return \Illuminate\Foundation\Application + * @static */ public static function loadEnvironmentFrom($file) { @@ -308,8 +306,8 @@ /** * Get the environment file the application is using. * - * @return string - * @static + * @return string + * @static */ public static function environmentFile() { @@ -319,8 +317,8 @@ /** * Get the fully qualified path to the environment file. * - * @return string - * @static + * @return string + * @static */ public static function environmentFilePath() { @@ -331,8 +329,8 @@ * Get or check the current application environment. * * @param string|array $environments - * @return string|bool - * @static + * @return string|bool + * @static */ public static function environment(...$environments) { @@ -342,8 +340,8 @@ /** * Determine if the application is in the local environment. * - * @return bool - * @static + * @return bool + * @static */ public static function isLocal() { @@ -353,8 +351,8 @@ /** * Determine if the application is in the production environment. * - * @return bool - * @static + * @return bool + * @static */ public static function isProduction() { @@ -365,8 +363,8 @@ * Detect the application's current environment. * * @param \Closure $callback - * @return string - * @static + * @return string + * @static */ public static function detectEnvironment($callback) { @@ -376,8 +374,8 @@ /** * Determine if the application is running in the console. * - * @return bool - * @static + * @return bool + * @static */ public static function runningInConsole() { @@ -387,8 +385,8 @@ /** * Determine if the application is running unit tests. * - * @return bool - * @static + * @return bool + * @static */ public static function runningUnitTests() { @@ -398,8 +396,8 @@ /** * Determine if the application is running with debug mode enabled. * - * @return bool - * @static + * @return bool + * @static */ public static function hasDebugModeEnabled() { @@ -409,8 +407,8 @@ /** * Register all of the configured providers. * - * @return void - * @static + * @return void + * @static */ public static function registerConfiguredProviders() { @@ -422,8 +420,8 @@ * * @param \Illuminate\Support\ServiceProvider|string $provider * @param bool $force - * @return \Illuminate\Support\ServiceProvider - * @static + * @return \Illuminate\Support\ServiceProvider + * @static */ public static function register($provider, $force = false) { @@ -434,8 +432,8 @@ * Get the registered service provider instance if it exists. * * @param \Illuminate\Support\ServiceProvider|string $provider - * @return \Illuminate\Support\ServiceProvider|null - * @static + * @return \Illuminate\Support\ServiceProvider|null + * @static */ public static function getProvider($provider) { @@ -446,8 +444,8 @@ * Get the registered service provider instances if any exist. * * @param \Illuminate\Support\ServiceProvider|string $provider - * @return array - * @static + * @return array + * @static */ public static function getProviders($provider) { @@ -458,8 +456,8 @@ * Resolve a service provider instance from the class name. * * @param string $provider - * @return \Illuminate\Support\ServiceProvider - * @static + * @return \Illuminate\Support\ServiceProvider + * @static */ public static function resolveProvider($provider) { @@ -469,8 +467,8 @@ /** * Load and boot all of the remaining deferred providers. * - * @return void - * @static + * @return void + * @static */ public static function loadDeferredProviders() { @@ -481,8 +479,8 @@ * Load the provider for a deferred service. * * @param string $service - * @return void - * @static + * @return void + * @static */ public static function loadDeferredProvider($service) { @@ -494,8 +492,8 @@ * * @param string $provider * @param string|null $service - * @return void - * @static + * @return void + * @static */ public static function registerDeferredProvider($provider, $service = null) { @@ -507,8 +505,8 @@ * * @param string $abstract * @param array $parameters - * @return mixed - * @static + * @return mixed + * @static */ public static function make($abstract, $parameters = []) { @@ -519,8 +517,8 @@ * Determine if the given abstract type has been bound. * * @param string $abstract - * @return bool - * @static + * @return bool + * @static */ public static function bound($abstract) { @@ -530,8 +528,8 @@ /** * Determine if the application has booted. * - * @return bool - * @static + * @return bool + * @static */ public static function isBooted() { @@ -541,8 +539,8 @@ /** * Boot the application's service providers. * - * @return void - * @static + * @return void + * @static */ public static function boot() { @@ -553,8 +551,8 @@ * Register a new boot listener. * * @param callable $callback - * @return void - * @static + * @return void + * @static */ public static function booting($callback) { @@ -565,8 +563,8 @@ * Register a new "booted" listener. * * @param callable $callback - * @return void - * @static + * @return void + * @static */ public static function booted($callback) { @@ -576,8 +574,8 @@ /** * {@inheritdoc} * - * @return \Symfony\Component\HttpFoundation\Response - * @static + * @return \Symfony\Component\HttpFoundation\Response + * @static */ public static function handle($request, $type = 1, $catch = true) { @@ -587,8 +585,8 @@ /** * Determine if middleware has been disabled for the application. * - * @return bool - * @static + * @return bool + * @static */ public static function shouldSkipMiddleware() { @@ -598,8 +596,8 @@ /** * Get the path to the cached services.php file. * - * @return string - * @static + * @return string + * @static */ public static function getCachedServicesPath() { @@ -609,8 +607,8 @@ /** * Get the path to the cached packages.php file. * - * @return string - * @static + * @return string + * @static */ public static function getCachedPackagesPath() { @@ -620,8 +618,8 @@ /** * Determine if the application configuration is cached. * - * @return bool - * @static + * @return bool + * @static */ public static function configurationIsCached() { @@ -631,8 +629,8 @@ /** * Get the path to the configuration cache file. * - * @return string - * @static + * @return string + * @static */ public static function getCachedConfigPath() { @@ -642,8 +640,8 @@ /** * Determine if the application routes are cached. * - * @return bool - * @static + * @return bool + * @static */ public static function routesAreCached() { @@ -653,8 +651,8 @@ /** * Get the path to the routes cache file. * - * @return string - * @static + * @return string + * @static */ public static function getCachedRoutesPath() { @@ -664,8 +662,8 @@ /** * Determine if the application events are cached. * - * @return bool - * @static + * @return bool + * @static */ public static function eventsAreCached() { @@ -675,8 +673,8 @@ /** * Get the path to the events cache file. * - * @return string - * @static + * @return string + * @static */ public static function getCachedEventsPath() { @@ -687,8 +685,8 @@ * Add new prefix to list of absolute path prefixes. * * @param string $prefix - * @return \Illuminate\Foundation\Application - * @static + * @return \Illuminate\Foundation\Application + * @static */ public static function addAbsoluteCachePathPrefix($prefix) { @@ -698,8 +696,8 @@ /** * Determine if the application is currently down for maintenance. * - * @return bool - * @static + * @return bool + * @static */ public static function isDownForMaintenance() { @@ -712,10 +710,10 @@ * @param int $code * @param string $message * @param array $headers - * @return never + * @return never * @throws \Symfony\Component\HttpKernel\Exception\HttpException * @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException - * @static + * @static */ public static function abort($code, $message = '', $headers = []) { @@ -726,8 +724,8 @@ * Register a terminating callback with the application. * * @param callable|string $callback - * @return \Illuminate\Foundation\Application - * @static + * @return \Illuminate\Foundation\Application + * @static */ public static function terminating($callback) { @@ -737,8 +735,8 @@ /** * Terminate the application. * - * @return void - * @static + * @return void + * @static */ public static function terminate() { @@ -748,8 +746,8 @@ /** * Get the service providers that have been loaded. * - * @return array - * @static + * @return array + * @static */ public static function getLoadedProviders() { @@ -760,8 +758,8 @@ * Determine if the given service provider is loaded. * * @param string $provider - * @return bool - * @static + * @return bool + * @static */ public static function providerIsLoaded($provider) { @@ -771,8 +769,8 @@ /** * Get the application's deferred services. * - * @return array - * @static + * @return array + * @static */ public static function getDeferredServices() { @@ -783,8 +781,8 @@ * Set the application's deferred services. * * @param array $services - * @return void - * @static + * @return void + * @static */ public static function setDeferredServices($services) { @@ -795,8 +793,8 @@ * Add an array of services to the application's deferred services. * * @param array $services - * @return void - * @static + * @return void + * @static */ public static function addDeferredServices($services) { @@ -807,8 +805,8 @@ * Determine if the given service is a deferred service. * * @param string $service - * @return bool - * @static + * @return bool + * @static */ public static function isDeferredService($service) { @@ -819,8 +817,8 @@ * Configure the real-time facade namespace. * * @param string $namespace - * @return void - * @static + * @return void + * @static */ public static function provideFacades($namespace) { @@ -830,8 +828,8 @@ /** * Get the current application locale. * - * @return string - * @static + * @return string + * @static */ public static function getLocale() { @@ -841,8 +839,8 @@ /** * Get the current application locale. * - * @return string - * @static + * @return string + * @static */ public static function currentLocale() { @@ -852,8 +850,8 @@ /** * Get the current application fallback locale. * - * @return string - * @static + * @return string + * @static */ public static function getFallbackLocale() { @@ -864,8 +862,8 @@ * Set the current application locale. * * @param string $locale - * @return void - * @static + * @return void + * @static */ public static function setLocale($locale) { @@ -876,8 +874,8 @@ * Set the current application fallback locale. * * @param string $fallbackLocale - * @return void - * @static + * @return void + * @static */ public static function setFallbackLocale($fallbackLocale) { @@ -888,8 +886,8 @@ * Determine if the application locale is the given locale. * * @param string $locale - * @return bool - * @static + * @return bool + * @static */ public static function isLocale($locale) { @@ -899,8 +897,8 @@ /** * Register the core class aliases in the container. * - * @return void - * @static + * @return void + * @static */ public static function registerCoreContainerAliases() { @@ -910,8 +908,8 @@ /** * Flush the container of all bindings and resolved instances. * - * @return void - * @static + * @return void + * @static */ public static function flush() { @@ -921,9 +919,9 @@ /** * Get the application namespace. * - * @return string + * @return string * @throws \RuntimeException - * @static + * @static */ public static function getNamespace() { @@ -934,8 +932,8 @@ * Define a contextual binding. * * @param array|string $concrete - * @return \Illuminate\Contracts\Container\ContextualBindingBuilder - * @static + * @return \Illuminate\Contracts\Container\ContextualBindingBuilder + * @static */ public static function when($concrete) { //Method inherited from \Illuminate\Container\Container @@ -950,10 +948,10 @@ * `has($id)` returning true does not mean that `get($id)` will not throw an exception. * It does however mean that `get($id)` will not throw a `NotFoundExceptionInterface`. * - * @return bool + * @return bool * @param string $id Identifier of the entry to look for. - * @return bool - * @static + * @return bool + * @static */ public static function has($id) { //Method inherited from \Illuminate\Container\Container @@ -964,8 +962,8 @@ * Determine if the given abstract type has been resolved. * * @param string $abstract - * @return bool - * @static + * @return bool + * @static */ public static function resolved($abstract) { //Method inherited from \Illuminate\Container\Container @@ -976,8 +974,8 @@ * Determine if a given type is shared. * * @param string $abstract - * @return bool - * @static + * @return bool + * @static */ public static function isShared($abstract) { //Method inherited from \Illuminate\Container\Container @@ -988,8 +986,8 @@ * Determine if a given string is an alias. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function isAlias($name) { //Method inherited from \Illuminate\Container\Container @@ -1002,9 +1000,9 @@ * @param string $abstract * @param \Closure|string|null $concrete * @param bool $shared - * @return void + * @return void * @throws \TypeError - * @static + * @static */ public static function bind($abstract, $concrete = null, $shared = false) { //Method inherited from \Illuminate\Container\Container @@ -1015,8 +1013,8 @@ * Determine if the container has a method binding. * * @param string $method - * @return bool - * @static + * @return bool + * @static */ public static function hasMethodBinding($method) { //Method inherited from \Illuminate\Container\Container @@ -1028,8 +1026,8 @@ * * @param array|string $method * @param \Closure $callback - * @return void - * @static + * @return void + * @static */ public static function bindMethod($method, $callback) { //Method inherited from \Illuminate\Container\Container @@ -1041,8 +1039,8 @@ * * @param string $method * @param mixed $instance - * @return mixed - * @static + * @return mixed + * @static */ public static function callMethodBinding($method, $instance) { //Method inherited from \Illuminate\Container\Container @@ -1055,8 +1053,8 @@ * @param string $concrete * @param string $abstract * @param \Closure|string $implementation - * @return void - * @static + * @return void + * @static */ public static function addContextualBinding($concrete, $abstract, $implementation) { //Method inherited from \Illuminate\Container\Container @@ -1069,8 +1067,8 @@ * @param string $abstract * @param \Closure|string|null $concrete * @param bool $shared - * @return void - * @static + * @return void + * @static */ public static function bindIf($abstract, $concrete = null, $shared = false) { //Method inherited from \Illuminate\Container\Container @@ -1082,8 +1080,8 @@ * * @param string $abstract * @param \Closure|string|null $concrete - * @return void - * @static + * @return void + * @static */ public static function singleton($abstract, $concrete = null) { //Method inherited from \Illuminate\Container\Container @@ -1095,8 +1093,8 @@ * * @param string $abstract * @param \Closure|string|null $concrete - * @return void - * @static + * @return void + * @static */ public static function singletonIf($abstract, $concrete = null) { //Method inherited from \Illuminate\Container\Container @@ -1108,8 +1106,8 @@ * * @param string $abstract * @param \Closure|string|null $concrete - * @return void - * @static + * @return void + * @static */ public static function scoped($abstract, $concrete = null) { //Method inherited from \Illuminate\Container\Container @@ -1121,8 +1119,8 @@ * * @param string $abstract * @param \Closure|string|null $concrete - * @return void - * @static + * @return void + * @static */ public static function scopedIf($abstract, $concrete = null) { //Method inherited from \Illuminate\Container\Container @@ -1134,9 +1132,9 @@ * * @param string $abstract * @param \Closure $closure - * @return void + * @return void * @throws \InvalidArgumentException - * @static + * @static */ public static function extend($abstract, $closure) { //Method inherited from \Illuminate\Container\Container @@ -1148,8 +1146,8 @@ * * @param string $abstract * @param mixed $instance - * @return mixed - * @static + * @return mixed + * @static */ public static function instance($abstract, $instance) { //Method inherited from \Illuminate\Container\Container @@ -1161,8 +1159,8 @@ * * @param array|string $abstracts * @param array|mixed $tags - * @return void - * @static + * @return void + * @static */ public static function tag($abstracts, $tags) { //Method inherited from \Illuminate\Container\Container @@ -1173,8 +1171,8 @@ * Resolve all of the bindings for a given tag. * * @param string $tag - * @return iterable - * @static + * @return iterable + * @static */ public static function tagged($tag) { //Method inherited from \Illuminate\Container\Container @@ -1186,9 +1184,9 @@ * * @param string $abstract * @param string $alias - * @return void + * @return void * @throws \LogicException - * @static + * @static */ public static function alias($abstract, $alias) { //Method inherited from \Illuminate\Container\Container @@ -1200,8 +1198,8 @@ * * @param string $abstract * @param \Closure $callback - * @return mixed - * @static + * @return mixed + * @static */ public static function rebinding($abstract, $callback) { //Method inherited from \Illuminate\Container\Container @@ -1214,8 +1212,8 @@ * @param string $abstract * @param mixed $target * @param string $method - * @return mixed - * @static + * @return mixed + * @static */ public static function refresh($abstract, $target, $method) { //Method inherited from \Illuminate\Container\Container @@ -1227,8 +1225,8 @@ * * @param \Closure $callback * @param array $parameters - * @return \Closure - * @static + * @return \Closure + * @static */ public static function wrap($callback, $parameters = []) { //Method inherited from \Illuminate\Container\Container @@ -1241,9 +1239,9 @@ * @param callable|string $callback * @param array $parameters * @param string|null $defaultMethod - * @return mixed + * @return mixed * @throws \InvalidArgumentException - * @static + * @static */ public static function call($callback, $parameters = [], $defaultMethod = null) { //Method inherited from \Illuminate\Container\Container @@ -1254,8 +1252,8 @@ * Get a closure to resolve the given type from the container. * * @param string $abstract - * @return \Closure - * @static + * @return \Closure + * @static */ public static function factory($abstract) { //Method inherited from \Illuminate\Container\Container @@ -1267,9 +1265,9 @@ * * @param string|callable $abstract * @param array $parameters - * @return mixed + * @return mixed * @throws \Illuminate\Contracts\Container\BindingResolutionException - * @static + * @static */ public static function makeWith($abstract, $parameters = []) { //Method inherited from \Illuminate\Container\Container @@ -1279,12 +1277,12 @@ /** * Finds an entry of the container by its identifier and returns it. * - * @return mixed + * @return mixed * @param string $id Identifier of the entry to look for. * @throws NotFoundExceptionInterface No entry was found for **this** identifier. * @throws ContainerExceptionInterface Error while retrieving the entry. * @return mixed Entry. - * @static + * @static */ public static function get($id) { //Method inherited from \Illuminate\Container\Container @@ -1295,10 +1293,10 @@ * Instantiate a concrete instance of the given type. * * @param \Closure|string $concrete - * @return mixed + * @return mixed * @throws \Illuminate\Contracts\Container\BindingResolutionException * @throws \Illuminate\Contracts\Container\CircularDependencyException - * @static + * @static */ public static function build($concrete) { //Method inherited from \Illuminate\Container\Container @@ -1310,8 +1308,8 @@ * * @param \Closure|string $abstract * @param \Closure|null $callback - * @return void - * @static + * @return void + * @static */ public static function beforeResolving($abstract, $callback = null) { //Method inherited from \Illuminate\Container\Container @@ -1323,8 +1321,8 @@ * * @param \Closure|string $abstract * @param \Closure|null $callback - * @return void - * @static + * @return void + * @static */ public static function resolving($abstract, $callback = null) { //Method inherited from \Illuminate\Container\Container @@ -1336,8 +1334,8 @@ * * @param \Closure|string $abstract * @param \Closure|null $callback - * @return void - * @static + * @return void + * @static */ public static function afterResolving($abstract, $callback = null) { //Method inherited from \Illuminate\Container\Container @@ -1347,8 +1345,8 @@ /** * Get the container's bindings. * - * @return array - * @static + * @return array + * @static */ public static function getBindings() { //Method inherited from \Illuminate\Container\Container @@ -1359,8 +1357,8 @@ * Get the alias for an abstract if available. * * @param string $abstract - * @return string - * @static + * @return string + * @static */ public static function getAlias($abstract) { //Method inherited from \Illuminate\Container\Container @@ -1371,8 +1369,8 @@ * Remove all of the extender callbacks for a given type. * * @param string $abstract - * @return void - * @static + * @return void + * @static */ public static function forgetExtenders($abstract) { //Method inherited from \Illuminate\Container\Container @@ -1383,8 +1381,8 @@ * Remove a resolved instance from the instance cache. * * @param string $abstract - * @return void - * @static + * @return void + * @static */ public static function forgetInstance($abstract) { //Method inherited from \Illuminate\Container\Container @@ -1394,8 +1392,8 @@ /** * Clear all of the instances from the container. * - * @return void - * @static + * @return void + * @static */ public static function forgetInstances() { //Method inherited from \Illuminate\Container\Container @@ -1405,8 +1403,8 @@ /** * Clear all of the scoped instances from the container. * - * @return void - * @static + * @return void + * @static */ public static function forgetScopedInstances() { //Method inherited from \Illuminate\Container\Container @@ -1416,8 +1414,8 @@ /** * Get the globally available instance of the container. * - * @return static - * @static + * @return static + * @static */ public static function getInstance() { //Method inherited from \Illuminate\Container\Container @@ -1427,8 +1425,8 @@ * Set the shared instance of the container. * * @param \Illuminate\Contracts\Container\Container|null $container - * @return \Illuminate\Contracts\Container\Container|static - * @static + * @return \Illuminate\Contracts\Container\Container|static + * @static */ public static function setInstance($container = null) { //Method inherited from \Illuminate\Container\Container @@ -1438,8 +1436,8 @@ * Determine if a given offset exists. * * @param string $key - * @return bool - * @static + * @return bool + * @static */ public static function offsetExists($key) { //Method inherited from \Illuminate\Container\Container @@ -1450,8 +1448,8 @@ * Get the value at a given offset. * * @param string $key - * @return mixed - * @static + * @return mixed + * @static */ public static function offsetGet($key) { //Method inherited from \Illuminate\Container\Container @@ -1463,8 +1461,8 @@ * * @param string $key * @param mixed $value - * @return void - * @static + * @return void + * @static */ public static function offsetSet($key, $value) { //Method inherited from \Illuminate\Container\Container @@ -1475,8 +1473,8 @@ * Unset the value at a given offset. * * @param string $key - * @return void - * @static + * @return void + * @static */ public static function offsetUnset($key) { //Method inherited from \Illuminate\Container\Container @@ -1486,8 +1484,6 @@ } /** - * - * * @see \Illuminate\Contracts\Console\Kernel */ class Artisan { @@ -1496,8 +1492,8 @@ * * @param \Symfony\Component\Console\Input\InputInterface $input * @param \Symfony\Component\Console\Output\OutputInterface|null $output - * @return int - * @static + * @return int + * @static */ public static function handle($input, $output = null) { //Method inherited from \Illuminate\Foundation\Console\Kernel @@ -1509,8 +1505,8 @@ * * @param \Symfony\Component\Console\Input\InputInterface $input * @param int $status - * @return void - * @static + * @return void + * @static */ public static function terminate($input, $status) { //Method inherited from \Illuminate\Foundation\Console\Kernel @@ -1522,8 +1518,8 @@ * * @param string $signature * @param \Closure $callback - * @return \Illuminate\Foundation\Console\ClosureCommand - * @static + * @return \Illuminate\Foundation\Console\ClosureCommand + * @static */ public static function command($signature, $callback) { //Method inherited from \Illuminate\Foundation\Console\Kernel @@ -1534,8 +1530,8 @@ * Register the given command with the console application. * * @param \Symfony\Component\Console\Command\Command $command - * @return void - * @static + * @return void + * @static */ public static function registerCommand($command) { //Method inherited from \Illuminate\Foundation\Console\Kernel @@ -1548,9 +1544,9 @@ * @param string $command * @param array $parameters * @param \Symfony\Component\Console\Output\OutputInterface|null $outputBuffer - * @return int + * @return int * @throws \Symfony\Component\Console\Exception\CommandNotFoundException - * @static + * @static */ public static function call($command, $parameters = [], $outputBuffer = null) { //Method inherited from \Illuminate\Foundation\Console\Kernel @@ -1562,8 +1558,8 @@ * * @param string $command * @param array $parameters - * @return \Illuminate\Foundation\Bus\PendingDispatch - * @static + * @return \Illuminate\Foundation\Bus\PendingDispatch + * @static */ public static function queue($command, $parameters = []) { //Method inherited from \Illuminate\Foundation\Console\Kernel @@ -1573,8 +1569,8 @@ /** * Get all of the commands registered with the console. * - * @return array - * @static + * @return array + * @static */ public static function all() { //Method inherited from \Illuminate\Foundation\Console\Kernel @@ -1584,8 +1580,8 @@ /** * Get the output for the last run command. * - * @return string - * @static + * @return string + * @static */ public static function output() { //Method inherited from \Illuminate\Foundation\Console\Kernel @@ -1595,8 +1591,8 @@ /** * Bootstrap the application for artisan commands. * - * @return void - * @static + * @return void + * @static */ public static function bootstrap() { //Method inherited from \Illuminate\Foundation\Console\Kernel @@ -1607,8 +1603,8 @@ * Set the Artisan application instance. * * @param \Illuminate\Console\Application $artisan - * @return void - * @static + * @return void + * @static */ public static function setArtisan($artisan) { //Method inherited from \Illuminate\Foundation\Console\Kernel @@ -1618,8 +1614,6 @@ } /** - * - * * @see \Illuminate\Auth\AuthManager * @see \Illuminate\Contracts\Auth\Factory * @see \Illuminate\Contracts\Auth\Guard @@ -1630,8 +1624,8 @@ * Attempt to get the guard from the local cache. * * @param string|null $name - * @return \Illuminate\Contracts\Auth\Guard|\Illuminate\Contracts\Auth\StatefulGuard - * @static + * @return \Illuminate\Contracts\Auth\Guard|\Illuminate\Contracts\Auth\StatefulGuard + * @static */ public static function guard($name = null) { @@ -1643,8 +1637,8 @@ * * @param string $name * @param array $config - * @return \Illuminate\Auth\SessionGuard - * @static + * @return \Illuminate\Auth\SessionGuard + * @static */ public static function createSessionDriver($name, $config) { @@ -1656,8 +1650,8 @@ * * @param string $name * @param array $config - * @return \Illuminate\Auth\TokenGuard - * @static + * @return \Illuminate\Auth\TokenGuard + * @static */ public static function createTokenDriver($name, $config) { @@ -1667,8 +1661,8 @@ /** * Get the default authentication driver name. * - * @return string - * @static + * @return string + * @static */ public static function getDefaultDriver() { @@ -1679,8 +1673,8 @@ * Set the default guard driver the factory should serve. * * @param string $name - * @return void - * @static + * @return void + * @static */ public static function shouldUse($name) { @@ -1691,8 +1685,8 @@ * Set the default authentication driver name. * * @param string $name - * @return void - * @static + * @return void + * @static */ public static function setDefaultDriver($name) { @@ -1704,8 +1698,8 @@ * * @param string $driver * @param callable $callback - * @return \Illuminate\Auth\AuthManager - * @static + * @return \Illuminate\Auth\AuthManager + * @static */ public static function viaRequest($driver, $callback) { @@ -1715,8 +1709,8 @@ /** * Get the user resolver callback. * - * @return \Closure - * @static + * @return \Closure + * @static */ public static function userResolver() { @@ -1727,8 +1721,8 @@ * Set the callback to be used to resolve users. * * @param \Closure $userResolver - * @return \Illuminate\Auth\AuthManager - * @static + * @return \Illuminate\Auth\AuthManager + * @static */ public static function resolveUsersUsing($userResolver) { @@ -1740,8 +1734,8 @@ * * @param string $driver * @param \Closure $callback - * @return \Illuminate\Auth\AuthManager - * @static + * @return \Illuminate\Auth\AuthManager + * @static */ public static function extend($driver, $callback) { @@ -1753,8 +1747,8 @@ * * @param string $name * @param \Closure $callback - * @return \Illuminate\Auth\AuthManager - * @static + * @return \Illuminate\Auth\AuthManager + * @static */ public static function provider($name, $callback) { @@ -1764,8 +1758,8 @@ /** * Determines if any guards have already been resolved. * - * @return bool - * @static + * @return bool + * @static */ public static function hasResolvedGuards() { @@ -1775,8 +1769,8 @@ /** * Forget all of the resolved guard instances. * - * @return \Illuminate\Auth\AuthManager - * @static + * @return \Illuminate\Auth\AuthManager + * @static */ public static function forgetGuards() { @@ -1787,8 +1781,8 @@ * Set the application instance used by the manager. * * @param \Illuminate\Contracts\Foundation\Application $app - * @return \Illuminate\Auth\AuthManager - * @static + * @return \Illuminate\Auth\AuthManager + * @static */ public static function setApplication($app) { @@ -1799,9 +1793,9 @@ * Create the user provider implementation for the driver. * * @param string|null $provider - * @return \Illuminate\Contracts\Auth\UserProvider|null + * @return \Illuminate\Contracts\Auth\UserProvider|null * @throws \InvalidArgumentException - * @static + * @static */ public static function createUserProvider($provider = null) { @@ -1811,8 +1805,8 @@ /** * Get the default user provider name. * - * @return string - * @static + * @return string + * @static */ public static function getDefaultUserProvider() { @@ -1822,8 +1816,8 @@ /** * Get the currently authenticated user. * - * @return \App\User|null - * @static + * @return \App\User|null + * @static */ public static function user() { @@ -1833,8 +1827,8 @@ /** * Get the ID for the currently authenticated user. * - * @return int|string|null - * @static + * @return int|string|null + * @static */ public static function id() { @@ -1845,8 +1839,8 @@ * Log a user into the application without sessions or cookies. * * @param array $credentials - * @return bool - * @static + * @return bool + * @static */ public static function once($credentials = []) { @@ -1857,8 +1851,8 @@ * Log the given user ID into the application without sessions or cookies. * * @param mixed $id - * @return \App\User|false - * @static + * @return \App\User|false + * @static */ public static function onceUsingId($id) { @@ -1869,8 +1863,8 @@ * Validate a user's credentials. * * @param array $credentials - * @return bool - * @static + * @return bool + * @static */ public static function validate($credentials = []) { @@ -1882,8 +1876,8 @@ * * @param string $field * @param array $extraConditions - * @return \Symfony\Component\HttpFoundation\Response|null - * @static + * @return \Symfony\Component\HttpFoundation\Response|null + * @static */ public static function basic($field = 'email', $extraConditions = []) { @@ -1895,8 +1889,8 @@ * * @param string $field * @param array $extraConditions - * @return \Symfony\Component\HttpFoundation\Response|null - * @static + * @return \Symfony\Component\HttpFoundation\Response|null + * @static */ public static function onceBasic($field = 'email', $extraConditions = []) { @@ -1908,8 +1902,8 @@ * * @param array $credentials * @param bool $remember - * @return bool - * @static + * @return bool + * @static */ public static function attempt($credentials = [], $remember = false) { @@ -1922,8 +1916,8 @@ * @param array $credentials * @param array|callable $callbacks * @param false $remember - * @return bool - * @static + * @return bool + * @static */ public static function attemptWhen($credentials = [], $callbacks = null, $remember = false) { @@ -1935,8 +1929,8 @@ * * @param mixed $id * @param bool $remember - * @return \App\User|false - * @static + * @return \App\User|false + * @static */ public static function loginUsingId($id, $remember = false) { @@ -1948,8 +1942,8 @@ * * @param \Illuminate\Contracts\Auth\Authenticatable $user * @param bool $remember - * @return void - * @static + * @return void + * @static */ public static function login($user, $remember = false) { @@ -1959,8 +1953,8 @@ /** * Log the user out of the application. * - * @return void - * @static + * @return void + * @static */ public static function logout() { @@ -1972,8 +1966,8 @@ * * This method does not cycle the "remember" token. * - * @return void - * @static + * @return void + * @static */ public static function logoutCurrentDevice() { @@ -1987,9 +1981,9 @@ * * @param string $password * @param string $attribute - * @return \App\User|null + * @return \App\User|null * @throws \Illuminate\Auth\AuthenticationException - * @static + * @static */ public static function logoutOtherDevices($password, $attribute = 'password') { @@ -2000,8 +1994,8 @@ * Register an authentication attempt event listener. * * @param mixed $callback - * @return void - * @static + * @return void + * @static */ public static function attempting($callback) { @@ -2011,8 +2005,8 @@ /** * Get the last user we attempted to authenticate. * - * @return \App\User - * @static + * @return \App\User + * @static */ public static function getLastAttempted() { @@ -2022,8 +2016,8 @@ /** * Get a unique identifier for the auth session value. * - * @return string - * @static + * @return string + * @static */ public static function getName() { @@ -2033,8 +2027,8 @@ /** * Get the name of the cookie used to store the "recaller". * - * @return string - * @static + * @return string + * @static */ public static function getRecallerName() { @@ -2044,8 +2038,8 @@ /** * Determine if the user was authenticated via "remember me" cookie. * - * @return bool - * @static + * @return bool + * @static */ public static function viaRemember() { @@ -2056,8 +2050,8 @@ * Set the number of minutes the remember me cookie should be valid for. * * @param int $minutes - * @return \Illuminate\Auth\SessionGuard - * @static + * @return \Illuminate\Auth\SessionGuard + * @static */ public static function setRememberDuration($minutes) { @@ -2067,9 +2061,9 @@ /** * Get the cookie creator instance used by the guard. * - * @return \Illuminate\Contracts\Cookie\QueueingFactory + * @return \Illuminate\Contracts\Cookie\QueueingFactory * @throws \RuntimeException - * @static + * @static */ public static function getCookieJar() { @@ -2080,8 +2074,8 @@ * Set the cookie creator instance used by the guard. * * @param \Illuminate\Contracts\Cookie\QueueingFactory $cookie - * @return void - * @static + * @return void + * @static */ public static function setCookieJar($cookie) { @@ -2091,8 +2085,8 @@ /** * Get the event dispatcher instance. * - * @return \Illuminate\Contracts\Events\Dispatcher - * @static + * @return \Illuminate\Contracts\Events\Dispatcher + * @static */ public static function getDispatcher() { @@ -2103,8 +2097,8 @@ * Set the event dispatcher instance. * * @param \Illuminate\Contracts\Events\Dispatcher $events - * @return void - * @static + * @return void + * @static */ public static function setDispatcher($events) { @@ -2114,8 +2108,8 @@ /** * Get the session store used by the guard. * - * @return \Illuminate\Contracts\Session\Session - * @static + * @return \Illuminate\Contracts\Session\Session + * @static */ public static function getSession() { @@ -2125,8 +2119,8 @@ /** * Return the currently cached user. * - * @return \App\User|null - * @static + * @return \App\User|null + * @static */ public static function getUser() { @@ -2137,8 +2131,8 @@ * Set the current user. * * @param \Illuminate\Contracts\Auth\Authenticatable $user - * @return \Illuminate\Auth\SessionGuard - * @static + * @return \Illuminate\Auth\SessionGuard + * @static */ public static function setUser($user) { @@ -2148,8 +2142,8 @@ /** * Get the current request instance. * - * @return \Symfony\Component\HttpFoundation\Request - * @static + * @return \Symfony\Component\HttpFoundation\Request + * @static */ public static function getRequest() { @@ -2160,8 +2154,8 @@ * Set the current request instance. * * @param \Symfony\Component\HttpFoundation\Request $request - * @return \Illuminate\Auth\SessionGuard - * @static + * @return \Illuminate\Auth\SessionGuard + * @static */ public static function setRequest($request) { @@ -2171,8 +2165,8 @@ /** * Get the timebox instance used by the guard. * - * @return \Illuminate\Support\Timebox - * @static + * @return \Illuminate\Support\Timebox + * @static */ public static function getTimebox() { @@ -2182,9 +2176,9 @@ /** * Determine if the current user is authenticated. If not, throw an exception. * - * @return \App\User + * @return \App\User * @throws \Illuminate\Auth\AuthenticationException - * @static + * @static */ public static function authenticate() { @@ -2194,8 +2188,8 @@ /** * Determine if the guard has a user instance. * - * @return bool - * @static + * @return bool + * @static */ public static function hasUser() { @@ -2205,8 +2199,8 @@ /** * Determine if the current user is authenticated. * - * @return bool - * @static + * @return bool + * @static */ public static function check() { @@ -2216,8 +2210,8 @@ /** * Determine if the current user is a guest. * - * @return bool - * @static + * @return bool + * @static */ public static function guest() { @@ -2227,8 +2221,8 @@ /** * Get the user provider used by the guard. * - * @return \Illuminate\Contracts\Auth\UserProvider - * @static + * @return \Illuminate\Contracts\Auth\UserProvider + * @static */ public static function getProvider() { @@ -2239,8 +2233,8 @@ * Set the user provider used by the guard. * * @param \Illuminate\Contracts\Auth\UserProvider $provider - * @return void - * @static + * @return void + * @static */ public static function setProvider($provider) { @@ -2252,8 +2246,8 @@ * * @param string $name * @param object|callable $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -2264,9 +2258,9 @@ * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -2276,8 +2270,8 @@ * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -2286,8 +2280,8 @@ /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -2296,8 +2290,6 @@ } /** - * - * * @see \Illuminate\View\Compilers\BladeCompiler */ class Blade { @@ -2305,8 +2297,8 @@ * Compile the view at the given path. * * @param string|null $path - * @return void - * @static + * @return void + * @static */ public static function compile($path = null) { @@ -2316,8 +2308,8 @@ /** * Get the path currently being compiled. * - * @return string - * @static + * @return string + * @static */ public static function getPath() { @@ -2328,8 +2320,8 @@ * Set the path currently being compiled. * * @param string $path - * @return void - * @static + * @return void + * @static */ public static function setPath($path) { @@ -2340,8 +2332,8 @@ * Compile the given Blade template contents. * * @param string $value - * @return string - * @static + * @return string + * @static */ public static function compileString($value) { @@ -2354,8 +2346,8 @@ * @param string $string * @param array $data * @param bool $deleteCachedView - * @return string - * @static + * @return string + * @static */ public static function render($string, $data = [], $deleteCachedView = false) { @@ -2365,8 +2357,8 @@ * Render a component instance to HTML. * * @param \Illuminate\View\Component $component - * @return string - * @static + * @return string + * @static */ public static function renderComponent($component) { @@ -2376,8 +2368,8 @@ * Strip the parentheses from the given expression. * * @param string $expression - * @return string - * @static + * @return string + * @static */ public static function stripParentheses($expression) { @@ -2388,8 +2380,8 @@ * Register a custom Blade compiler. * * @param callable $compiler - * @return void - * @static + * @return void + * @static */ public static function extend($compiler) { @@ -2399,8 +2391,8 @@ /** * Get the extensions used by the compiler. * - * @return array - * @static + * @return array + * @static */ public static function getExtensions() { @@ -2412,8 +2404,8 @@ * * @param string $name * @param callable $callback - * @return void - * @static + * @return void + * @static */ public static function if($name, $callback) { @@ -2425,8 +2417,8 @@ * * @param string $name * @param array $parameters - * @return bool - * @static + * @return bool + * @static */ public static function check($name, ...$parameters) { @@ -2439,8 +2431,8 @@ * @param string $class * @param string|null $alias * @param string $prefix - * @return void - * @static + * @return void + * @static */ public static function component($class, $alias = null, $prefix = '') { @@ -2452,8 +2444,8 @@ * * @param array $components * @param string $prefix - * @return void - * @static + * @return void + * @static */ public static function components($components, $prefix = '') { @@ -2463,8 +2455,8 @@ /** * Get the registered class component aliases. * - * @return array - * @static + * @return array + * @static */ public static function getClassComponentAliases() { @@ -2476,8 +2468,8 @@ * * @param string $namespace * @param string $prefix - * @return void - * @static + * @return void + * @static */ public static function componentNamespace($namespace, $prefix) { @@ -2487,8 +2479,8 @@ /** * Get the registered class component namespaces. * - * @return array - * @static + * @return array + * @static */ public static function getClassComponentNamespaces() { @@ -2500,8 +2492,8 @@ * * @param string $path * @param string|null $alias - * @return void - * @static + * @return void + * @static */ public static function aliasComponent($path, $alias = null) { @@ -2513,8 +2505,8 @@ * * @param string $path * @param string|null $alias - * @return void - * @static + * @return void + * @static */ public static function include($path, $alias = null) { @@ -2526,8 +2518,8 @@ * * @param string $path * @param string|null $alias - * @return void - * @static + * @return void + * @static */ public static function aliasInclude($path, $alias = null) { @@ -2539,9 +2531,9 @@ * * @param string $name * @param callable $handler - * @return void + * @return void * @throws \InvalidArgumentException - * @static + * @static */ public static function directive($name, $handler) { @@ -2551,8 +2543,8 @@ /** * Get the list of custom directives. * - * @return array - * @static + * @return array + * @static */ public static function getCustomDirectives() { @@ -2563,8 +2555,8 @@ * Register a new precompiler. * * @param callable $precompiler - * @return void - * @static + * @return void + * @static */ public static function precompiler($precompiler) { @@ -2575,8 +2567,8 @@ * Set the echo format to be used by the compiler. * * @param string $format - * @return void - * @static + * @return void + * @static */ public static function setEchoFormat($format) { @@ -2586,8 +2578,8 @@ /** * Set the "echo" format to double encode entities. * - * @return void - * @static + * @return void + * @static */ public static function withDoubleEncoding() { @@ -2597,8 +2589,8 @@ /** * Set the "echo" format to not double encode entities. * - * @return void - * @static + * @return void + * @static */ public static function withoutDoubleEncoding() { @@ -2608,8 +2600,8 @@ /** * Indicate that component tags should not be compiled. * - * @return void - * @static + * @return void + * @static */ public static function withoutComponentTags() { @@ -2620,8 +2612,8 @@ * Get the path to the compiled version of a view. * * @param string $path - * @return string - * @static + * @return string + * @static */ public static function getCompiledPath($path) { //Method inherited from \Illuminate\View\Compilers\Compiler @@ -2632,8 +2624,8 @@ * Determine if the view at the given path is expired. * * @param string $path - * @return bool - * @static + * @return bool + * @static */ public static function isExpired($path) { //Method inherited from \Illuminate\View\Compilers\Compiler @@ -2644,8 +2636,8 @@ * Get a new component hash for a component name. * * @param string $component - * @return string - * @static + * @return string + * @static */ public static function newComponentHash($component) { @@ -2658,8 +2650,8 @@ * @param string $alias * @param string $data * @param string $hash - * @return string - * @static + * @return string + * @static */ public static function compileClassComponentOpening($component, $alias, $data, $hash) { @@ -2668,8 +2660,8 @@ /** * Compile the end-component statements into valid PHP. * - * @return string - * @static + * @return string + * @static */ public static function compileEndComponentClass() { @@ -2680,8 +2672,8 @@ * Sanitize the given component attribute value. * * @param mixed $value - * @return mixed - * @static + * @return mixed + * @static */ public static function sanitizeComponentAttribute($value) { @@ -2690,8 +2682,8 @@ /** * Compile an end-once block into valid PHP. * - * @return string - * @static + * @return string + * @static */ public static function compileEndOnce() { @@ -2703,8 +2695,8 @@ * * @param string|callable $class * @param callable|null $handler - * @return void - * @static + * @return void + * @static */ public static function stringable($class, $handler = null) { @@ -2715,8 +2707,8 @@ * Compile Blade echos into valid PHP. * * @param string $value - * @return string - * @static + * @return string + * @static */ public static function compileEchos($value) { @@ -2727,8 +2719,8 @@ * Apply the echo handler for the value if it exists. * * @param string $value - * @return string - * @static + * @return string + * @static */ public static function applyEchoHandler($value) { @@ -2738,8 +2730,6 @@ } /** - * - * * @method static \Illuminate\Broadcasting\Broadcasters\Broadcaster channel(string $channel, callable|string $callback, array $options = []) * @method static mixed auth(\Illuminate\Http\Request $request) * @see \Illuminate\Contracts\Broadcasting\Factory @@ -2749,8 +2739,8 @@ * Register the routes for handling broadcast authentication and sockets. * * @param array|null $attributes - * @return void - * @static + * @return void + * @static */ public static function routes($attributes = null) { @@ -2761,8 +2751,8 @@ * Get the socket ID for the given request. * * @param \Illuminate\Http\Request|null $request - * @return string|null - * @static + * @return string|null + * @static */ public static function socket($request = null) { @@ -2773,8 +2763,8 @@ * Begin broadcasting an event. * * @param mixed|null $event - * @return \Illuminate\Broadcasting\PendingBroadcast - * @static + * @return \Illuminate\Broadcasting\PendingBroadcast + * @static */ public static function event($event = null) { @@ -2785,8 +2775,8 @@ * Queue the given event for broadcast. * * @param mixed $event - * @return void - * @static + * @return void + * @static */ public static function queue($event) { @@ -2797,8 +2787,8 @@ * Get a driver instance. * * @param string|null $driver - * @return mixed - * @static + * @return mixed + * @static */ public static function connection($driver = null) { @@ -2809,8 +2799,8 @@ * Get a driver instance. * * @param string|null $name - * @return mixed - * @static + * @return mixed + * @static */ public static function driver($name = null) { @@ -2820,8 +2810,8 @@ /** * Get the default driver name. * - * @return string - * @static + * @return string + * @static */ public static function getDefaultDriver() { @@ -2832,8 +2822,8 @@ * Set the default driver name. * * @param string $name - * @return void - * @static + * @return void + * @static */ public static function setDefaultDriver($name) { @@ -2844,8 +2834,8 @@ * Disconnect the given disk and remove from local cache. * * @param string|null $name - * @return void - * @static + * @return void + * @static */ public static function purge($name = null) { @@ -2857,8 +2847,8 @@ * * @param string $driver * @param \Closure $callback - * @return \Illuminate\Broadcasting\BroadcastManager - * @static + * @return \Illuminate\Broadcasting\BroadcastManager + * @static */ public static function extend($driver, $callback) { @@ -2868,8 +2858,8 @@ /** * Get the application instance used by the manager. * - * @return \Illuminate\Contracts\Foundation\Application - * @static + * @return \Illuminate\Contracts\Foundation\Application + * @static */ public static function getApplication() { @@ -2880,8 +2870,8 @@ * Set the application instance used by the manager. * * @param \Illuminate\Contracts\Foundation\Application $app - * @return \Illuminate\Broadcasting\BroadcastManager - * @static + * @return \Illuminate\Broadcasting\BroadcastManager + * @static */ public static function setApplication($app) { @@ -2891,8 +2881,8 @@ /** * Forget all of the resolved driver instances. * - * @return \Illuminate\Broadcasting\BroadcastManager - * @static + * @return \Illuminate\Broadcasting\BroadcastManager + * @static */ public static function forgetDrivers() { @@ -2902,8 +2892,6 @@ } /** - * - * * @see \Illuminate\Contracts\Bus\Dispatcher */ class Bus { @@ -2911,8 +2899,8 @@ * Dispatch a command to its appropriate handler. * * @param mixed $command - * @return mixed - * @static + * @return mixed + * @static */ public static function dispatch($command) { @@ -2926,8 +2914,8 @@ * * @param mixed $command * @param mixed $handler - * @return mixed - * @static + * @return mixed + * @static */ public static function dispatchSync($command, $handler = null) { @@ -2939,8 +2927,8 @@ * * @param mixed $command * @param mixed $handler - * @return mixed - * @static + * @return mixed + * @static */ public static function dispatchNow($command, $handler = null) { @@ -2951,8 +2939,8 @@ * Attempt to find the batch with the given ID. * * @param string $batchId - * @return \Illuminate\Bus\Batch|null - * @static + * @return \Illuminate\Bus\Batch|null + * @static */ public static function findBatch($batchId) { @@ -2963,8 +2951,8 @@ * Create a new batch of queueable jobs. * * @param \Illuminate\Support\Collection|array|mixed $jobs - * @return \Illuminate\Bus\PendingBatch - * @static + * @return \Illuminate\Bus\PendingBatch + * @static */ public static function batch($jobs) { @@ -2975,8 +2963,8 @@ * Create a new chain of queueable jobs. * * @param \Illuminate\Support\Collection|array $jobs - * @return \Illuminate\Foundation\Bus\PendingChain - * @static + * @return \Illuminate\Foundation\Bus\PendingChain + * @static */ public static function chain($jobs) { @@ -2987,8 +2975,8 @@ * Determine if the given command has a handler. * * @param mixed $command - * @return bool - * @static + * @return bool + * @static */ public static function hasCommandHandler($command) { @@ -2999,8 +2987,8 @@ * Retrieve the handler for a command. * * @param mixed $command - * @return bool|mixed - * @static + * @return bool|mixed + * @static */ public static function getCommandHandler($command) { @@ -3011,9 +2999,9 @@ * Dispatch a command to its appropriate handler behind a queue. * * @param mixed $command - * @return mixed + * @return mixed * @throws \RuntimeException - * @static + * @static */ public static function dispatchToQueue($command) { @@ -3025,8 +3013,8 @@ * * @param mixed $command * @param mixed $handler - * @return void - * @static + * @return void + * @static */ public static function dispatchAfterResponse($command, $handler = null) { @@ -3037,8 +3025,8 @@ * Set the pipes through which commands should be piped before dispatching. * * @param array $pipes - * @return \Illuminate\Bus\Dispatcher - * @static + * @return \Illuminate\Bus\Dispatcher + * @static */ public static function pipeThrough($pipes) { @@ -3049,8 +3037,8 @@ * Map a command to a handler. * * @param array $map - * @return \Illuminate\Bus\Dispatcher - * @static + * @return \Illuminate\Bus\Dispatcher + * @static */ public static function map($map) { @@ -3062,8 +3050,8 @@ * * @param string|\Closure $command * @param callable|int|null $callback - * @return void - * @static + * @return void + * @static */ public static function assertDispatched($command, $callback = null) { @@ -3075,8 +3063,8 @@ * * @param string $command * @param int $times - * @return void - * @static + * @return void + * @static */ public static function assertDispatchedTimes($command, $times = 1) { @@ -3088,8 +3076,8 @@ * * @param string|\Closure $command * @param callable|null $callback - * @return void - * @static + * @return void + * @static */ public static function assertNotDispatched($command, $callback = null) { @@ -3099,8 +3087,8 @@ /** * Assert that no jobs were dispatched. * - * @return void - * @static + * @return void + * @static */ public static function assertNothingDispatched() { @@ -3112,8 +3100,8 @@ * * @param string|\Closure $command * @param callable|int|null $callback - * @return void - * @static + * @return void + * @static */ public static function assertDispatchedSync($command, $callback = null) { @@ -3125,8 +3113,8 @@ * * @param string $command * @param int $times - * @return void - * @static + * @return void + * @static */ public static function assertDispatchedSyncTimes($command, $times = 1) { @@ -3138,8 +3126,8 @@ * * @param string|\Closure $command * @param callable|null $callback - * @return void - * @static + * @return void + * @static */ public static function assertNotDispatchedSync($command, $callback = null) { @@ -3151,8 +3139,8 @@ * * @param string|\Closure $command * @param callable|int|null $callback - * @return void - * @static + * @return void + * @static */ public static function assertDispatchedAfterResponse($command, $callback = null) { @@ -3164,8 +3152,8 @@ * * @param string $command * @param int $times - * @return void - * @static + * @return void + * @static */ public static function assertDispatchedAfterResponseTimes($command, $times = 1) { @@ -3177,8 +3165,8 @@ * * @param string|\Closure $command * @param callable|null $callback - * @return void - * @static + * @return void + * @static */ public static function assertNotDispatchedAfterResponse($command, $callback = null) { @@ -3189,8 +3177,8 @@ * Assert if a chain of jobs was dispatched. * * @param array $expectedChain - * @return void - * @static + * @return void + * @static */ public static function assertChained($expectedChain) { @@ -3202,8 +3190,8 @@ * * @param string|\Closure $command * @param callable|null $callback - * @return void - * @static + * @return void + * @static */ public static function assertDispatchedWithoutChain($command, $callback = null) { @@ -3214,8 +3202,8 @@ * Assert if a batch was dispatched based on a truth-test callback. * * @param callable $callback - * @return void - * @static + * @return void + * @static */ public static function assertBatched($callback) { @@ -3226,8 +3214,8 @@ * Assert the number of batches that have been dispatched. * * @param int $count - * @return void - * @static + * @return void + * @static */ public static function assertBatchCount($count) { @@ -3239,8 +3227,8 @@ * * @param string $command * @param callable|null $callback - * @return \Illuminate\Support\Collection - * @static + * @return \Illuminate\Support\Collection + * @static */ public static function dispatched($command, $callback = null) { @@ -3252,8 +3240,8 @@ * * @param string $command * @param callable|null $callback - * @return \Illuminate\Support\Collection - * @static + * @return \Illuminate\Support\Collection + * @static */ public static function dispatchedSync($command, $callback = null) { @@ -3265,8 +3253,8 @@ * * @param string $command * @param callable|null $callback - * @return \Illuminate\Support\Collection - * @static + * @return \Illuminate\Support\Collection + * @static */ public static function dispatchedAfterResponse($command, $callback = null) { @@ -3277,8 +3265,8 @@ * Get all of the pending batches matching a truth-test callback. * * @param callable $callback - * @return \Illuminate\Support\Collection - * @static + * @return \Illuminate\Support\Collection + * @static */ public static function batched($callback) { @@ -3289,8 +3277,8 @@ * Determine if there are any stored commands for a given class. * * @param string $command - * @return bool - * @static + * @return bool + * @static */ public static function hasDispatched($command) { @@ -3301,8 +3289,8 @@ * Determine if there are any stored commands for a given class. * * @param string $command - * @return bool - * @static + * @return bool + * @static */ public static function hasDispatchedSync($command) { @@ -3313,8 +3301,8 @@ * Determine if there are any stored commands for a given class. * * @param string $command - * @return bool - * @static + * @return bool + * @static */ public static function hasDispatchedAfterResponse($command) { @@ -3325,8 +3313,8 @@ * Record the fake pending batch dispatch. * * @param \Illuminate\Bus\PendingBatch $pendingBatch - * @return \Illuminate\Bus\Batch - * @static + * @return \Illuminate\Bus\Batch + * @static */ public static function recordPendingBatch($pendingBatch) { @@ -3336,8 +3324,6 @@ } /** - * - * * @see \Illuminate\Cache\CacheManager * @see \Illuminate\Cache\Repository */ @@ -3346,8 +3332,8 @@ * Get a cache store instance by name, wrapped in a repository. * * @param string|null $name - * @return \Illuminate\Contracts\Cache\Repository - * @static + * @return \Illuminate\Contracts\Cache\Repository + * @static */ public static function store($name = null) { @@ -3358,8 +3344,8 @@ * Get a cache driver instance. * * @param string|null $driver - * @return \Illuminate\Contracts\Cache\Repository - * @static + * @return \Illuminate\Contracts\Cache\Repository + * @static */ public static function driver($driver = null) { @@ -3370,8 +3356,8 @@ * Create a new cache repository with the given implementation. * * @param \Illuminate\Contracts\Cache\Store $store - * @return \Illuminate\Cache\Repository - * @static + * @return \Illuminate\Cache\Repository + * @static */ public static function repository($store) { @@ -3381,8 +3367,8 @@ /** * Re-set the event dispatcher on all resolved cache repositories. * - * @return void - * @static + * @return void + * @static */ public static function refreshEventDispatcher() { @@ -3392,8 +3378,8 @@ /** * Get the default cache driver name. * - * @return string - * @static + * @return string + * @static */ public static function getDefaultDriver() { @@ -3404,8 +3390,8 @@ * Set the default cache driver name. * * @param string $name - * @return void - * @static + * @return void + * @static */ public static function setDefaultDriver($name) { @@ -3416,8 +3402,8 @@ * Unset the given driver instances. * * @param array|string|null $name - * @return \Illuminate\Cache\CacheManager - * @static + * @return \Illuminate\Cache\CacheManager + * @static */ public static function forgetDriver($name = null) { @@ -3428,8 +3414,8 @@ * Disconnect the given driver and remove from local cache. * * @param string|null $name - * @return void - * @static + * @return void + * @static */ public static function purge($name = null) { @@ -3441,8 +3427,8 @@ * * @param string $driver * @param \Closure $callback - * @return \Illuminate\Cache\CacheManager - * @static + * @return \Illuminate\Cache\CacheManager + * @static */ public static function extend($driver, $callback) { @@ -3453,8 +3439,8 @@ * Determine if an item exists in the cache. * * @param string $key - * @return bool - * @static + * @return bool + * @static */ public static function has($key) { @@ -3465,8 +3451,8 @@ * Determine if an item doesn't exist in the cache. * * @param string $key - * @return bool - * @static + * @return bool + * @static */ public static function missing($key) { @@ -3478,8 +3464,8 @@ * * @param string $key * @param mixed $default - * @return mixed - * @static + * @return mixed + * @static */ public static function get($key, $default = null) { @@ -3492,8 +3478,8 @@ * Items not found in the cache will have a null value. * * @param array $keys - * @return array - * @static + * @return array + * @static */ public static function many($keys) { @@ -3503,14 +3489,14 @@ /** * Obtains multiple cache items by their unique keys. * - * @return iterable + * @return iterable * @param iterable $keys A list of keys that can obtained in a single operation. * @param mixed $default Default value to return for keys that do not exist. * @return iterable A list of key => value pairs. Cache keys that do not exist or are stale will have $default as value. * @throws \Psr\SimpleCache\InvalidArgumentException * MUST be thrown if $keys is neither an array nor a Traversable, * or if any of the $keys are not a legal value. - * @static + * @static */ public static function getMultiple($keys, $default = null) { @@ -3522,8 +3508,8 @@ * * @param string $key * @param mixed $default - * @return mixed - * @static + * @return mixed + * @static */ public static function pull($key, $default = null) { @@ -3536,8 +3522,8 @@ * @param string $key * @param mixed $value * @param \DateTimeInterface|\DateInterval|int|null $ttl - * @return bool - * @static + * @return bool + * @static */ public static function put($key, $value, $ttl = null) { @@ -3547,7 +3533,7 @@ /** * Persists data in the cache, uniquely referenced by a key with an optional expiration TTL time. * - * @return bool + * @return bool * @param string $key The key of the item to store. * @param mixed $value The value of the item to store, must be serializable. * @param null|int|\DateInterval $ttl Optional. The TTL value of this item. If no value is sent and @@ -3556,7 +3542,7 @@ * @return bool True on success and false on failure. * @throws \Psr\SimpleCache\InvalidArgumentException * MUST be thrown if the $key string is not a legal value. - * @static + * @static */ public static function set($key, $value, $ttl = null) { @@ -3568,8 +3554,8 @@ * * @param array $values * @param \DateTimeInterface|\DateInterval|int|null $ttl - * @return bool - * @static + * @return bool + * @static */ public static function putMany($values, $ttl = null) { @@ -3579,7 +3565,7 @@ /** * Persists a set of key => value pairs in the cache, with an optional TTL. * - * @return bool + * @return bool * @param iterable $values A list of key => value pairs for a multiple-set operation. * @param null|int|\DateInterval $ttl Optional. The TTL value of this item. If no value is sent and * the driver supports TTL then the library may set a default value @@ -3588,7 +3574,7 @@ * @throws \Psr\SimpleCache\InvalidArgumentException * MUST be thrown if $values is neither an array nor a Traversable, * or if any of the $values are not a legal value. - * @static + * @static */ public static function setMultiple($values, $ttl = null) { @@ -3601,8 +3587,8 @@ * @param string $key * @param mixed $value * @param \DateTimeInterface|\DateInterval|int|null $ttl - * @return bool - * @static + * @return bool + * @static */ public static function add($key, $value, $ttl = null) { @@ -3614,8 +3600,8 @@ * * @param string $key * @param mixed $value - * @return int|bool - * @static + * @return int|bool + * @static */ public static function increment($key, $value = 1) { @@ -3627,8 +3613,8 @@ * * @param string $key * @param mixed $value - * @return int|bool - * @static + * @return int|bool + * @static */ public static function decrement($key, $value = 1) { @@ -3640,8 +3626,8 @@ * * @param string $key * @param mixed $value - * @return bool - * @static + * @return bool + * @static */ public static function forever($key, $value) { @@ -3654,8 +3640,8 @@ * @param string $key * @param \Closure|\DateTimeInterface|\DateInterval|int|null $ttl * @param \Closure $callback - * @return mixed - * @static + * @return mixed + * @static */ public static function remember($key, $ttl, $callback) { @@ -3667,8 +3653,8 @@ * * @param string $key * @param \Closure $callback - * @return mixed - * @static + * @return mixed + * @static */ public static function sear($key, $callback) { @@ -3680,8 +3666,8 @@ * * @param string $key * @param \Closure $callback - * @return mixed - * @static + * @return mixed + * @static */ public static function rememberForever($key, $callback) { @@ -3692,8 +3678,8 @@ * Remove an item from the cache. * * @param string $key - * @return bool - * @static + * @return bool + * @static */ public static function forget($key) { @@ -3703,12 +3689,12 @@ /** * Delete an item from the cache by its unique key. * - * @return bool + * @return bool * @param string $key The unique cache key of the item to delete. * @return bool True if the item was successfully removed. False if there was an error. * @throws \Psr\SimpleCache\InvalidArgumentException * MUST be thrown if the $key string is not a legal value. - * @static + * @static */ public static function delete($key) { @@ -3718,13 +3704,13 @@ /** * Deletes multiple cache items in a single operation. * - * @return bool + * @return bool * @param iterable $keys A list of string-based keys to be deleted. * @return bool True if the items were successfully removed. False if there was an error. * @throws \Psr\SimpleCache\InvalidArgumentException * MUST be thrown if $keys is neither an array nor a Traversable, * or if any of the $keys are not a legal value. - * @static + * @static */ public static function deleteMultiple($keys) { @@ -3734,9 +3720,9 @@ /** * Wipes clean the entire cache's keys. * - * @return bool + * @return bool * @return bool True on success and false on failure. - * @static + * @static */ public static function clear() { @@ -3747,9 +3733,9 @@ * Begin executing a new tags operation if the store supports it. * * @param array|mixed $names - * @return \Illuminate\Cache\TaggedCache + * @return \Illuminate\Cache\TaggedCache * @throws \BadMethodCallException - * @static + * @static */ public static function tags($names) { @@ -3759,8 +3745,8 @@ /** * Determine if the current store supports tags. * - * @return bool - * @static + * @return bool + * @static */ public static function supportsTags() { @@ -3770,8 +3756,8 @@ /** * Get the default cache time. * - * @return int|null - * @static + * @return int|null + * @static */ public static function getDefaultCacheTime() { @@ -3782,8 +3768,8 @@ * Set the default cache time in seconds. * * @param int|null $seconds - * @return \Illuminate\Cache\Repository - * @static + * @return \Illuminate\Cache\Repository + * @static */ public static function setDefaultCacheTime($seconds) { @@ -3793,8 +3779,8 @@ /** * Get the cache store implementation. * - * @return \Illuminate\Contracts\Cache\Store - * @static + * @return \Illuminate\Contracts\Cache\Store + * @static */ public static function getStore() { @@ -3804,8 +3790,8 @@ /** * Get the event dispatcher instance. * - * @return \Illuminate\Contracts\Events\Dispatcher - * @static + * @return \Illuminate\Contracts\Events\Dispatcher + * @static */ public static function getEventDispatcher() { @@ -3816,8 +3802,8 @@ * Set the event dispatcher instance. * * @param \Illuminate\Contracts\Events\Dispatcher $events - * @return void - * @static + * @return void + * @static */ public static function setEventDispatcher($events) { @@ -3828,8 +3814,8 @@ * Determine if a cached value exists. * * @param string $key - * @return bool - * @static + * @return bool + * @static */ public static function offsetExists($key) { @@ -3840,8 +3826,8 @@ * Retrieve an item from the cache by key. * * @param string $key - * @return mixed - * @static + * @return mixed + * @static */ public static function offsetGet($key) { @@ -3853,8 +3839,8 @@ * * @param string $key * @param mixed $value - * @return void - * @static + * @return void + * @static */ public static function offsetSet($key, $value) { @@ -3865,8 +3851,8 @@ * Remove an item from the cache. * * @param string $key - * @return void - * @static + * @return void + * @static */ public static function offsetUnset($key) { @@ -3878,8 +3864,8 @@ * * @param string $name * @param object|callable $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -3890,9 +3876,9 @@ * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -3902,8 +3888,8 @@ * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -3912,8 +3898,8 @@ /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -3924,9 +3910,9 @@ * * @param string $method * @param array $parameters - * @return mixed + * @return mixed * @throws \BadMethodCallException - * @static + * @static */ public static function macroCall($method, $parameters) { @@ -3936,8 +3922,8 @@ /** * Remove all items from the cache. * - * @return bool - * @static + * @return bool + * @static */ public static function flush() { @@ -3947,8 +3933,8 @@ /** * Get the Filesystem instance. * - * @return \Illuminate\Filesystem\Filesystem - * @static + * @return \Illuminate\Filesystem\Filesystem + * @static */ public static function getFilesystem() { @@ -3958,8 +3944,8 @@ /** * Get the working directory of the cache. * - * @return string - * @static + * @return string + * @static */ public static function getDirectory() { @@ -3969,8 +3955,8 @@ /** * Get the cache key prefix. * - * @return string - * @static + * @return string + * @static */ public static function getPrefix() { @@ -3983,8 +3969,8 @@ * @param string $name * @param int $seconds * @param string|null $owner - * @return \Illuminate\Contracts\Cache\Lock - * @static + * @return \Illuminate\Contracts\Cache\Lock + * @static */ public static function lock($name, $seconds = 0, $owner = null) { @@ -3996,8 +3982,8 @@ * * @param string $name * @param string $owner - * @return \Illuminate\Contracts\Cache\Lock - * @static + * @return \Illuminate\Contracts\Cache\Lock + * @static */ public static function restoreLock($name, $owner) { @@ -4007,8 +3993,6 @@ } /** - * - * * @see \Illuminate\Config\Repository */ class Config { @@ -4016,8 +4000,8 @@ * Determine if the given configuration value exists. * * @param string $key - * @return bool - * @static + * @return bool + * @static */ public static function has($key) { @@ -4029,8 +4013,8 @@ * * @param array|string $key * @param mixed $default - * @return mixed - * @static + * @return mixed + * @static */ public static function get($key, $default = null) { @@ -4041,8 +4025,8 @@ * Get many configuration values. * * @param array $keys - * @return array - * @static + * @return array + * @static */ public static function getMany($keys) { @@ -4054,8 +4038,8 @@ * * @param array|string $key * @param mixed $value - * @return void - * @static + * @return void + * @static */ public static function set($key, $value = null) { @@ -4067,8 +4051,8 @@ * * @param string $key * @param mixed $value - * @return void - * @static + * @return void + * @static */ public static function prepend($key, $value) { @@ -4080,8 +4064,8 @@ * * @param string $key * @param mixed $value - * @return void - * @static + * @return void + * @static */ public static function push($key, $value) { @@ -4091,8 +4075,8 @@ /** * Get all of the configuration items for the application. * - * @return array - * @static + * @return array + * @static */ public static function all() { @@ -4103,8 +4087,8 @@ * Determine if the given configuration option exists. * * @param string $key - * @return bool - * @static + * @return bool + * @static */ public static function offsetExists($key) { @@ -4115,8 +4099,8 @@ * Get a configuration option. * * @param string $key - * @return mixed - * @static + * @return mixed + * @static */ public static function offsetGet($key) { @@ -4128,8 +4112,8 @@ * * @param string $key * @param mixed $value - * @return void - * @static + * @return void + * @static */ public static function offsetSet($key, $value) { @@ -4140,8 +4124,8 @@ * Unset a configuration option. * * @param string $key - * @return void - * @static + * @return void + * @static */ public static function offsetUnset($key) { @@ -4151,8 +4135,6 @@ } /** - * - * * @see \Illuminate\Cookie\CookieJar */ class Cookie { @@ -4168,8 +4150,8 @@ * @param bool $httpOnly * @param bool $raw * @param string|null $sameSite - * @return \Symfony\Component\HttpFoundation\Cookie - * @static + * @return \Symfony\Component\HttpFoundation\Cookie + * @static */ public static function make($name, $value, $minutes = 0, $path = null, $domain = null, $secure = null, $httpOnly = true, $raw = false, $sameSite = null) { @@ -4187,8 +4169,8 @@ * @param bool $httpOnly * @param bool $raw * @param string|null $sameSite - * @return \Symfony\Component\HttpFoundation\Cookie - * @static + * @return \Symfony\Component\HttpFoundation\Cookie + * @static */ public static function forever($name, $value, $path = null, $domain = null, $secure = null, $httpOnly = true, $raw = false, $sameSite = null) { @@ -4201,8 +4183,8 @@ * @param string $name * @param string|null $path * @param string|null $domain - * @return \Symfony\Component\HttpFoundation\Cookie - * @static + * @return \Symfony\Component\HttpFoundation\Cookie + * @static */ public static function forget($name, $path = null, $domain = null) { @@ -4214,8 +4196,8 @@ * * @param string $key * @param string|null $path - * @return bool - * @static + * @return bool + * @static */ public static function hasQueued($key, $path = null) { @@ -4228,8 +4210,8 @@ * @param string $key * @param mixed $default * @param string|null $path - * @return \Symfony\Component\HttpFoundation\Cookie|null - * @static + * @return \Symfony\Component\HttpFoundation\Cookie|null + * @static */ public static function queued($key, $default = null, $path = null) { @@ -4240,8 +4222,8 @@ * Queue a cookie to send with the next response. * * @param array $parameters - * @return void - * @static + * @return void + * @static */ public static function queue(...$parameters) { @@ -4254,8 +4236,8 @@ * @param string $name * @param string|null $path * @param string|null $domain - * @return void - * @static + * @return void + * @static */ public static function expire($name, $path = null, $domain = null) { @@ -4267,8 +4249,8 @@ * * @param string $name * @param string|null $path - * @return void - * @static + * @return void + * @static */ public static function unqueue($name, $path = null) { @@ -4282,8 +4264,8 @@ * @param string $domain * @param bool $secure * @param string|null $sameSite - * @return \Illuminate\Cookie\CookieJar - * @static + * @return \Illuminate\Cookie\CookieJar + * @static */ public static function setDefaultPathAndDomain($path, $domain, $secure = false, $sameSite = null) { @@ -4293,8 +4275,8 @@ /** * Get the cookies which have been queued for the next request. * - * @return \Symfony\Component\HttpFoundation\Cookie[] - * @static + * @return \Symfony\Component\HttpFoundation\Cookie[] + * @static */ public static function getQueuedCookies() { @@ -4304,8 +4286,8 @@ /** * Flush the cookies which have been queued for the next request. * - * @return \Illuminate\Cookie\CookieJar - * @static + * @return \Illuminate\Cookie\CookieJar + * @static */ public static function flushQueuedCookies() { @@ -4317,8 +4299,8 @@ * * @param string $name * @param object|callable $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -4329,9 +4311,9 @@ * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -4341,8 +4323,8 @@ * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -4351,8 +4333,8 @@ /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -4361,8 +4343,6 @@ } /** - * - * * @see \Illuminate\Encryption\Encrypter */ class Crypt { @@ -4371,8 +4351,8 @@ * * @param string $key * @param string $cipher - * @return bool - * @static + * @return bool + * @static */ public static function supported($key, $cipher) { @@ -4382,8 +4362,8 @@ * Create a new encryption key for the given cipher. * * @param string $cipher - * @return string - * @static + * @return string + * @static */ public static function generateKey($cipher) { @@ -4394,9 +4374,9 @@ * * @param mixed $value * @param bool $serialize - * @return string + * @return string * @throws \Illuminate\Contracts\Encryption\EncryptException - * @static + * @static */ public static function encrypt($value, $serialize = true) { @@ -4407,9 +4387,9 @@ * Encrypt a string without serialization. * * @param string $value - * @return string + * @return string * @throws \Illuminate\Contracts\Encryption\EncryptException - * @static + * @static */ public static function encryptString($value) { @@ -4421,9 +4401,9 @@ * * @param string $payload * @param bool $unserialize - * @return mixed + * @return mixed * @throws \Illuminate\Contracts\Encryption\DecryptException - * @static + * @static */ public static function decrypt($payload, $unserialize = true) { @@ -4434,9 +4414,9 @@ * Decrypt the given string without unserialization. * * @param string $payload - * @return string + * @return string * @throws \Illuminate\Contracts\Encryption\DecryptException - * @static + * @static */ public static function decryptString($payload) { @@ -4446,8 +4426,8 @@ /** * Get the encryption key. * - * @return string - * @static + * @return string + * @static */ public static function getKey() { @@ -4457,8 +4437,6 @@ } /** - * - * * @see \Illuminate\Database\DatabaseManager * @see \Illuminate\Database\Connection */ @@ -4467,8 +4445,8 @@ * Get a database connection instance. * * @param string|null $name - * @return \Illuminate\Database\Connection - * @static + * @return \Illuminate\Database\Connection + * @static */ public static function connection($name = null) { @@ -4481,10 +4459,10 @@ * @param string $class * @param string $name * @param string $type - * @return void + * @return void * @throws \Doctrine\DBAL\DBALException * @throws \RuntimeException - * @static + * @static */ public static function registerDoctrineType($class, $name, $type) { @@ -4495,8 +4473,8 @@ * Disconnect from the given database and remove from local cache. * * @param string|null $name - * @return void - * @static + * @return void + * @static */ public static function purge($name = null) { @@ -4507,8 +4485,8 @@ * Disconnect from the given database. * * @param string|null $name - * @return void - * @static + * @return void + * @static */ public static function disconnect($name = null) { @@ -4519,8 +4497,8 @@ * Reconnect to the given database. * * @param string|null $name - * @return \Illuminate\Database\Connection - * @static + * @return \Illuminate\Database\Connection + * @static */ public static function reconnect($name = null) { @@ -4532,8 +4510,8 @@ * * @param string $name * @param callable $callback - * @return mixed - * @static + * @return mixed + * @static */ public static function usingConnection($name, $callback) { @@ -4543,8 +4521,8 @@ /** * Get the default connection name. * - * @return string - * @static + * @return string + * @static */ public static function getDefaultConnection() { @@ -4555,8 +4533,8 @@ * Set the default connection name. * * @param string $name - * @return void - * @static + * @return void + * @static */ public static function setDefaultConnection($name) { @@ -4566,8 +4544,8 @@ /** * Get all of the support drivers. * - * @return array - * @static + * @return array + * @static */ public static function supportedDrivers() { @@ -4577,8 +4555,8 @@ /** * Get all of the drivers that are actually available. * - * @return array - * @static + * @return array + * @static */ public static function availableDrivers() { @@ -4590,8 +4568,8 @@ * * @param string $name * @param callable $resolver - * @return void - * @static + * @return void + * @static */ public static function extend($name, $resolver) { @@ -4601,8 +4579,8 @@ /** * Return all of the created connections. * - * @return array - * @static + * @return array + * @static */ public static function getConnections() { @@ -4613,8 +4591,8 @@ * Set the database reconnector callback. * * @param callable $reconnector - * @return void - * @static + * @return void + * @static */ public static function setReconnector($reconnector) { @@ -4625,8 +4603,8 @@ * Set the application instance used by the manager. * * @param \Illuminate\Contracts\Foundation\Application $app - * @return \Illuminate\Database\DatabaseManager - * @static + * @return \Illuminate\Database\DatabaseManager + * @static */ public static function setApplication($app) { @@ -4636,8 +4614,8 @@ /** * Determine if the connected database is a MariaDB database. * - * @return bool - * @static + * @return bool + * @static */ public static function isMaria() { @@ -4647,8 +4625,8 @@ /** * Get a schema builder instance for the connection. * - * @return \Illuminate\Database\Schema\MySqlBuilder - * @static + * @return \Illuminate\Database\Schema\MySqlBuilder + * @static */ public static function getSchemaBuilder() { @@ -4660,8 +4638,8 @@ * * @param \Illuminate\Filesystem\Filesystem|null $files * @param callable|null $processFactory - * @return \Illuminate\Database\Schema\MySqlSchemaState - * @static + * @return \Illuminate\Database\Schema\MySqlSchemaState + * @static */ public static function getSchemaState($files = null, $processFactory = null) { @@ -4671,8 +4649,8 @@ /** * Set the query grammar to the default implementation. * - * @return void - * @static + * @return void + * @static */ public static function useDefaultQueryGrammar() { //Method inherited from \Illuminate\Database\Connection @@ -4682,8 +4660,8 @@ /** * Set the schema grammar to the default implementation. * - * @return void - * @static + * @return void + * @static */ public static function useDefaultSchemaGrammar() { //Method inherited from \Illuminate\Database\Connection @@ -4693,8 +4671,8 @@ /** * Set the query post processor to the default implementation. * - * @return void - * @static + * @return void + * @static */ public static function useDefaultPostProcessor() { //Method inherited from \Illuminate\Database\Connection @@ -4706,8 +4684,8 @@ * * @param \Closure|\Illuminate\Database\Query\Builder|string $table * @param string|null $as - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function table($table, $as = null) { //Method inherited from \Illuminate\Database\Connection @@ -4717,8 +4695,8 @@ /** * Get a new query builder instance. * - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function query() { //Method inherited from \Illuminate\Database\Connection @@ -4731,8 +4709,8 @@ * @param string $query * @param array $bindings * @param bool $useReadPdo - * @return mixed - * @static + * @return mixed + * @static */ public static function selectOne($query, $bindings = [], $useReadPdo = true) { //Method inherited from \Illuminate\Database\Connection @@ -4744,8 +4722,8 @@ * * @param string $query * @param array $bindings - * @return array - * @static + * @return array + * @static */ public static function selectFromWriteConnection($query, $bindings = []) { //Method inherited from \Illuminate\Database\Connection @@ -4758,8 +4736,8 @@ * @param string $query * @param array $bindings * @param bool $useReadPdo - * @return array - * @static + * @return array + * @static */ public static function select($query, $bindings = [], $useReadPdo = true) { //Method inherited from \Illuminate\Database\Connection @@ -4772,8 +4750,8 @@ * @param string $query * @param array $bindings * @param bool $useReadPdo - * @return \Generator - * @static + * @return \Generator + * @static */ public static function cursor($query, $bindings = [], $useReadPdo = true) { //Method inherited from \Illuminate\Database\Connection @@ -4785,8 +4763,8 @@ * * @param string $query * @param array $bindings - * @return bool - * @static + * @return bool + * @static */ public static function insert($query, $bindings = []) { //Method inherited from \Illuminate\Database\Connection @@ -4798,8 +4776,8 @@ * * @param string $query * @param array $bindings - * @return int - * @static + * @return int + * @static */ public static function update($query, $bindings = []) { //Method inherited from \Illuminate\Database\Connection @@ -4811,8 +4789,8 @@ * * @param string $query * @param array $bindings - * @return int - * @static + * @return int + * @static */ public static function delete($query, $bindings = []) { //Method inherited from \Illuminate\Database\Connection @@ -4824,8 +4802,8 @@ * * @param string $query * @param array $bindings - * @return bool - * @static + * @return bool + * @static */ public static function statement($query, $bindings = []) { //Method inherited from \Illuminate\Database\Connection @@ -4837,8 +4815,8 @@ * * @param string $query * @param array $bindings - * @return int - * @static + * @return int + * @static */ public static function affectingStatement($query, $bindings = []) { //Method inherited from \Illuminate\Database\Connection @@ -4849,8 +4827,8 @@ * Run a raw, unprepared query against the PDO connection. * * @param string $query - * @return bool - * @static + * @return bool + * @static */ public static function unprepared($query) { //Method inherited from \Illuminate\Database\Connection @@ -4861,8 +4839,8 @@ * Execute the given callback in "dry run" mode. * * @param \Closure $callback - * @return array - * @static + * @return array + * @static */ public static function pretend($callback) { //Method inherited from \Illuminate\Database\Connection @@ -4874,8 +4852,8 @@ * * @param \PDOStatement $statement * @param array $bindings - * @return void - * @static + * @return void + * @static */ public static function bindValues($statement, $bindings) { //Method inherited from \Illuminate\Database\Connection @@ -4886,8 +4864,8 @@ * Prepare the query bindings for execution. * * @param array $bindings - * @return array - * @static + * @return array + * @static */ public static function prepareBindings($bindings) { //Method inherited from \Illuminate\Database\Connection @@ -4900,8 +4878,8 @@ * @param string $query * @param array $bindings * @param float|null $time - * @return void - * @static + * @return void + * @static */ public static function logQuery($query, $bindings, $time = null) { //Method inherited from \Illuminate\Database\Connection @@ -4912,8 +4890,8 @@ * Register a hook to be run just before a database query is executed. * * @param \Closure $callback - * @return \Illuminate\Database\MySqlConnection - * @static + * @return \Illuminate\Database\MySqlConnection + * @static */ public static function beforeExecuting($callback) { //Method inherited from \Illuminate\Database\Connection @@ -4924,8 +4902,8 @@ * Register a database query listener with the connection. * * @param \Closure $callback - * @return void - * @static + * @return void + * @static */ public static function listen($callback) { //Method inherited from \Illuminate\Database\Connection @@ -4936,8 +4914,8 @@ * Get a new raw query expression. * * @param mixed $value - * @return \Illuminate\Database\Query\Expression - * @static + * @return \Illuminate\Database\Query\Expression + * @static */ public static function raw($value) { //Method inherited from \Illuminate\Database\Connection @@ -4947,8 +4925,8 @@ /** * Determine if the database connection has modified any database records. * - * @return bool - * @static + * @return bool + * @static */ public static function hasModifiedRecords() { //Method inherited from \Illuminate\Database\Connection @@ -4959,8 +4937,8 @@ * Indicate if any records have been modified. * * @param bool $value - * @return void - * @static + * @return void + * @static */ public static function recordsHaveBeenModified($value = true) { //Method inherited from \Illuminate\Database\Connection @@ -4971,8 +4949,8 @@ * Set the record modification state. * * @param bool $value - * @return \Illuminate\Database\MySqlConnection - * @static + * @return \Illuminate\Database\MySqlConnection + * @static */ public static function setRecordModificationState($value) { //Method inherited from \Illuminate\Database\Connection @@ -4982,8 +4960,8 @@ /** * Reset the record modification state. * - * @return void - * @static + * @return void + * @static */ public static function forgetRecordModificationState() { //Method inherited from \Illuminate\Database\Connection @@ -4994,8 +4972,8 @@ * Indicate that the connection should use the write PDO connection for reads. * * @param bool $value - * @return \Illuminate\Database\MySqlConnection - * @static + * @return \Illuminate\Database\MySqlConnection + * @static */ public static function useWriteConnectionWhenReading($value = true) { //Method inherited from \Illuminate\Database\Connection @@ -5005,8 +4983,8 @@ /** * Is Doctrine available? * - * @return bool - * @static + * @return bool + * @static */ public static function isDoctrineAvailable() { //Method inherited from \Illuminate\Database\Connection @@ -5018,8 +4996,8 @@ * * @param string $table * @param string $column - * @return \Doctrine\DBAL\Schema\Column - * @static + * @return \Doctrine\DBAL\Schema\Column + * @static */ public static function getDoctrineColumn($table, $column) { //Method inherited from \Illuminate\Database\Connection @@ -5029,8 +5007,8 @@ /** * Get the Doctrine DBAL schema manager for the connection. * - * @return \Doctrine\DBAL\Schema\AbstractSchemaManager - * @static + * @return \Doctrine\DBAL\Schema\AbstractSchemaManager + * @static */ public static function getDoctrineSchemaManager() { //Method inherited from \Illuminate\Database\Connection @@ -5040,8 +5018,8 @@ /** * Get the Doctrine DBAL database connection instance. * - * @return \Doctrine\DBAL\Connection - * @static + * @return \Doctrine\DBAL\Connection + * @static */ public static function getDoctrineConnection() { //Method inherited from \Illuminate\Database\Connection @@ -5051,8 +5029,8 @@ /** * Get the current PDO connection. * - * @return \PDO - * @static + * @return \PDO + * @static */ public static function getPdo() { //Method inherited from \Illuminate\Database\Connection @@ -5062,8 +5040,8 @@ /** * Get the current PDO connection parameter without executing any reconnect logic. * - * @return \PDO|\Closure|null - * @static + * @return \PDO|\Closure|null + * @static */ public static function getRawPdo() { //Method inherited from \Illuminate\Database\Connection @@ -5073,8 +5051,8 @@ /** * Get the current PDO connection used for reading. * - * @return \PDO - * @static + * @return \PDO + * @static */ public static function getReadPdo() { //Method inherited from \Illuminate\Database\Connection @@ -5084,8 +5062,8 @@ /** * Get the current read PDO connection parameter without executing any reconnect logic. * - * @return \PDO|\Closure|null - * @static + * @return \PDO|\Closure|null + * @static */ public static function getRawReadPdo() { //Method inherited from \Illuminate\Database\Connection @@ -5096,8 +5074,8 @@ * Set the PDO connection. * * @param \PDO|\Closure|null $pdo - * @return \Illuminate\Database\MySqlConnection - * @static + * @return \Illuminate\Database\MySqlConnection + * @static */ public static function setPdo($pdo) { //Method inherited from \Illuminate\Database\Connection @@ -5108,8 +5086,8 @@ * Set the PDO connection used for reading. * * @param \PDO|\Closure|null $pdo - * @return \Illuminate\Database\MySqlConnection - * @static + * @return \Illuminate\Database\MySqlConnection + * @static */ public static function setReadPdo($pdo) { //Method inherited from \Illuminate\Database\Connection @@ -5119,8 +5097,8 @@ /** * Get the database connection name. * - * @return string|null - * @static + * @return string|null + * @static */ public static function getName() { //Method inherited from \Illuminate\Database\Connection @@ -5130,8 +5108,8 @@ /** * Get the database connection full name. * - * @return string|null - * @static + * @return string|null + * @static */ public static function getNameWithReadWriteType() { //Method inherited from \Illuminate\Database\Connection @@ -5142,8 +5120,8 @@ * Get an option from the configuration options. * * @param string|null $option - * @return mixed - * @static + * @return mixed + * @static */ public static function getConfig($option = null) { //Method inherited from \Illuminate\Database\Connection @@ -5153,8 +5131,8 @@ /** * Get the PDO driver name. * - * @return string - * @static + * @return string + * @static */ public static function getDriverName() { //Method inherited from \Illuminate\Database\Connection @@ -5164,8 +5142,8 @@ /** * Get the query grammar used by the connection. * - * @return \Illuminate\Database\Query\Grammars\Grammar - * @static + * @return \Illuminate\Database\Query\Grammars\Grammar + * @static */ public static function getQueryGrammar() { //Method inherited from \Illuminate\Database\Connection @@ -5176,8 +5154,8 @@ * Set the query grammar used by the connection. * * @param \Illuminate\Database\Query\Grammars\Grammar $grammar - * @return \Illuminate\Database\MySqlConnection - * @static + * @return \Illuminate\Database\MySqlConnection + * @static */ public static function setQueryGrammar($grammar) { //Method inherited from \Illuminate\Database\Connection @@ -5187,8 +5165,8 @@ /** * Get the schema grammar used by the connection. * - * @return \Illuminate\Database\Schema\Grammars\Grammar - * @static + * @return \Illuminate\Database\Schema\Grammars\Grammar + * @static */ public static function getSchemaGrammar() { //Method inherited from \Illuminate\Database\Connection @@ -5199,8 +5177,8 @@ * Set the schema grammar used by the connection. * * @param \Illuminate\Database\Schema\Grammars\Grammar $grammar - * @return \Illuminate\Database\MySqlConnection - * @static + * @return \Illuminate\Database\MySqlConnection + * @static */ public static function setSchemaGrammar($grammar) { //Method inherited from \Illuminate\Database\Connection @@ -5210,8 +5188,8 @@ /** * Get the query post processor used by the connection. * - * @return \Illuminate\Database\Query\Processors\Processor - * @static + * @return \Illuminate\Database\Query\Processors\Processor + * @static */ public static function getPostProcessor() { //Method inherited from \Illuminate\Database\Connection @@ -5222,8 +5200,8 @@ * Set the query post processor used by the connection. * * @param \Illuminate\Database\Query\Processors\Processor $processor - * @return \Illuminate\Database\MySqlConnection - * @static + * @return \Illuminate\Database\MySqlConnection + * @static */ public static function setPostProcessor($processor) { //Method inherited from \Illuminate\Database\Connection @@ -5233,8 +5211,8 @@ /** * Get the event dispatcher used by the connection. * - * @return \Illuminate\Contracts\Events\Dispatcher - * @static + * @return \Illuminate\Contracts\Events\Dispatcher + * @static */ public static function getEventDispatcher() { //Method inherited from \Illuminate\Database\Connection @@ -5245,8 +5223,8 @@ * Set the event dispatcher instance on the connection. * * @param \Illuminate\Contracts\Events\Dispatcher $events - * @return \Illuminate\Database\MySqlConnection - * @static + * @return \Illuminate\Database\MySqlConnection + * @static */ public static function setEventDispatcher($events) { //Method inherited from \Illuminate\Database\Connection @@ -5256,8 +5234,8 @@ /** * Unset the event dispatcher for this connection. * - * @return void - * @static + * @return void + * @static */ public static function unsetEventDispatcher() { //Method inherited from \Illuminate\Database\Connection @@ -5268,8 +5246,8 @@ * Set the transaction manager instance on the connection. * * @param \Illuminate\Database\DatabaseTransactionsManager $manager - * @return \Illuminate\Database\MySqlConnection - * @static + * @return \Illuminate\Database\MySqlConnection + * @static */ public static function setTransactionManager($manager) { //Method inherited from \Illuminate\Database\Connection @@ -5279,8 +5257,8 @@ /** * Unset the transaction manager for this connection. * - * @return void - * @static + * @return void + * @static */ public static function unsetTransactionManager() { //Method inherited from \Illuminate\Database\Connection @@ -5290,8 +5268,8 @@ /** * Determine if the connection is in a "dry run". * - * @return bool - * @static + * @return bool + * @static */ public static function pretending() { //Method inherited from \Illuminate\Database\Connection @@ -5301,8 +5279,8 @@ /** * Get the connection query log. * - * @return array - * @static + * @return array + * @static */ public static function getQueryLog() { //Method inherited from \Illuminate\Database\Connection @@ -5312,8 +5290,8 @@ /** * Clear the query log. * - * @return void - * @static + * @return void + * @static */ public static function flushQueryLog() { //Method inherited from \Illuminate\Database\Connection @@ -5323,8 +5301,8 @@ /** * Enable the query log on the connection. * - * @return void - * @static + * @return void + * @static */ public static function enableQueryLog() { //Method inherited from \Illuminate\Database\Connection @@ -5334,8 +5312,8 @@ /** * Disable the query log on the connection. * - * @return void - * @static + * @return void + * @static */ public static function disableQueryLog() { //Method inherited from \Illuminate\Database\Connection @@ -5345,8 +5323,8 @@ /** * Determine whether we're logging queries. * - * @return bool - * @static + * @return bool + * @static */ public static function logging() { //Method inherited from \Illuminate\Database\Connection @@ -5356,8 +5334,8 @@ /** * Get the name of the connected database. * - * @return string - * @static + * @return string + * @static */ public static function getDatabaseName() { //Method inherited from \Illuminate\Database\Connection @@ -5368,8 +5346,8 @@ * Set the name of the connected database. * * @param string $database - * @return \Illuminate\Database\MySqlConnection - * @static + * @return \Illuminate\Database\MySqlConnection + * @static */ public static function setDatabaseName($database) { //Method inherited from \Illuminate\Database\Connection @@ -5380,8 +5358,8 @@ * Set the read / write type of the connection. * * @param string|null $readWriteType - * @return \Illuminate\Database\MySqlConnection - * @static + * @return \Illuminate\Database\MySqlConnection + * @static */ public static function setReadWriteType($readWriteType) { //Method inherited from \Illuminate\Database\Connection @@ -5391,8 +5369,8 @@ /** * Get the table prefix for the connection. * - * @return string - * @static + * @return string + * @static */ public static function getTablePrefix() { //Method inherited from \Illuminate\Database\Connection @@ -5403,8 +5381,8 @@ * Set the table prefix in use by the connection. * * @param string $prefix - * @return \Illuminate\Database\MySqlConnection - * @static + * @return \Illuminate\Database\MySqlConnection + * @static */ public static function setTablePrefix($prefix) { //Method inherited from \Illuminate\Database\Connection @@ -5415,8 +5393,8 @@ * Set the table prefix and return the grammar. * * @param \Illuminate\Database\Grammar $grammar - * @return \Illuminate\Database\Grammar - * @static + * @return \Illuminate\Database\Grammar + * @static */ public static function withTablePrefix($grammar) { //Method inherited from \Illuminate\Database\Connection @@ -5428,8 +5406,8 @@ * * @param string $driver * @param \Closure $callback - * @return void - * @static + * @return void + * @static */ public static function resolverFor($driver, $callback) { //Method inherited from \Illuminate\Database\Connection @@ -5439,8 +5417,8 @@ * Get the connection resolver for the given driver. * * @param string $driver - * @return mixed - * @static + * @return mixed + * @static */ public static function getResolver($driver) { //Method inherited from \Illuminate\Database\Connection @@ -5451,9 +5429,9 @@ * * @param \Closure $callback * @param int $attempts - * @return mixed + * @return mixed * @throws \Throwable - * @static + * @static */ public static function transaction($callback, $attempts = 1) { //Method inherited from \Illuminate\Database\Connection @@ -5463,9 +5441,9 @@ /** * Start a new database transaction. * - * @return void + * @return void * @throws \Throwable - * @static + * @static */ public static function beginTransaction() { //Method inherited from \Illuminate\Database\Connection @@ -5475,9 +5453,9 @@ /** * Commit the active database transaction. * - * @return void + * @return void * @throws \Throwable - * @static + * @static */ public static function commit() { //Method inherited from \Illuminate\Database\Connection @@ -5488,9 +5466,9 @@ * Rollback the active database transaction. * * @param int|null $toLevel - * @return void + * @return void * @throws \Throwable - * @static + * @static */ public static function rollBack($toLevel = null) { //Method inherited from \Illuminate\Database\Connection @@ -5500,8 +5478,8 @@ /** * Get the number of active transactions. * - * @return int - * @static + * @return int + * @static */ public static function transactionLevel() { //Method inherited from \Illuminate\Database\Connection @@ -5512,9 +5490,9 @@ * Execute the callback after a transaction commits. * * @param callable $callback - * @return void + * @return void * @throws \RuntimeException - * @static + * @static */ public static function afterCommit($callback) { //Method inherited from \Illuminate\Database\Connection @@ -5524,8 +5502,6 @@ } /** - * - * * @see \Illuminate\Events\Dispatcher */ class Event { @@ -5534,8 +5510,8 @@ * * @param \Closure|string|array $events * @param \Closure|string|array|null $listener - * @return void - * @static + * @return void + * @static */ public static function listen($events, $listener = null) { @@ -5546,8 +5522,8 @@ * Determine if a given event has listeners. * * @param string $eventName - * @return bool - * @static + * @return bool + * @static */ public static function hasListeners($eventName) { @@ -5558,8 +5534,8 @@ * Determine if the given event has any wildcard listeners. * * @param string $eventName - * @return bool - * @static + * @return bool + * @static */ public static function hasWildcardListeners($eventName) { @@ -5571,8 +5547,8 @@ * * @param string $event * @param array $payload - * @return void - * @static + * @return void + * @static */ public static function push($event, $payload = []) { @@ -5583,8 +5559,8 @@ * Flush a set of pushed events. * * @param string $event - * @return void - * @static + * @return void + * @static */ public static function flush($event) { @@ -5595,8 +5571,8 @@ * Register an event subscriber with the dispatcher. * * @param object|string $subscriber - * @return void - * @static + * @return void + * @static */ public static function subscribe($subscriber) { @@ -5608,8 +5584,8 @@ * * @param string|object $event * @param mixed $payload - * @return array|null - * @static + * @return array|null + * @static */ public static function until($event, $payload = []) { @@ -5622,8 +5598,8 @@ * @param string|object $event * @param mixed $payload * @param bool $halt - * @return array|null - * @static + * @return array|null + * @static */ public static function dispatch($event, $payload = [], $halt = false) { @@ -5634,8 +5610,8 @@ * Get all of the listeners for a given event name. * * @param string $eventName - * @return array - * @static + * @return array + * @static */ public static function getListeners($eventName) { @@ -5647,8 +5623,8 @@ * * @param \Closure|string|array $listener * @param bool $wildcard - * @return \Closure - * @static + * @return \Closure + * @static */ public static function makeListener($listener, $wildcard = false) { @@ -5660,8 +5636,8 @@ * * @param string $listener * @param bool $wildcard - * @return \Closure - * @static + * @return \Closure + * @static */ public static function createClassListener($listener, $wildcard = false) { @@ -5672,8 +5648,8 @@ * Remove a set of listeners from the dispatcher. * * @param string $event - * @return void - * @static + * @return void + * @static */ public static function forget($event) { @@ -5683,8 +5659,8 @@ /** * Forget all of the pushed listeners. * - * @return void - * @static + * @return void + * @static */ public static function forgetPushed() { @@ -5695,8 +5671,8 @@ * Set the queue resolver implementation. * * @param callable $resolver - * @return \Illuminate\Events\Dispatcher - * @static + * @return \Illuminate\Events\Dispatcher + * @static */ public static function setQueueResolver($resolver) { @@ -5708,8 +5684,8 @@ * * @param string $name * @param object|callable $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -5720,9 +5696,9 @@ * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -5732,8 +5708,8 @@ * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -5742,8 +5718,8 @@ /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -5754,8 +5730,8 @@ * * @param string $expectedEvent * @param string $expectedListener - * @return void - * @static + * @return void + * @static */ public static function assertListening($expectedEvent, $expectedListener) { @@ -5767,8 +5743,8 @@ * * @param string|\Closure $event * @param callable|int|null $callback - * @return void - * @static + * @return void + * @static */ public static function assertDispatched($event, $callback = null) { @@ -5780,8 +5756,8 @@ * * @param string $event * @param int $times - * @return void - * @static + * @return void + * @static */ public static function assertDispatchedTimes($event, $times = 1) { @@ -5793,8 +5769,8 @@ * * @param string|\Closure $event * @param callable|null $callback - * @return void - * @static + * @return void + * @static */ public static function assertNotDispatched($event, $callback = null) { @@ -5804,8 +5780,8 @@ /** * Assert that no events were dispatched. * - * @return void - * @static + * @return void + * @static */ public static function assertNothingDispatched() { @@ -5817,8 +5793,8 @@ * * @param string $event * @param callable|null $callback - * @return \Illuminate\Support\Collection - * @static + * @return \Illuminate\Support\Collection + * @static */ public static function dispatched($event, $callback = null) { @@ -5829,8 +5805,8 @@ * Determine if the given event has been dispatched. * * @param string $event - * @return bool - * @static + * @return bool + * @static */ public static function hasDispatched($event) { @@ -5840,8 +5816,6 @@ } /** - * - * * @see \Illuminate\Filesystem\Filesystem */ class File { @@ -5849,8 +5823,8 @@ * Determine if a file or directory exists. * * @param string $path - * @return bool - * @static + * @return bool + * @static */ public static function exists($path) { @@ -5861,8 +5835,8 @@ * Determine if a file or directory is missing. * * @param string $path - * @return bool - * @static + * @return bool + * @static */ public static function missing($path) { @@ -5874,9 +5848,9 @@ * * @param string $path * @param bool $lock - * @return string + * @return string * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException - * @static + * @static */ public static function get($path, $lock = false) { @@ -5887,8 +5861,8 @@ * Get contents of a file with shared access. * * @param string $path - * @return string - * @static + * @return string + * @static */ public static function sharedGet($path) { @@ -5900,9 +5874,9 @@ * * @param string $path * @param array $data - * @return mixed + * @return mixed * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException - * @static + * @static */ public static function getRequire($path, $data = []) { @@ -5914,9 +5888,9 @@ * * @param string $path * @param array $data - * @return mixed + * @return mixed * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException - * @static + * @static */ public static function requireOnce($path, $data = []) { @@ -5927,9 +5901,9 @@ * Get the contents of a file one line at a time. * * @param string $path - * @return \Illuminate\Support\LazyCollection + * @return \Illuminate\Support\LazyCollection * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException - * @static + * @static */ public static function lines($path) { @@ -5940,8 +5914,8 @@ * Get the MD5 hash of the file at the given path. * * @param string $path - * @return string - * @static + * @return string + * @static */ public static function hash($path) { @@ -5954,8 +5928,8 @@ * @param string $path * @param string $contents * @param bool $lock - * @return int|bool - * @static + * @return int|bool + * @static */ public static function put($path, $contents, $lock = false) { @@ -5967,8 +5941,8 @@ * * @param string $path * @param string $content - * @return void - * @static + * @return void + * @static */ public static function replace($path, $content) { @@ -5981,8 +5955,8 @@ * @param array|string $search * @param array|string $replace * @param string $path - * @return void - * @static + * @return void + * @static */ public static function replaceInFile($search, $replace, $path) { @@ -5994,8 +5968,8 @@ * * @param string $path * @param string $data - * @return int - * @static + * @return int + * @static */ public static function prepend($path, $data) { @@ -6007,8 +5981,8 @@ * * @param string $path * @param string $data - * @return int - * @static + * @return int + * @static */ public static function append($path, $data) { @@ -6020,8 +5994,8 @@ * * @param string $path * @param int|null $mode - * @return mixed - * @static + * @return mixed + * @static */ public static function chmod($path, $mode = null) { @@ -6032,8 +6006,8 @@ * Delete the file at a given path. * * @param string|array $paths - * @return bool - * @static + * @return bool + * @static */ public static function delete($paths) { @@ -6045,8 +6019,8 @@ * * @param string $path * @param string $target - * @return bool - * @static + * @return bool + * @static */ public static function move($path, $target) { @@ -6058,8 +6032,8 @@ * * @param string $path * @param string $target - * @return bool - * @static + * @return bool + * @static */ public static function copy($path, $target) { @@ -6071,8 +6045,8 @@ * * @param string $target * @param string $link - * @return void - * @static + * @return void + * @static */ public static function link($target, $link) { @@ -6084,9 +6058,9 @@ * * @param string $target * @param string $link - * @return void + * @return void * @throws \RuntimeException - * @static + * @static */ public static function relativeLink($target, $link) { @@ -6097,8 +6071,8 @@ * Extract the file name from a file path. * * @param string $path - * @return string - * @static + * @return string + * @static */ public static function name($path) { @@ -6109,8 +6083,8 @@ * Extract the trailing name component from a file path. * * @param string $path - * @return string - * @static + * @return string + * @static */ public static function basename($path) { @@ -6121,8 +6095,8 @@ * Extract the parent directory from a file path. * * @param string $path - * @return string - * @static + * @return string + * @static */ public static function dirname($path) { @@ -6133,8 +6107,8 @@ * Extract the file extension from a file path. * * @param string $path - * @return string - * @static + * @return string + * @static */ public static function extension($path) { @@ -6145,9 +6119,9 @@ * Guess the file extension from the mime-type of a given file. * * @param string $path - * @return string|null + * @return string|null * @throws \RuntimeException - * @static + * @static */ public static function guessExtension($path) { @@ -6158,8 +6132,8 @@ * Get the file type of a given file. * * @param string $path - * @return string - * @static + * @return string + * @static */ public static function type($path) { @@ -6170,8 +6144,8 @@ * Get the mime-type of a given file. * * @param string $path - * @return string|false - * @static + * @return string|false + * @static */ public static function mimeType($path) { @@ -6182,8 +6156,8 @@ * Get the file size of a given file. * * @param string $path - * @return int - * @static + * @return int + * @static */ public static function size($path) { @@ -6194,8 +6168,8 @@ * Get the file's last modification time. * * @param string $path - * @return int - * @static + * @return int + * @static */ public static function lastModified($path) { @@ -6206,8 +6180,8 @@ * Determine if the given path is a directory. * * @param string $directory - * @return bool - * @static + * @return bool + * @static */ public static function isDirectory($directory) { @@ -6218,8 +6192,8 @@ * Determine if the given path is readable. * * @param string $path - * @return bool - * @static + * @return bool + * @static */ public static function isReadable($path) { @@ -6230,8 +6204,8 @@ * Determine if the given path is writable. * * @param string $path - * @return bool - * @static + * @return bool + * @static */ public static function isWritable($path) { @@ -6242,8 +6216,8 @@ * Determine if the given path is a file. * * @param string $file - * @return bool - * @static + * @return bool + * @static */ public static function isFile($file) { @@ -6255,8 +6229,8 @@ * * @param string $pattern * @param int $flags - * @return array - * @static + * @return array + * @static */ public static function glob($pattern, $flags = 0) { @@ -6268,8 +6242,8 @@ * * @param string $directory * @param bool $hidden - * @return \Symfony\Component\Finder\SplFileInfo[] - * @static + * @return \Symfony\Component\Finder\SplFileInfo[] + * @static */ public static function files($directory, $hidden = false) { @@ -6281,8 +6255,8 @@ * * @param string $directory * @param bool $hidden - * @return \Symfony\Component\Finder\SplFileInfo[] - * @static + * @return \Symfony\Component\Finder\SplFileInfo[] + * @static */ public static function allFiles($directory, $hidden = false) { @@ -6293,8 +6267,8 @@ * Get all of the directories within a given directory. * * @param string $directory - * @return array - * @static + * @return array + * @static */ public static function directories($directory) { @@ -6307,8 +6281,8 @@ * @param string $path * @param int $mode * @param bool $recursive - * @return void - * @static + * @return void + * @static */ public static function ensureDirectoryExists($path, $mode = 493, $recursive = true) { @@ -6322,8 +6296,8 @@ * @param int $mode * @param bool $recursive * @param bool $force - * @return bool - * @static + * @return bool + * @static */ public static function makeDirectory($path, $mode = 493, $recursive = false, $force = false) { @@ -6336,8 +6310,8 @@ * @param string $from * @param string $to * @param bool $overwrite - * @return bool - * @static + * @return bool + * @static */ public static function moveDirectory($from, $to, $overwrite = false) { @@ -6350,8 +6324,8 @@ * @param string $directory * @param string $destination * @param int|null $options - * @return bool - * @static + * @return bool + * @static */ public static function copyDirectory($directory, $destination, $options = null) { @@ -6365,8 +6339,8 @@ * * @param string $directory * @param bool $preserve - * @return bool - * @static + * @return bool + * @static */ public static function deleteDirectory($directory, $preserve = false) { @@ -6377,8 +6351,8 @@ * Remove all of the directories within a given directory. * * @param string $directory - * @return bool - * @static + * @return bool + * @static */ public static function deleteDirectories($directory) { @@ -6389,8 +6363,8 @@ * Empty the specified directory of all files and folders. * * @param string $directory - * @return bool - * @static + * @return bool + * @static */ public static function cleanDirectory($directory) { @@ -6402,8 +6376,8 @@ * * @param string $name * @param object|callable $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -6414,9 +6388,9 @@ * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -6426,8 +6400,8 @@ * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -6436,8 +6410,8 @@ /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -6446,8 +6420,6 @@ } /** - * - * * @see \Illuminate\Contracts\Auth\Access\Gate */ class Gate { @@ -6455,8 +6427,8 @@ * Determine if a given ability has been defined. * * @param string|array $ability - * @return bool - * @static + * @return bool + * @static */ public static function has($ability) { @@ -6469,9 +6441,9 @@ * @param \Illuminate\Auth\Access\Response|\Closure|bool $condition * @param string|null $message * @param string|null $code - * @return \Illuminate\Auth\Access\Response + * @return \Illuminate\Auth\Access\Response * @throws \Illuminate\Auth\Access\AuthorizationException - * @static + * @static */ public static function allowIf($condition, $message = null, $code = null) { @@ -6484,9 +6456,9 @@ * @param \Illuminate\Auth\Access\Response|\Closure|bool $condition * @param string|null $message * @param string|null $code - * @return \Illuminate\Auth\Access\Response + * @return \Illuminate\Auth\Access\Response * @throws \Illuminate\Auth\Access\AuthorizationException - * @static + * @static */ public static function denyIf($condition, $message = null, $code = null) { @@ -6498,9 +6470,9 @@ * * @param string $ability * @param callable|string $callback - * @return \Illuminate\Auth\Access\Gate + * @return \Illuminate\Auth\Access\Gate * @throws \InvalidArgumentException - * @static + * @static */ public static function define($ability, $callback) { @@ -6513,8 +6485,8 @@ * @param string $name * @param string $class * @param array|null $abilities - * @return \Illuminate\Auth\Access\Gate - * @static + * @return \Illuminate\Auth\Access\Gate + * @static */ public static function resource($name, $class, $abilities = null) { @@ -6526,8 +6498,8 @@ * * @param string $class * @param string $policy - * @return \Illuminate\Auth\Access\Gate - * @static + * @return \Illuminate\Auth\Access\Gate + * @static */ public static function policy($class, $policy) { @@ -6538,8 +6510,8 @@ * Register a callback to run before all Gate checks. * * @param callable $callback - * @return \Illuminate\Auth\Access\Gate - * @static + * @return \Illuminate\Auth\Access\Gate + * @static */ public static function before($callback) { @@ -6550,8 +6522,8 @@ * Register a callback to run after all Gate checks. * * @param callable $callback - * @return \Illuminate\Auth\Access\Gate - * @static + * @return \Illuminate\Auth\Access\Gate + * @static */ public static function after($callback) { @@ -6563,8 +6535,8 @@ * * @param string $ability * @param array|mixed $arguments - * @return bool - * @static + * @return bool + * @static */ public static function allows($ability, $arguments = []) { @@ -6576,8 +6548,8 @@ * * @param string $ability * @param array|mixed $arguments - * @return bool - * @static + * @return bool + * @static */ public static function denies($ability, $arguments = []) { @@ -6589,8 +6561,8 @@ * * @param iterable|string $abilities * @param array|mixed $arguments - * @return bool - * @static + * @return bool + * @static */ public static function check($abilities, $arguments = []) { @@ -6602,8 +6574,8 @@ * * @param iterable|string $abilities * @param array|mixed $arguments - * @return bool - * @static + * @return bool + * @static */ public static function any($abilities, $arguments = []) { @@ -6615,8 +6587,8 @@ * * @param iterable|string $abilities * @param array|mixed $arguments - * @return bool - * @static + * @return bool + * @static */ public static function none($abilities, $arguments = []) { @@ -6628,9 +6600,9 @@ * * @param string $ability * @param array|mixed $arguments - * @return \Illuminate\Auth\Access\Response + * @return \Illuminate\Auth\Access\Response * @throws \Illuminate\Auth\Access\AuthorizationException - * @static + * @static */ public static function authorize($ability, $arguments = []) { @@ -6642,8 +6614,8 @@ * * @param string $ability * @param array|mixed $arguments - * @return \Illuminate\Auth\Access\Response - * @static + * @return \Illuminate\Auth\Access\Response + * @static */ public static function inspect($ability, $arguments = []) { @@ -6655,9 +6627,9 @@ * * @param string $ability * @param array|mixed $arguments - * @return mixed + * @return mixed * @throws \Illuminate\Auth\Access\AuthorizationException - * @static + * @static */ public static function raw($ability, $arguments = []) { @@ -6668,8 +6640,8 @@ * Get a policy instance for a given class. * * @param object|string $class - * @return mixed - * @static + * @return mixed + * @static */ public static function getPolicyFor($class) { @@ -6680,8 +6652,8 @@ * Specify a callback to be used to guess policy names. * * @param callable $callback - * @return \Illuminate\Auth\Access\Gate - * @static + * @return \Illuminate\Auth\Access\Gate + * @static */ public static function guessPolicyNamesUsing($callback) { @@ -6692,9 +6664,9 @@ * Build a policy class instance of the given type. * * @param object|string $class - * @return mixed + * @return mixed * @throws \Illuminate\Contracts\Container\BindingResolutionException - * @static + * @static */ public static function resolvePolicy($class) { @@ -6705,8 +6677,8 @@ * Get a gate instance for the given user. * * @param \Illuminate\Contracts\Auth\Authenticatable|mixed $user - * @return static - * @static + * @return static + * @static */ public static function forUser($user) { @@ -6716,8 +6688,8 @@ /** * Get all of the defined abilities. * - * @return array - * @static + * @return array + * @static */ public static function abilities() { @@ -6727,8 +6699,8 @@ /** * Get all of the defined policies. * - * @return array - * @static + * @return array + * @static */ public static function policies() { @@ -6739,8 +6711,8 @@ * Set the container instance used by the gate. * * @param \Illuminate\Contracts\Container\Container $container - * @return \Illuminate\Auth\Access\Gate - * @static + * @return \Illuminate\Auth\Access\Gate + * @static */ public static function setContainer($container) { @@ -6750,16 +6722,14 @@ } /** - * - * * @see \Illuminate\Hashing\HashManager */ class Hash { /** * Create an instance of the Bcrypt hash Driver. * - * @return \Illuminate\Hashing\BcryptHasher - * @static + * @return \Illuminate\Hashing\BcryptHasher + * @static */ public static function createBcryptDriver() { @@ -6769,8 +6739,8 @@ /** * Create an instance of the Argon2i hash Driver. * - * @return \Illuminate\Hashing\ArgonHasher - * @static + * @return \Illuminate\Hashing\ArgonHasher + * @static */ public static function createArgonDriver() { @@ -6780,8 +6750,8 @@ /** * Create an instance of the Argon2id hash Driver. * - * @return \Illuminate\Hashing\Argon2IdHasher - * @static + * @return \Illuminate\Hashing\Argon2IdHasher + * @static */ public static function createArgon2idDriver() { @@ -6792,8 +6762,8 @@ * Get information about the given hashed value. * * @param string $hashedValue - * @return array - * @static + * @return array + * @static */ public static function info($hashedValue) { @@ -6805,8 +6775,8 @@ * * @param string $value * @param array $options - * @return string - * @static + * @return string + * @static */ public static function make($value, $options = []) { @@ -6819,8 +6789,8 @@ * @param string $value * @param string $hashedValue * @param array $options - * @return bool - * @static + * @return bool + * @static */ public static function check($value, $hashedValue, $options = []) { @@ -6832,8 +6802,8 @@ * * @param string $hashedValue * @param array $options - * @return bool - * @static + * @return bool + * @static */ public static function needsRehash($hashedValue, $options = []) { @@ -6843,8 +6813,8 @@ /** * Get the default driver name. * - * @return string - * @static + * @return string + * @static */ public static function getDefaultDriver() { @@ -6855,9 +6825,9 @@ * Get a driver instance. * * @param string|null $driver - * @return mixed + * @return mixed * @throws \InvalidArgumentException - * @static + * @static */ public static function driver($driver = null) { //Method inherited from \Illuminate\Support\Manager @@ -6869,8 +6839,8 @@ * * @param string $driver * @param \Closure $callback - * @return \Illuminate\Hashing\HashManager - * @static + * @return \Illuminate\Hashing\HashManager + * @static */ public static function extend($driver, $callback) { //Method inherited from \Illuminate\Support\Manager @@ -6880,8 +6850,8 @@ /** * Get all of the created "drivers". * - * @return array - * @static + * @return array + * @static */ public static function getDrivers() { //Method inherited from \Illuminate\Support\Manager @@ -6891,8 +6861,8 @@ /** * Get the container instance used by the manager. * - * @return \Illuminate\Contracts\Container\Container - * @static + * @return \Illuminate\Contracts\Container\Container + * @static */ public static function getContainer() { //Method inherited from \Illuminate\Support\Manager @@ -6903,8 +6873,8 @@ * Set the container instance used by the manager. * * @param \Illuminate\Contracts\Container\Container $container - * @return \Illuminate\Hashing\HashManager - * @static + * @return \Illuminate\Hashing\HashManager + * @static */ public static function setContainer($container) { //Method inherited from \Illuminate\Support\Manager @@ -6914,8 +6884,8 @@ /** * Forget all of the resolved driver instances. * - * @return \Illuminate\Hashing\HashManager - * @static + * @return \Illuminate\Hashing\HashManager + * @static */ public static function forgetDrivers() { //Method inherited from \Illuminate\Support\Manager @@ -6925,8 +6895,6 @@ } /** - * - * * @see \Illuminate\Translation\Translator */ class Lang { @@ -6935,8 +6903,8 @@ * * @param string $key * @param string|null $locale - * @return bool - * @static + * @return bool + * @static */ public static function hasForLocale($key, $locale = null) { @@ -6949,8 +6917,8 @@ * @param string $key * @param string|null $locale * @param bool $fallback - * @return bool - * @static + * @return bool + * @static */ public static function has($key, $locale = null, $fallback = true) { @@ -6964,8 +6932,8 @@ * @param array $replace * @param string|null $locale * @param bool $fallback - * @return string|array - * @static + * @return string|array + * @static */ public static function get($key, $replace = [], $locale = null, $fallback = true) { @@ -6979,8 +6947,8 @@ * @param \Countable|int|array $number * @param array $replace * @param string|null $locale - * @return string - * @static + * @return string + * @static */ public static function choice($key, $number, $replace = [], $locale = null) { @@ -6993,8 +6961,8 @@ * @param array $lines * @param string $locale * @param string $namespace - * @return void - * @static + * @return void + * @static */ public static function addLines($lines, $locale, $namespace = '*') { @@ -7007,8 +6975,8 @@ * @param string $namespace * @param string $group * @param string $locale - * @return void - * @static + * @return void + * @static */ public static function load($namespace, $group, $locale) { @@ -7020,8 +6988,8 @@ * * @param string $namespace * @param string $hint - * @return void - * @static + * @return void + * @static */ public static function addNamespace($namespace, $hint) { @@ -7032,8 +7000,8 @@ * Add a new JSON path to the loader. * * @param string $path - * @return void - * @static + * @return void + * @static */ public static function addJsonPath($path) { @@ -7044,8 +7012,8 @@ * Parse a key into namespace, group, and item. * * @param string $key - * @return array - * @static + * @return array + * @static */ public static function parseKey($key) { @@ -7055,8 +7023,8 @@ /** * Get the message selector instance. * - * @return \Illuminate\Translation\MessageSelector - * @static + * @return \Illuminate\Translation\MessageSelector + * @static */ public static function getSelector() { @@ -7067,8 +7035,8 @@ * Set the message selector instance. * * @param \Illuminate\Translation\MessageSelector $selector - * @return void - * @static + * @return void + * @static */ public static function setSelector($selector) { @@ -7078,8 +7046,8 @@ /** * Get the language line loader implementation. * - * @return \Illuminate\Contracts\Translation\Loader - * @static + * @return \Illuminate\Contracts\Translation\Loader + * @static */ public static function getLoader() { @@ -7089,8 +7057,8 @@ /** * Get the default locale being used. * - * @return string - * @static + * @return string + * @static */ public static function locale() { @@ -7100,8 +7068,8 @@ /** * Get the default locale being used. * - * @return string - * @static + * @return string + * @static */ public static function getLocale() { @@ -7112,9 +7080,9 @@ * Set the default locale. * * @param string $locale - * @return void + * @return void * @throws \InvalidArgumentException - * @static + * @static */ public static function setLocale($locale) { @@ -7124,8 +7092,8 @@ /** * Get the fallback locale being used. * - * @return string - * @static + * @return string + * @static */ public static function getFallback() { @@ -7136,8 +7104,8 @@ * Set the fallback locale being used. * * @param string $fallback - * @return void - * @static + * @return void + * @static */ public static function setFallback($fallback) { @@ -7148,8 +7116,8 @@ * Set the loaded translation groups. * * @param array $loaded - * @return void - * @static + * @return void + * @static */ public static function setLoaded($loaded) { @@ -7161,8 +7129,8 @@ * * @param string $key * @param array $parsed - * @return void - * @static + * @return void + * @static */ public static function setParsedKey($key, $parsed) { //Method inherited from \Illuminate\Support\NamespacedItemResolver @@ -7172,8 +7140,8 @@ /** * Flush the cache of parsed keys. * - * @return void - * @static + * @return void + * @static */ public static function flushParsedKeys() { //Method inherited from \Illuminate\Support\NamespacedItemResolver @@ -7185,8 +7153,8 @@ * * @param string $name * @param object|callable $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -7197,9 +7165,9 @@ * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -7209,8 +7177,8 @@ * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -7219,8 +7187,8 @@ /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -7229,8 +7197,6 @@ } /** - * - * * @method static \Illuminate\Log\Logger withContext(array $context = []) * @method static \Illuminate\Log\Logger withoutContext() * @method static void write(string $level, string $message, array $context = []) @@ -7242,8 +7208,8 @@ * Build an on-demand log channel. * * @param array $config - * @return \Psr\Log\LoggerInterface - * @static + * @return \Psr\Log\LoggerInterface + * @static */ public static function build($config) { @@ -7255,8 +7221,8 @@ * * @param array $channels * @param string|null $channel - * @return \Psr\Log\LoggerInterface - * @static + * @return \Psr\Log\LoggerInterface + * @static */ public static function stack($channels, $channel = null) { @@ -7267,8 +7233,8 @@ * Get a log channel instance. * * @param string|null $channel - * @return \Psr\Log\LoggerInterface - * @static + * @return \Psr\Log\LoggerInterface + * @static */ public static function channel($channel = null) { @@ -7279,8 +7245,8 @@ * Get a log driver instance. * * @param string|null $driver - * @return \Psr\Log\LoggerInterface - * @static + * @return \Psr\Log\LoggerInterface + * @static */ public static function driver($driver = null) { @@ -7290,8 +7256,8 @@ /** * Get the default log driver name. * - * @return string|null - * @static + * @return string|null + * @static */ public static function getDefaultDriver() { @@ -7302,8 +7268,8 @@ * Set the default log driver name. * * @param string $name - * @return void - * @static + * @return void + * @static */ public static function setDefaultDriver($name) { @@ -7315,8 +7281,8 @@ * * @param string $driver * @param \Closure $callback - * @return \Illuminate\Log\LogManager - * @static + * @return \Illuminate\Log\LogManager + * @static */ public static function extend($driver, $callback) { @@ -7327,8 +7293,8 @@ * Unset the given channel instance. * * @param string|null $driver - * @return \Illuminate\Log\LogManager - * @static + * @return \Illuminate\Log\LogManager + * @static */ public static function forgetChannel($driver = null) { @@ -7338,8 +7304,8 @@ /** * Get all of the resolved log channels. * - * @return array - * @static + * @return array + * @static */ public static function getChannels() { @@ -7351,8 +7317,8 @@ * * @param string $message * @param array $context - * @return void - * @static + * @return void + * @static */ public static function emergency($message, $context = []) { @@ -7367,8 +7333,8 @@ * * @param string $message * @param array $context - * @return void - * @static + * @return void + * @static */ public static function alert($message, $context = []) { @@ -7382,8 +7348,8 @@ * * @param string $message * @param array $context - * @return void - * @static + * @return void + * @static */ public static function critical($message, $context = []) { @@ -7396,8 +7362,8 @@ * * @param string $message * @param array $context - * @return void - * @static + * @return void + * @static */ public static function error($message, $context = []) { @@ -7412,8 +7378,8 @@ * * @param string $message * @param array $context - * @return void - * @static + * @return void + * @static */ public static function warning($message, $context = []) { @@ -7425,8 +7391,8 @@ * * @param string $message * @param array $context - * @return void - * @static + * @return void + * @static */ public static function notice($message, $context = []) { @@ -7440,8 +7406,8 @@ * * @param string $message * @param array $context - * @return void - * @static + * @return void + * @static */ public static function info($message, $context = []) { @@ -7453,8 +7419,8 @@ * * @param string $message * @param array $context - * @return void - * @static + * @return void + * @static */ public static function debug($message, $context = []) { @@ -7467,8 +7433,8 @@ * @param mixed $level * @param string $message * @param array $context - * @return void - * @static + * @return void + * @static */ public static function log($level, $message, $context = []) { @@ -7478,8 +7444,6 @@ } /** - * - * * @method static void alwaysFrom(string $address, string|null $name = null) * @method static void alwaysReplyTo(string $address, string|null $name = null) * @method static void alwaysReturnPath(string $address) @@ -7496,8 +7460,8 @@ * Get a mailer instance by name. * * @param string|null $name - * @return \Illuminate\Contracts\Mail\Mailer - * @static + * @return \Illuminate\Contracts\Mail\Mailer + * @static */ public static function mailer($name = null) { @@ -7508,8 +7472,8 @@ * Get a mailer driver instance. * * @param string|null $driver - * @return \Illuminate\Mail\Mailer - * @static + * @return \Illuminate\Mail\Mailer + * @static */ public static function driver($driver = null) { @@ -7520,9 +7484,9 @@ * Create a new transport instance. * * @param array $config - * @return \Swift_Transport + * @return \Swift_Transport * @throws \InvalidArgumentException - * @static + * @static */ public static function createTransport($config) { @@ -7532,8 +7496,8 @@ /** * Get the default mail driver name. * - * @return string - * @static + * @return string + * @static */ public static function getDefaultDriver() { @@ -7544,8 +7508,8 @@ * Set the default mail driver name. * * @param string $name - * @return void - * @static + * @return void + * @static */ public static function setDefaultDriver($name) { @@ -7556,8 +7520,8 @@ * Disconnect the given mailer and remove from local cache. * * @param string|null $name - * @return void - * @static + * @return void + * @static */ public static function purge($name = null) { @@ -7569,8 +7533,8 @@ * * @param string $driver * @param \Closure $callback - * @return \Illuminate\Mail\MailManager - * @static + * @return \Illuminate\Mail\MailManager + * @static */ public static function extend($driver, $callback) { @@ -7580,8 +7544,8 @@ /** * Get the application instance used by the manager. * - * @return \Illuminate\Contracts\Foundation\Application - * @static + * @return \Illuminate\Contracts\Foundation\Application + * @static */ public static function getApplication() { @@ -7592,8 +7556,8 @@ * Set the application instance used by the manager. * * @param \Illuminate\Contracts\Foundation\Application $app - * @return \Illuminate\Mail\MailManager - * @static + * @return \Illuminate\Mail\MailManager + * @static */ public static function setApplication($app) { @@ -7603,8 +7567,8 @@ /** * Forget all of the resolved mailer instances. * - * @return \Illuminate\Mail\MailManager - * @static + * @return \Illuminate\Mail\MailManager + * @static */ public static function forgetMailers() { @@ -7616,8 +7580,8 @@ * * @param string|\Closure $mailable * @param callable|int|null $callback - * @return void - * @static + * @return void + * @static */ public static function assertSent($mailable, $callback = null) { @@ -7629,8 +7593,8 @@ * * @param string|\Closure $mailable * @param callable|null $callback - * @return void - * @static + * @return void + * @static */ public static function assertNotOutgoing($mailable, $callback = null) { @@ -7642,8 +7606,8 @@ * * @param string|\Closure $mailable * @param callable|null $callback - * @return void - * @static + * @return void + * @static */ public static function assertNotSent($mailable, $callback = null) { @@ -7653,8 +7617,8 @@ /** * Assert that no mailables were sent or queued to be sent. * - * @return void - * @static + * @return void + * @static */ public static function assertNothingOutgoing() { @@ -7664,8 +7628,8 @@ /** * Assert that no mailables were sent. * - * @return void - * @static + * @return void + * @static */ public static function assertNothingSent() { @@ -7677,8 +7641,8 @@ * * @param string|\Closure $mailable * @param callable|int|null $callback - * @return void - * @static + * @return void + * @static */ public static function assertQueued($mailable, $callback = null) { @@ -7690,8 +7654,8 @@ * * @param string|\Closure $mailable * @param callable|null $callback - * @return void - * @static + * @return void + * @static */ public static function assertNotQueued($mailable, $callback = null) { @@ -7701,8 +7665,8 @@ /** * Assert that no mailables were queued. * - * @return void - * @static + * @return void + * @static */ public static function assertNothingQueued() { @@ -7714,8 +7678,8 @@ * * @param string|\Closure $mailable * @param callable|null $callback - * @return \Illuminate\Support\Collection - * @static + * @return \Illuminate\Support\Collection + * @static */ public static function sent($mailable, $callback = null) { @@ -7726,8 +7690,8 @@ * Determine if the given mailable has been sent. * * @param string $mailable - * @return bool - * @static + * @return bool + * @static */ public static function hasSent($mailable) { @@ -7739,8 +7703,8 @@ * * @param string|\Closure $mailable * @param callable|null $callback - * @return \Illuminate\Support\Collection - * @static + * @return \Illuminate\Support\Collection + * @static */ public static function queued($mailable, $callback = null) { @@ -7751,8 +7715,8 @@ * Determine if the given mailable has been queued. * * @param string $mailable - * @return bool - * @static + * @return bool + * @static */ public static function hasQueued($mailable) { @@ -7763,8 +7727,8 @@ * Begin the process of mailing a mailable class instance. * * @param mixed $users - * @return \Illuminate\Mail\PendingMail - * @static + * @return \Illuminate\Mail\PendingMail + * @static */ public static function to($users) { @@ -7775,8 +7739,8 @@ * Begin the process of mailing a mailable class instance. * * @param mixed $users - * @return \Illuminate\Mail\PendingMail - * @static + * @return \Illuminate\Mail\PendingMail + * @static */ public static function bcc($users) { @@ -7788,8 +7752,8 @@ * * @param string $text * @param \Closure|string $callback - * @return void - * @static + * @return void + * @static */ public static function raw($text, $callback) { @@ -7802,8 +7766,8 @@ * @param \Illuminate\Contracts\Mail\Mailable|string|array $view * @param array $data * @param \Closure|string|null $callback - * @return void - * @static + * @return void + * @static */ public static function send($view, $data = [], $callback = null) { @@ -7815,8 +7779,8 @@ * * @param \Illuminate\Contracts\Mail\Mailable|string|array $view * @param string|null $queue - * @return mixed - * @static + * @return mixed + * @static */ public static function queue($view, $queue = null) { @@ -7829,8 +7793,8 @@ * @param \DateTimeInterface|\DateInterval|int $delay * @param \Illuminate\Contracts\Mail\Mailable|string|array $view * @param string|null $queue - * @return mixed - * @static + * @return mixed + * @static */ public static function later($delay, $view, $queue = null) { @@ -7840,8 +7804,8 @@ /** * Get the array of failed recipients. * - * @return array - * @static + * @return array + * @static */ public static function failures() { @@ -7851,8 +7815,6 @@ } /** - * - * * @see \Illuminate\Notifications\ChannelManager */ class Notification { @@ -7861,8 +7823,8 @@ * * @param \Illuminate\Support\Collection|array|mixed $notifiables * @param mixed $notification - * @return void - * @static + * @return void + * @static */ public static function send($notifiables, $notification) { @@ -7875,8 +7837,8 @@ * @param \Illuminate\Support\Collection|array|mixed $notifiables * @param mixed $notification * @param array|null $channels - * @return void - * @static + * @return void + * @static */ public static function sendNow($notifiables, $notification, $channels = null) { @@ -7887,8 +7849,8 @@ * Get a channel instance. * * @param string|null $name - * @return mixed - * @static + * @return mixed + * @static */ public static function channel($name = null) { @@ -7898,8 +7860,8 @@ /** * Get the default channel driver name. * - * @return string - * @static + * @return string + * @static */ public static function getDefaultDriver() { @@ -7909,8 +7871,8 @@ /** * Get the default channel driver name. * - * @return string - * @static + * @return string + * @static */ public static function deliversVia() { @@ -7921,8 +7883,8 @@ * Set the default channel driver name. * * @param string $channel - * @return void - * @static + * @return void + * @static */ public static function deliverVia($channel) { @@ -7933,8 +7895,8 @@ * Set the locale of notifications. * * @param string $locale - * @return \Illuminate\Notifications\ChannelManager - * @static + * @return \Illuminate\Notifications\ChannelManager + * @static */ public static function locale($locale) { @@ -7945,9 +7907,9 @@ * Get a driver instance. * * @param string|null $driver - * @return mixed + * @return mixed * @throws \InvalidArgumentException - * @static + * @static */ public static function driver($driver = null) { //Method inherited from \Illuminate\Support\Manager @@ -7959,8 +7921,8 @@ * * @param string $driver * @param \Closure $callback - * @return \Illuminate\Notifications\ChannelManager - * @static + * @return \Illuminate\Notifications\ChannelManager + * @static */ public static function extend($driver, $callback) { //Method inherited from \Illuminate\Support\Manager @@ -7970,8 +7932,8 @@ /** * Get all of the created "drivers". * - * @return array - * @static + * @return array + * @static */ public static function getDrivers() { //Method inherited from \Illuminate\Support\Manager @@ -7981,8 +7943,8 @@ /** * Get the container instance used by the manager. * - * @return \Illuminate\Contracts\Container\Container - * @static + * @return \Illuminate\Contracts\Container\Container + * @static */ public static function getContainer() { //Method inherited from \Illuminate\Support\Manager @@ -7993,8 +7955,8 @@ * Set the container instance used by the manager. * * @param \Illuminate\Contracts\Container\Container $container - * @return \Illuminate\Notifications\ChannelManager - * @static + * @return \Illuminate\Notifications\ChannelManager + * @static */ public static function setContainer($container) { //Method inherited from \Illuminate\Support\Manager @@ -8004,8 +7966,8 @@ /** * Forget all of the resolved driver instances. * - * @return \Illuminate\Notifications\ChannelManager - * @static + * @return \Illuminate\Notifications\ChannelManager + * @static */ public static function forgetDrivers() { //Method inherited from \Illuminate\Support\Manager @@ -8017,9 +7979,9 @@ * * @param string|\Closure $notification * @param callable|null $callback - * @return void + * @return void * @throws \Exception - * @static + * @static */ public static function assertSentOnDemand($notification, $callback = null) { @@ -8032,9 +7994,9 @@ * @param mixed $notifiable * @param string|\Closure $notification * @param callable|null $callback - * @return void + * @return void * @throws \Exception - * @static + * @static */ public static function assertSentTo($notifiable, $notification, $callback = null) { @@ -8046,8 +8008,8 @@ * * @param string $notification * @param int $times - * @return void - * @static + * @return void + * @static */ public static function assertSentOnDemandTimes($notification, $times = 1) { @@ -8060,8 +8022,8 @@ * @param mixed $notifiable * @param string $notification * @param int $times - * @return void - * @static + * @return void + * @static */ public static function assertSentToTimes($notifiable, $notification, $times = 1) { @@ -8074,9 +8036,9 @@ * @param mixed $notifiable * @param string|\Closure $notification * @param callable|null $callback - * @return void + * @return void * @throws \Exception - * @static + * @static */ public static function assertNotSentTo($notifiable, $notification, $callback = null) { @@ -8086,8 +8048,8 @@ /** * Assert that no notifications were sent. * - * @return void - * @static + * @return void + * @static */ public static function assertNothingSent() { @@ -8099,8 +8061,8 @@ * * @param string $notification * @param int $expectedCount - * @return void - * @static + * @return void + * @static */ public static function assertSentTimes($notification, $expectedCount) { @@ -8112,9 +8074,9 @@ * * @param int $expectedCount * @param string $notification - * @return void + * @return void * @deprecated Use the assertSentTimes method instead - * @static + * @static */ public static function assertTimesSent($expectedCount, $notification) { @@ -8127,8 +8089,8 @@ * @param mixed $notifiable * @param string $notification * @param callable|null $callback - * @return \Illuminate\Support\Collection - * @static + * @return \Illuminate\Support\Collection + * @static */ public static function sent($notifiable, $notification, $callback = null) { @@ -8140,8 +8102,8 @@ * * @param mixed $notifiable * @param string $notification - * @return bool - * @static + * @return bool + * @static */ public static function hasSent($notifiable, $notification) { @@ -8153,8 +8115,8 @@ * * @param string $name * @param object|callable $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -8165,9 +8127,9 @@ * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -8177,8 +8139,8 @@ * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -8187,8 +8149,8 @@ /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -8197,8 +8159,6 @@ } /** - * - * * @method static mixed reset(array $credentials, \Closure $callback) * @method static string sendResetLink(array $credentials, \Closure $callback = null) * @method static \Illuminate\Contracts\Auth\CanResetPassword getUser(array $credentials) @@ -8213,8 +8173,8 @@ * Attempt to get the broker from the local cache. * * @param string|null $name - * @return \Illuminate\Contracts\Auth\PasswordBroker - * @static + * @return \Illuminate\Contracts\Auth\PasswordBroker + * @static */ public static function broker($name = null) { @@ -8224,8 +8184,8 @@ /** * Get the default password broker name. * - * @return string - * @static + * @return string + * @static */ public static function getDefaultDriver() { @@ -8236,8 +8196,8 @@ * Set the default password broker name. * * @param string $name - * @return void - * @static + * @return void + * @static */ public static function setDefaultDriver($name) { @@ -8247,8 +8207,6 @@ } /** - * - * * @see \Illuminate\Queue\QueueManager * @see \Illuminate\Queue\Queue */ @@ -8257,8 +8215,8 @@ * Register an event listener for the before job event. * * @param mixed $callback - * @return void - * @static + * @return void + * @static */ public static function before($callback) { @@ -8269,8 +8227,8 @@ * Register an event listener for the after job event. * * @param mixed $callback - * @return void - * @static + * @return void + * @static */ public static function after($callback) { @@ -8281,8 +8239,8 @@ * Register an event listener for the exception occurred job event. * * @param mixed $callback - * @return void - * @static + * @return void + * @static */ public static function exceptionOccurred($callback) { @@ -8293,8 +8251,8 @@ * Register an event listener for the daemon queue loop. * * @param mixed $callback - * @return void - * @static + * @return void + * @static */ public static function looping($callback) { @@ -8305,8 +8263,8 @@ * Register an event listener for the failed job event. * * @param mixed $callback - * @return void - * @static + * @return void + * @static */ public static function failing($callback) { @@ -8317,8 +8275,8 @@ * Register an event listener for the daemon queue stopping. * * @param mixed $callback - * @return void - * @static + * @return void + * @static */ public static function stopping($callback) { @@ -8329,8 +8287,8 @@ * Determine if the driver is connected. * * @param string|null $name - * @return bool - * @static + * @return bool + * @static */ public static function connected($name = null) { @@ -8341,8 +8299,8 @@ * Resolve a queue connection instance. * * @param string|null $name - * @return \Illuminate\Contracts\Queue\Queue - * @static + * @return \Illuminate\Contracts\Queue\Queue + * @static */ public static function connection($name = null) { @@ -8354,8 +8312,8 @@ * * @param string $driver * @param \Closure $resolver - * @return void - * @static + * @return void + * @static */ public static function extend($driver, $resolver) { @@ -8367,8 +8325,8 @@ * * @param string $driver * @param \Closure $resolver - * @return void - * @static + * @return void + * @static */ public static function addConnector($driver, $resolver) { @@ -8378,8 +8336,8 @@ /** * Get the name of the default queue connection. * - * @return string - * @static + * @return string + * @static */ public static function getDefaultDriver() { @@ -8390,8 +8348,8 @@ * Set the name of the default queue connection. * * @param string $name - * @return void - * @static + * @return void + * @static */ public static function setDefaultDriver($name) { @@ -8402,8 +8360,8 @@ * Get the full name for the given connection. * * @param string|null $connection - * @return string - * @static + * @return string + * @static */ public static function getName($connection = null) { @@ -8413,8 +8371,8 @@ /** * Get the application instance used by the manager. * - * @return \Illuminate\Contracts\Foundation\Application - * @static + * @return \Illuminate\Contracts\Foundation\Application + * @static */ public static function getApplication() { @@ -8425,8 +8383,8 @@ * Set the application instance used by the manager. * * @param \Illuminate\Contracts\Foundation\Application $app - * @return \Illuminate\Queue\QueueManager - * @static + * @return \Illuminate\Queue\QueueManager + * @static */ public static function setApplication($app) { @@ -8438,8 +8396,8 @@ * * @param string|\Closure $job * @param callable|int|null $callback - * @return void - * @static + * @return void + * @static */ public static function assertPushed($job, $callback = null) { @@ -8452,8 +8410,8 @@ * @param string $queue * @param string|\Closure $job * @param callable|null $callback - * @return void - * @static + * @return void + * @static */ public static function assertPushedOn($queue, $job, $callback = null) { @@ -8466,8 +8424,8 @@ * @param string $job * @param array $expectedChain * @param callable|null $callback - * @return void - * @static + * @return void + * @static */ public static function assertPushedWithChain($job, $expectedChain = [], $callback = null) { @@ -8479,8 +8437,8 @@ * * @param string $job * @param callable|null $callback - * @return void - * @static + * @return void + * @static */ public static function assertPushedWithoutChain($job, $callback = null) { @@ -8492,8 +8450,8 @@ * * @param string|\Closure $job * @param callable|null $callback - * @return void - * @static + * @return void + * @static */ public static function assertNotPushed($job, $callback = null) { @@ -8503,8 +8461,8 @@ /** * Assert that no jobs were pushed. * - * @return void - * @static + * @return void + * @static */ public static function assertNothingPushed() { @@ -8516,8 +8474,8 @@ * * @param string $job * @param callable|null $callback - * @return \Illuminate\Support\Collection - * @static + * @return \Illuminate\Support\Collection + * @static */ public static function pushed($job, $callback = null) { @@ -8528,8 +8486,8 @@ * Determine if there are any stored jobs for a given class. * * @param string $job - * @return bool - * @static + * @return bool + * @static */ public static function hasPushed($job) { @@ -8540,8 +8498,8 @@ * Get the size of the queue. * * @param string|null $queue - * @return int - * @static + * @return int + * @static */ public static function size($queue = null) { @@ -8554,8 +8512,8 @@ * @param string|object $job * @param mixed $data * @param string|null $queue - * @return mixed - * @static + * @return mixed + * @static */ public static function push($job, $data = '', $queue = null) { @@ -8568,8 +8526,8 @@ * @param string $payload * @param string|null $queue * @param array $options - * @return mixed - * @static + * @return mixed + * @static */ public static function pushRaw($payload, $queue = null, $options = []) { @@ -8583,8 +8541,8 @@ * @param string|object $job * @param mixed $data * @param string|null $queue - * @return mixed - * @static + * @return mixed + * @static */ public static function later($delay, $job, $data = '', $queue = null) { @@ -8597,8 +8555,8 @@ * @param string $queue * @param string|object $job * @param mixed $data - * @return mixed - * @static + * @return mixed + * @static */ public static function pushOn($queue, $job, $data = '') { @@ -8612,8 +8570,8 @@ * @param \DateTimeInterface|\DateInterval|int $delay * @param string|object $job * @param mixed $data - * @return mixed - * @static + * @return mixed + * @static */ public static function laterOn($queue, $delay, $job, $data = '') { @@ -8624,8 +8582,8 @@ * Pop the next job off of the queue. * * @param string|null $queue - * @return \Illuminate\Contracts\Queue\Job|null - * @static + * @return \Illuminate\Contracts\Queue\Job|null + * @static */ public static function pop($queue = null) { @@ -8638,8 +8596,8 @@ * @param array $jobs * @param mixed $data * @param string|null $queue - * @return mixed - * @static + * @return mixed + * @static */ public static function bulk($jobs, $data = '', $queue = null) { @@ -8649,8 +8607,8 @@ /** * Get the jobs that have been pushed. * - * @return array - * @static + * @return array + * @static */ public static function pushedJobs() { @@ -8660,8 +8618,8 @@ /** * Get the connection name for the queue. * - * @return string - * @static + * @return string + * @static */ public static function getConnectionName() { @@ -8672,8 +8630,8 @@ * Set the connection name for the queue. * * @param string $name - * @return \Illuminate\Support\Testing\Fakes\QueueFake - * @static + * @return \Illuminate\Support\Testing\Fakes\QueueFake + * @static */ public static function setConnectionName($name) { @@ -8684,8 +8642,8 @@ * Get the backoff for an object-based queue handler. * * @param mixed $job - * @return mixed - * @static + * @return mixed + * @static */ public static function getJobBackoff($job) { //Method inherited from \Illuminate\Queue\Queue @@ -8696,8 +8654,8 @@ * Get the expiration timestamp for an object-based queue handler. * * @param mixed $job - * @return mixed - * @static + * @return mixed + * @static */ public static function getJobExpiration($job) { //Method inherited from \Illuminate\Queue\Queue @@ -8708,8 +8666,8 @@ * Register a callback to be executed when creating job payloads. * * @param callable|null $callback - * @return void - * @static + * @return void + * @static */ public static function createPayloadUsing($callback) { //Method inherited from \Illuminate\Queue\Queue @@ -8718,8 +8676,8 @@ /** * Get the container instance being used by the connection. * - * @return \Illuminate\Container\Container - * @static + * @return \Illuminate\Container\Container + * @static */ public static function getContainer() { //Method inherited from \Illuminate\Queue\Queue @@ -8730,8 +8688,8 @@ * Set the IoC container instance. * * @param \Illuminate\Container\Container $container - * @return void - * @static + * @return void + * @static */ public static function setContainer($container) { //Method inherited from \Illuminate\Queue\Queue @@ -8741,8 +8699,6 @@ } /** - * - * * @see \Illuminate\Routing\Redirector */ class Redirect { @@ -8750,8 +8706,8 @@ * Create a new redirect response to the "home" route. * * @param int $status - * @return \Illuminate\Http\RedirectResponse - * @static + * @return \Illuminate\Http\RedirectResponse + * @static */ public static function home($status = 302) { @@ -8764,8 +8720,8 @@ * @param int $status * @param array $headers * @param mixed $fallback - * @return \Illuminate\Http\RedirectResponse - * @static + * @return \Illuminate\Http\RedirectResponse + * @static */ public static function back($status = 302, $headers = [], $fallback = false) { @@ -8777,8 +8733,8 @@ * * @param int $status * @param array $headers - * @return \Illuminate\Http\RedirectResponse - * @static + * @return \Illuminate\Http\RedirectResponse + * @static */ public static function refresh($status = 302, $headers = []) { @@ -8792,8 +8748,8 @@ * @param int $status * @param array $headers * @param bool|null $secure - * @return \Illuminate\Http\RedirectResponse - * @static + * @return \Illuminate\Http\RedirectResponse + * @static */ public static function guest($path, $status = 302, $headers = [], $secure = null) { @@ -8807,8 +8763,8 @@ * @param int $status * @param array $headers * @param bool|null $secure - * @return \Illuminate\Http\RedirectResponse - * @static + * @return \Illuminate\Http\RedirectResponse + * @static */ public static function intended($default = '/', $status = 302, $headers = [], $secure = null) { @@ -8819,8 +8775,8 @@ * Set the intended url. * * @param string $url - * @return void - * @static + * @return void + * @static */ public static function setIntendedUrl($url) { @@ -8834,8 +8790,8 @@ * @param int $status * @param array $headers * @param bool|null $secure - * @return \Illuminate\Http\RedirectResponse - * @static + * @return \Illuminate\Http\RedirectResponse + * @static */ public static function to($path, $status = 302, $headers = [], $secure = null) { @@ -8848,8 +8804,8 @@ * @param string $path * @param int $status * @param array $headers - * @return \Illuminate\Http\RedirectResponse - * @static + * @return \Illuminate\Http\RedirectResponse + * @static */ public static function away($path, $status = 302, $headers = []) { @@ -8862,8 +8818,8 @@ * @param string $path * @param int $status * @param array $headers - * @return \Illuminate\Http\RedirectResponse - * @static + * @return \Illuminate\Http\RedirectResponse + * @static */ public static function secure($path, $status = 302, $headers = []) { @@ -8877,8 +8833,8 @@ * @param mixed $parameters * @param int $status * @param array $headers - * @return \Illuminate\Http\RedirectResponse - * @static + * @return \Illuminate\Http\RedirectResponse + * @static */ public static function route($route, $parameters = [], $status = 302, $headers = []) { @@ -8893,8 +8849,8 @@ * @param \DateTimeInterface|\DateInterval|int|null $expiration * @param int $status * @param array $headers - * @return \Illuminate\Http\RedirectResponse - * @static + * @return \Illuminate\Http\RedirectResponse + * @static */ public static function signedRoute($route, $parameters = [], $expiration = null, $status = 302, $headers = []) { @@ -8909,8 +8865,8 @@ * @param mixed $parameters * @param int $status * @param array $headers - * @return \Illuminate\Http\RedirectResponse - * @static + * @return \Illuminate\Http\RedirectResponse + * @static */ public static function temporarySignedRoute($route, $expiration, $parameters = [], $status = 302, $headers = []) { @@ -8924,8 +8880,8 @@ * @param mixed $parameters * @param int $status * @param array $headers - * @return \Illuminate\Http\RedirectResponse - * @static + * @return \Illuminate\Http\RedirectResponse + * @static */ public static function action($action, $parameters = [], $status = 302, $headers = []) { @@ -8935,8 +8891,8 @@ /** * Get the URL generator instance. * - * @return \Illuminate\Routing\UrlGenerator - * @static + * @return \Illuminate\Routing\UrlGenerator + * @static */ public static function getUrlGenerator() { @@ -8947,8 +8903,8 @@ * Set the active session store. * * @param \Illuminate\Session\Store $session - * @return void - * @static + * @return void + * @static */ public static function setSession($session) { @@ -8960,8 +8916,8 @@ * * @param string $name * @param object|callable $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -8972,9 +8928,9 @@ * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -8984,8 +8940,8 @@ * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -8994,8 +8950,8 @@ /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -9004,8 +8960,6 @@ } /** - * - * * @method static mixed filterFiles(mixed $files) * @see \Illuminate\Http\Request */ @@ -9013,8 +8967,8 @@ /** * Create a new Illuminate HTTP request from server variables. * - * @return static - * @static + * @return static + * @static */ public static function capture() { @@ -9023,8 +8977,8 @@ /** * Return the Request instance. * - * @return \Illuminate\Http\Request - * @static + * @return \Illuminate\Http\Request + * @static */ public static function instance() { @@ -9034,8 +8988,8 @@ /** * Get the request method. * - * @return string - * @static + * @return string + * @static */ public static function method() { @@ -9045,8 +8999,8 @@ /** * Get the root URL for the application. * - * @return string - * @static + * @return string + * @static */ public static function root() { @@ -9056,8 +9010,8 @@ /** * Get the URL (no query string) for the request. * - * @return string - * @static + * @return string + * @static */ public static function url() { @@ -9067,8 +9021,8 @@ /** * Get the full URL for the request. * - * @return string - * @static + * @return string + * @static */ public static function fullUrl() { @@ -9079,8 +9033,8 @@ * Get the full URL for the request with the added query string parameters. * * @param array $query - * @return string - * @static + * @return string + * @static */ public static function fullUrlWithQuery($query) { @@ -9091,8 +9045,8 @@ * Get the full URL for the request without the given query string parameters. * * @param array|string $query - * @return string - * @static + * @return string + * @static */ public static function fullUrlWithoutQuery($keys) { @@ -9102,8 +9056,8 @@ /** * Get the current path info for the request. * - * @return string - * @static + * @return string + * @static */ public static function path() { @@ -9113,8 +9067,8 @@ /** * Get the current decoded path info for the request. * - * @return string - * @static + * @return string + * @static */ public static function decodedPath() { @@ -9126,8 +9080,8 @@ * * @param int $index * @param string|null $default - * @return string|null - * @static + * @return string|null + * @static */ public static function segment($index, $default = null) { @@ -9137,8 +9091,8 @@ /** * Get all of the segments for the request path. * - * @return array - * @static + * @return array + * @static */ public static function segments() { @@ -9149,8 +9103,8 @@ * Determine if the current request URI matches a pattern. * * @param mixed $patterns - * @return bool - * @static + * @return bool + * @static */ public static function is(...$patterns) { @@ -9161,8 +9115,8 @@ * Determine if the route name matches a given pattern. * * @param mixed $patterns - * @return bool - * @static + * @return bool + * @static */ public static function routeIs(...$patterns) { @@ -9173,8 +9127,8 @@ * Determine if the current request URL and query string match a pattern. * * @param mixed $patterns - * @return bool - * @static + * @return bool + * @static */ public static function fullUrlIs(...$patterns) { @@ -9184,8 +9138,8 @@ /** * Determine if the request is the result of an AJAX call. * - * @return bool - * @static + * @return bool + * @static */ public static function ajax() { @@ -9195,8 +9149,8 @@ /** * Determine if the request is the result of a PJAX call. * - * @return bool - * @static + * @return bool + * @static */ public static function pjax() { @@ -9206,8 +9160,8 @@ /** * Determine if the request is the result of a prefetch call. * - * @return bool - * @static + * @return bool + * @static */ public static function prefetch() { @@ -9217,8 +9171,8 @@ /** * Determine if the request is over HTTPS. * - * @return bool - * @static + * @return bool + * @static */ public static function secure() { @@ -9228,8 +9182,8 @@ /** * Get the client IP address. * - * @return string|null - * @static + * @return string|null + * @static */ public static function ip() { @@ -9239,8 +9193,8 @@ /** * Get the client IP addresses. * - * @return array - * @static + * @return array + * @static */ public static function ips() { @@ -9250,8 +9204,8 @@ /** * Get the client user agent. * - * @return string|null - * @static + * @return string|null + * @static */ public static function userAgent() { @@ -9262,8 +9216,8 @@ * Merge new input into the current request's input array. * * @param array $input - * @return \Illuminate\Http\Request - * @static + * @return \Illuminate\Http\Request + * @static */ public static function merge($input) { @@ -9274,8 +9228,8 @@ * Merge new input into the request's input, but only when that key is missing from the request. * * @param array $input - * @return \Illuminate\Http\Request - * @static + * @return \Illuminate\Http\Request + * @static */ public static function mergeIfMissing($input) { @@ -9286,8 +9240,8 @@ * Replace the input for the current request. * * @param array $input - * @return \Illuminate\Http\Request - * @static + * @return \Illuminate\Http\Request + * @static */ public static function replace($input) { @@ -9301,8 +9255,8 @@ * * @param string $key * @param mixed $default - * @return mixed - * @static + * @return mixed + * @static */ public static function get($key, $default = null) { @@ -9314,8 +9268,8 @@ * * @param string|null $key * @param mixed $default - * @return \Symfony\Component\HttpFoundation\ParameterBag|mixed - * @static + * @return \Symfony\Component\HttpFoundation\ParameterBag|mixed + * @static */ public static function json($key = null, $default = null) { @@ -9327,8 +9281,8 @@ * * @param \Illuminate\Http\Request $from * @param \Illuminate\Http\Request|null $to - * @return static - * @static + * @return static + * @static */ public static function createFrom($from, $to = null) { @@ -9338,8 +9292,8 @@ * Create an Illuminate request from a Symfony instance. * * @param \Symfony\Component\HttpFoundation\Request $request - * @return static - * @static + * @return static + * @static */ public static function createFromBase($request) { @@ -9348,15 +9302,15 @@ /** * Clones a request and overrides some of its parameters. * - * @return static + * @return static * @param array|null $query The GET parameters * @param array|null $request The POST parameters * @param array|null $attributes The request attributes (parameters parsed from the PATH_INFO, ...) * @param array|null $cookies The COOKIE parameters * @param array|null $files The FILES parameters * @param array|null $server The SERVER parameters - * @return static - * @static + * @return static + * @static */ public static function duplicate($query = null, $request = null, $attributes = null, $cookies = null, $files = null, $server = null) { @@ -9366,9 +9320,9 @@ /** * Get the session associated with the request. * - * @return \Illuminate\Session\Store + * @return \Illuminate\Session\Store * @throws \RuntimeException - * @static + * @static */ public static function session() { @@ -9378,8 +9332,8 @@ /** * Get the session associated with the request. * - * @return \Illuminate\Session\Store|null - * @static + * @return \Illuminate\Session\Store|null + * @static */ public static function getSession() { @@ -9390,8 +9344,8 @@ * Set the session instance on the request. * * @param \Illuminate\Contracts\Session\Session $session - * @return void - * @static + * @return void + * @static */ public static function setLaravelSession($session) { @@ -9402,8 +9356,8 @@ * Get the user making the request. * * @param string|null $guard - * @return mixed - * @static + * @return mixed + * @static */ public static function user($guard = null) { @@ -9415,8 +9369,8 @@ * * @param string|null $param * @param mixed $default - * @return \Illuminate\Routing\Route|object|string|null - * @static + * @return \Illuminate\Routing\Route|object|string|null + * @static */ public static function route($param = null, $default = null) { @@ -9426,9 +9380,9 @@ /** * Get a unique fingerprint for the request / route / IP address. * - * @return string + * @return string * @throws \RuntimeException - * @static + * @static */ public static function fingerprint() { @@ -9439,8 +9393,8 @@ * Set the JSON payload for the request. * * @param \Symfony\Component\HttpFoundation\ParameterBag $json - * @return \Illuminate\Http\Request - * @static + * @return \Illuminate\Http\Request + * @static */ public static function setJson($json) { @@ -9450,8 +9404,8 @@ /** * Get the user resolver callback. * - * @return \Closure - * @static + * @return \Closure + * @static */ public static function getUserResolver() { @@ -9462,8 +9416,8 @@ * Set the user resolver callback. * * @param \Closure $callback - * @return \Illuminate\Http\Request - * @static + * @return \Illuminate\Http\Request + * @static */ public static function setUserResolver($callback) { @@ -9473,8 +9427,8 @@ /** * Get the route resolver callback. * - * @return \Closure - * @static + * @return \Closure + * @static */ public static function getRouteResolver() { @@ -9485,8 +9439,8 @@ * Set the route resolver callback. * * @param \Closure $callback - * @return \Illuminate\Http\Request - * @static + * @return \Illuminate\Http\Request + * @static */ public static function setRouteResolver($callback) { @@ -9496,8 +9450,8 @@ /** * Get all of the input and files for the request. * - * @return array - * @static + * @return array + * @static */ public static function toArray() { @@ -9508,8 +9462,8 @@ * Determine if the given offset exists. * * @param string $offset - * @return bool - * @static + * @return bool + * @static */ public static function offsetExists($offset) { @@ -9520,8 +9474,8 @@ * Get the value at the given offset. * * @param string $offset - * @return mixed - * @static + * @return mixed + * @static */ public static function offsetGet($offset) { @@ -9533,8 +9487,8 @@ * * @param string $offset * @param mixed $value - * @return void - * @static + * @return void + * @static */ public static function offsetSet($offset, $value) { @@ -9545,8 +9499,8 @@ * Remove the value at the given offset. * * @param string $offset - * @return void - * @static + * @return void + * @static */ public static function offsetUnset($offset) { @@ -9565,7 +9519,7 @@ * @param array $files The FILES parameters * @param array $server The SERVER parameters * @param string|resource|null $content The raw body data - * @static + * @static */ public static function initialize($query = [], $request = [], $attributes = [], $cookies = [], $files = [], $server = [], $content = null) { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -9575,8 +9529,8 @@ /** * Creates a new request with values from PHP's super globals. * - * @return static - * @static + * @return static + * @static */ public static function createFromGlobals() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -9595,9 +9549,9 @@ * @param array $files The request files ($_FILES) * @param array $server The server parameters ($_SERVER) * @param string|resource|null $content The raw body data - * @return static + * @return static * @throws BadRequestException When the URI is invalid - * @static + * @static */ public static function create($uri, $method = 'GET', $parameters = [], $cookies = [], $files = [], $server = [], $content = null) { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -9610,7 +9564,7 @@ * to keep BC with an existing system. It should not be used for any * other purpose. * - * @static + * @static */ public static function setFactory($callable) { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -9622,7 +9576,7 @@ * It overrides $_GET, $_POST, $_REQUEST, $_SERVER, $_COOKIE. * $_FILES is never overridden, see rfc1867 * - * @static + * @static */ public static function overrideGlobals() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -9636,7 +9590,7 @@ * * @param array $proxies A list of trusted proxies, the string 'REMOTE_ADDR' will be replaced with $_SERVER['REMOTE_ADDR'] * @param int $trustedHeaderSet A bit field of Request::HEADER_*, to set which headers to trust from your proxies - * @static + * @static */ public static function setTrustedProxies($proxies, $trustedHeaderSet) { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -9645,8 +9599,8 @@ /** * Gets the list of trusted proxies. * - * @return array - * @static + * @return array + * @static */ public static function getTrustedProxies() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -9656,7 +9610,7 @@ * Gets the set of trusted headers from trusted proxies. * * @return int A bit field of Request::HEADER_* that defines which headers are trusted from your proxies - * @static + * @static */ public static function getTrustedHeaderSet() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -9668,7 +9622,7 @@ * You should only list the hosts you manage using regexs. * * @param array $hostPatterns A list of trusted host patterns - * @static + * @static */ public static function setTrustedHosts($hostPatterns) { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -9677,8 +9631,8 @@ /** * Gets the list of trusted host patterns. * - * @return array - * @static + * @return array + * @static */ public static function getTrustedHosts() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -9690,8 +9644,8 @@ * It builds a normalized query string, where keys/value pairs are alphabetized, * have consistent escaping and unneeded delimiters are removed. * - * @return string - * @static + * @return string + * @static */ public static function normalizeQueryString($qs) { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -9708,7 +9662,7 @@ * * The HTTP method can only be overridden when the real HTTP method is POST. * - * @static + * @static */ public static function enableHttpMethodParameterOverride() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -9717,8 +9671,8 @@ /** * Checks whether support for the _method request parameter is enabled. * - * @return bool - * @static + * @return bool + * @static */ public static function getHttpMethodParameterOverride() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -9728,8 +9682,8 @@ * Whether the request contains a Session which was started in one of the * previous requests. * - * @return bool - * @static + * @return bool + * @static */ public static function hasPreviousSession() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -9744,8 +9698,8 @@ * is associated with a Session instance. * * @param bool $skipIfUninitialized When true, ignores factories injected by `setSessionFactory` - * @return bool - * @static + * @return bool + * @static */ public static function hasSession() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -9753,9 +9707,7 @@ return $instance->hasSession(); } /** - * - * - * @static + * @static */ public static function setSession($session) { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -9763,11 +9715,9 @@ return $instance->setSession($session); } /** - * - * - * @internal + * @internal * @param callable(): SessionInterface $factory - * @static + * @static */ public static function setSessionFactory($factory) { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -9783,9 +9733,9 @@ * * Use this method carefully; you should use getClientIp() instead. * - * @return array + * @return array * @see getClientIp() - * @static + * @static */ public static function getClientIps() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -9805,10 +9755,10 @@ * ("Client-Ip" for instance), configure it via the $trustedHeaderSet * argument of the Request::setTrustedProxies() method instead. * - * @return string|null + * @return string|null * @see getClientIps() * @see https://wikipedia.org/wiki/X-Forwarded-For - * @static + * @static */ public static function getClientIp() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -9818,8 +9768,8 @@ /** * Returns current script name. * - * @return string - * @static + * @return string + * @static */ public static function getScriptName() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -9839,7 +9789,7 @@ * * http://localhost/mysite/about?var=1 returns '/about' * * @return string The raw path (i.e. not urldecoded) - * @static + * @static */ public static function getPathInfo() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -9857,7 +9807,7 @@ * * http://localhost/we%20b/index.php returns '/we%20b' * * @return string The raw path (i.e. not urldecoded) - * @static + * @static */ public static function getBasePath() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -9873,7 +9823,7 @@ * script filename (e.g. index.php) if one exists. * * @return string The raw URL (i.e. not urldecoded) - * @static + * @static */ public static function getBaseUrl() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -9883,8 +9833,8 @@ /** * Gets the request's scheme. * - * @return string - * @static + * @return string + * @static */ public static function getScheme() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -9900,7 +9850,7 @@ * The "X-Forwarded-Port" header must contain the client port. * * @return int|string|null Can be a string if fetched from the server bag - * @static + * @static */ public static function getPort() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -9910,8 +9860,8 @@ /** * Returns the user. * - * @return string|null - * @static + * @return string|null + * @static */ public static function getUser() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -9921,8 +9871,8 @@ /** * Returns the password. * - * @return string|null - * @static + * @return string|null + * @static */ public static function getPassword() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -9933,7 +9883,7 @@ * Gets the user info. * * @return string|null A user name if any and, optionally, scheme-specific information about how to gain authorization to access the server - * @static + * @static */ public static function getUserInfo() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -9945,8 +9895,8 @@ * * The port name will be appended to the host if it's non-standard. * - * @return string - * @static + * @return string + * @static */ public static function getHttpHost() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -9957,7 +9907,7 @@ * Returns the requested URI (path and query string). * * @return string The raw URI (i.e. not URI decoded) - * @static + * @static */ public static function getRequestUri() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -9970,8 +9920,8 @@ * If the URL was called with basic authentication, the user * and the password are not added to the generated string. * - * @return string - * @static + * @return string + * @static */ public static function getSchemeAndHttpHost() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -9981,9 +9931,9 @@ /** * Generates a normalized URI (URL) for the Request. * - * @return string + * @return string * @see getQueryString() - * @static + * @static */ public static function getUri() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -9994,8 +9944,8 @@ * Generates a normalized URI for the given path. * * @param string $path A path to use instead of the current one - * @return string - * @static + * @return string + * @static */ public static function getUriForPath($path) { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -10017,8 +9967,8 @@ * - "/a/b/c/other" -> "other" * - "/a/x/y" -> "../../x/y" * - * @return string - * @static + * @return string + * @static */ public static function getRelativeUriForPath($path) { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -10031,8 +9981,8 @@ * It builds a normalized query string, where keys/value pairs are alphabetized * and have consistent escaping. * - * @return string|null - * @static + * @return string|null + * @static */ public static function getQueryString() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -10047,8 +9997,8 @@ * * The "X-Forwarded-Proto" header must contain the protocol: "https" or "http". * - * @return bool - * @static + * @return bool + * @static */ public static function isSecure() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -10063,9 +10013,9 @@ * * The "X-Forwarded-Host" header must contain the client host name. * - * @return string + * @return string * @throws SuspiciousOperationException when the host name is invalid or not trusted - * @static + * @static */ public static function getHost() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -10075,7 +10025,7 @@ /** * Sets the request method. * - * @static + * @static */ public static function setMethod($method) { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -10093,9 +10043,9 @@ * * The method is always an uppercased string. * - * @return string + * @return string * @see getRealMethod() - * @static + * @static */ public static function getMethod() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -10105,9 +10055,9 @@ /** * Gets the "real" request method. * - * @return string + * @return string * @see getMethod() - * @static + * @static */ public static function getRealMethod() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -10117,8 +10067,8 @@ /** * Gets the mime type associated with the format. * - * @return string|null - * @static + * @return string|null + * @static */ public static function getMimeType($format) { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -10128,8 +10078,8 @@ /** * Gets the mime types associated with the format. * - * @return array - * @static + * @return array + * @static */ public static function getMimeTypes($format) { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -10138,8 +10088,8 @@ /** * Gets the format associated with the mime type. * - * @return string|null - * @static + * @return string|null + * @static */ public static function getFormat($mimeType) { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -10150,7 +10100,7 @@ * Associates a format with mime types. * * @param string|array $mimeTypes The associated mime types (the preferred one must be the first as it will be used as the content type) - * @static + * @static */ public static function setFormat($format, $mimeTypes) { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -10167,8 +10117,8 @@ * * $default * * @see getPreferredFormat - * @return string|null - * @static + * @return string|null + * @static */ public static function getRequestFormat($default = 'html') { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -10178,7 +10128,7 @@ /** * Sets the request format. * - * @static + * @static */ public static function setRequestFormat($format) { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -10188,8 +10138,8 @@ /** * Gets the format associated with the request. * - * @return string|null - * @static + * @return string|null + * @static */ public static function getContentType() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -10199,7 +10149,7 @@ /** * Sets the default locale. * - * @static + * @static */ public static function setDefaultLocale($locale) { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -10209,8 +10159,8 @@ /** * Get the default locale. * - * @return string - * @static + * @return string + * @static */ public static function getDefaultLocale() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -10220,7 +10170,7 @@ /** * Sets the locale. * - * @static + * @static */ public static function setLocale($locale) { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -10230,8 +10180,8 @@ /** * Get the locale. * - * @return string - * @static + * @return string + * @static */ public static function getLocale() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -10242,8 +10192,8 @@ * Checks if the request method is of specified type. * * @param string $method Uppercase request method (GET, POST etc) - * @return bool - * @static + * @return bool + * @static */ public static function isMethod($method) { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -10254,8 +10204,8 @@ * Checks whether or not the method is safe. * * @see https://tools.ietf.org/html/rfc7231#section-4.2.1 - * @return bool - * @static + * @return bool + * @static */ public static function isMethodSafe() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -10265,8 +10215,8 @@ /** * Checks whether or not the method is idempotent. * - * @return bool - * @static + * @return bool + * @static */ public static function isMethodIdempotent() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -10277,8 +10227,8 @@ * Checks whether the method is cacheable or not. * * @see https://tools.ietf.org/html/rfc7231#section-4.2.3 - * @return bool - * @static + * @return bool + * @static */ public static function isMethodCacheable() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -10294,8 +10244,8 @@ * if the proxy is trusted (see "setTrustedProxies()"), otherwise it returns * the latter (from the "SERVER_PROTOCOL" server parameter). * - * @return string|null - * @static + * @return string|null + * @static */ public static function getProtocolVersion() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -10306,8 +10256,8 @@ * Returns the request body content. * * @param bool $asResource If true, a resource will be returned - * @return string|resource - * @static + * @return string|resource + * @static */ public static function getContent($asResource = false) { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -10317,8 +10267,8 @@ /** * Gets the Etags. * - * @return array - * @static + * @return array + * @static */ public static function getETags() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -10326,10 +10276,8 @@ return $instance->getETags(); } /** - * - * - * @return bool - * @static + * @return bool + * @static */ public static function isNoCache() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -10344,7 +10292,7 @@ * Note that if you use this method, you should send the "Vary: Accept" header * in the response to prevent any issues with intermediary HTTP caches. * - * @static + * @static */ public static function getPreferredFormat($default = 'html') { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -10355,8 +10303,8 @@ * Returns the preferred language. * * @param string[] $locales An array of ordered available locales - * @return string|null - * @static + * @return string|null + * @static */ public static function getPreferredLanguage($locales = null) { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -10366,8 +10314,8 @@ /** * Gets a list of languages acceptable by the client browser ordered in the user browser preferences. * - * @return array - * @static + * @return array + * @static */ public static function getLanguages() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -10377,8 +10325,8 @@ /** * Gets a list of charsets acceptable by the client browser in preferable order. * - * @return array - * @static + * @return array + * @static */ public static function getCharsets() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -10388,8 +10336,8 @@ /** * Gets a list of encodings acceptable by the client browser in preferable order. * - * @return array - * @static + * @return array + * @static */ public static function getEncodings() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -10399,8 +10347,8 @@ /** * Gets a list of content types acceptable by the client browser in preferable order. * - * @return array - * @static + * @return array + * @static */ public static function getAcceptableContentTypes() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -10414,8 +10362,8 @@ * It is known to work with common JavaScript frameworks: * * @see https://wikipedia.org/wiki/List_of_Ajax_frameworks#JavaScript - * @return bool - * @static + * @return bool + * @static */ public static function isXmlHttpRequest() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -10426,7 +10374,7 @@ * Checks whether the client browser prefers safe content or not according to RFC8674. * * @see https://tools.ietf.org/html/rfc8674 - * @static + * @static */ public static function preferSafeContent() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -10439,8 +10387,8 @@ * This can be useful to determine whether or not to trust the * contents of a proxy-specific header. * - * @return bool - * @static + * @return bool + * @static */ public static function isFromTrustedProxy() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -10450,8 +10398,8 @@ /** * Determine if the request is sending JSON. * - * @return bool - * @static + * @return bool + * @static */ public static function isJson() { @@ -10461,8 +10409,8 @@ /** * Determine if the current request probably expects a JSON response. * - * @return bool - * @static + * @return bool + * @static */ public static function expectsJson() { @@ -10472,8 +10420,8 @@ /** * Determine if the current request is asking for JSON. * - * @return bool - * @static + * @return bool + * @static */ public static function wantsJson() { @@ -10484,8 +10432,8 @@ * Determines whether the current requests accepts a given content type. * * @param string|array $contentTypes - * @return bool - * @static + * @return bool + * @static */ public static function accepts($contentTypes) { @@ -10496,8 +10444,8 @@ * Return the most suitable content type from the given array based on content negotiation. * * @param string|array $contentTypes - * @return string|null - * @static + * @return string|null + * @static */ public static function prefers($contentTypes) { @@ -10507,8 +10455,8 @@ /** * Determine if the current request accepts any content type. * - * @return bool - * @static + * @return bool + * @static */ public static function acceptsAnyContentType() { @@ -10518,8 +10466,8 @@ /** * Determines whether a request accepts JSON. * - * @return bool - * @static + * @return bool + * @static */ public static function acceptsJson() { @@ -10529,8 +10477,8 @@ /** * Determines whether a request accepts HTML. * - * @return bool - * @static + * @return bool + * @static */ public static function acceptsHtml() { @@ -10542,8 +10490,8 @@ * * @param string $actual * @param string $type - * @return bool - * @static + * @return bool + * @static */ public static function matchesType($actual, $type) { @@ -10553,8 +10501,8 @@ * Get the data format expected in the response. * * @param string $default - * @return string - * @static + * @return string + * @static */ public static function format($default = 'html') { @@ -10566,8 +10514,8 @@ * * @param string|null $key * @param string|array|null $default - * @return string|array|null - * @static + * @return string|array|null + * @static */ public static function old($key = null, $default = null) { @@ -10577,8 +10525,8 @@ /** * Flash the input for the current request to the session. * - * @return void - * @static + * @return void + * @static */ public static function flash() { @@ -10589,8 +10537,8 @@ * Flash only some of the input to the session. * * @param array|mixed $keys - * @return void - * @static + * @return void + * @static */ public static function flashOnly($keys) { @@ -10601,8 +10549,8 @@ * Flash only some of the input to the session. * * @param array|mixed $keys - * @return void - * @static + * @return void + * @static */ public static function flashExcept($keys) { @@ -10612,8 +10560,8 @@ /** * Flush all of the old input from the session. * - * @return void - * @static + * @return void + * @static */ public static function flush() { @@ -10625,8 +10573,8 @@ * * @param string|null $key * @param string|array|null $default - * @return string|array|null - * @static + * @return string|array|null + * @static */ public static function server($key = null, $default = null) { @@ -10637,8 +10585,8 @@ * Determine if a header is set on the request. * * @param string $key - * @return bool - * @static + * @return bool + * @static */ public static function hasHeader($key) { @@ -10650,8 +10598,8 @@ * * @param string|null $key * @param string|array|null $default - * @return string|array|null - * @static + * @return string|array|null + * @static */ public static function header($key = null, $default = null) { @@ -10661,8 +10609,8 @@ /** * Get the bearer token from the request headers. * - * @return string|null - * @static + * @return string|null + * @static */ public static function bearerToken() { @@ -10673,8 +10621,8 @@ * Determine if the request contains a given input item key. * * @param string|array $key - * @return bool - * @static + * @return bool + * @static */ public static function exists($key) { @@ -10685,8 +10633,8 @@ * Determine if the request contains a given input item key. * * @param string|array $key - * @return bool - * @static + * @return bool + * @static */ public static function has($key) { @@ -10697,8 +10645,8 @@ * Determine if the request contains any of the given inputs. * * @param string|array $keys - * @return bool - * @static + * @return bool + * @static */ public static function hasAny($keys) { @@ -10711,8 +10659,8 @@ * @param string $key * @param callable $callback * @param callable|null $default - * @return $this|mixed - * @static + * @return $this|mixed + * @static */ public static function whenHas($key, $callback, $default = null) { @@ -10723,8 +10671,8 @@ * Determine if the request contains a non-empty value for an input item. * * @param string|array $key - * @return bool - * @static + * @return bool + * @static */ public static function filled($key) { @@ -10735,8 +10683,8 @@ * Determine if the request contains an empty value for an input item. * * @param string|array $key - * @return bool - * @static + * @return bool + * @static */ public static function isNotFilled($key) { @@ -10747,8 +10695,8 @@ * Determine if the request contains a non-empty value for any of the given inputs. * * @param string|array $keys - * @return bool - * @static + * @return bool + * @static */ public static function anyFilled($keys) { @@ -10761,8 +10709,8 @@ * @param string $key * @param callable $callback * @param callable|null $default - * @return $this|mixed - * @static + * @return $this|mixed + * @static */ public static function whenFilled($key, $callback, $default = null) { @@ -10773,8 +10721,8 @@ * Determine if the request is missing a given input item key. * * @param string|array $key - * @return bool - * @static + * @return bool + * @static */ public static function missing($key) { @@ -10784,8 +10732,8 @@ /** * Get the keys for all of the input and files. * - * @return array - * @static + * @return array + * @static */ public static function keys() { @@ -10796,8 +10744,8 @@ * Get all of the input and files for the request. * * @param array|mixed|null $keys - * @return array - * @static + * @return array + * @static */ public static function all($keys = null) { @@ -10809,8 +10757,8 @@ * * @param string|null $key * @param mixed $default - * @return mixed - * @static + * @return mixed + * @static */ public static function input($key = null, $default = null) { @@ -10824,8 +10772,8 @@ * * @param string|null $key * @param bool $default - * @return bool - * @static + * @return bool + * @static */ public static function boolean($key = null, $default = false) { @@ -10838,8 +10786,8 @@ * @param string $key * @param string|null $format * @param string|null $tz - * @return \Illuminate\Support\Carbon|null - * @static + * @return \Illuminate\Support\Carbon|null + * @static */ public static function date($key, $format = null, $tz = null) { @@ -10850,8 +10798,8 @@ * Retrieve input from the request as a collection. * * @param array|string|null $key - * @return \Illuminate\Support\Collection - * @static + * @return \Illuminate\Support\Collection + * @static */ public static function collect($key = null) { @@ -10862,8 +10810,8 @@ * Get a subset containing the provided keys with values from the input data. * * @param array|mixed $keys - * @return array - * @static + * @return array + * @static */ public static function only($keys) { @@ -10874,8 +10822,8 @@ * Get all of the input except for a specified array of items. * * @param array|mixed $keys - * @return array - * @static + * @return array + * @static */ public static function except($keys) { @@ -10887,8 +10835,8 @@ * * @param string|null $key * @param string|array|null $default - * @return string|array|null - * @static + * @return string|array|null + * @static */ public static function query($key = null, $default = null) { @@ -10900,8 +10848,8 @@ * * @param string|null $key * @param string|array|null $default - * @return string|array|null - * @static + * @return string|array|null + * @static */ public static function post($key = null, $default = null) { @@ -10912,8 +10860,8 @@ * Determine if a cookie is set on the request. * * @param string $key - * @return bool - * @static + * @return bool + * @static */ public static function hasCookie($key) { @@ -10925,8 +10873,8 @@ * * @param string|null $key * @param string|array|null $default - * @return string|array|null - * @static + * @return string|array|null + * @static */ public static function cookie($key = null, $default = null) { @@ -10936,8 +10884,8 @@ /** * Get an array of all of the files on the request. * - * @return array - * @static + * @return array + * @static */ public static function allFiles() { @@ -10948,8 +10896,8 @@ * Determine if the uploaded data contains a file. * * @param string $key - * @return bool - * @static + * @return bool + * @static */ public static function hasFile($key) { @@ -10961,8 +10909,8 @@ * * @param string|null $key * @param mixed $default - * @return \Illuminate\Http\UploadedFile|\Illuminate\Http\UploadedFile[]|array|null - * @static + * @return \Illuminate\Http\UploadedFile|\Illuminate\Http\UploadedFile[]|array|null + * @static */ public static function file($key = null, $default = null) { @@ -10973,8 +10921,8 @@ * Dump the request items and end the script. * * @param mixed $keys - * @return void - * @static + * @return void + * @static */ public static function dd(...$keys) { @@ -10985,8 +10933,8 @@ * Dump the items. * * @param mixed $keys - * @return \Illuminate\Http\Request - * @static + * @return \Illuminate\Http\Request + * @static */ public static function dump($keys = []) { @@ -10998,8 +10946,8 @@ * * @param string $name * @param object|callable $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -11010,9 +10958,9 @@ * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -11022,8 +10970,8 @@ * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -11032,54 +10980,46 @@ /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { \Illuminate\Http\Request::flushMacros(); } /** - * - * * @see \Illuminate\Foundation\Providers\FoundationServiceProvider::registerRequestValidation() * @param array $rules * @param mixed $params - * @static + * @static */ public static function validate($rules, ...$params) { return \Illuminate\Http\Request::validate($rules, ...$params); } /** - * - * * @see \Illuminate\Foundation\Providers\FoundationServiceProvider::registerRequestValidation() * @param string $errorBag * @param array $rules * @param mixed $params - * @static + * @static */ public static function validateWithBag($errorBag, $rules, ...$params) { return \Illuminate\Http\Request::validateWithBag($errorBag, $rules, ...$params); } /** - * - * * @see \Illuminate\Foundation\Providers\FoundationServiceProvider::registerRequestSignatureValidation() * @param mixed $absolute - * @static + * @static */ public static function hasValidSignature($absolute = true) { return \Illuminate\Http\Request::hasValidSignature($absolute); } /** - * - * * @see \Illuminate\Foundation\Providers\FoundationServiceProvider::registerRequestSignatureValidation() - * @static + * @static */ public static function hasValidRelativeSignature() { @@ -11088,8 +11028,6 @@ } /** - * - * * @see \Illuminate\Contracts\Routing\ResponseFactory */ class Response { @@ -11099,8 +11037,8 @@ * @param mixed $content * @param int $status * @param array $headers - * @return \Illuminate\Http\Response - * @static + * @return \Illuminate\Http\Response + * @static */ public static function make($content = '', $status = 200, $headers = []) { @@ -11112,8 +11050,8 @@ * * @param int $status * @param array $headers - * @return \Illuminate\Http\Response - * @static + * @return \Illuminate\Http\Response + * @static */ public static function noContent($status = 204, $headers = []) { @@ -11127,8 +11065,8 @@ * @param array $data * @param int $status * @param array $headers - * @return \Illuminate\Http\Response - * @static + * @return \Illuminate\Http\Response + * @static */ public static function view($view, $data = [], $status = 200, $headers = []) { @@ -11142,8 +11080,8 @@ * @param int $status * @param array $headers * @param int $options - * @return \Illuminate\Http\JsonResponse - * @static + * @return \Illuminate\Http\JsonResponse + * @static */ public static function json($data = [], $status = 200, $headers = [], $options = 0) { @@ -11158,8 +11096,8 @@ * @param int $status * @param array $headers * @param int $options - * @return \Illuminate\Http\JsonResponse - * @static + * @return \Illuminate\Http\JsonResponse + * @static */ public static function jsonp($callback, $data = [], $status = 200, $headers = [], $options = 0) { @@ -11172,8 +11110,8 @@ * @param \Closure $callback * @param int $status * @param array $headers - * @return \Symfony\Component\HttpFoundation\StreamedResponse - * @static + * @return \Symfony\Component\HttpFoundation\StreamedResponse + * @static */ public static function stream($callback, $status = 200, $headers = []) { @@ -11187,8 +11125,8 @@ * @param string|null $name * @param array $headers * @param string|null $disposition - * @return \Symfony\Component\HttpFoundation\StreamedResponse - * @static + * @return \Symfony\Component\HttpFoundation\StreamedResponse + * @static */ public static function streamDownload($callback, $name = null, $headers = [], $disposition = 'attachment') { @@ -11202,8 +11140,8 @@ * @param string|null $name * @param array $headers * @param string|null $disposition - * @return \Symfony\Component\HttpFoundation\BinaryFileResponse - * @static + * @return \Symfony\Component\HttpFoundation\BinaryFileResponse + * @static */ public static function download($file, $name = null, $headers = [], $disposition = 'attachment') { @@ -11215,8 +11153,8 @@ * * @param \SplFileInfo|string $file * @param array $headers - * @return \Symfony\Component\HttpFoundation\BinaryFileResponse - * @static + * @return \Symfony\Component\HttpFoundation\BinaryFileResponse + * @static */ public static function file($file, $headers = []) { @@ -11230,8 +11168,8 @@ * @param int $status * @param array $headers * @param bool|null $secure - * @return \Illuminate\Http\RedirectResponse - * @static + * @return \Illuminate\Http\RedirectResponse + * @static */ public static function redirectTo($path, $status = 302, $headers = [], $secure = null) { @@ -11245,8 +11183,8 @@ * @param mixed $parameters * @param int $status * @param array $headers - * @return \Illuminate\Http\RedirectResponse - * @static + * @return \Illuminate\Http\RedirectResponse + * @static */ public static function redirectToRoute($route, $parameters = [], $status = 302, $headers = []) { @@ -11260,8 +11198,8 @@ * @param mixed $parameters * @param int $status * @param array $headers - * @return \Illuminate\Http\RedirectResponse - * @static + * @return \Illuminate\Http\RedirectResponse + * @static */ public static function redirectToAction($action, $parameters = [], $status = 302, $headers = []) { @@ -11275,8 +11213,8 @@ * @param int $status * @param array $headers * @param bool|null $secure - * @return \Illuminate\Http\RedirectResponse - * @static + * @return \Illuminate\Http\RedirectResponse + * @static */ public static function redirectGuest($path, $status = 302, $headers = [], $secure = null) { @@ -11290,8 +11228,8 @@ * @param int $status * @param array $headers * @param bool|null $secure - * @return \Illuminate\Http\RedirectResponse - * @static + * @return \Illuminate\Http\RedirectResponse + * @static */ public static function redirectToIntended($default = '/', $status = 302, $headers = [], $secure = null) { @@ -11303,8 +11241,8 @@ * * @param string $name * @param object|callable $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -11315,9 +11253,9 @@ * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -11327,8 +11265,8 @@ * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -11337,8 +11275,8 @@ /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -11347,8 +11285,6 @@ } /** - * - * * @method static \Illuminate\Routing\RouteRegistrar as(string $value) * @method static \Illuminate\Routing\RouteRegistrar controller(string $controller) * @method static \Illuminate\Routing\RouteRegistrar domain(string $value) @@ -11367,8 +11303,8 @@ * * @param string $uri * @param array|string|callable|null $action - * @return \Illuminate\Routing\Route - * @static + * @return \Illuminate\Routing\Route + * @static */ public static function get($uri, $action = null) { @@ -11380,8 +11316,8 @@ * * @param string $uri * @param array|string|callable|null $action - * @return \Illuminate\Routing\Route - * @static + * @return \Illuminate\Routing\Route + * @static */ public static function post($uri, $action = null) { @@ -11393,8 +11329,8 @@ * * @param string $uri * @param array|string|callable|null $action - * @return \Illuminate\Routing\Route - * @static + * @return \Illuminate\Routing\Route + * @static */ public static function put($uri, $action = null) { @@ -11406,8 +11342,8 @@ * * @param string $uri * @param array|string|callable|null $action - * @return \Illuminate\Routing\Route - * @static + * @return \Illuminate\Routing\Route + * @static */ public static function patch($uri, $action = null) { @@ -11419,8 +11355,8 @@ * * @param string $uri * @param array|string|callable|null $action - * @return \Illuminate\Routing\Route - * @static + * @return \Illuminate\Routing\Route + * @static */ public static function delete($uri, $action = null) { @@ -11432,8 +11368,8 @@ * * @param string $uri * @param array|string|callable|null $action - * @return \Illuminate\Routing\Route - * @static + * @return \Illuminate\Routing\Route + * @static */ public static function options($uri, $action = null) { @@ -11445,8 +11381,8 @@ * * @param string $uri * @param array|string|callable|null $action - * @return \Illuminate\Routing\Route - * @static + * @return \Illuminate\Routing\Route + * @static */ public static function any($uri, $action = null) { @@ -11457,8 +11393,8 @@ * Register a new Fallback route with the router. * * @param array|string|callable|null $action - * @return \Illuminate\Routing\Route - * @static + * @return \Illuminate\Routing\Route + * @static */ public static function fallback($action) { @@ -11471,8 +11407,8 @@ * @param string $uri * @param string $destination * @param int $status - * @return \Illuminate\Routing\Route - * @static + * @return \Illuminate\Routing\Route + * @static */ public static function redirect($uri, $destination, $status = 302) { @@ -11484,8 +11420,8 @@ * * @param string $uri * @param string $destination - * @return \Illuminate\Routing\Route - * @static + * @return \Illuminate\Routing\Route + * @static */ public static function permanentRedirect($uri, $destination) { @@ -11500,8 +11436,8 @@ * @param array $data * @param int|array $status * @param array $headers - * @return \Illuminate\Routing\Route - * @static + * @return \Illuminate\Routing\Route + * @static */ public static function view($uri, $view, $data = [], $status = 200, $headers = []) { @@ -11514,8 +11450,8 @@ * @param array|string $methods * @param string $uri * @param array|string|callable|null $action - * @return \Illuminate\Routing\Route - * @static + * @return \Illuminate\Routing\Route + * @static */ public static function match($methods, $uri, $action = null) { @@ -11527,8 +11463,8 @@ * * @param array $resources * @param array $options - * @return void - * @static + * @return void + * @static */ public static function resources($resources, $options = []) { @@ -11541,8 +11477,8 @@ * @param string $name * @param string $controller * @param array $options - * @return \Illuminate\Routing\PendingResourceRegistration - * @static + * @return \Illuminate\Routing\PendingResourceRegistration + * @static */ public static function resource($name, $controller, $options = []) { @@ -11554,8 +11490,8 @@ * * @param array $resources * @param array $options - * @return void - * @static + * @return void + * @static */ public static function apiResources($resources, $options = []) { @@ -11568,8 +11504,8 @@ * @param string $name * @param string $controller * @param array $options - * @return \Illuminate\Routing\PendingResourceRegistration - * @static + * @return \Illuminate\Routing\PendingResourceRegistration + * @static */ public static function apiResource($name, $controller, $options = []) { @@ -11581,8 +11517,8 @@ * * @param array $attributes * @param \Closure|string $routes - * @return void - * @static + * @return void + * @static */ public static function group($attributes, $routes) { @@ -11594,8 +11530,8 @@ * * @param array $new * @param bool $prependExistingPrefix - * @return array - * @static + * @return array + * @static */ public static function mergeWithLastGroup($new, $prependExistingPrefix = true) { @@ -11605,8 +11541,8 @@ /** * Get the prefix from the last group on the stack. * - * @return string - * @static + * @return string + * @static */ public static function getLastGroupPrefix() { @@ -11619,8 +11555,8 @@ * @param array|string $methods * @param string $uri * @param array|string|callable|null $action - * @return \Illuminate\Routing\Route - * @static + * @return \Illuminate\Routing\Route + * @static */ public static function addRoute($methods, $uri, $action) { @@ -11633,8 +11569,8 @@ * @param array|string $methods * @param string $uri * @param mixed $action - * @return \Illuminate\Routing\Route - * @static + * @return \Illuminate\Routing\Route + * @static */ public static function newRoute($methods, $uri, $action) { @@ -11645,8 +11581,8 @@ * Return the response returned by the given route. * * @param string $name - * @return \Symfony\Component\HttpFoundation\Response - * @static + * @return \Symfony\Component\HttpFoundation\Response + * @static */ public static function respondWithRoute($name) { @@ -11657,8 +11593,8 @@ * Dispatch the request to the application. * * @param \Illuminate\Http\Request $request - * @return \Symfony\Component\HttpFoundation\Response - * @static + * @return \Symfony\Component\HttpFoundation\Response + * @static */ public static function dispatch($request) { @@ -11669,8 +11605,8 @@ * Dispatch the request to a route and return the response. * * @param \Illuminate\Http\Request $request - * @return \Symfony\Component\HttpFoundation\Response - * @static + * @return \Symfony\Component\HttpFoundation\Response + * @static */ public static function dispatchToRoute($request) { @@ -11681,8 +11617,8 @@ * Gather the middleware for the given route with resolved class names. * * @param \Illuminate\Routing\Route $route - * @return array - * @static + * @return array + * @static */ public static function gatherRouteMiddleware($route) { @@ -11694,8 +11630,8 @@ * * @param \Symfony\Component\HttpFoundation\Request $request * @param mixed $response - * @return \Symfony\Component\HttpFoundation\Response - * @static + * @return \Symfony\Component\HttpFoundation\Response + * @static */ public static function prepareResponse($request, $response) { @@ -11707,8 +11643,8 @@ * * @param \Symfony\Component\HttpFoundation\Request $request * @param mixed $response - * @return \Symfony\Component\HttpFoundation\Response - * @static + * @return \Symfony\Component\HttpFoundation\Response + * @static */ public static function toResponse($request, $response) { @@ -11718,9 +11654,9 @@ * Substitute the route bindings onto the route. * * @param \Illuminate\Routing\Route $route - * @return \Illuminate\Routing\Route + * @return \Illuminate\Routing\Route * @throws \Illuminate\Database\Eloquent\ModelNotFoundException - * @static + * @static */ public static function substituteBindings($route) { @@ -11731,9 +11667,9 @@ * Substitute the implicit Eloquent model bindings for the route. * * @param \Illuminate\Routing\Route $route - * @return void + * @return void * @throws \Illuminate\Database\Eloquent\ModelNotFoundException - * @static + * @static */ public static function substituteImplicitBindings($route) { @@ -11744,8 +11680,8 @@ * Register a route matched event listener. * * @param string|callable $callback - * @return void - * @static + * @return void + * @static */ public static function matched($callback) { @@ -11755,8 +11691,8 @@ /** * Get all of the defined middleware short-hand names. * - * @return array - * @static + * @return array + * @static */ public static function getMiddleware() { @@ -11768,8 +11704,8 @@ * * @param string $name * @param string $class - * @return \Illuminate\Routing\Router - * @static + * @return \Illuminate\Routing\Router + * @static */ public static function aliasMiddleware($name, $class) { @@ -11780,8 +11716,8 @@ * Check if a middlewareGroup with the given name exists. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMiddlewareGroup($name) { @@ -11791,8 +11727,8 @@ /** * Get all of the defined middleware groups. * - * @return array - * @static + * @return array + * @static */ public static function getMiddlewareGroups() { @@ -11804,8 +11740,8 @@ * * @param string $name * @param array $middleware - * @return \Illuminate\Routing\Router - * @static + * @return \Illuminate\Routing\Router + * @static */ public static function middlewareGroup($name, $middleware) { @@ -11819,8 +11755,8 @@ * * @param string $group * @param string $middleware - * @return \Illuminate\Routing\Router - * @static + * @return \Illuminate\Routing\Router + * @static */ public static function prependMiddlewareToGroup($group, $middleware) { @@ -11834,8 +11770,8 @@ * * @param string $group * @param string $middleware - * @return \Illuminate\Routing\Router - * @static + * @return \Illuminate\Routing\Router + * @static */ public static function pushMiddlewareToGroup($group, $middleware) { @@ -11845,8 +11781,8 @@ /** * Flush the router's middleware groups. * - * @return \Illuminate\Routing\Router - * @static + * @return \Illuminate\Routing\Router + * @static */ public static function flushMiddlewareGroups() { @@ -11858,8 +11794,8 @@ * * @param string $key * @param string|callable $binder - * @return void - * @static + * @return void + * @static */ public static function bind($key, $binder) { @@ -11872,8 +11808,8 @@ * @param string $key * @param string $class * @param \Closure|null $callback - * @return void - * @static + * @return void + * @static */ public static function model($key, $class, $callback = null) { @@ -11884,8 +11820,8 @@ * Get the binding callback for a given binding. * * @param string $key - * @return \Closure|null - * @static + * @return \Closure|null + * @static */ public static function getBindingCallback($key) { @@ -11895,8 +11831,8 @@ /** * Get the global "where" patterns. * - * @return array - * @static + * @return array + * @static */ public static function getPatterns() { @@ -11908,8 +11844,8 @@ * * @param string $key * @param string $pattern - * @return void - * @static + * @return void + * @static */ public static function pattern($key, $pattern) { @@ -11920,8 +11856,8 @@ * Set a group of global where patterns on all routes. * * @param array $patterns - * @return void - * @static + * @return void + * @static */ public static function patterns($patterns) { @@ -11931,8 +11867,8 @@ /** * Determine if the router currently has a group stack. * - * @return bool - * @static + * @return bool + * @static */ public static function hasGroupStack() { @@ -11942,8 +11878,8 @@ /** * Get the current group stack for the router. * - * @return array - * @static + * @return array + * @static */ public static function getGroupStack() { @@ -11955,8 +11891,8 @@ * * @param string $key * @param string|null $default - * @return mixed - * @static + * @return mixed + * @static */ public static function input($key, $default = null) { @@ -11966,8 +11902,8 @@ /** * Get the request currently being dispatched. * - * @return \Illuminate\Http\Request - * @static + * @return \Illuminate\Http\Request + * @static */ public static function getCurrentRequest() { @@ -11977,8 +11913,8 @@ /** * Get the currently dispatched route instance. * - * @return \Illuminate\Routing\Route|null - * @static + * @return \Illuminate\Routing\Route|null + * @static */ public static function getCurrentRoute() { @@ -11988,8 +11924,8 @@ /** * Get the currently dispatched route instance. * - * @return \Illuminate\Routing\Route|null - * @static + * @return \Illuminate\Routing\Route|null + * @static */ public static function current() { @@ -12000,8 +11936,8 @@ * Check if a route with the given name exists. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function has($name) { @@ -12011,8 +11947,8 @@ /** * Get the current route name. * - * @return string|null - * @static + * @return string|null + * @static */ public static function currentRouteName() { @@ -12023,8 +11959,8 @@ * Alias for the "currentRouteNamed" method. * * @param mixed $patterns - * @return bool - * @static + * @return bool + * @static */ public static function is(...$patterns) { @@ -12035,8 +11971,8 @@ * Determine if the current route matches a pattern. * * @param mixed $patterns - * @return bool - * @static + * @return bool + * @static */ public static function currentRouteNamed(...$patterns) { @@ -12046,8 +11982,8 @@ /** * Get the current route action. * - * @return string|null - * @static + * @return string|null + * @static */ public static function currentRouteAction() { @@ -12058,8 +11994,8 @@ * Alias for the "currentRouteUses" method. * * @param array $patterns - * @return bool - * @static + * @return bool + * @static */ public static function uses(...$patterns) { @@ -12070,8 +12006,8 @@ * Determine if the current route action matches a given action. * * @param string $action - * @return bool - * @static + * @return bool + * @static */ public static function currentRouteUses($action) { @@ -12082,8 +12018,8 @@ * Set the unmapped global resource parameters to singular. * * @param bool $singular - * @return void - * @static + * @return void + * @static */ public static function singularResourceParameters($singular = true) { @@ -12094,8 +12030,8 @@ * Set the global resource parameter mapping. * * @param array $parameters - * @return void - * @static + * @return void + * @static */ public static function resourceParameters($parameters = []) { @@ -12106,8 +12042,8 @@ * Get or set the verbs used in the resource URIs. * * @param array $verbs - * @return array|null - * @static + * @return array|null + * @static */ public static function resourceVerbs($verbs = []) { @@ -12117,8 +12053,8 @@ /** * Get the underlying route collection. * - * @return \Illuminate\Routing\RouteCollectionInterface - * @static + * @return \Illuminate\Routing\RouteCollectionInterface + * @static */ public static function getRoutes() { @@ -12129,8 +12065,8 @@ * Set the route collection instance. * * @param \Illuminate\Routing\RouteCollection $routes - * @return void - * @static + * @return void + * @static */ public static function setRoutes($routes) { @@ -12141,8 +12077,8 @@ * Set the compiled route collection instance. * * @param array $routes - * @return void - * @static + * @return void + * @static */ public static function setCompiledRoutes($routes) { @@ -12153,8 +12089,8 @@ * Remove any duplicate middleware from the given array. * * @param array $middleware - * @return array - * @static + * @return array + * @static */ public static function uniqueMiddleware($middleware) { @@ -12164,8 +12100,8 @@ * Set the container instance used by the router. * * @param \Illuminate\Container\Container $container - * @return \Illuminate\Routing\Router - * @static + * @return \Illuminate\Routing\Router + * @static */ public static function setContainer($container) { @@ -12177,8 +12113,8 @@ * * @param string $name * @param object|callable $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -12189,9 +12125,9 @@ * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -12201,8 +12137,8 @@ * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -12211,8 +12147,8 @@ /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -12223,9 +12159,9 @@ * * @param string $method * @param array $parameters - * @return mixed + * @return mixed * @throws \BadMethodCallException - * @static + * @static */ public static function macroCall($method, $parameters) { @@ -12233,41 +12169,33 @@ return $instance->macroCall($method, $parameters); } /** - * - * * @see \Laravel\Ui\AuthRouteMethods::auth() * @param mixed $options - * @static + * @static */ public static function auth($options = []) { return \Illuminate\Routing\Router::auth($options); } /** - * - * * @see \Laravel\Ui\AuthRouteMethods::resetPassword() - * @static + * @static */ public static function resetPassword() { return \Illuminate\Routing\Router::resetPassword(); } /** - * - * * @see \Laravel\Ui\AuthRouteMethods::confirmPassword() - * @static + * @static */ public static function confirmPassword() { return \Illuminate\Routing\Router::confirmPassword(); } /** - * - * * @see \Laravel\Ui\AuthRouteMethods::emailVerification() - * @static + * @static */ public static function emailVerification() { @@ -12276,8 +12204,6 @@ } /** - * - * * @see \Illuminate\Database\Schema\Builder */ class Schema { @@ -12285,8 +12211,8 @@ * Create a database in the schema. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function createDatabase($name) { @@ -12297,8 +12223,8 @@ * Drop a database from the schema if the database exists. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function dropDatabaseIfExists($name) { @@ -12309,8 +12235,8 @@ * Determine if the given table exists. * * @param string $table - * @return bool - * @static + * @return bool + * @static */ public static function hasTable($table) { @@ -12321,8 +12247,8 @@ * Get the column listing for a given table. * * @param string $table - * @return array - * @static + * @return array + * @static */ public static function getColumnListing($table) { @@ -12332,8 +12258,8 @@ /** * Drop all tables from the database. * - * @return void - * @static + * @return void + * @static */ public static function dropAllTables() { @@ -12343,8 +12269,8 @@ /** * Drop all views from the database. * - * @return void - * @static + * @return void + * @static */ public static function dropAllViews() { @@ -12354,8 +12280,8 @@ /** * Get all of the table names for the database. * - * @return array - * @static + * @return array + * @static */ public static function getAllTables() { @@ -12365,8 +12291,8 @@ /** * Get all of the view names for the database. * - * @return array - * @static + * @return array + * @static */ public static function getAllViews() { @@ -12377,8 +12303,8 @@ * Set the default string length for migrations. * * @param int $length - * @return void - * @static + * @return void + * @static */ public static function defaultStringLength($length) { //Method inherited from \Illuminate\Database\Schema\Builder @@ -12388,9 +12314,9 @@ * Set the default morph key type for migrations. * * @param string $type - * @return void + * @return void * @throws \InvalidArgumentException - * @static + * @static */ public static function defaultMorphKeyType($type) { //Method inherited from \Illuminate\Database\Schema\Builder @@ -12399,8 +12325,8 @@ /** * Set the default morph key type for migrations to UUIDs. * - * @return void - * @static + * @return void + * @static */ public static function morphUsingUuids() { //Method inherited from \Illuminate\Database\Schema\Builder @@ -12411,8 +12337,8 @@ * * @param string $table * @param string $column - * @return bool - * @static + * @return bool + * @static */ public static function hasColumn($table, $column) { //Method inherited from \Illuminate\Database\Schema\Builder @@ -12424,8 +12350,8 @@ * * @param string $table * @param array $columns - * @return bool - * @static + * @return bool + * @static */ public static function hasColumns($table, $columns) { //Method inherited from \Illuminate\Database\Schema\Builder @@ -12437,8 +12363,8 @@ * * @param string $table * @param string $column - * @return string - * @static + * @return string + * @static */ public static function getColumnType($table, $column) { //Method inherited from \Illuminate\Database\Schema\Builder @@ -12450,8 +12376,8 @@ * * @param string $table * @param \Closure $callback - * @return void - * @static + * @return void + * @static */ public static function table($table, $callback) { //Method inherited from \Illuminate\Database\Schema\Builder @@ -12463,8 +12389,8 @@ * * @param string $table * @param \Closure $callback - * @return void - * @static + * @return void + * @static */ public static function create($table, $callback) { //Method inherited from \Illuminate\Database\Schema\Builder @@ -12475,8 +12401,8 @@ * Drop a table from the schema. * * @param string $table - * @return void - * @static + * @return void + * @static */ public static function drop($table) { //Method inherited from \Illuminate\Database\Schema\Builder @@ -12487,8 +12413,8 @@ * Drop a table from the schema if it exists. * * @param string $table - * @return void - * @static + * @return void + * @static */ public static function dropIfExists($table) { //Method inherited from \Illuminate\Database\Schema\Builder @@ -12500,8 +12426,8 @@ * * @param string $table * @param string|array $columns - * @return void - * @static + * @return void + * @static */ public static function dropColumns($table, $columns) { //Method inherited from \Illuminate\Database\Schema\Builder @@ -12511,9 +12437,9 @@ /** * Drop all types from the database. * - * @return void + * @return void * @throws \LogicException - * @static + * @static */ public static function dropAllTypes() { //Method inherited from \Illuminate\Database\Schema\Builder @@ -12525,8 +12451,8 @@ * * @param string $from * @param string $to - * @return void - * @static + * @return void + * @static */ public static function rename($from, $to) { //Method inherited from \Illuminate\Database\Schema\Builder @@ -12536,8 +12462,8 @@ /** * Enable foreign key constraints. * - * @return bool - * @static + * @return bool + * @static */ public static function enableForeignKeyConstraints() { //Method inherited from \Illuminate\Database\Schema\Builder @@ -12547,8 +12473,8 @@ /** * Disable foreign key constraints. * - * @return bool - * @static + * @return bool + * @static */ public static function disableForeignKeyConstraints() { //Method inherited from \Illuminate\Database\Schema\Builder @@ -12561,8 +12487,8 @@ * @param string $class * @param string $name * @param string $type - * @return void - * @static + * @return void + * @static */ public static function registerCustomDoctrineType($class, $name, $type) { //Method inherited from \Illuminate\Database\Schema\Builder @@ -12572,8 +12498,8 @@ /** * Get the database connection instance. * - * @return \Illuminate\Database\Connection - * @static + * @return \Illuminate\Database\Connection + * @static */ public static function getConnection() { //Method inherited from \Illuminate\Database\Schema\Builder @@ -12584,8 +12510,8 @@ * Set the database connection instance. * * @param \Illuminate\Database\Connection $connection - * @return \Illuminate\Database\Schema\MySqlBuilder - * @static + * @return \Illuminate\Database\Schema\MySqlBuilder + * @static */ public static function setConnection($connection) { //Method inherited from \Illuminate\Database\Schema\Builder @@ -12596,8 +12522,8 @@ * Set the Schema Blueprint resolver callback. * * @param \Closure $resolver - * @return void - * @static + * @return void + * @static */ public static function blueprintResolver($resolver) { //Method inherited from \Illuminate\Database\Schema\Builder @@ -12607,8 +12533,6 @@ } /** - * - * * @see \Illuminate\Session\SessionManager * @see \Illuminate\Session\Store */ @@ -12616,8 +12540,8 @@ /** * Determine if requests for the same session should wait for each to finish before executing. * - * @return bool - * @static + * @return bool + * @static */ public static function shouldBlock() { @@ -12627,8 +12551,8 @@ /** * Get the name of the cache store / driver that should be used to acquire session locks. * - * @return string|null - * @static + * @return string|null + * @static */ public static function blockDriver() { @@ -12638,8 +12562,8 @@ /** * Get the session configuration. * - * @return array - * @static + * @return array + * @static */ public static function getSessionConfig() { @@ -12649,8 +12573,8 @@ /** * Get the default session driver name. * - * @return string - * @static + * @return string + * @static */ public static function getDefaultDriver() { @@ -12661,8 +12585,8 @@ * Set the default session driver name. * * @param string $name - * @return void - * @static + * @return void + * @static */ public static function setDefaultDriver($name) { @@ -12673,9 +12597,9 @@ * Get a driver instance. * * @param string|null $driver - * @return mixed + * @return mixed * @throws \InvalidArgumentException - * @static + * @static */ public static function driver($driver = null) { //Method inherited from \Illuminate\Support\Manager @@ -12687,8 +12611,8 @@ * * @param string $driver * @param \Closure $callback - * @return \Illuminate\Session\SessionManager - * @static + * @return \Illuminate\Session\SessionManager + * @static */ public static function extend($driver, $callback) { //Method inherited from \Illuminate\Support\Manager @@ -12698,8 +12622,8 @@ /** * Get all of the created "drivers". * - * @return array - * @static + * @return array + * @static */ public static function getDrivers() { //Method inherited from \Illuminate\Support\Manager @@ -12709,8 +12633,8 @@ /** * Get the container instance used by the manager. * - * @return \Illuminate\Contracts\Container\Container - * @static + * @return \Illuminate\Contracts\Container\Container + * @static */ public static function getContainer() { //Method inherited from \Illuminate\Support\Manager @@ -12721,8 +12645,8 @@ * Set the container instance used by the manager. * * @param \Illuminate\Contracts\Container\Container $container - * @return \Illuminate\Session\SessionManager - * @static + * @return \Illuminate\Session\SessionManager + * @static */ public static function setContainer($container) { //Method inherited from \Illuminate\Support\Manager @@ -12732,8 +12656,8 @@ /** * Forget all of the resolved driver instances. * - * @return \Illuminate\Session\SessionManager - * @static + * @return \Illuminate\Session\SessionManager + * @static */ public static function forgetDrivers() { //Method inherited from \Illuminate\Support\Manager @@ -12743,8 +12667,8 @@ /** * Start the session, reading the data from a handler. * - * @return bool - * @static + * @return bool + * @static */ public static function start() { @@ -12754,8 +12678,8 @@ /** * Save the session data to storage. * - * @return void - * @static + * @return void + * @static */ public static function save() { @@ -12765,8 +12689,8 @@ /** * Age the flash data for the session. * - * @return void - * @static + * @return void + * @static */ public static function ageFlashData() { @@ -12776,8 +12700,8 @@ /** * Get all of the session data. * - * @return array - * @static + * @return array + * @static */ public static function all() { @@ -12788,8 +12712,8 @@ * Get a subset of the session data. * * @param array $keys - * @return array - * @static + * @return array + * @static */ public static function only($keys) { @@ -12800,8 +12724,8 @@ * Checks if a key exists. * * @param string|array $key - * @return bool - * @static + * @return bool + * @static */ public static function exists($key) { @@ -12812,8 +12736,8 @@ * Determine if the given key is missing from the session data. * * @param string|array $key - * @return bool - * @static + * @return bool + * @static */ public static function missing($key) { @@ -12824,8 +12748,8 @@ * Checks if a key is present and not null. * * @param string|array $key - * @return bool - * @static + * @return bool + * @static */ public static function has($key) { @@ -12837,8 +12761,8 @@ * * @param string $key * @param mixed $default - * @return mixed - * @static + * @return mixed + * @static */ public static function get($key, $default = null) { @@ -12850,8 +12774,8 @@ * * @param string $key * @param mixed $default - * @return mixed - * @static + * @return mixed + * @static */ public static function pull($key, $default = null) { @@ -12862,8 +12786,8 @@ * Determine if the session contains old input. * * @param string|null $key - * @return bool - * @static + * @return bool + * @static */ public static function hasOldInput($key = null) { @@ -12875,8 +12799,8 @@ * * @param string|null $key * @param mixed $default - * @return mixed - * @static + * @return mixed + * @static */ public static function getOldInput($key = null, $default = null) { @@ -12887,8 +12811,8 @@ * Replace the given session attributes entirely. * * @param array $attributes - * @return void - * @static + * @return void + * @static */ public static function replace($attributes) { @@ -12900,8 +12824,8 @@ * * @param string|array $key * @param mixed $value - * @return void - * @static + * @return void + * @static */ public static function put($key, $value = null) { @@ -12913,8 +12837,8 @@ * * @param string $key * @param \Closure $callback - * @return mixed - * @static + * @return mixed + * @static */ public static function remember($key, $callback) { @@ -12926,8 +12850,8 @@ * * @param string $key * @param mixed $value - * @return void - * @static + * @return void + * @static */ public static function push($key, $value) { @@ -12939,8 +12863,8 @@ * * @param string $key * @param int $amount - * @return mixed - * @static + * @return mixed + * @static */ public static function increment($key, $amount = 1) { @@ -12952,8 +12876,8 @@ * * @param string $key * @param int $amount - * @return int - * @static + * @return int + * @static */ public static function decrement($key, $amount = 1) { @@ -12965,8 +12889,8 @@ * * @param string $key * @param mixed $value - * @return void - * @static + * @return void + * @static */ public static function flash($key, $value = true) { @@ -12978,8 +12902,8 @@ * * @param string $key * @param mixed $value - * @return void - * @static + * @return void + * @static */ public static function now($key, $value) { @@ -12989,8 +12913,8 @@ /** * Reflash all of the session flash data. * - * @return void - * @static + * @return void + * @static */ public static function reflash() { @@ -13001,8 +12925,8 @@ * Reflash a subset of the current flash data. * * @param array|mixed $keys - * @return void - * @static + * @return void + * @static */ public static function keep($keys = null) { @@ -13013,8 +12937,8 @@ * Flash an input array to the session. * * @param array $value - * @return void - * @static + * @return void + * @static */ public static function flashInput($value) { @@ -13025,8 +12949,8 @@ * Remove an item from the session, returning its value. * * @param string $key - * @return mixed - * @static + * @return mixed + * @static */ public static function remove($key) { @@ -13037,8 +12961,8 @@ * Remove one or many items from the session. * * @param string|array $keys - * @return void - * @static + * @return void + * @static */ public static function forget($keys) { @@ -13048,8 +12972,8 @@ /** * Remove all of the items from the session. * - * @return void - * @static + * @return void + * @static */ public static function flush() { @@ -13059,8 +12983,8 @@ /** * Flush the session data and regenerate the ID. * - * @return bool - * @static + * @return bool + * @static */ public static function invalidate() { @@ -13071,8 +12995,8 @@ * Generate a new session identifier. * * @param bool $destroy - * @return bool - * @static + * @return bool + * @static */ public static function regenerate($destroy = false) { @@ -13083,8 +13007,8 @@ * Generate a new session ID for the session. * * @param bool $destroy - * @return bool - * @static + * @return bool + * @static */ public static function migrate($destroy = false) { @@ -13094,8 +13018,8 @@ /** * Determine if the session has been started. * - * @return bool - * @static + * @return bool + * @static */ public static function isStarted() { @@ -13105,8 +13029,8 @@ /** * Get the name of the session. * - * @return string - * @static + * @return string + * @static */ public static function getName() { @@ -13117,8 +13041,8 @@ * Set the name of the session. * * @param string $name - * @return void - * @static + * @return void + * @static */ public static function setName($name) { @@ -13128,8 +13052,8 @@ /** * Get the current session ID. * - * @return string - * @static + * @return string + * @static */ public static function getId() { @@ -13140,8 +13064,8 @@ * Set the session ID. * * @param string $id - * @return void - * @static + * @return void + * @static */ public static function setId($id) { @@ -13152,8 +13076,8 @@ * Determine if this is a valid session ID. * * @param string $id - * @return bool - * @static + * @return bool + * @static */ public static function isValidId($id) { @@ -13164,8 +13088,8 @@ * Set the existence of the session on the handler if applicable. * * @param bool $value - * @return void - * @static + * @return void + * @static */ public static function setExists($value) { @@ -13175,8 +13099,8 @@ /** * Get the CSRF token value. * - * @return string - * @static + * @return string + * @static */ public static function token() { @@ -13186,8 +13110,8 @@ /** * Regenerate the CSRF token value. * - * @return void - * @static + * @return void + * @static */ public static function regenerateToken() { @@ -13197,8 +13121,8 @@ /** * Get the previous URL from the session. * - * @return string|null - * @static + * @return string|null + * @static */ public static function previousUrl() { @@ -13209,8 +13133,8 @@ * Set the "previous" URL in the session. * * @param string $url - * @return void - * @static + * @return void + * @static */ public static function setPreviousUrl($url) { @@ -13220,8 +13144,8 @@ /** * Specify that the user has confirmed their password. * - * @return void - * @static + * @return void + * @static */ public static function passwordConfirmed() { @@ -13231,8 +13155,8 @@ /** * Get the underlying session handler implementation. * - * @return \SessionHandlerInterface - * @static + * @return \SessionHandlerInterface + * @static */ public static function getHandler() { @@ -13242,8 +13166,8 @@ /** * Determine if the session handler needs a request. * - * @return bool - * @static + * @return bool + * @static */ public static function handlerNeedsRequest() { @@ -13254,8 +13178,8 @@ * Set the request on the handler instance. * * @param \Illuminate\Http\Request $request - * @return void - * @static + * @return void + * @static */ public static function setRequestOnHandler($request) { @@ -13265,8 +13189,6 @@ } /** - * - * * @see \Illuminate\Filesystem\FilesystemManager */ class Storage { @@ -13274,8 +13196,8 @@ * Get a filesystem instance. * * @param string|null $name - * @return \Illuminate\Filesystem\FilesystemAdapter - * @static + * @return \Illuminate\Filesystem\FilesystemAdapter + * @static */ public static function drive($name = null) { @@ -13286,8 +13208,8 @@ * Get a filesystem instance. * * @param string|null $name - * @return \Illuminate\Filesystem\FilesystemAdapter - * @static + * @return \Illuminate\Filesystem\FilesystemAdapter + * @static */ public static function disk($name = null) { @@ -13297,8 +13219,8 @@ /** * Get a default cloud filesystem instance. * - * @return \Illuminate\Filesystem\FilesystemAdapter - * @static + * @return \Illuminate\Filesystem\FilesystemAdapter + * @static */ public static function cloud() { @@ -13309,8 +13231,8 @@ * Build an on-demand disk. * * @param string|array $config - * @return \Illuminate\Filesystem\FilesystemAdapter - * @static + * @return \Illuminate\Filesystem\FilesystemAdapter + * @static */ public static function build($config) { @@ -13321,8 +13243,8 @@ * Create an instance of the local driver. * * @param array $config - * @return \Illuminate\Filesystem\FilesystemAdapter - * @static + * @return \Illuminate\Filesystem\FilesystemAdapter + * @static */ public static function createLocalDriver($config) { @@ -13333,8 +13255,8 @@ * Create an instance of the ftp driver. * * @param array $config - * @return \Illuminate\Filesystem\FilesystemAdapter - * @static + * @return \Illuminate\Filesystem\FilesystemAdapter + * @static */ public static function createFtpDriver($config) { @@ -13345,8 +13267,8 @@ * Create an instance of the sftp driver. * * @param array $config - * @return \Illuminate\Filesystem\FilesystemAdapter - * @static + * @return \Illuminate\Filesystem\FilesystemAdapter + * @static */ public static function createSftpDriver($config) { @@ -13357,8 +13279,8 @@ * Create an instance of the Amazon S3 driver. * * @param array $config - * @return \Illuminate\Contracts\Filesystem\Cloud - * @static + * @return \Illuminate\Contracts\Filesystem\Cloud + * @static */ public static function createS3Driver($config) { @@ -13370,8 +13292,8 @@ * * @param string $name * @param mixed $disk - * @return \Illuminate\Filesystem\FilesystemManager - * @static + * @return \Illuminate\Filesystem\FilesystemManager + * @static */ public static function set($name, $disk) { @@ -13381,8 +13303,8 @@ /** * Get the default driver name. * - * @return string - * @static + * @return string + * @static */ public static function getDefaultDriver() { @@ -13392,8 +13314,8 @@ /** * Get the default cloud driver name. * - * @return string - * @static + * @return string + * @static */ public static function getDefaultCloudDriver() { @@ -13404,8 +13326,8 @@ * Unset the given disk instances. * * @param array|string $disk - * @return \Illuminate\Filesystem\FilesystemManager - * @static + * @return \Illuminate\Filesystem\FilesystemManager + * @static */ public static function forgetDisk($disk) { @@ -13416,8 +13338,8 @@ * Disconnect the given disk and remove from local cache. * * @param string|null $name - * @return void - * @static + * @return void + * @static */ public static function purge($name = null) { @@ -13429,8 +13351,8 @@ * * @param string $driver * @param \Closure $callback - * @return \Illuminate\Filesystem\FilesystemManager - * @static + * @return \Illuminate\Filesystem\FilesystemManager + * @static */ public static function extend($driver, $callback) { @@ -13441,8 +13363,8 @@ * Set the application instance used by the manager. * * @param \Illuminate\Contracts\Foundation\Application $app - * @return \Illuminate\Filesystem\FilesystemManager - * @static + * @return \Illuminate\Filesystem\FilesystemManager + * @static */ public static function setApplication($app) { @@ -13454,8 +13376,8 @@ * * @param string|array $path * @param string|null $content - * @return \Illuminate\Filesystem\FilesystemAdapter - * @static + * @return \Illuminate\Filesystem\FilesystemAdapter + * @static */ public static function assertExists($path, $content = null) { @@ -13466,8 +13388,8 @@ * Assert that the given file does not exist. * * @param string|array $path - * @return \Illuminate\Filesystem\FilesystemAdapter - * @static + * @return \Illuminate\Filesystem\FilesystemAdapter + * @static */ public static function assertMissing($path) { @@ -13478,8 +13400,8 @@ * Determine if a file exists. * * @param string $path - * @return bool - * @static + * @return bool + * @static */ public static function exists($path) { @@ -13490,8 +13412,8 @@ * Determine if a file or directory is missing. * * @param string $path - * @return bool - * @static + * @return bool + * @static */ public static function missing($path) { @@ -13502,8 +13424,8 @@ * Get the full path for the file at the given "short" path. * * @param string $path - * @return string - * @static + * @return string + * @static */ public static function path($path) { @@ -13514,9 +13436,9 @@ * Get the contents of a file. * * @param string $path - * @return string + * @return string * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException - * @static + * @static */ public static function get($path) { @@ -13530,8 +13452,8 @@ * @param string|null $name * @param array|null $headers * @param string|null $disposition - * @return \Symfony\Component\HttpFoundation\StreamedResponse - * @static + * @return \Symfony\Component\HttpFoundation\StreamedResponse + * @static */ public static function response($path, $name = null, $headers = [], $disposition = 'inline') { @@ -13544,8 +13466,8 @@ * @param string $path * @param string|null $name * @param array|null $headers - * @return \Symfony\Component\HttpFoundation\StreamedResponse - * @static + * @return \Symfony\Component\HttpFoundation\StreamedResponse + * @static */ public static function download($path, $name = null, $headers = []) { @@ -13558,8 +13480,8 @@ * @param string $path * @param \Psr\Http\Message\StreamInterface|\Illuminate\Http\File|\Illuminate\Http\UploadedFile|string|resource $contents * @param mixed $options - * @return bool - * @static + * @return bool + * @static */ public static function put($path, $contents, $options = []) { @@ -13572,8 +13494,8 @@ * @param string $path * @param \Illuminate\Http\File|\Illuminate\Http\UploadedFile|string $file * @param mixed $options - * @return string|false - * @static + * @return string|false + * @static */ public static function putFile($path, $file, $options = []) { @@ -13587,8 +13509,8 @@ * @param \Illuminate\Http\File|\Illuminate\Http\UploadedFile|string $file * @param string $name * @param mixed $options - * @return string|false - * @static + * @return string|false + * @static */ public static function putFileAs($path, $file, $name, $options = []) { @@ -13599,8 +13521,8 @@ * Get the visibility for the given path. * * @param string $path - * @return string - * @static + * @return string + * @static */ public static function getVisibility($path) { @@ -13612,8 +13534,8 @@ * * @param string $path * @param string $visibility - * @return bool - * @static + * @return bool + * @static */ public static function setVisibility($path, $visibility) { @@ -13626,8 +13548,8 @@ * @param string $path * @param string $data * @param string $separator - * @return bool - * @static + * @return bool + * @static */ public static function prepend($path, $data, $separator = ' ') @@ -13641,8 +13563,8 @@ * @param string $path * @param string $data * @param string $separator - * @return bool - * @static + * @return bool + * @static */ public static function append($path, $data, $separator = ' ') @@ -13654,8 +13576,8 @@ * Delete the file at a given path. * * @param string|array $paths - * @return bool - * @static + * @return bool + * @static */ public static function delete($paths) { @@ -13667,8 +13589,8 @@ * * @param string $from * @param string $to - * @return bool - * @static + * @return bool + * @static */ public static function copy($from, $to) { @@ -13680,8 +13602,8 @@ * * @param string $from * @param string $to - * @return bool - * @static + * @return bool + * @static */ public static function move($from, $to) { @@ -13692,8 +13614,8 @@ * Get the file size of a given file. * * @param string $path - * @return int - * @static + * @return int + * @static */ public static function size($path) { @@ -13704,8 +13626,8 @@ * Get the mime-type of a given file. * * @param string $path - * @return string|false - * @static + * @return string|false + * @static */ public static function mimeType($path) { @@ -13716,8 +13638,8 @@ * Get the file's last modification time. * * @param string $path - * @return int - * @static + * @return int + * @static */ public static function lastModified($path) { @@ -13728,9 +13650,9 @@ * Get the URL for the file at the given path. * * @param string $path - * @return string + * @return string * @throws \RuntimeException - * @static + * @static */ public static function url($path) { @@ -13743,7 +13665,7 @@ * @param string $path * @return resource|null The path resource or null on failure. * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException - * @static + * @static */ public static function readStream($path) { @@ -13756,10 +13678,10 @@ * @param string $path * @param resource $resource * @param array $options - * @return bool + * @return bool * @throws \InvalidArgumentException If $resource is not a file handle. * @throws \Illuminate\Contracts\Filesystem\FileExistsException - * @static + * @static */ public static function writeStream($path, $resource, $options = []) { @@ -13772,9 +13694,9 @@ * @param string $path * @param \DateTimeInterface $expiration * @param array $options - * @return string + * @return string * @throws \RuntimeException - * @static + * @static */ public static function temporaryUrl($path, $expiration, $options = []) { @@ -13788,8 +13710,8 @@ * @param string $path * @param \DateTimeInterface $expiration * @param array $options - * @return string - * @static + * @return string + * @static */ public static function getAwsTemporaryUrl($adapter, $path, $expiration, $options) { @@ -13801,8 +13723,8 @@ * * @param string|null $directory * @param bool $recursive - * @return array - * @static + * @return array + * @static */ public static function files($directory = null, $recursive = false) { @@ -13813,8 +13735,8 @@ * Get all of the files from the given directory (recursive). * * @param string|null $directory - * @return array - * @static + * @return array + * @static */ public static function allFiles($directory = null) { @@ -13826,8 +13748,8 @@ * * @param string|null $directory * @param bool $recursive - * @return array - * @static + * @return array + * @static */ public static function directories($directory = null, $recursive = false) { @@ -13838,8 +13760,8 @@ * Get all (recursive) of the directories within a given directory. * * @param string|null $directory - * @return array - * @static + * @return array + * @static */ public static function allDirectories($directory = null) { @@ -13850,8 +13772,8 @@ * Create a directory. * * @param string $path - * @return bool - * @static + * @return bool + * @static */ public static function makeDirectory($path) { @@ -13862,8 +13784,8 @@ * Recursively delete a directory. * * @param string $directory - * @return bool - * @static + * @return bool + * @static */ public static function deleteDirectory($directory) { @@ -13873,8 +13795,8 @@ /** * Flush the Flysystem cache. * - * @return void - * @static + * @return void + * @static */ public static function flushCache() { @@ -13884,8 +13806,8 @@ /** * Get the Flysystem driver. * - * @return \League\Flysystem\FilesystemInterface - * @static + * @return \League\Flysystem\FilesystemInterface + * @static */ public static function getDriver() { @@ -13896,8 +13818,8 @@ * Define a custom temporary URL builder callback. * * @param \Closure $callback - * @return void - * @static + * @return void + * @static */ public static function buildTemporaryUrlsUsing($callback) { @@ -13909,8 +13831,8 @@ * * @param string $name * @param object|callable $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -13921,9 +13843,9 @@ * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -13933,8 +13855,8 @@ * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -13943,8 +13865,8 @@ /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -13955,9 +13877,9 @@ * * @param string $method * @param array $parameters - * @return mixed + * @return mixed * @throws \BadMethodCallException - * @static + * @static */ public static function macroCall($method, $parameters) { @@ -13967,16 +13889,14 @@ } /** - * - * * @see \Illuminate\Routing\UrlGenerator */ class URL { /** * Get the full URL for the current request. * - * @return string - * @static + * @return string + * @static */ public static function full() { @@ -13986,8 +13906,8 @@ /** * Get the current URL for the request. * - * @return string - * @static + * @return string + * @static */ public static function current() { @@ -13998,8 +13918,8 @@ * Get the URL for the previous request. * * @param mixed $fallback - * @return string - * @static + * @return string + * @static */ public static function previous($fallback = false) { @@ -14012,8 +13932,8 @@ * @param string $path * @param mixed $extra * @param bool|null $secure - * @return string - * @static + * @return string + * @static */ public static function to($path, $extra = [], $secure = null) { @@ -14025,8 +13945,8 @@ * * @param string $path * @param array $parameters - * @return string - * @static + * @return string + * @static */ public static function secure($path, $parameters = []) { @@ -14038,8 +13958,8 @@ * * @param string $path * @param bool|null $secure - * @return string - * @static + * @return string + * @static */ public static function asset($path, $secure = null) { @@ -14050,8 +13970,8 @@ * Generate the URL to a secure asset. * * @param string $path - * @return string - * @static + * @return string + * @static */ public static function secureAsset($path) { @@ -14064,8 +13984,8 @@ * @param string $root * @param string $path * @param bool|null $secure - * @return string - * @static + * @return string + * @static */ public static function assetFrom($root, $path, $secure = null) { @@ -14076,8 +13996,8 @@ * Get the default scheme for a raw URL. * * @param bool|null $secure - * @return string - * @static + * @return string + * @static */ public static function formatScheme($secure = null) { @@ -14091,9 +14011,9 @@ * @param mixed $parameters * @param \DateTimeInterface|\DateInterval|int|null $expiration * @param bool $absolute - * @return string + * @return string * @throws \InvalidArgumentException - * @static + * @static */ public static function signedRoute($name, $parameters = [], $expiration = null, $absolute = true) { @@ -14107,8 +14027,8 @@ * @param \DateTimeInterface|\DateInterval|int $expiration * @param array $parameters * @param bool $absolute - * @return string - * @static + * @return string + * @static */ public static function temporarySignedRoute($name, $expiration, $parameters = [], $absolute = true) { @@ -14120,8 +14040,8 @@ * * @param \Illuminate\Http\Request $request * @param bool $absolute - * @return bool - * @static + * @return bool + * @static */ public static function hasValidSignature($request, $absolute = true) { @@ -14132,8 +14052,8 @@ * Determine if the given request has a valid signature for a relative URL. * * @param \Illuminate\Http\Request $request - * @return bool - * @static + * @return bool + * @static */ public static function hasValidRelativeSignature($request) { @@ -14145,8 +14065,8 @@ * * @param \Illuminate\Http\Request $request * @param bool $absolute - * @return bool - * @static + * @return bool + * @static */ public static function hasCorrectSignature($request, $absolute = true) { @@ -14157,8 +14077,8 @@ * Determine if the expires timestamp from the given request is not from the past. * * @param \Illuminate\Http\Request $request - * @return bool - * @static + * @return bool + * @static */ public static function signatureHasNotExpired($request) { @@ -14171,9 +14091,9 @@ * @param string $name * @param mixed $parameters * @param bool $absolute - * @return string + * @return string * @throws \Symfony\Component\Routing\Exception\RouteNotFoundException - * @static + * @static */ public static function route($name, $parameters = [], $absolute = true) { @@ -14186,9 +14106,9 @@ * @param \Illuminate\Routing\Route $route * @param mixed $parameters * @param bool $absolute - * @return string + * @return string * @throws \Illuminate\Routing\Exceptions\UrlGenerationException - * @static + * @static */ public static function toRoute($route, $parameters, $absolute) { @@ -14201,9 +14121,9 @@ * @param string|array $action * @param mixed $parameters * @param bool $absolute - * @return string + * @return string * @throws \InvalidArgumentException - * @static + * @static */ public static function action($action, $parameters = [], $absolute = true) { @@ -14214,8 +14134,8 @@ * Format the array of URL parameters. * * @param mixed|array $parameters - * @return array - * @static + * @return array + * @static */ public static function formatParameters($parameters) { @@ -14227,8 +14147,8 @@ * * @param string $scheme * @param string|null $root - * @return string - * @static + * @return string + * @static */ public static function formatRoot($scheme, $root = null) { @@ -14241,8 +14161,8 @@ * @param string $root * @param string $path * @param \Illuminate\Routing\Route|null $route - * @return string - * @static + * @return string + * @static */ public static function format($root, $path, $route = null) { @@ -14253,8 +14173,8 @@ * Determine if the given path is a valid URL. * * @param string $path - * @return bool - * @static + * @return bool + * @static */ public static function isValidUrl($path) { @@ -14265,8 +14185,8 @@ * Set the default named parameters used by the URL generator. * * @param array $defaults - * @return void - * @static + * @return void + * @static */ public static function defaults($defaults) { @@ -14276,8 +14196,8 @@ /** * Get the default named parameters used by the URL generator. * - * @return array - * @static + * @return array + * @static */ public static function getDefaultParameters() { @@ -14288,8 +14208,8 @@ * Force the scheme for URLs. * * @param string|null $scheme - * @return void - * @static + * @return void + * @static */ public static function forceScheme($scheme) { @@ -14300,8 +14220,8 @@ * Set the forced root URL. * * @param string|null $root - * @return void - * @static + * @return void + * @static */ public static function forceRootUrl($root) { @@ -14312,8 +14232,8 @@ * Set a callback to be used to format the host of generated URLs. * * @param \Closure $callback - * @return \Illuminate\Routing\UrlGenerator - * @static + * @return \Illuminate\Routing\UrlGenerator + * @static */ public static function formatHostUsing($callback) { @@ -14324,8 +14244,8 @@ * Set a callback to be used to format the path of generated URLs. * * @param \Closure $callback - * @return \Illuminate\Routing\UrlGenerator - * @static + * @return \Illuminate\Routing\UrlGenerator + * @static */ public static function formatPathUsing($callback) { @@ -14335,8 +14255,8 @@ /** * Get the path formatter being used by the URL generator. * - * @return \Closure - * @static + * @return \Closure + * @static */ public static function pathFormatter() { @@ -14346,8 +14266,8 @@ /** * Get the request instance. * - * @return \Illuminate\Http\Request - * @static + * @return \Illuminate\Http\Request + * @static */ public static function getRequest() { @@ -14358,8 +14278,8 @@ * Set the current request instance. * * @param \Illuminate\Http\Request $request - * @return void - * @static + * @return void + * @static */ public static function setRequest($request) { @@ -14370,8 +14290,8 @@ * Set the route collection. * * @param \Illuminate\Routing\RouteCollectionInterface $routes - * @return \Illuminate\Routing\UrlGenerator - * @static + * @return \Illuminate\Routing\UrlGenerator + * @static */ public static function setRoutes($routes) { @@ -14382,8 +14302,8 @@ * Set the session resolver for the generator. * * @param callable $sessionResolver - * @return \Illuminate\Routing\UrlGenerator - * @static + * @return \Illuminate\Routing\UrlGenerator + * @static */ public static function setSessionResolver($sessionResolver) { @@ -14394,8 +14314,8 @@ * Set the encryption key resolver. * * @param callable $keyResolver - * @return \Illuminate\Routing\UrlGenerator - * @static + * @return \Illuminate\Routing\UrlGenerator + * @static */ public static function setKeyResolver($keyResolver) { @@ -14406,8 +14326,8 @@ * Set the root controller namespace. * * @param string $rootNamespace - * @return \Illuminate\Routing\UrlGenerator - * @static + * @return \Illuminate\Routing\UrlGenerator + * @static */ public static function setRootControllerNamespace($rootNamespace) { @@ -14419,8 +14339,8 @@ * * @param string $name * @param object|callable $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -14431,9 +14351,9 @@ * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -14443,8 +14363,8 @@ * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -14453,8 +14373,8 @@ /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -14463,8 +14383,6 @@ } /** - * - * * @see \Illuminate\Validation\Factory */ class Validator { @@ -14475,8 +14393,8 @@ * @param array $rules * @param array $messages * @param array $customAttributes - * @return \Illuminate\Validation\Validator - * @static + * @return \Illuminate\Validation\Validator + * @static */ public static function make($data, $rules, $messages = [], $customAttributes = []) { @@ -14490,9 +14408,9 @@ * @param array $rules * @param array $messages * @param array $customAttributes - * @return array + * @return array * @throws \Illuminate\Validation\ValidationException - * @static + * @static */ public static function validate($data, $rules, $messages = [], $customAttributes = []) { @@ -14505,8 +14423,8 @@ * @param string $rule * @param \Closure|string $extension * @param string|null $message - * @return void - * @static + * @return void + * @static */ public static function extend($rule, $extension, $message = null) { @@ -14519,8 +14437,8 @@ * @param string $rule * @param \Closure|string $extension * @param string|null $message - * @return void - * @static + * @return void + * @static */ public static function extendImplicit($rule, $extension, $message = null) { @@ -14533,8 +14451,8 @@ * @param string $rule * @param \Closure|string $extension * @param string|null $message - * @return void - * @static + * @return void + * @static */ public static function extendDependent($rule, $extension, $message = null) { @@ -14546,8 +14464,8 @@ * * @param string $rule * @param \Closure|string $replacer - * @return void - * @static + * @return void + * @static */ public static function replacer($rule, $replacer) { @@ -14557,8 +14475,8 @@ /** * Indicate that unvalidated array keys should be excluded, even if the parent array was validated. * - * @return void - * @static + * @return void + * @static */ public static function excludeUnvalidatedArrayKeys() { @@ -14569,8 +14487,8 @@ * Set the Validator instance resolver. * * @param \Closure $resolver - * @return void - * @static + * @return void + * @static */ public static function resolver($resolver) { @@ -14580,8 +14498,8 @@ /** * Get the Translator implementation. * - * @return \Illuminate\Contracts\Translation\Translator - * @static + * @return \Illuminate\Contracts\Translation\Translator + * @static */ public static function getTranslator() { @@ -14591,8 +14509,8 @@ /** * Get the Presence Verifier implementation. * - * @return \Illuminate\Validation\PresenceVerifierInterface - * @static + * @return \Illuminate\Validation\PresenceVerifierInterface + * @static */ public static function getPresenceVerifier() { @@ -14603,8 +14521,8 @@ * Set the Presence Verifier implementation. * * @param \Illuminate\Validation\PresenceVerifierInterface $presenceVerifier - * @return void - * @static + * @return void + * @static */ public static function setPresenceVerifier($presenceVerifier) { @@ -14614,8 +14532,8 @@ /** * Get the container instance used by the validation factory. * - * @return \Illuminate\Contracts\Container\Container - * @static + * @return \Illuminate\Contracts\Container\Container + * @static */ public static function getContainer() { @@ -14626,8 +14544,8 @@ * Set the container instance used by the validation factory. * * @param \Illuminate\Contracts\Container\Container $container - * @return \Illuminate\Validation\Factory - * @static + * @return \Illuminate\Validation\Factory + * @static */ public static function setContainer($container) { @@ -14637,8 +14555,6 @@ } /** - * - * * @see \Illuminate\View\Factory */ class View { @@ -14648,8 +14564,8 @@ * @param string $path * @param \Illuminate\Contracts\Support\Arrayable|array $data * @param array $mergeData - * @return \Illuminate\Contracts\View\View - * @static + * @return \Illuminate\Contracts\View\View + * @static */ public static function file($path, $data = [], $mergeData = []) { @@ -14662,8 +14578,8 @@ * @param string $view * @param \Illuminate\Contracts\Support\Arrayable|array $data * @param array $mergeData - * @return \Illuminate\Contracts\View\View - * @static + * @return \Illuminate\Contracts\View\View + * @static */ public static function make($view, $data = [], $mergeData = []) { @@ -14676,9 +14592,9 @@ * @param array $views * @param \Illuminate\Contracts\Support\Arrayable|array $data * @param array $mergeData - * @return \Illuminate\Contracts\View\View + * @return \Illuminate\Contracts\View\View * @throws \InvalidArgumentException - * @static + * @static */ public static function first($views, $data = [], $mergeData = []) { @@ -14692,8 +14608,8 @@ * @param string $view * @param \Illuminate\Contracts\Support\Arrayable|array $data * @param array $mergeData - * @return string - * @static + * @return string + * @static */ public static function renderWhen($condition, $view, $data = [], $mergeData = []) { @@ -14707,8 +14623,8 @@ * @param string $view * @param \Illuminate\Contracts\Support\Arrayable|array $data * @param array $mergeData - * @return string - * @static + * @return string + * @static */ public static function renderUnless($condition, $view, $data = [], $mergeData = []) { @@ -14722,8 +14638,8 @@ * @param array $data * @param string $iterator * @param string $empty - * @return string - * @static + * @return string + * @static */ public static function renderEach($view, $data, $iterator, $empty = 'raw|') { @@ -14734,8 +14650,8 @@ * Determine if a given view exists. * * @param string $view - * @return bool - * @static + * @return bool + * @static */ public static function exists($view) { @@ -14746,9 +14662,9 @@ * Get the appropriate view engine for the given path. * * @param string $path - * @return \Illuminate\Contracts\View\Engine + * @return \Illuminate\Contracts\View\Engine * @throws \InvalidArgumentException - * @static + * @static */ public static function getEngineFromPath($path) { @@ -14760,8 +14676,8 @@ * * @param array|string $key * @param mixed|null $value - * @return mixed - * @static + * @return mixed + * @static */ public static function share($key, $value = null) { @@ -14771,8 +14687,8 @@ /** * Increment the rendering counter. * - * @return void - * @static + * @return void + * @static */ public static function incrementRender() { @@ -14782,8 +14698,8 @@ /** * Decrement the rendering counter. * - * @return void - * @static + * @return void + * @static */ public static function decrementRender() { @@ -14793,8 +14709,8 @@ /** * Check if there are no active render operations. * - * @return bool - * @static + * @return bool + * @static */ public static function doneRendering() { @@ -14805,8 +14721,8 @@ * Determine if the given once token has been rendered. * * @param string $id - * @return bool - * @static + * @return bool + * @static */ public static function hasRenderedOnce($id) { @@ -14817,8 +14733,8 @@ * Mark the given once token as having been rendered. * * @param string $id - * @return void - * @static + * @return void + * @static */ public static function markAsRenderedOnce($id) { @@ -14829,8 +14745,8 @@ * Add a location to the array of view locations. * * @param string $location - * @return void - * @static + * @return void + * @static */ public static function addLocation($location) { @@ -14842,8 +14758,8 @@ * * @param string $namespace * @param string|array $hints - * @return \Illuminate\View\Factory - * @static + * @return \Illuminate\View\Factory + * @static */ public static function addNamespace($namespace, $hints) { @@ -14855,8 +14771,8 @@ * * @param string $namespace * @param string|array $hints - * @return \Illuminate\View\Factory - * @static + * @return \Illuminate\View\Factory + * @static */ public static function prependNamespace($namespace, $hints) { @@ -14868,8 +14784,8 @@ * * @param string $namespace * @param string|array $hints - * @return \Illuminate\View\Factory - * @static + * @return \Illuminate\View\Factory + * @static */ public static function replaceNamespace($namespace, $hints) { @@ -14882,8 +14798,8 @@ * @param string $extension * @param string $engine * @param \Closure|null $resolver - * @return void - * @static + * @return void + * @static */ public static function addExtension($extension, $engine, $resolver = null) { @@ -14893,8 +14809,8 @@ /** * Flush all of the factory state like sections and stacks. * - * @return void - * @static + * @return void + * @static */ public static function flushState() { @@ -14904,8 +14820,8 @@ /** * Flush all of the section contents if done rendering. * - * @return void - * @static + * @return void + * @static */ public static function flushStateIfDoneRendering() { @@ -14915,8 +14831,8 @@ /** * Get the extension to engine bindings. * - * @return array - * @static + * @return array + * @static */ public static function getExtensions() { @@ -14926,8 +14842,8 @@ /** * Get the engine resolver instance. * - * @return \Illuminate\View\Engines\EngineResolver - * @static + * @return \Illuminate\View\Engines\EngineResolver + * @static */ public static function getEngineResolver() { @@ -14937,8 +14853,8 @@ /** * Get the view finder instance. * - * @return \Illuminate\View\ViewFinderInterface - * @static + * @return \Illuminate\View\ViewFinderInterface + * @static */ public static function getFinder() { @@ -14949,8 +14865,8 @@ * Set the view finder instance. * * @param \Illuminate\View\ViewFinderInterface $finder - * @return void - * @static + * @return void + * @static */ public static function setFinder($finder) { @@ -14960,8 +14876,8 @@ /** * Flush the cache of views located by the finder. * - * @return void - * @static + * @return void + * @static */ public static function flushFinderCache() { @@ -14971,8 +14887,8 @@ /** * Get the event dispatcher instance. * - * @return \Illuminate\Contracts\Events\Dispatcher - * @static + * @return \Illuminate\Contracts\Events\Dispatcher + * @static */ public static function getDispatcher() { @@ -14983,8 +14899,8 @@ * Set the event dispatcher instance. * * @param \Illuminate\Contracts\Events\Dispatcher $events - * @return void - * @static + * @return void + * @static */ public static function setDispatcher($events) { @@ -14994,8 +14910,8 @@ /** * Get the IoC container instance. * - * @return \Illuminate\Contracts\Container\Container - * @static + * @return \Illuminate\Contracts\Container\Container + * @static */ public static function getContainer() { @@ -15006,8 +14922,8 @@ * Set the IoC container instance. * * @param \Illuminate\Contracts\Container\Container $container - * @return void - * @static + * @return void + * @static */ public static function setContainer($container) { @@ -15019,8 +14935,8 @@ * * @param string $key * @param mixed $default - * @return mixed - * @static + * @return mixed + * @static */ public static function shared($key, $default = null) { @@ -15030,8 +14946,8 @@ /** * Get all of the shared data for the environment. * - * @return array - * @static + * @return array + * @static */ public static function getShared() { @@ -15043,8 +14959,8 @@ * * @param string $name * @param object|callable $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -15055,9 +14971,9 @@ * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -15067,8 +14983,8 @@ * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -15077,8 +14993,8 @@ /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -15089,8 +15005,8 @@ * * @param \Illuminate\Contracts\View\View|\Illuminate\Contracts\Support\Htmlable|\Closure|string $view * @param array $data - * @return void - * @static + * @return void + * @static */ public static function startComponent($view, $data = []) { @@ -15102,8 +15018,8 @@ * * @param array $names * @param array $data - * @return void - * @static + * @return void + * @static */ public static function startComponentFirst($names, $data = []) { @@ -15113,8 +15029,8 @@ /** * Render the current component. * - * @return string - * @static + * @return string + * @static */ public static function renderComponent() { @@ -15126,8 +15042,8 @@ * * @param string $key * @param mixed $default - * @return mixed|null - * @static + * @return mixed|null + * @static */ public static function getConsumableComponentData($key, $default = null) { @@ -15140,8 +15056,8 @@ * @param string $name * @param string|null $content * @param array $attributes - * @return void - * @static + * @return void + * @static */ public static function slot($name, $content = null, $attributes = []) { @@ -15151,8 +15067,8 @@ /** * Save the slot content for rendering. * - * @return void - * @static + * @return void + * @static */ public static function endSlot() { @@ -15164,8 +15080,8 @@ * * @param array|string $views * @param \Closure|string $callback - * @return array - * @static + * @return array + * @static */ public static function creator($views, $callback) { @@ -15176,8 +15092,8 @@ * Register multiple view composers via an array. * * @param array $composers - * @return array - * @static + * @return array + * @static */ public static function composers($composers) { @@ -15189,8 +15105,8 @@ * * @param array|string $views * @param \Closure|string $callback - * @return array - * @static + * @return array + * @static */ public static function composer($views, $callback) { @@ -15201,8 +15117,8 @@ * Call the composer for a given view. * * @param \Illuminate\Contracts\View\View $view - * @return void - * @static + * @return void + * @static */ public static function callComposer($view) { @@ -15213,8 +15129,8 @@ * Call the creator for a given view. * * @param \Illuminate\Contracts\View\View $view - * @return void - * @static + * @return void + * @static */ public static function callCreator($view) { @@ -15226,8 +15142,8 @@ * * @param string $section * @param string|null $content - * @return void - * @static + * @return void + * @static */ public static function startSection($section, $content = null) { @@ -15239,8 +15155,8 @@ * * @param string $section * @param string $content - * @return void - * @static + * @return void + * @static */ public static function inject($section, $content) { @@ -15250,8 +15166,8 @@ /** * Stop injecting content into a section and return its contents. * - * @return string - * @static + * @return string + * @static */ public static function yieldSection() { @@ -15262,9 +15178,9 @@ * Stop injecting content into a section. * * @param bool $overwrite - * @return string + * @return string * @throws \InvalidArgumentException - * @static + * @static */ public static function stopSection($overwrite = false) { @@ -15274,9 +15190,9 @@ /** * Stop injecting content into a section and append it. * - * @return string + * @return string * @throws \InvalidArgumentException - * @static + * @static */ public static function appendSection() { @@ -15288,8 +15204,8 @@ * * @param string $section * @param string $default - * @return string - * @static + * @return string + * @static */ public static function yieldContent($section, $default = '') { @@ -15300,8 +15216,8 @@ * Get the parent placeholder for the current request. * * @param string $section - * @return string - * @static + * @return string + * @static */ public static function parentPlaceholder($section = '') { @@ -15311,8 +15227,8 @@ * Check if section exists. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasSection($name) { @@ -15323,8 +15239,8 @@ * Check if section does not exist. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function sectionMissing($name) { @@ -15336,8 +15252,8 @@ * * @param string $name * @param string|null $default - * @return mixed - * @static + * @return mixed + * @static */ public static function getSection($name, $default = null) { @@ -15347,8 +15263,8 @@ /** * Get the entire array of sections. * - * @return array - * @static + * @return array + * @static */ public static function getSections() { @@ -15358,8 +15274,8 @@ /** * Flush all of the sections. * - * @return void - * @static + * @return void + * @static */ public static function flushSections() { @@ -15370,8 +15286,8 @@ * Add new loop to the stack. * * @param \Countable|array $data - * @return void - * @static + * @return void + * @static */ public static function addLoop($data) { @@ -15381,8 +15297,8 @@ /** * Increment the top loop's indices. * - * @return void - * @static + * @return void + * @static */ public static function incrementLoopIndices() { @@ -15392,8 +15308,8 @@ /** * Pop a loop from the top of the loop stack. * - * @return void - * @static + * @return void + * @static */ public static function popLoop() { @@ -15403,8 +15319,8 @@ /** * Get an instance of the last loop in the stack. * - * @return \stdClass|null - * @static + * @return \stdClass|null + * @static */ public static function getLastLoop() { @@ -15414,8 +15330,8 @@ /** * Get the entire loop stack. * - * @return array - * @static + * @return array + * @static */ public static function getLoopStack() { @@ -15427,8 +15343,8 @@ * * @param string $section * @param string $content - * @return void - * @static + * @return void + * @static */ public static function startPush($section, $content = '') { @@ -15438,9 +15354,9 @@ /** * Stop injecting content into a push section. * - * @return string + * @return string * @throws \InvalidArgumentException - * @static + * @static */ public static function stopPush() { @@ -15452,8 +15368,8 @@ * * @param string $section * @param string $content - * @return void - * @static + * @return void + * @static */ public static function startPrepend($section, $content = '') { @@ -15463,9 +15379,9 @@ /** * Stop prepending content into a push section. * - * @return string + * @return string * @throws \InvalidArgumentException - * @static + * @static */ public static function stopPrepend() { @@ -15477,8 +15393,8 @@ * * @param string $section * @param string $default - * @return string - * @static + * @return string + * @static */ public static function yieldPushContent($section, $default = '') { @@ -15488,8 +15404,8 @@ /** * Flush all of the stacks. * - * @return void - * @static + * @return void + * @static */ public static function flushStacks() { @@ -15500,8 +15416,8 @@ * Start a translation block. * * @param array $replacements - * @return void - * @static + * @return void + * @static */ public static function startTranslation($replacements = []) { @@ -15511,8 +15427,8 @@ /** * Render the current translation. * - * @return string - * @static + * @return string + * @static */ public static function renderTranslation() { @@ -15522,8 +15438,6 @@ } /** - * - * * @method static mixed filterFiles(mixed $files) * @see \Illuminate\Http\Request */ @@ -15531,8 +15445,8 @@ /** * Create a new Illuminate HTTP request from server variables. * - * @return static - * @static + * @return static + * @static */ public static function capture() { @@ -15541,8 +15455,8 @@ /** * Return the Request instance. * - * @return \Illuminate\Http\Request - * @static + * @return \Illuminate\Http\Request + * @static */ public static function instance() { @@ -15552,8 +15466,8 @@ /** * Get the request method. * - * @return string - * @static + * @return string + * @static */ public static function method() { @@ -15563,8 +15477,8 @@ /** * Get the root URL for the application. * - * @return string - * @static + * @return string + * @static */ public static function root() { @@ -15574,8 +15488,8 @@ /** * Get the URL (no query string) for the request. * - * @return string - * @static + * @return string + * @static */ public static function url() { @@ -15585,8 +15499,8 @@ /** * Get the full URL for the request. * - * @return string - * @static + * @return string + * @static */ public static function fullUrl() { @@ -15597,8 +15511,8 @@ * Get the full URL for the request with the added query string parameters. * * @param array $query - * @return string - * @static + * @return string + * @static */ public static function fullUrlWithQuery($query) { @@ -15609,8 +15523,8 @@ * Get the full URL for the request without the given query string parameters. * * @param array|string $query - * @return string - * @static + * @return string + * @static */ public static function fullUrlWithoutQuery($keys) { @@ -15620,8 +15534,8 @@ /** * Get the current path info for the request. * - * @return string - * @static + * @return string + * @static */ public static function path() { @@ -15631,8 +15545,8 @@ /** * Get the current decoded path info for the request. * - * @return string - * @static + * @return string + * @static */ public static function decodedPath() { @@ -15644,8 +15558,8 @@ * * @param int $index * @param string|null $default - * @return string|null - * @static + * @return string|null + * @static */ public static function segment($index, $default = null) { @@ -15655,8 +15569,8 @@ /** * Get all of the segments for the request path. * - * @return array - * @static + * @return array + * @static */ public static function segments() { @@ -15667,8 +15581,8 @@ * Determine if the current request URI matches a pattern. * * @param mixed $patterns - * @return bool - * @static + * @return bool + * @static */ public static function is(...$patterns) { @@ -15679,8 +15593,8 @@ * Determine if the route name matches a given pattern. * * @param mixed $patterns - * @return bool - * @static + * @return bool + * @static */ public static function routeIs(...$patterns) { @@ -15691,8 +15605,8 @@ * Determine if the current request URL and query string match a pattern. * * @param mixed $patterns - * @return bool - * @static + * @return bool + * @static */ public static function fullUrlIs(...$patterns) { @@ -15702,8 +15616,8 @@ /** * Determine if the request is the result of an AJAX call. * - * @return bool - * @static + * @return bool + * @static */ public static function ajax() { @@ -15713,8 +15627,8 @@ /** * Determine if the request is the result of a PJAX call. * - * @return bool - * @static + * @return bool + * @static */ public static function pjax() { @@ -15724,8 +15638,8 @@ /** * Determine if the request is the result of a prefetch call. * - * @return bool - * @static + * @return bool + * @static */ public static function prefetch() { @@ -15735,8 +15649,8 @@ /** * Determine if the request is over HTTPS. * - * @return bool - * @static + * @return bool + * @static */ public static function secure() { @@ -15746,8 +15660,8 @@ /** * Get the client IP address. * - * @return string|null - * @static + * @return string|null + * @static */ public static function ip() { @@ -15757,8 +15671,8 @@ /** * Get the client IP addresses. * - * @return array - * @static + * @return array + * @static */ public static function ips() { @@ -15768,8 +15682,8 @@ /** * Get the client user agent. * - * @return string|null - * @static + * @return string|null + * @static */ public static function userAgent() { @@ -15780,8 +15694,8 @@ * Merge new input into the current request's input array. * * @param array $input - * @return \Illuminate\Http\Request - * @static + * @return \Illuminate\Http\Request + * @static */ public static function merge($input) { @@ -15792,8 +15706,8 @@ * Merge new input into the request's input, but only when that key is missing from the request. * * @param array $input - * @return \Illuminate\Http\Request - * @static + * @return \Illuminate\Http\Request + * @static */ public static function mergeIfMissing($input) { @@ -15804,8 +15718,8 @@ * Replace the input for the current request. * * @param array $input - * @return \Illuminate\Http\Request - * @static + * @return \Illuminate\Http\Request + * @static */ public static function replace($input) { @@ -15819,8 +15733,8 @@ * * @param string $key * @param mixed $default - * @return mixed - * @static + * @return mixed + * @static */ public static function get($key, $default = null) { @@ -15832,8 +15746,8 @@ * * @param string|null $key * @param mixed $default - * @return \Symfony\Component\HttpFoundation\ParameterBag|mixed - * @static + * @return \Symfony\Component\HttpFoundation\ParameterBag|mixed + * @static */ public static function json($key = null, $default = null) { @@ -15845,8 +15759,8 @@ * * @param \Illuminate\Http\Request $from * @param \Illuminate\Http\Request|null $to - * @return static - * @static + * @return static + * @static */ public static function createFrom($from, $to = null) { @@ -15856,8 +15770,8 @@ * Create an Illuminate request from a Symfony instance. * * @param \Symfony\Component\HttpFoundation\Request $request - * @return static - * @static + * @return static + * @static */ public static function createFromBase($request) { @@ -15866,15 +15780,15 @@ /** * Clones a request and overrides some of its parameters. * - * @return static + * @return static * @param array|null $query The GET parameters * @param array|null $request The POST parameters * @param array|null $attributes The request attributes (parameters parsed from the PATH_INFO, ...) * @param array|null $cookies The COOKIE parameters * @param array|null $files The FILES parameters * @param array|null $server The SERVER parameters - * @return static - * @static + * @return static + * @static */ public static function duplicate($query = null, $request = null, $attributes = null, $cookies = null, $files = null, $server = null) { @@ -15884,9 +15798,9 @@ /** * Get the session associated with the request. * - * @return \Illuminate\Session\Store + * @return \Illuminate\Session\Store * @throws \RuntimeException - * @static + * @static */ public static function session() { @@ -15896,8 +15810,8 @@ /** * Get the session associated with the request. * - * @return \Illuminate\Session\Store|null - * @static + * @return \Illuminate\Session\Store|null + * @static */ public static function getSession() { @@ -15908,8 +15822,8 @@ * Set the session instance on the request. * * @param \Illuminate\Contracts\Session\Session $session - * @return void - * @static + * @return void + * @static */ public static function setLaravelSession($session) { @@ -15920,8 +15834,8 @@ * Get the user making the request. * * @param string|null $guard - * @return mixed - * @static + * @return mixed + * @static */ public static function user($guard = null) { @@ -15933,8 +15847,8 @@ * * @param string|null $param * @param mixed $default - * @return \Illuminate\Routing\Route|object|string|null - * @static + * @return \Illuminate\Routing\Route|object|string|null + * @static */ public static function route($param = null, $default = null) { @@ -15944,9 +15858,9 @@ /** * Get a unique fingerprint for the request / route / IP address. * - * @return string + * @return string * @throws \RuntimeException - * @static + * @static */ public static function fingerprint() { @@ -15957,8 +15871,8 @@ * Set the JSON payload for the request. * * @param \Symfony\Component\HttpFoundation\ParameterBag $json - * @return \Illuminate\Http\Request - * @static + * @return \Illuminate\Http\Request + * @static */ public static function setJson($json) { @@ -15968,8 +15882,8 @@ /** * Get the user resolver callback. * - * @return \Closure - * @static + * @return \Closure + * @static */ public static function getUserResolver() { @@ -15980,8 +15894,8 @@ * Set the user resolver callback. * * @param \Closure $callback - * @return \Illuminate\Http\Request - * @static + * @return \Illuminate\Http\Request + * @static */ public static function setUserResolver($callback) { @@ -15991,8 +15905,8 @@ /** * Get the route resolver callback. * - * @return \Closure - * @static + * @return \Closure + * @static */ public static function getRouteResolver() { @@ -16003,8 +15917,8 @@ * Set the route resolver callback. * * @param \Closure $callback - * @return \Illuminate\Http\Request - * @static + * @return \Illuminate\Http\Request + * @static */ public static function setRouteResolver($callback) { @@ -16014,8 +15928,8 @@ /** * Get all of the input and files for the request. * - * @return array - * @static + * @return array + * @static */ public static function toArray() { @@ -16026,8 +15940,8 @@ * Determine if the given offset exists. * * @param string $offset - * @return bool - * @static + * @return bool + * @static */ public static function offsetExists($offset) { @@ -16038,8 +15952,8 @@ * Get the value at the given offset. * * @param string $offset - * @return mixed - * @static + * @return mixed + * @static */ public static function offsetGet($offset) { @@ -16051,8 +15965,8 @@ * * @param string $offset * @param mixed $value - * @return void - * @static + * @return void + * @static */ public static function offsetSet($offset, $value) { @@ -16063,8 +15977,8 @@ * Remove the value at the given offset. * * @param string $offset - * @return void - * @static + * @return void + * @static */ public static function offsetUnset($offset) { @@ -16083,7 +15997,7 @@ * @param array $files The FILES parameters * @param array $server The SERVER parameters * @param string|resource|null $content The raw body data - * @static + * @static */ public static function initialize($query = [], $request = [], $attributes = [], $cookies = [], $files = [], $server = [], $content = null) { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16093,8 +16007,8 @@ /** * Creates a new request with values from PHP's super globals. * - * @return static - * @static + * @return static + * @static */ public static function createFromGlobals() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16113,9 +16027,9 @@ * @param array $files The request files ($_FILES) * @param array $server The server parameters ($_SERVER) * @param string|resource|null $content The raw body data - * @return static + * @return static * @throws BadRequestException When the URI is invalid - * @static + * @static */ public static function create($uri, $method = 'GET', $parameters = [], $cookies = [], $files = [], $server = [], $content = null) { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16128,7 +16042,7 @@ * to keep BC with an existing system. It should not be used for any * other purpose. * - * @static + * @static */ public static function setFactory($callable) { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16140,7 +16054,7 @@ * It overrides $_GET, $_POST, $_REQUEST, $_SERVER, $_COOKIE. * $_FILES is never overridden, see rfc1867 * - * @static + * @static */ public static function overrideGlobals() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16154,7 +16068,7 @@ * * @param array $proxies A list of trusted proxies, the string 'REMOTE_ADDR' will be replaced with $_SERVER['REMOTE_ADDR'] * @param int $trustedHeaderSet A bit field of Request::HEADER_*, to set which headers to trust from your proxies - * @static + * @static */ public static function setTrustedProxies($proxies, $trustedHeaderSet) { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16163,8 +16077,8 @@ /** * Gets the list of trusted proxies. * - * @return array - * @static + * @return array + * @static */ public static function getTrustedProxies() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16174,7 +16088,7 @@ * Gets the set of trusted headers from trusted proxies. * * @return int A bit field of Request::HEADER_* that defines which headers are trusted from your proxies - * @static + * @static */ public static function getTrustedHeaderSet() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16186,7 +16100,7 @@ * You should only list the hosts you manage using regexs. * * @param array $hostPatterns A list of trusted host patterns - * @static + * @static */ public static function setTrustedHosts($hostPatterns) { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16195,8 +16109,8 @@ /** * Gets the list of trusted host patterns. * - * @return array - * @static + * @return array + * @static */ public static function getTrustedHosts() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16208,8 +16122,8 @@ * It builds a normalized query string, where keys/value pairs are alphabetized, * have consistent escaping and unneeded delimiters are removed. * - * @return string - * @static + * @return string + * @static */ public static function normalizeQueryString($qs) { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16226,7 +16140,7 @@ * * The HTTP method can only be overridden when the real HTTP method is POST. * - * @static + * @static */ public static function enableHttpMethodParameterOverride() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16235,8 +16149,8 @@ /** * Checks whether support for the _method request parameter is enabled. * - * @return bool - * @static + * @return bool + * @static */ public static function getHttpMethodParameterOverride() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16246,8 +16160,8 @@ * Whether the request contains a Session which was started in one of the * previous requests. * - * @return bool - * @static + * @return bool + * @static */ public static function hasPreviousSession() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16262,8 +16176,8 @@ * is associated with a Session instance. * * @param bool $skipIfUninitialized When true, ignores factories injected by `setSessionFactory` - * @return bool - * @static + * @return bool + * @static */ public static function hasSession() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16271,9 +16185,7 @@ return $instance->hasSession(); } /** - * - * - * @static + * @static */ public static function setSession($session) { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16281,11 +16193,9 @@ return $instance->setSession($session); } /** - * - * - * @internal + * @internal * @param callable(): SessionInterface $factory - * @static + * @static */ public static function setSessionFactory($factory) { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16301,9 +16211,9 @@ * * Use this method carefully; you should use getClientIp() instead. * - * @return array + * @return array * @see getClientIp() - * @static + * @static */ public static function getClientIps() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16323,10 +16233,10 @@ * ("Client-Ip" for instance), configure it via the $trustedHeaderSet * argument of the Request::setTrustedProxies() method instead. * - * @return string|null + * @return string|null * @see getClientIps() * @see https://wikipedia.org/wiki/X-Forwarded-For - * @static + * @static */ public static function getClientIp() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16336,8 +16246,8 @@ /** * Returns current script name. * - * @return string - * @static + * @return string + * @static */ public static function getScriptName() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16357,7 +16267,7 @@ * * http://localhost/mysite/about?var=1 returns '/about' * * @return string The raw path (i.e. not urldecoded) - * @static + * @static */ public static function getPathInfo() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16375,7 +16285,7 @@ * * http://localhost/we%20b/index.php returns '/we%20b' * * @return string The raw path (i.e. not urldecoded) - * @static + * @static */ public static function getBasePath() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16391,7 +16301,7 @@ * script filename (e.g. index.php) if one exists. * * @return string The raw URL (i.e. not urldecoded) - * @static + * @static */ public static function getBaseUrl() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16401,8 +16311,8 @@ /** * Gets the request's scheme. * - * @return string - * @static + * @return string + * @static */ public static function getScheme() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16418,7 +16328,7 @@ * The "X-Forwarded-Port" header must contain the client port. * * @return int|string|null Can be a string if fetched from the server bag - * @static + * @static */ public static function getPort() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16428,8 +16338,8 @@ /** * Returns the user. * - * @return string|null - * @static + * @return string|null + * @static */ public static function getUser() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16439,8 +16349,8 @@ /** * Returns the password. * - * @return string|null - * @static + * @return string|null + * @static */ public static function getPassword() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16451,7 +16361,7 @@ * Gets the user info. * * @return string|null A user name if any and, optionally, scheme-specific information about how to gain authorization to access the server - * @static + * @static */ public static function getUserInfo() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16463,8 +16373,8 @@ * * The port name will be appended to the host if it's non-standard. * - * @return string - * @static + * @return string + * @static */ public static function getHttpHost() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16475,7 +16385,7 @@ * Returns the requested URI (path and query string). * * @return string The raw URI (i.e. not URI decoded) - * @static + * @static */ public static function getRequestUri() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16488,8 +16398,8 @@ * If the URL was called with basic authentication, the user * and the password are not added to the generated string. * - * @return string - * @static + * @return string + * @static */ public static function getSchemeAndHttpHost() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16499,9 +16409,9 @@ /** * Generates a normalized URI (URL) for the Request. * - * @return string + * @return string * @see getQueryString() - * @static + * @static */ public static function getUri() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16512,8 +16422,8 @@ * Generates a normalized URI for the given path. * * @param string $path A path to use instead of the current one - * @return string - * @static + * @return string + * @static */ public static function getUriForPath($path) { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16535,8 +16445,8 @@ * - "/a/b/c/other" -> "other" * - "/a/x/y" -> "../../x/y" * - * @return string - * @static + * @return string + * @static */ public static function getRelativeUriForPath($path) { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16549,8 +16459,8 @@ * It builds a normalized query string, where keys/value pairs are alphabetized * and have consistent escaping. * - * @return string|null - * @static + * @return string|null + * @static */ public static function getQueryString() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16565,8 +16475,8 @@ * * The "X-Forwarded-Proto" header must contain the protocol: "https" or "http". * - * @return bool - * @static + * @return bool + * @static */ public static function isSecure() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16581,9 +16491,9 @@ * * The "X-Forwarded-Host" header must contain the client host name. * - * @return string + * @return string * @throws SuspiciousOperationException when the host name is invalid or not trusted - * @static + * @static */ public static function getHost() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16593,7 +16503,7 @@ /** * Sets the request method. * - * @static + * @static */ public static function setMethod($method) { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16611,9 +16521,9 @@ * * The method is always an uppercased string. * - * @return string + * @return string * @see getRealMethod() - * @static + * @static */ public static function getMethod() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16623,9 +16533,9 @@ /** * Gets the "real" request method. * - * @return string + * @return string * @see getMethod() - * @static + * @static */ public static function getRealMethod() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16635,8 +16545,8 @@ /** * Gets the mime type associated with the format. * - * @return string|null - * @static + * @return string|null + * @static */ public static function getMimeType($format) { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16646,8 +16556,8 @@ /** * Gets the mime types associated with the format. * - * @return array - * @static + * @return array + * @static */ public static function getMimeTypes($format) { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16656,8 +16566,8 @@ /** * Gets the format associated with the mime type. * - * @return string|null - * @static + * @return string|null + * @static */ public static function getFormat($mimeType) { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16668,7 +16578,7 @@ * Associates a format with mime types. * * @param string|array $mimeTypes The associated mime types (the preferred one must be the first as it will be used as the content type) - * @static + * @static */ public static function setFormat($format, $mimeTypes) { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16685,8 +16595,8 @@ * * $default * * @see getPreferredFormat - * @return string|null - * @static + * @return string|null + * @static */ public static function getRequestFormat($default = 'html') { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16696,7 +16606,7 @@ /** * Sets the request format. * - * @static + * @static */ public static function setRequestFormat($format) { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16706,8 +16616,8 @@ /** * Gets the format associated with the request. * - * @return string|null - * @static + * @return string|null + * @static */ public static function getContentType() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16717,7 +16627,7 @@ /** * Sets the default locale. * - * @static + * @static */ public static function setDefaultLocale($locale) { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16727,8 +16637,8 @@ /** * Get the default locale. * - * @return string - * @static + * @return string + * @static */ public static function getDefaultLocale() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16738,7 +16648,7 @@ /** * Sets the locale. * - * @static + * @static */ public static function setLocale($locale) { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16748,8 +16658,8 @@ /** * Get the locale. * - * @return string - * @static + * @return string + * @static */ public static function getLocale() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16760,8 +16670,8 @@ * Checks if the request method is of specified type. * * @param string $method Uppercase request method (GET, POST etc) - * @return bool - * @static + * @return bool + * @static */ public static function isMethod($method) { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16772,8 +16682,8 @@ * Checks whether or not the method is safe. * * @see https://tools.ietf.org/html/rfc7231#section-4.2.1 - * @return bool - * @static + * @return bool + * @static */ public static function isMethodSafe() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16783,8 +16693,8 @@ /** * Checks whether or not the method is idempotent. * - * @return bool - * @static + * @return bool + * @static */ public static function isMethodIdempotent() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16795,8 +16705,8 @@ * Checks whether the method is cacheable or not. * * @see https://tools.ietf.org/html/rfc7231#section-4.2.3 - * @return bool - * @static + * @return bool + * @static */ public static function isMethodCacheable() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16812,8 +16722,8 @@ * if the proxy is trusted (see "setTrustedProxies()"), otherwise it returns * the latter (from the "SERVER_PROTOCOL" server parameter). * - * @return string|null - * @static + * @return string|null + * @static */ public static function getProtocolVersion() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16824,8 +16734,8 @@ * Returns the request body content. * * @param bool $asResource If true, a resource will be returned - * @return string|resource - * @static + * @return string|resource + * @static */ public static function getContent($asResource = false) { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16835,8 +16745,8 @@ /** * Gets the Etags. * - * @return array - * @static + * @return array + * @static */ public static function getETags() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16844,10 +16754,8 @@ return $instance->getETags(); } /** - * - * - * @return bool - * @static + * @return bool + * @static */ public static function isNoCache() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16862,7 +16770,7 @@ * Note that if you use this method, you should send the "Vary: Accept" header * in the response to prevent any issues with intermediary HTTP caches. * - * @static + * @static */ public static function getPreferredFormat($default = 'html') { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16873,8 +16781,8 @@ * Returns the preferred language. * * @param string[] $locales An array of ordered available locales - * @return string|null - * @static + * @return string|null + * @static */ public static function getPreferredLanguage($locales = null) { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16884,8 +16792,8 @@ /** * Gets a list of languages acceptable by the client browser ordered in the user browser preferences. * - * @return array - * @static + * @return array + * @static */ public static function getLanguages() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16895,8 +16803,8 @@ /** * Gets a list of charsets acceptable by the client browser in preferable order. * - * @return array - * @static + * @return array + * @static */ public static function getCharsets() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16906,8 +16814,8 @@ /** * Gets a list of encodings acceptable by the client browser in preferable order. * - * @return array - * @static + * @return array + * @static */ public static function getEncodings() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16917,8 +16825,8 @@ /** * Gets a list of content types acceptable by the client browser in preferable order. * - * @return array - * @static + * @return array + * @static */ public static function getAcceptableContentTypes() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16932,8 +16840,8 @@ * It is known to work with common JavaScript frameworks: * * @see https://wikipedia.org/wiki/List_of_Ajax_frameworks#JavaScript - * @return bool - * @static + * @return bool + * @static */ public static function isXmlHttpRequest() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16944,7 +16852,7 @@ * Checks whether the client browser prefers safe content or not according to RFC8674. * * @see https://tools.ietf.org/html/rfc8674 - * @static + * @static */ public static function preferSafeContent() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16957,8 +16865,8 @@ * This can be useful to determine whether or not to trust the * contents of a proxy-specific header. * - * @return bool - * @static + * @return bool + * @static */ public static function isFromTrustedProxy() { //Method inherited from \Symfony\Component\HttpFoundation\Request @@ -16968,8 +16876,8 @@ /** * Determine if the request is sending JSON. * - * @return bool - * @static + * @return bool + * @static */ public static function isJson() { @@ -16979,8 +16887,8 @@ /** * Determine if the current request probably expects a JSON response. * - * @return bool - * @static + * @return bool + * @static */ public static function expectsJson() { @@ -16990,8 +16898,8 @@ /** * Determine if the current request is asking for JSON. * - * @return bool - * @static + * @return bool + * @static */ public static function wantsJson() { @@ -17002,8 +16910,8 @@ * Determines whether the current requests accepts a given content type. * * @param string|array $contentTypes - * @return bool - * @static + * @return bool + * @static */ public static function accepts($contentTypes) { @@ -17014,8 +16922,8 @@ * Return the most suitable content type from the given array based on content negotiation. * * @param string|array $contentTypes - * @return string|null - * @static + * @return string|null + * @static */ public static function prefers($contentTypes) { @@ -17025,8 +16933,8 @@ /** * Determine if the current request accepts any content type. * - * @return bool - * @static + * @return bool + * @static */ public static function acceptsAnyContentType() { @@ -17036,8 +16944,8 @@ /** * Determines whether a request accepts JSON. * - * @return bool - * @static + * @return bool + * @static */ public static function acceptsJson() { @@ -17047,8 +16955,8 @@ /** * Determines whether a request accepts HTML. * - * @return bool - * @static + * @return bool + * @static */ public static function acceptsHtml() { @@ -17060,8 +16968,8 @@ * * @param string $actual * @param string $type - * @return bool - * @static + * @return bool + * @static */ public static function matchesType($actual, $type) { @@ -17071,8 +16979,8 @@ * Get the data format expected in the response. * * @param string $default - * @return string - * @static + * @return string + * @static */ public static function format($default = 'html') { @@ -17084,8 +16992,8 @@ * * @param string|null $key * @param string|array|null $default - * @return string|array|null - * @static + * @return string|array|null + * @static */ public static function old($key = null, $default = null) { @@ -17095,8 +17003,8 @@ /** * Flash the input for the current request to the session. * - * @return void - * @static + * @return void + * @static */ public static function flash() { @@ -17107,8 +17015,8 @@ * Flash only some of the input to the session. * * @param array|mixed $keys - * @return void - * @static + * @return void + * @static */ public static function flashOnly($keys) { @@ -17119,8 +17027,8 @@ * Flash only some of the input to the session. * * @param array|mixed $keys - * @return void - * @static + * @return void + * @static */ public static function flashExcept($keys) { @@ -17130,8 +17038,8 @@ /** * Flush all of the old input from the session. * - * @return void - * @static + * @return void + * @static */ public static function flush() { @@ -17143,8 +17051,8 @@ * * @param string|null $key * @param string|array|null $default - * @return string|array|null - * @static + * @return string|array|null + * @static */ public static function server($key = null, $default = null) { @@ -17155,8 +17063,8 @@ * Determine if a header is set on the request. * * @param string $key - * @return bool - * @static + * @return bool + * @static */ public static function hasHeader($key) { @@ -17168,8 +17076,8 @@ * * @param string|null $key * @param string|array|null $default - * @return string|array|null - * @static + * @return string|array|null + * @static */ public static function header($key = null, $default = null) { @@ -17179,8 +17087,8 @@ /** * Get the bearer token from the request headers. * - * @return string|null - * @static + * @return string|null + * @static */ public static function bearerToken() { @@ -17191,8 +17099,8 @@ * Determine if the request contains a given input item key. * * @param string|array $key - * @return bool - * @static + * @return bool + * @static */ public static function exists($key) { @@ -17203,8 +17111,8 @@ * Determine if the request contains a given input item key. * * @param string|array $key - * @return bool - * @static + * @return bool + * @static */ public static function has($key) { @@ -17215,8 +17123,8 @@ * Determine if the request contains any of the given inputs. * * @param string|array $keys - * @return bool - * @static + * @return bool + * @static */ public static function hasAny($keys) { @@ -17229,8 +17137,8 @@ * @param string $key * @param callable $callback * @param callable|null $default - * @return $this|mixed - * @static + * @return $this|mixed + * @static */ public static function whenHas($key, $callback, $default = null) { @@ -17241,8 +17149,8 @@ * Determine if the request contains a non-empty value for an input item. * * @param string|array $key - * @return bool - * @static + * @return bool + * @static */ public static function filled($key) { @@ -17253,8 +17161,8 @@ * Determine if the request contains an empty value for an input item. * * @param string|array $key - * @return bool - * @static + * @return bool + * @static */ public static function isNotFilled($key) { @@ -17265,8 +17173,8 @@ * Determine if the request contains a non-empty value for any of the given inputs. * * @param string|array $keys - * @return bool - * @static + * @return bool + * @static */ public static function anyFilled($keys) { @@ -17279,8 +17187,8 @@ * @param string $key * @param callable $callback * @param callable|null $default - * @return $this|mixed - * @static + * @return $this|mixed + * @static */ public static function whenFilled($key, $callback, $default = null) { @@ -17291,8 +17199,8 @@ * Determine if the request is missing a given input item key. * * @param string|array $key - * @return bool - * @static + * @return bool + * @static */ public static function missing($key) { @@ -17302,8 +17210,8 @@ /** * Get the keys for all of the input and files. * - * @return array - * @static + * @return array + * @static */ public static function keys() { @@ -17314,8 +17222,8 @@ * Get all of the input and files for the request. * * @param array|mixed|null $keys - * @return array - * @static + * @return array + * @static */ public static function all($keys = null) { @@ -17327,8 +17235,8 @@ * * @param string|null $key * @param mixed $default - * @return mixed - * @static + * @return mixed + * @static */ public static function input($key = null, $default = null) { @@ -17342,8 +17250,8 @@ * * @param string|null $key * @param bool $default - * @return bool - * @static + * @return bool + * @static */ public static function boolean($key = null, $default = false) { @@ -17356,8 +17264,8 @@ * @param string $key * @param string|null $format * @param string|null $tz - * @return \Illuminate\Support\Carbon|null - * @static + * @return \Illuminate\Support\Carbon|null + * @static */ public static function date($key, $format = null, $tz = null) { @@ -17368,8 +17276,8 @@ * Retrieve input from the request as a collection. * * @param array|string|null $key - * @return \Illuminate\Support\Collection - * @static + * @return \Illuminate\Support\Collection + * @static */ public static function collect($key = null) { @@ -17380,8 +17288,8 @@ * Get a subset containing the provided keys with values from the input data. * * @param array|mixed $keys - * @return array - * @static + * @return array + * @static */ public static function only($keys) { @@ -17392,8 +17300,8 @@ * Get all of the input except for a specified array of items. * * @param array|mixed $keys - * @return array - * @static + * @return array + * @static */ public static function except($keys) { @@ -17405,8 +17313,8 @@ * * @param string|null $key * @param string|array|null $default - * @return string|array|null - * @static + * @return string|array|null + * @static */ public static function query($key = null, $default = null) { @@ -17418,8 +17326,8 @@ * * @param string|null $key * @param string|array|null $default - * @return string|array|null - * @static + * @return string|array|null + * @static */ public static function post($key = null, $default = null) { @@ -17430,8 +17338,8 @@ * Determine if a cookie is set on the request. * * @param string $key - * @return bool - * @static + * @return bool + * @static */ public static function hasCookie($key) { @@ -17443,8 +17351,8 @@ * * @param string|null $key * @param string|array|null $default - * @return string|array|null - * @static + * @return string|array|null + * @static */ public static function cookie($key = null, $default = null) { @@ -17454,8 +17362,8 @@ /** * Get an array of all of the files on the request. * - * @return array - * @static + * @return array + * @static */ public static function allFiles() { @@ -17466,8 +17374,8 @@ * Determine if the uploaded data contains a file. * * @param string $key - * @return bool - * @static + * @return bool + * @static */ public static function hasFile($key) { @@ -17479,8 +17387,8 @@ * * @param string|null $key * @param mixed $default - * @return \Illuminate\Http\UploadedFile|\Illuminate\Http\UploadedFile[]|array|null - * @static + * @return \Illuminate\Http\UploadedFile|\Illuminate\Http\UploadedFile[]|array|null + * @static */ public static function file($key = null, $default = null) { @@ -17491,8 +17399,8 @@ * Dump the request items and end the script. * * @param mixed $keys - * @return void - * @static + * @return void + * @static */ public static function dd(...$keys) { @@ -17503,8 +17411,8 @@ * Dump the items. * * @param mixed $keys - * @return \Illuminate\Http\Request - * @static + * @return \Illuminate\Http\Request + * @static */ public static function dump($keys = []) { @@ -17516,8 +17424,8 @@ * * @param string $name * @param object|callable $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -17528,9 +17436,9 @@ * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -17540,8 +17448,8 @@ * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -17550,54 +17458,46 @@ /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { \Illuminate\Http\Request::flushMacros(); } /** - * - * * @see \Illuminate\Foundation\Providers\FoundationServiceProvider::registerRequestValidation() * @param array $rules * @param mixed $params - * @static + * @static */ public static function validate($rules, ...$params) { return \Illuminate\Http\Request::validate($rules, ...$params); } /** - * - * * @see \Illuminate\Foundation\Providers\FoundationServiceProvider::registerRequestValidation() * @param string $errorBag * @param array $rules * @param mixed $params - * @static + * @static */ public static function validateWithBag($errorBag, $rules, ...$params) { return \Illuminate\Http\Request::validateWithBag($errorBag, $rules, ...$params); } /** - * - * * @see \Illuminate\Foundation\Providers\FoundationServiceProvider::registerRequestSignatureValidation() * @param mixed $absolute - * @static + * @static */ public static function hasValidSignature($absolute = true) { return \Illuminate\Http\Request::hasValidSignature($absolute); } /** - * - * * @see \Illuminate\Foundation\Providers\FoundationServiceProvider::registerRequestSignatureValidation() - * @static + * @static */ public static function hasValidRelativeSignature() { @@ -17610,57 +17510,45 @@ namespace Illuminate\Support { /** - * - * */ class Arr { } /** - * - * */ class Str { } /** - * - * */ class Collection { /** - * - * * @see \Barryvdh\Debugbar\ServiceProvider::register() - * @static + * @static */ public static function debug() { return \Illuminate\Support\Collection::debug(); } /** - * - * * @see \Maatwebsite\Excel\Mixins\DownloadCollectionMixin::downloadExcel() * @param string $fileName * @param string|null $writerType * @param mixed $withHeadings * @param array $responseHeaders - * @static + * @static */ public static function downloadExcel($fileName, $writerType = null, $withHeadings = false, $responseHeaders = []) { return \Illuminate\Support\Collection::downloadExcel($fileName, $writerType, $withHeadings, $responseHeaders); } /** - * - * * @see \Maatwebsite\Excel\Mixins\StoreCollectionMixin::storeExcel() * @param string $filePath * @param string|null $disk * @param string|null $writerType * @param mixed $withHeadings - * @static + * @static */ public static function storeExcel($filePath, $disk = null, $writerType = null, $withHeadings = false) { @@ -17673,8 +17561,6 @@ namespace Collective\Html { /** - * - * * @see \Collective\Html\FormBuilder */ class FormFacade { @@ -17682,8 +17568,8 @@ * Open up a new HTML form. * * @param array $options - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function open($options = []) { @@ -17695,8 +17581,8 @@ * * @param mixed $model * @param array $options - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function model($model, $options = []) { @@ -17707,8 +17593,8 @@ * Set the model instance on the form builder. * * @param mixed $model - * @return void - * @static + * @return void + * @static */ public static function setModel($model) { @@ -17719,7 +17605,7 @@ * Get the current model instance on the form builder. * * @return mixed $model - * @static + * @static */ public static function getModel() { @@ -17729,8 +17615,8 @@ /** * Close the current form. * - * @return string - * @static + * @return string + * @static */ public static function close() { @@ -17740,8 +17626,8 @@ /** * Generate a hidden field with the current CSRF token. * - * @return string - * @static + * @return string + * @static */ public static function token() { @@ -17755,8 +17641,8 @@ * @param string $value * @param array $options * @param bool $escape_html - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function label($name, $value = null, $options = [], $escape_html = true) { @@ -17770,8 +17656,8 @@ * @param string $name * @param string $value * @param array $options - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function input($type, $name, $value = null, $options = []) { @@ -17784,8 +17670,8 @@ * @param string $name * @param string $value * @param array $options - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function text($name, $value = null, $options = []) { @@ -17797,8 +17683,8 @@ * * @param string $name * @param array $options - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function password($name, $options = []) { @@ -17811,8 +17697,8 @@ * @param string $name * @param string $value * @param array $options - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function range($name, $value = null, $options = []) { @@ -17825,8 +17711,8 @@ * @param string $name * @param string $value * @param array $options - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function hidden($name, $value = null, $options = []) { @@ -17839,8 +17725,8 @@ * @param string $name * @param string $value * @param array $options - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function search($name, $value = null, $options = []) { @@ -17853,8 +17739,8 @@ * @param string $name * @param string $value * @param array $options - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function email($name, $value = null, $options = []) { @@ -17867,8 +17753,8 @@ * @param string $name * @param string $value * @param array $options - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function tel($name, $value = null, $options = []) { @@ -17881,8 +17767,8 @@ * @param string $name * @param string $value * @param array $options - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function number($name, $value = null, $options = []) { @@ -17895,8 +17781,8 @@ * @param string $name * @param string $value * @param array $options - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function date($name, $value = null, $options = []) { @@ -17909,8 +17795,8 @@ * @param string $name * @param string $value * @param array $options - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function datetime($name, $value = null, $options = []) { @@ -17923,8 +17809,8 @@ * @param string $name * @param string $value * @param array $options - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function datetimeLocal($name, $value = null, $options = []) { @@ -17937,8 +17823,8 @@ * @param string $name * @param string $value * @param array $options - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function time($name, $value = null, $options = []) { @@ -17951,8 +17837,8 @@ * @param string $name * @param string $value * @param array $options - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function url($name, $value = null, $options = []) { @@ -17965,8 +17851,8 @@ * @param string $name * @param string $value * @param array $options - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function week($name, $value = null, $options = []) { @@ -17978,8 +17864,8 @@ * * @param string $name * @param array $options - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function file($name, $options = []) { @@ -17992,8 +17878,8 @@ * @param string $name * @param string $value * @param array $options - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function textarea($name, $value = null, $options = []) { @@ -18009,8 +17895,8 @@ * @param array $selectAttributes * @param array $optionsAttributes * @param array $optgroupsAttributes - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function select($name, $list = [], $selected = null, $selectAttributes = [], $optionsAttributes = [], $optgroupsAttributes = []) { @@ -18025,8 +17911,8 @@ * @param string $end * @param string $selected * @param array $options - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function selectRange($name, $begin, $end, $selected = null, $options = []) { @@ -18041,8 +17927,8 @@ * @param string $end * @param string $selected * @param array $options - * @return mixed - * @static + * @return mixed + * @static */ public static function selectYear() { @@ -18056,8 +17942,8 @@ * @param string $selected * @param array $options * @param string $format - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function selectMonth($name, $selected = null, $options = [], $format = '%B') { @@ -18072,8 +17958,8 @@ * @param string $selected * @param array $attributes * @param array $optgroupAttributes - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function getSelectOption($display, $value, $selected, $attributes = [], $optgroupAttributes = []) { @@ -18087,8 +17973,8 @@ * @param mixed $value * @param bool $checked * @param array $options - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function checkbox($name, $value = 1, $checked = null, $options = []) { @@ -18102,8 +17988,8 @@ * @param mixed $value * @param bool $checked * @param array $options - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function radio($name, $value = null, $checked = null, $options = []) { @@ -18115,8 +18001,8 @@ * * @param string $value * @param array $attributes - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function reset($value, $attributes = []) { @@ -18129,8 +18015,8 @@ * @param string $url * @param string $name * @param array $attributes - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function image($url, $name = null, $attributes = []) { @@ -18143,8 +18029,8 @@ * @param string $name * @param string $value * @param array $options - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function month($name, $value = null, $options = []) { @@ -18157,8 +18043,8 @@ * @param string $name * @param string $value * @param array $options - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function color($name, $value = null, $options = []) { @@ -18170,8 +18056,8 @@ * * @param string $value * @param array $options - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function submit($value = null, $options = []) { @@ -18183,8 +18069,8 @@ * * @param string $value * @param array $options - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function button($value = null, $options = []) { @@ -18196,8 +18082,8 @@ * * @param string $id * @param array $list - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function datalist($id, $list = []) { @@ -18209,8 +18095,8 @@ * * @param string $name * @param array $attributes - * @return string - * @static + * @return string + * @static */ public static function getIdAttribute($name, $attributes) { @@ -18222,8 +18108,8 @@ * * @param string $name * @param string $value - * @return mixed - * @static + * @return mixed + * @static */ public static function getValueAttribute($name, $value = null) { @@ -18234,7 +18120,7 @@ * Take Request in fill process * * @param bool $consider - * @static + * @static */ public static function considerRequest($consider = true) { @@ -18245,8 +18131,8 @@ * Get a value from the session's old input. * * @param string $name - * @return mixed - * @static + * @return mixed + * @static */ public static function old($name) { @@ -18256,8 +18142,8 @@ /** * Determine if the old input is empty. * - * @return bool - * @static + * @return bool + * @static */ public static function oldInputIsEmpty() { @@ -18268,7 +18154,7 @@ * Get the session store implementation. * * @return \Illuminate\Contracts\Session\Session $session - * @static + * @static */ public static function getSessionStore() { @@ -18279,8 +18165,8 @@ * Set the session store implementation. * * @param \Illuminate\Contracts\Session\Session $session - * @return \Collective\Html\FormBuilder - * @static + * @return \Collective\Html\FormBuilder + * @static */ public static function setSessionStore($session) { @@ -18292,8 +18178,8 @@ * * @param string $name * @param object|callable $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -18304,9 +18190,9 @@ * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -18316,8 +18202,8 @@ * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -18326,8 +18212,8 @@ /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -18338,9 +18224,9 @@ * * @param string $method * @param array $parameters - * @return mixed + * @return mixed * @throws \BadMethodCallException - * @static + * @static */ public static function macroCall($method, $parameters) { @@ -18353,8 +18239,8 @@ * @param $name * @param $view * @param array $signature - * @return void - * @static + * @return void + * @static */ public static function component($name, $view, $signature) { @@ -18364,8 +18250,8 @@ * Check if a component is registered. * * @param $name - * @return bool - * @static + * @return bool + * @static */ public static function hasComponent($name) { @@ -18376,9 +18262,9 @@ * * @param string $method * @param array $parameters - * @return \Illuminate\Contracts\View\View|mixed + * @return \Illuminate\Contracts\View\View|mixed * @throws \BadMethodCallException - * @static + * @static */ public static function componentCall($method, $parameters) { @@ -18388,8 +18274,6 @@ } /** - * - * * @see \Collective\Html\HtmlBuilder */ class HtmlFacade { @@ -18397,8 +18281,8 @@ * Convert an HTML string to entities. * * @param string $value - * @return string - * @static + * @return string + * @static */ public static function entities($value) { @@ -18409,8 +18293,8 @@ * Convert entities to HTML characters. * * @param string $value - * @return string - * @static + * @return string + * @static */ public static function decode($value) { @@ -18423,8 +18307,8 @@ * @param string $url * @param array $attributes * @param bool $secure - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function script($url, $attributes = [], $secure = null) { @@ -18437,8 +18321,8 @@ * @param string $url * @param array $attributes * @param bool $secure - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function style($url, $attributes = [], $secure = null) { @@ -18452,8 +18336,8 @@ * @param string $alt * @param array $attributes * @param bool $secure - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function image($url, $alt = null, $attributes = [], $secure = null) { @@ -18466,8 +18350,8 @@ * @param string $url * @param array $attributes * @param bool $secure - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function favicon($url, $attributes = [], $secure = null) { @@ -18482,8 +18366,8 @@ * @param array $attributes * @param bool $secure * @param bool $escape - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function link($url, $title = null, $attributes = [], $secure = null, $escape = true) { @@ -18497,8 +18381,8 @@ * @param string $title * @param array $attributes * @param bool $escape - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function secureLink($url, $title = null, $attributes = [], $escape = true) { @@ -18513,8 +18397,8 @@ * @param array $attributes * @param bool $secure * @param bool $escape - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function linkAsset($url, $title = null, $attributes = [], $secure = null, $escape = true) { @@ -18528,8 +18412,8 @@ * @param string $title * @param array $attributes * @param bool $escape - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function linkSecureAsset($url, $title = null, $attributes = [], $escape = true) { @@ -18545,8 +18429,8 @@ * @param array $attributes * @param bool $secure * @param bool $escape - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function linkRoute($name, $title = null, $parameters = [], $attributes = [], $secure = null, $escape = true) { @@ -18562,8 +18446,8 @@ * @param array $attributes * @param bool $secure * @param bool $escape - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function linkAction($action, $title = null, $parameters = [], $attributes = [], $secure = null, $escape = true) { @@ -18577,8 +18461,8 @@ * @param string $title * @param array $attributes * @param bool $escape - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function mailto($email, $title = null, $attributes = [], $escape = true) { @@ -18589,8 +18473,8 @@ * Obfuscate an e-mail address to prevent spam-bots from sniffing it. * * @param string $email - * @return string - * @static + * @return string + * @static */ public static function email($email) { @@ -18601,8 +18485,8 @@ * Generates non-breaking space entities based on number supplied. * * @param int $num - * @return string - * @static + * @return string + * @static */ public static function nbsp($num = 1) { @@ -18614,8 +18498,8 @@ * * @param array $list * @param array $attributes - * @return \Illuminate\Support\HtmlString|string - * @static + * @return \Illuminate\Support\HtmlString|string + * @static */ public static function ol($list, $attributes = []) { @@ -18627,8 +18511,8 @@ * * @param array $list * @param array $attributes - * @return \Illuminate\Support\HtmlString|string - * @static + * @return \Illuminate\Support\HtmlString|string + * @static */ public static function ul($list, $attributes = []) { @@ -18640,8 +18524,8 @@ * * @param array $list * @param array $attributes - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function dl($list, $attributes = []) { @@ -18652,8 +18536,8 @@ * Build an HTML attribute string from an array. * * @param array $attributes - * @return string - * @static + * @return string + * @static */ public static function attributes($attributes) { @@ -18664,8 +18548,8 @@ * Obfuscate a string to prevent spam-bots from sniffing it. * * @param string $value - * @return string - * @static + * @return string + * @static */ public static function obfuscate($value) { @@ -18678,8 +18562,8 @@ * @param string $name * @param string $content * @param array $attributes - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function meta($name, $content, $attributes = []) { @@ -18692,8 +18576,8 @@ * @param string $tag * @param mixed $content * @param array $attributes - * @return \Illuminate\Support\HtmlString - * @static + * @return \Illuminate\Support\HtmlString + * @static */ public static function tag($tag, $content, $attributes = []) { @@ -18705,8 +18589,8 @@ * * @param string $name * @param object|callable $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -18717,9 +18601,9 @@ * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -18729,8 +18613,8 @@ * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -18739,8 +18623,8 @@ /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -18751,9 +18635,9 @@ * * @param string $method * @param array $parameters - * @return mixed + * @return mixed * @throws \BadMethodCallException - * @static + * @static */ public static function macroCall($method, $parameters) { @@ -18766,8 +18650,8 @@ * @param $name * @param $view * @param array $signature - * @return void - * @static + * @return void + * @static */ public static function component($name, $view, $signature) { @@ -18777,8 +18661,8 @@ * Check if a component is registered. * * @param $name - * @return bool - * @static + * @return bool + * @static */ public static function hasComponent($name) { @@ -18789,9 +18673,9 @@ * * @param string $method * @param array $parameters - * @return \Illuminate\Contracts\View\View|mixed + * @return \Illuminate\Contracts\View\View|mixed * @throws \BadMethodCallException - * @static + * @static */ public static function componentCall($method, $parameters) { @@ -18805,16 +18689,14 @@ namespace Intervention\Image\Facades { /** - * - * */ class Image { /** * Overrides configuration settings * * @param array $config - * @return self - * @static + * @return self + * @static */ public static function configure($config = []) { @@ -18825,8 +18707,8 @@ * Initiates an Image instance from different input types * * @param mixed $data - * @return \Intervention\Image\Image - * @static + * @return \Intervention\Image\Image + * @static */ public static function make($data) { @@ -18839,8 +18721,8 @@ * @param int $width * @param int $height * @param mixed $background - * @return \Intervention\Image\Image - * @static + * @return \Intervention\Image\Image + * @static */ public static function canvas($width, $height, $background = null) { @@ -18854,8 +18736,8 @@ * @param \Closure $callback * @param int $lifetime * @param boolean $returnObj - * @return \Image - * @static + * @return \Image + * @static */ public static function cache($callback, $lifetime = null, $returnObj = false) { @@ -19364,8 +19246,6 @@ namespace Jenssegers\Date { /** - * - * */ class Date { @@ -19375,8 +19255,6 @@ namespace App\Helper { /** - * - * */ class HTMLHelper { @@ -19386,8 +19264,6 @@ namespace App\Services { /** - * - * */ class Util { @@ -19397,21 +19273,17 @@ namespace Maatwebsite\Excel\Facades { /** - * - * */ class Excel { /** - * - * * @param object $export * @param string|null $fileName * @param string $writerType * @param array $headers - * @return \Symfony\Component\HttpFoundation\BinaryFileResponse + * @return \Symfony\Component\HttpFoundation\BinaryFileResponse * @throws \PhpOffice\PhpSpreadsheet\Exception * @throws \PhpOffice\PhpSpreadsheet\Writer\Exception - * @static + * @static */ public static function download($export, $fileName, $writerType = null, $headers = []) { @@ -19419,18 +19291,16 @@ return $instance->download($export, $fileName, $writerType, $headers); } /** - * - * * @param string|null $disk Fallback for usage with named properties * @param object $export * @param string $filePath * @param string|null $diskName * @param string $writerType * @param mixed $diskOptions - * @return bool + * @return bool * @throws \PhpOffice\PhpSpreadsheet\Exception * @throws \PhpOffice\PhpSpreadsheet\Writer\Exception - * @static + * @static */ public static function store($export, $filePath, $diskName = null, $writerType = null, $diskOptions = [], $disk = null) { @@ -19438,15 +19308,13 @@ return $instance->store($export, $filePath, $diskName, $writerType, $diskOptions, $disk); } /** - * - * * @param object $export * @param string $filePath * @param string|null $disk * @param string $writerType * @param mixed $diskOptions - * @return \Illuminate\Foundation\Bus\PendingDispatch - * @static + * @return \Illuminate\Foundation\Bus\PendingDispatch + * @static */ public static function queue($export, $filePath, $disk = null, $writerType = null, $diskOptions = []) { @@ -19454,12 +19322,10 @@ return $instance->queue($export, $filePath, $disk, $writerType, $diskOptions); } /** - * - * * @param object $export * @param string $writerType - * @return string - * @static + * @return string + * @static */ public static function raw($export, $writerType) { @@ -19467,14 +19333,12 @@ return $instance->raw($export, $writerType); } /** - * - * * @param object $import * @param string|\Symfony\Component\HttpFoundation\File\UploadedFile $filePath * @param string|null $disk * @param string|null $readerType - * @return \Maatwebsite\Excel\Reader|\Illuminate\Foundation\Bus\PendingDispatch - * @static + * @return \Maatwebsite\Excel\Reader|\Illuminate\Foundation\Bus\PendingDispatch + * @static */ public static function import($import, $filePath, $disk = null, $readerType = null) { @@ -19482,14 +19346,12 @@ return $instance->import($import, $filePath, $disk, $readerType); } /** - * - * * @param object $import * @param string|\Symfony\Component\HttpFoundation\File\UploadedFile $filePath * @param string|null $disk * @param string|null $readerType - * @return array - * @static + * @return array + * @static */ public static function toArray($import, $filePath, $disk = null, $readerType = null) { @@ -19497,14 +19359,12 @@ return $instance->toArray($import, $filePath, $disk, $readerType); } /** - * - * * @param object $import * @param string|\Symfony\Component\HttpFoundation\File\UploadedFile $filePath * @param string|null $disk * @param string|null $readerType - * @return \Illuminate\Support\Collection - * @static + * @return \Illuminate\Support\Collection + * @static */ public static function toCollection($import, $filePath, $disk = null, $readerType = null) { @@ -19512,14 +19372,12 @@ return $instance->toCollection($import, $filePath, $disk, $readerType); } /** - * - * * @param \Illuminate\Contracts\Queue\ShouldQueue $import * @param string|\Symfony\Component\HttpFoundation\File\UploadedFile $filePath * @param string|null $disk * @param string $readerType - * @return \Illuminate\Foundation\Bus\PendingDispatch - * @static + * @return \Illuminate\Foundation\Bus\PendingDispatch + * @static */ public static function queueImport($import, $filePath, $disk = null, $readerType = null) { @@ -19531,8 +19389,8 @@ * * @param string $name * @param object|callable $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -19543,9 +19401,9 @@ * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -19555,8 +19413,8 @@ * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -19565,20 +19423,18 @@ /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { \Maatwebsite\Excel\Excel::flushMacros(); } /** - * - * * @param string $concern * @param callable $handler * @param string $event - * @static + * @static */ public static function extend($concern, $handler, $event = 'Maatwebsite\\Excel\\Events\\BeforeWriting') { @@ -19588,8 +19444,8 @@ * When asserting downloaded, stored, queued or imported, use regular expression * to look for a matching file path. * - * @return void - * @static + * @return void + * @static */ public static function matchByRegex() { @@ -19600,8 +19456,8 @@ * When asserting downloaded, stored, queued or imported, use regular string * comparison for matching file path. * - * @return void - * @static + * @return void + * @static */ public static function doNotMatchByRegex() { @@ -19609,11 +19465,9 @@ $instance->doNotMatchByRegex(); } /** - * - * * @param string $fileName * @param callable|null $callback - * @static + * @static */ public static function assertDownloaded($fileName, $callback = null) { @@ -19621,12 +19475,10 @@ return $instance->assertDownloaded($fileName, $callback); } /** - * - * * @param string $filePath * @param string|callable|null $disk * @param callable|null $callback - * @static + * @static */ public static function assertStored($filePath, $disk = null, $callback = null) { @@ -19634,12 +19486,10 @@ return $instance->assertStored($filePath, $disk, $callback); } /** - * - * * @param string $filePath * @param string|callable|null $disk * @param callable|null $callback - * @static + * @static */ public static function assertQueued($filePath, $disk = null, $callback = null) { @@ -19647,9 +19497,7 @@ return $instance->assertQueued($filePath, $disk, $callback); } /** - * - * - * @static + * @static */ public static function assertQueuedWithChain($chain) { @@ -19657,11 +19505,9 @@ return $instance->assertQueuedWithChain($chain); } /** - * - * * @param string $classname * @param callable|null $callback - * @static + * @static */ public static function assertExportedInRaw($classname, $callback = null) { @@ -19669,12 +19515,10 @@ return $instance->assertExportedInRaw($classname, $callback); } /** - * - * * @param string $filePath * @param string|callable|null $disk * @param callable|null $callback - * @static + * @static */ public static function assertImported($filePath, $disk = null, $callback = null) { @@ -19688,8 +19532,6 @@ namespace Yajra\DataTables\Facades { /** - * - * * @mixin \Yajra\DataTables\DataTables * @see \Yajra\DataTables\DataTables */ @@ -19700,9 +19542,9 @@ * Alias of make for backward compatibility. * * @param mixed $source - * @return mixed + * @return mixed * @throws \Exception - * @static + * @static */ public static function of($source) { @@ -19712,9 +19554,9 @@ * Make a DataTable instance from source. * * @param mixed $source - * @return mixed + * @return mixed * @throws \Exception - * @static + * @static */ public static function make($source) { @@ -19723,8 +19565,8 @@ /** * Get request object. * - * @return \Yajra\DataTables\Utilities\Request - * @static + * @return \Yajra\DataTables\Utilities\Request + * @static */ public static function getRequest() { @@ -19734,8 +19576,8 @@ /** * Get config instance. * - * @return \Yajra\DataTables\Utilities\Config - * @static + * @return \Yajra\DataTables\Utilities\Config + * @static */ public static function getConfig() { @@ -19743,12 +19585,10 @@ return $instance->getConfig(); } /** - * - * * @deprecated Please use query() instead, this method will be removed in a next version. * @param $builder - * @return \Yajra\DataTables\QueryDataTable - * @static + * @return \Yajra\DataTables\QueryDataTable + * @static */ public static function queryBuilder($builder) { @@ -19759,8 +19599,8 @@ * DataTables using Query. * * @param \Illuminate\Database\Query\Builder|mixed $builder - * @return \Yajra\DataTables\QueryDataTable|\Yajra\DataTables\DataTableAbstract - * @static + * @return \Yajra\DataTables\QueryDataTable|\Yajra\DataTables\DataTableAbstract + * @static */ public static function query($builder) { @@ -19771,8 +19611,8 @@ * DataTables using Eloquent Builder. * * @param \Illuminate\Database\Eloquent\Builder|mixed $builder - * @return \Yajra\DataTables\EloquentDataTable|\Yajra\DataTables\DataTableAbstract - * @static + * @return \Yajra\DataTables\EloquentDataTable|\Yajra\DataTables\DataTableAbstract + * @static */ public static function eloquent($builder) { @@ -19783,8 +19623,8 @@ * DataTables using Collection. * * @param \Illuminate\Support\Collection|array $collection - * @return \Yajra\DataTables\CollectionDataTable|\Yajra\DataTables\DataTableAbstract - * @static + * @return \Yajra\DataTables\CollectionDataTable|\Yajra\DataTables\DataTableAbstract + * @static */ public static function collection($collection) { @@ -19795,8 +19635,8 @@ * DataTables using Collection. * * @param \Illuminate\Http\Resources\Json\AnonymousResourceCollection|array $collection - * @return \Yajra\DataTables\ApiResourceDataTable|\Yajra\DataTables\DataTableAbstract - * @static + * @return \Yajra\DataTables\ApiResourceDataTable|\Yajra\DataTables\DataTableAbstract + * @static */ public static function resource($resource) { @@ -19806,9 +19646,9 @@ /** * Get html builder instance. * - * @return \Yajra\DataTables\Html\Builder + * @return \Yajra\DataTables\Html\Builder * @throws \Exception - * @static + * @static */ public static function getHtmlBuilder() { @@ -19820,8 +19660,8 @@ * * @param string $name * @param object|callable $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -19832,9 +19672,9 @@ * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -19844,8 +19684,8 @@ * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -19854,8 +19694,8 @@ /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -19868,8 +19708,6 @@ namespace Barryvdh\DomPDF\Facade { /** - * - * * @method static BasePDF setBaseHost(string $baseHost) * @method static BasePDF setBasePath(string $basePath) * @method static BasePDF setCanvas(\Dompdf\Canvas $canvas) @@ -19887,7 +19725,7 @@ /** * Get the DomPDF instance * - * @static + * @static */ public static function getDomPDF() { @@ -19897,7 +19735,7 @@ /** * Show or hide warnings * - * @static + * @static */ public static function setWarnings($warnings) { @@ -19908,7 +19746,7 @@ * Load a HTML string * * @param string|null $encoding Not used yet - * @static + * @static */ public static function loadHTML($string, $encoding = null) { @@ -19918,7 +19756,7 @@ /** * Load a HTML file * - * @static + * @static */ public static function loadFile($file) { @@ -19929,7 +19767,7 @@ * Add metadata info * * @param array $info - * @static + * @static */ public static function addInfo($info) { @@ -19942,7 +19780,7 @@ * @param array $data * @param array $mergeData * @param string|null $encoding Not used yet - * @static + * @static */ public static function loadView($view, $data = [], $mergeData = [], $encoding = null) { @@ -19954,7 +19792,7 @@ * * @param array|string $attribute * @param null|mixed $value - * @static + * @static */ public static function setOption($attribute, $value = null) { @@ -19965,7 +19803,7 @@ * Replace all the Options from DomPDF * * @param array $options - * @static + * @static */ public static function setOptions($options, $mergeWithDefaults = false) { @@ -19982,7 +19820,7 @@ * * @param array $options * @return string The rendered PDF as string - * @static + * @static */ public static function output($options = []) { @@ -19992,7 +19830,7 @@ /** * Save the PDF to a file * - * @static + * @static */ public static function save($filename, $disk = null) { @@ -20002,7 +19840,7 @@ /** * Make the PDF downloadable by the user * - * @static + * @static */ public static function download($filename = 'document.pdf') { @@ -20012,7 +19850,7 @@ /** * Return a response with the PDF to show in the browser * - * @static + * @static */ public static function stream($filename = 'document.pdf') { @@ -20022,7 +19860,7 @@ /** * Render the PDF * - * @static + * @static */ public static function render() { @@ -20030,10 +19868,8 @@ return $instance->render(); } /** - * - * * @param array $pc - * @static + * @static */ public static function setEncryption($password, $ownerpassword = '', $pc = []) { @@ -20043,8 +19879,6 @@ } /** - * - * * @method static BasePDF setBaseHost(string $baseHost) * @method static BasePDF setBasePath(string $basePath) * @method static BasePDF setCanvas(\Dompdf\Canvas $canvas) @@ -20062,7 +19896,7 @@ /** * Get the DomPDF instance * - * @static + * @static */ public static function getDomPDF() { @@ -20072,7 +19906,7 @@ /** * Show or hide warnings * - * @static + * @static */ public static function setWarnings($warnings) { @@ -20083,7 +19917,7 @@ * Load a HTML string * * @param string|null $encoding Not used yet - * @static + * @static */ public static function loadHTML($string, $encoding = null) { @@ -20093,7 +19927,7 @@ /** * Load a HTML file * - * @static + * @static */ public static function loadFile($file) { @@ -20104,7 +19938,7 @@ * Add metadata info * * @param array $info - * @static + * @static */ public static function addInfo($info) { @@ -20117,7 +19951,7 @@ * @param array $data * @param array $mergeData * @param string|null $encoding Not used yet - * @static + * @static */ public static function loadView($view, $data = [], $mergeData = [], $encoding = null) { @@ -20129,7 +19963,7 @@ * * @param array|string $attribute * @param null|mixed $value - * @static + * @static */ public static function setOption($attribute, $value = null) { @@ -20140,7 +19974,7 @@ * Replace all the Options from DomPDF * * @param array $options - * @static + * @static */ public static function setOptions($options, $mergeWithDefaults = false) { @@ -20157,7 +19991,7 @@ * * @param array $options * @return string The rendered PDF as string - * @static + * @static */ public static function output($options = []) { @@ -20167,7 +20001,7 @@ /** * Save the PDF to a file * - * @static + * @static */ public static function save($filename, $disk = null) { @@ -20177,7 +20011,7 @@ /** * Make the PDF downloadable by the user * - * @static + * @static */ public static function download($filename = 'document.pdf') { @@ -20187,7 +20021,7 @@ /** * Return a response with the PDF to show in the browser * - * @static + * @static */ public static function stream($filename = 'document.pdf') { @@ -20197,7 +20031,7 @@ /** * Render the PDF * - * @static + * @static */ public static function render() { @@ -20205,10 +20039,8 @@ return $instance->render(); } /** - * - * * @param array $pc - * @static + * @static */ public static function setEncryption($password, $ownerpassword = '', $pc = []) { @@ -20222,8 +20054,6 @@ namespace Barryvdh\Debugbar\Facades { /** - * - * * @method static void alert(mixed $message) * @method static void critical(mixed $message) * @method static void debug(mixed $message) @@ -20239,7 +20069,7 @@ /** * Enable the Debugbar and boot, if not already booted. * - * @static + * @static */ public static function enable() { @@ -20249,7 +20079,7 @@ /** * Boot the debugbar (add collectors, renderer and listener) * - * @static + * @static */ public static function boot() { @@ -20257,9 +20087,7 @@ return $instance->boot(); } /** - * - * - * @static + * @static */ public static function shouldCollect($name, $default = false) { @@ -20271,8 +20099,8 @@ * * @param \DebugBar\DataCollector\DataCollectorInterface $collector * @throws DebugBarException - * @return \Barryvdh\Debugbar\LaravelDebugbar - * @static + * @return \Barryvdh\Debugbar\LaravelDebugbar + * @static */ public static function addCollector($collector) { @@ -20288,7 +20116,7 @@ * @param int $line * @param array $context * @throws \ErrorException - * @static + * @static */ public static function handleError($level, $message, $file = '', $line = 0, $context = []) { @@ -20300,7 +20128,7 @@ * * @param string $name Internal name, used to stop the measure * @param string $label Public name - * @static + * @static */ public static function startMeasure($name, $label = null) { @@ -20311,7 +20139,7 @@ * Stops a measure * * @param string $name - * @static + * @static */ public static function stopMeasure($name) { @@ -20323,7 +20151,7 @@ * * @param \Exception $e * @deprecated in favor of addThrowable - * @static + * @static */ public static function addException($e) { @@ -20334,7 +20162,7 @@ * Adds an exception to be profiled in the debug bar * * @param \Exception $e - * @static + * @static */ public static function addThrowable($e) { @@ -20346,8 +20174,8 @@ * * @param string $baseUrl * @param string $basePathng - * @return \Barryvdh\Debugbar\JavascriptRenderer - * @static + * @return \Barryvdh\Debugbar\JavascriptRenderer + * @static */ public static function getJavascriptRenderer($baseUrl = null, $basePath = null) { @@ -20359,8 +20187,8 @@ * * @param \Symfony\Component\HttpFoundation\Request $request * @param \Symfony\Component\HttpFoundation\Response $response - * @return \Symfony\Component\HttpFoundation\Response - * @static + * @return \Symfony\Component\HttpFoundation\Response + * @static */ public static function modifyResponse($request, $response) { @@ -20370,8 +20198,8 @@ /** * Check if the Debugbar is enabled * - * @return boolean - * @static + * @return boolean + * @static */ public static function isEnabled() { @@ -20381,8 +20209,8 @@ /** * Collects the data from the collectors * - * @return array - * @static + * @return array + * @static */ public static function collect() { @@ -20394,7 +20222,7 @@ * * @param \Symfony\Component\HttpFoundation\Response $response A Response instance * Based on https://github.com/symfony/WebProfilerBundle/blob/master/EventListener/WebDebugToolbarListener.php - * @static + * @static */ public static function injectDebugbar($response) { @@ -20404,7 +20232,7 @@ /** * Disable the Debugbar * - * @static + * @static */ public static function disable() { @@ -20417,7 +20245,7 @@ * @param string $label * @param float $start * @param float $end - * @static + * @static */ public static function addMeasure($label, $start, $end) { @@ -20429,8 +20257,8 @@ * * @param string $label * @param \Closure $closure - * @return mixed - * @static + * @return mixed + * @static */ public static function measure($label, $closure) { @@ -20440,8 +20268,8 @@ /** * Collect data in a CLI request * - * @return array - * @static + * @return array + * @static */ public static function collectConsole() { @@ -20455,7 +20283,7 @@ * * @param mixed $message * @param string $label - * @static + * @static */ public static function addMessage($message, $label = 'info') { @@ -20466,8 +20294,8 @@ * Checks if a data collector has been added * * @param string $name - * @return boolean - * @static + * @return boolean + * @static */ public static function hasCollector($name) { //Method inherited from \DebugBar\DebugBar @@ -20478,9 +20306,9 @@ * Returns a data collector * * @param string $name - * @return \DebugBar\DataCollector\DataCollectorInterface + * @return \DebugBar\DataCollector\DataCollectorInterface * @throws DebugBarException - * @static + * @static */ public static function getCollector($name) { //Method inherited from \DebugBar\DebugBar @@ -20490,8 +20318,8 @@ /** * Returns an array of all data collectors * - * @return array[DataCollectorInterface] - * @static + * @return array[DataCollectorInterface] + * @static */ public static function getCollectors() { //Method inherited from \DebugBar\DebugBar @@ -20502,8 +20330,8 @@ * Sets the request id generator * * @param \DebugBar\RequestIdGeneratorInterface $generator - * @return \Barryvdh\Debugbar\LaravelDebugbar - * @static + * @return \Barryvdh\Debugbar\LaravelDebugbar + * @static */ public static function setRequestIdGenerator($generator) { //Method inherited from \DebugBar\DebugBar @@ -20511,10 +20339,8 @@ return $instance->setRequestIdGenerator($generator); } /** - * - * - * @return \DebugBar\RequestIdGeneratorInterface - * @static + * @return \DebugBar\RequestIdGeneratorInterface + * @static */ public static function getRequestIdGenerator() { //Method inherited from \DebugBar\DebugBar @@ -20524,8 +20350,8 @@ /** * Returns the id of the current request * - * @return string - * @static + * @return string + * @static */ public static function getCurrentRequestId() { //Method inherited from \DebugBar\DebugBar @@ -20536,8 +20362,8 @@ * Sets the storage backend to use to store the collected data * * @param \DebugBar\StorageInterface $storage - * @return \Barryvdh\Debugbar\LaravelDebugbar - * @static + * @return \Barryvdh\Debugbar\LaravelDebugbar + * @static */ public static function setStorage($storage = null) { //Method inherited from \DebugBar\DebugBar @@ -20545,10 +20371,8 @@ return $instance->setStorage($storage); } /** - * - * - * @return \DebugBar\StorageInterface - * @static + * @return \DebugBar\StorageInterface + * @static */ public static function getStorage() { //Method inherited from \DebugBar\DebugBar @@ -20558,8 +20382,8 @@ /** * Checks if the data will be persisted * - * @return boolean - * @static + * @return boolean + * @static */ public static function isDataPersisted() { //Method inherited from \DebugBar\DebugBar @@ -20570,8 +20394,8 @@ * Sets the HTTP driver * * @param \DebugBar\HttpDriverInterface $driver - * @return \Barryvdh\Debugbar\LaravelDebugbar - * @static + * @return \Barryvdh\Debugbar\LaravelDebugbar + * @static */ public static function setHttpDriver($driver) { //Method inherited from \DebugBar\DebugBar @@ -20583,8 +20407,8 @@ * * If no http driver where defined, a PhpHttpDriver is automatically created * - * @return \DebugBar\HttpDriverInterface - * @static + * @return \DebugBar\HttpDriverInterface + * @static */ public static function getHttpDriver() { //Method inherited from \DebugBar\DebugBar @@ -20596,8 +20420,8 @@ * * Will collect the data if none have been collected yet * - * @return array - * @static + * @return array + * @static */ public static function getData() { //Method inherited from \DebugBar\DebugBar @@ -20609,8 +20433,8 @@ * * @param string $headerName * @param integer $maxHeaderLength - * @return array - * @static + * @return array + * @static */ public static function getDataAsHeaders($headerName = 'phpdebugbar', $maxHeaderLength = 4096, $maxTotalHeaderLength = 250000) { //Method inherited from \DebugBar\DebugBar @@ -20623,8 +20447,8 @@ * @param bool $useOpenHandler * @param string $headerName * @param integer $maxHeaderLength - * @return \Barryvdh\Debugbar\LaravelDebugbar - * @static + * @return \Barryvdh\Debugbar\LaravelDebugbar + * @static */ public static function sendDataInHeaders($useOpenHandler = null, $headerName = 'phpdebugbar', $maxHeaderLength = 4096) { //Method inherited from \DebugBar\DebugBar @@ -20634,7 +20458,7 @@ /** * Stacks the data in the session for later rendering * - * @static + * @static */ public static function stackData() { //Method inherited from \DebugBar\DebugBar @@ -20644,8 +20468,8 @@ /** * Checks if there is stacked data in the session * - * @return boolean - * @static + * @return boolean + * @static */ public static function hasStackedData() { //Method inherited from \DebugBar\DebugBar @@ -20656,8 +20480,8 @@ * Returns the data stacked in the session * * @param boolean $delete Whether to delete the data in the session - * @return array - * @static + * @return array + * @static */ public static function getStackedData($delete = true) { //Method inherited from \DebugBar\DebugBar @@ -20668,8 +20492,8 @@ * Sets the key to use in the $_SESSION array * * @param string $ns - * @return \Barryvdh\Debugbar\LaravelDebugbar - * @static + * @return \Barryvdh\Debugbar\LaravelDebugbar + * @static */ public static function setStackDataSessionNamespace($ns) { //Method inherited from \DebugBar\DebugBar @@ -20679,8 +20503,8 @@ /** * Returns the key used in the $_SESSION array * - * @return string - * @static + * @return string + * @static */ public static function getStackDataSessionNamespace() { //Method inherited from \DebugBar\DebugBar @@ -20692,8 +20516,8 @@ * if a storage is enabled * * @param boolean $enabled - * @return \Barryvdh\Debugbar\LaravelDebugbar - * @static + * @return \Barryvdh\Debugbar\LaravelDebugbar + * @static */ public static function setStackAlwaysUseSessionStorage($enabled = true) { //Method inherited from \DebugBar\DebugBar @@ -20704,8 +20528,8 @@ * Checks if the session is always used to store stacked data * even if a storage is enabled * - * @return boolean - * @static + * @return boolean + * @static */ public static function isStackAlwaysUseSessionStorage() { //Method inherited from \DebugBar\DebugBar @@ -20713,9 +20537,7 @@ return $instance->isStackAlwaysUseSessionStorage(); } /** - * - * - * @static + * @static */ public static function offsetSet($key, $value) { //Method inherited from \DebugBar\DebugBar @@ -20723,9 +20545,7 @@ return $instance->offsetSet($key, $value); } /** - * - * - * @static + * @static */ public static function offsetGet($key) { //Method inherited from \DebugBar\DebugBar @@ -20733,9 +20553,7 @@ return $instance->offsetGet($key); } /** - * - * - * @static + * @static */ public static function offsetExists($key) { //Method inherited from \DebugBar\DebugBar @@ -20743,9 +20561,7 @@ return $instance->offsetExists($key); } /** - * - * - * @static + * @static */ public static function offsetUnset($key) { //Method inherited from \DebugBar\DebugBar @@ -20759,16 +20575,14 @@ namespace Gloudemans\Shoppingcart\Facades { /** - * - * */ class Cart { /** * Set the current cart instance. * * @param string|null $instance - * @return \Gloudemans\Shoppingcart\Cart - * @static + * @return \Gloudemans\Shoppingcart\Cart + * @static */ public static function instance($instance = null) { @@ -20778,8 +20592,8 @@ /** * Get the current cart instance. * - * @return string - * @static + * @return string + * @static */ public static function currentInstance() { @@ -20794,8 +20608,8 @@ * @param int|float $qty * @param float $price * @param array $options - * @return \Gloudemans\Shoppingcart\CartItem - * @static + * @return \Gloudemans\Shoppingcart\CartItem + * @static */ public static function add($id, $name = null, $qty = null, $price = null, $taxRate = null, $options = []) { @@ -20807,8 +20621,8 @@ * * @param string $rowId * @param mixed $qty - * @return \Gloudemans\Shoppingcart\CartItem - * @static + * @return \Gloudemans\Shoppingcart\CartItem + * @static */ public static function update($rowId, $qty) { @@ -20819,8 +20633,8 @@ * Remove the cart item with the given rowId from the cart. * * @param string $rowId - * @return void - * @static + * @return void + * @static */ public static function remove($rowId) { @@ -20831,8 +20645,8 @@ * Get a cart item from the cart by its rowId. * * @param string $rowId - * @return \Gloudemans\Shoppingcart\CartItem - * @static + * @return \Gloudemans\Shoppingcart\CartItem + * @static */ public static function get($rowId) { @@ -20842,8 +20656,8 @@ /** * Destroy the current cart instance. * - * @return void - * @static + * @return void + * @static */ public static function destroy() { @@ -20853,8 +20667,8 @@ /** * Get the content of the cart. * - * @return \Illuminate\Support\Collection - * @static + * @return \Illuminate\Support\Collection + * @static */ public static function content() { @@ -20864,8 +20678,8 @@ /** * Get the number of items in the cart. * - * @return int|float - * @static + * @return int|float + * @static */ public static function count() { @@ -20878,8 +20692,8 @@ * @param int $decimals * @param string $decimalPoint * @param string $thousandSeperator - * @return string - * @static + * @return string + * @static */ public static function total($decimals = null, $decimalPoint = null, $thousandSeperator = null, $withFees = true) { @@ -20892,8 +20706,8 @@ * @param int $decimals * @param string $decimalPoint * @param string $thousandSeperator - * @return float - * @static + * @return float + * @static */ public static function tax($decimals = null, $decimalPoint = null, $thousandSeperator = null, $withFees = true) { @@ -20906,8 +20720,8 @@ * @param int $decimals * @param string $decimalPoint * @param string $thousandSeperator - * @return float - * @static + * @return float + * @static */ public static function feeTax($decimals = null, $decimalPoint = null, $thousandSeperator = null) { @@ -20920,8 +20734,8 @@ * @param int $decimals * @param string $decimalPoint * @param string $thousandSeperator - * @return float - * @static + * @return float + * @static */ public static function subtotal($decimals = null, $decimalPoint = null, $thousandSeperator = null) { @@ -20934,8 +20748,8 @@ * @param int $decimals * @param string $decimalPoint * @param string $thousandSeperator - * @return float - * @static + * @return float + * @static */ public static function subtotalTax($decimals = null, $decimalPoint = null, $thousandSeperator = null) { @@ -20946,8 +20760,8 @@ * Search the cart content for a cart item matching the given search closure. * * @param \Closure $search - * @return \Illuminate\Support\Collection - * @static + * @return \Illuminate\Support\Collection + * @static */ public static function search($search) { @@ -20959,8 +20773,8 @@ * * @param string $rowId * @param mixed $model - * @return void - * @static + * @return void + * @static */ public static function associate($rowId, $model) { @@ -20972,8 +20786,8 @@ * * @param string $rowId * @param int|float $taxRate - * @return void - * @static + * @return void + * @static */ public static function setTax($rowId, $taxRate) { @@ -20984,8 +20798,8 @@ * Store an the current instance of the cart. * * @param mixed $identifier - * @return void - * @static + * @return void + * @static */ public static function store($identifier) { @@ -20996,8 +20810,8 @@ * Restore the cart with the given identifier. * * @param mixed $identifier - * @return void - * @static + * @return void + * @static */ public static function restore($identifier) { @@ -21008,8 +20822,8 @@ * Gets a specific fee from the fees array. * * @param $name - * @return mixed - * @static + * @return mixed + * @static */ public static function getFee($name) { @@ -21026,7 +20840,7 @@ * @param $amount * @param $taxRate * @param array $options - * @static + * @static */ public static function addFee($name, $amount, $taxRate = null, $options = []) { @@ -21038,7 +20852,7 @@ * * @todo test to see if i need to restore this * @param $name - * @static + * @static */ public static function removeFee($name) { @@ -21048,7 +20862,7 @@ /** * Removes all the fees set in the cart. * - * @static + * @static */ public static function removeFees() { @@ -21060,8 +20874,8 @@ * * @param bool $format * @param bool $withTax - * @return string - * @static + * @return string + * @static */ public static function feeTotal($decimals = null, $decimalPoint = null, $thousandSeperator = null, $withTax = true) { @@ -21071,8 +20885,8 @@ /** * Gets all the fees on the cart object. * - * @return mixed - * @static + * @return mixed + * @static */ public static function getFees() { @@ -21080,10 +20894,8 @@ return $instance->getFees(); } /** - * - * - * @return array - * @static + * @return array + * @static */ public static function toArray() { @@ -21091,11 +20903,9 @@ return $instance->toArray(); } /** - * - * * @param $array - * @return \Gloudemans\Shoppingcart\Cart - * @static + * @return \Gloudemans\Shoppingcart\Cart + * @static */ public static function fromArray($array) { @@ -21115,18 +20925,14 @@ */ class Flare { /** - * - * - * @static + * @static */ public static function register($apiKey, $apiSecret = null, $contextDetector = null, $container = null) { return \Facade\FlareClient\Flare::register($apiKey, $apiSecret, $contextDetector, $container); } /** - * - * - * @static + * @static */ public static function determineVersionUsing($determineVersionCallable) { @@ -21134,9 +20940,7 @@ return $instance->determineVersionUsing($determineVersionCallable); } /** - * - * - * @static + * @static */ public static function reportErrorLevels($reportErrorLevels) { @@ -21144,9 +20948,7 @@ return $instance->reportErrorLevels($reportErrorLevels); } /** - * - * - * @static + * @static */ public static function filterExceptionsUsing($filterExceptionsCallable) { @@ -21154,9 +20956,7 @@ return $instance->filterExceptionsUsing($filterExceptionsCallable); } /** - * - * - * @static + * @static */ public static function filterReportsUsing($filterReportsCallable) { @@ -21164,10 +20964,8 @@ return $instance->filterReportsUsing($filterReportsCallable); } /** - * - * - * @return null|string - * @static + * @return null|string + * @static */ public static function version() { @@ -21175,9 +20973,7 @@ return $instance->version(); } /** - * - * - * @static + * @static */ public static function getMiddleware() { @@ -21185,9 +20981,7 @@ return $instance->getMiddleware(); } /** - * - * - * @static + * @static */ public static function registerFlareHandlers() { @@ -21195,9 +20989,7 @@ return $instance->registerFlareHandlers(); } /** - * - * - * @static + * @static */ public static function registerExceptionHandler() { @@ -21205,9 +20997,7 @@ return $instance->registerExceptionHandler(); } /** - * - * - * @static + * @static */ public static function registerErrorHandler() { @@ -21215,9 +21005,7 @@ return $instance->registerErrorHandler(); } /** - * - * - * @static + * @static */ public static function registerMiddleware($callable) { @@ -21225,9 +21013,7 @@ return $instance->registerMiddleware($callable); } /** - * - * - * @static + * @static */ public static function getMiddlewares() { @@ -21235,9 +21021,7 @@ return $instance->getMiddlewares(); } /** - * - * - * @static + * @static */ public static function glow($name, $messageLevel = 'info', $metaData = []) { @@ -21245,9 +21029,7 @@ return $instance->glow($name, $messageLevel, $metaData); } /** - * - * - * @static + * @static */ public static function handleException($throwable) { @@ -21255,9 +21037,7 @@ return $instance->handleException($throwable); } /** - * - * - * @static + * @static */ public static function handleError($code, $message, $file = '', $line = 0) { @@ -21265,9 +21045,7 @@ return $instance->handleError($code, $message, $file, $line); } /** - * - * - * @static + * @static */ public static function applicationPath($applicationPath) { @@ -21275,9 +21053,7 @@ return $instance->applicationPath($applicationPath); } /** - * - * - * @static + * @static */ public static function report($throwable, $callback = null) { @@ -21285,9 +21061,7 @@ return $instance->report($throwable, $callback); } /** - * - * - * @static + * @static */ public static function reportMessage($message, $logLevel, $callback = null) { @@ -21295,9 +21069,7 @@ return $instance->reportMessage($message, $logLevel, $callback); } /** - * - * - * @static + * @static */ public static function sendTestReport($throwable) { @@ -21305,9 +21077,7 @@ return $instance->sendTestReport($throwable); } /** - * - * - * @static + * @static */ public static function reset() { @@ -21315,9 +21085,7 @@ return $instance->reset(); } /** - * - * - * @static + * @static */ public static function anonymizeIp() { @@ -21325,9 +21093,7 @@ return $instance->anonymizeIp(); } /** - * - * - * @static + * @static */ public static function censorRequestBodyFields($fieldNames) { @@ -21335,9 +21101,7 @@ return $instance->censorRequestBodyFields($fieldNames); } /** - * - * - * @static + * @static */ public static function createReport($throwable) { @@ -21345,9 +21109,7 @@ return $instance->createReport($throwable); } /** - * - * - * @static + * @static */ public static function createReportFromMessage($message, $logLevel) { @@ -21355,9 +21117,7 @@ return $instance->createReportFromMessage($message, $logLevel); } /** - * - * - * @static + * @static */ public static function stage($stage) { @@ -21365,9 +21125,7 @@ return $instance->stage($stage); } /** - * - * - * @static + * @static */ public static function messageLevel($messageLevel) { @@ -21375,9 +21133,7 @@ return $instance->messageLevel($messageLevel); } /** - * - * - * @static + * @static */ public static function getGroup($groupName = 'context', $default = []) { @@ -21385,9 +21141,7 @@ return $instance->getGroup($groupName, $default); } /** - * - * - * @static + * @static */ public static function context($key, $value) { @@ -21395,9 +21149,7 @@ return $instance->context($key, $value); } /** - * - * - * @static + * @static */ public static function group($groupName, $properties) { @@ -21411,16 +21163,14 @@ namespace Laracasts\Flash { /** - * - * */ class Flash { /** * Flash an information message. * * @param string|null $message - * @return \Laracasts\Flash\FlashNotifier - * @static + * @return \Laracasts\Flash\FlashNotifier + * @static */ public static function info($message = null) { @@ -21431,8 +21181,8 @@ * Flash a success message. * * @param string|null $message - * @return \Laracasts\Flash\FlashNotifier - * @static + * @return \Laracasts\Flash\FlashNotifier + * @static */ public static function success($message = null) { @@ -21443,8 +21193,8 @@ * Flash an error message. * * @param string|null $message - * @return \Laracasts\Flash\FlashNotifier - * @static + * @return \Laracasts\Flash\FlashNotifier + * @static */ public static function error($message = null) { @@ -21455,8 +21205,8 @@ * Flash a warning message. * * @param string|null $message - * @return \Laracasts\Flash\FlashNotifier - * @static + * @return \Laracasts\Flash\FlashNotifier + * @static */ public static function warning($message = null) { @@ -21468,8 +21218,8 @@ * * @param string|null $message * @param string|null $level - * @return \Laracasts\Flash\FlashNotifier - * @static + * @return \Laracasts\Flash\FlashNotifier + * @static */ public static function message($message = null, $level = null) { @@ -21481,8 +21231,8 @@ * * @param string|null $message * @param string $title - * @return \Laracasts\Flash\FlashNotifier - * @static + * @return \Laracasts\Flash\FlashNotifier + * @static */ public static function overlay($message = null, $title = 'Notice') { @@ -21492,8 +21242,8 @@ /** * Add an "important" flash to the session. * - * @return \Laracasts\Flash\FlashNotifier - * @static + * @return \Laracasts\Flash\FlashNotifier + * @static */ public static function important() { @@ -21503,8 +21253,8 @@ /** * Clear all registered messages. * - * @return \Laracasts\Flash\FlashNotifier - * @static + * @return \Laracasts\Flash\FlashNotifier + * @static */ public static function clear() { @@ -21516,8 +21266,8 @@ * * @param string $name * @param object|callable $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -21528,9 +21278,9 @@ * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -21540,8 +21290,8 @@ * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -21550,8 +21300,8 @@ /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -21564,16 +21314,14 @@ namespace PragmaRX\Google2FALaravel { /** - * - * */ class Facade { /** * Set the QRCode Backend. * * @param string $qrCodeBackend - * @return self - * @static + * @return self + * @static */ public static function setQrCodeBackend($qrCodeBackend) { @@ -21584,8 +21332,8 @@ * Authenticator boot. * * @param $request - * @return \Google2FA - * @static + * @return \Google2FA + * @static */ public static function boot($request) { @@ -21595,8 +21343,8 @@ /** * The QRCode Backend. * - * @return mixed - * @static + * @return mixed + * @static */ public static function getQRCodeBackend() { @@ -21606,8 +21354,8 @@ /** * Check if the 2FA is activated for the user. * - * @return bool - * @static + * @return bool + * @static */ public static function isActivated() { @@ -21617,7 +21365,7 @@ /** * Set current auth as valid. * - * @static + * @static */ public static function login() { @@ -21627,7 +21375,7 @@ /** * OTP logout. * - * @static + * @static */ public static function logout() { @@ -21639,8 +21387,8 @@ * * @param $secret * @param $one_time_password - * @return mixed - * @static + * @return mixed + * @static */ public static function verifyGoogle2FA($secret, $one_time_password) { @@ -21655,8 +21403,8 @@ * @param string $secret * @param int $size * @param string $encoding Default to UTF-8 - * @return string - * @static + * @return string + * @static */ public static function getQRCodeInline($company, $holder, $secret, $size = 200, $encoding = 'utf-8') { //Method inherited from \PragmaRX\Google2FAQRCode\Google2FA @@ -21666,8 +21414,8 @@ /** * Service setter * - * @return \PragmaRX\Google2FAQRCode\QRCode\QRCodeServiceContract - * @static + * @return \PragmaRX\Google2FAQRCode\QRCode\QRCodeServiceContract + * @static */ public static function getQrCodeService() { //Method inherited from \PragmaRX\Google2FAQRCode\Google2FA @@ -21677,8 +21425,8 @@ /** * Service setter * - * @return self - * @static + * @return self + * @static */ public static function setQrCodeService($service) { //Method inherited from \PragmaRX\Google2FAQRCode\Google2FA @@ -21688,8 +21436,8 @@ /** * Create the QR Code service instance * - * @return \PragmaRX\Google2FAQRCode\QRCode\QRCodeServiceContract - * @static + * @return \PragmaRX\Google2FAQRCode\QRCode\QRCodeServiceContract + * @static */ public static function qrCodeServiceFactory($imageBackEnd = null) { //Method inherited from \PragmaRX\Google2FAQRCode\Google2FA @@ -21708,8 +21456,8 @@ * @throws \PragmaRX\Google2FA\Exceptions\SecretKeyTooShortException * @throws \PragmaRX\Google2FA\Exceptions\InvalidCharactersException * @throws \PragmaRX\Google2FA\Exceptions\IncompatibleWithGoogleAuthenticatorException - * @return bool|int - * @static + * @return bool|int + * @static */ public static function findValidOTP($secret, $key, $window, $startingTimestamp, $timestamp, $oldTimestamp = null) { //Method inherited from \PragmaRX\Google2FA\Google2FA @@ -21724,8 +21472,8 @@ * @throws \PragmaRX\Google2FA\Exceptions\IncompatibleWithGoogleAuthenticatorException * @throws \PragmaRX\Google2FA\Exceptions\InvalidCharactersException * @throws \PragmaRX\Google2FA\Exceptions\SecretKeyTooShortException - * @return string - * @static + * @return string + * @static */ public static function generateSecretKey($length = 16, $prefix = '') { //Method inherited from \PragmaRX\Google2FA\Google2FA @@ -21739,8 +21487,8 @@ * @throws \PragmaRX\Google2FA\Exceptions\SecretKeyTooShortException * @throws \PragmaRX\Google2FA\Exceptions\InvalidCharactersException * @throws \PragmaRX\Google2FA\Exceptions\IncompatibleWithGoogleAuthenticatorException - * @return string - * @static + * @return string + * @static */ public static function getCurrentOtp($secret) { //Method inherited from \PragmaRX\Google2FA\Google2FA @@ -21750,8 +21498,8 @@ /** * Get the HMAC algorithm. * - * @return string - * @static + * @return string + * @static */ public static function getAlgorithm() { //Method inherited from \PragmaRX\Google2FA\Google2FA @@ -21761,8 +21509,8 @@ /** * Get key regeneration. * - * @return int - * @static + * @return int + * @static */ public static function getKeyRegeneration() { //Method inherited from \PragmaRX\Google2FA\Google2FA @@ -21772,8 +21520,8 @@ /** * Get OTP length. * - * @return int - * @static + * @return int + * @static */ public static function getOneTimePasswordLength() { //Method inherited from \PragmaRX\Google2FA\Google2FA @@ -21784,8 +21532,8 @@ * Get secret. * * @param string|null $secret - * @return string - * @static + * @return string + * @static */ public static function getSecret($secret = null) { //Method inherited from \PragmaRX\Google2FA\Google2FA @@ -21796,8 +21544,8 @@ * Returns the current Unix Timestamp divided by the $keyRegeneration * period. * - * @return int - * @static + * @return int + * @static */ public static function getTimestamp() { //Method inherited from \PragmaRX\Google2FA\Google2FA @@ -21808,8 +21556,8 @@ * Get the OTP window. * * @param null|int $window - * @return int - * @static + * @return int + * @static */ public static function getWindow($window = null) { //Method inherited from \PragmaRX\Google2FA\Google2FA @@ -21825,8 +21573,8 @@ * @throws \PragmaRX\Google2FA\Exceptions\SecretKeyTooShortException * @throws \PragmaRX\Google2FA\Exceptions\InvalidCharactersException * @throws Exceptions\IncompatibleWithGoogleAuthenticatorException - * @return string - * @static + * @return string + * @static */ public static function oathTotp($secret, $counter) { //Method inherited from \PragmaRX\Google2FA\Google2FA @@ -21837,8 +21585,8 @@ * Extracts the OTP from the SHA1 hash. * * @param string $hash - * @return string - * @static + * @return string + * @static */ public static function oathTruncate($hash) { //Method inherited from \PragmaRX\Google2FA\Google2FA @@ -21849,8 +21597,8 @@ * Remove invalid chars from a base 32 string. * * @param string $string - * @return string|null - * @static + * @return string|null + * @static */ public static function removeInvalidChars($string) { //Method inherited from \PragmaRX\Google2FA\Google2FA @@ -21861,8 +21609,8 @@ * Setter for the enforce Google Authenticator compatibility property. * * @param mixed $enforceGoogleAuthenticatorCompatibility - * @return \PragmaRX\Google2FALaravel\Google2FA - * @static + * @return \PragmaRX\Google2FALaravel\Google2FA + * @static */ public static function setEnforceGoogleAuthenticatorCompatibility($enforceGoogleAuthenticatorCompatibility) { //Method inherited from \PragmaRX\Google2FA\Google2FA @@ -21874,8 +21622,8 @@ * * @param mixed $algorithm * @throws \PragmaRX\Google2FA\Exceptions\InvalidAlgorithmException - * @return \PragmaRX\Google2FA\Google2FA - * @static + * @return \PragmaRX\Google2FA\Google2FA + * @static */ public static function setAlgorithm($algorithm) { //Method inherited from \PragmaRX\Google2FA\Google2FA @@ -21886,7 +21634,7 @@ * Set key regeneration. * * @param mixed $keyRegeneration - * @static + * @static */ public static function setKeyRegeneration($keyRegeneration) { //Method inherited from \PragmaRX\Google2FA\Google2FA @@ -21897,7 +21645,7 @@ * Set OTP length. * * @param mixed $oneTimePasswordLength - * @static + * @static */ public static function setOneTimePasswordLength($oneTimePasswordLength) { //Method inherited from \PragmaRX\Google2FA\Google2FA @@ -21908,7 +21656,7 @@ * Set secret. * * @param mixed $secret - * @static + * @static */ public static function setSecret($secret) { //Method inherited from \PragmaRX\Google2FA\Google2FA @@ -21919,7 +21667,7 @@ * Set the OTP window. * * @param mixed $window - * @static + * @static */ public static function setWindow($window) { //Method inherited from \PragmaRX\Google2FA\Google2FA @@ -21938,8 +21686,8 @@ * @throws \PragmaRX\Google2FA\Exceptions\SecretKeyTooShortException * @throws \PragmaRX\Google2FA\Exceptions\InvalidCharactersException * @throws \PragmaRX\Google2FA\Exceptions\IncompatibleWithGoogleAuthenticatorException - * @return bool|int - * @static + * @return bool|int + * @static */ public static function verify($key, $secret, $window = null, $timestamp = null, $oldTimestamp = null) { //Method inherited from \PragmaRX\Google2FA\Google2FA @@ -21958,8 +21706,8 @@ * @throws \PragmaRX\Google2FA\Exceptions\SecretKeyTooShortException * @throws \PragmaRX\Google2FA\Exceptions\InvalidCharactersException * @throws \PragmaRX\Google2FA\Exceptions\IncompatibleWithGoogleAuthenticatorException - * @return bool|int - * @static + * @return bool|int + * @static */ public static function verifyKey($secret, $key, $window = null, $timestamp = null, $oldTimestamp = null) { //Method inherited from \PragmaRX\Google2FA\Google2FA @@ -21980,8 +21728,8 @@ * @throws \PragmaRX\Google2FA\Exceptions\SecretKeyTooShortException * @throws \PragmaRX\Google2FA\Exceptions\InvalidCharactersException * @throws \PragmaRX\Google2FA\Exceptions\IncompatibleWithGoogleAuthenticatorException - * @return bool|int - * @static + * @return bool|int + * @static */ public static function verifyKeyNewer($secret, $key, $oldTimestamp, $window = null, $timestamp = null) { //Method inherited from \PragmaRX\Google2FA\Google2FA @@ -21994,8 +21742,8 @@ * @param string $company * @param string $holder * @param string $secret - * @return string - * @static + * @return string + * @static */ public static function getQRCodeUrl($company, $holder, $secret) { //Method inherited from \PragmaRX\Google2FA\Google2FA @@ -22011,8 +21759,8 @@ * @throws \PragmaRX\Google2FA\Exceptions\InvalidCharactersException * @throws \PragmaRX\Google2FA\Exceptions\SecretKeyTooShortException * @throws \PragmaRX\Google2FA\Exceptions\IncompatibleWithGoogleAuthenticatorException - * @return string - * @static + * @return string + * @static */ public static function generateBase32RandomKey($length = 16, $prefix = '') { //Method inherited from \PragmaRX\Google2FA\Google2FA @@ -22026,8 +21774,8 @@ * @throws \PragmaRX\Google2FA\Exceptions\InvalidCharactersException * @throws \PragmaRX\Google2FA\Exceptions\SecretKeyTooShortException * @throws \PragmaRX\Google2FA\Exceptions\IncompatibleWithGoogleAuthenticatorException - * @return string - * @static + * @return string + * @static */ public static function base32Decode($b32) { //Method inherited from \PragmaRX\Google2FA\Google2FA @@ -22038,8 +21786,8 @@ * Encode a string to Base32. * * @param string $string - * @return string - * @static + * @return string + * @static */ public static function toBase32($string) { //Method inherited from \PragmaRX\Google2FA\Google2FA @@ -22051,8 +21799,8 @@ * * @param $string * @throws \Exception - * @return mixed - * @static + * @return mixed + * @static */ public static function config($string, $default = null) { @@ -22062,8 +21810,8 @@ /** * Get the request property. * - * @return mixed - * @static + * @return mixed + * @static */ public static function getRequest() { @@ -22074,8 +21822,8 @@ * Set the request property. * * @param mixed $request - * @return \PragmaRX\Google2FALaravel\Google2FA - * @static + * @return \PragmaRX\Google2FALaravel\Google2FA + * @static */ public static function setRequest($request) { @@ -22086,8 +21834,8 @@ * Get a session var value. * * @param null $var - * @return mixed - * @static + * @return mixed + * @static */ public static function sessionGet($var = null, $default = null) { @@ -22095,11 +21843,9 @@ return $instance->sessionGet($var, $default); } /** - * - * * @param mixed $stateless - * @return \PragmaRX\Google2FALaravel\Authenticator - * @static + * @return \PragmaRX\Google2FALaravel\Authenticator + * @static */ public static function setStateless($stateless = true) { @@ -22113,51 +21859,41 @@ namespace Illuminate\Http { /** - * - * */ class Request { /** - * - * * @see \Illuminate\Foundation\Providers\FoundationServiceProvider::registerRequestValidation() * @param array $rules * @param mixed $params - * @static + * @static */ public static function validate($rules, ...$params) { return \Illuminate\Http\Request::validate($rules, ...$params); } /** - * - * * @see \Illuminate\Foundation\Providers\FoundationServiceProvider::registerRequestValidation() * @param string $errorBag * @param array $rules * @param mixed $params - * @static + * @static */ public static function validateWithBag($errorBag, $rules, ...$params) { return \Illuminate\Http\Request::validateWithBag($errorBag, $rules, ...$params); } /** - * - * * @see \Illuminate\Foundation\Providers\FoundationServiceProvider::registerRequestSignatureValidation() * @param mixed $absolute - * @static + * @static */ public static function hasValidSignature($absolute = true) { return \Illuminate\Http\Request::hasValidSignature($absolute); } /** - * - * * @see \Illuminate\Foundation\Providers\FoundationServiceProvider::registerRequestSignatureValidation() - * @static + * @static */ public static function hasValidRelativeSignature() { @@ -22170,47 +21906,37 @@ namespace Illuminate\Routing { /** - * - * * @mixin \Illuminate\Routing\RouteRegistrar */ class Router { /** - * - * * @see \Laravel\Ui\AuthRouteMethods::auth() * @param mixed $options - * @static + * @static */ public static function auth($options = []) { return \Illuminate\Routing\Router::auth($options); } /** - * - * * @see \Laravel\Ui\AuthRouteMethods::resetPassword() - * @static + * @static */ public static function resetPassword() { return \Illuminate\Routing\Router::resetPassword(); } /** - * - * * @see \Laravel\Ui\AuthRouteMethods::confirmPassword() - * @static + * @static */ public static function confirmPassword() { return \Illuminate\Routing\Router::confirmPassword(); } /** - * - * * @see \Laravel\Ui\AuthRouteMethods::emailVerification() - * @static + * @static */ public static function emailVerification() { @@ -22240,8 +21966,8 @@ namespace { * Create and return an un-saved model instance. * * @param array $attributes - * @return \Illuminate\Database\Eloquent\Model|static - * @static + * @return \Illuminate\Database\Eloquent\Model|static + * @static */ public static function make($attributes = []) { @@ -22254,8 +21980,8 @@ namespace { * * @param string $identifier * @param \Illuminate\Database\Eloquent\Scope|\Closure $scope - * @return \Illuminate\Database\Eloquent\Builder|static - * @static + * @return \Illuminate\Database\Eloquent\Builder|static + * @static */ public static function withGlobalScope($identifier, $scope) { @@ -22267,8 +21993,8 @@ namespace { * Remove a registered global scope. * * @param \Illuminate\Database\Eloquent\Scope|string $scope - * @return \Illuminate\Database\Eloquent\Builder|static - * @static + * @return \Illuminate\Database\Eloquent\Builder|static + * @static */ public static function withoutGlobalScope($scope) { @@ -22280,8 +22006,8 @@ namespace { * Remove all or passed registered global scopes. * * @param array|null $scopes - * @return \Illuminate\Database\Eloquent\Builder|static - * @static + * @return \Illuminate\Database\Eloquent\Builder|static + * @static */ public static function withoutGlobalScopes($scopes = null) { @@ -22292,8 +22018,8 @@ namespace { /** * Get an array of global scopes that were removed from the query. * - * @return array - * @static + * @return array + * @static */ public static function removedScopes() { @@ -22305,8 +22031,8 @@ namespace { * Add a where clause on the primary key to the query. * * @param mixed $id - * @return \Illuminate\Database\Eloquent\Builder|static - * @static + * @return \Illuminate\Database\Eloquent\Builder|static + * @static */ public static function whereKey($id) { @@ -22318,8 +22044,8 @@ namespace { * Add a where clause on the primary key to the query. * * @param mixed $id - * @return \Illuminate\Database\Eloquent\Builder|static - * @static + * @return \Illuminate\Database\Eloquent\Builder|static + * @static */ public static function whereKeyNot($id) { @@ -22334,8 +22060,8 @@ namespace { * @param mixed $operator * @param mixed $value * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder|static - * @static + * @return \Illuminate\Database\Eloquent\Builder|static + * @static */ public static function where($column, $operator = null, $value = null, $boolean = 'and') { @@ -22350,8 +22076,8 @@ namespace { * @param mixed $operator * @param mixed $value * @param string $boolean - * @return \Illuminate\Database\Eloquent\Model|static|null - * @static + * @return \Illuminate\Database\Eloquent\Model|static|null + * @static */ public static function firstWhere($column, $operator = null, $value = null, $boolean = 'and') { @@ -22365,8 +22091,8 @@ namespace { * @param \Closure|array|string|\Illuminate\Database\Query\Expression $column * @param mixed $operator * @param mixed $value - * @return \Illuminate\Database\Eloquent\Builder|static - * @static + * @return \Illuminate\Database\Eloquent\Builder|static + * @static */ public static function orWhere($column, $operator = null, $value = null) { @@ -22378,8 +22104,8 @@ namespace { * Add an "order by" clause for a timestamp to the query. * * @param string|\Illuminate\Database\Query\Expression $column - * @return \Illuminate\Database\Eloquent\Builder|static - * @static + * @return \Illuminate\Database\Eloquent\Builder|static + * @static */ public static function latest($column = null) { @@ -22391,8 +22117,8 @@ namespace { * Add an "order by" clause for a timestamp to the query. * * @param string|\Illuminate\Database\Query\Expression $column - * @return \Illuminate\Database\Eloquent\Builder|static - * @static + * @return \Illuminate\Database\Eloquent\Builder|static + * @static */ public static function oldest($column = null) { @@ -22404,8 +22130,8 @@ namespace { * Create a collection of models from plain arrays. * * @param array $items - * @return \Illuminate\Database\Eloquent\Collection - * @static + * @return \Illuminate\Database\Eloquent\Collection + * @static */ public static function hydrate($items) { @@ -22418,8 +22144,8 @@ namespace { * * @param string $query * @param array $bindings - * @return \Illuminate\Database\Eloquent\Collection - * @static + * @return \Illuminate\Database\Eloquent\Collection + * @static */ public static function fromQuery($query, $bindings = []) { @@ -22432,8 +22158,8 @@ namespace { * * @param mixed $id * @param array $columns - * @return \Illuminate\Database\Eloquent\Model|\Illuminate\Database\Eloquent\Collection|static[]|static|null - * @static + * @return \Illuminate\Database\Eloquent\Model|\Illuminate\Database\Eloquent\Collection|static[]|static|null + * @static */ public static function find($id, $columns = []) { @@ -22446,8 +22172,8 @@ namespace { * * @param \Illuminate\Contracts\Support\Arrayable|array $ids * @param array $columns - * @return \Illuminate\Database\Eloquent\Collection - * @static + * @return \Illuminate\Database\Eloquent\Collection + * @static */ public static function findMany($ids, $columns = []) { @@ -22460,9 +22186,9 @@ namespace { * * @param mixed $id * @param array $columns - * @return \Illuminate\Database\Eloquent\Model|\Illuminate\Database\Eloquent\Collection|static|static[] + * @return \Illuminate\Database\Eloquent\Model|\Illuminate\Database\Eloquent\Collection|static|static[] * @throws \Illuminate\Database\Eloquent\ModelNotFoundException - * @static + * @static */ public static function findOrFail($id, $columns = []) { @@ -22475,8 +22201,8 @@ namespace { * * @param mixed $id * @param array $columns - * @return \Illuminate\Database\Eloquent\Model|static - * @static + * @return \Illuminate\Database\Eloquent\Model|static + * @static */ public static function findOrNew($id, $columns = []) { @@ -22489,8 +22215,8 @@ namespace { * * @param array $attributes * @param array $values - * @return \Illuminate\Database\Eloquent\Model|static - * @static + * @return \Illuminate\Database\Eloquent\Model|static + * @static */ public static function firstOrNew($attributes = [], $values = []) { @@ -22503,8 +22229,8 @@ namespace { * * @param array $attributes * @param array $values - * @return \Illuminate\Database\Eloquent\Model|static - * @static + * @return \Illuminate\Database\Eloquent\Model|static + * @static */ public static function firstOrCreate($attributes = [], $values = []) { @@ -22517,8 +22243,8 @@ namespace { * * @param array $attributes * @param array $values - * @return \Illuminate\Database\Eloquent\Model|static - * @static + * @return \Illuminate\Database\Eloquent\Model|static + * @static */ public static function updateOrCreate($attributes, $values = []) { @@ -22530,9 +22256,9 @@ namespace { * Execute the query and get the first result or throw an exception. * * @param array $columns - * @return \Illuminate\Database\Eloquent\Model|static + * @return \Illuminate\Database\Eloquent\Model|static * @throws \Illuminate\Database\Eloquent\ModelNotFoundException - * @static + * @static */ public static function firstOrFail($columns = []) { @@ -22545,8 +22271,8 @@ namespace { * * @param \Closure|array $columns * @param \Closure|null $callback - * @return \Illuminate\Database\Eloquent\Model|static|mixed - * @static + * @return \Illuminate\Database\Eloquent\Model|static|mixed + * @static */ public static function firstOr($columns = [], $callback = null) { @@ -22558,10 +22284,10 @@ namespace { * Execute the query and get the first result if it's the sole matching record. * * @param array|string $columns - * @return \Illuminate\Database\Eloquent\Model + * @return \Illuminate\Database\Eloquent\Model * @throws \Illuminate\Database\Eloquent\ModelNotFoundException * @throws \Illuminate\Database\MultipleRecordsFoundException - * @static + * @static */ public static function sole($columns = []) { @@ -22573,8 +22299,8 @@ namespace { * Get a single column's value from the first result of a query. * * @param string|\Illuminate\Database\Query\Expression $column - * @return mixed - * @static + * @return mixed + * @static */ public static function value($column) { @@ -22586,9 +22312,9 @@ namespace { * Get a single column's value from the first result of the query or throw an exception. * * @param string|\Illuminate\Database\Query\Expression $column - * @return mixed + * @return mixed * @throws \Illuminate\Database\Eloquent\ModelNotFoundException - * @static + * @static */ public static function valueOrFail($column) { @@ -22600,8 +22326,8 @@ namespace { * Execute the query as a "select" statement. * * @param array|string $columns - * @return \Illuminate\Database\Eloquent\Collection|static[] - * @static + * @return \Illuminate\Database\Eloquent\Collection|static[] + * @static */ public static function get($columns = []) { @@ -22613,8 +22339,8 @@ namespace { * Get the hydrated models without eager loading. * * @param array|string $columns - * @return \Illuminate\Database\Eloquent\Model[]|static[] - * @static + * @return \Illuminate\Database\Eloquent\Model[]|static[] + * @static */ public static function getModels($columns = []) { @@ -22626,8 +22352,8 @@ namespace { * Eager load the relationships for the models. * * @param array $models - * @return array - * @static + * @return array + * @static */ public static function eagerLoadRelations($models) { @@ -22638,8 +22364,8 @@ namespace { /** * Get a lazy collection for the given query. * - * @return \Illuminate\Support\LazyCollection - * @static + * @return \Illuminate\Support\LazyCollection + * @static */ public static function cursor() { @@ -22652,8 +22378,8 @@ namespace { * * @param string|\Illuminate\Database\Query\Expression $column * @param string|null $key - * @return \Illuminate\Support\Collection - * @static + * @return \Illuminate\Support\Collection + * @static */ public static function pluck($column, $key = null) { @@ -22668,9 +22394,9 @@ namespace { * @param array $columns * @param string $pageName * @param int|null $page - * @return \Illuminate\Contracts\Pagination\LengthAwarePaginator + * @return \Illuminate\Contracts\Pagination\LengthAwarePaginator * @throws \InvalidArgumentException - * @static + * @static */ public static function paginate($perPage = null, $columns = [], $pageName = 'page', $page = null) { @@ -22685,8 +22411,8 @@ namespace { * @param array $columns * @param string $pageName * @param int|null $page - * @return \Illuminate\Contracts\Pagination\Paginator - * @static + * @return \Illuminate\Contracts\Pagination\Paginator + * @static */ public static function simplePaginate($perPage = null, $columns = [], $pageName = 'page', $page = null) { @@ -22701,8 +22427,8 @@ namespace { * @param array $columns * @param string $cursorName * @param \Illuminate\Pagination\Cursor|string|null $cursor - * @return \Illuminate\Contracts\Pagination\CursorPaginator - * @static + * @return \Illuminate\Contracts\Pagination\CursorPaginator + * @static */ public static function cursorPaginate($perPage = null, $columns = [], $cursorName = 'cursor', $cursor = null) { @@ -22714,8 +22440,8 @@ namespace { * Save a new model and return the instance. * * @param array $attributes - * @return \Illuminate\Database\Eloquent\Model|$this - * @static + * @return \Illuminate\Database\Eloquent\Model|$this + * @static */ public static function create($attributes = []) { @@ -22727,8 +22453,8 @@ namespace { * Save a new model and return the instance. Allow mass-assignment. * * @param array $attributes - * @return \Illuminate\Database\Eloquent\Model|$this - * @static + * @return \Illuminate\Database\Eloquent\Model|$this + * @static */ public static function forceCreate($attributes) { @@ -22742,8 +22468,8 @@ namespace { * @param array $values * @param array|string $uniqueBy * @param array|null $update - * @return int - * @static + * @return int + * @static */ public static function upsert($values, $uniqueBy, $update = null) { @@ -22755,8 +22481,8 @@ namespace { * Register a replacement for the default delete function. * * @param \Closure $callback - * @return void - * @static + * @return void + * @static */ public static function onDelete($callback) { @@ -22768,8 +22494,8 @@ namespace { * Call the given local model scopes. * * @param array|string $scopes - * @return static|mixed - * @static + * @return static|mixed + * @static */ public static function scopes($scopes) { @@ -22780,8 +22506,8 @@ namespace { /** * Apply the scopes to the Eloquent builder instance and return it. * - * @return static - * @static + * @return static + * @static */ public static function applyScopes() { @@ -22793,8 +22519,8 @@ namespace { * Prevent the specified relations from being eager loaded. * * @param mixed $relations - * @return \Illuminate\Database\Eloquent\Builder|static - * @static + * @return \Illuminate\Database\Eloquent\Builder|static + * @static */ public static function without($relations) { @@ -22806,8 +22532,8 @@ namespace { * Set the relationships that should be eager loaded while removing any previously added eager loading specifications. * * @param mixed $relations - * @return \Illuminate\Database\Eloquent\Builder|static - * @static + * @return \Illuminate\Database\Eloquent\Builder|static + * @static */ public static function withOnly($relations) { @@ -22819,8 +22545,8 @@ namespace { * Create a new instance of the model being queried. * * @param array $attributes - * @return \Illuminate\Database\Eloquent\Model|static - * @static + * @return \Illuminate\Database\Eloquent\Model|static + * @static */ public static function newModelInstance($attributes = []) { @@ -22832,8 +22558,8 @@ namespace { * Apply query-time casts to the model instance. * * @param array $casts - * @return \Illuminate\Database\Eloquent\Builder|static - * @static + * @return \Illuminate\Database\Eloquent\Builder|static + * @static */ public static function withCasts($casts) { @@ -22844,8 +22570,8 @@ namespace { /** * Get the underlying query builder instance. * - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function getQuery() { @@ -22857,8 +22583,8 @@ namespace { * Set the underlying query builder instance. * * @param \Illuminate\Database\Query\Builder $query - * @return \Illuminate\Database\Eloquent\Builder|static - * @static + * @return \Illuminate\Database\Eloquent\Builder|static + * @static */ public static function setQuery($query) { @@ -22869,8 +22595,8 @@ namespace { /** * Get a base query builder instance. * - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function toBase() { @@ -22881,8 +22607,8 @@ namespace { /** * Get the relationships being eagerly loaded. * - * @return array - * @static + * @return array + * @static */ public static function getEagerLoads() { @@ -22894,8 +22620,8 @@ namespace { * Set the relationships being eagerly loaded. * * @param array $eagerLoad - * @return \Illuminate\Database\Eloquent\Builder|static - * @static + * @return \Illuminate\Database\Eloquent\Builder|static + * @static */ public static function setEagerLoads($eagerLoad) { @@ -22906,8 +22632,8 @@ namespace { /** * Get the model instance being queried. * - * @return \Illuminate\Database\Eloquent\Model|static - * @static + * @return \Illuminate\Database\Eloquent\Model|static + * @static */ public static function getModel() { @@ -22919,8 +22645,8 @@ namespace { * Set a model instance for the model being queried. * * @param \Illuminate\Database\Eloquent\Model $model - * @return \Illuminate\Database\Eloquent\Builder|static - * @static + * @return \Illuminate\Database\Eloquent\Builder|static + * @static */ public static function setModel($model) { @@ -22932,8 +22658,8 @@ namespace { * Get the given macro by name. * * @param string $name - * @return \Closure - * @static + * @return \Closure + * @static */ public static function getMacro($name) { @@ -22945,8 +22671,8 @@ namespace { * Checks if a macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -22958,8 +22684,8 @@ namespace { * Get the given global macro by name. * * @param string $name - * @return \Closure - * @static + * @return \Closure + * @static */ public static function getGlobalMacro($name) { @@ -22970,8 +22696,8 @@ namespace { * Checks if a global macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasGlobalMacro($name) { @@ -22981,8 +22707,8 @@ namespace { /** * Clone the Eloquent query builder. * - * @return static - * @static + * @return static + * @static */ public static function clone() { @@ -22998,9 +22724,9 @@ namespace { * @param int $count * @param string $boolean * @param \Closure|null $callback - * @return \Illuminate\Database\Eloquent\Builder|static + * @return \Illuminate\Database\Eloquent\Builder|static * @throws \RuntimeException - * @static + * @static */ public static function has($relation, $operator = '>=', $count = 1, $boolean = 'and', $callback = null) { @@ -23014,8 +22740,8 @@ namespace { * @param string $relation * @param string $operator * @param int $count - * @return \Illuminate\Database\Eloquent\Builder|static - * @static + * @return \Illuminate\Database\Eloquent\Builder|static + * @static */ public static function orHas($relation, $operator = '>=', $count = 1) { @@ -23029,8 +22755,8 @@ namespace { * @param string $relation * @param string $boolean * @param \Closure|null $callback - * @return \Illuminate\Database\Eloquent\Builder|static - * @static + * @return \Illuminate\Database\Eloquent\Builder|static + * @static */ public static function doesntHave($relation, $boolean = 'and', $callback = null) { @@ -23042,8 +22768,8 @@ namespace { * Add a relationship count / exists condition to the query with an "or". * * @param string $relation - * @return \Illuminate\Database\Eloquent\Builder|static - * @static + * @return \Illuminate\Database\Eloquent\Builder|static + * @static */ public static function orDoesntHave($relation) { @@ -23058,8 +22784,8 @@ namespace { * @param \Closure|null $callback * @param string $operator * @param int $count - * @return \Illuminate\Database\Eloquent\Builder|static - * @static + * @return \Illuminate\Database\Eloquent\Builder|static + * @static */ public static function whereHas($relation, $callback = null, $operator = '>=', $count = 1) { @@ -23074,8 +22800,8 @@ namespace { * @param \Closure|null $callback * @param string $operator * @param int $count - * @return \Illuminate\Database\Eloquent\Builder|static - * @static + * @return \Illuminate\Database\Eloquent\Builder|static + * @static */ public static function orWhereHas($relation, $callback = null, $operator = '>=', $count = 1) { @@ -23088,8 +22814,8 @@ namespace { * * @param string $relation * @param \Closure|null $callback - * @return \Illuminate\Database\Eloquent\Builder|static - * @static + * @return \Illuminate\Database\Eloquent\Builder|static + * @static */ public static function whereDoesntHave($relation, $callback = null) { @@ -23102,8 +22828,8 @@ namespace { * * @param string $relation * @param \Closure|null $callback - * @return \Illuminate\Database\Eloquent\Builder|static - * @static + * @return \Illuminate\Database\Eloquent\Builder|static + * @static */ public static function orWhereDoesntHave($relation, $callback = null) { @@ -23120,8 +22846,8 @@ namespace { * @param int $count * @param string $boolean * @param \Closure|null $callback - * @return \Illuminate\Database\Eloquent\Builder|static - * @static + * @return \Illuminate\Database\Eloquent\Builder|static + * @static */ public static function hasMorph($relation, $types, $operator = '>=', $count = 1, $boolean = 'and', $callback = null) { @@ -23136,8 +22862,8 @@ namespace { * @param string|array $types * @param string $operator * @param int $count - * @return \Illuminate\Database\Eloquent\Builder|static - * @static + * @return \Illuminate\Database\Eloquent\Builder|static + * @static */ public static function orHasMorph($relation, $types, $operator = '>=', $count = 1) { @@ -23152,8 +22878,8 @@ namespace { * @param string|array $types * @param string $boolean * @param \Closure|null $callback - * @return \Illuminate\Database\Eloquent\Builder|static - * @static + * @return \Illuminate\Database\Eloquent\Builder|static + * @static */ public static function doesntHaveMorph($relation, $types, $boolean = 'and', $callback = null) { @@ -23166,8 +22892,8 @@ namespace { * * @param \Illuminate\Database\Eloquent\Relations\MorphTo|string $relation * @param string|array $types - * @return \Illuminate\Database\Eloquent\Builder|static - * @static + * @return \Illuminate\Database\Eloquent\Builder|static + * @static */ public static function orDoesntHaveMorph($relation, $types) { @@ -23183,8 +22909,8 @@ namespace { * @param \Closure|null $callback * @param string $operator * @param int $count - * @return \Illuminate\Database\Eloquent\Builder|static - * @static + * @return \Illuminate\Database\Eloquent\Builder|static + * @static */ public static function whereHasMorph($relation, $types, $callback = null, $operator = '>=', $count = 1) { @@ -23200,8 +22926,8 @@ namespace { * @param \Closure|null $callback * @param string $operator * @param int $count - * @return \Illuminate\Database\Eloquent\Builder|static - * @static + * @return \Illuminate\Database\Eloquent\Builder|static + * @static */ public static function orWhereHasMorph($relation, $types, $callback = null, $operator = '>=', $count = 1) { @@ -23215,8 +22941,8 @@ namespace { * @param \Illuminate\Database\Eloquent\Relations\MorphTo|string $relation * @param string|array $types * @param \Closure|null $callback - * @return \Illuminate\Database\Eloquent\Builder|static - * @static + * @return \Illuminate\Database\Eloquent\Builder|static + * @static */ public static function whereDoesntHaveMorph($relation, $types, $callback = null) { @@ -23230,8 +22956,8 @@ namespace { * @param \Illuminate\Database\Eloquent\Relations\MorphTo|string $relation * @param string|array $types * @param \Closure|null $callback - * @return \Illuminate\Database\Eloquent\Builder|static - * @static + * @return \Illuminate\Database\Eloquent\Builder|static + * @static */ public static function orWhereDoesntHaveMorph($relation, $types, $callback = null) { @@ -23246,8 +22972,8 @@ namespace { * @param \Closure|string|array|\Illuminate\Database\Query\Expression $column * @param mixed $operator * @param mixed $value - * @return \Illuminate\Database\Eloquent\Builder|static - * @static + * @return \Illuminate\Database\Eloquent\Builder|static + * @static */ public static function whereRelation($relation, $column, $operator = null, $value = null) { @@ -23262,8 +22988,8 @@ namespace { * @param \Closure|string|array|\Illuminate\Database\Query\Expression $column * @param mixed $operator * @param mixed $value - * @return \Illuminate\Database\Eloquent\Builder|static - * @static + * @return \Illuminate\Database\Eloquent\Builder|static + * @static */ public static function orWhereRelation($relation, $column, $operator = null, $value = null) { @@ -23279,8 +23005,8 @@ namespace { * @param \Closure|string|array|\Illuminate\Database\Query\Expression $column * @param mixed $operator * @param mixed $value - * @return \Illuminate\Database\Eloquent\Builder|static - * @static + * @return \Illuminate\Database\Eloquent\Builder|static + * @static */ public static function whereMorphRelation($relation, $types, $column, $operator = null, $value = null) { @@ -23296,8 +23022,8 @@ namespace { * @param \Closure|string|array|\Illuminate\Database\Query\Expression $column * @param mixed $operator * @param mixed $value - * @return \Illuminate\Database\Eloquent\Builder|static - * @static + * @return \Illuminate\Database\Eloquent\Builder|static + * @static */ public static function orWhereMorphRelation($relation, $types, $column, $operator = null, $value = null) { @@ -23310,8 +23036,8 @@ namespace { * * @param \Illuminate\Database\Eloquent\Relations\MorphTo|string $relation * @param \Illuminate\Database\Eloquent\Model|string $model - * @return \Illuminate\Database\Eloquent\Builder|static - * @static + * @return \Illuminate\Database\Eloquent\Builder|static + * @static */ public static function whereMorphedTo($relation, $model, $boolean = 'and') { @@ -23324,8 +23050,8 @@ namespace { * * @param \Illuminate\Database\Eloquent\Relations\MorphTo|string $relation * @param \Illuminate\Database\Eloquent\Model|string $model - * @return \Illuminate\Database\Eloquent\Builder|static - * @static + * @return \Illuminate\Database\Eloquent\Builder|static + * @static */ public static function orWhereMorphedTo($relation, $model) { @@ -23339,9 +23065,9 @@ namespace { * @param \Illuminate\Database\Eloquent\Model $related * @param string $relationship * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder|static + * @return \Illuminate\Database\Eloquent\Builder|static * @throws \RuntimeException - * @static + * @static */ public static function whereBelongsTo($related, $relationshipName = null, $boolean = 'and') { @@ -23354,9 +23080,9 @@ namespace { * * @param \Illuminate\Database\Eloquent\Model $related * @param string $relationship - * @return \Illuminate\Database\Eloquent\Builder|static + * @return \Illuminate\Database\Eloquent\Builder|static * @throws \RuntimeException - * @static + * @static */ public static function orWhereBelongsTo($related, $relationshipName = null) { @@ -23370,8 +23096,8 @@ namespace { * @param mixed $relations * @param string $column * @param string $function - * @return \Illuminate\Database\Eloquent\Builder|static - * @static + * @return \Illuminate\Database\Eloquent\Builder|static + * @static */ public static function withAggregate($relations, $column, $function = null) { @@ -23383,8 +23109,8 @@ namespace { * Add subselect queries to count the relations. * * @param mixed $relations - * @return \Illuminate\Database\Eloquent\Builder|static - * @static + * @return \Illuminate\Database\Eloquent\Builder|static + * @static */ public static function withCount($relations) { @@ -23397,8 +23123,8 @@ namespace { * * @param string|array $relation * @param string $column - * @return \Illuminate\Database\Eloquent\Builder|static - * @static + * @return \Illuminate\Database\Eloquent\Builder|static + * @static */ public static function withMax($relation, $column) { @@ -23411,8 +23137,8 @@ namespace { * * @param string|array $relation * @param string $column - * @return \Illuminate\Database\Eloquent\Builder|static - * @static + * @return \Illuminate\Database\Eloquent\Builder|static + * @static */ public static function withMin($relation, $column) { @@ -23425,8 +23151,8 @@ namespace { * * @param string|array $relation * @param string $column - * @return \Illuminate\Database\Eloquent\Builder|static - * @static + * @return \Illuminate\Database\Eloquent\Builder|static + * @static */ public static function withSum($relation, $column) { @@ -23439,8 +23165,8 @@ namespace { * * @param string|array $relation * @param string $column - * @return \Illuminate\Database\Eloquent\Builder|static - * @static + * @return \Illuminate\Database\Eloquent\Builder|static + * @static */ public static function withAvg($relation, $column) { @@ -23452,8 +23178,8 @@ namespace { * Add subselect queries to include the existence of related models. * * @param string|array $relation - * @return \Illuminate\Database\Eloquent\Builder|static - * @static + * @return \Illuminate\Database\Eloquent\Builder|static + * @static */ public static function withExists($relation) { @@ -23465,8 +23191,8 @@ namespace { * Merge the where constraints from another query to the current query. * * @param \Illuminate\Database\Eloquent\Builder $from - * @return \Illuminate\Database\Eloquent\Builder|static - * @static + * @return \Illuminate\Database\Eloquent\Builder|static + * @static */ public static function mergeConstraintsFrom($from) { @@ -23479,8 +23205,8 @@ namespace { * * @param int $count * @param callable $callback - * @return bool - * @static + * @return bool + * @static */ public static function chunk($count, $callback) { @@ -23493,8 +23219,8 @@ namespace { * * @param callable $callback * @param int $count - * @return \Illuminate\Support\Collection - * @static + * @return \Illuminate\Support\Collection + * @static */ public static function chunkMap($callback, $count = 1000) { @@ -23507,9 +23233,9 @@ namespace { * * @param callable $callback * @param int $count - * @return bool + * @return bool * @throws \RuntimeException - * @static + * @static */ public static function each($callback, $count = 1000) { @@ -23524,8 +23250,8 @@ namespace { * @param callable $callback * @param string|null $column * @param string|null $alias - * @return bool - * @static + * @return bool + * @static */ public static function chunkById($count, $callback, $column = null, $alias = null) { @@ -23540,8 +23266,8 @@ namespace { * @param int $count * @param string|null $column * @param string|null $alias - * @return bool - * @static + * @return bool + * @static */ public static function eachById($callback, $count = 1000, $column = null, $alias = null) { @@ -23553,9 +23279,9 @@ namespace { * Query lazily, by chunks of the given size. * * @param int $chunkSize - * @return \Illuminate\Support\LazyCollection + * @return \Illuminate\Support\LazyCollection * @throws \InvalidArgumentException - * @static + * @static */ public static function lazy($chunkSize = 1000) { @@ -23569,9 +23295,9 @@ namespace { * @param int $chunkSize * @param string|null $column * @param string|null $alias - * @return \Illuminate\Support\LazyCollection + * @return \Illuminate\Support\LazyCollection * @throws \InvalidArgumentException - * @static + * @static */ public static function lazyById($chunkSize = 1000, $column = null, $alias = null) { @@ -23585,9 +23311,9 @@ namespace { * @param int $chunkSize * @param string|null $column * @param string|null $alias - * @return \Illuminate\Support\LazyCollection + * @return \Illuminate\Support\LazyCollection * @throws \InvalidArgumentException - * @static + * @static */ public static function lazyByIdDesc($chunkSize = 1000, $column = null, $alias = null) { @@ -23599,8 +23325,8 @@ namespace { * Execute the query and get the first result. * * @param array|string $columns - * @return \Illuminate\Database\Eloquent\Model|object|static|null - * @static + * @return \Illuminate\Database\Eloquent\Model|object|static|null + * @static */ public static function first($columns = []) { @@ -23612,10 +23338,10 @@ namespace { * Execute the query and get the first result if it's the sole matching record. * * @param array|string $columns - * @return \Illuminate\Database\Eloquent\Model|object|static|null + * @return \Illuminate\Database\Eloquent\Model|object|static|null * @throws \Illuminate\Database\RecordsNotFoundException * @throws \Illuminate\Database\MultipleRecordsFoundException - * @static + * @static */ public static function baseSole($columns = []) { @@ -23627,8 +23353,8 @@ namespace { * Pass the query to a given callback. * * @param callable $callback - * @return $this|mixed - * @static + * @return $this|mixed + * @static */ public static function tap($callback) { @@ -23642,8 +23368,8 @@ namespace { * @param mixed $value * @param callable $callback * @param callable|null $default - * @return $this|mixed - * @static + * @return $this|mixed + * @static */ public static function when($value, $callback, $default = null) { @@ -23657,8 +23383,8 @@ namespace { * @param mixed $value * @param callable $callback * @param callable|null $default - * @return $this|mixed - * @static + * @return $this|mixed + * @static */ public static function unless($value, $callback, $default = null) { @@ -23667,13 +23393,11 @@ namespace { } /** - * - * * @see \Maatwebsite\Excel\Mixins\DownloadQueryMacro::__invoke() * @param string $fileName * @param string|null $writerType * @param mixed $withHeadings - * @static + * @static */ public static function downloadExcel($fileName, $writerType = null, $withHeadings = false) { @@ -23681,14 +23405,12 @@ namespace { } /** - * - * * @see \Maatwebsite\Excel\Mixins\StoreQueryMacro::__invoke() * @param string $filePath * @param string|null $disk * @param string|null $writerType * @param mixed $withHeadings - * @static + * @static */ public static function storeExcel($filePath, $disk = null, $writerType = null, $withHeadings = false) { @@ -23696,13 +23418,11 @@ namespace { } /** - * - * * @see \Maatwebsite\Excel\Mixins\ImportMacro::__invoke() * @param string $filename * @param string|null $disk * @param string|null $readerType - * @static + * @static */ public static function import($filename, $disk = null, $readerType = null) { @@ -23710,14 +23430,12 @@ namespace { } /** - * - * * @see \Maatwebsite\Excel\Mixins\ImportAsMacro::__invoke() * @param string $filename * @param callable $mapping * @param string|null $disk * @param string|null $readerType - * @static + * @static */ public static function importAs($filename, $mapping, $disk = null, $readerType = null) { @@ -23728,8 +23446,8 @@ namespace { * Set the columns to be selected. * * @param array|mixed $columns - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function select($columns = []) { @@ -23742,9 +23460,9 @@ namespace { * * @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Eloquent\Builder|string $query * @param string $as - * @return \Illuminate\Database\Query\Builder + * @return \Illuminate\Database\Query\Builder * @throws \InvalidArgumentException - * @static + * @static */ public static function selectSub($query, $as) { @@ -23757,8 +23475,8 @@ namespace { * * @param string $expression * @param array $bindings - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function selectRaw($expression, $bindings = []) { @@ -23771,9 +23489,9 @@ namespace { * * @param \Closure|\Illuminate\Database\Query\Builder|string $query * @param string $as - * @return \Illuminate\Database\Query\Builder + * @return \Illuminate\Database\Query\Builder * @throws \InvalidArgumentException - * @static + * @static */ public static function fromSub($query, $as) { @@ -23786,8 +23504,8 @@ namespace { * * @param string $expression * @param mixed $bindings - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function fromRaw($expression, $bindings = []) { @@ -23799,8 +23517,8 @@ namespace { * Add a new select column to the query. * * @param array|mixed $column - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function addSelect($column) { @@ -23812,8 +23530,8 @@ namespace { * Force the query to only return distinct results. * * @param mixed $distinct - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function distinct() { @@ -23826,8 +23544,8 @@ namespace { * * @param \Closure|\Illuminate\Database\Query\Builder|string $table * @param string|null $as - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function from($table, $as = null) { @@ -23844,8 +23562,8 @@ namespace { * @param string|null $second * @param string $type * @param bool $where - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function join($table, $first, $operator = null, $second = null, $type = 'inner', $where = false) { @@ -23861,8 +23579,8 @@ namespace { * @param string $operator * @param string $second * @param string $type - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function joinWhere($table, $first, $operator, $second, $type = 'inner') { @@ -23880,9 +23598,9 @@ namespace { * @param string|null $second * @param string $type * @param bool $where - * @return \Illuminate\Database\Query\Builder + * @return \Illuminate\Database\Query\Builder * @throws \InvalidArgumentException - * @static + * @static */ public static function joinSub($query, $as, $first, $operator = null, $second = null, $type = 'inner', $where = false) { @@ -23897,8 +23615,8 @@ namespace { * @param \Closure|string $first * @param string|null $operator * @param string|null $second - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function leftJoin($table, $first, $operator = null, $second = null) { @@ -23913,8 +23631,8 @@ namespace { * @param \Closure|string $first * @param string $operator * @param string $second - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function leftJoinWhere($table, $first, $operator, $second) { @@ -23930,8 +23648,8 @@ namespace { * @param \Closure|string $first * @param string|null $operator * @param string|null $second - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function leftJoinSub($query, $as, $first, $operator = null, $second = null) { @@ -23946,8 +23664,8 @@ namespace { * @param \Closure|string $first * @param string|null $operator * @param string|null $second - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function rightJoin($table, $first, $operator = null, $second = null) { @@ -23962,8 +23680,8 @@ namespace { * @param \Closure|string $first * @param string $operator * @param string $second - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function rightJoinWhere($table, $first, $operator, $second) { @@ -23979,8 +23697,8 @@ namespace { * @param \Closure|string $first * @param string|null $operator * @param string|null $second - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function rightJoinSub($query, $as, $first, $operator = null, $second = null) { @@ -23995,8 +23713,8 @@ namespace { * @param \Closure|string|null $first * @param string|null $operator * @param string|null $second - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function crossJoin($table, $first = null, $operator = null, $second = null) { @@ -24009,8 +23727,8 @@ namespace { * * @param \Closure|\Illuminate\Database\Query\Builder|string $query * @param string $as - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function crossJoinSub($query, $as) { @@ -24023,8 +23741,8 @@ namespace { * * @param array $wheres * @param array $bindings - * @return void - * @static + * @return void + * @static */ public static function mergeWheres($wheres, $bindings) { @@ -24038,9 +23756,9 @@ namespace { * @param string $value * @param string $operator * @param bool $useDefault - * @return array + * @return array * @throws \InvalidArgumentException - * @static + * @static */ public static function prepareValueAndOperator($value, $operator, $useDefault = false) { @@ -24055,8 +23773,8 @@ namespace { * @param string|null $operator * @param string|null $second * @param string|null $boolean - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function whereColumn($first, $operator = null, $second = null, $boolean = 'and') { @@ -24070,8 +23788,8 @@ namespace { * @param string|array $first * @param string|null $operator * @param string|null $second - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function orWhereColumn($first, $operator = null, $second = null) { @@ -24085,8 +23803,8 @@ namespace { * @param string $sql * @param mixed $bindings * @param string $boolean - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function whereRaw($sql, $bindings = [], $boolean = 'and') { @@ -24099,8 +23817,8 @@ namespace { * * @param string $sql * @param mixed $bindings - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function orWhereRaw($sql, $bindings = []) { @@ -24115,8 +23833,8 @@ namespace { * @param mixed $values * @param string $boolean * @param bool $not - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function whereIn($column, $values, $boolean = 'and', $not = false) { @@ -24129,8 +23847,8 @@ namespace { * * @param string $column * @param mixed $values - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function orWhereIn($column, $values) { @@ -24144,8 +23862,8 @@ namespace { * @param string $column * @param mixed $values * @param string $boolean - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function whereNotIn($column, $values, $boolean = 'and') { @@ -24158,8 +23876,8 @@ namespace { * * @param string $column * @param mixed $values - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function orWhereNotIn($column, $values) { @@ -24174,8 +23892,8 @@ namespace { * @param \Illuminate\Contracts\Support\Arrayable|array $values * @param string $boolean * @param bool $not - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function whereIntegerInRaw($column, $values, $boolean = 'and', $not = false) { @@ -24188,8 +23906,8 @@ namespace { * * @param string $column * @param \Illuminate\Contracts\Support\Arrayable|array $values - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function orWhereIntegerInRaw($column, $values) { @@ -24203,8 +23921,8 @@ namespace { * @param string $column * @param \Illuminate\Contracts\Support\Arrayable|array $values * @param string $boolean - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function whereIntegerNotInRaw($column, $values, $boolean = 'and') { @@ -24217,8 +23935,8 @@ namespace { * * @param string $column * @param \Illuminate\Contracts\Support\Arrayable|array $values - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function orWhereIntegerNotInRaw($column, $values) { @@ -24232,8 +23950,8 @@ namespace { * @param string|array $columns * @param string $boolean * @param bool $not - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function whereNull($columns, $boolean = 'and', $not = false) { @@ -24245,8 +23963,8 @@ namespace { * Add an "or where null" clause to the query. * * @param string|array $column - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function orWhereNull($column) { @@ -24259,8 +23977,8 @@ namespace { * * @param string|array $columns * @param string $boolean - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function whereNotNull($columns, $boolean = 'and') { @@ -24275,8 +23993,8 @@ namespace { * @param array $values * @param string $boolean * @param bool $not - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function whereBetween($column, $values, $boolean = 'and', $not = false) { @@ -24291,8 +24009,8 @@ namespace { * @param array $values * @param string $boolean * @param bool $not - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function whereBetweenColumns($column, $values, $boolean = 'and', $not = false) { @@ -24305,8 +24023,8 @@ namespace { * * @param string $column * @param array $values - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function orWhereBetween($column, $values) { @@ -24319,8 +24037,8 @@ namespace { * * @param string $column * @param array $values - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function orWhereBetweenColumns($column, $values) { @@ -24334,8 +24052,8 @@ namespace { * @param string $column * @param array $values * @param string $boolean - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function whereNotBetween($column, $values, $boolean = 'and') { @@ -24349,8 +24067,8 @@ namespace { * @param string $column * @param array $values * @param string $boolean - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function whereNotBetweenColumns($column, $values, $boolean = 'and') { @@ -24363,8 +24081,8 @@ namespace { * * @param string $column * @param array $values - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function orWhereNotBetween($column, $values) { @@ -24377,8 +24095,8 @@ namespace { * * @param string $column * @param array $values - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function orWhereNotBetweenColumns($column, $values) { @@ -24390,8 +24108,8 @@ namespace { * Add an "or where not null" clause to the query. * * @param string $column - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function orWhereNotNull($column) { @@ -24406,8 +24124,8 @@ namespace { * @param string $operator * @param \DateTimeInterface|string|null $value * @param string $boolean - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function whereDate($column, $operator, $value = null, $boolean = 'and') { @@ -24421,8 +24139,8 @@ namespace { * @param string $column * @param string $operator * @param \DateTimeInterface|string|null $value - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function orWhereDate($column, $operator, $value = null) { @@ -24437,8 +24155,8 @@ namespace { * @param string $operator * @param \DateTimeInterface|string|null $value * @param string $boolean - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function whereTime($column, $operator, $value = null, $boolean = 'and') { @@ -24452,8 +24170,8 @@ namespace { * @param string $column * @param string $operator * @param \DateTimeInterface|string|null $value - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function orWhereTime($column, $operator, $value = null) { @@ -24468,8 +24186,8 @@ namespace { * @param string $operator * @param \DateTimeInterface|string|null $value * @param string $boolean - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function whereDay($column, $operator, $value = null, $boolean = 'and') { @@ -24483,8 +24201,8 @@ namespace { * @param string $column * @param string $operator * @param \DateTimeInterface|string|null $value - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function orWhereDay($column, $operator, $value = null) { @@ -24499,8 +24217,8 @@ namespace { * @param string $operator * @param \DateTimeInterface|string|null $value * @param string $boolean - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function whereMonth($column, $operator, $value = null, $boolean = 'and') { @@ -24514,8 +24232,8 @@ namespace { * @param string $column * @param string $operator * @param \DateTimeInterface|string|null $value - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function orWhereMonth($column, $operator, $value = null) { @@ -24530,8 +24248,8 @@ namespace { * @param string $operator * @param \DateTimeInterface|string|int|null $value * @param string $boolean - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function whereYear($column, $operator, $value = null, $boolean = 'and') { @@ -24545,8 +24263,8 @@ namespace { * @param string $column * @param string $operator * @param \DateTimeInterface|string|int|null $value - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function orWhereYear($column, $operator, $value = null) { @@ -24559,8 +24277,8 @@ namespace { * * @param \Closure $callback * @param string $boolean - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function whereNested($callback, $boolean = 'and') { @@ -24571,8 +24289,8 @@ namespace { /** * Create a new query instance for nested where condition. * - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function forNestedWhere() { @@ -24585,8 +24303,8 @@ namespace { * * @param \Illuminate\Database\Query\Builder $query * @param string $boolean - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function addNestedWhereQuery($query, $boolean = 'and') { @@ -24600,8 +24318,8 @@ namespace { * @param \Closure $callback * @param string $boolean * @param bool $not - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function whereExists($callback, $boolean = 'and', $not = false) { @@ -24614,8 +24332,8 @@ namespace { * * @param \Closure $callback * @param bool $not - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function orWhereExists($callback, $not = false) { @@ -24628,8 +24346,8 @@ namespace { * * @param \Closure $callback * @param string $boolean - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function whereNotExists($callback, $boolean = 'and') { @@ -24641,8 +24359,8 @@ namespace { * Add a where not exists clause to the query. * * @param \Closure $callback - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function orWhereNotExists($callback) { @@ -24656,8 +24374,8 @@ namespace { * @param \Illuminate\Database\Query\Builder $query * @param string $boolean * @param bool $not - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function addWhereExistsQuery($query, $boolean = 'and', $not = false) { @@ -24672,9 +24390,9 @@ namespace { * @param string $operator * @param array $values * @param string $boolean - * @return \Illuminate\Database\Query\Builder + * @return \Illuminate\Database\Query\Builder * @throws \InvalidArgumentException - * @static + * @static */ public static function whereRowValues($columns, $operator, $values, $boolean = 'and') { @@ -24688,8 +24406,8 @@ namespace { * @param array $columns * @param string $operator * @param array $values - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function orWhereRowValues($columns, $operator, $values) { @@ -24704,8 +24422,8 @@ namespace { * @param mixed $value * @param string $boolean * @param bool $not - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function whereJsonContains($column, $value, $boolean = 'and', $not = false) { @@ -24718,8 +24436,8 @@ namespace { * * @param string $column * @param mixed $value - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function orWhereJsonContains($column, $value) { @@ -24733,8 +24451,8 @@ namespace { * @param string $column * @param mixed $value * @param string $boolean - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function whereJsonDoesntContain($column, $value, $boolean = 'and') { @@ -24747,8 +24465,8 @@ namespace { * * @param string $column * @param mixed $value - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function orWhereJsonDoesntContain($column, $value) { @@ -24763,8 +24481,8 @@ namespace { * @param mixed $operator * @param mixed $value * @param string $boolean - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function whereJsonLength($column, $operator, $value = null, $boolean = 'and') { @@ -24778,8 +24496,8 @@ namespace { * @param string $column * @param mixed $operator * @param mixed $value - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function orWhereJsonLength($column, $operator, $value = null) { @@ -24792,8 +24510,8 @@ namespace { * * @param string $method * @param array $parameters - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function dynamicWhere($method, $parameters) { @@ -24807,8 +24525,8 @@ namespace { * @param string|string[] $columns * @param string $value * @param string $boolean - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function whereFullText($columns, $value, $options = [], $boolean = 'and') { @@ -24821,8 +24539,8 @@ namespace { * * @param string|string[] $columns * @param string $value - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function orWhereFullText($columns, $value, $options = []) { @@ -24834,8 +24552,8 @@ namespace { * Add a "group by" clause to the query. * * @param array|string $groups - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function groupBy(...$groups) { @@ -24848,8 +24566,8 @@ namespace { * * @param string $sql * @param array $bindings - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function groupByRaw($sql, $bindings = []) { @@ -24864,8 +24582,8 @@ namespace { * @param string|null $operator * @param string|null $value * @param string $boolean - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function having($column, $operator = null, $value = null, $boolean = 'and') { @@ -24879,8 +24597,8 @@ namespace { * @param string $column * @param string|null $operator * @param string|null $value - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function orHaving($column, $operator = null, $value = null) { @@ -24895,8 +24613,8 @@ namespace { * @param array $values * @param string $boolean * @param bool $not - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function havingBetween($column, $values, $boolean = 'and', $not = false) { @@ -24910,8 +24628,8 @@ namespace { * @param string $sql * @param array $bindings * @param string $boolean - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function havingRaw($sql, $bindings = [], $boolean = 'and') { @@ -24924,8 +24642,8 @@ namespace { * * @param string $sql * @param array $bindings - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function orHavingRaw($sql, $bindings = []) { @@ -24938,9 +24656,9 @@ namespace { * * @param \Closure|\Illuminate\Database\Eloquent\Builder|\Illuminate\Database\Query\Builder|\Illuminate\Database\Query\Expression|string $column * @param string $direction - * @return \Illuminate\Database\Query\Builder + * @return \Illuminate\Database\Query\Builder * @throws \InvalidArgumentException - * @static + * @static */ public static function orderBy($column, $direction = 'asc') { @@ -24952,8 +24670,8 @@ namespace { * Add a descending "order by" clause to the query. * * @param \Closure|\Illuminate\Database\Eloquent\Builder|\Illuminate\Database\Query\Builder|\Illuminate\Database\Query\Expression|string $column - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function orderByDesc($column) { @@ -24965,8 +24683,8 @@ namespace { * Put the query's results in random order. * * @param string $seed - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function inRandomOrder($seed = '') { @@ -24979,8 +24697,8 @@ namespace { * * @param string $sql * @param array $bindings - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function orderByRaw($sql, $bindings = []) { @@ -24992,8 +24710,8 @@ namespace { * Alias to set the "offset" value of the query. * * @param int $value - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function skip($value) { @@ -25005,8 +24723,8 @@ namespace { * Set the "offset" value of the query. * * @param int $value - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function offset($value) { @@ -25018,8 +24736,8 @@ namespace { * Alias to set the "limit" value of the query. * * @param int $value - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function take($value) { @@ -25031,8 +24749,8 @@ namespace { * Set the "limit" value of the query. * * @param int $value - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function limit($value) { @@ -25045,8 +24763,8 @@ namespace { * * @param int $page * @param int $perPage - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function forPage($page, $perPage = 15) { @@ -25060,8 +24778,8 @@ namespace { * @param int $perPage * @param int|null $lastId * @param string $column - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function forPageBeforeId($perPage = 15, $lastId = 0, $column = 'id') { @@ -25075,8 +24793,8 @@ namespace { * @param int $perPage * @param int|null $lastId * @param string $column - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function forPageAfterId($perPage = 15, $lastId = 0, $column = 'id') { @@ -25089,8 +24807,8 @@ namespace { * * @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Query\Expression|string|null $column * @param string $direction - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function reorder($column = null, $direction = 'asc') { @@ -25103,8 +24821,8 @@ namespace { * * @param \Illuminate\Database\Query\Builder|\Closure $query * @param bool $all - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function union($query, $all = false) { @@ -25116,8 +24834,8 @@ namespace { * Add a union all statement to the query. * * @param \Illuminate\Database\Query\Builder|\Closure $query - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function unionAll($query) { @@ -25129,8 +24847,8 @@ namespace { * Lock the selected rows in the table. * * @param string|bool $value - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function lock($value = true) { @@ -25141,8 +24859,8 @@ namespace { /** * Lock the selected rows in the table for updating. * - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function lockForUpdate() { @@ -25153,8 +24871,8 @@ namespace { /** * Share lock the selected rows in the table. * - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function sharedLock() { @@ -25166,8 +24884,8 @@ namespace { * Register a closure to be invoked before the query is executed. * * @param callable $callback - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function beforeQuery($callback) { @@ -25178,8 +24896,8 @@ namespace { /** * Invoke the "before query" modification callbacks. * - * @return void - * @static + * @return void + * @static */ public static function applyBeforeQueryCallbacks() { @@ -25190,8 +24908,8 @@ namespace { /** * Get the SQL representation of the query. * - * @return string - * @static + * @return string + * @static */ public static function toSql() { @@ -25203,8 +24921,8 @@ namespace { * Get the count of the total records for the paginator. * * @param array $columns - * @return int - * @static + * @return int + * @static */ public static function getCountForPagination($columns = []) { @@ -25217,8 +24935,8 @@ namespace { * * @param string $column * @param string $glue - * @return string - * @static + * @return string + * @static */ public static function implode($column, $glue = '') { @@ -25229,8 +24947,8 @@ namespace { /** * Determine if any rows exist for the current query. * - * @return bool - * @static + * @return bool + * @static */ public static function exists() { @@ -25241,8 +24959,8 @@ namespace { /** * Determine if no rows exist for the current query. * - * @return bool - * @static + * @return bool + * @static */ public static function doesntExist() { @@ -25254,8 +24972,8 @@ namespace { * Execute the given callback if no rows exist for the current query. * * @param \Closure $callback - * @return mixed - * @static + * @return mixed + * @static */ public static function existsOr($callback) { @@ -25267,8 +24985,8 @@ namespace { * Execute the given callback if rows exist for the current query. * * @param \Closure $callback - * @return mixed - * @static + * @return mixed + * @static */ public static function doesntExistOr($callback) { @@ -25280,8 +24998,8 @@ namespace { * Retrieve the "count" result of the query. * * @param string $columns - * @return int - * @static + * @return int + * @static */ public static function count($columns = '*') { @@ -25293,8 +25011,8 @@ namespace { * Retrieve the minimum value of a given column. * * @param string $column - * @return mixed - * @static + * @return mixed + * @static */ public static function min($column) { @@ -25306,8 +25024,8 @@ namespace { * Retrieve the maximum value of a given column. * * @param string $column - * @return mixed - * @static + * @return mixed + * @static */ public static function max($column) { @@ -25319,8 +25037,8 @@ namespace { * Retrieve the sum of the values of a given column. * * @param string $column - * @return mixed - * @static + * @return mixed + * @static */ public static function sum($column) { @@ -25332,8 +25050,8 @@ namespace { * Retrieve the average of the values of a given column. * * @param string $column - * @return mixed - * @static + * @return mixed + * @static */ public static function avg($column) { @@ -25345,8 +25063,8 @@ namespace { * Alias for the "avg" method. * * @param string $column - * @return mixed - * @static + * @return mixed + * @static */ public static function average($column) { @@ -25359,8 +25077,8 @@ namespace { * * @param string $function * @param array $columns - * @return mixed - * @static + * @return mixed + * @static */ public static function aggregate($function, $columns = []) { @@ -25373,8 +25091,8 @@ namespace { * * @param string $function * @param array $columns - * @return float|int - * @static + * @return float|int + * @static */ public static function numericAggregate($function, $columns = []) { @@ -25386,8 +25104,8 @@ namespace { * Insert new records into the database. * * @param array $values - * @return bool - * @static + * @return bool + * @static */ public static function insert($values) { @@ -25399,8 +25117,8 @@ namespace { * Insert new records into the database while ignoring errors. * * @param array $values - * @return int - * @static + * @return int + * @static */ public static function insertOrIgnore($values) { @@ -25413,8 +25131,8 @@ namespace { * * @param array $values * @param string|null $sequence - * @return int - * @static + * @return int + * @static */ public static function insertGetId($values, $sequence = null) { @@ -25427,8 +25145,8 @@ namespace { * * @param array $columns * @param \Closure|\Illuminate\Database\Query\Builder|string $query - * @return int - * @static + * @return int + * @static */ public static function insertUsing($columns, $query) { @@ -25440,8 +25158,8 @@ namespace { * Update records in a PostgreSQL database using the update from syntax. * * @param array $values - * @return int - * @static + * @return int + * @static */ public static function updateFrom($values) { @@ -25454,8 +25172,8 @@ namespace { * * @param array $attributes * @param array $values - * @return bool - * @static + * @return bool + * @static */ public static function updateOrInsert($attributes, $values = []) { @@ -25466,8 +25184,8 @@ namespace { /** * Run a truncate statement on the table. * - * @return void - * @static + * @return void + * @static */ public static function truncate() { @@ -25479,8 +25197,8 @@ namespace { * Create a raw database expression. * * @param mixed $value - * @return \Illuminate\Database\Query\Expression - * @static + * @return \Illuminate\Database\Query\Expression + * @static */ public static function raw($value) { @@ -25491,8 +25209,8 @@ namespace { /** * Get the current query value bindings in a flattened array. * - * @return array - * @static + * @return array + * @static */ public static function getBindings() { @@ -25503,8 +25221,8 @@ namespace { /** * Get the raw array of bindings. * - * @return array - * @static + * @return array + * @static */ public static function getRawBindings() { @@ -25517,9 +25235,9 @@ namespace { * * @param array $bindings * @param string $type - * @return \Illuminate\Database\Query\Builder + * @return \Illuminate\Database\Query\Builder * @throws \InvalidArgumentException - * @static + * @static */ public static function setBindings($bindings, $type = 'where') { @@ -25532,9 +25250,9 @@ namespace { * * @param mixed $value * @param string $type - * @return \Illuminate\Database\Query\Builder + * @return \Illuminate\Database\Query\Builder * @throws \InvalidArgumentException - * @static + * @static */ public static function addBinding($value, $type = 'where') { @@ -25546,8 +25264,8 @@ namespace { * Cast the given binding value. * * @param mixed $value - * @return mixed - * @static + * @return mixed + * @static */ public static function castBinding($value) { @@ -25559,8 +25277,8 @@ namespace { * Merge an array of bindings into our bindings. * * @param \Illuminate\Database\Query\Builder $query - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function mergeBindings($query) { @@ -25572,8 +25290,8 @@ namespace { * Remove all of the expressions from a list of bindings. * * @param array $bindings - * @return array - * @static + * @return array + * @static */ public static function cleanBindings($bindings) { @@ -25584,8 +25302,8 @@ namespace { /** * Get the database query processor instance. * - * @return \Illuminate\Database\Query\Processors\Processor - * @static + * @return \Illuminate\Database\Query\Processors\Processor + * @static */ public static function getProcessor() { @@ -25596,8 +25314,8 @@ namespace { /** * Get the query grammar instance. * - * @return \Illuminate\Database\Query\Grammars\Grammar - * @static + * @return \Illuminate\Database\Query\Grammars\Grammar + * @static */ public static function getGrammar() { @@ -25608,8 +25326,8 @@ namespace { /** * Use the write pdo for query. * - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function useWritePdo() { @@ -25621,8 +25339,8 @@ namespace { * Clone the query without the given properties. * * @param array $properties - * @return static - * @static + * @return static + * @static */ public static function cloneWithout($properties) { @@ -25634,8 +25352,8 @@ namespace { * Clone the query without the given bindings. * * @param array $except - * @return static - * @static + * @return static + * @static */ public static function cloneWithoutBindings($except) { @@ -25646,8 +25364,8 @@ namespace { /** * Dump the current SQL and bindings. * - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function dump() { @@ -25658,8 +25376,8 @@ namespace { /** * Die and dump the current SQL and bindings. * - * @return never - * @static + * @return never + * @static */ public static function dd() { @@ -25670,8 +25388,8 @@ namespace { /** * Explains the query. * - * @return \Illuminate\Support\Collection - * @static + * @return \Illuminate\Support\Collection + * @static */ public static function explain() { @@ -25684,8 +25402,8 @@ namespace { * * @param string $name * @param object|callable $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -25697,9 +25415,9 @@ namespace { * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -25709,8 +25427,8 @@ namespace { /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -25722,9 +25440,9 @@ namespace { * * @param string $method * @param array $parameters - * @return mixed + * @return mixed * @throws \BadMethodCallException - * @static + * @static */ public static function macroCall($method, $parameters) { diff --git a/_ide_helper_models.php b/_ide_helper_models.php index 5e450ad..7ea5f1d 100644 --- a/_ide_helper_models.php +++ b/_ide_helper_models.php @@ -1,6 +1,7 @@ middleware(['admin', '2fa']); $this->bookingRepo = $bookingRepo; $this->custRepo = $custRepo; - } public function index($step = false) @@ -45,11 +44,10 @@ class BookingController extends Controller public function detail($id) { - if($id == "new") { + if ($id == "new") { $booking = new Booking(); $id = 'new'; - - }else{ + } else { $booking = Booking::findOrFail($id); $booking->getPassolutionPDF(true); $id = $booking->id; @@ -60,70 +58,91 @@ class BookingController extends Controller 'show_modal_quill_preview' => true, ]; return view('booking.detail', $data); - } public function store($id) { - // \Session()->flash('alert-save', '1'); + // \Session()->flash('alert-save', '1'); $data = Request::all(); - if($id === "new") { + if ($id === "new") { $booking = new Booking(); - }else{ + } else { $booking = Booking::findOrFail($id); } - if($data['action'] === 'deleteAllChecked'){ - if(!isset($data['draft_item_delete']) || !$data['draft_item_delete']){ + if ($data['action'] === 'convertArrangementsToDrafts') { + if (!$booking->arrangements || $booking->arrangements->count() == 0) { + \Session()->flash('alert-warning', __('Keine Arrangements zum Konvertieren vorhanden')); + return redirect(route('booking_detail', [$booking->id]) . "#collapseBookingOrganisation"); + } + + $this->bookingRepo->convertArrangementsToDrafts($booking); + \Session()->flash('alert-success', __('Arrangements wurden erfolgreich in die neue Draft-Struktur übernommen')); + return redirect(route('booking_detail', [$booking->id]) . "#collapseBookingOrganisation"); + } + + if ($data['action'] === 'loadDraftToBooking') { + if (!isset($data['draft_id']) || !$data['draft_id']) { + \Session()->flash('alert-error', __('Keine Vorlage ausgewählt')); + return redirect(route('booking_detail', [$booking->id]) . "#collapseBookingOrganisation"); + } + + $this->bookingRepo->loadDraftToBooking($booking->id, $data['draft_id']); + \Session()->flash('alert-success', __('Vorlage wurde erfolgreich geladen')); + return redirect(route('booking_detail', [$booking->id]) . "#collapseBookingOrganisation"); + } + + if ($data['action'] === 'deleteAllChecked') { + if (!isset($data['draft_item_delete']) || !$data['draft_item_delete']) { \Session()->flash('alert-error', 'Es wurden keine Leistungen ausgewählt'); - return redirect(route('booking_detail', [$booking->id])."#collapseBookingOrganisation"); + return redirect(route('booking_detail', [$booking->id]) . "#collapseBookingOrganisation"); } foreach ($data['draft_item_delete'] as $draft_item_delete_id => $v) { $booking_draft_item = BookingDraftItem::findOrFail($draft_item_delete_id); - if($booking_draft_item->booking_id === $booking->id){ + if ($booking_draft_item->booking_id === $booking->id) { $booking_draft_item->delete(); } } $booking->calculate_price_total(); - return redirect(route('booking_detail', [$booking->id])."#collapseBookingOrganisation"); + return redirect(route('booking_detail', [$booking->id]) . "#collapseBookingOrganisation"); } - if($data['action'] === 'save_notice'){ + if ($data['action'] === 'save_notice') { $booking = $this->bookingRepo->updateNotice($id, $data); \Session()->flash('alert-save', '1'); - return redirect(route('booking_detail', [$booking->id])."#collapseBookingNotice"); + return redirect(route('booking_detail', [$booking->id]) . "#collapseBookingNotice"); } - if($data['action'] === 'edit_notice'){ + if ($data['action'] === 'edit_notice') { $booking = $this->bookingRepo->updateNotice($id, $data); \Session()->flash('alert-save', '1'); - return redirect(route('booking_detail', [$booking->id])."#collapseBookingNotice"); + return redirect(route('booking_detail', [$booking->id]) . "#collapseBookingNotice"); } - if(strpos($data['action'], 'createPDF') !== false) { + if (strpos($data['action'], 'createPDF') !== false) { $bookingPDF = new BookingPDFRepository($booking); $bookingPDF->createPDF($id, $data); \Session()->flash('alert-success', 'PDF Datei erstellt'); - return redirect(route('booking_detail', [$booking->id])."#collapseBookingFiles"); + return redirect(route('booking_detail', [$booking->id]) . "#collapseBookingFiles"); } $redirect = route('booking_detail', [$booking->id]); - $i= 1; - if($data['action'] === 'addItemUp'){ + $i = 1; + if ($data['action'] === 'addItemUp') { $travel_program_id = null; $request_date = null; $comfort = 0; - if(count($booking->booking_draft_items)){ + if (count($booking->booking_draft_items)) { $first_booking_draft_item = $booking->booking_draft_items()->first(); $travel_program_id = $first_booking_draft_item->travel_program_id; $request_date = $first_booking_draft_item->request_date; $comfort = $first_booking_draft_item->comfort; } $add_draft_items_up_number = isset($data['add_draft_items_up_number']) ? intval($data['add_draft_items_up_number']) : 1; - for ($j=0; $j < $add_draft_items_up_number; $j++) { + for ($j = 0; $j < $add_draft_items_up_number; $j++) { $booking->booking_draft_items()->create([ 'booking_id' => $booking->id, 'travel_program_id' => $travel_program_id, @@ -138,7 +157,7 @@ class BookingController extends Controller 'end_date' => null, 'service' => '', 'price_adult' => null, - 'adult' => null , + 'adult' => null, 'price_children' => 0, 'children' => 0, 'price' => 0, @@ -148,11 +167,11 @@ class BookingController extends Controller ]); $i++; } - $redirect = redirect(route('booking_detail', [$booking->id])."#collapseBookingOrganisation"); + $redirect = redirect(route('booking_detail', [$booking->id]) . "#collapseBookingOrganisation"); } - if(isset($data['draft_item'])){ - foreach ($data['draft_item'] as $booking_draft_item_id => $draft_item){ + if (isset($data['draft_item'])) { + foreach ($data['draft_item'] as $booking_draft_item_id => $draft_item) { $BookingDraftItem = BookingDraftItem::findOrFail($booking_draft_item_id); $draft_item['price_adult'] = isset($draft_item['price_adult']) ? $draft_item['price_adult'] : null; $draft_item['adult'] = isset($draft_item['adult']) ? $draft_item['adult'] : null; @@ -166,18 +185,18 @@ class BookingController extends Controller } } - if($data['action'] === 'addItemDown'){ + if ($data['action'] === 'addItemDown') { $travel_program_id = null; $request_date = null; $comfort = 0; - if(count($booking->booking_draft_items)){ + if (count($booking->booking_draft_items)) { $first_booking_draft_item = $booking->booking_draft_items()->first(); $travel_program_id = $first_booking_draft_item->travel_program_id; $request_date = $first_booking_draft_item->request_date; $comfort = $first_booking_draft_item->comfort; } $add_draft_items_up_number = isset($data['add_draft_items_down_number']) ? intval($data['add_draft_items_down_number']) : 1; - for ($j=0; $j < $add_draft_items_up_number; $j++) { + for ($j = 0; $j < $add_draft_items_up_number; $j++) { $booking->booking_draft_items()->create([ 'booking_id' => $booking->id, 'travel_program_id' => $travel_program_id, @@ -192,7 +211,7 @@ class BookingController extends Controller 'end_date' => null, 'service' => '', 'price_adult' => null, - 'adult' => null , + 'adult' => null, 'price_children' => 0, 'children' => 0, 'price' => 0, @@ -202,14 +221,15 @@ class BookingController extends Controller ]); $i++; } - $redirect = redirect(route('booking_detail', [$booking->id])."#collapseBookingOrganisation"); - + $redirect = redirect(route('booking_detail', [$booking->id]) . "#collapseBookingOrganisation"); } - if($data['action'] === 'saveCustomer' || $data['action'] === 'saveAll' || $data['action'] === 'save_lead_status' || $data['action'] === 'update_booking' || - $data['action'] === 'update_booking_services' || $data['action'] === 'update_booking_number' || $data['action'] === 'update_booking_price' || - $data['action'] === 'update_service_provider_entry' || $data['action'] === 'update_booking_service_item' || $data['action'] === 'update_booking_participant'){ + if ( + $data['action'] === 'saveCustomer' || $data['action'] === 'saveAll' || $data['action'] === 'save_lead_status' || $data['action'] === 'update_booking' || + $data['action'] === 'update_booking_services' || $data['action'] === 'update_booking_number' || $data['action'] === 'update_booking_price' || + $data['action'] === 'update_service_provider_entry' || $data['action'] === 'update_booking_service_item' || $data['action'] === 'update_booking_participant' + ) { $customer = $this->custRepo->updateCustomerFromBooking($id, $data); $booking = $this->bookingRepo->updateLeadStatus($id, $data); $booking = $this->bookingRepo->updateBooking($id, $data); @@ -222,49 +242,49 @@ class BookingController extends Controller \Session()->flash('alert-save', '1'); - - switch($data['action']){ + + switch ($data['action']) { case 'saveCustomer': - $redirect = redirect(route('booking_detail', [$booking->id])."#collapseBookingCustomer"); + $redirect = redirect(route('booking_detail', [$booking->id]) . "#collapseBookingCustomer"); break; - case 'saveAll': - $redirect = redirect(route('booking_detail', [$booking->id])."#collapseBookingOrganisation"); + case 'saveAll': + $redirect = redirect(route('booking_detail', [$booking->id]) . "#collapseBookingOrganisation"); break; case 'update_booking': - $redirect = redirect(route('booking_detail', [$booking->id])."#collapseBookingBooking"); + $redirect = redirect(route('booking_detail', [$booking->id]) . "#collapseBookingBooking"); break; case 'save_lead_status': - $redirect = redirect(route('booking_detail', [$booking->id])."#collapseBookingLead"); + $redirect = redirect(route('booking_detail', [$booking->id]) . "#collapseBookingLead"); break; case 'update_booking_services': - $redirect = redirect(route('booking_detail', [$booking->id])."#collapseBookingServices"); + $redirect = redirect(route('booking_detail', [$booking->id]) . "#collapseBookingServices"); break; case 'update_booking_number': - $redirect = redirect(route('booking_detail', [$booking->id])."#collapseBookingMyJack"); + $redirect = redirect(route('booking_detail', [$booking->id]) . "#collapseBookingMyJack"); break; case 'update_booking_price': - $redirect = redirect(route('booking_detail', [$booking->id])."#collapseBookingPrice"); + $redirect = redirect(route('booking_detail', [$booking->id]) . "#collapseBookingPrice"); break; case 'update_service_provider_entry': - $redirect = redirect(route('booking_detail', [$booking->id])."#collapseBookingProvider"); + $redirect = redirect(route('booking_detail', [$booking->id]) . "#collapseBookingProvider"); break; case 'update_booking_service_item': - $redirect = redirect(route('booking_detail', [$booking->id])."#collapseBookingCompany"); + $redirect = redirect(route('booking_detail', [$booking->id]) . "#collapseBookingCompany"); break; case 'update_booking_participant': - $redirect = redirect(route('booking_detail', [$booking->id])."#collapseBookingParticipant"); + $redirect = redirect(route('booking_detail', [$booking->id]) . "#collapseBookingParticipant"); break; - } + } } - + $booking->calculate_price_total(); - if(strpos($data['action'], 'up_') !== false) { + if (strpos($data['action'], 'up_') !== false) { $reId = intval(str_replace('up_', '', $data['action'])); $d_from = BookingDraftItem::findOrFail($reId); $d_to = $booking->findBeforeDraftItemRelation($reId); - if($d_to) { + if ($d_to) { $t_pos = $d_from->pos; $d_from->pos = $d_to->pos; $d_to->pos = $t_pos; @@ -272,11 +292,11 @@ class BookingController extends Controller $d_to->save(); } } - if(strpos($data['action'], 'down_') !== false) { + if (strpos($data['action'], 'down_') !== false) { $reId = intval(str_replace('down_', '', $data['action'])); $d_from = BookingDraftItem::findOrFail($reId); $d_to = $booking->findAfterDraftItemRelation($reId); - if($d_to) { + if ($d_to) { $t_pos = $d_from->pos; $d_from->pos = $d_to->pos; $d_to->pos = $t_pos; @@ -288,11 +308,12 @@ class BookingController extends Controller return $redirect; } - public function loadModal(){ + public function loadModal() + { $data = Request::all(); $ret = ""; - if(Request::ajax()) { - if ($data['action'] === "new-customer-mail" || $data['action'] === "reply-customer-mail" || $data['action'] === "show-customer-mail" || $data['action'] === "edit-customer-mail"){ + if (Request::ajax()) { + if ($data['action'] === "new-customer-mail" || $data['action'] === "reply-customer-mail" || $data['action'] === "show-customer-mail" || $data['action'] === "edit-customer-mail") { $data['customers'] = []; if ($data['action'] === "new-customer-mail" && isset($data['booking_id']) && $booking = Booking::find($data['booking_id'])) { $tmp = []; @@ -305,120 +326,119 @@ class BookingController extends Controller $ret = CustomerMailRepository::loadModal($data); } - if($data['action'] === "modal-upload-booking-file") { + if ($data['action'] === "modal-upload-booking-file") { $ret = view("booking.upload_modal", compact('data'))->render(); } - if($data['action'] === "edit_notice") { + if ($data['action'] === "edit_notice") { $value = BookingNotice::findOrFail($data['id']); $ret = view("booking.edit_notice_modal", compact('data', 'value'))->render(); } - if($data['action'] === "createPDF_Coupon") { + if ($data['action'] === "createPDF_Coupon") { $booking = Booking::findOrFail($data['booking_id']); $data['has_coupon'] = $booking->hasDocument('coupon'); - $data['default_value'] = config('booking.coupon_default_value'); + $data['default_value'] = config('booking.coupon_default_value'); $data['issue_date'] = date('d.m.Y'); $data['valid_date'] = \Carbon::now()->addMonths(config('booking.coupon_valid_date_month'))->format('d.m.Y'); $ret = view("booking.modal_create_coupon", compact('data'))->render(); } - if($data['action'] === "createPDF_Storno") { + if ($data['action'] === "createPDF_Storno") { $booking = Booking::findOrFail($data['booking_id']); $data['price'] = $booking->price; - if($data['has_storno'] = $booking->hasDocument('storno')){ + if ($data['has_storno'] = $booking->hasDocument('storno')) { $document_storno = $booking->getDocument('storno'); $data['storno_date'] = \Carbon::parse($document_storno->data->storno_date)->format('d.m.Y'); - $data['storno_print'] = \Carbon::parse($document_storno->data->storno_print)->format('d.m.Y') ; + $data['storno_print'] = \Carbon::parse($document_storno->data->storno_print)->format('d.m.Y'); $data['storno_status_id'] = $document_storno->data->storno_status_id; $data['storno_level'] = $document_storno->data->storno_level; $data['storno_level_number'] = _number_format($document_storno->data->storno_level); $data['storno_total_price'] = ''; - - - }else{ + } else { $data['storno_date'] = date('d.m.Y'); $data['storno_print'] = date('d.m.Y'); $data['storno_status_id'] = null; - $data['storno_level'] = 100; + $data['storno_level'] = 100; $data['storno_level_number'] = ''; $data['storno_total_price'] = ''; - } - + $ret = view("booking.modal_create_storno", compact('data'))->render(); } - if($data['action'] === "upload-booking-file"){ - if($data['booking_id']){ + if ($data['action'] === "upload-booking-file") { + if ($data['booking_id']) { $bookingFileRepo = new BookingFileRepository(new BookingFile()); $bookingFileRepo->_set('disk', 'booking'); $bookingFileRepo->_set('booking_id', $data['booking_id']); - $bookingFileRepo->_set('dir', '/files/'.date('Y/m').'/'); + $bookingFileRepo->_set('dir', '/files/' . date('Y/m') . '/'); $bookingFileRepo->_set('identifier', 'booking'); return $bookingFileRepo->uploadFile(Request::all()); } } } - return response()->json(['response' => $data, 'html'=>$ret]); + return response()->json(['response' => $data, 'html' => $ret]); } - - public function draftItemDelete($id){ + + public function draftItemDelete($id) + { $booking_draft_item = BookingDraftItem::findOrFail($id); $booking = $booking_draft_item->booking; $booking_draft_item->delete(); $booking->calculate_price_total(); \Session()->flash('alert-success', __('Eintrag gelöscht')); - return redirect(route('booking_detail', [$booking->id])."#collapseBookingOrganisation"); + return redirect(route('booking_detail', [$booking->id]) . "#collapseBookingOrganisation"); } - public function action($action, $id=false){ + public function action($action, $id = false) + { - if(!$booking = Booking::find($id)){ + if (!$booking = Booking::find($id)) { abort(404); } - if($action === 'change_travel_dates'){ - $draftRepo = new DraftRepository($booking); - $draftRepo->change_dates_drafts_from_booking(Request::get('change_travel_start_date')); - \Session()->flash('alert-success', __('Datum der Reise wurde geändert')); - return redirect(route('booking_detail', [$booking->id])."#collapseBookingOrganisation"); + if ($action === 'change_travel_dates') { + $draftRepo = new DraftRepository($booking); + $draftRepo->change_dates_drafts_from_booking(Request::get('change_travel_start_date')); + \Session()->flash('alert-success', __('Datum der Reise wurde geändert')); + return redirect(route('booking_detail', [$booking->id]) . "#collapseBookingOrganisation"); } - if($action === 'service_provider_entry_add_discount'){ - $ServiceProvider = ServiceProvider::where('type', 'discount')->where('active',true)->first(); + if ($action === 'service_provider_entry_add_discount') { + $ServiceProvider = ServiceProvider::where('type', 'discount')->where('active', true)->first(); ServiceProviderEntry::create([ 'booking_id' => $booking->id, 'service_provider_id' => $ServiceProvider->id, 'type' => 'discount', ]); \Session()->flash('alert-success', __('Leistungsträger neuer Rabatt hinzugefügt')); - return redirect(route('booking_detail', [$booking->id])."#collapseBookingProvider"); + return redirect(route('booking_detail', [$booking->id]) . "#collapseBookingProvider"); } - if($action === 'service_provider_entry_add_payment'){ - $ServiceProvider = ServiceProvider::where('type', 'payment')->where('active',true)->first(); + if ($action === 'service_provider_entry_add_payment') { + $ServiceProvider = ServiceProvider::where('type', 'payment')->where('active', true)->first(); ServiceProviderEntry::create([ 'booking_id' => $booking->id, 'service_provider_id' => $ServiceProvider->id, 'type' => 'payment', ]); \Session()->flash('alert-success', __('Leistungsträger neue Zahlung hinzugefügt')); - return redirect(route('booking_detail', [$booking->id])."#collapseBookingProvider"); + return redirect(route('booking_detail', [$booking->id]) . "#collapseBookingProvider"); } - if($action === 'booking_service_item_add'){ - $TravelCompany = TravelCompany::where('active',true)->first(); + if ($action === 'booking_service_item_add') { + $TravelCompany = TravelCompany::where('active', true)->first(); BookingServiceItem::create([ 'booking_id' => $booking->id, 'travel_company_id' => $TravelCompany->id, 'travel_date' => now(), ]); \Session()->flash('alert-success', __('Reiseveranstalter neue Leistung hinzugefügt')); - return redirect(route('booking_detail', [$booking->id])."#collapseBookingCompany"); - } + return redirect(route('booking_detail', [$booking->id]) . "#collapseBookingCompany"); + } - if($action === 'booking_participant_add'){ + if ($action === 'booking_participant_add') { Participant::create([ 'booking_id' => $booking->id, 'nationality_id' => 1, @@ -426,129 +446,129 @@ class BookingController extends Controller ]); \Session()->flash('alert-success', __('Neuen Teilnehmer hinzugefügt')); - return redirect(route('booking_detail', [$booking->id])."#collapseBookingParticipant"); - } - - + return redirect(route('booking_detail', [$booking->id]) . "#collapseBookingParticipant"); + } } - public function delete($id, $del="booking"){ + public function delete($id, $del = "booking") + { - if($del === 'booking_file'){ + if ($del === 'booking_file') { $booking_file = BookingFile::findOrFail($id); $booking = $booking_file->booking; $this->deleteBookingFile($booking_file); \Session()->flash('alert-success', 'Datei gelöscht'); - return redirect(route('booking_detail', [$booking->id])."#collapseBookingFiles"); + return redirect(route('booking_detail', [$booking->id]) . "#collapseBookingFiles"); } - if($del === 'booking_notice'){ + if ($del === 'booking_notice') { $booking_notice = BookingNotice::findOrFail($id); $booking = $booking_notice->booking; $booking_notice->delete(); \Session()->flash('alert-success', 'Notiz gelöscht'); - return redirect(route('booking_detail', [$booking->id])."#collapseBookingNotice"); - + return redirect(route('booking_detail', [$booking->id]) . "#collapseBookingNotice"); } - - if($del === 'passolution_file'){ + + if ($del === 'passolution_file') { $booking = Booking::findOrFail($id); $booking->resyncPassolutionPDF(); \Session()->flash('alert-success', 'Passolution erneuert'); - return redirect(route('booking_detail', [$booking->id])."#collapseBookingFiles"); - + return redirect(route('booking_detail', [$booking->id]) . "#collapseBookingFiles"); } - if($del === 'service_provider_entry'){ + if ($del === 'service_provider_entry') { $ServiceProviderEntry = ServiceProviderEntry::findOrFail($id); $booking = $ServiceProviderEntry->booking; $ServiceProviderEntry->delete(); \Session()->flash('alert-success', 'Leistungsträger gelöscht'); - return redirect(route('booking_detail', [$booking->id])."#collapseBookingProvider"); - + return redirect(route('booking_detail', [$booking->id]) . "#collapseBookingProvider"); } - if($del === 'booking_service_item'){ + if ($del === 'booking_service_item') { $BookingServiceItem = BookingServiceItem::findOrFail($id); $booking = $BookingServiceItem->booking; $BookingServiceItem->delete(); \Session()->flash('alert-success', 'Reiseveranstalter gelöscht'); - return redirect(route('booking_detail', [$booking->id])."#collapseBookingCompany"); + return redirect(route('booking_detail', [$booking->id]) . "#collapseBookingCompany"); } - if($del === 'participant'){ + if ($del === 'participant') { $Participant = Participant::findOrFail($id); $booking = $Participant->booking; $Participant->delete(); \Session()->flash('alert-success', 'Teilnehmer gelöscht'); - return redirect(route('booking_detail', [$booking->id])."#collapseBookingParticipant"); + return redirect(route('booking_detail', [$booking->id]) . "#collapseBookingParticipant"); } return redirect(route('requests')); } - private function deleteBookingFile($booking_file){ + private function deleteBookingFile($booking_file) + { $fileRepo = new BookingFileRepository($booking_file); $fileRepo->_set('disk', 'booking'); $fileRepo->delete(); - $booking_file->delete(); + $booking_file->delete(); } - private function deleteCustomerFile($customer_file){ + private function deleteCustomerFile($customer_file) + { $fileRepo = new CustomerFileRepository($customer_file); $fileRepo->_set('disk', 'customer'); $fileRepo->delete(); - $customer_file->delete(); + $customer_file->delete(); } - private function deleteBookingDocument($booking_document){ + private function deleteBookingDocument($booking_document) + { $booking_document->deleteFile(); - $booking_document->delete(); + $booking_document->delete(); } - public function deleteComplete($id){ + public function deleteComplete($id) + { $booking = Booking::findOrFail($id); - if($booking->booking_files){ + if ($booking->booking_files) { foreach ($booking->booking_files as $booking_file) { $this->deleteBookingFile($booking_file); } } - if($booking->booking_notices){ + if ($booking->booking_notices) { foreach ($booking->booking_notices as $booking_notice) { $booking_notice->delete(); } } - if($booking->service_provider_entries){ + if ($booking->service_provider_entries) { foreach ($booking->service_provider_entries as $service_provider_entry) { $service_provider_entry->delete(); } } - if($booking->booking_service_items){ + if ($booking->booking_service_items) { foreach ($booking->booking_service_items as $booking_service_item) { $booking_service_item->delete(); } } - if($booking->booking_provider_services){ + if ($booking->booking_provider_services) { foreach ($booking->booking_provider_services as $booking_provider_service) { $booking_provider_service->delete(); } } - if($booking->booking_country_services){ + if ($booking->booking_country_services) { foreach ($booking->booking_country_services as $booking_country_service) { $booking_country_service->delete(); } } - if($booking->participants){ + if ($booking->participants) { foreach ($booking->participants as $participant) { $participant->delete(); } } - if($booking->customer_mails){ + if ($booking->customer_mails) { foreach ($booking->customer_mails_reverse as $customer_mail) { - if($customer_mail->customer_files){ + if ($customer_mail->customer_files) { foreach ($customer_mail->customer_files as $customer_file) { $this->deleteCustomerFile($customer_file); } @@ -556,18 +576,18 @@ class BookingController extends Controller $customer_mail->delete(); } } - if($booking->booking_documents){ + if ($booking->booking_documents) { foreach ($booking->booking_documents as $booking_document) { - if($booking_document->identifier === 'coupon'){ + if ($booking_document->identifier === 'coupon') { //coupon set booking ID to null <- is need by the customer $booking_document->booking_id = null; $booking_document->save(); - }else{ + } else { $this->deleteBookingDocument($booking_document); } } } - if($booking->coupons){ + if ($booking->coupons) { foreach ($booking->coupons as $coupon) { //coupon set booking ID to null <- is need by the customer $coupon->booking_id = null; @@ -578,7 +598,4 @@ class BookingController extends Controller \Session()->flash('alert-success', 'Buchung gelöscht'); return redirect(route('requests')); } - } - - diff --git a/app/Http/Controllers/FileController.php b/app/Http/Controllers/FileController.php index bfd92fc..79fc3eb 100755 --- a/app/Http/Controllers/FileController.php +++ b/app/Http/Controllers/FileController.php @@ -13,17 +13,15 @@ class FileController extends Controller * * @return void */ - public function __construct() - { - } + public function __construct() {} - public function show($id = null, $disk = null, $do='file') + public function show($id = null, $disk = null, $do = 'file') { $path = ""; $filename = ""; - switch ($disk){ + switch ($disk) { case 'customer': $file = \App\Models\CustomerFile::findOrFail($id); $filename = $file->original_name; @@ -66,25 +64,33 @@ class FileController extends Controller break; } - + if (file_exists($path)) { + // Cache-Control Header für PDFs und andere Dateien, die sich häufig ändern + $headers = [ + 'Cache-Control' => 'no-cache, no-store, must-revalidate', + 'Pragma' => 'no-cache', + 'Expires' => '0' + ]; + switch ($do) { case 'file': - return Response::file($path); + return Response::file($path, $headers); break; case 'download': - return Response::download($path, $filename); + return Response::download($path, $filename, $headers); break; case 'url': - return $path.$filename; + return $path . $filename; break; } } } - public function showExpert($type = null, $class = null, $year = null, $file = null, $do = null) { + public function showExpert($type = null, $class = null, $year = null, $file = null, $do = null) + { /*if ($type == 'xls') { $path = storage_path("app/export/"); @@ -92,35 +98,39 @@ class FileController extends Controller }*/ $path = ""; $filename = ""; - $headers = []; + $headers = [ + 'Cache-Control' => 'no-cache, no-store, must-revalidate', + 'Pragma' => 'no-cache', + 'Expires' => '0' + ]; - if ($class === 'invoices' || $class === 'infos'){ + if ($class === 'invoices' || $class === 'infos') { $headers = [ 'Content-Type: application/pdf', 'Pragma: no-cache', 'Cache-Control: no-store,no-cache, must-revalidate, post-check=0, pre-check=0' ]; - $dir = $year."/"; + $dir = $year . "/"; $filename = $file; if ($type === 'fewo') { - if(Storage::disk('fewo_invoices')->exists( $dir.$filename )){ - $path = Storage::disk('fewo_invoices')->path($dir.$filename); + if (Storage::disk('fewo_invoices')->exists($dir . $filename)) { + $path = Storage::disk('fewo_invoices')->path($dir . $filename); } } if ($type === 'fewo') { - if(Storage::disk('fewo_infos')->exists( $dir.$filename )){ - $path = Storage::disk('fewo_infos')->path($dir.$filename); + if (Storage::disk('fewo_infos')->exists($dir . $filename)) { + $path = Storage::disk('fewo_infos')->path($dir . $filename); } } } if (file_exists($path)) { - if($do === "download"){ + if ($do === "download") { return Response::download($path, $filename, $headers); } - if($do === "file"){ + if ($do === "file") { return Response::file($path, $headers); } } } -} \ No newline at end of file +} diff --git a/app/Http/Controllers/Settings/TravelCompanyController.php b/app/Http/Controllers/Settings/TravelCompanyController.php index 10d7621..110c32c 100755 --- a/app/Http/Controllers/Settings/TravelCompanyController.php +++ b/app/Http/Controllers/Settings/TravelCompanyController.php @@ -27,11 +27,11 @@ class TravelCompanyController extends Controller public function detail($id, $step = false) { - if($id === "new") { + if ($id == "new") { $model = new TravelCompany(); $id = 'new'; $model->active = 1; - }else{ + } else { $model = TravelCompany::findOrFail($id); $id = $model->id; } @@ -45,20 +45,21 @@ class TravelCompanyController extends Controller return view('settings.travel_company.detail', $data); } - public function update($id){ + public function update($id) + { $data = Request::all(); - if(isset($data['update-action'])){ - if($data['update-action'] === 'save-travel-company-service'){ - $data['active'] = true;//isset($data['active']) ? true : false; + if (isset($data['update-action'])) { + if ($data['update-action'] === 'save-travel-company-service') { + $data['active'] = true; //isset($data['active']) ? true : false; $travel_company = TravelCompany::findOrFail($id); $data['travel_company_id'] = $travel_company->id; - if($data['travel_company_service_id'] === 'new'){ + if ($data['travel_company_service_id'] === 'new') { $model = TravelCompanyService::create($data); - }else{ + } else { $model = TravelCompanyService::find($data['travel_company_service_id']); $model->fill($data); $model->save(); @@ -69,9 +70,9 @@ class TravelCompanyController extends Controller } $data['contact_emails'] = isset($data['contact_emails']) ? Util::_explodeLines($data['contact_emails']) : null; - if($id === "new"){ + if ($id === "new") { $model = TravelCompany::create($data); - }else{ + } else { $model = TravelCompany::find($id); $model->fill($data); $model->save(); @@ -79,12 +80,12 @@ class TravelCompanyController extends Controller \Session()->flash('alert-save', '1'); return redirect(route('admin_settings_travel_company_detail', [$model->id, $data['action']])); - } - public function delete($id, $del="travel_company"){ + public function delete($id, $del = "travel_company") + { - if($del === 'travel_country') { + if ($del === 'travel_country') { abort(404, 'Noch keine Funktion'); $model = TravelCompany::findOrFail($id); $model->delete(); @@ -92,11 +93,11 @@ class TravelCompanyController extends Controller return redirect()->back(); } - if($del === 'company_service'){ + if ($del === 'company_service') { $service = TravelCompanyService::findOrFail($id); $travel_company = $service->travel_company; //check as entry - if($service->booking_company_services->count() > 0){ + if ($service->booking_company_services->count() > 0) { \Session()->flash('alert-error', 'Die Leistung kann nicht gelöscht werden, diese hat Einträge bei den Buchungen'); return redirect(route('admin_settings_travel_company_detail', [$travel_company->id, 'services'])); } @@ -105,7 +106,4 @@ class TravelCompanyController extends Controller return redirect(route('admin_settings_travel_company_detail', [$travel_company->id, 'services'])); } } - } - - diff --git a/app/Http/Controllers/Settings/TravelCountryController.php b/app/Http/Controllers/Settings/TravelCountryController.php index 72ff519..60f6cfb 100755 --- a/app/Http/Controllers/Settings/TravelCountryController.php +++ b/app/Http/Controllers/Settings/TravelCountryController.php @@ -38,11 +38,11 @@ class TravelCountryController extends Controller public function detail($id, $step = false) { - if($id === "new") { + if ($id == "new") { $model = new TravelCountry(); $id = 'new'; $model->active_backend = 1; - }else{ + } else { $model = TravelCountry::findOrFail($id); $id = $model->id; } @@ -62,15 +62,15 @@ class TravelCountryController extends Controller { $data = Request::all(); - if(isset($data['update-action'])){ - if($data['update-action'] === 'save-travel-county-service'){ - $data['active'] = true;//isset($data['active']) ? true : false; + if (isset($data['update-action'])) { + if ($data['update-action'] === 'save-travel-county-service') { + $data['active'] = true; //isset($data['active']) ? true : false; $travel_country = TravelCountry::findOrFail($id); $data['travel_country_id'] = $travel_country->id; $data['crm_travel_country_id'] = $travel_country->crm_id; - if($data['travel_county_service_id'] === 'new'){ + if ($data['travel_county_service_id'] === 'new') { $model = TravelCountryService::create($data); - }else{ + } else { $model = TravelCountryService::find($data['travel_county_service_id']); $model->fill($data); $model->save(); @@ -81,7 +81,7 @@ class TravelCountryController extends Controller } $data['contact_emails'] = isset($data['contact_emails']) ? Util::_explodeLines($data['contact_emails']) : null; - if(!isset($data['contact_lands'])){ + if (!isset($data['contact_lands'])) { $data['contact_lands'] = null; } $data['action'] = isset($data['action']) ? $data['action'] : false; @@ -90,9 +90,9 @@ class TravelCountryController extends Controller $data['active_frontend'] = isset($data['active_frontend']) ? true : false; $data['active_backend'] = isset($data['active_backend']) ? true : false; */ - if($id === "new"){ + if ($id === "new") { $model = TravelCountry::create($data); - }else{ + } else { $model = TravelCountry::find($id); $model->fill($data); $model->save(); @@ -106,11 +106,11 @@ class TravelCountryController extends Controller } //TODO for this time $tc = \App\Models\Sym\TravelCountry::find($model->crm_id); - if(!$tc){ + if (!$tc) { $tc = \App\Models\Sym\TravelCountry::create($data); $model->crm_id = $tc->id; $model->save(); - }else { + } else { $tc->fill($data); $tc->save(); } @@ -119,17 +119,18 @@ class TravelCountryController extends Controller } - public function delete($id, $del="travel_country"){ + public function delete($id, $del = "travel_country") + { - if($del === 'travel_country'){ + if ($del === 'travel_country') { $model = TravelCountry::findOrFail($id); - if($model->travel_nationality_requirements){ - foreach($model->travel_nationality_requirements as $travel_nationality_requirement){ + if ($model->travel_nationality_requirements) { + foreach ($model->travel_nationality_requirements as $travel_nationality_requirement) { $travel_nationality_requirement->delete(); } } $tc = \App\Models\Sym\TravelCountry::find($model->crm_id); - if($tc){ + if ($tc) { $tc->delete(); } $model->delete(); @@ -137,7 +138,7 @@ class TravelCountryController extends Controller return redirect()->back(); } - if($del === 'general_file'){ + if ($del === 'general_file') { $general_file = GeneralFile::findOrFail($id); $travel_country = $general_file->travel_country; $fileRepo = new GeneralFileRepository($general_file); @@ -146,23 +147,18 @@ class TravelCountryController extends Controller $general_file->delete(); \Session()->flash('alert-success', 'Datei gelöscht'); return redirect(route('admin_settings_travel_country_detail', [$travel_country->id, 'data'])); - } - if($del === 'country_service'){ + if ($del === 'country_service') { $travel_country_service = TravelCountryService::findOrFail($id); $travel_country = $travel_country_service->travel_country; //check as entry - if($travel_country_service->booking_country_services->count() > 0){ + if ($travel_country_service->booking_country_services->count() > 0) { \Session()->flash('alert-error', 'Die Leistung kann nicht gelöscht werden, diese hat Einträge bei den Buchungen'); return redirect(route('admin_settings_travel_country_detail', [$travel_country->id, 'services'])); } $travel_country_service->delete(); \Session()->flash('alert-success', 'Eintrag gelöscht'); return redirect(route('admin_settings_travel_country_detail', [$travel_country->id, 'services'])); - } - } } - - diff --git a/app/Libraries/MyPDFMerger.php b/app/Libraries/MyPDFMerger.php index ddf9c0f..419ec53 100644 --- a/app/Libraries/MyPDFMerger.php +++ b/app/Libraries/MyPDFMerger.php @@ -1,4 +1,5 @@ _files) || !is_array($this->_files)): throw new \exception("No PDFs to merge."); endif; + //$theme = false; + if (!isset($this->_files) || !is_array($this->_files)): throw new \exception("No PDFs to merge."); + endif; $fpdi = new \setasign\Fpdi\Fpdi(); $first = 1; - // + //merger operations foreach ($this->_files as $file) { $filename = $file[0]; @@ -60,30 +63,29 @@ class MyPDFMerger $template = $fpdi->importPage($i); $size = $fpdi->getTemplateSize($template); $orientation = ($size['height'] > $size['width']) ? 'P' : 'L'; - $fpdi->AddPage($orientation, array($size['width'], $size['height'])); - if($theme){ - $fpdi->setSourceFile(__DIR__ . '/../../public/pdf/'.$theme.'-'.$first.'.pdf'); - if($first == 1){ + if ($theme) { + $fpdi->setSourceFile(__DIR__ . '/../../public/pdf/' . $theme . '-' . $first . '.pdf'); + if ($first == 1) { $first = 2; } $backId = $fpdi->importPage(1); $fpdi->useTemplate($backId); - } $fpdi->useTemplate($template); } } else { foreach ($filepages as $page) { $count = $fpdi->setSourceFile($filename); - if (!$template = $fpdi->importPage($page)): throw new \exception("Could not load page '$page' in PDF '$filename'. Check that the page exists."); endif; + if (!$template = $fpdi->importPage($page)): throw new \exception("Could not load page '$page' in PDF '$filename'. Check that the page exists."); + endif; $size = $fpdi->getTemplateSize($template); $orientation = ($size['h'] > $size['w']) ? 'P' : 'L'; $fpdi->AddPage($orientation, array($size['w'], $size['h'])); - if($theme){ - $fpdi->setSourceFile(__DIR__ . '/../../public/pdf/'.$theme.'-'.$first.'.pdf'); - if($first == 1){ + if ($theme) { + $fpdi->setSourceFile(__DIR__ . '/../../public/pdf/' . $theme . '-' . $first . '.pdf'); + if ($first == 1) { $first = 2; } $backId = $fpdi->importPage(1); @@ -110,11 +112,9 @@ class MyPDFMerger return false; } } - - } - /** + /** * FPDI uses single characters for specifying the output location. Change our more descriptive string into proper format. * @param $mode * @return Character @@ -140,7 +140,7 @@ class MyPDFMerger } } - /** + /** * Takes our provided pages in the form of 1,3,4,16-50 and creates an array of all pages * @param $pages * @return array @@ -160,11 +160,13 @@ class MyPDFMerger $y = $ind[1]; //end page if ($x > $y): throw new \exception("Starting page, '$x' is greater than ending page '$y'."); - return false; endif; + return false; + endif; //add middle pages while ($x <= $y): $newpages[] = (int)$x; - $x++; endwhile; + $x++; + endwhile; } else { $newpages[] = (int)$ind[0]; } diff --git a/app/Models/Booking.php b/app/Models/Booking.php index 8891d03..79a91ba 100644 --- a/app/Models/Booking.php +++ b/app/Models/Booking.php @@ -207,27 +207,27 @@ class Booking extends Model protected $table = 'booking'; - protected $casts = [ - 'customer_id' => 'int', - 'lead_id' => 'int', - 'new_drafts' => 'bool', - 'sf_guard_user_id' => 'int', - 'branch_id' => 'int', + protected $casts = [ + 'customer_id' => 'int', + 'lead_id' => 'int', + 'new_drafts' => 'bool', + 'sf_guard_user_id' => 'int', + 'branch_id' => 'int', 'airport_id' => 'int', - 'service_fee' => 'float', - 'travel_country_id' => 'int', - 'travel_category_id' => 'int', - 'pax' => 'int', - 'coupon_id' => 'int', - 'website_id' => 'int', - 'participant_salutation_id' => 'int', - 'travel_company_id' => 'int', - 'travel_documents' => 'bool', - 'price' => 'float', - 'price_total' => 'float', - 'deposit_total' => 'float', - 'final_payment' => 'float', - 'travelagenda_id' => 'int', + 'service_fee' => 'float', + 'travel_country_id' => 'int', + 'travel_category_id' => 'int', + 'pax' => 'int', + 'coupon_id' => 'int', + 'website_id' => 'int', + 'participant_salutation_id' => 'int', + 'travel_company_id' => 'int', + 'travel_documents' => 'bool', + 'price' => 'float', + 'price_total' => 'float', + 'deposit_total' => 'float', + 'final_payment' => 'float', + 'travelagenda_id' => 'int', 'paying_out' => 'int', 'hold' => 'int', //'airline_id' => 'int', @@ -240,55 +240,55 @@ class Booking extends Model 'participant_pass' => 'bool' ]; - protected $dates = [ - 'booking_date', - 'start_date', - 'end_date', - 'participant_birthdate', - 'final_payment_date', + protected $dates = [ + 'booking_date', + 'start_date', + 'end_date', + 'participant_birthdate', + 'final_payment_date', 'refund_date', 'lawyer_date', 'xx_tkt_date' - ]; + ]; - protected $fillable = [ - 'booking_date', - 'customer_id', - 'lead_id', - 'new_drafts', - 'sf_guard_user_id', - 'branch_id', - 'service_fee', - 'travel_country_id', - 'travel_category_id', - 'pax', - 'coupon_id', - 'title', + protected $fillable = [ + 'booking_date', + 'customer_id', + 'lead_id', + 'new_drafts', + 'sf_guard_user_id', + 'branch_id', + 'service_fee', + 'travel_country_id', + 'travel_category_id', + 'pax', + 'coupon_id', + 'title', 'comfort', - 'start_date', - 'end_date', - 'website_id', - 'travel_number', - 'participant_name', - 'participant_firstname', - 'participant_birthdate', - 'participant_salutation_id', + 'start_date', + 'end_date', + 'website_id', + 'travel_number', + 'participant_name', + 'participant_firstname', + 'participant_birthdate', + 'participant_salutation_id', 'participant_pass', 'nationality_id', - 'ev_number', - 'merlin_knr', - 'merlin_order_number', - 'travel_company_id', - 'travel_documents', - 'price', + 'ev_number', + 'merlin_knr', + 'merlin_order_number', + 'travel_company_id', + 'travel_documents', + 'price', 'price_canceled', - 'price_total', + 'price_total', 'price_balance', - 'deposit_total', - 'final_payment', - 'final_payment_date', - 'travelagenda_id', + 'deposit_total', + 'final_payment', + 'final_payment_date', + 'travelagenda_id', 'insurance_offer', 'paying_out', 'paying_out_status', @@ -304,10 +304,10 @@ class Booking extends Model 'filekey', 'is_rail_fly', 'notice', - ]; + ]; - public static $paying_out_types = [ - 0 => '-', + public static $paying_out_types = [ + 0 => '-', 1 => 'Gutschein', 2 => 'Auszahlung', 3 => 'Umbuchung', @@ -345,8 +345,8 @@ class Booking extends Model ]; public static $customer_mail_dirs = [ - 11 => ['name' => 'Entwürfe', 'icon'=>'ion-md-create'], - 12 => ['name' => 'Papierkorb', 'icon'=>'ion-md-trash'], + 11 => ['name' => 'Entwürfe', 'icon' => 'ion-md-create'], + 12 => ['name' => 'Papierkorb', 'icon' => 'ion-md-trash'], ]; protected $paying_out_colors = [ 0 => '', @@ -377,47 +377,47 @@ class Booking extends Model protected $passolutionPDFs = []; - /*public function branch() + /*public function branch() { return $this->belongsTo(Branch::class); }*/ - public function coupon() - { - return $this->belongsTo(Coupon::class); - } + public function coupon() + { + return $this->belongsTo(Coupon::class); + } - public function customer() - { - return $this->belongsTo(Customer::class); - } + public function customer() + { + return $this->belongsTo(Customer::class); + } - public function lead() - { - return $this->belongsTo(Lead::class); - } + public function lead() + { + return $this->belongsTo(Lead::class); + } - public function sf_guard_user() - { - return $this->belongsTo(SfGuardUser::class); - } + public function sf_guard_user() + { + return $this->belongsTo(SfGuardUser::class); + } - public function travel_category() - { - return $this->belongsTo(TravelCategory::class); - } + public function travel_category() + { + return $this->belongsTo(TravelCategory::class); + } - public function travel_company() - { - return $this->belongsTo(TravelCompany::class); - } + public function travel_company() + { + return $this->belongsTo(TravelCompany::class); + } public function airport() - { - return $this->belongsTo(Airport::class, 'airport_id'); - } + { + return $this->belongsTo(Airport::class, 'airport_id'); + } - /* public function travel_country() + /* public function travel_country() { return $this->belongsTo(TravelCountry::class, 'travel_country_id', 'crm_id'); }*/ @@ -428,64 +428,64 @@ class Booking extends Model return $this->belongsTo(\App\Models\Sym\TravelCountry::class, 'travel_country_id', 'id'); } - public function travel_agenda() - { - return $this->belongsTo(TravelAgenda::class, 'travelagenda_id'); - } - - /*public function airline() + public function travel_agenda() + { + return $this->belongsTo(TravelAgenda::class, 'travelagenda_id'); + } + + /*public function airline() { return $this->belongsTo(Airline::class, 'airline_id'); } */ - public function arrangements() - { - return $this->hasMany(Arrangement::class); - } + public function arrangements() + { + return $this->hasMany(Arrangement::class)->orderBy('view_position', 'DESC'); + } - public function arrangement_types() - { - return $this->hasMany(ArrangementType::class); - } + public function arrangement_types() + { + return $this->hasMany(ArrangementType::class); + } - public function booking_draft_items() - { - return $this->hasMany(BookingDraftItem::class)->orderBy('pos', 'ASC'); - } + public function booking_draft_items() + { + return $this->hasMany(BookingDraftItem::class)->orderBy('pos', 'ASC'); + } - public function booking_service_items() - { - return $this->hasMany(BookingServiceItem::class); - } + public function booking_service_items() + { + return $this->hasMany(BookingServiceItem::class); + } - public function coupons() - { - return $this->hasMany(Coupon::class); - } + public function coupons() + { + return $this->hasMany(Coupon::class); + } - public function insurance_certificates() - { - return $this->hasMany(InsuranceCertificate::class); - } + public function insurance_certificates() + { + return $this->hasMany(InsuranceCertificate::class); + } - public function participants() - { - return $this->hasMany(Participant::class); - } + public function participants() + { + return $this->hasMany(Participant::class); + } public function participant_salutation() - { - return $this->belongsTo(Salutation::class, 'participant_salutation_id'); - } + { + return $this->belongsTo(Salutation::class, 'participant_salutation_id'); + } - public function service_provider_entries() - { - return $this->hasMany(ServiceProviderEntry::class); - } + public function service_provider_entries() + { + return $this->hasMany(ServiceProviderEntry::class); + } public function customer_mails() @@ -519,9 +519,9 @@ class Booking extends Model } public function booking_stornos() - { - return $this->hasMany(BookingStorno::class); - } + { + return $this->hasMany(BookingStorno::class); + } /*public function booking_invoices() { @@ -529,19 +529,19 @@ class Booking extends Model }*/ public function booking_vouchers() - { - return $this->hasMany(BookingVoucher::class); - } + { + return $this->hasMany(BookingVoucher::class); + } public function booking_voucher_agencys() - { - return $this->hasMany(BookingVoucherAgency::class); - } + { + return $this->hasMany(BookingVoucherAgency::class); + } - public function travel_insurances() - { - return $this->hasMany(TravelInsurance::class); - } + public function travel_insurances() + { + return $this->hasMany(TravelInsurance::class); + } public function booking_files() { @@ -592,17 +592,17 @@ class Booking extends Model } public function booking_strono() - { - return $this->hasOne(BookingStorno::class); - } - + { + return $this->hasOne(BookingStorno::class); + } + public function getAirlinesAsNames() { $ret = ""; - if($this->airline_ids){ - foreach($this->airline_ids as $airline_id){ - if($Airline = Airline::find($airline_id)){ - $ret .= $Airline->name." "; + if ($this->airline_ids) { + foreach ($this->airline_ids as $airline_id) { + if ($Airline = Airline::find($airline_id)) { + $ret .= $Airline->name . " "; } } } @@ -610,13 +610,13 @@ class Booking extends Model } public function getAirlinesIds() { - if($this->airline_ids){ + if ($this->airline_ids) { return implode('', $this->airline_ids); } return ""; - } - public function hasBookingServicesUnchecked(){ + public function hasBookingServicesUnchecked() + { $country_services = true; $provider_services = true; $company_services = true; @@ -625,101 +625,102 @@ class Booking extends Model $has_provider_services = false; $has_company_services = false; - if($this->travel_country){ - foreach($this->travel_country->getContactLandsModels() as $TravelCountry){ - if($TravelCountry->stern_travel_country){ - if($TravelCountry->stern_travel_country->travel_country_services->count()){ + if ($this->travel_country) { + foreach ($this->travel_country->getContactLandsModels() as $TravelCountry) { + if ($TravelCountry->stern_travel_country) { + if ($TravelCountry->stern_travel_country->travel_country_services->count()) { $has_country_services = true; } } } } - - if($has_country_services && !$this->booking_country_services->count() || $this->booking_country_services_checked->count() || - ($this->booking_country_services->count() !== TravelCountryService::where('crm_travel_country_id', '=', $this->travel_country_id)->count())){ - $country_services = false; + if ( + $has_country_services && !$this->booking_country_services->count() || $this->booking_country_services_checked->count() || + ($this->booking_country_services->count() !== TravelCountryService::where('crm_travel_country_id', '=', $this->travel_country_id)->count()) + ) { + $country_services = false; } - foreach($this->service_provider_entries as $service_provider_entry){ - if($service_provider_entry->service_provider && $service_provider_entry->service_provider->service_provider_services->count()){ + foreach ($this->service_provider_entries as $service_provider_entry) { + if ($service_provider_entry->service_provider && $service_provider_entry->service_provider->service_provider_services->count()) { $has_provider_services = true; } } - if($has_provider_services && !$this->booking_provider_services->count() || $this->booking_provider_services_checked->count()){ - if($this->service_provider_entries->count()){ + if ($has_provider_services && !$this->booking_provider_services->count() || $this->booking_provider_services_checked->count()) { + if ($this->service_provider_entries->count()) { $provider_services = false; } } - foreach($this->booking_service_items as $booking_service_item){ - if($booking_service_item->travel_company && $booking_service_item->travel_company->travel_company_services->count()){ + foreach ($this->booking_service_items as $booking_service_item) { + if ($booking_service_item->travel_company && $booking_service_item->travel_company->travel_company_services->count()) { $has_company_services = true; } } - if($has_company_services && !$this->booking_company_services->count() || $this->booking_company_services_checked->count()){ - if($this->booking_service_items->count()){ - $company_services = false; - + if ($has_company_services && !$this->booking_company_services->count() || $this->booking_company_services_checked->count()) { + if ($this->booking_service_items->count()) { + $company_services = false; } } - if(!$has_country_services && !$has_provider_services && !$has_company_services){ + if (!$has_country_services && !$has_provider_services && !$has_company_services) { return false; } - if($country_services && $provider_services && $company_services){ + if ($country_services && $provider_services && $company_services) { return true; - } return false; } - public function hasBookingParticipantsPass(){ - if($this->participant_firstname){ - if(!$this->participant_pass){ + public function hasBookingParticipantsPass() + { + if ($this->participant_firstname) { + if (!$this->participant_pass) { return false; } } - if($this->participants->count()){ - foreach($this->participants as $participant){ - if(!$participant->participant_pass){ + if ($this->participants->count()) { + foreach ($this->participants as $participant) { + if (!$participant->participant_pass) { return false; } } } return true; } - - public function getPassolutionPDF($create = false, $resync = false){ + + public function getPassolutionPDF($create = false, $resync = false) + { $nats = []; - if(count($this->passolutionPDFs)){ - return $this->passolutionPDFs; + if (count($this->passolutionPDFs)) { + return $this->passolutionPDFs; } - if(!$this->travel_country){ - return $this->passolutionPDFs; + if (!$this->travel_country) { + return $this->passolutionPDFs; } - + $destco = $this->travel_country->destco; - if($this->travel_nationality){ + if ($this->travel_nationality) { $nats[$this->travel_nationality->nat] = $this->travel_nationality->nat; } - if($this->participants->count()){ - foreach ($this->participants as $participant){ - if($participant->travel_nationality){ + if ($this->participants->count()) { + foreach ($this->participants as $participant) { + if ($participant->travel_nationality) { $nats[$participant->travel_nationality->nat] = $participant->travel_nationality->nat; } } } - - if(empty($nats)){ - $nats['de'] = 'de'; - } - foreach ($nats as $nat){ + + if (empty($nats)) { + $nats['de'] = 'de'; + } + foreach ($nats as $nat) { $data = [ 'nat' => $nat, 'destco' => $destco, @@ -728,11 +729,12 @@ class Booking extends Model $passolution = new Passolution($data); $this->passolutionPDFs[] = $passolution->findOrCreatePDF($create, $resync); } - return $this->passolutionPDFs; + return $this->passolutionPDFs; } - public function resyncPassolutionPDF(){ - return $this->getPassolutionPDF(true, true); + public function resyncPassolutionPDF() + { + return $this->getPassolutionPDF(true, true); } public function calculate_price_total() @@ -746,13 +748,13 @@ class Booking extends Model $travel_children = 0; foreach ($this->booking_draft_items as $booking_draft_item) { //24 Rundreise ist der Grundeintrag für die Reise - if($booking_draft_item->draft_type_id == 24){ + if ($booking_draft_item->draft_type_id == 24) { $travel_draft_item = $booking_draft_item; continue; } $prices = $booking_draft_item->getItemPrice(); //Grundpreis Reise //pro Persopn im Zimmer - if($booking_draft_item->draft_type_id == 30){ + if ($booking_draft_item->draft_type_id == 30) { $travel_price_adult += $prices['adult']; $travel_price_children += $prices['children']; $travel_adult += $booking_draft_item->adult; @@ -762,9 +764,9 @@ class Booking extends Model $total_children += $prices['children']; } - - if($travel_draft_item){ + + if ($travel_draft_item) { $travel_draft_item->setPriceAdultRaw($travel_price_adult); $travel_draft_item->setPriceChildrenRaw($travel_price_children); $travel_draft_item->adult = $travel_adult; @@ -774,7 +776,6 @@ class Booking extends Model $this->price = $total_adult + $total_children; $this->price_total = $this->getPriceRaw() + $this->getServiceTotal(true); $this->save(); - } public function getPriceAttribute() @@ -845,7 +846,7 @@ class Booking extends Model public function findBeforeDraftItemRelation($reid) { $before = false; - foreach($this->booking_draft_items as $booking_draft_items) { + foreach ($this->booking_draft_items as $booking_draft_items) { if ($booking_draft_items->id == $reid) { return $before; } @@ -857,8 +858,8 @@ class Booking extends Model public function findAfterDraftItemRelation($reid) { $next = false; - foreach($this->booking_draft_items as $booking_draft_items) { - if($next){ + foreach ($this->booking_draft_items as $booking_draft_items) { + if ($next) { return $booking_draft_items; } if ($booking_draft_items->id == $reid) { @@ -868,41 +869,54 @@ class Booking extends Model return false; } - public function getStartDateFormat(){ - if(!$this->attributes['start_date']){ return ""; } + public function getStartDateFormat() + { + if (!$this->attributes['start_date']) { + return ""; + } return Carbon::parse($this->attributes['start_date'])->format(\Util::formatDateDB()); } - public function getEndDateFormat(){ - if(!$this->attributes['end_date']){ return ""; } + public function getEndDateFormat() + { + if (!$this->attributes['end_date']) { + return ""; + } return Carbon::parse($this->attributes['end_date'])->format(\Util::formatDateDB()); } - public function getBookingDateFormat(){ - if(!$this->attributes['booking_date']){ return ""; } + public function getBookingDateFormat() + { + if (!$this->attributes['booking_date']) { + return ""; + } return Carbon::parse($this->attributes['booking_date'])->format(\Util::formatDateDB()); } - public function getFinalPaymentDateFormat(){ - if(!$this->attributes['final_payment_date']){ return ""; } + public function getFinalPaymentDateFormat() + { + if (!$this->attributes['final_payment_date']) { + return ""; + } return Carbon::parse($this->attributes['final_payment_date'])->format(\Util::formatDateDB()); } - public function isCanceled(){ + public function isCanceled() + { return ($this->attributes['canceled'] !== null); } //erlös #getRevenueFactor - public function proceeds($raw = false){ + public function proceeds($raw = false) + { $proceeds = $this->attributes['price'] - $this->attributes['price_balance'] - $this->getServiceProviderPaymentsFactorTotal(true); return $raw ? $proceeds : Util::_number_format($proceeds); - } public function getServiceTotal($raw = false) { $total = 0; - foreach ($this->booking_service_items as $booking_service_item){ + foreach ($this->booking_service_items as $booking_service_item) { $total += $booking_service_item->getServicePriceRaw(); } return $raw ? $total : Util::_number_format($total); @@ -912,7 +926,7 @@ class Booking extends Model public function getServiceProviderPaymentsFactorTotal($raw = false) { $total = 0; - foreach ($this->service_provider_entries as $entry){ + foreach ($this->service_provider_entries as $entry) { $total += $entry->getAmountRaw() / $entry->getFactortRaw(); } return $raw ? $total : Util::_number_format($total); @@ -921,15 +935,16 @@ class Booking extends Model public function getServiceProviderPaymentsTotal($raw = false) { $total = 0; - foreach ($this->service_provider_entries as $entry){ + foreach ($this->service_provider_entries as $entry) { $total += $entry->getAmountRaw(); } return $raw ? $total : Util::_number_format($total); } - public function getKontoNumber(){ + public function getKontoNumber() + { - switch ($this->ev_number){ + switch ($this->ev_number) { case 'E01': return '4011'; break; @@ -942,44 +957,48 @@ class Booking extends Model case 'E04': return '4014'; break; - } return $this->ev_number; } public function getBookingNumber() { - if ($this->lead) - { + if ($this->lead) { return $this->lead->id; } return null; } - public function getPayingOutType(){ + public function getPayingOutType() + { return isset(self::$paying_out_types[$this->paying_out]) ? self::$paying_out_types[$this->paying_out] : '-'; } - public function getInsuranceOfferType(){ + public function getInsuranceOfferType() + { return isset(self::$insurance_offer_types[$this->insurance_offer]) ? self::$insurance_offer_types[$this->insurance_offer] : '-'; } - public function getPayingOutStatusType(){ + public function getPayingOutStatusType() + { return isset(self::$paying_out_status_types[$this->paying_out_status]) ? self::$paying_out_status_types[$this->paying_out_status] : '-'; } - public function getRefundType(){ + public function getRefundType() + { return isset(self::$refund_types[$this->refund]) ? self::$refund_types[$this->refund] : '-'; } - public function getXxTktType(){ + public function getXxTktType() + { return isset(self::$xx_tkt_types[$this->xx_tkt]) ? self::$xx_tkt_types[$this->xx_tkt] : '-'; } - public function getXxTktTypeList(){ - if(isset(self::$xx_tkt_types[$this->xx_tkt])){ - if($this->xx_tkt == 1 && $this->xx_tkt_date){ + public function getXxTktTypeList() + { + if (isset(self::$xx_tkt_types[$this->xx_tkt])) { + if ($this->xx_tkt == 1 && $this->xx_tkt_date) { return Carbon::parse($this->xx_tkt_date)->format('d.m.Y'); } return self::$xx_tkt_types[$this->xx_tkt]; @@ -987,9 +1006,10 @@ class Booking extends Model return "-"; } - public function getRefundTypeList(){ - if(isset(self::$refund_types[$this->refund])){ - if($this->refund == 1 && $this->refund_date){ + public function getRefundTypeList() + { + if (isset(self::$refund_types[$this->refund])) { + if ($this->refund == 1 && $this->refund_date) { return Carbon::parse($this->refund_date)->format('d.m.Y'); } return self::$refund_types[$this->refund]; @@ -997,57 +1017,65 @@ class Booking extends Model return "-"; } - public function getPayingOutColor(){ + public function getPayingOutColor() + { return isset($this->paying_out_colors[$this->paying_out]) ? $this->paying_out_colors[$this->paying_out] : ''; } - public function getPayingOutStatusColor(){ + public function getPayingOutStatusColor() + { return isset($this->paying_out_status_colors[$this->paying_out_status]) ? $this->paying_out_status_colors[$this->paying_out_status] : ''; } - public function getRefundColor(){ + public function getRefundColor() + { return isset($this->refund_colors[$this->refund]) ? $this->refund_colors[$this->refund] : '-'; } - public function getXxTktColor(){ + public function getXxTktColor() + { return isset($this->xx_tkt_colors[$this->xx_tkt]) ? $this->xx_tkt_colors[$this->xx_tkt] : '-'; } - public function countCustomerMailsBy($dir, $subdir=false){ + public function countCustomerMailsBy($dir, $subdir = false) + { - if($dir === 11){ + if ($dir === 11) { return $this->customer_mails->where('draft', true)->where('dir', '!=', 12)->count(); } - if($subdir){ - return $this->customer_mails->where('dir', $dir)->where('subdir', $subdir)->count(); + if ($subdir) { + return $this->customer_mails->where('dir', $dir)->where('subdir', $subdir)->count(); } return $this->customer_mails->where('dir', $dir)->count(); } /*DOCUMENTS*/ - public function hasDocument($identifier){ + public function hasDocument($identifier) + { return $this->booking_documents->where('identifier', $identifier)->count() ? true : false; } - public function getDocument($identifier){ + public function getDocument($identifier) + { return $this->booking_documents->where('identifier', $identifier)->first(); - } public function isDepositPossible($maxIntervalDays = false) { - $maxIntervalDays = $maxIntervalDays ? $maxIntervalDays : config('booking.max_interval_days'); - $diffInDays = $this->booking_date->diffInDays($this->start_date, false); - return $diffInDays > $maxIntervalDays; + $maxIntervalDays = $maxIntervalDays ? $maxIntervalDays : config('booking.max_interval_days'); + $diffInDays = $this->booking_date->diffInDays($this->start_date, false); + return $diffInDays > $maxIntervalDays; } - public function getConfirmationDeposit($percentageRate = false){ + public function getConfirmationDeposit($percentageRate = false) + { $percentageRate = $percentageRate ? $percentageRate : config('booking.deposit_percentage_rate'); return ($this->isDepositPossible() ? round($this->getPriceRaw() * $percentageRate / 100) : 0); } - public function getConfirmationFinalPayment(){ + public function getConfirmationFinalPayment() + { return $this->getPriceRaw() - $this->getConfirmationDeposit(); } } diff --git a/app/Models/TravelCompany.php b/app/Models/TravelCompany.php index 929ad2f..4570678 100644 --- a/app/Models/TravelCompany.php +++ b/app/Models/TravelCompany.php @@ -44,34 +44,34 @@ class TravelCompany extends Model protected $connection = 'mysql'; protected $table = 'travel_company'; - public $timestamps = false; + public $timestamps = false; - protected $casts = [ - 'percentage' => 'float', - 'is_allowed_edit_commission' => 'bool', - 'is_inhouse' => 'bool', + protected $casts = [ + 'percentage' => 'float', + 'is_allowed_edit_commission' => 'bool', + 'is_inhouse' => 'bool', 'active' => 'bool', 'contact_emails' => 'array' ]; - protected $fillable = [ - 'name', - 'percentage', - 'is_allowed_edit_commission', - 'is_inhouse', + protected $fillable = [ + 'name', + 'percentage', + 'is_allowed_edit_commission', + 'is_inhouse', 'contact_emails', 'active' ]; - public function bookings() - { - return $this->hasMany(Booking::class); - } + public function bookings() + { + return $this->hasMany(Booking::class); + } - public function booking_service_items() - { - return $this->hasMany(BookingServiceItem::class); - } + public function booking_service_items() + { + return $this->hasMany(BookingServiceItem::class); + } public function travel_company_services() { return $this->hasMany(TravelCompanyService::class, 'travel_company_id', 'id')->orderBy('pos', 'DESC'); @@ -84,7 +84,7 @@ class TravelCompany extends Model public function getPercentageAttribute() { - return Util::_number_format($this->attributes['percentage']); + return isset($this->attributes['percentage']) ? Util::_number_format($this->attributes['percentage']) : 0; } public function getPercentageRaw() diff --git a/app/Policies/ModelPolicy.php b/app/Policies/ModelPolicy.php new file mode 100755 index 0000000..b2fe18b --- /dev/null +++ b/app/Policies/ModelPolicy.php @@ -0,0 +1,72 @@ +can('view-any-' . $this->getModelClass()); + } + + public function view(User $user, Model $model) + { + if ($user->can('view-' . $this->getModelClass())) { + return true; + } + + if ($user->can('view-self-' . $this->getModelClass())) { + return $this->isOwner($user, $model); + } + + return false; + } + + public function create(User $user) + { + return $user->can('create-' . $this->getModelClass()); + } + + public function update(User $user, Model $model) + { + if ($user->can('update-' . $this->getModelClass())) { + return true; + } + + if ($user->can('update-self-' . $this->getModelClass())) { + return $this->isOwner($user, $model); + } + + return false; + } + + public function delete(User $user, Model $model) + { + if ($user->can('delete-' . $this->getModelClass())) { + return true; + } + + if ($user->can('delete-self-' . $this->getModelClass())) { + return $this->isOwner($user, $model); + } + + return false; + } + + private function isOwner(User $user, Model $model): bool + { + if (!empty($user) && method_exists($model, 'user')) { + return $user->getKey() === $model->getRelation('user')->getKey(); + } + + return false; + } +} diff --git a/app/Providers/AppServiceProvider.php b/app/Providers/AppServiceProvider.php index 1896fb1..69e215e 100755 --- a/app/Providers/AppServiceProvider.php +++ b/app/Providers/AppServiceProvider.php @@ -3,6 +3,7 @@ namespace App\Providers; use Illuminate\Support\Facades\Schema; +use Illuminate\Support\Facades\URL; use Illuminate\Support\ServiceProvider; class AppServiceProvider extends ServiceProvider @@ -14,6 +15,7 @@ class AppServiceProvider extends ServiceProvider */ public function boot() { + URL::forceScheme('https'); Schema::defaultStringLength(191); } diff --git a/app/Repositories/BookingPDFRepository.php b/app/Repositories/BookingPDFRepository.php index 372ecfb..505ddaf 100644 --- a/app/Repositories/BookingPDFRepository.php +++ b/app/Repositories/BookingPDFRepository.php @@ -14,7 +14,8 @@ use App\Libraries\CreatePDFCoupon; use Carbon; use Illuminate\Support\Facades\Storage; -class BookingPDFRepository extends BaseRepository { +class BookingPDFRepository extends BaseRepository +{ protected $prepath; @@ -29,7 +30,8 @@ class BookingPDFRepository extends BaseRepository { return $this->model; } - public function createPDF($id, $data){ + public function createPDF($id, $data) + { $this->model = Booking::findOrFail($id); @@ -57,7 +59,8 @@ class BookingPDFRepository extends BaseRepository { } } - public function createPDF_Registration(){ + public function createPDF_Registration() + { $document = new stdClass(); $document->name = 'registration'; $document->number = $this->model->lead_id; @@ -65,22 +68,21 @@ class BookingPDFRepository extends BaseRepository { $document->voucher = null; $document->date = now(); $document->total = $this->model->getPriceRaw(); - $dir = $this->getDirPath('pdf', 'booking', $document->date->format('Y')); - $filename = "Buchnungsauftrag-".$this->model->lead_id.".pdf"; - + $filename = "Buchnungsauftrag-" . $this->model->lead_id . ".pdf"; $pdf_file = new CreatePDF('pdf.booking_registration'); $data = [ 'booking' => $this->model, 'document' => $document, - ]; - $pdf_file->create($data, $filename, 'save', $this->prepath.$dir); - $booking_document = $this->savePDF($dir, $filename, 'sterntours-template', 'registration', $document); + ]; + $pdf_file->create($data, $filename, 'save', $this->prepath . $dir); + $booking_document = $this->savePDF($dir, $filename, 'sterntours-template', 'registration', $document); return $booking_document; } - public function createPDF_Confirmation(){ + public function createPDF_Confirmation() + { $document = new stdClass(); $document->name = 'confirmation'; $document->number = $this->model->lead_id; @@ -92,32 +94,31 @@ class BookingPDFRepository extends BaseRepository { $document->deposit = $this->model->getConfirmationDeposit(); $document->final_payment = $this->model->getConfirmationFinalPayment(); - if ($this->model->isDepositPossible()) - { + if ($this->model->isDepositPossible()) { $document->deposit_payment_date = date('Y-m-d'); $maxDepositIntervalDays = config('booking.max_deposit_interval_days'); $_start_date = clone $this->model->start_date; - $_start_date->modify('-'.$maxDepositIntervalDays.' days'); - $document->final_payment_date = $_start_date->format('Y-m-d'); - } - else { + $_start_date->modify('-' . $maxDepositIntervalDays . ' days'); + $document->final_payment_date = $_start_date->format('Y-m-d'); + } else { $document->final_payment_date = date('Y-m-d'); } $dir = $this->getDirPath('pdf', 'booking', $document->date->format('Y')); - $filename = "Reisebestätigung-".$this->model->lead_id.".pdf"; + $filename = "Reisebestätigung-" . $this->model->lead_id . ".pdf"; $pdf_file = new CreatePDF('pdf.booking_confirmation'); $data = [ 'booking' => $this->model, 'document' => $document, - ]; - $pdf_file->create($data, $filename, 'save', $this->prepath.$dir); - $booking_document = $this->savePDF($dir, $filename, 'sterntours-template', 'confirmation', $document); + ]; + $pdf_file->create($data, $filename, 'save', $this->prepath . $dir); + $booking_document = $this->savePDF($dir, $filename, 'sterntours-template', 'confirmation', $document); - return $booking_document; + return $booking_document; } - public function createPDF_Coupon($data){ + public function createPDF_Coupon($data) + { $document = new stdClass(); $document->name = 'coupon'; @@ -133,7 +134,7 @@ class BookingPDFRepository extends BaseRepository { $coupon->valid_date = $data['valid_date']; $coupon->is_redeemed = false; $coupon->save(); - + $document->number = $coupon->number; $document->value = $coupon->value; $document->issue_date = $coupon->issue_date; @@ -142,61 +143,63 @@ class BookingPDFRepository extends BaseRepository { $dir = $this->getDirPath('pdf', 'coupon', $document->date->format('Y')); - $filename = "Gutschein-".$coupon->number.".pdf"; + $filename = "Gutschein-" . $coupon->number . ".pdf"; $pdf_file = new CreatePDFCoupon('pdf.booking_coupon'); - $data = [ + $data = [ 'booking' => $this->model, 'document' => $document, 'coupon' => $coupon, - ]; - $pdf_file->create($data, $filename, 'save', $this->prepath.$dir); - $booking_document = $this->savePDF($dir, $filename, 'sterntours-coupon', 'coupon', $document); - return $booking_document; + ]; + $pdf_file->create($data, $filename, 'save', $this->prepath . $dir); + $booking_document = $this->savePDF($dir, $filename, 'sterntours-coupon', 'coupon', $document); + return $booking_document; } - public function createPDF_Voucher($agency = false){ + public function createPDF_Voucher($agency = false) + { $document = new stdClass(); $document->name = 'voucher'; $document->number = $this->model->lead_id; $document->name = 'voucher'; - $document->title = $agency ? 'VOUCHER Agentur': 'VOUCHER'; - $document->voucher = $agency ? 'agency': 'client'; + $document->title = $agency ? 'VOUCHER Agentur' : 'VOUCHER'; + $document->voucher = $agency ? 'agency' : 'client'; $document->date = now(); $dir = $this->getDirPath('pdf', 'voucher', $document->date->format('Y')); - $filename = ($agency ? 'VoucherAgentur': 'Voucher')."-".$this->model->lead_id.".pdf"; + $filename = ($agency ? 'VoucherAgentur' : 'Voucher') . "-" . $this->model->lead_id . ".pdf"; $pdf_file = new CreatePDF('pdf.booking_voucher'); $data = [ 'booking' => $this->model, 'document' => $document, - ]; - $pdf_file->create($data, $filename, 'save', $this->prepath.$dir); - $identifier = $agency ? 'voucher_agency': 'voucher'; - $booking_document = $this->savePDF($dir, $filename, 'sterntours-template', $identifier, $document); + ]; + $pdf_file->create($data, $filename, 'save', $this->prepath . $dir); + $identifier = $agency ? 'voucher_agency' : 'voucher'; + $booking_document = $this->savePDF($dir, $filename, 'sterntours-template', $identifier, $document); - return $booking_document; + return $booking_document; } - public function createPDF_Storno($data){ + public function createPDF_Storno($data) + { //Storno Values $storno_status_id = (int) $data['storno_status_id']; $storno_level = (float) $data['storno_level']; $storno_level_number = \Util::_clean_float($data['storno_level_number']); $storno_total_price = \Util::_clean_float($data['storno_total_price']); $price = $this->model->getPriceRaw(); - if($storno_level_number > 0 && $storno_level_number < 100 ){ + if ($storno_level_number > 0 && $storno_level_number < 100) { $storno_level = $storno_level_number; } //calculate price canceled - if($storno_total_price > 0){ + if ($storno_total_price > 0) { $price_canceled = $storno_total_price; $storno_level = ((100 / $price) * $storno_total_price); - }else{ + } else { $price_canceled = round($price / 100 * $storno_level, 2); } - + //init identifier $identifier = 'storno'; @@ -210,11 +213,11 @@ class BookingPDFRepository extends BaseRepository { 'storno_print' => $data['storno_print'], 'binary_data' => NULL, ]; - if($this->model->hasDocument($identifier)){ + if ($this->model->hasDocument($identifier)) { $booking_document = $this->model->getDocument($identifier); $booking_storno = $booking_document->booking_storno; $booking_storno->update($fill); - }else{ + } else { $booking_storno = BookingStorno::create($fill); } @@ -233,53 +236,54 @@ class BookingPDFRepository extends BaseRepository { $document->booking_storno_id = $booking_storno->id; $document->storno_level = $storno_level; - + //update Booking // Lead Status - if($storno_status_id){ + if ($storno_status_id) { $this->model->lead->status_id = $storno_status_id; $this->model->lead->save(); } - + $this->model->canceled = $storno_level; $this->model->price_canceled = $price_canceled; //must pay $this->model->price_total = $price_canceled; //is the same as Canceled( ... $this->model->price_balance = round($price - $price_canceled, 2); //is the Rest - must not pay $this->model->save(); - - + + $dir = $this->getDirPath('pdf', 'storno', $document->date->format('Y')); - $filename = "Reisestornierung -".$this->model->lead_id.".pdf"; + $filename = "Reisestornierung -" . $this->model->lead_id . ".pdf"; $pdf_file = new CreatePDF('pdf.booking_storno'); $data = [ 'booking' => $this->model, 'document' => $document, - ]; - $pdf_file->create($data, $filename, 'save', $this->prepath.$dir); - $this->savePDF($dir, $filename, 'sterntours-template', $identifier, $document); - + ]; + $pdf_file->create($data, $filename, 'save', $this->prepath . $dir); + $this->savePDF($dir, $filename, 'sterntours-template', $identifier, $document); } - - //get Invoice Name / Paths / ... - private function getDirPath($file, $dir, $year){ - $path = $file.'/'.$dir.'/'.$year.'/'; - if(!Storage::disk('public')->exists( $path )){ + //get Invoice Name / Paths / ... + private function getDirPath($file, $dir, $year) + { + + $path = $file . '/' . $dir . '/' . $year . '/'; + if (!Storage::disk('public')->exists($path)) { Storage::disk('public')->makeDirectory($path); //creates directory } return $path; } - private function savePDF($dir, $filename, $template, $identifier, $document = null, $status = 0){ + private function savePDF($dir, $filename, $template, $identifier, $document = null, $status = 0) + { $pdfMerger = new MyPDFMerger(); - $pdfMerger->addPDF($this->prepath.$dir.$filename); + $pdfMerger->addPDF($this->prepath . $dir . $filename); $file = $pdfMerger->myMerge('string', $filename, $template); - Storage::disk('public')->put($dir.$filename, $file); + Storage::disk('public')->put($dir . $filename, $file); $fill = [ 'booking_id' => $this->model->id, @@ -291,25 +295,23 @@ class BookingPDFRepository extends BaseRepository { 'original_name' => $filename, 'ext' => 'pdf', 'mine' => 'application/pdf', - 'size' => Storage::disk('public')->size($dir.$filename), + 'size' => Storage::disk('public')->size($dir . $filename), 'date' => now(), 'data' => $document, 'status' => $status, 'booking_storno_id' => isset($document->booking_storno_id) ? $document->booking_storno_id : null, 'coupon_id' => isset($document->coupon_id) ? $document->coupon_id : null, ]; - if($this->model->hasDocument($identifier)){ + if ($this->model->hasDocument($identifier)) { $booking_document = $this->model->getDocument($identifier); $booking_document->update($fill); - }else{ + } else { $booking_document = BookingDocument::create($fill); } return $booking_document; - //return $pdfMerger->myMerge('browser', $filename, $template); + //return $pdfMerger->myMerge('browser', $filename, $template); } } - - \ No newline at end of file diff --git a/app/Repositories/BookingRepository.php b/app/Repositories/BookingRepository.php index c4be862..7c4838d 100644 --- a/app/Repositories/BookingRepository.php +++ b/app/Repositories/BookingRepository.php @@ -3,19 +3,21 @@ namespace App\Repositories; -use Auth; -use App\Models\Lead; -use App\Services\Util; use App\Models\Booking; -use App\Models\Participant; -use App\Models\BookingNotice; -use App\Models\BookingServiceItem; -use App\Models\ServiceProviderEntry; use App\Models\BookingCompanyService; use App\Models\BookingCountryService; +use App\Models\BookingDraftItem; +use App\Models\BookingNotice; use App\Models\BookingProviderService; +use App\Models\BookingServiceItem; +use App\Models\Lead; +use App\Models\Participant; +use App\Models\ServiceProviderEntry; +use App\Services\Util; +use Auth; -class BookingRepository extends BaseRepository { +class BookingRepository extends BaseRepository +{ public function __construct(Booking $model) @@ -29,35 +31,38 @@ class BookingRepository extends BaseRepository { } - public function updateNotice($id, $data){ + public function updateNotice($id, $data) + { $this->model = Booking::findOrFail($id); - if($data['action'] === 'edit_notice' && isset($data['notice_id'])){ + if ($data['action'] === 'edit_notice' && isset($data['notice_id'])) { $BookingNotice = BookingNotice::findOrFail($data['notice_id']); $BookingNotice->message = isset($data['booking_notice']) ? $data['booking_notice'] : ""; $BookingNotice->edit_at = now(); $BookingNotice->save(); - }else{ + } else { //save_notice - BookingNotice::create([ - 'booking_id' => $this->model->id, - 'from_user_id' => Auth::user()->id, - 'to_user_id' => isset($this->model->sf_guard_user->user_id) ? $this->model->sf_guard_user->user_id : null, - 'message' => isset($data['booking_notice']) ? $data['booking_notice'] : "", + BookingNotice::create( + [ + 'booking_id' => $this->model->id, + 'from_user_id' => Auth::user()->id, + 'to_user_id' => isset($this->model->sf_guard_user->user_id) ? $this->model->sf_guard_user->user_id : null, + 'message' => isset($data['booking_notice']) ? $data['booking_notice'] : "", ] ); } - + return $this->model; } - public function updateLeadStatus($id, $data){ + public function updateLeadStatus($id, $data) + { $this->model = Booking::findOrFail($id); - if(isset($data['lead'])){ + if (isset($data['lead'])) { $lead = $this->model->lead; - if($lead->id != $data['lead']['id']){ + if ($lead->id != $data['lead']['id']) { abort(500); } $lead->status_id = $data['lead']['status_id']; @@ -68,7 +73,8 @@ class BookingRepository extends BaseRepository { return $this->model; } - public function updateBooking($id, $data){ + public function updateBooking($id, $data) + { $this->model = Booking::findOrFail($id); @@ -88,7 +94,7 @@ class BookingRepository extends BaseRepository { 'paying_out' => $data['paying_out'], 'paying_out_status' => $data['paying_out_status'], 'branch_id' => isset($data['branch_id']) ? $data['branch_id'] : 4, - 'airport_id' => (isset($data['airport_id']) && $data['airport_id']>0) ? $data['airport_id'] : null, + 'airport_id' => (isset($data['airport_id']) && $data['airport_id'] > 0) ? $data['airport_id'] : null, 'travel_company_id' => $data['travel_company_id'], //'airline_id' => $data['airline_id'], 'airline_ids' => isset($data['airline_ids']) ? $data['airline_ids'] : null, @@ -107,8 +113,8 @@ class BookingRepository extends BaseRepository { $this->model->fill($fill); $this->model->save(); - if($this->model->booking_draft_items){ - foreach($this->model->booking_draft_items as $booking_draft_item){ + if ($this->model->booking_draft_items) { + foreach ($this->model->booking_draft_items as $booking_draft_item) { $booking_draft_item->comfort = isset($data['travel_comfort']) ? true : false; $booking_draft_item->save(); } @@ -116,24 +122,26 @@ class BookingRepository extends BaseRepository { return $this->model; } - public function updateBookingServices($id, $data){ + public function updateBookingServices($id, $data) + { $this->model = Booking::findOrFail($id); - if(isset($data['country_service'])){ + if (isset($data['country_service'])) { $this->updateCountryService($data['country_service']); } - if(isset($data['provider_service'])){ + if (isset($data['provider_service'])) { $this->updateProviderService($data['provider_service']); } - if(isset($data['company_service'])){ + if (isset($data['company_service'])) { $this->updateCompanyService($data['company_service']); } return $this->model; } - public function updateBookingNumber($id, $data){ + public function updateBookingNumber($id, $data) + { $this->model = Booking::findOrFail($id); $fill = [ @@ -145,7 +153,8 @@ class BookingRepository extends BaseRepository { return $this->model; } - public function updateBookingPrice($id, $data){ + public function updateBookingPrice($id, $data) + { $this->model = Booking::findOrFail($id); $fill = [ @@ -158,46 +167,48 @@ class BookingRepository extends BaseRepository { $this->model->save(); return $this->model; } - - public function updateServiceProviderEntry($id, $data){ + + public function updateServiceProviderEntry($id, $data) + { $this->model = Booking::findOrFail($id); - if(isset($data['service_provider_entry'])){ - foreach($data['service_provider_entry'] as $spe_id => $fill){ - $ServiceProviderEntry = ServiceProviderEntry::findOrFail($spe_id); - if($ServiceProviderEntry->booking_id !== $this->model->id){ + if (isset($data['service_provider_entry'])) { + foreach ($data['service_provider_entry'] as $spe_id => $fill) { + $ServiceProviderEntry = ServiceProviderEntry::findOrFail($spe_id); + if ($ServiceProviderEntry->booking_id !== $this->model->id) { abort(500); - } - $fill['is_cleared'] = isset($fill['is_cleared']) ? true : false; - $fill['payment_date'] = isset($fill['payment_date']) ? _reformat_date($fill['payment_date']) : null; - $ServiceProviderEntry->fill($fill); - $ServiceProviderEntry->save(); - } + } + $fill['is_cleared'] = isset($fill['is_cleared']) ? true : false; + $fill['payment_date'] = isset($fill['payment_date']) ? _reformat_date($fill['payment_date']) : null; + $ServiceProviderEntry->fill($fill); + $ServiceProviderEntry->save(); + } } return $this->model; } - public function updateBookingServiceItem($id, $data){ + public function updateBookingServiceItem($id, $data) + { $this->model = Booking::findOrFail($id); - if(isset($data['booking_service_item'])){ - foreach($data['booking_service_item'] as $bsi_id => $fill){ - $BookingServiceItem = BookingServiceItem::findOrFail($bsi_id); - if($BookingServiceItem->booking_id !== $this->model->id){ + if (isset($data['booking_service_item'])) { + foreach ($data['booking_service_item'] as $bsi_id => $fill) { + $BookingServiceItem = BookingServiceItem::findOrFail($bsi_id); + if ($BookingServiceItem->booking_id !== $this->model->id) { abort(500); - } - $fill['is_commission_locked'] = isset($fill['is_commission_locked']) ? true : false; - $fill['travel_date'] = isset($fill['travel_date']) ? _reformat_date($fill['travel_date']) : now(); - $BookingServiceItem->fill($fill); - $BookingServiceItem->save(); + } + $fill['is_commission_locked'] = isset($fill['is_commission_locked']) ? true : false; + $fill['travel_date'] = isset($fill['travel_date']) ? _reformat_date($fill['travel_date']) : now(); + $BookingServiceItem->fill($fill); + $BookingServiceItem->save(); - if($fill['is_commission_locked'] === true){ + if ($fill['is_commission_locked'] === true) { $service_price_refund = 0; - if($BookingServiceItem->getServicePriceRaw() > 0){ + if ($BookingServiceItem->getServicePriceRaw() > 0) { $service_price_refund = $BookingServiceItem->getServicePriceRaw() / 100 * $BookingServiceItem->travel_company->getPercentageRaw(); } $BookingServiceItem->setServicePriceRefundRaw($service_price_refund); $BookingServiceItem->save(); - } - } + } + } } $this->model->price_total = ($this->model->getPriceRaw() + $this->model->getServiceTotal(true)); $this->model->save(); @@ -205,21 +216,22 @@ class BookingRepository extends BaseRepository { return $this->model; } - public function updateBookingParticipant($id, $data){ + public function updateBookingParticipant($id, $data) + { $this->model = Booking::findOrFail($id); - if(isset($data['participant'])){ - foreach($data['participant'] as $p_id => $fill){ - $Participant = Participant::findOrFail($p_id); - if($Participant->booking_id !== $this->model->id){ + if (isset($data['participant'])) { + foreach ($data['participant'] as $p_id => $fill) { + $Participant = Participant::findOrFail($p_id); + if ($Participant->booking_id !== $this->model->id) { abort(500); - } - $fill['participant_pass'] = isset($fill['participant_pass']) ? true : false; - $fill['participant_storno'] = isset($fill['participant_storno']) ? true : false; - $fill['participant_child'] = isset($fill['participant_child']) ? true : false; - $fill['participant_birthdate'] = isset($fill['participant_birthdate']) ? _reformat_date($fill['participant_birthdate']) : null; - $Participant->fill($fill); - $Participant->save(); - } + } + $fill['participant_pass'] = isset($fill['participant_pass']) ? true : false; + $fill['participant_storno'] = isset($fill['participant_storno']) ? true : false; + $fill['participant_child'] = isset($fill['participant_child']) ? true : false; + $fill['participant_birthdate'] = isset($fill['participant_birthdate']) ? _reformat_date($fill['participant_birthdate']) : null; + $Participant->fill($fill); + $Participant->save(); + } } //main $this->model->participant_salutation_id = isset($data['participant_salutation_id']) ? $data['participant_salutation_id'] : null; @@ -229,29 +241,30 @@ class BookingRepository extends BaseRepository { $this->model->participant_birthdate = isset($data['participant_birthdate']) ? _reformat_date($data['participant_birthdate']) : null; $this->model->participant_pass = isset($data['participant_pass']) ? true : false; //update pax - if($this->model->participants->count() > 0){ + if ($this->model->participants->count() > 0) { $this->model->pax = $this->model->participants->where('participant_storno', false)->count(); } $this->model->save(); return $this->model; } - - - private function updateCountryService($country_services){ - foreach ($country_services as $country_service_id=>$val){ + + + private function updateCountryService($country_services) + { + foreach ($country_services as $country_service_id => $val) { $booking_country_service = BookingCountryService::where('travel_country_service_id', '=', $country_service_id) ->where('booking_id', '=', $this->model->id)->first(); - if(!$booking_country_service){ + if (!$booking_country_service) { BookingCountryService::create([ 'travel_country_service_id' => $country_service_id, 'booking_id' => $this->model->id, 'status' => $val ]); - }else{ + } else { $booking_country_service->fill([ 'status' => $val ]); @@ -260,18 +273,19 @@ class BookingRepository extends BaseRepository { } } - private function updateProviderService($provider_service){ - foreach ($provider_service as $provider_service_id=>$val){ + private function updateProviderService($provider_service) + { + foreach ($provider_service as $provider_service_id => $val) { $booking_provider_service = BookingProviderService::where('service_provider_service_id', '=', $provider_service_id) ->where('booking_id', '=', $this->model->id)->first(); - if(!$booking_provider_service){ + if (!$booking_provider_service) { BookingProviderService::create([ 'service_provider_service_id' => $provider_service_id, 'booking_id' => $this->model->id, 'status' => $val ]); - }else{ + } else { $booking_provider_service->fill([ 'status' => $val ]); @@ -280,18 +294,19 @@ class BookingRepository extends BaseRepository { } } - private function updateCompanyService($company_service){ - foreach ($company_service as $company_service_id=>$val){ + private function updateCompanyService($company_service) + { + foreach ($company_service as $company_service_id => $val) { $booking_company_service = BookingCompanyService::where('travel_company_service_id', '=', $company_service_id) - ->where('booking_id', '=', $this->model->id)->first(); + ->where('booking_id', '=', $this->model->id)->first(); - if(!$booking_company_service){ + if (!$booking_company_service) { BookingCompanyService::create([ 'travel_company_service_id' => $company_service_id, 'booking_id' => $this->model->id, 'status' => $val ]); - }else{ + } else { $booking_company_service->fill([ 'status' => $val ]); @@ -300,4 +315,135 @@ class BookingRepository extends BaseRepository { } } -} \ No newline at end of file + public function convertArrangementsToDrafts(Booking $booking) + { + if (!$booking->arrangements || $booking->arrangements->count() == 0) { + return; + } + + $nextPos = 1; + if ($booking->booking_draft_items && $booking->booking_draft_items->count() > 0) { + $nextPos = $booking->booking_draft_items->max('pos') + 1; + } + + foreach ($booking->arrangements->sortByDesc('view_position') as $arrangement) { + + $data = $arrangement->getDataAsMap(); + + + // Erstelle neues BookingDraftItem aus Arrangement + $draftItem = new BookingDraftItem(); + + // Mappe die grundlegenden Daten + $draftItem->booking_id = $booking->id; + $draftItem->pos = $nextPos++; + + // Daten von Arrangement übertragen + if ($arrangement->begin) { + $draftItem->start_date = $arrangement->begin->format('Y-m-d'); + } + if ($arrangement->end) { + $draftItem->end_date = $arrangement->end->format('Y-m-d'); + } + + // Service/Beschreibung aus data_s generieren + $serviceText = $arrangement->getDataS(); + $draftItem->service = $serviceText; + + $draftItem->adult = $data['Teilnehmer'] ?? $booking->pax; + $draftItem->price_adult = $data['Preis'] ?? 0; + + // PDF-Einstellung übernehmen + $draftItem->in_pdf = $arrangement->in_pdf ? 1 : 0; + + // Versuche DraftType zu finden basierend auf ArrangementType + if ($arrangement->arrangement_type && isset($arrangement->arrangement_type->name)) { + $draftType = \App\Models\DraftType::where('name', 'like', '%' . $arrangement->arrangement_type->name . '%')->first(); + if ($draftType) { + $draftItem->draft_type_id = $draftType->id; + } + } else { + // Fallback: Suche nach einem passenden DraftType basierend auf dem Namen + $draftType = \App\Models\DraftType::where('name', 'like', '%' . $arrangement->type_s . '%')->first(); + if ($draftType) { + $draftItem->draft_type_id = $draftType->id; + } + } + + // Standardwerte für neue Felder setzen + $draftItem->comfort = 0; + $draftItem->price = 0; + $draftItem->adult = 0; + $draftItem->price_children = 0; + $draftItem->children = 0; + + $draftItem->save(); + + // Arrangement als konvertiert markieren oder löschen + // Hier löschen wir das Arrangement nach erfolgreicher Konvertierung + $arrangement->delete(); + } + + // Stelle sicher, dass new_drafts aktiviert ist + if (!$booking->new_drafts) { + $booking->new_drafts = true; + $booking->save(); + } + + // Preise neu berechnen + $booking->calculate_price_total(); + } + + public function loadDraftToBooking($bookingId, $draftId) + { + $booking = Booking::findOrFail($bookingId); + $draft = \App\Models\Draft::findOrFail($draftId); + + if (!$booking->new_drafts) { + $booking->new_drafts = true; + $booking->save(); + } + + // Lösche bestehende Draft Items falls gewünscht + if ($booking->booking_draft_items && $booking->booking_draft_items->count() > 0) { + foreach ($booking->booking_draft_items as $existingItem) { + $existingItem->delete(); + } + } + + $pos = 1; + foreach ($draft->draft_items as $draftItem) { + $bookingDraftItem = new \App\Models\BookingDraftItem(); + + // Kopiere alle Daten aus der Draft Vorlage + $bookingDraftItem->booking_id = $booking->id; + $bookingDraftItem->draft_type_id = $draftItem->draft_type_id; + $bookingDraftItem->travel_program_id = null; // Wird später gesetzt wenn nötig + $bookingDraftItem->fewo_lodging_id = null; + $bookingDraftItem->travel_class_id = null; + $bookingDraftItem->draft_item_id = $draftItem->id; + $bookingDraftItem->request_date = null; + $bookingDraftItem->days_start = $draftItem->days_start; + $bookingDraftItem->days_duration = $draftItem->days_duration; + $bookingDraftItem->start_date = null; // Wird später basierend auf Reisebeginn gesetzt + $bookingDraftItem->end_date = null; // Wird später basierend auf Reiseende gesetzt + $bookingDraftItem->service = $draftItem->service; + $bookingDraftItem->price_adult = $draftItem->price_adult; + $bookingDraftItem->adult = $draftItem->adult; + $bookingDraftItem->price_children = $draftItem->price_children; + $bookingDraftItem->children = $draftItem->children; + $bookingDraftItem->price = 0; // Wird später berechnet + $bookingDraftItem->pos = $pos++; + $bookingDraftItem->in_pdf = $draftItem->in_pdf; + $bookingDraftItem->comfort = 0; + $bookingDraftItem->status = 1; + + $bookingDraftItem->save(); + } + + // Preise neu berechnen + $booking->calculate_price_total(); + + return $booking; + } +} diff --git a/composer.json b/composer.json index bf0d94f..cf534af 100755 --- a/composer.json +++ b/composer.json @@ -14,7 +14,7 @@ } ], "require": { - "php": "^7.3|^8.0", + "php": "^8.0|^8.2", "bacon/bacon-qr-code": "^3.0", "barryvdh/laravel-dompdf": "*", "cviebrock/eloquent-sluggable": "*", diff --git a/composer.lock b/composer.lock index d7bf1ea..379627f 100644 --- a/composer.lock +++ b/composer.lock @@ -139,16 +139,16 @@ }, { "name": "brick/math", - "version": "0.12.3", + "version": "0.13.1", "source": { "type": "git", "url": "https://github.com/brick/math.git", - "reference": "866551da34e9a618e64a819ee1e01c20d8a588ba" + "reference": "fc7ed316430118cc7836bf45faff18d5dfc8de04" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/brick/math/zipball/866551da34e9a618e64a819ee1e01c20d8a588ba", - "reference": "866551da34e9a618e64a819ee1e01c20d8a588ba", + "url": "https://api.github.com/repos/brick/math/zipball/fc7ed316430118cc7836bf45faff18d5dfc8de04", + "reference": "fc7ed316430118cc7836bf45faff18d5dfc8de04", "shasum": "" }, "require": { @@ -187,7 +187,7 @@ ], "support": { "issues": "https://github.com/brick/math/issues", - "source": "https://github.com/brick/math/tree/0.12.3" + "source": "https://github.com/brick/math/tree/0.13.1" }, "funding": [ { @@ -195,7 +195,7 @@ "type": "github" } ], - "time": "2025-02-28T13:11:00+00:00" + "time": "2025-03-29T13:50:30+00:00" }, { "name": "carbonphp/carbon-doctrine-types", @@ -421,16 +421,16 @@ }, { "name": "composer/semver", - "version": "3.4.3", + "version": "3.4.4", "source": { "type": "git", "url": "https://github.com/composer/semver.git", - "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12" + "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12", - "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12", + "url": "https://api.github.com/repos/composer/semver/zipball/198166618906cb2de69b95d7d47e5fa8aa1b2b95", + "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95", "shasum": "" }, "require": { @@ -482,7 +482,7 @@ "support": { "irc": "ircs://irc.libera.chat:6697/composer", "issues": "https://github.com/composer/semver/issues", - "source": "https://github.com/composer/semver/tree/3.4.3" + "source": "https://github.com/composer/semver/tree/3.4.4" }, "funding": [ { @@ -492,13 +492,9 @@ { "url": "https://github.com/composer", "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/composer/composer", - "type": "tidelift" } ], - "time": "2024-09-19T14:15:21+00:00" + "time": "2025-08-20T19:15:30+00:00" }, { "name": "cviebrock/eloquent-sluggable", @@ -828,131 +824,41 @@ }, "time": "2020-10-23T07:09:33+00:00" }, - { - "name": "doctrine/cache", - "version": "2.2.0", - "source": { - "type": "git", - "url": "https://github.com/doctrine/cache.git", - "reference": "1ca8f21980e770095a31456042471a57bc4c68fb" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb", - "reference": "1ca8f21980e770095a31456042471a57bc4c68fb", - "shasum": "" - }, - "require": { - "php": "~7.1 || ^8.0" - }, - "conflict": { - "doctrine/common": ">2.2,<2.4" - }, - "require-dev": { - "cache/integration-tests": "dev-master", - "doctrine/coding-standard": "^9", - "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", - "psr/cache": "^1.0 || ^2.0 || ^3.0", - "symfony/cache": "^4.4 || ^5.4 || ^6", - "symfony/var-exporter": "^4.4 || ^5.4 || ^6" - }, - "type": "library", - "autoload": { - "psr-4": { - "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, - { - "name": "Roman Borschel", - "email": "roman@code-factory.org" - }, - { - "name": "Benjamin Eberlei", - "email": "kontakt@beberlei.de" - }, - { - "name": "Jonathan Wage", - "email": "jonwage@gmail.com" - }, - { - "name": "Johannes Schmitt", - "email": "schmittjoh@gmail.com" - } - ], - "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.", - "homepage": "https://www.doctrine-project.org/projects/cache.html", - "keywords": [ - "abstraction", - "apcu", - "cache", - "caching", - "couchdb", - "memcached", - "php", - "redis", - "xcache" - ], - "support": { - "issues": "https://github.com/doctrine/cache/issues", - "source": "https://github.com/doctrine/cache/tree/2.2.0" - }, - "funding": [ - { - "url": "https://www.doctrine-project.org/sponsorship.html", - "type": "custom" - }, - { - "url": "https://www.patreon.com/phpdoctrine", - "type": "patreon" - }, - { - "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache", - "type": "tidelift" - } - ], - "time": "2022-05-20T20:07:39+00:00" - }, { "name": "doctrine/dbal", - "version": "3.9.4", + "version": "3.10.1", "source": { "type": "git", "url": "https://github.com/doctrine/dbal.git", - "reference": "ec16c82f20be1a7224e65ac67144a29199f87959" + "reference": "3626601014388095d3af9de7e9e958623b7ef005" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/dbal/zipball/ec16c82f20be1a7224e65ac67144a29199f87959", - "reference": "ec16c82f20be1a7224e65ac67144a29199f87959", + "url": "https://api.github.com/repos/doctrine/dbal/zipball/3626601014388095d3af9de7e9e958623b7ef005", + "reference": "3626601014388095d3af9de7e9e958623b7ef005", "shasum": "" }, "require": { "composer-runtime-api": "^2", - "doctrine/cache": "^1.11|^2.0", "doctrine/deprecations": "^0.5.3|^1", "doctrine/event-manager": "^1|^2", "php": "^7.4 || ^8.0", "psr/cache": "^1|^2|^3", "psr/log": "^1|^2|^3" }, + "conflict": { + "doctrine/cache": "< 1.11" + }, "require-dev": { - "doctrine/coding-standard": "12.0.0", + "doctrine/cache": "^1.11|^2.0", + "doctrine/coding-standard": "13.0.0", "fig/log-test": "^1", "jetbrains/phpstorm-stubs": "2023.1", - "phpstan/phpstan": "2.1.1", + "phpstan/phpstan": "2.1.17", "phpstan/phpstan-strict-rules": "^2", - "phpunit/phpunit": "9.6.22", - "slevomat/coding-standard": "8.13.1", - "squizlabs/php_codesniffer": "3.10.2", + "phpunit/phpunit": "9.6.23", + "slevomat/coding-standard": "8.16.2", + "squizlabs/php_codesniffer": "3.13.1", "symfony/cache": "^5.4|^6.0|^7.0", "symfony/console": "^4.4|^5.4|^6.0|^7.0" }, @@ -1014,7 +920,7 @@ ], "support": { "issues": "https://github.com/doctrine/dbal/issues", - "source": "https://github.com/doctrine/dbal/tree/3.9.4" + "source": "https://github.com/doctrine/dbal/tree/3.10.1" }, "funding": [ { @@ -1030,30 +936,33 @@ "type": "tidelift" } ], - "time": "2025-01-16T08:28:55+00:00" + "time": "2025-08-05T12:18:06+00:00" }, { "name": "doctrine/deprecations", - "version": "1.1.4", + "version": "1.1.5", "source": { "type": "git", "url": "https://github.com/doctrine/deprecations.git", - "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9" + "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/deprecations/zipball/31610dbb31faa98e6b5447b62340826f54fbc4e9", - "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9", + "url": "https://api.github.com/repos/doctrine/deprecations/zipball/459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38", + "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38", "shasum": "" }, "require": { "php": "^7.1 || ^8.0" }, + "conflict": { + "phpunit/phpunit": "<=7.5 || >=13" + }, "require-dev": { - "doctrine/coding-standard": "^9 || ^12", - "phpstan/phpstan": "1.4.10 || 2.0.3", + "doctrine/coding-standard": "^9 || ^12 || ^13", + "phpstan/phpstan": "1.4.10 || 2.1.11", "phpstan/phpstan-phpunit": "^1.0 || ^2", - "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12", "psr/log": "^1 || ^2 || ^3" }, "suggest": { @@ -1073,9 +982,9 @@ "homepage": "https://www.doctrine-project.org/", "support": { "issues": "https://github.com/doctrine/deprecations/issues", - "source": "https://github.com/doctrine/deprecations/tree/1.1.4" + "source": "https://github.com/doctrine/deprecations/tree/1.1.5" }, - "time": "2024-12-07T21:18:45+00:00" + "time": "2025-04-07T20:06:18+00:00" }, { "name": "doctrine/event-manager", @@ -1170,33 +1079,32 @@ }, { "name": "doctrine/inflector", - "version": "2.0.10", + "version": "2.1.0", "source": { "type": "git", "url": "https://github.com/doctrine/inflector.git", - "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc" + "reference": "6d6c96277ea252fc1304627204c3d5e6e15faa3b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc", - "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/6d6c96277ea252fc1304627204c3d5e6e15faa3b", + "reference": "6d6c96277ea252fc1304627204c3d5e6e15faa3b", "shasum": "" }, "require": { "php": "^7.2 || ^8.0" }, "require-dev": { - "doctrine/coding-standard": "^11.0", - "phpstan/phpstan": "^1.8", - "phpstan/phpstan-phpunit": "^1.1", - "phpstan/phpstan-strict-rules": "^1.3", - "phpunit/phpunit": "^8.5 || ^9.5", - "vimeo/psalm": "^4.25 || ^5.4" + "doctrine/coding-standard": "^12.0 || ^13.0", + "phpstan/phpstan": "^1.12 || ^2.0", + "phpstan/phpstan-phpunit": "^1.4 || ^2.0", + "phpstan/phpstan-strict-rules": "^1.6 || ^2.0", + "phpunit/phpunit": "^8.5 || ^12.2" }, "type": "library", "autoload": { "psr-4": { - "Doctrine\\Inflector\\": "lib/Doctrine/Inflector" + "Doctrine\\Inflector\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -1241,7 +1149,7 @@ ], "support": { "issues": "https://github.com/doctrine/inflector/issues", - "source": "https://github.com/doctrine/inflector/tree/2.0.10" + "source": "https://github.com/doctrine/inflector/tree/2.1.0" }, "funding": [ { @@ -1257,7 +1165,7 @@ "type": "tidelift" } ], - "time": "2024-02-18T20:23:39+00:00" + "time": "2025-08-10T19:31:58+00:00" }, { "name": "doctrine/lexer", @@ -1651,16 +1559,16 @@ }, { "name": "firebase/php-jwt", - "version": "v6.11.0", + "version": "v6.11.1", "source": { "type": "git", "url": "https://github.com/firebase/php-jwt.git", - "reference": "8f718f4dfc9c5d5f0c994cdfd103921b43592712" + "reference": "d1e91ecf8c598d073d0995afa8cd5c75c6e19e66" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/firebase/php-jwt/zipball/8f718f4dfc9c5d5f0c994cdfd103921b43592712", - "reference": "8f718f4dfc9c5d5f0c994cdfd103921b43592712", + "url": "https://api.github.com/repos/firebase/php-jwt/zipball/d1e91ecf8c598d073d0995afa8cd5c75c6e19e66", + "reference": "d1e91ecf8c598d073d0995afa8cd5c75c6e19e66", "shasum": "" }, "require": { @@ -1708,9 +1616,9 @@ ], "support": { "issues": "https://github.com/firebase/php-jwt/issues", - "source": "https://github.com/firebase/php-jwt/tree/v6.11.0" + "source": "https://github.com/firebase/php-jwt/tree/v6.11.1" }, - "time": "2025-01-23T05:11:06+00:00" + "time": "2025-04-09T20:32:01+00:00" }, { "name": "graham-campbell/result-type", @@ -1776,22 +1684,22 @@ }, { "name": "guzzlehttp/guzzle", - "version": "7.9.3", + "version": "7.10.0", "source": { "type": "git", "url": "https://github.com/guzzle/guzzle.git", - "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77" + "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7b2f29fe81dc4da0ca0ea7d42107a0845946ea77", - "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4", + "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4", "shasum": "" }, "require": { "ext-json": "*", - "guzzlehttp/promises": "^1.5.3 || ^2.0.3", - "guzzlehttp/psr7": "^2.7.0", + "guzzlehttp/promises": "^2.3", + "guzzlehttp/psr7": "^2.8", "php": "^7.2.5 || ^8.0", "psr/http-client": "^1.0", "symfony/deprecation-contracts": "^2.2 || ^3.0" @@ -1882,7 +1790,7 @@ ], "support": { "issues": "https://github.com/guzzle/guzzle/issues", - "source": "https://github.com/guzzle/guzzle/tree/7.9.3" + "source": "https://github.com/guzzle/guzzle/tree/7.10.0" }, "funding": [ { @@ -1898,20 +1806,20 @@ "type": "tidelift" } ], - "time": "2025-03-27T13:37:11+00:00" + "time": "2025-08-23T22:36:01+00:00" }, { "name": "guzzlehttp/promises", - "version": "2.2.0", + "version": "2.3.0", "source": { "type": "git", "url": "https://github.com/guzzle/promises.git", - "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c" + "reference": "481557b130ef3790cf82b713667b43030dc9c957" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/7c69f28996b0a6920945dd20b3857e499d9ca96c", - "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c", + "url": "https://api.github.com/repos/guzzle/promises/zipball/481557b130ef3790cf82b713667b43030dc9c957", + "reference": "481557b130ef3790cf82b713667b43030dc9c957", "shasum": "" }, "require": { @@ -1919,7 +1827,7 @@ }, "require-dev": { "bamarni/composer-bin-plugin": "^1.8.2", - "phpunit/phpunit": "^8.5.39 || ^9.6.20" + "phpunit/phpunit": "^8.5.44 || ^9.6.25" }, "type": "library", "extra": { @@ -1965,7 +1873,7 @@ ], "support": { "issues": "https://github.com/guzzle/promises/issues", - "source": "https://github.com/guzzle/promises/tree/2.2.0" + "source": "https://github.com/guzzle/promises/tree/2.3.0" }, "funding": [ { @@ -1981,20 +1889,20 @@ "type": "tidelift" } ], - "time": "2025-03-27T13:27:01+00:00" + "time": "2025-08-22T14:34:08+00:00" }, { "name": "guzzlehttp/psr7", - "version": "2.7.1", + "version": "2.8.0", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", - "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16" + "reference": "21dc724a0583619cd1652f673303492272778051" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/c2270caaabe631b3b44c85f99e5a04bbb8060d16", - "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/21dc724a0583619cd1652f673303492272778051", + "reference": "21dc724a0583619cd1652f673303492272778051", "shasum": "" }, "require": { @@ -2010,7 +1918,7 @@ "require-dev": { "bamarni/composer-bin-plugin": "^1.8.2", "http-interop/http-factory-tests": "0.9.0", - "phpunit/phpunit": "^8.5.39 || ^9.6.20" + "phpunit/phpunit": "^8.5.44 || ^9.6.25" }, "suggest": { "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" @@ -2081,7 +1989,7 @@ ], "support": { "issues": "https://github.com/guzzle/psr7/issues", - "source": "https://github.com/guzzle/psr7/tree/2.7.1" + "source": "https://github.com/guzzle/psr7/tree/2.8.0" }, "funding": [ { @@ -2097,7 +2005,7 @@ "type": "tidelift" } ], - "time": "2025-03-27T12:30:47+00:00" + "time": "2025-08-23T21:21:41+00:00" }, { "name": "intervention/image", @@ -2185,11 +2093,11 @@ }, { "name": "iqcontent/laravel-filemanager", - "version": "dev-main", + "version": "dev-master", "dist": { "type": "path", "url": "./packages/iqcontent/laravel-filemanager", - "reference": "c351419be01fc163ba60da84031cc6419dfdbe8d" + "reference": "5635aaad9f766b71117db71f2b7ea32c93e4faeb" }, "require": { "cviebrock/eloquent-sluggable": "*", @@ -2565,16 +2473,16 @@ }, { "name": "laravel/helpers", - "version": "v1.7.2", + "version": "v1.8.0", "source": { "type": "git", "url": "https://github.com/laravel/helpers.git", - "reference": "672d79d5b5f65dc821e57783fa11f22c4d762d70" + "reference": "97738f7282cdac8d261468ad214d80e88042edd3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/helpers/zipball/672d79d5b5f65dc821e57783fa11f22c4d762d70", - "reference": "672d79d5b5f65dc821e57783fa11f22c4d762d70", + "url": "https://api.github.com/repos/laravel/helpers/zipball/97738f7282cdac8d261468ad214d80e88042edd3", + "reference": "97738f7282cdac8d261468ad214d80e88042edd3", "shasum": "" }, "require": { @@ -2616,9 +2524,9 @@ "laravel" ], "support": { - "source": "https://github.com/laravel/helpers/tree/v1.7.2" + "source": "https://github.com/laravel/helpers/tree/v1.8.0" }, - "time": "2025-01-24T15:41:25+00:00" + "time": "2025-09-01T19:53:58+00:00" }, { "name": "laravel/passport", @@ -3098,16 +3006,16 @@ }, { "name": "league/commonmark", - "version": "2.6.1", + "version": "2.7.1", "source": { "type": "git", "url": "https://github.com/thephpleague/commonmark.git", - "reference": "d990688c91cedfb69753ffc2512727ec646df2ad" + "reference": "10732241927d3971d28e7ea7b5712721fa2296ca" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d990688c91cedfb69753ffc2512727ec646df2ad", - "reference": "d990688c91cedfb69753ffc2512727ec646df2ad", + "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/10732241927d3971d28e7ea7b5712721fa2296ca", + "reference": "10732241927d3971d28e7ea7b5712721fa2296ca", "shasum": "" }, "require": { @@ -3136,7 +3044,7 @@ "symfony/process": "^5.4 | ^6.0 | ^7.0", "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0", "unleashedtech/php-coding-standard": "^3.1.1", - "vimeo/psalm": "^4.24.0 || ^5.0.0" + "vimeo/psalm": "^4.24.0 || ^5.0.0 || ^6.0.0" }, "suggest": { "symfony/yaml": "v2.3+ required if using the Front Matter extension" @@ -3144,7 +3052,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "2.7-dev" + "dev-main": "2.8-dev" } }, "autoload": { @@ -3201,7 +3109,7 @@ "type": "tidelift" } ], - "time": "2024-12-29T14:10:59+00:00" + "time": "2025-07-20T12:47:49+00:00" }, { "name": "league/config", @@ -3753,16 +3661,16 @@ }, { "name": "maatwebsite/excel", - "version": "3.1.64", + "version": "3.1.67", "source": { "type": "git", "url": "https://github.com/SpartnerNL/Laravel-Excel.git", - "reference": "e25d44a2d91da9179cd2d7fec952313548597a79" + "reference": "e508e34a502a3acc3329b464dad257378a7edb4d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/SpartnerNL/Laravel-Excel/zipball/e25d44a2d91da9179cd2d7fec952313548597a79", - "reference": "e25d44a2d91da9179cd2d7fec952313548597a79", + "url": "https://api.github.com/repos/SpartnerNL/Laravel-Excel/zipball/e508e34a502a3acc3329b464dad257378a7edb4d", + "reference": "e508e34a502a3acc3329b464dad257378a7edb4d", "shasum": "" }, "require": { @@ -3770,7 +3678,7 @@ "ext-json": "*", "illuminate/support": "5.8.*||^6.0||^7.0||^8.0||^9.0||^10.0||^11.0||^12.0", "php": "^7.0||^8.0", - "phpoffice/phpspreadsheet": "^1.29.9", + "phpoffice/phpspreadsheet": "^1.30.0", "psr/simple-cache": "^1.0||^2.0||^3.0" }, "require-dev": { @@ -3818,7 +3726,7 @@ ], "support": { "issues": "https://github.com/SpartnerNL/Laravel-Excel/issues", - "source": "https://github.com/SpartnerNL/Laravel-Excel/tree/3.1.64" + "source": "https://github.com/SpartnerNL/Laravel-Excel/tree/3.1.67" }, "funding": [ { @@ -3830,26 +3738,26 @@ "type": "github" } ], - "time": "2025-02-24T11:12:50+00:00" + "time": "2025-08-26T09:13:16+00:00" }, { "name": "maennchen/zipstream-php", - "version": "3.1.2", + "version": "3.2.0", "source": { "type": "git", "url": "https://github.com/maennchen/ZipStream-PHP.git", - "reference": "aeadcf5c412332eb426c0f9b4485f6accba2a99f" + "reference": "9712d8fa4cdf9240380b01eb4be55ad8dcf71416" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/aeadcf5c412332eb426c0f9b4485f6accba2a99f", - "reference": "aeadcf5c412332eb426c0f9b4485f6accba2a99f", + "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/9712d8fa4cdf9240380b01eb4be55ad8dcf71416", + "reference": "9712d8fa4cdf9240380b01eb4be55ad8dcf71416", "shasum": "" }, "require": { "ext-mbstring": "*", "ext-zlib": "*", - "php-64bit": "^8.2" + "php-64bit": "^8.3" }, "require-dev": { "brianium/paratest": "^7.7", @@ -3858,7 +3766,7 @@ "guzzlehttp/guzzle": "^7.5", "mikey179/vfsstream": "^1.6", "php-coveralls/php-coveralls": "^2.5", - "phpunit/phpunit": "^11.0", + "phpunit/phpunit": "^12.0", "vimeo/psalm": "^6.0" }, "suggest": { @@ -3900,7 +3808,7 @@ ], "support": { "issues": "https://github.com/maennchen/ZipStream-PHP/issues", - "source": "https://github.com/maennchen/ZipStream-PHP/tree/3.1.2" + "source": "https://github.com/maennchen/ZipStream-PHP/tree/3.2.0" }, "funding": [ { @@ -3908,7 +3816,7 @@ "type": "github" } ], - "time": "2025-01-27T12:07:53+00:00" + "time": "2025-07-17T11:15:13+00:00" }, { "name": "markbaker/complex", @@ -4019,16 +3927,16 @@ }, { "name": "masterminds/html5", - "version": "2.9.0", + "version": "2.10.0", "source": { "type": "git", "url": "https://github.com/Masterminds/html5-php.git", - "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6" + "reference": "fcf91eb64359852f00d921887b219479b4f21251" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6", - "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6", + "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/fcf91eb64359852f00d921887b219479b4f21251", + "reference": "fcf91eb64359852f00d921887b219479b4f21251", "shasum": "" }, "require": { @@ -4080,9 +3988,9 @@ ], "support": { "issues": "https://github.com/Masterminds/html5-php/issues", - "source": "https://github.com/Masterminds/html5-php/tree/2.9.0" + "source": "https://github.com/Masterminds/html5-php/tree/2.10.0" }, - "time": "2024-03-31T07:05:07+00:00" + "time": "2025-07-25T09:04:22+00:00" }, { "name": "monolog/monolog", @@ -4357,29 +4265,29 @@ }, { "name": "nette/utils", - "version": "v4.0.6", + "version": "v4.0.8", "source": { "type": "git", "url": "https://github.com/nette/utils.git", - "reference": "ce708655043c7050eb050df361c5e313cf708309" + "reference": "c930ca4e3cf4f17dcfb03037703679d2396d2ede" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nette/utils/zipball/ce708655043c7050eb050df361c5e313cf708309", - "reference": "ce708655043c7050eb050df361c5e313cf708309", + "url": "https://api.github.com/repos/nette/utils/zipball/c930ca4e3cf4f17dcfb03037703679d2396d2ede", + "reference": "c930ca4e3cf4f17dcfb03037703679d2396d2ede", "shasum": "" }, "require": { - "php": "8.0 - 8.4" + "php": "8.0 - 8.5" }, "conflict": { "nette/finder": "<3", "nette/schema": "<1.2.2" }, "require-dev": { - "jetbrains/phpstorm-attributes": "dev-master", + "jetbrains/phpstorm-attributes": "^1.2", "nette/tester": "^2.5", - "phpstan/phpstan": "^1.0", + "phpstan/phpstan-nette": "^2.0@stable", "tracy/tracy": "^2.9" }, "suggest": { @@ -4397,6 +4305,9 @@ } }, "autoload": { + "psr-4": { + "Nette\\": "src" + }, "classmap": [ "src/" ] @@ -4437,22 +4348,22 @@ ], "support": { "issues": "https://github.com/nette/utils/issues", - "source": "https://github.com/nette/utils/tree/v4.0.6" + "source": "https://github.com/nette/utils/tree/v4.0.8" }, - "time": "2025-03-30T21:06:30+00:00" + "time": "2025-08-06T21:43:34+00:00" }, { "name": "nikic/php-parser", - "version": "v5.4.0", + "version": "v5.6.1", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "447a020a1f875a434d62f2a401f53b82a396e494" + "reference": "f103601b29efebd7ff4a1ca7b3eeea9e3336a2a2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/447a020a1f875a434d62f2a401f53b82a396e494", - "reference": "447a020a1f875a434d62f2a401f53b82a396e494", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/f103601b29efebd7ff4a1ca7b3eeea9e3336a2a2", + "reference": "f103601b29efebd7ff4a1ca7b3eeea9e3336a2a2", "shasum": "" }, "require": { @@ -4471,7 +4382,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "5.0-dev" + "dev-master": "5.x-dev" } }, "autoload": { @@ -4495,9 +4406,9 @@ ], "support": { "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v5.4.0" + "source": "https://github.com/nikic/PHP-Parser/tree/v5.6.1" }, - "time": "2024-12-30T11:07:19+00:00" + "time": "2025-08-13T20:13:15+00:00" }, { "name": "nyholm/psr7", @@ -4579,16 +4490,16 @@ }, { "name": "opis/closure", - "version": "3.6.3", + "version": "3.7.0", "source": { "type": "git", "url": "https://github.com/opis/closure.git", - "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad" + "reference": "b1a22a6be71c1263f3ca6e68f00b3fd4d394abc4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad", - "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad", + "url": "https://api.github.com/repos/opis/closure/zipball/b1a22a6be71c1263f3ca6e68f00b3fd4d394abc4", + "reference": "b1a22a6be71c1263f3ca6e68f00b3fd4d394abc4", "shasum": "" }, "require": { @@ -4638,9 +4549,9 @@ ], "support": { "issues": "https://github.com/opis/closure/issues", - "source": "https://github.com/opis/closure/tree/3.6.3" + "source": "https://github.com/opis/closure/tree/3.7.0" }, - "time": "2022-01-27T09:35:39+00:00" + "time": "2025-07-08T20:30:08+00:00" }, { "name": "paragonie/constant_time_encoding", @@ -4851,16 +4762,16 @@ }, { "name": "phpoffice/phpspreadsheet", - "version": "1.29.10", + "version": "1.30.0", "source": { "type": "git", "url": "https://github.com/PHPOffice/PhpSpreadsheet.git", - "reference": "c80041b1628c4f18030407134fe88303661d4e4e" + "reference": "2f39286e0136673778b7a142b3f0d141e43d1714" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/c80041b1628c4f18030407134fe88303661d4e4e", - "reference": "c80041b1628c4f18030407134fe88303661d4e4e", + "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/2f39286e0136673778b7a142b3f0d141e43d1714", + "reference": "2f39286e0136673778b7a142b3f0d141e43d1714", "shasum": "" }, "require": { @@ -4951,22 +4862,22 @@ ], "support": { "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues", - "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.29.10" + "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.30.0" }, - "time": "2025-02-08T02:56:14+00:00" + "time": "2025-08-10T06:28:02+00:00" }, { "name": "phpoption/phpoption", - "version": "1.9.3", + "version": "1.9.4", "source": { "type": "git", "url": "https://github.com/schmittjoh/php-option.git", - "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54" + "reference": "638a154f8d4ee6a5cfa96d6a34dfbe0cffa9566d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54", - "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54", + "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/638a154f8d4ee6a5cfa96d6a34dfbe0cffa9566d", + "reference": "638a154f8d4ee6a5cfa96d6a34dfbe0cffa9566d", "shasum": "" }, "require": { @@ -4974,7 +4885,7 @@ }, "require-dev": { "bamarni/composer-bin-plugin": "^1.8.2", - "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28" + "phpunit/phpunit": "^8.5.44 || ^9.6.25 || ^10.5.53 || ^11.5.34" }, "type": "library", "extra": { @@ -5016,7 +4927,7 @@ ], "support": { "issues": "https://github.com/schmittjoh/php-option/issues", - "source": "https://github.com/schmittjoh/php-option/tree/1.9.3" + "source": "https://github.com/schmittjoh/php-option/tree/1.9.4" }, "funding": [ { @@ -5028,20 +4939,20 @@ "type": "tidelift" } ], - "time": "2024-07-20T21:41:07+00:00" + "time": "2025-08-21T11:53:16+00:00" }, { "name": "phpseclib/phpseclib", - "version": "3.0.43", + "version": "3.0.46", "source": { "type": "git", "url": "https://github.com/phpseclib/phpseclib.git", - "reference": "709ec107af3cb2f385b9617be72af8cf62441d02" + "reference": "56483a7de62a6c2a6635e42e93b8a9e25d4f0ec6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/709ec107af3cb2f385b9617be72af8cf62441d02", - "reference": "709ec107af3cb2f385b9617be72af8cf62441d02", + "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/56483a7de62a6c2a6635e42e93b8a9e25d4f0ec6", + "reference": "56483a7de62a6c2a6635e42e93b8a9e25d4f0ec6", "shasum": "" }, "require": { @@ -5122,7 +5033,7 @@ ], "support": { "issues": "https://github.com/phpseclib/phpseclib/issues", - "source": "https://github.com/phpseclib/phpseclib/tree/3.0.43" + "source": "https://github.com/phpseclib/phpseclib/tree/3.0.46" }, "funding": [ { @@ -5138,7 +5049,7 @@ "type": "tidelift" } ], - "time": "2024-12-14T21:12:59+00:00" + "time": "2025-06-26T16:29:55+00:00" }, { "name": "pragmarx/google2fa", @@ -5793,16 +5704,16 @@ }, { "name": "psy/psysh", - "version": "v0.12.8", + "version": "v0.12.10", "source": { "type": "git", "url": "https://github.com/bobthecow/psysh.git", - "reference": "85057ceedee50c49d4f6ecaff73ee96adb3b3625" + "reference": "6e80abe6f2257121f1eb9a4c55bf29d921025b22" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/bobthecow/psysh/zipball/85057ceedee50c49d4f6ecaff73ee96adb3b3625", - "reference": "85057ceedee50c49d4f6ecaff73ee96adb3b3625", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/6e80abe6f2257121f1eb9a4c55bf29d921025b22", + "reference": "6e80abe6f2257121f1eb9a4c55bf29d921025b22", "shasum": "" }, "require": { @@ -5852,12 +5763,11 @@ "authors": [ { "name": "Justin Hileman", - "email": "justin@justinhileman.info", - "homepage": "http://justinhileman.com" + "email": "justin@justinhileman.info" } ], "description": "An interactive shell for modern PHP.", - "homepage": "http://psysh.org", + "homepage": "https://psysh.org", "keywords": [ "REPL", "console", @@ -5866,9 +5776,9 @@ ], "support": { "issues": "https://github.com/bobthecow/psysh/issues", - "source": "https://github.com/bobthecow/psysh/tree/v0.12.8" + "source": "https://github.com/bobthecow/psysh/tree/v0.12.10" }, - "time": "2025-03-16T03:05:19+00:00" + "time": "2025-08-04T12:39:37+00:00" }, { "name": "ralouphie/getallheaders", @@ -5992,21 +5902,20 @@ }, { "name": "ramsey/uuid", - "version": "4.7.6", + "version": "4.9.0", "source": { "type": "git", "url": "https://github.com/ramsey/uuid.git", - "reference": "91039bc1faa45ba123c4328958e620d382ec7088" + "reference": "4e0e23cc785f0724a0e838279a9eb03f28b092a0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088", - "reference": "91039bc1faa45ba123c4328958e620d382ec7088", + "url": "https://api.github.com/repos/ramsey/uuid/zipball/4e0e23cc785f0724a0e838279a9eb03f28b092a0", + "reference": "4e0e23cc785f0724a0e838279a9eb03f28b092a0", "shasum": "" }, "require": { - "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12", - "ext-json": "*", + "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13", "php": "^8.0", "ramsey/collection": "^1.2 || ^2.0" }, @@ -6014,26 +5923,23 @@ "rhumsaa/uuid": "self.version" }, "require-dev": { - "captainhook/captainhook": "^5.10", + "captainhook/captainhook": "^5.25", "captainhook/plugin-composer": "^5.3", - "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", - "doctrine/annotations": "^1.8", - "ergebnis/composer-normalize": "^2.15", - "mockery/mockery": "^1.3", + "dealerdirect/phpcodesniffer-composer-installer": "^1.0", + "ergebnis/composer-normalize": "^2.47", + "mockery/mockery": "^1.6", "paragonie/random-lib": "^2", - "php-mock/php-mock": "^2.2", - "php-mock/php-mock-mockery": "^1.3", - "php-parallel-lint/php-parallel-lint": "^1.1", - "phpbench/phpbench": "^1.0", - "phpstan/extension-installer": "^1.1", - "phpstan/phpstan": "^1.8", - "phpstan/phpstan-mockery": "^1.1", - "phpstan/phpstan-phpunit": "^1.1", - "phpunit/phpunit": "^8.5 || ^9", - "ramsey/composer-repl": "^1.4", - "slevomat/coding-standard": "^8.4", - "squizlabs/php_codesniffer": "^3.5", - "vimeo/psalm": "^4.9" + "php-mock/php-mock": "^2.6", + "php-mock/php-mock-mockery": "^1.5", + "php-parallel-lint/php-parallel-lint": "^1.4.0", + "phpbench/phpbench": "^1.2.14", + "phpstan/extension-installer": "^1.4", + "phpstan/phpstan": "^2.1", + "phpstan/phpstan-mockery": "^2.0", + "phpstan/phpstan-phpunit": "^2.0", + "phpunit/phpunit": "^9.6", + "slevomat/coding-standard": "^8.18", + "squizlabs/php_codesniffer": "^3.13" }, "suggest": { "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.", @@ -6068,19 +5974,9 @@ ], "support": { "issues": "https://github.com/ramsey/uuid/issues", - "source": "https://github.com/ramsey/uuid/tree/4.7.6" + "source": "https://github.com/ramsey/uuid/tree/4.9.0" }, - "funding": [ - { - "url": "https://github.com/ramsey", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid", - "type": "tidelift" - } - ], - "time": "2024-04-27T21:32:50+00:00" + "time": "2025-06-25T14:20:11+00:00" }, { "name": "reliese/laravel", @@ -6197,16 +6093,16 @@ }, { "name": "sabberworm/php-css-parser", - "version": "v8.8.0", + "version": "v8.9.0", "source": { "type": "git", "url": "https://github.com/MyIntervals/PHP-CSS-Parser.git", - "reference": "3de493bdddfd1f051249af725c7e0d2c38fed740" + "reference": "d8e916507b88e389e26d4ab03c904a082aa66bb9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/MyIntervals/PHP-CSS-Parser/zipball/3de493bdddfd1f051249af725c7e0d2c38fed740", - "reference": "3de493bdddfd1f051249af725c7e0d2c38fed740", + "url": "https://api.github.com/repos/MyIntervals/PHP-CSS-Parser/zipball/d8e916507b88e389e26d4ab03c904a082aa66bb9", + "reference": "d8e916507b88e389e26d4ab03c904a082aa66bb9", "shasum": "" }, "require": { @@ -6214,7 +6110,8 @@ "php": "^5.6.20 || ^7.0.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0" }, "require-dev": { - "phpunit/phpunit": "5.7.27 || 6.5.14 || 7.5.20 || 8.5.41" + "phpunit/phpunit": "5.7.27 || 6.5.14 || 7.5.20 || 8.5.41", + "rawr/cross-data-providers": "^2.0.0" }, "suggest": { "ext-mbstring": "for parsing UTF-8 CSS" @@ -6256,9 +6153,9 @@ ], "support": { "issues": "https://github.com/MyIntervals/PHP-CSS-Parser/issues", - "source": "https://github.com/MyIntervals/PHP-CSS-Parser/tree/v8.8.0" + "source": "https://github.com/MyIntervals/PHP-CSS-Parser/tree/v8.9.0" }, - "time": "2025-03-23T17:59:05+00:00" + "time": "2025-07-11T13:20:48+00:00" }, { "name": "setasign/fpdf", @@ -6308,16 +6205,16 @@ }, { "name": "setasign/fpdi", - "version": "v2.6.3", + "version": "v2.6.4", "source": { "type": "git", "url": "https://github.com/Setasign/FPDI.git", - "reference": "67c31f5e50c93c20579ca9e23035d8c540b51941" + "reference": "4b53852fde2734ec6a07e458a085db627c60eada" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Setasign/FPDI/zipball/67c31f5e50c93c20579ca9e23035d8c540b51941", - "reference": "67c31f5e50c93c20579ca9e23035d8c540b51941", + "url": "https://api.github.com/repos/Setasign/FPDI/zipball/4b53852fde2734ec6a07e458a085db627c60eada", + "reference": "4b53852fde2734ec6a07e458a085db627c60eada", "shasum": "" }, "require": { @@ -6332,7 +6229,7 @@ "setasign/fpdf": "~1.8.6", "setasign/tfpdf": "~1.33", "squizlabs/php_codesniffer": "^3.5", - "tecnickcom/tcpdf": "^6.2" + "tecnickcom/tcpdf": "^6.8" }, "suggest": { "setasign/fpdf": "FPDI will extend this class but as it is also possible to use TCPDF or tFPDF as an alternative. There's no fixed dependency configured." @@ -6368,7 +6265,7 @@ ], "support": { "issues": "https://github.com/Setasign/FPDI/issues", - "source": "https://github.com/Setasign/FPDI/tree/v2.6.3" + "source": "https://github.com/Setasign/FPDI/tree/v2.6.4" }, "funding": [ { @@ -6376,7 +6273,7 @@ "type": "tidelift" } ], - "time": "2025-02-05T13:22:35+00:00" + "time": "2025-08-05T09:57:14+00:00" }, { "name": "swiftmailer/swiftmailer", @@ -6555,7 +6452,7 @@ }, { "name": "symfony/css-selector", - "version": "v7.2.0", + "version": "v7.3.0", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", @@ -6600,7 +6497,7 @@ "description": "Converts CSS selectors to XPath expressions", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/css-selector/tree/v7.2.0" + "source": "https://github.com/symfony/css-selector/tree/v7.3.0" }, "funding": [ { @@ -6620,16 +6517,16 @@ }, { "name": "symfony/deprecation-contracts", - "version": "v3.5.1", + "version": "v3.6.0", "source": { "type": "git", "url": "https://github.com/symfony/deprecation-contracts.git", - "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6" + "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6", - "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62", + "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62", "shasum": "" }, "require": { @@ -6642,7 +6539,7 @@ "name": "symfony/contracts" }, "branch-alias": { - "dev-main": "3.5-dev" + "dev-main": "3.6-dev" } }, "autoload": { @@ -6667,7 +6564,7 @@ "description": "A generic function and convention to trigger deprecation notices", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1" + "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0" }, "funding": [ { @@ -6683,7 +6580,7 @@ "type": "tidelift" } ], - "time": "2024-09-25T14:20:29+00:00" + "time": "2024-09-25T14:21:43+00:00" }, { "name": "symfony/error-handler", @@ -6758,16 +6655,16 @@ }, { "name": "symfony/event-dispatcher", - "version": "v6.4.13", + "version": "v6.4.25", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e" + "reference": "b0cf3162020603587363f0551cd3be43958611ff" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e", - "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/b0cf3162020603587363f0551cd3be43958611ff", + "reference": "b0cf3162020603587363f0551cd3be43958611ff", "shasum": "" }, "require": { @@ -6818,7 +6715,7 @@ "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.13" + "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.25" }, "funding": [ { @@ -6829,25 +6726,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-09-25T14:18:03+00:00" + "time": "2025-08-13T09:41:44+00:00" }, { "name": "symfony/event-dispatcher-contracts", - "version": "v3.5.1", + "version": "v3.6.0", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher-contracts.git", - "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f" + "reference": "59eb412e93815df44f05f342958efa9f46b1e586" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f", - "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586", + "reference": "59eb412e93815df44f05f342958efa9f46b1e586", "shasum": "" }, "require": { @@ -6861,7 +6762,7 @@ "name": "symfony/contracts" }, "branch-alias": { - "dev-main": "3.5-dev" + "dev-main": "3.6-dev" } }, "autoload": { @@ -6894,7 +6795,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1" + "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0" }, "funding": [ { @@ -6910,7 +6811,7 @@ "type": "tidelift" } ], - "time": "2024-09-25T14:20:29+00:00" + "time": "2024-09-25T14:21:43+00:00" }, { "name": "symfony/finder", @@ -7251,7 +7152,7 @@ }, { "name": "symfony/polyfill-ctype", - "version": "v1.31.0", + "version": "v1.33.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", @@ -7310,7 +7211,7 @@ "portable" ], "support": { - "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.33.0" }, "funding": [ { @@ -7321,6 +7222,10 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" @@ -7330,16 +7235,16 @@ }, { "name": "symfony/polyfill-iconv", - "version": "v1.31.0", + "version": "v1.33.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-iconv.git", - "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956" + "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/48becf00c920479ca2e910c22a5a39e5d47ca956", - "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956", + "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/5f3b930437ae03ae5dff61269024d8ea1b3774aa", + "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa", "shasum": "" }, "require": { @@ -7390,7 +7295,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-iconv/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-iconv/tree/v1.33.0" }, "funding": [ { @@ -7401,25 +7306,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-09-09T11:45:10+00:00" + "time": "2024-09-17T14:58:18+00:00" }, { "name": "symfony/polyfill-intl-grapheme", - "version": "v1.31.0", + "version": "v1.33.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-grapheme.git", - "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe" + "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe", - "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70", + "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70", "shasum": "" }, "require": { @@ -7468,7 +7377,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.33.0" }, "funding": [ { @@ -7479,25 +7388,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-09-09T11:45:10+00:00" + "time": "2025-06-27T09:58:17+00:00" }, { "name": "symfony/polyfill-intl-idn", - "version": "v1.31.0", + "version": "v1.33.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-idn.git", - "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773" + "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773", - "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3", + "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3", "shasum": "" }, "require": { @@ -7551,7 +7464,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.33.0" }, "funding": [ { @@ -7562,16 +7475,20 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-09-09T11:45:10+00:00" + "time": "2024-09-10T14:38:51+00:00" }, { "name": "symfony/polyfill-intl-normalizer", - "version": "v1.31.0", + "version": "v1.33.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-normalizer.git", @@ -7632,7 +7549,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.33.0" }, "funding": [ { @@ -7643,6 +7560,10 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" @@ -7652,19 +7573,20 @@ }, { "name": "symfony/polyfill-mbstring", - "version": "v1.31.0", + "version": "v1.33.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341" + "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341", - "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493", + "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493", "shasum": "" }, "require": { + "ext-iconv": "*", "php": ">=7.2" }, "provide": { @@ -7712,7 +7634,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0" }, "funding": [ { @@ -7723,16 +7645,20 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-09-09T11:45:10+00:00" + "time": "2024-12-23T08:48:59+00:00" }, { "name": "symfony/polyfill-php73", - "version": "v1.31.0", + "version": "v1.33.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php73.git", @@ -7788,7 +7714,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php73/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-php73/tree/v1.33.0" }, "funding": [ { @@ -7799,6 +7725,10 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" @@ -7808,16 +7738,16 @@ }, { "name": "symfony/polyfill-php80", - "version": "v1.31.0", + "version": "v1.33.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8" + "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8", - "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608", + "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608", "shasum": "" }, "require": { @@ -7868,7 +7798,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-php80/tree/v1.33.0" }, "funding": [ { @@ -7879,12 +7809,16 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-09-09T11:45:10+00:00" + "time": "2025-01-02T08:10:11+00:00" }, { "name": "symfony/process", @@ -8129,16 +8063,16 @@ }, { "name": "symfony/service-contracts", - "version": "v3.5.1", + "version": "v3.6.0", "source": { "type": "git", "url": "https://github.com/symfony/service-contracts.git", - "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0" + "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0", - "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f021b05a130d35510bd6b25fe9053c2a8a15d5d4", + "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4", "shasum": "" }, "require": { @@ -8156,7 +8090,7 @@ "name": "symfony/contracts" }, "branch-alias": { - "dev-main": "3.5-dev" + "dev-main": "3.6-dev" } }, "autoload": { @@ -8192,7 +8126,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/service-contracts/tree/v3.5.1" + "source": "https://github.com/symfony/service-contracts/tree/v3.6.0" }, "funding": [ { @@ -8208,20 +8142,20 @@ "type": "tidelift" } ], - "time": "2024-09-25T14:20:29+00:00" + "time": "2025-04-25T09:37:31+00:00" }, { "name": "symfony/string", - "version": "v6.4.15", + "version": "v6.4.25", "source": { "type": "git", "url": "https://github.com/symfony/string.git", - "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f" + "reference": "7cdec7edfaf2cdd9c18901e35bcf9653d6209ff1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f", - "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f", + "url": "https://api.github.com/repos/symfony/string/zipball/7cdec7edfaf2cdd9c18901e35bcf9653d6209ff1", + "reference": "7cdec7edfaf2cdd9c18901e35bcf9653d6209ff1", "shasum": "" }, "require": { @@ -8278,7 +8212,7 @@ "utf8" ], "support": { - "source": "https://github.com/symfony/string/tree/v6.4.15" + "source": "https://github.com/symfony/string/tree/v6.4.25" }, "funding": [ { @@ -8289,25 +8223,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-11-13T13:31:12+00:00" + "time": "2025-08-22T12:33:20+00:00" }, { "name": "symfony/translation", - "version": "v6.4.19", + "version": "v6.4.24", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", - "reference": "3b9bf9f33997c064885a7bfc126c14b9daa0e00e" + "reference": "300b72643e89de0734d99a9e3f8494a3ef6936e1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/3b9bf9f33997c064885a7bfc126c14b9daa0e00e", - "reference": "3b9bf9f33997c064885a7bfc126c14b9daa0e00e", + "url": "https://api.github.com/repos/symfony/translation/zipball/300b72643e89de0734d99a9e3f8494a3ef6936e1", + "reference": "300b72643e89de0734d99a9e3f8494a3ef6936e1", "shasum": "" }, "require": { @@ -8373,7 +8311,7 @@ "description": "Provides tools to internationalize your application", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/translation/tree/v6.4.19" + "source": "https://github.com/symfony/translation/tree/v6.4.24" }, "funding": [ { @@ -8384,25 +8322,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-02-13T10:18:43+00:00" + "time": "2025-07-30T17:30:48+00:00" }, { "name": "symfony/translation-contracts", - "version": "v3.5.1", + "version": "v3.6.0", "source": { "type": "git", "url": "https://github.com/symfony/translation-contracts.git", - "reference": "4667ff3bd513750603a09c8dedbea942487fb07c" + "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c", - "reference": "4667ff3bd513750603a09c8dedbea942487fb07c", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/df210c7a2573f1913b2d17cc95f90f53a73d8f7d", + "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d", "shasum": "" }, "require": { @@ -8415,7 +8357,7 @@ "name": "symfony/contracts" }, "branch-alias": { - "dev-main": "3.5-dev" + "dev-main": "3.6-dev" } }, "autoload": { @@ -8451,7 +8393,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1" + "source": "https://github.com/symfony/translation-contracts/tree/v3.6.0" }, "funding": [ { @@ -8467,7 +8409,7 @@ "type": "tidelift" } ], - "time": "2024-09-25T14:20:29+00:00" + "time": "2024-09-27T08:32:26+00:00" }, { "name": "symfony/var-dumper", @@ -8615,16 +8557,16 @@ }, { "name": "vlucas/phpdotenv", - "version": "v5.6.1", + "version": "v5.6.2", "source": { "type": "git", "url": "https://github.com/vlucas/phpdotenv.git", - "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2" + "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2", - "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/24ac4c74f91ee2c193fa1aaa5c249cb0822809af", + "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af", "shasum": "" }, "require": { @@ -8683,7 +8625,7 @@ ], "support": { "issues": "https://github.com/vlucas/phpdotenv/issues", - "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1" + "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.2" }, "funding": [ { @@ -8695,7 +8637,7 @@ "type": "tidelift" } ], - "time": "2024-07-20T21:52:34+00:00" + "time": "2025-04-30T23:37:27+00:00" }, { "name": "voku/portable-ascii", @@ -9096,16 +9038,16 @@ }, { "name": "barryvdh/reflection-docblock", - "version": "v2.3.1", + "version": "v2.4.0", "source": { "type": "git", "url": "https://github.com/barryvdh/ReflectionDocBlock.git", - "reference": "b6ff9f93603561f50e53b64310495d20b8dff5d8" + "reference": "d103774cbe7e94ddee7e4870f97f727b43fe7201" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/b6ff9f93603561f50e53b64310495d20b8dff5d8", - "reference": "b6ff9f93603561f50e53b64310495d20b8dff5d8", + "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/d103774cbe7e94ddee7e4870f97f727b43fe7201", + "reference": "d103774cbe7e94ddee7e4870f97f727b43fe7201", "shasum": "" }, "require": { @@ -9142,22 +9084,22 @@ } ], "support": { - "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.3.1" + "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.4.0" }, - "time": "2025-01-18T19:26:32+00:00" + "time": "2025-07-17T06:07:30+00:00" }, { "name": "composer/class-map-generator", - "version": "1.6.1", + "version": "1.6.2", "source": { "type": "git", "url": "https://github.com/composer/class-map-generator.git", - "reference": "134b705ddb0025d397d8318a75825fe3c9d1da34" + "reference": "ba9f089655d4cdd64e762a6044f411ccdaec0076" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/class-map-generator/zipball/134b705ddb0025d397d8318a75825fe3c9d1da34", - "reference": "134b705ddb0025d397d8318a75825fe3c9d1da34", + "url": "https://api.github.com/repos/composer/class-map-generator/zipball/ba9f089655d4cdd64e762a6044f411ccdaec0076", + "reference": "ba9f089655d4cdd64e762a6044f411ccdaec0076", "shasum": "" }, "require": { @@ -9201,7 +9143,7 @@ ], "support": { "issues": "https://github.com/composer/class-map-generator/issues", - "source": "https://github.com/composer/class-map-generator/tree/1.6.1" + "source": "https://github.com/composer/class-map-generator/tree/1.6.2" }, "funding": [ { @@ -9211,13 +9153,9 @@ { "url": "https://github.com/composer", "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/composer/composer", - "type": "tidelift" } ], - "time": "2025-03-24T13:50:44+00:00" + "time": "2025-08-20T18:52:43+00:00" }, { "name": "doctrine/instantiator", @@ -9550,16 +9488,16 @@ }, { "name": "filp/whoops", - "version": "2.18.0", + "version": "2.18.4", "source": { "type": "git", "url": "https://github.com/filp/whoops.git", - "reference": "a7de6c3c6c3c022f5cfc337f8ede6a14460cf77e" + "reference": "d2102955e48b9fd9ab24280a7ad12ed552752c4d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/filp/whoops/zipball/a7de6c3c6c3c022f5cfc337f8ede6a14460cf77e", - "reference": "a7de6c3c6c3c022f5cfc337f8ede6a14460cf77e", + "url": "https://api.github.com/repos/filp/whoops/zipball/d2102955e48b9fd9ab24280a7ad12ed552752c4d", + "reference": "d2102955e48b9fd9ab24280a7ad12ed552752c4d", "shasum": "" }, "require": { @@ -9609,7 +9547,7 @@ ], "support": { "issues": "https://github.com/filp/whoops/issues", - "source": "https://github.com/filp/whoops/tree/2.18.0" + "source": "https://github.com/filp/whoops/tree/2.18.4" }, "funding": [ { @@ -9617,24 +9555,24 @@ "type": "github" } ], - "time": "2025-03-15T12:00:00+00:00" + "time": "2025-08-08T12:00:00+00:00" }, { "name": "hamcrest/hamcrest-php", - "version": "v2.0.1", + "version": "v2.1.1", "source": { "type": "git", "url": "https://github.com/hamcrest/hamcrest-php.git", - "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3" + "reference": "f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", - "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", + "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487", + "reference": "f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487", "shasum": "" }, "require": { - "php": "^5.3|^7.0|^8.0" + "php": "^7.4|^8.0" }, "replace": { "cordoval/hamcrest-php": "*", @@ -9642,8 +9580,8 @@ "kodova/hamcrest-php": "*" }, "require-dev": { - "phpunit/php-file-iterator": "^1.4 || ^2.0", - "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0" + "phpunit/php-file-iterator": "^1.4 || ^2.0 || ^3.0", + "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0 || ^8.0 || ^9.0" }, "type": "library", "extra": { @@ -9666,9 +9604,9 @@ ], "support": { "issues": "https://github.com/hamcrest/hamcrest-php/issues", - "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1" + "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.1.1" }, - "time": "2020-07-09T08:09:16+00:00" + "time": "2025-04-30T06:54:44+00:00" }, { "name": "laravel/sail", @@ -9889,16 +9827,16 @@ }, { "name": "myclabs/deep-copy", - "version": "1.13.0", + "version": "1.13.4", "source": { "type": "git", "url": "https://github.com/myclabs/DeepCopy.git", - "reference": "024473a478be9df5fdaca2c793f2232fe788e414" + "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/024473a478be9df5fdaca2c793f2232fe788e414", - "reference": "024473a478be9df5fdaca2c793f2232fe788e414", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/07d290f0c47959fd5eed98c95ee5602db07e0b6a", + "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a", "shasum": "" }, "require": { @@ -9937,7 +9875,7 @@ ], "support": { "issues": "https://github.com/myclabs/DeepCopy/issues", - "source": "https://github.com/myclabs/DeepCopy/tree/1.13.0" + "source": "https://github.com/myclabs/DeepCopy/tree/1.13.4" }, "funding": [ { @@ -9945,7 +9883,7 @@ "type": "tidelift" } ], - "time": "2025-02-12T12:17:51+00:00" + "time": "2025-08-01T08:46:24+00:00" }, { "name": "nunomaduro/collision", @@ -10265,16 +10203,16 @@ }, { "name": "phpstan/phpdoc-parser", - "version": "2.1.0", + "version": "2.3.0", "source": { "type": "git", "url": "https://github.com/phpstan/phpdoc-parser.git", - "reference": "9b30d6fd026b2c132b3985ce6b23bec09ab3aa68" + "reference": "1e0cd5370df5dd2e556a36b9c62f62e555870495" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/9b30d6fd026b2c132b3985ce6b23bec09ab3aa68", - "reference": "9b30d6fd026b2c132b3985ce6b23bec09ab3aa68", + "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/1e0cd5370df5dd2e556a36b9c62f62e555870495", + "reference": "1e0cd5370df5dd2e556a36b9c62f62e555870495", "shasum": "" }, "require": { @@ -10306,9 +10244,9 @@ "description": "PHPDoc parser with support for nullable, intersection and generic types", "support": { "issues": "https://github.com/phpstan/phpdoc-parser/issues", - "source": "https://github.com/phpstan/phpdoc-parser/tree/2.1.0" + "source": "https://github.com/phpstan/phpdoc-parser/tree/2.3.0" }, - "time": "2025-02-19T13:28:12+00:00" + "time": "2025-08-30T15:50:23+00:00" }, { "name": "phpunit/php-code-coverage", @@ -10631,16 +10569,16 @@ }, { "name": "phpunit/phpunit", - "version": "9.6.22", + "version": "9.6.25", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "f80235cb4d3caa59ae09be3adf1ded27521d1a9c" + "reference": "049c011e01be805202d8eebedef49f769a8ec7b7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/f80235cb4d3caa59ae09be3adf1ded27521d1a9c", - "reference": "f80235cb4d3caa59ae09be3adf1ded27521d1a9c", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/049c011e01be805202d8eebedef49f769a8ec7b7", + "reference": "049c011e01be805202d8eebedef49f769a8ec7b7", "shasum": "" }, "require": { @@ -10651,7 +10589,7 @@ "ext-mbstring": "*", "ext-xml": "*", "ext-xmlwriter": "*", - "myclabs/deep-copy": "^1.12.1", + "myclabs/deep-copy": "^1.13.4", "phar-io/manifest": "^2.0.4", "phar-io/version": "^3.2.1", "php": ">=7.3", @@ -10662,11 +10600,11 @@ "phpunit/php-timer": "^5.0.3", "sebastian/cli-parser": "^1.0.2", "sebastian/code-unit": "^1.0.8", - "sebastian/comparator": "^4.0.8", + "sebastian/comparator": "^4.0.9", "sebastian/diff": "^4.0.6", "sebastian/environment": "^5.1.5", "sebastian/exporter": "^4.0.6", - "sebastian/global-state": "^5.0.7", + "sebastian/global-state": "^5.0.8", "sebastian/object-enumerator": "^4.0.4", "sebastian/resource-operations": "^3.0.4", "sebastian/type": "^3.2.1", @@ -10714,7 +10652,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", "security": "https://github.com/sebastianbergmann/phpunit/security/policy", - "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.22" + "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.25" }, "funding": [ { @@ -10725,12 +10663,20 @@ "url": "https://github.com/sebastianbergmann", "type": "github" }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, { "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit", "type": "tidelift" } ], - "time": "2024-12-05T13:48:26+00:00" + "time": "2025-08-20T14:38:31+00:00" }, { "name": "sebastian/cli-parser", @@ -10901,16 +10847,16 @@ }, { "name": "sebastian/comparator", - "version": "4.0.8", + "version": "4.0.9", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/comparator.git", - "reference": "fa0f136dd2334583309d32b62544682ee972b51a" + "reference": "67a2df3a62639eab2cc5906065e9805d4fd5dfc5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a", - "reference": "fa0f136dd2334583309d32b62544682ee972b51a", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/67a2df3a62639eab2cc5906065e9805d4fd5dfc5", + "reference": "67a2df3a62639eab2cc5906065e9805d4fd5dfc5", "shasum": "" }, "require": { @@ -10963,15 +10909,27 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/comparator/issues", - "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8" + "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.9" }, "funding": [ { "url": "https://github.com/sebastianbergmann", "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/sebastian/comparator", + "type": "tidelift" } ], - "time": "2022-09-14T12:41:17+00:00" + "time": "2025-08-10T06:51:50+00:00" }, { "name": "sebastian/complexity", @@ -11238,16 +11196,16 @@ }, { "name": "sebastian/global-state", - "version": "5.0.7", + "version": "5.0.8", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/global-state.git", - "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9" + "reference": "b6781316bdcd28260904e7cc18ec983d0d2ef4f6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9", - "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/b6781316bdcd28260904e7cc18ec983d0d2ef4f6", + "reference": "b6781316bdcd28260904e7cc18ec983d0d2ef4f6", "shasum": "" }, "require": { @@ -11290,15 +11248,27 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/global-state/issues", - "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.7" + "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.8" }, "funding": [ { "url": "https://github.com/sebastianbergmann", "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/sebastian/global-state", + "type": "tidelift" } ], - "time": "2024-03-02T06:35:11+00:00" + "time": "2025-08-10T07:10:35+00:00" }, { "name": "sebastian/lines-of-code", @@ -11471,16 +11441,16 @@ }, { "name": "sebastian/recursion-context", - "version": "4.0.5", + "version": "4.0.6", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/recursion-context.git", - "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1" + "reference": "539c6691e0623af6dc6f9c20384c120f963465a0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1", - "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/539c6691e0623af6dc6f9c20384c120f963465a0", + "reference": "539c6691e0623af6dc6f9c20384c120f963465a0", "shasum": "" }, "require": { @@ -11522,15 +11492,27 @@ "homepage": "https://github.com/sebastianbergmann/recursion-context", "support": { "issues": "https://github.com/sebastianbergmann/recursion-context/issues", - "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5" + "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.6" }, "funding": [ { "url": "https://github.com/sebastianbergmann", "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/sebastian/recursion-context", + "type": "tidelift" } ], - "time": "2023-02-03T06:07:39+00:00" + "time": "2025-08-10T06:57:39+00:00" }, { "name": "sebastian/resource-operations", @@ -11697,16 +11679,16 @@ }, { "name": "symfony/yaml", - "version": "v6.4.20", + "version": "v6.4.25", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "28ee818fce4a73ac1474346b94e4b966f665c53f" + "reference": "e54b060bc9c3dc3d4258bf0d165d0064e755f565" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/28ee818fce4a73ac1474346b94e4b966f665c53f", - "reference": "28ee818fce4a73ac1474346b94e4b966f665c53f", + "url": "https://api.github.com/repos/symfony/yaml/zipball/e54b060bc9c3dc3d4258bf0d165d0064e755f565", + "reference": "e54b060bc9c3dc3d4258bf0d165d0064e755f565", "shasum": "" }, "require": { @@ -11749,7 +11731,7 @@ "description": "Loads and dumps YAML files", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/yaml/tree/v6.4.20" + "source": "https://github.com/symfony/yaml/tree/v6.4.25" }, "funding": [ { @@ -11760,12 +11742,16 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-02-27T20:15:30+00:00" + "time": "2025-08-26T16:59:00+00:00" }, { "name": "theseer/tokenizer", diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..77170e4 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,113 @@ +services: + laravel.test: + build: + context: ./vendor/laravel/sail/runtimes/8.2 + dockerfile: Dockerfile + args: + WWWGROUP: '${WWWGROUP}' + image: sail-8.2/app + extra_hosts: + - 'host.docker.internal:host-gateway' + ports: + #- '${APP_PORT:-80}:80' + - '${VITE_PORT:-5173}:${VITE_PORT:-5173}' + environment: + WWWUSER: '${WWWUSER}' + LARAVEL_SAIL: 1 + XDEBUG_MODE: '${SAIL_XDEBUG_MODE:-off}' + XDEBUG_CONFIG: '${SAIL_XDEBUG_CONFIG:-client_host=host.docker.internal}' + IGNITION_LOCAL_SITES_PATH: '${PWD}' + volumes: + - '.:/var/www/html' + networks: + - sail + - proxy + depends_on: + - mysql + - mysql-stern + - redis + labels: + - "traefik.enable=true" + # Hauptdomain + - "traefik.http.routers.meinsterntours.rule=Host(`mein.sterntours.test`)" + - "traefik.http.routers.meinsterntours.entrypoints=websecure" + - "traefik.http.routers.meinsterntours.tls=true" + - "traefik.http.routers.meinsterntours.service=meinsterntours-service" + # Service Definition - NUR EINMAL! + - "traefik.http.services.meinsterntours-service.loadbalancer.server.port=80" + - "traefik.docker.network=proxy" + mysql: + image: 'mysql/mysql-server:8.0' + ports: + - '${FORWARD_DB_PORT:-33064}:3306' + environment: + MYSQL_ROOT_PASSWORD: '${DB_PASSWORD}' + MYSQL_ROOT_HOST: '%' + MYSQL_DATABASE: '${DB_DATABASE}' + MYSQL_USER: '${DB_USERNAME}' + MYSQL_PASSWORD: '${DB_PASSWORD}' + MYSQL_ALLOW_EMPTY_PASSWORD: 1 + volumes: + - 'sail-mysql:/var/lib/mysql' + - './vendor/laravel/sail/database/mysql/create-testing-database.sh:/docker-entrypoint-initdb.d/10-create-testing-database.sh' + networks: + - sail + healthcheck: + test: + - CMD + - mysqladmin + - ping + - '-p${DB_PASSWORD}' + retries: 3 + timeout: 5s + mysql-stern: + image: 'mysql/mysql-server:8.0' + ports: + - '${FORWARD_DB_PORT_STERN:-33065}:3306' + environment: + MYSQL_ROOT_PASSWORD: '${DB_PASSWORD_STERN}' + MYSQL_ROOT_HOST: '%' + MYSQL_DATABASE: '${DB_DATABASE_STERN}' + MYSQL_USER: '${DB_USERNAME_STERN}' + MYSQL_PASSWORD: '${DB_PASSWORD_STERN}' + MYSQL_ALLOW_EMPTY_PASSWORD: 1 + volumes: + - 'sail-mysql-stern:/var/lib/mysql' + - './vendor/laravel/sail/database/mysql/create-testing-database.sh:/docker-entrypoint-initdb.d/10-create-testing-database.sh' + networks: + - sail + healthcheck: + test: + - CMD + - mysqladmin + - ping + - '-p${DB_PASSWORD_STERN}' + retries: 3 + timeout: 5s + redis: + image: 'redis:alpine' + ports: + - '${FORWARD_REDIS_PORT:-6379}:6379' + volumes: + - 'sail-redis:/data' + networks: + - sail + healthcheck: + test: + - CMD + - redis-cli + - ping + retries: 3 + timeout: 5s +networks: + sail: + driver: bridge + proxy: + external: true +volumes: + sail-mysql: + driver: local + sail-mysql-stern: + driver: local + sail-redis: + driver: local diff --git a/mein-sterntours.code-workspace b/mein.sterntours.de.code-workspace similarity index 66% rename from mein-sterntours.code-workspace rename to mein.sterntours.de.code-workspace index 876a149..362d7c2 100644 --- a/mein-sterntours.code-workspace +++ b/mein.sterntours.de.code-workspace @@ -3,6 +3,5 @@ { "path": "." } - ], - "settings": {} + ] } \ No newline at end of file diff --git a/public/128.jpg b/public/128.jpg old mode 100644 new mode 100755 diff --git a/public/css/application-purple.css b/public/css/application-purple.css old mode 100644 new mode 100755 diff --git a/public/css/application.css b/public/css/application.css old mode 100644 new mode 100755 diff --git a/public/css/stern_fewo_pdf.css b/public/css/stern_fewo_pdf.css old mode 100644 new mode 100755 diff --git a/public/fonts/nunito.css b/public/fonts/nunito.css old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-200.eot b/public/fonts/nunito/nunito-v25-latin-200.eot old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-200.svg b/public/fonts/nunito/nunito-v25-latin-200.svg old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-200.ttf b/public/fonts/nunito/nunito-v25-latin-200.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-200.woff b/public/fonts/nunito/nunito-v25-latin-200.woff old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-200.woff2 b/public/fonts/nunito/nunito-v25-latin-200.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-200italic.eot b/public/fonts/nunito/nunito-v25-latin-200italic.eot old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-200italic.svg b/public/fonts/nunito/nunito-v25-latin-200italic.svg old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-200italic.ttf b/public/fonts/nunito/nunito-v25-latin-200italic.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-200italic.woff b/public/fonts/nunito/nunito-v25-latin-200italic.woff old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-200italic.woff2 b/public/fonts/nunito/nunito-v25-latin-200italic.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-300.eot b/public/fonts/nunito/nunito-v25-latin-300.eot old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-300.svg b/public/fonts/nunito/nunito-v25-latin-300.svg old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-300.ttf b/public/fonts/nunito/nunito-v25-latin-300.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-300.woff b/public/fonts/nunito/nunito-v25-latin-300.woff old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-300.woff2 b/public/fonts/nunito/nunito-v25-latin-300.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-300italic.eot b/public/fonts/nunito/nunito-v25-latin-300italic.eot old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-300italic.svg b/public/fonts/nunito/nunito-v25-latin-300italic.svg old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-300italic.ttf b/public/fonts/nunito/nunito-v25-latin-300italic.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-300italic.woff b/public/fonts/nunito/nunito-v25-latin-300italic.woff old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-300italic.woff2 b/public/fonts/nunito/nunito-v25-latin-300italic.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-500.eot b/public/fonts/nunito/nunito-v25-latin-500.eot old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-500.svg b/public/fonts/nunito/nunito-v25-latin-500.svg old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-500.ttf b/public/fonts/nunito/nunito-v25-latin-500.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-500.woff b/public/fonts/nunito/nunito-v25-latin-500.woff old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-500.woff2 b/public/fonts/nunito/nunito-v25-latin-500.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-500italic.eot b/public/fonts/nunito/nunito-v25-latin-500italic.eot old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-500italic.svg b/public/fonts/nunito/nunito-v25-latin-500italic.svg old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-500italic.ttf b/public/fonts/nunito/nunito-v25-latin-500italic.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-500italic.woff b/public/fonts/nunito/nunito-v25-latin-500italic.woff old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-500italic.woff2 b/public/fonts/nunito/nunito-v25-latin-500italic.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-600.eot b/public/fonts/nunito/nunito-v25-latin-600.eot old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-600.svg b/public/fonts/nunito/nunito-v25-latin-600.svg old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-600.ttf b/public/fonts/nunito/nunito-v25-latin-600.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-600.woff b/public/fonts/nunito/nunito-v25-latin-600.woff old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-600.woff2 b/public/fonts/nunito/nunito-v25-latin-600.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-600italic.eot b/public/fonts/nunito/nunito-v25-latin-600italic.eot old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-600italic.svg b/public/fonts/nunito/nunito-v25-latin-600italic.svg old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-600italic.ttf b/public/fonts/nunito/nunito-v25-latin-600italic.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-600italic.woff b/public/fonts/nunito/nunito-v25-latin-600italic.woff old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-600italic.woff2 b/public/fonts/nunito/nunito-v25-latin-600italic.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-700.eot b/public/fonts/nunito/nunito-v25-latin-700.eot old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-700.svg b/public/fonts/nunito/nunito-v25-latin-700.svg old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-700.ttf b/public/fonts/nunito/nunito-v25-latin-700.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-700.woff b/public/fonts/nunito/nunito-v25-latin-700.woff old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-700.woff2 b/public/fonts/nunito/nunito-v25-latin-700.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-700italic.eot b/public/fonts/nunito/nunito-v25-latin-700italic.eot old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-700italic.svg b/public/fonts/nunito/nunito-v25-latin-700italic.svg old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-700italic.ttf b/public/fonts/nunito/nunito-v25-latin-700italic.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-700italic.woff b/public/fonts/nunito/nunito-v25-latin-700italic.woff old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-700italic.woff2 b/public/fonts/nunito/nunito-v25-latin-700italic.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-800.eot b/public/fonts/nunito/nunito-v25-latin-800.eot old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-800.svg b/public/fonts/nunito/nunito-v25-latin-800.svg old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-800.ttf b/public/fonts/nunito/nunito-v25-latin-800.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-800.woff b/public/fonts/nunito/nunito-v25-latin-800.woff old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-800.woff2 b/public/fonts/nunito/nunito-v25-latin-800.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-800italic.eot b/public/fonts/nunito/nunito-v25-latin-800italic.eot old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-800italic.svg b/public/fonts/nunito/nunito-v25-latin-800italic.svg old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-800italic.ttf b/public/fonts/nunito/nunito-v25-latin-800italic.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-800italic.woff b/public/fonts/nunito/nunito-v25-latin-800italic.woff old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-800italic.woff2 b/public/fonts/nunito/nunito-v25-latin-800italic.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-900.eot b/public/fonts/nunito/nunito-v25-latin-900.eot old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-900.svg b/public/fonts/nunito/nunito-v25-latin-900.svg old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-900.ttf b/public/fonts/nunito/nunito-v25-latin-900.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-900.woff b/public/fonts/nunito/nunito-v25-latin-900.woff old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-900.woff2 b/public/fonts/nunito/nunito-v25-latin-900.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-900italic.eot b/public/fonts/nunito/nunito-v25-latin-900italic.eot old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-900italic.svg b/public/fonts/nunito/nunito-v25-latin-900italic.svg old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-900italic.ttf b/public/fonts/nunito/nunito-v25-latin-900italic.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-900italic.woff b/public/fonts/nunito/nunito-v25-latin-900italic.woff old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-900italic.woff2 b/public/fonts/nunito/nunito-v25-latin-900italic.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-italic.eot b/public/fonts/nunito/nunito-v25-latin-italic.eot old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-italic.svg b/public/fonts/nunito/nunito-v25-latin-italic.svg old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-italic.ttf b/public/fonts/nunito/nunito-v25-latin-italic.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-italic.woff b/public/fonts/nunito/nunito-v25-latin-italic.woff old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-italic.woff2 b/public/fonts/nunito/nunito-v25-latin-italic.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-regular.eot b/public/fonts/nunito/nunito-v25-latin-regular.eot old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-regular.svg b/public/fonts/nunito/nunito-v25-latin-regular.svg old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-regular.ttf b/public/fonts/nunito/nunito-v25-latin-regular.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-regular.woff b/public/fonts/nunito/nunito-v25-latin-regular.woff old mode 100644 new mode 100755 diff --git a/public/fonts/nunito/nunito-v25-latin-regular.woff2 b/public/fonts/nunito/nunito-v25-latin-regular.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/roboto.css b/public/fonts/roboto.css old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-100.eot b/public/fonts/roboto/roboto-v30-latin-100.eot old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-100.svg b/public/fonts/roboto/roboto-v30-latin-100.svg old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-100.ttf b/public/fonts/roboto/roboto-v30-latin-100.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-100.woff b/public/fonts/roboto/roboto-v30-latin-100.woff old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-100.woff2 b/public/fonts/roboto/roboto-v30-latin-100.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-100italic.eot b/public/fonts/roboto/roboto-v30-latin-100italic.eot old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-100italic.svg b/public/fonts/roboto/roboto-v30-latin-100italic.svg old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-100italic.ttf b/public/fonts/roboto/roboto-v30-latin-100italic.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-100italic.woff b/public/fonts/roboto/roboto-v30-latin-100italic.woff old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-100italic.woff2 b/public/fonts/roboto/roboto-v30-latin-100italic.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-300.eot b/public/fonts/roboto/roboto-v30-latin-300.eot old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-300.svg b/public/fonts/roboto/roboto-v30-latin-300.svg old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-300.ttf b/public/fonts/roboto/roboto-v30-latin-300.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-300.woff b/public/fonts/roboto/roboto-v30-latin-300.woff old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-300.woff2 b/public/fonts/roboto/roboto-v30-latin-300.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-300italic.eot b/public/fonts/roboto/roboto-v30-latin-300italic.eot old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-300italic.svg b/public/fonts/roboto/roboto-v30-latin-300italic.svg old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-300italic.ttf b/public/fonts/roboto/roboto-v30-latin-300italic.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-300italic.woff b/public/fonts/roboto/roboto-v30-latin-300italic.woff old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-300italic.woff2 b/public/fonts/roboto/roboto-v30-latin-300italic.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-500.eot b/public/fonts/roboto/roboto-v30-latin-500.eot old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-500.svg b/public/fonts/roboto/roboto-v30-latin-500.svg old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-500.ttf b/public/fonts/roboto/roboto-v30-latin-500.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-500.woff b/public/fonts/roboto/roboto-v30-latin-500.woff old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-500.woff2 b/public/fonts/roboto/roboto-v30-latin-500.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-500italic.eot b/public/fonts/roboto/roboto-v30-latin-500italic.eot old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-500italic.svg b/public/fonts/roboto/roboto-v30-latin-500italic.svg old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-500italic.ttf b/public/fonts/roboto/roboto-v30-latin-500italic.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-500italic.woff b/public/fonts/roboto/roboto-v30-latin-500italic.woff old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-500italic.woff2 b/public/fonts/roboto/roboto-v30-latin-500italic.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-700.eot b/public/fonts/roboto/roboto-v30-latin-700.eot old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-700.svg b/public/fonts/roboto/roboto-v30-latin-700.svg old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-700.ttf b/public/fonts/roboto/roboto-v30-latin-700.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-700.woff b/public/fonts/roboto/roboto-v30-latin-700.woff old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-700.woff2 b/public/fonts/roboto/roboto-v30-latin-700.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-700italic.eot b/public/fonts/roboto/roboto-v30-latin-700italic.eot old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-700italic.svg b/public/fonts/roboto/roboto-v30-latin-700italic.svg old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-700italic.ttf b/public/fonts/roboto/roboto-v30-latin-700italic.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-700italic.woff b/public/fonts/roboto/roboto-v30-latin-700italic.woff old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-700italic.woff2 b/public/fonts/roboto/roboto-v30-latin-700italic.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-900.eot b/public/fonts/roboto/roboto-v30-latin-900.eot old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-900.svg b/public/fonts/roboto/roboto-v30-latin-900.svg old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-900.ttf b/public/fonts/roboto/roboto-v30-latin-900.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-900.woff b/public/fonts/roboto/roboto-v30-latin-900.woff old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-900.woff2 b/public/fonts/roboto/roboto-v30-latin-900.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-900italic.eot b/public/fonts/roboto/roboto-v30-latin-900italic.eot old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-900italic.svg b/public/fonts/roboto/roboto-v30-latin-900italic.svg old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-900italic.ttf b/public/fonts/roboto/roboto-v30-latin-900italic.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-900italic.woff b/public/fonts/roboto/roboto-v30-latin-900italic.woff old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-900italic.woff2 b/public/fonts/roboto/roboto-v30-latin-900italic.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-italic.eot b/public/fonts/roboto/roboto-v30-latin-italic.eot old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-italic.svg b/public/fonts/roboto/roboto-v30-latin-italic.svg old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-italic.ttf b/public/fonts/roboto/roboto-v30-latin-italic.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-italic.woff b/public/fonts/roboto/roboto-v30-latin-italic.woff old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-italic.woff2 b/public/fonts/roboto/roboto-v30-latin-italic.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-regular.eot b/public/fonts/roboto/roboto-v30-latin-regular.eot old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-regular.svg b/public/fonts/roboto/roboto-v30-latin-regular.svg old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-regular.ttf b/public/fonts/roboto/roboto-v30-latin-regular.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-regular.woff b/public/fonts/roboto/roboto-v30-latin-regular.woff old mode 100644 new mode 100755 diff --git a/public/fonts/roboto/roboto-v30-latin-regular.woff2 b/public/fonts/roboto/roboto-v30-latin-regular.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/source-sans-3-v15-latin-regular.ttf b/public/fonts/source-sans-3-v15-latin-regular.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/source-sans-3/source-sans-3-v15-latin-200.ttf b/public/fonts/source-sans-3/source-sans-3-v15-latin-200.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/source-sans-3/source-sans-3-v15-latin-200.woff2 b/public/fonts/source-sans-3/source-sans-3-v15-latin-200.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/source-sans-3/source-sans-3-v15-latin-200italic.ttf b/public/fonts/source-sans-3/source-sans-3-v15-latin-200italic.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/source-sans-3/source-sans-3-v15-latin-200italic.woff2 b/public/fonts/source-sans-3/source-sans-3-v15-latin-200italic.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/source-sans-3/source-sans-3-v15-latin-300.ttf b/public/fonts/source-sans-3/source-sans-3-v15-latin-300.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/source-sans-3/source-sans-3-v15-latin-300.woff2 b/public/fonts/source-sans-3/source-sans-3-v15-latin-300.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/source-sans-3/source-sans-3-v15-latin-300italic.ttf b/public/fonts/source-sans-3/source-sans-3-v15-latin-300italic.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/source-sans-3/source-sans-3-v15-latin-300italic.woff2 b/public/fonts/source-sans-3/source-sans-3-v15-latin-300italic.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/source-sans-3/source-sans-3-v15-latin-500.ttf b/public/fonts/source-sans-3/source-sans-3-v15-latin-500.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/source-sans-3/source-sans-3-v15-latin-500.woff2 b/public/fonts/source-sans-3/source-sans-3-v15-latin-500.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/source-sans-3/source-sans-3-v15-latin-500italic.ttf b/public/fonts/source-sans-3/source-sans-3-v15-latin-500italic.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/source-sans-3/source-sans-3-v15-latin-500italic.woff2 b/public/fonts/source-sans-3/source-sans-3-v15-latin-500italic.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/source-sans-3/source-sans-3-v15-latin-600.ttf b/public/fonts/source-sans-3/source-sans-3-v15-latin-600.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/source-sans-3/source-sans-3-v15-latin-600.woff2 b/public/fonts/source-sans-3/source-sans-3-v15-latin-600.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/source-sans-3/source-sans-3-v15-latin-600italic.ttf b/public/fonts/source-sans-3/source-sans-3-v15-latin-600italic.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/source-sans-3/source-sans-3-v15-latin-600italic.woff2 b/public/fonts/source-sans-3/source-sans-3-v15-latin-600italic.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/source-sans-3/source-sans-3-v15-latin-700.ttf b/public/fonts/source-sans-3/source-sans-3-v15-latin-700.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/source-sans-3/source-sans-3-v15-latin-700.woff2 b/public/fonts/source-sans-3/source-sans-3-v15-latin-700.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/source-sans-3/source-sans-3-v15-latin-700italic.ttf b/public/fonts/source-sans-3/source-sans-3-v15-latin-700italic.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/source-sans-3/source-sans-3-v15-latin-700italic.woff2 b/public/fonts/source-sans-3/source-sans-3-v15-latin-700italic.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/source-sans-3/source-sans-3-v15-latin-800.ttf b/public/fonts/source-sans-3/source-sans-3-v15-latin-800.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/source-sans-3/source-sans-3-v15-latin-800.woff2 b/public/fonts/source-sans-3/source-sans-3-v15-latin-800.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/source-sans-3/source-sans-3-v15-latin-800italic.ttf b/public/fonts/source-sans-3/source-sans-3-v15-latin-800italic.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/source-sans-3/source-sans-3-v15-latin-800italic.woff2 b/public/fonts/source-sans-3/source-sans-3-v15-latin-800italic.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/source-sans-3/source-sans-3-v15-latin-900.ttf b/public/fonts/source-sans-3/source-sans-3-v15-latin-900.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/source-sans-3/source-sans-3-v15-latin-900.woff2 b/public/fonts/source-sans-3/source-sans-3-v15-latin-900.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/source-sans-3/source-sans-3-v15-latin-900italic.ttf b/public/fonts/source-sans-3/source-sans-3-v15-latin-900italic.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/source-sans-3/source-sans-3-v15-latin-900italic.woff2 b/public/fonts/source-sans-3/source-sans-3-v15-latin-900italic.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/source-sans-3/source-sans-3-v15-latin-italic.ttf b/public/fonts/source-sans-3/source-sans-3-v15-latin-italic.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/source-sans-3/source-sans-3-v15-latin-italic.woff2 b/public/fonts/source-sans-3/source-sans-3-v15-latin-italic.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/source-sans-3/source-sans-3-v15-latin-regular.ttf b/public/fonts/source-sans-3/source-sans-3-v15-latin-regular.ttf old mode 100644 new mode 100755 diff --git a/public/fonts/source-sans-3/source-sans-3-v15-latin-regular.woff2 b/public/fonts/source-sans-3/source-sans-3-v15-latin-regular.woff2 old mode 100644 new mode 100755 diff --git a/public/fonts/source.sans-3.css b/public/fonts/source.sans-3.css old mode 100644 new mode 100755 diff --git a/public/images/da2f996_wlogo_1.png b/public/images/da2f996_wlogo_1.png old mode 100644 new mode 100755 diff --git a/public/images/de.png b/public/images/de.png old mode 100644 new mode 100755 diff --git a/public/images/en.png b/public/images/en.png old mode 100644 new mode 100755 diff --git a/public/images/flaggen.psd b/public/images/flaggen.psd old mode 100644 new mode 100755 diff --git a/public/images/fr.png b/public/images/fr.png old mode 100644 new mode 100755 diff --git a/public/images/nl.png b/public/images/nl.png old mode 100644 new mode 100755 diff --git a/public/images/pyramids-2371501_1920.jpg b/public/images/pyramids-2371501_1920.jpg old mode 100644 new mode 100755 diff --git a/public/images/pyramids.jpg b/public/images/pyramids.jpg old mode 100644 new mode 100755 diff --git a/public/images/sphinx-1175828_1920.jpg b/public/images/sphinx-1175828_1920.jpg old mode 100644 new mode 100755 diff --git a/public/images/sphinx.jpg b/public/images/sphinx.jpg old mode 100644 new mode 100755 diff --git a/public/images/stern-tours-logo.png b/public/images/stern-tours-logo.png old mode 100644 new mode 100755 diff --git a/public/images/vendor/@claviska 2/jquery-minicolors/jquery.minicolors.png b/public/images/vendor/@claviska 2/jquery-minicolors/jquery.minicolors.png old mode 100644 new mode 100755 diff --git a/public/images/vendor/@claviska/jquery-minicolors/jquery.minicolors.png b/public/images/vendor/@claviska/jquery-minicolors/jquery.minicolors.png old mode 100644 new mode 100755 diff --git a/public/images/vendor/blueimp-gallery/error.png b/public/images/vendor/blueimp-gallery/error.png old mode 100644 new mode 100755 diff --git a/public/images/vendor/blueimp-gallery/error.svg b/public/images/vendor/blueimp-gallery/error.svg old mode 100644 new mode 100755 diff --git a/public/images/vendor/blueimp-gallery/loading.gif b/public/images/vendor/blueimp-gallery/loading.gif old mode 100644 new mode 100755 diff --git a/public/images/vendor/blueimp-gallery/play-pause.png b/public/images/vendor/blueimp-gallery/play-pause.png old mode 100644 new mode 100755 diff --git a/public/images/vendor/blueimp-gallery/play-pause.svg b/public/images/vendor/blueimp-gallery/play-pause.svg old mode 100644 new mode 100755 diff --git a/public/images/vendor/blueimp-gallery/video-play.png b/public/images/vendor/blueimp-gallery/video-play.png old mode 100644 new mode 100755 diff --git a/public/images/vendor/blueimp-gallery/video-play.svg b/public/images/vendor/blueimp-gallery/video-play.svg old mode 100644 new mode 100755 diff --git a/public/images/vendor/jstree/dist/themes/default-dark/32px.png b/public/images/vendor/jstree/dist/themes/default-dark/32px.png old mode 100644 new mode 100755 diff --git a/public/images/vendor/jstree/dist/themes/default-dark/40px.png b/public/images/vendor/jstree/dist/themes/default-dark/40px.png old mode 100644 new mode 100755 diff --git a/public/images/vendor/jstree/dist/themes/default-dark/throbber.gif b/public/images/vendor/jstree/dist/themes/default-dark/throbber.gif old mode 100644 new mode 100755 diff --git a/public/images/vendor/jstree/dist/themes/default/32px.png b/public/images/vendor/jstree/dist/themes/default/32px.png old mode 100644 new mode 100755 diff --git a/public/images/vendor/jstree/dist/themes/default/40px.png b/public/images/vendor/jstree/dist/themes/default/40px.png old mode 100644 new mode 100755 diff --git a/public/images/vendor/jstree/dist/themes/default/throbber.gif b/public/images/vendor/jstree/dist/themes/default/throbber.gif old mode 100644 new mode 100755 diff --git a/public/images/vendor/photoswipe/dist/default-skin/default-skin.png b/public/images/vendor/photoswipe/dist/default-skin/default-skin.png old mode 100644 new mode 100755 diff --git a/public/images/vendor/photoswipe/dist/default-skin/default-skin.svg b/public/images/vendor/photoswipe/dist/default-skin/default-skin.svg old mode 100644 new mode 100755 diff --git a/public/images/vendor/photoswipe/dist/default-skin/preloader.gif b/public/images/vendor/photoswipe/dist/default-skin/preloader.gif old mode 100644 new mode 100755 diff --git a/public/images/vendor/vegas/dist/overlays/02.png b/public/images/vendor/vegas/dist/overlays/02.png old mode 100644 new mode 100755 diff --git a/public/js/German.json b/public/js/German.json old mode 100644 new mode 100755 diff --git a/public/js/custom.js b/public/js/custom.js old mode 100644 new mode 100755 diff --git a/public/js/filemanager.js b/public/js/filemanager.js old mode 100644 new mode 100755 diff --git a/public/js/jquery.min.js b/public/js/jquery.min.js old mode 100644 new mode 100755 diff --git a/public/js/pages_file-manager.js b/public/js/pages_file-manager.js old mode 100644 new mode 100755 diff --git a/public/js/summernote-image-title.js b/public/js/summernote-image-title.js old mode 100644 new mode 100755 diff --git a/public/js/summernote-iq-content-extension.js b/public/js/summernote-iq-content-extension.js old mode 100644 new mode 100755 diff --git a/public/js/summernote-iq-content-placeholders.js b/public/js/summernote-iq-content-placeholders.js old mode 100644 new mode 100755 diff --git a/public/js/summernote-placeholders.js b/public/js/summernote-placeholders.js old mode 100644 new mode 100755 diff --git a/public/mix-manifest.json b/public/mix-manifest.json old mode 100644 new mode 100755 diff --git a/public/pdf/_bak/sterntours-coupon-1.pdf b/public/pdf/_bak/sterntours-coupon-1.pdf old mode 100755 new mode 100644 diff --git a/public/pdf/_bak/sterntours-coupon-2.pdf b/public/pdf/_bak/sterntours-coupon-2.pdf old mode 100755 new mode 100644 diff --git a/public/pdf/_bak/sterntours-template-1.pdf b/public/pdf/_bak/sterntours-template-1.pdf old mode 100755 new mode 100644 diff --git a/public/pdf/_bak/sterntours-template-2.pdf b/public/pdf/_bak/sterntours-template-2.pdf old mode 100755 new mode 100644 diff --git a/public/pdf/sterntours-coupon-1.pdf b/public/pdf/sterntours-coupon-1.pdf old mode 100755 new mode 100644 diff --git a/public/pdf/sterntours-coupon-2.pdf b/public/pdf/sterntours-coupon-2.pdf old mode 100755 new mode 100644 diff --git a/public/pdf/sterntours-template-1.pdf b/public/pdf/sterntours-template-1.pdf old mode 100755 new mode 100644 diff --git a/public/pdf/sterntours-template-2.pdf b/public/pdf/sterntours-template-2.pdf old mode 100755 new mode 100644 diff --git a/public/pdf/sterntours-template-logo-1.pdf b/public/pdf/sterntours-template-logo-1.pdf old mode 100755 new mode 100644 diff --git a/public/pdf/sterntours-template-logo-2.pdf b/public/pdf/sterntours-template-logo-2.pdf old mode 100755 new mode 100644 diff --git a/resources/views/booking/_detail_drafs.blade.php b/resources/views/booking/_detail_drafs.blade.php index 04e4afb..811a880 100755 --- a/resources/views/booking/_detail_drafs.blade.php +++ b/resources/views/booking/_detail_drafs.blade.php @@ -1,178 +1,396 @@
-
-
- @if($booking->new_drafts ) +
+ {{-- Wenn keine Organisation vorhanden ist --}} + @if ( + (!$booking->booking_draft_items || $booking->booking_draft_items->count()) == 0 && + (!$booking->arrangements || $booking->arrangements->count() == 0)) +
+
+
+ + Keine Organisation vorhanden +
+ Laden Sie eine Vorlage, um schnell mit der Organisation zu beginnen. +
+
+ + +
+
+
+
+
+
+ + Leitungen hinzufügen +
+ Alternativ können Sie die Leitungen individualisiert hinzufügen. +
+
+ + + {{--
+
+ + +
+
+ // Handler für bestehende Buchungen + + --}} + + + + @endif + + + @if ($booking->arrangements && $booking->arrangements->count() > 0) +
+
+
+ Alte Arrangements + {{ $booking->arrangements->count() }} +
+ @if ($booking->arrangements->count() > 0) + + @endif +
+
+ + + + + + + + + + + + @php($arr_i = 1) + @foreach ($booking->arrangements->sortByDesc('view_position') as $arrangement) + + arrangement_type && $arrangement->arrangement_type->color) style="background-color: {{ $arrangement->arrangement_type->color }}" @endif> + + + + + + + + + @endforeach +
#TypDatum vonDatum bisDatenStatus
{{ $arr_i++ }} + @if ($arrangement->arrangement_type) + {{ $arrangement->arrangement_type->name ?? $arrangement->type_s }} + @else + {{ $arrangement->type_s }} + @endif + + @if ($arrangement->begin) + {{ $arrangement->begin->format('d.m.Y') }} + @endif + + @if ($arrangement->end) + {{ $arrangement->end->format('d.m.Y') }} + @endif + + @if ($arrangement->data_s) + {{ $arrangement->getDataS() }} + @endif + + @if ($arrangement->in_pdf) + Im PDF + @else + Nicht im PDF + @endif +
+
+
+ @endif + + @if (!$booking->arrangements || $booking->arrangements->count() == 0) @php($i = 1) -
- +
- +
-   - {{ __('zur Übersicht') }} +   + {{ __('zur Übersicht') }}
- +
- - - - - - - - - - - - @foreach($booking->booking_draft_items as $booking_draft_item) - - draft_type) style="background-color: {{ $booking_draft_item->draft_type->color }}" @endif> - - - - - - @if(in_array($booking_draft_item->draft_type_id, [24, 26, 30, 31, 32, 33, 34, 35, 36, 37, 41, 42])) - - - @else - - - @endif - + + + + + + + + + - draft_type) style="background-color: {{ $booking_draft_item->draft_type->color }}" @endif class="border-none"> - - @if(in_array($booking_draft_item->draft_type_id, [36, 37])) - + draft_type) style="background-color: {{ $booking_draft_item->draft_type->color }}" @endif> + + + - - + @if (in_array($booking_draft_item->draft_type_id, [24, 26, 30, 31, 32, 33, 34, 35, 36, 37, 41, 42])) + + + @else + + + @endif + + + draft_type) style="background-color: {{ $booking_draft_item->draft_type->color }}" @endif + class="border-none"> + + @if (in_array($booking_draft_item->draft_type_id, [36, 37])) + + + - + @endforeach
#LeistungDatum vonDatum bisTeilnehmer/EPKinder/EP#
- - {{ $i++ }} - - - {{ Form::text('draft_item['.$booking_draft_item->id.'][start_date]', $booking_draft_item->start_date, array('placeholder'=>__('Start Datum'), 'class'=>'form-control datepicker-base', 'id'=>'draft_item_'.$booking_draft_item->id.'_start_dat')) }} - - {{ Form::text('draft_item['.$booking_draft_item->id.'][end_date]', $booking_draft_item->end_date, array('placeholder'=>__('End Datum'), 'class'=>'form-control datepicker-base', 'id'=>'draft_item_'.$booking_draft_item->id.'_end_date')) }} - -
- - {{ Form::text('draft_item['.$booking_draft_item->id.'][price_adult]', $booking_draft_item->price_adult, array('placeholder'=>__('Preis in €'), 'class'=>'form-control', 'id'=>'draft_item_'.$booking_draft_item->id.'_price_adult', 'maxlength'=>10)) }} - - - - -
-
-
- - {{ Form::text('draft_item['.$booking_draft_item->id.'][price_children]', $booking_draft_item->price_children, array('placeholder'=>__('Preis in €'), 'class'=>'form-control', 'id'=>'draft_item_'.$booking_draft_item->id.'_price_children')) }} - - - -
-
-- - - - - - - -
#LeistungDatum vonDatum bisTeilnehmer/EPKinder/EP#
-
+ + {{ $i++ }} + - @elseif(in_array($booking_draft_item->draft_type_id, [38, 39,40])) - -
- @if(in_array($booking_draft_item->draft_type_id, [38])) - - @endif - {{ Form::text('draft_item['.$booking_draft_item->id.'][price]', $booking_draft_item->price, array('placeholder'=>__('Preis in €'), 'class'=>'form-control', 'id'=>'draft_item_'.$booking_draft_item->id.'_price',)) }} - - - -
+
+ {{ Form::text('draft_item[' . $booking_draft_item->id . '][start_date]', $booking_draft_item->start_date, ['placeholder' => __('Start Datum'), 'class' => 'form-control datepicker-base', 'id' => 'draft_item_' . $booking_draft_item->id . '_start_dat']) }} - @else - - @endif - {{ Form::textarea('draft_item['.$booking_draft_item->id.'][service]', $booking_draft_item->service, array('placeholder'=>__('Leistungen'), 'class'=>'form-control autoExpand', 'id'=>'draft_item_'.$booking_draft_item->id.'_service', 'rows'=>'1', 'data-min-rows'=>'1')) }} + + {{ Form::text('draft_item[' . $booking_draft_item->id . '][end_date]', $booking_draft_item->end_date, ['placeholder' => __('End Datum'), 'class' => 'form-control datepicker-base', 'id' => 'draft_item_' . $booking_draft_item->id . '_end_date']) }} + +
+ + {{ Form::text('draft_item[' . $booking_draft_item->id . '][price_adult]', $booking_draft_item->price_adult, ['placeholder' => __('Preis in €'), 'class' => 'form-control', 'id' => 'draft_item_' . $booking_draft_item->id . '_price_adult', 'maxlength' => 10]) }} + + + + +
+
+
+ + {{ Form::text('draft_item[' . $booking_draft_item->id . '][price_children]', $booking_draft_item->price_children, ['placeholder' => __('Preis in €'), 'class' => 'form-control', 'id' => 'draft_item_' . $booking_draft_item->id . '_price_children']) }} + + + +
+
-- + + + + + + +
+ + + @elseif(in_array($booking_draft_item->draft_type_id, [38, 39, 40])) + +
+ @if (in_array($booking_draft_item->draft_type_id, [38])) + + @endif + {{ Form::text('draft_item[' . $booking_draft_item->id . '][price]', $booking_draft_item->price, ['placeholder' => __('Preis in €'), 'class' => 'form-control', 'id' => 'draft_item_' . $booking_draft_item->id . '_price']) }} + + + +
+
+ @else + + @endif + {{ Form::textarea('draft_item[' . $booking_draft_item->id . '][service]', $booking_draft_item->service, ['placeholder' => __('Leistungen'), 'class' => 'form-control autoExpand', 'id' => 'draft_item_' . $booking_draft_item->id . '_service', 'rows' => '1', 'data-min-rows' => '1']) }}
- -
-
- -
- + + +
+ +
+
- -
- - - - +
+
+ + + + +
- - +
+ + +
-   - {{ __('zur Übersicht') }} +   + {{ __('zur Übersicht') }}
@endif +
-
\ No newline at end of file +
+ + diff --git a/resources/views/pdf/layout-template.blade.php b/resources/views/pdf/layout-template.blade.php index a148dbe..a57c62b 100644 --- a/resources/views/pdf/layout-template.blade.php +++ b/resources/views/pdf/layout-template.blade.php @@ -1,39 +1,18 @@ + - + STERN TOURS + - -
-
-
- -
-
-
- @yield('content') -
-
+
+
+
+ +
+
+
+ @yield('content') +
+
- \ No newline at end of file + + diff --git a/resources/views/settings/travel_company/detail.blade.php b/resources/views/settings/travel_company/detail.blade.php index f4f9e6f..643f7f4 100755 --- a/resources/views/settings/travel_company/detail.blade.php +++ b/resources/views/settings/travel_company/detail.blade.php @@ -15,9 +15,11 @@ + @if($id != 'new') + @endif diff --git a/resources/views/settings/travel_country/detail.blade.php b/resources/views/settings/travel_country/detail.blade.php index 3521a15..7c40b1d 100755 --- a/resources/views/settings/travel_country/detail.blade.php +++ b/resources/views/settings/travel_country/detail.blade.php @@ -15,7 +15,7 @@ - @if($id > 0) + @if($id != 'new') diff --git a/routes/web.php b/routes/web.php index d2acf0c..f91ab19 100755 --- a/routes/web.php +++ b/routes/web.php @@ -16,9 +16,9 @@ Auth::routes([ 'register' => false, // Registration Routes... //'reset' => false, // Password Reset Routes... 'verify' => false, // Email Verification Routes... - ]); - -Route::get('/logout', function(){ +]); + +Route::get('/logout', function () { Auth::logout(); \App\Services\MyGoogle2FA::logout(); return Redirect::to('login'); @@ -53,12 +53,11 @@ Route::get('customer_file/show/{model}/{id}/{cd?}', 'CustomerFileController@show -Route::group(['middleware' => ['auth', '2fa']], function() -{ +Route::group(['middleware' => ['auth', '2fa']], function () { Route::get('storage/{type?}/{class?}/{year?}/{file?}/{do?}', 'FileController@showExpert')->name('storage'); Route::get('/home', 'HomeController@show')->name('home'); - Route::group(['middleware' => ['auth.permission:my-dat']], function() { + Route::group(['middleware' => ['auth.permission:my-dat']], function () { Route::get('/user/edit', 'UserDataController@userEdit')->name('user_edit'); Route::post('/user/edit', 'UserDataController@userEditStore')->name('user_edit'); @@ -79,8 +78,7 @@ Route::group(['middleware' => ['auth', '2fa']], function() }); }); -Route::group(['middleware' => ['admin', '2fa']], function() -{ +Route::group(['middleware' => ['admin', '2fa']], function () { Route::post('/modal/load', 'ModalController@load')->name('modal_load'); Route::post('/ajax/load/data', 'AjaxController@load')->name('ajax_load_data'); @@ -127,12 +125,12 @@ Route::group(['middleware' => ['admin', '2fa']], function() Route::post('/lead_mail/modal/load', 'LeadMailController@loadModal')->name('lead_mail_modal_load'); Route::post('lead_mail/detail{id}/{action?}', 'LeadMailController@store')->name('lead_mail_detail'); - Route::group(['middleware' => ['auth.permission:cms-iq-assets']], function() { + Route::group(['middleware' => ['auth.permission:cms-iq-assets']], function () { //assets Route::get('/iq/content/assets', 'IQ\ContentAssetController@index')->name('iq_content_assets'); Route::get('/iq/content/assets/modal', 'IQ\ContentAssetController@modal')->name('iq_content_assets_modal'); }); - Route::group(['middleware' => ['auth.permission:crm-tp-pr']], function() { + Route::group(['middleware' => ['auth.permission:crm-tp-pr']], function () { //Reiseprogramme Programme Route::get('/travel/programs/{step?}', 'TravelProgramController@index')->name('travel_programs'); @@ -146,7 +144,7 @@ Route::group(['middleware' => ['admin', '2fa']], function() Route::post('/travel/program/draft/update', 'TravelProgramController@draftUpdate')->name('travel_program_draft_update'); Route::get('/travel/program/draft/delete/{id}', 'TravelProgramController@draftDelete')->name('travel_program_draft_delete'); }); - Route::group(['middleware' => ['auth.permission:crm-tp-dr']], function() { + Route::group(['middleware' => ['auth.permission:crm-tp-dr']], function () { //Reiseprogramme Vorlagen Route::get('/drafts/{step?}', 'DraftController@index')->name('drafts'); @@ -166,7 +164,7 @@ Route::group(['middleware' => ['admin', '2fa']], function() Route::post('/draft/load/old', 'DraftController@loadOldAction')->name('draft_load_old'); }); - Route::group(['middleware' => ['auth.permission:crm-tp-tc']], function() { + Route::group(['middleware' => ['auth.permission:crm-tp-tc']], function () { //Reiseprogramme Vorlagen Route::get('/travel_content/{step?}', 'TravelContentController@index')->name('travel_content'); @@ -176,11 +174,11 @@ Route::group(['middleware' => ['admin', '2fa']], function() Route::get('/travel_content/sub_detail/{id}', 'TravelContentController@subDetail')->name('travel_content_sub_detail'); Route::post('/travel_content/sub_detail/{id}', 'TravelContentController@subStore')->name('travel_content_sub_detail'); - + Route::post('/travel_content/load', 'TravelContentController@load')->name('travel_content_load'); Route::post('/travel_content/update', 'TravelContentController@update')->name('travel_content_update'); - /*Route::get('/draft/item/delete/{id}', 'DraftController@itemDelete')->name('draft_item_delete'); + /*Route::get('/draft/item/delete/{id}', 'DraftController@itemDelete')->name('draft_item_delete'); Route::get('/draft/delete/{id}', 'DraftController@delete')->name('draft_delete'); Route::post('/draft/type/update', 'DraftController@typeUpdate')->name('draft_type_update'); @@ -194,8 +192,8 @@ Route::group(['middleware' => ['admin', '2fa']], function() }); - - Route::group(['middleware' => ['auth.permission:crm-bo-re']], function() { + + Route::group(['middleware' => ['auth.permission:crm-bo-re']], function () { //Buchungen > Anfragen Route::get('/requests/{step?}', 'RequestController@index')->name('requests'); //Route::get('/lead/detail/{id}', 'LeadController@detail')->name('lead_detail'); @@ -203,23 +201,20 @@ Route::group(['middleware' => ['admin', '2fa']], function() Route::post('data/ajax/requests', 'RequestController@getAjaxRequests')->name('data_ajax_requests'); Route::post('/requests/modal/load', 'RequestController@loadModal')->name('requests_modal_load'); }); - Route::group(['middleware' => ['auth.permission:crm-bo-bo']], function() { - //Buchungen > Buchungen - Route::get('data/table/bookings', 'DataTableController@getBookings')->name('data_table_bookings'); - Route::get('/bookings/{step?}', 'BookingController@index')->name('bookings'); - Route::get('/booking/detail/{id}', 'BookingController@detail')->name('booking_detail'); - Route::post('/booking/detail/{id}', 'BookingController@store')->name('booking_detail'); - Route::get('/booking/draft_item/delete/{id}', 'BookingController@draftItemDelete')->name('booking_draft_item_delete'); - Route::post('/booking/modal/load', 'BookingController@loadModal')->name('booking_modal_load'); - Route::get('/booking/action/{action}/{id?}', 'BookingController@action')->name('booking_action'); - Route::post('/booking/action/{action}/{id?}', 'BookingController@action')->name('booking_action'); - Route::get('/booking/delete/{id}/{del?}', 'BookingController@delete')->name('booking_delete'); - Route::post('/booking/delete/complete/{id}', 'BookingController@deleteComplete')->name('booking_delete_complete'); - - - + Route::group(['middleware' => ['auth.permission:crm-bo-bo']], function () { + //Buchungen > Buchungen + Route::get('data/table/bookings', 'DataTableController@getBookings')->name('data_table_bookings'); + Route::get('/bookings/{step?}', 'BookingController@index')->name('bookings'); + Route::get('/booking/detail/{id}', 'BookingController@detail')->name('booking_detail'); + Route::post('/booking/detail/{id}', 'BookingController@store')->name('booking_detail'); + Route::get('/booking/draft_item/delete/{id}', 'BookingController@draftItemDelete')->name('booking_draft_item_delete'); + Route::post('/booking/modal/load', 'BookingController@loadModal')->name('booking_modal_load'); + Route::get('/booking/action/{action}/{id?}', 'BookingController@action')->name('booking_action'); + Route::post('/booking/action/{action}/{id?}', 'BookingController@action')->name('booking_action'); + Route::get('/booking/delete/{id}/{del?}', 'BookingController@delete')->name('booking_delete'); + Route::post('/booking/delete/complete/{id}', 'BookingController@deleteComplete')->name('booking_delete_complete'); }); - Route::group(['middleware' => ['auth.permission:crm-bo-le']], function() { + Route::group(['middleware' => ['auth.permission:crm-bo-le']], function () { //Buchungen > Leads Route::get('data/table/leads', 'LeadController@getLeads')->name('data_table_leads'); Route::get('/leads/{step?}', 'LeadController@index')->name('leads'); @@ -231,7 +226,7 @@ Route::group(['middleware' => ['admin', '2fa']], function() Route::post('lead/ajax/requests', 'LeadController@getAjaxRequests')->name('lead_ajax_requests'); Route::get('/lead/delete/{id}/{del?}', 'LeadController@delete')->name('lead_delete'); }); - Route::group(['middleware' => ['auth.permission:crm-bo-cu']], function() { + Route::group(['middleware' => ['auth.permission:crm-bo-cu']], function () { //Buchungen > Kunden Route::get('data/table/customers', 'CustomerController@getCustomers')->name('data_table_customers'); Route::get('/customers/{step?}', 'CustomerController@index')->name('customers'); @@ -239,7 +234,7 @@ Route::group(['middleware' => ['admin', '2fa']], function() Route::post('/customer/detail/{id}', 'CustomerController@store')->name('customer_detail'); Route::get('/customer/delete/{id}', 'CustomerController@delete')->name('customer_delete'); }); - Route::group(['middleware' => ['auth.permission:crm-mail']], function() { + Route::group(['middleware' => ['auth.permission:crm-mail']], function () { //Emails > Anfragen / Buchungen / Fewo Route::get('/mail/leads', 'MailController@leads')->name('mail_leads'); Route::get('/mail/bookings', 'MailController@bookings')->name('mail_bookings'); @@ -247,9 +242,9 @@ Route::group(['middleware' => ['admin', '2fa']], function() Route::get('/mail/lead/datatable', 'MailController@leadDatatable')->name('mail_lead_datatable'); Route::get('/mail/booking/datatable', 'MailController@bookingDatatable')->name('mail_booking_datatable'); - Route::get('/mail/booking_fewo/datatable', 'MailController@bookingFewoDatatable')->name('mail_booking_fewo_datatable'); + Route::get('/mail/booking_fewo/datatable', 'MailController@bookingFewoDatatable')->name('mail_booking_fewo_datatable'); }); - Route::group(['middleware' => ['auth.permission:crm-cm-cf']], function() { + Route::group(['middleware' => ['auth.permission:crm-cm-cf']], function () { //Kundenverwaltung > Kunden (FeWo) Route::get('/travel_users', 'TravelUserController@index')->name('travel_users'); Route::get('/data/table/travel_users', 'TravelUserController@getTravelUsers')->name('data_table_travel_users'); @@ -257,7 +252,7 @@ Route::group(['middleware' => ['admin', '2fa']], function() Route::post('/travel_user/detail/{id}', 'TravelUserController@store')->name('travel_user_detail'); Route::get('/travel_user/delete/{id}', 'TravelUserController@delete')->name('travel_user_delete'); }); - Route::group(['middleware' => ['auth.permission:crm-cm-bf']], function() { + Route::group(['middleware' => ['auth.permission:crm-cm-bf']], function () { //Kundenverwaltung > Buchungen (FeWo) Route::get('/travel_user_booking_fewos', 'TravelUserBookingFewoController@index')->name('travel_user_booking_fewos'); Route::get('/data/table/travel_user_booking_fewos', 'TravelUserBookingFewoController@getTravelUserBookingFewos')->name('data_table_travel_user_booking_fewos'); @@ -266,10 +261,9 @@ Route::group(['middleware' => ['admin', '2fa']], function() Route::get('/travel_user_booking_fewo/delete/{id}/{del?}', 'TravelUserBookingFewoController@delete')->name('travel_user_booking_fewo_delete'); Route::post('/travel_user_booking_fewo/modal/load', 'TravelUserBookingFewoController@loadModal')->name('travel_user_booking_fewo_modal_load'); Route::post('travel_user_booking_fewo/ajax/requests', 'TravelUserBookingFewoController@getAjaxRequests')->name('travel_user_booking_fewo_ajax_requests'); - }); - Route::group(['middleware' => ['auth.permission:crm-iq-tl']], function() { + Route::group(['middleware' => ['auth.permission:crm-iq-tl']], function () { //Reisebausteine Route::get('/iq/travel/programms', 'IQ\TravelProgrammController@index')->name('iq_travel_programms'); Route::get('/iq/travel/programm/detail/{id}', 'IQ\TravelProgrammController@detail')->name('iq_travel_programm_detail'); @@ -289,39 +283,37 @@ Route::group(['middleware' => ['admin', '2fa']], function() Route::get('/iq/travel/programm/data_table', 'IQ\TravelProgrammController@getTravelProgramms')->name('data_table_travel_programms'); Route::get('/iq/travel/group/data_table', 'IQ\TravelGroupController@getTravelGroups')->name('data_table_travel_groups'); Route::get('/iq/travel/items/data_table', 'IQ\TravelItemController@getTravelItems')->name('data_table_travel_items'); - }); - Route::group(['middleware' => ['auth.permission:cms-cn-in']], function() { + Route::group(['middleware' => ['auth.permission:cms-cn-in']], function () { //CMS Infos Route::get('/cms/content/infos', 'CMS\CMSContentInfoController@index')->name('cms_content_infos'); Route::post('/cms/content/infos', 'CMS\CMSContentInfoController@store')->name('cms_content_infos'); Route::get('/cms/content/infos/delete/{model}/{id}', 'CMS\CMSContentInfoController@delete')->name('cms_content_infos_delete'); }); - Route::group(['middleware' => ['auth.permission:cms-cn-al']], function() { + Route::group(['middleware' => ['auth.permission:cms-cn-al']], function () { // CMS Inhalte Route::get('/cms/content/all', 'CMS\CMSContentController@index')->name('cms_content_all'); Route::post('/cms/content/all/store', 'CMS\CMSContentController@store')->name('cms_content_all_store'); Route::post('/cms/content/all/load/modal', 'CMS\CMSContentController@loadModal')->name('cms_content_all_load_modal'); Route::get('/cms/content/all/delete/{id}', 'CMS\CMSContentController@delete')->name('cms_content_all_delete'); }); - Route::group(['middleware' => ['auth.permission:cms-cn-au']], function() { + Route::group(['middleware' => ['auth.permission:cms-cn-au']], function () { //CMS Author Route::get('/cms/content/author', 'CMS\CMSContentAuthorController@index')->name('cms_content_author'); Route::post('/cms/content/author/store', 'CMS\CMSContentAuthorController@store')->name('cms_content_author_store'); Route::post('/cms/content/author/load/modal', 'CMS\CMSContentAuthorController@loadModal')->name('cms_content_author_load_modal'); Route::get('/cms/content/author/delete/{id}', 'CMS\CMSContentAuthorController@delete')->name('cms_content_author_delete'); }); - Route::group(['middleware' => ['auth.permission:cms-aq']], function() { + Route::group(['middleware' => ['auth.permission:cms-aq']], function () { //CMS Fragen & Antworten Route::get('/cms/answer_question', 'CMS\CMSAnswerQuestionController@index')->name('cms_answer_question'); Route::get('/cms/answer_question/detail/{id}', 'CMS\CMSAnswerQuestionController@detail')->name('cms_answer_question_detail'); Route::post('/cms/answer_question/detail/{id}', 'CMS\CMSAnswerQuestionController@store')->name('cms_answer_question_detail'); Route::get('/cms/answer_question/delete/{id}', 'CMS\CMSAnswerQuestionController@delete')->name('cms_answer_question_delete'); Route::get('/cms/answer_question/datatable', 'CMS\CMSAnswerQuestionController@datatable')->name('cms_answer_question_datatable'); - }); - Route::group(['middleware' => ['auth.permission:cms-tg']], function() { + Route::group(['middleware' => ['auth.permission:cms-tg']], function () { // CMS Reiseführer Route::get('/cms/travel_guide/content', 'CMS\CMSTravelGuideController@index')->name('cms_travel_guide_content'); Route::get('/cms/travel_guide/page', 'CMS\CMSTravelGuideController@page')->name('cms_travel_guide_page'); @@ -335,7 +327,7 @@ Route::group(['middleware' => ['admin', '2fa']], function() Route::post('/cms/travel_guide/detail/{id}', 'CMS\CMSTravelGuideController@store')->name('cms_travel_guide_detail'); Route::get('/cms/travel_guide/delete/{id}', 'CMS\CMSTravelGuideController@delete')->name('cms_travel_guide_delete'); }); - Route::group(['middleware' => ['auth.permission:cms-tg']], function() { + Route::group(['middleware' => ['auth.permission:cms-tg']], function () { // CMS FeWo Route::get('/cms/fewo/all/{step?}', 'CMS\CMSFeWoController@all')->name('cms_fewo_all'); Route::post('/cms/fewo/all/{step?}', 'CMS\CMSFeWoController@storeAll')->name('cms_fewo_all'); @@ -345,7 +337,7 @@ Route::group(['middleware' => ['admin', '2fa']], function() Route::get('/cms/fewo/content/detail/{id}/{step?}', 'CMS\CMSFeWoController@detail')->name('cms_fewo_content_detail'); Route::post('/cms/fewo/content/detail/{id}/{step?}', 'CMS\CMSFeWoController@store')->name('cms_fewo_content_store'); }); - Route::group(['middleware' => ['auth.permission:cms-book']], function() { + Route::group(['middleware' => ['auth.permission:cms-book']], function () { // CMS Booking Route::get('/cms/booking/all/', 'CMS\CMSBookingController@all')->name('cms_booking_all'); Route::get('/cms/booking/all/detail/{id?}', 'CMS\CMSBookingController@detailAll')->name('cms_booking_all_detail'); @@ -356,23 +348,22 @@ Route::group(['middleware' => ['admin', '2fa']], function() Route::get('/cms/booking/content/detail/{id?}', 'CMS\CMSBookingController@detailContent')->name('cms_booking_content_detail'); Route::post('/cms/booking/content/detail/{id?}', 'CMS\CMSBookingController@storeContent')->name('cms_booking_content_detail'); Route::get('/cms/booking/content/delete/{id}/{do}', 'CMS\CMSBookingController@deleteContent')->name('cms_booking_content_delete'); - }); - Route::group(['middleware' => ['auth.permission:cms-fb']], function() { + Route::group(['middleware' => ['auth.permission:cms-fb']], function () { // CMS Feedback Route::get('/cms/feedback', 'CMS\CMSFeedbackController@index')->name('cms_feedback'); Route::get('/cms/feedback/detail/{id}', 'CMS\CMSFeedbackController@detail')->name('cms_feedback_detail'); Route::post('/cms/feedback/detail/{id}', 'CMS\CMSFeedbackController@store')->name('cms_feedback_detail'); Route::get('/cms/feedback/delete/{id}', 'CMS\CMSFeedbackController@delete')->name('cms_feedback_delete'); }); - Route::group(['middleware' => ['auth.permission:cms-nw']], function() { + Route::group(['middleware' => ['auth.permission:cms-nw']], function () { // CMS News Route::get('/cms/news', 'CMS\CMSNewsController@index')->name('cms_news'); Route::get('/cms/news/detail/{id}', 'CMS\CMSNewsController@detail')->name('cms_news_detail'); Route::post('/cms/news/detail/{id}', 'CMS\CMSNewsController@store')->name('cms_news_detail'); Route::get('/cms/news/delete/{id}', 'CMS\CMSNewsController@delete')->name('cms_news_delete'); }); - Route::group(['middleware' => ['auth.permission:cms-sb']], function() { + Route::group(['middleware' => ['auth.permission:cms-sb']], function () { // CMS Sidebar Route::get('/cms/sidebar', 'CMS\CMSSidebarController@index')->name('cms_sidebar'); Route::get('/cms/sidebar/detail/{id}', 'CMS\CMSSidebarController@detail')->name('cms_sidebar_detail'); @@ -382,10 +373,10 @@ Route::group(['middleware' => ['admin', '2fa']], function() }); //login pages for worker -Route::group(['middleware' => ['superadmin', '2fa']], function() { +Route::group(['middleware' => ['superadmin', '2fa']], function () { Route::get('data_table', 'DataTableController@datatable')->name('data_table'); - // Route::get('datatables/leads', 'DataTableController@getLeads')->name('datatables-leads'); + // Route::get('datatables/leads', 'DataTableController@getLeads')->name('datatables-leads'); Route::get('/admin/translate/all', 'TranslationController@index')->name('admin_translate_all'); Route::get('/admin/translate/all/edit/{lang}/{from?}', 'TranslationController@edit')->name('admin_translate_all_edit'); Route::post('/admin/translate/all/update/{lang}/{from?}', 'TranslationController@update')->name('admin_translate_all_update'); @@ -394,115 +385,115 @@ Route::group(['middleware' => ['superadmin', '2fa']], function() { Route::get('/admin/translation/file/{file}/{language?}/{langsource?}/{show?}', 'TranslationFileController@edit')->name('admin_translate_file_edit'); Route::post('/admin/translation/file/{file}/{language?}/{langsource?}/{show?}', 'TranslationFileController@update')->name('admin_translate_file_update'); - Route::group(['middleware' => ['auth.permission:sua-st-al']], function() { + Route::group(['middleware' => ['auth.permission:sua-st-al']], function () { //SUPERADMIN > Einstellungen > Airline Route::get('/admin/settings/airline', 'Settings\AirlineController@index')->name('admin_settings_airline'); Route::get('/admin/settings/airline/detail/{id}/{step?}', 'Settings\AirlineController@detail')->name('admin_settings_airline_detail'); Route::post('/admin/settings/airline/update/{id}', 'Settings\AirlineController@update')->name('admin_settings_airline_update'); Route::get('/admin/settings/airline/delete/{id}', 'Settings\AirlineController@delete')->name('admin_settings_airline_delete'); }); - Route::group(['middleware' => ['auth.permission:sua-st-ap']], function() { + Route::group(['middleware' => ['auth.permission:sua-st-ap']], function () { //SUPERADMIN > Einstellungen > Nationalitäten Route::get('/admin/settings/airport', 'Settings\AirportController@index')->name('admin_settings_airport'); Route::post('/admin/settings/airport/update', 'Settings\AirportController@update')->name('admin_settings_airport_update'); Route::get('/admin/settings/airport/delete/{id}', 'Settings\AirportController@delete')->name('admin_settings_airport_delete'); }); - Route::group(['middleware' => ['auth.permission:sua-st-em']], function() { + Route::group(['middleware' => ['auth.permission:sua-st-em']], function () { //SUPERADMIN > Einstellungen > E-Mail Vorlagen Route::get('/admin/settings/emails/{step?}', 'Settings\EmailsController@index')->name('admin_settings_emails'); Route::post('/admin/settings/emails/load', 'Settings\EmailsController@load')->name('admin_settings_emails_load'); Route::post('/admin/settings/emails/update', 'Settings\EmailsController@update')->name('admin_settings_emails_update'); Route::get('/admin/settings/emails/delete/{id}', 'Settings\EmailsController@delete')->name('admin_settings_emails_delete'); }); - Route::group(['middleware' => ['auth.permission:sua-st-ke']], function() { + Route::group(['middleware' => ['auth.permission:sua-st-ke']], function () { //SUPERADMIN > Einstellungen > Keywords Route::get('/admin/settings/keyword', 'Settings\KeywordController@index')->name('admin_settings_keyword'); Route::post('/admin/settings/keyword/update', 'Settings\KeywordController@update')->name('admin_settings_keyword_update'); Route::get('/admin/settings/keyword/delete/{id}', 'Settings\KeywordController@delete')->name('admin_settings_keyword_delete'); }); - Route::group(['middleware' => ['auth.permission:sua-st-sp']], function() { + Route::group(['middleware' => ['auth.permission:sua-st-sp']], function () { //SUPERADMIN > Einstellungen > Leistungsträger Route::get('/admin/settings/service_provider', 'Settings\ServiceProviderController@index')->name('admin_settings_service_provider'); Route::get('/admin/settings/service_provider/detail/{id}/{step?}', 'Settings\ServiceProviderController@detail')->name('admin_settings_service_provider_detail'); Route::post('/admin/settings/service_provider/update/{id}', 'Settings\ServiceProviderController@update')->name('admin_settings_service_provider_update'); Route::get('/admin/settings/service_provider/delete/{id}/{del?}', 'Settings\ServiceProviderController@delete')->name('admin_settings_service_provider_delete'); }); - Route::group(['middleware' => ['auth.permission:sua-st-tn']], function() { + Route::group(['middleware' => ['auth.permission:sua-st-tn']], function () { //SUPERADMIN > Einstellungen > Nationalitäten Route::get('/admin/settings/travel_nationality', 'Settings\TravelNationalityController@index')->name('admin_settings_travel_nationality'); Route::post('/admin/settings/travel_nationality/update', 'Settings\TravelNationalityController@update')->name('admin_settings_travel_nationality_update'); Route::get('/admin/settings/travel_nationality/delete/{id}', 'Settings\TravelNationalityController@delete')->name('admin_settings_travel_nationality_delete'); }); - Route::group(['middleware' => ['auth.permission:sua-st-tp']], function() { + Route::group(['middleware' => ['auth.permission:sua-st-tp']], function () { //SUPERADMIN > Einstellungen > Reisprogramme Route::get('/admin/settings/travel_program/{id?}', 'Settings\TravelAgendaController@index')->name('admin_settings_travel_program'); Route::post('/admin/settings/travel_program/update', 'Settings\TravelAgendaController@update')->name('admin_settings_travel_program_update'); Route::get('/admin/settings/travel_program/delete/{id}', 'Settings\TravelAgendaController@delete')->name('admin_settings_travel_program_delete'); }); - Route::group(['middleware' => ['auth.permission:sua-st-tca']], function() { + Route::group(['middleware' => ['auth.permission:sua-st-tca']], function () { //SUPERADMIN > Einstellungen > / Reiseart Route::get('/admin/settings/travel_category/{id?}', 'Settings\TravelCategoryController@index')->name('admin_settings_travel_category'); Route::post('/admin/settings/travel_category/update', 'Settings\TravelCategoryController@update')->name('admin_settings_travel_category_update'); Route::get('/admin/settings/travel_category/delete/{id}', 'Settings\TravelCategoryController@delete')->name('admin_settings_travel_category_delete'); }); - Route::group(['middleware' => ['auth.permission:sua-st-tgn']], function() { + Route::group(['middleware' => ['auth.permission:sua-st-tgn']], function () { //SUPERADMIN > Einstellungen > / Reisehinweise Route::get('/admin/settings/gerneral_notes/{id?}', 'Settings\TravelGerneralNotesController@index')->name('admin_settings_gerneral_notes'); Route::post('/admin/settings/gerneral_notes/update', 'Settings\TravelGerneralNotesController@update')->name('admin_settings_gerneral_notes_update'); Route::get('/admin/settings/gerneral_notes/delete/{id}', 'Settings\TravelGerneralNotesController@delete')->name('admin_settings_gerneral_notes_delete'); }); - - Route::group(['middleware' => ['auth.permission:sua-st-tpl']], function() { + + Route::group(['middleware' => ['auth.permission:sua-st-tpl']], function () { //SUPERADMIN > Einstellungen > Reiseorte Route::get('/admin/settings/travel_places', 'Settings\TravelPlaceController@index')->name('admin_settings_travel_places'); Route::post('/admin/settings/travel_place/update', 'Settings\TravelPlaceController@update')->name('admin_settings_travel_place_update'); Route::get('/admin/settings/travel_place/delete/{id}', 'Settings\TravelPlaceController@delete')->name('admin_settings_travel_place_delete'); }); - Route::group(['middleware' => ['auth.permission:sua-st-bs']], function() { + Route::group(['middleware' => ['auth.permission:sua-st-bs']], function () { //SUPERADMIN > Einstellungen > Reisestatus Route::get('/admin/settings/booking_status', 'Settings\BookingStatusController@index')->name('admin_settings_booking_status'); Route::post('/admin/settings/booking_status/update', 'Settings\BookingStatusController@update')->name('admin_settings_booking_status_update'); Route::get('/admin/settings/booking_status/delete/{id}', 'Settings\BookingStatusController@delete')->name('admin_settings_booking_status_delete'); }); - Route::group(['middleware' => ['auth.permission:sua-st-co']], function() { + Route::group(['middleware' => ['auth.permission:sua-st-co']], function () { //SUPERADMIN > Einstellungen > Reiseländer Route::get('/admin/settings/travel_country', 'Settings\TravelCountryController@index')->name('admin_settings_travel_country'); - Route::get('/admin/settings/travel_country/detail/{id}/{step?}', 'Settings\TravelCountryController@detail')->name('admin_settings_travel_country_detail'); - Route::post('/admin/settings/travel_country/update/{id}', 'Settings\TravelCountryController@update')->name('admin_settings_travel_country_update'); + Route::get('/admin/settings/travel_country/detail/{id?}/{step?}', 'Settings\TravelCountryController@detail')->name('admin_settings_travel_country_detail'); + Route::post('/admin/settings/travel_country/update/{id?}', 'Settings\TravelCountryController@update')->name('admin_settings_travel_country_update'); Route::get('/admin/settings/travel_country/delete/{id}/{del?}', 'Settings\TravelCountryController@delete')->name('admin_settings_travel_country_delete'); }); - Route::group(['middleware' => ['auth.permission:sua-st-tc']], function() { + Route::group(['middleware' => ['auth.permission:sua-st-tc']], function () { //SUPERADMIN > Einstellungen > Veranstalter Route::get('/admin/settings/travel_company', 'Settings\TravelCompanyController@index')->name('admin_settings_travel_company'); - Route::get('/admin/settings/travel_company/detail/{id}/{step?}', 'Settings\TravelCompanyController@detail')->name('admin_settings_travel_company_detail'); - Route::post('/admin/settings/travel_company/update/{id}', 'Settings\TravelCompanyController@update')->name('admin_settings_travel_company_update'); + Route::get('/admin/settings/travel_company/detail/{id?}/{step?}', 'Settings\TravelCompanyController@detail')->name('admin_settings_travel_company_detail'); + Route::post('/admin/settings/travel_company/update/{id?}', 'Settings\TravelCompanyController@update')->name('admin_settings_travel_company_update'); Route::get('/admin/settings/travel_company/delete/{id}/{del?}', 'Settings\TravelCompanyController@delete')->name('admin_settings_travel_company_delete'); }); - Route::group(['middleware' => ['auth.permission:sua-st-in']], function() { + Route::group(['middleware' => ['auth.permission:sua-st-in']], function () { //SUPERADMIN > Einstellungen > Versicherungen Route::get('/admin/settings/insurance', 'Settings\InsuranceController@index')->name('admin_settings_insurance'); Route::post('/admin/settings/insurance/update', 'Settings\InsuranceController@update')->name('admin_settings_insurance_update'); Route::get('/admin/settings/insurance/delete/{id}', 'Settings\InsuranceController@delete')->name('admin_settings_insurance_delete'); }); - Route::group(['middleware' => ['auth.permission:sua-st-ca']], function() { + Route::group(['middleware' => ['auth.permission:sua-st-ca']], function () { //SUPERADMIN > Einstellungen > Kategorien Route::get('/admin/settings/categories', 'Settings\CategoryController@index')->name('admin_settings_categories'); Route::post('/admin/settings/categories/update', 'Settings\CategoryController@update')->name('admin_settings_categories_update'); Route::get('/admin/settings/categories/delete/{id}', 'Settings\CategoryController@delete')->name('admin_settings_categories_delete'); }); - Route::group(['middleware' => ['auth.permission:sua-st-tap']], function() { + Route::group(['middleware' => ['auth.permission:sua-st-tap']], function () { //SUPERADMIN > Einstellungen > Zielflughafen Route::get('/admin/settings/travel_arrival_point', 'Settings\TravelArrivalPointController@index')->name('admin_settings_travel_arrival_point'); Route::post('/admin/settings/travel_arrival_point/update', 'Settings\TravelArrivalPointController@update')->name('admin_settings_travel_arrival_point_update'); Route::get('/admin/settings/travel_arrival_point/delete/{id}', 'Settings\TravelArrivalPointController@delete')->name('admin_settings_travel_arrival_point_delete'); }); - - Route::group(['middleware' => ['auth.permission:sua-re-bo']], function() { + + Route::group(['middleware' => ['auth.permission:sua-re-bo']], function () { //SUPERADMIN > report > Buchungen Route::get('/admin/report/bookings', 'Admin\ReportBookingController@bookings')->name('admin_report_bookings'); Route::get('/admin/report/datatable/bookings', 'Admin\ReportBookingController@bookingsDatatable')->name('admin_report_bookings_datatable'); @@ -512,21 +503,21 @@ Route::group(['middleware' => ['superadmin', '2fa']], function() { Route::get('/admin/report/check/datatable/bookings', 'Admin\ReportBookingController@checkBookingsDatatable')->name('admin_report_check_bookings_datatable'); }); - Route::group(['middleware' => ['auth.permission:sua-re-pp']], function() { + Route::group(['middleware' => ['auth.permission:sua-re-pp']], function () { //SUPERADMIN > report > Service Provider Route::get('/admin/report/providers', 'Admin\ReportProviderController@providers')->name('admin_report_providers'); Route::get('/admin/report/datatable/providers', 'Admin\ReportProviderController@providersDatatable')->name('admin_report_providers_datatable'); Route::post('/admin/report/export/providers/', 'Admin\ReportProviderController@providersExport')->name('admin_report_export_providers'); }); - Route::group(['middleware' => ['auth.permission:sua-re-fw']], function() { + Route::group(['middleware' => ['auth.permission:sua-re-fw']], function () { //SUPERADMIN > report > Service Provider Route::get('/admin/report/fewo', 'Admin\ReportFewoController@fewo')->name('admin_report_fewo'); Route::get('/admin/report/datatable/fewo', 'Admin\ReportFewoController@fewoDatatable')->name('admin_report_fewo_datatable'); Route::post('/admin/report/export/fewo/', 'Admin\ReportFewoController@fewoExport')->name('admin_report_export_fewo'); }); - Route::group(['middleware' => ['auth.permission:sua-re-le']], function() { + Route::group(['middleware' => ['auth.permission:sua-re-le']], function () { //SUPERADMIN > report > Service Provider Route::get('/admin/report/leads', 'Admin\ReportLeadsController@leads')->name('admin_report_leads'); Route::get('/admin/report/datatable/leads', 'Admin\ReportLeadsController@leadsDatatable')->name('admin_report_leads_datatable'); @@ -534,7 +525,7 @@ Route::group(['middleware' => ['superadmin', '2fa']], function() { }); - Route::group(['middleware' => ['auth.permission:sua-ur-rt']], function() { + Route::group(['middleware' => ['auth.permission:sua-ur-rt']], function () { //SUPERADMIN > User Rechte Route::get('/admin/users', 'AdminUserController@index')->name('admin_users'); Route::get('/admin/user/edit/{id}', 'AdminUserController@edit')->name('admin_user_edit'); @@ -549,11 +540,10 @@ Route::group(['middleware' => ['superadmin', '2fa']], function() { Route::post('/admin/users/load/modal/{id}', 'AdminUserController@loadModal')->name('admin_user_load_modal'); Route::post('/admin/users/update/modal/{step}', 'AdminUserController@updateModal')->name('admin_user_update_modal'); }); - }); //login pages for sysadmin -Route::group(['middleware' => ['sysadmin', '2fa']], function() { +Route::group(['middleware' => ['sysadmin', '2fa']], function () { Route::get('/sysadmin/tools', 'SyS\SysController@index')->name('sysadmin_tools'); Route::get('/sysadmin/tool/{tool}', 'SyS\SysController@tool')->name('sysadmin_tool'); Route::post('/sysadmin/tool/store/{tool}', 'SyS\SysController@store')->name('sysadmin_tool_store'); @@ -576,6 +566,3 @@ Route::get('/send_test_email', function() { } }); */ - - - diff --git a/storage/app/public/public b/storage/app/public/public deleted file mode 120000 index 3ab7fef..0000000 --- a/storage/app/public/public +++ /dev/null @@ -1 +0,0 @@ -/Users/kadmin/Websites/mein.sterntours.local/storage/app/public \ No newline at end of file diff --git a/storage/fonts/DejaVuSans-Bold.ufm.json b/storage/fonts/DejaVuSans-Bold.ufm.json new file mode 100755 index 0000000..1aa6497 --- /dev/null +++ b/storage/fonts/DejaVuSans-Bold.ufm.json @@ -0,0 +1,10762 @@ +{ + "codeToName": { + "32": "space", + "33": "exclam", + "34": "quotedbl", + "35": "numbersign", + "36": "dollar", + "37": "percent", + "38": "ampersand", + "39": "quotesingle", + "40": "parenleft", + "41": "parenright", + "42": "asterisk", + "43": "plus", + "44": "comma", + "45": "hyphen", + "46": "period", + "47": "slash", + "48": "zero", + "49": "one", + "50": "two", + "51": "three", + "52": "four", + "53": "five", + "54": "six", + "55": "seven", + "56": "eight", + "57": "nine", + "58": "colon", + "59": "semicolon", + "60": "less", + "61": "equal", + "62": "greater", + "63": "question", + "64": "at", + "65": "A", + "66": "B", + "67": "C", + "68": "D", + "69": "E", + "70": "F", + "71": "G", + "72": "H", + "73": "I", + "74": "J", + "75": "K", + "76": "L", + "77": "M", + "78": "N", + "79": "O", + "80": "P", + "81": "Q", + "82": "R", + "83": "S", + "84": "T", + "85": "U", + "86": "V", + "87": "W", + "88": "X", + "89": "Y", + "90": "Z", + "91": "bracketleft", + "92": "backslash", + "93": "bracketright", + "94": "asciicircum", + "95": "underscore", + "96": "grave", + "97": "a", + "98": "b", + "99": "c", + "100": "d", + "101": "e", + "102": "f", + "103": "g", + "104": "h", + "105": "i", + "106": "j", + "107": "k", + "108": "l", + "109": "m", + "110": "n", + "111": "o", + "112": "p", + "113": "q", + "114": "r", + "115": "s", + "116": "t", + "117": "u", + "118": "v", + "119": "w", + "120": "x", + "121": "y", + "122": "z", + "123": "braceleft", + "124": "bar", + "125": "braceright", + "126": "asciitilde", + "160": "nbspace", + "161": "exclamdown", + "162": "cent", + "163": "sterling", + "164": "currency", + "165": "yen", + "166": "brokenbar", + "167": "section", + "168": "dieresis", + "169": "copyright", + "170": "ordfeminine", + "171": "guillemotleft", + "172": "logicalnot", + "173": "sfthyphen", + "174": "registered", + "175": "macron", + "176": "degree", + "177": "plusminus", + "178": "twosuperior", + "179": "threesuperior", + "180": "acute", + "181": "mu", + "182": "paragraph", + "183": "periodcentered", + "184": "cedilla", + "185": "onesuperior", + "186": "ordmasculine", + "187": "guillemotright", + "188": "onequarter", + "189": "onehalf", + "190": "threequarters", + "191": "questiondown", + "192": "Agrave", + "193": "Aacute", + "194": "Acircumflex", + "195": "Atilde", + "196": "Adieresis", + "197": "Aring", + "198": "AE", + "199": "Ccedilla", + "200": "Egrave", + "201": "Eacute", + "202": "Ecircumflex", + "203": "Edieresis", + "204": "Igrave", + "205": "Iacute", + "206": "Icircumflex", + "207": "Idieresis", + "208": "Eth", + "209": "Ntilde", + "210": "Ograve", + "211": "Oacute", + "212": "Ocircumflex", + "213": "Otilde", + "214": "Odieresis", + "215": "multiply", + "216": "Oslash", + "217": "Ugrave", + "218": "Uacute", + "219": "Ucircumflex", + "220": "Udieresis", + "221": "Yacute", + "222": "Thorn", + "223": "germandbls", + "224": "agrave", + "225": "aacute", + "226": "acircumflex", + "227": "atilde", + "228": "adieresis", + "229": "aring", + "230": "ae", + "231": "ccedilla", + "232": "egrave", + "233": "eacute", + "234": "ecircumflex", + "235": "edieresis", + "236": "igrave", + "237": "iacute", + "238": "icircumflex", + "239": "idieresis", + "240": "eth", + "241": "ntilde", + "242": "ograve", + "243": "oacute", + "244": "ocircumflex", + "245": "otilde", + "246": "odieresis", + "247": "divide", + "248": "oslash", + "249": "ugrave", + "250": "uacute", + "251": "ucircumflex", + "252": "udieresis", + "253": "yacute", + "254": "thorn", + "255": "ydieresis", + "256": "Amacron", + "257": "amacron", + "258": "Abreve", + "259": "abreve", + "260": "Aogonek", + "261": "aogonek", + "262": "Cacute", + "263": "cacute", + "264": "Ccircumflex", + "265": "ccircumflex", + "266": "Cdotaccent", + "267": "cdotaccent", + "268": "Ccaron", + "269": "ccaron", + "270": "Dcaron", + "271": "dcaron", + "272": "Dcroat", + "273": "dmacron", + "274": "Emacron", + "275": "emacron", + "276": "Ebreve", + "277": "ebreve", + "278": "Edotaccent", + "279": "edotaccent", + "280": "Eogonek", + "281": "eogonek", + "282": "Ecaron", + "283": "ecaron", + "284": "Gcircumflex", + "285": "gcircumflex", + "286": "Gbreve", + "287": "gbreve", + "288": "Gdotaccent", + "289": "gdotaccent", + "290": "Gcommaaccent", + "291": "gcommaaccent", + "292": "Hcircumflex", + "293": "hcircumflex", + "294": "Hbar", + "295": "hbar", + "296": "Itilde", + "297": "itilde", + "298": "Imacron", + "299": "imacron", + "300": "Ibreve", + "301": "ibreve", + "302": "Iogonek", + "303": "iogonek", + "304": "Idot", + "305": "dotlessi", + "306": "IJ", + "307": "ij", + "308": "Jcircumflex", + "309": "jcircumflex", + "310": "Kcommaaccent", + "311": "kcommaaccent", + "312": "kgreenlandic", + "313": "Lacute", + "314": "lacute", + "315": "Lcommaaccent", + "316": "lcommaaccent", + "317": "Lcaron", + "318": "lcaron", + "319": "Ldot", + "320": "ldot", + "321": "Lslash", + "322": "lslash", + "323": "Nacute", + "324": "nacute", + "325": "Ncommaaccent", + "326": "ncommaaccent", + "327": "Ncaron", + "328": "ncaron", + "329": "napostrophe", + "330": "Eng", + "331": "eng", + "332": "Omacron", + "333": "omacron", + "334": "Obreve", + "335": "obreve", + "336": "Ohungarumlaut", + "337": "ohungarumlaut", + "338": "OE", + "339": "oe", + "340": "Racute", + "341": "racute", + "342": "Rcommaaccent", + "343": "rcommaaccent", + "344": "Rcaron", + "345": "rcaron", + "346": "Sacute", + "347": "sacute", + "348": "Scircumflex", + "349": "scircumflex", + "350": "Scedilla", + "351": "scedilla", + "352": "Scaron", + "353": "scaron", + "354": "Tcommaaccent", + "355": "tcommaaccent", + "356": "Tcaron", + "357": "tcaron", + "358": "Tbar", + "359": "tbar", + "360": "Utilde", + "361": "utilde", + "362": "Umacron", + "363": "umacron", + "364": "Ubreve", + "365": "ubreve", + "366": "Uring", + "367": "uring", + "368": "Uhungarumlaut", + "369": "uhungarumlaut", + "370": "Uogonek", + "371": "uogonek", + "372": "Wcircumflex", + "373": "wcircumflex", + "374": "Ycircumflex", + "375": "ycircumflex", + "376": "Ydieresis", + "377": "Zacute", + "378": "zacute", + "379": "Zdotaccent", + "380": "zdotaccent", + "381": "Zcaron", + "382": "zcaron", + "383": "longs", + "384": "uni0180", + "385": "uni0181", + "386": "uni0182", + "387": "uni0183", + "388": "uni0184", + "389": "uni0185", + "390": "uni0186", + "391": "uni0187", + "392": "uni0188", + "393": "uni0189", + "394": "uni018A", + "395": "uni018B", + "396": "uni018C", + "397": "uni018D", + "398": "uni018E", + "399": "uni018F", + "400": "uni0190", + "401": "uni0191", + "402": "florin", + "403": "uni0193", + "404": "uni0194", + "405": "uni0195", + "406": "uni0196", + "407": "uni0197", + "408": "uni0198", + "409": "uni0199", + "410": "uni019A", + "411": "uni019B", + "412": "uni019C", + "413": "uni019D", + "414": "uni019E", + "415": "uni019F", + "416": "Ohorn", + "417": "ohorn", + "418": "uni01A2", + "419": "uni01A3", + "420": "uni01A4", + "421": "uni01A5", + "422": "uni01A6", + "423": "uni01A7", + "424": "uni01A8", + "425": "uni01A9", + "426": "uni01AA", + "427": "uni01AB", + "428": "uni01AC", + "429": "uni01AD", + "430": "uni01AE", + "431": "Uhorn", + "432": "uhorn", + "433": "uni01B1", + "434": "uni01B2", + "435": "uni01B3", + "436": "uni01B4", + "437": "uni01B5", + "438": "uni01B6", + "439": "uni01B7", + "440": "uni01B8", + "441": "uni01B9", + "442": "uni01BA", + "443": "uni01BB", + "444": "uni01BC", + "445": "uni01BD", + "446": "uni01BE", + "447": "uni01BF", + "448": "uni01C0", + "449": "uni01C1", + "450": "uni01C2", + "451": "uni01C3", + "452": "uni01C4", + "453": "uni01C5", + "454": "uni01C6", + "455": "uni01C7", + "456": "uni01C8", + "457": "uni01C9", + "458": "uni01CA", + "459": "uni01CB", + "460": "uni01CC", + "461": "uni01CD", + "462": "uni01CE", + "463": "uni01CF", + "464": "uni01D0", + "465": "uni01D1", + "466": "uni01D2", + "467": "uni01D3", + "468": "uni01D4", + "469": "uni01D5", + "470": "uni01D6", + "471": "uni01D7", + "472": "uni01D8", + "473": "uni01D9", + "474": "uni01DA", + "475": "uni01DB", + "476": "uni01DC", + "477": "uni01DD", + "478": "uni01DE", + "479": "uni01DF", + "480": "uni01E0", + "481": "uni01E1", + "482": "uni01E2", + "483": "uni01E3", + "484": "uni01E4", + "485": "uni01E5", + "486": "Gcaron", + "487": "gcaron", + "488": "uni01E8", + "489": "uni01E9", + "490": "uni01EA", + "491": "uni01EB", + "492": "uni01EC", + "493": "uni01ED", + "494": "uni01EE", + "495": "uni01EF", + "496": "uni01F0", + "497": "uni01F1", + "498": "uni01F2", + "499": "uni01F3", + "500": "uni01F4", + "501": "uni01F5", + "502": "uni01F6", + "503": "uni01F7", + "504": "uni01F8", + "505": "uni01F9", + "506": "Aringacute", + "507": "aringacute", + "508": "AEacute", + "509": "aeacute", + "510": "Oslashacute", + "511": "oslashacute", + "512": "uni0200", + "513": "uni0201", + "514": "uni0202", + "515": "uni0203", + "516": "uni0204", + "517": "uni0205", + "518": "uni0206", + "519": "uni0207", + "520": "uni0208", + "521": "uni0209", + "522": "uni020A", + "523": "uni020B", + "524": "uni020C", + "525": "uni020D", + "526": "uni020E", + "527": "uni020F", + "528": "uni0210", + "529": "uni0211", + "530": "uni0212", + "531": "uni0213", + "532": "uni0214", + "533": "uni0215", + "534": "uni0216", + "535": "uni0217", + "536": "Scommaaccent", + "537": "scommaaccent", + "538": "uni021A", + "539": "uni021B", + "540": "uni021C", + "541": "uni021D", + "542": "uni021E", + "543": "uni021F", + "544": "uni0220", + "545": "uni0221", + "546": "uni0222", + "547": "uni0223", + "548": "uni0224", + "549": "uni0225", + "550": "uni0226", + "551": "uni0227", + "552": "uni0228", + "553": "uni0229", + "554": "uni022A", + "555": "uni022B", + "556": "uni022C", + "557": "uni022D", + "558": "uni022E", + "559": "uni022F", + "560": "uni0230", + "561": "uni0231", + "562": "uni0232", + "563": "uni0233", + "564": "uni0234", + "565": "uni0235", + "566": "uni0236", + "567": "dotlessj", + "568": "uni0238", + "569": "uni0239", + "570": "uni023A", + "571": "uni023B", + "572": "uni023C", + "573": "uni023D", + "574": "uni023E", + "575": "uni023F", + "576": "uni0240", + "577": "uni0241", + "578": "uni0242", + "579": "uni0243", + "580": "uni0244", + "581": "uni0245", + "582": "uni0246", + "583": "uni0247", + "584": "uni0248", + "585": "uni0249", + "586": "uni024A", + "587": "uni024B", + "588": "uni024C", + "589": "uni024D", + "590": "uni024E", + "591": "uni024F", + "592": "uni0250", + "593": "uni0251", + "594": "uni0252", + "595": "uni0253", + "596": "uni0254", + "597": "uni0255", + "598": "uni0256", + "599": "uni0257", + "600": "uni0258", + "601": "uni0259", + "602": "uni025A", + "603": "uni025B", + "604": "uni025C", + "605": "uni025D", + "606": "uni025E", + "607": "uni025F", + "608": "uni0260", + "609": "uni0261", + "610": "uni0262", + "611": "uni0263", + "612": "uni0264", + "613": "uni0265", + "614": "uni0266", + "615": "uni0267", + "616": "uni0268", + "617": "uni0269", + "618": "uni026A", + "619": "uni026B", + "620": "uni026C", + "621": "uni026D", + "622": "uni026E", + "623": "uni026F", + "624": "uni0270", + "625": "uni0271", + "626": "uni0272", + "627": "uni0273", + "628": "uni0274", + "629": "uni0275", + "630": "uni0276", + "631": "uni0277", + "632": "uni0278", + "633": "uni0279", + "634": "uni027A", + "635": "uni027B", + "636": "uni027C", + "637": "uni027D", + "638": "uni027E", + "639": "uni027F", + "640": "uni0280", + "641": "uni0281", + "642": "uni0282", + "643": "uni0283", + "644": "uni0284", + "645": "uni0285", + "646": "uni0286", + "647": "uni0287", + "648": "uni0288", + "649": "uni0289", + "650": "uni028A", + "651": "uni028B", + "652": "uni028C", + "653": "uni028D", + "654": "uni028E", + "655": "uni028F", + "656": "uni0290", + "657": "uni0291", + "658": "uni0292", + "659": "uni0293", + "660": "uni0294", + "661": "uni0295", + "662": "uni0296", + "663": "uni0297", + "664": "uni0298", + "665": "uni0299", + "666": "uni029A", + "667": "uni029B", + "668": "uni029C", + "669": "uni029D", + "670": "uni029E", + "671": "uni029F", + "672": "uni02A0", + "673": "uni02A1", + "674": "uni02A2", + "675": "uni02A3", + "676": "uni02A4", + "677": "uni02A5", + "678": "uni02A6", + "679": "uni02A7", + "680": "uni02A8", + "681": "uni02A9", + "682": "uni02AA", + "683": "uni02AB", + "684": "uni02AC", + "685": "uni02AD", + "686": "uni02AE", + "687": "uni02AF", + "688": "uni02B0", + "689": "uni02B1", + "690": "uni02B2", + "691": "uni02B3", + "692": "uni02B4", + "693": "uni02B5", + "694": "uni02B6", + "695": "uni02B7", + "696": "uni02B8", + "697": "uni02B9", + "698": "uni02BA", + "699": "uni02BB", + "700": "uni02BC", + "701": "uni02BD", + "702": "uni02BE", + "703": "uni02BF", + "704": "uni02C0", + "705": "uni02C1", + "706": "uni02C2", + "707": "uni02C3", + "708": "uni02C4", + "709": "uni02C5", + "710": "circumflex", + "711": "caron", + "712": "uni02C8", + "713": "uni02C9", + "714": "uni02CA", + "715": "uni02CB", + "716": "uni02CC", + "717": "uni02CD", + "718": "uni02CE", + "719": "uni02CF", + "720": "uni02D0", + "721": "uni02D1", + "722": "uni02D2", + "723": "uni02D3", + "724": "uni02D4", + "725": "uni02D5", + "726": "uni02D6", + "727": "uni02D7", + "728": "breve", + "729": "dotaccent", + "730": "ring", + "731": "ogonek", + "732": "tilde", + "733": "hungarumlaut", + "734": "uni02DE", + "735": "uni02DF", + "736": "uni02E0", + "737": "uni02E1", + "738": "uni02E2", + "739": "uni02E3", + "740": "uni02E4", + "741": "uni02E5", + "742": "uni02E6", + "743": "uni02E7", + "744": "uni02E8", + "745": "uni02E9", + "748": "uni02EC", + "749": "uni02ED", + "750": "uni02EE", + "755": "uni02F3", + "759": "uni02F7", + "768": "gravecomb", + "769": "acutecomb", + "770": "uni0302", + "771": "tildecomb", + "772": "uni0304", + "773": "uni0305", + "774": "uni0306", + "775": "uni0307", + "776": "uni0308", + "777": "hookabovecomb", + "778": "uni030A", + "779": "uni030B", + "780": "uni030C", + "781": "uni030D", + "782": "uni030E", + "783": "uni030F", + "784": "uni0310", + "785": "uni0311", + "786": "uni0312", + "787": "uni0313", + "788": "uni0314", + "789": "uni0315", + "790": "uni0316", + "791": "uni0317", + "792": "uni0318", + "793": "uni0319", + "794": "uni031A", + "795": "uni031B", + "796": "uni031C", + "797": "uni031D", + "798": "uni031E", + "799": "uni031F", + "800": "uni0320", + "801": "uni0321", + "802": "uni0322", + "803": "dotbelowcomb", + "804": "uni0324", + "805": "uni0325", + "806": "uni0326", + "807": "uni0327", + "808": "uni0328", + "809": "uni0329", + "810": "uni032A", + "811": "uni032B", + "812": "uni032C", + "813": "uni032D", + "814": "uni032E", + "815": "uni032F", + "816": "uni0330", + "817": "uni0331", + "818": "uni0332", + "819": "uni0333", + "820": "uni0334", + "821": "uni0335", + "822": "uni0336", + "823": "uni0337", + "824": "uni0338", + "825": "uni0339", + "826": "uni033A", + "827": "uni033B", + "828": "uni033C", + "829": "uni033D", + "830": "uni033E", + "831": "uni033F", + "832": "uni0340", + "833": "uni0341", + "834": "uni0342", + "835": "uni0343", + "836": "uni0344", + "837": "uni0345", + "838": "uni0346", + "839": "uni0347", + "840": "uni0348", + "841": "uni0349", + "842": "uni034A", + "843": "uni034B", + "844": "uni034C", + "845": "uni034D", + "846": "uni034E", + "847": "uni034F", + "849": "uni0351", + "850": "uni0352", + "851": "uni0353", + "855": "uni0357", + "856": "uni0358", + "858": "uni035A", + "860": "uni035C", + "861": "uni035D", + "862": "uni035E", + "863": "uni035F", + "864": "uni0360", + "865": "uni0361", + "866": "uni0362", + "880": "uni0370", + "881": "uni0371", + "882": "uni0372", + "883": "uni0373", + "884": "uni0374", + "885": "uni0375", + "886": "uni0376", + "887": "uni0377", + "890": "uni037A", + "891": "uni037B", + "892": "uni037C", + "893": "uni037D", + "894": "uni037E", + "895": "uni037F", + "900": "tonos", + "901": "dieresistonos", + "902": "Alphatonos", + "903": "anoteleia", + "904": "Epsilontonos", + "905": "Etatonos", + "906": "Iotatonos", + "908": "Omicrontonos", + "910": "Upsilontonos", + "911": "Omegatonos", + "912": "iotadieresistonos", + "913": "Alpha", + "914": "Beta", + "915": "Gamma", + "916": "uni0394", + "917": "Epsilon", + "918": "Zeta", + "919": "Eta", + "920": "Theta", + "921": "Iota", + "922": "Kappa", + "923": "Lambda", + "924": "Mu", + "925": "Nu", + "926": "Xi", + "927": "Omicron", + "928": "Pi", + "929": "Rho", + "931": "Sigma", + "932": "Tau", + "933": "Upsilon", + "934": "Phi", + "935": "Chi", + "936": "Psi", + "937": "Omega", + "938": "Iotadieresis", + "939": "Upsilondieresis", + "940": "alphatonos", + "941": "epsilontonos", + "942": "etatonos", + "943": "iotatonos", + "944": "upsilondieresistonos", + "945": "alpha", + "946": "beta", + "947": "gamma", + "948": "delta", + "949": "epsilon", + "950": "zeta", + "951": "eta", + "952": "theta", + "953": "iota", + "954": "kappa", + "955": "lambda", + "956": "uni03BC", + "957": "nu", + "958": "xi", + "959": "omicron", + "960": "pi", + "961": "rho", + "962": "sigma1", + "963": "sigma", + "964": "tau", + "965": "upsilon", + "966": "phi", + "967": "chi", + "968": "psi", + "969": "omega", + "970": "iotadieresis", + "971": "upsilondieresis", + "972": "omicrontonos", + "973": "upsilontonos", + "974": "omegatonos", + "975": "uni03CF", + "976": "uni03D0", + "977": "theta1", + "978": "Upsilon1", + "979": "uni03D3", + "980": "uni03D4", + "981": "phi1", + "982": "omega1", + "983": "uni03D7", + "984": "uni03D8", + "985": "uni03D9", + "986": "uni03DA", + "987": "uni03DB", + "988": "uni03DC", + "989": "uni03DD", + "990": "uni03DE", + "991": "uni03DF", + "992": "uni03E0", + "993": "uni03E1", + "994": "uni03E2", + "995": "uni03E3", + "996": "uni03E4", + "997": "uni03E5", + "998": "uni03E6", + "999": "uni03E7", + "1000": "uni03E8", + "1001": "uni03E9", + "1002": "uni03EA", + "1003": "uni03EB", + "1004": "uni03EC", + "1005": "uni03ED", + "1006": "uni03EE", + "1007": "uni03EF", + "1008": "uni03F0", + "1009": "uni03F1", + "1010": "uni03F2", + "1011": "uni03F3", + "1012": "uni03F4", + "1013": "uni03F5", + "1014": "uni03F6", + "1015": "uni03F7", + "1016": "uni03F8", + "1017": "uni03F9", + "1018": "uni03FA", + "1019": "uni03FB", + "1020": "uni03FC", + "1021": "uni03FD", + "1022": "uni03FE", + "1023": "uni03FF", + "1024": "uni0400", + "1025": "uni0401", + "1026": "uni0402", + "1027": "uni0403", + "1028": "uni0404", + "1029": "uni0405", + "1030": "uni0406", + "1031": "uni0407", + "1032": "uni0408", + "1033": "uni0409", + "1034": "uni040A", + "1035": "uni040B", + "1036": "uni040C", + "1037": "uni040D", + "1038": "uni040E", + "1039": "uni040F", + "1040": "uni0410", + "1041": "uni0411", + "1042": "uni0412", + "1043": "uni0413", + "1044": "uni0414", + "1045": "uni0415", + "1046": "uni0416", + "1047": "uni0417", + "1048": "uni0418", + "1049": "uni0419", + "1050": "uni041A", + "1051": "uni041B", + "1052": "uni041C", + "1053": "uni041D", + "1054": "uni041E", + "1055": "uni041F", + "1056": "uni0420", + "1057": "uni0421", + "1058": "uni0422", + "1059": "uni0423", + "1060": "uni0424", + "1061": "uni0425", + "1062": "uni0426", + "1063": "uni0427", + "1064": "uni0428", + "1065": "uni0429", + "1066": "uni042A", + "1067": "uni042B", + "1068": "uni042C", + "1069": "uni042D", + "1070": "uni042E", + "1071": "uni042F", + "1072": "uni0430", + "1073": "uni0431", + "1074": "uni0432", + "1075": "uni0433", + "1076": "uni0434", + "1077": "uni0435", + "1078": "uni0436", + "1079": "uni0437", + "1080": "uni0438", + "1081": "uni0439", + "1082": "uni043A", + "1083": "uni043B", + "1084": "uni043C", + "1085": "uni043D", + "1086": "uni043E", + "1087": "uni043F", + "1088": "uni0440", + "1089": "uni0441", + "1090": "uni0442", + "1091": "uni0443", + "1092": "uni0444", + "1093": "uni0445", + "1094": "uni0446", + "1095": "uni0447", + "1096": "uni0448", + "1097": "uni0449", + "1098": "uni044A", + "1099": "uni044B", + "1100": "uni044C", + "1101": "uni044D", + "1102": "uni044E", + "1103": "uni044F", + "1104": "uni0450", + "1105": "uni0451", + "1106": "uni0452", + "1107": "uni0453", + "1108": "uni0454", + "1109": "uni0455", + "1110": "uni0456", + "1111": "uni0457", + "1112": "uni0458", + "1113": "uni0459", + "1114": "uni045A", + "1115": "uni045B", + "1116": "uni045C", + "1117": "uni045D", + "1118": "uni045E", + "1119": "uni045F", + "1120": "uni0460", + "1121": "uni0461", + "1122": "uni0462", + "1123": "uni0463", + "1124": "uni0464", + "1125": "uni0465", + "1126": "uni0466", + "1127": "uni0467", + "1128": "uni0468", + "1129": "uni0469", + "1130": "uni046A", + "1131": "uni046B", + "1132": "uni046C", + "1133": "uni046D", + "1134": "uni046E", + "1135": "uni046F", + "1136": "uni0470", + "1137": "uni0471", + "1138": "uni0472", + "1139": "uni0473", + "1140": "uni0474", + "1141": "uni0475", + "1142": "uni0476", + "1143": "uni0477", + "1144": "uni0478", + "1145": "uni0479", + "1146": "uni047A", + "1147": "uni047B", + "1148": "uni047C", + "1149": "uni047D", + "1150": "uni047E", + "1151": "uni047F", + "1152": "uni0480", + "1153": "uni0481", + "1154": "uni0482", + "1155": "uni0483", + "1156": "uni0484", + "1157": "uni0485", + "1158": "uni0486", + "1159": "uni0487", + "1160": "uni0488", + "1161": "uni0489", + "1162": "uni048A", + "1163": "uni048B", + "1164": "uni048C", + "1165": "uni048D", + "1166": "uni048E", + "1167": "uni048F", + "1168": "uni0490", + "1169": "uni0491", + "1170": "uni0492", + "1171": "uni0493", + "1172": "uni0494", + "1173": "uni0495", + "1174": "uni0496", + "1175": "uni0497", + "1176": "uni0498", + "1177": "uni0499", + "1178": "uni049A", + "1179": "uni049B", + "1180": "uni049C", + "1181": "uni049D", + "1182": "uni049E", + "1183": "uni049F", + "1184": "uni04A0", + "1185": "uni04A1", + "1186": "uni04A2", + "1187": "uni04A3", + "1188": "uni04A4", + "1189": "uni04A5", + "1190": "uni04A6", + "1191": "uni04A7", + "1192": "uni04A8", + "1193": "uni04A9", + "1194": "uni04AA", + "1195": "uni04AB", + "1196": "uni04AC", + "1197": "uni04AD", + "1198": "uni04AE", + "1199": "uni04AF", + "1200": "uni04B0", + "1201": "uni04B1", + "1202": "uni04B2", + "1203": "uni04B3", + "1204": "uni04B4", + "1205": "uni04B5", + "1206": "uni04B6", + "1207": "uni04B7", + "1208": "uni04B8", + "1209": "uni04B9", + "1210": "uni04BA", + "1211": "uni04BB", + "1212": "uni04BC", + "1213": "uni04BD", + "1214": "uni04BE", + "1215": "uni04BF", + "1216": "uni04C0", + "1217": "uni04C1", + "1218": "uni04C2", + "1219": "uni04C3", + "1220": "uni04C4", + "1221": "uni04C5", + "1222": "uni04C6", + "1223": "uni04C7", + "1224": "uni04C8", + "1225": "uni04C9", + "1226": "uni04CA", + "1227": "uni04CB", + "1228": "uni04CC", + "1229": "uni04CD", + "1230": "uni04CE", + "1231": "uni04CF", + "1232": "uni04D0", + "1233": "uni04D1", + "1234": "uni04D2", + "1235": "uni04D3", + "1236": "uni04D4", + "1237": "uni04D5", + "1238": "uni04D6", + "1239": "uni04D7", + "1240": "uni04D8", + "1241": "uni04D9", + "1242": "uni04DA", + "1243": "uni04DB", + "1244": "uni04DC", + "1245": "uni04DD", + "1246": "uni04DE", + "1247": "uni04DF", + "1248": "uni04E0", + "1249": "uni04E1", + "1250": "uni04E2", + "1251": "uni04E3", + "1252": "uni04E4", + "1253": "uni04E5", + "1254": "uni04E6", + "1255": "uni04E7", + "1256": "uni04E8", + "1257": "uni04E9", + "1258": "uni04EA", + "1259": "uni04EB", + "1260": "uni04EC", + "1261": "uni04ED", + "1262": "uni04EE", + "1263": "uni04EF", + "1264": "uni04F0", + "1265": "uni04F1", + "1266": "uni04F2", + "1267": "uni04F3", + "1268": "uni04F4", + "1269": "uni04F5", + "1270": "uni04F6", + "1271": "uni04F7", + "1272": "uni04F8", + "1273": "uni04F9", + "1274": "uni04FA", + "1275": "uni04FB", + "1276": "uni04FC", + "1277": "uni04FD", + "1278": "uni04FE", + "1279": "uni04FF", + "1280": "uni0500", + "1281": "uni0501", + "1282": "uni0502", + "1283": "uni0503", + "1284": "uni0504", + "1285": "uni0505", + "1286": "uni0506", + "1287": "uni0507", + "1288": "uni0508", + "1289": "uni0509", + "1290": "uni050A", + "1291": "uni050B", + "1292": "uni050C", + "1293": "uni050D", + "1294": "uni050E", + "1295": "uni050F", + "1296": "uni0510", + "1297": "uni0511", + "1298": "uni0512", + "1299": "uni0513", + "1300": "uni0514", + "1301": "uni0515", + "1302": "uni0516", + "1303": "uni0517", + "1304": "uni0518", + "1305": "uni0519", + "1306": "uni051A", + "1307": "uni051B", + "1308": "uni051C", + "1309": "uni051D", + "1310": "uni051E", + "1311": "uni051F", + "1312": "uni0520", + "1313": "uni0521", + "1314": "uni0522", + "1315": "uni0523", + "1316": "uni0524", + "1317": "uni0525", + "1329": "uni0531", + "1330": "uni0532", + "1331": "uni0533", + "1332": "uni0534", + "1333": "uni0535", + "1334": "uni0536", + "1335": "uni0537", + "1336": "uni0538", + "1337": "uni0539", + "1338": "uni053A", + "1339": "uni053B", + "1340": "uni053C", + "1341": "uni053D", + "1342": "uni053E", + "1343": "uni053F", + "1344": "uni0540", + "1345": "uni0541", + "1346": "uni0542", + "1347": "uni0543", + "1348": "uni0544", + "1349": "uni0545", + "1350": "uni0546", + "1351": "uni0547", + "1352": "uni0548", + "1353": "uni0549", + "1354": "uni054A", + "1355": "uni054B", + "1356": "uni054C", + "1357": "uni054D", + "1358": "uni054E", + "1359": "uni054F", + "1360": "uni0550", + "1361": "uni0551", + "1362": "uni0552", + "1363": "uni0553", + "1364": "uni0554", + "1365": "uni0555", + "1366": "uni0556", + "1369": "uni0559", + "1370": "uni055A", + "1371": "uni055B", + "1372": "uni055C", + "1373": "uni055D", + "1374": "uni055E", + "1375": "uni055F", + "1377": "uni0561", + "1378": "uni0562", + "1379": "uni0563", + "1380": "uni0564", + "1381": "uni0565", + "1382": "uni0566", + "1383": "uni0567", + "1384": "uni0568", + "1385": "uni0569", + "1386": "uni056A", + "1387": "uni056B", + "1388": "uni056C", + "1389": "uni056D", + "1390": "uni056E", + "1391": "uni056F", + "1392": "uni0570", + "1393": "uni0571", + "1394": "uni0572", + "1395": "uni0573", + "1396": "uni0574", + "1397": "uni0575", + "1398": "uni0576", + "1399": "uni0577", + "1400": "uni0578", + "1401": "uni0579", + "1402": "uni057A", + "1403": "uni057B", + "1404": "uni057C", + "1405": "uni057D", + "1406": "uni057E", + "1407": "uni057F", + "1408": "uni0580", + "1409": "uni0581", + "1410": "uni0582", + "1411": "uni0583", + "1412": "uni0584", + "1413": "uni0585", + "1414": "uni0586", + "1415": "uni0587", + "1417": "uni0589", + "1418": "uni058A", + "1456": "uni05B0", + "1457": "uni05B1", + "1458": "uni05B2", + "1459": "uni05B3", + "1460": "uni05B4", + "1461": "uni05B5", + "1462": "uni05B6", + "1463": "uni05B7", + "1464": "uni05B8", + "1465": "uni05B9", + "1466": "uni05BA", + "1467": "uni05BB", + "1468": "uni05BC", + "1469": "uni05BD", + "1470": "uni05BE", + "1471": "uni05BF", + "1472": "uni05C0", + "1473": "uni05C1", + "1474": "uni05C2", + "1475": "uni05C3", + "1478": "uni05C6", + "1479": "uni05C7", + "1488": "uni05D0", + "1489": "uni05D1", + "1490": "uni05D2", + "1491": "uni05D3", + "1492": "uni05D4", + "1493": "uni05D5", + "1494": "uni05D6", + "1495": "uni05D7", + "1496": "uni05D8", + "1497": "uni05D9", + "1498": "uni05DA", + "1499": "uni05DB", + "1500": "uni05DC", + "1501": "uni05DD", + "1502": "uni05DE", + "1503": "uni05DF", + "1504": "uni05E0", + "1505": "uni05E1", + "1506": "uni05E2", + "1507": "uni05E3", + "1508": "uni05E4", + "1509": "uni05E5", + "1510": "uni05E6", + "1511": "uni05E7", + "1512": "uni05E8", + "1513": "uni05E9", + "1514": "uni05EA", + "1520": "uni05F0", + "1521": "uni05F1", + "1522": "uni05F2", + "1523": "uni05F3", + "1524": "uni05F4", + "1542": "uni0606", + "1543": "uni0607", + "1545": "uni0609", + "1546": "uni060A", + "1548": "uni060C", + "1557": "uni0615", + "1563": "uni061B", + "1567": "uni061F", + "1569": "uni0621", + "1570": "uni0622", + "1571": "uni0623", + "1572": "uni0624", + "1573": "uni0625", + "1574": "uni0626", + "1575": "uni0627", + "1576": "uni0628", + "1577": "uni0629", + "1578": "uni062A", + "1579": "uni062B", + "1580": "uni062C", + "1581": "uni062D", + "1582": "uni062E", + "1583": "uni062F", + "1584": "uni0630", + "1585": "uni0631", + "1586": "uni0632", + "1587": "uni0633", + "1588": "uni0634", + "1589": "uni0635", + "1590": "uni0636", + "1591": "uni0637", + "1592": "uni0638", + "1593": "uni0639", + "1594": "uni063A", + "1600": "uni0640", + "1601": "uni0641", + "1602": "uni0642", + "1603": "uni0643", + "1604": "uni0644", + "1605": "uni0645", + "1606": "uni0646", + "1607": "uni0647", + "1608": "uni0648", + "1609": "uni0649", + "1610": "uni064A", + "1611": "uni064B", + "1612": "uni064C", + "1613": "uni064D", + "1614": "uni064E", + "1615": "uni064F", + "1616": "uni0650", + "1617": "uni0651", + "1618": "uni0652", + "1619": "uni0653", + "1620": "uni0654", + "1621": "uni0655", + "1623": "uni0657", + "1626": "uni065A", + "1632": "uni0660", + "1633": "uni0661", + "1634": "uni0662", + "1635": "uni0663", + "1636": "uni0664", + "1637": "uni0665", + "1638": "uni0666", + "1639": "uni0667", + "1640": "uni0668", + "1641": "uni0669", + "1642": "uni066A", + "1643": "uni066B", + "1644": "uni066C", + "1645": "uni066D", + "1646": "uni066E", + "1647": "uni066F", + "1648": "uni0670", + "1652": "uni0674", + "1657": "uni0679", + "1658": "uni067A", + "1659": "uni067B", + "1660": "uni067C", + "1661": "uni067D", + "1662": "uni067E", + "1663": "uni067F", + "1664": "uni0680", + "1665": "uni0681", + "1666": "uni0682", + "1667": "uni0683", + "1668": "uni0684", + "1669": "uni0685", + "1670": "uni0686", + "1671": "uni0687", + "1672": "uni0688", + "1673": "uni0689", + "1674": "uni068A", + "1675": "uni068B", + "1676": "uni068C", + "1677": "uni068D", + "1678": "uni068E", + "1679": "uni068F", + "1680": "uni0690", + "1681": "uni0691", + "1682": "uni0692", + "1683": "uni0693", + "1684": "uni0694", + "1685": "uni0695", + "1686": "uni0696", + "1687": "uni0697", + "1688": "uni0698", + "1689": "uni0699", + "1690": "uni069A", + "1691": "uni069B", + "1692": "uni069C", + "1693": "uni069D", + "1694": "uni069E", + "1695": "uni069F", + "1696": "uni06A0", + "1697": "uni06A1", + "1698": "uni06A2", + "1699": "uni06A3", + "1700": "uni06A4", + "1701": "uni06A5", + "1702": "uni06A6", + "1703": "uni06A7", + "1704": "uni06A8", + "1705": "uni06A9", + "1706": "uni06AA", + "1707": "uni06AB", + "1708": "uni06AC", + "1709": "uni06AD", + "1710": "uni06AE", + "1711": "uni06AF", + "1712": "uni06B0", + "1713": "uni06B1", + "1714": "uni06B2", + "1715": "uni06B3", + "1716": "uni06B4", + "1717": "uni06B5", + "1718": "uni06B6", + "1719": "uni06B7", + "1720": "uni06B8", + "1721": "uni06B9", + "1722": "uni06BA", + "1723": "uni06BB", + "1724": "uni06BC", + "1725": "uni06BD", + "1726": "uni06BE", + "1727": "uni06BF", + "1734": "uni06C6", + "1735": "uni06C7", + "1736": "uni06C8", + "1739": "uni06CB", + "1740": "uni06CC", + "1742": "uni06CE", + "1744": "uni06D0", + "1749": "uni06D5", + "1776": "uni06F0", + "1777": "uni06F1", + "1778": "uni06F2", + "1779": "uni06F3", + "1780": "uni06F4", + "1781": "uni06F5", + "1782": "uni06F6", + "1783": "uni06F7", + "1784": "uni06F8", + "1785": "uni06F9", + "1984": "uni07C0", + "1985": "uni07C1", + "1986": "uni07C2", + "1987": "uni07C3", + "1988": "uni07C4", + "1989": "uni07C5", + "1990": "uni07C6", + "1991": "uni07C7", + "1992": "uni07C8", + "1993": "uni07C9", + "1994": "uni07CA", + "1995": "uni07CB", + "1996": "uni07CC", + "1997": "uni07CD", + "1998": "uni07CE", + "1999": "uni07CF", + "2000": "uni07D0", + "2001": "uni07D1", + "2002": "uni07D2", + "2003": "uni07D3", + "2004": "uni07D4", + "2005": "uni07D5", + "2006": "uni07D6", + "2007": "uni07D7", + "2008": "uni07D8", + "2009": "uni07D9", + "2010": "uni07DA", + "2011": "uni07DB", + "2012": "uni07DC", + "2013": "uni07DD", + "2014": "uni07DE", + "2015": "uni07DF", + "2016": "uni07E0", + "2017": "uni07E1", + "2018": "uni07E2", + "2019": "uni07E3", + "2020": "uni07E4", + "2021": "uni07E5", + "2022": "uni07E6", + "2023": "uni07E7", + "2027": "uni07EB", + "2028": "uni07EC", + "2029": "uni07ED", + "2030": "uni07EE", + "2031": "uni07EF", + "2032": "uni07F0", + "2033": "uni07F1", + "2034": "uni07F2", + "2035": "uni07F3", + "2036": "uni07F4", + "2037": "uni07F5", + "2040": "uni07F8", + "2041": "uni07F9", + "2042": "uni07FA", + "3647": "uni0E3F", + "3713": "uni0E81", + "3714": "uni0E82", + "3716": "uni0E84", + "3719": "uni0E87", + "3720": "uni0E88", + "3722": "uni0E8A", + "3725": "uni0E8D", + "3732": "uni0E94", + "3733": "uni0E95", + "3734": "uni0E96", + "3735": "uni0E97", + "3737": "uni0E99", + "3738": "uni0E9A", + "3739": "uni0E9B", + "3740": "uni0E9C", + "3741": "uni0E9D", + "3742": "uni0E9E", + "3743": "uni0E9F", + "3745": "uni0EA1", + "3746": "uni0EA2", + "3747": "uni0EA3", + "3749": "uni0EA5", + "3751": "uni0EA7", + "3754": "uni0EAA", + "3755": "uni0EAB", + "3757": "uni0EAD", + "3758": "uni0EAE", + "3759": "uni0EAF", + "3760": "uni0EB0", + "3761": "uni0EB1", + "3762": "uni0EB2", + "3763": "uni0EB3", + "3764": "uni0EB4", + "3765": "uni0EB5", + "3766": "uni0EB6", + "3767": "uni0EB7", + "3768": "uni0EB8", + "3769": "uni0EB9", + "3771": "uni0EBB", + "3772": "uni0EBC", + "3773": "uni0EBD", + "3776": "uni0EC0", + "3777": "uni0EC1", + "3778": "uni0EC2", + "3779": "uni0EC3", + "3780": "uni0EC4", + "3782": "uni0EC6", + "3784": "uni0EC8", + "3785": "uni0EC9", + "3786": "uni0ECA", + "3787": "uni0ECB", + "3788": "uni0ECC", + "3789": "uni0ECD", + "3792": "uni0ED0", + "3793": "uni0ED1", + "3794": "uni0ED2", + "3795": "uni0ED3", + "3796": "uni0ED4", + "3797": "uni0ED5", + "3798": "uni0ED6", + "3799": "uni0ED7", + "3800": "uni0ED8", + "3801": "uni0ED9", + "3804": "uni0EDC", + "3805": "uni0EDD", + "4256": "uni10A0", + "4257": "uni10A1", + "4258": "uni10A2", + "4259": "uni10A3", + "4260": "uni10A4", + "4261": "uni10A5", + "4262": "uni10A6", + "4263": "uni10A7", + "4264": "uni10A8", + "4265": "uni10A9", + "4266": "uni10AA", + "4267": "uni10AB", + "4268": "uni10AC", + "4269": "uni10AD", + "4270": "uni10AE", + "4271": "uni10AF", + "4272": "uni10B0", + "4273": "uni10B1", + "4274": "uni10B2", + "4275": "uni10B3", + "4276": "uni10B4", + "4277": "uni10B5", + "4278": "uni10B6", + "4279": "uni10B7", + "4280": "uni10B8", + "4281": "uni10B9", + "4282": "uni10BA", + "4283": "uni10BB", + "4284": "uni10BC", + "4285": "uni10BD", + "4286": "uni10BE", + "4287": "uni10BF", + "4288": "uni10C0", + "4289": "uni10C1", + "4290": "uni10C2", + "4291": "uni10C3", + "4292": "uni10C4", + "4293": "uni10C5", + "4304": "uni10D0", + "4305": "uni10D1", + "4306": "uni10D2", + "4307": "uni10D3", + "4308": "uni10D4", + "4309": "uni10D5", + "4310": "uni10D6", + "4311": "uni10D7", + "4312": "uni10D8", + "4313": "uni10D9", + "4314": "uni10DA", + "4315": "uni10DB", + "4316": "uni10DC", + "4317": "uni10DD", + "4318": "uni10DE", + "4319": "uni10DF", + "4320": "uni10E0", + "4321": "uni10E1", + "4322": "uni10E2", + "4323": "uni10E3", + "4324": "uni10E4", + "4325": "uni10E5", + "4326": "uni10E6", + "4327": "uni10E7", + "4328": "uni10E8", + "4329": "uni10E9", + "4330": "uni10EA", + "4331": "uni10EB", + "4332": "uni10EC", + "4333": "uni10ED", + "4334": "uni10EE", + "4335": "uni10EF", + "4336": "uni10F0", + "4337": "uni10F1", + "4338": "uni10F2", + "4339": "uni10F3", + "4340": "uni10F4", + "4341": "uni10F5", + "4342": "uni10F6", + "4343": "uni10F7", + "4344": "uni10F8", + "4345": "uni10F9", + "4346": "uni10FA", + "4347": "uni10FB", + "4348": "uni10FC", + "5121": "uni1401", + "5122": "uni1402", + "5123": "uni1403", + "5124": "uni1404", + "5125": "uni1405", + "5126": "uni1406", + "5127": "uni1407", + "5129": "uni1409", + "5130": "uni140A", + "5131": "uni140B", + "5132": "uni140C", + "5133": "uni140D", + "5134": "uni140E", + "5135": "uni140F", + "5136": "uni1410", + "5137": "uni1411", + "5138": "uni1412", + "5139": "uni1413", + "5140": "uni1414", + "5141": "uni1415", + "5142": "uni1416", + "5143": "uni1417", + "5144": "uni1418", + "5145": "uni1419", + "5146": "uni141A", + "5147": "uni141B", + "5149": "uni141D", + "5150": "uni141E", + "5151": "uni141F", + "5152": "uni1420", + "5153": "uni1421", + "5154": "uni1422", + "5155": "uni1423", + "5156": "uni1424", + "5157": "uni1425", + "5158": "uni1426", + "5159": "uni1427", + "5160": "uni1428", + "5161": "uni1429", + "5162": "uni142A", + "5163": "uni142B", + "5164": "uni142C", + "5165": "uni142D", + "5166": "uni142E", + "5167": "uni142F", + "5168": "uni1430", + "5169": "uni1431", + "5170": "uni1432", + "5171": "uni1433", + "5172": "uni1434", + "5173": "uni1435", + "5175": "uni1437", + "5176": "uni1438", + "5177": "uni1439", + "5178": "uni143A", + "5179": "uni143B", + "5180": "uni143C", + "5181": "uni143D", + "5182": "uni143E", + "5183": "uni143F", + "5184": "uni1440", + "5185": "uni1441", + "5186": "uni1442", + "5187": "uni1443", + "5188": "uni1444", + "5189": "uni1445", + "5190": "uni1446", + "5191": "uni1447", + "5192": "uni1448", + "5193": "uni1449", + "5194": "uni144A", + "5196": "uni144C", + "5197": "uni144D", + "5198": "uni144E", + "5199": "uni144F", + "5200": "uni1450", + "5201": "uni1451", + "5202": "uni1452", + "5204": "uni1454", + "5205": "uni1455", + "5206": "uni1456", + "5207": "uni1457", + "5208": "uni1458", + "5209": "uni1459", + "5210": "uni145A", + "5211": "uni145B", + "5212": "uni145C", + "5213": "uni145D", + "5214": "uni145E", + "5215": "uni145F", + "5216": "uni1460", + "5217": "uni1461", + "5218": "uni1462", + "5219": "uni1463", + "5220": "uni1464", + "5221": "uni1465", + "5222": "uni1466", + "5223": "uni1467", + "5224": "uni1468", + "5225": "uni1469", + "5226": "uni146A", + "5227": "uni146B", + "5228": "uni146C", + "5229": "uni146D", + "5230": "uni146E", + "5231": "uni146F", + "5232": "uni1470", + "5233": "uni1471", + "5234": "uni1472", + "5235": "uni1473", + "5236": "uni1474", + "5237": "uni1475", + "5238": "uni1476", + "5239": "uni1477", + "5240": "uni1478", + "5241": "uni1479", + "5242": "uni147A", + "5243": "uni147B", + "5244": "uni147C", + "5245": "uni147D", + "5246": "uni147E", + "5247": "uni147F", + "5248": "uni1480", + "5249": "uni1481", + "5250": "uni1482", + "5251": "uni1483", + "5252": "uni1484", + "5253": "uni1485", + "5254": "uni1486", + "5255": "uni1487", + "5256": "uni1488", + "5257": "uni1489", + "5258": "uni148A", + "5259": "uni148B", + "5260": "uni148C", + "5261": "uni148D", + "5262": "uni148E", + "5263": "uni148F", + "5264": "uni1490", + "5265": "uni1491", + "5266": "uni1492", + "5267": "uni1493", + "5268": "uni1494", + "5269": "uni1495", + "5270": "uni1496", + "5271": "uni1497", + "5272": "uni1498", + "5273": "uni1499", + "5274": "uni149A", + "5275": "uni149B", + "5276": "uni149C", + "5277": "uni149D", + "5278": "uni149E", + "5279": "uni149F", + "5280": "uni14A0", + "5281": "uni14A1", + "5282": "uni14A2", + "5283": "uni14A3", + "5284": "uni14A4", + "5285": "uni14A5", + "5286": "uni14A6", + "5287": "uni14A7", + "5288": "uni14A8", + "5289": "uni14A9", + "5290": "uni14AA", + "5291": "uni14AB", + "5292": "uni14AC", + "5293": "uni14AD", + "5294": "uni14AE", + "5295": "uni14AF", + "5296": "uni14B0", + "5297": "uni14B1", + "5298": "uni14B2", + "5299": "uni14B3", + "5300": "uni14B4", + "5301": "uni14B5", + "5302": "uni14B6", + "5303": "uni14B7", + "5304": "uni14B8", + "5305": "uni14B9", + "5306": "uni14BA", + "5307": "uni14BB", + "5308": "uni14BC", + "5309": "uni14BD", + "5312": "uni14C0", + "5313": "uni14C1", + "5314": "uni14C2", + "5315": "uni14C3", + "5316": "uni14C4", + "5317": "uni14C5", + "5318": "uni14C6", + "5319": "uni14C7", + "5320": "uni14C8", + "5321": "uni14C9", + "5322": "uni14CA", + "5323": "uni14CB", + "5324": "uni14CC", + "5325": "uni14CD", + "5326": "uni14CE", + "5327": "uni14CF", + "5328": "uni14D0", + "5329": "uni14D1", + "5330": "uni14D2", + "5331": "uni14D3", + "5332": "uni14D4", + "5333": "uni14D5", + "5334": "uni14D6", + "5335": "uni14D7", + "5336": "uni14D8", + "5337": "uni14D9", + "5338": "uni14DA", + "5339": "uni14DB", + "5340": "uni14DC", + "5341": "uni14DD", + "5342": "uni14DE", + "5343": "uni14DF", + "5344": "uni14E0", + "5345": "uni14E1", + "5346": "uni14E2", + "5347": "uni14E3", + "5348": "uni14E4", + "5349": "uni14E5", + "5350": "uni14E6", + "5351": "uni14E7", + "5352": "uni14E8", + "5353": "uni14E9", + "5354": "uni14EA", + "5356": "uni14EC", + "5357": "uni14ED", + "5358": "uni14EE", + "5359": "uni14EF", + "5360": "uni14F0", + "5361": "uni14F1", + "5362": "uni14F2", + "5363": "uni14F3", + "5364": "uni14F4", + "5365": "uni14F5", + "5366": "uni14F6", + "5367": "uni14F7", + "5368": "uni14F8", + "5369": "uni14F9", + "5370": "uni14FA", + "5371": "uni14FB", + "5372": "uni14FC", + "5373": "uni14FD", + "5374": "uni14FE", + "5375": "uni14FF", + "5376": "uni1500", + "5377": "uni1501", + "5378": "uni1502", + "5379": "uni1503", + "5380": "uni1504", + "5381": "uni1505", + "5382": "uni1506", + "5383": "uni1507", + "5392": "uni1510", + "5393": "uni1511", + "5394": "uni1512", + "5395": "uni1513", + "5396": "uni1514", + "5397": "uni1515", + "5398": "uni1516", + "5399": "uni1517", + "5400": "uni1518", + "5401": "uni1519", + "5402": "uni151A", + "5403": "uni151B", + "5404": "uni151C", + "5405": "uni151D", + "5406": "uni151E", + "5407": "uni151F", + "5408": "uni1520", + "5409": "uni1521", + "5410": "uni1522", + "5411": "uni1523", + "5412": "uni1524", + "5413": "uni1525", + "5414": "uni1526", + "5415": "uni1527", + "5416": "uni1528", + "5417": "uni1529", + "5418": "uni152A", + "5419": "uni152B", + "5420": "uni152C", + "5421": "uni152D", + "5422": "uni152E", + "5423": "uni152F", + "5424": "uni1530", + "5425": "uni1531", + "5426": "uni1532", + "5427": "uni1533", + "5428": "uni1534", + "5429": "uni1535", + "5430": "uni1536", + "5431": "uni1537", + "5432": "uni1538", + "5433": "uni1539", + "5434": "uni153A", + "5435": "uni153B", + "5436": "uni153C", + "5437": "uni153D", + "5438": "uni153E", + "5440": "uni1540", + "5441": "uni1541", + "5442": "uni1542", + "5443": "uni1543", + "5444": "uni1544", + "5445": "uni1545", + "5446": "uni1546", + "5447": "uni1547", + "5448": "uni1548", + "5449": "uni1549", + "5450": "uni154A", + "5451": "uni154B", + "5452": "uni154C", + "5453": "uni154D", + "5454": "uni154E", + "5455": "uni154F", + "5456": "uni1550", + "5458": "uni1552", + "5459": "uni1553", + "5460": "uni1554", + "5461": "uni1555", + "5462": "uni1556", + "5463": "uni1557", + "5464": "uni1558", + "5465": "uni1559", + "5466": "uni155A", + "5467": "uni155B", + "5468": "uni155C", + "5469": "uni155D", + "5470": "uni155E", + "5471": "uni155F", + "5472": "uni1560", + "5473": "uni1561", + "5474": "uni1562", + "5475": "uni1563", + "5476": "uni1564", + "5477": "uni1565", + "5478": "uni1566", + "5479": "uni1567", + "5480": "uni1568", + "5481": "uni1569", + "5482": "uni156A", + "5492": "uni1574", + "5493": "uni1575", + "5494": "uni1576", + "5495": "uni1577", + "5496": "uni1578", + "5497": "uni1579", + "5498": "uni157A", + "5499": "uni157B", + "5500": "uni157C", + "5501": "uni157D", + "5502": "uni157E", + "5503": "uni157F", + "5504": "uni1580", + "5505": "uni1581", + "5506": "uni1582", + "5507": "uni1583", + "5508": "uni1584", + "5509": "uni1585", + "5514": "uni158A", + "5515": "uni158B", + "5516": "uni158C", + "5517": "uni158D", + "5518": "uni158E", + "5519": "uni158F", + "5520": "uni1590", + "5521": "uni1591", + "5522": "uni1592", + "5523": "uni1593", + "5524": "uni1594", + "5525": "uni1595", + "5526": "uni1596", + "5536": "uni15A0", + "5537": "uni15A1", + "5538": "uni15A2", + "5539": "uni15A3", + "5540": "uni15A4", + "5541": "uni15A5", + "5542": "uni15A6", + "5543": "uni15A7", + "5544": "uni15A8", + "5545": "uni15A9", + "5546": "uni15AA", + "5547": "uni15AB", + "5548": "uni15AC", + "5549": "uni15AD", + "5550": "uni15AE", + "5551": "uni15AF", + "5598": "uni15DE", + "5601": "uni15E1", + "5702": "uni1646", + "5703": "uni1647", + "5742": "uni166E", + "5743": "uni166F", + "5744": "uni1670", + "5745": "uni1671", + "5746": "uni1672", + "5747": "uni1673", + "5748": "uni1674", + "5749": "uni1675", + "5750": "uni1676", + "5760": "uni1680", + "5761": "uni1681", + "5762": "uni1682", + "5763": "uni1683", + "5764": "uni1684", + "5765": "uni1685", + "5766": "uni1686", + "5767": "uni1687", + "5768": "uni1688", + "5769": "uni1689", + "5770": "uni168A", + "5771": "uni168B", + "5772": "uni168C", + "5773": "uni168D", + "5774": "uni168E", + "5775": "uni168F", + "5776": "uni1690", + "5777": "uni1691", + "5778": "uni1692", + "5779": "uni1693", + "5780": "uni1694", + "5781": "uni1695", + "5782": "uni1696", + "5783": "uni1697", + "5784": "uni1698", + "5785": "uni1699", + "5786": "uni169A", + "5787": "uni169B", + "5788": "uni169C", + "7424": "uni1D00", + "7425": "uni1D01", + "7426": "uni1D02", + "7427": "uni1D03", + "7428": "uni1D04", + "7429": "uni1D05", + "7430": "uni1D06", + "7431": "uni1D07", + "7432": "uni1D08", + "7433": "uni1D09", + "7434": "uni1D0A", + "7435": "uni1D0B", + "7436": "uni1D0C", + "7437": "uni1D0D", + "7438": "uni1D0E", + "7439": "uni1D0F", + "7440": "uni1D10", + "7441": "uni1D11", + "7442": "uni1D12", + "7443": "uni1D13", + "7444": "uni1D14", + "7446": "uni1D16", + "7447": "uni1D17", + "7448": "uni1D18", + "7449": "uni1D19", + "7450": "uni1D1A", + "7451": "uni1D1B", + "7452": "uni1D1C", + "7453": "uni1D1D", + "7454": "uni1D1E", + "7455": "uni1D1F", + "7456": "uni1D20", + "7457": "uni1D21", + "7458": "uni1D22", + "7459": "uni1D23", + "7462": "uni1D26", + "7463": "uni1D27", + "7464": "uni1D28", + "7465": "uni1D29", + "7466": "uni1D2A", + "7467": "uni1D2B", + "7468": "uni1D2C", + "7469": "uni1D2D", + "7470": "uni1D2E", + "7472": "uni1D30", + "7473": "uni1D31", + "7474": "uni1D32", + "7475": "uni1D33", + "7476": "uni1D34", + "7477": "uni1D35", + "7478": "uni1D36", + "7479": "uni1D37", + "7480": "uni1D38", + "7481": "uni1D39", + "7482": "uni1D3A", + "7483": "uni1D3B", + "7484": "uni1D3C", + "7485": "uni1D3D", + "7486": "uni1D3E", + "7487": "uni1D3F", + "7488": "uni1D40", + "7489": "uni1D41", + "7490": "uni1D42", + "7491": "uni1D43", + "7492": "uni1D44", + "7493": "uni1D45", + "7494": "uni1D46", + "7495": "uni1D47", + "7496": "uni1D48", + "7497": "uni1D49", + "7498": "uni1D4A", + "7499": "uni1D4B", + "7500": "uni1D4C", + "7501": "uni1D4D", + "7502": "uni1D4E", + "7503": "uni1D4F", + "7504": "uni1D50", + "7505": "uni1D51", + "7506": "uni1D52", + "7507": "uni1D53", + "7508": "uni1D54", + "7509": "uni1D55", + "7510": "uni1D56", + "7511": "uni1D57", + "7512": "uni1D58", + "7513": "uni1D59", + "7514": "uni1D5A", + "7515": "uni1D5B", + "7517": "uni1D5D", + "7518": "uni1D5E", + "7519": "uni1D5F", + "7520": "uni1D60", + "7521": "uni1D61", + "7522": "uni1D62", + "7523": "uni1D63", + "7524": "uni1D64", + "7525": "uni1D65", + "7526": "uni1D66", + "7527": "uni1D67", + "7528": "uni1D68", + "7529": "uni1D69", + "7530": "uni1D6A", + "7543": "uni1D77", + "7544": "uni1D78", + "7547": "uni1D7B", + "7549": "uni1D7D", + "7557": "uni1D85", + "7579": "uni1D9B", + "7580": "uni1D9C", + "7581": "uni1D9D", + "7582": "uni1D9E", + "7583": "uni1D9F", + "7584": "uni1DA0", + "7585": "uni1DA1", + "7586": "uni1DA2", + "7587": "uni1DA3", + "7588": "uni1DA4", + "7589": "uni1DA5", + "7590": "uni1DA6", + "7591": "uni1DA7", + "7592": "uni1DA8", + "7593": "uni1DA9", + "7594": "uni1DAA", + "7595": "uni1DAB", + "7596": "uni1DAC", + "7597": "uni1DAD", + "7598": "uni1DAE", + "7599": "uni1DAF", + "7600": "uni1DB0", + "7601": "uni1DB1", + "7602": "uni1DB2", + "7603": "uni1DB3", + "7604": "uni1DB4", + "7605": "uni1DB5", + "7606": "uni1DB6", + "7607": "uni1DB7", + "7608": "uni1DB8", + "7609": "uni1DB9", + "7610": "uni1DBA", + "7611": "uni1DBB", + "7612": "uni1DBC", + "7613": "uni1DBD", + "7614": "uni1DBE", + "7615": "uni1DBF", + "7620": "uni1DC4", + "7621": "uni1DC5", + "7622": "uni1DC6", + "7623": "uni1DC7", + "7624": "uni1DC8", + "7625": "uni1DC9", + "7680": "uni1E00", + "7681": "uni1E01", + "7682": "uni1E02", + "7683": "uni1E03", + "7684": "uni1E04", + "7685": "uni1E05", + "7686": "uni1E06", + "7687": "uni1E07", + "7688": "uni1E08", + "7689": "uni1E09", + "7690": "uni1E0A", + "7691": "uni1E0B", + "7692": "uni1E0C", + "7693": "uni1E0D", + "7694": "uni1E0E", + "7695": "uni1E0F", + "7696": "uni1E10", + "7697": "uni1E11", + "7698": "uni1E12", + "7699": "uni1E13", + "7700": "uni1E14", + "7701": "uni1E15", + "7702": "uni1E16", + "7703": "uni1E17", + "7704": "uni1E18", + "7705": "uni1E19", + "7706": "uni1E1A", + "7707": "uni1E1B", + "7708": "uni1E1C", + "7709": "uni1E1D", + "7710": "uni1E1E", + "7711": "uni1E1F", + "7712": "uni1E20", + "7713": "uni1E21", + "7714": "uni1E22", + "7715": "uni1E23", + "7716": "uni1E24", + "7717": "uni1E25", + "7718": "uni1E26", + "7719": "uni1E27", + "7720": "uni1E28", + "7721": "uni1E29", + "7722": "uni1E2A", + "7723": "uni1E2B", + "7724": "uni1E2C", + "7725": "uni1E2D", + "7726": "uni1E2E", + "7727": "uni1E2F", + "7728": "uni1E30", + "7729": "uni1E31", + "7730": "uni1E32", + "7731": "uni1E33", + "7732": "uni1E34", + "7733": "uni1E35", + "7734": "uni1E36", + "7735": "uni1E37", + "7736": "uni1E38", + "7737": "uni1E39", + "7738": "uni1E3A", + "7739": "uni1E3B", + "7740": "uni1E3C", + "7741": "uni1E3D", + "7742": "uni1E3E", + "7743": "uni1E3F", + "7744": "uni1E40", + "7745": "uni1E41", + "7746": "uni1E42", + "7747": "uni1E43", + "7748": "uni1E44", + "7749": "uni1E45", + "7750": "uni1E46", + "7751": "uni1E47", + "7752": "uni1E48", + "7753": "uni1E49", + "7754": "uni1E4A", + "7755": "uni1E4B", + "7756": "uni1E4C", + "7757": "uni1E4D", + "7758": "uni1E4E", + "7759": "uni1E4F", + "7760": "uni1E50", + "7761": "uni1E51", + "7762": "uni1E52", + "7763": "uni1E53", + "7764": "uni1E54", + "7765": "uni1E55", + "7766": "uni1E56", + "7767": "uni1E57", + "7768": "uni1E58", + "7769": "uni1E59", + "7770": "uni1E5A", + "7771": "uni1E5B", + "7772": "uni1E5C", + "7773": "uni1E5D", + "7774": "uni1E5E", + "7775": "uni1E5F", + "7776": "uni1E60", + "7777": "uni1E61", + "7778": "uni1E62", + "7779": "uni1E63", + "7780": "uni1E64", + "7781": "uni1E65", + "7782": "uni1E66", + "7783": "uni1E67", + "7784": "uni1E68", + "7785": "uni1E69", + "7786": "uni1E6A", + "7787": "uni1E6B", + "7788": "uni1E6C", + "7789": "uni1E6D", + "7790": "uni1E6E", + "7791": "uni1E6F", + "7792": "uni1E70", + "7793": "uni1E71", + "7794": "uni1E72", + "7795": "uni1E73", + "7796": "uni1E74", + "7797": "uni1E75", + "7798": "uni1E76", + "7799": "uni1E77", + "7800": "uni1E78", + "7801": "uni1E79", + "7802": "uni1E7A", + "7803": "uni1E7B", + "7804": "uni1E7C", + "7805": "uni1E7D", + "7806": "uni1E7E", + "7807": "uni1E7F", + "7808": "Wgrave", + "7809": "wgrave", + "7810": "Wacute", + "7811": "wacute", + "7812": "Wdieresis", + "7813": "wdieresis", + "7814": "uni1E86", + "7815": "uni1E87", + "7816": "uni1E88", + "7817": "uni1E89", + "7818": "uni1E8A", + "7819": "uni1E8B", + "7820": "uni1E8C", + "7821": "uni1E8D", + "7822": "uni1E8E", + "7823": "uni1E8F", + "7824": "uni1E90", + "7825": "uni1E91", + "7826": "uni1E92", + "7827": "uni1E93", + "7828": "uni1E94", + "7829": "uni1E95", + "7830": "uni1E96", + "7831": "uni1E97", + "7832": "uni1E98", + "7833": "uni1E99", + "7834": "uni1E9A", + "7835": "uni1E9B", + "7836": "uni1E9C", + "7837": "uni1E9D", + "7838": "uni1E9E", + "7839": "uni1E9F", + "7840": "uni1EA0", + "7841": "uni1EA1", + "7842": "uni1EA2", + "7843": "uni1EA3", + "7844": "uni1EA4", + "7845": "uni1EA5", + "7846": "uni1EA6", + "7847": "uni1EA7", + "7848": "uni1EA8", + "7849": "uni1EA9", + "7850": "uni1EAA", + "7851": "uni1EAB", + "7852": "uni1EAC", + "7853": "uni1EAD", + "7854": "uni1EAE", + "7855": "uni1EAF", + "7856": "uni1EB0", + "7857": "uni1EB1", + "7858": "uni1EB2", + "7859": "uni1EB3", + "7860": "uni1EB4", + "7861": "uni1EB5", + "7862": "uni1EB6", + "7863": "uni1EB7", + "7864": "uni1EB8", + "7865": "uni1EB9", + "7866": "uni1EBA", + "7867": "uni1EBB", + "7868": "uni1EBC", + "7869": "uni1EBD", + "7870": "uni1EBE", + "7871": "uni1EBF", + "7872": "uni1EC0", + "7873": "uni1EC1", + "7874": "uni1EC2", + "7875": "uni1EC3", + "7876": "uni1EC4", + "7877": "uni1EC5", + "7878": "uni1EC6", + "7879": "uni1EC7", + "7880": "uni1EC8", + "7881": "uni1EC9", + "7882": "uni1ECA", + "7883": "uni1ECB", + "7884": "uni1ECC", + "7885": "uni1ECD", + "7886": "uni1ECE", + "7887": "uni1ECF", + "7888": "uni1ED0", + "7889": "uni1ED1", + "7890": "uni1ED2", + "7891": "uni1ED3", + "7892": "uni1ED4", + "7893": "uni1ED5", + "7894": "uni1ED6", + "7895": "uni1ED7", + "7896": "uni1ED8", + "7897": "uni1ED9", + "7898": "uni1EDA", + "7899": "uni1EDB", + "7900": "uni1EDC", + "7901": "uni1EDD", + "7902": "uni1EDE", + "7903": "uni1EDF", + "7904": "uni1EE0", + "7905": "uni1EE1", + "7906": "uni1EE2", + "7907": "uni1EE3", + "7908": "uni1EE4", + "7909": "uni1EE5", + "7910": "uni1EE6", + "7911": "uni1EE7", + "7912": "uni1EE8", + "7913": "uni1EE9", + "7914": "uni1EEA", + "7915": "uni1EEB", + "7916": "uni1EEC", + "7917": "uni1EED", + "7918": "uni1EEE", + "7919": "uni1EEF", + "7920": "uni1EF0", + "7921": "uni1EF1", + "7922": "Ygrave", + "7923": "ygrave", + "7924": "uni1EF4", + "7925": "uni1EF5", + "7926": "uni1EF6", + "7927": "uni1EF7", + "7928": "uni1EF8", + "7929": "uni1EF9", + "7930": "uni1EFA", + "7931": "uni1EFB", + "7936": "uni1F00", + "7937": "uni1F01", + "7938": "uni1F02", + "7939": "uni1F03", + "7940": "uni1F04", + "7941": "uni1F05", + "7942": "uni1F06", + "7943": "uni1F07", + "7944": "uni1F08", + "7945": "uni1F09", + "7946": "uni1F0A", + "7947": "uni1F0B", + "7948": "uni1F0C", + "7949": "uni1F0D", + "7950": "uni1F0E", + "7951": "uni1F0F", + "7952": "uni1F10", + "7953": "uni1F11", + "7954": "uni1F12", + "7955": "uni1F13", + "7956": "uni1F14", + "7957": "uni1F15", + "7960": "uni1F18", + "7961": "uni1F19", + "7962": "uni1F1A", + "7963": "uni1F1B", + "7964": "uni1F1C", + "7965": "uni1F1D", + "7968": "uni1F20", + "7969": "uni1F21", + "7970": "uni1F22", + "7971": "uni1F23", + "7972": "uni1F24", + "7973": "uni1F25", + "7974": "uni1F26", + "7975": "uni1F27", + "7976": "uni1F28", + "7977": "uni1F29", + "7978": "uni1F2A", + "7979": "uni1F2B", + "7980": "uni1F2C", + "7981": "uni1F2D", + "7982": "uni1F2E", + "7983": "uni1F2F", + "7984": "uni1F30", + "7985": "uni1F31", + "7986": "uni1F32", + "7987": "uni1F33", + "7988": "uni1F34", + "7989": "uni1F35", + "7990": "uni1F36", + "7991": "uni1F37", + "7992": "uni1F38", + "7993": "uni1F39", + "7994": "uni1F3A", + "7995": "uni1F3B", + "7996": "uni1F3C", + "7997": "uni1F3D", + "7998": "uni1F3E", + "7999": "uni1F3F", + "8000": "uni1F40", + "8001": "uni1F41", + "8002": "uni1F42", + "8003": "uni1F43", + "8004": "uni1F44", + "8005": "uni1F45", + "8008": "uni1F48", + "8009": "uni1F49", + "8010": "uni1F4A", + "8011": "uni1F4B", + "8012": "uni1F4C", + "8013": "uni1F4D", + "8016": "uni1F50", + "8017": "uni1F51", + "8018": "uni1F52", + "8019": "uni1F53", + "8020": "uni1F54", + "8021": "uni1F55", + "8022": "uni1F56", + "8023": "uni1F57", + "8025": "uni1F59", + "8027": "uni1F5B", + "8029": "uni1F5D", + "8031": "uni1F5F", + "8032": "uni1F60", + "8033": "uni1F61", + "8034": "uni1F62", + "8035": "uni1F63", + "8036": "uni1F64", + "8037": "uni1F65", + "8038": "uni1F66", + "8039": "uni1F67", + "8040": "uni1F68", + "8041": "uni1F69", + "8042": "uni1F6A", + "8043": "uni1F6B", + "8044": "uni1F6C", + "8045": "uni1F6D", + "8046": "uni1F6E", + "8047": "uni1F6F", + "8048": "uni1F70", + "8049": "uni1F71", + "8050": "uni1F72", + "8051": "uni1F73", + "8052": "uni1F74", + "8053": "uni1F75", + "8054": "uni1F76", + "8055": "uni1F77", + "8056": "uni1F78", + "8057": "uni1F79", + "8058": "uni1F7A", + "8059": "uni1F7B", + "8060": "uni1F7C", + "8061": "uni1F7D", + "8064": "uni1F80", + "8065": "uni1F81", + "8066": "uni1F82", + "8067": "uni1F83", + "8068": "uni1F84", + "8069": "uni1F85", + "8070": "uni1F86", + "8071": "uni1F87", + "8072": "uni1F88", + "8073": "uni1F89", + "8074": "uni1F8A", + "8075": "uni1F8B", + "8076": "uni1F8C", + "8077": "uni1F8D", + "8078": "uni1F8E", + "8079": "uni1F8F", + "8080": "uni1F90", + "8081": "uni1F91", + "8082": "uni1F92", + "8083": "uni1F93", + "8084": "uni1F94", + "8085": "uni1F95", + "8086": "uni1F96", + "8087": "uni1F97", + "8088": "uni1F98", + "8089": "uni1F99", + "8090": "uni1F9A", + "8091": "uni1F9B", + "8092": "uni1F9C", + "8093": "uni1F9D", + "8094": "uni1F9E", + "8095": "uni1F9F", + "8096": "uni1FA0", + "8097": "uni1FA1", + "8098": "uni1FA2", + "8099": "uni1FA3", + "8100": "uni1FA4", + "8101": "uni1FA5", + "8102": "uni1FA6", + "8103": "uni1FA7", + "8104": "uni1FA8", + "8105": "uni1FA9", + "8106": "uni1FAA", + "8107": "uni1FAB", + "8108": "uni1FAC", + "8109": "uni1FAD", + "8110": "uni1FAE", + "8111": "uni1FAF", + "8112": "uni1FB0", + "8113": "uni1FB1", + "8114": "uni1FB2", + "8115": "uni1FB3", + "8116": "uni1FB4", + "8118": "uni1FB6", + "8119": "uni1FB7", + "8120": "uni1FB8", + "8121": "uni1FB9", + "8122": "uni1FBA", + "8123": "uni1FBB", + "8124": "uni1FBC", + "8125": "uni1FBD", + "8126": "uni1FBE", + "8127": "uni1FBF", + "8128": "uni1FC0", + "8129": "uni1FC1", + "8130": "uni1FC2", + "8131": "uni1FC3", + "8132": "uni1FC4", + "8134": "uni1FC6", + "8135": "uni1FC7", + "8136": "uni1FC8", + "8137": "uni1FC9", + "8138": "uni1FCA", + "8139": "uni1FCB", + "8140": "uni1FCC", + "8141": "uni1FCD", + "8142": "uni1FCE", + "8143": "uni1FCF", + "8144": "uni1FD0", + "8145": "uni1FD1", + "8146": "uni1FD2", + "8147": "uni1FD3", + "8150": "uni1FD6", + "8151": "uni1FD7", + "8152": "uni1FD8", + "8153": "uni1FD9", + "8154": "uni1FDA", + "8155": "uni1FDB", + "8157": "uni1FDD", + "8158": "uni1FDE", + "8159": "uni1FDF", + "8160": "uni1FE0", + "8161": "uni1FE1", + "8162": "uni1FE2", + "8163": "uni1FE3", + "8164": "uni1FE4", + "8165": "uni1FE5", + "8166": "uni1FE6", + "8167": "uni1FE7", + "8168": "uni1FE8", + "8169": "uni1FE9", + "8170": "uni1FEA", + "8171": "uni1FEB", + "8172": "uni1FEC", + "8173": "uni1FED", + "8174": "uni1FEE", + "8175": "uni1FEF", + "8178": "uni1FF2", + "8179": "uni1FF3", + "8180": "uni1FF4", + "8182": "uni1FF6", + "8183": "uni1FF7", + "8184": "uni1FF8", + "8185": "uni1FF9", + "8186": "uni1FFA", + "8187": "uni1FFB", + "8188": "uni1FFC", + "8189": "uni1FFD", + "8190": "uni1FFE", + "8192": "uni2000", + "8193": "uni2001", + "8194": "uni2002", + "8195": "uni2003", + "8196": "uni2004", + "8197": "uni2005", + "8198": "uni2006", + "8199": "uni2007", + "8200": "uni2008", + "8201": "uni2009", + "8202": "uni200A", + "8203": "uni200B", + "8204": "uni200C", + "8205": "uni200D", + "8206": "uni200E", + "8207": "uni200F", + "8208": "uni2010", + "8209": "uni2011", + "8210": "figuredash", + "8211": "endash", + "8212": "emdash", + "8213": "uni2015", + "8214": "uni2016", + "8215": "underscoredbl", + "8216": "quoteleft", + "8217": "quoteright", + "8218": "quotesinglbase", + "8219": "quotereversed", + "8220": "quotedblleft", + "8221": "quotedblright", + "8222": "quotedblbase", + "8223": "uni201F", + "8224": "dagger", + "8225": "daggerdbl", + "8226": "bullet", + "8227": "uni2023", + "8228": "onedotenleader", + "8229": "twodotenleader", + "8230": "ellipsis", + "8231": "uni2027", + "8232": "uni2028", + "8233": "uni2029", + "8234": "uni202A", + "8235": "uni202B", + "8236": "uni202C", + "8237": "uni202D", + "8238": "uni202E", + "8239": "uni202F", + "8240": "perthousand", + "8241": "uni2031", + "8242": "minute", + "8243": "second", + "8244": "uni2034", + "8245": "uni2035", + "8246": "uni2036", + "8247": "uni2037", + "8248": "uni2038", + "8249": "guilsinglleft", + "8250": "guilsinglright", + "8251": "uni203B", + "8252": "exclamdbl", + "8253": "uni203D", + "8254": "uni203E", + "8255": "uni203F", + "8256": "uni2040", + "8257": "uni2041", + "8258": "uni2042", + "8259": "uni2043", + "8260": "fraction", + "8261": "uni2045", + "8262": "uni2046", + "8263": "uni2047", + "8264": "uni2048", + "8265": "uni2049", + "8266": "uni204A", + "8267": "uni204B", + "8268": "uni204C", + "8269": "uni204D", + "8270": "uni204E", + "8271": "uni204F", + "8272": "uni2050", + "8273": "uni2051", + "8274": "uni2052", + "8275": "uni2053", + "8276": "uni2054", + "8277": "uni2055", + "8278": "uni2056", + "8279": "uni2057", + "8280": "uni2058", + "8281": "uni2059", + "8282": "uni205A", + "8283": "uni205B", + "8284": "uni205C", + "8285": "uni205D", + "8286": "uni205E", + "8287": "uni205F", + "8288": "uni2060", + "8289": "uni2061", + "8290": "uni2062", + "8291": "uni2063", + "8292": "uni2064", + "8298": "uni206A", + "8299": "uni206B", + "8300": "uni206C", + "8301": "uni206D", + "8302": "uni206E", + "8303": "uni206F", + "8304": "uni2070", + "8305": "uni2071", + "8308": "uni2074", + "8309": "uni2075", + "8310": "uni2076", + "8311": "uni2077", + "8312": "uni2078", + "8313": "uni2079", + "8314": "uni207A", + "8315": "uni207B", + "8316": "uni207C", + "8317": "uni207D", + "8318": "uni207E", + "8319": "uni207F", + "8320": "uni2080", + "8321": "uni2081", + "8322": "uni2082", + "8323": "uni2083", + "8324": "uni2084", + "8325": "uni2085", + "8326": "uni2086", + "8327": "uni2087", + "8328": "uni2088", + "8329": "uni2089", + "8330": "uni208A", + "8331": "uni208B", + "8332": "uni208C", + "8333": "uni208D", + "8334": "uni208E", + "8336": "uni2090", + "8337": "uni2091", + "8338": "uni2092", + "8339": "uni2093", + "8340": "uni2094", + "8341": "uni2095", + "8342": "uni2096", + "8343": "uni2097", + "8344": "uni2098", + "8345": "uni2099", + "8346": "uni209A", + "8347": "uni209B", + "8348": "uni209C", + "8352": "uni20A0", + "8353": "colonmonetary", + "8354": "uni20A2", + "8355": "franc", + "8356": "lira", + "8357": "uni20A5", + "8358": "uni20A6", + "8359": "peseta", + "8360": "uni20A8", + "8361": "uni20A9", + "8362": "uni20AA", + "8363": "dong", + "8364": "Euro", + "8365": "uni20AD", + "8366": "uni20AE", + "8367": "uni20AF", + "8368": "uni20B0", + "8369": "uni20B1", + "8370": "uni20B2", + "8371": "uni20B3", + "8372": "uni20B4", + "8373": "uni20B5", + "8376": "uni20B8", + "8377": "uni20B9", + "8378": "uni20BA", + "8381": "uni20BD", + "8400": "uni20D0", + "8401": "uni20D1", + "8406": "uni20D6", + "8407": "uni20D7", + "8411": "uni20DB", + "8412": "uni20DC", + "8417": "uni20E1", + "8448": "uni2100", + "8449": "uni2101", + "8450": "uni2102", + "8451": "uni2103", + "8452": "uni2104", + "8453": "uni2105", + "8454": "uni2106", + "8455": "uni2107", + "8456": "uni2108", + "8457": "uni2109", + "8459": "uni210B", + "8460": "uni210C", + "8461": "uni210D", + "8462": "uni210E", + "8463": "uni210F", + "8464": "uni2110", + "8465": "Ifraktur", + "8466": "uni2112", + "8467": "uni2113", + "8468": "uni2114", + "8469": "uni2115", + "8470": "uni2116", + "8471": "uni2117", + "8472": "weierstrass", + "8473": "uni2119", + "8474": "uni211A", + "8475": "uni211B", + "8476": "Rfraktur", + "8477": "uni211D", + "8478": "prescription", + "8479": "uni211F", + "8480": "uni2120", + "8481": "uni2121", + "8482": "trademark", + "8483": "uni2123", + "8484": "uni2124", + "8485": "uni2125", + "8486": "uni2126", + "8487": "uni2127", + "8488": "uni2128", + "8489": "uni2129", + "8490": "uni212A", + "8491": "uni212B", + "8492": "uni212C", + "8493": "uni212D", + "8494": "estimated", + "8495": "uni212F", + "8496": "uni2130", + "8497": "uni2131", + "8498": "uni2132", + "8499": "uni2133", + "8500": "uni2134", + "8501": "aleph", + "8502": "uni2136", + "8503": "uni2137", + "8504": "uni2138", + "8505": "uni2139", + "8506": "uni213A", + "8507": "uni213B", + "8508": "uni213C", + "8509": "uni213D", + "8510": "uni213E", + "8511": "uni213F", + "8512": "uni2140", + "8513": "uni2141", + "8514": "uni2142", + "8515": "uni2143", + "8516": "uni2144", + "8517": "uni2145", + "8518": "uni2146", + "8519": "uni2147", + "8520": "uni2148", + "8521": "uni2149", + "8523": "uni214B", + "8526": "uni214E", + "8528": "uni2150", + "8529": "uni2151", + "8530": "uni2152", + "8531": "onethird", + "8532": "twothirds", + "8533": "uni2155", + "8534": "uni2156", + "8535": "uni2157", + "8536": "uni2158", + "8537": "uni2159", + "8538": "uni215A", + "8539": "oneeighth", + "8540": "threeeighths", + "8541": "fiveeighths", + "8542": "seveneighths", + "8543": "uni215F", + "8544": "uni2160", + "8545": "uni2161", + "8546": "uni2162", + "8547": "uni2163", + "8548": "uni2164", + "8549": "uni2165", + "8550": "uni2166", + "8551": "uni2167", + "8552": "uni2168", + "8553": "uni2169", + "8554": "uni216A", + "8555": "uni216B", + "8556": "uni216C", + "8557": "uni216D", + "8558": "uni216E", + "8559": "uni216F", + "8560": "uni2170", + "8561": "uni2171", + "8562": "uni2172", + "8563": "uni2173", + "8564": "uni2174", + "8565": "uni2175", + "8566": "uni2176", + "8567": "uni2177", + "8568": "uni2178", + "8569": "uni2179", + "8570": "uni217A", + "8571": "uni217B", + "8572": "uni217C", + "8573": "uni217D", + "8574": "uni217E", + "8575": "uni217F", + "8576": "uni2180", + "8577": "uni2181", + "8578": "uni2182", + "8579": "uni2183", + "8580": "uni2184", + "8581": "uni2185", + "8585": "uni2189", + "8592": "arrowleft", + "8593": "arrowup", + "8594": "arrowright", + "8595": "arrowdown", + "8596": "arrowboth", + "8597": "arrowupdn", + "8598": "uni2196", + "8599": "uni2197", + "8600": "uni2198", + "8601": "uni2199", + "8602": "uni219A", + "8603": "uni219B", + "8604": "uni219C", + "8605": "uni219D", + "8606": "uni219E", + "8607": "uni219F", + "8608": "uni21A0", + "8609": "uni21A1", + "8610": "uni21A2", + "8611": "uni21A3", + "8612": "uni21A4", + "8613": "uni21A5", + "8614": "uni21A6", + "8615": "uni21A7", + "8616": "arrowupdnbse", + "8617": "uni21A9", + "8618": "uni21AA", + "8619": "uni21AB", + "8620": "uni21AC", + "8621": "uni21AD", + "8622": "uni21AE", + "8623": "uni21AF", + "8624": "uni21B0", + "8625": "uni21B1", + "8626": "uni21B2", + "8627": "uni21B3", + "8628": "uni21B4", + "8629": "carriagereturn", + "8630": "uni21B6", + "8631": "uni21B7", + "8632": "uni21B8", + "8633": "uni21B9", + "8634": "uni21BA", + "8635": "uni21BB", + "8636": "uni21BC", + "8637": "uni21BD", + "8638": "uni21BE", + "8639": "uni21BF", + "8640": "uni21C0", + "8641": "uni21C1", + "8642": "uni21C2", + "8643": "uni21C3", + "8644": "uni21C4", + "8645": "uni21C5", + "8646": "uni21C6", + "8647": "uni21C7", + "8648": "uni21C8", + "8649": "uni21C9", + "8650": "uni21CA", + "8651": "uni21CB", + "8652": "uni21CC", + "8653": "uni21CD", + "8654": "uni21CE", + "8655": "uni21CF", + "8656": "arrowdblleft", + "8657": "arrowdblup", + "8658": "arrowdblright", + "8659": "arrowdbldown", + "8660": "arrowdblboth", + "8661": "uni21D5", + "8662": "uni21D6", + "8663": "uni21D7", + "8664": "uni21D8", + "8665": "uni21D9", + "8666": "uni21DA", + "8667": "uni21DB", + "8668": "uni21DC", + "8669": "uni21DD", + "8670": "uni21DE", + "8671": "uni21DF", + "8672": "uni21E0", + "8673": "uni21E1", + "8674": "uni21E2", + "8675": "uni21E3", + "8676": "uni21E4", + "8677": "uni21E5", + "8678": "uni21E6", + "8679": "uni21E7", + "8680": "uni21E8", + "8681": "uni21E9", + "8682": "uni21EA", + "8683": "uni21EB", + "8684": "uni21EC", + "8685": "uni21ED", + "8686": "uni21EE", + "8687": "uni21EF", + "8688": "uni21F0", + "8689": "uni21F1", + "8690": "uni21F2", + "8691": "uni21F3", + "8692": "uni21F4", + "8693": "uni21F5", + "8694": "uni21F6", + "8695": "uni21F7", + "8696": "uni21F8", + "8697": "uni21F9", + "8698": "uni21FA", + "8699": "uni21FB", + "8700": "uni21FC", + "8701": "uni21FD", + "8702": "uni21FE", + "8703": "uni21FF", + "8704": "universal", + "8705": "uni2201", + "8706": "partialdiff", + "8707": "existential", + "8708": "uni2204", + "8709": "emptyset", + "8710": "increment", + "8711": "gradient", + "8712": "element", + "8713": "notelement", + "8714": "uni220A", + "8715": "suchthat", + "8716": "uni220C", + "8717": "uni220D", + "8718": "uni220E", + "8719": "product", + "8720": "uni2210", + "8721": "summation", + "8722": "minus", + "8723": "uni2213", + "8724": "uni2214", + "8725": "uni2215", + "8726": "uni2216", + "8727": "asteriskmath", + "8728": "uni2218", + "8729": "uni2219", + "8730": "radical", + "8731": "uni221B", + "8732": "uni221C", + "8733": "proportional", + "8734": "infinity", + "8735": "orthogonal", + "8736": "angle", + "8737": "uni2221", + "8738": "uni2222", + "8739": "uni2223", + "8740": "uni2224", + "8741": "uni2225", + "8742": "uni2226", + "8743": "logicaland", + "8744": "logicalor", + "8745": "intersection", + "8746": "union", + "8747": "integral", + "8748": "uni222C", + "8749": "uni222D", + "8750": "uni222E", + "8751": "uni222F", + "8752": "uni2230", + "8753": "uni2231", + "8754": "uni2232", + "8755": "uni2233", + "8756": "therefore", + "8757": "uni2235", + "8758": "uni2236", + "8759": "uni2237", + "8760": "uni2238", + "8761": "uni2239", + "8762": "uni223A", + "8763": "uni223B", + "8764": "similar", + "8765": "uni223D", + "8766": "uni223E", + "8767": "uni223F", + "8768": "uni2240", + "8769": "uni2241", + "8770": "uni2242", + "8771": "uni2243", + "8772": "uni2244", + "8773": "congruent", + "8774": "uni2246", + "8775": "uni2247", + "8776": "approxequal", + "8777": "uni2249", + "8778": "uni224A", + "8779": "uni224B", + "8780": "uni224C", + "8781": "uni224D", + "8782": "uni224E", + "8783": "uni224F", + "8784": "uni2250", + "8785": "uni2251", + "8786": "uni2252", + "8787": "uni2253", + "8788": "uni2254", + "8789": "uni2255", + "8790": "uni2256", + "8791": "uni2257", + "8792": "uni2258", + "8793": "uni2259", + "8794": "uni225A", + "8795": "uni225B", + "8796": "uni225C", + "8797": "uni225D", + "8798": "uni225E", + "8799": "uni225F", + "8800": "notequal", + "8801": "equivalence", + "8802": "uni2262", + "8803": "uni2263", + "8804": "lessequal", + "8805": "greaterequal", + "8806": "uni2266", + "8807": "uni2267", + "8808": "uni2268", + "8809": "uni2269", + "8810": "uni226A", + "8811": "uni226B", + "8812": "uni226C", + "8813": "uni226D", + "8814": "uni226E", + "8815": "uni226F", + "8816": "uni2270", + "8817": "uni2271", + "8818": "uni2272", + "8819": "uni2273", + "8820": "uni2274", + "8821": "uni2275", + "8822": "uni2276", + "8823": "uni2277", + "8824": "uni2278", + "8825": "uni2279", + "8826": "uni227A", + "8827": "uni227B", + "8828": "uni227C", + "8829": "uni227D", + "8830": "uni227E", + "8831": "uni227F", + "8832": "uni2280", + "8833": "uni2281", + "8834": "propersubset", + "8835": "propersuperset", + "8836": "notsubset", + "8837": "uni2285", + "8838": "reflexsubset", + "8839": "reflexsuperset", + "8840": "uni2288", + "8841": "uni2289", + "8842": "uni228A", + "8843": "uni228B", + "8844": "uni228C", + "8845": "uni228D", + "8846": "uni228E", + "8847": "uni228F", + "8848": "uni2290", + "8849": "uni2291", + "8850": "uni2292", + "8851": "uni2293", + "8852": "uni2294", + "8853": "circleplus", + "8854": "uni2296", + "8855": "circlemultiply", + "8856": "uni2298", + "8857": "uni2299", + "8858": "uni229A", + "8859": "uni229B", + "8860": "uni229C", + "8861": "uni229D", + "8862": "uni229E", + "8863": "uni229F", + "8864": "uni22A0", + "8865": "uni22A1", + "8866": "uni22A2", + "8867": "uni22A3", + "8868": "uni22A4", + "8869": "perpendicular", + "8870": "uni22A6", + "8871": "uni22A7", + "8872": "uni22A8", + "8873": "uni22A9", + "8874": "uni22AA", + "8875": "uni22AB", + "8876": "uni22AC", + "8877": "uni22AD", + "8878": "uni22AE", + "8879": "uni22AF", + "8880": "uni22B0", + "8881": "uni22B1", + "8882": "uni22B2", + "8883": "uni22B3", + "8884": "uni22B4", + "8885": "uni22B5", + "8886": "uni22B6", + "8887": "uni22B7", + "8888": "uni22B8", + "8889": "uni22B9", + "8890": "uni22BA", + "8891": "uni22BB", + "8892": "uni22BC", + "8893": "uni22BD", + "8894": "uni22BE", + "8895": "uni22BF", + "8896": "uni22C0", + "8897": "uni22C1", + "8898": "uni22C2", + "8899": "uni22C3", + "8900": "uni22C4", + "8901": "dotmath", + "8902": "uni22C6", + "8903": "uni22C7", + "8904": "uni22C8", + "8905": "uni22C9", + "8906": "uni22CA", + "8907": "uni22CB", + "8908": "uni22CC", + "8909": "uni22CD", + "8910": "uni22CE", + "8911": "uni22CF", + "8912": "uni22D0", + "8913": "uni22D1", + "8914": "uni22D2", + "8915": "uni22D3", + "8916": "uni22D4", + "8917": "uni22D5", + "8918": "uni22D6", + "8919": "uni22D7", + "8920": "uni22D8", + "8921": "uni22D9", + "8922": "uni22DA", + "8923": "uni22DB", + "8924": "uni22DC", + "8925": "uni22DD", + "8926": "uni22DE", + "8927": "uni22DF", + "8928": "uni22E0", + "8929": "uni22E1", + "8930": "uni22E2", + "8931": "uni22E3", + "8932": "uni22E4", + "8933": "uni22E5", + "8934": "uni22E6", + "8935": "uni22E7", + "8936": "uni22E8", + "8937": "uni22E9", + "8938": "uni22EA", + "8939": "uni22EB", + "8940": "uni22EC", + "8941": "uni22ED", + "8942": "uni22EE", + "8943": "uni22EF", + "8944": "uni22F0", + "8945": "uni22F1", + "8946": "uni22F2", + "8947": "uni22F3", + "8948": "uni22F4", + "8949": "uni22F5", + "8950": "uni22F6", + "8951": "uni22F7", + "8952": "uni22F8", + "8953": "uni22F9", + "8954": "uni22FA", + "8955": "uni22FB", + "8956": "uni22FC", + "8957": "uni22FD", + "8958": "uni22FE", + "8959": "uni22FF", + "8960": "uni2300", + "8961": "uni2301", + "8962": "house", + "8963": "uni2303", + "8964": "uni2304", + "8965": "uni2305", + "8966": "uni2306", + "8967": "uni2307", + "8968": "uni2308", + "8969": "uni2309", + "8970": "uni230A", + "8971": "uni230B", + "8972": "uni230C", + "8973": "uni230D", + "8974": "uni230E", + "8975": "uni230F", + "8976": "revlogicalnot", + "8977": "uni2311", + "8984": "uni2318", + "8985": "uni2319", + "8988": "uni231C", + "8989": "uni231D", + "8990": "uni231E", + "8991": "uni231F", + "8992": "integraltp", + "8993": "integralbt", + "8996": "uni2324", + "8997": "uni2325", + "8998": "uni2326", + "8999": "uni2327", + "9000": "uni2328", + "9003": "uni232B", + "9004": "uni232C", + "9075": "uni2373", + "9076": "uni2374", + "9077": "uni2375", + "9082": "uni237A", + "9085": "uni237D", + "9095": "uni2387", + "9108": "uni2394", + "9115": "uni239B", + "9116": "uni239C", + "9117": "uni239D", + "9118": "uni239E", + "9119": "uni239F", + "9120": "uni23A0", + "9121": "uni23A1", + "9122": "uni23A2", + "9123": "uni23A3", + "9124": "uni23A4", + "9125": "uni23A5", + "9126": "uni23A6", + "9127": "uni23A7", + "9128": "uni23A8", + "9129": "uni23A9", + "9130": "uni23AA", + "9131": "uni23AB", + "9132": "uni23AC", + "9133": "uni23AD", + "9134": "uni23AE", + "9166": "uni23CE", + "9167": "uni23CF", + "9187": "uni23E3", + "9189": "uni23E5", + "9192": "uni23E8", + "9250": "uni2422", + "9251": "uni2423", + "9312": "uni2460", + "9313": "uni2461", + "9314": "uni2462", + "9315": "uni2463", + "9316": "uni2464", + "9317": "uni2465", + "9318": "uni2466", + "9319": "uni2467", + "9320": "uni2468", + "9321": "uni2469", + "9472": "SF100000", + "9473": "uni2501", + "9474": "SF110000", + "9475": "uni2503", + "9476": "uni2504", + "9477": "uni2505", + "9478": "uni2506", + "9479": "uni2507", + "9480": "uni2508", + "9481": "uni2509", + "9482": "uni250A", + "9483": "uni250B", + "9484": "SF010000", + "9485": "uni250D", + "9486": "uni250E", + "9487": "uni250F", + "9488": "SF030000", + "9489": "uni2511", + "9490": "uni2512", + "9491": "uni2513", + "9492": "SF020000", + "9493": "uni2515", + "9494": "uni2516", + "9495": "uni2517", + "9496": "SF040000", + "9497": "uni2519", + "9498": "uni251A", + "9499": "uni251B", + "9500": "SF080000", + "9501": "uni251D", + "9502": "uni251E", + "9503": "uni251F", + "9504": "uni2520", + "9505": "uni2521", + "9506": "uni2522", + "9507": "uni2523", + "9508": "SF090000", + "9509": "uni2525", + "9510": "uni2526", + "9511": "uni2527", + "9512": "uni2528", + "9513": "uni2529", + "9514": "uni252A", + "9515": "uni252B", + "9516": "SF060000", + "9517": "uni252D", + "9518": "uni252E", + "9519": "uni252F", + "9520": "uni2530", + "9521": "uni2531", + "9522": "uni2532", + "9523": "uni2533", + "9524": "SF070000", + "9525": "uni2535", + "9526": "uni2536", + "9527": "uni2537", + "9528": "uni2538", + "9529": "uni2539", + "9530": "uni253A", + "9531": "uni253B", + "9532": "SF050000", + "9533": "uni253D", + "9534": "uni253E", + "9535": "uni253F", + "9536": "uni2540", + "9537": "uni2541", + "9538": "uni2542", + "9539": "uni2543", + "9540": "uni2544", + "9541": "uni2545", + "9542": "uni2546", + "9543": "uni2547", + "9544": "uni2548", + "9545": "uni2549", + "9546": "uni254A", + "9547": "uni254B", + "9548": "uni254C", + "9549": "uni254D", + "9550": "uni254E", + "9551": "uni254F", + "9552": "SF430000", + "9553": "SF240000", + "9554": "SF510000", + "9555": "SF520000", + "9556": "SF390000", + "9557": "SF220000", + "9558": "SF210000", + "9559": "SF250000", + "9560": "SF500000", + "9561": "SF490000", + "9562": "SF380000", + "9563": "SF280000", + "9564": "SF270000", + "9565": "SF260000", + "9566": "SF360000", + "9567": "SF370000", + "9568": "SF420000", + "9569": "SF190000", + "9570": "SF200000", + "9571": "SF230000", + "9572": "SF470000", + "9573": "SF480000", + "9574": "SF410000", + "9575": "SF450000", + "9576": "SF460000", + "9577": "SF400000", + "9578": "SF540000", + "9579": "SF530000", + "9580": "SF440000", + "9581": "uni256D", + "9582": "uni256E", + "9583": "uni256F", + "9584": "uni2570", + "9585": "uni2571", + "9586": "uni2572", + "9587": "uni2573", + "9588": "uni2574", + "9589": "uni2575", + "9590": "uni2576", + "9591": "uni2577", + "9592": "uni2578", + "9593": "uni2579", + "9594": "uni257A", + "9595": "uni257B", + "9596": "uni257C", + "9597": "uni257D", + "9598": "uni257E", + "9599": "uni257F", + "9600": "upblock", + "9601": "uni2581", + "9602": "uni2582", + "9603": "uni2583", + "9604": "dnblock", + "9605": "uni2585", + "9606": "uni2586", + "9607": "uni2587", + "9608": "block", + "9609": "uni2589", + "9610": "uni258A", + "9611": "uni258B", + "9612": "lfblock", + "9613": "uni258D", + "9614": "uni258E", + "9615": "uni258F", + "9616": "rtblock", + "9617": "ltshade", + "9618": "shade", + "9619": "dkshade", + "9620": "uni2594", + "9621": "uni2595", + "9622": "uni2596", + "9623": "uni2597", + "9624": "uni2598", + "9625": "uni2599", + "9626": "uni259A", + "9627": "uni259B", + "9628": "uni259C", + "9629": "uni259D", + "9630": "uni259E", + "9631": "uni259F", + "9632": "filledbox", + "9633": "H22073", + "9634": "uni25A2", + "9635": "uni25A3", + "9636": "uni25A4", + "9637": "uni25A5", + "9638": "uni25A6", + "9639": "uni25A7", + "9640": "uni25A8", + "9641": "uni25A9", + "9642": "H18543", + "9643": "H18551", + "9644": "filledrect", + "9645": "uni25AD", + "9646": "uni25AE", + "9647": "uni25AF", + "9648": "uni25B0", + "9649": "uni25B1", + "9650": "triagup", + "9651": "uni25B3", + "9652": "uni25B4", + "9653": "uni25B5", + "9654": "uni25B6", + "9655": "uni25B7", + "9656": "uni25B8", + "9657": "uni25B9", + "9658": "triagrt", + "9659": "uni25BB", + "9660": "triagdn", + "9661": "uni25BD", + "9662": "uni25BE", + "9663": "uni25BF", + "9664": "uni25C0", + "9665": "uni25C1", + "9666": "uni25C2", + "9667": "uni25C3", + "9668": "triaglf", + "9669": "uni25C5", + "9670": "uni25C6", + "9671": "uni25C7", + "9672": "uni25C8", + "9673": "uni25C9", + "9674": "lozenge", + "9675": "circle", + "9676": "uni25CC", + "9677": "uni25CD", + "9678": "uni25CE", + "9679": "H18533", + "9680": "uni25D0", + "9681": "uni25D1", + "9682": "uni25D2", + "9683": "uni25D3", + "9684": "uni25D4", + "9685": "uni25D5", + "9686": "uni25D6", + "9687": "uni25D7", + "9688": "invbullet", + "9689": "invcircle", + "9690": "uni25DA", + "9691": "uni25DB", + "9692": "uni25DC", + "9693": "uni25DD", + "9694": "uni25DE", + "9695": "uni25DF", + "9696": "uni25E0", + "9697": "uni25E1", + "9698": "uni25E2", + "9699": "uni25E3", + "9700": "uni25E4", + "9701": "uni25E5", + "9702": "openbullet", + "9703": "uni25E7", + "9704": "uni25E8", + "9705": "uni25E9", + "9706": "uni25EA", + "9707": "uni25EB", + "9708": "uni25EC", + "9709": "uni25ED", + "9710": "uni25EE", + "9711": "uni25EF", + "9712": "uni25F0", + "9713": "uni25F1", + "9714": "uni25F2", + "9715": "uni25F3", + "9716": "uni25F4", + "9717": "uni25F5", + "9718": "uni25F6", + "9719": "uni25F7", + "9720": "uni25F8", + "9721": "uni25F9", + "9722": "uni25FA", + "9723": "uni25FB", + "9724": "uni25FC", + "9725": "uni25FD", + "9726": "uni25FE", + "9727": "uni25FF", + "9728": "uni2600", + "9729": "uni2601", + "9730": "uni2602", + "9731": "uni2603", + "9732": "uni2604", + "9733": "uni2605", + "9734": "uni2606", + "9735": "uni2607", + "9736": "uni2608", + "9737": "uni2609", + "9738": "uni260A", + "9739": "uni260B", + "9740": "uni260C", + "9741": "uni260D", + "9742": "uni260E", + "9743": "uni260F", + "9744": "uni2610", + "9745": "uni2611", + "9746": "uni2612", + "9747": "uni2613", + "9748": "uni2614", + "9749": "uni2615", + "9750": "uni2616", + "9751": "uni2617", + "9752": "uni2618", + "9753": "uni2619", + "9754": "uni261A", + "9755": "uni261B", + "9756": "uni261C", + "9757": "uni261D", + "9758": "uni261E", + "9759": "uni261F", + "9760": "uni2620", + "9761": "uni2621", + "9762": "uni2622", + "9763": "uni2623", + "9764": "uni2624", + "9765": "uni2625", + "9766": "uni2626", + "9767": "uni2627", + "9768": "uni2628", + "9769": "uni2629", + "9770": "uni262A", + "9771": "uni262B", + "9772": "uni262C", + "9773": "uni262D", + "9774": "uni262E", + "9775": "uni262F", + "9776": "uni2630", + "9777": "uni2631", + "9778": "uni2632", + "9779": "uni2633", + "9780": "uni2634", + "9781": "uni2635", + "9782": "uni2636", + "9783": "uni2637", + "9784": "uni2638", + "9785": "uni2639", + "9786": "smileface", + "9787": "invsmileface", + "9788": "sun", + "9789": "uni263D", + "9790": "uni263E", + "9791": "uni263F", + "9792": "female", + "9793": "uni2641", + "9794": "male", + "9795": "uni2643", + "9796": "uni2644", + "9797": "uni2645", + "9798": "uni2646", + "9799": "uni2647", + "9800": "uni2648", + "9801": "uni2649", + "9802": "uni264A", + "9803": "uni264B", + "9804": "uni264C", + "9805": "uni264D", + "9806": "uni264E", + "9807": "uni264F", + "9808": "uni2650", + "9809": "uni2651", + "9810": "uni2652", + "9811": "uni2653", + "9812": "uni2654", + "9813": "uni2655", + "9814": "uni2656", + "9815": "uni2657", + "9816": "uni2658", + "9817": "uni2659", + "9818": "uni265A", + "9819": "uni265B", + "9820": "uni265C", + "9821": "uni265D", + "9822": "uni265E", + "9823": "uni265F", + "9824": "spade", + "9825": "uni2661", + "9826": "uni2662", + "9827": "club", + "9828": "uni2664", + "9829": "heart", + "9830": "diamond", + "9831": "uni2667", + "9832": "uni2668", + "9833": "uni2669", + "9834": "musicalnote", + "9835": "musicalnotedbl", + "9836": "uni266C", + "9837": "uni266D", + "9838": "uni266E", + "9839": "uni266F", + "9840": "uni2670", + "9841": "uni2671", + "9842": "uni2672", + "9843": "uni2673", + "9844": "uni2674", + "9845": "uni2675", + "9846": "uni2676", + "9847": "uni2677", + "9848": "uni2678", + "9849": "uni2679", + "9850": "uni267A", + "9851": "uni267B", + "9852": "uni267C", + "9853": "uni267D", + "9854": "uni267E", + "9855": "uni267F", + "9856": "uni2680", + "9857": "uni2681", + "9858": "uni2682", + "9859": "uni2683", + "9860": "uni2684", + "9861": "uni2685", + "9862": "uni2686", + "9863": "uni2687", + "9864": "uni2688", + "9865": "uni2689", + "9866": "uni268A", + "9867": "uni268B", + "9868": "uni268C", + "9869": "uni268D", + "9870": "uni268E", + "9871": "uni268F", + "9872": "uni2690", + "9873": "uni2691", + "9874": "uni2692", + "9875": "uni2693", + "9876": "uni2694", + "9877": "uni2695", + "9878": "uni2696", + "9879": "uni2697", + "9880": "uni2698", + "9881": "uni2699", + "9882": "uni269A", + "9883": "uni269B", + "9884": "uni269C", + "9886": "uni269E", + "9887": "uni269F", + "9888": "uni26A0", + "9889": "uni26A1", + "9890": "uni26A2", + "9891": "uni26A3", + "9892": "uni26A4", + "9893": "uni26A5", + "9894": "uni26A6", + "9895": "uni26A7", + "9896": "uni26A8", + "9897": "uni26A9", + "9898": "uni26AA", + "9899": "uni26AB", + "9900": "uni26AC", + "9901": "uni26AD", + "9902": "uni26AE", + "9903": "uni26AF", + "9904": "uni26B0", + "9905": "uni26B1", + "9906": "uni26B2", + "9907": "uni26B3", + "9908": "uni26B4", + "9909": "uni26B5", + "9910": "uni26B6", + "9911": "uni26B7", + "9912": "uni26B8", + "9920": "uni26C0", + "9921": "uni26C1", + "9922": "uni26C2", + "9923": "uni26C3", + "9954": "uni26E2", + "9985": "uni2701", + "9986": "uni2702", + "9987": "uni2703", + "9988": "uni2704", + "9990": "uni2706", + "9991": "uni2707", + "9992": "uni2708", + "9993": "uni2709", + "9996": "uni270C", + "9997": "uni270D", + "9998": "uni270E", + "9999": "uni270F", + "10000": "uni2710", + "10001": "uni2711", + "10002": "uni2712", + "10003": "uni2713", + "10004": "uni2714", + "10005": "uni2715", + "10006": "uni2716", + "10007": "uni2717", + "10008": "uni2718", + "10009": "uni2719", + "10010": "uni271A", + "10011": "uni271B", + "10012": "uni271C", + "10013": "uni271D", + "10014": "uni271E", + "10015": "uni271F", + "10016": "uni2720", + "10017": "uni2721", + "10018": "uni2722", + "10019": "uni2723", + "10020": "uni2724", + "10021": "uni2725", + "10022": "uni2726", + "10023": "uni2727", + "10025": "uni2729", + "10026": "uni272A", + "10027": "uni272B", + "10028": "uni272C", + "10029": "uni272D", + "10030": "uni272E", + "10031": "uni272F", + "10032": "uni2730", + "10033": "uni2731", + "10034": "uni2732", + "10035": "uni2733", + "10036": "uni2734", + "10037": "uni2735", + "10038": "uni2736", + "10039": "uni2737", + "10040": "uni2738", + "10041": "uni2739", + "10042": "uni273A", + "10043": "uni273B", + "10044": "uni273C", + "10045": "uni273D", + "10046": "uni273E", + "10047": "uni273F", + "10048": "uni2740", + "10049": "uni2741", + "10050": "uni2742", + "10051": "uni2743", + "10052": "uni2744", + "10053": "uni2745", + "10054": "uni2746", + "10055": "uni2747", + "10056": "uni2748", + "10057": "uni2749", + "10058": "uni274A", + "10059": "uni274B", + "10061": "uni274D", + "10063": "uni274F", + "10064": "uni2750", + "10065": "uni2751", + "10066": "uni2752", + "10070": "uni2756", + "10072": "uni2758", + "10073": "uni2759", + "10074": "uni275A", + "10075": "uni275B", + "10076": "uni275C", + "10077": "uni275D", + "10078": "uni275E", + "10081": "uni2761", + "10082": "uni2762", + "10083": "uni2763", + "10084": "uni2764", + "10085": "uni2765", + "10086": "uni2766", + "10087": "uni2767", + "10088": "uni2768", + "10089": "uni2769", + "10090": "uni276A", + "10091": "uni276B", + "10092": "uni276C", + "10093": "uni276D", + "10094": "uni276E", + "10095": "uni276F", + "10096": "uni2770", + "10097": "uni2771", + "10098": "uni2772", + "10099": "uni2773", + "10100": "uni2774", + "10101": "uni2775", + "10102": "uni2776", + "10103": "uni2777", + "10104": "uni2778", + "10105": "uni2779", + "10106": "uni277A", + "10107": "uni277B", + "10108": "uni277C", + "10109": "uni277D", + "10110": "uni277E", + "10111": "uni277F", + "10112": "uni2780", + "10113": "uni2781", + "10114": "uni2782", + "10115": "uni2783", + "10116": "uni2784", + "10117": "uni2785", + "10118": "uni2786", + "10119": "uni2787", + "10120": "uni2788", + "10121": "uni2789", + "10122": "uni278A", + "10123": "uni278B", + "10124": "uni278C", + "10125": "uni278D", + "10126": "uni278E", + "10127": "uni278F", + "10128": "uni2790", + "10129": "uni2791", + "10130": "uni2792", + "10131": "uni2793", + "10132": "uni2794", + "10136": "uni2798", + "10137": "uni2799", + "10138": "uni279A", + "10139": "uni279B", + "10140": "uni279C", + "10141": "uni279D", + "10142": "uni279E", + "10143": "uni279F", + "10144": "uni27A0", + "10145": "uni27A1", + "10146": "uni27A2", + "10147": "uni27A3", + "10148": "uni27A4", + "10149": "uni27A5", + "10150": "uni27A6", + "10151": "uni27A7", + "10152": "uni27A8", + "10153": "uni27A9", + "10154": "uni27AA", + "10155": "uni27AB", + "10156": "uni27AC", + "10157": "uni27AD", + "10158": "uni27AE", + "10159": "uni27AF", + "10161": "uni27B1", + "10162": "uni27B2", + "10163": "uni27B3", + "10164": "uni27B4", + "10165": "uni27B5", + "10166": "uni27B6", + "10167": "uni27B7", + "10168": "uni27B8", + "10169": "uni27B9", + "10170": "uni27BA", + "10171": "uni27BB", + "10172": "uni27BC", + "10173": "uni27BD", + "10174": "uni27BE", + "10181": "uni27C5", + "10182": "uni27C6", + "10208": "uni27E0", + "10214": "uni27E6", + "10215": "uni27E7", + "10216": "uni27E8", + "10217": "uni27E9", + "10218": "uni27EA", + "10219": "uni27EB", + "10224": "uni27F0", + "10225": "uni27F1", + "10226": "uni27F2", + "10227": "uni27F3", + "10228": "uni27F4", + "10229": "uni27F5", + "10230": "uni27F6", + "10231": "uni27F7", + "10232": "uni27F8", + "10233": "uni27F9", + "10234": "uni27FA", + "10235": "uni27FB", + "10236": "uni27FC", + "10237": "uni27FD", + "10238": "uni27FE", + "10239": "uni27FF", + "10240": "uni2800", + "10241": "uni2801", + "10242": "uni2802", + "10243": "uni2803", + "10244": "uni2804", + "10245": "uni2805", + "10246": "uni2806", + "10247": "uni2807", + "10248": "uni2808", + "10249": "uni2809", + "10250": "uni280A", + "10251": "uni280B", + "10252": "uni280C", + "10253": "uni280D", + "10254": "uni280E", + "10255": "uni280F", + "10256": "uni2810", + "10257": "uni2811", + "10258": "uni2812", + "10259": "uni2813", + "10260": "uni2814", + "10261": "uni2815", + "10262": "uni2816", + "10263": "uni2817", + "10264": "uni2818", + "10265": "uni2819", + "10266": "uni281A", + "10267": "uni281B", + "10268": "uni281C", + "10269": "uni281D", + "10270": "uni281E", + "10271": "uni281F", + "10272": "uni2820", + "10273": "uni2821", + "10274": "uni2822", + "10275": "uni2823", + "10276": "uni2824", + "10277": "uni2825", + "10278": "uni2826", + "10279": "uni2827", + "10280": "uni2828", + "10281": "uni2829", + "10282": "uni282A", + "10283": "uni282B", + "10284": "uni282C", + "10285": "uni282D", + "10286": "uni282E", + "10287": "uni282F", + "10288": "uni2830", + "10289": "uni2831", + "10290": "uni2832", + "10291": "uni2833", + "10292": "uni2834", + "10293": "uni2835", + "10294": "uni2836", + "10295": "uni2837", + "10296": "uni2838", + "10297": "uni2839", + "10298": "uni283A", + "10299": "uni283B", + "10300": "uni283C", + "10301": "uni283D", + "10302": "uni283E", + "10303": "uni283F", + "10304": "uni2840", + "10305": "uni2841", + "10306": "uni2842", + "10307": "uni2843", + "10308": "uni2844", + "10309": "uni2845", + "10310": "uni2846", + "10311": "uni2847", + "10312": "uni2848", + "10313": "uni2849", + "10314": "uni284A", + "10315": "uni284B", + "10316": "uni284C", + "10317": "uni284D", + "10318": "uni284E", + "10319": "uni284F", + "10320": "uni2850", + "10321": "uni2851", + "10322": "uni2852", + "10323": "uni2853", + "10324": "uni2854", + "10325": "uni2855", + "10326": "uni2856", + "10327": "uni2857", + "10328": "uni2858", + "10329": "uni2859", + "10330": "uni285A", + "10331": "uni285B", + "10332": "uni285C", + "10333": "uni285D", + "10334": "uni285E", + "10335": "uni285F", + "10336": "uni2860", + "10337": "uni2861", + "10338": "uni2862", + "10339": "uni2863", + "10340": "uni2864", + "10341": "uni2865", + "10342": "uni2866", + "10343": "uni2867", + "10344": "uni2868", + "10345": "uni2869", + "10346": "uni286A", + "10347": "uni286B", + "10348": "uni286C", + "10349": "uni286D", + "10350": "uni286E", + "10351": "uni286F", + "10352": "uni2870", + "10353": "uni2871", + "10354": "uni2872", + "10355": "uni2873", + "10356": "uni2874", + "10357": "uni2875", + "10358": "uni2876", + "10359": "uni2877", + "10360": "uni2878", + "10361": "uni2879", + "10362": "uni287A", + "10363": "uni287B", + "10364": "uni287C", + "10365": "uni287D", + "10366": "uni287E", + "10367": "uni287F", + "10368": "uni2880", + "10369": "uni2881", + "10370": "uni2882", + "10371": "uni2883", + "10372": "uni2884", + "10373": "uni2885", + "10374": "uni2886", + "10375": "uni2887", + "10376": "uni2888", + "10377": "uni2889", + "10378": "uni288A", + "10379": "uni288B", + "10380": "uni288C", + "10381": "uni288D", + "10382": "uni288E", + "10383": "uni288F", + "10384": "uni2890", + "10385": "uni2891", + "10386": "uni2892", + "10387": "uni2893", + "10388": "uni2894", + "10389": "uni2895", + "10390": "uni2896", + "10391": "uni2897", + "10392": "uni2898", + "10393": "uni2899", + "10394": "uni289A", + "10395": "uni289B", + "10396": "uni289C", + "10397": "uni289D", + "10398": "uni289E", + "10399": "uni289F", + "10400": "uni28A0", + "10401": "uni28A1", + "10402": "uni28A2", + "10403": "uni28A3", + "10404": "uni28A4", + "10405": "uni28A5", + "10406": "uni28A6", + "10407": "uni28A7", + "10408": "uni28A8", + "10409": "uni28A9", + "10410": "uni28AA", + "10411": "uni28AB", + "10412": "uni28AC", + "10413": "uni28AD", + "10414": "uni28AE", + "10415": "uni28AF", + "10416": "uni28B0", + "10417": "uni28B1", + "10418": "uni28B2", + "10419": "uni28B3", + "10420": "uni28B4", + "10421": "uni28B5", + "10422": "uni28B6", + "10423": "uni28B7", + "10424": "uni28B8", + "10425": "uni28B9", + "10426": "uni28BA", + "10427": "uni28BB", + "10428": "uni28BC", + "10429": "uni28BD", + "10430": "uni28BE", + "10431": "uni28BF", + "10432": "uni28C0", + "10433": "uni28C1", + "10434": "uni28C2", + "10435": "uni28C3", + "10436": "uni28C4", + "10437": "uni28C5", + "10438": "uni28C6", + "10439": "uni28C7", + "10440": "uni28C8", + "10441": "uni28C9", + "10442": "uni28CA", + "10443": "uni28CB", + "10444": "uni28CC", + "10445": "uni28CD", + "10446": "uni28CE", + "10447": "uni28CF", + "10448": "uni28D0", + "10449": "uni28D1", + "10450": "uni28D2", + "10451": "uni28D3", + "10452": "uni28D4", + "10453": "uni28D5", + "10454": "uni28D6", + "10455": "uni28D7", + "10456": "uni28D8", + "10457": "uni28D9", + "10458": "uni28DA", + "10459": "uni28DB", + "10460": "uni28DC", + "10461": "uni28DD", + "10462": "uni28DE", + "10463": "uni28DF", + "10464": "uni28E0", + "10465": "uni28E1", + "10466": "uni28E2", + "10467": "uni28E3", + "10468": "uni28E4", + "10469": "uni28E5", + "10470": "uni28E6", + "10471": "uni28E7", + "10472": "uni28E8", + "10473": "uni28E9", + "10474": "uni28EA", + "10475": "uni28EB", + "10476": "uni28EC", + "10477": "uni28ED", + "10478": "uni28EE", + "10479": "uni28EF", + "10480": "uni28F0", + "10481": "uni28F1", + "10482": "uni28F2", + "10483": "uni28F3", + "10484": "uni28F4", + "10485": "uni28F5", + "10486": "uni28F6", + "10487": "uni28F7", + "10488": "uni28F8", + "10489": "uni28F9", + "10490": "uni28FA", + "10491": "uni28FB", + "10492": "uni28FC", + "10493": "uni28FD", + "10494": "uni28FE", + "10495": "uni28FF", + "10502": "uni2906", + "10503": "uni2907", + "10506": "uni290A", + "10507": "uni290B", + "10560": "uni2940", + "10561": "uni2941", + "10627": "uni2983", + "10628": "uni2984", + "10702": "uni29CE", + "10703": "uni29CF", + "10704": "uni29D0", + "10705": "uni29D1", + "10706": "uni29D2", + "10707": "uni29D3", + "10708": "uni29D4", + "10709": "uni29D5", + "10731": "uni29EB", + "10746": "uni29FA", + "10747": "uni29FB", + "10752": "uni2A00", + "10753": "uni2A01", + "10754": "uni2A02", + "10764": "uni2A0C", + "10765": "uni2A0D", + "10766": "uni2A0E", + "10767": "uni2A0F", + "10768": "uni2A10", + "10769": "uni2A11", + "10770": "uni2A12", + "10771": "uni2A13", + "10772": "uni2A14", + "10773": "uni2A15", + "10774": "uni2A16", + "10775": "uni2A17", + "10776": "uni2A18", + "10777": "uni2A19", + "10778": "uni2A1A", + "10779": "uni2A1B", + "10780": "uni2A1C", + "10799": "uni2A2F", + "10858": "uni2A6A", + "10859": "uni2A6B", + "10877": "uni2A7D", + "10878": "uni2A7E", + "10879": "uni2A7F", + "10880": "uni2A80", + "10881": "uni2A81", + "10882": "uni2A82", + "10883": "uni2A83", + "10884": "uni2A84", + "10885": "uni2A85", + "10886": "uni2A86", + "10887": "uni2A87", + "10888": "uni2A88", + "10889": "uni2A89", + "10890": "uni2A8A", + "10891": "uni2A8B", + "10892": "uni2A8C", + "10893": "uni2A8D", + "10894": "uni2A8E", + "10895": "uni2A8F", + "10896": "uni2A90", + "10897": "uni2A91", + "10898": "uni2A92", + "10899": "uni2A93", + "10900": "uni2A94", + "10901": "uni2A95", + "10902": "uni2A96", + "10903": "uni2A97", + "10904": "uni2A98", + "10905": "uni2A99", + "10906": "uni2A9A", + "10907": "uni2A9B", + "10908": "uni2A9C", + "10909": "uni2A9D", + "10910": "uni2A9E", + "10911": "uni2A9F", + "10912": "uni2AA0", + "10926": "uni2AAE", + "10927": "uni2AAF", + "10928": "uni2AB0", + "10929": "uni2AB1", + "10930": "uni2AB2", + "10931": "uni2AB3", + "10932": "uni2AB4", + "10933": "uni2AB5", + "10934": "uni2AB6", + "10935": "uni2AB7", + "10936": "uni2AB8", + "10937": "uni2AB9", + "10938": "uni2ABA", + "11001": "uni2AF9", + "11002": "uni2AFA", + "11008": "uni2B00", + "11009": "uni2B01", + "11010": "uni2B02", + "11011": "uni2B03", + "11012": "uni2B04", + "11013": "uni2B05", + "11014": "uni2B06", + "11015": "uni2B07", + "11016": "uni2B08", + "11017": "uni2B09", + "11018": "uni2B0A", + "11019": "uni2B0B", + "11020": "uni2B0C", + "11021": "uni2B0D", + "11022": "uni2B0E", + "11023": "uni2B0F", + "11024": "uni2B10", + "11025": "uni2B11", + "11026": "uni2B12", + "11027": "uni2B13", + "11028": "uni2B14", + "11029": "uni2B15", + "11030": "uni2B16", + "11031": "uni2B17", + "11032": "uni2B18", + "11033": "uni2B19", + "11034": "uni2B1A", + "11039": "uni2B1F", + "11040": "uni2B20", + "11041": "uni2B21", + "11042": "uni2B22", + "11043": "uni2B23", + "11044": "uni2B24", + "11091": "uni2B53", + "11092": "uni2B54", + "11360": "uni2C60", + "11361": "uni2C61", + "11362": "uni2C62", + "11363": "uni2C63", + "11364": "uni2C64", + "11365": "uni2C65", + "11366": "uni2C66", + "11367": "uni2C67", + "11368": "uni2C68", + "11369": "uni2C69", + "11370": "uni2C6A", + "11371": "uni2C6B", + "11372": "uni2C6C", + "11373": "uni2C6D", + "11374": "uni2C6E", + "11375": "uni2C6F", + "11376": "uni2C70", + "11377": "uni2C71", + "11378": "uni2C72", + "11379": "uni2C73", + "11380": "uni2C74", + "11381": "uni2C75", + "11382": "uni2C76", + "11383": "uni2C77", + "11385": "uni2C79", + "11386": "uni2C7A", + "11387": "uni2C7B", + "11388": "uni2C7C", + "11389": "uni2C7D", + "11390": "uni2C7E", + "11391": "uni2C7F", + "11520": "uni2D00", + "11521": "uni2D01", + "11522": "uni2D02", + "11523": "uni2D03", + "11524": "uni2D04", + "11525": "uni2D05", + "11526": "uni2D06", + "11527": "uni2D07", + "11528": "uni2D08", + "11529": "uni2D09", + "11530": "uni2D0A", + "11531": "uni2D0B", + "11532": "uni2D0C", + "11533": "uni2D0D", + "11534": "uni2D0E", + "11535": "uni2D0F", + "11536": "uni2D10", + "11537": "uni2D11", + "11538": "uni2D12", + "11539": "uni2D13", + "11540": "uni2D14", + "11541": "uni2D15", + "11542": "uni2D16", + "11543": "uni2D17", + "11544": "uni2D18", + "11545": "uni2D19", + "11546": "uni2D1A", + "11547": "uni2D1B", + "11548": "uni2D1C", + "11549": "uni2D1D", + "11550": "uni2D1E", + "11551": "uni2D1F", + "11552": "uni2D20", + "11553": "uni2D21", + "11554": "uni2D22", + "11555": "uni2D23", + "11556": "uni2D24", + "11557": "uni2D25", + "11568": "uni2D30", + "11569": "uni2D31", + "11570": "uni2D32", + "11571": "uni2D33", + "11572": "uni2D34", + "11573": "uni2D35", + "11574": "uni2D36", + "11575": "uni2D37", + "11576": "uni2D38", + "11577": "uni2D39", + "11578": "uni2D3A", + "11579": "uni2D3B", + "11580": "uni2D3C", + "11581": "uni2D3D", + "11582": "uni2D3E", + "11583": "uni2D3F", + "11584": "uni2D40", + "11585": "uni2D41", + "11586": "uni2D42", + "11587": "uni2D43", + "11588": "uni2D44", + "11589": "uni2D45", + "11590": "uni2D46", + "11591": "uni2D47", + "11592": "uni2D48", + "11593": "uni2D49", + "11594": "uni2D4A", + "11595": "uni2D4B", + "11596": "uni2D4C", + "11597": "uni2D4D", + "11598": "uni2D4E", + "11599": "uni2D4F", + "11600": "uni2D50", + "11601": "uni2D51", + "11602": "uni2D52", + "11603": "uni2D53", + "11604": "uni2D54", + "11605": "uni2D55", + "11606": "uni2D56", + "11607": "uni2D57", + "11608": "uni2D58", + "11609": "uni2D59", + "11610": "uni2D5A", + "11611": "uni2D5B", + "11612": "uni2D5C", + "11613": "uni2D5D", + "11614": "uni2D5E", + "11615": "uni2D5F", + "11616": "uni2D60", + "11617": "uni2D61", + "11618": "uni2D62", + "11619": "uni2D63", + "11620": "uni2D64", + "11621": "uni2D65", + "11631": "uni2D6F", + "11800": "uni2E18", + "11807": "uni2E1F", + "11810": "uni2E22", + "11811": "uni2E23", + "11812": "uni2E24", + "11813": "uni2E25", + "11822": "uni2E2E", + "19904": "uni4DC0", + "19905": "uni4DC1", + "19906": "uni4DC2", + "19907": "uni4DC3", + "19908": "uni4DC4", + "19909": "uni4DC5", + "19910": "uni4DC6", + "19911": "uni4DC7", + "19912": "uni4DC8", + "19913": "uni4DC9", + "19914": "uni4DCA", + "19915": "uni4DCB", + "19916": "uni4DCC", + "19917": "uni4DCD", + "19918": "uni4DCE", + "19919": "uni4DCF", + "19920": "uni4DD0", + "19921": "uni4DD1", + "19922": "uni4DD2", + "19923": "uni4DD3", + "19924": "uni4DD4", + "19925": "uni4DD5", + "19926": "uni4DD6", + "19927": "uni4DD7", + "19928": "uni4DD8", + "19929": "uni4DD9", + "19930": "uni4DDA", + "19931": "uni4DDB", + "19932": "uni4DDC", + "19933": "uni4DDD", + "19934": "uni4DDE", + "19935": "uni4DDF", + "19936": "uni4DE0", + "19937": "uni4DE1", + "19938": "uni4DE2", + "19939": "uni4DE3", + "19940": "uni4DE4", + "19941": "uni4DE5", + "19942": "uni4DE6", + "19943": "uni4DE7", + "19944": "uni4DE8", + "19945": "uni4DE9", + "19946": "uni4DEA", + "19947": "uni4DEB", + "19948": "uni4DEC", + "19949": "uni4DED", + "19950": "uni4DEE", + "19951": "uni4DEF", + "19952": "uni4DF0", + "19953": "uni4DF1", + "19954": "uni4DF2", + "19955": "uni4DF3", + "19956": "uni4DF4", + "19957": "uni4DF5", + "19958": "uni4DF6", + "19959": "uni4DF7", + "19960": "uni4DF8", + "19961": "uni4DF9", + "19962": "uni4DFA", + "19963": "uni4DFB", + "19964": "uni4DFC", + "19965": "uni4DFD", + "19966": "uni4DFE", + "19967": "uni4DFF", + "42192": "uniA4D0", + "42193": "uniA4D1", + "42194": "uniA4D2", + "42195": "uniA4D3", + "42196": "uniA4D4", + "42197": "uniA4D5", + "42198": "uniA4D6", + "42199": "uniA4D7", + "42200": "uniA4D8", + "42201": "uniA4D9", + "42202": "uniA4DA", + "42203": "uniA4DB", + "42204": "uniA4DC", + "42205": "uniA4DD", + "42206": "uniA4DE", + "42207": "uniA4DF", + "42208": "uniA4E0", + "42209": "uniA4E1", + "42210": "uniA4E2", + "42211": "uniA4E3", + "42212": "uniA4E4", + "42213": "uniA4E5", + "42214": "uniA4E6", + "42215": "uniA4E7", + "42216": "uniA4E8", + "42217": "uniA4E9", + "42218": "uniA4EA", + "42219": "uniA4EB", + "42220": "uniA4EC", + "42221": "uniA4ED", + "42222": "uniA4EE", + "42223": "uniA4EF", + "42224": "uniA4F0", + "42225": "uniA4F1", + "42226": "uniA4F2", + "42227": "uniA4F3", + "42228": "uniA4F4", + "42229": "uniA4F5", + "42230": "uniA4F6", + "42231": "uniA4F7", + "42232": "uniA4F8", + "42233": "uniA4F9", + "42234": "uniA4FA", + "42235": "uniA4FB", + "42236": "uniA4FC", + "42237": "uniA4FD", + "42238": "uniA4FE", + "42239": "uniA4FF", + "42564": "uniA644", + "42565": "uniA645", + "42566": "uniA646", + "42567": "uniA647", + "42572": "uniA64C", + "42573": "uniA64D", + "42576": "uniA650", + "42577": "uniA651", + "42580": "uniA654", + "42581": "uniA655", + "42582": "uniA656", + "42583": "uniA657", + "42594": "uniA662", + "42595": "uniA663", + "42596": "uniA664", + "42597": "uniA665", + "42598": "uniA666", + "42599": "uniA667", + "42600": "uniA668", + "42601": "uniA669", + "42602": "uniA66A", + "42603": "uniA66B", + "42604": "uniA66C", + "42605": "uniA66D", + "42606": "uniA66E", + "42634": "uniA68A", + "42635": "uniA68B", + "42636": "uniA68C", + "42637": "uniA68D", + "42644": "uniA694", + "42645": "uniA695", + "42648": "uniA698", + "42649": "uniA699", + "42760": "uniA708", + "42761": "uniA709", + "42762": "uniA70A", + "42763": "uniA70B", + "42764": "uniA70C", + "42765": "uniA70D", + "42766": "uniA70E", + "42767": "uniA70F", + "42768": "uniA710", + "42769": "uniA711", + "42770": "uniA712", + "42771": "uniA713", + "42772": "uniA714", + "42773": "uniA715", + "42774": "uniA716", + "42779": "uniA71B", + "42780": "uniA71C", + "42781": "uniA71D", + "42782": "uniA71E", + "42783": "uniA71F", + "42786": "uniA722", + "42787": "uniA723", + "42788": "uniA724", + "42789": "uniA725", + "42790": "uniA726", + "42791": "uniA727", + "42792": "uniA728", + "42793": "uniA729", + "42794": "uniA72A", + "42795": "uniA72B", + "42800": "uniA730", + "42801": "uniA731", + "42802": "uniA732", + "42803": "uniA733", + "42804": "uniA734", + "42805": "uniA735", + "42806": "uniA736", + "42807": "uniA737", + "42808": "uniA738", + "42809": "uniA739", + "42810": "uniA73A", + "42811": "uniA73B", + "42812": "uniA73C", + "42813": "uniA73D", + "42814": "uniA73E", + "42815": "uniA73F", + "42816": "uniA740", + "42817": "uniA741", + "42822": "uniA746", + "42823": "uniA747", + "42824": "uniA748", + "42825": "uniA749", + "42826": "uniA74A", + "42827": "uniA74B", + "42830": "uniA74E", + "42831": "uniA74F", + "42832": "uniA750", + "42833": "uniA751", + "42834": "uniA752", + "42835": "uniA753", + "42838": "uniA756", + "42839": "uniA757", + "42852": "uniA764", + "42853": "uniA765", + "42854": "uniA766", + "42855": "uniA767", + "42880": "uniA780", + "42881": "uniA781", + "42882": "uniA782", + "42883": "uniA783", + "42889": "uniA789", + "42890": "uniA78A", + "42891": "uniA78B", + "42892": "uniA78C", + "42893": "uniA78D", + "42894": "uniA78E", + "42896": "uniA790", + "42897": "uniA791", + "42912": "uniA7A0", + "42913": "uniA7A1", + "42914": "uniA7A2", + "42915": "uniA7A3", + "42916": "uniA7A4", + "42917": "uniA7A5", + "42918": "uniA7A6", + "42919": "uniA7A7", + "42920": "uniA7A8", + "42921": "uniA7A9", + "42922": "uniA7AA", + "43000": "uniA7F8", + "43001": "uniA7F9", + "43002": "uniA7FA", + "43003": "uniA7FB", + "43004": "uniA7FC", + "43005": "uniA7FD", + "43006": "uniA7FE", + "43007": "uniA7FF", + "61184": "uni02E5.5", + "61185": "uni02E6.5", + "61186": "uni02E7.5", + "61187": "uni02E8.5", + "61188": "uni02E9.5", + "61189": "uni02E5.4", + "61190": "uni02E6.4", + "61191": "uni02E7.4", + "61192": "uni02E8.4", + "61193": "uni02E9.4", + "61194": "uni02E5.3", + "61195": "uni02E6.3", + "61196": "uni02E7.3", + "61197": "uni02E8.3", + "61198": "uni02E9.3", + "61199": "uni02E5.2", + "61200": "uni02E6.2", + "61201": "uni02E7.2", + "61202": "uni02E8.2", + "61203": "uni02E9.2", + "61204": "uni02E5.1", + "61205": "uni02E6.1", + "61206": "uni02E7.1", + "61207": "uni02E8.1", + "61208": "uni02E9.1", + "61209": "stem", + "62464": "uniF400", + "62465": "uniF401", + "62466": "uniF402", + "62467": "uniF403", + "62468": "uniF404", + "62469": "uniF405", + "62470": "uniF406", + "62471": "uniF407", + "62472": "uniF408", + "62473": "uniF409", + "62474": "uniF40A", + "62475": "uniF40B", + "62476": "uniF40C", + "62477": "uniF40D", + "62478": "uniF40E", + "62479": "uniF40F", + "62480": "uniF410", + "62481": "uniF411", + "62482": "uniF412", + "62483": "uniF413", + "62484": "uniF414", + "62485": "uniF415", + "62486": "uniF416", + "62487": "uniF417", + "62488": "uniF418", + "62489": "uniF419", + "62490": "uniF41A", + "62491": "uniF41B", + "62492": "uniF41C", + "62493": "uniF41D", + "62494": "uniF41E", + "62495": "uniF41F", + "62496": "uniF420", + "62497": "uniF421", + "62498": "uniF422", + "62499": "uniF423", + "62500": "uniF424", + "62501": "uniF425", + "62502": "uniF426", + "62504": "uniF428", + "62505": "uniF429", + "62506": "uniF42A", + "62507": "uniF42B", + "62508": "uniF42C", + "62509": "uniF42D", + "62510": "uniF42E", + "62511": "uniF42F", + "62512": "uniF430", + "62513": "uniF431", + "62514": "uniF432", + "62515": "uniF433", + "62516": "uniF434", + "62517": "uniF435", + "62518": "uniF436", + "62519": "uniF437", + "62520": "uniF438", + "62521": "uniF439", + "62522": "uniF43A", + "62523": "uniF43B", + "62524": "uniF43C", + "62525": "uniF43D", + "62526": "uniF43E", + "62527": "uniF43F", + "62528": "uniF440", + "62529": "uniF441", + "63173": "uniF6C5", + "64256": "uniFB00", + "64257": "fi", + "64258": "fl", + "64259": "uniFB03", + "64260": "uniFB04", + "64261": "uniFB05", + "64262": "uniFB06", + "64275": "uniFB13", + "64276": "uniFB14", + "64277": "uniFB15", + "64278": "uniFB16", + "64279": "uniFB17", + "64285": "uniFB1D", + "64286": "uniFB1E", + "64287": "uniFB1F", + "64288": "uniFB20", + "64289": "uniFB21", + "64290": "uniFB22", + "64291": "uniFB23", + "64292": "uniFB24", + "64293": "uniFB25", + "64294": "uniFB26", + "64295": "uniFB27", + "64296": "uniFB28", + "64297": "uniFB29", + "64298": "uniFB2A", + "64299": "uniFB2B", + "64300": "uniFB2C", + "64301": "uniFB2D", + "64302": "uniFB2E", + "64303": "uniFB2F", + "64304": "uniFB30", + "64305": "uniFB31", + "64306": "uniFB32", + "64307": "uniFB33", + "64308": "uniFB34", + "64309": "uniFB35", + "64310": "uniFB36", + "64312": "uniFB38", + "64313": "uniFB39", + "64314": "uniFB3A", + "64315": "uniFB3B", + "64316": "uniFB3C", + "64318": "uniFB3E", + "64320": "uniFB40", + "64321": "uniFB41", + "64323": "uniFB43", + "64324": "uniFB44", + "64326": "uniFB46", + "64327": "uniFB47", + "64328": "uniFB48", + "64329": "uniFB49", + "64330": "uniFB4A", + "64331": "uniFB4B", + "64332": "uniFB4C", + "64333": "uniFB4D", + "64334": "uniFB4E", + "64335": "uniFB4F", + "64338": "uniFB52", + "64339": "uniFB53", + "64340": "uniFB54", + "64341": "uniFB55", + "64342": "uniFB56", + "64343": "uniFB57", + "64344": "uniFB58", + "64345": "uniFB59", + "64346": "uniFB5A", + "64347": "uniFB5B", + "64348": "uniFB5C", + "64349": "uniFB5D", + "64350": "uniFB5E", + "64351": "uniFB5F", + "64352": "uniFB60", + "64353": "uniFB61", + "64354": "uniFB62", + "64355": "uniFB63", + "64356": "uniFB64", + "64357": "uniFB65", + "64358": "uniFB66", + "64359": "uniFB67", + "64360": "uniFB68", + "64361": "uniFB69", + "64362": "uniFB6A", + "64363": "uniFB6B", + "64364": "uniFB6C", + "64365": "uniFB6D", + "64366": "uniFB6E", + "64367": "uniFB6F", + "64368": "uniFB70", + "64369": "uniFB71", + "64370": "uniFB72", + "64371": "uniFB73", + "64372": "uniFB74", + "64373": "uniFB75", + "64374": "uniFB76", + "64375": "uniFB77", + "64376": "uniFB78", + "64377": "uniFB79", + "64378": "uniFB7A", + "64379": "uniFB7B", + "64380": "uniFB7C", + "64381": "uniFB7D", + "64382": "uniFB7E", + "64383": "uniFB7F", + "64384": "uniFB80", + "64385": "uniFB81", + "64386": "uniFB82", + "64387": "uniFB83", + "64388": "uniFB84", + "64389": "uniFB85", + "64390": "uniFB86", + "64391": "uniFB87", + "64392": "uniFB88", + "64393": "uniFB89", + "64394": "uniFB8A", + "64395": "uniFB8B", + "64396": "uniFB8C", + "64397": "uniFB8D", + "64398": "uniFB8E", + "64399": "uniFB8F", + "64400": "uniFB90", + "64401": "uniFB91", + "64402": "uniFB92", + "64403": "uniFB93", + "64404": "uniFB94", + "64405": "uniFB95", + "64406": "uniFB96", + "64407": "uniFB97", + "64408": "uniFB98", + "64409": "uniFB99", + "64410": "uniFB9A", + "64411": "uniFB9B", + "64412": "uniFB9C", + "64413": "uniFB9D", + "64414": "uniFB9E", + "64415": "uniFB9F", + "64416": "uniFBA0", + "64417": "uniFBA1", + "64418": "uniFBA2", + "64419": "uniFBA3", + "64426": "uniFBAA", + "64427": "uniFBAB", + "64428": "uniFBAC", + "64429": "uniFBAD", + "64467": "uniFBD3", + "64468": "uniFBD4", + "64469": "uniFBD5", + "64470": "uniFBD6", + "64471": "uniFBD7", + "64472": "uniFBD8", + "64473": "uniFBD9", + "64474": "uniFBDA", + "64475": "uniFBDB", + "64476": "uniFBDC", + "64478": "uniFBDE", + "64479": "uniFBDF", + "64484": "uniFBE4", + "64485": "uniFBE5", + "64486": "uniFBE6", + "64487": "uniFBE7", + "64488": "uniFBE8", + "64489": "uniFBE9", + "64508": "uniFBFC", + "64509": "uniFBFD", + "64510": "uniFBFE", + "64511": "uniFBFF", + "65024": "uniFE00", + "65025": "uniFE01", + "65026": "uniFE02", + "65027": "uniFE03", + "65028": "uniFE04", + "65029": "uniFE05", + "65030": "uniFE06", + "65031": "uniFE07", + "65032": "uniFE08", + "65033": "uniFE09", + "65034": "uniFE0A", + "65035": "uniFE0B", + "65036": "uniFE0C", + "65037": "uniFE0D", + "65038": "uniFE0E", + "65039": "uniFE0F", + "65056": "uniFE20", + "65057": "uniFE21", + "65058": "uniFE22", + "65059": "uniFE23", + "65136": "uniFE70", + "65137": "uniFE71", + "65138": "uniFE72", + "65139": "uniFE73", + "65140": "uniFE74", + "65142": "uniFE76", + "65143": "uniFE77", + "65144": "uniFE78", + "65145": "uniFE79", + "65146": "uniFE7A", + "65147": "uniFE7B", + "65148": "uniFE7C", + "65149": "uniFE7D", + "65150": "uniFE7E", + "65151": "uniFE7F", + "65152": "uniFE80", + "65153": "uniFE81", + "65154": "uniFE82", + "65155": "uniFE83", + "65156": "uniFE84", + "65157": "uniFE85", + "65158": "uniFE86", + "65159": "uniFE87", + "65160": "uniFE88", + "65161": "uniFE89", + "65162": "uniFE8A", + "65163": "uniFE8B", + "65164": "uniFE8C", + "65165": "uniFE8D", + "65166": "uniFE8E", + "65167": "uniFE8F", + "65168": "uniFE90", + "65169": "uniFE91", + "65170": "uniFE92", + "65171": "uniFE93", + "65172": "uniFE94", + "65173": "uniFE95", + "65174": "uniFE96", + "65175": "uniFE97", + "65176": "uniFE98", + "65177": "uniFE99", + "65178": "uniFE9A", + "65179": "uniFE9B", + "65180": "uniFE9C", + "65181": "uniFE9D", + "65182": "uniFE9E", + "65183": "uniFE9F", + "65184": "uniFEA0", + "65185": "uniFEA1", + "65186": "uniFEA2", + "65187": "uniFEA3", + "65188": "uniFEA4", + "65189": "uniFEA5", + "65190": "uniFEA6", + "65191": "uniFEA7", + "65192": "uniFEA8", + "65193": "uniFEA9", + "65194": "uniFEAA", + "65195": "uniFEAB", + "65196": "uniFEAC", + "65197": "uniFEAD", + "65198": "uniFEAE", + "65199": "uniFEAF", + "65200": "uniFEB0", + "65201": "uniFEB1", + "65202": "uniFEB2", + "65203": "uniFEB3", + "65204": "uniFEB4", + "65205": "uniFEB5", + "65206": "uniFEB6", + "65207": "uniFEB7", + "65208": "uniFEB8", + "65209": "uniFEB9", + "65210": "uniFEBA", + "65211": "uniFEBB", + "65212": "uniFEBC", + "65213": "uniFEBD", + "65214": "uniFEBE", + "65215": "uniFEBF", + "65216": "uniFEC0", + "65217": "uniFEC1", + "65218": "uniFEC2", + "65219": "uniFEC3", + "65220": "uniFEC4", + "65221": "uniFEC5", + "65222": "uniFEC6", + "65223": "uniFEC7", + "65224": "uniFEC8", + "65225": "uniFEC9", + "65226": "uniFECA", + "65227": "uniFECB", + "65228": "uniFECC", + "65229": "uniFECD", + "65230": "uniFECE", + "65231": "uniFECF", + "65232": "uniFED0", + "65233": "uniFED1", + "65234": "uniFED2", + "65235": "uniFED3", + "65236": "uniFED4", + "65237": "uniFED5", + "65238": "uniFED6", + "65239": "uniFED7", + "65240": "uniFED8", + "65241": "uniFED9", + "65242": "uniFEDA", + "65243": "uniFEDB", + "65244": "uniFEDC", + "65245": "uniFEDD", + "65246": "uniFEDE", + "65247": "uniFEDF", + "65248": "uniFEE0", + "65249": "uniFEE1", + "65250": "uniFEE2", + "65251": "uniFEE3", + "65252": "uniFEE4", + "65253": "uniFEE5", + "65254": "uniFEE6", + "65255": "uniFEE7", + "65256": "uniFEE8", + "65257": "uniFEE9", + "65258": "uniFEEA", + "65259": "uniFEEB", + "65260": "uniFEEC", + "65261": "uniFEED", + "65262": "uniFEEE", + "65263": "uniFEEF", + "65264": "uniFEF0", + "65265": "uniFEF1", + "65266": "uniFEF2", + "65267": "uniFEF3", + "65268": "uniFEF4", + "65269": "uniFEF5", + "65270": "uniFEF6", + "65271": "uniFEF7", + "65272": "uniFEF8", + "65273": "uniFEF9", + "65274": "uniFEFA", + "65275": "uniFEFB", + "65276": "uniFEFC", + "65279": "uniFEFF", + "65529": "uniFFF9", + "65530": "uniFFFA", + "65531": "uniFFFB", + "65532": "uniFFFC", + "65533": "uniFFFD" + }, + "isUnicode": true, + "EncodingScheme": "FontSpecific", + "FontName": "DejaVu Sans", + "FullName": "DejaVu Sans Bold", + "Version": "Version 2.37", + "PostScriptName": "DejaVuSans-Bold", + "Weight": "Bold", + "ItalicAngle": "0", + "IsFixedPitch": "false", + "UnderlineThickness": "44", + "UnderlinePosition": "-63", + "FontHeightOffset": "0", + "Ascender": "928", + "Descender": "-236", + "FontBBox": [ + "-1069", + "-415", + "1975", + "1174" + ], + "StartCharMetrics": "6196", + "C": { + "32": 348, + "33": 456, + "34": 521, + "35": 838, + "36": 696, + "37": 1002, + "38": 872, + "39": 306, + "40": 457, + "41": 457, + "42": 523, + "43": 838, + "44": 380, + "45": 415, + "46": 380, + "47": 365, + "48": 696, + "49": 696, + "50": 696, + "51": 696, + "52": 696, + "53": 696, + "54": 696, + "55": 696, + "56": 696, + "57": 696, + "58": 400, + "59": 400, + "60": 838, + "61": 838, + "62": 838, + "63": 580, + "64": 1000, + "65": 774, + "66": 762, + "67": 734, + "68": 830, + "69": 683, + "70": 683, + "71": 821, + "72": 837, + "73": 372, + "74": 372, + "75": 775, + "76": 637, + "77": 995, + "78": 837, + "79": 850, + "80": 733, + "81": 850, + "82": 770, + "83": 720, + "84": 682, + "85": 812, + "86": 774, + "87": 1103, + "88": 771, + "89": 724, + "90": 725, + "91": 457, + "92": 365, + "93": 457, + "94": 838, + "95": 500, + "96": 500, + "97": 675, + "98": 716, + "99": 593, + "100": 716, + "101": 678, + "102": 435, + "103": 716, + "104": 712, + "105": 343, + "106": 343, + "107": 665, + "108": 343, + "109": 1042, + "110": 712, + "111": 687, + "112": 716, + "113": 716, + "114": 493, + "115": 595, + "116": 478, + "117": 712, + "118": 652, + "119": 924, + "120": 645, + "121": 652, + "122": 582, + "123": 712, + "124": 365, + "125": 712, + "126": 838, + "160": 348, + "161": 456, + "162": 696, + "163": 696, + "164": 636, + "165": 696, + "166": 365, + "167": 500, + "168": 500, + "169": 1000, + "170": 564, + "171": 646, + "172": 838, + "173": 415, + "174": 1000, + "175": 500, + "176": 500, + "177": 838, + "178": 438, + "179": 438, + "180": 500, + "181": 736, + "182": 636, + "183": 380, + "184": 500, + "185": 438, + "186": 564, + "187": 646, + "188": 1035, + "189": 1035, + "190": 1035, + "191": 580, + "192": 774, + "193": 774, + "194": 774, + "195": 774, + "196": 774, + "197": 774, + "198": 1085, + "199": 734, + "200": 683, + "201": 683, + "202": 683, + "203": 683, + "204": 372, + "205": 372, + "206": 372, + "207": 372, + "208": 838, + "209": 837, + "210": 850, + "211": 850, + "212": 850, + "213": 850, + "214": 850, + "215": 838, + "216": 850, + "217": 812, + "218": 812, + "219": 812, + "220": 812, + "221": 724, + "222": 738, + "223": 719, + "224": 675, + "225": 675, + "226": 675, + "227": 675, + "228": 675, + "229": 675, + "230": 1048, + "231": 593, + "232": 678, + "233": 678, + "234": 678, + "235": 678, + "236": 343, + "237": 343, + "238": 343, + "239": 343, + "240": 687, + "241": 712, + "242": 687, + "243": 687, + "244": 687, + "245": 687, + "246": 687, + "247": 838, + "248": 687, + "249": 712, + "250": 712, + "251": 712, + "252": 712, + "253": 652, + "254": 716, + "255": 652, + "256": 774, + "257": 675, + "258": 774, + "259": 675, + "260": 774, + "261": 675, + "262": 734, + "263": 593, + "264": 734, + "265": 593, + "266": 734, + "267": 593, + "268": 734, + "269": 593, + "270": 830, + "271": 716, + "272": 838, + "273": 716, + "274": 683, + "275": 678, + "276": 683, + "277": 678, + "278": 683, + "279": 678, + "280": 683, + "281": 678, + "282": 683, + "283": 678, + "284": 821, + "285": 716, + "286": 821, + "287": 716, + "288": 821, + "289": 716, + "290": 821, + "291": 716, + "292": 837, + "293": 712, + "294": 974, + "295": 790, + "296": 372, + "297": 343, + "298": 372, + "299": 343, + "300": 372, + "301": 343, + "302": 372, + "303": 343, + "304": 372, + "305": 343, + "306": 744, + "307": 686, + "308": 372, + "309": 343, + "310": 775, + "311": 665, + "312": 665, + "313": 637, + "314": 343, + "315": 637, + "316": 343, + "317": 637, + "318": 479, + "319": 637, + "320": 557, + "321": 642, + "322": 371, + "323": 837, + "324": 712, + "325": 837, + "326": 712, + "327": 837, + "328": 712, + "329": 983, + "330": 837, + "331": 712, + "332": 850, + "333": 687, + "334": 850, + "335": 687, + "336": 850, + "337": 687, + "338": 1167, + "339": 1094, + "340": 770, + "341": 493, + "342": 770, + "343": 493, + "344": 770, + "345": 493, + "346": 720, + "347": 595, + "348": 720, + "349": 595, + "350": 720, + "351": 595, + "352": 720, + "353": 595, + "354": 682, + "355": 478, + "356": 682, + "357": 478, + "358": 682, + "359": 478, + "360": 812, + "361": 712, + "362": 812, + "363": 712, + "364": 812, + "365": 712, + "366": 812, + "367": 712, + "368": 812, + "369": 712, + "370": 812, + "371": 712, + "372": 1103, + "373": 924, + "374": 724, + "375": 652, + "376": 724, + "377": 725, + "378": 582, + "379": 725, + "380": 582, + "381": 725, + "382": 582, + "383": 435, + "384": 716, + "385": 811, + "386": 762, + "387": 716, + "388": 762, + "389": 716, + "390": 734, + "391": 734, + "392": 593, + "393": 838, + "394": 879, + "395": 757, + "396": 716, + "397": 688, + "398": 683, + "399": 849, + "400": 696, + "401": 683, + "402": 435, + "403": 821, + "404": 793, + "405": 1045, + "406": 436, + "407": 389, + "408": 775, + "409": 665, + "410": 360, + "411": 592, + "412": 1042, + "413": 837, + "414": 712, + "415": 850, + "416": 874, + "417": 687, + "418": 1083, + "419": 912, + "420": 782, + "421": 716, + "422": 770, + "423": 720, + "424": 595, + "425": 683, + "426": 552, + "427": 478, + "428": 707, + "429": 478, + "430": 682, + "431": 835, + "432": 712, + "433": 850, + "434": 813, + "435": 797, + "436": 778, + "437": 725, + "438": 582, + "439": 772, + "440": 772, + "441": 641, + "442": 582, + "443": 696, + "444": 772, + "445": 641, + "446": 573, + "447": 716, + "448": 372, + "449": 659, + "450": 544, + "451": 372, + "452": 1555, + "453": 1412, + "454": 1298, + "455": 1009, + "456": 980, + "457": 686, + "458": 1209, + "459": 1180, + "460": 1055, + "461": 774, + "462": 675, + "463": 372, + "464": 343, + "465": 850, + "466": 687, + "467": 812, + "468": 712, + "469": 812, + "470": 712, + "471": 812, + "472": 712, + "473": 812, + "474": 712, + "475": 812, + "476": 712, + "477": 678, + "478": 774, + "479": 675, + "480": 774, + "481": 675, + "482": 1085, + "483": 1048, + "484": 821, + "485": 716, + "486": 821, + "487": 716, + "488": 775, + "489": 665, + "490": 850, + "491": 687, + "492": 850, + "493": 687, + "494": 772, + "495": 582, + "496": 343, + "497": 1555, + "498": 1412, + "499": 1298, + "500": 821, + "501": 716, + "502": 1289, + "503": 787, + "504": 837, + "505": 712, + "506": 774, + "507": 675, + "508": 1085, + "509": 1048, + "510": 850, + "511": 687, + "512": 774, + "513": 675, + "514": 774, + "515": 675, + "516": 683, + "517": 678, + "518": 683, + "519": 678, + "520": 372, + "521": 343, + "522": 372, + "523": 343, + "524": 850, + "525": 687, + "526": 850, + "527": 687, + "528": 770, + "529": 493, + "530": 770, + "531": 493, + "532": 812, + "533": 712, + "534": 812, + "535": 712, + "536": 720, + "537": 595, + "538": 682, + "539": 478, + "540": 690, + "541": 607, + "542": 837, + "543": 712, + "544": 837, + "545": 865, + "546": 809, + "547": 659, + "548": 725, + "549": 582, + "550": 774, + "551": 675, + "552": 683, + "553": 678, + "554": 850, + "555": 687, + "556": 850, + "557": 687, + "558": 850, + "559": 687, + "560": 850, + "561": 687, + "562": 724, + "563": 652, + "564": 492, + "565": 867, + "566": 512, + "567": 343, + "568": 1088, + "569": 1088, + "570": 774, + "571": 734, + "572": 593, + "573": 637, + "574": 682, + "575": 595, + "576": 582, + "577": 782, + "578": 614, + "579": 762, + "580": 812, + "581": 774, + "582": 683, + "583": 678, + "584": 372, + "585": 343, + "586": 860, + "587": 791, + "588": 770, + "589": 493, + "590": 724, + "591": 652, + "592": 675, + "593": 716, + "594": 716, + "595": 716, + "596": 593, + "597": 593, + "598": 717, + "599": 792, + "600": 678, + "601": 678, + "602": 876, + "603": 557, + "604": 545, + "605": 815, + "606": 731, + "607": 343, + "608": 792, + "609": 716, + "610": 627, + "611": 644, + "612": 635, + "613": 712, + "614": 712, + "615": 712, + "616": 545, + "617": 440, + "618": 545, + "619": 559, + "620": 693, + "621": 343, + "622": 841, + "623": 1042, + "624": 1042, + "625": 1042, + "626": 712, + "627": 793, + "628": 707, + "629": 687, + "630": 909, + "631": 681, + "632": 796, + "633": 538, + "634": 538, + "635": 650, + "636": 493, + "637": 493, + "638": 596, + "639": 596, + "640": 642, + "641": 642, + "642": 595, + "643": 415, + "644": 435, + "645": 605, + "646": 552, + "647": 478, + "648": 478, + "649": 920, + "650": 772, + "651": 670, + "652": 652, + "653": 924, + "654": 652, + "655": 724, + "656": 694, + "657": 684, + "658": 641, + "659": 641, + "660": 573, + "661": 573, + "662": 573, + "663": 573, + "664": 850, + "665": 633, + "666": 731, + "667": 685, + "668": 691, + "669": 343, + "670": 732, + "671": 539, + "672": 792, + "673": 573, + "674": 573, + "675": 1156, + "676": 1214, + "677": 1155, + "678": 975, + "679": 769, + "680": 929, + "681": 1026, + "682": 862, + "683": 780, + "684": 591, + "685": 415, + "686": 677, + "687": 789, + "688": 456, + "689": 456, + "690": 219, + "691": 315, + "692": 315, + "693": 315, + "694": 411, + "695": 591, + "696": 417, + "697": 302, + "698": 521, + "699": 380, + "700": 380, + "701": 380, + "702": 366, + "703": 366, + "704": 326, + "705": 326, + "706": 500, + "707": 500, + "708": 500, + "709": 500, + "710": 500, + "711": 500, + "712": 306, + "713": 500, + "714": 500, + "715": 500, + "716": 306, + "717": 500, + "718": 500, + "719": 500, + "720": 337, + "721": 337, + "722": 366, + "723": 366, + "724": 500, + "725": 500, + "726": 416, + "727": 328, + "728": 500, + "729": 500, + "730": 500, + "731": 500, + "732": 500, + "733": 500, + "734": 351, + "735": 500, + "736": 412, + "737": 219, + "738": 381, + "739": 413, + "740": 326, + "741": 500, + "742": 500, + "743": 500, + "744": 500, + "745": 500, + "748": 500, + "749": 500, + "750": 657, + "755": 500, + "759": 500, + "768": 0, + "769": 0, + "770": 0, + "771": 0, + "772": 0, + "773": 0, + "774": 0, + "775": 0, + "776": 0, + "777": 0, + "778": 0, + "779": 0, + "780": 0, + "781": 0, + "782": 0, + "783": 0, + "784": 0, + "785": 0, + "786": 0, + "787": 0, + "788": 0, + "789": 0, + "790": 0, + "791": 0, + "792": 0, + "793": 0, + "794": 0, + "795": 0, + "796": 0, + "797": 0, + "798": 0, + "799": 0, + "800": 0, + "801": 0, + "802": 0, + "803": 0, + "804": 0, + "805": 0, + "806": 0, + "807": 0, + "808": 0, + "809": 0, + "810": 0, + "811": 0, + "812": 0, + "813": 0, + "814": 0, + "815": 0, + "816": 0, + "817": 0, + "818": 0, + "819": 0, + "820": 0, + "821": 0, + "822": 0, + "823": 0, + "824": 0, + "825": 0, + "826": 0, + "827": 0, + "828": 0, + "829": 0, + "830": 0, + "831": 0, + "832": 0, + "833": 0, + "834": 0, + "835": 0, + "836": 0, + "837": 0, + "838": 0, + "839": 0, + "840": 0, + "841": 0, + "842": 0, + "843": 0, + "844": 0, + "845": 0, + "846": 0, + "847": 0, + "849": 0, + "850": 0, + "851": 0, + "855": 0, + "856": 0, + "858": 0, + "860": 0, + "861": 0, + "862": 0, + "863": 0, + "864": 0, + "865": 0, + "866": 0, + "880": 698, + "881": 565, + "882": 1022, + "883": 836, + "884": 302, + "885": 302, + "886": 837, + "887": 701, + "890": 500, + "891": 593, + "892": 550, + "893": 549, + "894": 400, + "895": 372, + "900": 441, + "901": 500, + "902": 797, + "903": 380, + "904": 846, + "905": 1009, + "906": 563, + "908": 891, + "910": 980, + "911": 894, + "912": 390, + "913": 774, + "914": 762, + "915": 637, + "916": 774, + "917": 683, + "918": 725, + "919": 837, + "920": 850, + "921": 372, + "922": 775, + "923": 774, + "924": 995, + "925": 837, + "926": 632, + "927": 850, + "928": 837, + "929": 733, + "931": 683, + "932": 682, + "933": 724, + "934": 850, + "935": 771, + "936": 850, + "937": 850, + "938": 372, + "939": 724, + "940": 687, + "941": 557, + "942": 712, + "943": 390, + "944": 675, + "945": 687, + "946": 716, + "947": 681, + "948": 687, + "949": 557, + "950": 591, + "951": 712, + "952": 687, + "953": 390, + "954": 710, + "955": 633, + "956": 736, + "957": 681, + "958": 591, + "959": 687, + "960": 791, + "961": 716, + "962": 593, + "963": 779, + "964": 638, + "965": 675, + "966": 782, + "967": 645, + "968": 794, + "969": 869, + "970": 390, + "971": 675, + "972": 687, + "973": 675, + "974": 869, + "975": 775, + "976": 651, + "977": 661, + "978": 746, + "979": 981, + "980": 746, + "981": 796, + "982": 869, + "983": 744, + "984": 850, + "985": 687, + "986": 734, + "987": 593, + "988": 683, + "989": 494, + "990": 702, + "991": 660, + "992": 919, + "993": 627, + "994": 1093, + "995": 837, + "996": 832, + "997": 716, + "998": 928, + "999": 744, + "1000": 733, + "1001": 650, + "1002": 789, + "1003": 671, + "1004": 752, + "1005": 716, + "1006": 682, + "1007": 590, + "1008": 744, + "1009": 716, + "1010": 593, + "1011": 343, + "1012": 850, + "1013": 645, + "1014": 644, + "1015": 738, + "1016": 716, + "1017": 734, + "1018": 995, + "1019": 732, + "1020": 716, + "1021": 698, + "1022": 734, + "1023": 698, + "1024": 683, + "1025": 683, + "1026": 878, + "1027": 637, + "1028": 734, + "1029": 720, + "1030": 372, + "1031": 372, + "1032": 372, + "1033": 1154, + "1034": 1130, + "1035": 878, + "1036": 817, + "1037": 837, + "1038": 771, + "1039": 837, + "1040": 774, + "1041": 762, + "1042": 762, + "1043": 637, + "1044": 891, + "1045": 683, + "1046": 1224, + "1047": 710, + "1048": 837, + "1049": 837, + "1050": 817, + "1051": 831, + "1052": 995, + "1053": 837, + "1054": 850, + "1055": 837, + "1056": 733, + "1057": 734, + "1058": 682, + "1059": 771, + "1060": 992, + "1061": 771, + "1062": 928, + "1063": 808, + "1064": 1235, + "1065": 1326, + "1066": 939, + "1067": 1036, + "1068": 762, + "1069": 734, + "1070": 1174, + "1071": 770, + "1072": 675, + "1073": 698, + "1074": 633, + "1075": 522, + "1076": 808, + "1077": 678, + "1078": 995, + "1079": 581, + "1080": 701, + "1081": 701, + "1082": 679, + "1083": 732, + "1084": 817, + "1085": 691, + "1086": 687, + "1087": 691, + "1088": 716, + "1089": 593, + "1090": 580, + "1091": 652, + "1092": 992, + "1093": 645, + "1094": 741, + "1095": 687, + "1096": 1062, + "1097": 1105, + "1098": 751, + "1099": 904, + "1100": 632, + "1101": 593, + "1102": 972, + "1103": 642, + "1104": 678, + "1105": 678, + "1106": 714, + "1107": 522, + "1108": 593, + "1109": 595, + "1110": 343, + "1111": 343, + "1112": 343, + "1113": 991, + "1114": 956, + "1115": 734, + "1116": 679, + "1117": 701, + "1118": 652, + "1119": 691, + "1120": 1093, + "1121": 869, + "1122": 840, + "1123": 736, + "1124": 1012, + "1125": 839, + "1126": 992, + "1127": 832, + "1128": 1358, + "1129": 1121, + "1130": 850, + "1131": 687, + "1132": 1236, + "1133": 1007, + "1134": 696, + "1135": 557, + "1136": 1075, + "1137": 1061, + "1138": 850, + "1139": 687, + "1140": 850, + "1141": 695, + "1142": 850, + "1143": 695, + "1144": 1148, + "1145": 1043, + "1146": 1074, + "1147": 863, + "1148": 1405, + "1149": 1173, + "1150": 1093, + "1151": 869, + "1152": 734, + "1153": 593, + "1154": 652, + "1155": 0, + "1156": 0, + "1157": 0, + "1158": 0, + "1159": 0, + "1160": 418, + "1161": 418, + "1162": 957, + "1163": 807, + "1164": 762, + "1165": 611, + "1166": 733, + "1167": 716, + "1168": 637, + "1169": 522, + "1170": 666, + "1171": 543, + "1172": 808, + "1173": 669, + "1174": 1224, + "1175": 995, + "1176": 710, + "1177": 581, + "1178": 775, + "1179": 679, + "1180": 817, + "1181": 679, + "1182": 817, + "1183": 679, + "1184": 1015, + "1185": 826, + "1186": 956, + "1187": 808, + "1188": 1103, + "1189": 874, + "1190": 1273, + "1191": 1017, + "1192": 952, + "1193": 858, + "1194": 734, + "1195": 593, + "1196": 682, + "1197": 580, + "1198": 724, + "1199": 652, + "1200": 724, + "1201": 652, + "1202": 771, + "1203": 645, + "1204": 1112, + "1205": 1000, + "1206": 808, + "1207": 687, + "1208": 808, + "1209": 687, + "1210": 808, + "1211": 712, + "1212": 1026, + "1213": 810, + "1214": 1026, + "1215": 810, + "1216": 372, + "1217": 1224, + "1218": 995, + "1219": 775, + "1220": 630, + "1221": 951, + "1222": 805, + "1223": 837, + "1224": 691, + "1225": 957, + "1226": 807, + "1227": 808, + "1228": 687, + "1229": 1115, + "1230": 933, + "1231": 343, + "1232": 774, + "1233": 675, + "1234": 774, + "1235": 675, + "1236": 1085, + "1237": 1048, + "1238": 683, + "1239": 678, + "1240": 849, + "1241": 678, + "1242": 849, + "1243": 678, + "1244": 1224, + "1245": 995, + "1246": 710, + "1247": 581, + "1248": 772, + "1249": 641, + "1250": 837, + "1251": 701, + "1252": 837, + "1253": 701, + "1254": 850, + "1255": 687, + "1256": 850, + "1257": 687, + "1258": 850, + "1259": 687, + "1260": 734, + "1261": 593, + "1262": 771, + "1263": 652, + "1264": 771, + "1265": 652, + "1266": 771, + "1267": 652, + "1268": 808, + "1269": 687, + "1270": 637, + "1271": 522, + "1272": 1036, + "1273": 904, + "1274": 666, + "1275": 543, + "1276": 771, + "1277": 645, + "1278": 771, + "1279": 645, + "1280": 762, + "1281": 608, + "1282": 1159, + "1283": 893, + "1284": 1119, + "1285": 920, + "1286": 828, + "1287": 693, + "1288": 1242, + "1289": 1017, + "1290": 1289, + "1291": 1013, + "1292": 839, + "1293": 638, + "1294": 938, + "1295": 803, + "1296": 696, + "1297": 557, + "1298": 831, + "1299": 732, + "1300": 1286, + "1301": 1068, + "1302": 1065, + "1303": 979, + "1304": 1082, + "1305": 1013, + "1306": 850, + "1307": 716, + "1308": 1103, + "1309": 924, + "1310": 817, + "1311": 679, + "1312": 1267, + "1313": 1059, + "1314": 1273, + "1315": 1017, + "1316": 957, + "1317": 807, + "1329": 813, + "1330": 729, + "1331": 728, + "1332": 731, + "1333": 729, + "1334": 733, + "1335": 652, + "1336": 720, + "1337": 903, + "1338": 728, + "1339": 666, + "1340": 558, + "1341": 961, + "1342": 788, + "1343": 713, + "1344": 651, + "1345": 730, + "1346": 715, + "1347": 704, + "1348": 780, + "1349": 689, + "1350": 715, + "1351": 708, + "1352": 731, + "1353": 677, + "1354": 867, + "1355": 711, + "1356": 780, + "1357": 731, + "1358": 715, + "1359": 693, + "1360": 666, + "1361": 698, + "1362": 576, + "1363": 833, + "1364": 698, + "1365": 763, + "1366": 855, + "1369": 330, + "1370": 342, + "1371": 308, + "1372": 374, + "1373": 313, + "1374": 461, + "1375": 468, + "1377": 938, + "1378": 642, + "1379": 704, + "1380": 708, + "1381": 642, + "1382": 644, + "1383": 565, + "1384": 642, + "1385": 756, + "1386": 704, + "1387": 643, + "1388": 310, + "1389": 984, + "1390": 638, + "1391": 643, + "1392": 643, + "1393": 603, + "1394": 643, + "1395": 642, + "1396": 643, + "1397": 309, + "1398": 643, + "1399": 486, + "1400": 643, + "1401": 366, + "1402": 938, + "1403": 573, + "1404": 666, + "1405": 643, + "1406": 643, + "1407": 934, + "1408": 643, + "1409": 643, + "1410": 479, + "1411": 934, + "1412": 648, + "1413": 620, + "1414": 813, + "1415": 812, + "1417": 360, + "1418": 374, + "1456": 0, + "1457": 0, + "1458": 0, + "1459": 0, + "1460": 0, + "1461": 0, + "1462": 0, + "1463": 0, + "1464": 0, + "1465": 0, + "1466": 0, + "1467": 0, + "1468": 0, + "1469": 0, + "1470": 415, + "1471": 0, + "1472": 372, + "1473": 0, + "1474": 0, + "1475": 372, + "1478": 497, + "1479": 0, + "1488": 728, + "1489": 610, + "1490": 447, + "1491": 588, + "1492": 687, + "1493": 343, + "1494": 400, + "1495": 687, + "1496": 679, + "1497": 294, + "1498": 578, + "1499": 566, + "1500": 605, + "1501": 696, + "1502": 724, + "1503": 343, + "1504": 453, + "1505": 680, + "1506": 666, + "1507": 675, + "1508": 658, + "1509": 661, + "1510": 653, + "1511": 736, + "1512": 602, + "1513": 758, + "1514": 683, + "1520": 664, + "1521": 567, + "1522": 519, + "1523": 444, + "1524": 710, + "1542": 667, + "1543": 667, + "1545": 884, + "1546": 1157, + "1548": 380, + "1557": 0, + "1563": 400, + "1567": 580, + "1569": 511, + "1570": 343, + "1571": 343, + "1572": 622, + "1573": 343, + "1574": 917, + "1575": 343, + "1576": 1005, + "1577": 590, + "1578": 1005, + "1579": 1005, + "1580": 721, + "1581": 721, + "1582": 721, + "1583": 513, + "1584": 513, + "1585": 576, + "1586": 576, + "1587": 1380, + "1588": 1380, + "1589": 1345, + "1590": 1345, + "1591": 1039, + "1592": 1039, + "1593": 683, + "1594": 683, + "1600": 342, + "1601": 1162, + "1602": 894, + "1603": 917, + "1604": 868, + "1605": 733, + "1606": 854, + "1607": 590, + "1608": 622, + "1609": 917, + "1610": 917, + "1611": 0, + "1612": 0, + "1613": 0, + "1614": 0, + "1615": 0, + "1616": 0, + "1617": 0, + "1618": 0, + "1619": 0, + "1620": 0, + "1621": 0, + "1623": 0, + "1626": 500, + "1632": 610, + "1633": 610, + "1634": 610, + "1635": 610, + "1636": 610, + "1637": 610, + "1638": 610, + "1639": 610, + "1640": 610, + "1641": 610, + "1642": 610, + "1643": 374, + "1644": 380, + "1645": 545, + "1646": 1005, + "1647": 894, + "1648": 0, + "1652": 292, + "1657": 1005, + "1658": 1005, + "1659": 1005, + "1660": 1005, + "1661": 1005, + "1662": 1005, + "1663": 1005, + "1664": 1005, + "1665": 721, + "1666": 721, + "1667": 721, + "1668": 721, + "1669": 721, + "1670": 721, + "1671": 721, + "1672": 445, + "1673": 445, + "1674": 445, + "1675": 445, + "1676": 445, + "1677": 445, + "1678": 445, + "1679": 445, + "1680": 445, + "1681": 576, + "1682": 576, + "1683": 576, + "1684": 576, + "1685": 681, + "1686": 576, + "1687": 576, + "1688": 576, + "1689": 576, + "1690": 1380, + "1691": 1380, + "1692": 1380, + "1693": 1345, + "1694": 1345, + "1695": 1039, + "1696": 683, + "1697": 1162, + "1698": 1162, + "1699": 1162, + "1700": 1162, + "1701": 1162, + "1702": 1162, + "1703": 894, + "1704": 894, + "1705": 1024, + "1706": 1271, + "1707": 1024, + "1708": 917, + "1709": 917, + "1710": 917, + "1711": 1024, + "1712": 1024, + "1713": 1024, + "1714": 1024, + "1715": 1024, + "1716": 1024, + "1717": 868, + "1718": 868, + "1719": 868, + "1720": 868, + "1721": 854, + "1722": 854, + "1723": 854, + "1724": 854, + "1725": 854, + "1726": 938, + "1727": 721, + "1734": 622, + "1735": 622, + "1736": 622, + "1739": 622, + "1740": 917, + "1742": 917, + "1744": 917, + "1749": 590, + "1776": 610, + "1777": 610, + "1778": 610, + "1779": 610, + "1780": 610, + "1781": 610, + "1782": 610, + "1783": 610, + "1784": 610, + "1785": 610, + "1984": 696, + "1985": 696, + "1986": 696, + "1987": 696, + "1988": 696, + "1989": 696, + "1990": 696, + "1991": 696, + "1992": 696, + "1993": 696, + "1994": 343, + "1995": 547, + "1996": 543, + "1997": 652, + "1998": 691, + "1999": 691, + "2000": 594, + "2001": 691, + "2002": 904, + "2003": 551, + "2004": 551, + "2005": 627, + "2006": 688, + "2007": 444, + "2008": 1022, + "2009": 506, + "2010": 826, + "2011": 691, + "2012": 652, + "2013": 912, + "2014": 627, + "2015": 707, + "2016": 506, + "2017": 652, + "2018": 574, + "2019": 627, + "2020": 627, + "2021": 627, + "2022": 574, + "2023": 574, + "2027": 0, + "2028": 0, + "2029": 0, + "2030": 0, + "2031": 0, + "2032": 0, + "2033": 0, + "2034": 0, + "2035": 0, + "2036": 380, + "2037": 380, + "2040": 691, + "2041": 691, + "2042": 415, + "3647": 696, + "3713": 790, + "3714": 748, + "3716": 749, + "3719": 569, + "3720": 742, + "3722": 744, + "3725": 761, + "3732": 706, + "3733": 704, + "3734": 747, + "3735": 819, + "3737": 730, + "3738": 727, + "3739": 727, + "3740": 922, + "3741": 827, + "3742": 866, + "3743": 866, + "3745": 836, + "3746": 761, + "3747": 770, + "3749": 769, + "3751": 713, + "3754": 827, + "3755": 1031, + "3757": 724, + "3758": 784, + "3759": 934, + "3760": 688, + "3761": 0, + "3762": 610, + "3763": 610, + "3764": 0, + "3765": 0, + "3766": 0, + "3767": 0, + "3768": 0, + "3769": 0, + "3771": 0, + "3772": 0, + "3773": 670, + "3776": 516, + "3777": 860, + "3778": 516, + "3779": 650, + "3780": 632, + "3782": 759, + "3784": 0, + "3785": 0, + "3786": 0, + "3787": 0, + "3788": 0, + "3789": 0, + "3792": 771, + "3793": 771, + "3794": 693, + "3795": 836, + "3796": 729, + "3797": 729, + "3798": 849, + "3799": 790, + "3800": 759, + "3801": 910, + "3804": 1363, + "3805": 1363, + "4256": 874, + "4257": 733, + "4258": 679, + "4259": 834, + "4260": 615, + "4261": 768, + "4262": 753, + "4263": 914, + "4264": 453, + "4265": 620, + "4266": 843, + "4267": 882, + "4268": 625, + "4269": 854, + "4270": 781, + "4271": 629, + "4272": 912, + "4273": 621, + "4274": 620, + "4275": 854, + "4276": 866, + "4277": 724, + "4278": 630, + "4279": 621, + "4280": 625, + "4281": 620, + "4282": 818, + "4283": 874, + "4284": 615, + "4285": 623, + "4286": 625, + "4287": 725, + "4288": 844, + "4289": 596, + "4290": 688, + "4291": 596, + "4292": 594, + "4293": 738, + "4304": 554, + "4305": 563, + "4306": 622, + "4307": 834, + "4308": 555, + "4309": 564, + "4310": 551, + "4311": 828, + "4312": 563, + "4313": 556, + "4314": 1074, + "4315": 568, + "4316": 568, + "4317": 814, + "4318": 554, + "4319": 563, + "4320": 823, + "4321": 568, + "4322": 700, + "4323": 591, + "4324": 852, + "4325": 560, + "4326": 814, + "4327": 563, + "4328": 553, + "4329": 568, + "4330": 622, + "4331": 568, + "4332": 553, + "4333": 566, + "4334": 568, + "4335": 540, + "4336": 554, + "4337": 559, + "4338": 553, + "4339": 554, + "4340": 553, + "4341": 587, + "4342": 853, + "4343": 604, + "4344": 563, + "4345": 622, + "4346": 554, + "4347": 448, + "4348": 324, + "5121": 774, + "5122": 774, + "5123": 774, + "5124": 774, + "5125": 905, + "5126": 905, + "5127": 905, + "5129": 905, + "5130": 905, + "5131": 905, + "5132": 1018, + "5133": 1009, + "5134": 1018, + "5135": 1009, + "5136": 1018, + "5137": 1009, + "5138": 1149, + "5139": 1140, + "5140": 1149, + "5141": 1140, + "5142": 905, + "5143": 1149, + "5144": 1142, + "5145": 1149, + "5146": 1142, + "5147": 905, + "5149": 310, + "5150": 529, + "5151": 425, + "5152": 425, + "5153": 395, + "5154": 395, + "5155": 395, + "5156": 395, + "5157": 564, + "5158": 470, + "5159": 310, + "5160": 395, + "5161": 395, + "5162": 395, + "5163": 1213, + "5164": 986, + "5165": 1216, + "5166": 1297, + "5167": 774, + "5168": 774, + "5169": 774, + "5170": 774, + "5171": 886, + "5172": 886, + "5173": 886, + "5175": 886, + "5176": 886, + "5177": 886, + "5178": 1018, + "5179": 1009, + "5180": 1018, + "5181": 1009, + "5182": 1018, + "5183": 1009, + "5184": 1149, + "5185": 1140, + "5186": 1149, + "5187": 1140, + "5188": 1149, + "5189": 1142, + "5190": 1149, + "5191": 1142, + "5192": 886, + "5193": 576, + "5194": 229, + "5196": 812, + "5197": 812, + "5198": 812, + "5199": 812, + "5200": 815, + "5201": 815, + "5202": 815, + "5204": 815, + "5205": 815, + "5206": 815, + "5207": 1056, + "5208": 1048, + "5209": 1056, + "5210": 1048, + "5211": 1056, + "5212": 1048, + "5213": 1060, + "5214": 1054, + "5215": 1060, + "5216": 1054, + "5217": 1060, + "5218": 1052, + "5219": 1060, + "5220": 1052, + "5221": 1060, + "5222": 483, + "5223": 1005, + "5224": 1005, + "5225": 1023, + "5226": 1017, + "5227": 743, + "5228": 743, + "5229": 743, + "5230": 743, + "5231": 743, + "5232": 743, + "5233": 743, + "5234": 743, + "5235": 743, + "5236": 1029, + "5237": 975, + "5238": 980, + "5239": 975, + "5240": 980, + "5241": 975, + "5242": 1029, + "5243": 975, + "5244": 1029, + "5245": 975, + "5246": 980, + "5247": 975, + "5248": 980, + "5249": 975, + "5250": 980, + "5251": 501, + "5252": 501, + "5253": 938, + "5254": 938, + "5255": 938, + "5256": 938, + "5257": 743, + "5258": 743, + "5259": 743, + "5260": 743, + "5261": 743, + "5262": 743, + "5263": 743, + "5264": 743, + "5265": 743, + "5266": 1029, + "5267": 975, + "5268": 1029, + "5269": 975, + "5270": 1029, + "5271": 975, + "5272": 1029, + "5273": 975, + "5274": 1029, + "5275": 975, + "5276": 1029, + "5277": 975, + "5278": 1029, + "5279": 975, + "5280": 1029, + "5281": 501, + "5282": 501, + "5283": 626, + "5284": 626, + "5285": 626, + "5286": 626, + "5287": 626, + "5288": 626, + "5289": 626, + "5290": 626, + "5291": 626, + "5292": 881, + "5293": 854, + "5294": 863, + "5295": 874, + "5296": 863, + "5297": 874, + "5298": 881, + "5299": 874, + "5300": 881, + "5301": 874, + "5302": 863, + "5303": 874, + "5304": 863, + "5305": 874, + "5306": 863, + "5307": 436, + "5308": 548, + "5309": 436, + "5312": 988, + "5313": 988, + "5314": 988, + "5315": 988, + "5316": 931, + "5317": 931, + "5318": 931, + "5319": 931, + "5320": 931, + "5321": 1238, + "5322": 1247, + "5323": 1200, + "5324": 1228, + "5325": 1200, + "5326": 1228, + "5327": 931, + "5328": 660, + "5329": 497, + "5330": 660, + "5331": 988, + "5332": 988, + "5333": 988, + "5334": 988, + "5335": 931, + "5336": 931, + "5337": 931, + "5338": 931, + "5339": 931, + "5340": 1231, + "5341": 1247, + "5342": 1283, + "5343": 1228, + "5344": 1283, + "5345": 1228, + "5346": 1228, + "5347": 1214, + "5348": 1228, + "5349": 1214, + "5350": 1283, + "5351": 1228, + "5352": 1283, + "5353": 1228, + "5354": 660, + "5356": 886, + "5357": 730, + "5358": 730, + "5359": 730, + "5360": 730, + "5361": 730, + "5362": 730, + "5363": 730, + "5364": 730, + "5365": 730, + "5366": 998, + "5367": 958, + "5368": 967, + "5369": 989, + "5370": 967, + "5371": 989, + "5372": 998, + "5373": 958, + "5374": 998, + "5375": 958, + "5376": 967, + "5377": 989, + "5378": 967, + "5379": 989, + "5380": 967, + "5381": 493, + "5382": 460, + "5383": 493, + "5392": 923, + "5393": 923, + "5394": 923, + "5395": 1136, + "5396": 1136, + "5397": 1136, + "5398": 1136, + "5399": 1209, + "5400": 1202, + "5401": 1209, + "5402": 1202, + "5403": 1209, + "5404": 1202, + "5405": 1431, + "5406": 1420, + "5407": 1431, + "5408": 1420, + "5409": 1431, + "5410": 1420, + "5411": 1431, + "5412": 1420, + "5413": 746, + "5414": 776, + "5415": 776, + "5416": 776, + "5417": 776, + "5418": 776, + "5419": 776, + "5420": 776, + "5421": 776, + "5422": 776, + "5423": 1003, + "5424": 1003, + "5425": 1013, + "5426": 996, + "5427": 1013, + "5428": 996, + "5429": 1003, + "5430": 1003, + "5431": 1003, + "5432": 1003, + "5433": 1013, + "5434": 996, + "5435": 1013, + "5436": 996, + "5437": 1013, + "5438": 495, + "5440": 395, + "5441": 510, + "5442": 1033, + "5443": 1033, + "5444": 976, + "5445": 976, + "5446": 976, + "5447": 976, + "5448": 733, + "5449": 733, + "5450": 733, + "5451": 733, + "5452": 733, + "5453": 733, + "5454": 1003, + "5455": 959, + "5456": 495, + "5458": 886, + "5459": 774, + "5460": 774, + "5461": 774, + "5462": 774, + "5463": 928, + "5464": 928, + "5465": 928, + "5466": 928, + "5467": 1172, + "5468": 1142, + "5469": 602, + "5470": 812, + "5471": 812, + "5472": 812, + "5473": 812, + "5474": 812, + "5475": 812, + "5476": 815, + "5477": 815, + "5478": 815, + "5479": 815, + "5480": 1060, + "5481": 1052, + "5482": 548, + "5492": 977, + "5493": 977, + "5494": 977, + "5495": 977, + "5496": 977, + "5497": 977, + "5498": 977, + "5499": 618, + "5500": 837, + "5501": 510, + "5502": 1238, + "5503": 1238, + "5504": 1238, + "5505": 1238, + "5506": 1238, + "5507": 1238, + "5508": 1238, + "5509": 989, + "5514": 977, + "5515": 977, + "5516": 977, + "5517": 977, + "5518": 1591, + "5519": 1591, + "5520": 1591, + "5521": 1295, + "5522": 1295, + "5523": 1591, + "5524": 1591, + "5525": 848, + "5526": 1273, + "5536": 988, + "5537": 988, + "5538": 931, + "5539": 931, + "5540": 931, + "5541": 931, + "5542": 660, + "5543": 776, + "5544": 776, + "5545": 776, + "5546": 776, + "5547": 776, + "5548": 776, + "5549": 776, + "5550": 495, + "5551": 743, + "5598": 830, + "5601": 830, + "5702": 496, + "5703": 496, + "5742": 413, + "5743": 1238, + "5744": 1591, + "5745": 2016, + "5746": 2016, + "5747": 1720, + "5748": 1678, + "5749": 2016, + "5750": 2016, + "5760": 543, + "5761": 637, + "5762": 945, + "5763": 1254, + "5764": 1563, + "5765": 1871, + "5766": 627, + "5767": 936, + "5768": 1254, + "5769": 1559, + "5770": 1871, + "5771": 569, + "5772": 877, + "5773": 1187, + "5774": 1497, + "5775": 1807, + "5776": 637, + "5777": 945, + "5778": 1240, + "5779": 1555, + "5780": 1871, + "5781": 569, + "5782": 569, + "5783": 789, + "5784": 1234, + "5785": 1559, + "5786": 740, + "5787": 638, + "5788": 638, + "7424": 652, + "7425": 833, + "7426": 1048, + "7427": 608, + "7428": 593, + "7429": 676, + "7430": 676, + "7431": 559, + "7432": 557, + "7433": 343, + "7434": 494, + "7435": 665, + "7436": 539, + "7437": 817, + "7438": 701, + "7439": 687, + "7440": 593, + "7441": 660, + "7442": 660, + "7443": 660, + "7444": 1094, + "7446": 687, + "7447": 687, + "7448": 556, + "7449": 642, + "7450": 642, + "7451": 580, + "7452": 634, + "7453": 737, + "7454": 948, + "7455": 695, + "7456": 652, + "7457": 924, + "7458": 582, + "7459": 646, + "7462": 539, + "7463": 652, + "7464": 691, + "7465": 556, + "7466": 781, + "7467": 732, + "7468": 487, + "7469": 683, + "7470": 480, + "7472": 523, + "7473": 430, + "7474": 430, + "7475": 517, + "7476": 527, + "7477": 234, + "7478": 234, + "7479": 488, + "7480": 401, + "7481": 626, + "7482": 527, + "7483": 527, + "7484": 535, + "7485": 509, + "7486": 461, + "7487": 485, + "7488": 430, + "7489": 511, + "7490": 695, + "7491": 458, + "7492": 458, + "7493": 479, + "7494": 712, + "7495": 479, + "7496": 479, + "7497": 479, + "7498": 479, + "7499": 386, + "7500": 386, + "7501": 479, + "7502": 219, + "7503": 487, + "7504": 664, + "7505": 456, + "7506": 488, + "7507": 414, + "7508": 488, + "7509": 488, + "7510": 479, + "7511": 388, + "7512": 456, + "7513": 462, + "7514": 664, + "7515": 501, + "7517": 451, + "7518": 429, + "7519": 433, + "7520": 493, + "7521": 406, + "7522": 219, + "7523": 315, + "7524": 456, + "7525": 501, + "7526": 451, + "7527": 429, + "7528": 451, + "7529": 493, + "7530": 406, + "7543": 716, + "7544": 527, + "7547": 545, + "7549": 747, + "7557": 514, + "7579": 479, + "7580": 414, + "7581": 414, + "7582": 488, + "7583": 386, + "7584": 377, + "7585": 348, + "7586": 479, + "7587": 456, + "7588": 347, + "7589": 281, + "7590": 347, + "7591": 347, + "7592": 431, + "7593": 326, + "7594": 330, + "7595": 370, + "7596": 664, + "7597": 664, + "7598": 562, + "7599": 562, + "7600": 448, + "7601": 488, + "7602": 542, + "7603": 422, + "7604": 396, + "7605": 388, + "7606": 583, + "7607": 494, + "7608": 399, + "7609": 451, + "7610": 501, + "7611": 417, + "7612": 523, + "7613": 470, + "7614": 455, + "7615": 425, + "7620": 0, + "7621": 0, + "7622": 0, + "7623": 0, + "7624": 0, + "7625": 0, + "7680": 774, + "7681": 675, + "7682": 762, + "7683": 716, + "7684": 762, + "7685": 716, + "7686": 762, + "7687": 716, + "7688": 734, + "7689": 593, + "7690": 830, + "7691": 716, + "7692": 830, + "7693": 716, + "7694": 830, + "7695": 716, + "7696": 830, + "7697": 716, + "7698": 830, + "7699": 716, + "7700": 683, + "7701": 678, + "7702": 683, + "7703": 678, + "7704": 683, + "7705": 678, + "7706": 683, + "7707": 678, + "7708": 683, + "7709": 678, + "7710": 683, + "7711": 435, + "7712": 821, + "7713": 716, + "7714": 837, + "7715": 712, + "7716": 837, + "7717": 712, + "7718": 837, + "7719": 712, + "7720": 837, + "7721": 712, + "7722": 837, + "7723": 712, + "7724": 372, + "7725": 343, + "7726": 372, + "7727": 343, + "7728": 775, + "7729": 665, + "7730": 775, + "7731": 665, + "7732": 775, + "7733": 665, + "7734": 637, + "7735": 343, + "7736": 637, + "7737": 343, + "7738": 637, + "7739": 343, + "7740": 637, + "7741": 343, + "7742": 995, + "7743": 1042, + "7744": 995, + "7745": 1042, + "7746": 995, + "7747": 1042, + "7748": 837, + "7749": 712, + "7750": 837, + "7751": 712, + "7752": 837, + "7753": 712, + "7754": 837, + "7755": 712, + "7756": 850, + "7757": 687, + "7758": 850, + "7759": 687, + "7760": 850, + "7761": 687, + "7762": 850, + "7763": 687, + "7764": 733, + "7765": 716, + "7766": 733, + "7767": 716, + "7768": 770, + "7769": 493, + "7770": 770, + "7771": 493, + "7772": 770, + "7773": 493, + "7774": 770, + "7775": 493, + "7776": 720, + "7777": 595, + "7778": 720, + "7779": 595, + "7780": 720, + "7781": 595, + "7782": 720, + "7783": 595, + "7784": 720, + "7785": 595, + "7786": 682, + "7787": 478, + "7788": 682, + "7789": 478, + "7790": 682, + "7791": 478, + "7792": 682, + "7793": 478, + "7794": 812, + "7795": 712, + "7796": 812, + "7797": 712, + "7798": 812, + "7799": 712, + "7800": 812, + "7801": 712, + "7802": 812, + "7803": 712, + "7804": 774, + "7805": 652, + "7806": 774, + "7807": 652, + "7808": 1103, + "7809": 924, + "7810": 1103, + "7811": 924, + "7812": 1103, + "7813": 924, + "7814": 1103, + "7815": 924, + "7816": 1103, + "7817": 924, + "7818": 771, + "7819": 645, + "7820": 771, + "7821": 645, + "7822": 724, + "7823": 652, + "7824": 725, + "7825": 582, + "7826": 725, + "7827": 582, + "7828": 725, + "7829": 582, + "7830": 712, + "7831": 478, + "7832": 924, + "7833": 652, + "7834": 675, + "7835": 435, + "7836": 435, + "7837": 435, + "7838": 896, + "7839": 687, + "7840": 774, + "7841": 675, + "7842": 774, + "7843": 675, + "7844": 774, + "7845": 675, + "7846": 774, + "7847": 675, + "7848": 774, + "7849": 675, + "7850": 774, + "7851": 675, + "7852": 774, + "7853": 675, + "7854": 774, + "7855": 675, + "7856": 774, + "7857": 675, + "7858": 774, + "7859": 675, + "7860": 774, + "7861": 675, + "7862": 774, + "7863": 675, + "7864": 683, + "7865": 678, + "7866": 683, + "7867": 678, + "7868": 683, + "7869": 678, + "7870": 683, + "7871": 678, + "7872": 683, + "7873": 678, + "7874": 683, + "7875": 678, + "7876": 683, + "7877": 678, + "7878": 683, + "7879": 678, + "7880": 372, + "7881": 343, + "7882": 372, + "7883": 343, + "7884": 850, + "7885": 687, + "7886": 850, + "7887": 687, + "7888": 850, + "7889": 687, + "7890": 850, + "7891": 687, + "7892": 850, + "7893": 687, + "7894": 850, + "7895": 687, + "7896": 850, + "7897": 687, + "7898": 874, + "7899": 687, + "7900": 874, + "7901": 687, + "7902": 874, + "7903": 687, + "7904": 874, + "7905": 687, + "7906": 874, + "7907": 687, + "7908": 812, + "7909": 712, + "7910": 812, + "7911": 712, + "7912": 835, + "7913": 712, + "7914": 835, + "7915": 712, + "7916": 835, + "7917": 712, + "7918": 835, + "7919": 712, + "7920": 835, + "7921": 712, + "7922": 724, + "7923": 652, + "7924": 724, + "7925": 652, + "7926": 724, + "7927": 652, + "7928": 724, + "7929": 652, + "7930": 953, + "7931": 644, + "7936": 687, + "7937": 687, + "7938": 687, + "7939": 687, + "7940": 687, + "7941": 687, + "7942": 687, + "7943": 687, + "7944": 774, + "7945": 774, + "7946": 1041, + "7947": 1043, + "7948": 935, + "7949": 963, + "7950": 835, + "7951": 859, + "7952": 557, + "7953": 557, + "7954": 557, + "7955": 557, + "7956": 557, + "7957": 557, + "7960": 792, + "7961": 794, + "7962": 1100, + "7963": 1096, + "7964": 1023, + "7965": 1052, + "7968": 712, + "7969": 712, + "7970": 712, + "7971": 712, + "7972": 712, + "7973": 712, + "7974": 712, + "7975": 712, + "7976": 945, + "7977": 951, + "7978": 1250, + "7979": 1250, + "7980": 1180, + "7981": 1206, + "7982": 1054, + "7983": 1063, + "7984": 390, + "7985": 390, + "7986": 390, + "7987": 390, + "7988": 390, + "7989": 390, + "7990": 390, + "7991": 390, + "7992": 483, + "7993": 489, + "7994": 777, + "7995": 785, + "7996": 712, + "7997": 738, + "7998": 604, + "7999": 604, + "8000": 687, + "8001": 687, + "8002": 687, + "8003": 687, + "8004": 687, + "8005": 687, + "8008": 892, + "8009": 933, + "8010": 1221, + "8011": 1224, + "8012": 1053, + "8013": 1082, + "8016": 675, + "8017": 675, + "8018": 675, + "8019": 675, + "8020": 675, + "8021": 675, + "8022": 675, + "8023": 675, + "8025": 930, + "8027": 1184, + "8029": 1199, + "8031": 1049, + "8032": 869, + "8033": 869, + "8034": 869, + "8035": 869, + "8036": 869, + "8037": 869, + "8038": 869, + "8039": 869, + "8040": 909, + "8041": 958, + "8042": 1246, + "8043": 1251, + "8044": 1076, + "8045": 1105, + "8046": 1028, + "8047": 1076, + "8048": 687, + "8049": 687, + "8050": 557, + "8051": 557, + "8052": 712, + "8053": 712, + "8054": 390, + "8055": 390, + "8056": 687, + "8057": 687, + "8058": 675, + "8059": 675, + "8060": 869, + "8061": 869, + "8064": 687, + "8065": 687, + "8066": 687, + "8067": 687, + "8068": 687, + "8069": 687, + "8070": 687, + "8071": 687, + "8072": 774, + "8073": 774, + "8074": 1041, + "8075": 1043, + "8076": 935, + "8077": 963, + "8078": 835, + "8079": 859, + "8080": 712, + "8081": 712, + "8082": 712, + "8083": 712, + "8084": 712, + "8085": 712, + "8086": 712, + "8087": 712, + "8088": 945, + "8089": 951, + "8090": 1250, + "8091": 1250, + "8092": 1180, + "8093": 1206, + "8094": 1054, + "8095": 1063, + "8096": 869, + "8097": 869, + "8098": 869, + "8099": 869, + "8100": 869, + "8101": 869, + "8102": 869, + "8103": 869, + "8104": 909, + "8105": 958, + "8106": 1246, + "8107": 1251, + "8108": 1076, + "8109": 1105, + "8110": 1028, + "8111": 1076, + "8112": 687, + "8113": 687, + "8114": 687, + "8115": 687, + "8116": 687, + "8118": 687, + "8119": 687, + "8120": 774, + "8121": 774, + "8122": 876, + "8123": 797, + "8124": 774, + "8125": 500, + "8126": 500, + "8127": 500, + "8128": 500, + "8129": 500, + "8130": 712, + "8131": 712, + "8132": 712, + "8134": 712, + "8135": 712, + "8136": 929, + "8137": 846, + "8138": 1080, + "8139": 1009, + "8140": 837, + "8141": 500, + "8142": 500, + "8143": 500, + "8144": 390, + "8145": 390, + "8146": 390, + "8147": 390, + "8150": 390, + "8151": 390, + "8152": 372, + "8153": 372, + "8154": 621, + "8155": 563, + "8157": 500, + "8158": 500, + "8159": 500, + "8160": 675, + "8161": 675, + "8162": 675, + "8163": 675, + "8164": 716, + "8165": 716, + "8166": 675, + "8167": 675, + "8168": 724, + "8169": 724, + "8170": 1020, + "8171": 980, + "8172": 838, + "8173": 500, + "8174": 500, + "8175": 500, + "8178": 869, + "8179": 869, + "8180": 869, + "8182": 869, + "8183": 869, + "8184": 1065, + "8185": 891, + "8186": 1084, + "8187": 894, + "8188": 850, + "8189": 500, + "8190": 500, + "8192": 500, + "8193": 1000, + "8194": 500, + "8195": 1000, + "8196": 330, + "8197": 250, + "8198": 167, + "8199": 696, + "8200": 380, + "8201": 200, + "8202": 100, + "8203": 0, + "8204": 0, + "8205": 0, + "8206": 0, + "8207": 0, + "8208": 415, + "8209": 415, + "8210": 696, + "8211": 500, + "8212": 1000, + "8213": 1000, + "8214": 500, + "8215": 500, + "8216": 380, + "8217": 380, + "8218": 380, + "8219": 380, + "8220": 657, + "8221": 657, + "8222": 657, + "8223": 657, + "8224": 500, + "8225": 500, + "8226": 639, + "8227": 639, + "8228": 333, + "8229": 667, + "8230": 1000, + "8231": 348, + "8232": 0, + "8233": 0, + "8234": 0, + "8235": 0, + "8236": 0, + "8237": 0, + "8238": 0, + "8239": 200, + "8240": 1440, + "8241": 1887, + "8242": 264, + "8243": 447, + "8244": 630, + "8245": 264, + "8246": 447, + "8247": 630, + "8248": 733, + "8249": 412, + "8250": 412, + "8251": 972, + "8252": 627, + "8253": 580, + "8254": 500, + "8255": 828, + "8256": 828, + "8257": 329, + "8258": 1023, + "8259": 500, + "8260": 167, + "8261": 457, + "8262": 457, + "8263": 1030, + "8264": 829, + "8265": 829, + "8266": 513, + "8267": 636, + "8268": 500, + "8269": 500, + "8270": 523, + "8271": 400, + "8272": 828, + "8273": 523, + "8274": 556, + "8275": 1000, + "8276": 828, + "8277": 838, + "8278": 684, + "8279": 813, + "8280": 838, + "8281": 838, + "8282": 380, + "8283": 872, + "8284": 838, + "8285": 380, + "8286": 380, + "8287": 222, + "8288": 0, + "8289": 0, + "8290": 0, + "8291": 0, + "8292": 0, + "8298": 0, + "8299": 0, + "8300": 0, + "8301": 0, + "8302": 0, + "8303": 0, + "8304": 438, + "8305": 219, + "8308": 438, + "8309": 438, + "8310": 438, + "8311": 438, + "8312": 438, + "8313": 438, + "8314": 528, + "8315": 528, + "8316": 528, + "8317": 288, + "8318": 288, + "8319": 456, + "8320": 438, + "8321": 438, + "8322": 438, + "8323": 438, + "8324": 438, + "8325": 438, + "8326": 438, + "8327": 438, + "8328": 438, + "8329": 438, + "8330": 528, + "8331": 528, + "8332": 528, + "8333": 288, + "8334": 288, + "8336": 458, + "8337": 479, + "8338": 488, + "8339": 413, + "8340": 479, + "8341": 456, + "8342": 487, + "8343": 219, + "8344": 664, + "8345": 456, + "8346": 479, + "8347": 381, + "8348": 388, + "8352": 929, + "8353": 696, + "8354": 696, + "8355": 696, + "8356": 696, + "8357": 1042, + "8358": 696, + "8359": 1518, + "8360": 1205, + "8361": 1103, + "8362": 904, + "8363": 696, + "8364": 696, + "8365": 696, + "8366": 696, + "8367": 1392, + "8368": 696, + "8369": 696, + "8370": 696, + "8371": 696, + "8372": 859, + "8373": 696, + "8376": 696, + "8377": 696, + "8378": 696, + "8381": 696, + "8400": 0, + "8401": 0, + "8406": 0, + "8407": 0, + "8411": 0, + "8412": 0, + "8417": 0, + "8448": 1120, + "8449": 1170, + "8450": 734, + "8451": 1211, + "8452": 896, + "8453": 1091, + "8454": 1144, + "8455": 614, + "8456": 698, + "8457": 1086, + "8459": 1073, + "8460": 913, + "8461": 888, + "8462": 712, + "8463": 712, + "8464": 597, + "8465": 697, + "8466": 856, + "8467": 472, + "8468": 974, + "8469": 837, + "8470": 1203, + "8471": 1000, + "8472": 697, + "8473": 750, + "8474": 850, + "8475": 938, + "8476": 814, + "8477": 801, + "8478": 896, + "8479": 710, + "8480": 1020, + "8481": 1281, + "8482": 1000, + "8483": 755, + "8484": 754, + "8485": 578, + "8486": 850, + "8487": 850, + "8488": 763, + "8489": 338, + "8490": 775, + "8491": 774, + "8492": 928, + "8493": 818, + "8494": 854, + "8495": 636, + "8496": 729, + "8497": 808, + "8498": 683, + "8499": 1184, + "8500": 465, + "8501": 794, + "8502": 731, + "8503": 494, + "8504": 684, + "8505": 380, + "8506": 945, + "8507": 1348, + "8508": 790, + "8509": 737, + "8510": 654, + "8511": 863, + "8512": 840, + "8513": 775, + "8514": 557, + "8515": 637, + "8516": 760, + "8517": 830, + "8518": 716, + "8519": 678, + "8520": 343, + "8521": 343, + "8523": 872, + "8526": 547, + "8528": 1035, + "8529": 1035, + "8530": 1483, + "8531": 1035, + "8532": 1035, + "8533": 1035, + "8534": 1035, + "8535": 1035, + "8536": 1035, + "8537": 1035, + "8538": 1035, + "8539": 1035, + "8540": 1035, + "8541": 1035, + "8542": 1035, + "8543": 615, + "8544": 372, + "8545": 659, + "8546": 945, + "8547": 1099, + "8548": 774, + "8549": 1099, + "8550": 1386, + "8551": 1672, + "8552": 1121, + "8553": 771, + "8554": 1120, + "8555": 1407, + "8556": 637, + "8557": 734, + "8558": 830, + "8559": 995, + "8560": 343, + "8561": 607, + "8562": 872, + "8563": 984, + "8564": 652, + "8565": 962, + "8566": 1227, + "8567": 1491, + "8568": 969, + "8569": 645, + "8570": 969, + "8571": 1233, + "8572": 343, + "8573": 593, + "8574": 716, + "8575": 1042, + "8576": 1289, + "8577": 830, + "8578": 1289, + "8579": 734, + "8580": 593, + "8581": 734, + "8585": 1035, + "8592": 838, + "8593": 838, + "8594": 838, + "8595": 838, + "8596": 838, + "8597": 838, + "8598": 838, + "8599": 838, + "8600": 838, + "8601": 838, + "8602": 838, + "8603": 838, + "8604": 838, + "8605": 838, + "8606": 838, + "8607": 838, + "8608": 838, + "8609": 838, + "8610": 838, + "8611": 838, + "8612": 838, + "8613": 838, + "8614": 838, + "8615": 838, + "8616": 838, + "8617": 838, + "8618": 838, + "8619": 838, + "8620": 838, + "8621": 838, + "8622": 838, + "8623": 838, + "8624": 838, + "8625": 838, + "8626": 838, + "8627": 838, + "8628": 838, + "8629": 838, + "8630": 838, + "8631": 838, + "8632": 838, + "8633": 838, + "8634": 838, + "8635": 838, + "8636": 838, + "8637": 838, + "8638": 838, + "8639": 838, + "8640": 838, + "8641": 838, + "8642": 838, + "8643": 838, + "8644": 838, + "8645": 838, + "8646": 838, + "8647": 838, + "8648": 838, + "8649": 838, + "8650": 838, + "8651": 838, + "8652": 838, + "8653": 838, + "8654": 838, + "8655": 838, + "8656": 838, + "8657": 838, + "8658": 838, + "8659": 838, + "8660": 838, + "8661": 838, + "8662": 838, + "8663": 838, + "8664": 838, + "8665": 838, + "8666": 838, + "8667": 838, + "8668": 838, + "8669": 838, + "8670": 838, + "8671": 838, + "8672": 838, + "8673": 838, + "8674": 838, + "8675": 838, + "8676": 838, + "8677": 838, + "8678": 838, + "8679": 838, + "8680": 838, + "8681": 838, + "8682": 838, + "8683": 838, + "8684": 838, + "8685": 838, + "8686": 838, + "8687": 838, + "8688": 838, + "8689": 838, + "8690": 838, + "8691": 838, + "8692": 838, + "8693": 838, + "8694": 838, + "8695": 838, + "8696": 838, + "8697": 838, + "8698": 838, + "8699": 838, + "8700": 838, + "8701": 838, + "8702": 838, + "8703": 838, + "8704": 774, + "8705": 696, + "8706": 544, + "8707": 683, + "8708": 683, + "8709": 856, + "8710": 697, + "8711": 697, + "8712": 896, + "8713": 896, + "8714": 750, + "8715": 896, + "8716": 896, + "8717": 750, + "8718": 636, + "8719": 787, + "8720": 787, + "8721": 718, + "8722": 838, + "8723": 838, + "8724": 696, + "8725": 365, + "8726": 696, + "8727": 838, + "8728": 626, + "8729": 380, + "8730": 667, + "8731": 667, + "8732": 667, + "8733": 712, + "8734": 833, + "8735": 838, + "8736": 896, + "8737": 896, + "8738": 838, + "8739": 500, + "8740": 500, + "8741": 500, + "8742": 500, + "8743": 812, + "8744": 812, + "8745": 812, + "8746": 812, + "8747": 610, + "8748": 929, + "8749": 1295, + "8750": 563, + "8751": 977, + "8752": 1313, + "8753": 563, + "8754": 563, + "8755": 563, + "8756": 696, + "8757": 696, + "8758": 294, + "8759": 696, + "8760": 838, + "8761": 838, + "8762": 838, + "8763": 838, + "8764": 838, + "8765": 838, + "8766": 838, + "8767": 838, + "8768": 375, + "8769": 838, + "8770": 838, + "8771": 838, + "8772": 838, + "8773": 838, + "8774": 838, + "8775": 838, + "8776": 838, + "8777": 838, + "8778": 838, + "8779": 838, + "8780": 838, + "8781": 838, + "8782": 838, + "8783": 838, + "8784": 838, + "8785": 838, + "8786": 838, + "8787": 838, + "8788": 1063, + "8789": 1063, + "8790": 838, + "8791": 838, + "8792": 838, + "8793": 838, + "8794": 838, + "8795": 838, + "8796": 838, + "8797": 838, + "8798": 838, + "8799": 838, + "8800": 838, + "8801": 838, + "8802": 838, + "8803": 838, + "8804": 838, + "8805": 838, + "8806": 838, + "8807": 838, + "8808": 841, + "8809": 841, + "8810": 1047, + "8811": 1047, + "8812": 500, + "8813": 838, + "8814": 838, + "8815": 838, + "8816": 838, + "8817": 838, + "8818": 838, + "8819": 838, + "8820": 838, + "8821": 838, + "8822": 838, + "8823": 838, + "8824": 838, + "8825": 838, + "8826": 838, + "8827": 838, + "8828": 838, + "8829": 838, + "8830": 838, + "8831": 838, + "8832": 838, + "8833": 838, + "8834": 838, + "8835": 838, + "8836": 838, + "8837": 838, + "8838": 838, + "8839": 838, + "8840": 838, + "8841": 838, + "8842": 838, + "8843": 838, + "8844": 812, + "8845": 812, + "8846": 812, + "8847": 838, + "8848": 838, + "8849": 838, + "8850": 838, + "8851": 796, + "8852": 796, + "8853": 838, + "8854": 838, + "8855": 838, + "8856": 838, + "8857": 838, + "8858": 838, + "8859": 838, + "8860": 838, + "8861": 838, + "8862": 838, + "8863": 838, + "8864": 838, + "8865": 838, + "8866": 914, + "8867": 914, + "8868": 914, + "8869": 914, + "8870": 542, + "8871": 542, + "8872": 914, + "8873": 914, + "8874": 914, + "8875": 914, + "8876": 914, + "8877": 914, + "8878": 914, + "8879": 914, + "8880": 838, + "8881": 838, + "8882": 838, + "8883": 838, + "8884": 838, + "8885": 838, + "8886": 1000, + "8887": 1000, + "8888": 838, + "8889": 838, + "8890": 542, + "8891": 812, + "8892": 812, + "8893": 812, + "8894": 838, + "8895": 838, + "8896": 843, + "8897": 843, + "8898": 843, + "8899": 843, + "8900": 626, + "8901": 380, + "8902": 626, + "8903": 838, + "8904": 1000, + "8905": 1000, + "8906": 1000, + "8907": 1000, + "8908": 1000, + "8909": 838, + "8910": 812, + "8911": 812, + "8912": 838, + "8913": 838, + "8914": 838, + "8915": 838, + "8916": 838, + "8917": 838, + "8918": 838, + "8919": 838, + "8920": 1422, + "8921": 1422, + "8922": 838, + "8923": 838, + "8924": 838, + "8925": 838, + "8926": 838, + "8927": 838, + "8928": 838, + "8929": 838, + "8930": 838, + "8931": 838, + "8932": 838, + "8933": 838, + "8934": 838, + "8935": 838, + "8936": 838, + "8937": 838, + "8938": 838, + "8939": 838, + "8940": 838, + "8941": 838, + "8942": 1000, + "8943": 1000, + "8944": 1000, + "8945": 1000, + "8946": 1158, + "8947": 896, + "8948": 750, + "8949": 896, + "8950": 896, + "8951": 750, + "8952": 896, + "8953": 896, + "8954": 1158, + "8955": 896, + "8956": 750, + "8957": 896, + "8958": 750, + "8959": 896, + "8960": 602, + "8961": 602, + "8962": 716, + "8963": 838, + "8964": 838, + "8965": 838, + "8966": 838, + "8967": 488, + "8968": 457, + "8969": 457, + "8970": 457, + "8971": 457, + "8972": 809, + "8973": 809, + "8974": 809, + "8975": 809, + "8976": 838, + "8977": 539, + "8984": 928, + "8985": 838, + "8988": 469, + "8989": 469, + "8990": 469, + "8991": 469, + "8992": 610, + "8993": 610, + "8996": 1152, + "8997": 1152, + "8998": 1414, + "8999": 1152, + "9000": 1443, + "9003": 1414, + "9004": 873, + "9075": 390, + "9076": 716, + "9077": 869, + "9082": 687, + "9085": 863, + "9095": 1152, + "9108": 873, + "9115": 500, + "9116": 500, + "9117": 500, + "9118": 500, + "9119": 500, + "9120": 500, + "9121": 500, + "9122": 500, + "9123": 500, + "9124": 500, + "9125": 500, + "9126": 500, + "9127": 750, + "9128": 750, + "9129": 750, + "9130": 750, + "9131": 750, + "9132": 750, + "9133": 750, + "9134": 610, + "9166": 838, + "9167": 945, + "9187": 873, + "9189": 769, + "9192": 696, + "9250": 716, + "9251": 716, + "9312": 847, + "9313": 847, + "9314": 847, + "9315": 847, + "9316": 847, + "9317": 847, + "9318": 847, + "9319": 847, + "9320": 847, + "9321": 847, + "9472": 602, + "9473": 602, + "9474": 602, + "9475": 602, + "9476": 602, + "9477": 602, + "9478": 602, + "9479": 602, + "9480": 602, + "9481": 602, + "9482": 602, + "9483": 602, + "9484": 602, + "9485": 602, + "9486": 602, + "9487": 602, + "9488": 602, + "9489": 602, + "9490": 602, + "9491": 602, + "9492": 602, + "9493": 602, + "9494": 602, + "9495": 602, + "9496": 602, + "9497": 602, + "9498": 602, + "9499": 602, + "9500": 602, + "9501": 602, + "9502": 602, + "9503": 602, + "9504": 602, + "9505": 602, + "9506": 602, + "9507": 602, + "9508": 602, + "9509": 602, + "9510": 602, + "9511": 602, + "9512": 602, + "9513": 602, + "9514": 602, + "9515": 602, + "9516": 602, + "9517": 602, + "9518": 602, + "9519": 602, + "9520": 602, + "9521": 602, + "9522": 602, + "9523": 602, + "9524": 602, + "9525": 602, + "9526": 602, + "9527": 602, + "9528": 602, + "9529": 602, + "9530": 602, + "9531": 602, + "9532": 602, + "9533": 602, + "9534": 602, + "9535": 602, + "9536": 602, + "9537": 602, + "9538": 602, + "9539": 602, + "9540": 602, + "9541": 602, + "9542": 602, + "9543": 602, + "9544": 602, + "9545": 602, + "9546": 602, + "9547": 602, + "9548": 602, + "9549": 602, + "9550": 602, + "9551": 602, + "9552": 602, + "9553": 602, + "9554": 602, + "9555": 602, + "9556": 602, + "9557": 602, + "9558": 602, + "9559": 602, + "9560": 602, + "9561": 602, + "9562": 602, + "9563": 602, + "9564": 602, + "9565": 602, + "9566": 602, + "9567": 602, + "9568": 602, + "9569": 602, + "9570": 602, + "9571": 602, + "9572": 602, + "9573": 602, + "9574": 602, + "9575": 602, + "9576": 602, + "9577": 602, + "9578": 602, + "9579": 602, + "9580": 602, + "9581": 602, + "9582": 602, + "9583": 602, + "9584": 602, + "9585": 602, + "9586": 602, + "9587": 602, + "9588": 602, + "9589": 602, + "9590": 602, + "9591": 602, + "9592": 602, + "9593": 602, + "9594": 602, + "9595": 602, + "9596": 602, + "9597": 602, + "9598": 602, + "9599": 602, + "9600": 769, + "9601": 769, + "9602": 769, + "9603": 769, + "9604": 769, + "9605": 769, + "9606": 769, + "9607": 769, + "9608": 769, + "9609": 769, + "9610": 769, + "9611": 769, + "9612": 769, + "9613": 769, + "9614": 769, + "9615": 769, + "9616": 769, + "9617": 769, + "9618": 769, + "9619": 769, + "9620": 769, + "9621": 769, + "9622": 769, + "9623": 769, + "9624": 769, + "9625": 769, + "9626": 769, + "9627": 769, + "9628": 769, + "9629": 769, + "9630": 769, + "9631": 769, + "9632": 945, + "9633": 945, + "9634": 945, + "9635": 945, + "9636": 945, + "9637": 945, + "9638": 945, + "9639": 945, + "9640": 945, + "9641": 945, + "9642": 678, + "9643": 678, + "9644": 945, + "9645": 945, + "9646": 550, + "9647": 550, + "9648": 769, + "9649": 769, + "9650": 769, + "9651": 769, + "9652": 502, + "9653": 502, + "9654": 769, + "9655": 769, + "9656": 502, + "9657": 502, + "9658": 769, + "9659": 769, + "9660": 769, + "9661": 769, + "9662": 502, + "9663": 502, + "9664": 769, + "9665": 769, + "9666": 502, + "9667": 502, + "9668": 769, + "9669": 769, + "9670": 769, + "9671": 769, + "9672": 769, + "9673": 873, + "9674": 494, + "9675": 873, + "9676": 873, + "9677": 873, + "9678": 873, + "9679": 873, + "9680": 873, + "9681": 873, + "9682": 873, + "9683": 873, + "9684": 873, + "9685": 873, + "9686": 527, + "9687": 527, + "9688": 840, + "9689": 970, + "9690": 970, + "9691": 970, + "9692": 387, + "9693": 387, + "9694": 387, + "9695": 387, + "9696": 769, + "9697": 769, + "9698": 769, + "9699": 769, + "9700": 769, + "9701": 769, + "9702": 639, + "9703": 945, + "9704": 945, + "9705": 945, + "9706": 945, + "9707": 945, + "9708": 769, + "9709": 769, + "9710": 769, + "9711": 1119, + "9712": 945, + "9713": 945, + "9714": 945, + "9715": 945, + "9716": 873, + "9717": 873, + "9718": 873, + "9719": 873, + "9720": 769, + "9721": 769, + "9722": 769, + "9723": 830, + "9724": 830, + "9725": 732, + "9726": 732, + "9727": 769, + "9728": 896, + "9729": 1000, + "9730": 896, + "9731": 896, + "9732": 896, + "9733": 896, + "9734": 896, + "9735": 573, + "9736": 896, + "9737": 896, + "9738": 888, + "9739": 888, + "9740": 671, + "9741": 1013, + "9742": 1246, + "9743": 1250, + "9744": 896, + "9745": 896, + "9746": 896, + "9747": 532, + "9748": 896, + "9749": 896, + "9750": 896, + "9751": 896, + "9752": 896, + "9753": 896, + "9754": 896, + "9755": 896, + "9756": 896, + "9757": 609, + "9758": 896, + "9759": 609, + "9760": 896, + "9761": 896, + "9762": 896, + "9763": 896, + "9764": 669, + "9765": 746, + "9766": 649, + "9767": 784, + "9768": 545, + "9769": 896, + "9770": 896, + "9771": 896, + "9772": 710, + "9773": 896, + "9774": 896, + "9775": 896, + "9776": 896, + "9777": 896, + "9778": 896, + "9779": 896, + "9780": 896, + "9781": 896, + "9782": 896, + "9783": 896, + "9784": 896, + "9785": 1042, + "9786": 1042, + "9787": 1042, + "9788": 896, + "9789": 896, + "9790": 896, + "9791": 614, + "9792": 732, + "9793": 732, + "9794": 896, + "9795": 896, + "9796": 896, + "9797": 896, + "9798": 896, + "9799": 896, + "9800": 896, + "9801": 896, + "9802": 896, + "9803": 896, + "9804": 896, + "9805": 896, + "9806": 896, + "9807": 896, + "9808": 896, + "9809": 896, + "9810": 896, + "9811": 896, + "9812": 896, + "9813": 896, + "9814": 896, + "9815": 896, + "9816": 896, + "9817": 896, + "9818": 896, + "9819": 896, + "9820": 896, + "9821": 896, + "9822": 896, + "9823": 896, + "9824": 896, + "9825": 896, + "9826": 896, + "9827": 896, + "9828": 896, + "9829": 896, + "9830": 896, + "9831": 896, + "9832": 896, + "9833": 472, + "9834": 638, + "9835": 896, + "9836": 896, + "9837": 472, + "9838": 357, + "9839": 484, + "9840": 748, + "9841": 766, + "9842": 896, + "9843": 896, + "9844": 896, + "9845": 896, + "9846": 896, + "9847": 896, + "9848": 896, + "9849": 896, + "9850": 896, + "9851": 896, + "9852": 896, + "9853": 896, + "9854": 896, + "9855": 896, + "9856": 869, + "9857": 869, + "9858": 869, + "9859": 869, + "9860": 869, + "9861": 869, + "9862": 896, + "9863": 896, + "9864": 896, + "9865": 896, + "9866": 896, + "9867": 896, + "9868": 896, + "9869": 896, + "9870": 896, + "9871": 896, + "9872": 896, + "9873": 896, + "9874": 896, + "9875": 896, + "9876": 896, + "9877": 541, + "9878": 896, + "9879": 896, + "9880": 896, + "9881": 896, + "9882": 896, + "9883": 896, + "9884": 896, + "9886": 896, + "9887": 896, + "9888": 896, + "9889": 702, + "9890": 1004, + "9891": 1089, + "9892": 1175, + "9893": 903, + "9894": 838, + "9895": 838, + "9896": 838, + "9897": 838, + "9898": 838, + "9899": 838, + "9900": 838, + "9901": 838, + "9902": 838, + "9903": 838, + "9904": 844, + "9905": 838, + "9906": 732, + "9907": 732, + "9908": 732, + "9909": 732, + "9910": 850, + "9911": 732, + "9912": 732, + "9920": 838, + "9921": 838, + "9922": 838, + "9923": 838, + "9954": 732, + "9985": 838, + "9986": 838, + "9987": 838, + "9988": 838, + "9990": 838, + "9991": 838, + "9992": 838, + "9993": 838, + "9996": 838, + "9997": 838, + "9998": 838, + "9999": 838, + "10000": 838, + "10001": 838, + "10002": 838, + "10003": 838, + "10004": 838, + "10005": 838, + "10006": 838, + "10007": 838, + "10008": 838, + "10009": 838, + "10010": 838, + "10011": 838, + "10012": 838, + "10013": 838, + "10014": 838, + "10015": 838, + "10016": 838, + "10017": 838, + "10018": 838, + "10019": 838, + "10020": 838, + "10021": 838, + "10022": 838, + "10023": 838, + "10025": 838, + "10026": 838, + "10027": 838, + "10028": 838, + "10029": 838, + "10030": 838, + "10031": 838, + "10032": 838, + "10033": 838, + "10034": 838, + "10035": 838, + "10036": 838, + "10037": 838, + "10038": 838, + "10039": 838, + "10040": 838, + "10041": 838, + "10042": 838, + "10043": 838, + "10044": 838, + "10045": 838, + "10046": 838, + "10047": 838, + "10048": 838, + "10049": 838, + "10050": 838, + "10051": 838, + "10052": 838, + "10053": 838, + "10054": 838, + "10055": 838, + "10056": 838, + "10057": 838, + "10058": 838, + "10059": 838, + "10061": 896, + "10063": 896, + "10064": 896, + "10065": 896, + "10066": 896, + "10070": 896, + "10072": 838, + "10073": 838, + "10074": 838, + "10075": 347, + "10076": 347, + "10077": 587, + "10078": 587, + "10081": 838, + "10082": 838, + "10083": 838, + "10084": 838, + "10085": 838, + "10086": 838, + "10087": 838, + "10088": 838, + "10089": 838, + "10090": 838, + "10091": 838, + "10092": 838, + "10093": 838, + "10094": 838, + "10095": 838, + "10096": 838, + "10097": 838, + "10098": 838, + "10099": 838, + "10100": 838, + "10101": 838, + "10102": 847, + "10103": 847, + "10104": 847, + "10105": 847, + "10106": 847, + "10107": 847, + "10108": 847, + "10109": 847, + "10110": 847, + "10111": 847, + "10112": 838, + "10113": 838, + "10114": 838, + "10115": 838, + "10116": 838, + "10117": 838, + "10118": 838, + "10119": 838, + "10120": 838, + "10121": 838, + "10122": 838, + "10123": 838, + "10124": 838, + "10125": 838, + "10126": 838, + "10127": 838, + "10128": 838, + "10129": 838, + "10130": 838, + "10131": 838, + "10132": 838, + "10136": 838, + "10137": 838, + "10138": 838, + "10139": 838, + "10140": 838, + "10141": 838, + "10142": 838, + "10143": 838, + "10144": 838, + "10145": 838, + "10146": 838, + "10147": 838, + "10148": 838, + "10149": 838, + "10150": 838, + "10151": 838, + "10152": 838, + "10153": 838, + "10154": 838, + "10155": 838, + "10156": 838, + "10157": 838, + "10158": 838, + "10159": 838, + "10161": 838, + "10162": 838, + "10163": 838, + "10164": 838, + "10165": 838, + "10166": 838, + "10167": 838, + "10168": 838, + "10169": 838, + "10170": 838, + "10171": 838, + "10172": 838, + "10173": 838, + "10174": 838, + "10181": 457, + "10182": 457, + "10208": 494, + "10214": 487, + "10215": 487, + "10216": 457, + "10217": 457, + "10218": 721, + "10219": 721, + "10224": 838, + "10225": 838, + "10226": 838, + "10227": 838, + "10228": 1157, + "10229": 1434, + "10230": 1434, + "10231": 1434, + "10232": 1434, + "10233": 1434, + "10234": 1434, + "10235": 1434, + "10236": 1434, + "10237": 1434, + "10238": 1434, + "10239": 1434, + "10240": 781, + "10241": 781, + "10242": 781, + "10243": 781, + "10244": 781, + "10245": 781, + "10246": 781, + "10247": 781, + "10248": 781, + "10249": 781, + "10250": 781, + "10251": 781, + "10252": 781, + "10253": 781, + "10254": 781, + "10255": 781, + "10256": 781, + "10257": 781, + "10258": 781, + "10259": 781, + "10260": 781, + "10261": 781, + "10262": 781, + "10263": 781, + "10264": 781, + "10265": 781, + "10266": 781, + "10267": 781, + "10268": 781, + "10269": 781, + "10270": 781, + "10271": 781, + "10272": 781, + "10273": 781, + "10274": 781, + "10275": 781, + "10276": 781, + "10277": 781, + "10278": 781, + "10279": 781, + "10280": 781, + "10281": 781, + "10282": 781, + "10283": 781, + "10284": 781, + "10285": 781, + "10286": 781, + "10287": 781, + "10288": 781, + "10289": 781, + "10290": 781, + "10291": 781, + "10292": 781, + "10293": 781, + "10294": 781, + "10295": 781, + "10296": 781, + "10297": 781, + "10298": 781, + "10299": 781, + "10300": 781, + "10301": 781, + "10302": 781, + "10303": 781, + "10304": 781, + "10305": 781, + "10306": 781, + "10307": 781, + "10308": 781, + "10309": 781, + "10310": 781, + "10311": 781, + "10312": 781, + "10313": 781, + "10314": 781, + "10315": 781, + "10316": 781, + "10317": 781, + "10318": 781, + "10319": 781, + "10320": 781, + "10321": 781, + "10322": 781, + "10323": 781, + "10324": 781, + "10325": 781, + "10326": 781, + "10327": 781, + "10328": 781, + "10329": 781, + "10330": 781, + "10331": 781, + "10332": 781, + "10333": 781, + "10334": 781, + "10335": 781, + "10336": 781, + "10337": 781, + "10338": 781, + "10339": 781, + "10340": 781, + "10341": 781, + "10342": 781, + "10343": 781, + "10344": 781, + "10345": 781, + "10346": 781, + "10347": 781, + "10348": 781, + "10349": 781, + "10350": 781, + "10351": 781, + "10352": 781, + "10353": 781, + "10354": 781, + "10355": 781, + "10356": 781, + "10357": 781, + "10358": 781, + "10359": 781, + "10360": 781, + "10361": 781, + "10362": 781, + "10363": 781, + "10364": 781, + "10365": 781, + "10366": 781, + "10367": 781, + "10368": 781, + "10369": 781, + "10370": 781, + "10371": 781, + "10372": 781, + "10373": 781, + "10374": 781, + "10375": 781, + "10376": 781, + "10377": 781, + "10378": 781, + "10379": 781, + "10380": 781, + "10381": 781, + "10382": 781, + "10383": 781, + "10384": 781, + "10385": 781, + "10386": 781, + "10387": 781, + "10388": 781, + "10389": 781, + "10390": 781, + "10391": 781, + "10392": 781, + "10393": 781, + "10394": 781, + "10395": 781, + "10396": 781, + "10397": 781, + "10398": 781, + "10399": 781, + "10400": 781, + "10401": 781, + "10402": 781, + "10403": 781, + "10404": 781, + "10405": 781, + "10406": 781, + "10407": 781, + "10408": 781, + "10409": 781, + "10410": 781, + "10411": 781, + "10412": 781, + "10413": 781, + "10414": 781, + "10415": 781, + "10416": 781, + "10417": 781, + "10418": 781, + "10419": 781, + "10420": 781, + "10421": 781, + "10422": 781, + "10423": 781, + "10424": 781, + "10425": 781, + "10426": 781, + "10427": 781, + "10428": 781, + "10429": 781, + "10430": 781, + "10431": 781, + "10432": 781, + "10433": 781, + "10434": 781, + "10435": 781, + "10436": 781, + "10437": 781, + "10438": 781, + "10439": 781, + "10440": 781, + "10441": 781, + "10442": 781, + "10443": 781, + "10444": 781, + "10445": 781, + "10446": 781, + "10447": 781, + "10448": 781, + "10449": 781, + "10450": 781, + "10451": 781, + "10452": 781, + "10453": 781, + "10454": 781, + "10455": 781, + "10456": 781, + "10457": 781, + "10458": 781, + "10459": 781, + "10460": 781, + "10461": 781, + "10462": 781, + "10463": 781, + "10464": 781, + "10465": 781, + "10466": 781, + "10467": 781, + "10468": 781, + "10469": 781, + "10470": 781, + "10471": 781, + "10472": 781, + "10473": 781, + "10474": 781, + "10475": 781, + "10476": 781, + "10477": 781, + "10478": 781, + "10479": 781, + "10480": 781, + "10481": 781, + "10482": 781, + "10483": 781, + "10484": 781, + "10485": 781, + "10486": 781, + "10487": 781, + "10488": 781, + "10489": 781, + "10490": 781, + "10491": 781, + "10492": 781, + "10493": 781, + "10494": 781, + "10495": 781, + "10502": 838, + "10503": 838, + "10506": 838, + "10507": 838, + "10560": 838, + "10561": 838, + "10627": 753, + "10628": 753, + "10702": 838, + "10703": 1046, + "10704": 1046, + "10705": 1000, + "10706": 1000, + "10707": 1000, + "10708": 1000, + "10709": 1000, + "10731": 494, + "10746": 838, + "10747": 838, + "10752": 1000, + "10753": 1000, + "10754": 1000, + "10764": 1661, + "10765": 563, + "10766": 563, + "10767": 563, + "10768": 563, + "10769": 563, + "10770": 563, + "10771": 563, + "10772": 563, + "10773": 563, + "10774": 563, + "10775": 563, + "10776": 563, + "10777": 563, + "10778": 563, + "10779": 563, + "10780": 563, + "10799": 838, + "10858": 838, + "10859": 838, + "10877": 838, + "10878": 838, + "10879": 838, + "10880": 838, + "10881": 838, + "10882": 838, + "10883": 838, + "10884": 838, + "10885": 838, + "10886": 838, + "10887": 838, + "10888": 838, + "10889": 838, + "10890": 838, + "10891": 838, + "10892": 838, + "10893": 838, + "10894": 838, + "10895": 838, + "10896": 838, + "10897": 838, + "10898": 838, + "10899": 838, + "10900": 838, + "10901": 838, + "10902": 838, + "10903": 838, + "10904": 838, + "10905": 838, + "10906": 838, + "10907": 838, + "10908": 838, + "10909": 838, + "10910": 838, + "10911": 838, + "10912": 838, + "10926": 838, + "10927": 838, + "10928": 838, + "10929": 838, + "10930": 838, + "10931": 838, + "10932": 838, + "10933": 838, + "10934": 838, + "10935": 838, + "10936": 838, + "10937": 838, + "10938": 838, + "11001": 838, + "11002": 838, + "11008": 838, + "11009": 838, + "11010": 838, + "11011": 838, + "11012": 838, + "11013": 838, + "11014": 838, + "11015": 838, + "11016": 838, + "11017": 838, + "11018": 838, + "11019": 838, + "11020": 838, + "11021": 838, + "11022": 838, + "11023": 838, + "11024": 838, + "11025": 838, + "11026": 945, + "11027": 945, + "11028": 945, + "11029": 945, + "11030": 769, + "11031": 769, + "11032": 769, + "11033": 769, + "11034": 945, + "11039": 869, + "11040": 869, + "11041": 873, + "11042": 873, + "11043": 873, + "11044": 1119, + "11091": 869, + "11092": 869, + "11360": 637, + "11361": 360, + "11362": 637, + "11363": 733, + "11364": 770, + "11365": 675, + "11366": 478, + "11367": 956, + "11368": 712, + "11369": 775, + "11370": 665, + "11371": 725, + "11372": 582, + "11373": 860, + "11374": 995, + "11375": 774, + "11376": 860, + "11377": 778, + "11378": 1221, + "11379": 1056, + "11380": 652, + "11381": 698, + "11382": 565, + "11383": 782, + "11385": 538, + "11386": 687, + "11387": 559, + "11388": 219, + "11389": 487, + "11390": 720, + "11391": 725, + "11520": 663, + "11521": 676, + "11522": 661, + "11523": 629, + "11524": 661, + "11525": 1032, + "11526": 718, + "11527": 1032, + "11528": 648, + "11529": 667, + "11530": 1032, + "11531": 673, + "11532": 677, + "11533": 1036, + "11534": 680, + "11535": 886, + "11536": 1032, + "11537": 683, + "11538": 674, + "11539": 1035, + "11540": 1033, + "11541": 1027, + "11542": 676, + "11543": 673, + "11544": 667, + "11545": 667, + "11546": 660, + "11547": 671, + "11548": 1039, + "11549": 673, + "11550": 692, + "11551": 659, + "11552": 1048, + "11553": 660, + "11554": 654, + "11555": 670, + "11556": 733, + "11557": 1017, + "11568": 691, + "11569": 941, + "11570": 941, + "11571": 725, + "11572": 725, + "11573": 725, + "11574": 676, + "11575": 774, + "11576": 774, + "11577": 683, + "11578": 683, + "11579": 802, + "11580": 989, + "11581": 761, + "11582": 623, + "11583": 761, + "11584": 941, + "11585": 941, + "11586": 373, + "11587": 740, + "11588": 837, + "11589": 914, + "11590": 672, + "11591": 737, + "11592": 680, + "11593": 683, + "11594": 602, + "11595": 1039, + "11596": 778, + "11597": 837, + "11598": 683, + "11599": 372, + "11600": 778, + "11601": 373, + "11602": 725, + "11603": 691, + "11604": 941, + "11605": 941, + "11606": 837, + "11607": 373, + "11608": 836, + "11609": 941, + "11610": 941, + "11611": 734, + "11612": 876, + "11613": 771, + "11614": 734, + "11615": 683, + "11616": 774, + "11617": 837, + "11618": 683, + "11619": 850, + "11620": 697, + "11621": 850, + "11631": 716, + "11800": 580, + "11807": 838, + "11810": 457, + "11811": 457, + "11812": 457, + "11813": 457, + "11822": 580, + "19904": 896, + "19905": 896, + "19906": 896, + "19907": 896, + "19908": 896, + "19909": 896, + "19910": 896, + "19911": 896, + "19912": 896, + "19913": 896, + "19914": 896, + "19915": 896, + "19916": 896, + "19917": 896, + "19918": 896, + "19919": 896, + "19920": 896, + "19921": 896, + "19922": 896, + "19923": 896, + "19924": 896, + "19925": 896, + "19926": 896, + "19927": 896, + "19928": 896, + "19929": 896, + "19930": 896, + "19931": 896, + "19932": 896, + "19933": 896, + "19934": 896, + "19935": 896, + "19936": 896, + "19937": 896, + "19938": 896, + "19939": 896, + "19940": 896, + "19941": 896, + "19942": 896, + "19943": 896, + "19944": 896, + "19945": 896, + "19946": 896, + "19947": 896, + "19948": 896, + "19949": 896, + "19950": 896, + "19951": 896, + "19952": 896, + "19953": 896, + "19954": 896, + "19955": 896, + "19956": 896, + "19957": 896, + "19958": 896, + "19959": 896, + "19960": 896, + "19961": 896, + "19962": 896, + "19963": 896, + "19964": 896, + "19965": 896, + "19966": 896, + "19967": 896, + "42192": 762, + "42193": 733, + "42194": 733, + "42195": 830, + "42196": 682, + "42197": 682, + "42198": 821, + "42199": 775, + "42200": 775, + "42201": 530, + "42202": 734, + "42203": 734, + "42204": 725, + "42205": 683, + "42206": 683, + "42207": 995, + "42208": 837, + "42209": 637, + "42210": 720, + "42211": 770, + "42212": 770, + "42213": 774, + "42214": 774, + "42215": 837, + "42216": 775, + "42217": 530, + "42218": 1103, + "42219": 771, + "42220": 724, + "42221": 762, + "42222": 774, + "42223": 774, + "42224": 683, + "42225": 683, + "42226": 372, + "42227": 850, + "42228": 812, + "42229": 812, + "42230": 557, + "42231": 830, + "42232": 322, + "42233": 322, + "42234": 674, + "42235": 674, + "42236": 322, + "42237": 322, + "42238": 588, + "42239": 588, + "42564": 720, + "42565": 595, + "42566": 436, + "42567": 440, + "42572": 1405, + "42573": 1173, + "42576": 1234, + "42577": 1027, + "42580": 1174, + "42581": 972, + "42582": 1093, + "42583": 958, + "42594": 1085, + "42595": 924, + "42596": 1096, + "42597": 912, + "42598": 1260, + "42599": 997, + "42600": 850, + "42601": 687, + "42602": 1037, + "42603": 868, + "42604": 1406, + "42605": 1106, + "42606": 961, + "42634": 963, + "42635": 787, + "42636": 682, + "42637": 580, + "42644": 808, + "42645": 712, + "42648": 1406, + "42649": 1106, + "42760": 500, + "42761": 500, + "42762": 500, + "42763": 500, + "42764": 500, + "42765": 500, + "42766": 500, + "42767": 500, + "42768": 500, + "42769": 500, + "42770": 500, + "42771": 500, + "42772": 500, + "42773": 500, + "42774": 500, + "42779": 400, + "42780": 400, + "42781": 287, + "42782": 287, + "42783": 287, + "42786": 444, + "42787": 390, + "42788": 540, + "42789": 540, + "42790": 837, + "42791": 712, + "42792": 1031, + "42793": 857, + "42794": 696, + "42795": 557, + "42800": 559, + "42801": 595, + "42802": 1349, + "42803": 1052, + "42804": 1284, + "42805": 1064, + "42806": 1216, + "42807": 1054, + "42808": 1079, + "42809": 922, + "42810": 1079, + "42811": 922, + "42812": 1035, + "42813": 922, + "42814": 698, + "42815": 549, + "42816": 656, + "42817": 688, + "42822": 850, + "42823": 542, + "42824": 683, + "42825": 531, + "42826": 918, + "42827": 814, + "42830": 1406, + "42831": 1106, + "42832": 733, + "42833": 716, + "42834": 948, + "42835": 937, + "42838": 850, + "42839": 716, + "42852": 738, + "42853": 716, + "42854": 738, + "42855": 716, + "42880": 637, + "42881": 343, + "42882": 837, + "42883": 712, + "42889": 400, + "42890": 386, + "42891": 456, + "42892": 306, + "42893": 808, + "42894": 693, + "42896": 928, + "42897": 768, + "42912": 821, + "42913": 716, + "42914": 775, + "42915": 665, + "42916": 837, + "42917": 712, + "42918": 770, + "42919": 493, + "42920": 720, + "42921": 595, + "42922": 886, + "43000": 613, + "43001": 689, + "43002": 1062, + "43003": 683, + "43004": 733, + "43005": 995, + "43006": 372, + "43007": 1325, + "61184": 216, + "61185": 242, + "61186": 267, + "61187": 277, + "61188": 282, + "61189": 242, + "61190": 216, + "61191": 242, + "61192": 267, + "61193": 277, + "61194": 267, + "61195": 242, + "61196": 216, + "61197": 242, + "61198": 267, + "61199": 277, + "61200": 267, + "61201": 242, + "61202": 216, + "61203": 242, + "61204": 282, + "61205": 277, + "61206": 267, + "61207": 242, + "61208": 216, + "61209": 282, + "62464": 612, + "62465": 612, + "62466": 653, + "62467": 902, + "62468": 622, + "62469": 622, + "62470": 661, + "62471": 895, + "62472": 589, + "62473": 622, + "62474": 1163, + "62475": 626, + "62476": 627, + "62477": 893, + "62478": 612, + "62479": 626, + "62480": 924, + "62481": 627, + "62482": 744, + "62483": 634, + "62484": 886, + "62485": 626, + "62486": 907, + "62487": 626, + "62488": 621, + "62489": 628, + "62490": 677, + "62491": 626, + "62492": 621, + "62493": 630, + "62494": 627, + "62495": 571, + "62496": 622, + "62497": 631, + "62498": 612, + "62499": 611, + "62500": 618, + "62501": 671, + "62502": 963, + "62504": 1023, + "62505": 844, + "62506": 563, + "62507": 563, + "62508": 563, + "62509": 563, + "62510": 563, + "62511": 563, + "62512": 555, + "62513": 555, + "62514": 555, + "62515": 555, + "62516": 573, + "62517": 573, + "62518": 573, + "62519": 824, + "62520": 824, + "62521": 824, + "62522": 824, + "62523": 824, + "62524": 611, + "62525": 611, + "62526": 611, + "62527": 611, + "62528": 611, + "62529": 611, + "63173": 687, + "64256": 810, + "64257": 741, + "64258": 741, + "64259": 1115, + "64260": 1116, + "64261": 808, + "64262": 1020, + "64275": 1388, + "64276": 1384, + "64277": 1378, + "64278": 1384, + "64279": 1713, + "64285": 294, + "64286": 0, + "64287": 519, + "64288": 665, + "64289": 939, + "64290": 788, + "64291": 920, + "64292": 786, + "64293": 857, + "64294": 869, + "64295": 821, + "64296": 890, + "64297": 838, + "64298": 758, + "64299": 758, + "64300": 758, + "64301": 758, + "64302": 728, + "64303": 728, + "64304": 728, + "64305": 610, + "64306": 447, + "64307": 588, + "64308": 687, + "64309": 437, + "64310": 485, + "64312": 679, + "64313": 435, + "64314": 578, + "64315": 566, + "64316": 605, + "64318": 724, + "64320": 453, + "64321": 680, + "64323": 675, + "64324": 658, + "64326": 653, + "64327": 736, + "64328": 602, + "64329": 758, + "64330": 683, + "64331": 343, + "64332": 610, + "64333": 566, + "64334": 658, + "64335": 710, + "64338": 1005, + "64339": 1059, + "64340": 375, + "64341": 408, + "64342": 1005, + "64343": 1059, + "64344": 375, + "64345": 408, + "64346": 1005, + "64347": 1059, + "64348": 375, + "64349": 408, + "64350": 1005, + "64351": 1059, + "64352": 375, + "64353": 408, + "64354": 1005, + "64355": 1059, + "64356": 375, + "64357": 408, + "64358": 1005, + "64359": 1059, + "64360": 375, + "64361": 408, + "64362": 1162, + "64363": 1191, + "64364": 655, + "64365": 720, + "64366": 1162, + "64367": 1191, + "64368": 655, + "64369": 720, + "64370": 721, + "64371": 721, + "64372": 721, + "64373": 721, + "64374": 721, + "64375": 721, + "64376": 721, + "64377": 721, + "64378": 721, + "64379": 721, + "64380": 721, + "64381": 721, + "64382": 721, + "64383": 721, + "64384": 721, + "64385": 721, + "64386": 513, + "64387": 578, + "64388": 513, + "64389": 578, + "64390": 513, + "64391": 578, + "64392": 513, + "64393": 578, + "64394": 576, + "64395": 622, + "64396": 576, + "64397": 622, + "64398": 1024, + "64399": 1024, + "64400": 582, + "64401": 582, + "64402": 1024, + "64403": 1024, + "64404": 582, + "64405": 582, + "64406": 1024, + "64407": 1024, + "64408": 582, + "64409": 582, + "64410": 1024, + "64411": 1024, + "64412": 582, + "64413": 582, + "64414": 854, + "64415": 900, + "64416": 854, + "64417": 900, + "64418": 375, + "64419": 408, + "64426": 938, + "64427": 880, + "64428": 693, + "64429": 660, + "64467": 824, + "64468": 843, + "64469": 476, + "64470": 552, + "64471": 622, + "64472": 627, + "64473": 622, + "64474": 627, + "64475": 622, + "64476": 627, + "64478": 622, + "64479": 627, + "64484": 917, + "64485": 1012, + "64486": 375, + "64487": 408, + "64488": 375, + "64489": 408, + "64508": 917, + "64509": 1012, + "64510": 375, + "64511": 408, + "65024": 0, + "65025": 0, + "65026": 0, + "65027": 0, + "65028": 0, + "65029": 0, + "65030": 0, + "65031": 0, + "65032": 0, + "65033": 0, + "65034": 0, + "65035": 0, + "65036": 0, + "65037": 0, + "65038": 0, + "65039": 0, + "65056": 0, + "65057": 0, + "65058": 0, + "65059": 0, + "65136": 342, + "65137": 342, + "65138": 342, + "65139": 346, + "65140": 342, + "65142": 342, + "65143": 342, + "65144": 342, + "65145": 342, + "65146": 342, + "65147": 342, + "65148": 342, + "65149": 342, + "65150": 342, + "65151": 342, + "65152": 511, + "65153": 343, + "65154": 375, + "65155": 343, + "65156": 375, + "65157": 622, + "65158": 627, + "65159": 343, + "65160": 375, + "65161": 917, + "65162": 917, + "65163": 375, + "65164": 408, + "65165": 343, + "65166": 375, + "65167": 1005, + "65168": 1059, + "65169": 375, + "65170": 408, + "65171": 590, + "65172": 606, + "65173": 1005, + "65174": 1059, + "65175": 375, + "65176": 408, + "65177": 1005, + "65178": 1059, + "65179": 375, + "65180": 408, + "65181": 721, + "65182": 721, + "65183": 721, + "65184": 721, + "65185": 721, + "65186": 721, + "65187": 721, + "65188": 721, + "65189": 721, + "65190": 721, + "65191": 721, + "65192": 721, + "65193": 513, + "65194": 578, + "65195": 513, + "65196": 578, + "65197": 576, + "65198": 622, + "65199": 576, + "65200": 622, + "65201": 1380, + "65202": 1414, + "65203": 983, + "65204": 1018, + "65205": 1380, + "65206": 1414, + "65207": 983, + "65208": 1018, + "65209": 1345, + "65210": 1364, + "65211": 966, + "65212": 985, + "65213": 1345, + "65214": 1364, + "65215": 966, + "65216": 985, + "65217": 1039, + "65218": 1071, + "65219": 942, + "65220": 974, + "65221": 1039, + "65222": 1071, + "65223": 942, + "65224": 974, + "65225": 683, + "65226": 683, + "65227": 683, + "65228": 564, + "65229": 683, + "65230": 683, + "65231": 683, + "65232": 564, + "65233": 1162, + "65234": 1191, + "65235": 655, + "65236": 720, + "65237": 894, + "65238": 901, + "65239": 655, + "65240": 720, + "65241": 917, + "65242": 931, + "65243": 582, + "65244": 582, + "65245": 868, + "65246": 893, + "65247": 375, + "65248": 408, + "65249": 733, + "65250": 784, + "65251": 619, + "65252": 670, + "65253": 854, + "65254": 900, + "65255": 375, + "65256": 408, + "65257": 590, + "65258": 606, + "65259": 693, + "65260": 660, + "65261": 622, + "65262": 627, + "65263": 917, + "65264": 1012, + "65265": 917, + "65266": 1012, + "65267": 375, + "65268": 408, + "65269": 745, + "65270": 759, + "65271": 745, + "65272": 759, + "65273": 745, + "65274": 759, + "65275": 745, + "65276": 759, + "65279": 0, + "65529": 0, + "65530": 0, + "65531": 0, + "65532": 0, + "65533": 1113 + }, + "CIDtoGID_Compressed": true, + "CIDtoGID": "eJzt3AW07LiZIGBJli3LliUZHjMzMzMzMzMzMzMzMzMzMzMzMzNv5U6mtzPpJJ10kt7s6DtHtiT\/kn\/bZder+04VAL+RBjDQgQEIMAEFFrABAw7gQAAJXOABHwQgHAgPIoCIIBKIDKKAqCAaiA5igJggFogN4oC4IB6IDxKAhCARSAySgKQgGUgOUoCUIBVIDdKAtCAdSA8ygIwgE8gMsoCsIBvIDnKAnCAXyA3ygLwgH8gPCoCCoBAoDIqAoqAYKA5KgJKgFCgNyoCyoBwoDyqAiqASqAyqgKqgGqgOaoCaoNZvPfiQ2qAOqAvqgfqgAWgIGoHGoAloCpqB5qAFaAlagdagDWgL2oH2oAPoCDqBzqAL6Aq6ge6gB+gJeoHeoA\/oC\/qB\/mAAGAgGgcFgCBgKhoHhYAQYCUaB0WAMGAvGgfFgApgIJoHJYAqYCqaB6WAGmAlmgdlgDpgL5oH5YAFYCBaBxWAJWAqWgeVgBVgJVoHVYA1YC9aB9WAD2Ag2gc1gC9gKtoHtYAfYCXaB3WAP2Av2gf3gADgIDoHD4Ag4Co6B4+AEOAlOgdPgDDgLzoHz4AK4CC6By+AKuAqugevgBrgJboHb4A64C+6B++ABeAgegcfgCXgKnoHn4AV4CV6B1+ANeAvegffgA\/gIPoHP4Av4Cr6B7+AHBBBCBDWIoQ4NSKAJKbSgDRl0IIcCSuhCD\/owgOFgeBgBRoSRYGQYBUaF0WB0GAPGhLFgbBgHxoXxYHyYACaEiWBimAQmhclgcpgCpoSpYGqYBqaF6WB6mAFmhJlgZpgFZoXZYHaYA+aEuWBumAfmhflgflgAFoSFYGFYBBaFxWBxWAKWhKVgaVgGloXlYHlYAVaElWBlWAVWhdVgdVgD1oS1YG1YB9aF9WB92AA2hI1gY9gENoXNYHPYAraErWBr2Aa2he1ge9gBdoSdYGfYBXaF3WB32AP2hL1gb9gH9oX9YH84AA6Eg+BgOAQOhcPgcDgCjoSj4Gg4Bo6F4+B4OAFOhJPgZDgFToXT4HQ4A86Es+BsOAfOhfPgfLgALoSL4GK4BC6Fy+ByuAKuhKvgargGroXr4Hq4AW6Em+BmuAVuhdvgdrgD7oS74G64B+6F++B+eAAehIfgYXgEHoXH4HF4Ap6Ep+BpeAaehefgeXgBXoSX4GV4BV6F1+B1eAPehLfgbXgH3oX34H34AD6Ej+Bj+AQ+hc\/gc\/gCvoSv4Gv4Br6F7+B7+AF+hJ\/gZ\/gFfoXf4Hf4AwEEEUIawkhHBiLIRBRZyEYMOYgjgSRykYd8FKBwKDyKgCKiSCgyioKiomgoOoqBYqJYKDaKg+KieCg+SoASokQoMUqCkqJkKDlKgVKiVCg1SoPSonQoPcqAMqJMKDPKgrKibCg7yoFyolwoN8qD8qJ8KD8qgAqiQqgwKoKKomKoOCqBSqJSqDQqg8qicqg8qoAqokqoMqqCqqJqqDqqgWqiWqg2qoPqonqoPmqAGqJGqDFqgpqiZqg5aoFaolaoNWqD2qJ2qD3qgDqiTqgz6oK6om6oO+qBeqJeqDfqg\/qifqg\/GoAGokFoMBqChqJhaDgagUaiUWg0GoPGonFoPJqAJqJJaDKagqaiaWg6moFmolloNpqD5qJ5aD5agBaiRWgxWvKHxxJaipah5f\/9kEIr\/rhe+T8fX2gVWo3WoLVoHVqPNqCNaBPajLagrWgb2o52oJ1oF9qN9qC9aB\/ajw6gg+gQOoyOoKPoGDqOTqCT6BQ6jc6gs+gcOo8uoIvoErqMrqCr6Bq6jm6gm+gWuo3uoLvoHrqPHqCH6BF6jJ6gp+gZeo5eoJfoFXqN3qC36B16jz6gj+gT+oy+oK\/oG\/qOfmh\/eIOBGtK0P77ZYE0PLY1QIZqpUc3SbI1pzl95e+Ka0KTmap7ma4EWLqwvvBZBi6hF0iJrUX6Ki6pF06JrMbSYWiwtdqgdJ1TiavG0+FoCLaGWSEusJdGSasm05FoKLaWWSkutpdHSaum09FqGUGRGLZOWWcuiZdWyadm1HFpOLZeWW8uj5dXyafm1AlpBrZBWWCuiFdWKacW1ElpJrZRWWiujldXKaeW1ClpFrZJWWauiVdWqadW1GlpNrZZWW6uj1dXqafW1BlpDrZHWWGuiNdWaac21FlpLrZXWWmujtdXaae21DlpHrZPWWeuiddW6ad21HlpPrZfWW+uj9dX6af21AdpAbZA2WBuiDdWGacO1EdpIbZQ2WhujjdXGaeO1CdpEbZI2WZuiTdWmadO1GdpMbZY2W5ujzdXmafO1BdpCbZG2WFuiLdWWacu1FdpKbZW2WlujrdXWaeu1DdpGbZO2WduibdW2adu1HdpObZe2W9uj7dX2afu1A9pB7ZB2WDuiHdWOace1E9pJ7ZR2WjujndXOaee1C9pF7ZJ2WbuiXdWuade1G9pN7ZZ2W7uj3dXuafe1B9pD7ZH2WHuiPdWeac+1F9pL7ZX2WnujvdXeae+1D9pH7ZP2WfuifdW+ad+1HxhgiBHWMMY6NjDBJqbYwjZm2MEcCyyxiz3s4wCHw+FxBBwRR8KRcRQcFUfD0XEMHBPHwrFxHBwXx8PxcQKcECfCiXESnBQnw8lxCpwSp8KpcRqcFqfD6XEGnBFnwplxFpwVZ8PZcQ6cE+fCuXEenBfnw\/lxAVwQF8KFcRFcFBfDxXEJXBKXwqVxGVwWl8PlcQVcEVfClXEVXBVXw9VxDVwT18K1cR1cF9fD9XED3BA3wo1xE9wUN8PNcQvcErfCrXEb3Ba3w+1xB9wRd8KdcRfcFXfD3XEP3BP3wr1xH9wX98P98QA8EA\/Cg\/EQPBQPw8PxCDwSj8Kj8Rg8Fo\/D4\/EEPBFPwpPxFDwVT8PT8Qw8E8\/Cs\/EcPBfPw\/PxArwQL8KL8RK8FC\/Dy\/EKvBKvwqvxGrwWr8Pr8Qa8EW\/Cm3\/5DsRb8Fa8DW\/HO\/BOvAvvxnvwXrwP78cH8EF8CB\/GR\/BRfAwfxyfwSXwKn8Zn8Fl8Dp\/HF\/BFfAlfxlfwVXwNX8c38M2w+W7h2\/gOvovv4fv4Qaj9ED\/Cj\/ET\/BQ\/w8\/xC\/wSv8Kv8Rv8Fr\/D7\/EH\/BF\/wp\/xF\/wVf8Pf8Q8d6FBHuqZjXdcNneimTnVLt3WmOzoHQBe6\/PX\/\/PtbdFf3dF8P9HB6eD2CHlGPpEfWo+hR9Wh6dD2GHlOPpcfW4+hxw2Lj6fH\/bHwCPaGeSE+sJ9GT6sn05HoKPaWeSk+tp9HT6un09HoGPaOeSc+sZ9Gz6tn07HoOPaee62fjc+t59Lx6Pj3\/r8i1gF4wtCykFw4ti\/zZ1qI\/qxf747p4qJTQS+ql9NJ6Gb2sXk4vr1fQK+qV9Mp6Fb2qXk2vrtfQa+q19Np6Hb2uXk+vrzfQG\/5spkZ6Y72J3lRvpjfXW+gt9VZ6a72N3lZvp7fXO+gd9U56Z72L3lXvpncPRfcIG9PzZ+N76b31PnpfvZ\/eXx+gD9QH6YP1IfpQfZg+XB+hj9RH\/TFu9E8jxuhj9XH6eH2CPlGfpE\/Wp+hT9Wn6dH2GPlOfpc\/W5+hz9Xn6fH2BvlBfpC\/Wl+hL9WX6cn2FvlJfpa\/W1+hr9XX6en2DvlHfpG\/Wt+hb9W36dn2HvlPfpe\/W9+h79X36fv2AflA\/pB\/Wj+hH9WP6cf2EflI\/pZ\/Wz+hn9XP6ef2CflG\/9Cdn+LJ+Rb8aVrumXw8tb4TKzZ+23vrbV\/AXrult\/Y5+V7+n39cf6A\/1R\/pj\/ck\/Mo\/yr6E\/1Z\/pz\/UX+kv9lf5af6O\/1d\/p7\/UP+kf9k\/5Z\/6J\/1b\/p3\/UfBjCggQzNwIZuGAYxTIMalmEbzHAMbghDGq7hGf5\/zWoERjgjvBHBiGhEMiIbUYyoRjQjetiWGEZMI9bvecSKoiiKoiiKovzvZMT+vTMI5RDHiBtaxgurxzcShJYJw+qJ\/iQqsZHESGokC9WSGymMlEYqI7WRxkgbaqcz0hsZQuuMoZIpLDazkSW0zGpkM7IbOYycRi4jt5HHyGvkM\/IbBYyCoW2FjMJG2F9YjKJGMaO4UcIoGaqXCpXSRhmjrFHOKG9UCNte0ahkVDaqGFWNakZ1o4ZR0wj7X0ujtlHn33iSFEX5BUZdo55R32hgNDQaGY2NJkZTo5nR3GhhtDRaGa2NNkZbo53R3uhgdDQ6GZ2NLkZXo5vR3ehh9DR6Gb2NPkZfo5\/R3xhgDDQG\/eL8g40hxlBjmDHcGGGMNEYZo40xxlhjnDHemGBMNCYZk40pxlRjmjHdmGHMNGYZs405xlxjnjHfWGAsNBYZi40lxlJjmbHcWGGsNFYZq401xlpjnbH+332mFEVRlP+3GBuMjcYmY7OxxdhqbAu1txs7jJ3GLmO3scfYa+wz9hsHjIPGIeOwccQ4ahwzjhsnjJOhuFPGaeOMcdY4Z5w3LhgXjUvGZeOKcdW4Zlw3bhg3jVvGbeOOcde4Z9w3HhgPjUehMY+NJ8ZT45nx3HhhvDReGa+NN8Zb453x3vhgfDQ+GZ+NL8ZX41so8rvxgwACCSIawQAQnRiEEJNQYhGbMOIQTgSRxCUe8UlAwpHwJAKJSCKRyCQKiUqikegkBolJYpHYJA6JS+KR+CQBSUgSkcQkCUlKkpHkJAVJSVKR1CQNSUvSkfQkA8lIMpHMJAvJSrKR7CQHyUlykdwkD8lL8pH8pAApSAqRwqQIKUqKkeKkBClJSpHSpAwpS8qR8qQCqUgqkcqkCqlKqpHqpAapSWqR2qQOqUvqkfqkAWlIGpHGpAlpSpqR5n84+6QFaUlakdakDWlL2pH2pAPpSDqRzqQL6Uq6ke6kB+lJepHepA\/pS\/qR\/mQAGUgGkcFkCBlKhpHhZAQZSUaR0WQMGUvGkfFkAplIJoXmnUymkKlkGplOZpCZZBaZTeaQuWQemU8WkIVkEVlMlpClZBlZTlaQlWQVWU3WkLVk3f98dZD1ZAPZSDaRzWQL2Uq2ke1kB9lJdpHdZA\/ZS\/aR\/eQAOUgOkcPkCDlKjpHj5AQ5SU6R0+QMOUvOkfPkArlILpHL5Aq5Sq6R6+QGuUlukdvkDrkbmv8euU8ekIfkEXlMnpCn5Bl5Tl6Ql+QVeU3ekLfkXSjmPflAPpJP5DP5Qr6Sb+Q7+WECE5rI1Exs6qZhEtM0qWmZtslMx+R\/\/io3hSlN1\/RM3wzMcGZ4M4IZ0YxkRjajmFHNaGZ0M4YZ86fYWGZsM44Z14xnxjcTmAnNRGZiM4mZ1Ez2C\/MmN1OYKc1UZmozjZnWTGemNzOYGc1MZmYzi5nVzPbPu09\/Yd\/Zw5Y5\/pX7+Hcyc5q5\/nbU3zFfbjOPmdfMZ+Y3C5gFzUJm4V+IKWIWNYuZxc0SZkmzlFnaLGOWNcuZ5c0KZkWzklnZrGJWNauZ1c0aZk2zllnbrGPWNeuZ9c0G\/8xMFUVRFEVRFEVR\/vXMhmYjs7HZxGxqNjObmy3MlmYrs7XZxmxrtjPbmx3MjmYns7PZxewaiu1mdjd7mD3NXmZvs4\/Z1+xn9jcHmAPNQebgsLmGmEPNYeZwc4Q50hxljjbHhPrGmuPM8eYEc6I5yZxsTjGnmtPM6eYMc6Y5y5xtzjHnmvPM+eYCc6G5yFxsLjGXmsvM5eYKc6W5ylxtrjHXmuvM9eYGc6O5ydxsbjG3mtvM7eaO0Mw7zV3mbnOPudfcZ+43D5gHzUPmYfOIedQ89heP9rh5Imx9MlRO\/Y9tp\/+Os3bGPGueM8+bF8yL5iXzsnnFvGpeM6+bN8yb5i3ztnnHvGveM++bD8yH5iPzsfnEfGo+M5+bL8yX5ivztfnGfGu+M9+bH36a8aP5yfxsfjG\/mt\/+rgv4G5nfzR8UUEgR1SimOjUooSal1KI2ZdShnAoqqUs96tOAhqPhaQQakUaikWkUGpVGo9FpDBqTxqKxaRwal8aj8WkCmpAmoolpEpqUJqPJaQqakqaiqWkampamo+lpBpqRZqKZaRaalWaj2WkOmpPmorlpHpqX5qP5aQFakBaihWkRWpQWo8VpCVqSlqKlaRlalpaj5WkFWpFWopVpFVqVVqPVaQ1ak9aitWkdWpfWo\/VpA9qQNqKNaRPalDajzWkL2pK2oq1pG9qWtqPtaQfakXainWkX2pV2o91pD9qT9qK9aR\/al\/aj\/ekAOpAOooPpEDqUDqPD6Qg6ko6io+kYOpaOo+PpBDqRTqKT6RQ6lU6j0+kMOpPOorPpHDqXzqPz6QK6kC6ii+kSupQuo8vpCrqSrqKr6Rq6lq6j6+kGupFuopvpFrqVbqPb6Q66k+6iu+keupfuo\/vpAXqQHqKH6RF6lB6jx+kJepKeoqfpGXqWnqPn6QV6kV6il+kVepVeo9fpDXqT3qK36R16l96j9+kD+pA+oo\/pE\/qUPqPP6Qv6kr6ir+kb+pa+o+\/pB\/qRfvrv608\/0y\/0K\/1Gv9MfFrCghSzNwpZuGRaxTItalmVbzHIsbok\/xFvSci3P8q3ACvsunRXeimBFtCJZka0oVlQrmhXdimHFtGJZsa04VlwrnhXfSmAltBJZia0kVlIrmZXcSmGltFJZqa00VlornZXeymBltDJZma0sYfNltbJZ2a0cVk4r7G9BVm4rj5XXymfltwpYBa1CoZ7CoVIkVIqGSjGruFXCKmmVskpbZayyVjmrvFXBqmhVsipbVayqVjWrulXDqmnVsmpbday6Vj2rvtXAamg1shpbTcLmb2o1s5pbLayWViurtdXGamu1s9pbHayOViers9XF6mp1s7pbPayeVi+rt9XH6mv1s\/pbA6yB1iBrsDXEGmoNs4ZbI6yR1ihrtDXGGmuNs8ZbE6yJ1iRrsjXFmmpNs6ZbM6yZoX3NsmZbc6y51jxrvrXAWmgtshZbS6yl1jJrubUitH2ltcpaba2x1lrrrPXWBmujtcnabG2xtlrbwnLdbu2wdlq7rN3WnlBrr7XP2m8dsA5ah6zD1hHrqHXMOm6dsE5ap6zT1hnrrHXOOh827oJ10boUWl+2rlhXrWvWdeuGddO6Zd0O9d2x7lr3rPvWA+uh9ch6bD2xnlrPrOfWC+ul9cp6bb2x3lrvrPfWB+uj9cn6bH2xvlrfrO\/WDxvY0Ea2ZmNbtw2b2KZNbcu2bWY7NreFLW3X9mzfDuxwdng7gh3RjmRHtqPYUe1odnQ7hh3TjmXHtuPYce14dnw7gZ3QTmQntpPYSe1kdnI7hZ3STmWnttPYae10dno7g53RzmRntrPYWe1sdnY7h53TzmXntvPYee18dn67wP99ptkF7UJ2YbuIXdQuZhe3S4T1lbRL2aXtMnZZu5xd3q5gV7Qr2ZXtKnZVu5pd3a5h17Rr2bXtOnZdu55d325gN7Qb2Y1D45rYTe1mdnO7hd3SbmW3ttvYbe12dnu7wx\/31dHuZHe2u9hd7W52d7uH3dPuZfe2+9h97X52f3uAPdAeZA+2h9hD7WFh8cPtEfbIsNqoX\/N8tkfbY36qj7XH\/bE23p7wU+\/EX\/us\/8X5J9mT7Sn2VHuaPd2eYc+0Z9mzQ71z7Ln2PHu+vcBeaC+yF9tL7KX2Mnu5vcJeaa+yV9tr7LX2Onu9vcHeaG+yN9tb7K32Nnu7vcPeae+yd9t77L32Pnu\/fcA+aB+yD9tH7KP2Mfu4fcI+aZ+yT9tn7LP2Ofu8fcG+aF+yL9tX7Kv2Nfu6fcO+ad8K7f92WG53QuWufc++bz+wH9qP7Mf2E\/up\/cx+br+wX9qv7Nf2G\/ut\/c5+b3+wP9qf7M\/2F\/ur\/c3+bv9ggEGGmMYw05nBCDMZZRazGWMO40wwyVzmMZ8FLBwLzyKwiCzSf50RFvnn54dFYVFZNBadxWAxWSwWm8VhcVk8Fp8lYAlZIpaYJWFJWTKWnKVgKVkqlpqlYWlZOpaeZWAZWSaWmWVhWVk2lp3lYDlZLpab5WF5WT6WnxVgBVkhVpgVYUVZMVaclWAlWSlWmpVhZVk5Vp5VYBVZJVaZVWFVWTVWndVgNVktVpvVYXVZPVafNWANWSPWmDVhTVkz1py1YC1ZK9aatWFtWTvWnnVgHVkn1pl1YV1ZN9ad9WA9WS\/Wm\/VhfVk\/1p8NYAPZIDaYDWFD2TA2nI1gI9koNpqNYWPZODaeTWAT2SQ2mU1hU9k0Np3NYDPZLDabzWFz2Tw2ny1gC9kitpgtYUvZMracrWAr2Sq2mq1ha9k6tp5tYBvZJraZbWFb2Ta2ne1gO9kutpvtYXvZPrafHWAH2SF2mB1hR9kxdpydYCfZKXaanWFn2Tl2nl1gF9kldpldYVfZNXad3WA32S12m91hd9k9dp89YA\/ZI\/aYPWFP2TP2nL1gL9kr9pq9YW\/ZO\/aefWAf2Sf2mX1hX9k39p39cIADHeRoDnZ0x3CIYzrUsRzbYY7jcEc40nEdz\/GdwAnnhHciOBGdSE5kJ4oT1YnmRHdiODGdWE5sJ44T14nnxHcSOAmdRE5iJ4mT1EnmJHdSOCmdVE5qJ42T1knnpHcyOBmdTE5mJ4uT1cnmZHdyODmdXE5uJ4+T18nn5HcKOAWdQk5hp4hT1CnmFHdKOCWdUk5pp4xT1innlHcqOBWdSk5lp4pT1anmVHdqODWdWk5tp45T16nn1HcaOA2dRk5jp4nT1GnmNHdaOC2dVk5rp43T1mnntHc6OB2dTk5np4vT1enmdHd6OD2dXk5vp4\/T1+nn9HcGOAOdQc5gZ4gz1BnmDHdGOCOdUc5oZ4wz1hnnjHcmOBOdSc5kZ4oz9ef3gzPNmR62nuHMdGY5s505ztyw9jxnvrPAWegsCmstdpb8lqfSP5uz1Fnm\/PRrCE7YryE4K38hbtVfnGH1n7TWOGuddc56Z4Oz0dnkbHa2OFudbc52Z4ez09nl7Hb2OHudfc7+35j1Aefgr4w8FCqHw2pHfts+\/xHOUecvfuL6l+\/7uHPCOemcck47Z5yzzjnnvHPh98rlP5Fz0bnkXHauOFeda85154Zz07nl3HbuOHede85954Hz0HnkPHaeOE+dZ85z54Xz0nnlvHbeOG+dd85754Pz0fnkfHa+OF+db8535wcHHHLENY65zg1OuMkpt7jNGXc454JL7nKP+zzg4Xh4HoFH5JF4ZB6FR+XReHQeg8fksXhsHofH5fF4fJ6AJ+SJeGKehCflyXhynoKn5Kl4ap6Gp+XpeHqegWfkmXhmnoVn5dl4dp6D5+S5eG6eh+fl+Xh+XoAX5IV4YV6EF+XFeHFegpfkpXhpXoaX5eV4eV6BV+SVeGVehVfl1Xh1XoPX5LV4bV6H1+X1eH3egDfkjXhj3oQ35c14c96Ct+SteGvehrfl7Xh73oF35J14Z96Fd+XdeHfeg\/fkvXhv3of35f14fz6AD+SD+GA+hA\/lw\/hwPoKP5KP4aD6Gj+Xj+Hg+gU\/kk\/hkPoVP5dP4dD6Dz+Sz+Gw+h8\/l8\/h8voAv5Iv4Yr6EL+XL+HK+gq\/kq\/hqvoav5ev4er6Bb+Sb+Ga+hW\/l2\/h2voPv5Lv4br6H7+X7+H5+gB\/kh\/hhfoQf5cf4cX6Cn+Sn+Gl+hp\/l5\/h5foFf5Jf4ZX6FX+XX+HV+g9\/kt\/htfoff5ff4ff6AP+SP+GP+hD\/lz\/hz\/oK\/5K\/4a\/6Gv+Xv+Hv+gX\/kn\/hn\/oV\/5d\/4d\/5DAAEFEprAQheGIMIUVFjCFkw4ggshpHCFJ3wRiHAivIggIopIIrKIIqKKaCK6iCFiilgitogj4op4Ir5IIBKKRCKxSCKSimQiuUghUopUIrVII9KKdCK9yCAyikwis8gisopsIrvIIXKKXCK3yCPyinwivyggCopCorAoIoqKYqK4KCFKilKitCgjyopyoryoICqKSqKyqCKqimqiuqghaopaoraoI+qKeqK+aCAaikaisWgimopmorloIVqKVqK1aCPaAiDaifaig+goOonOoovoKrqJ7qKH6Cl6id6ij+gr+on+YoAYKAaJwWKIGCqGieFixJ\/ef2KkGCVGizG\/fHf+OmLsbxo9TowXE0ToU4SYJCaLKSLs\/V5ME9PFDDFTzBKzxRwxV8wT88UCsVAsEovFErFULBPLxQqxUqwSq8UasVasE+vFBrExNHKT2Cy2iK1im9gudoidYpfYLfaIvWKf2C8OiIPikDgsjoij4pg4Lk6Ik+KUOC3OiLPinDgvLoiL4pK4LK6E5rkaKtfEdXFD3PxjpqFPBuK2uCPuinvivnggHob1PhKPxRPxVDwTz8UL8VK8Eq\/FG\/FWvBPvxQfxUXwSn8UX8VV8E9\/FDwkklEhqEktdGpJIU1JpSVsy6UguhZTSlZ70ZSDDyfAygowoI8nIMoqM+l85yGgyuowhY8pYMraMI+PKeDK+TCATykQysUwik8pkMrlMIVPKVDK1TCPThkakk+llBplRZpKZZRaZVWaT2WUOmVPmkrl\/fh1kHpn37796Mt\/P6vllAVlQFpKF5U+\/3iGLymKyuCwhS8pSsrQsI8vKcrK8rCArykqysqwiq8pqsrqsIWvKWrK2rCPrynqyvmwgG8pGsrFsIpvKZrK5bCFbylaytWwj28p2sr3sIDvKTrKz7CK7ym6yu+whe8pesrfsI\/vKfrK\/HCAHykFysBwih8phcrgcIUfKUXK0HCPHynFyvJwgJ8pJcrKcIqfKaXK6nCFnyllytpwj58p5cr5cIBfKRXKxXCKXymVyuVwhV8pVcrVcI9fKdXK93CA3yk1ys9wit8ptcrvcIXfKXXK33CP3yn1yvzwgD8pD8rA8Io\/KY\/K4PCFPylPytDwjz8pz8ry8IC\/KS\/KyvCKvymvyurwhb8pb8ra8I+\/Ke\/K+fCAfykfysXwin8pn8rl8IV\/KV\/K1fCPfynfyvfwgP8pP8rP8Ir\/Kb\/K7\/OECF7rI1Vzs6q7hEtd0qWu5tstcx+WucKXrup7ru4Ebzg3vRnAjupHcyG4UN6obzY3uxnBjurHc2G4cN64bz43vJnATuoncxG4SN6mbzE3upnBTuqnc1G4aN62bzk3vZnAzupnczG4WN6ubzc3u5nBzurnc3G4eN6+bz83vFnALuoXcwm4Rt6hbzC3ulnBLuqXc0m4Zt6xbzi3vVnArupXcym6Vn7+W3KputbB1dbfG3\/9K\/Me4Nd1\/xq8w\/tYsarv\/D36byq3r1nPruw3chm4jt7Hb5O8Y2fSvbm3mNv+p3sJt6bb6hZjWbhu3rdvObe92cDu6ndzObhe3q9vN7e72cHu6vdzevyqPPr8+538et6\/b71dE9XcHuAPdQe5gd4g71B3mDndHuCPdUe5od4w71h3njncnuBPdSe5kd4o71Z3mTndnuDPdWe5sd447153nzncXuAvdRX9lD4vdJe5Sd5m73F3hrnRXuavdNe5ad537u373xt3gbvxZa5O72d3ibnW3udvdHe5Od5e7293j7nX3ufvdA+5B95B72D3iHnWPucfdE+5J95R72j3z0+iz7jn3vHvBvehe+qV9\/dNyvuxe+VfOr\/yncq+619zr7g33pnvLve3ece+699z77gP3ofvIfew+cZ+6z9zn7gv3pfvKfe2+CY14675z37sf3I\/uJ\/fz753\/78394n51v7nf3R8e8KCHPM3Dnu4ZHvFMj3qWZ3vMczzuCU96rud5vhd44bzwXgQvohfJi+xF8aJ60bzoXgwv5i\/N78XyYntxvLhePC++l8BL6CXyEntJvKReMi+5l8JL6aXyUntpvLReOi+9l8HL6GXyMntZvKxeNi+7l8PL6eXycnt5vLxePi+\/V8Ar6BXyCntFvKJeMa+4V8Ir6ZXySntlvLJeOa\/8L+y9wr\/49P2v41X8k1alsGVlr4pX1av2Z7HV\/11ZKYqiKIqiKIqiKIqiKIqiKIqiKIqiKIqiKIqiKIqiKIqiKIqiKIqiKIqiKIqiKMpv49Xwanq1vNpeHa+uV8+r7zXwGnqNvMZeE6+p18xr7rXwWnqtvNZeG6+t185r73XwOnqdvM5eF6+r183r7vXwenq9vN5eH6+v18\/r7w3wBnqDvMHeEG+oN8wb7o3wRnqjvNHeGG+sN84b703wJnqTvMneFG+qN82b\/nsfv6IoiqIoiqIoiqIoiqIoiqIoiqIoiqIoiqIoiqIoiqIoiqIoiqIoiqIoiqIoiqIoiqIoiqIoiqIoiqIoiqIoiqIoiqIoiqIoiqIoiqIoiqIoiqIoiqIoiqIoiqIoiqIoiqIoiqIoiqIoiqIoiqIoiqIoiqIoiqIoiqIoiqIoiqIo\/\/\/wZngzvVnebG+ON9eb5833FngLvUXeYm+Jt9Rb5i33VngrvVXeam+Nt9Zb5633NngbvU3eZm+Lt9Xb5m33dng7vV3ebm+Pt9fb5+33DngHvUPeYe+Id9Q75h3\/vY9PUf7AO+Gd9E55p39qn\/HOhq3PeefD1he8i94l7\/Ivjr3iXfWuede9G95N75Z327vj3fXuefe9B\/9gLg+9R95j78mf9D31noWtn3sv\/rFZ\/zN4L71X3mvvjffWe+e99z54H71P3mfvi\/fV++Z9\/ynqhw986CNf+0PLx77uGz7xTZ\/6lm\/7zHf+O9LnvvCl7\/qe7\/uBH84P70fwI\/qR\/Mh+FD+qH82P7sf4KTamH8uP7cfx4\/rxwtrx\/QR+Qj+Rn9hPEtZO6if7S3n7yf0Ufko\/1d97vH5qP42f1k\/3s570fgY\/o5\/Jz+xnCbWy+tn+6vjsfg4\/p5\/Lz+3n8fP6+fz8fgG\/4N+bxb+PX8gv7Bfxi\/rF\/OJ+Cb\/k752PoiiKoiiKoiiKoiiKoiiKoiiKoiiKoiiKoiiKoiiKoiiKoiiKoiiKoiiKoiiKoiiKoiiKoiiKoiiKoiiKoiiKoiiKoiiKoiiKoiiKoiiKoiiKoiiKoiiKoiiKoiiKoiiKoiiKoiiKoijKv4tfyi\/tl\/HL+uX88n4Fv6Jfya\/sV\/Gr+tX86n4Nv6Zfy6\/t1\/Hr+vX8+n4Dv6HfyG\/8e+esKIqiKIqi\/OP8Jn5Tv5nf3G\/ht\/Rb+a39Nn5bv53f3u\/gd\/Q7+Z39Ln5Xv5vf3e\/h9\/R7+b39Pn5fv5\/f3x\/gD\/QH+YP9If5Qf5g\/3B\/hj\/RHheYb7Y\/xx\/rj\/PH+BH+iP8mf7E\/xp\/rT\/On+DH+mP8uf7c\/x5\/rz\/Pn+An+hv8hf7C\/5vc+BoijK78tf+ntnoCiKoijK\/w7+Mn+5v8Jf6a\/yV\/tr\/mLUWn+dv97f4G\/8Wd8mf7O\/xd\/qb\/O3+zv8nf4uf7e\/x9\/r7\/P3+wf8g\/4h\/7B\/xD\/qH\/OP+yf8k\/4p\/3Ro1Bn\/rH\/OP+9fCNUvhsol\/3JoecW\/Glpe86\/7N\/yb\/i3\/tn\/Hv+vf8++H7emB\/9B\/5D\/2n\/hP\/Wf+c\/+F\/9J\/5b\/23\/hv\/Xf+e\/+D\/9H\/5H\/2v\/hf\/W\/+d\/9HAAIYoEALcKAHRkACM6CBFdgBC5yAByKQgRt4gR8EQbggfBAhiBhECiIHUYKoQbQgehAjiBnECmIHcYK4QbwgfpAgSBgkChIHSYKkQbIgeZAiSBmkClIHaYK0QbogfZAhyPjzsxVkCjIHWYKs\/7yrFGQLsgc5gpxBriB3kCfIG+QL8od6CwQFf4ooFBQOigRFg2JB8V81Y4mgZFAqKP3Py1FRlP80QZmgbFAuKB9UCCoGlYLKQZWgalAtqB7UCGoGtYLaf3N8naBuUC+o\/+\/I9R8RNAgaBo2CxkGTUL1p0CxoHrQIWgatgtZBm6Bt0C5oH3QIOgadgs5Bl6Br0C3oHvQIega9gt5Bn6Bv0C\/oHwwIBgaDgsHBkGBoMCwYHowIRgajgtHBmGBsMC4YH0wIJgaTgsnBlGBqMC2YHswIZgazgtnBnGBuMC+YHywIFgaLgsXBkmBpsCxYHqwIVgargtXBmmBtsC5YH2wINgabgs3BlmBrsC3YHuwIdga7gt3BnmBvsC\/YHxwIDgaHgsPBkeBocCw4HpwITgangtPBmeBscC44H1wILgaXgsvBleBqcC24HtwIbga3gtvBneBucC+4HzwIHgaPgsfBk+Bp8Cx4HrwIXgavgtdhZ+fN7319lH+34G3wLngffAg+\/qH1fwDZb0Cz", + "_version_": 6 +} \ No newline at end of file diff --git a/storage/fonts/DejaVuSans.ufm.json b/storage/fonts/DejaVuSans.ufm.json new file mode 100755 index 0000000..4c231fa --- /dev/null +++ b/storage/fonts/DejaVuSans.ufm.json @@ -0,0 +1,10770 @@ +{ + "codeToName": { + "32": "space", + "33": "exclam", + "34": "quotedbl", + "35": "numbersign", + "36": "dollar", + "37": "percent", + "38": "ampersand", + "39": "quotesingle", + "40": "parenleft", + "41": "parenright", + "42": "asterisk", + "43": "plus", + "44": "comma", + "45": "hyphen", + "46": "period", + "47": "slash", + "48": "zero", + "49": "one", + "50": "two", + "51": "three", + "52": "four", + "53": "five", + "54": "six", + "55": "seven", + "56": "eight", + "57": "nine", + "58": "colon", + "59": "semicolon", + "60": "less", + "61": "equal", + "62": "greater", + "63": "question", + "64": "at", + "65": "A", + "66": "B", + "67": "C", + "68": "D", + "69": "E", + "70": "F", + "71": "G", + "72": "H", + "73": "I", + "74": "J", + "75": "K", + "76": "L", + "77": "M", + "78": "N", + "79": "O", + "80": "P", + "81": "Q", + "82": "R", + "83": "S", + "84": "T", + "85": "U", + "86": "V", + "87": "W", + "88": "X", + "89": "Y", + "90": "Z", + "91": "bracketleft", + "92": "backslash", + "93": "bracketright", + "94": "asciicircum", + "95": "underscore", + "96": "grave", + "97": "a", + "98": "b", + "99": "c", + "100": "d", + "101": "e", + "102": "f", + "103": "g", + "104": "h", + "105": "i", + "106": "j", + "107": "k", + "108": "l", + "109": "m", + "110": "n", + "111": "o", + "112": "p", + "113": "q", + "114": "r", + "115": "s", + "116": "t", + "117": "u", + "118": "v", + "119": "w", + "120": "x", + "121": "y", + "122": "z", + "123": "braceleft", + "124": "bar", + "125": "braceright", + "126": "asciitilde", + "160": "nbspace", + "161": "exclamdown", + "162": "cent", + "163": "sterling", + "164": "currency", + "165": "yen", + "166": "brokenbar", + "167": "section", + "168": "dieresis", + "169": "copyright", + "170": "ordfeminine", + "171": "guillemotleft", + "172": "logicalnot", + "173": "sfthyphen", + "174": "registered", + "175": "macron", + "176": "degree", + "177": "plusminus", + "178": "twosuperior", + "179": "threesuperior", + "180": "acute", + "181": "mu", + "182": "paragraph", + "183": "periodcentered", + "184": "cedilla", + "185": "onesuperior", + "186": "ordmasculine", + "187": "guillemotright", + "188": "onequarter", + "189": "onehalf", + "190": "threequarters", + "191": "questiondown", + "192": "Agrave", + "193": "Aacute", + "194": "Acircumflex", + "195": "Atilde", + "196": "Adieresis", + "197": "Aring", + "198": "AE", + "199": "Ccedilla", + "200": "Egrave", + "201": "Eacute", + "202": "Ecircumflex", + "203": "Edieresis", + "204": "Igrave", + "205": "Iacute", + "206": "Icircumflex", + "207": "Idieresis", + "208": "Eth", + "209": "Ntilde", + "210": "Ograve", + "211": "Oacute", + "212": "Ocircumflex", + "213": "Otilde", + "214": "Odieresis", + "215": "multiply", + "216": "Oslash", + "217": "Ugrave", + "218": "Uacute", + "219": "Ucircumflex", + "220": "Udieresis", + "221": "Yacute", + "222": "Thorn", + "223": "germandbls", + "224": "agrave", + "225": "aacute", + "226": "acircumflex", + "227": "atilde", + "228": "adieresis", + "229": "aring", + "230": "ae", + "231": "ccedilla", + "232": "egrave", + "233": "eacute", + "234": "ecircumflex", + "235": "edieresis", + "236": "igrave", + "237": "iacute", + "238": "icircumflex", + "239": "idieresis", + "240": "eth", + "241": "ntilde", + "242": "ograve", + "243": "oacute", + "244": "ocircumflex", + "245": "otilde", + "246": "odieresis", + "247": "divide", + "248": "oslash", + "249": "ugrave", + "250": "uacute", + "251": "ucircumflex", + "252": "udieresis", + "253": "yacute", + "254": "thorn", + "255": "ydieresis", + "256": "Amacron", + "257": "amacron", + "258": "Abreve", + "259": "abreve", + "260": "Aogonek", + "261": "aogonek", + "262": "Cacute", + "263": "cacute", + "264": "Ccircumflex", + "265": "ccircumflex", + "266": "Cdotaccent", + "267": "cdotaccent", + "268": "Ccaron", + "269": "ccaron", + "270": "Dcaron", + "271": "dcaron", + "272": "Dcroat", + "273": "dmacron", + "274": "Emacron", + "275": "emacron", + "276": "Ebreve", + "277": "ebreve", + "278": "Edotaccent", + "279": "edotaccent", + "280": "Eogonek", + "281": "eogonek", + "282": "Ecaron", + "283": "ecaron", + "284": "Gcircumflex", + "285": "gcircumflex", + "286": "Gbreve", + "287": "gbreve", + "288": "Gdotaccent", + "289": "gdotaccent", + "290": "Gcommaaccent", + "291": "gcommaaccent", + "292": "Hcircumflex", + "293": "hcircumflex", + "294": "Hbar", + "295": "hbar", + "296": "Itilde", + "297": "itilde", + "298": "Imacron", + "299": "imacron", + "300": "Ibreve", + "301": "ibreve", + "302": "Iogonek", + "303": "iogonek", + "304": "Idot", + "305": "dotlessi", + "306": "IJ", + "307": "ij", + "308": "Jcircumflex", + "309": "jcircumflex", + "310": "Kcommaaccent", + "311": "kcommaaccent", + "312": "kgreenlandic", + "313": "Lacute", + "314": "lacute", + "315": "Lcommaaccent", + "316": "lcommaaccent", + "317": "Lcaron", + "318": "lcaron", + "319": "Ldot", + "320": "ldot", + "321": "Lslash", + "322": "lslash", + "323": "Nacute", + "324": "nacute", + "325": "Ncommaaccent", + "326": "ncommaaccent", + "327": "Ncaron", + "328": "ncaron", + "329": "napostrophe", + "330": "Eng", + "331": "eng", + "332": "Omacron", + "333": "omacron", + "334": "Obreve", + "335": "obreve", + "336": "Ohungarumlaut", + "337": "ohungarumlaut", + "338": "OE", + "339": "oe", + "340": "Racute", + "341": "racute", + "342": "Rcommaaccent", + "343": "rcommaaccent", + "344": "Rcaron", + "345": "rcaron", + "346": "Sacute", + "347": "sacute", + "348": "Scircumflex", + "349": "scircumflex", + "350": "Scedilla", + "351": "scedilla", + "352": "Scaron", + "353": "scaron", + "354": "Tcommaaccent", + "355": "tcommaaccent", + "356": "Tcaron", + "357": "tcaron", + "358": "Tbar", + "359": "tbar", + "360": "Utilde", + "361": "utilde", + "362": "Umacron", + "363": "umacron", + "364": "Ubreve", + "365": "ubreve", + "366": "Uring", + "367": "uring", + "368": "Uhungarumlaut", + "369": "uhungarumlaut", + "370": "Uogonek", + "371": "uogonek", + "372": "Wcircumflex", + "373": "wcircumflex", + "374": "Ycircumflex", + "375": "ycircumflex", + "376": "Ydieresis", + "377": "Zacute", + "378": "zacute", + "379": "Zdotaccent", + "380": "zdotaccent", + "381": "Zcaron", + "382": "zcaron", + "383": "longs", + "384": "uni0180", + "385": "uni0181", + "386": "uni0182", + "387": "uni0183", + "388": "uni0184", + "389": "uni0185", + "390": "uni0186", + "391": "uni0187", + "392": "uni0188", + "393": "uni0189", + "394": "uni018A", + "395": "uni018B", + "396": "uni018C", + "397": "uni018D", + "398": "uni018E", + "399": "uni018F", + "400": "uni0190", + "401": "uni0191", + "402": "florin", + "403": "uni0193", + "404": "uni0194", + "405": "uni0195", + "406": "uni0196", + "407": "uni0197", + "408": "uni0198", + "409": "uni0199", + "410": "uni019A", + "411": "uni019B", + "412": "uni019C", + "413": "uni019D", + "414": "uni019E", + "415": "uni019F", + "416": "Ohorn", + "417": "ohorn", + "418": "uni01A2", + "419": "uni01A3", + "420": "uni01A4", + "421": "uni01A5", + "422": "uni01A6", + "423": "uni01A7", + "424": "uni01A8", + "425": "uni01A9", + "426": "uni01AA", + "427": "uni01AB", + "428": "uni01AC", + "429": "uni01AD", + "430": "uni01AE", + "431": "Uhorn", + "432": "uhorn", + "433": "uni01B1", + "434": "uni01B2", + "435": "uni01B3", + "436": "uni01B4", + "437": "uni01B5", + "438": "uni01B6", + "439": "uni01B7", + "440": "uni01B8", + "441": "uni01B9", + "442": "uni01BA", + "443": "uni01BB", + "444": "uni01BC", + "445": "uni01BD", + "446": "uni01BE", + "447": "uni01BF", + "448": "uni01C0", + "449": "uni01C1", + "450": "uni01C2", + "451": "uni01C3", + "452": "uni01C4", + "453": "uni01C5", + "454": "uni01C6", + "455": "uni01C7", + "456": "uni01C8", + "457": "uni01C9", + "458": "uni01CA", + "459": "uni01CB", + "460": "uni01CC", + "461": "uni01CD", + "462": "uni01CE", + "463": "uni01CF", + "464": "uni01D0", + "465": "uni01D1", + "466": "uni01D2", + "467": "uni01D3", + "468": "uni01D4", + "469": "uni01D5", + "470": "uni01D6", + "471": "uni01D7", + "472": "uni01D8", + "473": "uni01D9", + "474": "uni01DA", + "475": "uni01DB", + "476": "uni01DC", + "477": "uni01DD", + "478": "uni01DE", + "479": "uni01DF", + "480": "uni01E0", + "481": "uni01E1", + "482": "uni01E2", + "483": "uni01E3", + "484": "uni01E4", + "485": "uni01E5", + "486": "Gcaron", + "487": "gcaron", + "488": "uni01E8", + "489": "uni01E9", + "490": "uni01EA", + "491": "uni01EB", + "492": "uni01EC", + "493": "uni01ED", + "494": "uni01EE", + "495": "uni01EF", + "496": "uni01F0", + "497": "uni01F1", + "498": "uni01F2", + "499": "uni01F3", + "500": "uni01F4", + "501": "uni01F5", + "502": "uni01F6", + "503": "uni01F7", + "504": "uni01F8", + "505": "uni01F9", + "506": "Aringacute", + "507": "aringacute", + "508": "AEacute", + "509": "aeacute", + "510": "Oslashacute", + "511": "oslashacute", + "512": "uni0200", + "513": "uni0201", + "514": "uni0202", + "515": "uni0203", + "516": "uni0204", + "517": "uni0205", + "518": "uni0206", + "519": "uni0207", + "520": "uni0208", + "521": "uni0209", + "522": "uni020A", + "523": "uni020B", + "524": "uni020C", + "525": "uni020D", + "526": "uni020E", + "527": "uni020F", + "528": "uni0210", + "529": "uni0211", + "530": "uni0212", + "531": "uni0213", + "532": "uni0214", + "533": "uni0215", + "534": "uni0216", + "535": "uni0217", + "536": "Scommaaccent", + "537": "scommaaccent", + "538": "uni021A", + "539": "uni021B", + "540": "uni021C", + "541": "uni021D", + "542": "uni021E", + "543": "uni021F", + "544": "uni0220", + "545": "uni0221", + "546": "uni0222", + "547": "uni0223", + "548": "uni0224", + "549": "uni0225", + "550": "uni0226", + "551": "uni0227", + "552": "uni0228", + "553": "uni0229", + "554": "uni022A", + "555": "uni022B", + "556": "uni022C", + "557": "uni022D", + "558": "uni022E", + "559": "uni022F", + "560": "uni0230", + "561": "uni0231", + "562": "uni0232", + "563": "uni0233", + "564": "uni0234", + "565": "uni0235", + "566": "uni0236", + "567": "dotlessj", + "568": "uni0238", + "569": "uni0239", + "570": "uni023A", + "571": "uni023B", + "572": "uni023C", + "573": "uni023D", + "574": "uni023E", + "575": "uni023F", + "576": "uni0240", + "577": "uni0241", + "578": "uni0242", + "579": "uni0243", + "580": "uni0244", + "581": "uni0245", + "582": "uni0246", + "583": "uni0247", + "584": "uni0248", + "585": "uni0249", + "586": "uni024A", + "587": "uni024B", + "588": "uni024C", + "589": "uni024D", + "590": "uni024E", + "591": "uni024F", + "592": "uni0250", + "593": "uni0251", + "594": "uni0252", + "595": "uni0253", + "596": "uni0254", + "597": "uni0255", + "598": "uni0256", + "599": "uni0257", + "600": "uni0258", + "601": "uni0259", + "602": "uni025A", + "603": "uni025B", + "604": "uni025C", + "605": "uni025D", + "606": "uni025E", + "607": "uni025F", + "608": "uni0260", + "609": "uni0261", + "610": "uni0262", + "611": "uni0263", + "612": "uni0264", + "613": "uni0265", + "614": "uni0266", + "615": "uni0267", + "616": "uni0268", + "617": "uni0269", + "618": "uni026A", + "619": "uni026B", + "620": "uni026C", + "621": "uni026D", + "622": "uni026E", + "623": "uni026F", + "624": "uni0270", + "625": "uni0271", + "626": "uni0272", + "627": "uni0273", + "628": "uni0274", + "629": "uni0275", + "630": "uni0276", + "631": "uni0277", + "632": "uni0278", + "633": "uni0279", + "634": "uni027A", + "635": "uni027B", + "636": "uni027C", + "637": "uni027D", + "638": "uni027E", + "639": "uni027F", + "640": "uni0280", + "641": "uni0281", + "642": "uni0282", + "643": "uni0283", + "644": "uni0284", + "645": "uni0285", + "646": "uni0286", + "647": "uni0287", + "648": "uni0288", + "649": "uni0289", + "650": "uni028A", + "651": "uni028B", + "652": "uni028C", + "653": "uni028D", + "654": "uni028E", + "655": "uni028F", + "656": "uni0290", + "657": "uni0291", + "658": "uni0292", + "659": "uni0293", + "660": "uni0294", + "661": "uni0295", + "662": "uni0296", + "663": "uni0297", + "664": "uni0298", + "665": "uni0299", + "666": "uni029A", + "667": "uni029B", + "668": "uni029C", + "669": "uni029D", + "670": "uni029E", + "671": "uni029F", + "672": "uni02A0", + "673": "uni02A1", + "674": "uni02A2", + "675": "uni02A3", + "676": "uni02A4", + "677": "uni02A5", + "678": "uni02A6", + "679": "uni02A7", + "680": "uni02A8", + "681": "uni02A9", + "682": "uni02AA", + "683": "uni02AB", + "684": "uni02AC", + "685": "uni02AD", + "686": "uni02AE", + "687": "uni02AF", + "688": "uni02B0", + "689": "uni02B1", + "690": "uni02B2", + "691": "uni02B3", + "692": "uni02B4", + "693": "uni02B5", + "694": "uni02B6", + "695": "uni02B7", + "696": "uni02B8", + "697": "uni02B9", + "698": "uni02BA", + "699": "uni02BB", + "700": "uni02BC", + "701": "uni02BD", + "702": "uni02BE", + "703": "uni02BF", + "704": "uni02C0", + "705": "uni02C1", + "706": "uni02C2", + "707": "uni02C3", + "708": "uni02C4", + "709": "uni02C5", + "710": "circumflex", + "711": "caron", + "712": "uni02C8", + "713": "uni02C9", + "714": "uni02CA", + "715": "uni02CB", + "716": "uni02CC", + "717": "uni02CD", + "718": "uni02CE", + "719": "uni02CF", + "720": "uni02D0", + "721": "uni02D1", + "722": "uni02D2", + "723": "uni02D3", + "724": "uni02D4", + "725": "uni02D5", + "726": "uni02D6", + "727": "uni02D7", + "728": "breve", + "729": "dotaccent", + "730": "ring", + "731": "ogonek", + "732": "tilde", + "733": "hungarumlaut", + "734": "uni02DE", + "735": "uni02DF", + "736": "uni02E0", + "737": "uni02E1", + "738": "uni02E2", + "739": "uni02E3", + "740": "uni02E4", + "741": "uni02E5", + "742": "uni02E6", + "743": "uni02E7", + "744": "uni02E8", + "745": "uni02E9", + "748": "uni02EC", + "749": "uni02ED", + "750": "uni02EE", + "755": "uni02F3", + "759": "uni02F7", + "768": "gravecomb", + "769": "acutecomb", + "770": "uni0302", + "771": "tildecomb", + "772": "uni0304", + "773": "uni0305", + "774": "uni0306", + "775": "uni0307", + "776": "uni0308", + "777": "hookabovecomb", + "778": "uni030A", + "779": "uni030B", + "780": "uni030C", + "781": "uni030D", + "782": "uni030E", + "783": "uni030F", + "784": "uni0310", + "785": "uni0311", + "786": "uni0312", + "787": "uni0313", + "788": "uni0314", + "789": "uni0315", + "790": "uni0316", + "791": "uni0317", + "792": "uni0318", + "793": "uni0319", + "794": "uni031A", + "795": "uni031B", + "796": "uni031C", + "797": "uni031D", + "798": "uni031E", + "799": "uni031F", + "800": "uni0320", + "801": "uni0321", + "802": "uni0322", + "803": "dotbelowcomb", + "804": "uni0324", + "805": "uni0325", + "806": "uni0326", + "807": "uni0327", + "808": "uni0328", + "809": "uni0329", + "810": "uni032A", + "811": "uni032B", + "812": "uni032C", + "813": "uni032D", + "814": "uni032E", + "815": "uni032F", + "816": "uni0330", + "817": "uni0331", + "818": "uni0332", + "819": "uni0333", + "820": "uni0334", + "821": "uni0335", + "822": "uni0336", + "823": "uni0337", + "824": "uni0338", + "825": "uni0339", + "826": "uni033A", + "827": "uni033B", + "828": "uni033C", + "829": "uni033D", + "830": "uni033E", + "831": "uni033F", + "832": "uni0340", + "833": "uni0341", + "834": "uni0342", + "835": "uni0343", + "836": "uni0344", + "837": "uni0345", + "838": "uni0346", + "839": "uni0347", + "840": "uni0348", + "841": "uni0349", + "842": "uni034A", + "843": "uni034B", + "844": "uni034C", + "845": "uni034D", + "846": "uni034E", + "847": "uni034F", + "849": "uni0351", + "850": "uni0352", + "851": "uni0353", + "855": "uni0357", + "856": "uni0358", + "858": "uni035A", + "860": "uni035C", + "861": "uni035D", + "862": "uni035E", + "863": "uni035F", + "864": "uni0360", + "865": "uni0361", + "866": "uni0362", + "880": "uni0370", + "881": "uni0371", + "882": "uni0372", + "883": "uni0373", + "884": "uni0374", + "885": "uni0375", + "886": "uni0376", + "887": "uni0377", + "890": "uni037A", + "891": "uni037B", + "892": "uni037C", + "893": "uni037D", + "894": "uni037E", + "895": "uni037F", + "900": "tonos", + "901": "dieresistonos", + "902": "Alphatonos", + "903": "anoteleia", + "904": "Epsilontonos", + "905": "Etatonos", + "906": "Iotatonos", + "908": "Omicrontonos", + "910": "Upsilontonos", + "911": "Omegatonos", + "912": "iotadieresistonos", + "913": "Alpha", + "914": "Beta", + "915": "Gamma", + "916": "uni0394", + "917": "Epsilon", + "918": "Zeta", + "919": "Eta", + "920": "Theta", + "921": "Iota", + "922": "Kappa", + "923": "Lambda", + "924": "Mu", + "925": "Nu", + "926": "Xi", + "927": "Omicron", + "928": "Pi", + "929": "Rho", + "931": "Sigma", + "932": "Tau", + "933": "Upsilon", + "934": "Phi", + "935": "Chi", + "936": "Psi", + "937": "Omega", + "938": "Iotadieresis", + "939": "Upsilondieresis", + "940": "alphatonos", + "941": "epsilontonos", + "942": "etatonos", + "943": "iotatonos", + "944": "upsilondieresistonos", + "945": "alpha", + "946": "beta", + "947": "gamma", + "948": "delta", + "949": "epsilon", + "950": "zeta", + "951": "eta", + "952": "theta", + "953": "iota", + "954": "kappa", + "955": "lambda", + "956": "uni03BC", + "957": "nu", + "958": "xi", + "959": "omicron", + "960": "pi", + "961": "rho", + "962": "sigma1", + "963": "sigma", + "964": "tau", + "965": "upsilon", + "966": "phi", + "967": "chi", + "968": "psi", + "969": "omega", + "970": "iotadieresis", + "971": "upsilondieresis", + "972": "omicrontonos", + "973": "upsilontonos", + "974": "omegatonos", + "975": "uni03CF", + "976": "uni03D0", + "977": "theta1", + "978": "Upsilon1", + "979": "uni03D3", + "980": "uni03D4", + "981": "phi1", + "982": "omega1", + "983": "uni03D7", + "984": "uni03D8", + "985": "uni03D9", + "986": "uni03DA", + "987": "uni03DB", + "988": "uni03DC", + "989": "uni03DD", + "990": "uni03DE", + "991": "uni03DF", + "992": "uni03E0", + "993": "uni03E1", + "994": "uni03E2", + "995": "uni03E3", + "996": "uni03E4", + "997": "uni03E5", + "998": "uni03E6", + "999": "uni03E7", + "1000": "uni03E8", + "1001": "uni03E9", + "1002": "uni03EA", + "1003": "uni03EB", + "1004": "uni03EC", + "1005": "uni03ED", + "1006": "uni03EE", + "1007": "uni03EF", + "1008": "uni03F0", + "1009": "uni03F1", + "1010": "uni03F2", + "1011": "uni03F3", + "1012": "uni03F4", + "1013": "uni03F5", + "1014": "uni03F6", + "1015": "uni03F7", + "1016": "uni03F8", + "1017": "uni03F9", + "1018": "uni03FA", + "1019": "uni03FB", + "1020": "uni03FC", + "1021": "uni03FD", + "1022": "uni03FE", + "1023": "uni03FF", + "1024": "uni0400", + "1025": "uni0401", + "1026": "uni0402", + "1027": "uni0403", + "1028": "uni0404", + "1029": "uni0405", + "1030": "uni0406", + "1031": "uni0407", + "1032": "uni0408", + "1033": "uni0409", + "1034": "uni040A", + "1035": "uni040B", + "1036": "uni040C", + "1037": "uni040D", + "1038": "uni040E", + "1039": "uni040F", + "1040": "uni0410", + "1041": "uni0411", + "1042": "uni0412", + "1043": "uni0413", + "1044": "uni0414", + "1045": "uni0415", + "1046": "uni0416", + "1047": "uni0417", + "1048": "uni0418", + "1049": "uni0419", + "1050": "uni041A", + "1051": "uni041B", + "1052": "uni041C", + "1053": "uni041D", + "1054": "uni041E", + "1055": "uni041F", + "1056": "uni0420", + "1057": "uni0421", + "1058": "uni0422", + "1059": "uni0423", + "1060": "uni0424", + "1061": "uni0425", + "1062": "uni0426", + "1063": "uni0427", + "1064": "uni0428", + "1065": "uni0429", + "1066": "uni042A", + "1067": "uni042B", + "1068": "uni042C", + "1069": "uni042D", + "1070": "uni042E", + "1071": "uni042F", + "1072": "uni0430", + "1073": "uni0431", + "1074": "uni0432", + "1075": "uni0433", + "1076": "uni0434", + "1077": "uni0435", + "1078": "uni0436", + "1079": "uni0437", + "1080": "uni0438", + "1081": "uni0439", + "1082": "uni043A", + "1083": "uni043B", + "1084": "uni043C", + "1085": "uni043D", + "1086": "uni043E", + "1087": "uni043F", + "1088": "uni0440", + "1089": "uni0441", + "1090": "uni0442", + "1091": "uni0443", + "1092": "uni0444", + "1093": "uni0445", + "1094": "uni0446", + "1095": "uni0447", + "1096": "uni0448", + "1097": "uni0449", + "1098": "uni044A", + "1099": "uni044B", + "1100": "uni044C", + "1101": "uni044D", + "1102": "uni044E", + "1103": "uni044F", + "1104": "uni0450", + "1105": "uni0451", + "1106": "uni0452", + "1107": "uni0453", + "1108": "uni0454", + "1109": "uni0455", + "1110": "uni0456", + "1111": "uni0457", + "1112": "uni0458", + "1113": "uni0459", + "1114": "uni045A", + "1115": "uni045B", + "1116": "uni045C", + "1117": "uni045D", + "1118": "uni045E", + "1119": "uni045F", + "1120": "uni0460", + "1121": "uni0461", + "1122": "uni0462", + "1123": "uni0463", + "1124": "uni0464", + "1125": "uni0465", + "1126": "uni0466", + "1127": "uni0467", + "1128": "uni0468", + "1129": "uni0469", + "1130": "uni046A", + "1131": "uni046B", + "1132": "uni046C", + "1133": "uni046D", + "1134": "uni046E", + "1135": "uni046F", + "1136": "uni0470", + "1137": "uni0471", + "1138": "uni0472", + "1139": "uni0473", + "1140": "uni0474", + "1141": "uni0475", + "1142": "uni0476", + "1143": "uni0477", + "1144": "uni0478", + "1145": "uni0479", + "1146": "uni047A", + "1147": "uni047B", + "1148": "uni047C", + "1149": "uni047D", + "1150": "uni047E", + "1151": "uni047F", + "1152": "uni0480", + "1153": "uni0481", + "1154": "uni0482", + "1155": "uni0483", + "1156": "uni0484", + "1157": "uni0485", + "1158": "uni0486", + "1159": "uni0487", + "1160": "uni0488", + "1161": "uni0489", + "1162": "uni048A", + "1163": "uni048B", + "1164": "uni048C", + "1165": "uni048D", + "1166": "uni048E", + "1167": "uni048F", + "1168": "uni0490", + "1169": "uni0491", + "1170": "uni0492", + "1171": "uni0493", + "1172": "uni0494", + "1173": "uni0495", + "1174": "uni0496", + "1175": "uni0497", + "1176": "uni0498", + "1177": "uni0499", + "1178": "uni049A", + "1179": "uni049B", + "1180": "uni049C", + "1181": "uni049D", + "1182": "uni049E", + "1183": "uni049F", + "1184": "uni04A0", + "1185": "uni04A1", + "1186": "uni04A2", + "1187": "uni04A3", + "1188": "uni04A4", + "1189": "uni04A5", + "1190": "uni04A6", + "1191": "uni04A7", + "1192": "uni04A8", + "1193": "uni04A9", + "1194": "uni04AA", + "1195": "uni04AB", + "1196": "uni04AC", + "1197": "uni04AD", + "1198": "uni04AE", + "1199": "uni04AF", + "1200": "uni04B0", + "1201": "uni04B1", + "1202": "uni04B2", + "1203": "uni04B3", + "1204": "uni04B4", + "1205": "uni04B5", + "1206": "uni04B6", + "1207": "uni04B7", + "1208": "uni04B8", + "1209": "uni04B9", + "1210": "uni04BA", + "1211": "uni04BB", + "1212": "uni04BC", + "1213": "uni04BD", + "1214": "uni04BE", + "1215": "uni04BF", + "1216": "uni04C0", + "1217": "uni04C1", + "1218": "uni04C2", + "1219": "uni04C3", + "1220": "uni04C4", + "1221": "uni04C5", + "1222": "uni04C6", + "1223": "uni04C7", + "1224": "uni04C8", + "1225": "uni04C9", + "1226": "uni04CA", + "1227": "uni04CB", + "1228": "uni04CC", + "1229": "uni04CD", + "1230": "uni04CE", + "1231": "uni04CF", + "1232": "uni04D0", + "1233": "uni04D1", + "1234": "uni04D2", + "1235": "uni04D3", + "1236": "uni04D4", + "1237": "uni04D5", + "1238": "uni04D6", + "1239": "uni04D7", + "1240": "uni04D8", + "1241": "uni04D9", + "1242": "uni04DA", + "1243": "uni04DB", + "1244": "uni04DC", + "1245": "uni04DD", + "1246": "uni04DE", + "1247": "uni04DF", + "1248": "uni04E0", + "1249": "uni04E1", + "1250": "uni04E2", + "1251": "uni04E3", + "1252": "uni04E4", + "1253": "uni04E5", + "1254": "uni04E6", + "1255": "uni04E7", + "1256": "uni04E8", + "1257": "uni04E9", + "1258": "uni04EA", + "1259": "uni04EB", + "1260": "uni04EC", + "1261": "uni04ED", + "1262": "uni04EE", + "1263": "uni04EF", + "1264": "uni04F0", + "1265": "uni04F1", + "1266": "uni04F2", + "1267": "uni04F3", + "1268": "uni04F4", + "1269": "uni04F5", + "1270": "uni04F6", + "1271": "uni04F7", + "1272": "uni04F8", + "1273": "uni04F9", + "1274": "uni04FA", + "1275": "uni04FB", + "1276": "uni04FC", + "1277": "uni04FD", + "1278": "uni04FE", + "1279": "uni04FF", + "1280": "uni0500", + "1281": "uni0501", + "1282": "uni0502", + "1283": "uni0503", + "1284": "uni0504", + "1285": "uni0505", + "1286": "uni0506", + "1287": "uni0507", + "1288": "uni0508", + "1289": "uni0509", + "1290": "uni050A", + "1291": "uni050B", + "1292": "uni050C", + "1293": "uni050D", + "1294": "uni050E", + "1295": "uni050F", + "1296": "uni0510", + "1297": "uni0511", + "1298": "uni0512", + "1299": "uni0513", + "1300": "uni0514", + "1301": "uni0515", + "1302": "uni0516", + "1303": "uni0517", + "1304": "uni0518", + "1305": "uni0519", + "1306": "uni051A", + "1307": "uni051B", + "1308": "uni051C", + "1309": "uni051D", + "1310": "uni051E", + "1311": "uni051F", + "1312": "uni0520", + "1313": "uni0521", + "1314": "uni0522", + "1315": "uni0523", + "1316": "uni0524", + "1317": "uni0525", + "1329": "uni0531", + "1330": "uni0532", + "1331": "uni0533", + "1332": "uni0534", + "1333": "uni0535", + "1334": "uni0536", + "1335": "uni0537", + "1336": "uni0538", + "1337": "uni0539", + "1338": "uni053A", + "1339": "uni053B", + "1340": "uni053C", + "1341": "uni053D", + "1342": "uni053E", + "1343": "uni053F", + "1344": "uni0540", + "1345": "uni0541", + "1346": "uni0542", + "1347": "uni0543", + "1348": "uni0544", + "1349": "uni0545", + "1350": "uni0546", + "1351": "uni0547", + "1352": "uni0548", + "1353": "uni0549", + "1354": "uni054A", + "1355": "uni054B", + "1356": "uni054C", + "1357": "uni054D", + "1358": "uni054E", + "1359": "uni054F", + "1360": "uni0550", + "1361": "uni0551", + "1362": "uni0552", + "1363": "uni0553", + "1364": "uni0554", + "1365": "uni0555", + "1366": "uni0556", + "1369": "uni0559", + "1370": "uni055A", + "1371": "uni055B", + "1372": "uni055C", + "1373": "uni055D", + "1374": "uni055E", + "1375": "uni055F", + "1377": "uni0561", + "1378": "uni0562", + "1379": "uni0563", + "1380": "uni0564", + "1381": "uni0565", + "1382": "uni0566", + "1383": "uni0567", + "1384": "uni0568", + "1385": "uni0569", + "1386": "uni056A", + "1387": "uni056B", + "1388": "uni056C", + "1389": "uni056D", + "1390": "uni056E", + "1391": "uni056F", + "1392": "uni0570", + "1393": "uni0571", + "1394": "uni0572", + "1395": "uni0573", + "1396": "uni0574", + "1397": "uni0575", + "1398": "uni0576", + "1399": "uni0577", + "1400": "uni0578", + "1401": "uni0579", + "1402": "uni057A", + "1403": "uni057B", + "1404": "uni057C", + "1405": "uni057D", + "1406": "uni057E", + "1407": "uni057F", + "1408": "uni0580", + "1409": "uni0581", + "1410": "uni0582", + "1411": "uni0583", + "1412": "uni0584", + "1413": "uni0585", + "1414": "uni0586", + "1415": "uni0587", + "1417": "uni0589", + "1418": "uni058A", + "1456": "uni05B0", + "1457": "uni05B1", + "1458": "uni05B2", + "1459": "uni05B3", + "1460": "uni05B4", + "1461": "uni05B5", + "1462": "uni05B6", + "1463": "uni05B7", + "1464": "uni05B8", + "1465": "uni05B9", + "1466": "uni05BA", + "1467": "uni05BB", + "1468": "uni05BC", + "1469": "uni05BD", + "1470": "uni05BE", + "1471": "uni05BF", + "1472": "uni05C0", + "1473": "uni05C1", + "1474": "uni05C2", + "1475": "uni05C3", + "1478": "uni05C6", + "1479": "uni05C7", + "1488": "uni05D0", + "1489": "uni05D1", + "1490": "uni05D2", + "1491": "uni05D3", + "1492": "uni05D4", + "1493": "uni05D5", + "1494": "uni05D6", + "1495": "uni05D7", + "1496": "uni05D8", + "1497": "uni05D9", + "1498": "uni05DA", + "1499": "uni05DB", + "1500": "uni05DC", + "1501": "uni05DD", + "1502": "uni05DE", + "1503": "uni05DF", + "1504": "uni05E0", + "1505": "uni05E1", + "1506": "uni05E2", + "1507": "uni05E3", + "1508": "uni05E4", + "1509": "uni05E5", + "1510": "uni05E6", + "1511": "uni05E7", + "1512": "uni05E8", + "1513": "uni05E9", + "1514": "uni05EA", + "1520": "uni05F0", + "1521": "uni05F1", + "1522": "uni05F2", + "1523": "uni05F3", + "1524": "uni05F4", + "1542": "uni0606", + "1543": "uni0607", + "1545": "uni0609", + "1546": "uni060A", + "1548": "uni060C", + "1557": "uni0615", + "1563": "uni061B", + "1567": "uni061F", + "1569": "uni0621", + "1570": "uni0622", + "1571": "uni0623", + "1572": "uni0624", + "1573": "uni0625", + "1574": "uni0626", + "1575": "uni0627", + "1576": "uni0628", + "1577": "uni0629", + "1578": "uni062A", + "1579": "uni062B", + "1580": "uni062C", + "1581": "uni062D", + "1582": "uni062E", + "1583": "uni062F", + "1584": "uni0630", + "1585": "uni0631", + "1586": "uni0632", + "1587": "uni0633", + "1588": "uni0634", + "1589": "uni0635", + "1590": "uni0636", + "1591": "uni0637", + "1592": "uni0638", + "1593": "uni0639", + "1594": "uni063A", + "1600": "uni0640", + "1601": "uni0641", + "1602": "uni0642", + "1603": "uni0643", + "1604": "uni0644", + "1605": "uni0645", + "1606": "uni0646", + "1607": "uni0647", + "1608": "uni0648", + "1609": "uni0649", + "1610": "uni064A", + "1611": "uni064B", + "1612": "uni064C", + "1613": "uni064D", + "1614": "uni064E", + "1615": "uni064F", + "1616": "uni0650", + "1617": "uni0651", + "1618": "uni0652", + "1619": "uni0653", + "1620": "uni0654", + "1621": "uni0655", + "1623": "uni0657", + "1626": "uni065A", + "1632": "uni0660", + "1633": "uni0661", + "1634": "uni0662", + "1635": "uni0663", + "1636": "uni0664", + "1637": "uni0665", + "1638": "uni0666", + "1639": "uni0667", + "1640": "uni0668", + "1641": "uni0669", + "1642": "uni066A", + "1643": "uni066B", + "1644": "uni066C", + "1645": "uni066D", + "1646": "uni066E", + "1647": "uni066F", + "1648": "uni0670", + "1652": "uni0674", + "1657": "uni0679", + "1658": "uni067A", + "1659": "uni067B", + "1660": "uni067C", + "1661": "uni067D", + "1662": "uni067E", + "1663": "uni067F", + "1664": "uni0680", + "1665": "uni0681", + "1666": "uni0682", + "1667": "uni0683", + "1668": "uni0684", + "1669": "uni0685", + "1670": "uni0686", + "1671": "uni0687", + "1672": "uni0688", + "1673": "uni0689", + "1674": "uni068A", + "1675": "uni068B", + "1676": "uni068C", + "1677": "uni068D", + "1678": "uni068E", + "1679": "uni068F", + "1680": "uni0690", + "1681": "uni0691", + "1682": "uni0692", + "1683": "uni0693", + "1684": "uni0694", + "1685": "uni0695", + "1686": "uni0696", + "1687": "uni0697", + "1688": "uni0698", + "1689": "uni0699", + "1690": "uni069A", + "1691": "uni069B", + "1692": "uni069C", + "1693": "uni069D", + "1694": "uni069E", + "1695": "uni069F", + "1696": "uni06A0", + "1697": "uni06A1", + "1698": "uni06A2", + "1699": "uni06A3", + "1700": "uni06A4", + "1701": "uni06A5", + "1702": "uni06A6", + "1703": "uni06A7", + "1704": "uni06A8", + "1705": "uni06A9", + "1706": "uni06AA", + "1707": "uni06AB", + "1708": "uni06AC", + "1709": "uni06AD", + "1710": "uni06AE", + "1711": "uni06AF", + "1712": "uni06B0", + "1713": "uni06B1", + "1714": "uni06B2", + "1715": "uni06B3", + "1716": "uni06B4", + "1717": "uni06B5", + "1718": "uni06B6", + "1719": "uni06B7", + "1720": "uni06B8", + "1721": "uni06B9", + "1722": "uni06BA", + "1723": "uni06BB", + "1724": "uni06BC", + "1725": "uni06BD", + "1726": "uni06BE", + "1727": "uni06BF", + "1734": "uni06C6", + "1735": "uni06C7", + "1736": "uni06C8", + "1739": "uni06CB", + "1740": "uni06CC", + "1742": "uni06CE", + "1744": "uni06D0", + "1749": "uni06D5", + "1776": "uni06F0", + "1777": "uni06F1", + "1778": "uni06F2", + "1779": "uni06F3", + "1780": "uni06F4", + "1781": "uni06F5", + "1782": "uni06F6", + "1783": "uni06F7", + "1784": "uni06F8", + "1785": "uni06F9", + "1984": "uni07C0", + "1985": "uni07C1", + "1986": "uni07C2", + "1987": "uni07C3", + "1988": "uni07C4", + "1989": "uni07C5", + "1990": "uni07C6", + "1991": "uni07C7", + "1992": "uni07C8", + "1993": "uni07C9", + "1994": "uni07CA", + "1995": "uni07CB", + "1996": "uni07CC", + "1997": "uni07CD", + "1998": "uni07CE", + "1999": "uni07CF", + "2000": "uni07D0", + "2001": "uni07D1", + "2002": "uni07D2", + "2003": "uni07D3", + "2004": "uni07D4", + "2005": "uni07D5", + "2006": "uni07D6", + "2007": "uni07D7", + "2008": "uni07D8", + "2009": "uni07D9", + "2010": "uni07DA", + "2011": "uni07DB", + "2012": "uni07DC", + "2013": "uni07DD", + "2014": "uni07DE", + "2015": "uni07DF", + "2016": "uni07E0", + "2017": "uni07E1", + "2018": "uni07E2", + "2019": "uni07E3", + "2020": "uni07E4", + "2021": "uni07E5", + "2022": "uni07E6", + "2023": "uni07E7", + "2027": "uni07EB", + "2028": "uni07EC", + "2029": "uni07ED", + "2030": "uni07EE", + "2031": "uni07EF", + "2032": "uni07F0", + "2033": "uni07F1", + "2034": "uni07F2", + "2035": "uni07F3", + "2036": "uni07F4", + "2037": "uni07F5", + "2040": "uni07F8", + "2041": "uni07F9", + "2042": "uni07FA", + "3647": "uni0E3F", + "3713": "uni0E81", + "3714": "uni0E82", + "3716": "uni0E84", + "3719": "uni0E87", + "3720": "uni0E88", + "3722": "uni0E8A", + "3725": "uni0E8D", + "3732": "uni0E94", + "3733": "uni0E95", + "3734": "uni0E96", + "3735": "uni0E97", + "3737": "uni0E99", + "3738": "uni0E9A", + "3739": "uni0E9B", + "3740": "uni0E9C", + "3741": "uni0E9D", + "3742": "uni0E9E", + "3743": "uni0E9F", + "3745": "uni0EA1", + "3746": "uni0EA2", + "3747": "uni0EA3", + "3749": "uni0EA5", + "3751": "uni0EA7", + "3754": "uni0EAA", + "3755": "uni0EAB", + "3757": "uni0EAD", + "3758": "uni0EAE", + "3759": "uni0EAF", + "3760": "uni0EB0", + "3761": "uni0EB1", + "3762": "uni0EB2", + "3763": "uni0EB3", + "3764": "uni0EB4", + "3765": "uni0EB5", + "3766": "uni0EB6", + "3767": "uni0EB7", + "3768": "uni0EB8", + "3769": "uni0EB9", + "3771": "uni0EBB", + "3772": "uni0EBC", + "3773": "uni0EBD", + "3776": "uni0EC0", + "3777": "uni0EC1", + "3778": "uni0EC2", + "3779": "uni0EC3", + "3780": "uni0EC4", + "3782": "uni0EC6", + "3784": "uni0EC8", + "3785": "uni0EC9", + "3786": "uni0ECA", + "3787": "uni0ECB", + "3788": "uni0ECC", + "3789": "uni0ECD", + "3792": "uni0ED0", + "3793": "uni0ED1", + "3794": "uni0ED2", + "3795": "uni0ED3", + "3796": "uni0ED4", + "3797": "uni0ED5", + "3798": "uni0ED6", + "3799": "uni0ED7", + "3800": "uni0ED8", + "3801": "uni0ED9", + "3804": "uni0EDC", + "3805": "uni0EDD", + "4256": "uni10A0", + "4257": "uni10A1", + "4258": "uni10A2", + "4259": "uni10A3", + "4260": "uni10A4", + "4261": "uni10A5", + "4262": "uni10A6", + "4263": "uni10A7", + "4264": "uni10A8", + "4265": "uni10A9", + "4266": "uni10AA", + "4267": "uni10AB", + "4268": "uni10AC", + "4269": "uni10AD", + "4270": "uni10AE", + "4271": "uni10AF", + "4272": "uni10B0", + "4273": "uni10B1", + "4274": "uni10B2", + "4275": "uni10B3", + "4276": "uni10B4", + "4277": "uni10B5", + "4278": "uni10B6", + "4279": "uni10B7", + "4280": "uni10B8", + "4281": "uni10B9", + "4282": "uni10BA", + "4283": "uni10BB", + "4284": "uni10BC", + "4285": "uni10BD", + "4286": "uni10BE", + "4287": "uni10BF", + "4288": "uni10C0", + "4289": "uni10C1", + "4290": "uni10C2", + "4291": "uni10C3", + "4292": "uni10C4", + "4293": "uni10C5", + "4304": "uni10D0", + "4305": "uni10D1", + "4306": "uni10D2", + "4307": "uni10D3", + "4308": "uni10D4", + "4309": "uni10D5", + "4310": "uni10D6", + "4311": "uni10D7", + "4312": "uni10D8", + "4313": "uni10D9", + "4314": "uni10DA", + "4315": "uni10DB", + "4316": "uni10DC", + "4317": "uni10DD", + "4318": "uni10DE", + "4319": "uni10DF", + "4320": "uni10E0", + "4321": "uni10E1", + "4322": "uni10E2", + "4323": "uni10E3", + "4324": "uni10E4", + "4325": "uni10E5", + "4326": "uni10E6", + "4327": "uni10E7", + "4328": "uni10E8", + "4329": "uni10E9", + "4330": "uni10EA", + "4331": "uni10EB", + "4332": "uni10EC", + "4333": "uni10ED", + "4334": "uni10EE", + "4335": "uni10EF", + "4336": "uni10F0", + "4337": "uni10F1", + "4338": "uni10F2", + "4339": "uni10F3", + "4340": "uni10F4", + "4341": "uni10F5", + "4342": "uni10F6", + "4343": "uni10F7", + "4344": "uni10F8", + "4345": "uni10F9", + "4346": "uni10FA", + "4347": "uni10FB", + "4348": "uni10FC", + "5121": "uni1401", + "5122": "uni1402", + "5123": "uni1403", + "5124": "uni1404", + "5125": "uni1405", + "5126": "uni1406", + "5127": "uni1407", + "5129": "uni1409", + "5130": "uni140A", + "5131": "uni140B", + "5132": "uni140C", + "5133": "uni140D", + "5134": "uni140E", + "5135": "uni140F", + "5136": "uni1410", + "5137": "uni1411", + "5138": "uni1412", + "5139": "uni1413", + "5140": "uni1414", + "5141": "uni1415", + "5142": "uni1416", + "5143": "uni1417", + "5144": "uni1418", + "5145": "uni1419", + "5146": "uni141A", + "5147": "uni141B", + "5149": "uni141D", + "5150": "uni141E", + "5151": "uni141F", + "5152": "uni1420", + "5153": "uni1421", + "5154": "uni1422", + "5155": "uni1423", + "5156": "uni1424", + "5157": "uni1425", + "5158": "uni1426", + "5159": "uni1427", + "5160": "uni1428", + "5161": "uni1429", + "5162": "uni142A", + "5163": "uni142B", + "5164": "uni142C", + "5165": "uni142D", + "5166": "uni142E", + "5167": "uni142F", + "5168": "uni1430", + "5169": "uni1431", + "5170": "uni1432", + "5171": "uni1433", + "5172": "uni1434", + "5173": "uni1435", + "5175": "uni1437", + "5176": "uni1438", + "5177": "uni1439", + "5178": "uni143A", + "5179": "uni143B", + "5180": "uni143C", + "5181": "uni143D", + "5182": "uni143E", + "5183": "uni143F", + "5184": "uni1440", + "5185": "uni1441", + "5186": "uni1442", + "5187": "uni1443", + "5188": "uni1444", + "5189": "uni1445", + "5190": "uni1446", + "5191": "uni1447", + "5192": "uni1448", + "5193": "uni1449", + "5194": "uni144A", + "5196": "uni144C", + "5197": "uni144D", + "5198": "uni144E", + "5199": "uni144F", + "5200": "uni1450", + "5201": "uni1451", + "5202": "uni1452", + "5204": "uni1454", + "5205": "uni1455", + "5206": "uni1456", + "5207": "uni1457", + "5208": "uni1458", + "5209": "uni1459", + "5210": "uni145A", + "5211": "uni145B", + "5212": "uni145C", + "5213": "uni145D", + "5214": "uni145E", + "5215": "uni145F", + "5216": "uni1460", + "5217": "uni1461", + "5218": "uni1462", + "5219": "uni1463", + "5220": "uni1464", + "5221": "uni1465", + "5222": "uni1466", + "5223": "uni1467", + "5224": "uni1468", + "5225": "uni1469", + "5226": "uni146A", + "5227": "uni146B", + "5228": "uni146C", + "5229": "uni146D", + "5230": "uni146E", + "5231": "uni146F", + "5232": "uni1470", + "5233": "uni1471", + "5234": "uni1472", + "5235": "uni1473", + "5236": "uni1474", + "5237": "uni1475", + "5238": "uni1476", + "5239": "uni1477", + "5240": "uni1478", + "5241": "uni1479", + "5242": "uni147A", + "5243": "uni147B", + "5244": "uni147C", + "5245": "uni147D", + "5246": "uni147E", + "5247": "uni147F", + "5248": "uni1480", + "5249": "uni1481", + "5250": "uni1482", + "5251": "uni1483", + "5252": "uni1484", + "5253": "uni1485", + "5254": "uni1486", + "5255": "uni1487", + "5256": "uni1488", + "5257": "uni1489", + "5258": "uni148A", + "5259": "uni148B", + "5260": "uni148C", + "5261": "uni148D", + "5262": "uni148E", + "5263": "uni148F", + "5264": "uni1490", + "5265": "uni1491", + "5266": "uni1492", + "5267": "uni1493", + "5268": "uni1494", + "5269": "uni1495", + "5270": "uni1496", + "5271": "uni1497", + "5272": "uni1498", + "5273": "uni1499", + "5274": "uni149A", + "5275": "uni149B", + "5276": "uni149C", + "5277": "uni149D", + "5278": "uni149E", + "5279": "uni149F", + "5280": "uni14A0", + "5281": "uni14A1", + "5282": "uni14A2", + "5283": "uni14A3", + "5284": "uni14A4", + "5285": "uni14A5", + "5286": "uni14A6", + "5287": "uni14A7", + "5288": "uni14A8", + "5289": "uni14A9", + "5290": "uni14AA", + "5291": "uni14AB", + "5292": "uni14AC", + "5293": "uni14AD", + "5294": "uni14AE", + "5295": "uni14AF", + "5296": "uni14B0", + "5297": "uni14B1", + "5298": "uni14B2", + "5299": "uni14B3", + "5300": "uni14B4", + "5301": "uni14B5", + "5302": "uni14B6", + "5303": "uni14B7", + "5304": "uni14B8", + "5305": "uni14B9", + "5306": "uni14BA", + "5307": "uni14BB", + "5308": "uni14BC", + "5309": "uni14BD", + "5312": "uni14C0", + "5313": "uni14C1", + "5314": "uni14C2", + "5315": "uni14C3", + "5316": "uni14C4", + "5317": "uni14C5", + "5318": "uni14C6", + "5319": "uni14C7", + "5320": "uni14C8", + "5321": "uni14C9", + "5322": "uni14CA", + "5323": "uni14CB", + "5324": "uni14CC", + "5325": "uni14CD", + "5326": "uni14CE", + "5327": "uni14CF", + "5328": "uni14D0", + "5329": "uni14D1", + "5330": "uni14D2", + "5331": "uni14D3", + "5332": "uni14D4", + "5333": "uni14D5", + "5334": "uni14D6", + "5335": "uni14D7", + "5336": "uni14D8", + "5337": "uni14D9", + "5338": "uni14DA", + "5339": "uni14DB", + "5340": "uni14DC", + "5341": "uni14DD", + "5342": "uni14DE", + "5343": "uni14DF", + "5344": "uni14E0", + "5345": "uni14E1", + "5346": "uni14E2", + "5347": "uni14E3", + "5348": "uni14E4", + "5349": "uni14E5", + "5350": "uni14E6", + "5351": "uni14E7", + "5352": "uni14E8", + "5353": "uni14E9", + "5354": "uni14EA", + "5356": "uni14EC", + "5357": "uni14ED", + "5358": "uni14EE", + "5359": "uni14EF", + "5360": "uni14F0", + "5361": "uni14F1", + "5362": "uni14F2", + "5363": "uni14F3", + "5364": "uni14F4", + "5365": "uni14F5", + "5366": "uni14F6", + "5367": "uni14F7", + "5368": "uni14F8", + "5369": "uni14F9", + "5370": "uni14FA", + "5371": "uni14FB", + "5372": "uni14FC", + "5373": "uni14FD", + "5374": "uni14FE", + "5375": "uni14FF", + "5376": "uni1500", + "5377": "uni1501", + "5378": "uni1502", + "5379": "uni1503", + "5380": "uni1504", + "5381": "uni1505", + "5382": "uni1506", + "5383": "uni1507", + "5392": "uni1510", + "5393": "uni1511", + "5394": "uni1512", + "5395": "uni1513", + "5396": "uni1514", + "5397": "uni1515", + "5398": "uni1516", + "5399": "uni1517", + "5400": "uni1518", + "5401": "uni1519", + "5402": "uni151A", + "5403": "uni151B", + "5404": "uni151C", + "5405": "uni151D", + "5406": "uni151E", + "5407": "uni151F", + "5408": "uni1520", + "5409": "uni1521", + "5410": "uni1522", + "5411": "uni1523", + "5412": "uni1524", + "5413": "uni1525", + "5414": "uni1526", + "5415": "uni1527", + "5416": "uni1528", + "5417": "uni1529", + "5418": "uni152A", + "5419": "uni152B", + "5420": "uni152C", + "5421": "uni152D", + "5422": "uni152E", + "5423": "uni152F", + "5424": "uni1530", + "5425": "uni1531", + "5426": "uni1532", + "5427": "uni1533", + "5428": "uni1534", + "5429": "uni1535", + "5430": "uni1536", + "5431": "uni1537", + "5432": "uni1538", + "5433": "uni1539", + "5434": "uni153A", + "5435": "uni153B", + "5436": "uni153C", + "5437": "uni153D", + "5438": "uni153E", + "5440": "uni1540", + "5441": "uni1541", + "5442": "uni1542", + "5443": "uni1543", + "5444": "uni1544", + "5445": "uni1545", + "5446": "uni1546", + "5447": "uni1547", + "5448": "uni1548", + "5449": "uni1549", + "5450": "uni154A", + "5451": "uni154B", + "5452": "uni154C", + "5453": "uni154D", + "5454": "uni154E", + "5455": "uni154F", + "5456": "uni1550", + "5458": "uni1552", + "5459": "uni1553", + "5460": "uni1554", + "5461": "uni1555", + "5462": "uni1556", + "5463": "uni1557", + "5464": "uni1558", + "5465": "uni1559", + "5466": "uni155A", + "5467": "uni155B", + "5468": "uni155C", + "5469": "uni155D", + "5470": "uni155E", + "5471": "uni155F", + "5472": "uni1560", + "5473": "uni1561", + "5474": "uni1562", + "5475": "uni1563", + "5476": "uni1564", + "5477": "uni1565", + "5478": "uni1566", + "5479": "uni1567", + "5480": "uni1568", + "5481": "uni1569", + "5482": "uni156A", + "5492": "uni1574", + "5493": "uni1575", + "5494": "uni1576", + "5495": "uni1577", + "5496": "uni1578", + "5497": "uni1579", + "5498": "uni157A", + "5499": "uni157B", + "5500": "uni157C", + "5501": "uni157D", + "5502": "uni157E", + "5503": "uni157F", + "5504": "uni1580", + "5505": "uni1581", + "5506": "uni1582", + "5507": "uni1583", + "5508": "uni1584", + "5509": "uni1585", + "5514": "uni158A", + "5515": "uni158B", + "5516": "uni158C", + "5517": "uni158D", + "5518": "uni158E", + "5519": "uni158F", + "5520": "uni1590", + "5521": "uni1591", + "5522": "uni1592", + "5523": "uni1593", + "5524": "uni1594", + "5525": "uni1595", + "5526": "uni1596", + "5536": "uni15A0", + "5537": "uni15A1", + "5538": "uni15A2", + "5539": "uni15A3", + "5540": "uni15A4", + "5541": "uni15A5", + "5542": "uni15A6", + "5543": "uni15A7", + "5544": "uni15A8", + "5545": "uni15A9", + "5546": "uni15AA", + "5547": "uni15AB", + "5548": "uni15AC", + "5549": "uni15AD", + "5550": "uni15AE", + "5551": "uni15AF", + "5598": "uni15DE", + "5601": "uni15E1", + "5702": "uni1646", + "5703": "uni1647", + "5742": "uni166E", + "5743": "uni166F", + "5744": "uni1670", + "5745": "uni1671", + "5746": "uni1672", + "5747": "uni1673", + "5748": "uni1674", + "5749": "uni1675", + "5750": "uni1676", + "5760": "uni1680", + "5761": "uni1681", + "5762": "uni1682", + "5763": "uni1683", + "5764": "uni1684", + "5765": "uni1685", + "5766": "uni1686", + "5767": "uni1687", + "5768": "uni1688", + "5769": "uni1689", + "5770": "uni168A", + "5771": "uni168B", + "5772": "uni168C", + "5773": "uni168D", + "5774": "uni168E", + "5775": "uni168F", + "5776": "uni1690", + "5777": "uni1691", + "5778": "uni1692", + "5779": "uni1693", + "5780": "uni1694", + "5781": "uni1695", + "5782": "uni1696", + "5783": "uni1697", + "5784": "uni1698", + "5785": "uni1699", + "5786": "uni169A", + "5787": "uni169B", + "5788": "uni169C", + "7424": "uni1D00", + "7425": "uni1D01", + "7426": "uni1D02", + "7427": "uni1D03", + "7428": "uni1D04", + "7429": "uni1D05", + "7430": "uni1D06", + "7431": "uni1D07", + "7432": "uni1D08", + "7433": "uni1D09", + "7434": "uni1D0A", + "7435": "uni1D0B", + "7436": "uni1D0C", + "7437": "uni1D0D", + "7438": "uni1D0E", + "7439": "uni1D0F", + "7440": "uni1D10", + "7441": "uni1D11", + "7442": "uni1D12", + "7443": "uni1D13", + "7444": "uni1D14", + "7446": "uni1D16", + "7447": "uni1D17", + "7448": "uni1D18", + "7449": "uni1D19", + "7450": "uni1D1A", + "7451": "uni1D1B", + "7452": "uni1D1C", + "7453": "uni1D1D", + "7454": "uni1D1E", + "7455": "uni1D1F", + "7456": "uni1D20", + "7457": "uni1D21", + "7458": "uni1D22", + "7459": "uni1D23", + "7462": "uni1D26", + "7463": "uni1D27", + "7464": "uni1D28", + "7465": "uni1D29", + "7466": "uni1D2A", + "7467": "uni1D2B", + "7468": "uni1D2C", + "7469": "uni1D2D", + "7470": "uni1D2E", + "7472": "uni1D30", + "7473": "uni1D31", + "7474": "uni1D32", + "7475": "uni1D33", + "7476": "uni1D34", + "7477": "uni1D35", + "7478": "uni1D36", + "7479": "uni1D37", + "7480": "uni1D38", + "7481": "uni1D39", + "7482": "uni1D3A", + "7483": "uni1D3B", + "7484": "uni1D3C", + "7485": "uni1D3D", + "7486": "uni1D3E", + "7487": "uni1D3F", + "7488": "uni1D40", + "7489": "uni1D41", + "7490": "uni1D42", + "7491": "uni1D43", + "7492": "uni1D44", + "7493": "uni1D45", + "7494": "uni1D46", + "7495": "uni1D47", + "7496": "uni1D48", + "7497": "uni1D49", + "7498": "uni1D4A", + "7499": "uni1D4B", + "7500": "uni1D4C", + "7501": "uni1D4D", + "7502": "uni1D4E", + "7503": "uni1D4F", + "7504": "uni1D50", + "7505": "uni1D51", + "7506": "uni1D52", + "7507": "uni1D53", + "7508": "uni1D54", + "7509": "uni1D55", + "7510": "uni1D56", + "7511": "uni1D57", + "7512": "uni1D58", + "7513": "uni1D59", + "7514": "uni1D5A", + "7515": "uni1D5B", + "7517": "uni1D5D", + "7518": "uni1D5E", + "7519": "uni1D5F", + "7520": "uni1D60", + "7521": "uni1D61", + "7522": "uni1D62", + "7523": "uni1D63", + "7524": "uni1D64", + "7525": "uni1D65", + "7526": "uni1D66", + "7527": "uni1D67", + "7528": "uni1D68", + "7529": "uni1D69", + "7530": "uni1D6A", + "7543": "uni1D77", + "7544": "uni1D78", + "7547": "uni1D7B", + "7549": "uni1D7D", + "7557": "uni1D85", + "7579": "uni1D9B", + "7580": "uni1D9C", + "7581": "uni1D9D", + "7582": "uni1D9E", + "7583": "uni1D9F", + "7584": "uni1DA0", + "7585": "uni1DA1", + "7586": "uni1DA2", + "7587": "uni1DA3", + "7588": "uni1DA4", + "7589": "uni1DA5", + "7590": "uni1DA6", + "7591": "uni1DA7", + "7592": "uni1DA8", + "7593": "uni1DA9", + "7594": "uni1DAA", + "7595": "uni1DAB", + "7596": "uni1DAC", + "7597": "uni1DAD", + "7598": "uni1DAE", + "7599": "uni1DAF", + "7600": "uni1DB0", + "7601": "uni1DB1", + "7602": "uni1DB2", + "7603": "uni1DB3", + "7604": "uni1DB4", + "7605": "uni1DB5", + "7606": "uni1DB6", + "7607": "uni1DB7", + "7608": "uni1DB8", + "7609": "uni1DB9", + "7610": "uni1DBA", + "7611": "uni1DBB", + "7612": "uni1DBC", + "7613": "uni1DBD", + "7614": "uni1DBE", + "7615": "uni1DBF", + "7620": "uni1DC4", + "7621": "uni1DC5", + "7622": "uni1DC6", + "7623": "uni1DC7", + "7624": "uni1DC8", + "7625": "uni1DC9", + "7680": "uni1E00", + "7681": "uni1E01", + "7682": "uni1E02", + "7683": "uni1E03", + "7684": "uni1E04", + "7685": "uni1E05", + "7686": "uni1E06", + "7687": "uni1E07", + "7688": "uni1E08", + "7689": "uni1E09", + "7690": "uni1E0A", + "7691": "uni1E0B", + "7692": "uni1E0C", + "7693": "uni1E0D", + "7694": "uni1E0E", + "7695": "uni1E0F", + "7696": "uni1E10", + "7697": "uni1E11", + "7698": "uni1E12", + "7699": "uni1E13", + "7700": "uni1E14", + "7701": "uni1E15", + "7702": "uni1E16", + "7703": "uni1E17", + "7704": "uni1E18", + "7705": "uni1E19", + "7706": "uni1E1A", + "7707": "uni1E1B", + "7708": "uni1E1C", + "7709": "uni1E1D", + "7710": "uni1E1E", + "7711": "uni1E1F", + "7712": "uni1E20", + "7713": "uni1E21", + "7714": "uni1E22", + "7715": "uni1E23", + "7716": "uni1E24", + "7717": "uni1E25", + "7718": "uni1E26", + "7719": "uni1E27", + "7720": "uni1E28", + "7721": "uni1E29", + "7722": "uni1E2A", + "7723": "uni1E2B", + "7724": "uni1E2C", + "7725": "uni1E2D", + "7726": "uni1E2E", + "7727": "uni1E2F", + "7728": "uni1E30", + "7729": "uni1E31", + "7730": "uni1E32", + "7731": "uni1E33", + "7732": "uni1E34", + "7733": "uni1E35", + "7734": "uni1E36", + "7735": "uni1E37", + "7736": "uni1E38", + "7737": "uni1E39", + "7738": "uni1E3A", + "7739": "uni1E3B", + "7740": "uni1E3C", + "7741": "uni1E3D", + "7742": "uni1E3E", + "7743": "uni1E3F", + "7744": "uni1E40", + "7745": "uni1E41", + "7746": "uni1E42", + "7747": "uni1E43", + "7748": "uni1E44", + "7749": "uni1E45", + "7750": "uni1E46", + "7751": "uni1E47", + "7752": "uni1E48", + "7753": "uni1E49", + "7754": "uni1E4A", + "7755": "uni1E4B", + "7756": "uni1E4C", + "7757": "uni1E4D", + "7758": "uni1E4E", + "7759": "uni1E4F", + "7760": "uni1E50", + "7761": "uni1E51", + "7762": "uni1E52", + "7763": "uni1E53", + "7764": "uni1E54", + "7765": "uni1E55", + "7766": "uni1E56", + "7767": "uni1E57", + "7768": "uni1E58", + "7769": "uni1E59", + "7770": "uni1E5A", + "7771": "uni1E5B", + "7772": "uni1E5C", + "7773": "uni1E5D", + "7774": "uni1E5E", + "7775": "uni1E5F", + "7776": "uni1E60", + "7777": "uni1E61", + "7778": "uni1E62", + "7779": "uni1E63", + "7780": "uni1E64", + "7781": "uni1E65", + "7782": "uni1E66", + "7783": "uni1E67", + "7784": "uni1E68", + "7785": "uni1E69", + "7786": "uni1E6A", + "7787": "uni1E6B", + "7788": "uni1E6C", + "7789": "uni1E6D", + "7790": "uni1E6E", + "7791": "uni1E6F", + "7792": "uni1E70", + "7793": "uni1E71", + "7794": "uni1E72", + "7795": "uni1E73", + "7796": "uni1E74", + "7797": "uni1E75", + "7798": "uni1E76", + "7799": "uni1E77", + "7800": "uni1E78", + "7801": "uni1E79", + "7802": "uni1E7A", + "7803": "uni1E7B", + "7804": "uni1E7C", + "7805": "uni1E7D", + "7806": "uni1E7E", + "7807": "uni1E7F", + "7808": "Wgrave", + "7809": "wgrave", + "7810": "Wacute", + "7811": "wacute", + "7812": "Wdieresis", + "7813": "wdieresis", + "7814": "uni1E86", + "7815": "uni1E87", + "7816": "uni1E88", + "7817": "uni1E89", + "7818": "uni1E8A", + "7819": "uni1E8B", + "7820": "uni1E8C", + "7821": "uni1E8D", + "7822": "uni1E8E", + "7823": "uni1E8F", + "7824": "uni1E90", + "7825": "uni1E91", + "7826": "uni1E92", + "7827": "uni1E93", + "7828": "uni1E94", + "7829": "uni1E95", + "7830": "uni1E96", + "7831": "uni1E97", + "7832": "uni1E98", + "7833": "uni1E99", + "7834": "uni1E9A", + "7835": "uni1E9B", + "7836": "uni1E9C", + "7837": "uni1E9D", + "7838": "uni1E9E", + "7839": "uni1E9F", + "7840": "uni1EA0", + "7841": "uni1EA1", + "7842": "uni1EA2", + "7843": "uni1EA3", + "7844": "uni1EA4", + "7845": "uni1EA5", + "7846": "uni1EA6", + "7847": "uni1EA7", + "7848": "uni1EA8", + "7849": "uni1EA9", + "7850": "uni1EAA", + "7851": "uni1EAB", + "7852": "uni1EAC", + "7853": "uni1EAD", + "7854": "uni1EAE", + "7855": "uni1EAF", + "7856": "uni1EB0", + "7857": "uni1EB1", + "7858": "uni1EB2", + "7859": "uni1EB3", + "7860": "uni1EB4", + "7861": "uni1EB5", + "7862": "uni1EB6", + "7863": "uni1EB7", + "7864": "uni1EB8", + "7865": "uni1EB9", + "7866": "uni1EBA", + "7867": "uni1EBB", + "7868": "uni1EBC", + "7869": "uni1EBD", + "7870": "uni1EBE", + "7871": "uni1EBF", + "7872": "uni1EC0", + "7873": "uni1EC1", + "7874": "uni1EC2", + "7875": "uni1EC3", + "7876": "uni1EC4", + "7877": "uni1EC5", + "7878": "uni1EC6", + "7879": "uni1EC7", + "7880": "uni1EC8", + "7881": "uni1EC9", + "7882": "uni1ECA", + "7883": "uni1ECB", + "7884": "uni1ECC", + "7885": "uni1ECD", + "7886": "uni1ECE", + "7887": "uni1ECF", + "7888": "uni1ED0", + "7889": "uni1ED1", + "7890": "uni1ED2", + "7891": "uni1ED3", + "7892": "uni1ED4", + "7893": "uni1ED5", + "7894": "uni1ED6", + "7895": "uni1ED7", + "7896": "uni1ED8", + "7897": "uni1ED9", + "7898": "uni1EDA", + "7899": "uni1EDB", + "7900": "uni1EDC", + "7901": "uni1EDD", + "7902": "uni1EDE", + "7903": "uni1EDF", + "7904": "uni1EE0", + "7905": "uni1EE1", + "7906": "uni1EE2", + "7907": "uni1EE3", + "7908": "uni1EE4", + "7909": "uni1EE5", + "7910": "uni1EE6", + "7911": "uni1EE7", + "7912": "uni1EE8", + "7913": "uni1EE9", + "7914": "uni1EEA", + "7915": "uni1EEB", + "7916": "uni1EEC", + "7917": "uni1EED", + "7918": "uni1EEE", + "7919": "uni1EEF", + "7920": "uni1EF0", + "7921": "uni1EF1", + "7922": "Ygrave", + "7923": "ygrave", + "7924": "uni1EF4", + "7925": "uni1EF5", + "7926": "uni1EF6", + "7927": "uni1EF7", + "7928": "uni1EF8", + "7929": "uni1EF9", + "7930": "uni1EFA", + "7931": "uni1EFB", + "7936": "uni1F00", + "7937": "uni1F01", + "7938": "uni1F02", + "7939": "uni1F03", + "7940": "uni1F04", + "7941": "uni1F05", + "7942": "uni1F06", + "7943": "uni1F07", + "7944": "uni1F08", + "7945": "uni1F09", + "7946": "uni1F0A", + "7947": "uni1F0B", + "7948": "uni1F0C", + "7949": "uni1F0D", + "7950": "uni1F0E", + "7951": "uni1F0F", + "7952": "uni1F10", + "7953": "uni1F11", + "7954": "uni1F12", + "7955": "uni1F13", + "7956": "uni1F14", + "7957": "uni1F15", + "7960": "uni1F18", + "7961": "uni1F19", + "7962": "uni1F1A", + "7963": "uni1F1B", + "7964": "uni1F1C", + "7965": "uni1F1D", + "7968": "uni1F20", + "7969": "uni1F21", + "7970": "uni1F22", + "7971": "uni1F23", + "7972": "uni1F24", + "7973": "uni1F25", + "7974": "uni1F26", + "7975": "uni1F27", + "7976": "uni1F28", + "7977": "uni1F29", + "7978": "uni1F2A", + "7979": "uni1F2B", + "7980": "uni1F2C", + "7981": "uni1F2D", + "7982": "uni1F2E", + "7983": "uni1F2F", + "7984": "uni1F30", + "7985": "uni1F31", + "7986": "uni1F32", + "7987": "uni1F33", + "7988": "uni1F34", + "7989": "uni1F35", + "7990": "uni1F36", + "7991": "uni1F37", + "7992": "uni1F38", + "7993": "uni1F39", + "7994": "uni1F3A", + "7995": "uni1F3B", + "7996": "uni1F3C", + "7997": "uni1F3D", + "7998": "uni1F3E", + "7999": "uni1F3F", + "8000": "uni1F40", + "8001": "uni1F41", + "8002": "uni1F42", + "8003": "uni1F43", + "8004": "uni1F44", + "8005": "uni1F45", + "8008": "uni1F48", + "8009": "uni1F49", + "8010": "uni1F4A", + "8011": "uni1F4B", + "8012": "uni1F4C", + "8013": "uni1F4D", + "8016": "uni1F50", + "8017": "uni1F51", + "8018": "uni1F52", + "8019": "uni1F53", + "8020": "uni1F54", + "8021": "uni1F55", + "8022": "uni1F56", + "8023": "uni1F57", + "8025": "uni1F59", + "8027": "uni1F5B", + "8029": "uni1F5D", + "8031": "uni1F5F", + "8032": "uni1F60", + "8033": "uni1F61", + "8034": "uni1F62", + "8035": "uni1F63", + "8036": "uni1F64", + "8037": "uni1F65", + "8038": "uni1F66", + "8039": "uni1F67", + "8040": "uni1F68", + "8041": "uni1F69", + "8042": "uni1F6A", + "8043": "uni1F6B", + "8044": "uni1F6C", + "8045": "uni1F6D", + "8046": "uni1F6E", + "8047": "uni1F6F", + "8048": "uni1F70", + "8049": "uni1F71", + "8050": "uni1F72", + "8051": "uni1F73", + "8052": "uni1F74", + "8053": "uni1F75", + "8054": "uni1F76", + "8055": "uni1F77", + "8056": "uni1F78", + "8057": "uni1F79", + "8058": "uni1F7A", + "8059": "uni1F7B", + "8060": "uni1F7C", + "8061": "uni1F7D", + "8064": "uni1F80", + "8065": "uni1F81", + "8066": "uni1F82", + "8067": "uni1F83", + "8068": "uni1F84", + "8069": "uni1F85", + "8070": "uni1F86", + "8071": "uni1F87", + "8072": "uni1F88", + "8073": "uni1F89", + "8074": "uni1F8A", + "8075": "uni1F8B", + "8076": "uni1F8C", + "8077": "uni1F8D", + "8078": "uni1F8E", + "8079": "uni1F8F", + "8080": "uni1F90", + "8081": "uni1F91", + "8082": "uni1F92", + "8083": "uni1F93", + "8084": "uni1F94", + "8085": "uni1F95", + "8086": "uni1F96", + "8087": "uni1F97", + "8088": "uni1F98", + "8089": "uni1F99", + "8090": "uni1F9A", + "8091": "uni1F9B", + "8092": "uni1F9C", + "8093": "uni1F9D", + "8094": "uni1F9E", + "8095": "uni1F9F", + "8096": "uni1FA0", + "8097": "uni1FA1", + "8098": "uni1FA2", + "8099": "uni1FA3", + "8100": "uni1FA4", + "8101": "uni1FA5", + "8102": "uni1FA6", + "8103": "uni1FA7", + "8104": "uni1FA8", + "8105": "uni1FA9", + "8106": "uni1FAA", + "8107": "uni1FAB", + "8108": "uni1FAC", + "8109": "uni1FAD", + "8110": "uni1FAE", + "8111": "uni1FAF", + "8112": "uni1FB0", + "8113": "uni1FB1", + "8114": "uni1FB2", + "8115": "uni1FB3", + "8116": "uni1FB4", + "8118": "uni1FB6", + "8119": "uni1FB7", + "8120": "uni1FB8", + "8121": "uni1FB9", + "8122": "uni1FBA", + "8123": "uni1FBB", + "8124": "uni1FBC", + "8125": "uni1FBD", + "8126": "uni1FBE", + "8127": "uni1FBF", + "8128": "uni1FC0", + "8129": "uni1FC1", + "8130": "uni1FC2", + "8131": "uni1FC3", + "8132": "uni1FC4", + "8134": "uni1FC6", + "8135": "uni1FC7", + "8136": "uni1FC8", + "8137": "uni1FC9", + "8138": "uni1FCA", + "8139": "uni1FCB", + "8140": "uni1FCC", + "8141": "uni1FCD", + "8142": "uni1FCE", + "8143": "uni1FCF", + "8144": "uni1FD0", + "8145": "uni1FD1", + "8146": "uni1FD2", + "8147": "uni1FD3", + "8150": "uni1FD6", + "8151": "uni1FD7", + "8152": "uni1FD8", + "8153": "uni1FD9", + "8154": "uni1FDA", + "8155": "uni1FDB", + "8157": "uni1FDD", + "8158": "uni1FDE", + "8159": "uni1FDF", + "8160": "uni1FE0", + "8161": "uni1FE1", + "8162": "uni1FE2", + "8163": "uni1FE3", + "8164": "uni1FE4", + "8165": "uni1FE5", + "8166": "uni1FE6", + "8167": "uni1FE7", + "8168": "uni1FE8", + "8169": "uni1FE9", + "8170": "uni1FEA", + "8171": "uni1FEB", + "8172": "uni1FEC", + "8173": "uni1FED", + "8174": "uni1FEE", + "8175": "uni1FEF", + "8178": "uni1FF2", + "8179": "uni1FF3", + "8180": "uni1FF4", + "8182": "uni1FF6", + "8183": "uni1FF7", + "8184": "uni1FF8", + "8185": "uni1FF9", + "8186": "uni1FFA", + "8187": "uni1FFB", + "8188": "uni1FFC", + "8189": "uni1FFD", + "8190": "uni1FFE", + "8192": "uni2000", + "8193": "uni2001", + "8194": "uni2002", + "8195": "uni2003", + "8196": "uni2004", + "8197": "uni2005", + "8198": "uni2006", + "8199": "uni2007", + "8200": "uni2008", + "8201": "uni2009", + "8202": "uni200A", + "8203": "uni200B", + "8204": "uni200C", + "8205": "uni200D", + "8206": "uni200E", + "8207": "uni200F", + "8208": "uni2010", + "8209": "uni2011", + "8210": "figuredash", + "8211": "endash", + "8212": "emdash", + "8213": "uni2015", + "8214": "uni2016", + "8215": "underscoredbl", + "8216": "quoteleft", + "8217": "quoteright", + "8218": "quotesinglbase", + "8219": "quotereversed", + "8220": "quotedblleft", + "8221": "quotedblright", + "8222": "quotedblbase", + "8223": "uni201F", + "8224": "dagger", + "8225": "daggerdbl", + "8226": "bullet", + "8227": "uni2023", + "8228": "onedotenleader", + "8229": "twodotenleader", + "8230": "ellipsis", + "8231": "uni2027", + "8232": "uni2028", + "8233": "uni2029", + "8234": "uni202A", + "8235": "uni202B", + "8236": "uni202C", + "8237": "uni202D", + "8238": "uni202E", + "8239": "uni202F", + "8240": "perthousand", + "8241": "uni2031", + "8242": "minute", + "8243": "second", + "8244": "uni2034", + "8245": "uni2035", + "8246": "uni2036", + "8247": "uni2037", + "8248": "uni2038", + "8249": "guilsinglleft", + "8250": "guilsinglright", + "8251": "uni203B", + "8252": "exclamdbl", + "8253": "uni203D", + "8254": "uni203E", + "8255": "uni203F", + "8256": "uni2040", + "8257": "uni2041", + "8258": "uni2042", + "8259": "uni2043", + "8260": "fraction", + "8261": "uni2045", + "8262": "uni2046", + "8263": "uni2047", + "8264": "uni2048", + "8265": "uni2049", + "8266": "uni204A", + "8267": "uni204B", + "8268": "uni204C", + "8269": "uni204D", + "8270": "uni204E", + "8271": "uni204F", + "8272": "uni2050", + "8273": "uni2051", + "8274": "uni2052", + "8275": "uni2053", + "8276": "uni2054", + "8277": "uni2055", + "8278": "uni2056", + "8279": "uni2057", + "8280": "uni2058", + "8281": "uni2059", + "8282": "uni205A", + "8283": "uni205B", + "8284": "uni205C", + "8285": "uni205D", + "8286": "uni205E", + "8287": "uni205F", + "8288": "uni2060", + "8289": "uni2061", + "8290": "uni2062", + "8291": "uni2063", + "8292": "uni2064", + "8298": "uni206A", + "8299": "uni206B", + "8300": "uni206C", + "8301": "uni206D", + "8302": "uni206E", + "8303": "uni206F", + "8304": "uni2070", + "8305": "uni2071", + "8308": "uni2074", + "8309": "uni2075", + "8310": "uni2076", + "8311": "uni2077", + "8312": "uni2078", + "8313": "uni2079", + "8314": "uni207A", + "8315": "uni207B", + "8316": "uni207C", + "8317": "uni207D", + "8318": "uni207E", + "8319": "uni207F", + "8320": "uni2080", + "8321": "uni2081", + "8322": "uni2082", + "8323": "uni2083", + "8324": "uni2084", + "8325": "uni2085", + "8326": "uni2086", + "8327": "uni2087", + "8328": "uni2088", + "8329": "uni2089", + "8330": "uni208A", + "8331": "uni208B", + "8332": "uni208C", + "8333": "uni208D", + "8334": "uni208E", + "8336": "uni2090", + "8337": "uni2091", + "8338": "uni2092", + "8339": "uni2093", + "8340": "uni2094", + "8341": "uni2095", + "8342": "uni2096", + "8343": "uni2097", + "8344": "uni2098", + "8345": "uni2099", + "8346": "uni209A", + "8347": "uni209B", + "8348": "uni209C", + "8352": "uni20A0", + "8353": "colonmonetary", + "8354": "uni20A2", + "8355": "franc", + "8356": "lira", + "8357": "uni20A5", + "8358": "uni20A6", + "8359": "peseta", + "8360": "uni20A8", + "8361": "uni20A9", + "8362": "uni20AA", + "8363": "dong", + "8364": "Euro", + "8365": "uni20AD", + "8366": "uni20AE", + "8367": "uni20AF", + "8368": "uni20B0", + "8369": "uni20B1", + "8370": "uni20B2", + "8371": "uni20B3", + "8372": "uni20B4", + "8373": "uni20B5", + "8376": "uni20B8", + "8377": "uni20B9", + "8378": "uni20BA", + "8381": "uni20BD", + "8400": "uni20D0", + "8401": "uni20D1", + "8406": "uni20D6", + "8407": "uni20D7", + "8411": "uni20DB", + "8412": "uni20DC", + "8417": "uni20E1", + "8448": "uni2100", + "8449": "uni2101", + "8450": "uni2102", + "8451": "uni2103", + "8452": "uni2104", + "8453": "uni2105", + "8454": "uni2106", + "8455": "uni2107", + "8456": "uni2108", + "8457": "uni2109", + "8459": "uni210B", + "8460": "uni210C", + "8461": "uni210D", + "8462": "uni210E", + "8463": "uni210F", + "8464": "uni2110", + "8465": "Ifraktur", + "8466": "uni2112", + "8467": "uni2113", + "8468": "uni2114", + "8469": "uni2115", + "8470": "uni2116", + "8471": "uni2117", + "8472": "weierstrass", + "8473": "uni2119", + "8474": "uni211A", + "8475": "uni211B", + "8476": "Rfraktur", + "8477": "uni211D", + "8478": "prescription", + "8479": "uni211F", + "8480": "uni2120", + "8481": "uni2121", + "8482": "trademark", + "8483": "uni2123", + "8484": "uni2124", + "8485": "uni2125", + "8486": "uni2126", + "8487": "uni2127", + "8488": "uni2128", + "8489": "uni2129", + "8490": "uni212A", + "8491": "uni212B", + "8492": "uni212C", + "8493": "uni212D", + "8494": "estimated", + "8495": "uni212F", + "8496": "uni2130", + "8497": "uni2131", + "8498": "uni2132", + "8499": "uni2133", + "8500": "uni2134", + "8501": "aleph", + "8502": "uni2136", + "8503": "uni2137", + "8504": "uni2138", + "8505": "uni2139", + "8506": "uni213A", + "8507": "uni213B", + "8508": "uni213C", + "8509": "uni213D", + "8510": "uni213E", + "8511": "uni213F", + "8512": "uni2140", + "8513": "uni2141", + "8514": "uni2142", + "8515": "uni2143", + "8516": "uni2144", + "8517": "uni2145", + "8518": "uni2146", + "8519": "uni2147", + "8520": "uni2148", + "8521": "uni2149", + "8523": "uni214B", + "8526": "uni214E", + "8528": "uni2150", + "8529": "uni2151", + "8530": "uni2152", + "8531": "onethird", + "8532": "twothirds", + "8533": "uni2155", + "8534": "uni2156", + "8535": "uni2157", + "8536": "uni2158", + "8537": "uni2159", + "8538": "uni215A", + "8539": "oneeighth", + "8540": "threeeighths", + "8541": "fiveeighths", + "8542": "seveneighths", + "8543": "uni215F", + "8544": "uni2160", + "8545": "uni2161", + "8546": "uni2162", + "8547": "uni2163", + "8548": "uni2164", + "8549": "uni2165", + "8550": "uni2166", + "8551": "uni2167", + "8552": "uni2168", + "8553": "uni2169", + "8554": "uni216A", + "8555": "uni216B", + "8556": "uni216C", + "8557": "uni216D", + "8558": "uni216E", + "8559": "uni216F", + "8560": "uni2170", + "8561": "uni2171", + "8562": "uni2172", + "8563": "uni2173", + "8564": "uni2174", + "8565": "uni2175", + "8566": "uni2176", + "8567": "uni2177", + "8568": "uni2178", + "8569": "uni2179", + "8570": "uni217A", + "8571": "uni217B", + "8572": "uni217C", + "8573": "uni217D", + "8574": "uni217E", + "8575": "uni217F", + "8576": "uni2180", + "8577": "uni2181", + "8578": "uni2182", + "8579": "uni2183", + "8580": "uni2184", + "8581": "uni2185", + "8585": "uni2189", + "8592": "arrowleft", + "8593": "arrowup", + "8594": "arrowright", + "8595": "arrowdown", + "8596": "arrowboth", + "8597": "arrowupdn", + "8598": "uni2196", + "8599": "uni2197", + "8600": "uni2198", + "8601": "uni2199", + "8602": "uni219A", + "8603": "uni219B", + "8604": "uni219C", + "8605": "uni219D", + "8606": "uni219E", + "8607": "uni219F", + "8608": "uni21A0", + "8609": "uni21A1", + "8610": "uni21A2", + "8611": "uni21A3", + "8612": "uni21A4", + "8613": "uni21A5", + "8614": "uni21A6", + "8615": "uni21A7", + "8616": "arrowupdnbse", + "8617": "uni21A9", + "8618": "uni21AA", + "8619": "uni21AB", + "8620": "uni21AC", + "8621": "uni21AD", + "8622": "uni21AE", + "8623": "uni21AF", + "8624": "uni21B0", + "8625": "uni21B1", + "8626": "uni21B2", + "8627": "uni21B3", + "8628": "uni21B4", + "8629": "carriagereturn", + "8630": "uni21B6", + "8631": "uni21B7", + "8632": "uni21B8", + "8633": "uni21B9", + "8634": "uni21BA", + "8635": "uni21BB", + "8636": "uni21BC", + "8637": "uni21BD", + "8638": "uni21BE", + "8639": "uni21BF", + "8640": "uni21C0", + "8641": "uni21C1", + "8642": "uni21C2", + "8643": "uni21C3", + "8644": "uni21C4", + "8645": "uni21C5", + "8646": "uni21C6", + "8647": "uni21C7", + "8648": "uni21C8", + "8649": "uni21C9", + "8650": "uni21CA", + "8651": "uni21CB", + "8652": "uni21CC", + "8653": "uni21CD", + "8654": "uni21CE", + "8655": "uni21CF", + "8656": "arrowdblleft", + "8657": "arrowdblup", + "8658": "arrowdblright", + "8659": "arrowdbldown", + "8660": "arrowdblboth", + "8661": "uni21D5", + "8662": "uni21D6", + "8663": "uni21D7", + "8664": "uni21D8", + "8665": "uni21D9", + "8666": "uni21DA", + "8667": "uni21DB", + "8668": "uni21DC", + "8669": "uni21DD", + "8670": "uni21DE", + "8671": "uni21DF", + "8672": "uni21E0", + "8673": "uni21E1", + "8674": "uni21E2", + "8675": "uni21E3", + "8676": "uni21E4", + "8677": "uni21E5", + "8678": "uni21E6", + "8679": "uni21E7", + "8680": "uni21E8", + "8681": "uni21E9", + "8682": "uni21EA", + "8683": "uni21EB", + "8684": "uni21EC", + "8685": "uni21ED", + "8686": "uni21EE", + "8687": "uni21EF", + "8688": "uni21F0", + "8689": "uni21F1", + "8690": "uni21F2", + "8691": "uni21F3", + "8692": "uni21F4", + "8693": "uni21F5", + "8694": "uni21F6", + "8695": "uni21F7", + "8696": "uni21F8", + "8697": "uni21F9", + "8698": "uni21FA", + "8699": "uni21FB", + "8700": "uni21FC", + "8701": "uni21FD", + "8702": "uni21FE", + "8703": "uni21FF", + "8704": "universal", + "8705": "uni2201", + "8706": "partialdiff", + "8707": "existential", + "8708": "uni2204", + "8709": "emptyset", + "8710": "increment", + "8711": "gradient", + "8712": "element", + "8713": "notelement", + "8714": "uni220A", + "8715": "suchthat", + "8716": "uni220C", + "8717": "uni220D", + "8718": "uni220E", + "8719": "product", + "8720": "uni2210", + "8721": "summation", + "8722": "minus", + "8723": "uni2213", + "8724": "uni2214", + "8725": "uni2215", + "8726": "uni2216", + "8727": "asteriskmath", + "8728": "uni2218", + "8729": "uni2219", + "8730": "radical", + "8731": "uni221B", + "8732": "uni221C", + "8733": "proportional", + "8734": "infinity", + "8735": "orthogonal", + "8736": "angle", + "8737": "uni2221", + "8738": "uni2222", + "8739": "uni2223", + "8740": "uni2224", + "8741": "uni2225", + "8742": "uni2226", + "8743": "logicaland", + "8744": "logicalor", + "8745": "intersection", + "8746": "union", + "8747": "integral", + "8748": "uni222C", + "8749": "uni222D", + "8750": "uni222E", + "8751": "uni222F", + "8752": "uni2230", + "8753": "uni2231", + "8754": "uni2232", + "8755": "uni2233", + "8756": "therefore", + "8757": "uni2235", + "8758": "uni2236", + "8759": "uni2237", + "8760": "uni2238", + "8761": "uni2239", + "8762": "uni223A", + "8763": "uni223B", + "8764": "similar", + "8765": "uni223D", + "8766": "uni223E", + "8767": "uni223F", + "8768": "uni2240", + "8769": "uni2241", + "8770": "uni2242", + "8771": "uni2243", + "8772": "uni2244", + "8773": "congruent", + "8774": "uni2246", + "8775": "uni2247", + "8776": "approxequal", + "8777": "uni2249", + "8778": "uni224A", + "8779": "uni224B", + "8780": "uni224C", + "8781": "uni224D", + "8782": "uni224E", + "8783": "uni224F", + "8784": "uni2250", + "8785": "uni2251", + "8786": "uni2252", + "8787": "uni2253", + "8788": "uni2254", + "8789": "uni2255", + "8790": "uni2256", + "8791": "uni2257", + "8792": "uni2258", + "8793": "uni2259", + "8794": "uni225A", + "8795": "uni225B", + "8796": "uni225C", + "8797": "uni225D", + "8798": "uni225E", + "8799": "uni225F", + "8800": "notequal", + "8801": "equivalence", + "8802": "uni2262", + "8803": "uni2263", + "8804": "lessequal", + "8805": "greaterequal", + "8806": "uni2266", + "8807": "uni2267", + "8808": "uni2268", + "8809": "uni2269", + "8810": "uni226A", + "8811": "uni226B", + "8812": "uni226C", + "8813": "uni226D", + "8814": "uni226E", + "8815": "uni226F", + "8816": "uni2270", + "8817": "uni2271", + "8818": "uni2272", + "8819": "uni2273", + "8820": "uni2274", + "8821": "uni2275", + "8822": "uni2276", + "8823": "uni2277", + "8824": "uni2278", + "8825": "uni2279", + "8826": "uni227A", + "8827": "uni227B", + "8828": "uni227C", + "8829": "uni227D", + "8830": "uni227E", + "8831": "uni227F", + "8832": "uni2280", + "8833": "uni2281", + "8834": "propersubset", + "8835": "propersuperset", + "8836": "notsubset", + "8837": "uni2285", + "8838": "reflexsubset", + "8839": "reflexsuperset", + "8840": "uni2288", + "8841": "uni2289", + "8842": "uni228A", + "8843": "uni228B", + "8844": "uni228C", + "8845": "uni228D", + "8846": "uni228E", + "8847": "uni228F", + "8848": "uni2290", + "8849": "uni2291", + "8850": "uni2292", + "8851": "uni2293", + "8852": "uni2294", + "8853": "circleplus", + "8854": "uni2296", + "8855": "circlemultiply", + "8856": "uni2298", + "8857": "uni2299", + "8858": "uni229A", + "8859": "uni229B", + "8860": "uni229C", + "8861": "uni229D", + "8862": "uni229E", + "8863": "uni229F", + "8864": "uni22A0", + "8865": "uni22A1", + "8866": "uni22A2", + "8867": "uni22A3", + "8868": "uni22A4", + "8869": "perpendicular", + "8870": "uni22A6", + "8871": "uni22A7", + "8872": "uni22A8", + "8873": "uni22A9", + "8874": "uni22AA", + "8875": "uni22AB", + "8876": "uni22AC", + "8877": "uni22AD", + "8878": "uni22AE", + "8879": "uni22AF", + "8880": "uni22B0", + "8881": "uni22B1", + "8882": "uni22B2", + "8883": "uni22B3", + "8884": "uni22B4", + "8885": "uni22B5", + "8886": "uni22B6", + "8887": "uni22B7", + "8888": "uni22B8", + "8889": "uni22B9", + "8890": "uni22BA", + "8891": "uni22BB", + "8892": "uni22BC", + "8893": "uni22BD", + "8894": "uni22BE", + "8895": "uni22BF", + "8896": "uni22C0", + "8897": "uni22C1", + "8898": "uni22C2", + "8899": "uni22C3", + "8900": "uni22C4", + "8901": "dotmath", + "8902": "uni22C6", + "8903": "uni22C7", + "8904": "uni22C8", + "8905": "uni22C9", + "8906": "uni22CA", + "8907": "uni22CB", + "8908": "uni22CC", + "8909": "uni22CD", + "8910": "uni22CE", + "8911": "uni22CF", + "8912": "uni22D0", + "8913": "uni22D1", + "8914": "uni22D2", + "8915": "uni22D3", + "8916": "uni22D4", + "8917": "uni22D5", + "8918": "uni22D6", + "8919": "uni22D7", + "8920": "uni22D8", + "8921": "uni22D9", + "8922": "uni22DA", + "8923": "uni22DB", + "8924": "uni22DC", + "8925": "uni22DD", + "8926": "uni22DE", + "8927": "uni22DF", + "8928": "uni22E0", + "8929": "uni22E1", + "8930": "uni22E2", + "8931": "uni22E3", + "8932": "uni22E4", + "8933": "uni22E5", + "8934": "uni22E6", + "8935": "uni22E7", + "8936": "uni22E8", + "8937": "uni22E9", + "8938": "uni22EA", + "8939": "uni22EB", + "8940": "uni22EC", + "8941": "uni22ED", + "8942": "uni22EE", + "8943": "uni22EF", + "8944": "uni22F0", + "8945": "uni22F1", + "8946": "uni22F2", + "8947": "uni22F3", + "8948": "uni22F4", + "8949": "uni22F5", + "8950": "uni22F6", + "8951": "uni22F7", + "8952": "uni22F8", + "8953": "uni22F9", + "8954": "uni22FA", + "8955": "uni22FB", + "8956": "uni22FC", + "8957": "uni22FD", + "8958": "uni22FE", + "8959": "uni22FF", + "8960": "uni2300", + "8961": "uni2301", + "8962": "house", + "8963": "uni2303", + "8964": "uni2304", + "8965": "uni2305", + "8966": "uni2306", + "8967": "uni2307", + "8968": "uni2308", + "8969": "uni2309", + "8970": "uni230A", + "8971": "uni230B", + "8972": "uni230C", + "8973": "uni230D", + "8974": "uni230E", + "8975": "uni230F", + "8976": "revlogicalnot", + "8977": "uni2311", + "8984": "uni2318", + "8985": "uni2319", + "8988": "uni231C", + "8989": "uni231D", + "8990": "uni231E", + "8991": "uni231F", + "8992": "integraltp", + "8993": "integralbt", + "8996": "uni2324", + "8997": "uni2325", + "8998": "uni2326", + "8999": "uni2327", + "9000": "uni2328", + "9003": "uni232B", + "9004": "uni232C", + "9075": "uni2373", + "9076": "uni2374", + "9077": "uni2375", + "9082": "uni237A", + "9085": "uni237D", + "9095": "uni2387", + "9108": "uni2394", + "9115": "uni239B", + "9116": "uni239C", + "9117": "uni239D", + "9118": "uni239E", + "9119": "uni239F", + "9120": "uni23A0", + "9121": "uni23A1", + "9122": "uni23A2", + "9123": "uni23A3", + "9124": "uni23A4", + "9125": "uni23A5", + "9126": "uni23A6", + "9127": "uni23A7", + "9128": "uni23A8", + "9129": "uni23A9", + "9130": "uni23AA", + "9131": "uni23AB", + "9132": "uni23AC", + "9133": "uni23AD", + "9134": "uni23AE", + "9166": "uni23CE", + "9167": "uni23CF", + "9187": "uni23E3", + "9189": "uni23E5", + "9192": "uni23E8", + "9250": "uni2422", + "9251": "uni2423", + "9312": "uni2460", + "9313": "uni2461", + "9314": "uni2462", + "9315": "uni2463", + "9316": "uni2464", + "9317": "uni2465", + "9318": "uni2466", + "9319": "uni2467", + "9320": "uni2468", + "9321": "uni2469", + "9472": "SF100000", + "9473": "uni2501", + "9474": "SF110000", + "9475": "uni2503", + "9476": "uni2504", + "9477": "uni2505", + "9478": "uni2506", + "9479": "uni2507", + "9480": "uni2508", + "9481": "uni2509", + "9482": "uni250A", + "9483": "uni250B", + "9484": "SF010000", + "9485": "uni250D", + "9486": "uni250E", + "9487": "uni250F", + "9488": "SF030000", + "9489": "uni2511", + "9490": "uni2512", + "9491": "uni2513", + "9492": "SF020000", + "9493": "uni2515", + "9494": "uni2516", + "9495": "uni2517", + "9496": "SF040000", + "9497": "uni2519", + "9498": "uni251A", + "9499": "uni251B", + "9500": "SF080000", + "9501": "uni251D", + "9502": "uni251E", + "9503": "uni251F", + "9504": "uni2520", + "9505": "uni2521", + "9506": "uni2522", + "9507": "uni2523", + "9508": "SF090000", + "9509": "uni2525", + "9510": "uni2526", + "9511": "uni2527", + "9512": "uni2528", + "9513": "uni2529", + "9514": "uni252A", + "9515": "uni252B", + "9516": "SF060000", + "9517": "uni252D", + "9518": "uni252E", + "9519": "uni252F", + "9520": "uni2530", + "9521": "uni2531", + "9522": "uni2532", + "9523": "uni2533", + "9524": "SF070000", + "9525": "uni2535", + "9526": "uni2536", + "9527": "uni2537", + "9528": "uni2538", + "9529": "uni2539", + "9530": "uni253A", + "9531": "uni253B", + "9532": "SF050000", + "9533": "uni253D", + "9534": "uni253E", + "9535": "uni253F", + "9536": "uni2540", + "9537": "uni2541", + "9538": "uni2542", + "9539": "uni2543", + "9540": "uni2544", + "9541": "uni2545", + "9542": "uni2546", + "9543": "uni2547", + "9544": "uni2548", + "9545": "uni2549", + "9546": "uni254A", + "9547": "uni254B", + "9548": "uni254C", + "9549": "uni254D", + "9550": "uni254E", + "9551": "uni254F", + "9552": "SF430000", + "9553": "SF240000", + "9554": "SF510000", + "9555": "SF520000", + "9556": "SF390000", + "9557": "SF220000", + "9558": "SF210000", + "9559": "SF250000", + "9560": "SF500000", + "9561": "SF490000", + "9562": "SF380000", + "9563": "SF280000", + "9564": "SF270000", + "9565": "SF260000", + "9566": "SF360000", + "9567": "SF370000", + "9568": "SF420000", + "9569": "SF190000", + "9570": "SF200000", + "9571": "SF230000", + "9572": "SF470000", + "9573": "SF480000", + "9574": "SF410000", + "9575": "SF450000", + "9576": "SF460000", + "9577": "SF400000", + "9578": "SF540000", + "9579": "SF530000", + "9580": "SF440000", + "9581": "uni256D", + "9582": "uni256E", + "9583": "uni256F", + "9584": "uni2570", + "9585": "uni2571", + "9586": "uni2572", + "9587": "uni2573", + "9588": "uni2574", + "9589": "uni2575", + "9590": "uni2576", + "9591": "uni2577", + "9592": "uni2578", + "9593": "uni2579", + "9594": "uni257A", + "9595": "uni257B", + "9596": "uni257C", + "9597": "uni257D", + "9598": "uni257E", + "9599": "uni257F", + "9600": "upblock", + "9601": "uni2581", + "9602": "uni2582", + "9603": "uni2583", + "9604": "dnblock", + "9605": "uni2585", + "9606": "uni2586", + "9607": "uni2587", + "9608": "block", + "9609": "uni2589", + "9610": "uni258A", + "9611": "uni258B", + "9612": "lfblock", + "9613": "uni258D", + "9614": "uni258E", + "9615": "uni258F", + "9616": "rtblock", + "9617": "ltshade", + "9618": "shade", + "9619": "dkshade", + "9620": "uni2594", + "9621": "uni2595", + "9622": "uni2596", + "9623": "uni2597", + "9624": "uni2598", + "9625": "uni2599", + "9626": "uni259A", + "9627": "uni259B", + "9628": "uni259C", + "9629": "uni259D", + "9630": "uni259E", + "9631": "uni259F", + "9632": "filledbox", + "9633": "H22073", + "9634": "uni25A2", + "9635": "uni25A3", + "9636": "uni25A4", + "9637": "uni25A5", + "9638": "uni25A6", + "9639": "uni25A7", + "9640": "uni25A8", + "9641": "uni25A9", + "9642": "H18543", + "9643": "H18551", + "9644": "filledrect", + "9645": "uni25AD", + "9646": "uni25AE", + "9647": "uni25AF", + "9648": "uni25B0", + "9649": "uni25B1", + "9650": "triagup", + "9651": "uni25B3", + "9652": "uni25B4", + "9653": "uni25B5", + "9654": "uni25B6", + "9655": "uni25B7", + "9656": "uni25B8", + "9657": "uni25B9", + "9658": "triagrt", + "9659": "uni25BB", + "9660": "triagdn", + "9661": "uni25BD", + "9662": "uni25BE", + "9663": "uni25BF", + "9664": "uni25C0", + "9665": "uni25C1", + "9666": "uni25C2", + "9667": "uni25C3", + "9668": "triaglf", + "9669": "uni25C5", + "9670": "uni25C6", + "9671": "uni25C7", + "9672": "uni25C8", + "9673": "uni25C9", + "9674": "lozenge", + "9675": "circle", + "9676": "uni25CC", + "9677": "uni25CD", + "9678": "uni25CE", + "9679": "H18533", + "9680": "uni25D0", + "9681": "uni25D1", + "9682": "uni25D2", + "9683": "uni25D3", + "9684": "uni25D4", + "9685": "uni25D5", + "9686": "uni25D6", + "9687": "uni25D7", + "9688": "invbullet", + "9689": "invcircle", + "9690": "uni25DA", + "9691": "uni25DB", + "9692": "uni25DC", + "9693": "uni25DD", + "9694": "uni25DE", + "9695": "uni25DF", + "9696": "uni25E0", + "9697": "uni25E1", + "9698": "uni25E2", + "9699": "uni25E3", + "9700": "uni25E4", + "9701": "uni25E5", + "9702": "openbullet", + "9703": "uni25E7", + "9704": "uni25E8", + "9705": "uni25E9", + "9706": "uni25EA", + "9707": "uni25EB", + "9708": "uni25EC", + "9709": "uni25ED", + "9710": "uni25EE", + "9711": "uni25EF", + "9712": "uni25F0", + "9713": "uni25F1", + "9714": "uni25F2", + "9715": "uni25F3", + "9716": "uni25F4", + "9717": "uni25F5", + "9718": "uni25F6", + "9719": "uni25F7", + "9720": "uni25F8", + "9721": "uni25F9", + "9722": "uni25FA", + "9723": "uni25FB", + "9724": "uni25FC", + "9725": "uni25FD", + "9726": "uni25FE", + "9727": "uni25FF", + "9728": "uni2600", + "9729": "uni2601", + "9730": "uni2602", + "9731": "uni2603", + "9732": "uni2604", + "9733": "uni2605", + "9734": "uni2606", + "9735": "uni2607", + "9736": "uni2608", + "9737": "uni2609", + "9738": "uni260A", + "9739": "uni260B", + "9740": "uni260C", + "9741": "uni260D", + "9742": "uni260E", + "9743": "uni260F", + "9744": "uni2610", + "9745": "uni2611", + "9746": "uni2612", + "9747": "uni2613", + "9748": "uni2614", + "9749": "uni2615", + "9750": "uni2616", + "9751": "uni2617", + "9752": "uni2618", + "9753": "uni2619", + "9754": "uni261A", + "9755": "uni261B", + "9756": "uni261C", + "9757": "uni261D", + "9758": "uni261E", + "9759": "uni261F", + "9760": "uni2620", + "9761": "uni2621", + "9762": "uni2622", + "9763": "uni2623", + "9764": "uni2624", + "9765": "uni2625", + "9766": "uni2626", + "9767": "uni2627", + "9768": "uni2628", + "9769": "uni2629", + "9770": "uni262A", + "9771": "uni262B", + "9772": "uni262C", + "9773": "uni262D", + "9774": "uni262E", + "9775": "uni262F", + "9776": "uni2630", + "9777": "uni2631", + "9778": "uni2632", + "9779": "uni2633", + "9780": "uni2634", + "9781": "uni2635", + "9782": "uni2636", + "9783": "uni2637", + "9784": "uni2638", + "9785": "uni2639", + "9786": "smileface", + "9787": "invsmileface", + "9788": "sun", + "9789": "uni263D", + "9790": "uni263E", + "9791": "uni263F", + "9792": "female", + "9793": "uni2641", + "9794": "male", + "9795": "uni2643", + "9796": "uni2644", + "9797": "uni2645", + "9798": "uni2646", + "9799": "uni2647", + "9800": "uni2648", + "9801": "uni2649", + "9802": "uni264A", + "9803": "uni264B", + "9804": "uni264C", + "9805": "uni264D", + "9806": "uni264E", + "9807": "uni264F", + "9808": "uni2650", + "9809": "uni2651", + "9810": "uni2652", + "9811": "uni2653", + "9812": "uni2654", + "9813": "uni2655", + "9814": "uni2656", + "9815": "uni2657", + "9816": "uni2658", + "9817": "uni2659", + "9818": "uni265A", + "9819": "uni265B", + "9820": "uni265C", + "9821": "uni265D", + "9822": "uni265E", + "9823": "uni265F", + "9824": "spade", + "9825": "uni2661", + "9826": "uni2662", + "9827": "club", + "9828": "uni2664", + "9829": "heart", + "9830": "diamond", + "9831": "uni2667", + "9832": "uni2668", + "9833": "uni2669", + "9834": "musicalnote", + "9835": "musicalnotedbl", + "9836": "uni266C", + "9837": "uni266D", + "9838": "uni266E", + "9839": "uni266F", + "9840": "uni2670", + "9841": "uni2671", + "9842": "uni2672", + "9843": "uni2673", + "9844": "uni2674", + "9845": "uni2675", + "9846": "uni2676", + "9847": "uni2677", + "9848": "uni2678", + "9849": "uni2679", + "9850": "uni267A", + "9851": "uni267B", + "9852": "uni267C", + "9853": "uni267D", + "9854": "uni267E", + "9855": "uni267F", + "9856": "uni2680", + "9857": "uni2681", + "9858": "uni2682", + "9859": "uni2683", + "9860": "uni2684", + "9861": "uni2685", + "9862": "uni2686", + "9863": "uni2687", + "9864": "uni2688", + "9865": "uni2689", + "9866": "uni268A", + "9867": "uni268B", + "9868": "uni268C", + "9869": "uni268D", + "9870": "uni268E", + "9871": "uni268F", + "9872": "uni2690", + "9873": "uni2691", + "9874": "uni2692", + "9875": "uni2693", + "9876": "uni2694", + "9877": "uni2695", + "9878": "uni2696", + "9879": "uni2697", + "9880": "uni2698", + "9881": "uni2699", + "9882": "uni269A", + "9883": "uni269B", + "9884": "uni269C", + "9886": "uni269E", + "9887": "uni269F", + "9888": "uni26A0", + "9889": "uni26A1", + "9890": "uni26A2", + "9891": "uni26A3", + "9892": "uni26A4", + "9893": "uni26A5", + "9894": "uni26A6", + "9895": "uni26A7", + "9896": "uni26A8", + "9897": "uni26A9", + "9898": "uni26AA", + "9899": "uni26AB", + "9900": "uni26AC", + "9901": "uni26AD", + "9902": "uni26AE", + "9903": "uni26AF", + "9904": "uni26B0", + "9905": "uni26B1", + "9906": "uni26B2", + "9907": "uni26B3", + "9908": "uni26B4", + "9909": "uni26B5", + "9910": "uni26B6", + "9911": "uni26B7", + "9912": "uni26B8", + "9920": "uni26C0", + "9921": "uni26C1", + "9922": "uni26C2", + "9923": "uni26C3", + "9954": "uni26E2", + "9985": "uni2701", + "9986": "uni2702", + "9987": "uni2703", + "9988": "uni2704", + "9990": "uni2706", + "9991": "uni2707", + "9992": "uni2708", + "9993": "uni2709", + "9996": "uni270C", + "9997": "uni270D", + "9998": "uni270E", + "9999": "uni270F", + "10000": "uni2710", + "10001": "uni2711", + "10002": "uni2712", + "10003": "uni2713", + "10004": "uni2714", + "10005": "uni2715", + "10006": "uni2716", + "10007": "uni2717", + "10008": "uni2718", + "10009": "uni2719", + "10010": "uni271A", + "10011": "uni271B", + "10012": "uni271C", + "10013": "uni271D", + "10014": "uni271E", + "10015": "uni271F", + "10016": "uni2720", + "10017": "uni2721", + "10018": "uni2722", + "10019": "uni2723", + "10020": "uni2724", + "10021": "uni2725", + "10022": "uni2726", + "10023": "uni2727", + "10025": "uni2729", + "10026": "uni272A", + "10027": "uni272B", + "10028": "uni272C", + "10029": "uni272D", + "10030": "uni272E", + "10031": "uni272F", + "10032": "uni2730", + "10033": "uni2731", + "10034": "uni2732", + "10035": "uni2733", + "10036": "uni2734", + "10037": "uni2735", + "10038": "uni2736", + "10039": "uni2737", + "10040": "uni2738", + "10041": "uni2739", + "10042": "uni273A", + "10043": "uni273B", + "10044": "uni273C", + "10045": "uni273D", + "10046": "uni273E", + "10047": "uni273F", + "10048": "uni2740", + "10049": "uni2741", + "10050": "uni2742", + "10051": "uni2743", + "10052": "uni2744", + "10053": "uni2745", + "10054": "uni2746", + "10055": "uni2747", + "10056": "uni2748", + "10057": "uni2749", + "10058": "uni274A", + "10059": "uni274B", + "10061": "uni274D", + "10063": "uni274F", + "10064": "uni2750", + "10065": "uni2751", + "10066": "uni2752", + "10070": "uni2756", + "10072": "uni2758", + "10073": "uni2759", + "10074": "uni275A", + "10075": "uni275B", + "10076": "uni275C", + "10077": "uni275D", + "10078": "uni275E", + "10081": "uni2761", + "10082": "uni2762", + "10083": "uni2763", + "10084": "uni2764", + "10085": "uni2765", + "10086": "uni2766", + "10087": "uni2767", + "10088": "uni2768", + "10089": "uni2769", + "10090": "uni276A", + "10091": "uni276B", + "10092": "uni276C", + "10093": "uni276D", + "10094": "uni276E", + "10095": "uni276F", + "10096": "uni2770", + "10097": "uni2771", + "10098": "uni2772", + "10099": "uni2773", + "10100": "uni2774", + "10101": "uni2775", + "10102": "uni2776", + "10103": "uni2777", + "10104": "uni2778", + "10105": "uni2779", + "10106": "uni277A", + "10107": "uni277B", + "10108": "uni277C", + "10109": "uni277D", + "10110": "uni277E", + "10111": "uni277F", + "10112": "uni2780", + "10113": "uni2781", + "10114": "uni2782", + "10115": "uni2783", + "10116": "uni2784", + "10117": "uni2785", + "10118": "uni2786", + "10119": "uni2787", + "10120": "uni2788", + "10121": "uni2789", + "10122": "uni278A", + "10123": "uni278B", + "10124": "uni278C", + "10125": "uni278D", + "10126": "uni278E", + "10127": "uni278F", + "10128": "uni2790", + "10129": "uni2791", + "10130": "uni2792", + "10131": "uni2793", + "10132": "uni2794", + "10136": "uni2798", + "10137": "uni2799", + "10138": "uni279A", + "10139": "uni279B", + "10140": "uni279C", + "10141": "uni279D", + "10142": "uni279E", + "10143": "uni279F", + "10144": "uni27A0", + "10145": "uni27A1", + "10146": "uni27A2", + "10147": "uni27A3", + "10148": "uni27A4", + "10149": "uni27A5", + "10150": "uni27A6", + "10151": "uni27A7", + "10152": "uni27A8", + "10153": "uni27A9", + "10154": "uni27AA", + "10155": "uni27AB", + "10156": "uni27AC", + "10157": "uni27AD", + "10158": "uni27AE", + "10159": "uni27AF", + "10161": "uni27B1", + "10162": "uni27B2", + "10163": "uni27B3", + "10164": "uni27B4", + "10165": "uni27B5", + "10166": "uni27B6", + "10167": "uni27B7", + "10168": "uni27B8", + "10169": "uni27B9", + "10170": "uni27BA", + "10171": "uni27BB", + "10172": "uni27BC", + "10173": "uni27BD", + "10174": "uni27BE", + "10181": "uni27C5", + "10182": "uni27C6", + "10208": "uni27E0", + "10214": "uni27E6", + "10215": "uni27E7", + "10216": "uni27E8", + "10217": "uni27E9", + "10218": "uni27EA", + "10219": "uni27EB", + "10224": "uni27F0", + "10225": "uni27F1", + "10226": "uni27F2", + "10227": "uni27F3", + "10228": "uni27F4", + "10229": "uni27F5", + "10230": "uni27F6", + "10231": "uni27F7", + "10232": "uni27F8", + "10233": "uni27F9", + "10234": "uni27FA", + "10235": "uni27FB", + "10236": "uni27FC", + "10237": "uni27FD", + "10238": "uni27FE", + "10239": "uni27FF", + "10240": "uni2800", + "10241": "uni2801", + "10242": "uni2802", + "10243": "uni2803", + "10244": "uni2804", + "10245": "uni2805", + "10246": "uni2806", + "10247": "uni2807", + "10248": "uni2808", + "10249": "uni2809", + "10250": "uni280A", + "10251": "uni280B", + "10252": "uni280C", + "10253": "uni280D", + "10254": "uni280E", + "10255": "uni280F", + "10256": "uni2810", + "10257": "uni2811", + "10258": "uni2812", + "10259": "uni2813", + "10260": "uni2814", + "10261": "uni2815", + "10262": "uni2816", + "10263": "uni2817", + "10264": "uni2818", + "10265": "uni2819", + "10266": "uni281A", + "10267": "uni281B", + "10268": "uni281C", + "10269": "uni281D", + "10270": "uni281E", + "10271": "uni281F", + "10272": "uni2820", + "10273": "uni2821", + "10274": "uni2822", + "10275": "uni2823", + "10276": "uni2824", + "10277": "uni2825", + "10278": "uni2826", + "10279": "uni2827", + "10280": "uni2828", + "10281": "uni2829", + "10282": "uni282A", + "10283": "uni282B", + "10284": "uni282C", + "10285": "uni282D", + "10286": "uni282E", + "10287": "uni282F", + "10288": "uni2830", + "10289": "uni2831", + "10290": "uni2832", + "10291": "uni2833", + "10292": "uni2834", + "10293": "uni2835", + "10294": "uni2836", + "10295": "uni2837", + "10296": "uni2838", + "10297": "uni2839", + "10298": "uni283A", + "10299": "uni283B", + "10300": "uni283C", + "10301": "uni283D", + "10302": "uni283E", + "10303": "uni283F", + "10304": "uni2840", + "10305": "uni2841", + "10306": "uni2842", + "10307": "uni2843", + "10308": "uni2844", + "10309": "uni2845", + "10310": "uni2846", + "10311": "uni2847", + "10312": "uni2848", + "10313": "uni2849", + "10314": "uni284A", + "10315": "uni284B", + "10316": "uni284C", + "10317": "uni284D", + "10318": "uni284E", + "10319": "uni284F", + "10320": "uni2850", + "10321": "uni2851", + "10322": "uni2852", + "10323": "uni2853", + "10324": "uni2854", + "10325": "uni2855", + "10326": "uni2856", + "10327": "uni2857", + "10328": "uni2858", + "10329": "uni2859", + "10330": "uni285A", + "10331": "uni285B", + "10332": "uni285C", + "10333": "uni285D", + "10334": "uni285E", + "10335": "uni285F", + "10336": "uni2860", + "10337": "uni2861", + "10338": "uni2862", + "10339": "uni2863", + "10340": "uni2864", + "10341": "uni2865", + "10342": "uni2866", + "10343": "uni2867", + "10344": "uni2868", + "10345": "uni2869", + "10346": "uni286A", + "10347": "uni286B", + "10348": "uni286C", + "10349": "uni286D", + "10350": "uni286E", + "10351": "uni286F", + "10352": "uni2870", + "10353": "uni2871", + "10354": "uni2872", + "10355": "uni2873", + "10356": "uni2874", + "10357": "uni2875", + "10358": "uni2876", + "10359": "uni2877", + "10360": "uni2878", + "10361": "uni2879", + "10362": "uni287A", + "10363": "uni287B", + "10364": "uni287C", + "10365": "uni287D", + "10366": "uni287E", + "10367": "uni287F", + "10368": "uni2880", + "10369": "uni2881", + "10370": "uni2882", + "10371": "uni2883", + "10372": "uni2884", + "10373": "uni2885", + "10374": "uni2886", + "10375": "uni2887", + "10376": "uni2888", + "10377": "uni2889", + "10378": "uni288A", + "10379": "uni288B", + "10380": "uni288C", + "10381": "uni288D", + "10382": "uni288E", + "10383": "uni288F", + "10384": "uni2890", + "10385": "uni2891", + "10386": "uni2892", + "10387": "uni2893", + "10388": "uni2894", + "10389": "uni2895", + "10390": "uni2896", + "10391": "uni2897", + "10392": "uni2898", + "10393": "uni2899", + "10394": "uni289A", + "10395": "uni289B", + "10396": "uni289C", + "10397": "uni289D", + "10398": "uni289E", + "10399": "uni289F", + "10400": "uni28A0", + "10401": "uni28A1", + "10402": "uni28A2", + "10403": "uni28A3", + "10404": "uni28A4", + "10405": "uni28A5", + "10406": "uni28A6", + "10407": "uni28A7", + "10408": "uni28A8", + "10409": "uni28A9", + "10410": "uni28AA", + "10411": "uni28AB", + "10412": "uni28AC", + "10413": "uni28AD", + "10414": "uni28AE", + "10415": "uni28AF", + "10416": "uni28B0", + "10417": "uni28B1", + "10418": "uni28B2", + "10419": "uni28B3", + "10420": "uni28B4", + "10421": "uni28B5", + "10422": "uni28B6", + "10423": "uni28B7", + "10424": "uni28B8", + "10425": "uni28B9", + "10426": "uni28BA", + "10427": "uni28BB", + "10428": "uni28BC", + "10429": "uni28BD", + "10430": "uni28BE", + "10431": "uni28BF", + "10432": "uni28C0", + "10433": "uni28C1", + "10434": "uni28C2", + "10435": "uni28C3", + "10436": "uni28C4", + "10437": "uni28C5", + "10438": "uni28C6", + "10439": "uni28C7", + "10440": "uni28C8", + "10441": "uni28C9", + "10442": "uni28CA", + "10443": "uni28CB", + "10444": "uni28CC", + "10445": "uni28CD", + "10446": "uni28CE", + "10447": "uni28CF", + "10448": "uni28D0", + "10449": "uni28D1", + "10450": "uni28D2", + "10451": "uni28D3", + "10452": "uni28D4", + "10453": "uni28D5", + "10454": "uni28D6", + "10455": "uni28D7", + "10456": "uni28D8", + "10457": "uni28D9", + "10458": "uni28DA", + "10459": "uni28DB", + "10460": "uni28DC", + "10461": "uni28DD", + "10462": "uni28DE", + "10463": "uni28DF", + "10464": "uni28E0", + "10465": "uni28E1", + "10466": "uni28E2", + "10467": "uni28E3", + "10468": "uni28E4", + "10469": "uni28E5", + "10470": "uni28E6", + "10471": "uni28E7", + "10472": "uni28E8", + "10473": "uni28E9", + "10474": "uni28EA", + "10475": "uni28EB", + "10476": "uni28EC", + "10477": "uni28ED", + "10478": "uni28EE", + "10479": "uni28EF", + "10480": "uni28F0", + "10481": "uni28F1", + "10482": "uni28F2", + "10483": "uni28F3", + "10484": "uni28F4", + "10485": "uni28F5", + "10486": "uni28F6", + "10487": "uni28F7", + "10488": "uni28F8", + "10489": "uni28F9", + "10490": "uni28FA", + "10491": "uni28FB", + "10492": "uni28FC", + "10493": "uni28FD", + "10494": "uni28FE", + "10495": "uni28FF", + "10502": "uni2906", + "10503": "uni2907", + "10506": "uni290A", + "10507": "uni290B", + "10560": "uni2940", + "10561": "uni2941", + "10627": "uni2983", + "10628": "uni2984", + "10702": "uni29CE", + "10703": "uni29CF", + "10704": "uni29D0", + "10705": "uni29D1", + "10706": "uni29D2", + "10707": "uni29D3", + "10708": "uni29D4", + "10709": "uni29D5", + "10731": "uni29EB", + "10746": "uni29FA", + "10747": "uni29FB", + "10752": "uni2A00", + "10753": "uni2A01", + "10754": "uni2A02", + "10764": "uni2A0C", + "10765": "uni2A0D", + "10766": "uni2A0E", + "10767": "uni2A0F", + "10768": "uni2A10", + "10769": "uni2A11", + "10770": "uni2A12", + "10771": "uni2A13", + "10772": "uni2A14", + "10773": "uni2A15", + "10774": "uni2A16", + "10775": "uni2A17", + "10776": "uni2A18", + "10777": "uni2A19", + "10778": "uni2A1A", + "10779": "uni2A1B", + "10780": "uni2A1C", + "10799": "uni2A2F", + "10858": "uni2A6A", + "10859": "uni2A6B", + "10877": "uni2A7D", + "10878": "uni2A7E", + "10879": "uni2A7F", + "10880": "uni2A80", + "10881": "uni2A81", + "10882": "uni2A82", + "10883": "uni2A83", + "10884": "uni2A84", + "10885": "uni2A85", + "10886": "uni2A86", + "10887": "uni2A87", + "10888": "uni2A88", + "10889": "uni2A89", + "10890": "uni2A8A", + "10891": "uni2A8B", + "10892": "uni2A8C", + "10893": "uni2A8D", + "10894": "uni2A8E", + "10895": "uni2A8F", + "10896": "uni2A90", + "10897": "uni2A91", + "10898": "uni2A92", + "10899": "uni2A93", + "10900": "uni2A94", + "10901": "uni2A95", + "10902": "uni2A96", + "10903": "uni2A97", + "10904": "uni2A98", + "10905": "uni2A99", + "10906": "uni2A9A", + "10907": "uni2A9B", + "10908": "uni2A9C", + "10909": "uni2A9D", + "10910": "uni2A9E", + "10911": "uni2A9F", + "10912": "uni2AA0", + "10926": "uni2AAE", + "10927": "uni2AAF", + "10928": "uni2AB0", + "10929": "uni2AB1", + "10930": "uni2AB2", + "10931": "uni2AB3", + "10932": "uni2AB4", + "10933": "uni2AB5", + "10934": "uni2AB6", + "10935": "uni2AB7", + "10936": "uni2AB8", + "10937": "uni2AB9", + "10938": "uni2ABA", + "11001": "uni2AF9", + "11002": "uni2AFA", + "11008": "uni2B00", + "11009": "uni2B01", + "11010": "uni2B02", + "11011": "uni2B03", + "11012": "uni2B04", + "11013": "uni2B05", + "11014": "uni2B06", + "11015": "uni2B07", + "11016": "uni2B08", + "11017": "uni2B09", + "11018": "uni2B0A", + "11019": "uni2B0B", + "11020": "uni2B0C", + "11021": "uni2B0D", + "11022": "uni2B0E", + "11023": "uni2B0F", + "11024": "uni2B10", + "11025": "uni2B11", + "11026": "uni2B12", + "11027": "uni2B13", + "11028": "uni2B14", + "11029": "uni2B15", + "11030": "uni2B16", + "11031": "uni2B17", + "11032": "uni2B18", + "11033": "uni2B19", + "11034": "uni2B1A", + "11039": "uni2B1F", + "11040": "uni2B20", + "11041": "uni2B21", + "11042": "uni2B22", + "11043": "uni2B23", + "11044": "uni2B24", + "11091": "uni2B53", + "11092": "uni2B54", + "11360": "uni2C60", + "11361": "uni2C61", + "11362": "uni2C62", + "11363": "uni2C63", + "11364": "uni2C64", + "11365": "uni2C65", + "11366": "uni2C66", + "11367": "uni2C67", + "11368": "uni2C68", + "11369": "uni2C69", + "11370": "uni2C6A", + "11371": "uni2C6B", + "11372": "uni2C6C", + "11373": "uni2C6D", + "11374": "uni2C6E", + "11375": "uni2C6F", + "11376": "uni2C70", + "11377": "uni2C71", + "11378": "uni2C72", + "11379": "uni2C73", + "11380": "uni2C74", + "11381": "uni2C75", + "11382": "uni2C76", + "11383": "uni2C77", + "11385": "uni2C79", + "11386": "uni2C7A", + "11387": "uni2C7B", + "11388": "uni2C7C", + "11389": "uni2C7D", + "11390": "uni2C7E", + "11391": "uni2C7F", + "11520": "uni2D00", + "11521": "uni2D01", + "11522": "uni2D02", + "11523": "uni2D03", + "11524": "uni2D04", + "11525": "uni2D05", + "11526": "uni2D06", + "11527": "uni2D07", + "11528": "uni2D08", + "11529": "uni2D09", + "11530": "uni2D0A", + "11531": "uni2D0B", + "11532": "uni2D0C", + "11533": "uni2D0D", + "11534": "uni2D0E", + "11535": "uni2D0F", + "11536": "uni2D10", + "11537": "uni2D11", + "11538": "uni2D12", + "11539": "uni2D13", + "11540": "uni2D14", + "11541": "uni2D15", + "11542": "uni2D16", + "11543": "uni2D17", + "11544": "uni2D18", + "11545": "uni2D19", + "11546": "uni2D1A", + "11547": "uni2D1B", + "11548": "uni2D1C", + "11549": "uni2D1D", + "11550": "uni2D1E", + "11551": "uni2D1F", + "11552": "uni2D20", + "11553": "uni2D21", + "11554": "uni2D22", + "11555": "uni2D23", + "11556": "uni2D24", + "11557": "uni2D25", + "11568": "uni2D30", + "11569": "uni2D31", + "11570": "uni2D32", + "11571": "uni2D33", + "11572": "uni2D34", + "11573": "uni2D35", + "11574": "uni2D36", + "11575": "uni2D37", + "11576": "uni2D38", + "11577": "uni2D39", + "11578": "uni2D3A", + "11579": "uni2D3B", + "11580": "uni2D3C", + "11581": "uni2D3D", + "11582": "uni2D3E", + "11583": "uni2D3F", + "11584": "uni2D40", + "11585": "uni2D41", + "11586": "uni2D42", + "11587": "uni2D43", + "11588": "uni2D44", + "11589": "uni2D45", + "11590": "uni2D46", + "11591": "uni2D47", + "11592": "uni2D48", + "11593": "uni2D49", + "11594": "uni2D4A", + "11595": "uni2D4B", + "11596": "uni2D4C", + "11597": "uni2D4D", + "11598": "uni2D4E", + "11599": "uni2D4F", + "11600": "uni2D50", + "11601": "uni2D51", + "11602": "uni2D52", + "11603": "uni2D53", + "11604": "uni2D54", + "11605": "uni2D55", + "11606": "uni2D56", + "11607": "uni2D57", + "11608": "uni2D58", + "11609": "uni2D59", + "11610": "uni2D5A", + "11611": "uni2D5B", + "11612": "uni2D5C", + "11613": "uni2D5D", + "11614": "uni2D5E", + "11615": "uni2D5F", + "11616": "uni2D60", + "11617": "uni2D61", + "11618": "uni2D62", + "11619": "uni2D63", + "11620": "uni2D64", + "11621": "uni2D65", + "11631": "uni2D6F", + "11800": "uni2E18", + "11807": "uni2E1F", + "11810": "uni2E22", + "11811": "uni2E23", + "11812": "uni2E24", + "11813": "uni2E25", + "11822": "uni2E2E", + "19904": "uni4DC0", + "19905": "uni4DC1", + "19906": "uni4DC2", + "19907": "uni4DC3", + "19908": "uni4DC4", + "19909": "uni4DC5", + "19910": "uni4DC6", + "19911": "uni4DC7", + "19912": "uni4DC8", + "19913": "uni4DC9", + "19914": "uni4DCA", + "19915": "uni4DCB", + "19916": "uni4DCC", + "19917": "uni4DCD", + "19918": "uni4DCE", + "19919": "uni4DCF", + "19920": "uni4DD0", + "19921": "uni4DD1", + "19922": "uni4DD2", + "19923": "uni4DD3", + "19924": "uni4DD4", + "19925": "uni4DD5", + "19926": "uni4DD6", + "19927": "uni4DD7", + "19928": "uni4DD8", + "19929": "uni4DD9", + "19930": "uni4DDA", + "19931": "uni4DDB", + "19932": "uni4DDC", + "19933": "uni4DDD", + "19934": "uni4DDE", + "19935": "uni4DDF", + "19936": "uni4DE0", + "19937": "uni4DE1", + "19938": "uni4DE2", + "19939": "uni4DE3", + "19940": "uni4DE4", + "19941": "uni4DE5", + "19942": "uni4DE6", + "19943": "uni4DE7", + "19944": "uni4DE8", + "19945": "uni4DE9", + "19946": "uni4DEA", + "19947": "uni4DEB", + "19948": "uni4DEC", + "19949": "uni4DED", + "19950": "uni4DEE", + "19951": "uni4DEF", + "19952": "uni4DF0", + "19953": "uni4DF1", + "19954": "uni4DF2", + "19955": "uni4DF3", + "19956": "uni4DF4", + "19957": "uni4DF5", + "19958": "uni4DF6", + "19959": "uni4DF7", + "19960": "uni4DF8", + "19961": "uni4DF9", + "19962": "uni4DFA", + "19963": "uni4DFB", + "19964": "uni4DFC", + "19965": "uni4DFD", + "19966": "uni4DFE", + "19967": "uni4DFF", + "42192": "uniA4D0", + "42193": "uniA4D1", + "42194": "uniA4D2", + "42195": "uniA4D3", + "42196": "uniA4D4", + "42197": "uniA4D5", + "42198": "uniA4D6", + "42199": "uniA4D7", + "42200": "uniA4D8", + "42201": "uniA4D9", + "42202": "uniA4DA", + "42203": "uniA4DB", + "42204": "uniA4DC", + "42205": "uniA4DD", + "42206": "uniA4DE", + "42207": "uniA4DF", + "42208": "uniA4E0", + "42209": "uniA4E1", + "42210": "uniA4E2", + "42211": "uniA4E3", + "42212": "uniA4E4", + "42213": "uniA4E5", + "42214": "uniA4E6", + "42215": "uniA4E7", + "42216": "uniA4E8", + "42217": "uniA4E9", + "42218": "uniA4EA", + "42219": "uniA4EB", + "42220": "uniA4EC", + "42221": "uniA4ED", + "42222": "uniA4EE", + "42223": "uniA4EF", + "42224": "uniA4F0", + "42225": "uniA4F1", + "42226": "uniA4F2", + "42227": "uniA4F3", + "42228": "uniA4F4", + "42229": "uniA4F5", + "42230": "uniA4F6", + "42231": "uniA4F7", + "42232": "uniA4F8", + "42233": "uniA4F9", + "42234": "uniA4FA", + "42235": "uniA4FB", + "42236": "uniA4FC", + "42237": "uniA4FD", + "42238": "uniA4FE", + "42239": "uniA4FF", + "42564": "uniA644", + "42565": "uniA645", + "42566": "uniA646", + "42567": "uniA647", + "42572": "uniA64C", + "42573": "uniA64D", + "42576": "uniA650", + "42577": "uniA651", + "42580": "uniA654", + "42581": "uniA655", + "42582": "uniA656", + "42583": "uniA657", + "42594": "uniA662", + "42595": "uniA663", + "42596": "uniA664", + "42597": "uniA665", + "42598": "uniA666", + "42599": "uniA667", + "42600": "uniA668", + "42601": "uniA669", + "42602": "uniA66A", + "42603": "uniA66B", + "42604": "uniA66C", + "42605": "uniA66D", + "42606": "uniA66E", + "42634": "uniA68A", + "42635": "uniA68B", + "42636": "uniA68C", + "42637": "uniA68D", + "42644": "uniA694", + "42645": "uniA695", + "42648": "uniA698", + "42649": "uniA699", + "42760": "uniA708", + "42761": "uniA709", + "42762": "uniA70A", + "42763": "uniA70B", + "42764": "uniA70C", + "42765": "uniA70D", + "42766": "uniA70E", + "42767": "uniA70F", + "42768": "uniA710", + "42769": "uniA711", + "42770": "uniA712", + "42771": "uniA713", + "42772": "uniA714", + "42773": "uniA715", + "42774": "uniA716", + "42779": "uniA71B", + "42780": "uniA71C", + "42781": "uniA71D", + "42782": "uniA71E", + "42783": "uniA71F", + "42786": "uniA722", + "42787": "uniA723", + "42788": "uniA724", + "42789": "uniA725", + "42790": "uniA726", + "42791": "uniA727", + "42792": "uniA728", + "42793": "uniA729", + "42794": "uniA72A", + "42795": "uniA72B", + "42800": "uniA730", + "42801": "uniA731", + "42802": "uniA732", + "42803": "uniA733", + "42804": "uniA734", + "42805": "uniA735", + "42806": "uniA736", + "42807": "uniA737", + "42808": "uniA738", + "42809": "uniA739", + "42810": "uniA73A", + "42811": "uniA73B", + "42812": "uniA73C", + "42813": "uniA73D", + "42814": "uniA73E", + "42815": "uniA73F", + "42816": "uniA740", + "42817": "uniA741", + "42822": "uniA746", + "42823": "uniA747", + "42824": "uniA748", + "42825": "uniA749", + "42826": "uniA74A", + "42827": "uniA74B", + "42830": "uniA74E", + "42831": "uniA74F", + "42832": "uniA750", + "42833": "uniA751", + "42834": "uniA752", + "42835": "uniA753", + "42838": "uniA756", + "42839": "uniA757", + "42852": "uniA764", + "42853": "uniA765", + "42854": "uniA766", + "42855": "uniA767", + "42880": "uniA780", + "42881": "uniA781", + "42882": "uniA782", + "42883": "uniA783", + "42889": "uniA789", + "42890": "uniA78A", + "42891": "uniA78B", + "42892": "uniA78C", + "42893": "uniA78D", + "42894": "uniA78E", + "42896": "uniA790", + "42897": "uniA791", + "42912": "uniA7A0", + "42913": "uniA7A1", + "42914": "uniA7A2", + "42915": "uniA7A3", + "42916": "uniA7A4", + "42917": "uniA7A5", + "42918": "uniA7A6", + "42919": "uniA7A7", + "42920": "uniA7A8", + "42921": "uniA7A9", + "42922": "uniA7AA", + "43000": "uniA7F8", + "43001": "uniA7F9", + "43002": "uniA7FA", + "43003": "uniA7FB", + "43004": "uniA7FC", + "43005": "uniA7FD", + "43006": "uniA7FE", + "43007": "uniA7FF", + "61184": "uni02E5.5", + "61185": "uni02E6.5", + "61186": "uni02E7.5", + "61187": "uni02E8.5", + "61188": "uni02E9.5", + "61189": "uni02E5.4", + "61190": "uni02E6.4", + "61191": "uni02E7.4", + "61192": "uni02E8.4", + "61193": "uni02E9.4", + "61194": "uni02E5.3", + "61195": "uni02E6.3", + "61196": "uni02E7.3", + "61197": "uni02E8.3", + "61198": "uni02E9.3", + "61199": "uni02E5.2", + "61200": "uni02E6.2", + "61201": "uni02E7.2", + "61202": "uni02E8.2", + "61203": "uni02E9.2", + "61204": "uni02E5.1", + "61205": "uni02E6.1", + "61206": "uni02E7.1", + "61207": "uni02E8.1", + "61208": "uni02E9.1", + "61209": "stem", + "61440": "uniF000", + "61441": "uniF001", + "61442": "uniF002", + "61443": "uniF003", + "62464": "uniF400", + "62465": "uniF401", + "62466": "uniF402", + "62467": "uniF403", + "62468": "uniF404", + "62469": "uniF405", + "62470": "uniF406", + "62471": "uniF407", + "62472": "uniF408", + "62473": "uniF409", + "62474": "uniF40A", + "62475": "uniF40B", + "62476": "uniF40C", + "62477": "uniF40D", + "62478": "uniF40E", + "62479": "uniF40F", + "62480": "uniF410", + "62481": "uniF411", + "62482": "uniF412", + "62483": "uniF413", + "62484": "uniF414", + "62485": "uniF415", + "62486": "uniF416", + "62487": "uniF417", + "62488": "uniF418", + "62489": "uniF419", + "62490": "uniF41A", + "62491": "uniF41B", + "62492": "uniF41C", + "62493": "uniF41D", + "62494": "uniF41E", + "62495": "uniF41F", + "62496": "uniF420", + "62497": "uniF421", + "62498": "uniF422", + "62499": "uniF423", + "62500": "uniF424", + "62501": "uniF425", + "62502": "uniF426", + "62504": "uniF428", + "62505": "uniF429", + "62506": "uniF42A", + "62507": "uniF42B", + "62508": "uniF42C", + "62509": "uniF42D", + "62510": "uniF42E", + "62511": "uniF42F", + "62512": "uniF430", + "62513": "uniF431", + "62514": "uniF432", + "62515": "uniF433", + "62516": "uniF434", + "62517": "uniF435", + "62518": "uniF436", + "62519": "uniF437", + "62520": "uniF438", + "62521": "uniF439", + "62522": "uniF43A", + "62523": "uniF43B", + "62524": "uniF43C", + "62525": "uniF43D", + "62526": "uniF43E", + "62527": "uniF43F", + "62528": "uniF440", + "62529": "uniF441", + "63173": "uniF6C5", + "64256": "uniFB00", + "64257": "fi", + "64258": "fl", + "64259": "uniFB03", + "64260": "uniFB04", + "64261": "uniFB05", + "64262": "uniFB06", + "64275": "uniFB13", + "64276": "uniFB14", + "64277": "uniFB15", + "64278": "uniFB16", + "64279": "uniFB17", + "64285": "uniFB1D", + "64286": "uniFB1E", + "64287": "uniFB1F", + "64288": "uniFB20", + "64289": "uniFB21", + "64290": "uniFB22", + "64291": "uniFB23", + "64292": "uniFB24", + "64293": "uniFB25", + "64294": "uniFB26", + "64295": "uniFB27", + "64296": "uniFB28", + "64297": "uniFB29", + "64298": "uniFB2A", + "64299": "uniFB2B", + "64300": "uniFB2C", + "64301": "uniFB2D", + "64302": "uniFB2E", + "64303": "uniFB2F", + "64304": "uniFB30", + "64305": "uniFB31", + "64306": "uniFB32", + "64307": "uniFB33", + "64308": "uniFB34", + "64309": "uniFB35", + "64310": "uniFB36", + "64312": "uniFB38", + "64313": "uniFB39", + "64314": "uniFB3A", + "64315": "uniFB3B", + "64316": "uniFB3C", + "64318": "uniFB3E", + "64320": "uniFB40", + "64321": "uniFB41", + "64323": "uniFB43", + "64324": "uniFB44", + "64326": "uniFB46", + "64327": "uniFB47", + "64328": "uniFB48", + "64329": "uniFB49", + "64330": "uniFB4A", + "64331": "uniFB4B", + "64332": "uniFB4C", + "64333": "uniFB4D", + "64334": "uniFB4E", + "64335": "uniFB4F", + "64338": "uniFB52", + "64339": "uniFB53", + "64340": "uniFB54", + "64341": "uniFB55", + "64342": "uniFB56", + "64343": "uniFB57", + "64344": "uniFB58", + "64345": "uniFB59", + "64346": "uniFB5A", + "64347": "uniFB5B", + "64348": "uniFB5C", + "64349": "uniFB5D", + "64350": "uniFB5E", + "64351": "uniFB5F", + "64352": "uniFB60", + "64353": "uniFB61", + "64354": "uniFB62", + "64355": "uniFB63", + "64356": "uniFB64", + "64357": "uniFB65", + "64358": "uniFB66", + "64359": "uniFB67", + "64360": "uniFB68", + "64361": "uniFB69", + "64362": "uniFB6A", + "64363": "uniFB6B", + "64364": "uniFB6C", + "64365": "uniFB6D", + "64366": "uniFB6E", + "64367": "uniFB6F", + "64368": "uniFB70", + "64369": "uniFB71", + "64370": "uniFB72", + "64371": "uniFB73", + "64372": "uniFB74", + "64373": "uniFB75", + "64374": "uniFB76", + "64375": "uniFB77", + "64376": "uniFB78", + "64377": "uniFB79", + "64378": "uniFB7A", + "64379": "uniFB7B", + "64380": "uniFB7C", + "64381": "uniFB7D", + "64382": "uniFB7E", + "64383": "uniFB7F", + "64384": "uniFB80", + "64385": "uniFB81", + "64386": "uniFB82", + "64387": "uniFB83", + "64388": "uniFB84", + "64389": "uniFB85", + "64390": "uniFB86", + "64391": "uniFB87", + "64392": "uniFB88", + "64393": "uniFB89", + "64394": "uniFB8A", + "64395": "uniFB8B", + "64396": "uniFB8C", + "64397": "uniFB8D", + "64398": "uniFB8E", + "64399": "uniFB8F", + "64400": "uniFB90", + "64401": "uniFB91", + "64402": "uniFB92", + "64403": "uniFB93", + "64404": "uniFB94", + "64405": "uniFB95", + "64406": "uniFB96", + "64407": "uniFB97", + "64408": "uniFB98", + "64409": "uniFB99", + "64410": "uniFB9A", + "64411": "uniFB9B", + "64412": "uniFB9C", + "64413": "uniFB9D", + "64414": "uniFB9E", + "64415": "uniFB9F", + "64416": "uniFBA0", + "64417": "uniFBA1", + "64418": "uniFBA2", + "64419": "uniFBA3", + "64426": "uniFBAA", + "64427": "uniFBAB", + "64428": "uniFBAC", + "64429": "uniFBAD", + "64467": "uniFBD3", + "64468": "uniFBD4", + "64469": "uniFBD5", + "64470": "uniFBD6", + "64471": "uniFBD7", + "64472": "uniFBD8", + "64473": "uniFBD9", + "64474": "uniFBDA", + "64475": "uniFBDB", + "64476": "uniFBDC", + "64478": "uniFBDE", + "64479": "uniFBDF", + "64484": "uniFBE4", + "64485": "uniFBE5", + "64486": "uniFBE6", + "64487": "uniFBE7", + "64488": "uniFBE8", + "64489": "uniFBE9", + "64508": "uniFBFC", + "64509": "uniFBFD", + "64510": "uniFBFE", + "64511": "uniFBFF", + "65024": "uniFE00", + "65025": "uniFE01", + "65026": "uniFE02", + "65027": "uniFE03", + "65028": "uniFE04", + "65029": "uniFE05", + "65030": "uniFE06", + "65031": "uniFE07", + "65032": "uniFE08", + "65033": "uniFE09", + "65034": "uniFE0A", + "65035": "uniFE0B", + "65036": "uniFE0C", + "65037": "uniFE0D", + "65038": "uniFE0E", + "65039": "uniFE0F", + "65056": "uniFE20", + "65057": "uniFE21", + "65058": "uniFE22", + "65059": "uniFE23", + "65136": "uniFE70", + "65137": "uniFE71", + "65138": "uniFE72", + "65139": "uniFE73", + "65140": "uniFE74", + "65142": "uniFE76", + "65143": "uniFE77", + "65144": "uniFE78", + "65145": "uniFE79", + "65146": "uniFE7A", + "65147": "uniFE7B", + "65148": "uniFE7C", + "65149": "uniFE7D", + "65150": "uniFE7E", + "65151": "uniFE7F", + "65152": "uniFE80", + "65153": "uniFE81", + "65154": "uniFE82", + "65155": "uniFE83", + "65156": "uniFE84", + "65157": "uniFE85", + "65158": "uniFE86", + "65159": "uniFE87", + "65160": "uniFE88", + "65161": "uniFE89", + "65162": "uniFE8A", + "65163": "uniFE8B", + "65164": "uniFE8C", + "65165": "uniFE8D", + "65166": "uniFE8E", + "65167": "uniFE8F", + "65168": "uniFE90", + "65169": "uniFE91", + "65170": "uniFE92", + "65171": "uniFE93", + "65172": "uniFE94", + "65173": "uniFE95", + "65174": "uniFE96", + "65175": "uniFE97", + "65176": "uniFE98", + "65177": "uniFE99", + "65178": "uniFE9A", + "65179": "uniFE9B", + "65180": "uniFE9C", + "65181": "uniFE9D", + "65182": "uniFE9E", + "65183": "uniFE9F", + "65184": "uniFEA0", + "65185": "uniFEA1", + "65186": "uniFEA2", + "65187": "uniFEA3", + "65188": "uniFEA4", + "65189": "uniFEA5", + "65190": "uniFEA6", + "65191": "uniFEA7", + "65192": "uniFEA8", + "65193": "uniFEA9", + "65194": "uniFEAA", + "65195": "uniFEAB", + "65196": "uniFEAC", + "65197": "uniFEAD", + "65198": "uniFEAE", + "65199": "uniFEAF", + "65200": "uniFEB0", + "65201": "uniFEB1", + "65202": "uniFEB2", + "65203": "uniFEB3", + "65204": "uniFEB4", + "65205": "uniFEB5", + "65206": "uniFEB6", + "65207": "uniFEB7", + "65208": "uniFEB8", + "65209": "uniFEB9", + "65210": "uniFEBA", + "65211": "uniFEBB", + "65212": "uniFEBC", + "65213": "uniFEBD", + "65214": "uniFEBE", + "65215": "uniFEBF", + "65216": "uniFEC0", + "65217": "uniFEC1", + "65218": "uniFEC2", + "65219": "uniFEC3", + "65220": "uniFEC4", + "65221": "uniFEC5", + "65222": "uniFEC6", + "65223": "uniFEC7", + "65224": "uniFEC8", + "65225": "uniFEC9", + "65226": "uniFECA", + "65227": "uniFECB", + "65228": "uniFECC", + "65229": "uniFECD", + "65230": "uniFECE", + "65231": "uniFECF", + "65232": "uniFED0", + "65233": "uniFED1", + "65234": "uniFED2", + "65235": "uniFED3", + "65236": "uniFED4", + "65237": "uniFED5", + "65238": "uniFED6", + "65239": "uniFED7", + "65240": "uniFED8", + "65241": "uniFED9", + "65242": "uniFEDA", + "65243": "uniFEDB", + "65244": "uniFEDC", + "65245": "uniFEDD", + "65246": "uniFEDE", + "65247": "uniFEDF", + "65248": "uniFEE0", + "65249": "uniFEE1", + "65250": "uniFEE2", + "65251": "uniFEE3", + "65252": "uniFEE4", + "65253": "uniFEE5", + "65254": "uniFEE6", + "65255": "uniFEE7", + "65256": "uniFEE8", + "65257": "uniFEE9", + "65258": "uniFEEA", + "65259": "uniFEEB", + "65260": "uniFEEC", + "65261": "uniFEED", + "65262": "uniFEEE", + "65263": "uniFEEF", + "65264": "uniFEF0", + "65265": "uniFEF1", + "65266": "uniFEF2", + "65267": "uniFEF3", + "65268": "uniFEF4", + "65269": "uniFEF5", + "65270": "uniFEF6", + "65271": "uniFEF7", + "65272": "uniFEF8", + "65273": "uniFEF9", + "65274": "uniFEFA", + "65275": "uniFEFB", + "65276": "uniFEFC", + "65279": "uniFEFF", + "65529": "uniFFF9", + "65530": "uniFFFA", + "65531": "uniFFFB", + "65532": "uniFFFC", + "65533": "uniFFFD" + }, + "isUnicode": true, + "EncodingScheme": "FontSpecific", + "FontName": "DejaVu Sans", + "FullName": "DejaVu Sans", + "Version": "Version 2.37", + "PostScriptName": "DejaVuSans", + "Weight": "Medium", + "ItalicAngle": "0", + "IsFixedPitch": "false", + "UnderlineThickness": "44", + "UnderlinePosition": "-63", + "FontHeightOffset": "0", + "Ascender": "928", + "Descender": "-236", + "FontBBox": [ + "-1021", + "-463", + "1793", + "1232" + ], + "StartCharMetrics": "6253", + "C": { + "32": 318, + "33": 401, + "34": 460, + "35": 838, + "36": 636, + "37": 950, + "38": 780, + "39": 275, + "40": 390, + "41": 390, + "42": 500, + "43": 838, + "44": 318, + "45": 361, + "46": 318, + "47": 337, + "48": 636, + "49": 636, + "50": 636, + "51": 636, + "52": 636, + "53": 636, + "54": 636, + "55": 636, + "56": 636, + "57": 636, + "58": 337, + "59": 337, + "60": 838, + "61": 838, + "62": 838, + "63": 531, + "64": 1000, + "65": 684, + "66": 686, + "67": 698, + "68": 770, + "69": 632, + "70": 575, + "71": 775, + "72": 752, + "73": 295, + "74": 295, + "75": 656, + "76": 557, + "77": 863, + "78": 748, + "79": 787, + "80": 603, + "81": 787, + "82": 695, + "83": 635, + "84": 611, + "85": 732, + "86": 684, + "87": 989, + "88": 685, + "89": 611, + "90": 685, + "91": 390, + "92": 337, + "93": 390, + "94": 838, + "95": 500, + "96": 500, + "97": 613, + "98": 635, + "99": 550, + "100": 635, + "101": 615, + "102": 352, + "103": 635, + "104": 634, + "105": 278, + "106": 278, + "107": 579, + "108": 278, + "109": 974, + "110": 634, + "111": 612, + "112": 635, + "113": 635, + "114": 411, + "115": 521, + "116": 392, + "117": 634, + "118": 592, + "119": 818, + "120": 592, + "121": 592, + "122": 525, + "123": 636, + "124": 337, + "125": 636, + "126": 838, + "160": 318, + "161": 401, + "162": 636, + "163": 636, + "164": 636, + "165": 636, + "166": 337, + "167": 500, + "168": 500, + "169": 1000, + "170": 471, + "171": 612, + "172": 838, + "173": 361, + "174": 1000, + "175": 500, + "176": 500, + "177": 838, + "178": 401, + "179": 401, + "180": 500, + "181": 636, + "182": 636, + "183": 318, + "184": 500, + "185": 401, + "186": 471, + "187": 612, + "188": 969, + "189": 969, + "190": 969, + "191": 531, + "192": 684, + "193": 684, + "194": 684, + "195": 684, + "196": 684, + "197": 684, + "198": 974, + "199": 698, + "200": 632, + "201": 632, + "202": 632, + "203": 632, + "204": 295, + "205": 295, + "206": 295, + "207": 295, + "208": 775, + "209": 748, + "210": 787, + "211": 787, + "212": 787, + "213": 787, + "214": 787, + "215": 838, + "216": 787, + "217": 732, + "218": 732, + "219": 732, + "220": 732, + "221": 611, + "222": 605, + "223": 630, + "224": 613, + "225": 613, + "226": 613, + "227": 613, + "228": 613, + "229": 613, + "230": 982, + "231": 550, + "232": 615, + "233": 615, + "234": 615, + "235": 615, + "236": 278, + "237": 278, + "238": 278, + "239": 278, + "240": 612, + "241": 634, + "242": 612, + "243": 612, + "244": 612, + "245": 612, + "246": 612, + "247": 838, + "248": 612, + "249": 634, + "250": 634, + "251": 634, + "252": 634, + "253": 592, + "254": 635, + "255": 592, + "256": 684, + "257": 613, + "258": 684, + "259": 613, + "260": 684, + "261": 613, + "262": 698, + "263": 550, + "264": 698, + "265": 550, + "266": 698, + "267": 550, + "268": 698, + "269": 550, + "270": 770, + "271": 635, + "272": 775, + "273": 635, + "274": 632, + "275": 615, + "276": 632, + "277": 615, + "278": 632, + "279": 615, + "280": 632, + "281": 615, + "282": 632, + "283": 615, + "284": 775, + "285": 635, + "286": 775, + "287": 635, + "288": 775, + "289": 635, + "290": 775, + "291": 635, + "292": 752, + "293": 634, + "294": 916, + "295": 695, + "296": 295, + "297": 278, + "298": 295, + "299": 278, + "300": 295, + "301": 278, + "302": 295, + "303": 278, + "304": 295, + "305": 278, + "306": 590, + "307": 556, + "308": 295, + "309": 278, + "310": 656, + "311": 579, + "312": 579, + "313": 557, + "314": 278, + "315": 557, + "316": 278, + "317": 557, + "318": 375, + "319": 557, + "320": 342, + "321": 562, + "322": 284, + "323": 748, + "324": 634, + "325": 748, + "326": 634, + "327": 748, + "328": 634, + "329": 813, + "330": 748, + "331": 634, + "332": 787, + "333": 612, + "334": 787, + "335": 612, + "336": 787, + "337": 612, + "338": 1070, + "339": 1023, + "340": 695, + "341": 411, + "342": 695, + "343": 411, + "344": 695, + "345": 411, + "346": 635, + "347": 521, + "348": 635, + "349": 521, + "350": 635, + "351": 521, + "352": 635, + "353": 521, + "354": 611, + "355": 392, + "356": 611, + "357": 392, + "358": 611, + "359": 392, + "360": 732, + "361": 634, + "362": 732, + "363": 634, + "364": 732, + "365": 634, + "366": 732, + "367": 634, + "368": 732, + "369": 634, + "370": 732, + "371": 634, + "372": 989, + "373": 818, + "374": 611, + "375": 592, + "376": 611, + "377": 685, + "378": 525, + "379": 685, + "380": 525, + "381": 685, + "382": 525, + "383": 352, + "384": 635, + "385": 735, + "386": 686, + "387": 635, + "388": 686, + "389": 635, + "390": 703, + "391": 698, + "392": 550, + "393": 775, + "394": 819, + "395": 686, + "396": 635, + "397": 612, + "398": 632, + "399": 787, + "400": 614, + "401": 575, + "402": 352, + "403": 775, + "404": 687, + "405": 984, + "406": 354, + "407": 295, + "408": 746, + "409": 579, + "410": 278, + "411": 592, + "412": 974, + "413": 748, + "414": 634, + "415": 787, + "416": 913, + "417": 612, + "418": 949, + "419": 759, + "420": 652, + "421": 635, + "422": 695, + "423": 635, + "424": 521, + "425": 632, + "426": 336, + "427": 392, + "428": 611, + "429": 392, + "430": 611, + "431": 858, + "432": 634, + "433": 764, + "434": 721, + "435": 744, + "436": 730, + "437": 685, + "438": 525, + "439": 666, + "440": 666, + "441": 578, + "442": 525, + "443": 636, + "444": 666, + "445": 578, + "446": 510, + "447": 635, + "448": 295, + "449": 492, + "450": 459, + "451": 295, + "452": 1422, + "453": 1299, + "454": 1154, + "455": 835, + "456": 787, + "457": 457, + "458": 931, + "459": 924, + "460": 797, + "461": 684, + "462": 613, + "463": 295, + "464": 278, + "465": 787, + "466": 612, + "467": 732, + "468": 634, + "469": 732, + "470": 634, + "471": 732, + "472": 634, + "473": 732, + "474": 634, + "475": 732, + "476": 634, + "477": 615, + "478": 684, + "479": 613, + "480": 684, + "481": 613, + "482": 974, + "483": 982, + "484": 775, + "485": 635, + "486": 775, + "487": 635, + "488": 656, + "489": 579, + "490": 787, + "491": 612, + "492": 787, + "493": 612, + "494": 666, + "495": 578, + "496": 278, + "497": 1422, + "498": 1299, + "499": 1154, + "500": 775, + "501": 635, + "502": 1113, + "503": 682, + "504": 748, + "505": 634, + "506": 684, + "507": 613, + "508": 974, + "509": 982, + "510": 787, + "511": 612, + "512": 684, + "513": 613, + "514": 684, + "515": 613, + "516": 632, + "517": 615, + "518": 632, + "519": 615, + "520": 295, + "521": 278, + "522": 295, + "523": 278, + "524": 787, + "525": 612, + "526": 787, + "527": 612, + "528": 695, + "529": 411, + "530": 695, + "531": 411, + "532": 732, + "533": 634, + "534": 732, + "535": 634, + "536": 635, + "537": 521, + "538": 611, + "539": 392, + "540": 627, + "541": 521, + "542": 752, + "543": 634, + "544": 735, + "545": 838, + "546": 698, + "547": 610, + "548": 685, + "549": 525, + "550": 684, + "551": 613, + "552": 632, + "553": 615, + "554": 787, + "555": 612, + "556": 787, + "557": 612, + "558": 787, + "559": 612, + "560": 787, + "561": 612, + "562": 611, + "563": 592, + "564": 475, + "565": 843, + "566": 477, + "567": 278, + "568": 998, + "569": 998, + "570": 684, + "571": 698, + "572": 550, + "573": 557, + "574": 611, + "575": 521, + "576": 525, + "577": 603, + "578": 479, + "579": 686, + "580": 732, + "581": 684, + "582": 632, + "583": 615, + "584": 295, + "585": 278, + "586": 781, + "587": 635, + "588": 695, + "589": 411, + "590": 611, + "591": 592, + "592": 600, + "593": 635, + "594": 635, + "595": 635, + "596": 549, + "597": 550, + "598": 635, + "599": 696, + "600": 615, + "601": 615, + "602": 819, + "603": 541, + "604": 532, + "605": 775, + "606": 664, + "607": 278, + "608": 696, + "609": 635, + "610": 629, + "611": 596, + "612": 596, + "613": 634, + "614": 634, + "615": 634, + "616": 278, + "617": 338, + "618": 372, + "619": 396, + "620": 487, + "621": 278, + "622": 706, + "623": 974, + "624": 974, + "625": 974, + "626": 646, + "627": 642, + "628": 634, + "629": 612, + "630": 858, + "631": 728, + "632": 660, + "633": 414, + "634": 414, + "635": 414, + "636": 411, + "637": 411, + "638": 530, + "639": 530, + "640": 604, + "641": 604, + "642": 521, + "643": 336, + "644": 336, + "645": 461, + "646": 336, + "647": 392, + "648": 392, + "649": 634, + "650": 618, + "651": 598, + "652": 592, + "653": 818, + "654": 592, + "655": 611, + "656": 525, + "657": 525, + "658": 578, + "659": 578, + "660": 510, + "661": 510, + "662": 510, + "663": 510, + "664": 787, + "665": 580, + "666": 664, + "667": 708, + "668": 654, + "669": 292, + "670": 667, + "671": 507, + "672": 727, + "673": 510, + "674": 510, + "675": 1014, + "676": 1058, + "677": 1013, + "678": 830, + "679": 610, + "680": 778, + "681": 848, + "682": 706, + "683": 654, + "684": 515, + "685": 515, + "686": 661, + "687": 664, + "688": 404, + "689": 399, + "690": 175, + "691": 259, + "692": 295, + "693": 296, + "694": 379, + "695": 515, + "696": 373, + "697": 278, + "698": 460, + "699": 318, + "700": 318, + "701": 318, + "702": 307, + "703": 307, + "704": 370, + "705": 370, + "706": 500, + "707": 500, + "708": 500, + "709": 500, + "710": 500, + "711": 500, + "712": 275, + "713": 500, + "714": 500, + "715": 500, + "716": 275, + "717": 500, + "718": 500, + "719": 500, + "720": 337, + "721": 337, + "722": 307, + "723": 307, + "724": 500, + "725": 500, + "726": 390, + "727": 317, + "728": 500, + "729": 500, + "730": 500, + "731": 500, + "732": 500, + "733": 500, + "734": 315, + "735": 500, + "736": 426, + "737": 166, + "738": 373, + "739": 444, + "740": 370, + "741": 493, + "742": 493, + "743": 493, + "744": 493, + "745": 493, + "748": 500, + "749": 500, + "750": 518, + "755": 500, + "759": 500, + "768": 0, + "769": 0, + "770": 0, + "771": 0, + "772": 0, + "773": 0, + "774": 0, + "775": 0, + "776": 0, + "777": 0, + "778": 0, + "779": 0, + "780": 0, + "781": 0, + "782": 0, + "783": 0, + "784": 0, + "785": 0, + "786": 0, + "787": 0, + "788": 0, + "789": 0, + "790": 0, + "791": 0, + "792": 0, + "793": 0, + "794": 0, + "795": 0, + "796": 0, + "797": 0, + "798": 0, + "799": 0, + "800": 0, + "801": 0, + "802": 0, + "803": 0, + "804": 0, + "805": 0, + "806": 0, + "807": 0, + "808": 0, + "809": 0, + "810": 0, + "811": 0, + "812": 0, + "813": 0, + "814": 0, + "815": 0, + "816": 0, + "817": 0, + "818": 0, + "819": 0, + "820": 0, + "821": 0, + "822": 0, + "823": 0, + "824": 0, + "825": 0, + "826": 0, + "827": 0, + "828": 0, + "829": 0, + "830": 0, + "831": 0, + "832": 0, + "833": 0, + "834": 0, + "835": 0, + "836": 0, + "837": 0, + "838": 0, + "839": 0, + "840": 0, + "841": 0, + "842": 0, + "843": 0, + "844": 0, + "845": 0, + "846": 0, + "847": 0, + "849": 0, + "850": 0, + "851": 0, + "855": 0, + "856": 0, + "858": 0, + "860": 0, + "861": 0, + "862": 0, + "863": 0, + "864": 0, + "865": 0, + "866": 0, + "880": 654, + "881": 568, + "882": 862, + "883": 647, + "884": 278, + "885": 278, + "886": 748, + "887": 650, + "890": 500, + "891": 549, + "892": 550, + "893": 549, + "894": 337, + "895": 295, + "900": 500, + "901": 500, + "902": 692, + "903": 318, + "904": 746, + "905": 871, + "906": 408, + "908": 813, + "910": 825, + "911": 826, + "912": 338, + "913": 684, + "914": 686, + "915": 557, + "916": 684, + "917": 632, + "918": 685, + "919": 752, + "920": 787, + "921": 295, + "922": 656, + "923": 684, + "924": 863, + "925": 748, + "926": 632, + "927": 787, + "928": 752, + "929": 603, + "931": 632, + "932": 611, + "933": 611, + "934": 787, + "935": 685, + "936": 787, + "937": 764, + "938": 295, + "939": 611, + "940": 659, + "941": 541, + "942": 634, + "943": 338, + "944": 579, + "945": 659, + "946": 638, + "947": 592, + "948": 612, + "949": 541, + "950": 544, + "951": 634, + "952": 612, + "953": 338, + "954": 589, + "955": 592, + "956": 636, + "957": 559, + "958": 558, + "959": 612, + "960": 602, + "961": 635, + "962": 587, + "963": 634, + "964": 602, + "965": 579, + "966": 660, + "967": 578, + "968": 660, + "969": 837, + "970": 338, + "971": 579, + "972": 612, + "973": 579, + "974": 837, + "975": 656, + "976": 614, + "977": 619, + "978": 699, + "979": 842, + "980": 699, + "981": 660, + "982": 837, + "983": 664, + "984": 787, + "985": 612, + "986": 648, + "987": 587, + "988": 575, + "989": 458, + "990": 660, + "991": 660, + "992": 865, + "993": 627, + "994": 934, + "995": 837, + "996": 758, + "997": 659, + "998": 792, + "999": 615, + "1000": 687, + "1001": 607, + "1002": 768, + "1003": 625, + "1004": 699, + "1005": 612, + "1006": 611, + "1007": 536, + "1008": 664, + "1009": 635, + "1010": 550, + "1011": 278, + "1012": 787, + "1013": 615, + "1014": 615, + "1015": 605, + "1016": 635, + "1017": 698, + "1018": 863, + "1019": 651, + "1020": 635, + "1021": 703, + "1022": 698, + "1023": 703, + "1024": 632, + "1025": 632, + "1026": 786, + "1027": 610, + "1028": 698, + "1029": 635, + "1030": 295, + "1031": 295, + "1032": 295, + "1033": 1094, + "1034": 1045, + "1035": 786, + "1036": 710, + "1037": 748, + "1038": 609, + "1039": 752, + "1040": 684, + "1041": 686, + "1042": 686, + "1043": 610, + "1044": 781, + "1045": 632, + "1046": 1077, + "1047": 641, + "1048": 748, + "1049": 748, + "1050": 710, + "1051": 752, + "1052": 863, + "1053": 752, + "1054": 787, + "1055": 752, + "1056": 603, + "1057": 698, + "1058": 611, + "1059": 609, + "1060": 861, + "1061": 685, + "1062": 776, + "1063": 686, + "1064": 1069, + "1065": 1094, + "1066": 833, + "1067": 882, + "1068": 686, + "1069": 698, + "1070": 1080, + "1071": 695, + "1072": 613, + "1073": 617, + "1074": 589, + "1075": 525, + "1076": 691, + "1077": 615, + "1078": 901, + "1079": 532, + "1080": 650, + "1081": 650, + "1082": 604, + "1083": 639, + "1084": 754, + "1085": 654, + "1086": 612, + "1087": 654, + "1088": 635, + "1089": 550, + "1090": 583, + "1091": 592, + "1092": 855, + "1093": 592, + "1094": 681, + "1095": 591, + "1096": 915, + "1097": 942, + "1098": 707, + "1099": 790, + "1100": 589, + "1101": 549, + "1102": 842, + "1103": 602, + "1104": 615, + "1105": 615, + "1106": 625, + "1107": 525, + "1108": 549, + "1109": 521, + "1110": 278, + "1111": 278, + "1112": 278, + "1113": 902, + "1114": 898, + "1115": 652, + "1116": 604, + "1117": 650, + "1118": 592, + "1119": 654, + "1120": 934, + "1121": 837, + "1122": 771, + "1123": 672, + "1124": 942, + "1125": 749, + "1126": 879, + "1127": 783, + "1128": 1160, + "1129": 1001, + "1130": 787, + "1131": 612, + "1132": 1027, + "1133": 824, + "1134": 636, + "1135": 541, + "1136": 856, + "1137": 876, + "1138": 787, + "1139": 612, + "1140": 781, + "1141": 665, + "1142": 781, + "1143": 665, + "1144": 992, + "1145": 904, + "1146": 953, + "1147": 758, + "1148": 1180, + "1149": 1028, + "1150": 934, + "1151": 837, + "1152": 698, + "1153": 550, + "1154": 502, + "1155": 0, + "1156": 0, + "1157": 0, + "1158": 0, + "1159": 0, + "1160": 418, + "1161": 418, + "1162": 772, + "1163": 677, + "1164": 686, + "1165": 589, + "1166": 603, + "1167": 635, + "1168": 610, + "1169": 525, + "1170": 675, + "1171": 590, + "1172": 624, + "1173": 530, + "1174": 1077, + "1175": 901, + "1176": 641, + "1177": 532, + "1178": 710, + "1179": 604, + "1180": 710, + "1181": 604, + "1182": 710, + "1183": 604, + "1184": 856, + "1185": 832, + "1186": 752, + "1187": 661, + "1188": 1014, + "1189": 877, + "1190": 1081, + "1191": 916, + "1192": 878, + "1193": 693, + "1194": 698, + "1195": 550, + "1196": 611, + "1197": 583, + "1198": 611, + "1199": 592, + "1200": 611, + "1201": 592, + "1202": 685, + "1203": 592, + "1204": 934, + "1205": 807, + "1206": 686, + "1207": 591, + "1208": 686, + "1209": 591, + "1210": 686, + "1211": 634, + "1212": 941, + "1213": 728, + "1214": 941, + "1215": 728, + "1216": 295, + "1217": 1077, + "1218": 901, + "1219": 656, + "1220": 604, + "1221": 776, + "1222": 670, + "1223": 752, + "1224": 661, + "1225": 776, + "1226": 681, + "1227": 686, + "1228": 591, + "1229": 888, + "1230": 774, + "1231": 278, + "1232": 684, + "1233": 613, + "1234": 684, + "1235": 613, + "1236": 974, + "1237": 982, + "1238": 632, + "1239": 615, + "1240": 787, + "1241": 615, + "1242": 787, + "1243": 615, + "1244": 1077, + "1245": 901, + "1246": 641, + "1247": 532, + "1248": 666, + "1249": 578, + "1250": 748, + "1251": 650, + "1252": 748, + "1253": 650, + "1254": 787, + "1255": 612, + "1256": 787, + "1257": 612, + "1258": 787, + "1259": 612, + "1260": 698, + "1261": 549, + "1262": 609, + "1263": 592, + "1264": 609, + "1265": 592, + "1266": 609, + "1267": 592, + "1268": 686, + "1269": 591, + "1270": 610, + "1271": 525, + "1272": 882, + "1273": 790, + "1274": 675, + "1275": 590, + "1276": 685, + "1277": 592, + "1278": 685, + "1279": 592, + "1280": 686, + "1281": 589, + "1282": 1006, + "1283": 897, + "1284": 975, + "1285": 869, + "1286": 679, + "1287": 588, + "1288": 1072, + "1289": 957, + "1290": 1113, + "1291": 967, + "1292": 775, + "1293": 660, + "1294": 773, + "1295": 711, + "1296": 614, + "1297": 541, + "1298": 752, + "1299": 639, + "1300": 1169, + "1301": 994, + "1302": 894, + "1303": 864, + "1304": 1032, + "1305": 986, + "1306": 787, + "1307": 635, + "1308": 989, + "1309": 818, + "1310": 710, + "1311": 604, + "1312": 1081, + "1313": 905, + "1314": 1081, + "1315": 912, + "1316": 793, + "1317": 683, + "1329": 766, + "1330": 732, + "1331": 753, + "1332": 753, + "1333": 732, + "1334": 772, + "1335": 640, + "1336": 732, + "1337": 859, + "1338": 753, + "1339": 691, + "1340": 533, + "1341": 922, + "1342": 863, + "1343": 732, + "1344": 716, + "1345": 766, + "1346": 753, + "1347": 767, + "1348": 792, + "1349": 728, + "1350": 729, + "1351": 757, + "1352": 732, + "1353": 713, + "1354": 800, + "1355": 768, + "1356": 792, + "1357": 732, + "1358": 753, + "1359": 705, + "1360": 694, + "1361": 744, + "1362": 538, + "1363": 811, + "1364": 757, + "1365": 787, + "1366": 790, + "1369": 307, + "1370": 318, + "1371": 234, + "1372": 361, + "1373": 238, + "1374": 405, + "1375": 500, + "1377": 974, + "1378": 634, + "1379": 658, + "1380": 663, + "1381": 634, + "1382": 635, + "1383": 515, + "1384": 634, + "1385": 738, + "1386": 658, + "1387": 634, + "1388": 271, + "1389": 980, + "1390": 623, + "1391": 634, + "1392": 634, + "1393": 608, + "1394": 634, + "1395": 629, + "1396": 634, + "1397": 271, + "1398": 634, + "1399": 499, + "1400": 634, + "1401": 404, + "1402": 974, + "1403": 560, + "1404": 648, + "1405": 634, + "1406": 634, + "1407": 974, + "1408": 634, + "1409": 633, + "1410": 435, + "1411": 974, + "1412": 636, + "1413": 609, + "1414": 805, + "1415": 812, + "1417": 337, + "1418": 361, + "1456": 0, + "1457": 0, + "1458": 0, + "1459": 0, + "1460": 0, + "1461": 0, + "1462": 0, + "1463": 0, + "1464": 0, + "1465": 0, + "1466": 0, + "1467": 0, + "1468": 0, + "1469": 0, + "1470": 361, + "1471": 0, + "1472": 295, + "1473": 0, + "1474": 0, + "1475": 295, + "1478": 441, + "1479": 0, + "1488": 668, + "1489": 578, + "1490": 412, + "1491": 546, + "1492": 653, + "1493": 272, + "1494": 346, + "1495": 653, + "1496": 648, + "1497": 224, + "1498": 537, + "1499": 529, + "1500": 568, + "1501": 664, + "1502": 679, + "1503": 272, + "1504": 400, + "1505": 649, + "1506": 626, + "1507": 640, + "1508": 625, + "1509": 540, + "1510": 593, + "1511": 709, + "1512": 564, + "1513": 708, + "1514": 657, + "1520": 471, + "1521": 423, + "1522": 331, + "1523": 416, + "1524": 645, + "1542": 637, + "1543": 637, + "1545": 757, + "1546": 977, + "1548": 323, + "1557": 0, + "1563": 318, + "1567": 531, + "1569": 470, + "1570": 278, + "1571": 278, + "1572": 483, + "1573": 278, + "1574": 783, + "1575": 278, + "1576": 941, + "1577": 524, + "1578": 941, + "1579": 941, + "1580": 646, + "1581": 646, + "1582": 646, + "1583": 445, + "1584": 445, + "1585": 483, + "1586": 483, + "1587": 1221, + "1588": 1221, + "1589": 1209, + "1590": 1209, + "1591": 925, + "1592": 925, + "1593": 597, + "1594": 597, + "1600": 293, + "1601": 1037, + "1602": 776, + "1603": 824, + "1604": 727, + "1605": 619, + "1606": 734, + "1607": 524, + "1608": 483, + "1609": 783, + "1610": 783, + "1611": 0, + "1612": 0, + "1613": 0, + "1614": 0, + "1615": 0, + "1616": 0, + "1617": 0, + "1618": 0, + "1619": 0, + "1620": 0, + "1621": 0, + "1623": 0, + "1626": 500, + "1632": 537, + "1633": 537, + "1634": 537, + "1635": 537, + "1636": 537, + "1637": 537, + "1638": 537, + "1639": 537, + "1640": 537, + "1641": 537, + "1642": 537, + "1643": 325, + "1644": 318, + "1645": 545, + "1646": 941, + "1647": 776, + "1648": 0, + "1652": 292, + "1657": 941, + "1658": 941, + "1659": 941, + "1660": 941, + "1661": 941, + "1662": 941, + "1663": 941, + "1664": 941, + "1665": 646, + "1666": 646, + "1667": 646, + "1668": 646, + "1669": 646, + "1670": 646, + "1671": 646, + "1672": 445, + "1673": 445, + "1674": 445, + "1675": 445, + "1676": 445, + "1677": 445, + "1678": 445, + "1679": 445, + "1680": 445, + "1681": 483, + "1682": 483, + "1683": 498, + "1684": 530, + "1685": 610, + "1686": 530, + "1687": 483, + "1688": 483, + "1689": 483, + "1690": 1221, + "1691": 1221, + "1692": 1221, + "1693": 1209, + "1694": 1209, + "1695": 925, + "1696": 597, + "1697": 1037, + "1698": 1037, + "1699": 1037, + "1700": 1037, + "1701": 1037, + "1702": 1037, + "1703": 776, + "1704": 776, + "1705": 895, + "1706": 1054, + "1707": 895, + "1708": 824, + "1709": 824, + "1710": 824, + "1711": 895, + "1712": 895, + "1713": 895, + "1714": 895, + "1715": 895, + "1716": 895, + "1717": 727, + "1718": 727, + "1719": 727, + "1720": 727, + "1721": 734, + "1722": 734, + "1723": 734, + "1724": 734, + "1725": 734, + "1726": 698, + "1727": 646, + "1734": 483, + "1735": 483, + "1736": 483, + "1739": 483, + "1740": 783, + "1742": 783, + "1744": 783, + "1749": 524, + "1776": 537, + "1777": 537, + "1778": 537, + "1779": 537, + "1780": 537, + "1781": 537, + "1782": 537, + "1783": 537, + "1784": 537, + "1785": 537, + "1984": 636, + "1985": 636, + "1986": 636, + "1987": 636, + "1988": 636, + "1989": 636, + "1990": 636, + "1991": 636, + "1992": 636, + "1993": 636, + "1994": 278, + "1995": 571, + "1996": 424, + "1997": 592, + "1998": 654, + "1999": 654, + "2000": 594, + "2001": 654, + "2002": 829, + "2003": 438, + "2004": 438, + "2005": 559, + "2006": 612, + "2007": 350, + "2008": 959, + "2009": 473, + "2010": 783, + "2011": 654, + "2012": 625, + "2013": 734, + "2014": 530, + "2015": 724, + "2016": 473, + "2017": 625, + "2018": 594, + "2019": 530, + "2020": 530, + "2021": 522, + "2022": 594, + "2023": 594, + "2027": 0, + "2028": 0, + "2029": 0, + "2030": 0, + "2031": 0, + "2032": 0, + "2033": 0, + "2034": 0, + "2035": 0, + "2036": 313, + "2037": 313, + "2040": 560, + "2041": 560, + "2042": 361, + "3647": 636, + "3713": 670, + "3714": 684, + "3716": 688, + "3719": 482, + "3720": 628, + "3722": 684, + "3725": 688, + "3732": 669, + "3733": 642, + "3734": 645, + "3735": 655, + "3737": 659, + "3738": 625, + "3739": 625, + "3740": 745, + "3741": 767, + "3742": 687, + "3743": 687, + "3745": 702, + "3746": 688, + "3747": 684, + "3749": 649, + "3751": 632, + "3754": 703, + "3755": 819, + "3757": 633, + "3758": 684, + "3759": 788, + "3760": 632, + "3761": 0, + "3762": 539, + "3763": 539, + "3764": 0, + "3765": 0, + "3766": 0, + "3767": 0, + "3768": 0, + "3769": 0, + "3771": 0, + "3772": 0, + "3773": 663, + "3776": 375, + "3777": 657, + "3778": 460, + "3779": 547, + "3780": 491, + "3782": 674, + "3784": 0, + "3785": 0, + "3786": 0, + "3787": 0, + "3788": 0, + "3789": 0, + "3792": 636, + "3793": 641, + "3794": 641, + "3795": 670, + "3796": 625, + "3797": 625, + "3798": 703, + "3799": 670, + "3800": 674, + "3801": 677, + "3804": 1028, + "3805": 1028, + "4256": 874, + "4257": 733, + "4258": 679, + "4259": 834, + "4260": 615, + "4261": 768, + "4262": 753, + "4263": 914, + "4264": 453, + "4265": 620, + "4266": 843, + "4267": 882, + "4268": 625, + "4269": 854, + "4270": 781, + "4271": 629, + "4272": 912, + "4273": 621, + "4274": 620, + "4275": 854, + "4276": 866, + "4277": 724, + "4278": 630, + "4279": 621, + "4280": 625, + "4281": 620, + "4282": 818, + "4283": 874, + "4284": 615, + "4285": 623, + "4286": 625, + "4287": 725, + "4288": 844, + "4289": 596, + "4290": 688, + "4291": 596, + "4292": 594, + "4293": 738, + "4304": 508, + "4305": 518, + "4306": 581, + "4307": 818, + "4308": 508, + "4309": 513, + "4310": 500, + "4311": 801, + "4312": 518, + "4313": 510, + "4314": 1064, + "4315": 522, + "4316": 522, + "4317": 786, + "4318": 508, + "4319": 518, + "4320": 796, + "4321": 522, + "4322": 654, + "4323": 522, + "4324": 825, + "4325": 513, + "4326": 786, + "4327": 518, + "4328": 518, + "4329": 522, + "4330": 571, + "4331": 522, + "4332": 518, + "4333": 520, + "4334": 522, + "4335": 454, + "4336": 508, + "4337": 518, + "4338": 508, + "4339": 508, + "4340": 518, + "4341": 554, + "4342": 828, + "4343": 552, + "4344": 508, + "4345": 571, + "4346": 508, + "4347": 448, + "4348": 324, + "5121": 684, + "5122": 684, + "5123": 684, + "5124": 684, + "5125": 769, + "5126": 769, + "5127": 769, + "5129": 769, + "5130": 769, + "5131": 769, + "5132": 835, + "5133": 834, + "5134": 835, + "5135": 834, + "5136": 835, + "5137": 834, + "5138": 967, + "5139": 1007, + "5140": 967, + "5141": 1007, + "5142": 769, + "5143": 967, + "5144": 1007, + "5145": 967, + "5146": 1007, + "5147": 769, + "5149": 256, + "5150": 543, + "5151": 423, + "5152": 423, + "5153": 389, + "5154": 389, + "5155": 393, + "5156": 389, + "5157": 466, + "5158": 385, + "5159": 256, + "5160": 389, + "5161": 389, + "5162": 389, + "5163": 1090, + "5164": 909, + "5165": 953, + "5166": 1117, + "5167": 684, + "5168": 684, + "5169": 684, + "5170": 684, + "5171": 729, + "5172": 729, + "5173": 729, + "5175": 729, + "5176": 729, + "5177": 729, + "5178": 835, + "5179": 684, + "5180": 835, + "5181": 834, + "5182": 835, + "5183": 834, + "5184": 967, + "5185": 1007, + "5186": 967, + "5187": 1007, + "5188": 967, + "5189": 1007, + "5190": 967, + "5191": 1007, + "5192": 729, + "5193": 508, + "5194": 192, + "5196": 732, + "5197": 732, + "5198": 732, + "5199": 732, + "5200": 730, + "5201": 730, + "5202": 730, + "5204": 730, + "5205": 730, + "5206": 730, + "5207": 921, + "5208": 889, + "5209": 921, + "5210": 889, + "5211": 921, + "5212": 889, + "5213": 928, + "5214": 900, + "5215": 928, + "5216": 900, + "5217": 947, + "5218": 900, + "5219": 947, + "5220": 900, + "5221": 947, + "5222": 434, + "5223": 877, + "5224": 877, + "5225": 866, + "5226": 890, + "5227": 628, + "5228": 628, + "5229": 628, + "5230": 628, + "5231": 628, + "5232": 628, + "5233": 628, + "5234": 628, + "5235": 628, + "5236": 860, + "5237": 771, + "5238": 815, + "5239": 816, + "5240": 815, + "5241": 816, + "5242": 860, + "5243": 771, + "5244": 860, + "5245": 771, + "5246": 815, + "5247": 816, + "5248": 815, + "5249": 816, + "5250": 815, + "5251": 407, + "5252": 407, + "5253": 750, + "5254": 775, + "5255": 750, + "5256": 775, + "5257": 628, + "5258": 628, + "5259": 628, + "5260": 628, + "5261": 628, + "5262": 628, + "5263": 628, + "5264": 628, + "5265": 628, + "5266": 860, + "5267": 771, + "5268": 815, + "5269": 816, + "5270": 815, + "5271": 816, + "5272": 860, + "5273": 771, + "5274": 860, + "5275": 771, + "5276": 815, + "5277": 816, + "5278": 815, + "5279": 816, + "5280": 815, + "5281": 435, + "5282": 435, + "5283": 610, + "5284": 557, + "5285": 557, + "5286": 557, + "5287": 610, + "5288": 610, + "5289": 610, + "5290": 557, + "5291": 557, + "5292": 749, + "5293": 769, + "5294": 746, + "5295": 764, + "5296": 746, + "5297": 764, + "5298": 749, + "5299": 769, + "5300": 749, + "5301": 769, + "5302": 746, + "5303": 764, + "5304": 746, + "5305": 764, + "5306": 746, + "5307": 386, + "5308": 508, + "5309": 386, + "5312": 852, + "5313": 852, + "5314": 852, + "5315": 852, + "5316": 852, + "5317": 852, + "5318": 852, + "5319": 852, + "5320": 852, + "5321": 1069, + "5322": 1035, + "5323": 1059, + "5324": 852, + "5325": 1059, + "5326": 852, + "5327": 852, + "5328": 600, + "5329": 453, + "5330": 600, + "5331": 852, + "5332": 852, + "5333": 852, + "5334": 852, + "5335": 852, + "5336": 852, + "5337": 852, + "5338": 852, + "5339": 852, + "5340": 1069, + "5341": 1035, + "5342": 1059, + "5343": 1030, + "5344": 1059, + "5345": 1030, + "5346": 1069, + "5347": 1035, + "5348": 1069, + "5349": 1035, + "5350": 1083, + "5351": 1030, + "5352": 1083, + "5353": 1030, + "5354": 600, + "5356": 729, + "5357": 603, + "5358": 603, + "5359": 603, + "5360": 603, + "5361": 603, + "5362": 603, + "5363": 603, + "5364": 603, + "5365": 603, + "5366": 834, + "5367": 754, + "5368": 792, + "5369": 771, + "5370": 792, + "5371": 771, + "5372": 834, + "5373": 754, + "5374": 834, + "5375": 754, + "5376": 792, + "5377": 771, + "5378": 792, + "5379": 771, + "5380": 792, + "5381": 418, + "5382": 420, + "5383": 418, + "5392": 712, + "5393": 712, + "5394": 712, + "5395": 892, + "5396": 892, + "5397": 892, + "5398": 892, + "5399": 910, + "5400": 872, + "5401": 910, + "5402": 872, + "5403": 910, + "5404": 872, + "5405": 1140, + "5406": 1100, + "5407": 1140, + "5408": 1100, + "5409": 1140, + "5410": 1100, + "5411": 1140, + "5412": 1100, + "5413": 641, + "5414": 627, + "5415": 627, + "5416": 627, + "5417": 627, + "5418": 627, + "5419": 627, + "5420": 627, + "5421": 627, + "5422": 627, + "5423": 844, + "5424": 781, + "5425": 816, + "5426": 818, + "5427": 816, + "5428": 818, + "5429": 844, + "5430": 781, + "5431": 844, + "5432": 781, + "5433": 816, + "5434": 818, + "5435": 816, + "5436": 818, + "5437": 816, + "5438": 418, + "5440": 389, + "5441": 484, + "5442": 916, + "5443": 916, + "5444": 916, + "5445": 916, + "5446": 916, + "5447": 916, + "5448": 603, + "5449": 603, + "5450": 603, + "5451": 603, + "5452": 603, + "5453": 603, + "5454": 834, + "5455": 754, + "5456": 418, + "5458": 729, + "5459": 684, + "5460": 684, + "5461": 684, + "5462": 684, + "5463": 726, + "5464": 726, + "5465": 726, + "5466": 726, + "5467": 924, + "5468": 1007, + "5469": 508, + "5470": 732, + "5471": 732, + "5472": 732, + "5473": 732, + "5474": 732, + "5475": 732, + "5476": 730, + "5477": 730, + "5478": 730, + "5479": 730, + "5480": 947, + "5481": 900, + "5482": 508, + "5492": 831, + "5493": 831, + "5494": 831, + "5495": 831, + "5496": 831, + "5497": 831, + "5498": 831, + "5499": 563, + "5500": 752, + "5501": 484, + "5502": 1047, + "5503": 1047, + "5504": 1047, + "5505": 1047, + "5506": 1047, + "5507": 1047, + "5508": 1047, + "5509": 825, + "5514": 831, + "5515": 831, + "5516": 831, + "5517": 831, + "5518": 1259, + "5519": 1259, + "5520": 1259, + "5521": 1002, + "5522": 1002, + "5523": 1259, + "5524": 1259, + "5525": 700, + "5526": 1073, + "5536": 852, + "5537": 852, + "5538": 852, + "5539": 852, + "5540": 852, + "5541": 852, + "5542": 600, + "5543": 643, + "5544": 643, + "5545": 643, + "5546": 643, + "5547": 643, + "5548": 643, + "5549": 643, + "5550": 418, + "5551": 628, + "5598": 770, + "5601": 767, + "5702": 468, + "5703": 468, + "5742": 444, + "5743": 1047, + "5744": 1310, + "5745": 1632, + "5746": 1632, + "5747": 1375, + "5748": 1375, + "5749": 1632, + "5750": 1632, + "5760": 477, + "5761": 493, + "5762": 712, + "5763": 931, + "5764": 1150, + "5765": 1370, + "5766": 493, + "5767": 712, + "5768": 931, + "5769": 1150, + "5770": 1370, + "5771": 498, + "5772": 718, + "5773": 938, + "5774": 1159, + "5775": 1379, + "5776": 493, + "5777": 712, + "5778": 930, + "5779": 1149, + "5780": 1370, + "5781": 498, + "5782": 752, + "5783": 789, + "5784": 1205, + "5785": 1150, + "5786": 683, + "5787": 507, + "5788": 507, + "7424": 592, + "7425": 717, + "7426": 982, + "7427": 586, + "7428": 550, + "7429": 605, + "7430": 605, + "7431": 491, + "7432": 541, + "7433": 278, + "7434": 395, + "7435": 579, + "7436": 583, + "7437": 754, + "7438": 650, + "7439": 612, + "7440": 550, + "7441": 684, + "7442": 684, + "7443": 684, + "7444": 1023, + "7446": 612, + "7447": 612, + "7448": 524, + "7449": 602, + "7450": 602, + "7451": 583, + "7452": 574, + "7453": 737, + "7454": 948, + "7455": 638, + "7456": 592, + "7457": 818, + "7458": 525, + "7459": 526, + "7462": 583, + "7463": 592, + "7464": 564, + "7465": 524, + "7466": 590, + "7467": 639, + "7468": 431, + "7469": 613, + "7470": 432, + "7472": 485, + "7473": 398, + "7474": 398, + "7475": 488, + "7476": 474, + "7477": 186, + "7478": 186, + "7479": 413, + "7480": 351, + "7481": 543, + "7482": 471, + "7483": 471, + "7484": 496, + "7485": 439, + "7486": 380, + "7487": 438, + "7488": 385, + "7489": 461, + "7490": 623, + "7491": 392, + "7492": 392, + "7493": 405, + "7494": 648, + "7495": 428, + "7496": 405, + "7497": 417, + "7498": 417, + "7499": 360, + "7500": 359, + "7501": 405, + "7502": 179, + "7503": 426, + "7504": 623, + "7505": 409, + "7506": 414, + "7507": 370, + "7508": 414, + "7509": 414, + "7510": 428, + "7511": 295, + "7512": 405, + "7513": 470, + "7514": 623, + "7515": 417, + "7517": 402, + "7518": 373, + "7519": 385, + "7520": 416, + "7521": 364, + "7522": 179, + "7523": 259, + "7524": 405, + "7525": 417, + "7526": 402, + "7527": 373, + "7528": 412, + "7529": 416, + "7530": 364, + "7543": 635, + "7544": 474, + "7547": 372, + "7549": 667, + "7557": 278, + "7579": 405, + "7580": 370, + "7581": 370, + "7582": 414, + "7583": 360, + "7584": 296, + "7585": 233, + "7586": 405, + "7587": 405, + "7588": 261, + "7589": 250, + "7590": 261, + "7591": 261, + "7592": 234, + "7593": 250, + "7594": 235, + "7595": 376, + "7596": 623, + "7597": 623, + "7598": 411, + "7599": 479, + "7600": 409, + "7601": 414, + "7602": 414, + "7603": 360, + "7604": 287, + "7605": 295, + "7606": 508, + "7607": 418, + "7608": 361, + "7609": 406, + "7610": 417, + "7611": 366, + "7612": 437, + "7613": 366, + "7614": 392, + "7615": 414, + "7620": 0, + "7621": 0, + "7622": 0, + "7623": 0, + "7624": 0, + "7625": 0, + "7680": 684, + "7681": 613, + "7682": 686, + "7683": 635, + "7684": 686, + "7685": 635, + "7686": 686, + "7687": 635, + "7688": 698, + "7689": 550, + "7690": 770, + "7691": 635, + "7692": 770, + "7693": 635, + "7694": 770, + "7695": 635, + "7696": 770, + "7697": 635, + "7698": 770, + "7699": 635, + "7700": 632, + "7701": 615, + "7702": 632, + "7703": 615, + "7704": 632, + "7705": 615, + "7706": 632, + "7707": 615, + "7708": 632, + "7709": 615, + "7710": 575, + "7711": 352, + "7712": 775, + "7713": 635, + "7714": 752, + "7715": 634, + "7716": 752, + "7717": 634, + "7718": 752, + "7719": 634, + "7720": 752, + "7721": 634, + "7722": 752, + "7723": 634, + "7724": 295, + "7725": 278, + "7726": 295, + "7727": 278, + "7728": 656, + "7729": 579, + "7730": 656, + "7731": 579, + "7732": 656, + "7733": 579, + "7734": 557, + "7735": 288, + "7736": 557, + "7737": 288, + "7738": 557, + "7739": 278, + "7740": 557, + "7741": 278, + "7742": 863, + "7743": 974, + "7744": 863, + "7745": 974, + "7746": 863, + "7747": 974, + "7748": 748, + "7749": 634, + "7750": 748, + "7751": 634, + "7752": 748, + "7753": 634, + "7754": 748, + "7755": 634, + "7756": 787, + "7757": 612, + "7758": 787, + "7759": 612, + "7760": 787, + "7761": 612, + "7762": 787, + "7763": 612, + "7764": 603, + "7765": 635, + "7766": 603, + "7767": 635, + "7768": 695, + "7769": 411, + "7770": 695, + "7771": 411, + "7772": 695, + "7773": 411, + "7774": 695, + "7775": 411, + "7776": 635, + "7777": 521, + "7778": 635, + "7779": 521, + "7780": 635, + "7781": 521, + "7782": 635, + "7783": 521, + "7784": 635, + "7785": 521, + "7786": 611, + "7787": 392, + "7788": 611, + "7789": 392, + "7790": 611, + "7791": 392, + "7792": 611, + "7793": 392, + "7794": 732, + "7795": 634, + "7796": 732, + "7797": 634, + "7798": 732, + "7799": 634, + "7800": 732, + "7801": 634, + "7802": 732, + "7803": 634, + "7804": 684, + "7805": 592, + "7806": 684, + "7807": 592, + "7808": 989, + "7809": 818, + "7810": 989, + "7811": 818, + "7812": 989, + "7813": 818, + "7814": 989, + "7815": 818, + "7816": 989, + "7817": 818, + "7818": 685, + "7819": 592, + "7820": 685, + "7821": 592, + "7822": 611, + "7823": 592, + "7824": 685, + "7825": 525, + "7826": 685, + "7827": 525, + "7828": 685, + "7829": 525, + "7830": 634, + "7831": 392, + "7832": 818, + "7833": 592, + "7834": 613, + "7835": 352, + "7836": 352, + "7837": 352, + "7838": 769, + "7839": 612, + "7840": 684, + "7841": 613, + "7842": 684, + "7843": 613, + "7844": 684, + "7845": 613, + "7846": 684, + "7847": 613, + "7848": 684, + "7849": 613, + "7850": 684, + "7851": 613, + "7852": 684, + "7853": 613, + "7854": 684, + "7855": 613, + "7856": 684, + "7857": 613, + "7858": 684, + "7859": 613, + "7860": 684, + "7861": 613, + "7862": 684, + "7863": 613, + "7864": 632, + "7865": 615, + "7866": 632, + "7867": 615, + "7868": 632, + "7869": 615, + "7870": 632, + "7871": 615, + "7872": 632, + "7873": 615, + "7874": 632, + "7875": 615, + "7876": 632, + "7877": 615, + "7878": 632, + "7879": 615, + "7880": 295, + "7881": 278, + "7882": 295, + "7883": 278, + "7884": 787, + "7885": 612, + "7886": 787, + "7887": 612, + "7888": 787, + "7889": 612, + "7890": 787, + "7891": 612, + "7892": 787, + "7893": 612, + "7894": 787, + "7895": 612, + "7896": 787, + "7897": 612, + "7898": 913, + "7899": 612, + "7900": 913, + "7901": 612, + "7902": 913, + "7903": 612, + "7904": 913, + "7905": 612, + "7906": 913, + "7907": 612, + "7908": 732, + "7909": 634, + "7910": 732, + "7911": 634, + "7912": 858, + "7913": 634, + "7914": 858, + "7915": 634, + "7916": 858, + "7917": 634, + "7918": 858, + "7919": 634, + "7920": 858, + "7921": 634, + "7922": 611, + "7923": 592, + "7924": 611, + "7925": 592, + "7926": 611, + "7927": 592, + "7928": 611, + "7929": 592, + "7930": 769, + "7931": 477, + "7936": 659, + "7937": 659, + "7938": 659, + "7939": 659, + "7940": 659, + "7941": 659, + "7942": 659, + "7943": 659, + "7944": 684, + "7945": 684, + "7946": 877, + "7947": 877, + "7948": 769, + "7949": 801, + "7950": 708, + "7951": 743, + "7952": 541, + "7953": 541, + "7954": 541, + "7955": 541, + "7956": 541, + "7957": 541, + "7960": 711, + "7961": 711, + "7962": 966, + "7963": 975, + "7964": 898, + "7965": 928, + "7968": 634, + "7969": 634, + "7970": 634, + "7971": 634, + "7972": 634, + "7973": 634, + "7974": 634, + "7975": 634, + "7976": 837, + "7977": 835, + "7978": 1086, + "7979": 1089, + "7980": 1027, + "7981": 1051, + "7982": 934, + "7983": 947, + "7984": 338, + "7985": 338, + "7986": 338, + "7987": 338, + "7988": 338, + "7989": 338, + "7990": 338, + "7991": 338, + "7992": 380, + "7993": 374, + "7994": 635, + "7995": 635, + "7996": 570, + "7997": 600, + "7998": 489, + "7999": 493, + "8000": 612, + "8001": 612, + "8002": 612, + "8003": 612, + "8004": 612, + "8005": 612, + "8008": 804, + "8009": 848, + "8010": 1095, + "8011": 1100, + "8012": 938, + "8013": 970, + "8016": 579, + "8017": 579, + "8018": 579, + "8019": 579, + "8020": 579, + "8021": 579, + "8022": 579, + "8023": 579, + "8025": 784, + "8027": 998, + "8029": 1012, + "8031": 897, + "8032": 837, + "8033": 837, + "8034": 837, + "8035": 837, + "8036": 837, + "8037": 837, + "8038": 837, + "8039": 837, + "8040": 802, + "8041": 843, + "8042": 1089, + "8043": 1095, + "8044": 946, + "8045": 972, + "8046": 921, + "8047": 952, + "8048": 659, + "8049": 659, + "8050": 541, + "8051": 548, + "8052": 634, + "8053": 654, + "8054": 338, + "8055": 338, + "8056": 612, + "8057": 612, + "8058": 579, + "8059": 579, + "8060": 837, + "8061": 837, + "8064": 659, + "8065": 659, + "8066": 659, + "8067": 659, + "8068": 659, + "8069": 659, + "8070": 659, + "8071": 659, + "8072": 684, + "8073": 684, + "8074": 877, + "8075": 877, + "8076": 769, + "8077": 801, + "8078": 708, + "8079": 743, + "8080": 634, + "8081": 634, + "8082": 634, + "8083": 634, + "8084": 634, + "8085": 634, + "8086": 634, + "8087": 634, + "8088": 837, + "8089": 835, + "8090": 1086, + "8091": 1089, + "8092": 1027, + "8093": 1051, + "8094": 934, + "8095": 947, + "8096": 837, + "8097": 837, + "8098": 837, + "8099": 837, + "8100": 837, + "8101": 837, + "8102": 837, + "8103": 837, + "8104": 802, + "8105": 843, + "8106": 1089, + "8107": 1095, + "8108": 946, + "8109": 972, + "8110": 921, + "8111": 952, + "8112": 659, + "8113": 659, + "8114": 659, + "8115": 659, + "8116": 659, + "8118": 659, + "8119": 659, + "8120": 684, + "8121": 684, + "8122": 716, + "8123": 692, + "8124": 684, + "8125": 500, + "8126": 500, + "8127": 500, + "8128": 500, + "8129": 500, + "8130": 634, + "8131": 634, + "8132": 654, + "8134": 634, + "8135": 634, + "8136": 805, + "8137": 746, + "8138": 931, + "8139": 871, + "8140": 752, + "8141": 500, + "8142": 500, + "8143": 500, + "8144": 338, + "8145": 338, + "8146": 338, + "8147": 338, + "8150": 338, + "8151": 338, + "8152": 295, + "8153": 295, + "8154": 475, + "8155": 408, + "8157": 500, + "8158": 500, + "8159": 500, + "8160": 579, + "8161": 579, + "8162": 579, + "8163": 579, + "8164": 635, + "8165": 635, + "8166": 579, + "8167": 579, + "8168": 611, + "8169": 611, + "8170": 845, + "8171": 825, + "8172": 685, + "8173": 500, + "8174": 500, + "8175": 500, + "8178": 837, + "8179": 837, + "8180": 837, + "8182": 837, + "8183": 837, + "8184": 941, + "8185": 813, + "8186": 922, + "8187": 826, + "8188": 764, + "8189": 500, + "8190": 500, + "8192": 500, + "8193": 1000, + "8194": 500, + "8195": 1000, + "8196": 330, + "8197": 250, + "8198": 167, + "8199": 636, + "8200": 318, + "8201": 200, + "8202": 100, + "8203": 0, + "8204": 0, + "8205": 0, + "8206": 0, + "8207": 0, + "8208": 361, + "8209": 361, + "8210": 636, + "8211": 500, + "8212": 1000, + "8213": 1000, + "8214": 500, + "8215": 500, + "8216": 318, + "8217": 318, + "8218": 318, + "8219": 318, + "8220": 518, + "8221": 518, + "8222": 518, + "8223": 518, + "8224": 500, + "8225": 500, + "8226": 590, + "8227": 590, + "8228": 334, + "8229": 667, + "8230": 1000, + "8231": 318, + "8232": 0, + "8233": 0, + "8234": 0, + "8235": 0, + "8236": 0, + "8237": 0, + "8238": 0, + "8239": 200, + "8240": 1342, + "8241": 1735, + "8242": 227, + "8243": 374, + "8244": 520, + "8245": 227, + "8246": 374, + "8247": 520, + "8248": 339, + "8249": 400, + "8250": 400, + "8251": 838, + "8252": 485, + "8253": 531, + "8254": 500, + "8255": 804, + "8256": 804, + "8257": 250, + "8258": 1000, + "8259": 500, + "8260": 167, + "8261": 390, + "8262": 390, + "8263": 922, + "8264": 733, + "8265": 733, + "8266": 497, + "8267": 636, + "8268": 500, + "8269": 500, + "8270": 500, + "8271": 337, + "8272": 804, + "8273": 500, + "8274": 450, + "8275": 1000, + "8276": 804, + "8277": 838, + "8278": 586, + "8279": 663, + "8280": 838, + "8281": 838, + "8282": 318, + "8283": 797, + "8284": 838, + "8285": 318, + "8286": 318, + "8287": 222, + "8288": 0, + "8289": 0, + "8290": 0, + "8291": 0, + "8292": 0, + "8298": 0, + "8299": 0, + "8300": 0, + "8301": 0, + "8302": 0, + "8303": 0, + "8304": 401, + "8305": 179, + "8308": 401, + "8309": 401, + "8310": 401, + "8311": 401, + "8312": 401, + "8313": 401, + "8314": 528, + "8315": 528, + "8316": 528, + "8317": 246, + "8318": 246, + "8319": 398, + "8320": 401, + "8321": 401, + "8322": 401, + "8323": 401, + "8324": 401, + "8325": 401, + "8326": 401, + "8327": 401, + "8328": 401, + "8329": 401, + "8330": 528, + "8331": 528, + "8332": 528, + "8333": 246, + "8334": 246, + "8336": 392, + "8337": 417, + "8338": 414, + "8339": 444, + "8340": 417, + "8341": 404, + "8342": 426, + "8343": 166, + "8344": 623, + "8345": 398, + "8346": 428, + "8347": 373, + "8348": 295, + "8352": 877, + "8353": 636, + "8354": 636, + "8355": 636, + "8356": 636, + "8357": 974, + "8358": 636, + "8359": 1272, + "8360": 1074, + "8361": 989, + "8362": 784, + "8363": 636, + "8364": 636, + "8365": 636, + "8366": 636, + "8367": 1272, + "8368": 636, + "8369": 636, + "8370": 636, + "8371": 636, + "8372": 774, + "8373": 636, + "8376": 636, + "8377": 636, + "8378": 636, + "8381": 636, + "8400": 0, + "8401": 0, + "8406": 0, + "8407": 0, + "8411": 0, + "8412": 0, + "8417": 0, + "8448": 1019, + "8449": 1019, + "8450": 698, + "8451": 1123, + "8452": 642, + "8453": 1019, + "8454": 1067, + "8455": 614, + "8456": 698, + "8457": 952, + "8459": 988, + "8460": 754, + "8461": 850, + "8462": 634, + "8463": 634, + "8464": 470, + "8465": 697, + "8466": 720, + "8467": 413, + "8468": 818, + "8469": 801, + "8470": 1040, + "8471": 1000, + "8472": 697, + "8473": 701, + "8474": 787, + "8475": 798, + "8476": 814, + "8477": 792, + "8478": 896, + "8479": 684, + "8480": 1020, + "8481": 1074, + "8482": 1000, + "8483": 684, + "8484": 745, + "8485": 578, + "8486": 764, + "8487": 764, + "8488": 616, + "8489": 338, + "8490": 656, + "8491": 684, + "8492": 786, + "8493": 703, + "8494": 854, + "8495": 592, + "8496": 605, + "8497": 786, + "8498": 575, + "8499": 1069, + "8500": 462, + "8501": 745, + "8502": 674, + "8503": 466, + "8504": 645, + "8505": 380, + "8506": 926, + "8507": 1194, + "8508": 702, + "8509": 728, + "8510": 654, + "8511": 849, + "8512": 811, + "8513": 775, + "8514": 557, + "8515": 557, + "8516": 611, + "8517": 819, + "8518": 708, + "8519": 615, + "8520": 351, + "8521": 351, + "8523": 780, + "8526": 526, + "8528": 969, + "8529": 969, + "8530": 1370, + "8531": 969, + "8532": 969, + "8533": 969, + "8534": 969, + "8535": 969, + "8536": 969, + "8537": 969, + "8538": 969, + "8539": 969, + "8540": 969, + "8541": 969, + "8542": 969, + "8543": 568, + "8544": 295, + "8545": 492, + "8546": 689, + "8547": 923, + "8548": 684, + "8549": 922, + "8550": 1120, + "8551": 1317, + "8552": 917, + "8553": 685, + "8554": 933, + "8555": 1131, + "8556": 557, + "8557": 698, + "8558": 770, + "8559": 863, + "8560": 278, + "8561": 458, + "8562": 637, + "8563": 812, + "8564": 592, + "8565": 811, + "8566": 991, + "8567": 1170, + "8568": 819, + "8569": 592, + "8570": 822, + "8571": 1002, + "8572": 278, + "8573": 550, + "8574": 635, + "8575": 974, + "8576": 1245, + "8577": 770, + "8578": 1245, + "8579": 703, + "8580": 549, + "8581": 698, + "8585": 969, + "8592": 838, + "8593": 838, + "8594": 838, + "8595": 838, + "8596": 838, + "8597": 838, + "8598": 838, + "8599": 838, + "8600": 838, + "8601": 838, + "8602": 838, + "8603": 838, + "8604": 838, + "8605": 838, + "8606": 838, + "8607": 838, + "8608": 838, + "8609": 838, + "8610": 838, + "8611": 838, + "8612": 838, + "8613": 838, + "8614": 838, + "8615": 838, + "8616": 838, + "8617": 838, + "8618": 838, + "8619": 838, + "8620": 838, + "8621": 838, + "8622": 838, + "8623": 838, + "8624": 838, + "8625": 838, + "8626": 838, + "8627": 838, + "8628": 838, + "8629": 838, + "8630": 838, + "8631": 838, + "8632": 838, + "8633": 838, + "8634": 838, + "8635": 838, + "8636": 838, + "8637": 838, + "8638": 838, + "8639": 838, + "8640": 838, + "8641": 838, + "8642": 838, + "8643": 838, + "8644": 838, + "8645": 838, + "8646": 838, + "8647": 838, + "8648": 838, + "8649": 838, + "8650": 838, + "8651": 838, + "8652": 838, + "8653": 838, + "8654": 838, + "8655": 838, + "8656": 838, + "8657": 838, + "8658": 838, + "8659": 838, + "8660": 838, + "8661": 838, + "8662": 838, + "8663": 838, + "8664": 838, + "8665": 838, + "8666": 838, + "8667": 838, + "8668": 838, + "8669": 838, + "8670": 838, + "8671": 838, + "8672": 838, + "8673": 838, + "8674": 838, + "8675": 838, + "8676": 838, + "8677": 838, + "8678": 838, + "8679": 838, + "8680": 838, + "8681": 838, + "8682": 838, + "8683": 838, + "8684": 838, + "8685": 838, + "8686": 838, + "8687": 838, + "8688": 838, + "8689": 838, + "8690": 838, + "8691": 838, + "8692": 838, + "8693": 838, + "8694": 838, + "8695": 838, + "8696": 838, + "8697": 838, + "8698": 838, + "8699": 838, + "8700": 838, + "8701": 838, + "8702": 838, + "8703": 838, + "8704": 684, + "8705": 636, + "8706": 517, + "8707": 632, + "8708": 632, + "8709": 871, + "8710": 669, + "8711": 669, + "8712": 871, + "8713": 871, + "8714": 718, + "8715": 871, + "8716": 871, + "8717": 718, + "8718": 636, + "8719": 757, + "8720": 757, + "8721": 674, + "8722": 838, + "8723": 838, + "8724": 838, + "8725": 337, + "8726": 637, + "8727": 838, + "8728": 626, + "8729": 626, + "8730": 637, + "8731": 637, + "8732": 637, + "8733": 714, + "8734": 833, + "8735": 838, + "8736": 896, + "8737": 896, + "8738": 838, + "8739": 500, + "8740": 500, + "8741": 500, + "8742": 500, + "8743": 732, + "8744": 732, + "8745": 732, + "8746": 732, + "8747": 521, + "8748": 789, + "8749": 1057, + "8750": 521, + "8751": 789, + "8752": 1057, + "8753": 521, + "8754": 521, + "8755": 521, + "8756": 636, + "8757": 636, + "8758": 260, + "8759": 636, + "8760": 838, + "8761": 838, + "8762": 838, + "8763": 838, + "8764": 838, + "8765": 838, + "8766": 838, + "8767": 838, + "8768": 375, + "8769": 838, + "8770": 838, + "8771": 838, + "8772": 838, + "8773": 838, + "8774": 838, + "8775": 838, + "8776": 838, + "8777": 838, + "8778": 838, + "8779": 838, + "8780": 838, + "8781": 838, + "8782": 838, + "8783": 838, + "8784": 838, + "8785": 838, + "8786": 839, + "8787": 839, + "8788": 1000, + "8789": 1000, + "8790": 838, + "8791": 838, + "8792": 838, + "8793": 838, + "8794": 838, + "8795": 838, + "8796": 838, + "8797": 838, + "8798": 838, + "8799": 838, + "8800": 838, + "8801": 838, + "8802": 838, + "8803": 838, + "8804": 838, + "8805": 838, + "8806": 838, + "8807": 838, + "8808": 838, + "8809": 838, + "8810": 1047, + "8811": 1047, + "8812": 464, + "8813": 838, + "8814": 838, + "8815": 838, + "8816": 838, + "8817": 838, + "8818": 838, + "8819": 838, + "8820": 838, + "8821": 838, + "8822": 838, + "8823": 838, + "8824": 838, + "8825": 838, + "8826": 838, + "8827": 838, + "8828": 838, + "8829": 838, + "8830": 838, + "8831": 838, + "8832": 838, + "8833": 838, + "8834": 838, + "8835": 838, + "8836": 838, + "8837": 838, + "8838": 838, + "8839": 838, + "8840": 838, + "8841": 838, + "8842": 838, + "8843": 838, + "8844": 732, + "8845": 732, + "8846": 732, + "8847": 838, + "8848": 838, + "8849": 838, + "8850": 838, + "8851": 780, + "8852": 780, + "8853": 838, + "8854": 838, + "8855": 838, + "8856": 838, + "8857": 838, + "8858": 838, + "8859": 838, + "8860": 838, + "8861": 838, + "8862": 838, + "8863": 838, + "8864": 838, + "8865": 838, + "8866": 871, + "8867": 871, + "8868": 871, + "8869": 871, + "8870": 521, + "8871": 521, + "8872": 871, + "8873": 871, + "8874": 871, + "8875": 871, + "8876": 871, + "8877": 871, + "8878": 871, + "8879": 871, + "8880": 838, + "8881": 838, + "8882": 838, + "8883": 838, + "8884": 838, + "8885": 838, + "8886": 1000, + "8887": 1000, + "8888": 838, + "8889": 838, + "8890": 521, + "8891": 732, + "8892": 732, + "8893": 732, + "8894": 838, + "8895": 838, + "8896": 820, + "8897": 820, + "8898": 820, + "8899": 820, + "8900": 626, + "8901": 318, + "8902": 626, + "8903": 838, + "8904": 1000, + "8905": 1000, + "8906": 1000, + "8907": 1000, + "8908": 1000, + "8909": 838, + "8910": 732, + "8911": 732, + "8912": 838, + "8913": 838, + "8914": 838, + "8915": 838, + "8916": 838, + "8917": 838, + "8918": 838, + "8919": 838, + "8920": 1422, + "8921": 1422, + "8922": 838, + "8923": 838, + "8924": 838, + "8925": 838, + "8926": 838, + "8927": 838, + "8928": 838, + "8929": 838, + "8930": 838, + "8931": 838, + "8932": 838, + "8933": 838, + "8934": 838, + "8935": 838, + "8936": 838, + "8937": 838, + "8938": 838, + "8939": 838, + "8940": 838, + "8941": 838, + "8942": 1000, + "8943": 1000, + "8944": 1000, + "8945": 1000, + "8946": 1000, + "8947": 871, + "8948": 718, + "8949": 871, + "8950": 871, + "8951": 718, + "8952": 871, + "8953": 871, + "8954": 1000, + "8955": 871, + "8956": 718, + "8957": 871, + "8958": 718, + "8959": 871, + "8960": 602, + "8961": 602, + "8962": 635, + "8963": 838, + "8964": 838, + "8965": 838, + "8966": 838, + "8967": 488, + "8968": 390, + "8969": 390, + "8970": 390, + "8971": 390, + "8972": 809, + "8973": 809, + "8974": 809, + "8975": 809, + "8976": 838, + "8977": 513, + "8984": 1000, + "8985": 838, + "8988": 469, + "8989": 469, + "8990": 469, + "8991": 469, + "8992": 521, + "8993": 521, + "8996": 1152, + "8997": 1152, + "8998": 1414, + "8999": 1152, + "9000": 1443, + "9003": 1414, + "9004": 873, + "9075": 338, + "9076": 635, + "9077": 837, + "9082": 659, + "9085": 757, + "9095": 1152, + "9108": 873, + "9115": 500, + "9116": 500, + "9117": 500, + "9118": 500, + "9119": 500, + "9120": 500, + "9121": 500, + "9122": 500, + "9123": 500, + "9124": 500, + "9125": 500, + "9126": 500, + "9127": 750, + "9128": 750, + "9129": 750, + "9130": 750, + "9131": 750, + "9132": 750, + "9133": 750, + "9134": 521, + "9166": 838, + "9167": 945, + "9187": 873, + "9189": 769, + "9192": 636, + "9250": 635, + "9251": 635, + "9312": 896, + "9313": 896, + "9314": 896, + "9315": 896, + "9316": 896, + "9317": 896, + "9318": 896, + "9319": 896, + "9320": 896, + "9321": 896, + "9472": 602, + "9473": 602, + "9474": 602, + "9475": 602, + "9476": 602, + "9477": 602, + "9478": 602, + "9479": 602, + "9480": 602, + "9481": 602, + "9482": 602, + "9483": 602, + "9484": 602, + "9485": 602, + "9486": 602, + "9487": 602, + "9488": 602, + "9489": 602, + "9490": 602, + "9491": 602, + "9492": 602, + "9493": 602, + "9494": 602, + "9495": 602, + "9496": 602, + "9497": 602, + "9498": 602, + "9499": 602, + "9500": 602, + "9501": 602, + "9502": 602, + "9503": 602, + "9504": 602, + "9505": 602, + "9506": 602, + "9507": 602, + "9508": 602, + "9509": 602, + "9510": 602, + "9511": 602, + "9512": 602, + "9513": 602, + "9514": 602, + "9515": 602, + "9516": 602, + "9517": 602, + "9518": 602, + "9519": 602, + "9520": 602, + "9521": 602, + "9522": 602, + "9523": 602, + "9524": 602, + "9525": 602, + "9526": 602, + "9527": 602, + "9528": 602, + "9529": 602, + "9530": 602, + "9531": 602, + "9532": 602, + "9533": 602, + "9534": 602, + "9535": 602, + "9536": 602, + "9537": 602, + "9538": 602, + "9539": 602, + "9540": 602, + "9541": 602, + "9542": 602, + "9543": 602, + "9544": 602, + "9545": 602, + "9546": 602, + "9547": 602, + "9548": 602, + "9549": 602, + "9550": 602, + "9551": 602, + "9552": 602, + "9553": 602, + "9554": 602, + "9555": 602, + "9556": 602, + "9557": 602, + "9558": 602, + "9559": 602, + "9560": 602, + "9561": 602, + "9562": 602, + "9563": 602, + "9564": 602, + "9565": 602, + "9566": 602, + "9567": 602, + "9568": 602, + "9569": 602, + "9570": 602, + "9571": 602, + "9572": 602, + "9573": 602, + "9574": 602, + "9575": 602, + "9576": 602, + "9577": 602, + "9578": 602, + "9579": 602, + "9580": 602, + "9581": 602, + "9582": 602, + "9583": 602, + "9584": 602, + "9585": 602, + "9586": 602, + "9587": 602, + "9588": 602, + "9589": 602, + "9590": 602, + "9591": 602, + "9592": 602, + "9593": 602, + "9594": 602, + "9595": 602, + "9596": 602, + "9597": 602, + "9598": 602, + "9599": 602, + "9600": 769, + "9601": 769, + "9602": 769, + "9603": 769, + "9604": 769, + "9605": 769, + "9606": 769, + "9607": 769, + "9608": 769, + "9609": 769, + "9610": 769, + "9611": 769, + "9612": 769, + "9613": 769, + "9614": 769, + "9615": 769, + "9616": 769, + "9617": 769, + "9618": 769, + "9619": 769, + "9620": 769, + "9621": 769, + "9622": 769, + "9623": 769, + "9624": 769, + "9625": 769, + "9626": 769, + "9627": 769, + "9628": 769, + "9629": 769, + "9630": 769, + "9631": 769, + "9632": 945, + "9633": 945, + "9634": 945, + "9635": 945, + "9636": 945, + "9637": 945, + "9638": 945, + "9639": 945, + "9640": 945, + "9641": 945, + "9642": 678, + "9643": 678, + "9644": 945, + "9645": 945, + "9646": 550, + "9647": 550, + "9648": 769, + "9649": 769, + "9650": 769, + "9651": 769, + "9652": 502, + "9653": 502, + "9654": 769, + "9655": 769, + "9656": 502, + "9657": 502, + "9658": 769, + "9659": 769, + "9660": 769, + "9661": 769, + "9662": 502, + "9663": 502, + "9664": 769, + "9665": 769, + "9666": 502, + "9667": 502, + "9668": 769, + "9669": 769, + "9670": 769, + "9671": 769, + "9672": 769, + "9673": 873, + "9674": 494, + "9675": 873, + "9676": 873, + "9677": 873, + "9678": 873, + "9679": 873, + "9680": 873, + "9681": 873, + "9682": 873, + "9683": 873, + "9684": 873, + "9685": 873, + "9686": 527, + "9687": 527, + "9688": 791, + "9689": 970, + "9690": 970, + "9691": 970, + "9692": 387, + "9693": 387, + "9694": 387, + "9695": 387, + "9696": 873, + "9697": 873, + "9698": 769, + "9699": 769, + "9700": 769, + "9701": 769, + "9702": 590, + "9703": 945, + "9704": 945, + "9705": 945, + "9706": 945, + "9707": 945, + "9708": 769, + "9709": 769, + "9710": 769, + "9711": 1119, + "9712": 945, + "9713": 945, + "9714": 945, + "9715": 945, + "9716": 873, + "9717": 873, + "9718": 873, + "9719": 873, + "9720": 769, + "9721": 769, + "9722": 769, + "9723": 830, + "9724": 830, + "9725": 732, + "9726": 732, + "9727": 769, + "9728": 896, + "9729": 1000, + "9730": 896, + "9731": 896, + "9732": 896, + "9733": 896, + "9734": 896, + "9735": 573, + "9736": 896, + "9737": 896, + "9738": 888, + "9739": 888, + "9740": 671, + "9741": 1013, + "9742": 1246, + "9743": 1250, + "9744": 896, + "9745": 896, + "9746": 896, + "9747": 532, + "9748": 896, + "9749": 896, + "9750": 896, + "9751": 896, + "9752": 896, + "9753": 896, + "9754": 896, + "9755": 896, + "9756": 896, + "9757": 609, + "9758": 896, + "9759": 609, + "9760": 896, + "9761": 896, + "9762": 896, + "9763": 896, + "9764": 669, + "9765": 746, + "9766": 649, + "9767": 784, + "9768": 545, + "9769": 896, + "9770": 896, + "9771": 896, + "9772": 710, + "9773": 896, + "9774": 896, + "9775": 896, + "9776": 896, + "9777": 896, + "9778": 896, + "9779": 896, + "9780": 896, + "9781": 896, + "9782": 896, + "9783": 896, + "9784": 896, + "9785": 1042, + "9786": 1042, + "9787": 1042, + "9788": 896, + "9789": 896, + "9790": 896, + "9791": 614, + "9792": 732, + "9793": 732, + "9794": 896, + "9795": 896, + "9796": 896, + "9797": 896, + "9798": 896, + "9799": 896, + "9800": 896, + "9801": 896, + "9802": 896, + "9803": 896, + "9804": 896, + "9805": 896, + "9806": 896, + "9807": 896, + "9808": 896, + "9809": 896, + "9810": 896, + "9811": 896, + "9812": 896, + "9813": 896, + "9814": 896, + "9815": 896, + "9816": 896, + "9817": 896, + "9818": 896, + "9819": 896, + "9820": 896, + "9821": 896, + "9822": 896, + "9823": 896, + "9824": 896, + "9825": 896, + "9826": 896, + "9827": 896, + "9828": 896, + "9829": 896, + "9830": 896, + "9831": 896, + "9832": 896, + "9833": 472, + "9834": 638, + "9835": 896, + "9836": 896, + "9837": 472, + "9838": 357, + "9839": 484, + "9840": 748, + "9841": 766, + "9842": 896, + "9843": 896, + "9844": 896, + "9845": 896, + "9846": 896, + "9847": 896, + "9848": 896, + "9849": 896, + "9850": 896, + "9851": 896, + "9852": 896, + "9853": 896, + "9854": 896, + "9855": 896, + "9856": 869, + "9857": 869, + "9858": 869, + "9859": 869, + "9860": 869, + "9861": 869, + "9862": 896, + "9863": 896, + "9864": 896, + "9865": 896, + "9866": 896, + "9867": 896, + "9868": 896, + "9869": 896, + "9870": 896, + "9871": 896, + "9872": 896, + "9873": 896, + "9874": 896, + "9875": 896, + "9876": 896, + "9877": 541, + "9878": 896, + "9879": 896, + "9880": 896, + "9881": 896, + "9882": 896, + "9883": 896, + "9884": 896, + "9886": 896, + "9887": 896, + "9888": 896, + "9889": 702, + "9890": 1004, + "9891": 1089, + "9892": 1175, + "9893": 903, + "9894": 838, + "9895": 838, + "9896": 838, + "9897": 838, + "9898": 838, + "9899": 838, + "9900": 838, + "9901": 838, + "9902": 838, + "9903": 838, + "9904": 844, + "9905": 838, + "9906": 732, + "9907": 732, + "9908": 732, + "9909": 732, + "9910": 850, + "9911": 732, + "9912": 732, + "9920": 838, + "9921": 838, + "9922": 838, + "9923": 838, + "9954": 732, + "9985": 838, + "9986": 838, + "9987": 838, + "9988": 838, + "9990": 838, + "9991": 838, + "9992": 838, + "9993": 838, + "9996": 838, + "9997": 838, + "9998": 838, + "9999": 838, + "10000": 838, + "10001": 838, + "10002": 838, + "10003": 838, + "10004": 838, + "10005": 838, + "10006": 838, + "10007": 838, + "10008": 838, + "10009": 838, + "10010": 838, + "10011": 838, + "10012": 838, + "10013": 838, + "10014": 838, + "10015": 838, + "10016": 838, + "10017": 838, + "10018": 838, + "10019": 838, + "10020": 838, + "10021": 838, + "10022": 838, + "10023": 838, + "10025": 838, + "10026": 838, + "10027": 838, + "10028": 838, + "10029": 838, + "10030": 838, + "10031": 838, + "10032": 838, + "10033": 838, + "10034": 838, + "10035": 838, + "10036": 838, + "10037": 838, + "10038": 838, + "10039": 838, + "10040": 838, + "10041": 838, + "10042": 838, + "10043": 838, + "10044": 838, + "10045": 838, + "10046": 838, + "10047": 838, + "10048": 838, + "10049": 838, + "10050": 838, + "10051": 838, + "10052": 838, + "10053": 838, + "10054": 838, + "10055": 838, + "10056": 838, + "10057": 838, + "10058": 838, + "10059": 838, + "10061": 896, + "10063": 896, + "10064": 896, + "10065": 896, + "10066": 896, + "10070": 896, + "10072": 838, + "10073": 838, + "10074": 838, + "10075": 322, + "10076": 322, + "10077": 538, + "10078": 538, + "10081": 838, + "10082": 838, + "10083": 838, + "10084": 838, + "10085": 838, + "10086": 838, + "10087": 838, + "10088": 838, + "10089": 838, + "10090": 838, + "10091": 838, + "10092": 838, + "10093": 838, + "10094": 838, + "10095": 838, + "10096": 838, + "10097": 838, + "10098": 838, + "10099": 838, + "10100": 838, + "10101": 838, + "10102": 896, + "10103": 896, + "10104": 896, + "10105": 896, + "10106": 896, + "10107": 896, + "10108": 896, + "10109": 896, + "10110": 896, + "10111": 896, + "10112": 838, + "10113": 838, + "10114": 838, + "10115": 838, + "10116": 838, + "10117": 838, + "10118": 838, + "10119": 838, + "10120": 838, + "10121": 838, + "10122": 838, + "10123": 838, + "10124": 838, + "10125": 838, + "10126": 838, + "10127": 838, + "10128": 838, + "10129": 838, + "10130": 838, + "10131": 838, + "10132": 838, + "10136": 838, + "10137": 838, + "10138": 838, + "10139": 838, + "10140": 838, + "10141": 838, + "10142": 838, + "10143": 838, + "10144": 838, + "10145": 838, + "10146": 838, + "10147": 838, + "10148": 838, + "10149": 838, + "10150": 838, + "10151": 838, + "10152": 838, + "10153": 838, + "10154": 838, + "10155": 838, + "10156": 838, + "10157": 838, + "10158": 838, + "10159": 838, + "10161": 838, + "10162": 838, + "10163": 838, + "10164": 838, + "10165": 838, + "10166": 838, + "10167": 838, + "10168": 838, + "10169": 838, + "10170": 838, + "10171": 838, + "10172": 838, + "10173": 838, + "10174": 838, + "10181": 390, + "10182": 390, + "10208": 494, + "10214": 495, + "10215": 495, + "10216": 390, + "10217": 390, + "10218": 556, + "10219": 556, + "10224": 838, + "10225": 838, + "10226": 838, + "10227": 838, + "10228": 1157, + "10229": 1434, + "10230": 1434, + "10231": 1434, + "10232": 1434, + "10233": 1434, + "10234": 1434, + "10235": 1434, + "10236": 1434, + "10237": 1434, + "10238": 1434, + "10239": 1434, + "10240": 732, + "10241": 732, + "10242": 732, + "10243": 732, + "10244": 732, + "10245": 732, + "10246": 732, + "10247": 732, + "10248": 732, + "10249": 732, + "10250": 732, + "10251": 732, + "10252": 732, + "10253": 732, + "10254": 732, + "10255": 732, + "10256": 732, + "10257": 732, + "10258": 732, + "10259": 732, + "10260": 732, + "10261": 732, + "10262": 732, + "10263": 732, + "10264": 732, + "10265": 732, + "10266": 732, + "10267": 732, + "10268": 732, + "10269": 732, + "10270": 732, + "10271": 732, + "10272": 732, + "10273": 732, + "10274": 732, + "10275": 732, + "10276": 732, + "10277": 732, + "10278": 732, + "10279": 732, + "10280": 732, + "10281": 732, + "10282": 732, + "10283": 732, + "10284": 732, + "10285": 732, + "10286": 732, + "10287": 732, + "10288": 732, + "10289": 732, + "10290": 732, + "10291": 732, + "10292": 732, + "10293": 732, + "10294": 732, + "10295": 732, + "10296": 732, + "10297": 732, + "10298": 732, + "10299": 732, + "10300": 732, + "10301": 732, + "10302": 732, + "10303": 732, + "10304": 732, + "10305": 732, + "10306": 732, + "10307": 732, + "10308": 732, + "10309": 732, + "10310": 732, + "10311": 732, + "10312": 732, + "10313": 732, + "10314": 732, + "10315": 732, + "10316": 732, + "10317": 732, + "10318": 732, + "10319": 732, + "10320": 732, + "10321": 732, + "10322": 732, + "10323": 732, + "10324": 732, + "10325": 732, + "10326": 732, + "10327": 732, + "10328": 732, + "10329": 732, + "10330": 732, + "10331": 732, + "10332": 732, + "10333": 732, + "10334": 732, + "10335": 732, + "10336": 732, + "10337": 732, + "10338": 732, + "10339": 732, + "10340": 732, + "10341": 732, + "10342": 732, + "10343": 732, + "10344": 732, + "10345": 732, + "10346": 732, + "10347": 732, + "10348": 732, + "10349": 732, + "10350": 732, + "10351": 732, + "10352": 732, + "10353": 732, + "10354": 732, + "10355": 732, + "10356": 732, + "10357": 732, + "10358": 732, + "10359": 732, + "10360": 732, + "10361": 732, + "10362": 732, + "10363": 732, + "10364": 732, + "10365": 732, + "10366": 732, + "10367": 732, + "10368": 732, + "10369": 732, + "10370": 732, + "10371": 732, + "10372": 732, + "10373": 732, + "10374": 732, + "10375": 732, + "10376": 732, + "10377": 732, + "10378": 732, + "10379": 732, + "10380": 732, + "10381": 732, + "10382": 732, + "10383": 732, + "10384": 732, + "10385": 732, + "10386": 732, + "10387": 732, + "10388": 732, + "10389": 732, + "10390": 732, + "10391": 732, + "10392": 732, + "10393": 732, + "10394": 732, + "10395": 732, + "10396": 732, + "10397": 732, + "10398": 732, + "10399": 732, + "10400": 732, + "10401": 732, + "10402": 732, + "10403": 732, + "10404": 732, + "10405": 732, + "10406": 732, + "10407": 732, + "10408": 732, + "10409": 732, + "10410": 732, + "10411": 732, + "10412": 732, + "10413": 732, + "10414": 732, + "10415": 732, + "10416": 732, + "10417": 732, + "10418": 732, + "10419": 732, + "10420": 732, + "10421": 732, + "10422": 732, + "10423": 732, + "10424": 732, + "10425": 732, + "10426": 732, + "10427": 732, + "10428": 732, + "10429": 732, + "10430": 732, + "10431": 732, + "10432": 732, + "10433": 732, + "10434": 732, + "10435": 732, + "10436": 732, + "10437": 732, + "10438": 732, + "10439": 732, + "10440": 732, + "10441": 732, + "10442": 732, + "10443": 732, + "10444": 732, + "10445": 732, + "10446": 732, + "10447": 732, + "10448": 732, + "10449": 732, + "10450": 732, + "10451": 732, + "10452": 732, + "10453": 732, + "10454": 732, + "10455": 732, + "10456": 732, + "10457": 732, + "10458": 732, + "10459": 732, + "10460": 732, + "10461": 732, + "10462": 732, + "10463": 732, + "10464": 732, + "10465": 732, + "10466": 732, + "10467": 732, + "10468": 732, + "10469": 732, + "10470": 732, + "10471": 732, + "10472": 732, + "10473": 732, + "10474": 732, + "10475": 732, + "10476": 732, + "10477": 732, + "10478": 732, + "10479": 732, + "10480": 732, + "10481": 732, + "10482": 732, + "10483": 732, + "10484": 732, + "10485": 732, + "10486": 732, + "10487": 732, + "10488": 732, + "10489": 732, + "10490": 732, + "10491": 732, + "10492": 732, + "10493": 732, + "10494": 732, + "10495": 732, + "10502": 838, + "10503": 838, + "10506": 838, + "10507": 838, + "10560": 683, + "10561": 683, + "10627": 734, + "10628": 734, + "10702": 838, + "10703": 1000, + "10704": 1000, + "10705": 1000, + "10706": 1000, + "10707": 1000, + "10708": 1000, + "10709": 1000, + "10731": 494, + "10746": 838, + "10747": 838, + "10752": 1000, + "10753": 1000, + "10754": 1000, + "10764": 1325, + "10765": 521, + "10766": 521, + "10767": 521, + "10768": 521, + "10769": 521, + "10770": 521, + "10771": 521, + "10772": 521, + "10773": 521, + "10774": 521, + "10775": 521, + "10776": 521, + "10777": 521, + "10778": 521, + "10779": 521, + "10780": 521, + "10799": 838, + "10858": 838, + "10859": 838, + "10877": 838, + "10878": 838, + "10879": 838, + "10880": 838, + "10881": 838, + "10882": 838, + "10883": 838, + "10884": 838, + "10885": 838, + "10886": 838, + "10887": 838, + "10888": 838, + "10889": 838, + "10890": 838, + "10891": 838, + "10892": 838, + "10893": 838, + "10894": 838, + "10895": 838, + "10896": 838, + "10897": 838, + "10898": 838, + "10899": 838, + "10900": 838, + "10901": 838, + "10902": 838, + "10903": 838, + "10904": 838, + "10905": 838, + "10906": 838, + "10907": 838, + "10908": 838, + "10909": 838, + "10910": 838, + "10911": 838, + "10912": 838, + "10926": 838, + "10927": 838, + "10928": 838, + "10929": 838, + "10930": 838, + "10931": 838, + "10932": 838, + "10933": 838, + "10934": 838, + "10935": 838, + "10936": 838, + "10937": 838, + "10938": 838, + "11001": 838, + "11002": 838, + "11008": 838, + "11009": 838, + "11010": 838, + "11011": 838, + "11012": 838, + "11013": 838, + "11014": 838, + "11015": 838, + "11016": 838, + "11017": 838, + "11018": 838, + "11019": 838, + "11020": 838, + "11021": 838, + "11022": 836, + "11023": 836, + "11024": 836, + "11025": 836, + "11026": 945, + "11027": 945, + "11028": 945, + "11029": 945, + "11030": 769, + "11031": 769, + "11032": 769, + "11033": 769, + "11034": 945, + "11039": 869, + "11040": 869, + "11041": 873, + "11042": 873, + "11043": 873, + "11044": 1119, + "11091": 869, + "11092": 869, + "11360": 557, + "11361": 278, + "11362": 557, + "11363": 603, + "11364": 695, + "11365": 613, + "11366": 392, + "11367": 752, + "11368": 634, + "11369": 656, + "11370": 579, + "11371": 685, + "11372": 525, + "11373": 781, + "11374": 863, + "11375": 684, + "11376": 781, + "11377": 734, + "11378": 1128, + "11379": 961, + "11380": 592, + "11381": 654, + "11382": 568, + "11383": 660, + "11385": 414, + "11386": 612, + "11387": 491, + "11388": 175, + "11389": 431, + "11390": 635, + "11391": 685, + "11520": 591, + "11521": 595, + "11522": 564, + "11523": 602, + "11524": 587, + "11525": 911, + "11526": 626, + "11527": 952, + "11528": 595, + "11529": 607, + "11530": 954, + "11531": 620, + "11532": 595, + "11533": 926, + "11534": 595, + "11535": 806, + "11536": 931, + "11537": 584, + "11538": 592, + "11539": 923, + "11540": 953, + "11541": 828, + "11542": 596, + "11543": 595, + "11544": 590, + "11545": 592, + "11546": 592, + "11547": 621, + "11548": 920, + "11549": 589, + "11550": 586, + "11551": 581, + "11552": 914, + "11553": 596, + "11554": 595, + "11555": 592, + "11556": 642, + "11557": 901, + "11568": 646, + "11569": 888, + "11570": 888, + "11571": 682, + "11572": 684, + "11573": 635, + "11574": 562, + "11575": 684, + "11576": 684, + "11577": 632, + "11578": 632, + "11579": 683, + "11580": 875, + "11581": 685, + "11582": 491, + "11583": 685, + "11584": 888, + "11585": 888, + "11586": 300, + "11587": 627, + "11588": 752, + "11589": 656, + "11590": 527, + "11591": 685, + "11592": 645, + "11593": 632, + "11594": 502, + "11595": 953, + "11596": 778, + "11597": 748, + "11598": 621, + "11599": 295, + "11600": 778, + "11601": 295, + "11602": 752, + "11603": 633, + "11604": 888, + "11605": 888, + "11606": 752, + "11607": 320, + "11608": 749, + "11609": 888, + "11610": 888, + "11611": 698, + "11612": 768, + "11613": 685, + "11614": 698, + "11615": 622, + "11616": 684, + "11617": 752, + "11618": 632, + "11619": 788, + "11620": 567, + "11621": 788, + "11631": 515, + "11800": 531, + "11807": 838, + "11810": 390, + "11811": 390, + "11812": 390, + "11813": 390, + "11822": 531, + "19904": 896, + "19905": 896, + "19906": 896, + "19907": 896, + "19908": 896, + "19909": 896, + "19910": 896, + "19911": 896, + "19912": 896, + "19913": 896, + "19914": 896, + "19915": 896, + "19916": 896, + "19917": 896, + "19918": 896, + "19919": 896, + "19920": 896, + "19921": 896, + "19922": 896, + "19923": 896, + "19924": 896, + "19925": 896, + "19926": 896, + "19927": 896, + "19928": 896, + "19929": 896, + "19930": 896, + "19931": 896, + "19932": 896, + "19933": 896, + "19934": 896, + "19935": 896, + "19936": 896, + "19937": 896, + "19938": 896, + "19939": 896, + "19940": 896, + "19941": 896, + "19942": 896, + "19943": 896, + "19944": 896, + "19945": 896, + "19946": 896, + "19947": 896, + "19948": 896, + "19949": 896, + "19950": 896, + "19951": 896, + "19952": 896, + "19953": 896, + "19954": 896, + "19955": 896, + "19956": 896, + "19957": 896, + "19958": 896, + "19959": 896, + "19960": 896, + "19961": 896, + "19962": 896, + "19963": 896, + "19964": 896, + "19965": 896, + "19966": 896, + "19967": 896, + "42192": 686, + "42193": 603, + "42194": 603, + "42195": 770, + "42196": 611, + "42197": 611, + "42198": 775, + "42199": 656, + "42200": 656, + "42201": 512, + "42202": 698, + "42203": 703, + "42204": 685, + "42205": 575, + "42206": 575, + "42207": 863, + "42208": 748, + "42209": 557, + "42210": 635, + "42211": 695, + "42212": 695, + "42213": 684, + "42214": 684, + "42215": 752, + "42216": 775, + "42217": 512, + "42218": 989, + "42219": 685, + "42220": 611, + "42221": 686, + "42222": 684, + "42223": 684, + "42224": 632, + "42225": 632, + "42226": 295, + "42227": 787, + "42228": 732, + "42229": 732, + "42230": 557, + "42231": 767, + "42232": 300, + "42233": 300, + "42234": 596, + "42235": 596, + "42236": 300, + "42237": 300, + "42238": 588, + "42239": 588, + "42564": 635, + "42565": 521, + "42566": 354, + "42567": 338, + "42572": 1180, + "42573": 1028, + "42576": 1029, + "42577": 906, + "42580": 1080, + "42581": 842, + "42582": 977, + "42583": 843, + "42594": 1062, + "42595": 912, + "42596": 1066, + "42597": 901, + "42598": 1178, + "42599": 1008, + "42600": 787, + "42601": 612, + "42602": 855, + "42603": 712, + "42604": 1358, + "42605": 1019, + "42606": 879, + "42634": 782, + "42635": 685, + "42636": 611, + "42637": 583, + "42644": 686, + "42645": 634, + "42648": 1358, + "42649": 1019, + "42760": 493, + "42761": 493, + "42762": 493, + "42763": 493, + "42764": 493, + "42765": 493, + "42766": 493, + "42767": 493, + "42768": 493, + "42769": 493, + "42770": 493, + "42771": 493, + "42772": 493, + "42773": 493, + "42774": 493, + "42779": 369, + "42780": 369, + "42781": 252, + "42782": 252, + "42783": 252, + "42786": 385, + "42787": 356, + "42788": 472, + "42789": 472, + "42790": 752, + "42791": 634, + "42792": 878, + "42793": 709, + "42794": 614, + "42795": 541, + "42800": 491, + "42801": 521, + "42802": 1250, + "42803": 985, + "42804": 1203, + "42805": 990, + "42806": 1142, + "42807": 981, + "42808": 971, + "42809": 818, + "42810": 971, + "42811": 818, + "42812": 959, + "42813": 818, + "42814": 703, + "42815": 549, + "42816": 656, + "42817": 583, + "42822": 680, + "42823": 392, + "42824": 582, + "42825": 427, + "42826": 807, + "42827": 704, + "42830": 1358, + "42831": 1019, + "42832": 603, + "42833": 635, + "42834": 734, + "42835": 774, + "42838": 787, + "42839": 635, + "42852": 605, + "42853": 635, + "42854": 605, + "42855": 635, + "42880": 557, + "42881": 278, + "42882": 735, + "42883": 634, + "42889": 337, + "42890": 376, + "42891": 401, + "42892": 275, + "42893": 686, + "42894": 487, + "42896": 772, + "42897": 667, + "42912": 775, + "42913": 635, + "42914": 656, + "42915": 579, + "42916": 748, + "42917": 634, + "42918": 695, + "42919": 411, + "42920": 635, + "42921": 521, + "42922": 801, + "43000": 577, + "43001": 644, + "43002": 915, + "43003": 575, + "43004": 603, + "43005": 863, + "43006": 295, + "43007": 1199, + "61184": 213, + "61185": 238, + "61186": 257, + "61187": 264, + "61188": 267, + "61189": 238, + "61190": 213, + "61191": 238, + "61192": 257, + "61193": 264, + "61194": 257, + "61195": 238, + "61196": 213, + "61197": 238, + "61198": 257, + "61199": 264, + "61200": 257, + "61201": 238, + "61202": 213, + "61203": 238, + "61204": 267, + "61205": 264, + "61206": 257, + "61207": 238, + "61208": 213, + "61209": 275, + "61440": 977, + "61441": 977, + "61442": 977, + "61443": 977, + "62464": 580, + "62465": 580, + "62466": 624, + "62467": 889, + "62468": 585, + "62469": 580, + "62470": 653, + "62471": 882, + "62472": 555, + "62473": 580, + "62474": 1168, + "62475": 589, + "62476": 590, + "62477": 869, + "62478": 580, + "62479": 589, + "62480": 914, + "62481": 590, + "62482": 731, + "62483": 583, + "62484": 872, + "62485": 589, + "62486": 895, + "62487": 589, + "62488": 589, + "62489": 590, + "62490": 649, + "62491": 589, + "62492": 589, + "62493": 599, + "62494": 590, + "62495": 516, + "62496": 580, + "62497": 584, + "62498": 580, + "62499": 580, + "62500": 581, + "62501": 638, + "62502": 955, + "62504": 931, + "62505": 808, + "62506": 508, + "62507": 508, + "62508": 508, + "62509": 508, + "62510": 508, + "62511": 508, + "62512": 508, + "62513": 508, + "62514": 508, + "62515": 508, + "62516": 518, + "62517": 518, + "62518": 518, + "62519": 787, + "62520": 787, + "62521": 787, + "62522": 787, + "62523": 787, + "62524": 546, + "62525": 546, + "62526": 546, + "62527": 546, + "62528": 546, + "62529": 546, + "63173": 612, + "64256": 689, + "64257": 630, + "64258": 630, + "64259": 967, + "64260": 967, + "64261": 686, + "64262": 861, + "64275": 1202, + "64276": 1202, + "64277": 1196, + "64278": 1186, + "64279": 1529, + "64285": 224, + "64286": 0, + "64287": 331, + "64288": 636, + "64289": 856, + "64290": 774, + "64291": 906, + "64292": 771, + "64293": 843, + "64294": 855, + "64295": 807, + "64296": 875, + "64297": 838, + "64298": 708, + "64299": 708, + "64300": 708, + "64301": 708, + "64302": 668, + "64303": 668, + "64304": 668, + "64305": 578, + "64306": 412, + "64307": 546, + "64308": 653, + "64309": 355, + "64310": 406, + "64312": 648, + "64313": 330, + "64314": 537, + "64315": 529, + "64316": 568, + "64318": 679, + "64320": 399, + "64321": 649, + "64323": 640, + "64324": 625, + "64326": 593, + "64327": 709, + "64328": 564, + "64329": 708, + "64330": 657, + "64331": 272, + "64332": 578, + "64333": 529, + "64334": 625, + "64335": 629, + "64338": 941, + "64339": 982, + "64340": 278, + "64341": 302, + "64342": 941, + "64343": 982, + "64344": 278, + "64345": 302, + "64346": 941, + "64347": 982, + "64348": 278, + "64349": 302, + "64350": 941, + "64351": 982, + "64352": 278, + "64353": 302, + "64354": 941, + "64355": 982, + "64356": 278, + "64357": 302, + "64358": 941, + "64359": 982, + "64360": 278, + "64361": 302, + "64362": 1037, + "64363": 1035, + "64364": 478, + "64365": 506, + "64366": 1037, + "64367": 1035, + "64368": 478, + "64369": 506, + "64370": 646, + "64371": 646, + "64372": 618, + "64373": 646, + "64374": 646, + "64375": 646, + "64376": 618, + "64377": 646, + "64378": 646, + "64379": 646, + "64380": 618, + "64381": 646, + "64382": 646, + "64383": 646, + "64384": 618, + "64385": 646, + "64386": 445, + "64387": 525, + "64388": 445, + "64389": 525, + "64390": 445, + "64391": 525, + "64392": 445, + "64393": 525, + "64394": 483, + "64395": 552, + "64396": 483, + "64397": 552, + "64398": 895, + "64399": 895, + "64400": 476, + "64401": 552, + "64402": 895, + "64403": 895, + "64404": 476, + "64405": 552, + "64406": 895, + "64407": 895, + "64408": 476, + "64409": 552, + "64410": 895, + "64411": 895, + "64412": 476, + "64413": 552, + "64414": 734, + "64415": 761, + "64416": 734, + "64417": 761, + "64418": 278, + "64419": 302, + "64426": 698, + "64427": 632, + "64428": 527, + "64429": 461, + "64467": 824, + "64468": 843, + "64469": 476, + "64470": 552, + "64471": 483, + "64472": 517, + "64473": 483, + "64474": 517, + "64475": 483, + "64476": 517, + "64478": 483, + "64479": 517, + "64484": 783, + "64485": 833, + "64486": 278, + "64487": 302, + "64488": 278, + "64489": 302, + "64508": 783, + "64509": 833, + "64510": 278, + "64511": 302, + "65024": 0, + "65025": 0, + "65026": 0, + "65027": 0, + "65028": 0, + "65029": 0, + "65030": 0, + "65031": 0, + "65032": 0, + "65033": 0, + "65034": 0, + "65035": 0, + "65036": 0, + "65037": 0, + "65038": 0, + "65039": 0, + "65056": 0, + "65057": 0, + "65058": 0, + "65059": 0, + "65136": 293, + "65137": 293, + "65138": 293, + "65139": 262, + "65140": 293, + "65142": 293, + "65143": 293, + "65144": 293, + "65145": 293, + "65146": 293, + "65147": 293, + "65148": 293, + "65149": 293, + "65150": 293, + "65151": 293, + "65152": 470, + "65153": 278, + "65154": 305, + "65155": 278, + "65156": 305, + "65157": 483, + "65158": 517, + "65159": 278, + "65160": 305, + "65161": 783, + "65162": 833, + "65163": 278, + "65164": 302, + "65165": 278, + "65166": 305, + "65167": 941, + "65168": 982, + "65169": 278, + "65170": 302, + "65171": 524, + "65172": 536, + "65173": 941, + "65174": 982, + "65175": 278, + "65176": 302, + "65177": 941, + "65178": 982, + "65179": 278, + "65180": 302, + "65181": 646, + "65182": 646, + "65183": 618, + "65184": 646, + "65185": 646, + "65186": 646, + "65187": 618, + "65188": 646, + "65189": 646, + "65190": 646, + "65191": 618, + "65192": 646, + "65193": 445, + "65194": 525, + "65195": 445, + "65196": 525, + "65197": 483, + "65198": 552, + "65199": 483, + "65200": 552, + "65201": 1221, + "65202": 1275, + "65203": 838, + "65204": 892, + "65205": 1221, + "65206": 1275, + "65207": 838, + "65208": 892, + "65209": 1209, + "65210": 1225, + "65211": 849, + "65212": 867, + "65213": 1209, + "65214": 1225, + "65215": 849, + "65216": 867, + "65217": 925, + "65218": 949, + "65219": 796, + "65220": 820, + "65221": 925, + "65222": 949, + "65223": 796, + "65224": 820, + "65225": 597, + "65226": 532, + "65227": 597, + "65228": 482, + "65229": 597, + "65230": 532, + "65231": 523, + "65232": 482, + "65233": 1037, + "65234": 1035, + "65235": 478, + "65236": 506, + "65237": 776, + "65238": 834, + "65239": 478, + "65240": 506, + "65241": 824, + "65242": 843, + "65243": 476, + "65244": 552, + "65245": 727, + "65246": 757, + "65247": 305, + "65248": 331, + "65249": 619, + "65250": 666, + "65251": 536, + "65252": 578, + "65253": 734, + "65254": 761, + "65255": 278, + "65256": 302, + "65257": 524, + "65258": 536, + "65259": 527, + "65260": 461, + "65261": 483, + "65262": 517, + "65263": 783, + "65264": 833, + "65265": 783, + "65266": 833, + "65267": 278, + "65268": 302, + "65269": 570, + "65270": 597, + "65271": 570, + "65272": 597, + "65273": 570, + "65274": 597, + "65275": 570, + "65276": 597, + "65279": 0, + "65529": 0, + "65530": 0, + "65531": 0, + "65532": 0, + "65533": 1025 + }, + "CIDtoGID_Compressed": true, + "CIDtoGID": "eJzt3AW087iZOHxJli3LliUZXmZmZmZmZmZmZmZmZmZmZmZmZmb+p3e780230+60M+3sfqvfObIl+ZH82E6cm9yTAPAbaQADHRiAABNQYAEbMOAADgSQwAUe8EEAwoHwIAKICCKByCAKiAqigeggBogJYoHYIA6IC+KB+CABSAgSgcQgCUgKkoHkIAVICVKB1CANSAvSgfQgA8gIMoHMIAvICrKB7CAHyAlygdwgD8gL8oH8oAAoCAqBwqAIKAqKgeKgBCgJSoHSoAwoC8qB8qACqAgqgcqgCqgKqoHqoAaoCWr91oMPqQ3qgLqgHqgPGoCGoBFoDJqApqAZaA5agJagFWgN2oC2oB1oDzqAjqAT6Ay6gK6gG+gOeoCeoBfoDfqAvqAf6A8GgIFgEBgMhoChYBgYDkaAkWAUGA3GgLFgHBgPJoCJYBKYDKaAqWAamA5mgJlgFpgN5oC5YB6YDxaAhWARWAyWgKVgGVgOVoCVYBVYDdaAtWAdWA82gI1gE9gMtoCtYBvYDnaAnWAX2A32gL1gH9gPDoCD4BA4DI6Ao+AYOA5OgJPgFDgNzoCz4Bw4Dy6Ai+ASuAyugKvgGrgOboCb4Ba4De6Au+AeuA8egIfgEXgMnoCn4Bl4Dl6Al+AVeA3egLfgHXgPPoCP4BP4DL6Ar+Ab+A5+QAAhRFCDGOrQgASakEIL2pBBB3IooIQu9KAPAxgOhocRYEQYCUaGUWBUGA1GhzFgTBgLxoZxYFwYD8aHCWBCmAgmhklgUpgMJocpYEqYCqaGaWBamA6mhxlgRpgJZoZZYFaYDWaHOWBOmAvmhnlgXpgP5ocFYEFYCBaGRWBRWAwWhyVgSVgKloZlYFlYDpaHFWBFWAlWhlVgVVgNVoc1YE1YC9aGdWBdWA\/Whw1gQ9gINoZNYFPYDDaHLWBL2Aq2hm1gW9gOtocdYEfYCXaGXWBX2A12hz1gT9gL9oZ9YF\/YD\/aHA+BAOAgOhkPgUDgMDocj4Eg4Co6GY+BYOA6OhxPgRDgJToZT4FQ4DU6HM+BMOAvOhnPgXDgPzocL4EK4CC6GS+BSuAwuhyvgSrgKroZr4Fq4Dq6HG+BGuAluhlvgVrgNboc74E64C+6Ge+BeuA\/uhwfgQXgIHoZH4FF4DB6HJ+BJeAqehmfgWXgOnocX4EV4CV6GV+BVeA1ehzfgTXgL3oZ34F14D96HD+BD+Ag+hk\/gU\/gMPocv4Ev4Cr6Gb+Bb+A6+hx\/gR\/gJfoZf4Ff4DX6HPxBAECGkIYx0ZCCCTESRhWzEkIM4EkgiF3nIRwEKh8KjCCgiioQioygoKoqGoqMYKCaKhWKjOCguiofiowQoIUqEEqMkKClKhpKjFCglSoVSozQoLUqH0qMMKCPKhDKjLCgryoayoxwoJ8qFcqM8KC\/Kh\/KjAqggKoQKoyKoKCqGiqMSqCQqhUqjMqgsKofKowqoIqqEKqMqqCqqhqqjGqgmqoVqozqoLqqH6qMGqCFqhBqjJqgpaoaaoxaoJWqFWqM2qC1qh9qjDqgj6oQ6oy6oK+qGuqMeqCfqhXqjPqgv6of6owFoIBqEBqMhaCgahoajEWgkGoVGozFoLBqHxqMJaCKahCajKWgqmoamoxloJpqFZqM5aC6ah+ajBWghWoQWoyV\/ui2hpWgZWv6fNym04s\/rlf\/19oVWodVoDVqL1qH1aAPaiDahzWgL2oq2oe1oB9qJdqHdaA\/ai\/ah\/egAOogOocPoCDqKjqHj6AQ6iU6h0+gMOovOofPoArqILqHL6Aq6iq6h6+gGuoluodvoDrqL7qH76AF6iB6hx+gJeoqeoefoBXqJXqHX6A16i96h9+gD+og+oc\/oC\/qKvqHv6If2pxcYqCFN+\/OLDdb00NIIFaKZGtUszdaY5vydlyeuCU1qruZpvhZo4cL6wmsRtIhaJC2yFuWnuKhaNC26FkOLqcXSYofacUIlrhZPi68l0BJqibTEWhItqZZMS66l0FJqqbTUWhotrZZOS69lCEVm1DJpmbUsWlYtm5Zdy6Hl1HJpubU8Wl4tn5ZfK6AV1ApphbUiWlGtmFZcK6GV1EpppbUyWlmtnFZeq6BV1CpplbUqWlWtmlZdq6HV1GpptbU6Wl2tnlZfa6A11BppjbUmWlOtmdZca6G11FpprbU2WlutndZe66B11DppnbUuWletm9Zd66H11HppvbU+Wl+tn9ZfG6AN1AZpg7Uh2lBtmDZcG6GN1EZpo7Ux2lhtnDZem6BN1CZpk7Up2lRtmjZdm6HN1GZps7U52lxtnjZfW6At1BZpi7Ul2lJtmbZcW6Gt1FZpq7U12lptnbZe26Bt1DZpm7Ut2lZtm7Zd26Ht1HZpu7U92l5tn7ZfO6Ad1A5ph7Uj2lHtmHZcO6Gd1E5pp7Uz2lntnHZeu6Bd1C5pl7Ur2lXtmnZdu6Hd1G5pt7U72l3tnnZfe6A91B5pj7Un2lPtmfZce6G91F5pr7U32lvtnfZe+6B91D5pn7Uv2lftm\/Zd+4EBhhhhDWOsYwMTbGKKLWxjhh3MscASu9jDPg5wOBweR8ARcSQcGUfBUXE0HB3HwDFxLBwbx8FxcTwcHyfACXEinBgnwUlxMpwcp8ApcSqcGqfBaXE6nB5nwBlxJpwZZ8FZcTacHefAOXEunBvnwXlxPpwfF8AFcSFcGBfBRXExXByXwCVxKVwal8FlcTlcHlfAFXElXBlXwVVxNVwd18A1cS1cG9fBdXE9XB83wA1xI9wYN8FNcTPcHLfALXEr3Bq3wW1xO9wed8AdcSfcGXfBXXE33B33wD1xL9wb98F9cT\/cHw\/AA\/EgPBgPwUPxMDwcj8Aj8Sg8Go\/BY\/E4PB5PwBPxJDwZT8FT8TQ8Hc\/AM\/EsPBvPwXPxPDwfL8AL8SK8GC\/BS\/EyvByvwCvxKrwar8Fr8Tq8Hm\/AG\/EmvPmXn4F4C96Kt+HteAfeiXfh3XgP3ov34f34AD6ID+HD+Ag+io\/h4\/gEPolP4dP4DD6Lz+Hz+AK+iC\/hy\/gKvoqv4ev4Br4ZNt8tfBvfwXfxPXwfPwi1H+JH+DF+gp\/iZ\/g5foFf4lf4NX6D3+J3+D3+gD\/iT\/gz\/oK\/4m\/4O\/6hAx3qSNd0rOu6oRPd1Klu6bbOdEfnAOhCl7\/+z7\/\/ju7qnu7rgR5OD69H0CPqkfTIehQ9qh5Nj67H0GPqsfTYehw9blhsPD3+X41PoCfUE+mJ9SR6Uj2ZnlxPoafUU+mp9TR6Wj2dnl7PoGfUM+mZ9Sx6Vj2bnl3PoefUc\/1sfG49j55Xz6fn\/xW5FtALhpaF9MKhZZG\/2lr0Z\/Vif14XD5USekm9lF5aL6OX1cvp5fUKekW9kl5Zr6JX1avp1fUaek29ll5br6PX1evp9fUGesOfzdRIb6w30ZvqzfTmegu9pd5Kb6230dvq7fT2ege9o95J76x30bvq3fTuoegeYWN6\/mx8L7233kfvq\/fT++sD9IH6IH2wPkQfqg\/Th+sj9JH6qD\/Hjf5pxBh9rD5OH69P0Cfqk\/TJ+hR9qj5Nn67P0Gfqs\/TZ+hx9rj5Pn68v0Bfqi\/TF+hJ9qb5MX66v0Ffqq\/TV+hp9rb5OX69v0Dfqm\/TN+hZ9q75N367v0Hfqu\/Td+h59r75P368f0A\/qh\/TD+hH9qH5MP66f0E\/qp\/TT+hn9rH5OP69f0C\/ql\/7iDF\/Wr+hXw2rX9Ouh5Y1QufnT1lv\/\/RX8hWt6W7+j39Xv6ff1B\/pD\/ZH+WH\/yz8yj\/GvoT\/Vn+nP9hf5Sf6W\/1t\/ob\/V3+nv9g\/5R\/6R\/1r\/oX\/Vv+nf9hwEMaCBDM7ChG4ZBDNOghmXYBjMcgxvCkIZreIb\/H7MagRHOCG9EMCIakYzIRhQjqhHNiB62JYYR04j1Rx6xoiiKoiiKoij\/Nxmx\/+gMQjnEMeKGlvHC6vGNBKFlwrB6or+ISmwkMZIayUK15EYKI6WRykhtpDHShtrpjPRGhtA6Y6hkCovNbGQJLbMa2YzsRg4jp5HLyG3kMfIa+Yz8RgGjYGhbIaOwEfYJi1HUKGYUN0oYJUP1UqFS2ihjlDXKGeWNCmHbKxqVjMpGFaOqUc2obtQwahph\/7U0aht1\/o0nSVGUX2DUNeoZ9Y0GRkOjkdHYaGI0NZoZzY0WRkujldHaaGO0NdoZ7Y0ORkejk9HZ6GJ0NboZ3Y0eRk+jl9Hb6GP0NfoZ\/Y0BxkBj0C\/OP9gYYgw1hhnDjRHGSGOUMdoYY4w1xhnjjQnGRGOSMdmYYkw1phnTjRnGTGOWMduYY8w15hnzjQXGQmORsdhYYiw1lhnLjRXGSmOVsdpYY6w11hnr\/91nSlEURfmfxdhgbDQ2GZuNLcZWY1uovd3YYew0dhm7jT3GXmOfsd84YBw0DhmHjSPGUeOYcdw4YZwMxZ0yThtnjLPGOeO8ccG4aFwyLhtXjKvGNeO6ccO4adwybht3jLvGPeO+8cB4aDwKjXlsPDGeGs+M58YL46XxynhtvDHeGu+M98YH46PxyfhsfDG+Gt9Ckd+NHwQQSBDRCAaA6MQghJiEEovYhBGHcCKIJC7xiE8CEo6EJxFIRBKJRCZRSFQSjUQnMUhMEovEJnFIXBKPxCcJSEKSiCQmSUhSkowkJylISpKKpCZpSFqSjqQnGUhGkolkJllIVpKNZCc5SE6Si+QmeUheko\/kJwVIQVKIFCZFSFFSjBQnJUhJUoqUJmVIWVKOlCcVSEVSiVQmVUhVUo1UJzVITVKL1CZ1SF1Sj9QnDUhD0og0Jk1IU9KMNP\/T2SctSEvSirQmbUhb0o60Jx1IR9KJdCZdSFfSjXQnPUhP0ov0Jn1IX9KP9CcDyEAyiAwmQ8hQMowMJyPISDKKjCZjyFgyjownE8hEMik072QyhUwl08h0MoPMJLPIbDKHzCXzyHyygCwki8hisoQsJcvIcrKCrCSryGqyhqwl6\/7ro4OsJxvIRrKJbCZbyFayjWwnO8hOsovsJnvIXrKP7CcHyEFyiBwmR8hRcowcJyfISXKKnCZnyFlyjpwnF8hFcolcJlfIVXKNXCc3yE1yi9wmd8jd0Pz3yH3ygDwkj8hj8oQ8Jc\/Ic\/KCvCSvyGvyhrwl70Ix78kH8pF8Ip\/JF\/KVfCPfyQ8TmNBEpmZiUzcNk5imSU3LtE1mOib\/60e5KUxpuqZn+mZghjPDmxHMiGYkM7IZxYxqRjOjmzHMmD\/FxjJjm3HMuGY8M76ZwExoJjITm0nMpGayX5g3uZnCTGmmMlObacy0ZjozvZnBzGhmMjObWcysZrbf73n6C\/vOHrbM8a\/cx7+TmdPM9d9H\/QPz5TbzmHnNfGZ+s4BZ0CxkFv6FmCJmUbOYWdwsYZY0S5mlzTJmWbOcWd6sYFY0K5mVzSpmVbOaWd2sYdY0a5m1zTpmXbOeWd9s8HtmqiiKoiiKoiiK8q9nNjQbmY3NJmZTs5nZ3GxhtjRbma3NNmZbs53Z3uxgdjQ7mZ3NLmbXUGw3s7vZw+xp9jJ7m33MvmY\/s785wBxoDjIHh801xBxqDjOHmyPMkeYoc7Q5JtQ31hxnjjcnmBPNSeZkc4o51ZxmTjdnmDPNWeZsc44515xnzjcXmAvNReZic4m51FxmLjdXmCvNVeZqc4251lxnrjc3mBvNTeZmc4u51dxmbjd3hGbeae4yd5t7zL3mPnO\/ecA8aB4yD5tHzKPmsb95tMfNE2Hrk6Fy6r9sO\/0PnLUz5lnznHnevGBeNC+Zl80r5lXzmnndvGHeNG+Zt8075l3znnnffGA+NB+Zj80n5lPzmfncfGG+NF+Zr8035lvznfne\/PDTjB\/NT+Zn84v51fz2D13A38j8bv6ggEKKqEYx1alBCTUppRa1KaMO5VRQSV3qUZ8GNBwNTyPQiDQSjUyj0Kg0Go1OY9CYNBaNTePQuDQejU8T0IQ0EU1Mk9CkNBlNTlPQlDQVTU3T0LQ0HU1PM9CMNBPNTLPQrDQbzU5z0Jw0F81N89C8NB\/NTwvQgrQQLUyL0KK0GC1OS9CStBQtTcvQsrQcLU8r0Iq0Eq1Mq9CqtBqtTmvQmrQWrU3r0Lq0Hq1PG9CGtBFtTJvQprQZbU5b0Ja0FW1N29C2tB1tTzvQjrQT7Uy70K60G+1Oe9CetBftTfvQvrQf7U8H0IF0EB1Mh9ChdBgdTkfQkXQUHU3H0LF0HB1PJ9CJdBKdTKfQqXQanU5n0Jl0Fp1N59C5dB6dTxfQhXQRXUyX0KV0GV1OV9CVdBVdTdfQtXQdXU830I10E91Mt9CtdBvdTnfQnXQX3U330L10H91PD9CD9BA9TI\/Qo\/QYPU5P0JP0FD1Nz9Cz9Bw9Ty\/Qi\/QSvUyv0Kv0Gr1Ob9Cb9Ba9Te\/Qu\/QevU8f0If0EX1Mn9Cn9Bl9Tl\/Ql\/QVfU3f0Lf0HX1PP9CP9NN\/Xn\/6mX6hX+k3+p3+sIAFLWRpFrZ0y7CIZVrUsizbYpZjcUv8Kd6Slmt5lm8FVth36azwVgQrohXJimxFsaJa0azoVgwrphXLim3FseJa8az4VgIroZXISmwlsZJayazkVgorpZXKSm2lsdJa6az0VgYro5XJymxlCZsvq5XNym7lsHJaYZ8FWbmtPFZeK5+V3ypgFbQKhXoKh0qRUCkaKsWs4lYJq6RVyiptlbHKWuWs8lYFq6JVyapsVbGqWtWs6lYNq6ZVy6pt1bHqWvWs+lYDq6HVyGpsNQmbv6nVzGputbBaWq2s1lYbq63VzmpvdbA6Wp2szlYXq6vVzepu9bB6Wr2s3lYfq6\/Vz+pvDbAGWoOswdYQa6g1zBpujbBGWqOs0dYYa6w1zhpvTbAmWpOsydYUa6o1zZpuzbBmhvY1y5ptzbHmWvOs+dYCa6G1yFpsLbGWWsus5daK0PaV1iprtbXGWmuts9ZbG6yN1iZrs7XF2mptC8t1u7XD2mntsnZbe0KtvdY+a791wDpoHbIOW0eso9Yx67h1wjppnbJOW2ess9Y563zYuAvWRetSaH3ZumJdta5Z160b1k3rlnU71HfHumvds+5bD6yH1iPrsfXEemo9s55bL6yX1ivrtfXGemu9s95bH6yP1ifrs\/XF+mp9s75bP2xgQxvZmo1t3TZsYps2tS3btpnt2NwWtrRd27N9O7DD2eHtCHZEO5Id2Y5iR7Wj2dHtGHZMO5Yd245jx7Xj2fHtBHZCO5Gd2E5iJ7WT2cntFHZKO5Wd2k5jp7XT2entDHZGO5Od2c5iZ7Wz2dntHHZOO5ed285j57Xz2fntAv\/fPc0uaBeyC9tF7KJ2Mbu4XSKsr6Rdyi5tl7HL2uXs8nYFu6Jdya5sV7Gr2tXs6nYNu6Zdy65t17Hr2vXs+nYDu6HdyG4cGtfEbmo3s5vbLeyWdiu7td3Gbmu3s9vbHf68r452J7uz3cXuanezu9s97J52L7u33cfua\/ez+9sD7IH2IHuwPcQeag8Lix9uj7BHhtVG\/Zr7sz3aHvNTfaw97s+18faEn3on\/tp7\/S\/OP8mebE+xp9rT7On2DHumPcueHeqdY8+159nz7QX2QnuRvdheYi+1l9nL7RX2SnuVvdpeY6+119nr7Q32RnuTvdneYm+1t9nb7R32TnuXvdveY++199n77QP2QfuQfdg+Yh+1j9nH7RP2SfuUfdo+Y5+1z9nn7Qv2RfuSfdm+Yl+1r9nX7Rv2TftWaP+3w3K7Eyp37Xv2ffuB\/dB+ZD+2n9hP7Wf2c\/uF\/dJ+Zb+239hv7Xf2e\/uD\/dH+ZH+2v9hf7W\/2d\/sHAwwyxDSGmc4MRpjJKLOYzRhzGGeCSeYyj\/ksYOFYeBaBRWSR\/uOMsMg\/Pz8sCovKorHoLAaLyWKx2CwOi8visfgsAUvIErHELAlLypKx5CwFS8lSsdQsDUvL0rH0LAPLyDKxzCwLy8qysewsB8vJcrHcLA\/Ly\/Kx\/KwAK8gKscKsCCvKirHirAQryUqx0qwMK8vKsfKsAqvIKrHKrAqryqqx6qwGq8lqsdqsDqvL6rH6rAFryBqxxqwJa8qaseasBWvJWrHWrA1ry9qx9qwD68g6sc6sC+vKurHurAfryXqx3qwP68v6sf5sABvIBrHBbAgbyoax4WwEG8lGsdFsDBvLxrHxbAKbyCaxyWwKm8qmselsBpvJZrHZbA6by+ax+WwBW8gWscVsCVvKlrHlbAVbyVax1WwNW8vWsfVsA9vINrHNbAvbyrax7WwH28l2sd1sD9vL9rH97AA7yA6xw+wIO8qOsePsBDvJTrHT7Aw7y86x8+wCu8guscvsCrvKrrHr7Aa7yW6x2+wOu8vusfvsAXvIHrHH7Al7yp6x5+wFe8lesdfsDXvL3rH37AP7yD6xz+wL+8q+se\/shwMc6CBHc7CjO4ZDHNOhjuXYDnMchzvCkY7reI7vBE44J7wTwYnoRHIiO1GcqE40J7oTw4npxHJiO3GcuE48J76TwEnoJHISO0mcpE4yJ7mTwknppHJSO2mctE46J72TwcnoZHIyO1mcrE42J7uTw8np5HJyO3mcvE4+J79TwCnoFHIKO0Wcok4xp7hTwinplHJKO2Wcsk45p7xTwanoVHIqO1Wcqk41p7pTw6np1HJqO3Wcuk49p77TwGnoNHIaO02cpk4zp7nTwmnptHJaO22ctk47p73TwenodHI6O12crk43p7vTw+np9HJ6O32cvk4\/p78zwBnoDHIGO0Ococ4wZ7gzwhnpjHJGO2Ocsc44Z7wzwZnoTHImO1OcqT9\/PjjTnOlh6xnOTGeWM9uZ48wNa89z5jsLnIXOorDWYmfJb7kr\/d6cpc4y56dfQ3DCfg3BWfkLcav+5gyr\/6K1xlnrrHPWOxucjc4mZ7OzxdnqbHO2Ozucnc4uZ7ezx9nr7HP2\/8asDzgHf2XkoVA5HFY78tv2+c9wjjp\/8x3Xv3zfx50TzknnlHPaOeOcdc45550Lf1Qu\/xs5F51LzmXninPVueZcd244N51bzm3njnPXuefcdx44D51HzmPnifPUeeY8d144L51XzmvnjfPWeee8dz44H51Pzmfni\/PV+eZ8d35wwCFHXOOY69zghJuccovbnHGHcy645C73uM8DHo6H5xF4RB6JR+ZReFQejUfnMXhMHovH5nF4XB6Px+cJeEKeiCfmSXhSnown5yl4Sp6Kp+ZpeFqejqfnGXhGnoln5ll4Vp6NZ+c5eE6ei+fmeXheno\/n5wV4QV6IF+ZFeFFejBfnJXhJXoqX5mV4WV6Ol+cVeEVeiVfmVXhVXo1X5zV4TV6L1+Z1eF1ej9fnDXhD3og35k14U96MN+cteEveirfmbXhb3o635x14R96Jd+ZdeFfejXfnPXhP3ov35n14X96P9+cD+EA+iA\/mQ\/hQPowP5yP4SD6Kj+Zj+Fg+jo\/nE\/hEPolP5lP4VD6NT+cz+Ew+i8\/mc\/hcPo\/P5wv4Qr6IL+ZL+FK+jC\/nK\/hKvoqv5mv4Wr6Or+cb+Ea+iW\/mW\/hWvo1v5zv4Tr6L7+Z7+F6+j+\/nB\/hBfogf5kf4UX6MH+cn+El+ip\/mZ\/hZfo6f5xf4RX6JX+ZX+FV+jV\/nN\/hNfovf5nf4XX6P3+cP+EP+iD\/mT\/hT\/ow\/5y\/4S\/6Kv+Zv+Fv+jr\/nH\/hH\/ol\/5l\/4V\/6Nf+c\/BBBQIKEJLHRhCCJMQYUlbMGEI7gQQgpXeMIXgQgnwosIIqKIJCKLKCKqiCaiixgipoglYos4Iq6IJ+KLBCKhSCQSiyQiqUgmkosUIqVIJVKLNCKtSCfSiwwio8gkMossIqvIJrKLHCKnyCVyizwir8gn8osCoqAoJAqLIqKoKCaKixKipCglSosyoqwoJ8qLCqKiqCQqiyqiqqgmqosaoqaoJWqLOqKuqCfqiwaioWgkGosmoqloJpqLFqKlaCVaizaiLQCinWgvOoiOopPoLLqIrqKb6C56iJ6il+gt+oi+op\/oLwaIgWKQGCyGiKFimBguRvzl80+MFKPEaDHml5+dv44Y+5tGjxPjxQQRehchJonJYooIe70X08R0MUPMFLPEbDFHzBXzxHyxQCwUi8RisUQsFcvEcrFCrBSrxGqxRqwV68R6sUFsDI3cJDaLLWKr2Ca2ix1ip9gldos9Yq\/YJ\/aLA+KgOCQOiyPiqDgmjosT4qQ4JU6LM+KsOCfOiwviorgkLosroXmuhso1cV3cEDf\/nGnonYG4Le6Iu+KeuC8eiIdhvY\/EY\/FEPBXPxHPxQrwUr8Rr8Ua8Fe\/Ee\/FBfBSfxGfxRXwV38R38UMCCSWSmsRSl4Yk0pRUWtKWTDqSSyGldKUnfRnIcDK8jCAjykgysowio\/5HDjKajC5jyJgylowt48i4Mp6MLxPIhDKRTCyTyKQymUwuU8iUMpVMLdPItKER6WR6mUFmlJlkZplFZpXZZHaZQ+aUuWTun18HmUfm\/cevnsz3s3p+WUAWlIVkYfnTr3fIorKYLC5LyJKylCwty8iyspwsLyvIirKSrCyryKqymqwua8iaspasLevIurKerC8byIaykWwsm8imsplsLlvIlrKVbC3byLaynWwvO8iOspPsLLvIrrKb7C57yJ6yl+wt+8i+sp\/sLwfIgXKQHCyHyKFymBwuR8iRcpQcLcfIsXKcHC8nyIlykpwsp8ipcpqcLmfImXKWnC3nyLlynpwvF8iFcpFcLJfIpXKZXC5XyJVylVwt18i1cp1cLzfIjXKT3Cy3yK1ym9wud8idcpfcLffIvXKf3C8PyIPykDwsj8ij8pg8Lk\/Ik\/KUPC3PyLPynDwvL8iL8pK8LK\/Iq\/KavC5vyJvylrwt78i78p68Lx\/Ih\/KRfCyfyKfymXwuX8iX8pV8Ld\/It\/KdfC8\/yI\/yk\/wsv8iv8pv8Ln+4wIUucjUXu7pruMQ1Xeparu0y13G5K1zpuq7n+m7ghnPDuxHciG4kN7IbxY3qRnOjuzHcmG4sN7Ybx43rxnPjuwnchG4iN7GbxE3qJnOTuynclG4qN7Wbxk3rpnPTuxncjG4mN7Obxc3qZnOzuzncnG4uN7ebx83r5nPzuwXcgm4ht7BbxC3qFnOLuyXckm4pt7Rbxi3rlnPLuxXcim4lt7Jb5eePJbeqWy1sXd2t8Y8\/Ev85bk339\/gVxt+aRW33f+C3qdy6bj23vtvAbeg2chu7Tf6BkU3\/7tZmbvOf6i3clm6rX4hp7bZx27rt3PZuB7ej28nt7HZxu7rd3O5uD7en28vt\/avy6PPrc\/79uH3dfr8iqr87wB3oDnIHu0Pcoe4wd7g7wh3pjnJHu2Pcse44d7w7wZ3oTnInu1Pcqe40d7o7w53pznJnu3Pcue48d767wF3oLvo7e1jsLnGXusvc5e4Kd6W7yl3trnHXuuvcP\/S7N+4Gd+PPWpvcze4Wd6u7zd3u7nB3urvc3e4ed6+7z93vHnAPuofcw+4R96h7zD3unnBPuqfc0+6Zn0afdc+5590L7kX30i\/t63fL+bJ75V85v\/K\/lXvVveZed2+4N91b7m33jnvXvefedx+4D91H7mP3ifvUfeY+d1+4L91X7mv3TWjEW\/ed+9794H50P7mf\/+j8\/2juF\/er+8397v7wgAc95Gke9nTP8IhnetSzPNtjnuNxT3jScz3P873AC+eF9yJ4Eb1IXmQvihfVi+ZF92J4MX9pfi+WF9uL48X14nnxvQReQi+Rl9hL4iX1knnJvRReSi+Vl9pL46X10nnpvQxeRi+Tl9nL4mX1snnZvRxeTi+Xl9vL4+X18nn5vQJeQa+QV9gr4hX1innFvRJeSa+UV9or45X1ynnlf2HvFf7Fp+\/\/HK\/iX7QqhS0re1W8ql61v4qt\/u\/KSlEURVEURVEURVEURVEURVEURVEURVEURVEURVEURVEURVEURVEURVEURVEURVF+G6+GV9Or5dX26nh1vXpefa+B19Br5DX2mnhNvWZec6+F19Jr5bX22nhtvXZee6+D19Hr5HX2unhdvW5ed6+H19Pr5fX2+nh9vX5ef2+AN9Ab5A32hnhDvWHecG+EN9Ib5Y32xnhjvXHeeG+CN9Gb5E32pnhTvWne9D\/6+BVFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRF+f8Pb4Y305vlzfbmeHO9ed58b4G30FvkLfaWeEu9Zd5yb4W30lvlrfbWeGu9dd56b4O30dvkbfa2eFu9bd52b4e309vl7fb2eHu9fd5+74B30DvkHfaOeEe9Y97xP\/r4FOVPvBPeSe+Ud\/qn9hnvbNj6nHc+bH3Bu+hd8i7\/4tgr3lXvmnfdu+Hd9G55t7073l3vnnffe\/BP5vLQe+Q99p78Rd9T71nY+rn34p+b9X8H76X3ynvtvfHeeu+8994H76P3yfvsffG+et+87z9F\/fCBD33ka39q+djXfcMnvulT3\/Jtn\/nOf0b63Be+9F3f830\/8MP54f0IfkQ\/kh\/Zj+JH9aP50f0YP8XG9GP5sf04flw\/Xlg7vp\/AT+gn8hP7ScLaSf1kfytvP7mfwk\/pp\/pHj9dP7afx0\/rpftaT3s\/gZ\/Qz+Zn9LKFWVj\/b3x2f3c\/h5\/Rz+bn9PH5eP5+f3y\/gF\/xHs\/j38Qv5hf0iflG\/mF\/cL+GX\/KPzURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRFURRF+XfxS\/ml\/TJ+Wb+cX96v4Ff0K\/mV\/Sp+Vb+aX92v4df0a\/m1\/Tp+Xb+eX99v4Df0G\/mN\/+icld+P38Rv6jfzm\/\/ReSiKoiiK8u\/jt\/Bb+q381n4bv63fzm\/vd\/A7+p38zn4Xv6vfze\/u9\/B7+r383n4fv6\/fz+\/vD\/AH+oP8wf4Qf6g\/zB\/uj\/BH+qP80f4Yf6w\/LjTfeH+CP9Gf5E\/2p\/hT\/Wn+dH+GP9Of5c\/25\/hz\/Xn+fH+Bv9Bf5C\/2l\/hL\/WX+cn\/FH30OFEVR\/lj+yj86A0VRFEVR\/m\/wV\/mr\/TX+Wn+dv97f8DejNvqb\/M3+Fn\/rz\/q2+dv9Hf5Of5e\/29\/j7\/X3+fv9A\/5B\/5B\/2D\/iH\/WP+cf9E\/5J\/5R\/2j\/jn\/XP+edDoy74F\/1L\/mX\/Sqh+NVSu+ddDyxv+zdDyln\/bv+Pf9e\/59\/0H\/kP\/kf84bE9P\/Kf+M\/+5\/8J\/6b\/yX\/tv\/Lf+O\/+9\/8H\/6H\/yP\/tf\/K\/+N\/+7\/yMAAQxQoAU40AMjIIEZ0MAK7IAFTsADEcjADbzAD4IgXBA+iBBEDCIFkYMoQdQgWhA9iBHEDGIFsYM4QdwgXhA\/SBAkDBIFiYMkQdIgWZA8SBGkDFIFqYM0QdogXZA+yBBkDDIFmYMsQdafn60gW5A9yBHk\/P2uUpAryB3kCfIG+YL8QYGgYFAoKBzqLRIU\/SmiWFA8KBGUDEoFpX\/VjGWCskG5oPzvl6OiKP\/bBBWCikGloHJQJagaVAuqBzWCmkGtoHZQJ6gb1Avq\/7fjGwQNg0bB\/9j\/CQdNgqZBs6B50CJUbxm0CloHbYK2QbugfdAh6Bh0CjoHXYKuQbege9Aj6Bn0CnoHfYK+Qb+gfzAgGBgMCgYHQ4KhwbBgeDAiGBmMCkYHY4KxwbhgfDAhmBhMCiYHU4KpwbRgejAjmBnMCmYHc4K5wbxgfrAgWBgsChYHS4KlwbJgebAiWBmsClYHa4K1wbpgfbAh2BhsCjYHW4KtwbZge7Aj2BnsCnYHe4K9wb5gf3AgOBgcCg4HR4KjwbHgeHAiOBmcCk4HZ4KzwbngfHAhuBhcCi4HV4KrwbXgenAjuBncCm4Hd4K7wb3gfvAgeBg8Ch4HT4KnwbPgefAieBm8Cl4Hb4K3wbvgfdjZ+fBHXx\/l3y34GHwKPgdfgq9\/av0\/+\/tE7Q==", + "_version_": 6 +} \ No newline at end of file diff --git a/storage/fonts/Helvetica-Bold.afm.json b/storage/fonts/Helvetica-Bold.afm.json new file mode 100755 index 0000000..7ce35b0 --- /dev/null +++ b/storage/fonts/Helvetica-Bold.afm.json @@ -0,0 +1,569 @@ +{ + "codeToName": { + "32": "space", + "160": "space", + "33": "exclam", + "34": "quotedbl", + "35": "numbersign", + "36": "dollar", + "37": "percent", + "38": "ampersand", + "146": "quoteright", + "40": "parenleft", + "41": "parenright", + "42": "asterisk", + "43": "plus", + "44": "comma", + "45": "hyphen", + "173": "hyphen", + "46": "period", + "47": "slash", + "48": "zero", + "49": "one", + "50": "two", + "51": "three", + "52": "four", + "53": "five", + "54": "six", + "55": "seven", + "56": "eight", + "57": "nine", + "58": "colon", + "59": "semicolon", + "60": "less", + "61": "equal", + "62": "greater", + "63": "question", + "64": "at", + "65": "A", + "66": "B", + "67": "C", + "68": "D", + "69": "E", + "70": "F", + "71": "G", + "72": "H", + "73": "I", + "74": "J", + "75": "K", + "76": "L", + "77": "M", + "78": "N", + "79": "O", + "80": "P", + "81": "Q", + "82": "R", + "83": "S", + "84": "T", + "85": "U", + "86": "V", + "87": "W", + "88": "X", + "89": "Y", + "90": "Z", + "91": "bracketleft", + "92": "backslash", + "93": "bracketright", + "94": "asciicircum", + "95": "underscore", + "145": "quoteleft", + "97": "a", + "98": "b", + "99": "c", + "100": "d", + "101": "e", + "102": "f", + "103": "g", + "104": "h", + "105": "i", + "106": "j", + "107": "k", + "108": "l", + "109": "m", + "110": "n", + "111": "o", + "112": "p", + "113": "q", + "114": "r", + "115": "s", + "116": "t", + "117": "u", + "118": "v", + "119": "w", + "120": "x", + "121": "y", + "122": "z", + "123": "braceleft", + "124": "bar", + "125": "braceright", + "126": "asciitilde", + "161": "exclamdown", + "162": "cent", + "163": "sterling", + "165": "yen", + "131": "florin", + "167": "section", + "164": "currency", + "39": "quotesingle", + "147": "quotedblleft", + "171": "guillemotleft", + "139": "guilsinglleft", + "155": "guilsinglright", + "150": "endash", + "134": "dagger", + "135": "daggerdbl", + "183": "periodcentered", + "182": "paragraph", + "149": "bullet", + "130": "quotesinglbase", + "132": "quotedblbase", + "148": "quotedblright", + "187": "guillemotright", + "133": "ellipsis", + "137": "perthousand", + "191": "questiondown", + "96": "grave", + "180": "acute", + "136": "circumflex", + "152": "tilde", + "175": "macron", + "168": "dieresis", + "184": "cedilla", + "151": "emdash", + "198": "AE", + "170": "ordfeminine", + "216": "Oslash", + "140": "OE", + "186": "ordmasculine", + "230": "ae", + "248": "oslash", + "156": "oe", + "223": "germandbls", + "207": "Idieresis", + "233": "eacute", + "159": "Ydieresis", + "247": "divide", + "221": "Yacute", + "194": "Acircumflex", + "225": "aacute", + "219": "Ucircumflex", + "253": "yacute", + "234": "ecircumflex", + "220": "Udieresis", + "218": "Uacute", + "203": "Edieresis", + "169": "copyright", + "229": "aring", + "224": "agrave", + "227": "atilde", + "154": "scaron", + "237": "iacute", + "251": "ucircumflex", + "226": "acircumflex", + "231": "ccedilla", + "222": "Thorn", + "179": "threesuperior", + "210": "Ograve", + "192": "Agrave", + "215": "multiply", + "250": "uacute", + "255": "ydieresis", + "238": "icircumflex", + "202": "Ecircumflex", + "228": "adieresis", + "235": "edieresis", + "205": "Iacute", + "177": "plusminus", + "166": "brokenbar", + "174": "registered", + "200": "Egrave", + "142": "Zcaron", + "208": "Eth", + "199": "Ccedilla", + "193": "Aacute", + "196": "Adieresis", + "232": "egrave", + "211": "Oacute", + "243": "oacute", + "239": "idieresis", + "212": "Ocircumflex", + "217": "Ugrave", + "254": "thorn", + "178": "twosuperior", + "214": "Odieresis", + "181": "mu", + "236": "igrave", + "190": "threequarters", + "153": "trademark", + "204": "Igrave", + "189": "onehalf", + "244": "ocircumflex", + "241": "ntilde", + "201": "Eacute", + "188": "onequarter", + "138": "Scaron", + "176": "degree", + "242": "ograve", + "249": "ugrave", + "209": "Ntilde", + "245": "otilde", + "195": "Atilde", + "197": "Aring", + "213": "Otilde", + "206": "Icircumflex", + "172": "logicalnot", + "246": "odieresis", + "252": "udieresis", + "240": "eth", + "158": "zcaron", + "185": "onesuperior", + "128": "Euro" + }, + "isUnicode": false, + "FontName": "Helvetica-Bold", + "FullName": "Helvetica Bold", + "FamilyName": "Helvetica", + "Weight": "Bold", + "ItalicAngle": "0", + "IsFixedPitch": "false", + "CharacterSet": "ExtendedRoman", + "FontBBox": [ + "-170", + "-228", + "1003", + "962" + ], + "UnderlinePosition": "-100", + "UnderlineThickness": "50", + "Version": "002.000", + "EncodingScheme": "WinAnsiEncoding", + "CapHeight": "718", + "XHeight": "532", + "Ascender": "718", + "Descender": "-207", + "StdHW": "118", + "StdVW": "140", + "StartCharMetrics": "317", + "C": { + "32": 278, + "160": 278, + "33": 333, + "34": 474, + "35": 556, + "36": 556, + "37": 889, + "38": 722, + "146": 278, + "40": 333, + "41": 333, + "42": 389, + "43": 584, + "44": 278, + "45": 333, + "173": 333, + "46": 278, + "47": 278, + "48": 556, + "49": 556, + "50": 556, + "51": 556, + "52": 556, + "53": 556, + "54": 556, + "55": 556, + "56": 556, + "57": 556, + "58": 333, + "59": 333, + "60": 584, + "61": 584, + "62": 584, + "63": 611, + "64": 975, + "65": 722, + "66": 722, + "67": 722, + "68": 722, + "69": 667, + "70": 611, + "71": 778, + "72": 722, + "73": 278, + "74": 556, + "75": 722, + "76": 611, + "77": 833, + "78": 722, + "79": 778, + "80": 667, + "81": 778, + "82": 722, + "83": 667, + "84": 611, + "85": 722, + "86": 667, + "87": 944, + "88": 667, + "89": 667, + "90": 611, + "91": 333, + "92": 278, + "93": 333, + "94": 584, + "95": 556, + "145": 278, + "97": 556, + "98": 611, + "99": 556, + "100": 611, + "101": 556, + "102": 333, + "103": 611, + "104": 611, + "105": 278, + "106": 278, + "107": 556, + "108": 278, + "109": 889, + "110": 611, + "111": 611, + "112": 611, + "113": 611, + "114": 389, + "115": 556, + "116": 333, + "117": 611, + "118": 556, + "119": 778, + "120": 556, + "121": 556, + "122": 500, + "123": 389, + "124": 280, + "125": 389, + "126": 584, + "161": 333, + "162": 556, + "163": 556, + "fraction": 167, + "165": 556, + "131": 556, + "167": 556, + "164": 556, + "39": 238, + "147": 500, + "171": 556, + "139": 333, + "155": 333, + "fi": 611, + "fl": 611, + "150": 556, + "134": 556, + "135": 556, + "183": 278, + "182": 556, + "149": 350, + "130": 278, + "132": 500, + "148": 500, + "187": 556, + "133": 1000, + "137": 1000, + "191": 611, + "96": 333, + "180": 333, + "136": 333, + "152": 333, + "175": 333, + "breve": 333, + "dotaccent": 333, + "168": 333, + "ring": 333, + "184": 333, + "hungarumlaut": 333, + "ogonek": 333, + "caron": 333, + "151": 1000, + "198": 1000, + "170": 370, + "Lslash": 611, + "216": 778, + "140": 1000, + "186": 365, + "230": 889, + "dotlessi": 278, + "lslash": 278, + "248": 611, + "156": 944, + "223": 611, + "207": 278, + "233": 556, + "abreve": 556, + "uhungarumlaut": 611, + "ecaron": 556, + "159": 667, + "247": 584, + "221": 667, + "194": 722, + "225": 556, + "219": 722, + "253": 556, + "scommaaccent": 556, + "234": 556, + "Uring": 722, + "220": 722, + "aogonek": 556, + "218": 722, + "uogonek": 611, + "203": 667, + "Dcroat": 722, + "commaaccent": 250, + "169": 737, + "Emacron": 667, + "ccaron": 556, + "229": 556, + "Ncommaaccent": 722, + "lacute": 278, + "224": 556, + "Tcommaaccent": 611, + "Cacute": 722, + "227": 556, + "Edotaccent": 667, + "154": 556, + "scedilla": 556, + "237": 278, + "lozenge": 494, + "Rcaron": 722, + "Gcommaaccent": 778, + "251": 611, + "226": 556, + "Amacron": 722, + "rcaron": 389, + "231": 556, + "Zdotaccent": 611, + "222": 667, + "Omacron": 778, + "Racute": 722, + "Sacute": 667, + "dcaron": 743, + "Umacron": 722, + "uring": 611, + "179": 333, + "210": 778, + "192": 722, + "Abreve": 722, + "215": 584, + "250": 611, + "Tcaron": 611, + "partialdiff": 494, + "255": 556, + "Nacute": 722, + "238": 278, + "202": 667, + "228": 556, + "235": 556, + "cacute": 556, + "nacute": 611, + "umacron": 611, + "Ncaron": 722, + "205": 278, + "177": 584, + "166": 280, + "174": 737, + "Gbreve": 778, + "Idotaccent": 278, + "summation": 600, + "200": 667, + "racute": 389, + "omacron": 611, + "Zacute": 611, + "142": 611, + "greaterequal": 549, + "208": 722, + "199": 722, + "lcommaaccent": 278, + "tcaron": 389, + "eogonek": 556, + "Uogonek": 722, + "193": 722, + "196": 722, + "232": 556, + "zacute": 500, + "iogonek": 278, + "211": 778, + "243": 611, + "amacron": 556, + "sacute": 556, + "239": 278, + "212": 778, + "217": 722, + "Delta": 612, + "254": 611, + "178": 333, + "214": 778, + "181": 611, + "236": 278, + "ohungarumlaut": 611, + "Eogonek": 667, + "dcroat": 611, + "190": 834, + "Scedilla": 667, + "lcaron": 400, + "Kcommaaccent": 722, + "Lacute": 611, + "153": 1000, + "edotaccent": 556, + "204": 278, + "Imacron": 278, + "Lcaron": 611, + "189": 834, + "lessequal": 549, + "244": 611, + "241": 611, + "Uhungarumlaut": 722, + "201": 667, + "emacron": 556, + "gbreve": 611, + "188": 834, + "138": 667, + "Scommaaccent": 667, + "Ohungarumlaut": 778, + "176": 400, + "242": 611, + "Ccaron": 722, + "249": 611, + "radical": 549, + "Dcaron": 722, + "rcommaaccent": 389, + "209": 722, + "245": 611, + "Rcommaaccent": 722, + "Lcommaaccent": 611, + "195": 722, + "Aogonek": 722, + "197": 722, + "213": 778, + "zdotaccent": 500, + "Ecaron": 667, + "Iogonek": 278, + "kcommaaccent": 556, + "minus": 584, + "206": 278, + "ncaron": 611, + "tcommaaccent": 333, + "172": 584, + "246": 611, + "252": 611, + "notequal": 549, + "gcommaaccent": 611, + "240": 611, + "158": 500, + "ncommaaccent": 611, + "185": 333, + "imacron": 278, + "128": 556 + }, + "CIDtoGID_Compressed": true, + "CIDtoGID": "eJwDAAAAAAE=", + "_version_": 6 +} \ No newline at end of file diff --git a/storage/fonts/Helvetica-Bold.afm.php b/storage/fonts/Helvetica-Bold.afm.php old mode 100644 new mode 100755 diff --git a/storage/fonts/Helvetica-Oblique.afm.json b/storage/fonts/Helvetica-Oblique.afm.json new file mode 100755 index 0000000..4783828 --- /dev/null +++ b/storage/fonts/Helvetica-Oblique.afm.json @@ -0,0 +1,569 @@ +{ + "codeToName": { + "32": "space", + "160": "space", + "33": "exclam", + "34": "quotedbl", + "35": "numbersign", + "36": "dollar", + "37": "percent", + "38": "ampersand", + "146": "quoteright", + "40": "parenleft", + "41": "parenright", + "42": "asterisk", + "43": "plus", + "44": "comma", + "45": "hyphen", + "173": "hyphen", + "46": "period", + "47": "slash", + "48": "zero", + "49": "one", + "50": "two", + "51": "three", + "52": "four", + "53": "five", + "54": "six", + "55": "seven", + "56": "eight", + "57": "nine", + "58": "colon", + "59": "semicolon", + "60": "less", + "61": "equal", + "62": "greater", + "63": "question", + "64": "at", + "65": "A", + "66": "B", + "67": "C", + "68": "D", + "69": "E", + "70": "F", + "71": "G", + "72": "H", + "73": "I", + "74": "J", + "75": "K", + "76": "L", + "77": "M", + "78": "N", + "79": "O", + "80": "P", + "81": "Q", + "82": "R", + "83": "S", + "84": "T", + "85": "U", + "86": "V", + "87": "W", + "88": "X", + "89": "Y", + "90": "Z", + "91": "bracketleft", + "92": "backslash", + "93": "bracketright", + "94": "asciicircum", + "95": "underscore", + "145": "quoteleft", + "97": "a", + "98": "b", + "99": "c", + "100": "d", + "101": "e", + "102": "f", + "103": "g", + "104": "h", + "105": "i", + "106": "j", + "107": "k", + "108": "l", + "109": "m", + "110": "n", + "111": "o", + "112": "p", + "113": "q", + "114": "r", + "115": "s", + "116": "t", + "117": "u", + "118": "v", + "119": "w", + "120": "x", + "121": "y", + "122": "z", + "123": "braceleft", + "124": "bar", + "125": "braceright", + "126": "asciitilde", + "161": "exclamdown", + "162": "cent", + "163": "sterling", + "165": "yen", + "131": "florin", + "167": "section", + "164": "currency", + "39": "quotesingle", + "147": "quotedblleft", + "171": "guillemotleft", + "139": "guilsinglleft", + "155": "guilsinglright", + "150": "endash", + "134": "dagger", + "135": "daggerdbl", + "183": "periodcentered", + "182": "paragraph", + "149": "bullet", + "130": "quotesinglbase", + "132": "quotedblbase", + "148": "quotedblright", + "187": "guillemotright", + "133": "ellipsis", + "137": "perthousand", + "191": "questiondown", + "96": "grave", + "180": "acute", + "136": "circumflex", + "152": "tilde", + "175": "macron", + "168": "dieresis", + "184": "cedilla", + "151": "emdash", + "198": "AE", + "170": "ordfeminine", + "216": "Oslash", + "140": "OE", + "186": "ordmasculine", + "230": "ae", + "248": "oslash", + "156": "oe", + "223": "germandbls", + "207": "Idieresis", + "233": "eacute", + "159": "Ydieresis", + "247": "divide", + "221": "Yacute", + "194": "Acircumflex", + "225": "aacute", + "219": "Ucircumflex", + "253": "yacute", + "234": "ecircumflex", + "220": "Udieresis", + "218": "Uacute", + "203": "Edieresis", + "169": "copyright", + "229": "aring", + "224": "agrave", + "227": "atilde", + "154": "scaron", + "237": "iacute", + "251": "ucircumflex", + "226": "acircumflex", + "231": "ccedilla", + "222": "Thorn", + "179": "threesuperior", + "210": "Ograve", + "192": "Agrave", + "215": "multiply", + "250": "uacute", + "255": "ydieresis", + "238": "icircumflex", + "202": "Ecircumflex", + "228": "adieresis", + "235": "edieresis", + "205": "Iacute", + "177": "plusminus", + "166": "brokenbar", + "174": "registered", + "200": "Egrave", + "142": "Zcaron", + "208": "Eth", + "199": "Ccedilla", + "193": "Aacute", + "196": "Adieresis", + "232": "egrave", + "211": "Oacute", + "243": "oacute", + "239": "idieresis", + "212": "Ocircumflex", + "217": "Ugrave", + "254": "thorn", + "178": "twosuperior", + "214": "Odieresis", + "181": "mu", + "236": "igrave", + "190": "threequarters", + "153": "trademark", + "204": "Igrave", + "189": "onehalf", + "244": "ocircumflex", + "241": "ntilde", + "201": "Eacute", + "188": "onequarter", + "138": "Scaron", + "176": "degree", + "242": "ograve", + "249": "ugrave", + "209": "Ntilde", + "245": "otilde", + "195": "Atilde", + "197": "Aring", + "213": "Otilde", + "206": "Icircumflex", + "172": "logicalnot", + "246": "odieresis", + "252": "udieresis", + "240": "eth", + "158": "zcaron", + "185": "onesuperior", + "128": "Euro" + }, + "isUnicode": false, + "FontName": "Helvetica-Oblique", + "FullName": "Helvetica Oblique", + "FamilyName": "Helvetica", + "Weight": "Medium", + "ItalicAngle": "-12", + "IsFixedPitch": "false", + "CharacterSet": "ExtendedRoman", + "FontBBox": [ + "-170", + "-225", + "1116", + "931" + ], + "UnderlinePosition": "-100", + "UnderlineThickness": "50", + "Version": "002.000", + "EncodingScheme": "WinAnsiEncoding", + "CapHeight": "718", + "XHeight": "523", + "Ascender": "718", + "Descender": "-207", + "StdHW": "76", + "StdVW": "88", + "StartCharMetrics": "317", + "C": { + "32": 278, + "160": 278, + "33": 278, + "34": 355, + "35": 556, + "36": 556, + "37": 889, + "38": 667, + "146": 222, + "40": 333, + "41": 333, + "42": 389, + "43": 584, + "44": 278, + "45": 333, + "173": 333, + "46": 278, + "47": 278, + "48": 556, + "49": 556, + "50": 556, + "51": 556, + "52": 556, + "53": 556, + "54": 556, + "55": 556, + "56": 556, + "57": 556, + "58": 278, + "59": 278, + "60": 584, + "61": 584, + "62": 584, + "63": 556, + "64": 1015, + "65": 667, + "66": 667, + "67": 722, + "68": 722, + "69": 667, + "70": 611, + "71": 778, + "72": 722, + "73": 278, + "74": 500, + "75": 667, + "76": 556, + "77": 833, + "78": 722, + "79": 778, + "80": 667, + "81": 778, + "82": 722, + "83": 667, + "84": 611, + "85": 722, + "86": 667, + "87": 944, + "88": 667, + "89": 667, + "90": 611, + "91": 278, + "92": 278, + "93": 278, + "94": 469, + "95": 556, + "145": 222, + "97": 556, + "98": 556, + "99": 500, + "100": 556, + "101": 556, + "102": 278, + "103": 556, + "104": 556, + "105": 222, + "106": 222, + "107": 500, + "108": 222, + "109": 833, + "110": 556, + "111": 556, + "112": 556, + "113": 556, + "114": 333, + "115": 500, + "116": 278, + "117": 556, + "118": 500, + "119": 722, + "120": 500, + "121": 500, + "122": 500, + "123": 334, + "124": 260, + "125": 334, + "126": 584, + "161": 333, + "162": 556, + "163": 556, + "fraction": 167, + "165": 556, + "131": 556, + "167": 556, + "164": 556, + "39": 191, + "147": 333, + "171": 556, + "139": 333, + "155": 333, + "fi": 500, + "fl": 500, + "150": 556, + "134": 556, + "135": 556, + "183": 278, + "182": 537, + "149": 350, + "130": 222, + "132": 333, + "148": 333, + "187": 556, + "133": 1000, + "137": 1000, + "191": 611, + "96": 333, + "180": 333, + "136": 333, + "152": 333, + "175": 333, + "breve": 333, + "dotaccent": 333, + "168": 333, + "ring": 333, + "184": 333, + "hungarumlaut": 333, + "ogonek": 333, + "caron": 333, + "151": 1000, + "198": 1000, + "170": 370, + "Lslash": 556, + "216": 778, + "140": 1000, + "186": 365, + "230": 889, + "dotlessi": 278, + "lslash": 222, + "248": 611, + "156": 944, + "223": 611, + "207": 278, + "233": 556, + "abreve": 556, + "uhungarumlaut": 556, + "ecaron": 556, + "159": 667, + "247": 584, + "221": 667, + "194": 667, + "225": 556, + "219": 722, + "253": 500, + "scommaaccent": 500, + "234": 556, + "Uring": 722, + "220": 722, + "aogonek": 556, + "218": 722, + "uogonek": 556, + "203": 667, + "Dcroat": 722, + "commaaccent": 250, + "169": 737, + "Emacron": 667, + "ccaron": 500, + "229": 556, + "Ncommaaccent": 722, + "lacute": 222, + "224": 556, + "Tcommaaccent": 611, + "Cacute": 722, + "227": 556, + "Edotaccent": 667, + "154": 500, + "scedilla": 500, + "237": 278, + "lozenge": 471, + "Rcaron": 722, + "Gcommaaccent": 778, + "251": 556, + "226": 556, + "Amacron": 667, + "rcaron": 333, + "231": 500, + "Zdotaccent": 611, + "222": 667, + "Omacron": 778, + "Racute": 722, + "Sacute": 667, + "dcaron": 643, + "Umacron": 722, + "uring": 556, + "179": 333, + "210": 778, + "192": 667, + "Abreve": 667, + "215": 584, + "250": 556, + "Tcaron": 611, + "partialdiff": 476, + "255": 500, + "Nacute": 722, + "238": 278, + "202": 667, + "228": 556, + "235": 556, + "cacute": 500, + "nacute": 556, + "umacron": 556, + "Ncaron": 722, + "205": 278, + "177": 584, + "166": 260, + "174": 737, + "Gbreve": 778, + "Idotaccent": 278, + "summation": 600, + "200": 667, + "racute": 333, + "omacron": 556, + "Zacute": 611, + "142": 611, + "greaterequal": 549, + "208": 722, + "199": 722, + "lcommaaccent": 222, + "tcaron": 317, + "eogonek": 556, + "Uogonek": 722, + "193": 667, + "196": 667, + "232": 556, + "zacute": 500, + "iogonek": 222, + "211": 778, + "243": 556, + "amacron": 556, + "sacute": 500, + "239": 278, + "212": 778, + "217": 722, + "Delta": 612, + "254": 556, + "178": 333, + "214": 778, + "181": 556, + "236": 278, + "ohungarumlaut": 556, + "Eogonek": 667, + "dcroat": 556, + "190": 834, + "Scedilla": 667, + "lcaron": 299, + "Kcommaaccent": 667, + "Lacute": 556, + "153": 1000, + "edotaccent": 556, + "204": 278, + "Imacron": 278, + "Lcaron": 556, + "189": 834, + "lessequal": 549, + "244": 556, + "241": 556, + "Uhungarumlaut": 722, + "201": 667, + "emacron": 556, + "gbreve": 556, + "188": 834, + "138": 667, + "Scommaaccent": 667, + "Ohungarumlaut": 778, + "176": 400, + "242": 556, + "Ccaron": 722, + "249": 556, + "radical": 453, + "Dcaron": 722, + "rcommaaccent": 333, + "209": 722, + "245": 556, + "Rcommaaccent": 722, + "Lcommaaccent": 556, + "195": 667, + "Aogonek": 667, + "197": 667, + "213": 778, + "zdotaccent": 500, + "Ecaron": 667, + "Iogonek": 278, + "kcommaaccent": 500, + "minus": 584, + "206": 278, + "ncaron": 556, + "tcommaaccent": 278, + "172": 584, + "246": 556, + "252": 556, + "notequal": 549, + "gcommaaccent": 556, + "240": 556, + "158": 500, + "ncommaaccent": 556, + "185": 333, + "imacron": 278, + "128": 556 + }, + "CIDtoGID_Compressed": true, + "CIDtoGID": "eJwDAAAAAAE=", + "_version_": 6 +} \ No newline at end of file diff --git a/storage/fonts/Helvetica.afm.json b/storage/fonts/Helvetica.afm.json new file mode 100755 index 0000000..dc1facd --- /dev/null +++ b/storage/fonts/Helvetica.afm.json @@ -0,0 +1,569 @@ +{ + "codeToName": { + "32": "space", + "160": "space", + "33": "exclam", + "34": "quotedbl", + "35": "numbersign", + "36": "dollar", + "37": "percent", + "38": "ampersand", + "146": "quoteright", + "40": "parenleft", + "41": "parenright", + "42": "asterisk", + "43": "plus", + "44": "comma", + "45": "hyphen", + "173": "hyphen", + "46": "period", + "47": "slash", + "48": "zero", + "49": "one", + "50": "two", + "51": "three", + "52": "four", + "53": "five", + "54": "six", + "55": "seven", + "56": "eight", + "57": "nine", + "58": "colon", + "59": "semicolon", + "60": "less", + "61": "equal", + "62": "greater", + "63": "question", + "64": "at", + "65": "A", + "66": "B", + "67": "C", + "68": "D", + "69": "E", + "70": "F", + "71": "G", + "72": "H", + "73": "I", + "74": "J", + "75": "K", + "76": "L", + "77": "M", + "78": "N", + "79": "O", + "80": "P", + "81": "Q", + "82": "R", + "83": "S", + "84": "T", + "85": "U", + "86": "V", + "87": "W", + "88": "X", + "89": "Y", + "90": "Z", + "91": "bracketleft", + "92": "backslash", + "93": "bracketright", + "94": "asciicircum", + "95": "underscore", + "145": "quoteleft", + "97": "a", + "98": "b", + "99": "c", + "100": "d", + "101": "e", + "102": "f", + "103": "g", + "104": "h", + "105": "i", + "106": "j", + "107": "k", + "108": "l", + "109": "m", + "110": "n", + "111": "o", + "112": "p", + "113": "q", + "114": "r", + "115": "s", + "116": "t", + "117": "u", + "118": "v", + "119": "w", + "120": "x", + "121": "y", + "122": "z", + "123": "braceleft", + "124": "bar", + "125": "braceright", + "126": "asciitilde", + "161": "exclamdown", + "162": "cent", + "163": "sterling", + "165": "yen", + "131": "florin", + "167": "section", + "164": "currency", + "39": "quotesingle", + "147": "quotedblleft", + "171": "guillemotleft", + "139": "guilsinglleft", + "155": "guilsinglright", + "150": "endash", + "134": "dagger", + "135": "daggerdbl", + "183": "periodcentered", + "182": "paragraph", + "149": "bullet", + "130": "quotesinglbase", + "132": "quotedblbase", + "148": "quotedblright", + "187": "guillemotright", + "133": "ellipsis", + "137": "perthousand", + "191": "questiondown", + "96": "grave", + "180": "acute", + "136": "circumflex", + "152": "tilde", + "175": "macron", + "168": "dieresis", + "184": "cedilla", + "151": "emdash", + "198": "AE", + "170": "ordfeminine", + "216": "Oslash", + "140": "OE", + "186": "ordmasculine", + "230": "ae", + "248": "oslash", + "156": "oe", + "223": "germandbls", + "207": "Idieresis", + "233": "eacute", + "159": "Ydieresis", + "247": "divide", + "221": "Yacute", + "194": "Acircumflex", + "225": "aacute", + "219": "Ucircumflex", + "253": "yacute", + "234": "ecircumflex", + "220": "Udieresis", + "218": "Uacute", + "203": "Edieresis", + "169": "copyright", + "229": "aring", + "224": "agrave", + "227": "atilde", + "154": "scaron", + "237": "iacute", + "251": "ucircumflex", + "226": "acircumflex", + "231": "ccedilla", + "222": "Thorn", + "179": "threesuperior", + "210": "Ograve", + "192": "Agrave", + "215": "multiply", + "250": "uacute", + "255": "ydieresis", + "238": "icircumflex", + "202": "Ecircumflex", + "228": "adieresis", + "235": "edieresis", + "205": "Iacute", + "177": "plusminus", + "166": "brokenbar", + "174": "registered", + "200": "Egrave", + "142": "Zcaron", + "208": "Eth", + "199": "Ccedilla", + "193": "Aacute", + "196": "Adieresis", + "232": "egrave", + "211": "Oacute", + "243": "oacute", + "239": "idieresis", + "212": "Ocircumflex", + "217": "Ugrave", + "254": "thorn", + "178": "twosuperior", + "214": "Odieresis", + "181": "mu", + "236": "igrave", + "190": "threequarters", + "153": "trademark", + "204": "Igrave", + "189": "onehalf", + "244": "ocircumflex", + "241": "ntilde", + "201": "Eacute", + "188": "onequarter", + "138": "Scaron", + "176": "degree", + "242": "ograve", + "249": "ugrave", + "209": "Ntilde", + "245": "otilde", + "195": "Atilde", + "197": "Aring", + "213": "Otilde", + "206": "Icircumflex", + "172": "logicalnot", + "246": "odieresis", + "252": "udieresis", + "240": "eth", + "158": "zcaron", + "185": "onesuperior", + "128": "Euro" + }, + "isUnicode": false, + "FontName": "Helvetica", + "FullName": "Helvetica", + "FamilyName": "Helvetica", + "Weight": "Medium", + "ItalicAngle": "0", + "IsFixedPitch": "false", + "CharacterSet": "ExtendedRoman", + "FontBBox": [ + "-166", + "-225", + "1000", + "931" + ], + "UnderlinePosition": "-100", + "UnderlineThickness": "50", + "Version": "002.000", + "EncodingScheme": "WinAnsiEncoding", + "CapHeight": "718", + "XHeight": "523", + "Ascender": "718", + "Descender": "-207", + "StdHW": "76", + "StdVW": "88", + "StartCharMetrics": "317", + "C": { + "32": 278, + "160": 278, + "33": 278, + "34": 355, + "35": 556, + "36": 556, + "37": 889, + "38": 667, + "146": 222, + "40": 333, + "41": 333, + "42": 389, + "43": 584, + "44": 278, + "45": 333, + "173": 333, + "46": 278, + "47": 278, + "48": 556, + "49": 556, + "50": 556, + "51": 556, + "52": 556, + "53": 556, + "54": 556, + "55": 556, + "56": 556, + "57": 556, + "58": 278, + "59": 278, + "60": 584, + "61": 584, + "62": 584, + "63": 556, + "64": 1015, + "65": 667, + "66": 667, + "67": 722, + "68": 722, + "69": 667, + "70": 611, + "71": 778, + "72": 722, + "73": 278, + "74": 500, + "75": 667, + "76": 556, + "77": 833, + "78": 722, + "79": 778, + "80": 667, + "81": 778, + "82": 722, + "83": 667, + "84": 611, + "85": 722, + "86": 667, + "87": 944, + "88": 667, + "89": 667, + "90": 611, + "91": 278, + "92": 278, + "93": 278, + "94": 469, + "95": 556, + "145": 222, + "97": 556, + "98": 556, + "99": 500, + "100": 556, + "101": 556, + "102": 278, + "103": 556, + "104": 556, + "105": 222, + "106": 222, + "107": 500, + "108": 222, + "109": 833, + "110": 556, + "111": 556, + "112": 556, + "113": 556, + "114": 333, + "115": 500, + "116": 278, + "117": 556, + "118": 500, + "119": 722, + "120": 500, + "121": 500, + "122": 500, + "123": 334, + "124": 260, + "125": 334, + "126": 584, + "161": 333, + "162": 556, + "163": 556, + "fraction": 167, + "165": 556, + "131": 556, + "167": 556, + "164": 556, + "39": 191, + "147": 333, + "171": 556, + "139": 333, + "155": 333, + "fi": 500, + "fl": 500, + "150": 556, + "134": 556, + "135": 556, + "183": 278, + "182": 537, + "149": 350, + "130": 222, + "132": 333, + "148": 333, + "187": 556, + "133": 1000, + "137": 1000, + "191": 611, + "96": 333, + "180": 333, + "136": 333, + "152": 333, + "175": 333, + "breve": 333, + "dotaccent": 333, + "168": 333, + "ring": 333, + "184": 333, + "hungarumlaut": 333, + "ogonek": 333, + "caron": 333, + "151": 1000, + "198": 1000, + "170": 370, + "Lslash": 556, + "216": 778, + "140": 1000, + "186": 365, + "230": 889, + "dotlessi": 278, + "lslash": 222, + "248": 611, + "156": 944, + "223": 611, + "207": 278, + "233": 556, + "abreve": 556, + "uhungarumlaut": 556, + "ecaron": 556, + "159": 667, + "247": 584, + "221": 667, + "194": 667, + "225": 556, + "219": 722, + "253": 500, + "scommaaccent": 500, + "234": 556, + "Uring": 722, + "220": 722, + "aogonek": 556, + "218": 722, + "uogonek": 556, + "203": 667, + "Dcroat": 722, + "commaaccent": 250, + "169": 737, + "Emacron": 667, + "ccaron": 500, + "229": 556, + "Ncommaaccent": 722, + "lacute": 222, + "224": 556, + "Tcommaaccent": 611, + "Cacute": 722, + "227": 556, + "Edotaccent": 667, + "154": 500, + "scedilla": 500, + "237": 278, + "lozenge": 471, + "Rcaron": 722, + "Gcommaaccent": 778, + "251": 556, + "226": 556, + "Amacron": 667, + "rcaron": 333, + "231": 500, + "Zdotaccent": 611, + "222": 667, + "Omacron": 778, + "Racute": 722, + "Sacute": 667, + "dcaron": 643, + "Umacron": 722, + "uring": 556, + "179": 333, + "210": 778, + "192": 667, + "Abreve": 667, + "215": 584, + "250": 556, + "Tcaron": 611, + "partialdiff": 476, + "255": 500, + "Nacute": 722, + "238": 278, + "202": 667, + "228": 556, + "235": 556, + "cacute": 500, + "nacute": 556, + "umacron": 556, + "Ncaron": 722, + "205": 278, + "177": 584, + "166": 260, + "174": 737, + "Gbreve": 778, + "Idotaccent": 278, + "summation": 600, + "200": 667, + "racute": 333, + "omacron": 556, + "Zacute": 611, + "142": 611, + "greaterequal": 549, + "208": 722, + "199": 722, + "lcommaaccent": 222, + "tcaron": 317, + "eogonek": 556, + "Uogonek": 722, + "193": 667, + "196": 667, + "232": 556, + "zacute": 500, + "iogonek": 222, + "211": 778, + "243": 556, + "amacron": 556, + "sacute": 500, + "239": 278, + "212": 778, + "217": 722, + "Delta": 612, + "254": 556, + "178": 333, + "214": 778, + "181": 556, + "236": 278, + "ohungarumlaut": 556, + "Eogonek": 667, + "dcroat": 556, + "190": 834, + "Scedilla": 667, + "lcaron": 299, + "Kcommaaccent": 667, + "Lacute": 556, + "153": 1000, + "edotaccent": 556, + "204": 278, + "Imacron": 278, + "Lcaron": 556, + "189": 834, + "lessequal": 549, + "244": 556, + "241": 556, + "Uhungarumlaut": 722, + "201": 667, + "emacron": 556, + "gbreve": 556, + "188": 834, + "138": 667, + "Scommaaccent": 667, + "Ohungarumlaut": 778, + "176": 400, + "242": 556, + "Ccaron": 722, + "249": 556, + "radical": 453, + "Dcaron": 722, + "rcommaaccent": 333, + "209": 722, + "245": 556, + "Rcommaaccent": 722, + "Lcommaaccent": 556, + "195": 667, + "Aogonek": 667, + "197": 667, + "213": 778, + "zdotaccent": 500, + "Ecaron": 667, + "Iogonek": 278, + "kcommaaccent": 500, + "minus": 584, + "206": 278, + "ncaron": 556, + "tcommaaccent": 278, + "172": 584, + "246": 556, + "252": 556, + "notequal": 549, + "gcommaaccent": 556, + "240": 556, + "158": 500, + "ncommaaccent": 556, + "185": 333, + "imacron": 278, + "128": 556 + }, + "CIDtoGID_Compressed": true, + "CIDtoGID": "eJwDAAAAAAE=", + "_version_": 6 +} \ No newline at end of file diff --git a/storage/fonts/Helvetica.afm.php b/storage/fonts/Helvetica.afm.php old mode 100644 new mode 100755 diff --git a/storage/fonts/Times-Bold.afm.json b/storage/fonts/Times-Bold.afm.json new file mode 100755 index 0000000..33d0c90 --- /dev/null +++ b/storage/fonts/Times-Bold.afm.json @@ -0,0 +1,569 @@ +{ + "codeToName": { + "32": "space", + "160": "space", + "33": "exclam", + "34": "quotedbl", + "35": "numbersign", + "36": "dollar", + "37": "percent", + "38": "ampersand", + "146": "quoteright", + "40": "parenleft", + "41": "parenright", + "42": "asterisk", + "43": "plus", + "44": "comma", + "45": "hyphen", + "173": "hyphen", + "46": "period", + "47": "slash", + "48": "zero", + "49": "one", + "50": "two", + "51": "three", + "52": "four", + "53": "five", + "54": "six", + "55": "seven", + "56": "eight", + "57": "nine", + "58": "colon", + "59": "semicolon", + "60": "less", + "61": "equal", + "62": "greater", + "63": "question", + "64": "at", + "65": "A", + "66": "B", + "67": "C", + "68": "D", + "69": "E", + "70": "F", + "71": "G", + "72": "H", + "73": "I", + "74": "J", + "75": "K", + "76": "L", + "77": "M", + "78": "N", + "79": "O", + "80": "P", + "81": "Q", + "82": "R", + "83": "S", + "84": "T", + "85": "U", + "86": "V", + "87": "W", + "88": "X", + "89": "Y", + "90": "Z", + "91": "bracketleft", + "92": "backslash", + "93": "bracketright", + "94": "asciicircum", + "95": "underscore", + "145": "quoteleft", + "97": "a", + "98": "b", + "99": "c", + "100": "d", + "101": "e", + "102": "f", + "103": "g", + "104": "h", + "105": "i", + "106": "j", + "107": "k", + "108": "l", + "109": "m", + "110": "n", + "111": "o", + "112": "p", + "113": "q", + "114": "r", + "115": "s", + "116": "t", + "117": "u", + "118": "v", + "119": "w", + "120": "x", + "121": "y", + "122": "z", + "123": "braceleft", + "124": "bar", + "125": "braceright", + "126": "asciitilde", + "161": "exclamdown", + "162": "cent", + "163": "sterling", + "165": "yen", + "131": "florin", + "167": "section", + "164": "currency", + "39": "quotesingle", + "147": "quotedblleft", + "171": "guillemotleft", + "139": "guilsinglleft", + "155": "guilsinglright", + "150": "endash", + "134": "dagger", + "135": "daggerdbl", + "183": "periodcentered", + "182": "paragraph", + "149": "bullet", + "130": "quotesinglbase", + "132": "quotedblbase", + "148": "quotedblright", + "187": "guillemotright", + "133": "ellipsis", + "137": "perthousand", + "191": "questiondown", + "96": "grave", + "180": "acute", + "136": "circumflex", + "152": "tilde", + "175": "macron", + "168": "dieresis", + "184": "cedilla", + "151": "emdash", + "198": "AE", + "170": "ordfeminine", + "216": "Oslash", + "140": "OE", + "186": "ordmasculine", + "230": "ae", + "248": "oslash", + "156": "oe", + "223": "germandbls", + "207": "Idieresis", + "233": "eacute", + "159": "Ydieresis", + "247": "divide", + "221": "Yacute", + "194": "Acircumflex", + "225": "aacute", + "219": "Ucircumflex", + "253": "yacute", + "234": "ecircumflex", + "220": "Udieresis", + "218": "Uacute", + "203": "Edieresis", + "169": "copyright", + "229": "aring", + "224": "agrave", + "227": "atilde", + "154": "scaron", + "237": "iacute", + "251": "ucircumflex", + "226": "acircumflex", + "231": "ccedilla", + "222": "Thorn", + "179": "threesuperior", + "210": "Ograve", + "192": "Agrave", + "215": "multiply", + "250": "uacute", + "255": "ydieresis", + "238": "icircumflex", + "202": "Ecircumflex", + "228": "adieresis", + "235": "edieresis", + "205": "Iacute", + "177": "plusminus", + "166": "brokenbar", + "174": "registered", + "200": "Egrave", + "142": "Zcaron", + "208": "Eth", + "199": "Ccedilla", + "193": "Aacute", + "196": "Adieresis", + "232": "egrave", + "211": "Oacute", + "243": "oacute", + "239": "idieresis", + "212": "Ocircumflex", + "217": "Ugrave", + "254": "thorn", + "178": "twosuperior", + "214": "Odieresis", + "181": "mu", + "236": "igrave", + "190": "threequarters", + "153": "trademark", + "204": "Igrave", + "189": "onehalf", + "244": "ocircumflex", + "241": "ntilde", + "201": "Eacute", + "188": "onequarter", + "138": "Scaron", + "176": "degree", + "242": "ograve", + "249": "ugrave", + "209": "Ntilde", + "245": "otilde", + "195": "Atilde", + "197": "Aring", + "213": "Otilde", + "206": "Icircumflex", + "172": "logicalnot", + "246": "odieresis", + "252": "udieresis", + "240": "eth", + "158": "zcaron", + "185": "onesuperior", + "128": "Euro" + }, + "isUnicode": false, + "FontName": "Times-Bold", + "FullName": "Times Bold", + "FamilyName": "Times", + "Weight": "Bold", + "ItalicAngle": "0", + "IsFixedPitch": "false", + "CharacterSet": "ExtendedRoman", + "FontBBox": [ + "-168", + "-218", + "1000", + "935" + ], + "UnderlinePosition": "-100", + "UnderlineThickness": "50", + "Version": "002.000", + "EncodingScheme": "WinAnsiEncoding", + "CapHeight": "676", + "XHeight": "461", + "Ascender": "683", + "Descender": "-217", + "StdHW": "44", + "StdVW": "139", + "StartCharMetrics": "317", + "C": { + "32": 250, + "160": 250, + "33": 333, + "34": 555, + "35": 500, + "36": 500, + "37": 1000, + "38": 833, + "146": 333, + "40": 333, + "41": 333, + "42": 500, + "43": 570, + "44": 250, + "45": 333, + "173": 333, + "46": 250, + "47": 278, + "48": 500, + "49": 500, + "50": 500, + "51": 500, + "52": 500, + "53": 500, + "54": 500, + "55": 500, + "56": 500, + "57": 500, + "58": 333, + "59": 333, + "60": 570, + "61": 570, + "62": 570, + "63": 500, + "64": 930, + "65": 722, + "66": 667, + "67": 722, + "68": 722, + "69": 667, + "70": 611, + "71": 778, + "72": 778, + "73": 389, + "74": 500, + "75": 778, + "76": 667, + "77": 944, + "78": 722, + "79": 778, + "80": 611, + "81": 778, + "82": 722, + "83": 556, + "84": 667, + "85": 722, + "86": 722, + "87": 1000, + "88": 722, + "89": 722, + "90": 667, + "91": 333, + "92": 278, + "93": 333, + "94": 581, + "95": 500, + "145": 333, + "97": 500, + "98": 556, + "99": 444, + "100": 556, + "101": 444, + "102": 333, + "103": 500, + "104": 556, + "105": 278, + "106": 333, + "107": 556, + "108": 278, + "109": 833, + "110": 556, + "111": 500, + "112": 556, + "113": 556, + "114": 444, + "115": 389, + "116": 333, + "117": 556, + "118": 500, + "119": 722, + "120": 500, + "121": 500, + "122": 444, + "123": 394, + "124": 220, + "125": 394, + "126": 520, + "161": 333, + "162": 500, + "163": 500, + "fraction": 167, + "165": 500, + "131": 500, + "167": 500, + "164": 500, + "39": 278, + "147": 500, + "171": 500, + "139": 333, + "155": 333, + "fi": 556, + "fl": 556, + "150": 500, + "134": 500, + "135": 500, + "183": 250, + "182": 540, + "149": 350, + "130": 333, + "132": 500, + "148": 500, + "187": 500, + "133": 1000, + "137": 1000, + "191": 500, + "96": 333, + "180": 333, + "136": 333, + "152": 333, + "175": 333, + "breve": 333, + "dotaccent": 333, + "168": 333, + "ring": 333, + "184": 333, + "hungarumlaut": 333, + "ogonek": 333, + "caron": 333, + "151": 1000, + "198": 1000, + "170": 300, + "Lslash": 667, + "216": 778, + "140": 1000, + "186": 330, + "230": 722, + "dotlessi": 278, + "lslash": 278, + "248": 500, + "156": 722, + "223": 556, + "207": 389, + "233": 444, + "abreve": 500, + "uhungarumlaut": 556, + "ecaron": 444, + "159": 722, + "247": 570, + "221": 722, + "194": 722, + "225": 500, + "219": 722, + "253": 500, + "scommaaccent": 389, + "234": 444, + "Uring": 722, + "220": 722, + "aogonek": 500, + "218": 722, + "uogonek": 556, + "203": 667, + "Dcroat": 722, + "commaaccent": 250, + "169": 747, + "Emacron": 667, + "ccaron": 444, + "229": 500, + "Ncommaaccent": 722, + "lacute": 278, + "224": 500, + "Tcommaaccent": 667, + "Cacute": 722, + "227": 500, + "Edotaccent": 667, + "154": 389, + "scedilla": 389, + "237": 278, + "lozenge": 494, + "Rcaron": 722, + "Gcommaaccent": 778, + "251": 556, + "226": 500, + "Amacron": 722, + "rcaron": 444, + "231": 444, + "Zdotaccent": 667, + "222": 611, + "Omacron": 778, + "Racute": 722, + "Sacute": 556, + "dcaron": 672, + "Umacron": 722, + "uring": 556, + "179": 300, + "210": 778, + "192": 722, + "Abreve": 722, + "215": 570, + "250": 556, + "Tcaron": 667, + "partialdiff": 494, + "255": 500, + "Nacute": 722, + "238": 278, + "202": 667, + "228": 500, + "235": 444, + "cacute": 444, + "nacute": 556, + "umacron": 556, + "Ncaron": 722, + "205": 389, + "177": 570, + "166": 220, + "174": 747, + "Gbreve": 778, + "Idotaccent": 389, + "summation": 600, + "200": 667, + "racute": 444, + "omacron": 500, + "Zacute": 667, + "142": 667, + "greaterequal": 549, + "208": 722, + "199": 722, + "lcommaaccent": 278, + "tcaron": 416, + "eogonek": 444, + "Uogonek": 722, + "193": 722, + "196": 722, + "232": 444, + "zacute": 444, + "iogonek": 278, + "211": 778, + "243": 500, + "amacron": 500, + "sacute": 389, + "239": 278, + "212": 778, + "217": 722, + "Delta": 612, + "254": 556, + "178": 300, + "214": 778, + "181": 556, + "236": 278, + "ohungarumlaut": 500, + "Eogonek": 667, + "dcroat": 556, + "190": 750, + "Scedilla": 556, + "lcaron": 394, + "Kcommaaccent": 778, + "Lacute": 667, + "153": 1000, + "edotaccent": 444, + "204": 389, + "Imacron": 389, + "Lcaron": 667, + "189": 750, + "lessequal": 549, + "244": 500, + "241": 556, + "Uhungarumlaut": 722, + "201": 667, + "emacron": 444, + "gbreve": 500, + "188": 750, + "138": 556, + "Scommaaccent": 556, + "Ohungarumlaut": 778, + "176": 400, + "242": 500, + "Ccaron": 722, + "249": 556, + "radical": 549, + "Dcaron": 722, + "rcommaaccent": 444, + "209": 722, + "245": 500, + "Rcommaaccent": 722, + "Lcommaaccent": 667, + "195": 722, + "Aogonek": 722, + "197": 722, + "213": 778, + "zdotaccent": 444, + "Ecaron": 667, + "Iogonek": 389, + "kcommaaccent": 556, + "minus": 570, + "206": 389, + "ncaron": 556, + "tcommaaccent": 333, + "172": 570, + "246": 500, + "252": 556, + "notequal": 549, + "gcommaaccent": 500, + "240": 500, + "158": 444, + "ncommaaccent": 556, + "185": 300, + "imacron": 278, + "128": 500 + }, + "CIDtoGID_Compressed": true, + "CIDtoGID": "eJwDAAAAAAE=", + "_version_": 6 +} \ No newline at end of file diff --git a/storage/fonts/Times-Roman.afm.json b/storage/fonts/Times-Roman.afm.json new file mode 100755 index 0000000..c96b2fc --- /dev/null +++ b/storage/fonts/Times-Roman.afm.json @@ -0,0 +1,569 @@ +{ + "codeToName": { + "32": "space", + "160": "space", + "33": "exclam", + "34": "quotedbl", + "35": "numbersign", + "36": "dollar", + "37": "percent", + "38": "ampersand", + "146": "quoteright", + "40": "parenleft", + "41": "parenright", + "42": "asterisk", + "43": "plus", + "44": "comma", + "45": "hyphen", + "173": "hyphen", + "46": "period", + "47": "slash", + "48": "zero", + "49": "one", + "50": "two", + "51": "three", + "52": "four", + "53": "five", + "54": "six", + "55": "seven", + "56": "eight", + "57": "nine", + "58": "colon", + "59": "semicolon", + "60": "less", + "61": "equal", + "62": "greater", + "63": "question", + "64": "at", + "65": "A", + "66": "B", + "67": "C", + "68": "D", + "69": "E", + "70": "F", + "71": "G", + "72": "H", + "73": "I", + "74": "J", + "75": "K", + "76": "L", + "77": "M", + "78": "N", + "79": "O", + "80": "P", + "81": "Q", + "82": "R", + "83": "S", + "84": "T", + "85": "U", + "86": "V", + "87": "W", + "88": "X", + "89": "Y", + "90": "Z", + "91": "bracketleft", + "92": "backslash", + "93": "bracketright", + "94": "asciicircum", + "95": "underscore", + "145": "quoteleft", + "97": "a", + "98": "b", + "99": "c", + "100": "d", + "101": "e", + "102": "f", + "103": "g", + "104": "h", + "105": "i", + "106": "j", + "107": "k", + "108": "l", + "109": "m", + "110": "n", + "111": "o", + "112": "p", + "113": "q", + "114": "r", + "115": "s", + "116": "t", + "117": "u", + "118": "v", + "119": "w", + "120": "x", + "121": "y", + "122": "z", + "123": "braceleft", + "124": "bar", + "125": "braceright", + "126": "asciitilde", + "161": "exclamdown", + "162": "cent", + "163": "sterling", + "165": "yen", + "131": "florin", + "167": "section", + "164": "currency", + "39": "quotesingle", + "147": "quotedblleft", + "171": "guillemotleft", + "139": "guilsinglleft", + "155": "guilsinglright", + "150": "endash", + "134": "dagger", + "135": "daggerdbl", + "183": "periodcentered", + "182": "paragraph", + "149": "bullet", + "130": "quotesinglbase", + "132": "quotedblbase", + "148": "quotedblright", + "187": "guillemotright", + "133": "ellipsis", + "137": "perthousand", + "191": "questiondown", + "96": "grave", + "180": "acute", + "136": "circumflex", + "152": "tilde", + "175": "macron", + "168": "dieresis", + "184": "cedilla", + "151": "emdash", + "198": "AE", + "170": "ordfeminine", + "216": "Oslash", + "140": "OE", + "186": "ordmasculine", + "230": "ae", + "248": "oslash", + "156": "oe", + "223": "germandbls", + "207": "Idieresis", + "233": "eacute", + "159": "Ydieresis", + "247": "divide", + "221": "Yacute", + "194": "Acircumflex", + "225": "aacute", + "219": "Ucircumflex", + "253": "yacute", + "234": "ecircumflex", + "220": "Udieresis", + "218": "Uacute", + "203": "Edieresis", + "169": "copyright", + "229": "aring", + "224": "agrave", + "227": "atilde", + "154": "scaron", + "237": "iacute", + "251": "ucircumflex", + "226": "acircumflex", + "231": "ccedilla", + "222": "Thorn", + "179": "threesuperior", + "210": "Ograve", + "192": "Agrave", + "215": "multiply", + "250": "uacute", + "255": "ydieresis", + "238": "icircumflex", + "202": "Ecircumflex", + "228": "adieresis", + "235": "edieresis", + "205": "Iacute", + "177": "plusminus", + "166": "brokenbar", + "174": "registered", + "200": "Egrave", + "142": "Zcaron", + "208": "Eth", + "199": "Ccedilla", + "193": "Aacute", + "196": "Adieresis", + "232": "egrave", + "211": "Oacute", + "243": "oacute", + "239": "idieresis", + "212": "Ocircumflex", + "217": "Ugrave", + "254": "thorn", + "178": "twosuperior", + "214": "Odieresis", + "181": "mu", + "236": "igrave", + "190": "threequarters", + "153": "trademark", + "204": "Igrave", + "189": "onehalf", + "244": "ocircumflex", + "241": "ntilde", + "201": "Eacute", + "188": "onequarter", + "138": "Scaron", + "176": "degree", + "242": "ograve", + "249": "ugrave", + "209": "Ntilde", + "245": "otilde", + "195": "Atilde", + "197": "Aring", + "213": "Otilde", + "206": "Icircumflex", + "172": "logicalnot", + "246": "odieresis", + "252": "udieresis", + "240": "eth", + "158": "zcaron", + "185": "onesuperior", + "128": "Euro" + }, + "isUnicode": false, + "FontName": "Times-Roman", + "FullName": "Times Roman", + "FamilyName": "Times", + "Weight": "Roman", + "ItalicAngle": "0", + "IsFixedPitch": "false", + "CharacterSet": "ExtendedRoman", + "FontBBox": [ + "-168", + "-218", + "1000", + "898" + ], + "UnderlinePosition": "-100", + "UnderlineThickness": "50", + "Version": "002.00", + "EncodingScheme": "WinAnsiEncoding", + "CapHeight": "662", + "XHeight": "450", + "Ascender": "683", + "Descender": "-217", + "StdHW": "28", + "StdVW": "84", + "StartCharMetrics": "317", + "C": { + "32": 250, + "160": 250, + "33": 333, + "34": 408, + "35": 500, + "36": 500, + "37": 833, + "38": 778, + "146": 333, + "40": 333, + "41": 333, + "42": 500, + "43": 564, + "44": 250, + "45": 333, + "173": 333, + "46": 250, + "47": 278, + "48": 500, + "49": 500, + "50": 500, + "51": 500, + "52": 500, + "53": 500, + "54": 500, + "55": 500, + "56": 500, + "57": 500, + "58": 278, + "59": 278, + "60": 564, + "61": 564, + "62": 564, + "63": 444, + "64": 921, + "65": 722, + "66": 667, + "67": 667, + "68": 722, + "69": 611, + "70": 556, + "71": 722, + "72": 722, + "73": 333, + "74": 389, + "75": 722, + "76": 611, + "77": 889, + "78": 722, + "79": 722, + "80": 556, + "81": 722, + "82": 667, + "83": 556, + "84": 611, + "85": 722, + "86": 722, + "87": 944, + "88": 722, + "89": 722, + "90": 611, + "91": 333, + "92": 278, + "93": 333, + "94": 469, + "95": 500, + "145": 333, + "97": 444, + "98": 500, + "99": 444, + "100": 500, + "101": 444, + "102": 333, + "103": 500, + "104": 500, + "105": 278, + "106": 278, + "107": 500, + "108": 278, + "109": 778, + "110": 500, + "111": 500, + "112": 500, + "113": 500, + "114": 333, + "115": 389, + "116": 278, + "117": 500, + "118": 500, + "119": 722, + "120": 500, + "121": 500, + "122": 444, + "123": 480, + "124": 200, + "125": 480, + "126": 541, + "161": 333, + "162": 500, + "163": 500, + "fraction": 167, + "165": 500, + "131": 500, + "167": 500, + "164": 500, + "39": 180, + "147": 444, + "171": 500, + "139": 333, + "155": 333, + "fi": 556, + "fl": 556, + "150": 500, + "134": 500, + "135": 500, + "183": 250, + "182": 453, + "149": 350, + "130": 333, + "132": 444, + "148": 444, + "187": 500, + "133": 1000, + "137": 1000, + "191": 444, + "96": 333, + "180": 333, + "136": 333, + "152": 333, + "175": 333, + "breve": 333, + "dotaccent": 333, + "168": 333, + "ring": 333, + "184": 333, + "hungarumlaut": 333, + "ogonek": 333, + "caron": 333, + "151": 1000, + "198": 889, + "170": 276, + "Lslash": 611, + "216": 722, + "140": 889, + "186": 310, + "230": 667, + "dotlessi": 278, + "lslash": 278, + "248": 500, + "156": 722, + "223": 500, + "207": 333, + "233": 444, + "abreve": 444, + "uhungarumlaut": 500, + "ecaron": 444, + "159": 722, + "247": 564, + "221": 722, + "194": 722, + "225": 444, + "219": 722, + "253": 500, + "scommaaccent": 389, + "234": 444, + "Uring": 722, + "220": 722, + "aogonek": 444, + "218": 722, + "uogonek": 500, + "203": 611, + "Dcroat": 722, + "commaaccent": 250, + "169": 760, + "Emacron": 611, + "ccaron": 444, + "229": 444, + "Ncommaaccent": 722, + "lacute": 278, + "224": 444, + "Tcommaaccent": 611, + "Cacute": 667, + "227": 444, + "Edotaccent": 611, + "154": 389, + "scedilla": 389, + "237": 278, + "lozenge": 471, + "Rcaron": 667, + "Gcommaaccent": 722, + "251": 500, + "226": 444, + "Amacron": 722, + "rcaron": 333, + "231": 444, + "Zdotaccent": 611, + "222": 556, + "Omacron": 722, + "Racute": 667, + "Sacute": 556, + "dcaron": 588, + "Umacron": 722, + "uring": 500, + "179": 300, + "210": 722, + "192": 722, + "Abreve": 722, + "215": 564, + "250": 500, + "Tcaron": 611, + "partialdiff": 476, + "255": 500, + "Nacute": 722, + "238": 278, + "202": 611, + "228": 444, + "235": 444, + "cacute": 444, + "nacute": 500, + "umacron": 500, + "Ncaron": 722, + "205": 333, + "177": 564, + "166": 200, + "174": 760, + "Gbreve": 722, + "Idotaccent": 333, + "summation": 600, + "200": 611, + "racute": 333, + "omacron": 500, + "Zacute": 611, + "142": 611, + "greaterequal": 549, + "208": 722, + "199": 667, + "lcommaaccent": 278, + "tcaron": 326, + "eogonek": 444, + "Uogonek": 722, + "193": 722, + "196": 722, + "232": 444, + "zacute": 444, + "iogonek": 278, + "211": 722, + "243": 500, + "amacron": 444, + "sacute": 389, + "239": 278, + "212": 722, + "217": 722, + "Delta": 612, + "254": 500, + "178": 300, + "214": 722, + "181": 500, + "236": 278, + "ohungarumlaut": 500, + "Eogonek": 611, + "dcroat": 500, + "190": 750, + "Scedilla": 556, + "lcaron": 344, + "Kcommaaccent": 722, + "Lacute": 611, + "153": 980, + "edotaccent": 444, + "204": 333, + "Imacron": 333, + "Lcaron": 611, + "189": 750, + "lessequal": 549, + "244": 500, + "241": 500, + "Uhungarumlaut": 722, + "201": 611, + "emacron": 444, + "gbreve": 500, + "188": 750, + "138": 556, + "Scommaaccent": 556, + "Ohungarumlaut": 722, + "176": 400, + "242": 500, + "Ccaron": 667, + "249": 500, + "radical": 453, + "Dcaron": 722, + "rcommaaccent": 333, + "209": 722, + "245": 500, + "Rcommaaccent": 667, + "Lcommaaccent": 611, + "195": 722, + "Aogonek": 722, + "197": 722, + "213": 722, + "zdotaccent": 444, + "Ecaron": 611, + "Iogonek": 333, + "kcommaaccent": 500, + "minus": 564, + "206": 333, + "ncaron": 500, + "tcommaaccent": 278, + "172": 564, + "246": 500, + "252": 500, + "notequal": 549, + "gcommaaccent": 500, + "240": 500, + "158": 444, + "ncommaaccent": 500, + "185": 300, + "imacron": 278, + "128": 500 + }, + "CIDtoGID_Compressed": true, + "CIDtoGID": "eJwDAAAAAAE=", + "_version_": 6 +} \ No newline at end of file diff --git a/storage/fonts/Times-Roman.afm.php b/storage/fonts/Times-Roman.afm.php old mode 100644 new mode 100755 diff --git a/storage/fonts/dompdf_font_family_cache.php b/storage/fonts/dompdf_font_family_cache.php index 4562d95..1844a1f 100644 --- a/storage/fonts/dompdf_font_family_cache.php +++ b/storage/fonts/dompdf_font_family_cache.php @@ -88,7 +88,7 @@ '900_italic' => $fontDir . '/source_sans_3_900_italic_fb0efb353036308bd24be499f42ae72b', '200' => $fontDir . '/source_sans_3_200_bffc5b926c335850340f01b4034a3da2', '300' => $fontDir . '/source_sans_3_300_fb8b2c2a0c8f4d947ebbe1e10ef19103', - 'normal' => $fontDir . '/source_sans_3_normal_eaa9347187022942974f53b800e24d5d', + 'normal' => $fontDir . '/source_sans_3_normal_aad9d2826a2e4f3177b8178781749542', '500' => $fontDir . '/source_sans_3_500_ae89b1d0f8b5d4adda77552e69e3a2fa', '600' => $fontDir . '/source_sans_3_600_58a6ab7ade8b7bf130323b8a8b22e916', 'bold' => $fontDir . '/source_sans_3_bold_1ece30ed2fee9bb5f08209f87bf08d21', diff --git a/storage/fonts/installed-fonts.json b/storage/fonts/installed-fonts.json index e799971..ad3edd9 100644 --- a/storage/fonts/installed-fonts.json +++ b/storage/fonts/installed-fonts.json @@ -1,20 +1,20 @@ { "source sans 3": { - "200_italic": "\/Users\/kadmin\/Websites\/mein.sterntours.local\/storage\/fonts\/\/source_sans_3_200_italic_775d022bf440aa099e3f50512191cce9", - "300_italic": "\/Users\/kadmin\/Websites\/mein.sterntours.local\/storage\/fonts\/\/source_sans_3_300_italic_dad46b7a22f6f5729872109680219a9c", - "italic": "\/Users\/kadmin\/Websites\/mein.sterntours.local\/storage\/fonts\/\/source_sans_3_italic_981d14092038cd468f8bc4f13b0b8902", - "500_italic": "\/Users\/kadmin\/Websites\/mein.sterntours.local\/storage\/fonts\/\/source_sans_3_500_italic_694aa627359cd46d6fe42e4dad097083", - "600_italic": "\/Users\/kadmin\/Websites\/mein.sterntours.local\/storage\/fonts\/\/source_sans_3_600_italic_ca3fa323818ae9533a8b16659f2e757c", - "bold_italic": "\/Users\/kadmin\/Websites\/mein.sterntours.local\/storage\/fonts\/\/source_sans_3_bold_italic_f780fa43cbe9cb7c07ac707a217a2e6e", - "800_italic": "\/Users\/kadmin\/Websites\/mein.sterntours.local\/storage\/fonts\/\/source_sans_3_800_italic_8ae811e5dbf30d25dbb10bb3fc65f629", - "900_italic": "\/Users\/kadmin\/Websites\/mein.sterntours.local\/storage\/fonts\/\/source_sans_3_900_italic_fb0efb353036308bd24be499f42ae72b", - "200": "\/Users\/kadmin\/Websites\/mein.sterntours.local\/storage\/fonts\/\/source_sans_3_200_bffc5b926c335850340f01b4034a3da2", - "300": "\/Users\/kadmin\/Websites\/mein.sterntours.local\/storage\/fonts\/\/source_sans_3_300_fb8b2c2a0c8f4d947ebbe1e10ef19103", - "normal": "\/Users\/kadmin\/Websites\/mein.sterntours.local\/storage\/fonts\/\/source_sans_3_normal_eaa9347187022942974f53b800e24d5d", - "500": "\/Users\/kadmin\/Websites\/mein.sterntours.local\/storage\/fonts\/\/source_sans_3_500_ae89b1d0f8b5d4adda77552e69e3a2fa", - "600": "\/Users\/kadmin\/Websites\/mein.sterntours.local\/storage\/fonts\/\/source_sans_3_600_58a6ab7ade8b7bf130323b8a8b22e916", - "bold": "\/Users\/kadmin\/Websites\/mein.sterntours.local\/storage\/fonts\/\/source_sans_3_bold_1ece30ed2fee9bb5f08209f87bf08d21", - "800": "\/Users\/kadmin\/Websites\/mein.sterntours.local\/storage\/fonts\/\/source_sans_3_800_9669d6eb310c77e4531959a82c27c56e", - "900": "\/Users\/kadmin\/Websites\/mein.sterntours.local\/storage\/fonts\/\/source_sans_3_900_8b53bea6e0a7309c9f0f1a5cca121692" + "200_italic": "\/var\/www\/html\/storage\/fonts\/\/source_sans_3_200_italic_775d022bf440aa099e3f50512191cce9", + "300_italic": "\/var\/www\/html\/storage\/fonts\/\/source_sans_3_300_italic_dad46b7a22f6f5729872109680219a9c", + "italic": "\/var\/www\/html\/storage\/fonts\/\/source_sans_3_italic_981d14092038cd468f8bc4f13b0b8902", + "500_italic": "\/var\/www\/html\/storage\/fonts\/\/source_sans_3_500_italic_694aa627359cd46d6fe42e4dad097083", + "600_italic": "\/var\/www\/html\/storage\/fonts\/\/source_sans_3_600_italic_ca3fa323818ae9533a8b16659f2e757c", + "bold_italic": "\/var\/www\/html\/storage\/fonts\/\/source_sans_3_bold_italic_f780fa43cbe9cb7c07ac707a217a2e6e", + "800_italic": "\/var\/www\/html\/storage\/fonts\/\/source_sans_3_800_italic_8ae811e5dbf30d25dbb10bb3fc65f629", + "900_italic": "\/var\/www\/html\/storage\/fonts\/\/source_sans_3_900_italic_fb0efb353036308bd24be499f42ae72b", + "200": "\/var\/www\/html\/storage\/fonts\/\/source_sans_3_200_bffc5b926c335850340f01b4034a3da2", + "300": "\/var\/www\/html\/storage\/fonts\/\/source_sans_3_300_fb8b2c2a0c8f4d947ebbe1e10ef19103", + "normal": "\/var\/www\/html\/storage\/fonts\/\/source_sans_3_normal_aad9d2826a2e4f3177b8178781749542", + "500": "\/var\/www\/html\/storage\/fonts\/\/source_sans_3_500_ae89b1d0f8b5d4adda77552e69e3a2fa", + "600": "\/var\/www\/html\/storage\/fonts\/\/source_sans_3_600_58a6ab7ade8b7bf130323b8a8b22e916", + "bold": "\/var\/www\/html\/storage\/fonts\/\/source_sans_3_bold_1ece30ed2fee9bb5f08209f87bf08d21", + "800": "\/var\/www\/html\/storage\/fonts\/\/source_sans_3_800_9669d6eb310c77e4531959a82c27c56e", + "900": "\/var\/www\/html\/storage\/fonts\/\/source_sans_3_900_8b53bea6e0a7309c9f0f1a5cca121692" } } \ No newline at end of file diff --git a/storage/fonts/source-sans-3-v15-latin-200.ttf b/storage/fonts/source-sans-3-v15-latin-200.ttf old mode 100644 new mode 100755 diff --git a/storage/fonts/source-sans-3-v15-latin-200italic.ttf b/storage/fonts/source-sans-3-v15-latin-200italic.ttf old mode 100644 new mode 100755 diff --git a/storage/fonts/source-sans-3-v15-latin-300.ttf b/storage/fonts/source-sans-3-v15-latin-300.ttf old mode 100644 new mode 100755 diff --git a/storage/fonts/source-sans-3-v15-latin-300italic.ttf b/storage/fonts/source-sans-3-v15-latin-300italic.ttf old mode 100644 new mode 100755 diff --git a/storage/fonts/source-sans-3-v15-latin-500.ttf b/storage/fonts/source-sans-3-v15-latin-500.ttf old mode 100644 new mode 100755 diff --git a/storage/fonts/source-sans-3-v15-latin-500italic.ttf b/storage/fonts/source-sans-3-v15-latin-500italic.ttf old mode 100644 new mode 100755 diff --git a/storage/fonts/source-sans-3-v15-latin-600.ttf b/storage/fonts/source-sans-3-v15-latin-600.ttf old mode 100644 new mode 100755 diff --git a/storage/fonts/source-sans-3-v15-latin-600italic.ttf b/storage/fonts/source-sans-3-v15-latin-600italic.ttf old mode 100644 new mode 100755 diff --git a/storage/fonts/source-sans-3-v15-latin-700.ttf b/storage/fonts/source-sans-3-v15-latin-700.ttf old mode 100644 new mode 100755 diff --git a/storage/fonts/source-sans-3-v15-latin-700italic.ttf b/storage/fonts/source-sans-3-v15-latin-700italic.ttf old mode 100644 new mode 100755 diff --git a/storage/fonts/source-sans-3-v15-latin-800.ttf b/storage/fonts/source-sans-3-v15-latin-800.ttf old mode 100644 new mode 100755 diff --git a/storage/fonts/source-sans-3-v15-latin-800italic.ttf b/storage/fonts/source-sans-3-v15-latin-800italic.ttf old mode 100644 new mode 100755 diff --git a/storage/fonts/source-sans-3-v15-latin-900.ttf b/storage/fonts/source-sans-3-v15-latin-900.ttf old mode 100644 new mode 100755 diff --git a/storage/fonts/source-sans-3-v15-latin-900italic.ttf b/storage/fonts/source-sans-3-v15-latin-900italic.ttf old mode 100644 new mode 100755 diff --git a/storage/fonts/source-sans-3-v15-latin-italic.ttf b/storage/fonts/source-sans-3-v15-latin-italic.ttf old mode 100644 new mode 100755 diff --git a/storage/fonts/source-sans-3-v15-latin-regular.ttf b/storage/fonts/source-sans-3-v15-latin-regular.ttf old mode 100644 new mode 100755 diff --git a/storage/fonts/source_sans_3_italic_981d14092038cd468f8bc4f13b0b8902.ufm.json b/storage/fonts/source_sans_3_italic_981d14092038cd468f8bc4f13b0b8902.ufm.json new file mode 100644 index 0000000..fae2528 --- /dev/null +++ b/storage/fonts/source_sans_3_italic_981d14092038cd468f8bc4f13b0b8902.ufm.json @@ -0,0 +1,3232 @@ +{ + "codeToName": { + "32": "space", + "33": "exclam", + "34": "quotedbl", + "35": "numbersign", + "36": "dollar", + "37": "percent", + "38": "ampersand", + "39": "quotesingle", + "40": "parenleft", + "41": "parenright", + "42": "asterisk", + "43": "plus", + "44": "comma", + "45": "hyphen", + "46": "period", + "47": "slash", + "48": "zero", + "49": "one", + "50": "two", + "51": "three", + "52": "four", + "53": "five", + "54": "six", + "55": "seven", + "56": "eight", + "57": "nine", + "58": "colon", + "59": "semicolon", + "60": "less", + "61": "equal", + "62": "greater", + "63": "question", + "64": "at", + "65": "A", + "66": "B", + "67": "C", + "68": "D", + "69": "E", + "70": "F", + "71": "G", + "72": "H", + "73": "I", + "74": "J", + "75": "K", + "76": "L", + "77": "M", + "78": "N", + "79": "O", + "80": "P", + "81": "Q", + "82": "R", + "83": "S", + "84": "T", + "85": "U", + "86": "V", + "87": "W", + "88": "X", + "89": "Y", + "90": "Z", + "91": "bracketleft", + "92": "backslash", + "93": "bracketright", + "94": "asciicircum", + "95": "underscore", + "96": "grave", + "97": "a", + "98": "b", + "99": "c", + "100": "d", + "101": "e", + "102": "f", + "103": "g", + "104": "h", + "105": "i", + "106": "j", + "107": "k", + "108": "l", + "109": "m", + "110": "n", + "111": "o", + "112": "p", + "113": "q", + "114": "r", + "115": "s", + "116": "t", + "117": "u", + "118": "v", + "119": "w", + "120": "x", + "121": "y", + "122": "z", + "123": "braceleft", + "124": "bar", + "125": "braceright", + "126": "asciitilde", + "160": "space", + "161": "exclamdown", + "162": "cent", + "163": "sterling", + "164": "currency", + "165": "yen", + "166": "brokenbar", + "167": "section", + "168": "dieresis", + "169": "copyright", + "170": "ordfeminine", + "171": "guillemotleft", + "172": "logicalnot", + "173": "hyphen", + "174": "registered", + "175": "macron", + "176": "degree", + "177": "plusminus", + "178": "two.u", + "179": "three.u", + "180": "acute", + "181": "mu", + "182": "paragraph", + "183": "periodcentered", + "184": "cedilla", + "185": "one.u", + "186": "ordmasculine", + "187": "guillemotright", + "188": "onequarter", + "189": "onehalf", + "190": "threequarters", + "191": "questiondown", + "192": "Agrave", + "193": "Aacute", + "194": "Acircumflex", + "195": "Atilde", + "196": "Adieresis", + "197": "Aring", + "198": "AE", + "199": "Ccedilla", + "200": "Egrave", + "201": "Eacute", + "202": "Ecircumflex", + "203": "Edieresis", + "204": "Igrave", + "205": "Iacute", + "206": "Icircumflex", + "207": "Idieresis", + "208": "Eth", + "209": "Ntilde", + "210": "Ograve", + "211": "Oacute", + "212": "Ocircumflex", + "213": "Otilde", + "214": "Odieresis", + "215": "multiply", + "216": "Oslash", + "217": "Ugrave", + "218": "Uacute", + "219": "Ucircumflex", + "220": "Udieresis", + "221": "Yacute", + "222": "Thorn", + "223": "germandbls", + "224": "agrave", + "225": "aacute", + "226": "acircumflex", + "227": "atilde", + "228": "adieresis", + "229": "aring", + "230": "ae", + "231": "ccedilla", + "232": "egrave", + "233": "eacute", + "234": "ecircumflex", + "235": "edieresis", + "236": "igrave", + "237": "iacute", + "238": "icircumflex", + "239": "idieresis", + "240": "eth", + "241": "ntilde", + "242": "ograve", + "243": "oacute", + "244": "ocircumflex", + "245": "otilde", + "246": "odieresis", + "247": "divide", + "248": "oslash", + "249": "ugrave", + "250": "uacute", + "251": "ucircumflex", + "252": "udieresis", + "253": "yacute", + "254": "thorn", + "255": "ydieresis", + "256": "Amacron", + "257": "amacron", + "258": "Abreve", + "259": "abreve", + "260": "Aogonek", + "261": "aogonek", + "262": "Cacute", + "263": "cacute", + "264": "Ccircumflex", + "265": "ccircumflex", + "266": "Cdotaccent", + "267": "cdotaccent", + "268": "Ccaron", + "269": "ccaron", + "270": "Dcaron", + "271": "dcaron", + "272": "Dcroat", + "273": "dmacron", + "274": "Emacron", + "275": "emacron", + "276": "Ebreve", + "277": "ebreve", + "278": "Edotaccent", + "279": "edotaccent", + "280": "Eogonek", + "281": "eogonek", + "282": "Ecaron", + "283": "ecaron", + "284": "Gcircumflex", + "285": "gcircumflex", + "286": "Gbreve", + "287": "gbreve", + "288": "Gdotaccent", + "289": "gdotaccent", + "290": "uni0122", + "291": "uni0123", + "292": "Hcircumflex", + "293": "hcircumflex", + "294": "Hbar", + "295": "hbar", + "296": "Itilde", + "297": "itilde", + "298": "Imacron", + "299": "imacron", + "300": "Ibreve", + "301": "ibreve", + "302": "Iogonek", + "303": "iogonek", + "304": "Idot", + "305": "dotlessi", + "306": "IJ", + "307": "ij", + "308": "Jcircumflex", + "309": "jcircumflex", + "310": "uni0136", + "311": "uni0137", + "312": "kgreenlandic", + "313": "Lacute", + "314": "lacute", + "315": "uni013B", + "316": "uni013C", + "317": "Lcaron", + "318": "lcaron", + "319": "Ldot", + "320": "ldot", + "321": "Lslash", + "322": "lslash", + "323": "Nacute", + "324": "nacute", + "325": "uni0145", + "326": "uni0146", + "327": "Ncaron", + "328": "ncaron", + "329": "napostrophe", + "330": "Eng", + "331": "eng", + "332": "Omacron", + "333": "omacron", + "334": "Obreve", + "335": "obreve", + "336": "Ohungarumlaut", + "337": "ohungarumlaut", + "338": "OE", + "339": "oe", + "340": "Racute", + "341": "racute", + "342": "uni0156", + "343": "uni0157", + "344": "Rcaron", + "345": "rcaron", + "346": "Sacute", + "347": "sacute", + "348": "Scircumflex", + "349": "scircumflex", + "350": "uni015E", + "351": "uni015F", + "352": "Scaron", + "353": "scaron", + "354": "uni0162", + "355": "uni0163", + "356": "Tcaron", + "357": "tcaron", + "358": "Tbar", + "359": "tbar", + "360": "Utilde", + "361": "utilde", + "362": "Umacron", + "363": "umacron", + "364": "Ubreve", + "365": "ubreve", + "366": "Uring", + "367": "uring", + "368": "Uhungarumlaut", + "369": "uhungarumlaut", + "370": "Uogonek", + "371": "uogonek", + "372": "Wcircumflex", + "373": "wcircumflex", + "374": "Ycircumflex", + "375": "ycircumflex", + "376": "Ydieresis", + "377": "Zacute", + "378": "zacute", + "379": "Zdotaccent", + "380": "zdotaccent", + "381": "Zcaron", + "382": "zcaron", + "383": "longs", + "384": "uni0180", + "385": "uni0181", + "390": "uni0186", + "394": "uni018A", + "397": "uni018D", + "398": "uni018E", + "399": "uni018F", + "400": "uni0190", + "402": "uni0192", + "403": "uni0193", + "404": "uni0194", + "406": "uni0196", + "407": "uni0197", + "410": "uni019A", + "411": "uni019B", + "414": "uni019E", + "416": "Ohorn", + "417": "ohorn", + "431": "Uhorn", + "432": "uhorn", + "433": "uni01B1", + "439": "uni01B7", + "447": "uni01BF", + "448": "uni01C0", + "449": "uni01C1", + "450": "uni01C2", + "451": "uni01C3", + "461": "uni01CD", + "462": "uni01CE", + "463": "uni01CF", + "464": "uni01D0", + "465": "uni01D1", + "466": "uni01D2", + "467": "uni01D3", + "468": "uni01D4", + "469": "uni01D5", + "470": "uni01D6", + "471": "uni01D7", + "472": "uni01D8", + "473": "uni01D9", + "474": "uni01DA", + "475": "uni01DB", + "476": "uni01DC", + "477": "uni01DD", + "482": "uni01E2", + "483": "uni01E3", + "484": "uni01E4", + "485": "uni01E5", + "486": "Gcaron", + "487": "gcaron", + "490": "uni01EA", + "491": "uni01EB", + "494": "uni01EE", + "495": "uni01EF", + "496": "uni01F0", + "500": "uni01F4", + "501": "uni01F5", + "503": "uni01F7", + "504": "uni01F8", + "505": "uni01F9", + "506": "Aringacute", + "507": "aringacute", + "508": "AEacute", + "509": "aeacute", + "510": "Oslashacute", + "511": "oslashacute", + "512": "uni0200", + "513": "uni0201", + "516": "uni0204", + "517": "uni0205", + "520": "uni0208", + "521": "uni0209", + "524": "uni020C", + "525": "uni020D", + "536": "uni0218", + "537": "uni0219", + "538": "uni021A", + "539": "uni021B", + "540": "uni021C", + "541": "uni021D", + "542": "uni021E", + "543": "uni021F", + "544": "uni0220", + "546": "uni0222", + "547": "uni0223", + "550": "uni0226", + "551": "uni0227", + "567": "uni0237", + "570": "uni023A", + "571": "uni023B", + "572": "uni023C", + "573": "uni023D", + "574": "uni023E", + "577": "uni0241", + "578": "uni0242", + "579": "uni0243", + "580": "uni0244", + "581": "uni0245", + "584": "uni0248", + "585": "uni0249", + "592": "uni0250", + "593": "uni0251", + "594": "uni0252", + "595": "uni0253", + "596": "uni0254", + "597": "uni0255", + "598": "uni0256", + "599": "uni0257", + "600": "uni0258", + "601": "uni0259", + "602": "uni025A", + "603": "uni025B", + "604": "uni025C", + "605": "uni025D", + "606": "uni025E", + "607": "uni025F", + "608": "uni0260", + "609": "uni0261", + "610": "uni0262", + "611": "uni0263", + "612": "uni0264", + "613": "uni0265", + "614": "uni0266", + "615": "uni0267", + "616": "uni0268", + "617": "uni0269", + "618": "uni026A", + "619": "uni026B", + "620": "uni026C", + "621": "uni026D", + "622": "uni026E", + "623": "uni026F", + "624": "uni0270", + "625": "uni0271", + "626": "uni0272", + "627": "uni0273", + "628": "uni0274", + "629": "uni0275", + "630": "uni0276", + "631": "uni0277", + "632": "uni0278", + "633": "uni0279", + "634": "uni027A", + "635": "uni027B", + "637": "uni027D", + "638": "uni027E", + "639": "uni027F", + "640": "uni0280", + "641": "uni0281", + "642": "uni0282", + "643": "uni0283", + "644": "uni0284", + "645": "uni0285", + "647": "uni0287", + "648": "uni0288", + "649": "uni0289", + "650": "uni028A", + "651": "uni028B", + "652": "uni028C", + "653": "uni028D", + "654": "uni028E", + "655": "uni028F", + "656": "uni0290", + "657": "uni0291", + "658": "uni0292", + "660": "uni0294", + "661": "uni0295", + "664": "uni0298", + "665": "uni0299", + "667": "uni029B", + "668": "uni029C", + "669": "uni029D", + "670": "uni029E", + "671": "uni029F", + "673": "uni02A1", + "674": "uni02A2", + "675": "uni02A3", + "676": "uni02A4", + "677": "uni02A5", + "678": "uni02A6", + "679": "uni02A7", + "680": "uni02A8", + "688": "h.u", + "689": "uni02B1", + "690": "j.u", + "691": "r.u", + "692": "uni02B4", + "695": "w.u", + "696": "y.u", + "697": "uni02B9", + "699": "uni02BB", + "700": "uni02BC", + "701": "uni02BD", + "702": "uni02BE", + "703": "uni02BF", + "704": "uni02C0", + "705": "uni02C1", + "710": "circumflex", + "711": "caron", + "712": "uni02C8", + "713": "uni02C9", + "714": "uni02CA", + "715": "uni02CB", + "716": "uni02CC", + "720": "uni02D0", + "721": "uni02D1", + "722": "uni02D2", + "723": "uni02D3", + "724": "uni02D4", + "725": "uni02D5", + "726": "uni02D6", + "727": "uni02D7", + "728": "breve", + "729": "dotaccent", + "730": "ring", + "731": "ogonek", + "732": "tilde", + "733": "hungarumlaut", + "734": "uni02DE", + "736": "uni02E0", + "737": "l.u", + "738": "s.u", + "739": "x.u", + "740": "uni02E4", + "749": "equal.u", + "768": "uni0300", + "769": "uni0301", + "770": "uni0302", + "771": "uni0303", + "772": "uni0304", + "773": "uni0305", + "774": "uni0306", + "775": "uni0307", + "776": "uni0308", + "777": "uni0309", + "778": "uni030A", + "779": "uni030B", + "780": "uni030C", + "781": "uni030D", + "783": "uni030F", + "784": "uni0310", + "785": "uni0311", + "786": "uni0312", + "787": "uni0313", + "789": "uni0315", + "792": "uni0318", + "793": "uni0319", + "794": "uni031A", + "795": "uni031B", + "796": "uni031C", + "797": "uni031D", + "798": "uni031E", + "799": "uni031F", + "800": "uni0320", + "803": "uni0323", + "804": "uni0324", + "805": "uni0325", + "806": "uni0326", + "807": "uni0327", + "808": "uni0328", + "809": "uni0329", + "810": "uni032A", + "812": "uni032C", + "814": "uni032E", + "815": "uni032F", + "816": "uni0330", + "817": "uni0331", + "818": "uni0332", + "820": "uni0334", + "823": "uni0337", + "824": "uni0338", + "825": "uni0339", + "826": "uni033A", + "827": "uni033B", + "828": "uni033C", + "829": "uni033D", + "832": "uni0300.g", + "834": "uni0342", + "835": "uni0343", + "836": "uni0344", + "837": "uni0345", + "847": "uni034F", + "855": "uni0357", + "856": "uni0358", + "860": "uni035C", + "862": "uni035E", + "863": "uni035F", + "865": "uni0361", + "884": "uni0374", + "885": "uni0375", + "890": "uni037A", + "894": "uni037E", + "900": "tonos", + "901": "dieresistonos", + "902": "Alphatonos", + "903": "anoteleia", + "904": "Epsilontonos", + "905": "Etatonos", + "906": "Iotatonos", + "908": "Omicrontonos", + "910": "Upsilontonos", + "911": "Omegatonos", + "912": "iotadieresistonos", + "913": "Alpha", + "914": "Beta", + "915": "Gamma", + "916": "increment", + "917": "Epsilon", + "918": "Zeta", + "919": "Eta", + "920": "Theta", + "921": "Iota", + "922": "Kappa", + "923": "Lambda", + "924": "Mu", + "925": "Nu", + "926": "Xi", + "927": "Omicron", + "928": "Pi", + "929": "Rho", + "931": "Sigma", + "932": "Tau", + "933": "Upsilon", + "934": "Phi", + "935": "Chi", + "936": "Psi", + "937": "Omega", + "938": "Iotadieresis", + "939": "Upsilondieresis", + "940": "alphatonos", + "941": "epsilontonos", + "942": "etatonos", + "943": "iotatonos", + "944": "upsilondieresistonos", + "945": "alpha", + "946": "beta", + "947": "gamma", + "948": "delta", + "949": "epsilon", + "950": "zeta", + "951": "eta", + "952": "theta", + "953": "iota", + "954": "kappa", + "955": "lambda", + "956": "mu", + "957": "nu", + "958": "xi", + "959": "omicron", + "960": "pi", + "961": "rho", + "962": "uni03C2", + "963": "sigma", + "964": "tau", + "965": "upsilon", + "966": "phi", + "967": "chi", + "968": "psi", + "969": "omega", + "970": "iotadieresis", + "971": "upsilondieresis", + "972": "omicrontonos", + "973": "upsilontonos", + "974": "omegatonos", + "975": "uni03CF", + "976": "uni03D0", + "977": "uni03D1", + "981": "phi", + "983": "uni03D7", + "985": "uni03D9", + "987": "uni03DB", + "989": "uni03DD", + "993": "uni03E1", + "1012": "uni03F4", + "1015": "uni03F7", + "1016": "uni03F8", + "1024": "uni0400", + "1025": "uni0401", + "1026": "uni0402", + "1027": "uni0403", + "1028": "uni0404", + "1029": "uni0405", + "1030": "uni0406", + "1031": "uni0407", + "1032": "uni0408", + "1033": "uni0409", + "1034": "uni040A", + "1035": "uni040B", + "1036": "uni040C", + "1037": "uni040D", + "1038": "uni040E", + "1039": "uni040F", + "1040": "uni0410", + "1041": "uni0411", + "1042": "uni0412", + "1043": "uni0413", + "1044": "uni0414", + "1045": "uni0415", + "1046": "uni0416", + "1047": "uni0417", + "1048": "uni0418", + "1049": "uni0419", + "1050": "uni041A", + "1051": "uni041B", + "1052": "uni041C", + "1053": "uni041D", + "1054": "uni041E", + "1055": "uni041F", + "1056": "uni0420", + "1057": "uni0421", + "1058": "uni0422", + "1059": "uni0423", + "1060": "uni0424", + "1061": "uni0425", + "1062": "uni0426", + "1063": "uni0427", + "1064": "uni0428", + "1065": "uni0429", + "1066": "uni042A", + "1067": "uni042B", + "1068": "uni042C", + "1069": "uni042D", + "1070": "uni042E", + "1071": "uni042F", + "1072": "uni0430", + "1073": "uni0431", + "1074": "uni0432", + "1075": "uni0433", + "1076": "uni0434", + "1077": "uni0435", + "1078": "uni0436", + "1079": "uni0437", + "1080": "uni0438", + "1081": "uni0439", + "1082": "uni043A", + "1083": "uni043B", + "1084": "uni043C", + "1085": "uni043D", + "1086": "uni043E", + "1087": "uni043F", + "1088": "uni0440", + "1089": "uni0441", + "1090": "uni0442", + "1091": "uni0443", + "1092": "uni0444", + "1093": "uni0445", + "1094": "uni0446", + "1095": "uni0447", + "1096": "uni0448", + "1097": "uni0449", + "1098": "uni044A", + "1099": "uni044B", + "1100": "uni044C", + "1101": "uni044D", + "1102": "uni044E", + "1103": "uni044F", + "1104": "uni0450", + "1105": "uni0451", + "1106": "uni0452", + "1107": "uni0453", + "1108": "uni0454", + "1109": "uni0455", + "1110": "uni0456", + "1111": "uni0457", + "1112": "uni0458", + "1113": "uni0459", + "1114": "uni045A", + "1115": "uni045B", + "1116": "uni045C", + "1117": "uni045D", + "1118": "uni045E", + "1119": "uni045F", + "1122": "uni0462", + "1123": "uni0463", + "1138": "uni0472", + "1139": "uni0473", + "1140": "uni0474", + "1141": "uni0475", + "1168": "uni0490", + "1169": "uni0491", + "1170": "uni0492", + "1171": "uni0493", + "1174": "uni0496", + "1175": "uni0497", + "1176": "uni0498", + "1177": "uni0499", + "1178": "uni049A", + "1179": "uni049B", + "1184": "uni04A0", + "1185": "uni04A1", + "1186": "uni04A2", + "1187": "uni04A3", + "1194": "uni04AA", + "1195": "uni04AB", + "1198": "uni04AE", + "1199": "uni04AF", + "1200": "uni04B0", + "1201": "uni04B1", + "1202": "uni04B2", + "1203": "uni04B3", + "1206": "uni04B6", + "1207": "uni04B7", + "1210": "uni04BA", + "1211": "uni04BB", + "1216": "uni04C0", + "1217": "uni04C1", + "1218": "uni04C2", + "1219": "uni04C3", + "1220": "uni04C4", + "1223": "uni04C7", + "1224": "uni04C8", + "1231": "uni04CF", + "1232": "uni04D0", + "1233": "uni04D1", + "1236": "uni04D4", + "1237": "uni04D5", + "1238": "uni04D6", + "1239": "uni04D7", + "1240": "uni04D8", + "1241": "uni04D9", + "1250": "uni04E2", + "1251": "uni04E3", + "1254": "uni04E6", + "1255": "uni04E7", + "1256": "uni04E8", + "1257": "uni04E9", + "1262": "uni04EE", + "1263": "uni04EF", + "1266": "uni04F2", + "1267": "uni04F3", + "1270": "uni04F6", + "1271": "uni04F7", + "7461": "uni1D25", + "7468": "A.u", + "7470": "B.u", + "7472": "D.u", + "7473": "E.u", + "7475": "G.u", + "7476": "H.u", + "7477": "I.u", + "7478": "J.u", + "7479": "K.u", + "7480": "L.u", + "7481": "M.u", + "7482": "N.u", + "7484": "O.u", + "7486": "P.u", + "7487": "R.u", + "7488": "T.u", + "7489": "U.u", + "7490": "W.u", + "7491": "a.u", + "7495": "b.u", + "7496": "d.u", + "7497": "e.u", + "7498": "uni1D4A", + "7499": "uni1D4B", + "7501": "g.u", + "7503": "k.u", + "7504": "m.u", + "7505": "uni1D51", + "7506": "o.u", + "7510": "p.u", + "7511": "t.u", + "7512": "u.u", + "7515": "v.u", + "7535": "uni1D6F", + "7536": "uni1D70", + "7545": "uni1D79", + "7547": "uni1D7B", + "7551": "uni1D7F", + "7580": "c.u", + "7584": "f.u", + "7596": "uni1DAC", + "7598": "uni1DAE", + "7600": "uni1DB0", + "7611": "z.u", + "7615": "uni1DBF", + "7629": "uni1DCD", + "7682": "uni1E02", + "7683": "uni1E03", + "7686": "uni1E06", + "7687": "uni1E07", + "7690": "uni1E0A", + "7691": "uni1E0B", + "7692": "uni1E0C", + "7693": "uni1E0D", + "7694": "uni1E0E", + "7695": "uni1E0F", + "7696": "uni1E10", + "7697": "uni1E11", + "7702": "uni1E16", + "7703": "uni1E17", + "7710": "uni1E1E", + "7711": "uni1E1F", + "7712": "uni1E20", + "7713": "uni1E21", + "7714": "uni1E22", + "7715": "uni1E23", + "7716": "uni1E24", + "7717": "uni1E25", + "7718": "uni1E26", + "7719": "uni1E27", + "7720": "uni1E28", + "7721": "uni1E29", + "7722": "uni1E2A", + "7723": "uni1E2B", + "7730": "uni1E32", + "7731": "uni1E33", + "7732": "uni1E34", + "7733": "uni1E35", + "7734": "uni1E36", + "7735": "uni1E37", + "7736": "uni1E38", + "7737": "uni1E39", + "7738": "uni1E3A", + "7739": "uni1E3B", + "7742": "uni1E3E", + "7743": "uni1E3F", + "7744": "uni1E40", + "7745": "uni1E41", + "7746": "uni1E42", + "7747": "uni1E43", + "7748": "uni1E44", + "7749": "uni1E45", + "7750": "uni1E46", + "7751": "uni1E47", + "7752": "uni1E48", + "7753": "uni1E49", + "7762": "uni1E52", + "7763": "uni1E53", + "7766": "uni1E56", + "7767": "uni1E57", + "7768": "uni1E58", + "7769": "uni1E59", + "7770": "uni1E5A", + "7771": "uni1E5B", + "7772": "uni1E5C", + "7773": "uni1E5D", + "7774": "uni1E5E", + "7775": "uni1E5F", + "7776": "uni1E60", + "7777": "uni1E61", + "7778": "uni1E62", + "7779": "uni1E63", + "7782": "uni1E66", + "7783": "uni1E67", + "7786": "uni1E6A", + "7787": "uni1E6B", + "7788": "uni1E6C", + "7789": "uni1E6D", + "7790": "uni1E6E", + "7791": "uni1E6F", + "7794": "uni1E72", + "7795": "uni1E73", + "7806": "uni1E7E", + "7807": "uni1E7F", + "7808": "Wgrave", + "7809": "wgrave", + "7810": "Wacute", + "7811": "wacute", + "7812": "Wdieresis", + "7813": "wdieresis", + "7822": "uni1E8E", + "7823": "uni1E8F", + "7824": "uni1E90", + "7825": "uni1E91", + "7826": "uni1E92", + "7827": "uni1E93", + "7828": "uni1E94", + "7829": "uni1E95", + "7830": "uni1E96", + "7831": "uni1E97", + "7838": "uni1E9E", + "7839": "uni1E9F", + "7840": "uni1EA0", + "7841": "uni1EA1", + "7842": "uni1EA2", + "7843": "uni1EA3", + "7844": "uni1EA4", + "7845": "uni1EA5", + "7846": "uni1EA6", + "7847": "uni1EA7", + "7848": "uni1EA8", + "7849": "uni1EA9", + "7850": "uni1EAA", + "7851": "uni1EAB", + "7852": "uni1EAC", + "7853": "uni1EAD", + "7854": "uni1EAE", + "7855": "uni1EAF", + "7856": "uni1EB0", + "7857": "uni1EB1", + "7858": "uni1EB2", + "7859": "uni1EB3", + "7860": "uni1EB4", + "7861": "uni1EB5", + "7862": "uni1EB6", + "7863": "uni1EB7", + "7864": "uni1EB8", + "7865": "uni1EB9", + "7866": "uni1EBA", + "7867": "uni1EBB", + "7868": "uni1EBC", + "7869": "uni1EBD", + "7870": "uni1EBE", + "7871": "uni1EBF", + "7872": "uni1EC0", + "7873": "uni1EC1", + "7874": "uni1EC2", + "7875": "uni1EC3", + "7876": "uni1EC4", + "7877": "uni1EC5", + "7878": "uni1EC6", + "7879": "uni1EC7", + "7880": "uni1EC8", + "7881": "uni1EC9", + "7882": "uni1ECA", + "7883": "uni1ECB", + "7884": "uni1ECC", + "7885": "uni1ECD", + "7886": "uni1ECE", + "7887": "uni1ECF", + "7888": "uni1ED0", + "7889": "uni1ED1", + "7890": "uni1ED2", + "7891": "uni1ED3", + "7892": "uni1ED4", + "7893": "uni1ED5", + "7894": "uni1ED6", + "7895": "uni1ED7", + "7896": "uni1ED8", + "7897": "uni1ED9", + "7898": "uni1EDA", + "7899": "uni1EDB", + "7900": "uni1EDC", + "7901": "uni1EDD", + "7902": "uni1EDE", + "7903": "uni1EDF", + "7904": "uni1EE0", + "7905": "uni1EE1", + "7906": "uni1EE2", + "7907": "uni1EE3", + "7908": "uni1EE4", + "7909": "uni1EE5", + "7910": "uni1EE6", + "7911": "uni1EE7", + "7912": "uni1EE8", + "7913": "uni1EE9", + "7914": "uni1EEA", + "7915": "uni1EEB", + "7916": "uni1EEC", + "7917": "uni1EED", + "7918": "uni1EEE", + "7919": "uni1EEF", + "7920": "uni1EF0", + "7921": "uni1EF1", + "7922": "Ygrave", + "7923": "ygrave", + "7924": "uni1EF4", + "7925": "uni1EF5", + "7926": "uni1EF6", + "7927": "uni1EF7", + "7928": "uni1EF8", + "7929": "uni1EF9", + "7936": "uni1F00", + "7937": "uni1F01", + "7938": "uni1F02", + "7939": "uni1F03", + "7940": "uni1F04", + "7941": "uni1F05", + "7942": "uni1F06", + "7943": "uni1F07", + "7944": "uni1F08", + "7945": "uni1F09", + "7946": "uni1F0A", + "7947": "uni1F0B", + "7948": "uni1F0C", + "7949": "uni1F0D", + "7950": "uni1F0E", + "7951": "uni1F0F", + "7952": "uni1F10", + "7953": "uni1F11", + "7954": "uni1F12", + "7955": "uni1F13", + "7956": "uni1F14", + "7957": "uni1F15", + "7960": "uni1F18", + "7961": "uni1F19", + "7962": "uni1F1A", + "7963": "uni1F1B", + "7964": "uni1F1C", + "7965": "uni1F1D", + "7968": "uni1F20", + "7969": "uni1F21", + "7970": "uni1F22", + "7971": "uni1F23", + "7972": "uni1F24", + "7973": "uni1F25", + "7974": "uni1F26", + "7975": "uni1F27", + "7976": "uni1F28", + "7977": "uni1F29", + "7978": "uni1F2A", + "7979": "uni1F2B", + "7980": "uni1F2C", + "7981": "uni1F2D", + "7982": "uni1F2E", + "7983": "uni1F2F", + "7984": "uni1F30", + "7985": "uni1F31", + "7986": "uni1F32", + "7987": "uni1F33", + "7988": "uni1F34", + "7989": "uni1F35", + "7990": "uni1F36", + "7991": "uni1F37", + "7992": "uni1F38", + "7993": "uni1F39", + "7994": "uni1F3A", + "7995": "uni1F3B", + "7996": "uni1F3C", + "7997": "uni1F3D", + "7998": "uni1F3E", + "7999": "uni1F3F", + "8000": "uni1F40", + "8001": "uni1F41", + "8002": "uni1F42", + "8003": "uni1F43", + "8004": "uni1F44", + "8005": "uni1F45", + "8008": "uni1F48", + "8009": "uni1F49", + "8010": "uni1F4A", + "8011": "uni1F4B", + "8012": "uni1F4C", + "8013": "uni1F4D", + "8016": "uni1F50", + "8017": "uni1F51", + "8018": "uni1F52", + "8019": "uni1F53", + "8020": "uni1F54", + "8021": "uni1F55", + "8022": "uni1F56", + "8023": "uni1F57", + "8025": "uni1F59", + "8027": "uni1F5B", + "8029": "uni1F5D", + "8031": "uni1F5F", + "8032": "uni1F60", + "8033": "uni1F61", + "8034": "uni1F62", + "8035": "uni1F63", + "8036": "uni1F64", + "8037": "uni1F65", + "8038": "uni1F66", + "8039": "uni1F67", + "8040": "uni1F68", + "8041": "uni1F69", + "8042": "uni1F6A", + "8043": "uni1F6B", + "8044": "uni1F6C", + "8045": "uni1F6D", + "8046": "uni1F6E", + "8047": "uni1F6F", + "8048": "uni1F70", + "8049": "uni1F71", + "8050": "uni1F72", + "8051": "uni1F73", + "8052": "uni1F74", + "8053": "uni1F75", + "8054": "uni1F76", + "8055": "uni1F77", + "8056": "uni1F78", + "8057": "uni1F79", + "8058": "uni1F7A", + "8059": "uni1F7B", + "8060": "uni1F7C", + "8061": "uni1F7D", + "8064": "uni1F80", + "8065": "uni1F81", + "8066": "uni1F82", + "8067": "uni1F83", + "8068": "uni1F84", + "8069": "uni1F85", + "8070": "uni1F86", + "8071": "uni1F87", + "8072": "uni1F88", + "8073": "uni1F89", + "8074": "uni1F8A", + "8075": "uni1F8B", + "8076": "uni1F8C", + "8077": "uni1F8D", + "8078": "uni1F8E", + "8079": "uni1F8F", + "8080": "uni1F90", + "8081": "uni1F91", + "8082": "uni1F92", + "8083": "uni1F93", + "8084": "uni1F94", + "8085": "uni1F95", + "8086": "uni1F96", + "8087": "uni1F97", + "8088": "uni1F98", + "8089": "uni1F99", + "8090": "uni1F9A", + "8091": "uni1F9B", + "8092": "uni1F9C", + "8093": "uni1F9D", + "8094": "uni1F9E", + "8095": "uni1F9F", + "8096": "uni1FA0", + "8097": "uni1FA1", + "8098": "uni1FA2", + "8099": "uni1FA3", + "8100": "uni1FA4", + "8101": "uni1FA5", + "8102": "uni1FA6", + "8103": "uni1FA7", + "8104": "uni1FA8", + "8105": "uni1FA9", + "8106": "uni1FAA", + "8107": "uni1FAB", + "8108": "uni1FAC", + "8109": "uni1FAD", + "8110": "uni1FAE", + "8111": "uni1FAF", + "8112": "uni1FB0", + "8113": "uni1FB1", + "8114": "uni1FB2", + "8115": "uni1FB3", + "8116": "uni1FB4", + "8118": "uni1FB6", + "8119": "uni1FB7", + "8120": "uni1FB8", + "8121": "uni1FB9", + "8122": "uni1FBA", + "8123": "uni1FBB", + "8124": "uni1FBC", + "8125": "uni1FBD", + "8126": "uni1FBE", + "8127": "uni1FBF", + "8128": "uni1FC0", + "8129": "uni1FC1", + "8130": "uni1FC2", + "8131": "uni1FC3", + "8132": "uni1FC4", + "8134": "uni1FC6", + "8135": "uni1FC7", + "8136": "uni1FC8", + "8137": "uni1FC9", + "8138": "uni1FCA", + "8139": "uni1FCB", + "8140": "uni1FCC", + "8141": "uni1FCD", + "8142": "uni1FCE", + "8143": "uni1FCF", + "8144": "uni1FD0", + "8145": "uni1FD1", + "8146": "uni1FD2", + "8147": "uni1FD3", + "8150": "uni1FD6", + "8151": "uni1FD7", + "8152": "uni1FD8", + "8153": "uni1FD9", + "8154": "uni1FDA", + "8155": "uni1FDB", + "8157": "uni1FDD", + "8158": "uni1FDE", + "8159": "uni1FDF", + "8160": "uni1FE0", + "8161": "uni1FE1", + "8162": "uni1FE2", + "8163": "uni1FE3", + "8164": "uni1FE4", + "8165": "uni1FE5", + "8166": "uni1FE6", + "8167": "uni1FE7", + "8168": "uni1FE8", + "8169": "uni1FE9", + "8170": "uni1FEA", + "8171": "uni1FEB", + "8172": "uni1FEC", + "8173": "uni1FED", + "8174": "uni1FEE", + "8175": "uni1FEF", + "8178": "uni1FF2", + "8179": "uni1FF3", + "8180": "uni1FF4", + "8182": "uni1FF6", + "8183": "uni1FF7", + "8184": "uni1FF8", + "8185": "uni1FF9", + "8186": "uni1FFA", + "8187": "uni1FFB", + "8188": "uni1FFC", + "8189": "uni1FFD", + "8190": "uni1FFE", + "8199": "uni2007", + "8201": "uni2009", + "8202": "uni200A", + "8203": "uni200B", + "8208": "hyphen", + "8209": "hyphen", + "8210": "figuredash", + "8211": "endash", + "8212": "emdash", + "8213": "uni2015", + "8214": "uni2016", + "8215": "underscoredbl", + "8216": "quoteleft", + "8217": "quoteright", + "8218": "quotesinglbase", + "8219": "quotereversed", + "8220": "quotedblleft", + "8221": "quotedblright", + "8222": "quotedblbase", + "8224": "dagger", + "8225": "daggerdbl", + "8226": "bullet", + "8227": "uni2023", + "8230": "ellipsis", + "8239": "uni202F", + "8240": "perthousand", + "8241": "uni2031", + "8242": "uni2032", + "8243": "uni2033", + "8245": "uni2035", + "8249": "guilsinglleft", + "8250": "guilsinglright", + "8252": "exclamdbl", + "8253": "uni203D", + "8254": "uni203E", + "8255": "uni203F", + "8260": "fraction", + "8263": "uni2047", + "8264": "uni2048", + "8265": "uni2049", + "8266": "uni204A", + "8304": "zero.u", + "8305": "i.u", + "8308": "four.u", + "8309": "five.u", + "8310": "six.u", + "8311": "seven.u", + "8312": "eight.u", + "8313": "nine.u", + "8314": "plus.u", + "8315": "minus.u", + "8316": "equal.u", + "8317": "parenleft.u", + "8318": "parenright.u", + "8319": "n.u", + "8320": "zero.b", + "8321": "one.b", + "8322": "two.b", + "8323": "three.b", + "8324": "four.b", + "8325": "five.b", + "8326": "six.b", + "8327": "seven.b", + "8328": "eight.b", + "8329": "nine.b", + "8330": "plus.b", + "8331": "minus.b", + "8332": "equal.b", + "8333": "parenleft.b", + "8334": "parenright.b", + "8353": "colonmonetary", + "8355": "franc", + "8356": "lira", + "8358": "uni20A6", + "8359": "peseta", + "8361": "uni20A9", + "8363": "dong", + "8364": "Euro", + "8366": "uni20AE", + "8369": "uni20B1", + "8370": "uni20B2", + "8372": "uni20B4", + "8373": "uni20B5", + "8376": "uni20B8", + "8377": "uni20B9", + "8378": "uni20BA", + "8381": "uni20BD", + "8453": "uni2105", + "8467": "uni2113", + "8470": "uni2116", + "8471": "uni2117", + "8478": "uni211E", + "8480": "uni2120", + "8482": "trademark", + "8486": "Omega", + "8494": "estimated", + "8528": "uni2150", + "8529": "uni2151", + "8530": "uni2152", + "8531": "onethird", + "8532": "twothirds", + "8533": "uni2155", + "8534": "uni2156", + "8535": "uni2157", + "8536": "uni2158", + "8537": "uni2159", + "8538": "uni215A", + "8539": "oneeighth", + "8540": "threeeighths", + "8541": "fiveeighths", + "8542": "seveneighths", + "8585": "uni2189", + "8592": "uni2190", + "8593": "arrowup", + "8594": "uni2192", + "8595": "arrowdown", + "8596": "arrowboth", + "8597": "arrowupdn", + "8598": "uni2196", + "8599": "uni2197", + "8600": "uni2198", + "8601": "uni2199", + "8616": "arrowupdnbse", + "8656": "uni21D0", + "8657": "uni21D1", + "8658": "uni21D2", + "8659": "uni21D3", + "8679": "uni21E7", + "8704": "uni2200", + "8706": "partialdiff", + "8707": "uni2203", + "8710": "increment", + "8719": "product", + "8721": "summation", + "8722": "minus", + "8725": "uni2215", + "8729": "uni2219", + "8730": "radical", + "8734": "infinity", + "8735": "orthogonal", + "8745": "intersection", + "8747": "integral", + "8758": "uni2236", + "8759": "uni2237", + "8776": "approxequal", + "8800": "notequal", + "8801": "equivalence", + "8804": "lessequal", + "8805": "greaterequal", + "8962": "house", + "8963": "uni2303", + "8976": "revlogicalnot", + "8984": "uni2318", + "8988": "uni231C", + "8989": "uni231D", + "8990": "uni231E", + "8991": "uni231F", + "8992": "integraltp", + "8993": "integralbt", + "8997": "uni2325", + "8998": "uni2326", + "9003": "uni232B", + "9632": "uni25A0", + "9633": "uni25A1", + "9642": "uni25AA", + "9643": "uni25AB", + "9644": "filledrect", + "9650": "triagup", + "9651": "uni25B3", + "9652": "uni25B4", + "9653": "uni25B5", + "9654": "uni25B6", + "9655": "uni25B7", + "9656": "uni25B8", + "9657": "uni25B9", + "9658": "triagrt", + "9660": "triagdn", + "9661": "uni25BD", + "9662": "uni25BE", + "9663": "uni25BF", + "9664": "uni25C0", + "9665": "uni25C1", + "9666": "uni25C2", + "9667": "uni25C3", + "9668": "triaglf", + "9670": "uni25C6", + "9673": "uni25C9", + "9674": "lozenge", + "9675": "uni25CB", + "9676": "uni25CC", + "9679": "uni25CF", + "9688": "invbullet", + "9689": "invcircle", + "9702": "uni25E6", + "9744": "uni2610", + "9745": "uni2611", + "9749": "uni2615", + "9786": "smileface", + "9787": "invsmileface", + "9788": "sun", + "9791": "uni263F", + "9792": "female", + "9793": "uni2641", + "9794": "male", + "9824": "spade", + "9827": "club", + "9829": "heart", + "9830": "diamond", + "9834": "musicalnote", + "9835": "musicalnotedbl", + "10003": "uni2713", + "10004": "uni2714", + "10007": "uni2717", + "10008": "uni2718", + "10066": "uni2752", + "10075": "uni275B", + "10076": "uni275C", + "10077": "uni275D", + "10078": "uni275E", + "10079": "uni275F", + "10080": "uni2760", + "10084": "uni2764", + "10214": "uni27E6", + "10215": "uni27E7", + "10216": "uni27E8", + "10217": "uni27E9", + "11360": "uni2C60", + "11361": "uni2C61", + "11362": "uni2C62", + "11365": "uni2C65", + "11366": "uni2C66", + "11377": "uni2C71", + "11389": "V.u", + "11800": "uni2E18", + "11810": "uni2E22", + "11811": "uni2E23", + "11812": "uni2E24", + "11813": "uni2E25", + "11834": "uni2E3A", + "11835": "uni2E3B", + "11858": "uni2E52", + "42780": "uniA71C", + "42786": "uniA722", + "42787": "uniA723", + "42788": "uniA724", + "42789": "uniA725", + "42830": "uniA74E", + "42831": "uniA74F", + "42842": "uniA75A", + "42843": "uniA75B", + "42852": "uniA764", + "42853": "uniA765", + "42873": "uniA779", + "42874": "uniA77A", + "42875": "uniA77B", + "42876": "uniA77C", + "42877": "uniA77D", + "42878": "uniA77E", + "42879": "uniA77F", + "42880": "uniA780", + "42881": "uniA781", + "42882": "uniA782", + "42883": "uniA783", + "42884": "uniA784", + "42885": "uniA785", + "42886": "uniA786", + "42887": "uniA787", + "42889": "uniA789", + "42925": "uniA7AD", + "42926": "uniA7AE", + "42931": "uniA7B3", + "42933": "uniA7B5", + "42994": "C.u", + "42995": "F.u", + "42996": "Q.u", + "43859": "uniAB53", + "43878": "uniAB66", + "43879": "uniAB67", + "64256": "f_f", + "64257": "fi", + "64258": "fl", + "64259": "f_f_i", + "64260": "f_f_l", + "65279": "uniFEFF" + }, + "isUnicode": true, + "EncodingScheme": "FontSpecific", + "FontName": "Source Sans 3", + "FullName": "Source Sans 3 Italic", + "Version": "Version 3.052;hotconv 1.1.0;makeotfexe 2.6.0", + "PostScriptName": "SourceSans3-Italic", + "Weight": "Medium", + "ItalicAngle": "-11", + "IsFixedPitch": "false", + "UnderlineThickness": "50", + "UnderlinePosition": "-50", + "FontHeightOffset": "0", + "Ascender": "1024", + "Descender": "-400", + "FontBBox": [ + "-636", + "-295", + "2077", + "957" + ], + "StartCharMetrics": "1799", + "C": { + "32": 200, + "33": 282, + "34": 407, + "35": 479, + "36": 480, + "37": 791, + "38": 582, + "39": 242, + "40": 291, + "41": 293, + "42": 403, + "43": 480, + "44": 242, + "45": 299, + "46": 242, + "47": 340, + "48": 479, + "49": 480, + "50": 480, + "51": 480, + "52": 480, + "53": 480, + "54": 480, + "55": 480, + "56": 480, + "57": 480, + "58": 242, + "59": 242, + "60": 480, + "61": 480, + "62": 480, + "63": 409, + "64": 814, + "65": 510, + "66": 569, + "67": 550, + "68": 594, + "69": 502, + "70": 473, + "71": 588, + "72": 623, + "73": 249, + "74": 456, + "75": 555, + "76": 462, + "77": 705, + "78": 619, + "79": 633, + "80": 550, + "81": 633, + "82": 555, + "83": 506, + "84": 510, + "85": 616, + "86": 496, + "87": 756, + "88": 490, + "89": 461, + "90": 512, + "91": 292, + "92": 340, + "93": 292, + "94": 479, + "95": 483, + "96": 517, + "97": 536, + "98": 536, + "99": 435, + "100": 535, + "101": 480, + "102": 282, + "103": 530, + "104": 523, + "105": 237, + "106": 238, + "107": 476, + "108": 248, + "109": 799, + "110": 525, + "111": 514, + "112": 535, + "113": 534, + "114": 342, + "115": 402, + "116": 324, + "117": 522, + "118": 448, + "119": 707, + "120": 429, + "121": 448, + "122": 410, + "123": 290, + "124": 231, + "125": 293, + "126": 480, + "160": 200, + "161": 282, + "162": 480, + "163": 480, + "164": 480, + "165": 479, + "166": 231, + "167": 477, + "168": 517, + "169": 665, + "170": 354, + "171": 412, + "172": 480, + "173": 299, + "174": 406, + "175": 517, + "176": 313, + "177": 480, + "178": 353, + "179": 351, + "180": 517, + "181": 519, + "182": 535, + "183": 242, + "184": 517, + "185": 356, + "186": 348, + "187": 412, + "188": 748, + "189": 772, + "190": 764, + "191": 409, + "192": 510, + "193": 510, + "194": 510, + "195": 510, + "196": 510, + "197": 510, + "198": 803, + "199": 550, + "200": 502, + "201": 502, + "202": 502, + "203": 502, + "204": 249, + "205": 249, + "206": 249, + "207": 249, + "208": 614, + "209": 619, + "210": 633, + "211": 633, + "212": 633, + "213": 633, + "214": 633, + "215": 480, + "216": 634, + "217": 616, + "218": 616, + "219": 616, + "220": 616, + "221": 461, + "222": 562, + "223": 555, + "224": 537, + "225": 537, + "226": 537, + "227": 537, + "228": 537, + "229": 537, + "230": 761, + "231": 435, + "232": 481, + "233": 481, + "234": 481, + "235": 481, + "236": 237, + "237": 237, + "238": 237, + "239": 237, + "240": 529, + "241": 525, + "242": 514, + "243": 514, + "244": 514, + "245": 514, + "246": 514, + "247": 480, + "248": 515, + "249": 522, + "250": 522, + "251": 522, + "252": 522, + "253": 448, + "254": 535, + "255": 448, + "256": 510, + "257": 537, + "258": 510, + "259": 537, + "260": 510, + "261": 537, + "262": 550, + "263": 435, + "264": 550, + "265": 435, + "266": 550, + "267": 435, + "268": 550, + "269": 435, + "270": 594, + "271": 542, + "272": 614, + "273": 536, + "274": 502, + "275": 481, + "276": 502, + "277": 481, + "278": 502, + "279": 481, + "280": 502, + "281": 480, + "282": 502, + "283": 481, + "284": 588, + "285": 531, + "286": 588, + "287": 531, + "288": 588, + "289": 531, + "290": 588, + "291": 531, + "292": 622, + "293": 523, + "294": 663, + "295": 536, + "296": 249, + "297": 237, + "298": 249, + "299": 237, + "300": 249, + "301": 237, + "302": 249, + "303": 237, + "304": 249, + "305": 237, + "306": 498, + "307": 474, + "308": 456, + "309": 238, + "310": 555, + "311": 476, + "312": 476, + "313": 462, + "314": 248, + "315": 462, + "316": 248, + "317": 462, + "318": 243, + "319": 462, + "320": 331, + "321": 479, + "322": 288, + "323": 619, + "324": 525, + "325": 619, + "326": 525, + "327": 619, + "328": 525, + "329": 742, + "330": 612, + "331": 525, + "332": 633, + "333": 514, + "334": 633, + "335": 514, + "336": 633, + "337": 514, + "338": 816, + "339": 812, + "340": 555, + "341": 342, + "342": 555, + "343": 342, + "344": 555, + "345": 342, + "346": 506, + "347": 402, + "348": 506, + "349": 402, + "350": 506, + "351": 402, + "352": 506, + "353": 402, + "354": 510, + "355": 325, + "356": 510, + "357": 325, + "358": 510, + "359": 324, + "360": 616, + "361": 522, + "362": 616, + "363": 522, + "364": 616, + "365": 522, + "366": 616, + "367": 522, + "368": 616, + "369": 522, + "370": 616, + "371": 522, + "372": 756, + "373": 707, + "374": 461, + "375": 448, + "376": 461, + "377": 512, + "378": 410, + "379": 512, + "380": 410, + "381": 512, + "382": 410, + "383": 282, + "384": 547, + "385": 703, + "390": 545, + "394": 728, + "397": 505, + "398": 502, + "399": 636, + "400": 531, + "402": 282, + "403": 588, + "404": 470, + "406": 249, + "407": 289, + "410": 303, + "411": 448, + "414": 525, + "416": 633, + "417": 517, + "431": 629, + "432": 543, + "433": 656, + "439": 531, + "447": 527, + "448": 237, + "449": 408, + "450": 354, + "451": 246, + "461": 510, + "462": 537, + "463": 249, + "464": 237, + "465": 633, + "466": 514, + "467": 616, + "468": 522, + "469": 616, + "470": 522, + "471": 616, + "472": 522, + "473": 616, + "474": 522, + "475": 616, + "476": 522, + "477": 481, + "482": 803, + "483": 761, + "484": 628, + "485": 544, + "486": 588, + "487": 531, + "490": 633, + "491": 514, + "494": 531, + "495": 418, + "496": 238, + "500": 588, + "501": 531, + "503": 550, + "504": 619, + "505": 525, + "506": 510, + "507": 537, + "508": 803, + "509": 761, + "510": 633, + "511": 514, + "512": 510, + "513": 537, + "516": 502, + "517": 481, + "520": 249, + "521": 237, + "524": 633, + "525": 514, + "536": 506, + "537": 402, + "538": 510, + "539": 325, + "540": 478, + "541": 418, + "542": 622, + "543": 523, + "544": 624, + "546": 651, + "547": 528, + "550": 510, + "551": 537, + "567": 237, + "570": 510, + "571": 550, + "572": 435, + "573": 482, + "574": 510, + "577": 486, + "578": 420, + "579": 591, + "580": 656, + "581": 483, + "584": 477, + "585": 292, + "592": 489, + "593": 539, + "594": 539, + "595": 536, + "596": 439, + "597": 449, + "598": 537, + "599": 537, + "600": 480, + "601": 480, + "602": 644, + "603": 417, + "604": 417, + "605": 572, + "606": 496, + "607": 292, + "608": 536, + "609": 531, + "610": 482, + "611": 448, + "612": 502, + "613": 530, + "614": 519, + "615": 519, + "616": 276, + "617": 248, + "618": 330, + "619": 352, + "620": 321, + "621": 242, + "622": 570, + "623": 797, + "624": 797, + "625": 799, + "626": 525, + "627": 525, + "628": 524, + "629": 515, + "630": 678, + "631": 683, + "632": 648, + "633": 342, + "634": 342, + "635": 342, + "637": 342, + "638": 335, + "639": 250, + "640": 471, + "641": 471, + "642": 402, + "643": 237, + "644": 266, + "645": 262, + "647": 325, + "648": 325, + "649": 562, + "650": 515, + "651": 525, + "652": 448, + "653": 707, + "654": 448, + "655": 408, + "656": 418, + "657": 440, + "658": 418, + "660": 410, + "661": 410, + "664": 482, + "665": 480, + "667": 477, + "668": 534, + "669": 279, + "670": 476, + "671": 400, + "673": 423, + "674": 423, + "675": 802, + "676": 817, + "677": 849, + "678": 611, + "679": 545, + "680": 725, + "688": 353, + "689": 353, + "690": 164, + "691": 224, + "692": 224, + "695": 479, + "696": 307, + "697": 242, + "699": 247, + "700": 247, + "701": 247, + "702": 232, + "703": 232, + "704": 296, + "705": 296, + "710": 517, + "711": 517, + "712": 167, + "713": 262, + "714": 213, + "715": 213, + "716": 108, + "720": 242, + "721": 242, + "722": 232, + "723": 232, + "724": 353, + "725": 353, + "726": 353, + "727": 353, + "728": 517, + "729": 517, + "730": 517, + "731": 517, + "732": 517, + "733": 517, + "734": 185, + "736": 307, + "737": 165, + "738": 271, + "739": 306, + "740": 297, + "749": 353, + "768": 0, + "769": 0, + "770": 0, + "771": 0, + "772": 0, + "773": 0, + "774": 0, + "775": 0, + "776": 0, + "777": 0, + "778": 0, + "779": 0, + "780": 0, + "781": 0, + "783": 0, + "784": 0, + "785": 0, + "786": 0, + "787": 0, + "789": 316, + "792": 0, + "793": 0, + "794": 0, + "795": 0, + "796": 0, + "797": 0, + "798": 0, + "799": 0, + "800": 0, + "803": 0, + "804": 0, + "805": 0, + "806": 0, + "807": 0, + "808": 0, + "809": 0, + "810": 0, + "812": 0, + "814": 0, + "815": 0, + "816": 0, + "817": 0, + "818": 0, + "820": 0, + "823": 0, + "824": 0, + "825": 0, + "826": 0, + "827": 0, + "828": 0, + "829": 0, + "832": 0, + "834": 0, + "835": 0, + "836": 0, + "837": 0, + "847": 0, + "855": 0, + "856": 0, + "860": 0, + "862": 0, + "863": 0, + "865": 0, + "884": 236, + "885": 236, + "890": 542, + "894": 242, + "900": 542, + "901": 542, + "902": 540, + "903": 242, + "904": 577, + "905": 696, + "906": 323, + "908": 700, + "910": 578, + "911": 723, + "912": 248, + "913": 510, + "914": 569, + "915": 472, + "916": 523, + "917": 502, + "918": 512, + "919": 622, + "920": 633, + "921": 249, + "922": 555, + "923": 483, + "924": 705, + "925": 619, + "926": 508, + "927": 633, + "928": 620, + "929": 550, + "931": 515, + "932": 510, + "933": 461, + "934": 697, + "935": 490, + "936": 663, + "937": 656, + "938": 249, + "939": 461, + "940": 536, + "941": 405, + "942": 520, + "943": 248, + "944": 495, + "945": 536, + "946": 537, + "947": 461, + "948": 506, + "949": 405, + "950": 401, + "951": 520, + "952": 499, + "953": 248, + "954": 462, + "955": 429, + "956": 519, + "957": 451, + "958": 402, + "959": 509, + "960": 555, + "961": 531, + "962": 423, + "963": 532, + "964": 437, + "965": 495, + "966": 635, + "967": 439, + "968": 633, + "969": 668, + "970": 248, + "971": 495, + "972": 509, + "973": 495, + "974": 668, + "975": 565, + "976": 528, + "977": 515, + "981": 635, + "983": 468, + "985": 510, + "987": 449, + "989": 396, + "993": 475, + "1012": 633, + "1015": 512, + "1016": 535, + "1024": 502, + "1025": 502, + "1026": 659, + "1027": 472, + "1028": 550, + "1029": 506, + "1030": 249, + "1031": 249, + "1032": 456, + "1033": 868, + "1034": 890, + "1035": 655, + "1036": 555, + "1037": 630, + "1038": 482, + "1039": 620, + "1040": 510, + "1041": 555, + "1042": 569, + "1043": 472, + "1044": 624, + "1045": 502, + "1046": 809, + "1047": 531, + "1048": 631, + "1049": 630, + "1050": 555, + "1051": 625, + "1052": 705, + "1053": 622, + "1054": 633, + "1055": 620, + "1056": 550, + "1057": 550, + "1058": 510, + "1059": 482, + "1060": 715, + "1061": 490, + "1062": 630, + "1063": 571, + "1064": 807, + "1065": 818, + "1066": 678, + "1067": 770, + "1068": 557, + "1069": 547, + "1070": 872, + "1071": 561, + "1072": 537, + "1073": 514, + "1074": 471, + "1075": 388, + "1076": 518, + "1077": 481, + "1078": 688, + "1079": 419, + "1080": 522, + "1081": 522, + "1082": 476, + "1083": 524, + "1084": 643, + "1085": 534, + "1086": 514, + "1087": 525, + "1088": 535, + "1089": 435, + "1090": 799, + "1091": 448, + "1092": 702, + "1093": 429, + "1094": 537, + "1095": 477, + "1096": 797, + "1097": 813, + "1098": 539, + "1099": 658, + "1100": 459, + "1101": 443, + "1102": 713, + "1103": 482, + "1104": 481, + "1105": 481, + "1106": 536, + "1107": 388, + "1108": 435, + "1109": 402, + "1110": 237, + "1111": 237, + "1112": 238, + "1113": 731, + "1114": 740, + "1115": 523, + "1116": 476, + "1117": 522, + "1118": 448, + "1119": 522, + "1122": 590, + "1123": 746, + "1138": 633, + "1139": 514, + "1140": 504, + "1141": 454, + "1168": 472, + "1169": 388, + "1170": 492, + "1171": 388, + "1174": 830, + "1175": 723, + "1176": 531, + "1177": 419, + "1178": 585, + "1179": 502, + "1184": 686, + "1185": 590, + "1186": 635, + "1187": 547, + "1194": 550, + "1195": 435, + "1198": 461, + "1199": 448, + "1200": 461, + "1201": 448, + "1202": 506, + "1203": 417, + "1206": 584, + "1207": 490, + "1210": 571, + "1211": 519, + "1216": 249, + "1217": 809, + "1218": 688, + "1219": 565, + "1220": 486, + "1223": 622, + "1224": 534, + "1231": 248, + "1232": 510, + "1233": 537, + "1236": 803, + "1237": 761, + "1238": 502, + "1239": 481, + "1240": 636, + "1241": 478, + "1250": 630, + "1251": 522, + "1254": 633, + "1255": 514, + "1256": 633, + "1257": 514, + "1262": 482, + "1263": 448, + "1266": 482, + "1267": 448, + "1270": 472, + "1271": 388, + "7461": 502, + "7468": 348, + "7470": 376, + "7472": 393, + "7473": 337, + "7475": 395, + "7476": 419, + "7477": 171, + "7478": 310, + "7479": 371, + "7480": 311, + "7481": 467, + "7482": 415, + "7484": 425, + "7486": 368, + "7487": 373, + "7488": 341, + "7489": 414, + "7490": 506, + "7491": 355, + "7495": 360, + "7496": 365, + "7497": 323, + "7498": 321, + "7499": 303, + "7501": 354, + "7503": 325, + "7504": 536, + "7505": 355, + "7506": 348, + "7510": 359, + "7511": 222, + "7512": 355, + "7515": 307, + "7535": 914, + "7536": 640, + "7545": 468, + "7547": 330, + "7551": 550, + "7580": 292, + "7584": 195, + "7596": 536, + "7598": 355, + "7600": 359, + "7611": 279, + "7615": 351, + "7629": 0, + "7682": 569, + "7683": 536, + "7686": 569, + "7687": 536, + "7690": 594, + "7691": 535, + "7692": 594, + "7693": 535, + "7694": 594, + "7695": 535, + "7696": 594, + "7697": 535, + "7702": 502, + "7703": 481, + "7710": 473, + "7711": 282, + "7712": 588, + "7713": 531, + "7714": 622, + "7715": 523, + "7716": 622, + "7717": 523, + "7718": 622, + "7719": 523, + "7720": 622, + "7721": 523, + "7722": 622, + "7723": 523, + "7730": 555, + "7731": 476, + "7732": 555, + "7733": 476, + "7734": 462, + "7735": 248, + "7736": 462, + "7737": 248, + "7738": 462, + "7739": 248, + "7742": 705, + "7743": 799, + "7744": 705, + "7745": 799, + "7746": 705, + "7747": 799, + "7748": 619, + "7749": 525, + "7750": 619, + "7751": 525, + "7752": 619, + "7753": 525, + "7762": 633, + "7763": 514, + "7766": 550, + "7767": 535, + "7768": 555, + "7769": 342, + "7770": 555, + "7771": 342, + "7772": 555, + "7773": 342, + "7774": 555, + "7775": 342, + "7776": 506, + "7777": 402, + "7778": 506, + "7779": 402, + "7782": 506, + "7783": 402, + "7786": 510, + "7787": 325, + "7788": 510, + "7789": 325, + "7790": 510, + "7791": 325, + "7794": 616, + "7795": 522, + "7806": 496, + "7807": 448, + "7808": 756, + "7809": 707, + "7810": 756, + "7811": 707, + "7812": 756, + "7813": 707, + "7822": 461, + "7823": 448, + "7824": 512, + "7825": 410, + "7826": 512, + "7827": 410, + "7828": 512, + "7829": 410, + "7830": 523, + "7831": 325, + "7838": 633, + "7839": 509, + "7840": 510, + "7841": 537, + "7842": 510, + "7843": 537, + "7844": 510, + "7845": 537, + "7846": 510, + "7847": 537, + "7848": 510, + "7849": 537, + "7850": 510, + "7851": 537, + "7852": 510, + "7853": 537, + "7854": 510, + "7855": 537, + "7856": 510, + "7857": 537, + "7858": 510, + "7859": 537, + "7860": 510, + "7861": 537, + "7862": 510, + "7863": 537, + "7864": 502, + "7865": 481, + "7866": 502, + "7867": 481, + "7868": 502, + "7869": 481, + "7870": 502, + "7871": 481, + "7872": 502, + "7873": 481, + "7874": 502, + "7875": 481, + "7876": 502, + "7877": 481, + "7878": 502, + "7879": 481, + "7880": 249, + "7881": 237, + "7882": 249, + "7883": 237, + "7884": 633, + "7885": 514, + "7886": 633, + "7887": 514, + "7888": 633, + "7889": 514, + "7890": 633, + "7891": 514, + "7892": 633, + "7893": 514, + "7894": 633, + "7895": 514, + "7896": 633, + "7897": 514, + "7898": 633, + "7899": 517, + "7900": 633, + "7901": 517, + "7902": 633, + "7903": 517, + "7904": 633, + "7905": 517, + "7906": 633, + "7907": 517, + "7908": 616, + "7909": 522, + "7910": 616, + "7911": 522, + "7912": 629, + "7913": 543, + "7914": 629, + "7915": 543, + "7916": 629, + "7917": 543, + "7918": 629, + "7919": 543, + "7920": 629, + "7921": 543, + "7922": 461, + "7923": 448, + "7924": 461, + "7925": 448, + "7926": 461, + "7927": 448, + "7928": 461, + "7929": 448, + "7936": 536, + "7937": 536, + "7938": 536, + "7939": 536, + "7940": 536, + "7941": 536, + "7942": 536, + "7943": 536, + "7944": 561, + "7945": 561, + "7946": 685, + "7947": 685, + "7948": 671, + "7949": 671, + "7950": 587, + "7951": 587, + "7952": 405, + "7953": 405, + "7954": 405, + "7955": 405, + "7956": 405, + "7957": 405, + "7960": 626, + "7961": 626, + "7962": 746, + "7963": 742, + "7964": 746, + "7965": 736, + "7968": 520, + "7969": 520, + "7970": 520, + "7971": 520, + "7972": 520, + "7973": 520, + "7974": 520, + "7975": 520, + "7976": 745, + "7977": 745, + "7978": 866, + "7979": 862, + "7980": 866, + "7981": 856, + "7982": 804, + "7983": 804, + "7984": 248, + "7985": 248, + "7986": 248, + "7987": 248, + "7988": 248, + "7989": 248, + "7990": 248, + "7991": 248, + "7992": 372, + "7993": 368, + "7994": 492, + "7995": 489, + "7996": 492, + "7997": 482, + "7998": 431, + "7999": 431, + "8000": 509, + "8001": 509, + "8002": 509, + "8003": 509, + "8004": 509, + "8005": 509, + "8008": 760, + "8009": 756, + "8010": 891, + "8011": 887, + "8012": 873, + "8013": 867, + "8016": 495, + "8017": 495, + "8018": 495, + "8019": 495, + "8020": 495, + "8021": 495, + "8022": 495, + "8023": 495, + "8025": 637, + "8027": 727, + "8029": 747, + "8031": 690, + "8032": 668, + "8033": 668, + "8034": 668, + "8035": 668, + "8036": 668, + "8037": 668, + "8038": 668, + "8039": 668, + "8040": 783, + "8041": 780, + "8042": 914, + "8043": 910, + "8044": 896, + "8045": 890, + "8046": 831, + "8047": 831, + "8048": 536, + "8049": 536, + "8050": 405, + "8051": 405, + "8052": 520, + "8053": 520, + "8054": 248, + "8055": 248, + "8056": 509, + "8057": 509, + "8058": 495, + "8059": 495, + "8060": 668, + "8061": 668, + "8064": 536, + "8065": 536, + "8066": 536, + "8067": 536, + "8068": 536, + "8069": 536, + "8070": 536, + "8071": 536, + "8072": 809, + "8073": 809, + "8074": 933, + "8075": 933, + "8076": 919, + "8077": 919, + "8078": 835, + "8079": 835, + "8080": 520, + "8081": 520, + "8082": 520, + "8083": 520, + "8084": 520, + "8085": 520, + "8086": 520, + "8087": 520, + "8088": 993, + "8089": 993, + "8090": 1114, + "8091": 1110, + "8092": 1114, + "8093": 1104, + "8094": 1052, + "8095": 1052, + "8096": 668, + "8097": 668, + "8098": 668, + "8099": 668, + "8100": 668, + "8101": 668, + "8102": 668, + "8103": 668, + "8104": 1031, + "8105": 1028, + "8106": 1162, + "8107": 1158, + "8108": 1144, + "8109": 1138, + "8110": 1079, + "8111": 1079, + "8112": 536, + "8113": 536, + "8114": 536, + "8115": 536, + "8116": 536, + "8118": 536, + "8119": 536, + "8120": 510, + "8121": 510, + "8122": 547, + "8123": 540, + "8124": 758, + "8125": 542, + "8126": 248, + "8127": 542, + "8128": 542, + "8129": 542, + "8130": 520, + "8131": 520, + "8132": 520, + "8134": 520, + "8135": 520, + "8136": 577, + "8137": 577, + "8138": 696, + "8139": 696, + "8140": 870, + "8141": 542, + "8142": 542, + "8143": 542, + "8144": 248, + "8145": 248, + "8146": 248, + "8147": 248, + "8150": 248, + "8151": 248, + "8152": 249, + "8153": 249, + "8154": 323, + "8155": 323, + "8157": 542, + "8158": 542, + "8159": 542, + "8160": 495, + "8161": 495, + "8162": 495, + "8163": 495, + "8164": 531, + "8165": 531, + "8166": 495, + "8167": 495, + "8168": 461, + "8169": 461, + "8170": 558, + "8171": 578, + "8172": 674, + "8173": 542, + "8174": 542, + "8175": 542, + "8178": 668, + "8179": 668, + "8180": 668, + "8182": 668, + "8183": 668, + "8184": 721, + "8185": 700, + "8186": 744, + "8187": 723, + "8188": 895, + "8189": 542, + "8190": 542, + "8199": 480, + "8201": 100, + "8202": 20, + "8203": 0, + "8208": 299, + "8209": 299, + "8210": 480, + "8211": 463, + "8212": 769, + "8213": 769, + "8214": 381, + "8215": 483, + "8216": 242, + "8217": 242, + "8218": 242, + "8219": 242, + "8220": 407, + "8221": 407, + "8222": 407, + "8224": 435, + "8225": 435, + "8226": 295, + "8227": 295, + "8230": 959, + "8239": 120, + "8240": 1144, + "8241": 1498, + "8242": 242, + "8243": 407, + "8245": 242, + "8249": 252, + "8250": 252, + "8252": 538, + "8253": 414, + "8254": 483, + "8255": 540, + "8260": 84, + "8263": 799, + "8264": 672, + "8265": 659, + "8266": 409, + "8304": 357, + "8305": 163, + "8308": 354, + "8309": 351, + "8310": 353, + "8311": 353, + "8312": 353, + "8313": 353, + "8314": 353, + "8315": 353, + "8316": 353, + "8317": 227, + "8318": 226, + "8319": 355, + "8320": 357, + "8321": 356, + "8322": 353, + "8323": 351, + "8324": 354, + "8325": 351, + "8326": 353, + "8327": 353, + "8328": 353, + "8329": 353, + "8330": 353, + "8331": 353, + "8332": 353, + "8333": 227, + "8334": 226, + "8353": 479, + "8355": 480, + "8356": 479, + "8358": 479, + "8359": 480, + "8361": 479, + "8363": 479, + "8364": 479, + "8366": 479, + "8369": 479, + "8370": 480, + "8372": 479, + "8373": 480, + "8376": 479, + "8377": 479, + "8378": 479, + "8381": 479, + "8453": 771, + "8467": 394, + "8470": 853, + "8471": 665, + "8478": 678, + "8480": 601, + "8482": 611, + "8486": 656, + "8494": 800, + "8528": 778, + "8529": 773, + "8530": 1144, + "8531": 778, + "8532": 795, + "8533": 778, + "8534": 795, + "8535": 795, + "8536": 823, + "8537": 773, + "8538": 787, + "8539": 773, + "8540": 787, + "8541": 787, + "8542": 770, + "8585": 791, + "8592": 593, + "8593": 593, + "8594": 593, + "8595": 593, + "8596": 596, + "8597": 596, + "8598": 596, + "8599": 596, + "8600": 596, + "8601": 596, + "8616": 596, + "8656": 596, + "8657": 596, + "8658": 596, + "8659": 596, + "8679": 800, + "8704": 510, + "8706": 519, + "8707": 502, + "8710": 523, + "8719": 646, + "8721": 485, + "8722": 480, + "8725": 84, + "8729": 480, + "8730": 537, + "8734": 752, + "8735": 480, + "8745": 480, + "8747": 342, + "8758": 242, + "8759": 529, + "8776": 480, + "8800": 480, + "8801": 480, + "8804": 480, + "8805": 480, + "8962": 600, + "8963": 800, + "8976": 480, + "8984": 1000, + "8988": 292, + "8989": 292, + "8990": 292, + "8991": 292, + "8992": 342, + "8993": 342, + "8997": 1000, + "8998": 1000, + "9003": 1000, + "9632": 600, + "9633": 600, + "9642": 295, + "9643": 295, + "9644": 295, + "9650": 600, + "9651": 600, + "9652": 295, + "9653": 295, + "9654": 600, + "9655": 600, + "9656": 295, + "9657": 295, + "9658": 600, + "9660": 600, + "9661": 600, + "9662": 295, + "9663": 295, + "9664": 600, + "9665": 600, + "9666": 295, + "9667": 295, + "9668": 600, + "9670": 600, + "9673": 600, + "9674": 499, + "9675": 600, + "9676": 585, + "9679": 600, + "9688": 295, + "9689": 600, + "9702": 295, + "9744": 765, + "9745": 766, + "9749": 600, + "9786": 600, + "9787": 600, + "9788": 600, + "9791": 600, + "9792": 600, + "9793": 600, + "9794": 600, + "9824": 600, + "9827": 600, + "9829": 600, + "9830": 600, + "9834": 480, + "9835": 600, + "10003": 542, + "10004": 569, + "10007": 533, + "10008": 577, + "10066": 600, + "10075": 360, + "10076": 360, + "10077": 720, + "10078": 710, + "10079": 360, + "10080": 720, + "10084": 600, + "10214": 363, + "10215": 363, + "10216": 291, + "10217": 293, + "11360": 482, + "11361": 303, + "11362": 511, + "11365": 536, + "11366": 324, + "11377": 454, + "11389": 332, + "11800": 414, + "11810": 292, + "11811": 292, + "11812": 292, + "11813": 292, + "11834": 1440, + "11835": 2112, + "11858": 462, + "42780": 242, + "42786": 278, + "42787": 271, + "42788": 278, + "42789": 271, + "42830": 1020, + "42831": 844, + "42842": 479, + "42843": 360, + "42852": 582, + "42853": 532, + "42873": 638, + "42874": 509, + "42875": 548, + "42876": 362, + "42877": 588, + "42878": 588, + "42879": 468, + "42880": 462, + "42881": 248, + "42882": 549, + "42883": 491, + "42884": 548, + "42885": 362, + "42886": 510, + "42887": 415, + "42889": 242, + "42925": 501, + "42926": 324, + "42931": 486, + "42933": 543, + "42994": 364, + "42995": 318, + "42996": 425, + "43859": 447, + "43878": 809, + "43879": 611, + "64256": 549, + "64257": 519, + "64258": 530, + "64259": 787, + "64260": 798, + "65279": 0 + }, + "CIDtoGID_Compressed": true, + "CIDtoGID": "eJzt3AWcVdW+B\/B\/rTV0SncICJJKiHR3SSoliKiASIOAgHQI0qkgIgahKBLSKiiNSpdISCkpKKJy992OcwUGHwL3ct97vy+f1WuvOPucPTMfPusQ3Sa2jfaly+tmu9Xypn1hVxy5mG6PrbXD9rlzNt8+tAW20BbZYvvIlthSW2brbL076A64Q7bZ5SEhJSNHniIoBsWkWBSb4lBcikfxKQElpESUmO6hJJSUklFySkEpKZVjF+HEHbXLvjilpjSUltJRespAGSkTZaZ7KQtlpWx0H2WnHHQ\/5aRclJvyUF7KRw\/Qg5TfqfPO3PHb3Xy4\/03uPTfHzXJzXQwXx5dxGVxrO+hO2mGXyZd1Z9y37kGX35eQIy6unfSV3AOujR1yn7u1bp1toQJUkArRQ1SYHqYaVJ9a0JPUkp6m4TSCXqZRnIE+pKW0jJbTClrp9tFmukAX6Ue6xPdwRr7EJbkUl+YyXJbL8WPcnNvyc9yOO\/AEnsiTeIrk4VW8ltfxet7AG91+3ismTrzEkEySV7JQES5PRbkCleQq1ICfoEe5BT3GT1JDbklN+Blqzs\/SM9yRWnEnas2dqS13ozbchXryAOrFg6g3D6YXeSgN4BH0Eo+nkTyZRvMrNIZfpQk8ncbyGzSFZ9Ir\/CZN41k8l17nd+kNnkcz+D2ayx\/R2\/whfcAraCF\/QvN5Ja+hj\/gzWsWb6GPeTJ\/wFvqC99M+PkEH+HvazyfpMJ+lI3yOjvEFOso\/0Gn+lb7ny3RehH6SCPpZYtJliUW\/SGz6VeLQFYnHCSU9J5HMnIxTSXZOI\/dzWsnJP3MTqhN1L7+KTJ\/4ZyQNqBtnpeeJ3Dzqz3mDW52PJoe3fIG0D9PPg2g7H\/qLN0cMScYP\/ql879Xtkk+myWsyXV6P5uLiXInG8TT6lL+g3yQukyRgloQskohVEnPfqJ61uBH15WHUh4eE5TUc7oSzSH5+K7JPD+4f1GSi93k5VedHqSY3pC28j0pw5bD9We4apuP5tTBdzV9Gu6XjfJHO8G+cWR6gwTyKlgR12\/hg2FaMK974tQhX9E6YPEKN+Cl6h34I6wpICarNnn6fbyq\/fdUrVFmqSFVuygekhtSSR+RRKSCPSUNpJI2liTTl4fK4NJPm0l1ayJPSkmdIK3maF\/FieVbaSgfpKJ2ki3SV56WH9JQXpJf0lj7yYjByX+knb0h\/GSADZZAMlplB3RAZKiNllIzhr2WcjJcJMlEmSXAHZYq8Eq5nhlQL4ifkKWktbeS5IP+qTJXaUkfqyjB5SYZfvWM31M10L7kx7s2wNNFN9lWIfFVfzVf3NXxNX8s\/8kdfX9KX8o18Y9\/EN\/WPR9bV9nV8XV\/P1\/cN\/KP+MV\/OV\/TlfWVf2lfwDYMR33Ij3Fg3yb1N13DF\/vpeRI7fwj\/lW\/k2vq1v5zv4Lr6b7+57+l6+j+8XtA7wg\/wQP8yPCPKjwv5j\/Fg\/zo\/3E\/xEP8lP9lPC2lf8q36qn+an+xl+pg\/26oP3nX\/bv+Nn+dl+TpCfG\/Zb7df4d\/17fp5\/338Q1rQMwny\/wC\/0i6JZ3Y\/XlBf7JZG5ZUFY7lcE8cqb2ace0sNR+WOR6Td\/aj+iR+ULPShfyleyNbir24OwQ3apySJZLB\/JElkqy2S5rJCVsko+lk\/kU1kta+QzCZ4CslbWyXrZIBtlk2yWbbJTLssv8qv8pk52yx7ZK\/tkv3wtB+QbOSiH5LAckW\/lqByT43JCzslJ+U6+l1NyWs7IWbmioqSsqgfkkvz8+wrlVLDKr4P0fBCCT45ciKy\/eDP7l5\/CeItc84paRstkme1ey2JZLZvdZ9kth91vOS2X5bY8ltfE1MyceYuwGBbTYllsi2NxLZ7FtwSW0BJZYrvHklhSS2bJLYWltFSW2tJYWktn6S2D1bCaVssesdpWx+paPatvDexRe8waWiNrbE2sqT1uzay5PWEt7ElraU\/Z0\/aMtbLW1saetbb2nLWz9tbBOlon62xdrKt1s+etu\/WwnvaC9Qr3kM96\/9Xe7QHrYw\/aizfzOl13bX7rawWsX5gvZAPsIRtohW1QVPvDNtiK2tCrriluL4VpCRtuJW2ElbKXw3JpGxmmZWxUVN+yVs5GWxELn9xWzIZdNdIYK29jw1wFG2cVbbxVsgnXrbGyTQzTKjbJqtrkqPpqFn46rbqFzy4raP1v5TUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAID\/K2Tyn0vu2SC0DUI71z6IO7pOrrPr4rq6bu551z2o6RGEnq6X6+36uL6uX+RV\/d1AN8hNddOC\/JAgDHcvu9dc5GkJN9qNc+PD3HVnIG6wps7S7bq6h4LwTGR+9C1ultyAyHTwDdqnB+H1IMyItnVKZPrGjWfwq251bX9bXf79tFk9bhamjflpasqt6HFuTc24TVS\/rnz1GZru3I9e4IE0iEfSEB5NA\/llGspjaBiPvarfazybpvMcmsnv05v8Ab3F88P6d3kJvcdLaR4vowX8MS3iT2kxr75ufZt4T5ju5eP0NX9H3\/ApOsin6RCfoW\/5PJ3g3081neTwlBOd4l\/oLF+hcxIW2eSe6LbN8SQNx5e0nEDScSLJcF17csnKqSUHp5NcnF5y8zjhqzp8J\/WpNFejMlydynINKsc1qTzXogr8CFXk2lSJ61BlrktVuB5V5fpUjRtQO+5O7bkHPcXtqQP3pI78AnXiXtSZe1MX7kMT+XWaxFPpM95Kn\/M2WsvbaR3voPW8kzbwLtrIu2kHH6adfIR28be0m4\/SHj7GTpJwhCTlmJKcY0kKji0pOY6k4riSmhNLRk4h2Til3MdJ5aozqPqkttRntJW21jb6rLZVrxEaS2NrHI2r8TS+dtCO2kW7ajd9PuyfSBNrUk2myTVFWO6uPbSX9tY++qL21X6aUlNpWk2n6TWDZtRMOkAH6hAdqsP0JR2uIzSz3qvZ9D7Nrjn0fs2p43S8TtLJOkXDM0qaR\/Pqg5pfC2jBsDxNX9MZ+obO1Df1LX07qAk+v1okCEWDUEzf03k6Xz\/UBbpQF+liLamltKyW0\/JaQStqJX1Kn9ZO2ll76gs6SAfrBJ2o0\/V1fV\/D84e6VJfpSl2lH+sn+qmu1ipaVatpda2hNbWWPqKf61rdoBt1k27WLfqF1tG6Wk\/rawN9VB\/ThrpVt+lO3aW7dY\/u1X3aWJtoU31cm2lzfUJb6HPaTpfrEl0RzNVe12gCTagxNKZW1hN6XE\/qBf1J1+lnuj5o769f6j2aRFNrGq2tp\/WsnteXdaSO1jHhWkfpWM2luTWLZg1KZ\/Sc\/qCzdLbO0bn6qk7Vd\/RdLa4ltLA+rIX0ov6o34fXbdevdEeQfqT7NZ8+oKW1jDbSU\/rdte94\/1sQrkRQRNT73A4H\/47bEfvWTrh49ot9ZVtth+2ybbbddgZPsFgutn1n4Ty24drxIsStcZ+5s+5c0PN85IgH7JugFN8ltl\/ttz96uo\/DOIFL5BLKW9eOc+tcPheeqHMFXEFXyD3kCruHXRFX1BVzxV0JN9KVdKVcaVfGlXXlXHlXwVV0lVxlV8VVddVc9Zua4f0grHLBu8nNdx8G8YIgLHTvBvHysH2RWxzEH7nw5Kpb4Za6ZWFu5Z3b5Z3grty4zYexfeAyXlVbOLgqeJq4zL+XZfM1V139tLy1VX3ldrpdbr3b4Da6TW6z2+K+cF+6rW6b2+523P740cy4+88lL169eefj+fje+wgfw8f8q6t9gju7Gh\/Lx\/ZxfNyb7P3L3x3fXQrCDy48YyxLrmsNPp\/uV7c3zH8SWfe1+ykyd9qdimbE4FngLkQ712X3P67PnbjZlUf2P+bCU9zusDvy966EP\/hi\/tcbtblrfkb4P+59EpfUJXPJ3UUXeaLcX\/I\/R\/W6fOdXCQDw38Un9tf9bWmn7Yz9\/Kc+yXxyO2vnfAqf0s7bDz5dUJfKp7YLdtGn8WntR\/vJpw\/qkoa9M\/qiPpEPv4PIJ7xu7Ev+ur9To9qi+Wl8u3wmH\/nbnc93x8bM7fP4ImGugC\/oC\/mHbmOsXGF8fxBy+JyRdff57Le\/SvgXf6\/PEqZZfba7MHuSa2tst+2xvbbP9tvXkX3y\/qdX9d\/HpXApXSqX+m6vAwAAAODfahYvpNn\/zHBj0eg6yNjoaoPflm7p+wAB\/j9z0fxPukvj0rp0Lv3NjmFH7djfmVOu+25bAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD438A3+1eeC0pJLiSl7vgkW\/mb6Ko5lxS9tk7ekVk3Nyhnk4J8nxTi7JxDCvP98jDnlCKcW4pxHike7Kz57S06yhyZFzVn\/mCF1e\/QuH+be851cC\/crdkBAABuldS8qV71ZMS\/eyUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADw30lmR7gIL3Nk7t1eCQAAAPxnROjdXgHcXf8AI0MdKw==", + "_version_": 6 +} \ No newline at end of file diff --git a/storage/fonts/source_sans_3_normal_aad9d2826a2e4f3177b8178781749542.ufm.json b/storage/fonts/source_sans_3_normal_aad9d2826a2e4f3177b8178781749542.ufm.json new file mode 100644 index 0000000..de1721f --- /dev/null +++ b/storage/fonts/source_sans_3_normal_aad9d2826a2e4f3177b8178781749542.ufm.json @@ -0,0 +1,3232 @@ +{ + "codeToName": { + "32": "space", + "33": "exclam", + "34": "quotedbl", + "35": "numbersign", + "36": "dollar", + "37": "percent", + "38": "ampersand", + "39": "quotesingle", + "40": "parenleft", + "41": "parenright", + "42": "asterisk", + "43": "plus", + "44": "comma", + "45": "hyphen", + "46": "period", + "47": "slash", + "48": "zero", + "49": "one", + "50": "two", + "51": "three", + "52": "four", + "53": "five", + "54": "six", + "55": "seven", + "56": "eight", + "57": "nine", + "58": "colon", + "59": "semicolon", + "60": "less", + "61": "equal", + "62": "greater", + "63": "question", + "64": "at", + "65": "A", + "66": "B", + "67": "C", + "68": "D", + "69": "E", + "70": "F", + "71": "G", + "72": "H", + "73": "I", + "74": "J", + "75": "K", + "76": "L", + "77": "M", + "78": "N", + "79": "O", + "80": "P", + "81": "Q", + "82": "R", + "83": "S", + "84": "T", + "85": "U", + "86": "V", + "87": "W", + "88": "X", + "89": "Y", + "90": "Z", + "91": "bracketleft", + "92": "backslash", + "93": "bracketright", + "94": "asciicircum", + "95": "underscore", + "96": "grave", + "97": "a", + "98": "b", + "99": "c", + "100": "d", + "101": "e", + "102": "f", + "103": "g", + "104": "h", + "105": "i", + "106": "j", + "107": "k", + "108": "l", + "109": "m", + "110": "n", + "111": "o", + "112": "p", + "113": "q", + "114": "r", + "115": "s", + "116": "t", + "117": "u", + "118": "v", + "119": "w", + "120": "x", + "121": "y", + "122": "z", + "123": "braceleft", + "124": "bar", + "125": "braceright", + "126": "asciitilde", + "160": "space", + "161": "exclamdown", + "162": "cent", + "163": "sterling", + "164": "currency", + "165": "yen", + "166": "brokenbar", + "167": "section", + "168": "dieresis", + "169": "copyright", + "170": "ordfeminine", + "171": "guillemotleft", + "172": "logicalnot", + "173": "hyphen", + "174": "registered", + "175": "macron", + "176": "degree", + "177": "plusminus", + "178": "two.u", + "179": "three.u", + "180": "acute", + "181": "mu", + "182": "paragraph", + "183": "periodcentered", + "184": "cedilla", + "185": "one.u", + "186": "ordmasculine", + "187": "guillemotright", + "188": "onequarter", + "189": "onehalf", + "190": "threequarters", + "191": "questiondown", + "192": "Agrave", + "193": "Aacute", + "194": "Acircumflex", + "195": "Atilde", + "196": "Adieresis", + "197": "Aring", + "198": "AE", + "199": "Ccedilla", + "200": "Egrave", + "201": "Eacute", + "202": "Ecircumflex", + "203": "Edieresis", + "204": "Igrave", + "205": "Iacute", + "206": "Icircumflex", + "207": "Idieresis", + "208": "Eth", + "209": "Ntilde", + "210": "Ograve", + "211": "Oacute", + "212": "Ocircumflex", + "213": "Otilde", + "214": "Odieresis", + "215": "multiply", + "216": "Oslash", + "217": "Ugrave", + "218": "Uacute", + "219": "Ucircumflex", + "220": "Udieresis", + "221": "Yacute", + "222": "Thorn", + "223": "germandbls", + "224": "agrave", + "225": "aacute", + "226": "acircumflex", + "227": "atilde", + "228": "adieresis", + "229": "aring", + "230": "ae", + "231": "ccedilla", + "232": "egrave", + "233": "eacute", + "234": "ecircumflex", + "235": "edieresis", + "236": "igrave", + "237": "iacute", + "238": "icircumflex", + "239": "idieresis", + "240": "eth", + "241": "ntilde", + "242": "ograve", + "243": "oacute", + "244": "ocircumflex", + "245": "otilde", + "246": "odieresis", + "247": "divide", + "248": "oslash", + "249": "ugrave", + "250": "uacute", + "251": "ucircumflex", + "252": "udieresis", + "253": "yacute", + "254": "thorn", + "255": "ydieresis", + "256": "Amacron", + "257": "amacron", + "258": "Abreve", + "259": "abreve", + "260": "Aogonek", + "261": "aogonek", + "262": "Cacute", + "263": "cacute", + "264": "Ccircumflex", + "265": "ccircumflex", + "266": "Cdotaccent", + "267": "cdotaccent", + "268": "Ccaron", + "269": "ccaron", + "270": "Dcaron", + "271": "dcaron", + "272": "Dcroat", + "273": "dmacron", + "274": "Emacron", + "275": "emacron", + "276": "Ebreve", + "277": "ebreve", + "278": "Edotaccent", + "279": "edotaccent", + "280": "Eogonek", + "281": "eogonek", + "282": "Ecaron", + "283": "ecaron", + "284": "Gcircumflex", + "285": "gcircumflex", + "286": "Gbreve", + "287": "gbreve", + "288": "Gdotaccent", + "289": "gdotaccent", + "290": "uni0122", + "291": "uni0123", + "292": "Hcircumflex", + "293": "hcircumflex", + "294": "Hbar", + "295": "hbar", + "296": "Itilde", + "297": "itilde", + "298": "Imacron", + "299": "imacron", + "300": "Ibreve", + "301": "ibreve", + "302": "Iogonek", + "303": "iogonek", + "304": "Idot", + "305": "dotlessi", + "306": "IJ", + "307": "ij", + "308": "Jcircumflex", + "309": "jcircumflex", + "310": "uni0136", + "311": "uni0137", + "312": "kgreenlandic", + "313": "Lacute", + "314": "lacute", + "315": "uni013B", + "316": "uni013C", + "317": "Lcaron", + "318": "lcaron", + "319": "Ldot", + "320": "ldot", + "321": "Lslash", + "322": "lslash", + "323": "Nacute", + "324": "nacute", + "325": "uni0145", + "326": "uni0146", + "327": "Ncaron", + "328": "ncaron", + "329": "napostrophe", + "330": "Eng", + "331": "eng", + "332": "Omacron", + "333": "omacron", + "334": "Obreve", + "335": "obreve", + "336": "Ohungarumlaut", + "337": "ohungarumlaut", + "338": "OE", + "339": "oe", + "340": "Racute", + "341": "racute", + "342": "uni0156", + "343": "uni0157", + "344": "Rcaron", + "345": "rcaron", + "346": "Sacute", + "347": "sacute", + "348": "Scircumflex", + "349": "scircumflex", + "350": "uni015E", + "351": "uni015F", + "352": "Scaron", + "353": "scaron", + "354": "uni0162", + "355": "uni0163", + "356": "Tcaron", + "357": "tcaron", + "358": "Tbar", + "359": "tbar", + "360": "Utilde", + "361": "utilde", + "362": "Umacron", + "363": "umacron", + "364": "Ubreve", + "365": "ubreve", + "366": "Uring", + "367": "uring", + "368": "Uhungarumlaut", + "369": "uhungarumlaut", + "370": "Uogonek", + "371": "uogonek", + "372": "Wcircumflex", + "373": "wcircumflex", + "374": "Ycircumflex", + "375": "ycircumflex", + "376": "Ydieresis", + "377": "Zacute", + "378": "zacute", + "379": "Zdotaccent", + "380": "zdotaccent", + "381": "Zcaron", + "382": "zcaron", + "383": "longs", + "384": "uni0180", + "385": "uni0181", + "390": "uni0186", + "394": "uni018A", + "397": "uni018D", + "398": "uni018E", + "399": "uni018F", + "400": "uni0190", + "402": "uni0192", + "403": "uni0193", + "404": "uni0194", + "406": "uni0196", + "407": "uni0197", + "410": "uni019A", + "411": "uni019B", + "414": "uni019E", + "416": "Ohorn", + "417": "ohorn", + "431": "Uhorn", + "432": "uhorn", + "433": "uni01B1", + "439": "uni01B7", + "447": "uni01BF", + "448": "uni01C0", + "449": "uni01C1", + "450": "uni01C2", + "451": "uni01C3", + "461": "uni01CD", + "462": "uni01CE", + "463": "uni01CF", + "464": "uni01D0", + "465": "uni01D1", + "466": "uni01D2", + "467": "uni01D3", + "468": "uni01D4", + "469": "uni01D5", + "470": "uni01D6", + "471": "uni01D7", + "472": "uni01D8", + "473": "uni01D9", + "474": "uni01DA", + "475": "uni01DB", + "476": "uni01DC", + "477": "uni01DD", + "482": "uni01E2", + "483": "uni01E3", + "484": "uni01E4", + "485": "uni01E5", + "486": "Gcaron", + "487": "gcaron", + "490": "uni01EA", + "491": "uni01EB", + "494": "uni01EE", + "495": "uni01EF", + "496": "uni01F0", + "500": "uni01F4", + "501": "uni01F5", + "503": "uni01F7", + "504": "uni01F8", + "505": "uni01F9", + "506": "Aringacute", + "507": "aringacute", + "508": "AEacute", + "509": "aeacute", + "510": "Oslashacute", + "511": "oslashacute", + "512": "uni0200", + "513": "uni0201", + "516": "uni0204", + "517": "uni0205", + "520": "uni0208", + "521": "uni0209", + "524": "uni020C", + "525": "uni020D", + "536": "uni0218", + "537": "uni0219", + "538": "uni021A", + "539": "uni021B", + "540": "uni021C", + "541": "uni021D", + "542": "uni021E", + "543": "uni021F", + "544": "uni0220", + "546": "uni0222", + "547": "uni0223", + "550": "uni0226", + "551": "uni0227", + "567": "uni0237", + "570": "uni023A", + "571": "uni023B", + "572": "uni023C", + "573": "uni023D", + "574": "uni023E", + "577": "uni0241", + "578": "uni0242", + "579": "uni0243", + "580": "uni0244", + "581": "uni0245", + "584": "uni0248", + "585": "uni0249", + "592": "uni0250", + "593": "uni0251", + "594": "uni0252", + "595": "uni0253", + "596": "uni0254", + "597": "uni0255", + "598": "uni0256", + "599": "uni0257", + "600": "uni0258", + "601": "uni0259", + "602": "uni025A", + "603": "uni025B", + "604": "uni025C", + "605": "uni025D", + "606": "uni025E", + "607": "uni025F", + "608": "uni0260", + "609": "uni0261", + "610": "uni0262", + "611": "uni0263", + "612": "uni0264", + "613": "uni0265", + "614": "uni0266", + "615": "uni0267", + "616": "uni0268", + "617": "uni0269", + "618": "uni026A", + "619": "uni026B", + "620": "uni026C", + "621": "uni026D", + "622": "uni026E", + "623": "uni026F", + "624": "uni0270", + "625": "uni0271", + "626": "uni0272", + "627": "uni0273", + "628": "uni0274", + "629": "uni0275", + "630": "uni0276", + "631": "uni0277", + "632": "uni0278", + "633": "uni0279", + "634": "uni027A", + "635": "uni027B", + "637": "uni027D", + "638": "uni027E", + "639": "uni027F", + "640": "uni0280", + "641": "uni0281", + "642": "uni0282", + "643": "uni0283", + "644": "uni0284", + "645": "uni0285", + "647": "uni0287", + "648": "uni0288", + "649": "uni0289", + "650": "uni028A", + "651": "uni028B", + "652": "uni028C", + "653": "uni028D", + "654": "uni028E", + "655": "uni028F", + "656": "uni0290", + "657": "uni0291", + "658": "uni0292", + "660": "uni0294", + "661": "uni0295", + "664": "uni0298", + "665": "uni0299", + "667": "uni029B", + "668": "uni029C", + "669": "uni029D", + "670": "uni029E", + "671": "uni029F", + "673": "uni02A1", + "674": "uni02A2", + "675": "uni02A3", + "676": "uni02A4", + "677": "uni02A5", + "678": "uni02A6", + "679": "uni02A7", + "680": "uni02A8", + "688": "h.u", + "689": "uni02B1", + "690": "j.u", + "691": "r.u", + "692": "uni02B4", + "695": "w.u", + "696": "y.u", + "697": "uni02B9", + "699": "uni02BB", + "700": "uni02BC", + "701": "uni02BD", + "702": "uni02BE", + "703": "uni02BF", + "704": "uni02C0", + "705": "uni02C1", + "710": "circumflex", + "711": "caron", + "712": "uni02C8", + "713": "uni02C9", + "714": "uni02CA", + "715": "uni02CB", + "716": "uni02CC", + "720": "uni02D0", + "721": "uni02D1", + "722": "uni02D2", + "723": "uni02D3", + "724": "uni02D4", + "725": "uni02D5", + "726": "uni02D6", + "727": "uni02D7", + "728": "breve", + "729": "dotaccent", + "730": "ring", + "731": "ogonek", + "732": "tilde", + "733": "hungarumlaut", + "734": "uni02DE", + "736": "uni02E0", + "737": "l.u", + "738": "s.u", + "739": "x.u", + "740": "uni02E4", + "749": "equal.u", + "768": "uni0300", + "769": "uni0301", + "770": "uni0302", + "771": "uni0303", + "772": "uni0304", + "773": "uni0305", + "774": "uni0306", + "775": "uni0307", + "776": "uni0308", + "777": "uni0309", + "778": "uni030A", + "779": "uni030B", + "780": "uni030C", + "781": "uni030D", + "783": "uni030F", + "784": "uni0310", + "785": "uni0311", + "786": "uni0312", + "787": "uni0313", + "789": "uni0315", + "792": "uni0318", + "793": "uni0319", + "794": "uni031A", + "795": "uni031B", + "796": "uni031C", + "797": "uni031D", + "798": "uni031E", + "799": "uni031F", + "800": "uni0320", + "803": "uni0323", + "804": "uni0324", + "805": "uni0325", + "806": "uni0326", + "807": "uni0327", + "808": "uni0328", + "809": "uni0329", + "810": "uni032A", + "812": "uni032C", + "814": "uni032E", + "815": "uni032F", + "816": "uni0330", + "817": "uni0331", + "818": "uni0332", + "820": "uni0334", + "823": "uni0337", + "824": "uni0338", + "825": "uni0339", + "826": "uni033A", + "827": "uni033B", + "828": "uni033C", + "829": "uni033D", + "832": "uni0300.g", + "834": "uni0342", + "835": "uni0343", + "836": "uni0344", + "837": "uni0345", + "847": "uni034F", + "855": "uni0357", + "856": "uni0358", + "860": "uni035C", + "862": "uni035E", + "863": "uni035F", + "865": "uni0361", + "884": "uni0374", + "885": "uni0375", + "890": "uni037A", + "894": "uni037E", + "900": "tonos", + "901": "dieresistonos", + "902": "Alphatonos", + "903": "anoteleia", + "904": "Epsilontonos", + "905": "Etatonos", + "906": "Iotatonos", + "908": "Omicrontonos", + "910": "Upsilontonos", + "911": "Omegatonos", + "912": "iotadieresistonos", + "913": "Alpha", + "914": "Beta", + "915": "Gamma", + "916": "increment", + "917": "Epsilon", + "918": "Zeta", + "919": "Eta", + "920": "Theta", + "921": "Iota", + "922": "Kappa", + "923": "Lambda", + "924": "Mu", + "925": "Nu", + "926": "Xi", + "927": "Omicron", + "928": "Pi", + "929": "Rho", + "931": "Sigma", + "932": "Tau", + "933": "Upsilon", + "934": "Phi", + "935": "Chi", + "936": "Psi", + "937": "Omega", + "938": "Iotadieresis", + "939": "Upsilondieresis", + "940": "alphatonos", + "941": "epsilontonos", + "942": "etatonos", + "943": "iotatonos", + "944": "upsilondieresistonos", + "945": "alpha", + "946": "beta", + "947": "gamma", + "948": "delta", + "949": "epsilon", + "950": "zeta", + "951": "eta", + "952": "theta", + "953": "iota", + "954": "kappa", + "955": "lambda", + "956": "mu", + "957": "nu", + "958": "xi", + "959": "omicron", + "960": "pi", + "961": "rho", + "962": "uni03C2", + "963": "sigma", + "964": "tau", + "965": "upsilon", + "966": "phi", + "967": "chi", + "968": "psi", + "969": "omega", + "970": "iotadieresis", + "971": "upsilondieresis", + "972": "omicrontonos", + "973": "upsilontonos", + "974": "omegatonos", + "975": "uni03CF", + "976": "uni03D0", + "977": "uni03D1", + "981": "phi", + "983": "uni03D7", + "985": "uni03D9", + "987": "uni03DB", + "989": "uni03DD", + "993": "uni03E1", + "1012": "uni03F4", + "1015": "uni03F7", + "1016": "uni03F8", + "1024": "uni0400", + "1025": "uni0401", + "1026": "uni0402", + "1027": "uni0403", + "1028": "uni0404", + "1029": "uni0405", + "1030": "uni0406", + "1031": "uni0407", + "1032": "uni0408", + "1033": "uni0409", + "1034": "uni040A", + "1035": "uni040B", + "1036": "uni040C", + "1037": "uni040D", + "1038": "uni040E", + "1039": "uni040F", + "1040": "uni0410", + "1041": "uni0411", + "1042": "uni0412", + "1043": "uni0413", + "1044": "uni0414", + "1045": "uni0415", + "1046": "uni0416", + "1047": "uni0417", + "1048": "uni0418", + "1049": "uni0419", + "1050": "uni041A", + "1051": "uni041B", + "1052": "uni041C", + "1053": "uni041D", + "1054": "uni041E", + "1055": "uni041F", + "1056": "uni0420", + "1057": "uni0421", + "1058": "uni0422", + "1059": "uni0423", + "1060": "uni0424", + "1061": "uni0425", + "1062": "uni0426", + "1063": "uni0427", + "1064": "uni0428", + "1065": "uni0429", + "1066": "uni042A", + "1067": "uni042B", + "1068": "uni042C", + "1069": "uni042D", + "1070": "uni042E", + "1071": "uni042F", + "1072": "uni0430", + "1073": "uni0431", + "1074": "uni0432", + "1075": "uni0433", + "1076": "uni0434", + "1077": "uni0435", + "1078": "uni0436", + "1079": "uni0437", + "1080": "uni0438", + "1081": "uni0439", + "1082": "uni043A", + "1083": "uni043B", + "1084": "uni043C", + "1085": "uni043D", + "1086": "uni043E", + "1087": "uni043F", + "1088": "uni0440", + "1089": "uni0441", + "1090": "uni0442", + "1091": "uni0443", + "1092": "uni0444", + "1093": "uni0445", + "1094": "uni0446", + "1095": "uni0447", + "1096": "uni0448", + "1097": "uni0449", + "1098": "uni044A", + "1099": "uni044B", + "1100": "uni044C", + "1101": "uni044D", + "1102": "uni044E", + "1103": "uni044F", + "1104": "uni0450", + "1105": "uni0451", + "1106": "uni0452", + "1107": "uni0453", + "1108": "uni0454", + "1109": "uni0455", + "1110": "uni0456", + "1111": "uni0457", + "1112": "uni0458", + "1113": "uni0459", + "1114": "uni045A", + "1115": "uni045B", + "1116": "uni045C", + "1117": "uni045D", + "1118": "uni045E", + "1119": "uni045F", + "1122": "uni0462", + "1123": "uni0463", + "1138": "uni0472", + "1139": "uni0473", + "1140": "uni0474", + "1141": "uni0475", + "1168": "uni0490", + "1169": "uni0491", + "1170": "uni0492", + "1171": "uni0493", + "1174": "uni0496", + "1175": "uni0497", + "1176": "uni0498", + "1177": "uni0499", + "1178": "uni049A", + "1179": "uni049B", + "1184": "uni04A0", + "1185": "uni04A1", + "1186": "uni04A2", + "1187": "uni04A3", + "1194": "uni04AA", + "1195": "uni04AB", + "1198": "uni04AE", + "1199": "uni04AF", + "1200": "uni04B0", + "1201": "uni04B1", + "1202": "uni04B2", + "1203": "uni04B3", + "1206": "uni04B6", + "1207": "uni04B7", + "1210": "uni04BA", + "1211": "uni04BB", + "1216": "uni04C0", + "1217": "uni04C1", + "1218": "uni04C2", + "1219": "uni04C3", + "1220": "uni04C4", + "1223": "uni04C7", + "1224": "uni04C8", + "1231": "uni04CF", + "1232": "uni04D0", + "1233": "uni04D1", + "1236": "uni04D4", + "1237": "uni04D5", + "1238": "uni04D6", + "1239": "uni04D7", + "1240": "uni04D8", + "1241": "uni04D9", + "1250": "uni04E2", + "1251": "uni04E3", + "1254": "uni04E6", + "1255": "uni04E7", + "1256": "uni04E8", + "1257": "uni04E9", + "1262": "uni04EE", + "1263": "uni04EF", + "1266": "uni04F2", + "1267": "uni04F3", + "1270": "uni04F6", + "1271": "uni04F7", + "7461": "uni1D25", + "7468": "A.u", + "7470": "B.u", + "7472": "D.u", + "7473": "E.u", + "7475": "G.u", + "7476": "H.u", + "7477": "I.u", + "7478": "J.u", + "7479": "K.u", + "7480": "L.u", + "7481": "M.u", + "7482": "N.u", + "7484": "O.u", + "7486": "P.u", + "7487": "R.u", + "7488": "T.u", + "7489": "U.u", + "7490": "W.u", + "7491": "a.u", + "7495": "b.u", + "7496": "d.u", + "7497": "e.u", + "7498": "uni1D4A", + "7499": "uni1D4B", + "7501": "g.u", + "7503": "k.u", + "7504": "m.u", + "7505": "uni1D51", + "7506": "o.u", + "7510": "p.u", + "7511": "t.u", + "7512": "u.u", + "7515": "v.u", + "7535": "uni1D6F", + "7536": "uni1D70", + "7545": "uni1D79", + "7547": "uni1D7B", + "7551": "uni1D7F", + "7580": "c.u", + "7584": "f.u", + "7596": "uni1DAC", + "7598": "uni1DAE", + "7600": "uni1DB0", + "7611": "z.u", + "7615": "uni1DBF", + "7629": "uni1DCD", + "7682": "uni1E02", + "7683": "uni1E03", + "7686": "uni1E06", + "7687": "uni1E07", + "7690": "uni1E0A", + "7691": "uni1E0B", + "7692": "uni1E0C", + "7693": "uni1E0D", + "7694": "uni1E0E", + "7695": "uni1E0F", + "7696": "uni1E10", + "7697": "uni1E11", + "7702": "uni1E16", + "7703": "uni1E17", + "7710": "uni1E1E", + "7711": "uni1E1F", + "7712": "uni1E20", + "7713": "uni1E21", + "7714": "uni1E22", + "7715": "uni1E23", + "7716": "uni1E24", + "7717": "uni1E25", + "7718": "uni1E26", + "7719": "uni1E27", + "7720": "uni1E28", + "7721": "uni1E29", + "7722": "uni1E2A", + "7723": "uni1E2B", + "7730": "uni1E32", + "7731": "uni1E33", + "7732": "uni1E34", + "7733": "uni1E35", + "7734": "uni1E36", + "7735": "uni1E37", + "7736": "uni1E38", + "7737": "uni1E39", + "7738": "uni1E3A", + "7739": "uni1E3B", + "7742": "uni1E3E", + "7743": "uni1E3F", + "7744": "uni1E40", + "7745": "uni1E41", + "7746": "uni1E42", + "7747": "uni1E43", + "7748": "uni1E44", + "7749": "uni1E45", + "7750": "uni1E46", + "7751": "uni1E47", + "7752": "uni1E48", + "7753": "uni1E49", + "7762": "uni1E52", + "7763": "uni1E53", + "7766": "uni1E56", + "7767": "uni1E57", + "7768": "uni1E58", + "7769": "uni1E59", + "7770": "uni1E5A", + "7771": "uni1E5B", + "7772": "uni1E5C", + "7773": "uni1E5D", + "7774": "uni1E5E", + "7775": "uni1E5F", + "7776": "uni1E60", + "7777": "uni1E61", + "7778": "uni1E62", + "7779": "uni1E63", + "7782": "uni1E66", + "7783": "uni1E67", + "7786": "uni1E6A", + "7787": "uni1E6B", + "7788": "uni1E6C", + "7789": "uni1E6D", + "7790": "uni1E6E", + "7791": "uni1E6F", + "7794": "uni1E72", + "7795": "uni1E73", + "7806": "uni1E7E", + "7807": "uni1E7F", + "7808": "Wgrave", + "7809": "wgrave", + "7810": "Wacute", + "7811": "wacute", + "7812": "Wdieresis", + "7813": "wdieresis", + "7822": "uni1E8E", + "7823": "uni1E8F", + "7824": "uni1E90", + "7825": "uni1E91", + "7826": "uni1E92", + "7827": "uni1E93", + "7828": "uni1E94", + "7829": "uni1E95", + "7830": "uni1E96", + "7831": "uni1E97", + "7838": "uni1E9E", + "7839": "uni1E9F", + "7840": "uni1EA0", + "7841": "uni1EA1", + "7842": "uni1EA2", + "7843": "uni1EA3", + "7844": "uni1EA4", + "7845": "uni1EA5", + "7846": "uni1EA6", + "7847": "uni1EA7", + "7848": "uni1EA8", + "7849": "uni1EA9", + "7850": "uni1EAA", + "7851": "uni1EAB", + "7852": "uni1EAC", + "7853": "uni1EAD", + "7854": "uni1EAE", + "7855": "uni1EAF", + "7856": "uni1EB0", + "7857": "uni1EB1", + "7858": "uni1EB2", + "7859": "uni1EB3", + "7860": "uni1EB4", + "7861": "uni1EB5", + "7862": "uni1EB6", + "7863": "uni1EB7", + "7864": "uni1EB8", + "7865": "uni1EB9", + "7866": "uni1EBA", + "7867": "uni1EBB", + "7868": "uni1EBC", + "7869": "uni1EBD", + "7870": "uni1EBE", + "7871": "uni1EBF", + "7872": "uni1EC0", + "7873": "uni1EC1", + "7874": "uni1EC2", + "7875": "uni1EC3", + "7876": "uni1EC4", + "7877": "uni1EC5", + "7878": "uni1EC6", + "7879": "uni1EC7", + "7880": "uni1EC8", + "7881": "uni1EC9", + "7882": "uni1ECA", + "7883": "uni1ECB", + "7884": "uni1ECC", + "7885": "uni1ECD", + "7886": "uni1ECE", + "7887": "uni1ECF", + "7888": "uni1ED0", + "7889": "uni1ED1", + "7890": "uni1ED2", + "7891": "uni1ED3", + "7892": "uni1ED4", + "7893": "uni1ED5", + "7894": "uni1ED6", + "7895": "uni1ED7", + "7896": "uni1ED8", + "7897": "uni1ED9", + "7898": "uni1EDA", + "7899": "uni1EDB", + "7900": "uni1EDC", + "7901": "uni1EDD", + "7902": "uni1EDE", + "7903": "uni1EDF", + "7904": "uni1EE0", + "7905": "uni1EE1", + "7906": "uni1EE2", + "7907": "uni1EE3", + "7908": "uni1EE4", + "7909": "uni1EE5", + "7910": "uni1EE6", + "7911": "uni1EE7", + "7912": "uni1EE8", + "7913": "uni1EE9", + "7914": "uni1EEA", + "7915": "uni1EEB", + "7916": "uni1EEC", + "7917": "uni1EED", + "7918": "uni1EEE", + "7919": "uni1EEF", + "7920": "uni1EF0", + "7921": "uni1EF1", + "7922": "Ygrave", + "7923": "ygrave", + "7924": "uni1EF4", + "7925": "uni1EF5", + "7926": "uni1EF6", + "7927": "uni1EF7", + "7928": "uni1EF8", + "7929": "uni1EF9", + "7936": "uni1F00", + "7937": "uni1F01", + "7938": "uni1F02", + "7939": "uni1F03", + "7940": "uni1F04", + "7941": "uni1F05", + "7942": "uni1F06", + "7943": "uni1F07", + "7944": "uni1F08", + "7945": "uni1F09", + "7946": "uni1F0A", + "7947": "uni1F0B", + "7948": "uni1F0C", + "7949": "uni1F0D", + "7950": "uni1F0E", + "7951": "uni1F0F", + "7952": "uni1F10", + "7953": "uni1F11", + "7954": "uni1F12", + "7955": "uni1F13", + "7956": "uni1F14", + "7957": "uni1F15", + "7960": "uni1F18", + "7961": "uni1F19", + "7962": "uni1F1A", + "7963": "uni1F1B", + "7964": "uni1F1C", + "7965": "uni1F1D", + "7968": "uni1F20", + "7969": "uni1F21", + "7970": "uni1F22", + "7971": "uni1F23", + "7972": "uni1F24", + "7973": "uni1F25", + "7974": "uni1F26", + "7975": "uni1F27", + "7976": "uni1F28", + "7977": "uni1F29", + "7978": "uni1F2A", + "7979": "uni1F2B", + "7980": "uni1F2C", + "7981": "uni1F2D", + "7982": "uni1F2E", + "7983": "uni1F2F", + "7984": "uni1F30", + "7985": "uni1F31", + "7986": "uni1F32", + "7987": "uni1F33", + "7988": "uni1F34", + "7989": "uni1F35", + "7990": "uni1F36", + "7991": "uni1F37", + "7992": "uni1F38", + "7993": "uni1F39", + "7994": "uni1F3A", + "7995": "uni1F3B", + "7996": "uni1F3C", + "7997": "uni1F3D", + "7998": "uni1F3E", + "7999": "uni1F3F", + "8000": "uni1F40", + "8001": "uni1F41", + "8002": "uni1F42", + "8003": "uni1F43", + "8004": "uni1F44", + "8005": "uni1F45", + "8008": "uni1F48", + "8009": "uni1F49", + "8010": "uni1F4A", + "8011": "uni1F4B", + "8012": "uni1F4C", + "8013": "uni1F4D", + "8016": "uni1F50", + "8017": "uni1F51", + "8018": "uni1F52", + "8019": "uni1F53", + "8020": "uni1F54", + "8021": "uni1F55", + "8022": "uni1F56", + "8023": "uni1F57", + "8025": "uni1F59", + "8027": "uni1F5B", + "8029": "uni1F5D", + "8031": "uni1F5F", + "8032": "uni1F60", + "8033": "uni1F61", + "8034": "uni1F62", + "8035": "uni1F63", + "8036": "uni1F64", + "8037": "uni1F65", + "8038": "uni1F66", + "8039": "uni1F67", + "8040": "uni1F68", + "8041": "uni1F69", + "8042": "uni1F6A", + "8043": "uni1F6B", + "8044": "uni1F6C", + "8045": "uni1F6D", + "8046": "uni1F6E", + "8047": "uni1F6F", + "8048": "uni1F70", + "8049": "uni1F71", + "8050": "uni1F72", + "8051": "uni1F73", + "8052": "uni1F74", + "8053": "uni1F75", + "8054": "uni1F76", + "8055": "uni1F77", + "8056": "uni1F78", + "8057": "uni1F79", + "8058": "uni1F7A", + "8059": "uni1F7B", + "8060": "uni1F7C", + "8061": "uni1F7D", + "8064": "uni1F80", + "8065": "uni1F81", + "8066": "uni1F82", + "8067": "uni1F83", + "8068": "uni1F84", + "8069": "uni1F85", + "8070": "uni1F86", + "8071": "uni1F87", + "8072": "uni1F88", + "8073": "uni1F89", + "8074": "uni1F8A", + "8075": "uni1F8B", + "8076": "uni1F8C", + "8077": "uni1F8D", + "8078": "uni1F8E", + "8079": "uni1F8F", + "8080": "uni1F90", + "8081": "uni1F91", + "8082": "uni1F92", + "8083": "uni1F93", + "8084": "uni1F94", + "8085": "uni1F95", + "8086": "uni1F96", + "8087": "uni1F97", + "8088": "uni1F98", + "8089": "uni1F99", + "8090": "uni1F9A", + "8091": "uni1F9B", + "8092": "uni1F9C", + "8093": "uni1F9D", + "8094": "uni1F9E", + "8095": "uni1F9F", + "8096": "uni1FA0", + "8097": "uni1FA1", + "8098": "uni1FA2", + "8099": "uni1FA3", + "8100": "uni1FA4", + "8101": "uni1FA5", + "8102": "uni1FA6", + "8103": "uni1FA7", + "8104": "uni1FA8", + "8105": "uni1FA9", + "8106": "uni1FAA", + "8107": "uni1FAB", + "8108": "uni1FAC", + "8109": "uni1FAD", + "8110": "uni1FAE", + "8111": "uni1FAF", + "8112": "uni1FB0", + "8113": "uni1FB1", + "8114": "uni1FB2", + "8115": "uni1FB3", + "8116": "uni1FB4", + "8118": "uni1FB6", + "8119": "uni1FB7", + "8120": "uni1FB8", + "8121": "uni1FB9", + "8122": "uni1FBA", + "8123": "uni1FBB", + "8124": "uni1FBC", + "8125": "uni1FBD", + "8126": "uni1FBE", + "8127": "uni1FBF", + "8128": "uni1FC0", + "8129": "uni1FC1", + "8130": "uni1FC2", + "8131": "uni1FC3", + "8132": "uni1FC4", + "8134": "uni1FC6", + "8135": "uni1FC7", + "8136": "uni1FC8", + "8137": "uni1FC9", + "8138": "uni1FCA", + "8139": "uni1FCB", + "8140": "uni1FCC", + "8141": "uni1FCD", + "8142": "uni1FCE", + "8143": "uni1FCF", + "8144": "uni1FD0", + "8145": "uni1FD1", + "8146": "uni1FD2", + "8147": "uni1FD3", + "8150": "uni1FD6", + "8151": "uni1FD7", + "8152": "uni1FD8", + "8153": "uni1FD9", + "8154": "uni1FDA", + "8155": "uni1FDB", + "8157": "uni1FDD", + "8158": "uni1FDE", + "8159": "uni1FDF", + "8160": "uni1FE0", + "8161": "uni1FE1", + "8162": "uni1FE2", + "8163": "uni1FE3", + "8164": "uni1FE4", + "8165": "uni1FE5", + "8166": "uni1FE6", + "8167": "uni1FE7", + "8168": "uni1FE8", + "8169": "uni1FE9", + "8170": "uni1FEA", + "8171": "uni1FEB", + "8172": "uni1FEC", + "8173": "uni1FED", + "8174": "uni1FEE", + "8175": "uni1FEF", + "8178": "uni1FF2", + "8179": "uni1FF3", + "8180": "uni1FF4", + "8182": "uni1FF6", + "8183": "uni1FF7", + "8184": "uni1FF8", + "8185": "uni1FF9", + "8186": "uni1FFA", + "8187": "uni1FFB", + "8188": "uni1FFC", + "8189": "uni1FFD", + "8190": "uni1FFE", + "8199": "uni2007", + "8201": "uni2009", + "8202": "uni200A", + "8203": "uni200B", + "8208": "hyphen", + "8209": "hyphen", + "8210": "figuredash", + "8211": "endash", + "8212": "emdash", + "8213": "uni2015", + "8214": "uni2016", + "8215": "underscoredbl", + "8216": "quoteleft", + "8217": "quoteright", + "8218": "quotesinglbase", + "8219": "quotereversed", + "8220": "quotedblleft", + "8221": "quotedblright", + "8222": "quotedblbase", + "8224": "dagger", + "8225": "daggerdbl", + "8226": "bullet", + "8227": "uni2023", + "8230": "ellipsis", + "8239": "uni202F", + "8240": "perthousand", + "8241": "uni2031", + "8242": "uni2032", + "8243": "uni2033", + "8245": "uni2035", + "8249": "guilsinglleft", + "8250": "guilsinglright", + "8252": "exclamdbl", + "8253": "uni203D", + "8254": "uni203E", + "8255": "uni203F", + "8260": "fraction", + "8263": "uni2047", + "8264": "uni2048", + "8265": "uni2049", + "8266": "uni204A", + "8304": "zero.u", + "8305": "i.u", + "8308": "four.u", + "8309": "five.u", + "8310": "six.u", + "8311": "seven.u", + "8312": "eight.u", + "8313": "nine.u", + "8314": "plus.u", + "8315": "minus.u", + "8316": "equal.u", + "8317": "parenleft.u", + "8318": "parenright.u", + "8319": "n.u", + "8320": "zero.b", + "8321": "one.b", + "8322": "two.b", + "8323": "three.b", + "8324": "four.b", + "8325": "five.b", + "8326": "six.b", + "8327": "seven.b", + "8328": "eight.b", + "8329": "nine.b", + "8330": "plus.b", + "8331": "minus.b", + "8332": "equal.b", + "8333": "parenleft.b", + "8334": "parenright.b", + "8353": "colonmonetary", + "8355": "franc", + "8356": "lira", + "8358": "uni20A6", + "8359": "peseta", + "8361": "uni20A9", + "8363": "dong", + "8364": "Euro", + "8366": "uni20AE", + "8369": "uni20B1", + "8370": "uni20B2", + "8372": "uni20B4", + "8373": "uni20B5", + "8376": "uni20B8", + "8377": "uni20B9", + "8378": "uni20BA", + "8381": "uni20BD", + "8453": "uni2105", + "8467": "uni2113", + "8470": "uni2116", + "8471": "uni2117", + "8478": "uni211E", + "8480": "uni2120", + "8482": "trademark", + "8486": "Omega", + "8494": "estimated", + "8528": "uni2150", + "8529": "uni2151", + "8530": "uni2152", + "8531": "onethird", + "8532": "twothirds", + "8533": "uni2155", + "8534": "uni2156", + "8535": "uni2157", + "8536": "uni2158", + "8537": "uni2159", + "8538": "uni215A", + "8539": "oneeighth", + "8540": "threeeighths", + "8541": "fiveeighths", + "8542": "seveneighths", + "8585": "uni2189", + "8592": "uni2190", + "8593": "arrowup", + "8594": "uni2192", + "8595": "arrowdown", + "8596": "arrowboth", + "8597": "arrowupdn", + "8598": "uni2196", + "8599": "uni2197", + "8600": "uni2198", + "8601": "uni2199", + "8616": "arrowupdnbse", + "8656": "uni21D0", + "8657": "uni21D1", + "8658": "uni21D2", + "8659": "uni21D3", + "8679": "uni21E7", + "8704": "uni2200", + "8706": "partialdiff", + "8707": "uni2203", + "8710": "increment", + "8719": "product", + "8721": "summation", + "8722": "minus", + "8725": "uni2215", + "8729": "uni2219", + "8730": "radical", + "8734": "infinity", + "8735": "orthogonal", + "8745": "intersection", + "8747": "integral", + "8758": "uni2236", + "8759": "uni2237", + "8776": "approxequal", + "8800": "notequal", + "8801": "equivalence", + "8804": "lessequal", + "8805": "greaterequal", + "8962": "house", + "8963": "uni2303", + "8976": "revlogicalnot", + "8984": "uni2318", + "8988": "uni231C", + "8989": "uni231D", + "8990": "uni231E", + "8991": "uni231F", + "8992": "integraltp", + "8993": "integralbt", + "8997": "uni2325", + "8998": "uni2326", + "9003": "uni232B", + "9632": "uni25A0", + "9633": "uni25A1", + "9642": "uni25AA", + "9643": "uni25AB", + "9644": "filledrect", + "9650": "triagup", + "9651": "uni25B3", + "9652": "uni25B4", + "9653": "uni25B5", + "9654": "uni25B6", + "9655": "uni25B7", + "9656": "uni25B8", + "9657": "uni25B9", + "9658": "triagrt", + "9660": "triagdn", + "9661": "uni25BD", + "9662": "uni25BE", + "9663": "uni25BF", + "9664": "uni25C0", + "9665": "uni25C1", + "9666": "uni25C2", + "9667": "uni25C3", + "9668": "triaglf", + "9670": "uni25C6", + "9673": "uni25C9", + "9674": "lozenge", + "9675": "uni25CB", + "9676": "uni25CC", + "9679": "uni25CF", + "9688": "invbullet", + "9689": "invcircle", + "9702": "uni25E6", + "9744": "uni2610", + "9745": "uni2611", + "9749": "uni2615", + "9786": "smileface", + "9787": "invsmileface", + "9788": "sun", + "9791": "uni263F", + "9792": "female", + "9793": "uni2641", + "9794": "male", + "9824": "spade", + "9827": "club", + "9829": "heart", + "9830": "diamond", + "9834": "musicalnote", + "9835": "musicalnotedbl", + "10003": "uni2713", + "10004": "uni2714", + "10007": "uni2717", + "10008": "uni2718", + "10066": "uni2752", + "10075": "uni275B", + "10076": "uni275C", + "10077": "uni275D", + "10078": "uni275E", + "10079": "uni275F", + "10080": "uni2760", + "10084": "uni2764", + "10214": "uni27E6", + "10215": "uni27E7", + "10216": "uni27E8", + "10217": "uni27E9", + "11360": "uni2C60", + "11361": "uni2C61", + "11362": "uni2C62", + "11365": "uni2C65", + "11366": "uni2C66", + "11377": "uni2C71", + "11389": "V.u", + "11800": "uni2E18", + "11810": "uni2E22", + "11811": "uni2E23", + "11812": "uni2E24", + "11813": "uni2E25", + "11834": "uni2E3A", + "11835": "uni2E3B", + "11858": "uni2E52", + "42780": "uniA71C", + "42786": "uniA722", + "42787": "uniA723", + "42788": "uniA724", + "42789": "uniA725", + "42830": "uniA74E", + "42831": "uniA74F", + "42842": "uniA75A", + "42843": "uniA75B", + "42852": "uniA764", + "42853": "uniA765", + "42873": "uniA779", + "42874": "uniA77A", + "42875": "uniA77B", + "42876": "uniA77C", + "42877": "uniA77D", + "42878": "uniA77E", + "42879": "uniA77F", + "42880": "uniA780", + "42881": "uniA781", + "42882": "uniA782", + "42883": "uniA783", + "42884": "uniA784", + "42885": "uniA785", + "42886": "uniA786", + "42887": "uniA787", + "42889": "uniA789", + "42925": "uniA7AD", + "42926": "uniA7AE", + "42931": "uniA7B3", + "42933": "uniA7B5", + "42994": "C.u", + "42995": "F.u", + "42996": "Q.u", + "43859": "uniAB53", + "43878": "uniAB66", + "43879": "uniAB67", + "64256": "f_f", + "64257": "fi", + "64258": "fl", + "64259": "f_f_i", + "64260": "f_f_l", + "65279": "uniFEFF" + }, + "isUnicode": true, + "EncodingScheme": "FontSpecific", + "FontName": "Source Sans 3", + "FullName": "Source Sans 3 Regular", + "Version": "Version 3.052;hotconv 1.1.0;makeotfexe 2.6.0", + "PostScriptName": "SourceSans3-Regular", + "Weight": "Medium", + "ItalicAngle": "0", + "IsFixedPitch": "false", + "UnderlineThickness": "50", + "UnderlinePosition": "-50", + "FontHeightOffset": "0", + "Ascender": "1024", + "Descender": "-400", + "FontBBox": [ + "-614", + "-295", + "2159", + "958" + ], + "StartCharMetrics": "1801", + "C": { + "32": 200, + "33": 289, + "34": 426, + "35": 497, + "36": 497, + "37": 824, + "38": 609, + "39": 249, + "40": 303, + "41": 303, + "42": 418, + "43": 497, + "44": 249, + "45": 311, + "46": 249, + "47": 350, + "48": 497, + "49": 497, + "50": 497, + "51": 497, + "52": 497, + "53": 497, + "54": 497, + "55": 497, + "56": 497, + "57": 497, + "58": 249, + "59": 249, + "60": 497, + "61": 497, + "62": 497, + "63": 425, + "64": 847, + "65": 543, + "66": 588, + "67": 571, + "68": 615, + "69": 527, + "70": 494, + "71": 617, + "72": 652, + "73": 263, + "74": 479, + "75": 579, + "76": 486, + "77": 727, + "78": 647, + "79": 664, + "80": 566, + "81": 664, + "82": 569, + "83": 534, + "84": 536, + "85": 645, + "86": 515, + "87": 786, + "88": 513, + "89": 476, + "90": 539, + "91": 303, + "92": 350, + "93": 303, + "94": 497, + "95": 500, + "96": 542, + "97": 504, + "98": 553, + "99": 456, + "100": 555, + "101": 496, + "102": 292, + "103": 504, + "104": 544, + "105": 246, + "106": 247, + "107": 495, + "108": 255, + "109": 829, + "110": 547, + "111": 542, + "112": 555, + "113": 555, + "114": 347, + "115": 419, + "116": 338, + "117": 544, + "118": 467, + "119": 719, + "120": 446, + "121": 467, + "122": 425, + "123": 303, + "124": 241, + "125": 303, + "126": 497, + "160": 200, + "161": 289, + "162": 497, + "163": 497, + "164": 497, + "165": 497, + "166": 241, + "167": 497, + "168": 542, + "169": 744, + "170": 345, + "171": 429, + "172": 497, + "173": 311, + "174": 423, + "175": 542, + "176": 331, + "177": 497, + "178": 367, + "179": 367, + "180": 542, + "181": 562, + "182": 560, + "183": 249, + "184": 542, + "185": 367, + "186": 365, + "187": 429, + "188": 781, + "189": 808, + "190": 796, + "191": 425, + "192": 544, + "193": 544, + "194": 544, + "195": 544, + "196": 544, + "197": 544, + "198": 822, + "199": 571, + "200": 527, + "201": 527, + "202": 527, + "203": 527, + "204": 263, + "205": 263, + "206": 263, + "207": 263, + "208": 639, + "209": 647, + "210": 664, + "211": 664, + "212": 664, + "213": 664, + "214": 664, + "215": 497, + "216": 664, + "217": 645, + "218": 645, + "219": 645, + "220": 645, + "221": 476, + "222": 583, + "223": 576, + "224": 504, + "225": 504, + "226": 504, + "227": 504, + "228": 504, + "229": 504, + "230": 778, + "231": 456, + "232": 496, + "233": 496, + "234": 496, + "235": 496, + "236": 246, + "237": 246, + "238": 246, + "239": 246, + "240": 544, + "241": 547, + "242": 542, + "243": 542, + "244": 542, + "245": 542, + "246": 542, + "247": 497, + "248": 542, + "249": 544, + "250": 544, + "251": 544, + "252": 544, + "253": 467, + "254": 555, + "255": 467, + "256": 544, + "257": 504, + "258": 544, + "259": 504, + "260": 544, + "261": 504, + "262": 571, + "263": 456, + "264": 571, + "265": 456, + "266": 571, + "267": 456, + "268": 571, + "269": 456, + "270": 615, + "271": 573, + "272": 635, + "273": 562, + "274": 527, + "275": 496, + "276": 527, + "277": 496, + "278": 527, + "279": 496, + "280": 527, + "281": 496, + "282": 527, + "283": 496, + "284": 617, + "285": 504, + "286": 617, + "287": 504, + "288": 617, + "289": 504, + "290": 617, + "291": 504, + "292": 652, + "293": 544, + "294": 692, + "295": 557, + "296": 263, + "297": 246, + "298": 263, + "299": 246, + "300": 263, + "301": 246, + "302": 263, + "303": 246, + "304": 263, + "305": 247, + "306": 526, + "307": 493, + "308": 480, + "309": 247, + "310": 579, + "311": 495, + "312": 495, + "313": 486, + "314": 255, + "315": 486, + "316": 255, + "317": 486, + "318": 265, + "319": 486, + "320": 362, + "321": 500, + "322": 298, + "323": 647, + "324": 547, + "325": 647, + "326": 547, + "327": 647, + "328": 547, + "329": 769, + "330": 635, + "331": 547, + "332": 664, + "333": 542, + "334": 664, + "335": 542, + "336": 664, + "337": 542, + "338": 847, + "339": 839, + "340": 569, + "341": 347, + "342": 569, + "343": 347, + "344": 569, + "345": 347, + "346": 534, + "347": 419, + "348": 534, + "349": 419, + "350": 534, + "351": 419, + "352": 534, + "353": 419, + "354": 536, + "355": 338, + "356": 536, + "357": 338, + "358": 536, + "359": 338, + "360": 645, + "361": 544, + "362": 645, + "363": 544, + "364": 645, + "365": 544, + "366": 645, + "367": 544, + "368": 645, + "369": 544, + "370": 645, + "371": 544, + "372": 786, + "373": 718, + "374": 476, + "375": 467, + "376": 476, + "377": 539, + "378": 425, + "379": 539, + "380": 425, + "381": 539, + "382": 425, + "383": 271, + "384": 567, + "385": 744, + "390": 571, + "394": 779, + "397": 533, + "398": 527, + "399": 648, + "400": 543, + "402": 292, + "403": 617, + "404": 515, + "406": 263, + "407": 303, + "410": 293, + "411": 468, + "414": 547, + "416": 664, + "417": 542, + "431": 659, + "432": 544, + "433": 678, + "439": 550, + "447": 542, + "448": 246, + "449": 453, + "450": 385, + "451": 248, + "461": 544, + "462": 504, + "463": 263, + "464": 246, + "465": 664, + "466": 542, + "467": 645, + "468": 544, + "469": 645, + "470": 544, + "471": 645, + "472": 544, + "473": 645, + "474": 544, + "475": 645, + "476": 544, + "477": 496, + "482": 822, + "483": 778, + "484": 660, + "485": 578, + "486": 617, + "487": 504, + "490": 664, + "491": 542, + "494": 550, + "495": 425, + "496": 247, + "500": 617, + "501": 504, + "503": 566, + "504": 647, + "505": 547, + "506": 544, + "507": 504, + "508": 822, + "509": 778, + "510": 664, + "511": 542, + "512": 544, + "513": 504, + "516": 527, + "517": 496, + "520": 263, + "521": 246, + "524": 664, + "525": 542, + "536": 534, + "537": 419, + "538": 536, + "539": 338, + "540": 497, + "541": 433, + "542": 652, + "543": 544, + "544": 656, + "546": 664, + "547": 536, + "550": 544, + "551": 504, + "567": 247, + "570": 543, + "571": 571, + "572": 456, + "573": 503, + "574": 536, + "577": 482, + "578": 427, + "579": 605, + "580": 685, + "581": 515, + "584": 499, + "585": 294, + "592": 504, + "593": 560, + "594": 563, + "595": 553, + "596": 456, + "597": 459, + "598": 555, + "599": 555, + "600": 496, + "601": 496, + "602": 668, + "603": 432, + "604": 444, + "605": 578, + "606": 546, + "607": 295, + "608": 555, + "609": 555, + "610": 497, + "611": 467, + "612": 511, + "613": 547, + "614": 544, + "615": 544, + "616": 294, + "617": 255, + "618": 341, + "619": 352, + "620": 335, + "621": 255, + "622": 569, + "623": 829, + "624": 829, + "625": 829, + "626": 547, + "627": 547, + "628": 543, + "629": 542, + "630": 700, + "631": 705, + "632": 680, + "633": 347, + "634": 347, + "635": 347, + "637": 347, + "638": 332, + "639": 267, + "640": 495, + "641": 497, + "642": 419, + "643": 247, + "644": 291, + "645": 282, + "647": 338, + "648": 338, + "649": 583, + "650": 546, + "651": 530, + "652": 467, + "653": 718, + "654": 467, + "655": 415, + "656": 425, + "657": 459, + "658": 425, + "660": 417, + "661": 417, + "664": 525, + "665": 508, + "667": 497, + "668": 562, + "669": 342, + "670": 495, + "671": 411, + "673": 427, + "674": 427, + "675": 841, + "676": 845, + "677": 891, + "678": 650, + "679": 552, + "680": 746, + "688": 366, + "689": 366, + "690": 169, + "691": 240, + "692": 240, + "695": 487, + "696": 319, + "697": 249, + "699": 257, + "700": 257, + "701": 257, + "702": 242, + "703": 242, + "704": 309, + "705": 309, + "710": 542, + "711": 542, + "712": 187, + "713": 277, + "714": 225, + "715": 225, + "716": 114, + "720": 249, + "721": 249, + "722": 242, + "723": 242, + "724": 367, + "725": 367, + "726": 367, + "727": 367, + "728": 542, + "729": 542, + "730": 542, + "731": 542, + "732": 542, + "733": 542, + "734": 172, + "736": 318, + "737": 174, + "738": 283, + "739": 307, + "740": 302, + "749": 367, + "768": 0, + "769": 0, + "770": 0, + "771": 0, + "772": 0, + "773": 0, + "774": 0, + "775": 0, + "776": 0, + "777": 0, + "778": 0, + "779": 0, + "780": 0, + "781": 0, + "783": 0, + "784": 0, + "785": 0, + "786": 0, + "787": 0, + "789": 0, + "792": 0, + "793": 0, + "794": 0, + "795": 0, + "796": 0, + "797": 0, + "798": 0, + "799": 0, + "800": 0, + "803": 0, + "804": 0, + "805": 0, + "806": 0, + "807": 0, + "808": 0, + "809": 0, + "810": 0, + "812": 0, + "814": 0, + "815": 0, + "816": 0, + "817": 0, + "818": 0, + "820": 0, + "823": 0, + "824": 0, + "825": 0, + "826": 0, + "827": 0, + "828": 0, + "829": 0, + "832": 0, + "834": 0, + "835": 0, + "836": 0, + "837": 0, + "847": 0, + "855": 0, + "856": 0, + "860": 0, + "862": 0, + "863": 0, + "865": 0, + "884": 249, + "885": 249, + "890": 542, + "894": 249, + "900": 542, + "901": 542, + "902": 573, + "903": 249, + "904": 611, + "905": 736, + "906": 347, + "908": 741, + "910": 604, + "911": 745, + "912": 262, + "913": 544, + "914": 588, + "915": 498, + "916": 588, + "917": 527, + "918": 539, + "919": 652, + "920": 664, + "921": 263, + "922": 579, + "923": 515, + "924": 727, + "925": 647, + "926": 533, + "927": 664, + "928": 645, + "929": 566, + "931": 538, + "932": 536, + "933": 476, + "934": 719, + "935": 513, + "936": 699, + "937": 678, + "938": 263, + "939": 476, + "940": 560, + "941": 448, + "942": 541, + "943": 262, + "944": 510, + "945": 560, + "946": 565, + "947": 484, + "948": 531, + "949": 448, + "950": 424, + "951": 541, + "952": 522, + "953": 262, + "954": 494, + "955": 494, + "956": 562, + "957": 474, + "958": 431, + "959": 535, + "960": 586, + "961": 549, + "962": 432, + "963": 546, + "964": 458, + "965": 510, + "966": 680, + "967": 481, + "968": 689, + "969": 701, + "970": 262, + "971": 510, + "972": 535, + "973": 510, + "974": 701, + "975": 585, + "976": 556, + "977": 522, + "981": 680, + "983": 522, + "985": 535, + "987": 466, + "989": 413, + "993": 498, + "1012": 664, + "1015": 555, + "1016": 528, + "1024": 527, + "1025": 527, + "1026": 687, + "1027": 498, + "1028": 571, + "1029": 534, + "1030": 263, + "1031": 263, + "1032": 480, + "1033": 897, + "1034": 929, + "1035": 696, + "1036": 579, + "1037": 656, + "1038": 514, + "1039": 645, + "1040": 544, + "1041": 580, + "1042": 588, + "1043": 498, + "1044": 638, + "1045": 527, + "1046": 830, + "1047": 550, + "1048": 658, + "1049": 656, + "1050": 579, + "1051": 630, + "1052": 727, + "1053": 652, + "1054": 664, + "1055": 645, + "1056": 566, + "1057": 571, + "1058": 536, + "1059": 514, + "1060": 732, + "1061": 513, + "1062": 642, + "1063": 598, + "1064": 877, + "1065": 880, + "1066": 720, + "1067": 798, + "1068": 580, + "1069": 571, + "1070": 908, + "1071": 582, + "1072": 504, + "1073": 544, + "1074": 508, + "1075": 411, + "1076": 533, + "1077": 496, + "1078": 688, + "1079": 456, + "1080": 565, + "1081": 565, + "1082": 495, + "1083": 531, + "1084": 633, + "1085": 562, + "1086": 542, + "1087": 553, + "1088": 555, + "1089": 456, + "1090": 460, + "1091": 467, + "1092": 734, + "1093": 446, + "1094": 558, + "1095": 512, + "1096": 749, + "1097": 761, + "1098": 596, + "1099": 674, + "1100": 491, + "1101": 456, + "1102": 738, + "1103": 515, + "1104": 496, + "1105": 496, + "1106": 560, + "1107": 411, + "1108": 456, + "1109": 419, + "1110": 246, + "1111": 246, + "1112": 247, + "1113": 735, + "1114": 758, + "1115": 544, + "1116": 495, + "1117": 565, + "1118": 467, + "1119": 558, + "1122": 614, + "1123": 576, + "1138": 664, + "1139": 542, + "1140": 529, + "1141": 477, + "1168": 498, + "1169": 416, + "1170": 521, + "1171": 431, + "1174": 874, + "1175": 727, + "1176": 554, + "1177": 456, + "1178": 628, + "1179": 536, + "1184": 715, + "1185": 610, + "1186": 661, + "1187": 574, + "1194": 571, + "1195": 456, + "1198": 476, + "1199": 467, + "1200": 476, + "1201": 467, + "1202": 551, + "1203": 482, + "1206": 607, + "1207": 520, + "1210": 598, + "1211": 544, + "1216": 263, + "1217": 830, + "1218": 688, + "1219": 590, + "1220": 505, + "1223": 652, + "1224": 562, + "1231": 255, + "1232": 544, + "1233": 504, + "1236": 822, + "1237": 778, + "1238": 527, + "1239": 496, + "1240": 652, + "1241": 496, + "1250": 656, + "1251": 565, + "1254": 664, + "1255": 542, + "1256": 664, + "1257": 542, + "1262": 514, + "1263": 467, + "1266": 514, + "1267": 467, + "1270": 498, + "1271": 411, + "7461": 511, + "7468": 363, + "7470": 392, + "7472": 411, + "7473": 351, + "7475": 411, + "7476": 434, + "7477": 176, + "7478": 321, + "7479": 387, + "7480": 325, + "7481": 486, + "7482": 430, + "7484": 443, + "7486": 385, + "7487": 389, + "7488": 356, + "7489": 431, + "7490": 526, + "7491": 345, + "7495": 374, + "7496": 374, + "7497": 336, + "7498": 336, + "7499": 316, + "7501": 343, + "7503": 337, + "7504": 559, + "7505": 369, + "7506": 365, + "7510": 374, + "7511": 232, + "7512": 370, + "7515": 321, + "7535": 941, + "7536": 659, + "7545": 484, + "7547": 342, + "7551": 546, + "7580": 306, + "7584": 201, + "7596": 559, + "7598": 371, + "7600": 368, + "7611": 290, + "7615": 365, + "7629": 0, + "7682": 588, + "7683": 553, + "7686": 588, + "7687": 553, + "7690": 615, + "7691": 555, + "7692": 615, + "7693": 555, + "7694": 615, + "7695": 555, + "7696": 615, + "7697": 555, + "7702": 527, + "7703": 496, + "7710": 494, + "7711": 292, + "7712": 617, + "7713": 504, + "7714": 652, + "7715": 544, + "7716": 652, + "7717": 544, + "7718": 652, + "7719": 544, + "7720": 652, + "7721": 544, + "7722": 652, + "7723": 544, + "7730": 579, + "7731": 495, + "7732": 579, + "7733": 495, + "7734": 486, + "7735": 255, + "7736": 486, + "7737": 255, + "7738": 486, + "7739": 255, + "7742": 727, + "7743": 829, + "7744": 727, + "7745": 829, + "7746": 727, + "7747": 829, + "7748": 647, + "7749": 547, + "7750": 647, + "7751": 547, + "7752": 647, + "7753": 547, + "7762": 664, + "7763": 542, + "7766": 566, + "7767": 555, + "7768": 569, + "7769": 347, + "7770": 569, + "7771": 347, + "7772": 569, + "7773": 347, + "7774": 569, + "7775": 347, + "7776": 534, + "7777": 419, + "7778": 534, + "7779": 419, + "7782": 534, + "7783": 419, + "7786": 536, + "7787": 338, + "7788": 536, + "7789": 338, + "7790": 536, + "7791": 338, + "7794": 645, + "7795": 544, + "7806": 515, + "7807": 467, + "7808": 786, + "7809": 718, + "7810": 786, + "7811": 718, + "7812": 786, + "7813": 718, + "7822": 476, + "7823": 467, + "7824": 539, + "7825": 425, + "7826": 539, + "7827": 425, + "7828": 539, + "7829": 425, + "7830": 544, + "7831": 338, + "7838": 667, + "7839": 533, + "7840": 544, + "7841": 504, + "7842": 544, + "7843": 504, + "7844": 544, + "7845": 504, + "7846": 544, + "7847": 504, + "7848": 544, + "7849": 504, + "7850": 544, + "7851": 504, + "7852": 544, + "7853": 504, + "7854": 544, + "7855": 504, + "7856": 544, + "7857": 504, + "7858": 544, + "7859": 504, + "7860": 544, + "7861": 504, + "7862": 544, + "7863": 504, + "7864": 527, + "7865": 496, + "7866": 527, + "7867": 496, + "7868": 527, + "7869": 496, + "7870": 527, + "7871": 496, + "7872": 527, + "7873": 496, + "7874": 527, + "7875": 496, + "7876": 527, + "7877": 496, + "7878": 527, + "7879": 496, + "7880": 263, + "7881": 246, + "7882": 263, + "7883": 246, + "7884": 664, + "7885": 542, + "7886": 664, + "7887": 542, + "7888": 664, + "7889": 542, + "7890": 664, + "7891": 542, + "7892": 664, + "7893": 542, + "7894": 664, + "7895": 542, + "7896": 664, + "7897": 542, + "7898": 664, + "7899": 542, + "7900": 664, + "7901": 542, + "7902": 664, + "7903": 542, + "7904": 664, + "7905": 542, + "7906": 664, + "7907": 542, + "7908": 645, + "7909": 544, + "7910": 645, + "7911": 544, + "7912": 659, + "7913": 544, + "7914": 659, + "7915": 544, + "7916": 659, + "7917": 544, + "7918": 659, + "7919": 544, + "7920": 659, + "7921": 544, + "7922": 476, + "7923": 467, + "7924": 476, + "7925": 467, + "7926": 476, + "7927": 467, + "7928": 476, + "7929": 467, + "7936": 560, + "7937": 560, + "7938": 560, + "7939": 560, + "7940": 560, + "7941": 560, + "7942": 560, + "7943": 560, + "7944": 588, + "7945": 573, + "7946": 736, + "7947": 730, + "7948": 720, + "7949": 710, + "7950": 633, + "7951": 633, + "7952": 448, + "7953": 448, + "7954": 448, + "7955": 448, + "7956": 448, + "7957": 448, + "7960": 665, + "7961": 665, + "7962": 783, + "7963": 783, + "7964": 783, + "7965": 773, + "7968": 541, + "7969": 541, + "7970": 541, + "7971": 541, + "7972": 541, + "7973": 541, + "7974": 541, + "7975": 541, + "7976": 790, + "7977": 790, + "7978": 908, + "7979": 908, + "7980": 908, + "7981": 898, + "7982": 841, + "7983": 841, + "7984": 262, + "7985": 262, + "7986": 262, + "7987": 262, + "7988": 262, + "7989": 262, + "7990": 262, + "7991": 262, + "7992": 401, + "7993": 401, + "7994": 519, + "7995": 519, + "7996": 525, + "7997": 509, + "7998": 452, + "7999": 452, + "8000": 535, + "8001": 535, + "8002": 535, + "8003": 535, + "8004": 535, + "8005": 535, + "8008": 795, + "8009": 795, + "8010": 927, + "8011": 927, + "8012": 913, + "8013": 903, + "8016": 510, + "8017": 510, + "8018": 510, + "8019": 510, + "8020": 510, + "8021": 510, + "8022": 510, + "8023": 510, + "8025": 660, + "8027": 778, + "8029": 766, + "8031": 725, + "8032": 701, + "8033": 701, + "8034": 701, + "8035": 701, + "8036": 701, + "8037": 701, + "8038": 701, + "8039": 701, + "8040": 809, + "8041": 809, + "8042": 941, + "8043": 941, + "8044": 927, + "8045": 914, + "8046": 841, + "8047": 841, + "8048": 560, + "8049": 560, + "8050": 448, + "8051": 448, + "8052": 541, + "8053": 541, + "8054": 262, + "8055": 262, + "8056": 535, + "8057": 535, + "8058": 510, + "8059": 510, + "8060": 701, + "8061": 701, + "8064": 560, + "8065": 560, + "8066": 560, + "8067": 560, + "8068": 560, + "8069": 560, + "8070": 560, + "8071": 560, + "8072": 849, + "8073": 835, + "8074": 998, + "8075": 991, + "8076": 981, + "8077": 971, + "8078": 895, + "8079": 895, + "8080": 541, + "8081": 541, + "8082": 541, + "8083": 541, + "8084": 541, + "8085": 541, + "8086": 541, + "8087": 541, + "8088": 1051, + "8089": 1051, + "8090": 1170, + "8091": 1170, + "8092": 1170, + "8093": 1160, + "8094": 1103, + "8095": 1103, + "8096": 701, + "8097": 701, + "8098": 701, + "8099": 701, + "8100": 701, + "8101": 701, + "8102": 701, + "8103": 701, + "8104": 1071, + "8105": 1071, + "8106": 1203, + "8107": 1203, + "8108": 1189, + "8109": 1175, + "8110": 1102, + "8111": 1102, + "8112": 560, + "8113": 560, + "8114": 560, + "8115": 560, + "8116": 560, + "8118": 560, + "8119": 560, + "8120": 544, + "8121": 544, + "8122": 580, + "8123": 573, + "8124": 805, + "8125": 542, + "8126": 262, + "8127": 542, + "8128": 542, + "8129": 542, + "8130": 541, + "8131": 541, + "8132": 541, + "8134": 541, + "8135": 541, + "8136": 611, + "8137": 611, + "8138": 736, + "8139": 736, + "8140": 913, + "8141": 542, + "8142": 542, + "8143": 542, + "8144": 262, + "8145": 262, + "8146": 262, + "8147": 262, + "8150": 262, + "8151": 262, + "8152": 263, + "8153": 263, + "8154": 347, + "8155": 334, + "8157": 542, + "8158": 542, + "8159": 542, + "8160": 510, + "8161": 510, + "8162": 510, + "8163": 510, + "8164": 549, + "8165": 549, + "8166": 510, + "8167": 510, + "8168": 476, + "8169": 476, + "8170": 604, + "8171": 604, + "8172": 704, + "8173": 542, + "8174": 542, + "8175": 542, + "8178": 701, + "8179": 701, + "8180": 701, + "8182": 701, + "8183": 701, + "8184": 748, + "8185": 728, + "8186": 759, + "8187": 745, + "8188": 939, + "8189": 542, + "8190": 542, + "8199": 497, + "8201": 100, + "8202": 20, + "8203": 0, + "8208": 311, + "8209": 311, + "8210": 497, + "8211": 480, + "8212": 800, + "8213": 800, + "8214": 391, + "8215": 500, + "8216": 249, + "8217": 249, + "8218": 249, + "8219": 249, + "8220": 426, + "8221": 426, + "8222": 426, + "8224": 454, + "8225": 454, + "8226": 304, + "8227": 304, + "8230": 948, + "8239": 120, + "8240": 1194, + "8241": 1564, + "8242": 249, + "8243": 426, + "8245": 249, + "8249": 271, + "8250": 271, + "8252": 549, + "8253": 432, + "8254": 500, + "8255": 563, + "8260": 86, + "8263": 815, + "8264": 679, + "8265": 679, + "8266": 444, + "8304": 367, + "8305": 166, + "8308": 367, + "8309": 367, + "8310": 367, + "8311": 367, + "8312": 367, + "8313": 367, + "8314": 367, + "8315": 367, + "8316": 367, + "8317": 237, + "8318": 237, + "8319": 369, + "8320": 367, + "8321": 367, + "8322": 367, + "8323": 367, + "8324": 367, + "8325": 367, + "8326": 367, + "8327": 367, + "8328": 367, + "8329": 367, + "8330": 367, + "8331": 367, + "8332": 367, + "8333": 237, + "8334": 237, + "8353": 497, + "8355": 497, + "8356": 497, + "8358": 497, + "8359": 497, + "8361": 497, + "8363": 497, + "8364": 497, + "8366": 497, + "8369": 497, + "8370": 497, + "8372": 497, + "8373": 497, + "8376": 497, + "8377": 497, + "8378": 497, + "8381": 497, + "8453": 808, + "8467": 409, + "8470": 893, + "8471": 743, + "8478": 696, + "8480": 637, + "8482": 637, + "8486": 678, + "8494": 800, + "8528": 804, + "8529": 804, + "8530": 1092, + "8531": 804, + "8532": 821, + "8533": 804, + "8534": 821, + "8535": 821, + "8536": 846, + "8537": 804, + "8538": 821, + "8539": 804, + "8540": 821, + "8541": 821, + "8542": 801, + "8585": 821, + "8592": 619, + "8593": 619, + "8594": 619, + "8595": 619, + "8596": 619, + "8597": 619, + "8598": 619, + "8599": 619, + "8600": 619, + "8601": 619, + "8616": 619, + "8656": 619, + "8657": 619, + "8658": 619, + "8659": 619, + "8679": 800, + "8704": 544, + "8706": 528, + "8707": 527, + "8710": 588, + "8719": 673, + "8721": 504, + "8722": 497, + "8725": 86, + "8729": 497, + "8730": 557, + "8734": 782, + "8735": 497, + "8745": 497, + "8747": 355, + "8758": 249, + "8759": 540, + "8776": 497, + "8800": 497, + "8801": 497, + "8804": 497, + "8805": 497, + "8962": 600, + "8963": 800, + "8976": 497, + "8984": 1000, + "8988": 303, + "8989": 303, + "8990": 303, + "8991": 303, + "8992": 355, + "8993": 355, + "8997": 1000, + "8998": 1000, + "9003": 1000, + "9632": 600, + "9633": 600, + "9642": 304, + "9643": 304, + "9644": 304, + "9650": 600, + "9651": 600, + "9652": 304, + "9653": 304, + "9654": 600, + "9655": 600, + "9656": 304, + "9657": 304, + "9658": 600, + "9660": 600, + "9661": 600, + "9662": 304, + "9663": 304, + "9664": 600, + "9665": 600, + "9666": 304, + "9667": 304, + "9668": 600, + "9670": 600, + "9673": 600, + "9674": 517, + "9675": 600, + "9676": 585, + "9679": 600, + "9688": 304, + "9689": 600, + "9702": 304, + "9744": 799, + "9745": 799, + "9749": 600, + "9786": 600, + "9787": 600, + "9788": 600, + "9791": 600, + "9792": 600, + "9793": 600, + "9794": 600, + "9824": 600, + "9827": 600, + "9829": 600, + "9830": 600, + "9834": 503, + "9835": 600, + "10003": 612, + "10004": 656, + "10007": 526, + "10008": 570, + "10066": 600, + "10075": 360, + "10076": 360, + "10077": 720, + "10078": 702, + "10079": 360, + "10080": 720, + "10084": 600, + "10214": 378, + "10215": 378, + "10216": 303, + "10217": 303, + "11360": 503, + "11361": 293, + "11362": 556, + "11365": 504, + "11366": 338, + "11377": 477, + "11389": 346, + "11800": 432, + "11810": 303, + "11811": 303, + "11812": 303, + "11813": 303, + "11834": 1500, + "11835": 2200, + "11858": 478, + "42780": 249, + "42786": 289, + "42787": 282, + "42788": 289, + "42789": 282, + "42830": 1059, + "42831": 876, + "42842": 472, + "42843": 382, + "42852": 608, + "42853": 566, + "42873": 664, + "42874": 533, + "42875": 566, + "42876": 367, + "42877": 603, + "42878": 603, + "42879": 484, + "42880": 486, + "42881": 255, + "42882": 569, + "42883": 507, + "42884": 566, + "42885": 367, + "42886": 536, + "42887": 431, + "42889": 249, + "42925": 535, + "42926": 343, + "42931": 506, + "42933": 565, + "42994": 379, + "42995": 330, + "42996": 443, + "43859": 466, + "43878": 851, + "43879": 650, + "64256": 577, + "64257": 538, + "64258": 547, + "64259": 823, + "64260": 832, + "65279": 0 + }, + "CIDtoGID_Compressed": true, + "CIDtoGID": "eJzt3AW0F0XfB\/BfzVy6u0u6QUKU7i4VULoERaRBQEqQEgXpEEXEQFAMOkUFpZVUWqQESTFAedf1el8uIA+IPnie8\/1wpmdnZ3b\/u5f\/PWcu0W1i22zbXGE3162R12yrE6cujttj6+2IrXMxbIEttEW22JbYUltmy22FrbQNttEdcgfdN\/a5K0RCSkaOPEVQDIpJsSg2xaG4FI\/iUwJKSIkoMSWhpJSMklMKSkmpKLUzF8s5d8x+9WUoDaWldJSeMlBGykSZKQvdRVkpG2WnHJSTclFuykN5KR\/lpwJUkApRYbrbeRfTRbhvb3fx4fq3uHfd226Oe8fFdvF9RZfFdbRv3Ek74rL6Su6sO+qKumK+rBxyCew7X90VcU\/YYfeZW+fW2xdUhIpSMSpO91AJqk0NqDW1obbUjkbRc\/Q8jeGM9AEtpWW0nFbQSrePNtH3dIF+oJ84CWfin7gMl+VyXJ4rcEV+iFtyR36CO3EXnsiTeDJPlfy8ij\/lz3gdr+cNbj\/vFhMnXmJIZikgWelerkT3cWUqw9WpIbeiRtyaHuI29DC3pabcnlry49Seu9Kj3I0e4+7UkXtRB+5BfXkI9eOh1J+H0UAeQUP4OXqWJ9BonkIv8DQayy\/SRJ5B4\/hVmsqzaBq\/Ri\/xbJ5Lr\/Db9CrPo5n8Ds3lxfQGf0Dv8QpawKvpfV7Jn9BiXkOreCN9yJtoNW+mLbyX9vBx2s8naS9\/S4f4DH3DZ+kof09H+Dyd4l\/oJF+kcyL0o0TQzxKTLkosuiSx6ReJQ5clHieUDJxUsnByTi05Oa3k5nSSh3\/mpnR\/1L38IjJt9VskDakXZ6Mnidx7NJgLBLe6IE0Jb\/l86Ryma4NoO399gw9HDEnOha8o3xW9XQrKS\/KyzJBXrnNwKa5K4\/kl+oi30K8Sl0kSMEtCFknEKol5UFTPutyYBvFIGsDDw\/InHK6Es8rd\/Hpknz48OKjJTO\/ycqrFjagOP0ybeQ+V5mph++PcM0wn8Mth+jF\/ft0lHeMLdJp\/5SxSiIbxGFoS1G3jg2FbSa7y59cinNGbYVKPGvMj9CadD+uKSGmqz55+P990fiPaFaom1aUGN+P9UlvqSj1pJEXkIXlYGksTaSrNeJQ0lxbSUnpLa2kjbXmmPCrteCEvkselo3SRrtJNekhPeVL6SF95SvpJfxkgA4ORB8nT8qoMliHyjAyVYTIrqBsuI2S0jJGxvE\/GywSZKJNksgR3UKbKtHA+M6VmELeSR+Qx6SBPBPkXZbrUl\/vlARkpz8qo6Ct2o9wb7nk3wYUrd1Pdiz443tfytX0dX9fX8\/V91OfPl\/PlfVPfzDf3LXzLyLoH\/IO+gW\/oG\/mH\/MO+sa\/sq\/kqvoav4Kv6JsGIs90YN9FNc29dfa1dmRvfi8jx2\/r2voPv6Dv5Lr6b7+V7+76+nx\/gB\/khQetQP9yP9KP86CA\/Nuw\/3k\/wE\/0kP9lP8VP9NP9iWDvdv+Rf9jP8TD\/Lv+6DO+iD9frZ\/i0\/x8\/1bwf5d8J+a\/xaP8+\/69\/z7\/sPwpp2QZjvF\/pFfvF1ZvfTVeUlfllkbkUQVvpVQfzhzaxTD2rUc6pHItP9V7Qf0sOyWQ\/IFvlcgqdHtgVhu+xUlQWyUBbJYlkiS2WZLJcVslJWyYeyWj6Sj+UTWRP0XCufymeyTtbLBtkoW2WH\/CwX5ZL8oia75Ev5SnbLHtkr+2S\/HJCD8rUckm\/ksByRo3JMzshx+VZOyEn5Tk7JaflVWS4rqeg++VEir4GcDGa5N0jPBuFcEM5H1n9\/M+uXH8J4k1yIXm8ZLZNltix2l2W1bJbdclhOy2W5LY\/ltXyW39jE1MyceYuwGBbTYllsi2NxLZ7FtwSW0BJZYktiSS2ZJbcUltJSWWpLY2ktnaW3DFbLalsdq2v1rL7dbw\/Yg9bAGloje8getsbWxJpaM2tuLayltbLW1sba2iPWztrbo\/aYdbDHraM9YZ2ss3WxrtbNulsP62m97EnrbX2srz0VrqGA9bvR2q2g9bdCNuBmrtM1xxa2gXa3he9aK2qDrZgNseL2TFT7PTbU7rXh0Y4paSPDtJQ9a6VtlJWx58JyWXs+TMvZ6Ki+5a2CjbESNiws3Wcjoo30glW08LmzSjbOKtt4q2ITrpljVZsYptVsklW3yVH1NSz8eWU1bWqYFrGn\/8o1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAACA\/xUy5cqS6xSEzkHo6roFcQ\/X0\/VyT7rero\/r654KavoFob8b6Aa5p90QF7mfwg11w90IN8O9EuSfDcJo94Kb6cZFto53k1y4u8FNoZsi3aXXNXXFg9A+Mv\/CX12tGxaZjvyT9leDMCsIr123dXpk+vr1Wn\/nV\/\/Vud2yB7h5mD7ILcK0CbejZvwoNefHqAV3iOrXkwdGO643P01P8TM0lEfTcH6BnuHnaQSPpZE8Llq\/l\/ktmsFzaBa\/S6\/xe\/Q6vx\/Wv81L6B1eSvN4Gc3nD2khf0SL+ONr5reRvwrT3XyM9vEJOsDf0UE+RV\/zaTrM5+g4h7ub6Fv+MUy\/40t0hi\/TWQmLbJLkesvmeJKW40s6TiDpOZFkvKY9hWTjNJKL00teziD5eLxwtA4npAGV45pUnmtRBa5NFbkOVeK6VJnrURWuT1X5fqrGD1B1fpBqcAOqyQ2pE\/emztyHHuHO1IX7Uld+irpxP+rO\/akHD6BJ\/ApN5um0hrfSWt5Gn\/J2+ox30DreSet5F23gL2kHH6Kd\/A3t4sP0JR+hr\/goO0nKEZKMY0oKjiUpObak4jiSmuNKGk4smTilZOdUkoOTSbQ9qNpa22g7ba+P6mPaQR9Xp15jaiyNrXE0rsbTztpFu2sP7anhk6QJNZEm1WSaXFOE5Se1tz6l\/bS\/DtCBOkhTaipNq+k0vWbQjJpJB+sQHabDdYSO1Gd1lGbWLJpNs2sOzam5NLeO0\/E6SSfrFA33KGk+za+FtLDerUXC8nR9SV\/RmfqqztLXNHhetFgQSgTh3iDcp2\/rO\/qevq8f6HxdoAu1tJbR8lpBK2olraxVtK0+ol21m\/bRvvqMDtUJOlFf1hk6T98Nx1+iS3WFrtRV+qGu1o+0mlbXGlpTa2ltraN1dY2u1XW6XjfoRt2km7W+3q8P6IPaQBtqI31Iv9CtukN36i79Ur\/S3dpYm2hTbabNtYW21FbaUZ\/QZbpYlwfn6qQfa3xNoBEaQ6vqMT2qx\/W8\/qCf6if6WdD+tG7RxJpEU2saraff6Wk9q8\/p8zpGw\/eUjtaxmkfz6l2aNSid0jN6Tt\/U2fqWztFp+qK+oXO1pJbS4nqPFtXv9YKeCI\/bpp\/r9iBdpHu0gBbUslpOH9aTes3+94jfQvAxitA\/auxI8O+EHbVjdtIltMu23XbYl7bbdtouC55KF9fFs1N2Ouy76ZrxzK11n7pz7nzQM3Kfon1th4JSIpfMkYt6ntxHYZzYJXVJ5AZvxVvl7nbh3jtX3N3jSrh73X2upCvlSrsyrqwr58a68q6Cq+gqucquiqvqqrnqroar6Wq52q6Oq3tTZwjeZW61+yCI57sFQbwwCIvcvCBeGbYvdkuCeKkLd666VW65WxHmbmrf6n+P5xu0hS9Sm++ivTt88AS67EHI9ntZNl51lNJtc9vcl+4rt8FtdJvcZrfFfe6+cFvddrfD7XS7bn\/865xx95Ulb9557yN8Ap\/Qx\/AxfSwf+0ZH+0R\/72x8HB\/Xx\/Pxb7L3r7c6vrsYhAvu0m95uWYHtv+tx2W3N+wZ+XPZHXA\/R+bOuNPXGfFUEH647rl+cf9xfu7Ezc07qv9xF+7rdofdkVs7Ev7gS\/vLf9bmvruq7x\/3PoVL6VK51O5HF7k\/3V\/0l6J6\/fL3zxIA4N\/FJ\/XJrq6zs3bOrngD+pQ+lZ23731qn8Yu2A8++Kbp0\/p09qP95NP7DPazXfSZgrrwG5XP4kv5JL5NmE98zdiXfOY\/m4ud+TtWFJ2\/y2eNzBW+cc9bGLOAL+hLhrlivri\/x5e4jbHyh3HeIOTx+SLrcvnctz1JuILP5rOHaQ6f8w6cPfnVNbbH9to+228H7GBkn0L\/7Vn9+7g0Lq1L59Lf6XkAAAAA\/KNm8wIK\/\/YlN5Hr\/r5Zxl2vNvjf0uB\/blIA\/5vcNd\/FgroMLqPL5P709xJXs+N2S395W974z30AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAODfx7f6\/zwXlTJcTMr+7SfZygeuV8155b6r6+RNmX1zg3J2Kco5pBjn5FxyD+eWEpxH7uV8UpLzS6lgZa1vb9JR5si8qHPeHcyw1t807i1zXVx3N+BOnR0AAOCvkjo31etBee6fngkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8O8lbERERMWSOzL3TMwEAAID\/jgh3p2cAd9b\/AW9kGbI=", + "_version_": 6 +} \ No newline at end of file diff --git a/storage/fonts/source_sans_3_normal_eaa9347187022942974f53b800e24d5d.ttf b/storage/fonts/source_sans_3_normal_eaa9347187022942974f53b800e24d5d.ttf deleted file mode 100644 index ea7572f..0000000 Binary files a/storage/fonts/source_sans_3_normal_eaa9347187022942974f53b800e24d5d.ttf and /dev/null differ diff --git a/storage/fonts/source_sans_3_normal_eaa9347187022942974f53b800e24d5d.ufm b/storage/fonts/source_sans_3_normal_eaa9347187022942974f53b800e24d5d.ufm deleted file mode 100644 index df3a240..0000000 --- a/storage/fonts/source_sans_3_normal_eaa9347187022942974f53b800e24d5d.ufm +++ /dev/null @@ -1,256 +0,0 @@ -StartFontMetrics 4.1 -Notice Converted by PHP-font-lib -Comment https://github.com/PhenX/php-font-lib -EncodingScheme FontSpecific -Copyright © 2023 Adobe (http://www.adobe.com/), with Reserved Font Name ‘Source’ -FontName Source Sans 3 ExtraLight -FontSubfamily Regular -UniqueID 3.052;ADBO;SourceSans3ExtraLight-Regular -FullName Source Sans 3 ExtraLight Regular -Version Version 3.052;hotconv 1.1.0;makeotfexe 2.6.0 -PostScriptName SourceSans3ExtraLight-Regular -LicenseURL http://scripts.sil.org/OFL -Weight Medium -ItalicAngle 0 -IsFixedPitch false -UnderlineThickness 50 -UnderlinePosition -50 -FontHeightOffset 0 -Ascender 1024 -Descender -400 -FontBBox -248 -270 946 949 -StartCharMetrics 325 -U 32 ; WX 200 ; N space ; G 1 -U 33 ; WX 289 ; N exclam ; G 157 -U 34 ; WX 426 ; N quotedbl ; G 162 -U 35 ; WX 497 ; N numbersign ; G 196 -U 36 ; WX 497 ; N dollar ; G 234 -U 37 ; WX 824 ; N percent ; G 242 -U 38 ; WX 609 ; N ampersand ; G 127 -U 39 ; WX 249 ; N quotesingle ; G 161 -U 40 ; WX 303 ; N parenleft ; G 179 -U 41 ; WX 303 ; N parenright ; G 180 -U 42 ; WX 418 ; N asterisk ; G 189 -U 43 ; WX 497 ; N plus ; G 246 -U 44 ; WX 249 ; N comma ; G 153 -U 45 ; WX 311 ; N hyphen ; G 173 -U 46 ; WX 249 ; N period ; G 152 -U 47 ; WX 350 ; N slash ; G 185 -U 48 ; WX 497 ; N zero ; G 132 -U 49 ; WX 497 ; N one ; G 133 -U 50 ; WX 497 ; N two ; G 134 -U 51 ; WX 497 ; N three ; G 135 -U 52 ; WX 497 ; N four ; G 136 -U 53 ; WX 497 ; N five ; G 137 -U 54 ; WX 497 ; N six ; G 138 -U 55 ; WX 497 ; N seven ; G 139 -U 56 ; WX 497 ; N eight ; G 140 -U 57 ; WX 497 ; N nine ; G 141 -U 58 ; WX 249 ; N colon ; G 154 -U 59 ; WX 249 ; N semicolon ; G 155 -U 60 ; WX 497 ; N less ; G 251 -U 61 ; WX 497 ; N equal ; G 250 -U 62 ; WX 497 ; N greater ; G 252 -U 63 ; WX 425 ; N question ; G 159 -U 64 ; WX 847 ; N at ; G 195 -U 65 ; WX 543 ; N A ; G 2 -U 66 ; WX 588 ; N B ; G 3 -U 67 ; WX 571 ; N C ; G 4 -U 68 ; WX 615 ; N D ; G 5 -U 69 ; WX 527 ; N E ; G 6 -U 70 ; WX 494 ; N F ; G 7 -U 71 ; WX 617 ; N G ; G 8 -U 72 ; WX 652 ; N H ; G 9 -U 73 ; WX 263 ; N I ; G 10 -U 74 ; WX 479 ; N J ; G 11 -U 75 ; WX 579 ; N K ; G 12 -U 76 ; WX 486 ; N L ; G 13 -U 77 ; WX 727 ; N M ; G 14 -U 78 ; WX 647 ; N N ; G 15 -U 79 ; WX 664 ; N O ; G 16 -U 80 ; WX 566 ; N P ; G 17 -U 81 ; WX 664 ; N Q ; G 18 -U 82 ; WX 569 ; N R ; G 19 -U 83 ; WX 534 ; N S ; G 20 -U 84 ; WX 536 ; N T ; G 21 -U 85 ; WX 645 ; N U ; G 22 -U 86 ; WX 515 ; N V ; G 23 -U 87 ; WX 786 ; N W ; G 24 -U 88 ; WX 513 ; N X ; G 25 -U 89 ; WX 476 ; N Y ; G 26 -U 90 ; WX 539 ; N Z ; G 27 -U 91 ; WX 303 ; N bracketleft ; G 181 -U 92 ; WX 350 ; N backslash ; G 187 -U 93 ; WX 303 ; N bracketright ; G 182 -U 94 ; WX 497 ; N asciicircum ; G 254 -U 95 ; WX 500 ; N underscore ; G 178 -U 96 ; WX 542 ; N grave ; G 262 -U 97 ; WX 504 ; N a ; G 28 -U 98 ; WX 553 ; N b ; G 29 -U 99 ; WX 456 ; N c ; G 30 -U 100 ; WX 555 ; N d ; G 31 -U 101 ; WX 496 ; N e ; G 32 -U 102 ; WX 292 ; N f ; G 33 -U 103 ; WX 504 ; N g ; G 34 -U 104 ; WX 544 ; N h ; G 35 -U 105 ; WX 246 ; N i ; G 36 -U 106 ; WX 247 ; N j ; G 37 -U 107 ; WX 495 ; N k ; G 38 -U 108 ; WX 255 ; N l ; G 39 -U 109 ; WX 829 ; N m ; G 40 -U 110 ; WX 547 ; N n ; G 41 -U 111 ; WX 542 ; N o ; G 42 -U 112 ; WX 555 ; N p ; G 43 -U 113 ; WX 555 ; N q ; G 44 -U 114 ; WX 347 ; N r ; G 45 -U 115 ; WX 419 ; N s ; G 46 -U 116 ; WX 338 ; N t ; G 47 -U 117 ; WX 544 ; N u ; G 48 -U 118 ; WX 467 ; N v ; G 49 -U 119 ; WX 719 ; N w ; G 50 -U 120 ; WX 446 ; N x ; G 51 -U 121 ; WX 467 ; N y ; G 52 -U 122 ; WX 425 ; N z ; G 53 -U 123 ; WX 303 ; N braceleft ; G 183 -U 124 ; WX 241 ; N bar ; G 186 -U 125 ; WX 303 ; N braceright ; G 184 -U 126 ; WX 497 ; N asciitilde ; G 255 -U 160 ; WX 200 ; N space ; G 1 -U 161 ; WX 289 ; N exclamdown ; G 158 -U 162 ; WX 497 ; N cent ; G 238 -U 163 ; WX 497 ; N sterling ; G 235 -U 164 ; WX 497 ; N currency ; G 233 -U 165 ; WX 497 ; N yen ; G 236 -U 166 ; WX 241 ; N brokenbar ; G 188 -U 167 ; WX 497 ; N section ; G 190 -U 168 ; WX 542 ; N dieresis ; G 266 -U 169 ; WX 744 ; N copyright ; G 192 -U 170 ; WX 345 ; N ordfeminine ; G 229 -U 171 ; WX 429 ; N guillemotleft ; G 171 -U 172 ; WX 497 ; N logicalnot ; G 256 -U 173 ; WX 311 ; N hyphen ; G 173 -U 174 ; WX 423 ; N registered ; G 193 -U 175 ; WX 542 ; N macron ; G 267 -U 176 ; WX 331 ; N degree ; G 257 -U 177 ; WX 497 ; N plusminus ; G 253 -U 178 ; WX 367 ; N two.u ; G 198 -U 179 ; WX 367 ; N three.u ; G 199 -U 180 ; WX 542 ; N acute ; G 263 -U 181 ; WX 562 ; N mu ; G 131 -U 182 ; WX 560 ; N paragraph ; G 191 -U 183 ; WX 249 ; N periodcentered ; G 176 -U 184 ; WX 542 ; N cedilla ; G 269 -U 185 ; WX 367 ; N one.u ; G 197 -U 186 ; WX 365 ; N ordmasculine ; G 230 -U 187 ; WX 429 ; N guillemotright ; G 172 -U 188 ; WX 781 ; N onequarter ; G 243 -U 189 ; WX 808 ; N onehalf ; G 244 -U 190 ; WX 796 ; N threequarters ; G 245 -U 191 ; WX 425 ; N questiondown ; G 160 -U 192 ; WX 544 ; N Agrave ; G 54 -U 193 ; WX 544 ; N Aacute ; G 55 -U 194 ; WX 544 ; N Acircumflex ; G 56 -U 195 ; WX 544 ; N Atilde ; G 57 -U 196 ; WX 544 ; N Adieresis ; G 58 -U 197 ; WX 544 ; N Aring ; G 59 -U 198 ; WX 822 ; N AE ; G 60 -U 199 ; WX 571 ; N Ccedilla ; G 61 -U 200 ; WX 527 ; N Egrave ; G 62 -U 201 ; WX 527 ; N Eacute ; G 63 -U 202 ; WX 527 ; N Ecircumflex ; G 64 -U 203 ; WX 527 ; N Edieresis ; G 65 -U 204 ; WX 263 ; N Igrave ; G 67 -U 205 ; WX 263 ; N Iacute ; G 68 -U 206 ; WX 263 ; N Icircumflex ; G 69 -U 207 ; WX 263 ; N Idieresis ; G 70 -U 208 ; WX 639 ; N Eth ; G 85 -U 209 ; WX 647 ; N Ntilde ; G 72 -U 210 ; WX 664 ; N Ograve ; G 73 -U 211 ; WX 664 ; N Oacute ; G 74 -U 212 ; WX 664 ; N Ocircumflex ; G 75 -U 213 ; WX 664 ; N Otilde ; G 76 -U 214 ; WX 664 ; N Odieresis ; G 77 -U 215 ; WX 497 ; N multiply ; G 248 -U 216 ; WX 664 ; N Oslash ; G 78 -U 217 ; WX 645 ; N Ugrave ; G 80 -U 218 ; WX 645 ; N Uacute ; G 81 -U 219 ; WX 645 ; N Ucircumflex ; G 82 -U 220 ; WX 645 ; N Udieresis ; G 83 -U 221 ; WX 476 ; N Yacute ; G 84 -U 222 ; WX 583 ; N Thorn ; G 86 -U 223 ; WX 576 ; N germandbls ; G 117 -U 224 ; WX 504 ; N agrave ; G 88 -U 225 ; WX 504 ; N aacute ; G 89 -U 226 ; WX 504 ; N acircumflex ; G 90 -U 227 ; WX 504 ; N atilde ; G 91 -U 228 ; WX 504 ; N adieresis ; G 92 -U 229 ; WX 504 ; N aring ; G 93 -U 230 ; WX 778 ; N ae ; G 94 -U 231 ; WX 456 ; N ccedilla ; G 95 -U 232 ; WX 496 ; N egrave ; G 96 -U 233 ; WX 496 ; N eacute ; G 97 -U 234 ; WX 496 ; N ecircumflex ; G 98 -U 235 ; WX 496 ; N edieresis ; G 99 -U 236 ; WX 246 ; N igrave ; G 102 -U 237 ; WX 246 ; N iacute ; G 103 -U 238 ; WX 246 ; N icircumflex ; G 104 -U 239 ; WX 246 ; N idieresis ; G 105 -U 240 ; WX 544 ; N eth ; G 124 -U 241 ; WX 547 ; N ntilde ; G 109 -U 242 ; WX 542 ; N ograve ; G 110 -U 243 ; WX 542 ; N oacute ; G 111 -U 244 ; WX 542 ; N ocircumflex ; G 112 -U 245 ; WX 542 ; N otilde ; G 113 -U 246 ; WX 542 ; N odieresis ; G 114 -U 247 ; WX 497 ; N divide ; G 249 -U 248 ; WX 542 ; N oslash ; G 115 -U 249 ; WX 544 ; N ugrave ; G 118 -U 250 ; WX 544 ; N uacute ; G 119 -U 251 ; WX 544 ; N ucircumflex ; G 120 -U 252 ; WX 544 ; N udieresis ; G 121 -U 253 ; WX 467 ; N yacute ; G 122 -U 254 ; WX 555 ; N thorn ; G 125 -U 255 ; WX 467 ; N ydieresis ; G 123 -U 305 ; WX 247 ; N dotlessi ; G 106 -U 338 ; WX 847 ; N OE ; G 79 -U 339 ; WX 839 ; N oe ; G 116 -U 699 ; WX 257 ; N uni02BB ; G 270 -U 700 ; WX 257 ; N uni02BC ; G 271 -U 710 ; WX 542 ; N circumflex ; G 264 -U 730 ; WX 542 ; N ring ; G 268 -U 732 ; WX 542 ; N tilde ; G 265 -U 768 ; WX 0 ; N uni0300 ; G 272 -U 769 ; WX 0 ; N uni0301 ; G 275 -U 771 ; WX 0 ; N uni0303 ; G 280 -U 772 ; WX 0 ; N uni0304 ; G 282 -U 776 ; WX 0 ; N uni0308 ; G 285 -U 777 ; WX 0 ; N uni0309 ; G 287 -U 803 ; WX 0 ; N uni0323 ; G 291 -U 809 ; WX 0 ; N uni0329 ; G 295 -U 8201 ; WX 100 ; N uni2009 ; G 321 -U 8203 ; WX 0 ; N uni200B ; G 322 -U 8211 ; WX 480 ; N endash ; G 174 -U 8212 ; WX 800 ; N emdash ; G 175 -U 8216 ; WX 249 ; N quoteleft ; G 163 -U 8217 ; WX 249 ; N quoteright ; G 164 -U 8218 ; WX 249 ; N quotesinglbase ; G 167 -U 8220 ; WX 426 ; N quotedblleft ; G 165 -U 8221 ; WX 426 ; N quotedblright ; G 166 -U 8222 ; WX 426 ; N quotedblbase ; G 168 -U 8226 ; WX 304 ; N bullet ; G 177 -U 8230 ; WX 948 ; N ellipsis ; G 156 -U 8242 ; WX 249 ; N uni2032 ; G 258 -U 8243 ; WX 426 ; N uni2033 ; G 259 -U 8249 ; WX 271 ; N guilsinglleft ; G 169 -U 8250 ; WX 271 ; N guilsinglright ; G 170 -U 8260 ; WX 86 ; N fraction ; G 239 -U 8308 ; WX 367 ; N four.u ; G 200 -U 8364 ; WX 497 ; N Euro ; G 237 -U 8482 ; WX 637 ; N trademark ; G 194 -U 8593 ; WX 619 ; N arrowup ; G 260 -U 8595 ; WX 619 ; N arrowdown ; G 261 -U 8722 ; WX 497 ; N minus ; G 247 -U 8725 ; WX 86 ; N uni2215 ; G 240 -U 65279 ; WX 0 ; N uniFEFF ; G 323 -EndCharMetrics -EndFontMetrics diff --git a/storage/fonts/source_sans_3_normal_eaa9347187022942974f53b800e24d5d.ufm.json b/storage/fonts/source_sans_3_normal_eaa9347187022942974f53b800e24d5d.ufm.json deleted file mode 100644 index d027a2c..0000000 --- a/storage/fonts/source_sans_3_normal_eaa9347187022942974f53b800e24d5d.ufm.json +++ /dev/null @@ -1,494 +0,0 @@ -{ - "codeToName": { - "32": "space", - "33": "exclam", - "34": "quotedbl", - "35": "numbersign", - "36": "dollar", - "37": "percent", - "38": "ampersand", - "39": "quotesingle", - "40": "parenleft", - "41": "parenright", - "42": "asterisk", - "43": "plus", - "44": "comma", - "45": "hyphen", - "46": "period", - "47": "slash", - "48": "zero", - "49": "one", - "50": "two", - "51": "three", - "52": "four", - "53": "five", - "54": "six", - "55": "seven", - "56": "eight", - "57": "nine", - "58": "colon", - "59": "semicolon", - "60": "less", - "61": "equal", - "62": "greater", - "63": "question", - "64": "at", - "65": "A", - "66": "B", - "67": "C", - "68": "D", - "69": "E", - "70": "F", - "71": "G", - "72": "H", - "73": "I", - "74": "J", - "75": "K", - "76": "L", - "77": "M", - "78": "N", - "79": "O", - "80": "P", - "81": "Q", - "82": "R", - "83": "S", - "84": "T", - "85": "U", - "86": "V", - "87": "W", - "88": "X", - "89": "Y", - "90": "Z", - "91": "bracketleft", - "92": "backslash", - "93": "bracketright", - "94": "asciicircum", - "95": "underscore", - "96": "grave", - "97": "a", - "98": "b", - "99": "c", - "100": "d", - "101": "e", - "102": "f", - "103": "g", - "104": "h", - "105": "i", - "106": "j", - "107": "k", - "108": "l", - "109": "m", - "110": "n", - "111": "o", - "112": "p", - "113": "q", - "114": "r", - "115": "s", - "116": "t", - "117": "u", - "118": "v", - "119": "w", - "120": "x", - "121": "y", - "122": "z", - "123": "braceleft", - "124": "bar", - "125": "braceright", - "126": "asciitilde", - "160": "space", - "161": "exclamdown", - "162": "cent", - "163": "sterling", - "164": "currency", - "165": "yen", - "166": "brokenbar", - "167": "section", - "168": "dieresis", - "169": "copyright", - "170": "ordfeminine", - "171": "guillemotleft", - "172": "logicalnot", - "173": "hyphen", - "174": "registered", - "175": "macron", - "176": "degree", - "177": "plusminus", - "178": "two.u", - "179": "three.u", - "180": "acute", - "181": "mu", - "182": "paragraph", - "183": "periodcentered", - "184": "cedilla", - "185": "one.u", - "186": "ordmasculine", - "187": "guillemotright", - "188": "onequarter", - "189": "onehalf", - "190": "threequarters", - "191": "questiondown", - "192": "Agrave", - "193": "Aacute", - "194": "Acircumflex", - "195": "Atilde", - "196": "Adieresis", - "197": "Aring", - "198": "AE", - "199": "Ccedilla", - "200": "Egrave", - "201": "Eacute", - "202": "Ecircumflex", - "203": "Edieresis", - "204": "Igrave", - "205": "Iacute", - "206": "Icircumflex", - "207": "Idieresis", - "208": "Eth", - "209": "Ntilde", - "210": "Ograve", - "211": "Oacute", - "212": "Ocircumflex", - "213": "Otilde", - "214": "Odieresis", - "215": "multiply", - "216": "Oslash", - "217": "Ugrave", - "218": "Uacute", - "219": "Ucircumflex", - "220": "Udieresis", - "221": "Yacute", - "222": "Thorn", - "223": "germandbls", - "224": "agrave", - "225": "aacute", - "226": "acircumflex", - "227": "atilde", - "228": "adieresis", - "229": "aring", - "230": "ae", - "231": "ccedilla", - "232": "egrave", - "233": "eacute", - "234": "ecircumflex", - "235": "edieresis", - "236": "igrave", - "237": "iacute", - "238": "icircumflex", - "239": "idieresis", - "240": "eth", - "241": "ntilde", - "242": "ograve", - "243": "oacute", - "244": "ocircumflex", - "245": "otilde", - "246": "odieresis", - "247": "divide", - "248": "oslash", - "249": "ugrave", - "250": "uacute", - "251": "ucircumflex", - "252": "udieresis", - "253": "yacute", - "254": "thorn", - "255": "ydieresis", - "305": "dotlessi", - "338": "OE", - "339": "oe", - "699": "uni02BB", - "700": "uni02BC", - "710": "circumflex", - "730": "ring", - "732": "tilde", - "768": "uni0300", - "769": "uni0301", - "771": "uni0303", - "772": "uni0304", - "776": "uni0308", - "777": "uni0309", - "803": "uni0323", - "809": "uni0329", - "8201": "uni2009", - "8203": "uni200B", - "8211": "endash", - "8212": "emdash", - "8216": "quoteleft", - "8217": "quoteright", - "8218": "quotesinglbase", - "8220": "quotedblleft", - "8221": "quotedblright", - "8222": "quotedblbase", - "8226": "bullet", - "8230": "ellipsis", - "8242": "uni2032", - "8243": "uni2033", - "8249": "guilsinglleft", - "8250": "guilsinglright", - "8260": "fraction", - "8308": "four.u", - "8364": "Euro", - "8482": "trademark", - "8593": "arrowup", - "8595": "arrowdown", - "8722": "minus", - "8725": "uni2215", - "65279": "uniFEFF" - }, - "isUnicode": true, - "EncodingScheme": "FontSpecific", - "FontName": "Source Sans 3 ExtraLight", - "FullName": "Source Sans 3 ExtraLight Regular", - "Version": "Version 3.052;hotconv 1.1.0;makeotfexe 2.6.0", - "PostScriptName": "SourceSans3ExtraLight-Regular", - "Weight": "Medium", - "ItalicAngle": "0", - "IsFixedPitch": "false", - "UnderlineThickness": "50", - "UnderlinePosition": "-50", - "FontHeightOffset": "0", - "Ascender": "1024", - "Descender": "-400", - "FontBBox": [ - "-248", - "-270", - "946", - "949" - ], - "StartCharMetrics": "325", - "C": { - "32": 200, - "33": 289, - "34": 426, - "35": 497, - "36": 497, - "37": 824, - "38": 609, - "39": 249, - "40": 303, - "41": 303, - "42": 418, - "43": 497, - "44": 249, - "45": 311, - "46": 249, - "47": 350, - "48": 497, - "49": 497, - "50": 497, - "51": 497, - "52": 497, - "53": 497, - "54": 497, - "55": 497, - "56": 497, - "57": 497, - "58": 249, - "59": 249, - "60": 497, - "61": 497, - "62": 497, - "63": 425, - "64": 847, - "65": 543, - "66": 588, - "67": 571, - "68": 615, - "69": 527, - "70": 494, - "71": 617, - "72": 652, - "73": 263, - "74": 479, - "75": 579, - "76": 486, - "77": 727, - "78": 647, - "79": 664, - "80": 566, - "81": 664, - "82": 569, - "83": 534, - "84": 536, - "85": 645, - "86": 515, - "87": 786, - "88": 513, - "89": 476, - "90": 539, - "91": 303, - "92": 350, - "93": 303, - "94": 497, - "95": 500, - "96": 542, - "97": 504, - "98": 553, - "99": 456, - "100": 555, - "101": 496, - "102": 292, - "103": 504, - "104": 544, - "105": 246, - "106": 247, - "107": 495, - "108": 255, - "109": 829, - "110": 547, - "111": 542, - "112": 555, - "113": 555, - "114": 347, - "115": 419, - "116": 338, - "117": 544, - "118": 467, - "119": 719, - "120": 446, - "121": 467, - "122": 425, - "123": 303, - "124": 241, - "125": 303, - "126": 497, - "160": 200, - "161": 289, - "162": 497, - "163": 497, - "164": 497, - "165": 497, - "166": 241, - "167": 497, - "168": 542, - "169": 744, - "170": 345, - "171": 429, - "172": 497, - "173": 311, - "174": 423, - "175": 542, - "176": 331, - "177": 497, - "178": 367, - "179": 367, - "180": 542, - "181": 562, - "182": 560, - "183": 249, - "184": 542, - "185": 367, - "186": 365, - "187": 429, - "188": 781, - "189": 808, - "190": 796, - "191": 425, - "192": 544, - "193": 544, - "194": 544, - "195": 544, - "196": 544, - "197": 544, - "198": 822, - "199": 571, - "200": 527, - "201": 527, - "202": 527, - "203": 527, - "204": 263, - "205": 263, - "206": 263, - "207": 263, - "208": 639, - "209": 647, - "210": 664, - "211": 664, - "212": 664, - "213": 664, - "214": 664, - "215": 497, - "216": 664, - "217": 645, - "218": 645, - "219": 645, - "220": 645, - "221": 476, - "222": 583, - "223": 576, - "224": 504, - "225": 504, - "226": 504, - "227": 504, - "228": 504, - "229": 504, - "230": 778, - "231": 456, - "232": 496, - "233": 496, - "234": 496, - "235": 496, - "236": 246, - "237": 246, - "238": 246, - "239": 246, - "240": 544, - "241": 547, - "242": 542, - "243": 542, - "244": 542, - "245": 542, - "246": 542, - "247": 497, - "248": 542, - "249": 544, - "250": 544, - "251": 544, - "252": 544, - "253": 467, - "254": 555, - "255": 467, - "305": 247, - "338": 847, - "339": 839, - "699": 257, - "700": 257, - "710": 542, - "730": 542, - "732": 542, - "768": 0, - "769": 0, - "771": 0, - "772": 0, - "776": 0, - "777": 0, - "803": 0, - "809": 0, - "8201": 100, - "8203": 0, - "8211": 480, - "8212": 800, - "8216": 249, - "8217": 249, - "8218": 249, - "8220": 426, - "8221": 426, - "8222": 426, - "8226": 304, - "8230": 948, - "8242": 249, - "8243": 426, - "8249": 271, - "8250": 271, - "8260": 86, - "8308": 367, - "8364": 497, - "8482": 637, - "8593": 619, - "8595": 619, - "8722": 497, - "8725": 86, - "65279": 0 - }, - "CIDtoGID_Compressed": true, - "CIDtoGID": "eJzt0FWrYGUYhuF7OY4zdneM3d1do2K3YidYYHfhgV3ndnd3d\/8RBVvs1o3OgQyK4mzdgtcF71es9a7nWzWNhq7vll7rvT7tvG7u0R7r+b7s6u7vqp7ugi7soi7uki7tsi7viq7smq7tu77t+27s1aZrXNM3vhma0MRmbKZmbpZmbbZmb47mbK7mbp7mbb7mb4EWbKEW7vGe7Yl+7JFhhhZp0RZrUou3REu2VEu3TMu2XMu3Qiu2Uiu3Squ2Wqu3Rmu2Vmu3Tk\/2TE\/107Re\/pf739BHvd+7fdBzvTDM1Eu93b1DI\/d\/eZh5GPqhN3pzmND5vdhDw6y93jvd12d93hfd1Lqt1\/pt0IZt1MZt0qZt1uZt0eS2auu2aa+2bbu2b4d2bKe+bud2bbd2b4\/2bO9ObZ\/2bb\/274AO7KAO7pAO7bAO74iO7KiO7pyO7biO74RO7KS+6eRO6\/TO6MzO6tzOHoU\/8GeOmeYOu3TKKOSA\/4hhtmH23zmd+BffnmWkZhylJHMMc4+MCwwLTdkvOkz6G12W+s16udFJBgAAAAAAAAAAAAAAAADAr4YtRmrLqQ4f6MEpq1u7rTtH5tu7o7umnD08Zb7uDzpON4z7zfbu7vmdhz7+m3H\/qrf+4f5T+\/Bf\/t5YemWsA\/yThulHavxYpxhTX\/0yfjK2IQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4\/xgmj3UCxtbPloNd8w==", - "_version_": 6 -} \ No newline at end of file diff --git a/storage/fonts/source_sans_3_normal_eaa9347187022942974f53b800e24d5d.ufm.php b/storage/fonts/source_sans_3_normal_eaa9347187022942974f53b800e24d5d.ufm.php deleted file mode 100644 index 4298705..0000000 --- a/storage/fonts/source_sans_3_normal_eaa9347187022942974f53b800e24d5d.ufm.php +++ /dev/null @@ -1,497 +0,0 @@ - - array ( - 32 => 'space', - 33 => 'exclam', - 34 => 'quotedbl', - 35 => 'numbersign', - 36 => 'dollar', - 37 => 'percent', - 38 => 'ampersand', - 39 => 'quotesingle', - 40 => 'parenleft', - 41 => 'parenright', - 42 => 'asterisk', - 43 => 'plus', - 44 => 'comma', - 45 => 'hyphen', - 46 => 'period', - 47 => 'slash', - 48 => 'zero', - 49 => 'one', - 50 => 'two', - 51 => 'three', - 52 => 'four', - 53 => 'five', - 54 => 'six', - 55 => 'seven', - 56 => 'eight', - 57 => 'nine', - 58 => 'colon', - 59 => 'semicolon', - 60 => 'less', - 61 => 'equal', - 62 => 'greater', - 63 => 'question', - 64 => 'at', - 65 => 'A', - 66 => 'B', - 67 => 'C', - 68 => 'D', - 69 => 'E', - 70 => 'F', - 71 => 'G', - 72 => 'H', - 73 => 'I', - 74 => 'J', - 75 => 'K', - 76 => 'L', - 77 => 'M', - 78 => 'N', - 79 => 'O', - 80 => 'P', - 81 => 'Q', - 82 => 'R', - 83 => 'S', - 84 => 'T', - 85 => 'U', - 86 => 'V', - 87 => 'W', - 88 => 'X', - 89 => 'Y', - 90 => 'Z', - 91 => 'bracketleft', - 92 => 'backslash', - 93 => 'bracketright', - 94 => 'asciicircum', - 95 => 'underscore', - 96 => 'grave', - 97 => 'a', - 98 => 'b', - 99 => 'c', - 100 => 'd', - 101 => 'e', - 102 => 'f', - 103 => 'g', - 104 => 'h', - 105 => 'i', - 106 => 'j', - 107 => 'k', - 108 => 'l', - 109 => 'm', - 110 => 'n', - 111 => 'o', - 112 => 'p', - 113 => 'q', - 114 => 'r', - 115 => 's', - 116 => 't', - 117 => 'u', - 118 => 'v', - 119 => 'w', - 120 => 'x', - 121 => 'y', - 122 => 'z', - 123 => 'braceleft', - 124 => 'bar', - 125 => 'braceright', - 126 => 'asciitilde', - 160 => 'space', - 161 => 'exclamdown', - 162 => 'cent', - 163 => 'sterling', - 164 => 'currency', - 165 => 'yen', - 166 => 'brokenbar', - 167 => 'section', - 168 => 'dieresis', - 169 => 'copyright', - 170 => 'ordfeminine', - 171 => 'guillemotleft', - 172 => 'logicalnot', - 173 => 'hyphen', - 174 => 'registered', - 175 => 'macron', - 176 => 'degree', - 177 => 'plusminus', - 178 => 'two.u', - 179 => 'three.u', - 180 => 'acute', - 181 => 'mu', - 182 => 'paragraph', - 183 => 'periodcentered', - 184 => 'cedilla', - 185 => 'one.u', - 186 => 'ordmasculine', - 187 => 'guillemotright', - 188 => 'onequarter', - 189 => 'onehalf', - 190 => 'threequarters', - 191 => 'questiondown', - 192 => 'Agrave', - 193 => 'Aacute', - 194 => 'Acircumflex', - 195 => 'Atilde', - 196 => 'Adieresis', - 197 => 'Aring', - 198 => 'AE', - 199 => 'Ccedilla', - 200 => 'Egrave', - 201 => 'Eacute', - 202 => 'Ecircumflex', - 203 => 'Edieresis', - 204 => 'Igrave', - 205 => 'Iacute', - 206 => 'Icircumflex', - 207 => 'Idieresis', - 208 => 'Eth', - 209 => 'Ntilde', - 210 => 'Ograve', - 211 => 'Oacute', - 212 => 'Ocircumflex', - 213 => 'Otilde', - 214 => 'Odieresis', - 215 => 'multiply', - 216 => 'Oslash', - 217 => 'Ugrave', - 218 => 'Uacute', - 219 => 'Ucircumflex', - 220 => 'Udieresis', - 221 => 'Yacute', - 222 => 'Thorn', - 223 => 'germandbls', - 224 => 'agrave', - 225 => 'aacute', - 226 => 'acircumflex', - 227 => 'atilde', - 228 => 'adieresis', - 229 => 'aring', - 230 => 'ae', - 231 => 'ccedilla', - 232 => 'egrave', - 233 => 'eacute', - 234 => 'ecircumflex', - 235 => 'edieresis', - 236 => 'igrave', - 237 => 'iacute', - 238 => 'icircumflex', - 239 => 'idieresis', - 240 => 'eth', - 241 => 'ntilde', - 242 => 'ograve', - 243 => 'oacute', - 244 => 'ocircumflex', - 245 => 'otilde', - 246 => 'odieresis', - 247 => 'divide', - 248 => 'oslash', - 249 => 'ugrave', - 250 => 'uacute', - 251 => 'ucircumflex', - 252 => 'udieresis', - 253 => 'yacute', - 254 => 'thorn', - 255 => 'ydieresis', - 305 => 'dotlessi', - 338 => 'OE', - 339 => 'oe', - 699 => 'uni02BB', - 700 => 'uni02BC', - 710 => 'circumflex', - 730 => 'ring', - 732 => 'tilde', - 768 => 'uni0300', - 769 => 'uni0301', - 771 => 'uni0303', - 772 => 'uni0304', - 776 => 'uni0308', - 777 => 'uni0309', - 803 => 'uni0323', - 809 => 'uni0329', - 8201 => 'uni2009', - 8203 => 'uni200B', - 8211 => 'endash', - 8212 => 'emdash', - 8216 => 'quoteleft', - 8217 => 'quoteright', - 8218 => 'quotesinglbase', - 8220 => 'quotedblleft', - 8221 => 'quotedblright', - 8222 => 'quotedblbase', - 8226 => 'bullet', - 8230 => 'ellipsis', - 8242 => 'uni2032', - 8243 => 'uni2033', - 8249 => 'guilsinglleft', - 8250 => 'guilsinglright', - 8260 => 'fraction', - 8308 => 'four.u', - 8364 => 'Euro', - 8482 => 'trademark', - 8593 => 'arrowup', - 8595 => 'arrowdown', - 8722 => 'minus', - 8725 => 'uni2215', - 65279 => 'uniFEFF', - ), - 'isUnicode' => true, - 'EncodingScheme' => 'FontSpecific', - 'FontName' => 'Source Sans 3 ExtraLight', - 'FullName' => 'Source Sans 3 ExtraLight Regular', - 'Version' => 'Version 3.052;hotconv 1.1.0;makeotfexe 2.6.0', - 'PostScriptName' => 'SourceSans3ExtraLight-Regular', - 'Weight' => 'Medium', - 'ItalicAngle' => '0', - 'IsFixedPitch' => 'false', - 'UnderlineThickness' => '50', - 'UnderlinePosition' => '-50', - 'FontHeightOffset' => '0', - 'Ascender' => '1024', - 'Descender' => '-400', - 'FontBBox' => - array ( - 0 => '-248', - 1 => '-270', - 2 => '946', - 3 => '949', - ), - 'StartCharMetrics' => '325', - 'C' => - array ( - 32 => 200.0, - 33 => 289.0, - 34 => 426.0, - 35 => 497.0, - 36 => 497.0, - 37 => 824.0, - 38 => 609.0, - 39 => 249.0, - 40 => 303.0, - 41 => 303.0, - 42 => 418.0, - 43 => 497.0, - 44 => 249.0, - 45 => 311.0, - 46 => 249.0, - 47 => 350.0, - 48 => 497.0, - 49 => 497.0, - 50 => 497.0, - 51 => 497.0, - 52 => 497.0, - 53 => 497.0, - 54 => 497.0, - 55 => 497.0, - 56 => 497.0, - 57 => 497.0, - 58 => 249.0, - 59 => 249.0, - 60 => 497.0, - 61 => 497.0, - 62 => 497.0, - 63 => 425.0, - 64 => 847.0, - 65 => 543.0, - 66 => 588.0, - 67 => 571.0, - 68 => 615.0, - 69 => 527.0, - 70 => 494.0, - 71 => 617.0, - 72 => 652.0, - 73 => 263.0, - 74 => 479.0, - 75 => 579.0, - 76 => 486.0, - 77 => 727.0, - 78 => 647.0, - 79 => 664.0, - 80 => 566.0, - 81 => 664.0, - 82 => 569.0, - 83 => 534.0, - 84 => 536.0, - 85 => 645.0, - 86 => 515.0, - 87 => 786.0, - 88 => 513.0, - 89 => 476.0, - 90 => 539.0, - 91 => 303.0, - 92 => 350.0, - 93 => 303.0, - 94 => 497.0, - 95 => 500.0, - 96 => 542.0, - 97 => 504.0, - 98 => 553.0, - 99 => 456.0, - 100 => 555.0, - 101 => 496.0, - 102 => 292.0, - 103 => 504.0, - 104 => 544.0, - 105 => 246.0, - 106 => 247.0, - 107 => 495.0, - 108 => 255.0, - 109 => 829.0, - 110 => 547.0, - 111 => 542.0, - 112 => 555.0, - 113 => 555.0, - 114 => 347.0, - 115 => 419.0, - 116 => 338.0, - 117 => 544.0, - 118 => 467.0, - 119 => 719.0, - 120 => 446.0, - 121 => 467.0, - 122 => 425.0, - 123 => 303.0, - 124 => 241.0, - 125 => 303.0, - 126 => 497.0, - 160 => 200.0, - 161 => 289.0, - 162 => 497.0, - 163 => 497.0, - 164 => 497.0, - 165 => 497.0, - 166 => 241.0, - 167 => 497.0, - 168 => 542.0, - 169 => 744.0, - 170 => 345.0, - 171 => 429.0, - 172 => 497.0, - 173 => 311.0, - 174 => 423.0, - 175 => 542.0, - 176 => 331.0, - 177 => 497.0, - 178 => 367.0, - 179 => 367.0, - 180 => 542.0, - 181 => 562.0, - 182 => 560.0, - 183 => 249.0, - 184 => 542.0, - 185 => 367.0, - 186 => 365.0, - 187 => 429.0, - 188 => 781.0, - 189 => 808.0, - 190 => 796.0, - 191 => 425.0, - 192 => 544.0, - 193 => 544.0, - 194 => 544.0, - 195 => 544.0, - 196 => 544.0, - 197 => 544.0, - 198 => 822.0, - 199 => 571.0, - 200 => 527.0, - 201 => 527.0, - 202 => 527.0, - 203 => 527.0, - 204 => 263.0, - 205 => 263.0, - 206 => 263.0, - 207 => 263.0, - 208 => 639.0, - 209 => 647.0, - 210 => 664.0, - 211 => 664.0, - 212 => 664.0, - 213 => 664.0, - 214 => 664.0, - 215 => 497.0, - 216 => 664.0, - 217 => 645.0, - 218 => 645.0, - 219 => 645.0, - 220 => 645.0, - 221 => 476.0, - 222 => 583.0, - 223 => 576.0, - 224 => 504.0, - 225 => 504.0, - 226 => 504.0, - 227 => 504.0, - 228 => 504.0, - 229 => 504.0, - 230 => 778.0, - 231 => 456.0, - 232 => 496.0, - 233 => 496.0, - 234 => 496.0, - 235 => 496.0, - 236 => 246.0, - 237 => 246.0, - 238 => 246.0, - 239 => 246.0, - 240 => 544.0, - 241 => 547.0, - 242 => 542.0, - 243 => 542.0, - 244 => 542.0, - 245 => 542.0, - 246 => 542.0, - 247 => 497.0, - 248 => 542.0, - 249 => 544.0, - 250 => 544.0, - 251 => 544.0, - 252 => 544.0, - 253 => 467.0, - 254 => 555.0, - 255 => 467.0, - 305 => 247.0, - 338 => 847.0, - 339 => 839.0, - 699 => 257.0, - 700 => 257.0, - 710 => 542.0, - 730 => 542.0, - 732 => 542.0, - 768 => 0.0, - 769 => 0.0, - 771 => 0.0, - 772 => 0.0, - 776 => 0.0, - 777 => 0.0, - 803 => 0.0, - 809 => 0.0, - 8201 => 100.0, - 8203 => 0.0, - 8211 => 480.0, - 8212 => 800.0, - 8216 => 249.0, - 8217 => 249.0, - 8218 => 249.0, - 8220 => 426.0, - 8221 => 426.0, - 8222 => 426.0, - 8226 => 304.0, - 8230 => 948.0, - 8242 => 249.0, - 8243 => 426.0, - 8249 => 271.0, - 8250 => 271.0, - 8260 => 86.0, - 8308 => 367.0, - 8364 => 497.0, - 8482 => 637.0, - 8593 => 619.0, - 8595 => 619.0, - 8722 => 497.0, - 8725 => 86.0, - 65279 => 0.0, - ), - 'CIDtoGID_Compressed' => true, - 'CIDtoGID' => 'eJzt0FWrYGUYhuF7OY4zdneM3d1do2K3YidYYHfhgV3ndnd3d/8RBVvs1o3OgQyK4mzdgtcF71es9a7nWzWNhq7vll7rvT7tvG7u0R7r+b7s6u7vqp7ugi7soi7uki7tsi7viq7smq7tu77t+27s1aZrXNM3vhma0MRmbKZmbpZmbbZmb47mbK7mbp7mbb7mb4EWbKEW7vGe7Yl+7JFhhhZp0RZrUou3REu2VEu3TMu2XMu3Qiu2Uiu3Squ2Wqu3Rmu2Vmu3Tk/2TE/107Re/pf739BHvd+7fdBzvTDM1Eu93b1DI/d/eZh5GPqhN3pzmND5vdhDw6y93jvd12d93hfd1Lqt1/pt0IZt1MZt0qZt1uZt0eS2auu2aa+2bbu2b4d2bKe+bud2bbd2b4/2bO9ObZ/2bb/274AO7KAO7pAO7bAO74iO7KiO7pyO7biO74RO7KS+6eRO6/TO6MzO6tzOHoU/8GeOmeYOu3TKKOSA/4hhtmH23zmd+BffnmWkZhylJHMMc4+MCwwLTdkvOkz6G12W+s16udFJBgAAAAAAAAAAAAAAAADAr4YtRmrLqQ4f6MEpq1u7rTtH5tu7o7umnD08Zb7uDzpON4z7zfbu7vmdhz7+m3H/qrf+4f5T+/Bf/t5YemWsA/yThulHavxYpxhTX/0yfjK2IQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4/xgmj3UCxtbPloNd8w==', - '_version_' => 6, -); \ No newline at end of file