commitall
15
hostel/.editorconfig
Normal file
@ -0,0 +1,15 @@
|
||||
# top-most EditorConfig file
|
||||
root = true
|
||||
|
||||
# Unix-style newlines with a newline ending every file
|
||||
[*]
|
||||
end_of_line = lf
|
||||
insert_final_newline = true
|
||||
|
||||
# Matches multiple files with brace expansion notation
|
||||
# Set default charset
|
||||
[*]
|
||||
charset = utf-8
|
||||
|
||||
# Tab indentation (no size specified)
|
||||
indent_style = tab
|
1
hostel/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
application/config/database.php
|
5
hostel/.htaccess
Normal file
@ -0,0 +1,5 @@
|
||||
RewriteEngine On
|
||||
RewriteCond $1 !^(index\.php|assets|images|js|css|uploads|favicon.png)
|
||||
RewriteCond %{REQUEST_FILENAME} !-f
|
||||
RewriteCond %{REQUEST_FILENAME} !-d
|
||||
RewriteRule ^(.*)$ ./index.php/$1 [L]
|
1
hostel/README.md
Normal file
@ -0,0 +1 @@
|
||||
# erisn-classroom-lms
|
5
hostel/application/.htaccess
Normal file
@ -0,0 +1,5 @@
|
||||
RewriteEngine On
|
||||
RewriteCond $1 !^(index\.php|assets|images|js|css|uploads|favicon.png)
|
||||
RewriteCond %{REQUEST_FILENAME} !-f
|
||||
RewriteCond %{REQUEST_FILENAME} !-d
|
||||
RewriteRule ^(.*)$ ./index.php/$1 [L]
|
11
hostel/application/cache/index.html
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>403 Forbidden</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p>Directory access is forbidden.</p>
|
||||
|
||||
</body>
|
||||
</html>
|
135
hostel/application/config/autoload.php
Normal file
@ -0,0 +1,135 @@
|
||||
<?php
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
/*
|
||||
| -------------------------------------------------------------------
|
||||
| AUTO-LOADER
|
||||
| -------------------------------------------------------------------
|
||||
| This file specifies which systems should be loaded by default.
|
||||
|
|
||||
| In order to keep the framework as light-weight as possible only the
|
||||
| absolute minimal resources are loaded by default. For example,
|
||||
| the database is not connected to automatically since no assumption
|
||||
| is made regarding whether you intend to use it. This file lets
|
||||
| you globally define which systems you would like loaded with every
|
||||
| request.
|
||||
|
|
||||
| -------------------------------------------------------------------
|
||||
| Instructions
|
||||
| -------------------------------------------------------------------
|
||||
|
|
||||
| These are the things you can load automatically:
|
||||
|
|
||||
| 1. Packages
|
||||
| 2. Libraries
|
||||
| 3. Drivers
|
||||
| 4. Helper files
|
||||
| 5. Custom config files
|
||||
| 6. Language files
|
||||
| 7. Models
|
||||
|
|
||||
*/
|
||||
|
||||
/*
|
||||
| -------------------------------------------------------------------
|
||||
| Auto-load Packages
|
||||
| -------------------------------------------------------------------
|
||||
| Prototype:
|
||||
|
|
||||
| $autoload['packages'] = array(APPPATH.'third_party', '/usr/local/shared');
|
||||
|
|
||||
*/
|
||||
$autoload['packages'] = array();
|
||||
|
||||
/*
|
||||
| -------------------------------------------------------------------
|
||||
| Auto-load Libraries
|
||||
| -------------------------------------------------------------------
|
||||
| These are the classes located in system/libraries/ or your
|
||||
| application/libraries/ directory, with the addition of the
|
||||
| 'database' library, which is somewhat of a special case.
|
||||
|
|
||||
| Prototype:
|
||||
|
|
||||
| $autoload['libraries'] = array('database', 'email', 'session');
|
||||
|
|
||||
| You can also supply an alternative library name to be assigned
|
||||
| in the controller:
|
||||
|
|
||||
| $autoload['libraries'] = array('user_agent' => 'ua');
|
||||
*/
|
||||
$autoload['libraries'] = array('database','session','encryption','form_validation');
|
||||
|
||||
/*
|
||||
| -------------------------------------------------------------------
|
||||
| Auto-load Drivers
|
||||
| -------------------------------------------------------------------
|
||||
| These classes are located in system/libraries/ or in your
|
||||
| application/libraries/ directory, but are also placed inside their
|
||||
| own subdirectory and they extend the CI_Driver_Library class. They
|
||||
| offer multiple interchangeable driver options.
|
||||
|
|
||||
| Prototype:
|
||||
|
|
||||
| $autoload['drivers'] = array('cache');
|
||||
|
|
||||
| You can also supply an alternative property name to be assigned in
|
||||
| the controller:
|
||||
|
|
||||
| $autoload['drivers'] = array('cache' => 'cch');
|
||||
|
|
||||
*/
|
||||
$autoload['drivers'] = array();
|
||||
|
||||
/*
|
||||
| -------------------------------------------------------------------
|
||||
| Auto-load Helper Files
|
||||
| -------------------------------------------------------------------
|
||||
| Prototype:
|
||||
|
|
||||
| $autoload['helper'] = array('url', 'file');
|
||||
*/
|
||||
$autoload['helper'] = array('url');
|
||||
|
||||
/*
|
||||
| -------------------------------------------------------------------
|
||||
| Auto-load Config files
|
||||
| -------------------------------------------------------------------
|
||||
| Prototype:
|
||||
|
|
||||
| $autoload['config'] = array('config1', 'config2');
|
||||
|
|
||||
| NOTE: This item is intended for use ONLY if you have created custom
|
||||
| config files. Otherwise, leave it blank.
|
||||
|
|
||||
*/
|
||||
$autoload['config'] = array();
|
||||
|
||||
/*
|
||||
| -------------------------------------------------------------------
|
||||
| Auto-load Language files
|
||||
| -------------------------------------------------------------------
|
||||
| Prototype:
|
||||
|
|
||||
| $autoload['language'] = array('lang1', 'lang2');
|
||||
|
|
||||
| NOTE: Do not include the "_lang" part of your file. For example
|
||||
| "codeigniter_lang.php" would be referenced as array('codeigniter');
|
||||
|
|
||||
*/
|
||||
$autoload['language'] = array();
|
||||
|
||||
/*
|
||||
| -------------------------------------------------------------------
|
||||
| Auto-load Models
|
||||
| -------------------------------------------------------------------
|
||||
| Prototype:
|
||||
|
|
||||
| $autoload['model'] = array('first_model', 'second_model');
|
||||
|
|
||||
| You can also supply an alternative model name to be assigned
|
||||
| in the controller:
|
||||
|
|
||||
| $autoload['model'] = array('first_model' => 'first');
|
||||
*/
|
||||
$autoload['model'] = array();
|
531
hostel/application/config/config.php
Normal file
@ -0,0 +1,531 @@
|
||||
<?php
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Base Site URL
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| URL to your CodeIgniter root. Typically this will be your base URL,
|
||||
| WITH a trailing slash:
|
||||
|
|
||||
| http://example.com/
|
||||
|
|
||||
| WARNING: You MUST set this value!
|
||||
|
|
||||
| If it is not set, then CodeIgniter will try guess the protocol and path
|
||||
| your installation, but due to security concerns the hostname will be set
|
||||
| to $_SERVER['SERVER_ADDR'] if available, or localhost otherwise.
|
||||
| The auto-detection mechanism exists only for convenience during
|
||||
| development and MUST NOT be used in production!
|
||||
|
|
||||
| If you need to allow multiple domains, remember that this file is still
|
||||
| a PHP script and you can easily do that on your own.
|
||||
|
|
||||
*/
|
||||
//$config['base_url'] = 'http://localhost/erisn-classroom-lms/';
|
||||
|
||||
/*$root = "https://".$_SERVER['HTTP_HOST'];
|
||||
$root .= str_replace(basename($_SERVER['SCRIPT_NAME']),"",$_SERVER['SCRIPT_NAME']);
|
||||
$config['base_url'] = $root;*/
|
||||
|
||||
$config['base_url'] = ((isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == "on") ? "https" : "http");
|
||||
$config['base_url'] .= "://".$_SERVER['HTTP_HOST'];
|
||||
$config['base_url'] .= str_replace(basename($_SERVER['SCRIPT_NAME']),"",$_SERVER['SCRIPT_NAME']);
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Index File
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Typically this will be your index.php file, unless you've renamed it to
|
||||
| something else. If you are using mod_rewrite to remove the page set this
|
||||
| variable so that it is blank.
|
||||
|
|
||||
*/
|
||||
$config['index_page'] = '';
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| URI PROTOCOL
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This item determines which server global should be used to retrieve the
|
||||
| URI string. The default setting of 'REQUEST_URI' works for most servers.
|
||||
| If your links do not seem to work, try one of the other delicious flavors:
|
||||
|
|
||||
| 'REQUEST_URI' Uses $_SERVER['REQUEST_URI']
|
||||
| 'QUERY_STRING' Uses $_SERVER['QUERY_STRING']
|
||||
| 'PATH_INFO' Uses $_SERVER['PATH_INFO']
|
||||
|
|
||||
| WARNING: If you set this to 'PATH_INFO', URIs will always be URL-decoded!
|
||||
*/
|
||||
$config['uri_protocol'] = 'REQUEST_URI';
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| URL suffix
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This option allows you to add a suffix to all URLs generated by CodeIgniter.
|
||||
| For more information please see the user guide:
|
||||
|
|
||||
| https://codeigniter.com/user_guide/general/urls.html
|
||||
*/
|
||||
$config['url_suffix'] = '';
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Default Language
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This determines which set of language files should be used. Make sure
|
||||
| there is an available translation if you intend to use something other
|
||||
| than english.
|
||||
|
|
||||
*/
|
||||
$config['language'] = 'english';
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Default Character Set
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This determines which character set is used by default in various methods
|
||||
| that require a character set to be provided.
|
||||
|
|
||||
| See http://php.net/htmlspecialchars for a list of supported charsets.
|
||||
|
|
||||
*/
|
||||
$config['charset'] = 'UTF-8';
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Enable/Disable System Hooks
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| If you would like to use the 'hooks' feature you must enable it by
|
||||
| setting this variable to TRUE (boolean). See the user guide for details.
|
||||
|
|
||||
*/
|
||||
$config['enable_hooks'] = FALSE;
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Class Extension Prefix
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This item allows you to set the filename/classname prefix when extending
|
||||
| native libraries. For more information please see the user guide:
|
||||
|
|
||||
| https://codeigniter.com/user_guide/general/core_classes.html
|
||||
| https://codeigniter.com/user_guide/general/creating_libraries.html
|
||||
|
|
||||
*/
|
||||
$config['subclass_prefix'] = 'MY_';
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Composer auto-loading
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Enabling this setting will tell CodeIgniter to look for a Composer
|
||||
| package auto-loader script in application/vendor/autoload.php.
|
||||
|
|
||||
| $config['composer_autoload'] = TRUE;
|
||||
|
|
||||
| Or if you have your vendor/ directory located somewhere else, you
|
||||
| can opt to set a specific path as well:
|
||||
|
|
||||
| $config['composer_autoload'] = '/path/to/vendor/autoload.php';
|
||||
|
|
||||
| For more information about Composer, please visit http://getcomposer.org/
|
||||
|
|
||||
| Note: This will NOT disable or override the CodeIgniter-specific
|
||||
| autoloading (application/config/autoload.php)
|
||||
*/
|
||||
$config['composer_autoload'] = FALSE;
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Allowed URL Characters
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This lets you specify which characters are permitted within your URLs.
|
||||
| When someone tries to submit a URL with disallowed characters they will
|
||||
| get a warning message.
|
||||
|
|
||||
| As a security measure you are STRONGLY encouraged to restrict URLs to
|
||||
| as few characters as possible. By default only these are allowed: a-z 0-9~%.:_-
|
||||
|
|
||||
| Leave blank to allow all characters -- but only if you are insane.
|
||||
|
|
||||
| The configured value is actually a regular expression character group
|
||||
| and it will be executed as: ! preg_match('/^[<permitted_uri_chars>]+$/i
|
||||
|
|
||||
| DO NOT CHANGE THIS UNLESS YOU FULLY UNDERSTAND THE REPERCUSSIONS!!
|
||||
|
|
||||
*/
|
||||
$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-';
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Enable Query Strings
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| By default CodeIgniter uses search-engine friendly segment based URLs:
|
||||
| example.com/who/what/where/
|
||||
|
|
||||
| You can optionally enable standard query string based URLs:
|
||||
| example.com?who=me&what=something&where=here
|
||||
|
|
||||
| Options are: TRUE or FALSE (boolean)
|
||||
|
|
||||
| The other items let you set the query string 'words' that will
|
||||
| invoke your controllers and its functions:
|
||||
| example.com/index.php?c=controller&m=function
|
||||
|
|
||||
| Please note that some of the helpers won't work as expected when
|
||||
| this feature is enabled, since CodeIgniter is designed primarily to
|
||||
| use segment based URLs.
|
||||
|
|
||||
*/
|
||||
$config['enable_query_strings'] = FALSE;
|
||||
$config['controller_trigger'] = 'c';
|
||||
$config['function_trigger'] = 'm';
|
||||
$config['directory_trigger'] = 'd';
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Allow $_GET array
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| By default CodeIgniter enables access to the $_GET array. If for some
|
||||
| reason you would like to disable it, set 'allow_get_array' to FALSE.
|
||||
|
|
||||
| WARNING: This feature is DEPRECATED and currently available only
|
||||
| for backwards compatibility purposes!
|
||||
|
|
||||
*/
|
||||
$config['allow_get_array'] = TRUE;
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Error Logging Threshold
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| You can enable error logging by setting a threshold over zero. The
|
||||
| threshold determines what gets logged. Threshold options are:
|
||||
|
|
||||
| 0 = Disables logging, Error logging TURNED OFF
|
||||
| 1 = Error Messages (including PHP errors)
|
||||
| 2 = Debug Messages
|
||||
| 3 = Informational Messages
|
||||
| 4 = All Messages
|
||||
|
|
||||
| You can also pass an array with threshold levels to show individual error types
|
||||
|
|
||||
| array(2) = Debug Messages, without Error Messages
|
||||
|
|
||||
| For a live site you'll usually only enable Errors (1) to be logged otherwise
|
||||
| your log files will fill up very fast.
|
||||
|
|
||||
*/
|
||||
$config['log_threshold'] = 0;
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Error Logging Directory Path
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Leave this BLANK unless you would like to set something other than the default
|
||||
| application/logs/ directory. Use a full server path with trailing slash.
|
||||
|
|
||||
*/
|
||||
$config['log_path'] = '';
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Log File Extension
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The default filename extension for log files. The default 'php' allows for
|
||||
| protecting the log files via basic scripting, when they are to be stored
|
||||
| under a publicly accessible directory.
|
||||
|
|
||||
| Note: Leaving it blank will default to 'php'.
|
||||
|
|
||||
*/
|
||||
$config['log_file_extension'] = '';
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Log File Permissions
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The file system permissions to be applied on newly created log files.
|
||||
|
|
||||
| IMPORTANT: This MUST be an integer (no quotes) and you MUST use octal
|
||||
| integer notation (i.e. 0700, 0644, etc.)
|
||||
*/
|
||||
$config['log_file_permissions'] = 0644;
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Date Format for Logs
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Each item that is logged has an associated date. You can use PHP date
|
||||
| codes to set your own date formatting
|
||||
|
|
||||
*/
|
||||
$config['log_date_format'] = 'Y-m-d H:i:s';
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Error Views Directory Path
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Leave this BLANK unless you would like to set something other than the default
|
||||
| application/views/errors/ directory. Use a full server path with trailing slash.
|
||||
|
|
||||
*/
|
||||
$config['error_views_path'] = '';
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Cache Directory Path
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Leave this BLANK unless you would like to set something other than the default
|
||||
| application/cache/ directory. Use a full server path with trailing slash.
|
||||
|
|
||||
*/
|
||||
$config['cache_path'] = '';
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Cache Include Query String
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Whether to take the URL query string into consideration when generating
|
||||
| output cache files. Valid options are:
|
||||
|
|
||||
| FALSE = Disabled
|
||||
| TRUE = Enabled, take all query parameters into account.
|
||||
| Please be aware that this may result in numerous cache
|
||||
| files generated for the same page over and over again.
|
||||
| array('q') = Enabled, but only take into account the specified list
|
||||
| of query parameters.
|
||||
|
|
||||
*/
|
||||
$config['cache_query_string'] = FALSE;
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Encryption Key
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| If you use the Encryption class, you must set an encryption key.
|
||||
| See the user guide for more info.
|
||||
|
|
||||
| https://codeigniter.com/user_guide/libraries/encryption.html
|
||||
|
|
||||
*/
|
||||
$config['encryption_key'] = '';
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Variables
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| 'sess_driver'
|
||||
|
|
||||
| The storage driver to use: files, database, redis, memcached
|
||||
|
|
||||
| 'sess_cookie_name'
|
||||
|
|
||||
| The session cookie name, must contain only [0-9a-z_-] characters
|
||||
|
|
||||
| 'sess_expiration'
|
||||
|
|
||||
| The number of SECONDS you want the session to last.
|
||||
| Setting to 0 (zero) means expire when the browser is closed.
|
||||
|
|
||||
| 'sess_save_path'
|
||||
|
|
||||
| The location to save sessions to, driver dependent.
|
||||
|
|
||||
| For the 'files' driver, it's a path to a writable directory.
|
||||
| WARNING: Only absolute paths are supported!
|
||||
|
|
||||
| For the 'database' driver, it's a table name.
|
||||
| Please read up the manual for the format with other session drivers.
|
||||
|
|
||||
| IMPORTANT: You are REQUIRED to set a valid save path!
|
||||
|
|
||||
| 'sess_match_ip'
|
||||
|
|
||||
| Whether to match the user's IP address when reading the session data.
|
||||
|
|
||||
| WARNING: If you're using the database driver, don't forget to update
|
||||
| your session table's PRIMARY KEY when changing this setting.
|
||||
|
|
||||
| 'sess_time_to_update'
|
||||
|
|
||||
| How many seconds between CI regenerating the session ID.
|
||||
|
|
||||
| 'sess_regenerate_destroy'
|
||||
|
|
||||
| Whether to destroy session data associated with the old session ID
|
||||
| when auto-regenerating the session ID. When set to FALSE, the data
|
||||
| will be later deleted by the garbage collector.
|
||||
|
|
||||
| Other session cookie settings are shared with the rest of the application,
|
||||
| except for 'cookie_prefix' and 'cookie_httponly', which are ignored here.
|
||||
|
|
||||
*/
|
||||
$config['sess_driver'] = 'files';
|
||||
$config['sess_cookie_name'] = 'ci_session';
|
||||
$config['sess_expiration'] = 7200;
|
||||
$config['sess_save_path'] = NULL;
|
||||
$config['sess_match_ip'] = FALSE;
|
||||
$config['sess_time_to_update'] = 300;
|
||||
$config['sess_regenerate_destroy'] = FALSE;
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Cookie Related Variables
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| 'cookie_prefix' = Set a cookie name prefix if you need to avoid collisions
|
||||
| 'cookie_domain' = Set to .your-domain.com for site-wide cookies
|
||||
| 'cookie_path' = Typically will be a forward slash
|
||||
| 'cookie_secure' = Cookie will only be set if a secure HTTPS connection exists.
|
||||
| 'cookie_httponly' = Cookie will only be accessible via HTTP(S) (no javascript)
|
||||
|
|
||||
| Note: These settings (with the exception of 'cookie_prefix' and
|
||||
| 'cookie_httponly') will also affect sessions.
|
||||
|
|
||||
*/
|
||||
$config['cookie_prefix'] = '';
|
||||
$config['cookie_domain'] = '';
|
||||
$config['cookie_path'] = '/';
|
||||
$config['cookie_secure'] = FALSE;
|
||||
$config['cookie_httponly'] = FALSE;
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Standardize newlines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Determines whether to standardize newline characters in input data,
|
||||
| meaning to replace \r\n, \r, \n occurrences with the PHP_EOL value.
|
||||
|
|
||||
| WARNING: This feature is DEPRECATED and currently available only
|
||||
| for backwards compatibility purposes!
|
||||
|
|
||||
*/
|
||||
$config['standardize_newlines'] = FALSE;
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Global XSS Filtering
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Determines whether the XSS filter is always active when GET, POST or
|
||||
| COOKIE data is encountered
|
||||
|
|
||||
| WARNING: This feature is DEPRECATED and currently available only
|
||||
| for backwards compatibility purposes!
|
||||
|
|
||||
*/
|
||||
$config['global_xss_filtering'] = FALSE;
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Cross Site Request Forgery
|
||||
|--------------------------------------------------------------------------
|
||||
| Enables a CSRF cookie token to be set. When set to TRUE, token will be
|
||||
| checked on a submitted form. If you are accepting user data, it is strongly
|
||||
| recommended CSRF protection be enabled.
|
||||
|
|
||||
| 'csrf_token_name' = The token name
|
||||
| 'csrf_cookie_name' = The cookie name
|
||||
| 'csrf_expire' = The number in seconds the token should expire.
|
||||
| 'csrf_regenerate' = Regenerate token on every submission
|
||||
| 'csrf_exclude_uris' = Array of URIs which ignore CSRF checks
|
||||
*/
|
||||
$config['csrf_protection'] = FALSE;
|
||||
$config['csrf_token_name'] = 'csrf_test_name';
|
||||
$config['csrf_cookie_name'] = 'csrf_cookie_name';
|
||||
$config['csrf_expire'] = 7200;
|
||||
$config['csrf_regenerate'] = TRUE;
|
||||
$config['csrf_exclude_uris'] = array();
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Output Compression
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Enables Gzip output compression for faster page loads. When enabled,
|
||||
| the output class will test whether your server supports Gzip.
|
||||
| Even if it does, however, not all browsers support compression
|
||||
| so enable only if you are reasonably sure your visitors can handle it.
|
||||
|
|
||||
| Only used if zlib.output_compression is turned off in your php.ini.
|
||||
| Please do not use it together with httpd-level output compression.
|
||||
|
|
||||
| VERY IMPORTANT: If you are getting a blank page when compression is enabled it
|
||||
| means you are prematurely outputting something to your browser. It could
|
||||
| even be a line of whitespace at the end of one of your scripts. For
|
||||
| compression to work, nothing can be sent before the output buffer is called
|
||||
| by the output class. Do not 'echo' any values with compression enabled.
|
||||
|
|
||||
*/
|
||||
$config['compress_output'] = FALSE;
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Master Time Reference
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Options are 'local' or any PHP supported timezone. This preference tells
|
||||
| the system whether to use your server's local time as the master 'now'
|
||||
| reference, or convert it to the configured one timezone. See the 'date
|
||||
| helper' page of the user guide for information regarding date handling.
|
||||
|
|
||||
*/
|
||||
$config['time_reference'] = 'local';
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Rewrite PHP Short Tags
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| If your PHP installation does not have short tag support enabled CI
|
||||
| can rewrite the tags on-the-fly, enabling you to utilize that syntax
|
||||
| in your view files. Options are TRUE or FALSE (boolean)
|
||||
|
|
||||
| Note: You need to have eval() enabled for this to work.
|
||||
|
|
||||
*/
|
||||
$config['rewrite_short_tags'] = FALSE;
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Reverse Proxy IPs
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| If your server is behind a reverse proxy, you must whitelist the proxy
|
||||
| IP addresses from which CodeIgniter should trust headers such as
|
||||
| HTTP_X_FORWARDED_FOR and HTTP_CLIENT_IP in order to properly identify
|
||||
| the visitor's IP address.
|
||||
|
|
||||
| You can use both an array or a comma-separated list of proxy addresses,
|
||||
| as well as specifying whole subnets. Here are a few examples:
|
||||
|
|
||||
| Comma-separated: '10.0.1.200,192.168.5.0/24'
|
||||
| Array: array('10.0.1.200', '192.168.5.0/24')
|
||||
*/
|
||||
$config['proxy_ips'] = '';
|
94
hostel/application/config/constants.php
Normal file
@ -0,0 +1,94 @@
|
||||
<?php
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Display Debug backtrace
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| If set to TRUE, a backtrace will be displayed along with php errors. If
|
||||
| error_reporting is disabled, the backtrace will not display, regardless
|
||||
| of this setting
|
||||
|
|
||||
*/
|
||||
defined('SHOW_DEBUG_BACKTRACE') OR define('SHOW_DEBUG_BACKTRACE', TRUE);
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| File and Directory Modes
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| These prefs are used when checking and setting modes when working
|
||||
| with the file system. The defaults are fine on servers with proper
|
||||
| security, but you may wish (or even need) to change the values in
|
||||
| certain environments (Apache running a separate process for each
|
||||
| user, PHP under CGI with Apache suEXEC, etc.). Octal values should
|
||||
| always be used to set the mode correctly.
|
||||
|
|
||||
*/
|
||||
defined('FILE_READ_MODE') OR define('FILE_READ_MODE', 0644);
|
||||
defined('FILE_WRITE_MODE') OR define('FILE_WRITE_MODE', 0666);
|
||||
defined('DIR_READ_MODE') OR define('DIR_READ_MODE', 0755);
|
||||
defined('DIR_WRITE_MODE') OR define('DIR_WRITE_MODE', 0755);
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| File Stream Modes
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| These modes are used when working with fopen()/popen()
|
||||
|
|
||||
*/
|
||||
defined('FOPEN_READ') OR define('FOPEN_READ', 'rb');
|
||||
defined('FOPEN_READ_WRITE') OR define('FOPEN_READ_WRITE', 'r+b');
|
||||
defined('FOPEN_WRITE_CREATE_DESTRUCTIVE') OR define('FOPEN_WRITE_CREATE_DESTRUCTIVE', 'wb'); // truncates existing file data, use with care
|
||||
defined('FOPEN_READ_WRITE_CREATE_DESTRUCTIVE') OR define('FOPEN_READ_WRITE_CREATE_DESTRUCTIVE', 'w+b'); // truncates existing file data, use with care
|
||||
defined('FOPEN_WRITE_CREATE') OR define('FOPEN_WRITE_CREATE', 'ab');
|
||||
defined('FOPEN_READ_WRITE_CREATE') OR define('FOPEN_READ_WRITE_CREATE', 'a+b');
|
||||
defined('FOPEN_WRITE_CREATE_STRICT') OR define('FOPEN_WRITE_CREATE_STRICT', 'xb');
|
||||
defined('FOPEN_READ_WRITE_CREATE_STRICT') OR define('FOPEN_READ_WRITE_CREATE_STRICT', 'x+b');
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Exit Status Codes
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Used to indicate the conditions under which the script is exit()ing.
|
||||
| While there is no universal standard for error codes, there are some
|
||||
| broad conventions. Three such conventions are mentioned below, for
|
||||
| those who wish to make use of them. The CodeIgniter defaults were
|
||||
| chosen for the least overlap with these conventions, while still
|
||||
| leaving room for others to be defined in future versions and user
|
||||
| applications.
|
||||
|
|
||||
| The three main conventions used for determining exit status codes
|
||||
| are as follows:
|
||||
|
|
||||
| Standard C/C++ Library (stdlibc):
|
||||
| http://www.gnu.org/software/libc/manual/html_node/Exit-Status.html
|
||||
| (This link also contains other GNU-specific conventions)
|
||||
| BSD sysexits.h:
|
||||
| http://www.gsp.com/cgi-bin/man.cgi?section=3&topic=sysexits
|
||||
| Bash scripting:
|
||||
| http://tldp.org/LDP/abs/html/exitcodes.html
|
||||
|
|
||||
*/
|
||||
defined('EXIT_SUCCESS') OR define('EXIT_SUCCESS', 0); // no errors
|
||||
defined('EXIT_ERROR') OR define('EXIT_ERROR', 1); // generic error
|
||||
defined('EXIT_CONFIG') OR define('EXIT_CONFIG', 3); // configuration error
|
||||
defined('EXIT_UNKNOWN_FILE') OR define('EXIT_UNKNOWN_FILE', 4); // file not found
|
||||
defined('EXIT_UNKNOWN_CLASS') OR define('EXIT_UNKNOWN_CLASS', 5); // unknown class
|
||||
defined('EXIT_UNKNOWN_METHOD') OR define('EXIT_UNKNOWN_METHOD', 6); // unknown class member
|
||||
defined('EXIT_USER_INPUT') OR define('EXIT_USER_INPUT', 7); // invalid user input
|
||||
defined('EXIT_DATABASE') OR define('EXIT_DATABASE', 8); // database error
|
||||
defined('EXIT__AUTO_MIN') OR define('EXIT__AUTO_MIN', 9); // lowest automatically-assigned error code
|
||||
defined('EXIT__AUTO_MAX') OR define('EXIT__AUTO_MAX', 125); // highest automatically-assigned error code
|
||||
|
||||
define('THE_ADD_SUCCESS_MSG', "The %s has been added successfully");
|
||||
define('THE_UPDATE_SUCCESS_MSG', "The %s has been updated successfully");
|
||||
define('THE_DELETE_ALERT_MSG', "Are you sure, you want to delete this %s");
|
||||
define('THE_DELETE_SUCCESS_MSG', "The %s has been deleted successfully");
|
||||
define('THE_DELETE_ERROR_MSG', "Oops.. Something went wrong while updating the %s");
|
||||
define('THE_ADD_ERROR_MSG', "Oops.. Something went wrong while adding the %s");
|
||||
define('THE_UPDATE_ERROR_MSG', "Oops.. Something went wrong while updating the %s");
|
||||
define('STUDENT_IMAGE_URL', 'https://dev.ezydemo.com/assets_student/application/');
|
24
hostel/application/config/doctypes.php
Normal file
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$_doctypes = array(
|
||||
'xhtml11' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">',
|
||||
'xhtml1-strict' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">',
|
||||
'xhtml1-trans' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">',
|
||||
'xhtml1-frame' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">',
|
||||
'xhtml-basic11' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML Basic 1.1//EN" "http://www.w3.org/TR/xhtml-basic/xhtml-basic11.dtd">',
|
||||
'html5' => '<!DOCTYPE html>',
|
||||
'html4-strict' => '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">',
|
||||
'html4-trans' => '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">',
|
||||
'html4-frame' => '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">',
|
||||
'mathml1' => '<!DOCTYPE math SYSTEM "http://www.w3.org/Math/DTD/mathml1/mathml.dtd">',
|
||||
'mathml2' => '<!DOCTYPE math PUBLIC "-//W3C//DTD MathML 2.0//EN" "http://www.w3.org/Math/DTD/mathml2/mathml2.dtd">',
|
||||
'svg10' => '<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">',
|
||||
'svg11' => '<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">',
|
||||
'svg11-basic' => '<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Basic//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-basic.dtd">',
|
||||
'svg11-tiny' => '<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">',
|
||||
'xhtml-math-svg-xh' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN" "http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">',
|
||||
'xhtml-math-svg-sh' => '<!DOCTYPE svg:svg PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN" "http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">',
|
||||
'xhtml-rdfa-1' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">',
|
||||
'xhtml-rdfa-2' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.1//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-2.dtd">'
|
||||
);
|
114
hostel/application/config/foreign_chars.php
Normal file
@ -0,0 +1,114 @@
|
||||
<?php
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
/*
|
||||
| -------------------------------------------------------------------
|
||||
| Foreign Characters
|
||||
| -------------------------------------------------------------------
|
||||
| This file contains an array of foreign characters for transliteration
|
||||
| conversion used by the Text helper
|
||||
|
|
||||
*/
|
||||
$foreign_characters = array(
|
||||
'/ä|æ|ǽ/' => 'ae',
|
||||
'/ö|œ/' => 'oe',
|
||||
'/ü/' => 'ue',
|
||||
'/Ä/' => 'Ae',
|
||||
'/Ü/' => 'Ue',
|
||||
'/Ö/' => 'Oe',
|
||||
'/À|Á|Â|Ã|Ä|Å|Ǻ|Ā|Ă|Ą|Ǎ|Α|Ά|Ả|Ạ|Ầ|Ẫ|Ẩ|Ậ|Ằ|Ắ|Ẵ|Ẳ|Ặ|А/' => 'A',
|
||||
'/à|á|â|ã|å|ǻ|ā|ă|ą|ǎ|ª|α|ά|ả|ạ|ầ|ấ|ẫ|ẩ|ậ|ằ|ắ|ẵ|ẳ|ặ|а/' => 'a',
|
||||
'/Б/' => 'B',
|
||||
'/б/' => 'b',
|
||||
'/Ç|Ć|Ĉ|Ċ|Č/' => 'C',
|
||||
'/ç|ć|ĉ|ċ|č/' => 'c',
|
||||
'/Д|Δ/' => 'D',
|
||||
'/д|δ/' => 'd',
|
||||
'/Ð|Ď|Đ/' => 'Dj',
|
||||
'/ð|ď|đ/' => 'dj',
|
||||
'/È|É|Ê|Ë|Ē|Ĕ|Ė|Ę|Ě|Ε|Έ|Ẽ|Ẻ|Ẹ|Ề|Ế|Ễ|Ể|Ệ|Е|Э/' => 'E',
|
||||
'/è|é|ê|ë|ē|ĕ|ė|ę|ě|έ|ε|ẽ|ẻ|ẹ|ề|ế|ễ|ể|ệ|е|э/' => 'e',
|
||||
'/Ф/' => 'F',
|
||||
'/ф/' => 'f',
|
||||
'/Ĝ|Ğ|Ġ|Ģ|Γ|Г|Ґ/' => 'G',
|
||||
'/ĝ|ğ|ġ|ģ|γ|г|ґ/' => 'g',
|
||||
'/Ĥ|Ħ/' => 'H',
|
||||
'/ĥ|ħ/' => 'h',
|
||||
'/Ì|Í|Î|Ï|Ĩ|Ī|Ĭ|Ǐ|Į|İ|Η|Ή|Ί|Ι|Ϊ|Ỉ|Ị|И|Ы/' => 'I',
|
||||
'/ì|í|î|ï|ĩ|ī|ĭ|ǐ|į|ı|η|ή|ί|ι|ϊ|ỉ|ị|и|ы|ї/' => 'i',
|
||||
'/Ĵ/' => 'J',
|
||||
'/ĵ/' => 'j',
|
||||
'/Θ/' => 'TH',
|
||||
'/θ/' => 'th',
|
||||
'/Ķ|Κ|К/' => 'K',
|
||||
'/ķ|κ|к/' => 'k',
|
||||
'/Ĺ|Ļ|Ľ|Ŀ|Ł|Λ|Л/' => 'L',
|
||||
'/ĺ|ļ|ľ|ŀ|ł|λ|л/' => 'l',
|
||||
'/М/' => 'M',
|
||||
'/м/' => 'm',
|
||||
'/Ñ|Ń|Ņ|Ň|Ν|Н/' => 'N',
|
||||
'/ñ|ń|ņ|ň|ʼn|ν|н/' => 'n',
|
||||
'/Ò|Ó|Ô|Õ|Ō|Ŏ|Ǒ|Ő|Ơ|Ø|Ǿ|Ο|Ό|Ω|Ώ|Ỏ|Ọ|Ồ|Ố|Ỗ|Ổ|Ộ|Ờ|Ớ|Ỡ|Ở|Ợ|О/' => 'O',
|
||||
'/ò|ó|ô|õ|ō|ŏ|ǒ|ő|ơ|ø|ǿ|º|ο|ό|ω|ώ|ỏ|ọ|ồ|ố|ỗ|ổ|ộ|ờ|ớ|ỡ|ở|ợ|о/' => 'o',
|
||||
'/П/' => 'P',
|
||||
'/п/' => 'p',
|
||||
'/Ŕ|Ŗ|Ř|Ρ|Р/' => 'R',
|
||||
'/ŕ|ŗ|ř|ρ|р/' => 'r',
|
||||
'/Ś|Ŝ|Ş|Ș|Š|Σ|С/' => 'S',
|
||||
'/ś|ŝ|ş|ș|š|ſ|σ|ς|с/' => 's',
|
||||
'/Ț|Ţ|Ť|Ŧ|Τ|Т/' => 'T',
|
||||
'/ț|ţ|ť|ŧ|τ|т/' => 't',
|
||||
'/Þ|þ/' => 'th',
|
||||
'/Ù|Ú|Û|Ũ|Ū|Ŭ|Ů|Ű|Ų|Ư|Ǔ|Ǖ|Ǘ|Ǚ|Ǜ|Ũ|Ủ|Ụ|Ừ|Ứ|Ữ|Ử|Ự|У/' => 'U',
|
||||
'/ù|ú|û|ũ|ū|ŭ|ů|ű|ų|ư|ǔ|ǖ|ǘ|ǚ|ǜ|υ|ύ|ϋ|ủ|ụ|ừ|ứ|ữ|ử|ự|у/' => 'u',
|
||||
'/Ƴ|Ɏ|Ỵ|Ẏ|Ӳ|Ӯ|Ў|Ý|Ÿ|Ŷ|Υ|Ύ|Ϋ|Ỳ|Ỹ|Ỷ|Ỵ|Й/' => 'Y',
|
||||
'/ẙ|ʏ|ƴ|ɏ|ỵ|ẏ|ӳ|ӯ|ў|ý|ÿ|ŷ|ỳ|ỹ|ỷ|ỵ|й/' => 'y',
|
||||
'/В/' => 'V',
|
||||
'/в/' => 'v',
|
||||
'/Ŵ/' => 'W',
|
||||
'/ŵ/' => 'w',
|
||||
'/Φ/' => 'F',
|
||||
'/φ/' => 'f',
|
||||
'/Χ/' => 'CH',
|
||||
'/χ/' => 'ch',
|
||||
'/Ź|Ż|Ž|Ζ|З/' => 'Z',
|
||||
'/ź|ż|ž|ζ|з/' => 'z',
|
||||
'/Æ|Ǽ/' => 'AE',
|
||||
'/ß/' => 'ss',
|
||||
'/IJ/' => 'IJ',
|
||||
'/ij/' => 'ij',
|
||||
'/Œ/' => 'OE',
|
||||
'/ƒ/' => 'f',
|
||||
'/Ξ/' => 'KS',
|
||||
'/ξ/' => 'ks',
|
||||
'/Π/' => 'P',
|
||||
'/π/' => 'p',
|
||||
'/Β/' => 'V',
|
||||
'/β/' => 'v',
|
||||
'/Μ/' => 'M',
|
||||
'/μ/' => 'm',
|
||||
'/Ψ/' => 'PS',
|
||||
'/ψ/' => 'ps',
|
||||
'/Ё/' => 'Yo',
|
||||
'/ё/' => 'yo',
|
||||
'/Є/' => 'Ye',
|
||||
'/є/' => 'ye',
|
||||
'/Ї/' => 'Yi',
|
||||
'/Ж/' => 'Zh',
|
||||
'/ж/' => 'zh',
|
||||
'/Х/' => 'Kh',
|
||||
'/х/' => 'kh',
|
||||
'/Ц/' => 'Ts',
|
||||
'/ц/' => 'ts',
|
||||
'/Ч/' => 'Ch',
|
||||
'/ч/' => 'ch',
|
||||
'/Ш/' => 'Sh',
|
||||
'/ш/' => 'sh',
|
||||
'/Щ/' => 'Shch',
|
||||
'/щ/' => 'shch',
|
||||
'/Ъ|ъ|Ь|ь/' => '',
|
||||
'/Ю/' => 'Yu',
|
||||
'/ю/' => 'yu',
|
||||
'/Я/' => 'Ya',
|
||||
'/я/' => 'ya'
|
||||
);
|
13
hostel/application/config/hooks.php
Normal file
@ -0,0 +1,13 @@
|
||||
<?php
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
/*
|
||||
| -------------------------------------------------------------------------
|
||||
| Hooks
|
||||
| -------------------------------------------------------------------------
|
||||
| This file lets you define "hooks" to extend CI without hacking the core
|
||||
| files. Please see the user guide for info:
|
||||
|
|
||||
| https://codeigniter.com/user_guide/general/hooks.html
|
||||
|
|
||||
*/
|
11
hostel/application/config/index.html
Normal file
@ -0,0 +1,11 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>403 Forbidden</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p>Directory access is forbidden.</p>
|
||||
|
||||
</body>
|
||||
</html>
|
19
hostel/application/config/memcached.php
Normal file
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
/*
|
||||
| -------------------------------------------------------------------------
|
||||
| Memcached settings
|
||||
| -------------------------------------------------------------------------
|
||||
| Your Memcached servers can be specified below.
|
||||
|
|
||||
| See: https://codeigniter.com/user_guide/libraries/caching.html#memcached
|
||||
|
|
||||
*/
|
||||
$config = array(
|
||||
'default' => array(
|
||||
'hostname' => '127.0.0.1',
|
||||
'port' => '11211',
|
||||
'weight' => '1',
|
||||
),
|
||||
);
|
84
hostel/application/config/migration.php
Normal file
@ -0,0 +1,84 @@
|
||||
<?php
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Enable/Disable Migrations
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Migrations are disabled by default for security reasons.
|
||||
| You should enable migrations whenever you intend to do a schema migration
|
||||
| and disable it back when you're done.
|
||||
|
|
||||
*/
|
||||
$config['migration_enabled'] = FALSE;
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Migration Type
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Migration file names may be based on a sequential identifier or on
|
||||
| a timestamp. Options are:
|
||||
|
|
||||
| 'sequential' = Sequential migration naming (001_add_blog.php)
|
||||
| 'timestamp' = Timestamp migration naming (20121031104401_add_blog.php)
|
||||
| Use timestamp format YYYYMMDDHHIISS.
|
||||
|
|
||||
| Note: If this configuration value is missing the Migration library
|
||||
| defaults to 'sequential' for backward compatibility with CI2.
|
||||
|
|
||||
*/
|
||||
$config['migration_type'] = 'timestamp';
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Migrations table
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This is the name of the table that will store the current migrations state.
|
||||
| When migrations runs it will store in a database table which migration
|
||||
| level the system is at. It then compares the migration level in this
|
||||
| table to the $config['migration_version'] if they are not the same it
|
||||
| will migrate up. This must be set.
|
||||
|
|
||||
*/
|
||||
$config['migration_table'] = 'migrations';
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Auto Migrate To Latest
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| If this is set to TRUE when you load the migrations class and have
|
||||
| $config['migration_enabled'] set to TRUE the system will auto migrate
|
||||
| to your latest migration (whatever $config['migration_version'] is
|
||||
| set to). This way you do not have to call migrations anywhere else
|
||||
| in your code to have the latest migration.
|
||||
|
|
||||
*/
|
||||
$config['migration_auto_latest'] = FALSE;
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Migrations version
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This is used to set migration version that the file system should be on.
|
||||
| If you run $this->migration->current() this is the version that schema will
|
||||
| be upgraded / downgraded to.
|
||||
|
|
||||
*/
|
||||
$config['migration_version'] = 0;
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Migrations Path
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Path to your migrations folder.
|
||||
| Typically, it will be within your application path.
|
||||
| Also, writing permission is required within the migrations path.
|
||||
|
|
||||
*/
|
||||
$config['migration_path'] = APPPATH.'migrations/';
|
184
hostel/application/config/mimes.php
Normal file
@ -0,0 +1,184 @@
|
||||
<?php
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
/*
|
||||
| -------------------------------------------------------------------
|
||||
| MIME TYPES
|
||||
| -------------------------------------------------------------------
|
||||
| This file contains an array of mime types. It is used by the
|
||||
| Upload class to help identify allowed file types.
|
||||
|
|
||||
*/
|
||||
return array(
|
||||
'hqx' => array('application/mac-binhex40', 'application/mac-binhex', 'application/x-binhex40', 'application/x-mac-binhex40'),
|
||||
'cpt' => 'application/mac-compactpro',
|
||||
'csv' => array('text/x-comma-separated-values', 'text/comma-separated-values', 'application/octet-stream', 'application/vnd.ms-excel', 'application/x-csv', 'text/x-csv', 'text/csv', 'application/csv', 'application/excel', 'application/vnd.msexcel', 'text/plain'),
|
||||
'bin' => array('application/macbinary', 'application/mac-binary', 'application/octet-stream', 'application/x-binary', 'application/x-macbinary'),
|
||||
'dms' => 'application/octet-stream',
|
||||
'lha' => 'application/octet-stream',
|
||||
'lzh' => 'application/octet-stream',
|
||||
'exe' => array('application/octet-stream', 'application/x-msdownload'),
|
||||
'class' => 'application/octet-stream',
|
||||
'psd' => array('application/x-photoshop', 'image/vnd.adobe.photoshop'),
|
||||
'so' => 'application/octet-stream',
|
||||
'sea' => 'application/octet-stream',
|
||||
'dll' => 'application/octet-stream',
|
||||
'oda' => 'application/oda',
|
||||
'pdf' => array('application/pdf', 'application/force-download', 'application/x-download', 'binary/octet-stream'),
|
||||
'ai' => array('application/pdf', 'application/postscript'),
|
||||
'eps' => 'application/postscript',
|
||||
'ps' => 'application/postscript',
|
||||
'smi' => 'application/smil',
|
||||
'smil' => 'application/smil',
|
||||
'mif' => 'application/vnd.mif',
|
||||
'xls' => array('application/vnd.ms-excel', 'application/msexcel', 'application/x-msexcel', 'application/x-ms-excel', 'application/x-excel', 'application/x-dos_ms_excel', 'application/xls', 'application/x-xls', 'application/excel', 'application/download', 'application/vnd.ms-office', 'application/msword'),
|
||||
'ppt' => array('application/powerpoint', 'application/vnd.ms-powerpoint', 'application/vnd.ms-office', 'application/msword'),
|
||||
'pptx' => array('application/vnd.openxmlformats-officedocument.presentationml.presentation', 'application/x-zip', 'application/zip'),
|
||||
'wbxml' => 'application/wbxml',
|
||||
'wmlc' => 'application/wmlc',
|
||||
'dcr' => 'application/x-director',
|
||||
'dir' => 'application/x-director',
|
||||
'dxr' => 'application/x-director',
|
||||
'dvi' => 'application/x-dvi',
|
||||
'gtar' => 'application/x-gtar',
|
||||
'gz' => 'application/x-gzip',
|
||||
'gzip' => 'application/x-gzip',
|
||||
'php' => array('application/x-httpd-php', 'application/php', 'application/x-php', 'text/php', 'text/x-php', 'application/x-httpd-php-source'),
|
||||
'php4' => 'application/x-httpd-php',
|
||||
'php3' => 'application/x-httpd-php',
|
||||
'phtml' => 'application/x-httpd-php',
|
||||
'phps' => 'application/x-httpd-php-source',
|
||||
'js' => array('application/x-javascript', 'text/plain'),
|
||||
'swf' => 'application/x-shockwave-flash',
|
||||
'sit' => 'application/x-stuffit',
|
||||
'tar' => 'application/x-tar',
|
||||
'tgz' => array('application/x-tar', 'application/x-gzip-compressed'),
|
||||
'z' => 'application/x-compress',
|
||||
'xhtml' => 'application/xhtml+xml',
|
||||
'xht' => 'application/xhtml+xml',
|
||||
'zip' => array('application/x-zip', 'application/zip', 'application/x-zip-compressed', 'application/s-compressed', 'multipart/x-zip'),
|
||||
'rar' => array('application/x-rar', 'application/rar', 'application/x-rar-compressed'),
|
||||
'mid' => 'audio/midi',
|
||||
'midi' => 'audio/midi',
|
||||
'mpga' => 'audio/mpeg',
|
||||
'mp2' => 'audio/mpeg',
|
||||
'mp3' => array('audio/mpeg', 'audio/mpg', 'audio/mpeg3', 'audio/mp3'),
|
||||
'aif' => array('audio/x-aiff', 'audio/aiff'),
|
||||
'aiff' => array('audio/x-aiff', 'audio/aiff'),
|
||||
'aifc' => 'audio/x-aiff',
|
||||
'ram' => 'audio/x-pn-realaudio',
|
||||
'rm' => 'audio/x-pn-realaudio',
|
||||
'rpm' => 'audio/x-pn-realaudio-plugin',
|
||||
'ra' => 'audio/x-realaudio',
|
||||
'rv' => 'video/vnd.rn-realvideo',
|
||||
'wav' => array('audio/x-wav', 'audio/wave', 'audio/wav'),
|
||||
'bmp' => array('image/bmp', 'image/x-bmp', 'image/x-bitmap', 'image/x-xbitmap', 'image/x-win-bitmap', 'image/x-windows-bmp', 'image/ms-bmp', 'image/x-ms-bmp', 'application/bmp', 'application/x-bmp', 'application/x-win-bitmap'),
|
||||
'gif' => 'image/gif',
|
||||
'jpeg' => array('image/jpeg', 'image/pjpeg'),
|
||||
'jpg' => array('image/jpeg', 'image/pjpeg'),
|
||||
'jpe' => array('image/jpeg', 'image/pjpeg'),
|
||||
'jp2' => array('image/jp2', 'video/mj2', 'image/jpx', 'image/jpm'),
|
||||
'j2k' => array('image/jp2', 'video/mj2', 'image/jpx', 'image/jpm'),
|
||||
'jpf' => array('image/jp2', 'video/mj2', 'image/jpx', 'image/jpm'),
|
||||
'jpg2' => array('image/jp2', 'video/mj2', 'image/jpx', 'image/jpm'),
|
||||
'jpx' => array('image/jp2', 'video/mj2', 'image/jpx', 'image/jpm'),
|
||||
'jpm' => array('image/jp2', 'video/mj2', 'image/jpx', 'image/jpm'),
|
||||
'mj2' => array('image/jp2', 'video/mj2', 'image/jpx', 'image/jpm'),
|
||||
'mjp2' => array('image/jp2', 'video/mj2', 'image/jpx', 'image/jpm'),
|
||||
'png' => array('image/png', 'image/x-png'),
|
||||
'tiff' => 'image/tiff',
|
||||
'tif' => 'image/tiff',
|
||||
'css' => array('text/css', 'text/plain'),
|
||||
'html' => array('text/html', 'text/plain'),
|
||||
'htm' => array('text/html', 'text/plain'),
|
||||
'shtml' => array('text/html', 'text/plain'),
|
||||
'txt' => 'text/plain',
|
||||
'text' => 'text/plain',
|
||||
'log' => array('text/plain', 'text/x-log'),
|
||||
'rtx' => 'text/richtext',
|
||||
'rtf' => 'text/rtf',
|
||||
'xml' => array('application/xml', 'text/xml', 'text/plain'),
|
||||
'xsl' => array('application/xml', 'text/xsl', 'text/xml'),
|
||||
'mpeg' => 'video/mpeg',
|
||||
'mpg' => 'video/mpeg',
|
||||
'mpe' => 'video/mpeg',
|
||||
'qt' => 'video/quicktime',
|
||||
'mov' => 'video/quicktime',
|
||||
'avi' => array('video/x-msvideo', 'video/msvideo', 'video/avi', 'application/x-troff-msvideo'),
|
||||
'movie' => 'video/x-sgi-movie',
|
||||
'doc' => array('application/msword', 'application/vnd.ms-office'),
|
||||
'docx' => array('application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'application/zip', 'application/msword', 'application/x-zip'),
|
||||
'dot' => array('application/msword', 'application/vnd.ms-office'),
|
||||
'dotx' => array('application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'application/zip', 'application/msword'),
|
||||
'xlsx' => array('application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'application/zip', 'application/vnd.ms-excel', 'application/msword', 'application/x-zip'),
|
||||
'word' => array('application/msword', 'application/octet-stream'),
|
||||
'xl' => 'application/excel',
|
||||
'eml' => 'message/rfc822',
|
||||
'json' => array('application/json', 'text/json'),
|
||||
'pem' => array('application/x-x509-user-cert', 'application/x-pem-file', 'application/octet-stream'),
|
||||
'p10' => array('application/x-pkcs10', 'application/pkcs10'),
|
||||
'p12' => 'application/x-pkcs12',
|
||||
'p7a' => 'application/x-pkcs7-signature',
|
||||
'p7c' => array('application/pkcs7-mime', 'application/x-pkcs7-mime'),
|
||||
'p7m' => array('application/pkcs7-mime', 'application/x-pkcs7-mime'),
|
||||
'p7r' => 'application/x-pkcs7-certreqresp',
|
||||
'p7s' => 'application/pkcs7-signature',
|
||||
'crt' => array('application/x-x509-ca-cert', 'application/x-x509-user-cert', 'application/pkix-cert'),
|
||||
'crl' => array('application/pkix-crl', 'application/pkcs-crl'),
|
||||
'der' => 'application/x-x509-ca-cert',
|
||||
'kdb' => 'application/octet-stream',
|
||||
'pgp' => 'application/pgp',
|
||||
'gpg' => 'application/gpg-keys',
|
||||
'sst' => 'application/octet-stream',
|
||||
'csr' => 'application/octet-stream',
|
||||
'rsa' => 'application/x-pkcs7',
|
||||
'cer' => array('application/pkix-cert', 'application/x-x509-ca-cert'),
|
||||
'3g2' => 'video/3gpp2',
|
||||
'3gp' => array('video/3gp', 'video/3gpp'),
|
||||
'mp4' => 'video/mp4',
|
||||
'm4a' => 'audio/x-m4a',
|
||||
'f4v' => array('video/mp4', 'video/x-f4v'),
|
||||
'flv' => 'video/x-flv',
|
||||
'webm' => 'video/webm',
|
||||
'aac' => array('audio/x-aac', 'audio/aac'),
|
||||
'm4u' => 'application/vnd.mpegurl',
|
||||
'm3u' => 'text/plain',
|
||||
'xspf' => 'application/xspf+xml',
|
||||
'vlc' => 'application/videolan',
|
||||
'wmv' => array('video/x-ms-wmv', 'video/x-ms-asf'),
|
||||
'au' => 'audio/x-au',
|
||||
'ac3' => 'audio/ac3',
|
||||
'flac' => 'audio/x-flac',
|
||||
'ogg' => array('audio/ogg', 'video/ogg', 'application/ogg'),
|
||||
'kmz' => array('application/vnd.google-earth.kmz', 'application/zip', 'application/x-zip'),
|
||||
'kml' => array('application/vnd.google-earth.kml+xml', 'application/xml', 'text/xml'),
|
||||
'ics' => 'text/calendar',
|
||||
'ical' => 'text/calendar',
|
||||
'zsh' => 'text/x-scriptzsh',
|
||||
'7z' => array('application/x-7z-compressed', 'application/x-compressed', 'application/x-zip-compressed', 'application/zip', 'multipart/x-zip'),
|
||||
'7zip' => array('application/x-7z-compressed', 'application/x-compressed', 'application/x-zip-compressed', 'application/zip', 'multipart/x-zip'),
|
||||
'cdr' => array('application/cdr', 'application/coreldraw', 'application/x-cdr', 'application/x-coreldraw', 'image/cdr', 'image/x-cdr', 'zz-application/zz-winassoc-cdr'),
|
||||
'wma' => array('audio/x-ms-wma', 'video/x-ms-asf'),
|
||||
'jar' => array('application/java-archive', 'application/x-java-application', 'application/x-jar', 'application/x-compressed'),
|
||||
'svg' => array('image/svg+xml', 'application/xml', 'text/xml'),
|
||||
'vcf' => 'text/x-vcard',
|
||||
'srt' => array('text/srt', 'text/plain'),
|
||||
'vtt' => array('text/vtt', 'text/plain'),
|
||||
'ico' => array('image/x-icon', 'image/x-ico', 'image/vnd.microsoft.icon'),
|
||||
'odc' => 'application/vnd.oasis.opendocument.chart',
|
||||
'otc' => 'application/vnd.oasis.opendocument.chart-template',
|
||||
'odf' => 'application/vnd.oasis.opendocument.formula',
|
||||
'otf' => 'application/vnd.oasis.opendocument.formula-template',
|
||||
'odg' => 'application/vnd.oasis.opendocument.graphics',
|
||||
'otg' => 'application/vnd.oasis.opendocument.graphics-template',
|
||||
'odi' => 'application/vnd.oasis.opendocument.image',
|
||||
'oti' => 'application/vnd.oasis.opendocument.image-template',
|
||||
'odp' => 'application/vnd.oasis.opendocument.presentation',
|
||||
'otp' => 'application/vnd.oasis.opendocument.presentation-template',
|
||||
'ods' => 'application/vnd.oasis.opendocument.spreadsheet',
|
||||
'ots' => 'application/vnd.oasis.opendocument.spreadsheet-template',
|
||||
'odt' => 'application/vnd.oasis.opendocument.text',
|
||||
'odm' => 'application/vnd.oasis.opendocument.text-master',
|
||||
'ott' => 'application/vnd.oasis.opendocument.text-template',
|
||||
'oth' => 'application/vnd.oasis.opendocument.text-web'
|
||||
);
|
14
hostel/application/config/profiler.php
Normal file
@ -0,0 +1,14 @@
|
||||
<?php
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
/*
|
||||
| -------------------------------------------------------------------------
|
||||
| Profiler Sections
|
||||
| -------------------------------------------------------------------------
|
||||
| This file lets you determine whether or not various sections of Profiler
|
||||
| data are displayed when the Profiler is enabled.
|
||||
| Please see the user guide for info:
|
||||
|
|
||||
| https://codeigniter.com/user_guide/general/profiling.html
|
||||
|
|
||||
*/
|
80
hostel/application/config/routes.php
Normal file
@ -0,0 +1,80 @@
|
||||
<?php
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
/*
|
||||
| -------------------------------------------------------------------------
|
||||
| URI ROUTING
|
||||
| -------------------------------------------------------------------------
|
||||
| This file lets you re-map URI requests to specific controller functions.
|
||||
|
|
||||
| Typically there is a one-to-one relationship between a URL string
|
||||
| and its corresponding controller class/method. The segments in a
|
||||
| URL normally follow this pattern:
|
||||
|
|
||||
| example.com/class/method/id/
|
||||
|
|
||||
| In some instances, however, you may want to remap this relationship
|
||||
| so that a different class/function is called than the one
|
||||
| corresponding to the URL.
|
||||
|
|
||||
| Please see the user guide for complete details:
|
||||
|
|
||||
| https://codeigniter.com/user_guide/general/routing.html
|
||||
|
|
||||
| -------------------------------------------------------------------------
|
||||
| RESERVED ROUTES
|
||||
| -------------------------------------------------------------------------
|
||||
|
|
||||
| There are three reserved routes:
|
||||
|
|
||||
| $route['default_controller'] = 'welcome';
|
||||
|
|
||||
| This route indicates which controller class should be loaded if the
|
||||
| URI contains no data. In the above example, the "welcome" class
|
||||
| would be loaded.
|
||||
|
|
||||
| $route['404_override'] = 'errors/page_missing';
|
||||
|
|
||||
| This route will tell the Router which controller/method to use if those
|
||||
| provided in the URL cannot be matched to a valid route.
|
||||
|
|
||||
| $route['translate_uri_dashes'] = FALSE;
|
||||
|
|
||||
| This is not exactly a route, but allows you to automatically route
|
||||
| controller and method names that contain dashes. '-' isn't a valid
|
||||
| class or method name character, so it requires translation.
|
||||
| When you set this option to TRUE, it will replace ALL dashes in the
|
||||
| controller and method URI segments.
|
||||
|
|
||||
| Examples: my-controller/index -> my_controller/index
|
||||
| my-controller/my-method -> my_controller/my_method
|
||||
*/
|
||||
$route['default_controller'] = 'welcome';
|
||||
|
||||
$route['admin'] = 'HmsAdmin/login';
|
||||
$route['logout'] = 'HmsAdmin/logout';
|
||||
|
||||
$route['dashboard'] = 'HmsAdmin/dashboard';
|
||||
|
||||
$route['roles'] = 'HmsAdmin/roles';
|
||||
$route['add-edit-role/(:any)'] = 'HmsAdmin/add_edit_role/$1';
|
||||
$route['users'] = 'HmsAdmin/users';
|
||||
$route['add-edit-user/(:any)'] = 'HmsAdmin/add_edit_user/$1';
|
||||
|
||||
$route['forgot-password'] = 'HmsAdmin/forgot_password';
|
||||
$route['reset-password/(:any)'] = 'HmsAdmin/reset_password/$1';
|
||||
|
||||
$route['404_override'] = '';
|
||||
$route['translate_uri_dashes'] = FALSE;
|
||||
|
||||
// Routes - Afras Khan
|
||||
$route['dashboard'] = 'HmsAdmin/dashboard';
|
||||
$route['blocks'] = 'HmsAdmin/blocks';
|
||||
$route['floors'] = 'HmsAdmin/floors';
|
||||
$route['rooms'] = 'HmsAdmin/rooms';
|
||||
$route['beds'] = 'HmsAdmin/beds';
|
||||
$route['students'] = 'HmsAdmin/students';
|
||||
$route['assign-students/(:any)'] = 'HmsAdmin/ae_assign_student/$1';
|
||||
$route['profile/(:any)'] = 'HmsAdmin/student_profile/$1';
|
||||
|
||||
// $routes['delete-block/(:any)'] = 'HmsAdmin/delete_block/$1';
|
64
hostel/application/config/smileys.php
Normal file
@ -0,0 +1,64 @@
|
||||
<?php
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
/*
|
||||
| -------------------------------------------------------------------
|
||||
| SMILEYS
|
||||
| -------------------------------------------------------------------
|
||||
| This file contains an array of smileys for use with the emoticon helper.
|
||||
| Individual images can be used to replace multiple smileys. For example:
|
||||
| :-) and :) use the same image replacement.
|
||||
|
|
||||
| Please see user guide for more info:
|
||||
| https://codeigniter.com/user_guide/helpers/smiley_helper.html
|
||||
|
|
||||
*/
|
||||
$smileys = array(
|
||||
|
||||
// smiley image name width height alt
|
||||
|
||||
':-)' => array('grin.gif', '19', '19', 'grin'),
|
||||
':lol:' => array('lol.gif', '19', '19', 'LOL'),
|
||||
':cheese:' => array('cheese.gif', '19', '19', 'cheese'),
|
||||
':)' => array('smile.gif', '19', '19', 'smile'),
|
||||
';-)' => array('wink.gif', '19', '19', 'wink'),
|
||||
';)' => array('wink.gif', '19', '19', 'wink'),
|
||||
':smirk:' => array('smirk.gif', '19', '19', 'smirk'),
|
||||
':roll:' => array('rolleyes.gif', '19', '19', 'rolleyes'),
|
||||
':-S' => array('confused.gif', '19', '19', 'confused'),
|
||||
':wow:' => array('surprise.gif', '19', '19', 'surprised'),
|
||||
':bug:' => array('bigsurprise.gif', '19', '19', 'big surprise'),
|
||||
':-P' => array('tongue_laugh.gif', '19', '19', 'tongue laugh'),
|
||||
'%-P' => array('tongue_rolleye.gif', '19', '19', 'tongue rolleye'),
|
||||
';-P' => array('tongue_wink.gif', '19', '19', 'tongue wink'),
|
||||
':P' => array('raspberry.gif', '19', '19', 'raspberry'),
|
||||
':blank:' => array('blank.gif', '19', '19', 'blank stare'),
|
||||
':long:' => array('longface.gif', '19', '19', 'long face'),
|
||||
':ohh:' => array('ohh.gif', '19', '19', 'ohh'),
|
||||
':grrr:' => array('grrr.gif', '19', '19', 'grrr'),
|
||||
':gulp:' => array('gulp.gif', '19', '19', 'gulp'),
|
||||
'8-/' => array('ohoh.gif', '19', '19', 'oh oh'),
|
||||
':down:' => array('downer.gif', '19', '19', 'downer'),
|
||||
':red:' => array('embarrassed.gif', '19', '19', 'red face'),
|
||||
':sick:' => array('sick.gif', '19', '19', 'sick'),
|
||||
':shut:' => array('shuteye.gif', '19', '19', 'shut eye'),
|
||||
':-/' => array('hmm.gif', '19', '19', 'hmmm'),
|
||||
'>:(' => array('mad.gif', '19', '19', 'mad'),
|
||||
':mad:' => array('mad.gif', '19', '19', 'mad'),
|
||||
'>:-(' => array('angry.gif', '19', '19', 'angry'),
|
||||
':angry:' => array('angry.gif', '19', '19', 'angry'),
|
||||
':zip:' => array('zip.gif', '19', '19', 'zipper'),
|
||||
':kiss:' => array('kiss.gif', '19', '19', 'kiss'),
|
||||
':ahhh:' => array('shock.gif', '19', '19', 'shock'),
|
||||
':coolsmile:' => array('shade_smile.gif', '19', '19', 'cool smile'),
|
||||
':coolsmirk:' => array('shade_smirk.gif', '19', '19', 'cool smirk'),
|
||||
':coolgrin:' => array('shade_grin.gif', '19', '19', 'cool grin'),
|
||||
':coolhmm:' => array('shade_hmm.gif', '19', '19', 'cool hmm'),
|
||||
':coolmad:' => array('shade_mad.gif', '19', '19', 'cool mad'),
|
||||
':coolcheese:' => array('shade_cheese.gif', '19', '19', 'cool cheese'),
|
||||
':vampire:' => array('vampire.gif', '19', '19', 'vampire'),
|
||||
':snake:' => array('snake.gif', '19', '19', 'snake'),
|
||||
':exclaim:' => array('exclaim.gif', '19', '19', 'exclaim'),
|
||||
':question:' => array('question.gif', '19', '19', 'question')
|
||||
|
||||
);
|
216
hostel/application/config/user_agents.php
Normal file
@ -0,0 +1,216 @@
|
||||
<?php
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
/*
|
||||
| -------------------------------------------------------------------
|
||||
| USER AGENT TYPES
|
||||
| -------------------------------------------------------------------
|
||||
| This file contains four arrays of user agent data. It is used by the
|
||||
| User Agent Class to help identify browser, platform, robot, and
|
||||
| mobile device data. The array keys are used to identify the device
|
||||
| and the array values are used to set the actual name of the item.
|
||||
*/
|
||||
$platforms = array(
|
||||
'windows nt 10.0' => 'Windows 10',
|
||||
'windows nt 6.3' => 'Windows 8.1',
|
||||
'windows nt 6.2' => 'Windows 8',
|
||||
'windows nt 6.1' => 'Windows 7',
|
||||
'windows nt 6.0' => 'Windows Vista',
|
||||
'windows nt 5.2' => 'Windows 2003',
|
||||
'windows nt 5.1' => 'Windows XP',
|
||||
'windows nt 5.0' => 'Windows 2000',
|
||||
'windows nt 4.0' => 'Windows NT 4.0',
|
||||
'winnt4.0' => 'Windows NT 4.0',
|
||||
'winnt 4.0' => 'Windows NT',
|
||||
'winnt' => 'Windows NT',
|
||||
'windows 98' => 'Windows 98',
|
||||
'win98' => 'Windows 98',
|
||||
'windows 95' => 'Windows 95',
|
||||
'win95' => 'Windows 95',
|
||||
'windows phone' => 'Windows Phone',
|
||||
'windows' => 'Unknown Windows OS',
|
||||
'android' => 'Android',
|
||||
'blackberry' => 'BlackBerry',
|
||||
'iphone' => 'iOS',
|
||||
'ipad' => 'iOS',
|
||||
'ipod' => 'iOS',
|
||||
'os x' => 'Mac OS X',
|
||||
'ppc mac' => 'Power PC Mac',
|
||||
'freebsd' => 'FreeBSD',
|
||||
'ppc' => 'Macintosh',
|
||||
'linux' => 'Linux',
|
||||
'debian' => 'Debian',
|
||||
'sunos' => 'Sun Solaris',
|
||||
'beos' => 'BeOS',
|
||||
'apachebench' => 'ApacheBench',
|
||||
'aix' => 'AIX',
|
||||
'irix' => 'Irix',
|
||||
'osf' => 'DEC OSF',
|
||||
'hp-ux' => 'HP-UX',
|
||||
'netbsd' => 'NetBSD',
|
||||
'bsdi' => 'BSDi',
|
||||
'openbsd' => 'OpenBSD',
|
||||
'gnu' => 'GNU/Linux',
|
||||
'unix' => 'Unknown Unix OS',
|
||||
'symbian' => 'Symbian OS'
|
||||
);
|
||||
|
||||
|
||||
// The order of this array should NOT be changed. Many browsers return
|
||||
// multiple browser types so we want to identify the sub-type first.
|
||||
$browsers = array(
|
||||
'OPR' => 'Opera',
|
||||
'Flock' => 'Flock',
|
||||
'Edge' => 'Edge',
|
||||
'Chrome' => 'Chrome',
|
||||
// Opera 10+ always reports Opera/9.80 and appends Version/<real version> to the user agent string
|
||||
'Opera.*?Version' => 'Opera',
|
||||
'Opera' => 'Opera',
|
||||
'MSIE' => 'Internet Explorer',
|
||||
'Internet Explorer' => 'Internet Explorer',
|
||||
'Trident.* rv' => 'Internet Explorer',
|
||||
'Shiira' => 'Shiira',
|
||||
'Firefox' => 'Firefox',
|
||||
'Chimera' => 'Chimera',
|
||||
'Phoenix' => 'Phoenix',
|
||||
'Firebird' => 'Firebird',
|
||||
'Camino' => 'Camino',
|
||||
'Netscape' => 'Netscape',
|
||||
'OmniWeb' => 'OmniWeb',
|
||||
'Safari' => 'Safari',
|
||||
'Mozilla' => 'Mozilla',
|
||||
'Konqueror' => 'Konqueror',
|
||||
'icab' => 'iCab',
|
||||
'Lynx' => 'Lynx',
|
||||
'Links' => 'Links',
|
||||
'hotjava' => 'HotJava',
|
||||
'amaya' => 'Amaya',
|
||||
'IBrowse' => 'IBrowse',
|
||||
'Maxthon' => 'Maxthon',
|
||||
'Ubuntu' => 'Ubuntu Web Browser'
|
||||
);
|
||||
|
||||
$mobiles = array(
|
||||
// legacy array, old values commented out
|
||||
'mobileexplorer' => 'Mobile Explorer',
|
||||
// 'openwave' => 'Open Wave',
|
||||
// 'opera mini' => 'Opera Mini',
|
||||
// 'operamini' => 'Opera Mini',
|
||||
// 'elaine' => 'Palm',
|
||||
'palmsource' => 'Palm',
|
||||
// 'digital paths' => 'Palm',
|
||||
// 'avantgo' => 'Avantgo',
|
||||
// 'xiino' => 'Xiino',
|
||||
'palmscape' => 'Palmscape',
|
||||
// 'nokia' => 'Nokia',
|
||||
// 'ericsson' => 'Ericsson',
|
||||
// 'blackberry' => 'BlackBerry',
|
||||
// 'motorola' => 'Motorola'
|
||||
|
||||
// Phones and Manufacturers
|
||||
'motorola' => 'Motorola',
|
||||
'nokia' => 'Nokia',
|
||||
'nexus' => 'Nexus',
|
||||
'palm' => 'Palm',
|
||||
'iphone' => 'Apple iPhone',
|
||||
'ipad' => 'iPad',
|
||||
'ipod' => 'Apple iPod Touch',
|
||||
'sony' => 'Sony Ericsson',
|
||||
'ericsson' => 'Sony Ericsson',
|
||||
'blackberry' => 'BlackBerry',
|
||||
'cocoon' => 'O2 Cocoon',
|
||||
'blazer' => 'Treo',
|
||||
'lg' => 'LG',
|
||||
'amoi' => 'Amoi',
|
||||
'xda' => 'XDA',
|
||||
'mda' => 'MDA',
|
||||
'vario' => 'Vario',
|
||||
'htc' => 'HTC',
|
||||
'samsung' => 'Samsung',
|
||||
'sharp' => 'Sharp',
|
||||
'sie-' => 'Siemens',
|
||||
'alcatel' => 'Alcatel',
|
||||
'benq' => 'BenQ',
|
||||
'ipaq' => 'HP iPaq',
|
||||
'mot-' => 'Motorola',
|
||||
'playstation portable' => 'PlayStation Portable',
|
||||
'playstation 3' => 'PlayStation 3',
|
||||
'playstation vita' => 'PlayStation Vita',
|
||||
'hiptop' => 'Danger Hiptop',
|
||||
'nec-' => 'NEC',
|
||||
'panasonic' => 'Panasonic',
|
||||
'philips' => 'Philips',
|
||||
'sagem' => 'Sagem',
|
||||
'sanyo' => 'Sanyo',
|
||||
'spv' => 'SPV',
|
||||
'zte' => 'ZTE',
|
||||
'sendo' => 'Sendo',
|
||||
'nintendo dsi' => 'Nintendo DSi',
|
||||
'nintendo ds' => 'Nintendo DS',
|
||||
'nintendo 3ds' => 'Nintendo 3DS',
|
||||
'wii' => 'Nintendo Wii',
|
||||
'open web' => 'Open Web',
|
||||
'openweb' => 'OpenWeb',
|
||||
'meizu' => 'Meizu',
|
||||
|
||||
// Operating Systems
|
||||
'android' => 'Android',
|
||||
'symbian' => 'Symbian',
|
||||
'SymbianOS' => 'SymbianOS',
|
||||
'elaine' => 'Palm',
|
||||
'series60' => 'Symbian S60',
|
||||
'windows ce' => 'Windows CE',
|
||||
|
||||
// Browsers
|
||||
'obigo' => 'Obigo',
|
||||
'netfront' => 'Netfront Browser',
|
||||
'openwave' => 'Openwave Browser',
|
||||
'mobilexplorer' => 'Mobile Explorer',
|
||||
'operamini' => 'Opera Mini',
|
||||
'opera mini' => 'Opera Mini',
|
||||
'opera mobi' => 'Opera Mobile',
|
||||
'fennec' => 'Firefox Mobile',
|
||||
|
||||
// Other
|
||||
'digital paths' => 'Digital Paths',
|
||||
'avantgo' => 'AvantGo',
|
||||
'xiino' => 'Xiino',
|
||||
'novarra' => 'Novarra Transcoder',
|
||||
'vodafone' => 'Vodafone',
|
||||
'docomo' => 'NTT DoCoMo',
|
||||
'o2' => 'O2',
|
||||
|
||||
// Fallback
|
||||
'mobile' => 'Generic Mobile',
|
||||
'wireless' => 'Generic Mobile',
|
||||
'j2me' => 'Generic Mobile',
|
||||
'midp' => 'Generic Mobile',
|
||||
'cldc' => 'Generic Mobile',
|
||||
'up.link' => 'Generic Mobile',
|
||||
'up.browser' => 'Generic Mobile',
|
||||
'smartphone' => 'Generic Mobile',
|
||||
'cellphone' => 'Generic Mobile'
|
||||
);
|
||||
|
||||
// There are hundreds of bots but these are the most common.
|
||||
$robots = array(
|
||||
'googlebot' => 'Googlebot',
|
||||
'msnbot' => 'MSNBot',
|
||||
'baiduspider' => 'Baiduspider',
|
||||
'bingbot' => 'Bing',
|
||||
'slurp' => 'Inktomi Slurp',
|
||||
'yahoo' => 'Yahoo',
|
||||
'ask jeeves' => 'Ask Jeeves',
|
||||
'fastcrawler' => 'FastCrawler',
|
||||
'infoseek' => 'InfoSeek Robot 1.0',
|
||||
'lycos' => 'Lycos',
|
||||
'yandex' => 'YandexBot',
|
||||
'mediapartners-google' => 'MediaPartners Google',
|
||||
'CRAZYWEBCRAWLER' => 'Crazy Webcrawler',
|
||||
'adsbot-google' => 'AdsBot Google',
|
||||
'feedfetcher-google' => 'Feedfetcher Google',
|
||||
'curious george' => 'Curious George',
|
||||
'ia_archiver' => 'Alexa Crawler',
|
||||
'MJ12bot' => 'Majestic-12',
|
||||
'Uptimebot' => 'Uptimebot'
|
||||
);
|
1391
hostel/application/controllers/HmsAdmin.php
Normal file
25
hostel/application/controllers/Welcome.php
Normal file
@ -0,0 +1,25 @@
|
||||
<?php
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
class Welcome extends CI_Controller {
|
||||
|
||||
/**
|
||||
* Index Page for this controller.
|
||||
*
|
||||
* Maps to the following URL
|
||||
* http://example.com/index.php/welcome
|
||||
* - or -
|
||||
* http://example.com/index.php/welcome/index
|
||||
* - or -
|
||||
* Since this controller is set as the default controller in
|
||||
* config/routes.php, it's displayed at http://example.com/
|
||||
*
|
||||
* So any other public methods not prefixed with an underscore will
|
||||
* map to /index.php/welcome/<method_name>
|
||||
* @see https://codeigniter.com/user_guide/general/urls.html
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$this->load->view('welcome_message');
|
||||
}
|
||||
}
|
11
hostel/application/controllers/index.html
Normal file
@ -0,0 +1,11 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>403 Forbidden</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p>Directory access is forbidden.</p>
|
||||
|
||||
</body>
|
||||
</html>
|
11
hostel/application/core/index.html
Normal file
@ -0,0 +1,11 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>403 Forbidden</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p>Directory access is forbidden.</p>
|
||||
|
||||
</body>
|
||||
</html>
|
70
hostel/application/helpers/common_helper.php
Normal file
@ -0,0 +1,70 @@
|
||||
<?php
|
||||
|
||||
function urlsafe_b64encode($string)
|
||||
{
|
||||
$data = base64_encode($string);
|
||||
$data = str_replace(array('+','/','='),array('-','_',''),$data);
|
||||
return $data;
|
||||
}
|
||||
|
||||
function urlsafe_b64decode($string) {
|
||||
$data = str_replace(array('-','_'),array('+','/'),$string);
|
||||
$mod4 = strlen($data) % 4;
|
||||
if ($mod4) {
|
||||
$data .= substr('====', $mod4);
|
||||
}
|
||||
return base64_decode($data);
|
||||
}
|
||||
|
||||
function test_view_array($array) {
|
||||
echo '<pre>';
|
||||
print_r($array);
|
||||
exit();
|
||||
}
|
||||
|
||||
function cuurentNepaliDate($dateObj) {
|
||||
$date_arr = explode('-', date('Y-m-d'));
|
||||
list($y, $m, $d) = $date_arr;
|
||||
|
||||
// Convert BS to AD.
|
||||
$datearr = $dateObj->convertAdToBs($y, $m, $d);
|
||||
extract($datearr);
|
||||
$string = $year.'-'.$month.'-'.$day;
|
||||
$date = date_create_from_format('Y-m-d', $string);
|
||||
return $php_date = date_format($date, 'Y-m-d H:i:s');
|
||||
}
|
||||
|
||||
/*function loggedin_admin_user_permissions()
|
||||
{
|
||||
$CI = &get_instance();
|
||||
$CI->load->model('AdminRule_Model');
|
||||
$adminRules = $CI->AdminRule_Model->get_admin_rule_details('', "SELECT menu_id FROM admin_rule WHERE role_id=".$CI->session->userdata('role_id'));
|
||||
return $adminRules;
|
||||
}*/
|
||||
|
||||
|
||||
function ciSendEmail($data=array())
|
||||
{
|
||||
$CI = &get_instance();
|
||||
$CI->load->library('email');
|
||||
|
||||
//$CI->email->clear();
|
||||
//$config['mailtype'] = 'html';
|
||||
//$CI->email->initialize($config);
|
||||
|
||||
$CI->email->from('nandini@ezydemo.com', 'Erisn Classroom Hostel');
|
||||
$CI->email->to($data['to']);
|
||||
|
||||
//if(isset($data['cc_to']) && $data['cc_to']!='')
|
||||
//$CI->email->cc($data['cc_to']);
|
||||
|
||||
$CI->email->subject($data['subject']);
|
||||
$CI->email->message($data['message']);
|
||||
$CI->email->set_mailtype('html');
|
||||
|
||||
$res = $CI->email->send();
|
||||
//echo $res;exit;
|
||||
return $res;
|
||||
}
|
||||
|
||||
?>
|
11
hostel/application/helpers/index.html
Normal file
@ -0,0 +1,11 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>403 Forbidden</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p>Directory access is forbidden.</p>
|
||||
|
||||
</body>
|
||||
</html>
|
11
hostel/application/hooks/index.html
Normal file
@ -0,0 +1,11 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>403 Forbidden</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p>Directory access is forbidden.</p>
|
||||
|
||||
</body>
|
||||
</html>
|
11
hostel/application/index.html
Normal file
@ -0,0 +1,11 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>403 Forbidden</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p>Directory access is forbidden.</p>
|
||||
|
||||
</body>
|
||||
</html>
|
11
hostel/application/language/english/index.html
Normal file
@ -0,0 +1,11 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>403 Forbidden</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p>Directory access is forbidden.</p>
|
||||
|
||||
</body>
|
||||
</html>
|
11
hostel/application/language/index.html
Normal file
@ -0,0 +1,11 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>403 Forbidden</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p>Directory access is forbidden.</p>
|
||||
|
||||
</body>
|
||||
</html>
|
11
hostel/application/libraries/index.html
Normal file
@ -0,0 +1,11 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>403 Forbidden</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p>Directory access is forbidden.</p>
|
||||
|
||||
</body>
|
||||
</html>
|
11
hostel/application/logs/index.html
Normal file
@ -0,0 +1,11 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>403 Forbidden</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p>Directory access is forbidden.</p>
|
||||
|
||||
</body>
|
||||
</html>
|
59
hostel/application/models/Classroom_model.php
Normal file
@ -0,0 +1,59 @@
|
||||
<?php
|
||||
|
||||
class classroom_model extends CI_Model
|
||||
{
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
|
||||
$this->db = $this->load->database('classroom', TRUE);
|
||||
}
|
||||
|
||||
public function get_table_info($table_name, $where = '', $sqlQry = '', $order = 'DESC', $limit = FALSE, $offset = FALSE)
|
||||
{
|
||||
|
||||
if ($limit)
|
||||
$this->db->limit($limit, $offset);
|
||||
|
||||
if ($where != '')
|
||||
$this->db->where($where);
|
||||
|
||||
$this->db->order_by($table_name . '.id', $order);
|
||||
$query = $this->db->get($table_name);
|
||||
|
||||
if ($sqlQry != '')
|
||||
$query = $this->db->query($sqlQry);
|
||||
|
||||
return $query->result_array();
|
||||
}
|
||||
|
||||
public function get_table_info_row($table_name, $where = '', $sqlQry = '', $order = 'DESC', $limit = FALSE, $offset = FALSE)
|
||||
{
|
||||
|
||||
if ($limit)
|
||||
$this->db->limit($limit, $offset);
|
||||
|
||||
if ($where != '')
|
||||
$this->db->where($where);
|
||||
|
||||
$this->db->order_by($table_name . '.id', $order);
|
||||
$query = $this->db->get($table_name);
|
||||
|
||||
if ($sqlQry != '')
|
||||
$query = $this->db->query($sqlQry);
|
||||
|
||||
return $query->row_array();
|
||||
}
|
||||
|
||||
public function get_logo_from_setting()
|
||||
{
|
||||
$this->db->select('*');
|
||||
$this->db->from('school_settings');
|
||||
$query = $this->db->get();
|
||||
return $query->row_array();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
461
hostel/application/models/HmsAdmin_Model.php
Normal file
@ -0,0 +1,461 @@
|
||||
<?php
|
||||
|
||||
class HmsAdmin_Model extends CI_Model
|
||||
{
|
||||
/*############################################ START Of Coding By Nandini ############################################*/
|
||||
public function __construct()
|
||||
{
|
||||
$this->load->database();
|
||||
}
|
||||
|
||||
/**************************************** START of Admin Roles - Nandini ************************************/
|
||||
public function get_hms_admin_roles($where='', $sqlQry='', $limit=FALSE, $offset=FALSE)
|
||||
{
|
||||
if($limit)
|
||||
$this->db->limit($limit, $offset);
|
||||
|
||||
if($where!='')
|
||||
$this->db->where($where);
|
||||
|
||||
$this->db->order_by('hms_admin_roles.id', 'DESC');
|
||||
$query = $this->db->get('hms_admin_roles');
|
||||
|
||||
if($sqlQry!='')
|
||||
$query = $this->db->query($sqlQry);
|
||||
|
||||
return $query->result_array();
|
||||
}
|
||||
|
||||
public function check_role_exists($id, $rname)
|
||||
{
|
||||
$rId = ($this->input->post('id') !== NULL) ? $this->input->post('id'): $id;
|
||||
$rName = ($this->input->post('role_name') !== NULL) ? $this->input->post('role_name'): $rname;
|
||||
|
||||
$query = $this->db->get_where('hms_admin_roles', array('role_name' => $rName));
|
||||
if(!empty($query->row_array()))
|
||||
{
|
||||
if($rId == 0)
|
||||
return false; //Duplicate role_name
|
||||
else
|
||||
{
|
||||
if($query->row(0)->id != $rId)
|
||||
return false; //Duplicate role_name
|
||||
}
|
||||
}
|
||||
return true; //No duplicate
|
||||
}
|
||||
|
||||
function add_edit_admin_role($rId=0, $data)
|
||||
{
|
||||
if($rId == 0)
|
||||
{
|
||||
$this->db->insert('hms_admin_roles', $data);
|
||||
if($this->db->affected_rows() > 0){
|
||||
$insertid = $this->db->insert_id();
|
||||
return $insertid;
|
||||
}
|
||||
else{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
$this->db->where('id', $rId);
|
||||
$this->db->update('hms_admin_roles', $data);
|
||||
if($this->db->affected_rows() > 0)
|
||||
return true;
|
||||
else
|
||||
{
|
||||
if ($this->db->trans_status() === FALSE)
|
||||
return 0;
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public function delete_admin_role($idVal)
|
||||
{
|
||||
$delSqlQry = "DELETE FROM hms_admin_roles WHERE id = $idVal";
|
||||
$this->db->query($delSqlQry);
|
||||
return true;
|
||||
}
|
||||
/**************************************** ENDDD of Admin Roles - Nandini ************************************/
|
||||
|
||||
|
||||
/**************************************** START of Admin Menu - Nandini ************************************/
|
||||
public function get_admin_menu_details($where='', $sqlQry='', $limit=FALSE, $offset=FALSE)
|
||||
{
|
||||
if ($limit){
|
||||
$this->db->limit($limit, $offset);
|
||||
}
|
||||
if($where!='')
|
||||
$this->db->where($where);
|
||||
|
||||
$this->db->order_by('hms_admin_menu.id', 'DESC');
|
||||
$query = $this->db->get('hms_admin_menu');
|
||||
|
||||
if($sqlQry!='')
|
||||
$query = $this->db->query($sqlQry);
|
||||
|
||||
return $query->result_array();
|
||||
}
|
||||
|
||||
function recursive_menue($parentId = 0)
|
||||
{
|
||||
$this->db->where('parent_id', $parentId);
|
||||
//$this->db->where('is_active', 'Y');
|
||||
$this->db->order_by('order_number', 'ASC');
|
||||
$query = $this->db->get('hms_admin_menu');
|
||||
$result = $query->result_array();
|
||||
|
||||
$adminMenu = array();
|
||||
if(!empty($result))
|
||||
{
|
||||
foreach($result as $res)
|
||||
{
|
||||
array_push($adminMenu, $res);
|
||||
}
|
||||
}
|
||||
return $adminMenu;
|
||||
}
|
||||
|
||||
function get_admin_menu($parentId = 0)
|
||||
{
|
||||
$zeroMenu = $this->recursive_menue(0);
|
||||
$adminMenu = array();
|
||||
if(!empty($zeroMenu))
|
||||
{
|
||||
foreach($zeroMenu as $zero)
|
||||
{
|
||||
$adminMenu[$zero['id']] = $zero;
|
||||
|
||||
$oneMenu = $this->recursive_menue($zero['id']);
|
||||
if(!empty($oneMenu))
|
||||
{
|
||||
foreach($oneMenu as $one)
|
||||
{
|
||||
$adminMenu[$zero['id']][$zero['id']][$one['id']] = $one;
|
||||
|
||||
$twoMenu = $this->recursive_menue($one['id']);
|
||||
if(!empty($twoMenu))
|
||||
{
|
||||
foreach($twoMenu as $two)
|
||||
{
|
||||
$adminMenu[$zero['id']][$zero['id']][$one['id']][$one['id']][$two['id']] = $two;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
//echo '<pre>';print_r($adminMenu);
|
||||
return $adminMenu;
|
||||
}
|
||||
|
||||
public function get_hms_admin_role_permissions($where='', $sqlQry='', $limit=FALSE, $offset=FALSE)
|
||||
{
|
||||
if($limit)
|
||||
$this->db->limit($limit, $offset);
|
||||
|
||||
if($where!='')
|
||||
$this->db->where($where);
|
||||
|
||||
$this->db->order_by('hms_admin_role_permissions.id', 'DESC');
|
||||
$query = $this->db->get('hms_admin_role_permissions');
|
||||
|
||||
if($sqlQry!='')
|
||||
$query = $this->db->query($sqlQry);
|
||||
|
||||
return $query->result_array();
|
||||
}
|
||||
|
||||
function add_edit_admin_role_permissions($rpId=0, $data)
|
||||
{
|
||||
if($rpId == 0)
|
||||
{
|
||||
$this->db->insert('hms_admin_role_permissions', $data);
|
||||
if($this->db->affected_rows() > 0){
|
||||
$insertid = $this->db->insert_id();
|
||||
return $insertid;
|
||||
}
|
||||
else{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
$this->db->where('id', $rpId);
|
||||
$this->db->update('hms_admin_role_permissions', $data);
|
||||
if($this->db->affected_rows() > 0)
|
||||
return true;
|
||||
else
|
||||
{
|
||||
if ($this->db->trans_status() === FALSE)
|
||||
return 0;
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
/**************************************** END of Admin Menu - Nandini ************************************/
|
||||
|
||||
public function check_emailid_exists($id, $email)
|
||||
{
|
||||
$uId = ($this->input->post('id') !== NULL) ? $this->input->post('id'): $id;
|
||||
$eId = ($this->input->post('email') !== NULL) ? $this->input->post('email'): $email;
|
||||
|
||||
$query = $this->db->get_where('hms_admin', array('email' => $eId));
|
||||
if(!empty($query->row_array()))
|
||||
{
|
||||
if($uId == 0)
|
||||
return false; //Duplicate email id
|
||||
else
|
||||
{
|
||||
if($query->row(0)->id != $uId)
|
||||
return false; //Duplicate email id
|
||||
}
|
||||
}
|
||||
return true; //No duplicate
|
||||
}
|
||||
|
||||
function add_edit_admin_user($uId=0, $data)
|
||||
{
|
||||
if($uId == 0)
|
||||
{
|
||||
$this->db->insert('hms_admin', $data);
|
||||
if($this->db->affected_rows() > 0){
|
||||
$insertid = $this->db->insert_id();
|
||||
return $insertid;
|
||||
}
|
||||
else{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
$this->db->where('id', $uId);
|
||||
$this->db->update('hms_admin', $data);
|
||||
if($this->db->affected_rows() > 0)
|
||||
return true;
|
||||
else
|
||||
{
|
||||
if ($this->db->trans_status() === FALSE)
|
||||
return 0;
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public function delete_admin_user($idVal)
|
||||
{
|
||||
$delSqlQry = "DELETE FROM hms_admin WHERE id = $idVal";
|
||||
$this->db->query($delSqlQry);
|
||||
return true;
|
||||
}
|
||||
|
||||
public function get_admin_details($where='', $sqlQry='', $limit=FALSE, $offset=FALSE)
|
||||
{
|
||||
if ($limit){
|
||||
$this->db->limit($limit, $offset);
|
||||
}
|
||||
if($where!='')
|
||||
$this->db->where($where);
|
||||
|
||||
$this->db->order_by('hms_admin.id', 'DESC');
|
||||
$query = $this->db->get('hms_admin');
|
||||
|
||||
if($sqlQry!='')
|
||||
$query = $this->db->query($sqlQry);
|
||||
|
||||
return $query->result_array();
|
||||
}
|
||||
|
||||
public function check_is_emailid_valid($email)
|
||||
{
|
||||
$query = $this->db->query("SELECT id FROM hms_admin WHERE email='$email'");
|
||||
if($row = $query->row()){
|
||||
return TRUE;
|
||||
}else{
|
||||
return FALSE;
|
||||
}
|
||||
}
|
||||
|
||||
/*----------------------------- START of Admin User Login Functionality -----------------------------*/
|
||||
public function check_login_credentials($email, $encrypt_password)
|
||||
{
|
||||
$where = 'email="'.$email.'" AND password="'.$encrypt_password.'"';
|
||||
$this->db->where($where);
|
||||
$result = $this->db->get('hms_admin');
|
||||
|
||||
if ($result->num_rows() == 1) {
|
||||
return true;
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
/*----------------------------- ENDDD of Admin User Login Functionality -----------------------------*/
|
||||
|
||||
/*----------------------------- START of Admin User Password Functionality -----------------------------*/
|
||||
public function reset_admin_password($uId, $new_password)
|
||||
{
|
||||
$data = array(
|
||||
'password' => md5($new_password)
|
||||
);
|
||||
$this->db->where('id', $uId);
|
||||
return $this->db->update('hms_admin', $data);
|
||||
}
|
||||
/*----------------------------- ENDDD of Admin User Password Functionality -----------------------------*/
|
||||
/*############################################ ENDDD Of Coding By Nandini ############################################*/
|
||||
|
||||
// ================== Blocks Start - Afras khan - 02-12-2021 ==================
|
||||
|
||||
function add_edit_table($table,$id, $data, $update_where = '')
|
||||
{
|
||||
if ($id == 0) {
|
||||
$this->db->insert($table, $data);
|
||||
if ($this->db->affected_rows() > 0)
|
||||
return $insert_id = $this->db->insert_id();
|
||||
else
|
||||
return 0;
|
||||
} else {
|
||||
|
||||
if($update_where != '')
|
||||
$this->db->where($update_where);
|
||||
else
|
||||
$this->db->where('id', $id);
|
||||
|
||||
$this->db->update($table, $data);
|
||||
if ($this->db->trans_status() === FALSE)
|
||||
return 0;
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
function update_block_floors($block_id, $data) {
|
||||
|
||||
$this->db->trans_start();
|
||||
$this->db->where('block_id', $block_id);
|
||||
$this->db->update_batch('hms_floors', $data,'id');
|
||||
$this->db->trans_complete();
|
||||
|
||||
if ($this->db->trans_status() === FALSE)
|
||||
return 0;
|
||||
else
|
||||
return true;
|
||||
}
|
||||
|
||||
function insert_batch_data($table, $data) {
|
||||
$this->db->trans_start();
|
||||
$this->db->insert_batch($table, $data);
|
||||
$this->db->trans_complete();
|
||||
|
||||
if ($this->db->trans_status() === FALSE)
|
||||
return 0;
|
||||
else
|
||||
return true;
|
||||
|
||||
}
|
||||
|
||||
function insert_data($table, $data) {
|
||||
$this->db->trans_start();
|
||||
$this->db->insert($table, $data);
|
||||
$this->db->trans_complete();
|
||||
|
||||
if ($this->db->trans_status() === FALSE)
|
||||
return 0;
|
||||
else
|
||||
return true;
|
||||
|
||||
}
|
||||
|
||||
public function get_table_info($table_name, $where = '', $sqlQry = '', $order = 'DESC', $limit = FALSE, $offset = FALSE)
|
||||
{
|
||||
|
||||
if ($limit)
|
||||
$this->db->limit($limit, $offset);
|
||||
|
||||
if ($where != '')
|
||||
$this->db->where($where);
|
||||
|
||||
$this->db->order_by($table_name . '.id', $order);
|
||||
$query = $this->db->get($table_name);
|
||||
|
||||
if ($sqlQry != '')
|
||||
$query = $this->db->query($sqlQry);
|
||||
|
||||
return $query->result_array();
|
||||
}
|
||||
|
||||
public function get_table_info_row($table_name, $where = '', $sqlQry = '', $order = 'DESC', $limit = FALSE, $offset = FALSE)
|
||||
{
|
||||
|
||||
if ($limit)
|
||||
$this->db->limit($limit, $offset);
|
||||
|
||||
if ($where != '')
|
||||
$this->db->where($where);
|
||||
|
||||
$this->db->order_by($table_name . '.id', $order);
|
||||
$query = $this->db->get($table_name);
|
||||
|
||||
if ($sqlQry != '')
|
||||
$query = $this->db->query($sqlQry);
|
||||
|
||||
return $query->row_array();
|
||||
}
|
||||
|
||||
public function deleteTable($table, $id='', $where='')
|
||||
{
|
||||
if($where != '')
|
||||
$this->db->delete($table, $where);
|
||||
else
|
||||
$this->db->delete($table, array('id' => $id));
|
||||
|
||||
|
||||
if ($this->db->affected_rows()) {
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
public function check_value_exists($table, $where, $id)
|
||||
{
|
||||
|
||||
$query = $this->db->get_where($table, $where);
|
||||
|
||||
if (!empty($query->row_array())) {
|
||||
if ($id == 0)
|
||||
return false;
|
||||
else {
|
||||
if ($query->row(0)->id != $id)
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
|
||||
// ================== Blocks End - Afras khan - 02-12-2021 ==================
|
||||
|
||||
// ================== Floors - Afras khan - 03-12-2021 ==================
|
||||
|
||||
function update_floor_rooms($floor_id, $data) {
|
||||
|
||||
$this->db->trans_start();
|
||||
$this->db->where('room_floor_id', $floor_id);
|
||||
$this->db->update_batch('hms_rooms', $data,'id');
|
||||
$this->db->trans_complete();
|
||||
|
||||
if ($this->db->trans_status() === FALSE)
|
||||
return 0;
|
||||
else
|
||||
return true;
|
||||
}
|
||||
|
||||
// ================== Floors End - Afras khan - 03-12-2021 ==================
|
||||
}
|
||||
|
||||
?>
|
11
hostel/application/models/index.html
Normal file
@ -0,0 +1,11 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>403 Forbidden</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p>Directory access is forbidden.</p>
|
||||
|
||||
</body>
|
||||
</html>
|
11
hostel/application/third_party/index.html
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>403 Forbidden</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p>Directory access is forbidden.</p>
|
||||
|
||||
</body>
|
||||
</html>
|
8
hostel/application/views/errors/cli/error_404.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
echo "\nERROR: ",
|
||||
$heading,
|
||||
"\n\n",
|
||||
$message,
|
||||
"\n\n";
|
8
hostel/application/views/errors/cli/error_db.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
echo "\nDatabase error: ",
|
||||
$heading,
|
||||
"\n\n",
|
||||
$message,
|
||||
"\n\n";
|
21
hostel/application/views/errors/cli/error_exception.php
Normal file
@ -0,0 +1,21 @@
|
||||
<?php defined('BASEPATH') OR exit('No direct script access allowed'); ?>
|
||||
|
||||
An uncaught Exception was encountered
|
||||
|
||||
Type: <?php echo get_class($exception), "\n"; ?>
|
||||
Message: <?php echo $message, "\n"; ?>
|
||||
Filename: <?php echo $exception->getFile(), "\n"; ?>
|
||||
Line Number: <?php echo $exception->getLine(); ?>
|
||||
|
||||
<?php if (defined('SHOW_DEBUG_BACKTRACE') && SHOW_DEBUG_BACKTRACE === TRUE): ?>
|
||||
|
||||
Backtrace:
|
||||
<?php foreach ($exception->getTrace() as $error): ?>
|
||||
<?php if (isset($error['file']) && strpos($error['file'], realpath(BASEPATH)) !== 0): ?>
|
||||
File: <?php echo $error['file'], "\n"; ?>
|
||||
Line: <?php echo $error['line'], "\n"; ?>
|
||||
Function: <?php echo $error['function'], "\n\n"; ?>
|
||||
<?php endif ?>
|
||||
<?php endforeach ?>
|
||||
|
||||
<?php endif ?>
|
8
hostel/application/views/errors/cli/error_general.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
echo "\nERROR: ",
|
||||
$heading,
|
||||
"\n\n",
|
||||
$message,
|
||||
"\n\n";
|
21
hostel/application/views/errors/cli/error_php.php
Normal file
@ -0,0 +1,21 @@
|
||||
<?php defined('BASEPATH') OR exit('No direct script access allowed'); ?>
|
||||
|
||||
A PHP Error was encountered
|
||||
|
||||
Severity: <?php echo $severity, "\n"; ?>
|
||||
Message: <?php echo $message, "\n"; ?>
|
||||
Filename: <?php echo $filepath, "\n"; ?>
|
||||
Line Number: <?php echo $line; ?>
|
||||
|
||||
<?php if (defined('SHOW_DEBUG_BACKTRACE') && SHOW_DEBUG_BACKTRACE === TRUE): ?>
|
||||
|
||||
Backtrace:
|
||||
<?php foreach (debug_backtrace() as $error): ?>
|
||||
<?php if (isset($error['file']) && strpos($error['file'], realpath(BASEPATH)) !== 0): ?>
|
||||
File: <?php echo $error['file'], "\n"; ?>
|
||||
Line: <?php echo $error['line'], "\n"; ?>
|
||||
Function: <?php echo $error['function'], "\n\n"; ?>
|
||||
<?php endif ?>
|
||||
<?php endforeach ?>
|
||||
|
||||
<?php endif ?>
|
11
hostel/application/views/errors/cli/index.html
Normal file
@ -0,0 +1,11 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>403 Forbidden</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p>Directory access is forbidden.</p>
|
||||
|
||||
</body>
|
||||
</html>
|
64
hostel/application/views/errors/html/error_404.php
Normal file
@ -0,0 +1,64 @@
|
||||
<?php
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
?><!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>404 Page Not Found</title>
|
||||
<style type="text/css">
|
||||
|
||||
::selection { background-color: #E13300; color: white; }
|
||||
::-moz-selection { background-color: #E13300; color: white; }
|
||||
|
||||
body {
|
||||
background-color: #fff;
|
||||
margin: 40px;
|
||||
font: 13px/20px normal Helvetica, Arial, sans-serif;
|
||||
color: #4F5155;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #003399;
|
||||
background-color: transparent;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
h1 {
|
||||
color: #444;
|
||||
background-color: transparent;
|
||||
border-bottom: 1px solid #D0D0D0;
|
||||
font-size: 19px;
|
||||
font-weight: normal;
|
||||
margin: 0 0 14px 0;
|
||||
padding: 14px 15px 10px 15px;
|
||||
}
|
||||
|
||||
code {
|
||||
font-family: Consolas, Monaco, Courier New, Courier, monospace;
|
||||
font-size: 12px;
|
||||
background-color: #f9f9f9;
|
||||
border: 1px solid #D0D0D0;
|
||||
color: #002166;
|
||||
display: block;
|
||||
margin: 14px 0 14px 0;
|
||||
padding: 12px 10px 12px 10px;
|
||||
}
|
||||
|
||||
#container {
|
||||
margin: 10px;
|
||||
border: 1px solid #D0D0D0;
|
||||
box-shadow: 0 0 8px #D0D0D0;
|
||||
}
|
||||
|
||||
p {
|
||||
margin: 12px 15px 12px 15px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="container">
|
||||
<h1><?php echo $heading; ?></h1>
|
||||
<?php echo $message; ?>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
64
hostel/application/views/errors/html/error_db.php
Normal file
@ -0,0 +1,64 @@
|
||||
<?php
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
?><!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Database Error</title>
|
||||
<style type="text/css">
|
||||
|
||||
::selection { background-color: #E13300; color: white; }
|
||||
::-moz-selection { background-color: #E13300; color: white; }
|
||||
|
||||
body {
|
||||
background-color: #fff;
|
||||
margin: 40px;
|
||||
font: 13px/20px normal Helvetica, Arial, sans-serif;
|
||||
color: #4F5155;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #003399;
|
||||
background-color: transparent;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
h1 {
|
||||
color: #444;
|
||||
background-color: transparent;
|
||||
border-bottom: 1px solid #D0D0D0;
|
||||
font-size: 19px;
|
||||
font-weight: normal;
|
||||
margin: 0 0 14px 0;
|
||||
padding: 14px 15px 10px 15px;
|
||||
}
|
||||
|
||||
code {
|
||||
font-family: Consolas, Monaco, Courier New, Courier, monospace;
|
||||
font-size: 12px;
|
||||
background-color: #f9f9f9;
|
||||
border: 1px solid #D0D0D0;
|
||||
color: #002166;
|
||||
display: block;
|
||||
margin: 14px 0 14px 0;
|
||||
padding: 12px 10px 12px 10px;
|
||||
}
|
||||
|
||||
#container {
|
||||
margin: 10px;
|
||||
border: 1px solid #D0D0D0;
|
||||
box-shadow: 0 0 8px #D0D0D0;
|
||||
}
|
||||
|
||||
p {
|
||||
margin: 12px 15px 12px 15px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="container">
|
||||
<h1><?php echo $heading; ?></h1>
|
||||
<?php echo $message; ?>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
32
hostel/application/views/errors/html/error_exception.php
Normal file
@ -0,0 +1,32 @@
|
||||
<?php
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
?>
|
||||
|
||||
<div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
|
||||
|
||||
<h4>An uncaught Exception was encountered</h4>
|
||||
|
||||
<p>Type: <?php echo get_class($exception); ?></p>
|
||||
<p>Message: <?php echo $message; ?></p>
|
||||
<p>Filename: <?php echo $exception->getFile(); ?></p>
|
||||
<p>Line Number: <?php echo $exception->getLine(); ?></p>
|
||||
|
||||
<?php if (defined('SHOW_DEBUG_BACKTRACE') && SHOW_DEBUG_BACKTRACE === TRUE): ?>
|
||||
|
||||
<p>Backtrace:</p>
|
||||
<?php foreach ($exception->getTrace() as $error): ?>
|
||||
|
||||
<?php if (isset($error['file']) && strpos($error['file'], realpath(BASEPATH)) !== 0): ?>
|
||||
|
||||
<p style="margin-left:10px">
|
||||
File: <?php echo $error['file']; ?><br />
|
||||
Line: <?php echo $error['line']; ?><br />
|
||||
Function: <?php echo $error['function']; ?>
|
||||
</p>
|
||||
<?php endif ?>
|
||||
|
||||
<?php endforeach ?>
|
||||
|
||||
<?php endif ?>
|
||||
|
||||
</div>
|
64
hostel/application/views/errors/html/error_general.php
Normal file
@ -0,0 +1,64 @@
|
||||
<?php
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
?><!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Error</title>
|
||||
<style type="text/css">
|
||||
|
||||
::selection { background-color: #E13300; color: white; }
|
||||
::-moz-selection { background-color: #E13300; color: white; }
|
||||
|
||||
body {
|
||||
background-color: #fff;
|
||||
margin: 40px;
|
||||
font: 13px/20px normal Helvetica, Arial, sans-serif;
|
||||
color: #4F5155;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #003399;
|
||||
background-color: transparent;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
h1 {
|
||||
color: #444;
|
||||
background-color: transparent;
|
||||
border-bottom: 1px solid #D0D0D0;
|
||||
font-size: 19px;
|
||||
font-weight: normal;
|
||||
margin: 0 0 14px 0;
|
||||
padding: 14px 15px 10px 15px;
|
||||
}
|
||||
|
||||
code {
|
||||
font-family: Consolas, Monaco, Courier New, Courier, monospace;
|
||||
font-size: 12px;
|
||||
background-color: #f9f9f9;
|
||||
border: 1px solid #D0D0D0;
|
||||
color: #002166;
|
||||
display: block;
|
||||
margin: 14px 0 14px 0;
|
||||
padding: 12px 10px 12px 10px;
|
||||
}
|
||||
|
||||
#container {
|
||||
margin: 10px;
|
||||
border: 1px solid #D0D0D0;
|
||||
box-shadow: 0 0 8px #D0D0D0;
|
||||
}
|
||||
|
||||
p {
|
||||
margin: 12px 15px 12px 15px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="container">
|
||||
<h1><?php echo $heading; ?></h1>
|
||||
<?php echo $message; ?>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
33
hostel/application/views/errors/html/error_php.php
Normal file
@ -0,0 +1,33 @@
|
||||
<?php
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
?>
|
||||
|
||||
<div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
|
||||
|
||||
<h4>A PHP Error was encountered</h4>
|
||||
|
||||
<p>Severity: <?php echo $severity; ?></p>
|
||||
<p>Message: <?php echo $message; ?></p>
|
||||
<p>Filename: <?php echo $filepath; ?></p>
|
||||
<p>Line Number: <?php echo $line; ?></p>
|
||||
|
||||
<?php if (defined('SHOW_DEBUG_BACKTRACE') && SHOW_DEBUG_BACKTRACE === TRUE): ?>
|
||||
|
||||
<p>Backtrace:</p>
|
||||
<?php foreach (debug_backtrace() as $error): ?>
|
||||
|
||||
<?php if (isset($error['file']) && strpos($error['file'], realpath(BASEPATH)) !== 0): ?>
|
||||
|
||||
<p style="margin-left:10px">
|
||||
File: <?php echo $error['file'] ?><br />
|
||||
Line: <?php echo $error['line'] ?><br />
|
||||
Function: <?php echo $error['function'] ?>
|
||||
</p>
|
||||
|
||||
<?php endif ?>
|
||||
|
||||
<?php endforeach ?>
|
||||
|
||||
<?php endif ?>
|
||||
|
||||
</div>
|
11
hostel/application/views/errors/html/index.html
Normal file
@ -0,0 +1,11 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>403 Forbidden</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p>Directory access is forbidden.</p>
|
||||
|
||||
</body>
|
||||
</html>
|
11
hostel/application/views/errors/index.html
Normal file
@ -0,0 +1,11 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>403 Forbidden</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p>Directory access is forbidden.</p>
|
||||
|
||||
</body>
|
||||
</html>
|
200
hostel/application/views/hms-admin/add-edit-role.php
Normal file
@ -0,0 +1,200 @@
|
||||
<style type="text/css">
|
||||
.bg-dark {
|
||||
background-color: #032DA1 !important;
|
||||
}
|
||||
</style>
|
||||
<main class="common_margin" id="main">
|
||||
<div class="main-wrap">
|
||||
<div class="dashboard-cover">
|
||||
<div class="subject_r">
|
||||
<div class="subsec_sec">
|
||||
<div class="subject_r">
|
||||
<div class="subject_lsec">
|
||||
<div class="common-heading">
|
||||
<h2><?= $title ?></h2>
|
||||
</div>
|
||||
<?php
|
||||
$name=''; $status=''; $desc=''; $permissions=array();
|
||||
if(isset($details) && !empty($details))
|
||||
{
|
||||
$name = $details[0]['role_name'];
|
||||
$status = $details[0]['status'];
|
||||
$desc = $details[0]['role_desc'];
|
||||
//$permissions = $details[0]['admin_role_ids'];
|
||||
}
|
||||
|
||||
if(isset($role_permissions[0]['menu_ids']) && $role_permissions[0]['menu_ids']!='')
|
||||
$permissions = explode(',', $role_permissions[0]['menu_ids']);
|
||||
?>
|
||||
<form action='<?php echo base_url().'add-edit-role/'.$idVal;?>' id="addEditRoleForm" method="post">
|
||||
<input type='hidden' name='id' id='id' value='<?php echo $idVal;?>' />
|
||||
<div class="subject_lformarea role_formarea">
|
||||
<div class="form-group">
|
||||
<label for="">Role Name<span class="text-danger font-weight-bold">*</span></label>
|
||||
<input type="text" name="role_name" id="role_name" value='<?php echo $name;?>' class="form-control" >
|
||||
<label style="display : none" class="form_err" id='role_name_error'></label>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="">Status<span class="text-danger font-weight-bold">*</span></label>
|
||||
<select name="status" id="status" class="form-control">
|
||||
<option value="">Choose Status</option>
|
||||
<option value="Active" <?php if($status == 'Active'){?>selected<?php } ?>>Active</option>
|
||||
<option value="Inactive" <?php if($status == 'Inactive'){?>selected<?php } ?>>Inactive</option>
|
||||
</select>
|
||||
<label style="display : none" class="form_err" id='status_error'></label>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for=""> Description</label>
|
||||
<textarea class="form-control" data-altName="Description" name="role_desc" id="role_desc" rows="6" ><?php echo $desc;?></textarea>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for=""> Role Permissions<span class="text-danger font-weight-bold">*</span></label>
|
||||
<div class="roles_checkbox">
|
||||
<?php
|
||||
if(isset($menus) && !empty($menus))
|
||||
{
|
||||
foreach($menus as $m)
|
||||
{
|
||||
?>
|
||||
<div class="form-check">
|
||||
<input class="form-check-input role_perm" type="checkbox" value="<?php echo $m['id'];?>" name="role_permissions[]" <?php if(in_array($m['id'], $permissions)){?>checked<?php } ?> >
|
||||
<label class="form-check-label" ><?php echo $m['menu_name'];?></label>
|
||||
</div>
|
||||
<?php
|
||||
}
|
||||
}
|
||||
?>
|
||||
</div>
|
||||
<label style="display : none" class="form_err" id='permissions_error'></label>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</form>
|
||||
<?php if($idVal > 0) { ?>
|
||||
<button type="button" class="btn bg-dark btn-primary btn-md subject_addbtn" onclick='validate_role_form()'>Update</button>
|
||||
<?php } else { ?>
|
||||
<button type="button" class="btn btn-primary btn-md subject_addbtn" onclick='validate_role_form()'>Save</button>
|
||||
<?php } ?>
|
||||
|
||||
|
||||
|
||||
<a href='<?php echo base_url()."roles";?>'>
|
||||
<button class="btn btn-dark btn-md">Back</button>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
<!--End right-top side-->
|
||||
</div>
|
||||
<!-- <script src="<?php echo base_url(); ?>assets-hms/js/jquery-3.2.1.slim.min.js"></script> -->
|
||||
<script src="<?php echo base_url(); ?>assets-hms/js/jquery-3.4.1.min.js" ></script>
|
||||
<script src="<?php echo base_url(); ?>assets-hms/js/popper.min.js"></script>
|
||||
<script src="<?php echo base_url(); ?>assets-hms/js/bootstrap.min.js"></script>
|
||||
<script src="https://cdn.datatables.net/1.10.22/js/jquery.dataTables.min.js"></script>
|
||||
<script defer src="<?php echo base_url(); ?>assets-hms/js/all.js"></script>
|
||||
<script defer src="<?php echo base_url(); ?>assets-hms/js/main.js"></script>
|
||||
<script src="<?php echo base_url(); ?>assets-hms/owl-carousel/js/owl.carousel.min.js"></script>
|
||||
<script>
|
||||
$(document).ready(function(){
|
||||
$('.user-drpdown').click(function(){
|
||||
$('.drpdown-items').toggle();
|
||||
});
|
||||
});
|
||||
//table js
|
||||
$('#tbl').DataTable( {
|
||||
"lengthMenu": [[5,10, 25, 50, -1], [5,10, 25, 50, "All"]]
|
||||
} );
|
||||
//table js end
|
||||
</script>
|
||||
|
||||
<script type="text/javascript">
|
||||
var jsAddOrEdit = '<?php echo $idVal;?>';
|
||||
$(document).ready(function(){
|
||||
$(document).on('keypress', function(e){
|
||||
if(e.which==13)
|
||||
{
|
||||
validate_role_form();
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
function hide_all_role_errors()
|
||||
{
|
||||
$('#role_name_error').hide();
|
||||
$('#status_error').hide();
|
||||
$('#permissions_error').hide();
|
||||
}
|
||||
|
||||
function validate_role_form()
|
||||
{
|
||||
hide_all_role_errors();
|
||||
|
||||
var errArr = new Array();
|
||||
|
||||
var rname = $('#role_name').val().trim();
|
||||
if(rname=='')
|
||||
errArr.push('role_name_Sep@Str_Please enter the role name.');
|
||||
else
|
||||
{
|
||||
var alphanumeric = /^[a-z\0-9\-\s]+$/i;
|
||||
if(!alphanumeric.test(rname)){
|
||||
errArr.push('role_name_Sep@Str_Please enter only Alphanumeric values.');
|
||||
} else {
|
||||
var urltogo = '<?php echo base_url();?>'+'HmsAdmin/ajaxCheckIsRoleAlreadyExists';
|
||||
var reqdData = 'role_name='+$('#role_name').val()+'&id='+$('#id').val();
|
||||
|
||||
$.ajax({
|
||||
type: "POST",
|
||||
url: urltogo,
|
||||
data: reqdData,
|
||||
async: false,
|
||||
success: function(result)
|
||||
{
|
||||
result = result.trim();
|
||||
//alert(result);
|
||||
if(result == 'Duplicate Role')
|
||||
errArr.push('role_name_Sep@Str_This role name already exists.');
|
||||
else if(result == 'Insufficient Data')
|
||||
errArr.push('role_name_Sep@Str_Insufficient Data Sent. Please check again.');
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
var status = $('#status').val().trim();
|
||||
if(status=='')
|
||||
errArr.push('status_Sep@Str_Please select the user status.');
|
||||
|
||||
var epCnt = 0;
|
||||
$('.role_perm').each(function(){
|
||||
if($(this).prop('checked'))
|
||||
epCnt++;
|
||||
});
|
||||
if(epCnt == 0)
|
||||
errArr.push('permissions_Sep@Str_Please select the role permissions.');
|
||||
|
||||
//var errArr = new Array();
|
||||
if(errArr.length>0)
|
||||
{
|
||||
for(i=0; i<errArr.length; i++)
|
||||
{
|
||||
var resArr = errArr[i].split("_Sep@Str_");
|
||||
$("#"+resArr[0]+"_error").html(resArr[1]);;
|
||||
$("#"+resArr[0]+"_error").show();
|
||||
}
|
||||
var xxxVal = errArr[0].split('_Sep@Str_');
|
||||
$('#'+xxxVal[0]).focus();
|
||||
return false;
|
||||
}
|
||||
else{
|
||||
$('#addEditRoleForm').submit();
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
252
hostel/application/views/hms-admin/add-edit-user.php
Normal file
@ -0,0 +1,252 @@
|
||||
<style type="text/css">
|
||||
.con-pass {
|
||||
position: absolute;
|
||||
top: 8px;
|
||||
right: 8px;
|
||||
cursor: pointer;
|
||||
color: #878a8d;
|
||||
}
|
||||
.bg-dark {
|
||||
background-color: #032DA1 !important;
|
||||
}
|
||||
</style>
|
||||
<main class="common_margin" id="main">
|
||||
<div class="main-wrap">
|
||||
<div class="dashboard-cover">
|
||||
<div class="subject_r">
|
||||
<div class="subsec_sec">
|
||||
<div class="subject_r">
|
||||
<div class="subject_lsec">
|
||||
<div class="common-heading">
|
||||
<h2><?php echo $title;?></h2>
|
||||
</div>
|
||||
|
||||
<?php
|
||||
$name=''; $eid=''; $rid=''; $status='';
|
||||
if(isset($details) && !empty($details))
|
||||
{
|
||||
$name = $details[0]['admin_name'];
|
||||
$eid = $details[0]['email'];
|
||||
$rid = $details[0]['admin_role_ids'];
|
||||
$status = $details[0]['status'];
|
||||
}
|
||||
?>
|
||||
|
||||
<form action='<?php echo base_url().'add-edit-user/'.$idVal;?>' id="addEditUserForm" method="post">
|
||||
<input type='hidden' name='id' id='id' value='<?php echo $idVal;?>' />
|
||||
<div class="subject_lformarea role_formarea">
|
||||
<div class="form-group">
|
||||
<label for="">Full Name<span class="text-danger font-weight-bold">*</span></label>
|
||||
<input type="text" name="admin_name" id="admin_name" value='<?php echo $name;?>' class="form-control" >
|
||||
<label style="display:none" class="form_err" id='admin_name_error'></label>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="">Email ID<span class="text-danger font-weight-bold">*</span></label>
|
||||
<input type="email" name="email" id="email" value='<?php echo $eid;?>' class="form-control">
|
||||
<label style="display:none" class="form_err" id='email_error'></label>
|
||||
</div>
|
||||
|
||||
<?php if($idVal == 0){?>
|
||||
<div class="form-group">
|
||||
<label for="">Password<span class="text-danger font-weight-bold">*</span></label>
|
||||
<div class="password-wrp">
|
||||
<input type="password" name="password" id="password" class="form-control password_hide" >
|
||||
<span class="passwrd-icon icon-y"><i class="far fa-eye"></i></span>
|
||||
</div>
|
||||
<label style="display:none" class="form_err" id='password_error'></label>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="">Confirm Password<span class="text-danger font-weight-bold">*</span></label>
|
||||
<div class="password-wrp">
|
||||
<input type="password" id="confirm-password" name="confirm_password" class=" form-control password_hide_c" >
|
||||
<span class="con-pass icon-y"><i class="far fa-eye"></i></span>
|
||||
</div>
|
||||
<label style="display:none" class="form_err" id='confirm-password_error'></label>
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="">User Role<span class="text-danger font-weight-bold">*</span></label>
|
||||
<select name="admin_role_ids" id="admin_role_ids" class="form-control">
|
||||
<option value="">Choose Role</option>
|
||||
<?php
|
||||
if(isset($roles) && !empty($roles))
|
||||
{
|
||||
foreach($roles as $rs)
|
||||
{
|
||||
?>
|
||||
<option value="<?php echo $rs['id'];?>" <?php if($rs['id'] == $rid){?>selected<?php } ?>><?php echo $rs['role_name'];?></option>
|
||||
<?php
|
||||
}
|
||||
}
|
||||
?>
|
||||
</select>
|
||||
<label style="display:none" class="form_err" id='admin_role_ids_error'></label>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="">Status<span class="text-danger font-weight-bold">*</span></label>
|
||||
<select name="status" id="status" class="form-control">
|
||||
<option value="">Choose Status</option>
|
||||
<option value="Active" <?php if($status == 'Active'){?>selected<?php } ?>>Active</option>
|
||||
<option value="Inactive" <?php if($status == 'Inactive'){?>selected<?php } ?>>Inactive</option>
|
||||
</select>
|
||||
<label style="display:none" class="form_err" id='status_error'></label>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
<button type="button" class="btn bg-dark btn-primary btn-md" type='button' onclick="validate_user_form()" class="subject_addbtn">Save</button>
|
||||
|
||||
|
||||
<a href='<?php echo base_url()."users";?>'>
|
||||
<button class="btn btn-dark btn-md">Back</button>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
<!--End right-top side-->
|
||||
</div>
|
||||
<!-- <script src="<?php echo base_url(); ?>assets-hms/js/jquery-3.2.1.slim.min.js"></script> -->
|
||||
<script src="<?php echo base_url(); ?>assets-hms/js/jquery-3.4.1.min.js" ></script>
|
||||
<script src="<?php echo base_url(); ?>assets-hms/js/popper.min.js"></script>
|
||||
<script src="<?php echo base_url(); ?>assets-hms/js/bootstrap.min.js"></script>
|
||||
<script src="https://cdn.datatables.net/1.10.22/js/jquery.dataTables.min.js"></script>
|
||||
<script defer src="<?php echo base_url(); ?>assets-hms/js/all.js"></script>
|
||||
<script defer src="<?php echo base_url(); ?>assets-hms/js/main.js"></script>
|
||||
<script src="<?php echo base_url(); ?>assets-hms/owl-carousel/js/owl.carousel.min.js"></script>
|
||||
<script>
|
||||
$(document).ready(function(){
|
||||
$('.user-drpdown').click(function(){
|
||||
$('.drpdown-items').toggle();
|
||||
});
|
||||
});
|
||||
//table js
|
||||
$('#tbl').DataTable( {
|
||||
"lengthMenu": [[5,10, 25, 50, -1], [5,10, 25, 50, "All"]]
|
||||
} );
|
||||
//table js end
|
||||
</script>
|
||||
|
||||
<script type="text/javascript">
|
||||
var jsAddOrEdit = '<?php echo $idVal;?>';
|
||||
$(document).ready(function(){
|
||||
$(document).on('keypress', function(e){
|
||||
if(e.which==13)
|
||||
{
|
||||
validate_user_form();
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
function hide_all_user_errors()
|
||||
{
|
||||
$('#admin_name_error').hide();
|
||||
$('#email_error').hide();
|
||||
|
||||
if(jsAddOrEdit == 0){
|
||||
$('#password_error').hide();
|
||||
$('#confirm-password_error').hide();
|
||||
}
|
||||
|
||||
$('#admin_role_ids_error').hide();
|
||||
$('#status_error').hide();
|
||||
}
|
||||
|
||||
function validate_user_form()
|
||||
{
|
||||
hide_all_user_errors();
|
||||
|
||||
var errArr = new Array();
|
||||
|
||||
var admin_name = $('#admin_name').val().trim();
|
||||
if(admin_name==''){
|
||||
errArr.push('admin_name_Sep@Str_Please enter the full name.');
|
||||
} else {
|
||||
var alphanumeric = /^[a-z\0-9\-\s]+$/i;
|
||||
if(!alphanumeric.test(admin_name)){
|
||||
errArr.push('admin_name_Sep@Str_Please enter only Alphanumeric values.');
|
||||
}
|
||||
}
|
||||
|
||||
var email = $('#email').val().trim();
|
||||
if(email=='')
|
||||
errArr.push('email_Sep@Str_Please enter the Email Id.');
|
||||
else
|
||||
{
|
||||
var regEmailReg = /^[a-zA-Z0-9._-]+@[a-zA-Z-]+\.[a-zA-Z.]{2,5}$/;
|
||||
if(!regEmailReg.test($('#email').val()))
|
||||
errArr.push('email_Sep@Str_Please enter a valid email address.');
|
||||
else
|
||||
{
|
||||
var urltogo = '<?php echo base_url();?>'+'HmsAdmin/ajaxCheckIsUserEmailAlreadyExists';
|
||||
var reqdData = 'email='+$('#email').val()+'&id='+$('#id').val();
|
||||
|
||||
$.ajax({
|
||||
type: "POST",
|
||||
url: urltogo,
|
||||
data: reqdData,
|
||||
async: false,
|
||||
success: function(result)
|
||||
{
|
||||
result = result.trim();
|
||||
//alert(result);
|
||||
if(result == 'Duplicate Email')
|
||||
errArr.push('email_Sep@Str_This email id already exists.');
|
||||
else if(result == 'Insufficient Data')
|
||||
errArr.push('email_Sep@Str_Insufficient Data Sent. Please check again.');
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
if(jsAddOrEdit == 0)
|
||||
{
|
||||
var password = $('#password').val().trim();
|
||||
if(password=='')
|
||||
errArr.push('password_Sep@Str_Please enter the password.');
|
||||
else{
|
||||
var regPwdReg = /(?=.*[a-zA-Z0-9])(?=.*?\W).{6,}/;
|
||||
if(!regPwdReg.test($('#password').val()))
|
||||
errArr.push('password_Sep@Str_Password should be minimum 6 characters and should have atleast one special character.');
|
||||
}
|
||||
|
||||
var confirm_password = $('#confirm-password').val().trim();
|
||||
if(confirm_password=='')
|
||||
errArr.push('confirm-password_Sep@Str_Please confirm the password.');
|
||||
|
||||
if($('#password').val()!='' && $('#confirm-password').val()!='' && ($('#password').val() != $('#confirm-password').val()) )
|
||||
errArr.push('confirm-password_Sep@Str_Password & confirm Password does not match.');
|
||||
}
|
||||
|
||||
var role_id = $('#admin_role_ids').val().trim();
|
||||
if(role_id=='')
|
||||
errArr.push('admin_role_ids_Sep@Str_Please select the user role.');
|
||||
|
||||
var status = $('#status').val().trim();
|
||||
if(status=='')
|
||||
errArr.push('status_Sep@Str_Please select the user status.');
|
||||
|
||||
//var errArr = new Array();
|
||||
if(errArr.length>0)
|
||||
{
|
||||
for(i=0; i<errArr.length; i++)
|
||||
{
|
||||
var resArr = errArr[i].split("_Sep@Str_");
|
||||
$("#"+resArr[0]+"_error").html(resArr[1]);;
|
||||
$("#"+resArr[0]+"_error").show();
|
||||
}
|
||||
var xxxVal = errArr[0].split('_Sep@Str_');
|
||||
$('#'+xxxVal[0]).focus();
|
||||
return false;
|
||||
}
|
||||
else{
|
||||
$('#addEditUserForm').submit();
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
243
hostel/application/views/hms-admin/assign_students.php
Normal file
@ -0,0 +1,243 @@
|
||||
<style type="text/css">
|
||||
#common_err {
|
||||
color: red;
|
||||
text-align: center;
|
||||
}
|
||||
label.error {
|
||||
color : red;
|
||||
}
|
||||
.field-container {
|
||||
margin : 0 0 20px !important;
|
||||
}
|
||||
.disabledByMe{
|
||||
pointer-events: none;
|
||||
}
|
||||
</style>
|
||||
<div class="row dash-main-row">
|
||||
<div class="col-md-10 col-lg-10 p-0">
|
||||
<div class="mt-3 mb-3">
|
||||
<h5><?= $option ?></h4>
|
||||
</div>
|
||||
<div class="block-head">
|
||||
<h3 class="dash-tab-head">Assign Rooms</h3>
|
||||
<div id="common_err"></div>
|
||||
</div>
|
||||
<form id="assign-student-form" action="<?php echo base_url() ?>assign-students/<?= $student_id ?>" method="POST">
|
||||
<div class="row">
|
||||
<div class="col-md-5">
|
||||
<?php
|
||||
if($status == 'Update') {
|
||||
echo '<input type="hidden" name="hms_student_id" id="hms_student_id">';
|
||||
}
|
||||
?>
|
||||
|
||||
<div class="field-container">
|
||||
<label>Block name <span style="color:red">*</span></label>
|
||||
<select id="block" name="block_id" onChange="getData(this.value,'hms_floors','block_id','#floor','floor_name')" class="form-control assign-select-box">
|
||||
<option selected value="">Select Block</option>
|
||||
<?php foreach($blocks as $key => $value) { ?>
|
||||
<option value="<?= $value['id'] ?>"><?= $value['block_name'] ?></option>
|
||||
<?php } ?>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div class="field-container">
|
||||
<label>Room name<span style="color:red">*</span></label>
|
||||
<select id="rooms" onChange="getData(this.value,'hms_beds','room_id','#beds','bed_name','yes')" name="room_id" class="form-control assign-select-box">
|
||||
<option selected value="">Select Room</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div class="field-container">
|
||||
<label>Food type<span style="color:red">*</span></label>
|
||||
<select id="food" readonly name="food_type" class="form-control disabledByMe assign-select-box">
|
||||
<?php if($food_type == 'Veg') {
|
||||
echo '<option selected value="Veg">Veg</option>';
|
||||
echo '<option value="Non-Veg">Non-Veg</option>';
|
||||
} else {
|
||||
echo '<option value="Veg">Veg</option>';
|
||||
echo '<option selected value="Non-Veg">Non-Veg</option>';
|
||||
} ?>
|
||||
|
||||
|
||||
</select>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="col-md-5">
|
||||
<div class="field-container">
|
||||
<label>Floor name<span style="color:red">*</span></label>
|
||||
<select id="floor" onChange="getData(this.value,'hms_rooms','room_floor_id','#rooms','room_name')" name="floor_id" class="form-control assign-select-box">
|
||||
<option selected value="">Select Floor</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="field-container">
|
||||
<label>Bed name<span style="color:red">*</span></label>
|
||||
<select id="beds" name="bed_id" class="form-control assign-select-box">
|
||||
<option selected value="">Select Bed</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mt-3 mb-3">
|
||||
<?php
|
||||
if($status == 'Update') { ?>
|
||||
<button type="submit" class="btn btn-primary student-update-btn">Update</button>
|
||||
<?php } else { ?>
|
||||
<button type="submit" class="btn btn-primary student-update-btn">Assign</button>
|
||||
<?php } ?>
|
||||
|
||||
<a href="<?php echo base_url() ?>students" class="btn btn-dark mt-0 ml-2 deleted-btn">Back</a>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<script>
|
||||
const getData = function(val,table,column,displayId,item,bed_clause='') {
|
||||
$('#common_err').hide();
|
||||
$.ajax({
|
||||
url : '<?php echo base_url() ?>' + 'HmsAdmin/ajax_get_rows',
|
||||
data : {
|
||||
id : val,
|
||||
table : table,
|
||||
column : column,
|
||||
bed_clause : bed_clause
|
||||
},
|
||||
type : 'POST',
|
||||
async : false,
|
||||
success: function(data){
|
||||
|
||||
if(!data){
|
||||
$('#common_err').show();
|
||||
$('#common_err').text('Selected Block has not been fully assigned with Floor or Rooms or Beds');
|
||||
} else {
|
||||
data = JSON.parse(data);
|
||||
|
||||
console.log(data);
|
||||
|
||||
$(data).each(function(index,ele) {
|
||||
console.log(ele)
|
||||
if(index == 0) {
|
||||
$(displayId).empty();
|
||||
$(displayId).append('<option selected value="">Select Option</option>');
|
||||
}
|
||||
$(displayId).append('<option value="'+ele.id+'">'+ele[item]+'</option>')
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
const checkOnLoad = function() {
|
||||
$.ajax({
|
||||
url : '<?php echo base_url() ?>' + 'HmsAdmin/ajax_get_rows_onready',
|
||||
data : {
|
||||
id : '<?php echo $student_id ?>',
|
||||
},
|
||||
type : 'POST',
|
||||
async : false,
|
||||
success: function(data){
|
||||
|
||||
if(data) {
|
||||
data = JSON.parse(data);
|
||||
|
||||
let floors = data.floor;
|
||||
let rooms = data.rooms;
|
||||
let beds = data.beds;
|
||||
let blocks = data.blocks;
|
||||
let food = data.food_type;
|
||||
|
||||
if($('#hms_student_id').length > 0)
|
||||
$('#hms_student_id').val(data.hms_student_id);
|
||||
|
||||
$(floors).each(function(index,ele) {
|
||||
if(data.floor_name == ele.floor_name) {
|
||||
$('#floor').append('<option selected value="'+ele.id+'">'+ele.floor_name+'</option>');
|
||||
} else {
|
||||
$('#floor').append('<option value="'+ele.id+'">'+ele.floor_name+'</option>')
|
||||
}
|
||||
});
|
||||
|
||||
$(rooms).each(function(index,ele) {
|
||||
if(data.room_name == ele.room_name) {
|
||||
$('#rooms').append('<option selected value="'+ele.id+'">'+ele.room_name+'</option>');
|
||||
} else {
|
||||
$('#rooms').append('<option value="'+ele.id+'">'+ele.room_name+'</option>')
|
||||
}
|
||||
})
|
||||
|
||||
$(beds).each(function(index,ele) {
|
||||
if(data.bed_name == ele.bed_name) {
|
||||
$('#beds').append('<option selected value="'+ele.id+'">'+ele.bed_name+'</option>');
|
||||
} else {
|
||||
$('#beds').append('<option value="'+ele.id+'">'+ele.bed_name+'</option>')
|
||||
}
|
||||
})
|
||||
|
||||
$(blocks).each(function(index,ele) {
|
||||
|
||||
if(data.block_name == ele.block_name) {
|
||||
$('#block').append('<option selected value="'+ele.id+'">'+ele.block_name+'</option>');
|
||||
} else {
|
||||
$('#block').append('<option value="'+ele.id+'">'+ele.block_name+'</option>')
|
||||
}
|
||||
})
|
||||
|
||||
|
||||
$("#food option").each(function(index,ele)
|
||||
{
|
||||
if(ele.value == food){
|
||||
$('#food').val(ele.value);
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
$(document).ready(function() {
|
||||
checkOnLoad();
|
||||
|
||||
$("#assign-student-form").validate({
|
||||
ignore: ':hidden',
|
||||
rules: {
|
||||
|
||||
block_id : 'required',
|
||||
floor_id : 'required',
|
||||
room_id : 'required',
|
||||
bed_id : 'required',
|
||||
food_type : 'required'
|
||||
|
||||
},
|
||||
messages : {
|
||||
block_id: {
|
||||
required: "Please select a block",
|
||||
},
|
||||
floor_id: {
|
||||
required: "Please select a floor",
|
||||
},
|
||||
room_id: {
|
||||
required: "Please select a room",
|
||||
},
|
||||
bed_id: {
|
||||
required: "Please select a bed",
|
||||
},
|
||||
food_type: {
|
||||
required: "Please select a food type",
|
||||
}
|
||||
},
|
||||
submitHandler: function(form) {
|
||||
form.submit();
|
||||
}
|
||||
});
|
||||
|
||||
})
|
||||
</script>
|
155
hostel/application/views/hms-admin/beds.php
Normal file
@ -0,0 +1,155 @@
|
||||
<div class="row dash-main-row">
|
||||
<div class="col-md-10 col-lg-10 p-0">
|
||||
<ul class="nav nav-pills mb-3 rooms-sections row" id="pills-tab" role="tablist">
|
||||
<li class="nav-item section-sec col-md-3 p-0">
|
||||
<a class="nav-link sec-head " href="<?php echo base_url() ?>blocks" role="tab" aria-controls="pills-blocks" aria-selected="true">Blocks</a>
|
||||
</li>
|
||||
<li class="nav-item section-sec col-md-3 p-0">
|
||||
<a class="nav-link sec-head" href="<?php echo base_url() ?>floors" aria-selected="false">Floors</a>
|
||||
</li>
|
||||
<li class="nav-item section-sec col-md-3 p-0">
|
||||
<a class="nav-link sec-head" href="<?php echo base_url() ?>rooms" aria-selected="false">Rooms</a>
|
||||
</li>
|
||||
<li class="nav-item section-sec col-md-3 p-0">
|
||||
<a class="nav-link sec-head active" href="<?php echo base_url() ?>beds" aria-selected="false">Beds</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row dash-main-row">
|
||||
<div class="col-md-12 col-lg-12 p-0">
|
||||
|
||||
<?php if ($this->session->flashdata('success')) { ?>
|
||||
<div class="alert alert-success alert-dismissible fade show" role="alert">
|
||||
<p><?php echo $this->session->flashdata('success') ?></p>
|
||||
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
||||
<?php if ($this->session->flashdata('failed')) { ?>
|
||||
<div class="alert alert-danger alert-dismissible fade show" role="alert">
|
||||
<p><?php echo $this->session->flashdata('failed') ?></p>
|
||||
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
||||
<table class="table example dash-table mb-3">
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col" class="dash-th">SI.No</th>
|
||||
<th scope="col" class="dash-th rooms-th">Bed Number</th>
|
||||
<th scope="col" class="dash-th rooms-th">Room No</th>
|
||||
<th scope="col" class="dash-th rooms-th">Room Type</th>
|
||||
<th scope="col" class="dash-th rooms-th">Floor Name</th>
|
||||
<th scope="col" class="dash-th rooms-th">Block</th>
|
||||
<th scope="col" class="dash-th rooms-th">Status</th>
|
||||
<th scope="col" class="dash-th-action">Actions</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tfoot class="text-center">
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</tfoot>
|
||||
<tbody>
|
||||
<?php if($beds_data) { ?>
|
||||
<?php foreach ($beds_data as $key => $value) {
|
||||
|
||||
$link = $value['student_id'] == NULL ? 'javascript:void(0)' : base_url() . 'profile/'.$value['student_id'];
|
||||
?>
|
||||
<tr>
|
||||
<td ><?= $key + 1 ?></td>
|
||||
<td class="rooms-td"><?= $value['bed_name'] ?></td>
|
||||
<td class="rooms-td"><?= $value['room_name'] ?></td>
|
||||
<td class="rooms-td"><?= $value['room_ac'] ?></td>
|
||||
<td class="rooms-td"><?= $value['floor_name'] ?></td>
|
||||
<td class="rooms-td"><?= $value['block_name'] ?></td>
|
||||
<td class="rooms-td"><?= $value['bed_status'] ?></td>
|
||||
<td class="preview-img">
|
||||
<a href="<?= $link ?>">
|
||||
<img class="mr-1" src="<?php echo base_url() ?>assets-hms/images/dashboard/eye-icon.svg" alt="">
|
||||
</a>
|
||||
<img onclick ="beddel(<?php echo $value['id'] ?>)" src="<?= base_url() ?>assets-hms/images/dashboard/delete-icon.svg" alt="" data-toggle="modal" data-target="#DeleteRoomsCenter" data-backdrop="static" data-keyboard="false">
|
||||
</td>
|
||||
</tr>
|
||||
<?php } ?>
|
||||
<?php } ?>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Delete Modal -->
|
||||
<div class="modal fade" id="DeleteRoomsCenter" tabindex="-1" role="dialog" aria-labelledby="DeleteRoomsCenterTitle" aria-hidden="true">
|
||||
<div class="modal-dialog modal-dialog-centered" role="document">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header add-block-header">
|
||||
<h5 class="modal-title" id="exampleModalLongTitle">Delete Floor</h5>
|
||||
</div>
|
||||
|
||||
<div class="modal-body add-block-body">
|
||||
<input type="hidden" id="bed_del_id" />
|
||||
<h6>Are you sure you want to delete ?</h6>
|
||||
</div>
|
||||
|
||||
<div class="modal-footer add-block-footer">
|
||||
<button type="button" onclick="deletedata($('#bed_del_id').val());" class="btn btn-danger ">Yes</button>
|
||||
<button type="button" class="btn btn-dark " data-dismiss="modal">No</button>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<script>
|
||||
|
||||
function beddel(icn){
|
||||
$('#bed_del_id').val(icn);
|
||||
}
|
||||
|
||||
//
|
||||
function deletedata(id){
|
||||
window.location.href = "<?php echo base_url(); ?>HmsAdmin/delete_beds/" + id;
|
||||
}
|
||||
|
||||
$(document).ready(function() {
|
||||
|
||||
$('.example').DataTable( {
|
||||
initComplete: function () {
|
||||
this.api().columns([1, 2, 3, 4, 5, 6]).every( function () {
|
||||
var column = this;
|
||||
var select = $('<select><option value="">Filter</option></select>')
|
||||
.appendTo( $(column.footer()).empty() )
|
||||
.on( 'change', function () {
|
||||
var val = $.fn.dataTable.util.escapeRegex(
|
||||
$(this).val()
|
||||
);
|
||||
|
||||
column
|
||||
.search( val ? '^'+val+'$' : '', true, false )
|
||||
.draw();
|
||||
} );
|
||||
|
||||
column.data().unique().sort().each( function ( d, j ) {
|
||||
select.append( '<option value="'+d+'">'+d+'</option>' )
|
||||
} );
|
||||
} );
|
||||
}
|
||||
} );
|
||||
|
||||
})
|
||||
</script>
|
483
hostel/application/views/hms-admin/blocks.php
Normal file
@ -0,0 +1,483 @@
|
||||
<style type="text/css">
|
||||
label.error {
|
||||
color : red;
|
||||
text-align: left;
|
||||
display: block;
|
||||
}
|
||||
.blockNameErr,#floor_name_err,#blockEditNameErr {
|
||||
color : red
|
||||
}
|
||||
</style>
|
||||
<div class="row dash-main-row">
|
||||
<div class="col-md-10 col-lg-10 p-0">
|
||||
<ul class="nav nav-pills mb-3 rooms-sections row" id="pills-tab" role="tablist">
|
||||
<li class="nav-item section-sec col-md-3 p-0">
|
||||
<a class="nav-link sec-head active" href="<?php echo base_url() ?>blocks" role="tab" aria-controls="pills-blocks" aria-selected="true">Blocks</a>
|
||||
</li>
|
||||
<li class="nav-item section-sec col-md-3 p-0">
|
||||
<a class="nav-link sec-head" href="<?php echo base_url() ?>floors" aria-selected="false">Floors</a>
|
||||
</li>
|
||||
<li class="nav-item section-sec col-md-3 p-0">
|
||||
<a class="nav-link sec-head" href="<?php echo base_url() ?>rooms" aria-selected="false">Rooms</a>
|
||||
</li>
|
||||
<li class="nav-item section-sec col-md-3 p-0">
|
||||
<a class="nav-link sec-head" href="<?php echo base_url() ?>beds" aria-selected="false">Beds</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row dash-main-row">
|
||||
<div class="col-md-12 col-lg-12 p-0">
|
||||
<?php if ($this->session->flashdata('success')) { ?>
|
||||
<div class="alert alert-success alert-dismissible fade show" role="alert">
|
||||
<p><?php echo $this->session->flashdata('success') ?></p>
|
||||
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
||||
<?php if ($this->session->flashdata('failed')) { ?>
|
||||
<div class="alert alert-danger alert-dismissible fade show" role="alert">
|
||||
<p><?php echo $this->session->flashdata('failed') ?></p>
|
||||
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
||||
<div class="block-head">
|
||||
<div class="block-head-left">
|
||||
<h3 class="dash-tab-head block-details-head">Block Details</h3>
|
||||
</div>
|
||||
|
||||
<div class="block-head-right">
|
||||
<button type="button" onClick="set_block_id(0)" class="btn btn-success" data-toggle="modal" data-backdrop="static" data-keyboard="false" data-target="#AddBlockCenter">+ Add Blocks</button>
|
||||
</div>
|
||||
</div>
|
||||
<table class="table example dash-table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col" class="dash-th">S.No</th>
|
||||
<th scope="col" class="dash-th">Block</th>
|
||||
<th scope="col" class="dash-th rooms-th">Floor</th>
|
||||
<th scope="col" class="dash-th rooms-th">Rooms</th>
|
||||
<th scope="col" class="dash-th rooms-th">Total Beds</th>
|
||||
<th scope="col" class="dash-th rooms-th">Total Students</th>
|
||||
<th scope="col" class="dash-th-action">Actions</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tfoot class="text-center">
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</tfoot>
|
||||
<tbody>
|
||||
<?php foreach ($blocks_data as $key => $value) {
|
||||
$roomCount = $value['room_count'] > 0 ? $value['room_count'] : 0;
|
||||
?>
|
||||
<tr>
|
||||
<td ><?= $key + 1 ?></td>
|
||||
<td><?= $value['block_name'] ?></td>
|
||||
<td class="rooms-td"><?= $value['floor_count'] ?></td>
|
||||
<td class="rooms-td"><?= $roomCount ?></td>
|
||||
<td class="rooms-td"><?= $value['beds_count'] ?></td>
|
||||
<td class="rooms-td"><?= $value['student_count'] ?></td>
|
||||
<td class="preview-img">
|
||||
<a data-toggle="modal" onClick="set_block_id(<?= $value['id'] ?>)" data-target="#EditBlockCenter" data-backdrop="static" data-keyboard="false">
|
||||
<img class="action-img" src="<?php echo base_url() ?>assets-hms/images/dashboard/edit-icon.svg" alt="">
|
||||
</a>
|
||||
|
||||
<a data-toggle="modal" onclick ="coursedel(<?php echo $value['id'] ?>)" href="#deleteModal"><img src="<?php echo base_url() ?>assets-hms/images/dashboard/delete-icon.svg" alt="" data-toggle="modal" data-target="#DeleteRoomsCenter" data-backdrop="static" data-keyboard="false"></a>
|
||||
</td>
|
||||
|
||||
</tr>
|
||||
<?php } ?>
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- Add Modal -->
|
||||
<div class="modal fade" id="AddBlockCenter" tabindex="-1" role="dialog" aria-labelledby="AddBlockCenterTitle" aria-hidden="true">
|
||||
|
||||
<div class="modal-dialog modal-dialog-centered" role="document">
|
||||
|
||||
<div class="modal-content">
|
||||
<form action="<?php echo base_url() ?>HmsAdmin/ae_blocks/0" id="block-form" method="post">
|
||||
<div class="modal-header add-block-header">
|
||||
<h5 class="modal-title" id="exampleModalLongTitle">Add New Block</h5>
|
||||
</div>
|
||||
|
||||
<div class="modal-body add-block-body">
|
||||
|
||||
<p>Block Name<span style="color:red">*</span></p>
|
||||
<input type="text" name="block_name" class="form-control edit-block-input add-block-input">
|
||||
<div class="blockNameErr"></div>
|
||||
<div class="d-flex mt-4 mb-2">
|
||||
<p>Enter Floor Names</p>
|
||||
<i class="fas fa-plus add-icon" onclick="addInputField()"></i>
|
||||
</div>
|
||||
|
||||
<div class="add-floors-container">
|
||||
<div class="add-floor-inputs">
|
||||
<input type="text" name="floor_names[0]" placeholder="Enter Name" class="add-input form-control add-block-input">
|
||||
<img class="edit-delete-ico" style="visibility:hidden" src="<?php echo base_url() ?>assets-hms/images/dashboard/delete-icon.svg" alt="">
|
||||
</div>
|
||||
<label id="floor_names[0]-error" class="error" for="floor_names[0]"></label>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="modal-footer add-block-footer">
|
||||
<button type="submit" class="btn btn-primary add-block-blue">Add Block</button>
|
||||
<button type="button" class="btn btn-secondary add-block-cancel" data-dismiss="modal">Cancel</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<!-- Add Modal Ends -->
|
||||
|
||||
<!-- Edit Modal -->
|
||||
<div class="modal fade" id="EditBlockCenter" tabindex="-1" role="dialog" aria-labelledby="EditBlockCenterTitle" aria-hidden="true">
|
||||
<div class="modal-dialog modal-dialog-centered" role="document">
|
||||
|
||||
<div class="modal-content">
|
||||
<form id="block-edit-form" method="post">
|
||||
<div class="modal-header add-block-header">
|
||||
<h5 class="modal-title" id="exampleModalLongTitle">Edit Block</h5>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="modal-body add-block-body " id="edit-modal-body">
|
||||
|
||||
<p>Block Name<span style="color:red">*</span></p>
|
||||
<input type="text" name="block_edit_name" id="block-edit-input" class="form-control edit-block-input add-block-input">
|
||||
<div id="blockEditNameErr"></div>
|
||||
<div class="d-flex mt-4 mb-2">
|
||||
<p>Add Floor</p>
|
||||
<i class="fas fa-plus add-icon" onclick="addInputField()"></i>
|
||||
</div>
|
||||
<div class="add-floors-container" id="edit_floors-container">
|
||||
|
||||
</div>
|
||||
<div id="floor_name_err"></div>
|
||||
</div>
|
||||
|
||||
<div class="modal-footer add-block-footer">
|
||||
<button type="submit" class="btn btn-primary add-block-blue" >Update</button>
|
||||
<button type="button" class="btn btn-secondary add-block-cancel" data-dismiss="modal">Cancel</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<!-- Edit Modal Ends -->
|
||||
|
||||
<!-- Delete Modal -->
|
||||
<div class="modal fade" id="DeleteRoomsCenter" tabindex="-1" role="dialog" aria-labelledby="DeleteRoomsCenterTitle" aria-hidden="true">
|
||||
<div class="modal-dialog modal-dialog-centered" role="document">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header add-block-header">
|
||||
<h5 class="modal-title" id="exampleModalLongTitle">Delete Block</h5>
|
||||
</div>
|
||||
|
||||
<div class="modal-body add-block-body">
|
||||
<input type="hidden" id="bl_id" />
|
||||
<h6>Are you sure you want to delete ?</h6>
|
||||
</div>
|
||||
|
||||
<div class="modal-footer add-block-footer">
|
||||
<button type="button" onclick="deletedata($('#bl_id').val());" class="btn btn-danger ">Yes</button>
|
||||
<button type="button" class="btn btn-dark " data-dismiss="modal">No</button>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
let block_id;
|
||||
let idCount = 0;
|
||||
$(document).ready(function() {
|
||||
|
||||
$('.example').DataTable( {
|
||||
initComplete: function () {
|
||||
this.api().columns([1]).every( function () {
|
||||
var column = this;
|
||||
var select = $('<select><option value="">Filter</option></select>')
|
||||
.appendTo( $(column.footer()).empty() )
|
||||
.on( 'change', function () {
|
||||
var val = $.fn.dataTable.util.escapeRegex(
|
||||
$(this).val()
|
||||
);
|
||||
|
||||
column
|
||||
.search( val ? '^'+val+'$' : '', true, false )
|
||||
.draw();
|
||||
} );
|
||||
|
||||
column.data().unique().sort().each( function ( d, j ) {
|
||||
select.append( '<option value="'+d+'">'+d+'</option>' )
|
||||
} );
|
||||
} );
|
||||
}
|
||||
} );
|
||||
|
||||
// $('#AddBlockCenter').modal('show');
|
||||
|
||||
$('.add-input').each(function(index,ele) {
|
||||
$(ele).attr('name', 'floor_names['+idCount+']');
|
||||
idCount++;
|
||||
});
|
||||
|
||||
// Add Form validation
|
||||
$("#block-form").validate({
|
||||
ignore: ':hidden',
|
||||
rules: {
|
||||
<?php for($i = 0; $i <= 20; $i++) {
|
||||
echo "'floor_names[$i]' : {
|
||||
required : true,
|
||||
alphanumeric : true
|
||||
},";
|
||||
}?>
|
||||
block_name: {
|
||||
required: true,
|
||||
minlength: 1,
|
||||
alphanumeric : true
|
||||
}
|
||||
},
|
||||
messages: {
|
||||
block_name: {
|
||||
required: "Please provide a block name",
|
||||
minlength : "Please enter more than 1 Character"
|
||||
},
|
||||
},
|
||||
submitHandler: function(form) {
|
||||
var inputValue = $("input[name='block_name']",form).val();
|
||||
inputValue = inputValue.toLowerCase();
|
||||
|
||||
let flag = false;
|
||||
|
||||
$.ajax({
|
||||
url : '<?php echo base_url() ?>' + 'HmsAdmin/ajax_validate_block_name',
|
||||
data : {
|
||||
value : inputValue,
|
||||
id : block_id
|
||||
},
|
||||
type : 'POST',
|
||||
async : false,
|
||||
success: function(data){
|
||||
console.log(data);
|
||||
if(data == 'success'){
|
||||
flag = true
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
if(flag) {
|
||||
form.submit();
|
||||
} else {
|
||||
$('.blockNameErr').show();
|
||||
$('.blockNameErr').text('This block name already exists.');
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
// Edit Form Validation
|
||||
$("#block-edit-form").validate({
|
||||
ignore: ':hidden',
|
||||
rules: {
|
||||
<?php for($i = 0; $i <= 20; $i++) {
|
||||
echo "'floor_edit_names[$i]' : {
|
||||
required : true,
|
||||
alphanumeric : true
|
||||
},";
|
||||
}?>
|
||||
block_edit_name: {
|
||||
required: true,
|
||||
minlength: 1,
|
||||
alphanumeric : true
|
||||
}
|
||||
},
|
||||
messages: {
|
||||
block_edit_name: {
|
||||
required: "Please provide a block name",
|
||||
minlength : "Please enter more than 1 Character"
|
||||
},
|
||||
},
|
||||
submitHandler: function(form,e) {
|
||||
$('#floor_name_err').hide();
|
||||
e.preventDefault();
|
||||
$(form).attr('action', "<?php echo base_url() ?>HmsAdmin/ae_blocks/"+block_id);
|
||||
|
||||
let flag = false;
|
||||
let dubFlag = false
|
||||
var inputValue = $("input[name='block_edit_name']",form).val();
|
||||
inputValue = inputValue.toLowerCase();
|
||||
|
||||
let floor_inputs = $('.edit-input');
|
||||
let floor_names = [];
|
||||
|
||||
$(floor_inputs).each(function(index,ele) {
|
||||
let val = $(ele).val().toLowerCase();
|
||||
floor_names.push(val);
|
||||
})
|
||||
|
||||
|
||||
|
||||
let findDuplicates = arr => arr.filter((item, index) => arr.indexOf(item) != index)
|
||||
|
||||
let dubArr = [...new Set(findDuplicates(floor_names))] // Unique duplicates
|
||||
console.log(dubArr);
|
||||
if(dubArr.length > 0) {
|
||||
$('#floor_name_err').show();
|
||||
$('#floor_name_err').text(dubArr.toString() + ' have been repeated, please change');
|
||||
} else {
|
||||
dubFlag = true;
|
||||
}
|
||||
|
||||
$.ajax({
|
||||
url : '<?php echo base_url() ?>' + 'HmsAdmin/ajax_validate_block_name',
|
||||
data : {
|
||||
value : inputValue,
|
||||
id : block_id,
|
||||
},
|
||||
type : 'POST',
|
||||
async : false,
|
||||
success: function(data){
|
||||
|
||||
$('#blockEditNameErr').hide();
|
||||
|
||||
if(data == 'success'){
|
||||
flag = true;
|
||||
} else {
|
||||
$('#blockEditNameErr').show();
|
||||
$('#blockEditNameErr').text('This block name already exists.');
|
||||
flag = false;
|
||||
}
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
if(flag && dubFlag) {
|
||||
form.submit();
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
//
|
||||
const addInputField = () => {
|
||||
|
||||
let checkForAdd = $('.edit-input').length;
|
||||
|
||||
|
||||
|
||||
let inputContainer;
|
||||
if(checkForAdd == 0) {
|
||||
inputContainer = '<div class="add-floor-inputs mt-3"><input type="text" name="floor_names['+idCount+']" placeholder="Enter Floor Name" class="form-control add-input add-block-input"><img onClick="deleteInput(this)" class="edit-delete-ico" src="<?php echo base_url() ?>assets-hms/images/dashboard/delete-icon.svg" alt=""></div><label id="floor_names['+idCount+']-error" class="error" for="floor_names['+idCount+']"></label>';
|
||||
} else {
|
||||
|
||||
inputContainer = '<div class="add-floor-inputs mt-3"><input type="text" name="floor_edit_names['+checkForAdd+']" placeholder="Enter Floor Name" class="edit-input form-control add-input add-block-input"><img onClick="deleteInput(this)" class="edit-delete-ico" src="<?php echo base_url() ?>assets-hms/images/dashboard/delete-icon.svg" alt=""></div><label id="floor_edit_names['+checkForAdd+']-error" class="error" for="floor_edit_names['+checkForAdd+']"></label>';
|
||||
}
|
||||
|
||||
$('.add-floors-container').append(inputContainer);
|
||||
idCount++;
|
||||
}
|
||||
|
||||
//
|
||||
const deleteInput = (ele) => {
|
||||
$(ele).parent().remove();
|
||||
}
|
||||
|
||||
//
|
||||
const deleteInputFromDb = (ele,floor_id) => {
|
||||
|
||||
$.ajax({
|
||||
url : '<?php echo base_url() ?>' + 'HmsAdmin/ajax_delete_floors',
|
||||
data : {
|
||||
id : floor_id
|
||||
},
|
||||
type : 'POST',
|
||||
async : false,
|
||||
success: function(data){
|
||||
if(data){
|
||||
$(ele).parent().remove();
|
||||
} else {
|
||||
$('#floor_name_err').text('Floor could not be deleted as it is linked with rooms');
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
//
|
||||
const set_block_id = (val) => {
|
||||
block_id = val;
|
||||
}
|
||||
|
||||
//
|
||||
jQuery.validator.addMethod("alphanumeric", function(value, element) {
|
||||
return this.optional(element) || /^[a-z0-9\-\s]+$/i.test(value);
|
||||
}, "Please enter alphanumeric Characters only");
|
||||
|
||||
//
|
||||
function coursedel(icn){
|
||||
$('#bl_id').val(icn);
|
||||
}
|
||||
|
||||
//
|
||||
function deletedata(id){
|
||||
window.location.href = "<?php echo base_url(); ?>HmsAdmin/delete_block/" + id;
|
||||
}
|
||||
|
||||
//
|
||||
$(".mobileMenu , .hidesidebar").click(function(){
|
||||
$(".sideMenu").toggle();
|
||||
});
|
||||
|
||||
//
|
||||
$("#EditBlockCenter").on('show.bs.modal', function(){
|
||||
$('#floor_name_err').text('')
|
||||
$('#edit_floors-container').empty();
|
||||
$.ajax({
|
||||
url : '<?php echo base_url() ?>' + 'HmsAdmin/ajax_get_block_floor_info',
|
||||
data : {
|
||||
id : block_id
|
||||
},
|
||||
type : 'POST',
|
||||
async : false,
|
||||
success: function(data){
|
||||
data = JSON.parse(data);
|
||||
|
||||
if(!data){
|
||||
$('#edit-modal-body').empty();
|
||||
$('#edit-modal-body').append('<p>Data could not be displayed due to some error. Please try again later</p>');
|
||||
}else{
|
||||
$('#block-edit-input').val(data.block_name);
|
||||
$('#edit_floors-container').append(data.floors);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
});
|
||||
</script>
|
12
hostel/application/views/hms-admin/common/footer.php
Normal file
@ -0,0 +1,12 @@
|
||||
<!-- <script src="<?php echo base_url(); ?>assets-hms/js/jquery-3.2.1.slim.min.js"></script> -->
|
||||
|
||||
<script src="<?php echo base_url(); ?>assets-hms/js/popper.min.js"></script>
|
||||
<script src="<?php echo base_url(); ?>assets-hms/js/bootstrap.min.js"></script>
|
||||
<script src="<?php echo base_url(); ?>assets-hms/js/jquery.dataTables.min.js"></script>
|
||||
<script defer src="<?php echo base_url(); ?>assets-hms/js/dataTables.fixedHeader.min.js"></script>
|
||||
<script defer src="<?php echo base_url(); ?>assets-hms/js/all.js"></script>
|
||||
<script defer src="<?php echo base_url(); ?>assets-hms/js/main.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
45
hostel/application/views/hms-admin/common/header.php
Normal file
@ -0,0 +1,45 @@
|
||||
|
||||
<!--right-top side-->
|
||||
<header id="header" class="dash-main-row">
|
||||
<div class="user-login-section">
|
||||
<!--<div class="notification-icon-wrap">
|
||||
<img src="<?php echo base_url(); ?>assets-hms/images/dashboard/notification.svg">
|
||||
<span></span>
|
||||
<div class="notifications-wrap">
|
||||
<div class="notifications">
|
||||
<h4>Notifications</h4>
|
||||
<ul>
|
||||
<li>
|
||||
<p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor </p>
|
||||
<i class="fas fa-trash-alt"></i>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>-->
|
||||
|
||||
<?php
|
||||
$yourName = ''; $namesFirstLetter='';
|
||||
$linSessData = $_SESSION['hmsAULoginData'];
|
||||
if(isset($linSessData['hms_lin_name'])){
|
||||
$yourName = $linSessData['hms_lin_name'];
|
||||
$namesFirstLetter = substr($yourName, 0, 1);
|
||||
}
|
||||
?>
|
||||
<div class="user-wrap">
|
||||
<div class="user-login-head">
|
||||
<div class="profileImage"><?php echo $namesFirstLetter;?></div>
|
||||
<h5><span class="user-name"><?php echo $yourName;?></span><i class="fa fa-caret-down" aria-hidden="true"></i><i class="fa fa-caret-up" aria-hidden="true"></i></h5>
|
||||
</div>
|
||||
<div class="login-wrap-open">
|
||||
<ul>
|
||||
<!-- <li><a href=""><span><i class="fa fa-user" aria-hidden="true"></i></span>My Profile</a></li> -->
|
||||
<li><a href="<?php echo base_url().'logout';?>"><span><i class="fas fa-sign-out-alt"></i></span>Sign Out</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mobileMenu">
|
||||
<i class="fas fa-bars"></i>
|
||||
</div>
|
||||
</header>
|
169
hostel/application/views/hms-admin/common/left-menu.php
Normal file
@ -0,0 +1,169 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title><?= $school_info['school_name']; ?> | Hostel Management | Dashboard</title>
|
||||
<link rel="icon" type="image/x-icon" href="<?php echo base_url(); ?>assets-hms/fav.png">
|
||||
<!--styles links-->
|
||||
<link rel="stylesheet" href="<?php echo base_url(); ?>assets-hms/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="<?php echo base_url(); ?>assets-hms/css/font-family.css">
|
||||
<link rel="stylesheet" href="<?php echo base_url(); ?>assets-hms/css/all.css">
|
||||
<link rel="stylesheet" href="<?php echo base_url(); ?>assets-hms/css/style.css">
|
||||
<link rel="stylesheet" href="<?php echo base_url(); ?>assets-hms/css/responsive.css">
|
||||
<link rel="stylesheet" href="<?php echo base_url(); ?>assets-hms/css/jquery.dataTables.min.css">
|
||||
<script src="<?php echo base_url(); ?>assets-hms/js/jquery-3.4.1.min.js" ></script>
|
||||
<script src="<?php echo base_url(); ?>assets-hms/js/jquery.validate.js"></script>
|
||||
<style>
|
||||
.logo-wrap img {
|
||||
width: 140px !important;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<!--left side content-->
|
||||
<aside id="mySidebar" class="sideMenu" >
|
||||
<div class="hidesidebar">
|
||||
<img class="close-img" src="<?php echo base_url(); ?>assets-hms/images/dashboard/close.png">
|
||||
</div>
|
||||
<div class="logo-wrap">
|
||||
<img src="<?php echo base_url(); ?>assets-hms/<?php echo $school_info['logo']; ?>">
|
||||
<div class="logo-name">
|
||||
<!-- <h3>Erisn</h3>
|
||||
<p>Classrooms</p> -->
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<ul>
|
||||
<?php
|
||||
$linSessData = $_SESSION['hmsAULoginData'];
|
||||
if(!isset($linSessData['hms_lin_login']))
|
||||
redirect(base_url().'admin');
|
||||
//echo '<pre>'; print_r($linSessData);exit;
|
||||
|
||||
$currentURL = current_url();
|
||||
$url = explode(base_url(), $currentURL);
|
||||
//echo $currentURL;
|
||||
//echo '<pre>';print_r($url);
|
||||
|
||||
$CI = &get_instance();
|
||||
$CI->load->model('HmsAdmin_Model');
|
||||
|
||||
$adminMenuHere = $CI->HmsAdmin_Model->get_admin_menu();
|
||||
//echo '<pre>'; print_r($adminMenuHere);exit;
|
||||
|
||||
$theRoleIds = '';
|
||||
$adminRolesHere = $CI->HmsAdmin_Model->get_admin_details('', "SELECT admin_role_ids FROM hms_admin WHERE id = ".$linSessData['hms_lin_id']);
|
||||
if(isset($adminRolesHere[0]['admin_role_ids']) && $adminRolesHere[0]['admin_role_ids']!='')
|
||||
$theRoleIds = $adminRolesHere[0]['admin_role_ids'];
|
||||
$adminRolePerms = array();
|
||||
if($theRoleIds!='')
|
||||
$adminRolePerms = $CI->HmsAdmin_Model->get_hms_admin_role_permissions("admin_role_ids IN(".$theRoleIds.")");
|
||||
|
||||
if(!empty($adminRolePerms))
|
||||
{
|
||||
$arpStr = ''; $arpArr = array();
|
||||
foreach($adminRolePerms as $arp)
|
||||
{
|
||||
if($arpStr=='')
|
||||
$arpStr = $arp['menu_ids'];
|
||||
else
|
||||
$arpStr .= ','.$arp['menu_ids'];
|
||||
}
|
||||
$arpArr = array_unique(explode(',', $arpStr));
|
||||
|
||||
if(!empty($adminMenuHere))
|
||||
{
|
||||
foreach($adminMenuHere as $key=>$menuData)
|
||||
{
|
||||
if(in_array($key, $arpArr))
|
||||
{
|
||||
if(isset($menuData[$key]) && !empty($menuData[$key]))
|
||||
{
|
||||
$smPageLinks = array();
|
||||
foreach($menuData[$key] as $tmactive){
|
||||
array_push($smPageLinks, $tmactive['page_link']);
|
||||
}
|
||||
//echo '<pre>'; print_r($smPageLinks);
|
||||
//echo $url[0];
|
||||
$mmmActive = '';
|
||||
if(in_array($url[1], $smPageLinks))
|
||||
$mmmActive = 'active';
|
||||
?>
|
||||
<li class="list <?php echo $mmmActive;?>">
|
||||
<a href="javascript:void(0)" id="btn-1" class="dropdown-toggle" data-toggle="collapse" data-target="#<?php echo $menuData['menu_name'].'-submenu';?>" aria-expanded="false">
|
||||
<img src="<?php echo base_url();?>assets-hms/images/dashboard/<?php echo $menuData['inactive_icon'];?>" class="icon-inactive">
|
||||
<img src="<?php echo base_url();?>assets-hms/images/dashboard/<?php echo $menuData['active_icon'];?>" class="icon-active">
|
||||
<span><?php echo $menuData['menu_name'];?></span>
|
||||
</a>
|
||||
<div class="nav collapse" id="<?php echo $menuData['menu_name'].'-submenu';?>" role="menu" aria-labelledby="btn-1">
|
||||
|
||||
<?php
|
||||
foreach($menuData[$key] as $subMenu)
|
||||
{
|
||||
?>
|
||||
<a class="dropdown-item <?php if($url[1]==$subMenu['page_link']){?>active<?php } ?>" href="<?php echo base_url().$subMenu['page_link'];?>"><?php echo $subMenu['menu_name'];?></a>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
</div>
|
||||
</li>
|
||||
<?php
|
||||
}
|
||||
else
|
||||
{
|
||||
?>
|
||||
<li class="list <?php if($url[1]==$menuData['page_link']){?>active<?php } ?>">
|
||||
<a href="<?php echo base_url().$menuData['page_link'];?>" class="dropdown">
|
||||
<img src="<?php echo base_url();?>assets-hms/images/dashboard/<?php echo $menuData['inactive_icon'];?>" class="icon-inactive">
|
||||
<img src="<?php echo base_url();?>assets-hms/images/dashboard/<?php echo $menuData['active_icon'];?>" class="icon-active">
|
||||
<span><?php echo $menuData['menu_name'];?></span>
|
||||
</a>
|
||||
</li>
|
||||
<?php
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
?>
|
||||
</ul>
|
||||
|
||||
<!--<ul class="side-list">
|
||||
<li class="list active">
|
||||
<a href="dashboard.html">
|
||||
<img src="<?php echo base_url(); ?>assets-hms/images/dashboard/dashboard-1.svg" class="icon-inactive">
|
||||
<img src="<?php echo base_url(); ?>assets-hms/images/dashboard/dashboard-2.svg" class="icon-active">
|
||||
<span>Dashboard</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="list ">
|
||||
<a href="manage-rooms.html">
|
||||
<img src="<?php echo base_url(); ?>assets-hms/images/dashboard/room-1.svg" class="icon-inactive">
|
||||
<img src="<?php echo base_url(); ?>assets-hms/images/dashboard/room-2.svg" class="icon-active">
|
||||
<span>Manage Rooms</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="list ">
|
||||
<a href="students.html">
|
||||
<img src="<?php echo base_url(); ?>assets-hms/images/dashboard/student-1.svg" class="icon-inactive">
|
||||
<img src="<?php echo base_url(); ?>assets-hms/images/dashboard/student-2.svg" class="icon-active">
|
||||
<span>Students</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li class="list">
|
||||
<a href="javascript:void(0)" id="btn-1" class="dropdown-toggle collapsed" data-toggle="collapse" data-target="#Authorization-submenu" aria-expanded="true">
|
||||
<img src="http://localhost/erisn-classroom/assets_admin/images/subadmin1.png" class="icon-inactive">
|
||||
<img src="http://localhost/erisn-classroom/assets_admin/images/subadmin2.png" class="icon-active">
|
||||
<span>Authorization</span>
|
||||
</a>
|
||||
<div class="nav collapse" id="Authorization-submenu" role="menu" aria-labelledby="btn-1" >
|
||||
<a class="dropdown-item " href="https://ezydemo.com/erisn-hostel-management/assign-rooms.html">Roles</a>
|
||||
<a class="dropdown-item " href="https://ezydemo.com/erisn-hostel-management/assign-rooms.html">Users</a>
|
||||
</div>
|
||||
</li>
|
||||
</ul>-->
|
||||
</aside>
|
||||
<!--End left side content-->
|
86
hostel/application/views/hms-admin/dashboard.php
Normal file
@ -0,0 +1,86 @@
|
||||
<div class="row dash-main-row">
|
||||
<div class="col-md-10 col-lg-10 p-0">
|
||||
<h3 class="dash-head">DashBoard</h3>
|
||||
<div class="dashboard-boxes">
|
||||
<div class=" dashboard-box">
|
||||
<img class="dash-img dash-student-img" src="<?php echo base_url(); ?>assets-hms/images/dashboard/students.png" alt="">
|
||||
<h3 class="dash-no"><?= $student_count ?></h3>
|
||||
<h6 class="dash-name">Total Students</h6>
|
||||
</div>
|
||||
<div class=" dashboard-box">
|
||||
<img class="dash-img dash-room-img" src="<?php echo base_url(); ?>assets-hms/images/dashboard/rooms.png" alt="">
|
||||
<h3 class="dash-no"><?= $room_count ?></h3>
|
||||
<h6 class="dash-name">Total Rooms</h6>
|
||||
</div>
|
||||
<div class=" dashboard-box">
|
||||
<img class="dash-img" src="<?php echo base_url(); ?>assets-hms/images/dashboard/bed.svg" alt="">
|
||||
<h3 class="dash-no"><?= $bed_count ?></h3>
|
||||
<h6 class="dash-name">Total Beds</h6>
|
||||
</div>
|
||||
<div class=" dashboard-box">
|
||||
<img class="dash-img" src="<?php echo base_url(); ?>assets-hms/images/dashboard/staff.svg" alt="">
|
||||
<h3 class="dash-no"><?= $staff_count ?></h3>
|
||||
<h6 class="dash-name">Total Staff</h6>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row dash-main-row">
|
||||
<div class="col-md-10 col-lg-10 p-0">
|
||||
<h3 class="dash-tab-head">Vacated Rooms</h3>
|
||||
<table class="table dash-table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col" class="dash-th">S.No</th>
|
||||
<th scope="col" class="dash-th">Block</th>
|
||||
<th scope="col" class="dash-th">Floor</th>
|
||||
<th scope="col" class="dash-th">Room</th>
|
||||
<th scope="col" class="dash-th">Bed no</th>
|
||||
<th scope="col" class="dash-th">Type</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php foreach ($beds_data as $key => $value) { ?>
|
||||
<tr>
|
||||
<td ><?= $key + 1 ?></td>
|
||||
<td><?= $value['block_name'] ?></td>
|
||||
<td><?= $value['floor_name'] ?></td>
|
||||
<td><?= $value['room_name'] ?></td>
|
||||
<td><?= $value['bed_name'] ?></td>
|
||||
<td><?= $value['room_ac'] ?></td>
|
||||
</tr>
|
||||
<?php } ?>
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<script src="<?php echo base_url(); ?>assets-hms/js/jquery-3.4.1.min.js"></script>
|
||||
<script src="<?php echo base_url(); ?>assets-hms/js/popper.min.js"></script>
|
||||
<script src="<?php echo base_url(); ?>assets-hms/js/bootstrap.min.js"></script>
|
||||
<script defer src="<?php echo base_url(); ?>assets-hms/js/all.js"></script>
|
||||
|
||||
<script>
|
||||
|
||||
$(".mobileMenu , .hidesidebar").click(function(){
|
||||
$(".sideMenu").toggle();
|
||||
});
|
||||
|
||||
</script>
|
||||
<script>
|
||||
$('.logo-wrap').click(function() {
|
||||
window.location.href = '<?php echo base_url().'dashboard';?>';
|
||||
return false;
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,74 @@
|
||||
<!doctype html>
|
||||
<body style="background-color:#e2e1e0;font-family: Open Sans, sans-serif;font-size:100%;font-weight:400;line-height:1.4;color:#000;">
|
||||
<table style=" max-width: 670px;margin:50px auto 10px;background-color:#fff;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-moz-box-shadow:0 1px 3px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);box-shadow:0 1px 3px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24); line-height: 25px;">
|
||||
|
||||
<tr>
|
||||
<td colspan="3">
|
||||
|
||||
<table style="padding:20px 30px;padding: 20px 30px;background: #fff;width: 100%;padding: 115px auto 0;">
|
||||
<tbody>
|
||||
<tr style="padding: 20px 0;text-align: center;">
|
||||
<td><img src="<?php echo base_url()?>assets-hms/images/erisn-blue.png"></td>
|
||||
</tr>
|
||||
<tr style="text-align: center;">
|
||||
<td><img src="<?php echo base_url()?>assets-hms/images/mail-image.png" style="margin-top: 20px"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="font-weight: 800;font-size: 22px;"> Reset Password</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding-top: 20px;font-weight: 500;font-size: 16px;"> Dear <?php echo $nameHere;?>,</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p style="font-weight: 400;font-size: 16px;">Your Request has been received to reset your password for your Blackboard Hostel Management System Account</p>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr style="text-align: center;">
|
||||
<td>
|
||||
<a href="<?php echo base_url().'reset-password/'.$emailId;?>" target="_blank" style="color: #ffffff; text-decoration: none;">
|
||||
<span class="email-temp" style="padding: 1% 2%; border-radius: 4px;border: none; color: #fff;font-weight: 500;font-size: 16px;background-color: #032DA1; cursor:pointer;">Password Reset Link</span>
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<p class="email-temp" style="font-size: 14px; font-weight: 400; margin: 2% 0 0% 0;">Best Regards,</p>
|
||||
<p class="email-temp" style="font-size: 14px; font-weight: 400; margin: 0% 0 3% 0;">Team Erisn</p>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<!--<tr>
|
||||
<td colspan="3">
|
||||
<table style="width: 100%;background: #fff;color: #032DA1;padding:10px 20px">
|
||||
<tr style="text-align: center;">
|
||||
<td colspan="2">
|
||||
<ul style="list-style-type: none;padding: 0;">
|
||||
<li style="margin-bottom: 4px;">
|
||||
<a href="" style="color: #032DA1;text-decoration: none;font-size: 14px;">
|
||||
<img src="<?php echo base_url()?>assets-lms/images/mail-globe.png" style="width: 20px;margin-right: 10px;vertical-align: middle;">WWW.Erisnclassroom.com</a>
|
||||
</li>
|
||||
</ul>
|
||||
</td>
|
||||
<td colspan="2">
|
||||
<ul style="list-style-type: none;padding: 0;">
|
||||
<li style="margin-bottom: 4px;">
|
||||
<a href="mailto:erisnclassroom@gmail.com" style="color: #032DA1;text-decoration: none;font-size: 14px;">
|
||||
<img src="<?php echo base_url()?>assets-lms/images/mail-envelope.png" style="width: 20px;margin-right: 10px;vertical-align: middle;">erisnclassroom@gmail.com</a>
|
||||
</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>-->
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
353
hostel/application/views/hms-admin/floors.php
Normal file
@ -0,0 +1,353 @@
|
||||
<style type="text/css">
|
||||
label.error {
|
||||
color : red;
|
||||
text-align: left;
|
||||
display: block;
|
||||
}
|
||||
#room_name_err {
|
||||
color : red;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
</style>
|
||||
<div class="row dash-main-row">
|
||||
<div class="col-md-10 col-lg-10 p-0">
|
||||
<ul class="nav nav-pills mb-3 rooms-sections row" id="pills-tab" role="tablist">
|
||||
<li class="nav-item section-sec col-md-3 p-0">
|
||||
<a class="nav-link sec-head " href="<?php echo base_url() ?>blocks" role="tab" aria-controls="pills-blocks" aria-selected="true">Blocks</a>
|
||||
</li>
|
||||
<li class="nav-item section-sec col-md-3 p-0">
|
||||
<a class="nav-link sec-head active" href="<?php echo base_url() ?>floors" aria-selected="false">Floors</a>
|
||||
</li>
|
||||
<li class="nav-item section-sec col-md-3 p-0">
|
||||
<a class="nav-link sec-head" href="<?php echo base_url() ?>rooms" aria-selected="false">Rooms</a>
|
||||
</li>
|
||||
<li class="nav-item section-sec col-md-3 p-0">
|
||||
<a class="nav-link sec-head" href="<?php echo base_url() ?>beds" aria-selected="false">Beds</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row dash-main-row">
|
||||
<div class="col-md-12 col-lg-12 p-0">
|
||||
|
||||
<?php if ($this->session->flashdata('success')) { ?>
|
||||
<div class="alert alert-success alert-dismissible fade show" role="alert">
|
||||
<p><?php echo $this->session->flashdata('success') ?></p>
|
||||
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
||||
<?php if ($this->session->flashdata('failed')) { ?>
|
||||
<div class="alert alert-danger alert-dismissible fade show" role="alert">
|
||||
<p><?php echo $this->session->flashdata('failed') ?></p>
|
||||
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
||||
<table class="table example dash-table mt-3 text-center">
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col" class="dash-th">SI.No</th>
|
||||
<th scope="col" class="dash-th">Floor Name</th>
|
||||
<th scope="col" class="dash-th rooms-th">Block</th>
|
||||
<th scope="col" class="dash-th rooms-th">Rooms</th>
|
||||
<th scope="col" class="dash-th rooms-th">Total Beds</th>
|
||||
<th scope="col" class="dash-th rooms-th">Total Students</th>
|
||||
<th scope="col" class="dash-th-action">Actions</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tfoot class="text-center">
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</tfoot>
|
||||
<tbody>
|
||||
<?php foreach ($floors_data as $key => $value) { ?>
|
||||
<tr>
|
||||
<td ><?php echo $key + 1 ?></td>
|
||||
<td><?= $value['floor_name'] ?></td>
|
||||
<td class="rooms-td"><?= $value['block_name'] ?></td>
|
||||
<td class="rooms-td"><?= $value['room_count'] ?></td>
|
||||
<td class="rooms-td"><?= $value['beds_count'] ?></td>
|
||||
<td class="rooms-td"><?= $value['student_count']?></td>
|
||||
<td class="preview-img">
|
||||
<img class="action-img" onClick="set_floor_id(<?= $value['id'] ?>)" src="<?= base_url() ?>assets-hms/images/dashboard/edit-icon.svg" data-backdrop="static" data-keyboard="false" data-toggle="modal" data-target="#EditFloorsCenter" alt="">
|
||||
|
||||
<a data-toggle="DeleteRoomsCenter" onclick ="floordel(<?php echo $value['id'] ?>)" href="#deleteModal">
|
||||
<img src="<?= base_url() ?>assets-hms/images/dashboard/delete-icon.svg" alt="" data-toggle="modal" data-target="#DeleteRoomsCenter" data-backdrop="static" data-keyboard="false">
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
<?php } ?>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- Modal -->
|
||||
<div class="modal fade" id="EditFloorsCenter" tabindex="-1" role="dialog" aria-labelledby=" EditFloorsCenterTitle" aria-hidden="true">
|
||||
|
||||
<div class="modal-dialog modal-dialog-centered" role="document">
|
||||
|
||||
<div class="modal-content">
|
||||
|
||||
<div class="modal-header add-block-header">
|
||||
<h5 class="modal-title" id="exampleModalLongTitle">Edit Floors</h5>
|
||||
|
||||
</div>
|
||||
<form method="post" id="floor-edit-form">
|
||||
|
||||
<div class="modal-body add-block-body room-modal-body">
|
||||
<p>Block Name</p>
|
||||
<input type="text" id="block_name" placeholder="1st Block" class="form-control add-block-input" readonly>
|
||||
<p>Floor Name</p>
|
||||
<input type="text" id="floor_name" placeholder="1st Floor" class="form-control add-block-input" readonly>
|
||||
|
||||
<!-- <input type="hidden" name="floor_id" id="floor_id">
|
||||
<input type="hidden" name="block_id" id="block_id"> -->
|
||||
<div class="edit-floor-titles">
|
||||
<div class="d-flex" style="width: 90%;">
|
||||
<p>Add Room</p>
|
||||
<i onclick="addInputField()" class="fas fa-plus add-icon"></i>
|
||||
</div>
|
||||
<p>A/C</p>
|
||||
</div>
|
||||
|
||||
<div class="room-container">
|
||||
<div class="edit-floor-main-div">
|
||||
<div class="edit-floor-input">
|
||||
<div class="edit-floor-left">
|
||||
<input type="text" placeholder="A101" class="form-control add-input edit-floors-input room-names">
|
||||
</div>
|
||||
<div class="edit-floor-right">
|
||||
<input type="checkbox" name="ac[]" class="form-check-input edit-floor-checkbox" id="exampleCheck1">
|
||||
<img class="edit-delete-icon" onClick="deleteInput(this)" src="<?= base_url() ?>assets-hms/images/dashboard/delete-icon.svg" alt="">
|
||||
</div>
|
||||
</div>
|
||||
<label id="room_names[0]-error" class="error" for="room_names[0]"></label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="room_name_err"></div>
|
||||
|
||||
<div class="modal-footer add-block-footer">
|
||||
<button type="submit" class="btn btn-primary add-block-blue">Update</button>
|
||||
<button type="button" class="btn btn-secondary add-block-cancel" data-dismiss="modal">Cancel</button>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Delete Modal -->
|
||||
<div class="modal fade" id="DeleteRoomsCenter" tabindex="-1" role="dialog" aria-labelledby="DeleteRoomsCenterTitle" aria-hidden="true">
|
||||
<div class="modal-dialog modal-dialog-centered" role="document">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header add-block-header">
|
||||
<h5 class="modal-title" id="exampleModalLongTitle">Delete Floor</h5>
|
||||
</div>
|
||||
|
||||
<div class="modal-body add-block-body">
|
||||
<input type="hidden" id="floor_id" />
|
||||
<h6>Are you sure you want to delete ?</h6>
|
||||
</div>
|
||||
|
||||
<div class="modal-footer add-block-footer">
|
||||
<button type="button" onclick="deletedata($('#floor_id').val());" class="btn btn-danger ">Yes</button>
|
||||
<button type="button" class="btn btn-dark " data-dismiss="modal">No</button>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<script>
|
||||
let floor_id;
|
||||
let idCount = 0;
|
||||
$(document).ready(function() {
|
||||
|
||||
$('.add-input').each(function(index,ele) {
|
||||
$(ele).attr('name', 'room_names['+idCount+']');
|
||||
idCount++;
|
||||
});
|
||||
|
||||
$('.example').DataTable( {
|
||||
initComplete: function () {
|
||||
this.api().columns([1, 2, 3]).every( function () {
|
||||
var column = this;
|
||||
var select = $('<select><option value="">Filter</option></select>')
|
||||
.appendTo( $(column.footer()).empty() )
|
||||
.on( 'change', function () {
|
||||
var val = $.fn.dataTable.util.escapeRegex(
|
||||
$(this).val()
|
||||
);
|
||||
|
||||
column
|
||||
.search( val ? '^'+val+'$' : '', true, false )
|
||||
.draw();
|
||||
} );
|
||||
|
||||
column.data().unique().sort().each( function ( d, j ) {
|
||||
select.append( '<option value="'+d+'">'+d+'</option>' )
|
||||
} );
|
||||
} );
|
||||
}
|
||||
} );
|
||||
|
||||
})
|
||||
|
||||
const set_floor_id = (id) => {
|
||||
floor_id = id;
|
||||
}
|
||||
|
||||
const addInputField = () => {
|
||||
|
||||
let checkForAdd = $('.room-names').length;
|
||||
|
||||
let inputContainer = '<div class="edit-floor-main-div"><div class="edit-floor-input mt-3"><div class="edit-floor-left"><input type="text" placeholder="Enter Room Name" name="room_names['+checkForAdd+']" class="form-control room-names add-input edit-floors-input"></div><div class="edit-floor-right"><input type="checkbox" class="form-check-input edit-floor-checkbox" name="ac[]" id="exampleCheck1"><img class="edit-delete-icon" onClick="deleteInput(this)" src="<?= base_url() ?>assets-hms/images/dashboard/delete-icon.svg" alt=""></div></div><label id="room_names['+checkForAdd+']-error" class="error" for="room_names['+checkForAdd+']"></label></div>';
|
||||
|
||||
|
||||
$('.room-container').append(inputContainer);
|
||||
idCount++;
|
||||
}
|
||||
|
||||
|
||||
function floordel(icn){
|
||||
$('#floor_id').val(icn);
|
||||
}
|
||||
|
||||
//
|
||||
function deletedata(id){
|
||||
window.location.href = "<?php echo base_url(); ?>HmsAdmin/delete_floors/" + id;
|
||||
}
|
||||
|
||||
const deleteInput = (ele) => {
|
||||
$(ele).parent().parent().parent().remove();
|
||||
}
|
||||
|
||||
const deleteInputFromDb = (ele,room_id) => {
|
||||
$(ele).parent().parent().parent().remove();
|
||||
|
||||
$.ajax({
|
||||
url : '<?php echo base_url() ?>' + 'HmsAdmin/ajax_delete_rooms',
|
||||
data : {
|
||||
id : room_id
|
||||
},
|
||||
type : 'POST',
|
||||
async : false,
|
||||
success: function(data){
|
||||
if(data){
|
||||
$(ele).parent().remove();
|
||||
} else {
|
||||
$('#floor_name_err').text('Floor could not be deleted as it is linked with rooms');
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
// Before Modal Event
|
||||
$("#EditFloorsCenter").on('show.bs.modal', function(){
|
||||
$('.room-container').empty();
|
||||
|
||||
$.ajax({
|
||||
url : '<?php echo base_url() ?>' + 'HmsAdmin/ajax_get_floor_rooms_info',
|
||||
data : {
|
||||
id : floor_id
|
||||
},
|
||||
type : 'POST',
|
||||
async : false,
|
||||
success: function(data){
|
||||
|
||||
if(!data) {
|
||||
$('.room-container').empty();
|
||||
$('.room-container').append('<p>Data could not be displayed due to some error. Please try again later</p>');
|
||||
} else {
|
||||
data = JSON.parse(data);
|
||||
$('#block_name').val(data.block_name);
|
||||
$('#floor_name').val(data.floor_name);
|
||||
$('.room-container').append(data.rooms);
|
||||
}
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
//
|
||||
jQuery.validator.addMethod("alphanumeric", function(value, element) {
|
||||
return this.optional(element) || /^[a-z0-9\-\s]+$/i.test(value);
|
||||
}, "Please enter alphanumeric Characters only");
|
||||
|
||||
// Edit Form Validation
|
||||
$("#floor-edit-form").validate({
|
||||
ignore: ':hidden',
|
||||
rules: {
|
||||
<?php for($i = 0; $i <= 20; $i++) {
|
||||
echo "'room_names[$i]' : {
|
||||
required : true,
|
||||
alphanumeric : true
|
||||
},";
|
||||
}?>
|
||||
|
||||
},
|
||||
submitHandler: function(form,e) {
|
||||
|
||||
e.preventDefault();
|
||||
$(form).attr('action', "<?php echo base_url() ?>HmsAdmin/ae_rooms/"+floor_id);
|
||||
let flag = false
|
||||
let room_inputs = $('.room-names');
|
||||
let room_names = [];
|
||||
$(room_inputs).each(function(index,ele) {
|
||||
let val = $(ele).val().toLowerCase();
|
||||
room_names.push(val);
|
||||
})
|
||||
|
||||
|
||||
|
||||
let findDuplicates = arr => arr.filter((item, index) => arr.indexOf(item) != index)
|
||||
|
||||
let dubArr = [...new Set(findDuplicates(room_names))] // Unique duplicates
|
||||
|
||||
if(dubArr.length > 0) {
|
||||
$('#room_name_err').text(dubArr.toString() + ' have been repeated, please change');
|
||||
} else {
|
||||
flag = true;
|
||||
}
|
||||
|
||||
$('.form-check-input').each(function(index,ele) {
|
||||
if($(ele).prop('checked')){
|
||||
$(this).val('A/C');
|
||||
} else {
|
||||
$(this).val('NON-A/C');
|
||||
}
|
||||
|
||||
$(ele).prop('checked', true);
|
||||
})
|
||||
|
||||
if(flag) {
|
||||
form.submit();
|
||||
}
|
||||
}
|
||||
});
|
||||
</script>
|
160
hostel/application/views/hms-admin/forgot-password.php
Normal file
@ -0,0 +1,160 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Hostel Management | Admin Forgot Password</title>
|
||||
<link rel="icon" type="image/x-icon" href="<?php echo base_url(); ?>assets-hms/fav.png">
|
||||
<!--styles links-->
|
||||
<link rel="stylesheet" href="<?php echo base_url(); ?>assets-hms/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="<?php echo base_url(); ?>assets-hms/css/font-family.css">
|
||||
<link rel="stylesheet" href="<?php echo base_url(); ?>assets-hms/css/all.css">
|
||||
<link rel="stylesheet" href="<?php echo base_url(); ?>assets-hms/css/style.css">
|
||||
<link rel="stylesheet" href="<?php echo base_url(); ?>assets-hms/css/responsive.css">
|
||||
|
||||
<style>
|
||||
.error-message p{
|
||||
font-size:13px !important;
|
||||
color:red !important;
|
||||
margin-bottom:2% !important;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="containers">
|
||||
<div class="main-logo">
|
||||
<img src="<?php echo base_url(); ?>assets-hms/<?php echo $school_info['color_logo']; ?>">
|
||||
</div>
|
||||
|
||||
<?php
|
||||
$isForgotPasswordSuccess = 'No';
|
||||
if($this->session->userdata('isForgotPasswordSuccess')){
|
||||
$isForgotPasswordSuccess = 'Yes';
|
||||
$this->session->unset_userdata('isForgotPasswordSuccess');
|
||||
}
|
||||
?>
|
||||
|
||||
<?php
|
||||
$eid = '';
|
||||
if(count($_POST) > 0)
|
||||
{
|
||||
$eid = $_POST['email'];
|
||||
}
|
||||
?>
|
||||
<div class="containers">
|
||||
<form action='<?php base_url().'forgot-password';?>' id="forgotPasswordForm" method="post">
|
||||
<div class="row login-row">
|
||||
<div class="col-md-7 col-lg-7 login-bg">
|
||||
<img src="<?php echo base_url(); ?>assets-hms/images/login/login-bg.svg" class="lg-img" alt="">
|
||||
</div>
|
||||
<div class="col-md-4 col-lg-4 login-right">
|
||||
<div class="forgot-box">
|
||||
<div class="forgot-fields">
|
||||
<h3>Forgot Password</h3>
|
||||
<p>
|
||||
Please enter your registered email address to verify and get link to reset password
|
||||
</p>
|
||||
|
||||
<input type="text" name="email" id="email" value='<?php echo $eid;?>' placeholder="Enter your email address" class="form-control login-input" >
|
||||
<p class="error-message" id='email_error'></p>
|
||||
<div class="error-message"><?php echo form_error('email'); ?></div>
|
||||
|
||||
<div class="forgot-button">
|
||||
<button class="forgot-btn" type='button' onclick='validate_fp_form()'>
|
||||
Submit
|
||||
</button>
|
||||
</div>
|
||||
<div class="forgot-redirection">
|
||||
<a href="<?php echo base_url().'admin'; ?>">Go back to Login</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="modal fade" id="passwordChangeModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true" data-backdrop="static" data-keyboard="false">
|
||||
<div class="modal-dialog modal-dialog-centered" role="document">
|
||||
<div class="modal-content">
|
||||
<div class="modal-body">
|
||||
<img src="<?php echo base_url(); ?>assets-hms/images/login/modal-check.svg" alt="">
|
||||
<h4>Success</h4>
|
||||
<p>
|
||||
An email has been sent to your registered email address which has a link to reset your password.
|
||||
</p>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn modal-btn" onclick='go_to_admin_login()'>Go to Login</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="<?php echo base_url(); ?>assets-hms/js/jquery-3.4.1.min.js"></script>
|
||||
<script src="<?php echo base_url(); ?>assets-hms/js/popper.min.js"></script>
|
||||
<script src="<?php echo base_url(); ?>assets-hms/js/bootstrap.min.js"></script>
|
||||
<script defer src="<?php echo base_url(); ?>assets-hms/js/all.js"></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
var isForgotPasswordSuccess = '<?php echo $isForgotPasswordSuccess;?>';
|
||||
if(isForgotPasswordSuccess == 'Yes'){
|
||||
$('#passwordChangeModal').modal('show');
|
||||
}
|
||||
|
||||
function go_to_admin_login()
|
||||
{
|
||||
window.location = '<?php echo base_url()."admin";?>';
|
||||
}
|
||||
|
||||
$(document).ready(function(){
|
||||
$(document).on('keypress', function(e){
|
||||
if(e.which==13)
|
||||
{
|
||||
validate_fp_form();
|
||||
}
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
function hide_all_fp_errors()
|
||||
{
|
||||
$('#email_error').hide();
|
||||
}
|
||||
|
||||
|
||||
function validate_fp_form()
|
||||
{
|
||||
hide_all_fp_errors();
|
||||
|
||||
var errArr = new Array();
|
||||
|
||||
var lemail = $('#email').val().trim();
|
||||
var regex = /^([a-zA-Z0-9_\.\-\+])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
|
||||
if(lemail==''){
|
||||
errArr.push('email_Sep@Str_Please enter your email address.');
|
||||
}else if(!regex.test(lemail)){
|
||||
errArr.push('email_Sep@Str_Please enter a valid email address.');
|
||||
}
|
||||
|
||||
|
||||
if(errArr.length>0)
|
||||
{
|
||||
for(i=0; i<errArr.length; i++)
|
||||
{
|
||||
var resArr = errArr[i].split("_Sep@Str_");
|
||||
$("#"+resArr[0]+"_error").html(resArr[1]);;
|
||||
$("#"+resArr[0]+"_error").show();
|
||||
}
|
||||
var xxxVal = errArr[0].split('_Sep@Str_');
|
||||
$('#'+xxxVal[0]).focus();
|
||||
return false;
|
||||
}
|
||||
else{
|
||||
$('#forgotPasswordForm').submit();
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
158
hostel/application/views/hms-admin/login.php
Normal file
@ -0,0 +1,158 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Hostel Management | Admin Login</title>
|
||||
<link rel="icon" type="image/x-icon" href="<?php echo base_url(); ?>assets-hms/fav.png">
|
||||
<!--styles links-->
|
||||
<link rel="stylesheet" href="<?php echo base_url(); ?>assets-hms/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="<?php echo base_url(); ?>assets-hms/css/font-family.css">
|
||||
<link rel="stylesheet" href="<?php echo base_url(); ?>assets-hms/css/all.css">
|
||||
<link rel="stylesheet" href="<?php echo base_url(); ?>assets-hms/css/style.css">
|
||||
<link rel="stylesheet" href="<?php echo base_url(); ?>assets-hms/css/responsive.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="containers">
|
||||
<div class="main-logo">
|
||||
<img src="<?php echo base_url(); ?>assets-hms/<?php echo $school_info['color_logo']; ?>">
|
||||
</div>
|
||||
<?php
|
||||
$uname = ''; $pass = ''; $rme = 'Off';
|
||||
if(isset($_COOKIE["username"]))
|
||||
$uname = $_COOKIE["username"];
|
||||
if(isset($_COOKIE["password"]))
|
||||
$pass = $_COOKIE["password"];
|
||||
if(isset($_COOKIE["rem_me"]))
|
||||
$rme = $_COOKIE["rem_me"];
|
||||
|
||||
$checked = isset($_COOKIE["rem_me"]) ? 'checked' : '';
|
||||
|
||||
if(count($_POST) > 0)
|
||||
{
|
||||
$uname = $_POST['email'];
|
||||
$pass = $_POST['password'];
|
||||
if(isset($_POST['remember_me']))
|
||||
$rme = 'On';
|
||||
}
|
||||
?>
|
||||
|
||||
<div class="containers">
|
||||
<form action='<?php echo base_url().'admin';?>' id="loginform" method="post">
|
||||
<div class="row login-row">
|
||||
<div class="col-md-7 col-lg-7 login-bg">
|
||||
<img src="<?php echo base_url(); ?>assets-hms/images/login/login-bg.svg" class="lg-img" alt="">
|
||||
</div>
|
||||
|
||||
<div class="col-md-4 col-lg-4 login-right">
|
||||
<div class="login-box">
|
||||
<div class="login-fields">
|
||||
<h3>Hostel Admin Login</h3>
|
||||
|
||||
<?php if($this->session->flashdata('danger')){?>
|
||||
<div class="alert alert-danger alert-dismissible fade show" role="alert">
|
||||
<p><?php echo $this->session->flashdata('danger') ?></p>
|
||||
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
||||
<input name="email" id="email" value='<?php echo $uname;?>' placeholder="Enter Your Email ID" class="form-control login-input" >
|
||||
<p class="error-message" id='email_error'></p>
|
||||
<div class="error-message"><?php echo form_error('email'); ?></div>
|
||||
|
||||
<div class="login-eye-pos">
|
||||
<input type="password" name="password" id="paswd" value='<?php echo $pass;?>' placeholder="Password" class="form-control login-input">
|
||||
<span class="login-eye login-eye-icon"><i class="far fa-eye"></i></span>
|
||||
<p class="error-message" id='paswd_error'></p>
|
||||
<div class="error-message"><?php echo form_error('password'); ?></div>
|
||||
<div>
|
||||
|
||||
<a href="<?php echo base_url().'forgot-password'; ?>">Forgot Password?</a><br>
|
||||
<input type="checkbox" <?= $checked ?> id="remember" name="remember_me" value="on">
|
||||
<label class="remember" for="remember"> Remember me</label><br><br>
|
||||
<div class="login-button">
|
||||
<button class="login-btn" type='button' onclick="validate_login_form()">Login</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="<?php echo base_url(); ?>assets-hms/js/jquery-3.4.1.min.js"></script>
|
||||
<script src="<?php echo base_url(); ?>assets-hms/js/popper.min.js"></script>
|
||||
<script src="<?php echo base_url(); ?>assets-hms/js/bootstrap.min.js"></script>
|
||||
<script defer src="<?php echo base_url(); ?>assets-hms/js/all.js"></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
$(".login-eye").click(function() {
|
||||
$(".login-eye").toggleClass("login-eye-icon");
|
||||
|
||||
var input = $('#paswd');
|
||||
if (input.attr("type") == "password")
|
||||
input.attr("type", "text");
|
||||
else
|
||||
input.attr("type", "password");
|
||||
});
|
||||
|
||||
$(document).ready(function(){
|
||||
$(document).on('keypress', function(e){
|
||||
if(e.which==13)
|
||||
{
|
||||
//if(js_status != 'Not Verified')
|
||||
validate_login_form();
|
||||
}
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
function hide_all_login_errors()
|
||||
{
|
||||
$('#email_error').hide();
|
||||
$('#paswd_error').hide();
|
||||
}
|
||||
|
||||
|
||||
function validate_login_form()
|
||||
{
|
||||
hide_all_login_errors();
|
||||
|
||||
var errArr = new Array();
|
||||
|
||||
var lemail = $('#email').val().trim();
|
||||
var regex = /^([a-zA-Z0-9_\.\-\+])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
|
||||
if(lemail==''){
|
||||
errArr.push('email_Sep@Str_Please enter your email address.');
|
||||
}else if(!regex.test(lemail)){
|
||||
errArr.push('email_Sep@Str_Please enter a valid email address.');
|
||||
}
|
||||
|
||||
var lpwd = $('#paswd').val().trim();
|
||||
if(lpwd==''){
|
||||
errArr.push('paswd_Sep@Str_Please enter your password.');
|
||||
}
|
||||
|
||||
if(errArr.length>0)
|
||||
{
|
||||
for(i=0; i<errArr.length; i++)
|
||||
{
|
||||
var resArr = errArr[i].split("_Sep@Str_");
|
||||
$("#"+resArr[0]+"_error").html(resArr[1]);;
|
||||
$("#"+resArr[0]+"_error").show();
|
||||
}
|
||||
var xxxVal = errArr[0].split('_Sep@Str_');
|
||||
$('#'+xxxVal[0]).focus();
|
||||
return false;
|
||||
}
|
||||
else{
|
||||
$('#loginform').submit();
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
213
hostel/application/views/hms-admin/reset-password.php
Normal file
@ -0,0 +1,213 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Hostel Management | Admin Forgot Password</title>
|
||||
<link rel="icon" type="image/x-icon" href="<?php echo base_url(); ?>assets-hms/fav.png">
|
||||
<!--styles links-->
|
||||
<link rel="stylesheet" href="<?php echo base_url(); ?>assets-hms/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="<?php echo base_url(); ?>assets-hms/css/font-family.css">
|
||||
<link rel="stylesheet" href="<?php echo base_url(); ?>assets-hms/css/all.css">
|
||||
<link rel="stylesheet" href="<?php echo base_url(); ?>assets-hms/css/style.css">
|
||||
<link rel="stylesheet" href="<?php echo base_url(); ?>assets-hms/css/responsive.css">
|
||||
|
||||
<style>
|
||||
.error-message p{
|
||||
font-size:13px !important;
|
||||
color:red !important;
|
||||
margin-bottom:2% !important;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="containers">
|
||||
<div class="main-logo">
|
||||
<img src="<?php echo base_url(); ?>assets-hms/<?php echo $school_info['color_logo']; ?>">
|
||||
</div>
|
||||
|
||||
<?php
|
||||
$isResetPasswordSuccess = 'No';
|
||||
if($this->session->userdata('isResetPasswordSuccess')){
|
||||
$isResetPasswordSuccess = 'Yes';
|
||||
$this->session->unset_userdata('isResetPasswordSuccess');
|
||||
}
|
||||
?>
|
||||
|
||||
<?php
|
||||
$pwd = ''; $conf_pwd = '';
|
||||
if(count($_POST) > 0)
|
||||
{
|
||||
$pwd = $_POST['password'];
|
||||
$conf_pwd = $_POST['conf_password'];
|
||||
}
|
||||
?>
|
||||
|
||||
<div class="containers">
|
||||
<form action="<?php echo base_url().'reset-password/'.$encodedEmailId;?>" id="resetPasswordForm" method="post">
|
||||
<div class="row login-row">
|
||||
<div class="col-md-7 col-lg-7 login-bg">
|
||||
<img src="<?php echo base_url(); ?>assets-hms/images/login/login-bg.svg" class="lg-img" alt="">
|
||||
</div>
|
||||
<div class="col-md-4 col-lg-4 login-right">
|
||||
<div class="forgot-box">
|
||||
<div class="forgot-fields">
|
||||
<h3>Forgot Password</h3>
|
||||
<p>Your email address is verified successfully. You can now reset your password here.</p>
|
||||
|
||||
<?php if($this->session->flashdata('danger')){?>
|
||||
<div class="alert alert-danger alert-dismissible fade show" role="alert">
|
||||
<p><?php echo $this->session->flashdata('danger') ?></p>
|
||||
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
||||
<div class="rp-eye-pos">
|
||||
<p class="input-label">New Password*</p>
|
||||
<input type="password" name="password" id="password" placeholder="Enter new passwod" class="form-control reset-input" >
|
||||
<span class="rp-eye-one rp-eye-one-icon"><i class="far fa-eye"></i></span>
|
||||
<p class="error-message" id='password_error'></p>
|
||||
<span class="error-message"><?php echo form_error('password'); ?></span>
|
||||
</div>
|
||||
|
||||
<div class="rp-eye-pos">
|
||||
<p class="input-label">Re-type New Password*</p>
|
||||
<input type="password" name="conf_password" id="conf_password" placeholder="Retype new password" class="form-control reset-input" >
|
||||
<span class="rp-eye-two rp-eye-two-icon"><i class="far fa-eye"></i></span>
|
||||
<p class="error-message" id='conf_password_error'></p>
|
||||
<span class="error-message"><?php echo form_error('conf_password'); ?></span>
|
||||
</div>
|
||||
|
||||
<div class="forgot-button">
|
||||
<button class="forgot-btn" type='button' onclick='validate_rp_form()'>Reset Password</button>
|
||||
</div>
|
||||
|
||||
<div class="forgot-redirection">
|
||||
<a href="<?php echo base_url().'admin';?>">Go back to Login</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="modal fade" id="passwordChangeModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true" data-backdrop="static" data-keyboard="false">
|
||||
<div class="modal-dialog modal-dialog-centered" role="document">
|
||||
<div class="modal-content">
|
||||
<div class="modal-body">
|
||||
<img src="<?php echo base_url(); ?>assets-hms/images/login/modal-check.svg" alt="">
|
||||
<h4>Success</h4>
|
||||
<p>
|
||||
Your password has been reset successfully. You can now login with new password.
|
||||
</p>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn modal-btn" onclick='go_to_admin_login()'>Go to Login</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="<?php echo base_url(); ?>assets-hms/js/jquery-3.4.1.min.js"></script>
|
||||
<script src="<?php echo base_url(); ?>assets-hms/js/popper.min.js"></script>
|
||||
<script src="<?php echo base_url(); ?>assets-hms/js/bootstrap.min.js"></script>
|
||||
<script defer src="<?php echo base_url(); ?>assets-hms/js/all.js"></script>
|
||||
<script defer src="<?php echo base_url(); ?>assets-hms/js/main.js"></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
$(".rp-eye-one").click(function() {
|
||||
$(".rp-eye-one").toggleClass("rp-eye-one-icon");
|
||||
|
||||
var input = $('#password');
|
||||
if (input.attr("type") == "password")
|
||||
input.attr("type", "text");
|
||||
else
|
||||
input.attr("type", "password");
|
||||
});
|
||||
|
||||
$(".rp-eye-two").click(function() {
|
||||
$(".rp-eye-two").toggleClass("rp-eye-two-icon");
|
||||
|
||||
var input = $('#conf_password');
|
||||
if (input.attr("type") == "password")
|
||||
input.attr("type", "text");
|
||||
else
|
||||
input.attr("type", "password");
|
||||
});
|
||||
|
||||
var isResetPasswordSuccess = '<?php echo $isResetPasswordSuccess;?>';
|
||||
if(isResetPasswordSuccess == 'Yes'){
|
||||
$('#passwordChangeModal').modal('show');
|
||||
}
|
||||
|
||||
function go_to_admin_login()
|
||||
{
|
||||
window.location = '<?php echo base_url()."admin";?>';
|
||||
}
|
||||
|
||||
$(document).ready(function(){
|
||||
$(document).on('keypress', function(e){
|
||||
if(e.which==13)
|
||||
{
|
||||
//if(js_status != 'Not Verified')
|
||||
validate_rp_form();
|
||||
}
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
function hide_all_rp_errors()
|
||||
{
|
||||
$('#password_error').hide();
|
||||
$('#conf_password_error').hide();
|
||||
}
|
||||
|
||||
|
||||
function validate_rp_form()
|
||||
{
|
||||
hide_all_rp_errors();
|
||||
|
||||
var errArr = new Array();
|
||||
|
||||
var pwd = $('#password').val().trim();
|
||||
var conf_password = $('#conf_password').val().trim();
|
||||
|
||||
if(pwd==''){
|
||||
errArr.push('password_Sep@Str_Please enter your new password.');
|
||||
}
|
||||
else{
|
||||
var regPwdReg = /(?=.*[a-zA-Z0-9])(?=.*?\W).{6,}/;
|
||||
if(!regPwdReg.test($('#password').val()))
|
||||
errArr.push('password_Sep@Str_Password should be minimum 6 characters and should have atleast one special character.');
|
||||
}
|
||||
|
||||
if(conf_password==''){
|
||||
errArr.push('conf_password_Sep@Str_Please re-enter your new password.');
|
||||
}
|
||||
|
||||
if($('#password').val()!='' && $('#conf_password').val()!='' && ($('#password').val() != $('#conf_password').val()) )
|
||||
errArr.push('conf_password_Sep@Str_Password & Retype Password does not match.');
|
||||
|
||||
if(errArr.length>0)
|
||||
{
|
||||
for(i=0; i<errArr.length; i++)
|
||||
{
|
||||
var resArr = errArr[i].split("_Sep@Str_");
|
||||
$("#"+resArr[0]+"_error").html(resArr[1]);;
|
||||
$("#"+resArr[0]+"_error").show();
|
||||
}
|
||||
var xxxVal = errArr[0].split('_Sep@Str_');
|
||||
$('#'+xxxVal[0]).focus();
|
||||
return false;
|
||||
}
|
||||
else{
|
||||
$('#resetPasswordForm').submit();
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
150
hostel/application/views/hms-admin/roles.php
Normal file
@ -0,0 +1,150 @@
|
||||
<main class="common_margin" id="main">
|
||||
<div id="add-btn" class="from-group adding-class form-group_lng form-group_full-width ">
|
||||
<a href='<?php echo base_url()."add-edit-role/0";?>'><button type="button" class="btn btn-success btn-sm">Add New Role</button></a>
|
||||
</div>
|
||||
<div class="main-wrap">
|
||||
|
||||
<div class="roles-cover">
|
||||
<div class="common-heading">
|
||||
<h2>Roles</h2>
|
||||
|
||||
<div class="alert alert-danger" id="errShow" style="display:none;"><strong>Error!</strong> This role has been assigned to one or more users. So it can not be deleted.</div>
|
||||
<div class="alert alert-success" id="success" style="display:none;"><strong>Success!</strong> The role has been deleted successfully.</div>
|
||||
|
||||
<?php if($this->session->flashdata('success')){?>
|
||||
<div class="alert alert-success alert-dismissible fade show" role="alert">
|
||||
<p><?php echo $this->session->flashdata('success') ?></p>
|
||||
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
||||
<?php if($this->session->flashdata('danger')){?>
|
||||
<div class="alert alert-danger alert-dismissible fade show" role="alert">
|
||||
<p><?php echo $this->session->flashdata('danger') ?></p>
|
||||
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<?php } ?>
|
||||
</div>
|
||||
<div class="subject_r">
|
||||
<div class="subject_rsec">
|
||||
<div class="">
|
||||
<table id="tbl" class="display user-role dataTable table-responsive">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Sl No</th>
|
||||
<th>Role Name</th>
|
||||
<th>Permission</th>
|
||||
<th>Status</th>
|
||||
<th>Actions</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php
|
||||
if(isset($roleList) && !empty($roleList))
|
||||
{
|
||||
$slNo=1;
|
||||
foreach($roleList as $post)
|
||||
{
|
||||
?>
|
||||
<tr>
|
||||
<td><?php echo $slNo;?></td>
|
||||
<td><?php echo $post['role_name'];?></td>
|
||||
<td>
|
||||
<?php
|
||||
if($post['permissions']!='')
|
||||
echo str_replace(',', '<br>', $post['permissions']);
|
||||
?>
|
||||
</td>
|
||||
<td><?php echo $post['status'];?></td>
|
||||
<td>
|
||||
<div class="sub_tabbtnsec">
|
||||
<a href='<?php echo base_url()."add-edit-role/".$post['id'];?>'>
|
||||
<div class="sub_editbtn"><i class="fas fa-pencil-alt"></i></div>
|
||||
</a>
|
||||
|
||||
<?php if($post['can_delete']=='Yes'){?>
|
||||
<div class="sub_delbtn" onclick='delete_role(<?php echo $post['id'];?>)'>
|
||||
<i class="fa fa-trash" aria-hidden="true"></i>
|
||||
</div>
|
||||
<?php } ?>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<?php
|
||||
$slNo++;
|
||||
}
|
||||
}
|
||||
?>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
<!--End right-top side-->
|
||||
</div>
|
||||
|
||||
<script src="assets-hms/js/jquery-3.4.1.min.js" ></script>
|
||||
<script src="assets-hms/js/popper.min.js"></script>
|
||||
<script src="assets-hms/js/bootstrap.min.js"></script>
|
||||
<script src="https://cdn.datatables.net/1.10.22/js/jquery.dataTables.min.js"></script>
|
||||
<script defer src="assets-hms/js/all.js"></script>
|
||||
<script defer src="assets-hms/js/main.js"></script>
|
||||
<script src="assets-hms/owl-carousel/js/owl.carousel.min.js"></script>
|
||||
|
||||
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
|
||||
|
||||
<script>
|
||||
$(document).ready(function(){
|
||||
$('.user-drpdown').click(function(){
|
||||
$('.drpdown-items').toggle();
|
||||
});
|
||||
});
|
||||
//table js
|
||||
$('#tbl').DataTable( {
|
||||
"lengthMenu": [[5,10, 25, 50, -1], [5,10, 25, 50, "All"]]
|
||||
} );
|
||||
//table js end
|
||||
</script>
|
||||
|
||||
<script>
|
||||
function delete_role(roleId)
|
||||
{
|
||||
swal({
|
||||
title: "Are you sure?",
|
||||
text: "Once deleted, you will not be able to recover this role!",
|
||||
icon: "warning",
|
||||
buttons: true,
|
||||
dangerMode: true,
|
||||
})
|
||||
.then((willDelete) => {
|
||||
if (willDelete) {
|
||||
$.ajax({
|
||||
type: 'post',
|
||||
url: '<?= base_url(); ?>HmsAdmin/delete_role',
|
||||
data: {'id' : roleId},
|
||||
success: function(result){
|
||||
//alert(result);
|
||||
if(result=='Success')
|
||||
{
|
||||
$('#errShow').hide();
|
||||
$('#success').show();
|
||||
setTimeout(() => { location.reload(); }, 2000);
|
||||
}
|
||||
else
|
||||
{
|
||||
$('#success').hide();
|
||||
$('#errShow').show();
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
})
|
||||
}
|
||||
</script>
|
329
hostel/application/views/hms-admin/rooms.php
Normal file
@ -0,0 +1,329 @@
|
||||
<style>
|
||||
|
||||
.bed-input {
|
||||
background-color: #fff !important;
|
||||
}
|
||||
label.error {
|
||||
color : red;
|
||||
text-align: left;
|
||||
display: block;
|
||||
}
|
||||
#bed_name_err {
|
||||
color : red;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
</style>
|
||||
<div class="row dash-main-row">
|
||||
<div class="col-md-10 col-lg-10 p-0">
|
||||
<ul class="nav nav-pills mb-3 rooms-sections row" id="pills-tab" role="tablist">
|
||||
<li class="nav-item section-sec col-md-3 p-0">
|
||||
<a class="nav-link sec-head " href="<?php echo base_url() ?>blocks" role="tab" aria-controls="pills-blocks" aria-selected="true">Blocks</a>
|
||||
</li>
|
||||
<li class="nav-item section-sec col-md-3 p-0">
|
||||
<a class="nav-link sec-head " href="<?php echo base_url() ?>floors" aria-selected="false">Floors</a>
|
||||
</li>
|
||||
<li class="nav-item section-sec col-md-3 p-0">
|
||||
<a class="nav-link sec-head active" href="<?php echo base_url() ?>rooms" aria-selected="false">Rooms</a>
|
||||
</li>
|
||||
<li class="nav-item section-sec col-md-3 p-0">
|
||||
<a class="nav-link sec-head" href="<?php echo base_url() ?>beds" aria-selected="false">Beds</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row dash-main-row mt-4 mb-4">
|
||||
<div class="col-md-12 col-lg-12 p-0">
|
||||
|
||||
<?php if ($this->session->flashdata('success')) { ?>
|
||||
<div class="alert alert-success alert-dismissible fade show" role="alert">
|
||||
<p><?php echo $this->session->flashdata('success') ?></p>
|
||||
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
||||
<?php if ($this->session->flashdata('failed')) { ?>
|
||||
<div class="alert alert-danger alert-dismissible fade show" role="alert">
|
||||
<p><?php echo $this->session->flashdata('failed') ?></p>
|
||||
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
||||
<table class="example text-center" style="width : 100%" class="table dash-table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col" class="dash-th">SI.No</th>
|
||||
<th scope="col" class="dash-th rooms-th">Room No</th>
|
||||
<th scope="col" class="dash-th rooms-th">Floor Name</th>
|
||||
<th scope="col" class="dash-th rooms-th">Block</th>
|
||||
<th scope="col" class="dash-th rooms-th">Room Type</th>
|
||||
<th scope="col" class="dash-th rooms-th">Total Beds</th>
|
||||
<th scope="col" class="dash-th-action">Actions</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tfoot class="text-center">
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</tfoot>
|
||||
<tbody>
|
||||
<?php foreach ($rooms_data as $key => $value) {
|
||||
?>
|
||||
|
||||
<tr>
|
||||
<td ><?= $key + 1 ?></td>
|
||||
<td id="td-room" class="rooms-td"><?= $value['room_name'] ?></td>
|
||||
<td id="td-floor" class="rooms-td"><?= $value['floor_name'] ?></td>
|
||||
<td id="td-block" class="rooms-td"><?= $value['block_name'] ?></td>
|
||||
<td class="rooms-td"><?= $value['room_ac'] ?></td>
|
||||
<td class="rooms-td"><?= $value['beds_count'] ?></td>
|
||||
<td class="preview-img">
|
||||
|
||||
<img class="action-img" onClick="set_room_id(<?= $value['id'] ?>,this)" src="<?php echo base_url() ?>assets-hms/images/dashboard/edit-icon.svg" data-toggle="modal" data-target="#EditRoomsCenter" alt="" data-backdrop="static" data-keyboard="false">
|
||||
|
||||
<img src="<?php echo base_url() ?>assets-hms/images/dashboard/delete-icon.svg" alt="" onclick ="roomdel(<?php echo $value['id'] ?>)" data-toggle="modal" data-target="#DeleteRoomsCenter" data-backdrop="static" data-keyboard="false">
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<?php } ?>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- Modal -->
|
||||
<div class="modal fade" id="EditRoomsCenter" tabindex="-1" role="dialog" aria-labelledby="EditRoomsCenterTitle" aria-hidden="true">
|
||||
|
||||
<div class="modal-dialog modal-dialog-centered" role="document">
|
||||
|
||||
<div class="modal-content">
|
||||
<form id="rooms-bed-form" method="post">
|
||||
<div class="modal-header add-block-header">
|
||||
<h5 class="modal-title" id="exampleModalLongTitle">Edit Rooms</h5>
|
||||
</div>
|
||||
|
||||
<input type="hidden" name="room_id" id="room_id">
|
||||
|
||||
<div class="modal-body add-block-body">
|
||||
<div class="block-floor-info d-flex justify-content-around mb-4">
|
||||
<p><b>Block Name: </b><span id="pop_block_name">Block 1</span></p>
|
||||
<p><b>Floor Name: </b><span id="pop_floor_name">Floor 1</span></p>
|
||||
</div>
|
||||
<p>Room Name</p>
|
||||
<input type="text" value="A101" placeholder="A101" readonly class="room-name form-control add-block-input">
|
||||
|
||||
<div class="edit-floor-titles">
|
||||
<div class="d-flex" style="width: 90%;">
|
||||
<p>Add Beds</p>
|
||||
<i onclick="addInputField(this)" class="fas fa-plus add-icon"></i>
|
||||
</div>
|
||||
</div>
|
||||
<div class="beds-container">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="bed_name_err"></div>
|
||||
|
||||
<div class="modal-footer add-block-footer">
|
||||
<button type="submit" id="submit-beds" class="btn btn-primary add-block-blue">Update</button>
|
||||
<button type="button" class="btn btn-secondary add-block-cancel" data-dismiss="modal">Cancel</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Delete Modal -->
|
||||
<div class="modal fade" id="DeleteRoomsCenter" tabindex="-1" role="dialog" aria-labelledby="DeleteRoomsCenterTitle" aria-hidden="true">
|
||||
|
||||
<div class="modal-dialog modal-dialog-centered" role="document">
|
||||
|
||||
<div class="modal-content">
|
||||
|
||||
<div class="modal-header add-block-header">
|
||||
<h5 class="modal-title" id="exampleModalLongTitle">Delete Room</h5>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="modal-body add-block-body">
|
||||
<input type="hidden" id="room_del_id" />
|
||||
<h6>Are you sure you want to delete ?</h6>
|
||||
</div>
|
||||
|
||||
<div class="modal-footer add-block-footer">
|
||||
<button type="button" onclick="deletedata($('#room_del_id').val());" class="btn btn-danger ">Yes</button>
|
||||
<button type="button" class="btn btn-dark " data-dismiss="modal">No</button>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
let idCount = 0;
|
||||
let room_id;
|
||||
let block_name,floor_name,room_name;
|
||||
|
||||
|
||||
const set_room_id = (id, ele) => {
|
||||
room_id = id;
|
||||
|
||||
let current = ele;
|
||||
|
||||
while($(current).prop("tagName") != 'TR' ) {
|
||||
current = $(current).parent();
|
||||
}
|
||||
|
||||
block_name = $(current).children('#td-block').text();
|
||||
floor_name = $(current).children('#td-floor').text();
|
||||
room_name = $(current).children('#td-room').text();
|
||||
|
||||
$('#pop_floor_name').text(floor_name);
|
||||
$('#pop_block_name').text(block_name);
|
||||
$('.room-name').val(room_name);
|
||||
}
|
||||
|
||||
function roomdel(icn){
|
||||
$('#room_del_id').val(icn);
|
||||
}
|
||||
|
||||
function deletedata(id){
|
||||
window.location.href = "<?php echo base_url(); ?>HmsAdmin/delete_room/" + id;
|
||||
}
|
||||
|
||||
const addInputField = (ele) => {
|
||||
|
||||
$('#empty-bed-err').hide();
|
||||
$('#submit-beds').attr('disabled', false);
|
||||
|
||||
let roomName = $('.room-name').val();
|
||||
|
||||
let checkForAdd = $('.bed-input').length;
|
||||
|
||||
let inputContainer = '<div class="edit-rooms-input beds-inner-container mt-3"><input type="text" value="'+(roomName+'-'+(checkForAdd+1))+'" name="bed_names['+(checkForAdd+1)+']" readOnly class="form-control bed-input add-rooms-inputs"><img onClick="deleteInput(this)" class="edit-rooms-ico" src="<?php echo base_url() ?>assets-hms/images/dashboard/delete-icon.svg" alt=""></div>';
|
||||
|
||||
$('.beds-container').append(inputContainer);
|
||||
idCount++;
|
||||
}
|
||||
|
||||
const deleteInput = (ele) => {
|
||||
$(ele).parent().remove();
|
||||
}
|
||||
|
||||
// Before Modal Event
|
||||
$("#EditRoomsCenter").on('show.bs.modal', function(e){
|
||||
$('.beds-container').empty();
|
||||
|
||||
$.ajax({
|
||||
url : '<?php echo base_url() ?>' + 'HmsAdmin/ajax_get_rooms_bed_info',
|
||||
data : {
|
||||
id : room_id
|
||||
},
|
||||
type : 'POST',
|
||||
async : false,
|
||||
success: function(data){
|
||||
|
||||
if(data == '') {
|
||||
$('.beds-container').empty();
|
||||
$('.beds-container').append('<p id="empty-bed-err" style="color:red" class="mt-2">This Room doesn\'t have any bed</p>');
|
||||
$('#submit-beds').attr('disabled', true);
|
||||
} else {
|
||||
$('.beds-container').append(data);
|
||||
}
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
//
|
||||
jQuery.validator.addMethod("alphanumeric", function(value, element) {
|
||||
return this.optional(element) || /^[a-z0-9\-\s]+$/i.test(value);
|
||||
}, "Please enter alphanumeric Characters only");
|
||||
|
||||
// Edit Form Validation
|
||||
$("#rooms-bed-form").validate({
|
||||
ignore: ':hidden',
|
||||
rules: {
|
||||
<?php for($i = 0; $i <= 20; $i++) {
|
||||
echo "'bed_names[$i]' : {
|
||||
required : true,
|
||||
alphanumeric : true
|
||||
},";
|
||||
}?>
|
||||
|
||||
},
|
||||
submitHandler: function(form,e) {
|
||||
|
||||
e.preventDefault();
|
||||
$(form).attr('action', "<?php echo base_url() ?>HmsAdmin/ae_beds/"+room_id);
|
||||
$('#room_id').val(room_id);
|
||||
form.submit();
|
||||
}
|
||||
});
|
||||
|
||||
const deleteInputFromDb = (ele,room_id) => {
|
||||
$.ajax({
|
||||
url : '<?php echo base_url() ?>' + 'HmsAdmin/ajax_delete_row',
|
||||
data : {
|
||||
id : room_id,
|
||||
table : 'hms_beds'
|
||||
},
|
||||
type : 'POST',
|
||||
async : false,
|
||||
success: function(data){
|
||||
if(data){
|
||||
$(ele).parent().remove();
|
||||
} else {
|
||||
$('#bed_name_err').text('Bed could not be deleted as it is linked with rooms');
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
|
||||
$(document).ready(function() {
|
||||
|
||||
$('.example').DataTable( {
|
||||
initComplete: function () {
|
||||
this.api().columns([1, 2, 3, 4, 5]).every( function () {
|
||||
var column = this;
|
||||
var select = $('<select><option value="">Filter</option></select>')
|
||||
.appendTo( $(column.footer()).empty() )
|
||||
.on( 'change', function () {
|
||||
var val = $.fn.dataTable.util.escapeRegex(
|
||||
$(this).val()
|
||||
);
|
||||
|
||||
column
|
||||
.search( val ? '^'+val+'$' : '', true, false )
|
||||
.draw();
|
||||
} );
|
||||
|
||||
column.data().unique().sort().each( function ( d, j ) {
|
||||
select.append( '<option value="'+d+'">'+d+'</option>' )
|
||||
} );
|
||||
} );
|
||||
}
|
||||
} );
|
||||
|
||||
})
|
||||
|
||||
</script>
|
||||
|
225
hostel/application/views/hms-admin/student-profile.php
Normal file
@ -0,0 +1,225 @@
|
||||
<style type="text/css">
|
||||
.course-info-fields,.student-info-fields {
|
||||
margin-top: 10px;
|
||||
}
|
||||
</style>
|
||||
<div class="row dash-main-row ">
|
||||
<div class="col-md-8 col-lg-8 p-0">
|
||||
<a href="<?php echo base_url() ?>students" class="btn btn-dark deleted-btn">Back</a>
|
||||
<div class="block-head">
|
||||
<h3 class="dash-tab-head">Student Details</h3>
|
||||
</div>
|
||||
<ul class="nav nav-pills mb-3 student-sections row" id="pills-tab" role="tablist">
|
||||
<li class="nav-item section-sec col-md-4 p-0">
|
||||
<a class="nav-link sec-head active" id="pills-student-tab" data-toggle="pill" href="#pills-student" role="tab" aria-controls="pills-student" aria-selected="true">Student Info</a>
|
||||
</li>
|
||||
<li class="nav-item section-sec col-md-4 p-0">
|
||||
<a class="nav-link sec-head" id="pills-course-tab" data-toggle="pill" href="#pills-course" role="tab" aria-controls="pills-course" aria-selected="false">Course Details</a>
|
||||
</li>
|
||||
<li class="nav-item section-sec col-md-4 p-0">
|
||||
<a class="nav-link sec-head" id="pills-hostel-tab" data-toggle="pill" href="#pills-hostel" role="tab" aria-controls="pills-hostel" aria-selected="false">Hostel Details</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="tab-content" id="pills-tabContent">
|
||||
<div class="tab-pane fade show active" id="pills-student" role="tabpanel" aria-labelledby="pills-student-tab">
|
||||
<div class="row dash-main-row details-row">
|
||||
<div class="col-md-8 student-info">
|
||||
<img class="student-info-img" src="<?= STUDENT_IMAGE_URL . '/' . $student['photo'] ?>" alt="">
|
||||
<div class="student-info-fields mt-4">
|
||||
<p class="student-fields-left">Student ID:</p>
|
||||
<p class="student-fields-right"><?= $student['studentId'] ?></p>
|
||||
</div>
|
||||
|
||||
<div class="student-info-fields">
|
||||
<p class="student-fields-left">Name:</p>
|
||||
<p class="student-fields-right"><?= $student['name'] ?></p>
|
||||
</div>
|
||||
|
||||
<div class="student-info-fields">
|
||||
<p class="student-fields-left">Email:</p>
|
||||
<p class="student-fields-right"><?= $student['email'] ?></p>
|
||||
</div>
|
||||
|
||||
<div class="student-info-fields">
|
||||
<p class="student-fields-left">Contact number:</p>
|
||||
<p class="student-fields-right"><?= $student['mobile'] ?></p>
|
||||
</div>
|
||||
|
||||
<div class="student-info-fields">
|
||||
<p class="student-fields-left">Date of birth:</p>
|
||||
<p class="student-fields-right"><?= $student['dob'] ?></p>
|
||||
</div>
|
||||
|
||||
<div class="student-info-fields">
|
||||
<p class="student-fields-left">Gender:</p>
|
||||
<p class="student-fields-right"><?= $student['gender'] ?></p>
|
||||
</div>
|
||||
|
||||
<h5 class="student-emergency-title">Emergency contacts</h5>
|
||||
<div class="student-info-fields">
|
||||
<p class="student-fields-left">Name:</p>
|
||||
<p class="student-fields-right"><?= $student['emergency_contact_name'] ?></p>
|
||||
</div>
|
||||
|
||||
<div class="student-info-fields">
|
||||
<p class="student-fields-left">Contact number</p>
|
||||
<p class="student-fields-right"><?= $student['emergency_contact_number'] ?></p>
|
||||
</div>
|
||||
|
||||
<div class="student-info-fields">
|
||||
<p class="student-fields-left">Address:</p>
|
||||
<p class="student-fields-right"><?= $student['address1'] ?></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="tab-pane fade" id="pills-course" role="tabpanel" aria-labelledby="pills-course-tab">
|
||||
<div class="row dash-main-row">
|
||||
<div class="col-md-8 course-details">
|
||||
|
||||
<div class="course-info-fields">
|
||||
<p class="course-fields-left">Student ID:</p>
|
||||
<p class="course-fields-right"><?= $student['studentId'] ?></p>
|
||||
</div>
|
||||
|
||||
<div class="course-info-fields">
|
||||
<p class="course-fields-left">Level:</p>
|
||||
<p class="course-fields-right"><?= $student['class'] ?></p>
|
||||
</div>
|
||||
|
||||
<div class="course-info-fields">
|
||||
<p class="course-fields-left">Batch:</p>
|
||||
<p class="course-fields-right"><?= $student['startEndDate'] ?></p>
|
||||
</div>
|
||||
|
||||
<div class="course-info-fields">
|
||||
<p class="course-fields-left">Programme:</p>
|
||||
<p class="course-fields-right"><?= $student['course_name'] ?></p>
|
||||
</div>
|
||||
|
||||
<div class="course-info-fields">
|
||||
<p class="course-fields-left">Subjects:</p>
|
||||
<p class="course-fields-right">
|
||||
<?php foreach ($student['subjects'] as $key => $value) {
|
||||
echo $value['subject_name'] . '<br>';
|
||||
} ?>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="tab-pane fade" id="pills-hostel" role="tabpanel" aria-labelledby="pills-hostel-tab">
|
||||
<div class="row dash-main-row">
|
||||
<div class="col-md-8 course-details">
|
||||
|
||||
<div class="course-info-fields">
|
||||
<p class="course-fields-left">Joined Date:</p>
|
||||
<p class="course-fields-right"><?= date('d-m-Y', strtotime($hostel['joined_date'])) ?></p>
|
||||
</div>
|
||||
|
||||
<div class="course-info-fields">
|
||||
<p class="course-fields-left">Block:</p>
|
||||
<p class="course-fields-right"><?= $hostel['block_name'] ?></p>
|
||||
</div>
|
||||
|
||||
<div class="course-info-fields">
|
||||
<p class="course-fields-left">Floor:</p>
|
||||
<p class="course-fields-right"><?= $hostel['floor_name'] ?></p>
|
||||
</div>
|
||||
|
||||
<div class="course-info-fields">
|
||||
<p class="course-fields-left">Room No:</p>
|
||||
<p class="course-fields-right"><?= $hostel['room_name'] ?></p>
|
||||
</div>
|
||||
|
||||
<div class="course-info-fields">
|
||||
<p class="course-fields-left">Room Type</p>
|
||||
<p class="course-fields-right"><?= $hostel['room_ac'] ?></p>
|
||||
</div>
|
||||
|
||||
<div class="course-info-fields">
|
||||
<p class="course-fields-left">Bed No:</p>
|
||||
<p class="course-fields-right"><?= $hostel['bed_name'] ?></p>
|
||||
</div>
|
||||
|
||||
<div class="course-info-fields">
|
||||
<p class="course-fields-left">Food Type:</p>
|
||||
<p class="course-fields-right"><?= $hostel['food_type'] ?></p>
|
||||
</div>
|
||||
|
||||
<h5 class="student-emergency-title">Hostel Fee Details</h5>
|
||||
<?php if(empty($payments)) {
|
||||
echo 'Please try again in sometime';
|
||||
} else {
|
||||
|
||||
foreach ($payments as $key => $value) {
|
||||
$installments = json_decode($value['payment_details']); ?>
|
||||
<div class="course-info-fields">
|
||||
<p class="course-fields-left">Total:</p>
|
||||
<p class="course-fields-right">Rs.<?= $value['amount'] ?></p>
|
||||
</div>
|
||||
|
||||
<div class="course-info-fields">
|
||||
<p class="course-fields-left">Payment Dates:</p>
|
||||
|
||||
<div class="course-fields-right">
|
||||
<!-- <?php echo '<pre>';print_r($installments) ?> -->
|
||||
<?php foreach ($installments as $index => $ele) { ?>
|
||||
<div class="course-fields-right_block">
|
||||
<div class="fields-right-1">
|
||||
|
||||
<p>Rs.<?= $ele->feeamount; ?></p>
|
||||
</div>
|
||||
<?php if($ele->payment_status == 'yes') { ?>
|
||||
<div class="fields-right-2">
|
||||
<p>Paid on: <?= date('d-m-Y', strtotime($ele->paid_date)) ?></p>
|
||||
<img class="student-check-img ml-2" src="<?= base_url()?>assets-hms/images/dashboard/check.svg" alt="">
|
||||
</div>
|
||||
<?php } else { ?>
|
||||
<div class="fields-right-2">
|
||||
<p>Due on: <?= date('d-m-Y', strtotime($ele->due_date)) ?></p>
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
||||
</div>
|
||||
|
||||
<?php } ?>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<?php } ?>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
101
hostel/application/views/hms-admin/students.php
Normal file
@ -0,0 +1,101 @@
|
||||
<div class="row dash-main-row students-row">
|
||||
<div class="col-md-12 col-lg-12 p-0">
|
||||
<div class="block-head">
|
||||
<h3 class="dash-tab-head">Students</h3>
|
||||
</div>
|
||||
|
||||
<?php if ($this->session->flashdata('success')) { ?>
|
||||
<div class="alert alert-success alert-dismissible fade show" role="alert">
|
||||
<p><?php echo $this->session->flashdata('success') ?></p>
|
||||
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
||||
<?php if ($this->session->flashdata('failed')) { ?>
|
||||
<div class="alert alert-danger alert-dismissible fade show" role="alert">
|
||||
<p><?php echo $this->session->flashdata('failed') ?></p>
|
||||
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
||||
|
||||
<table class="table example dash-table mb-3 text-center">
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col" class="dash-th">Student ID</th>
|
||||
<th scope="col" class="dash-th rooms-th">Student Name</th>
|
||||
<th scope="col" class="dash-th rooms-th">Class</th>
|
||||
<th scope="col" class="dash-th rooms-th">Room</th>
|
||||
<th scope="col" class="dash-th rooms-th">Contact</th>
|
||||
<th scope="col" class="dash-th rooms-th">Student profile</th>
|
||||
<th scope="col" class="dash-th rooms-th">Room Status</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tfoot class="text-center">
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</tfoot>
|
||||
<tbody class="pb-2">
|
||||
<?php foreach ($students as $key => $value) {
|
||||
$room = isset($value['room_name']) ? $value['room_name'] : '-';
|
||||
$assigned = isset($value['room_name']) ? true : false;
|
||||
?>
|
||||
<tr>
|
||||
<td class=""><?= $value['studentId'] ?></td>
|
||||
<td class="rooms-td"><?= $value['name'] ?></td>
|
||||
<td class="rooms-td"><?= $value['classroom_name'] ?></td>
|
||||
<td class="rooms-td"><?= $room ?></td>
|
||||
<td class="rooms-td"><?= $value['emergency_contact_number'] ?></td>
|
||||
<td class="student-view"><img src="<?php echo base_url() ?>assets-hms/images/dashboard/user-icon.svg" alt=""><a href="<?php echo base_url() ?>profile/<?= $value['id'] ?>">View</a> </td>
|
||||
<td class="rooms-td">
|
||||
<?php if($assigned) { ?>
|
||||
<a href="<?php echo base_url() ?>assign-students/<?= $value['id'] ?>" class="btn btn-outline-primary student-edit-btn">Edit</a>
|
||||
<?php } else { ?>
|
||||
<a href="<?php echo base_url() ?>assign-students/<?= $value['id'] ?>" class="btn btn-primary student-update-btn">Assign</a>
|
||||
<?php } ?>
|
||||
</td>
|
||||
</tr>
|
||||
<?php } ?>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
$(document).ready(function(){
|
||||
$('.example').DataTable( {
|
||||
initComplete: function () {
|
||||
this.api().columns([1, 2, 3]).every( function () {
|
||||
var column = this;
|
||||
var select = $('<select><option value="">Choose</option></select>')
|
||||
.appendTo( $(column.footer()).empty() )
|
||||
.on( 'change', function () {
|
||||
var val = $.fn.dataTable.util.escapeRegex(
|
||||
$(this).val()
|
||||
);
|
||||
|
||||
column
|
||||
.search( val ? '^'+val+'$' : '', true, false )
|
||||
.draw();
|
||||
} );
|
||||
|
||||
column.data().unique().sort().each( function ( d, j ) {
|
||||
select.append( '<option value="'+d+'">'+d+'</option>' )
|
||||
} );
|
||||
} );
|
||||
}
|
||||
} );
|
||||
})
|
||||
</script>
|
149
hostel/application/views/hms-admin/users.php
Normal file
@ -0,0 +1,149 @@
|
||||
<main class="common_margin" id="main">
|
||||
<div id="add-btn" class="from-group adding-class form-group_lng form-group_full-width ">
|
||||
<a href="<?php echo base_url().'add-edit-user/0';?>"><button type="button" class="btn btn-success btn-sm">Add New User</button></a>
|
||||
</div>
|
||||
<div class="main-wrap">
|
||||
|
||||
<div class="roles-cover">
|
||||
<div class="common-heading">
|
||||
<h2>Users</h2>
|
||||
|
||||
<div class="alert alert-danger" id="errShow" style="display:none;"><strong>Error!</strong> Oops. Something went wrong.</div>
|
||||
<div class="alert alert-success" id="success" style="display:none;"><strong>Success!</strong> The user has been deleted successfully.</div>
|
||||
|
||||
<?php if($this->session->flashdata('success')){?>
|
||||
<div class="alert alert-success alert-dismissible fade show" role="alert">
|
||||
<p><?php echo $this->session->flashdata('success') ?></p>
|
||||
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
||||
<?php if($this->session->flashdata('danger')){?>
|
||||
<div class="alert alert-danger alert-dismissible fade show" role="alert">
|
||||
<p><?php echo $this->session->flashdata('danger') ?></p>
|
||||
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<?php } ?>
|
||||
</div>
|
||||
<div class="subject_r">
|
||||
<div class="subject_rsec">
|
||||
<div class="">
|
||||
<table id="tbl" class="display user-role dataTable table-responsive">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Sl No</th>
|
||||
<th>Full Name</th>
|
||||
<th>Email ID</th>
|
||||
<th>User Role</th>
|
||||
<th>Status</th>
|
||||
<th>Actions</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php
|
||||
if(isset($userList) && !empty($userList))
|
||||
{
|
||||
$slNo=1;
|
||||
foreach($userList as $post)
|
||||
{
|
||||
?>
|
||||
<tr>
|
||||
<td><?php echo $slNo;?></td>
|
||||
<td><?php echo $post['admin_name'];?></td>
|
||||
<td><?php echo $post['email'];?></td>
|
||||
<td><?php echo $post['role_name'];?></td>
|
||||
<td><?php echo $post['status'];?></td>
|
||||
<td>
|
||||
<div class="sub_tabbtnsec">
|
||||
<a href='<?php echo base_url()."add-edit-user/".$post['id'];?>'>
|
||||
<div class="sub_editbtn"><i class="fas fa-pencil-alt"></i></div>
|
||||
</a>
|
||||
<?php if($post['can_delete']=='Yes'){?>
|
||||
<div class="sub_delbtn" onclick='delete_user(<?php echo $post['id'];?>)'>
|
||||
<i class="fa fa-trash" aria-hidden="true"></i>
|
||||
</div>
|
||||
<?php } ?>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<?php
|
||||
$slNo++;
|
||||
}
|
||||
}
|
||||
?>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
<!--End right-top side-->
|
||||
</div>
|
||||
<!-- <script src="assets-hms/js/jquery-3.2.1.slim.min.js"></script> -->
|
||||
<script src="assets-hms/js/jquery-3.4.1.min.js" ></script>
|
||||
<script src="assets-hms/js/popper.min.js"></script>
|
||||
<script src="assets-hms/js/bootstrap.min.js"></script>
|
||||
<script src="https://cdn.datatables.net/1.10.22/js/jquery.dataTables.min.js"></script>
|
||||
<script defer src="assets-hms/js/all.js"></script>
|
||||
<script defer src="assets-hms/js/main.js"></script>
|
||||
<script src="assets-hms/owl-carousel/js/owl.carousel.min.js"></script>
|
||||
|
||||
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
|
||||
|
||||
|
||||
<script>
|
||||
$(document).ready(function(){
|
||||
$('.user-drpdown').click(function(){
|
||||
$('.drpdown-items').toggle();
|
||||
});
|
||||
});
|
||||
//table js
|
||||
$('#tbl').DataTable( {
|
||||
"lengthMenu": [[5,10, 25, 50, -1], [5,10, 25, 50, "All"]]
|
||||
} );
|
||||
//table js end
|
||||
</script>
|
||||
|
||||
<script>
|
||||
function delete_user(userId)
|
||||
{
|
||||
swal({
|
||||
title: "Are you sure?",
|
||||
text: "Once deleted, you will not be able to recover this user!",
|
||||
icon: "warning",
|
||||
buttons: true,
|
||||
dangerMode: true,
|
||||
})
|
||||
.then((willDelete) => {
|
||||
if (willDelete) {
|
||||
$.ajax({
|
||||
type: 'post',
|
||||
url: '<?= base_url(); ?>HmsAdmin/delete_user',
|
||||
data: {'id' : userId},
|
||||
success: function(result){
|
||||
//alert(result);
|
||||
if(result=='Success')
|
||||
{
|
||||
$('#errShow').hide();
|
||||
$('#success').show();
|
||||
setTimeout(() => { location.reload(); }, 2000);
|
||||
}
|
||||
else
|
||||
{
|
||||
$('#success').hide();
|
||||
$('#errShow').show();
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
})
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
11
hostel/application/views/index.html
Normal file
@ -0,0 +1,11 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>403 Forbidden</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p>Directory access is forbidden.</p>
|
||||
|
||||
</body>
|
||||
</html>
|
89
hostel/application/views/welcome_message.php
Normal file
@ -0,0 +1,89 @@
|
||||
<?php
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
?><!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Welcome to CodeIgniter</title>
|
||||
|
||||
<style type="text/css">
|
||||
|
||||
::selection { background-color: #E13300; color: white; }
|
||||
::-moz-selection { background-color: #E13300; color: white; }
|
||||
|
||||
body {
|
||||
background-color: #fff;
|
||||
margin: 40px;
|
||||
font: 13px/20px normal Helvetica, Arial, sans-serif;
|
||||
color: #4F5155;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #003399;
|
||||
background-color: transparent;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
h1 {
|
||||
color: #444;
|
||||
background-color: transparent;
|
||||
border-bottom: 1px solid #D0D0D0;
|
||||
font-size: 19px;
|
||||
font-weight: normal;
|
||||
margin: 0 0 14px 0;
|
||||
padding: 14px 15px 10px 15px;
|
||||
}
|
||||
|
||||
code {
|
||||
font-family: Consolas, Monaco, Courier New, Courier, monospace;
|
||||
font-size: 12px;
|
||||
background-color: #f9f9f9;
|
||||
border: 1px solid #D0D0D0;
|
||||
color: #002166;
|
||||
display: block;
|
||||
margin: 14px 0 14px 0;
|
||||
padding: 12px 10px 12px 10px;
|
||||
}
|
||||
|
||||
#body {
|
||||
margin: 0 15px 0 15px;
|
||||
}
|
||||
|
||||
p.footer {
|
||||
text-align: right;
|
||||
font-size: 11px;
|
||||
border-top: 1px solid #D0D0D0;
|
||||
line-height: 32px;
|
||||
padding: 0 10px 0 10px;
|
||||
margin: 20px 0 0 0;
|
||||
}
|
||||
|
||||
#container {
|
||||
margin: 10px;
|
||||
border: 1px solid #D0D0D0;
|
||||
box-shadow: 0 0 8px #D0D0D0;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div id="container">
|
||||
<h1>Welcome to CodeIgniter!</h1>
|
||||
|
||||
<div id="body">
|
||||
<p>The page you are looking at is being generated dynamically by CodeIgniter.</p>
|
||||
|
||||
<p>If you would like to edit this page you'll find it located at:</p>
|
||||
<code>application/views/welcome_message.php</code>
|
||||
|
||||
<p>The corresponding controller for this page is found at:</p>
|
||||
<code>application/controllers/Welcome.php</code>
|
||||
|
||||
<p>If you are exploring CodeIgniter for the very first time, you should start by reading the <a href="user_guide/">User Guide</a>.</p>
|
||||
</div>
|
||||
|
||||
<p class="footer">Page rendered in <strong>{elapsed_time}</strong> seconds. <?php echo (ENVIRONMENT === 'development') ? 'CodeIgniter Version <strong>' . CI_VERSION . '</strong>' : '' ?></p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
BIN
hostel/assets-hms/A.png
Normal file
After Width: | Height: | Size: 7.0 KiB |
BIN
hostel/assets-hms/color_logo.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
4619
hostel/assets-hms/css/all.css
Normal file
8974
hostel/assets-hms/css/bootstrap.css
vendored
Normal file
6
hostel/assets-hms/css/bootstrap.min.css
vendored
Normal file
112
hostel/assets-hms/css/font-family.css
Normal file
@ -0,0 +1,112 @@
|
||||
*,
|
||||
html,
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
font-family: "Roboto";
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
/* roboto-100 - latin */
|
||||
@font-face {
|
||||
font-family: "Roboto";
|
||||
font-style: normal;
|
||||
font-weight: 100;
|
||||
src: url("../fonts/roboto-v27-latin-100.eot"); /* IE9 Compat Modes */
|
||||
src: local(""),
|
||||
url("../fonts/roboto-v27-latin-100.eot?#iefix") format("embedded-opentype"),
|
||||
/* IE6-IE8 */ url("../fonts/roboto-v27-latin-100.woff2") format("woff2"),
|
||||
/* Super Modern Browsers */ url("../fonts/roboto-v27-latin-100.woff")
|
||||
format("woff"),
|
||||
/* Modern Browsers */ url("../fonts/roboto-v27-latin-100.ttf")
|
||||
format("truetype"),
|
||||
/* Safari, Android, iOS */ url("../fonts/roboto-v27-latin-100.svg#Roboto")
|
||||
format("svg"); /* Legacy iOS */
|
||||
}
|
||||
|
||||
/* roboto-300 - latin */
|
||||
@font-face {
|
||||
font-family: "Roboto";
|
||||
font-style: normal;
|
||||
font-weight: 300;
|
||||
src: url("../fonts/roboto-v27-latin-300.eot"); /* IE9 Compat Modes */
|
||||
src: local(""),
|
||||
url("../fonts/roboto-v27-latin-300.eot?#iefix") format("embedded-opentype"),
|
||||
/* IE6-IE8 */ url("../fonts/roboto-v27-latin-300.woff2") format("woff2"),
|
||||
/* Super Modern Browsers */ url("../fonts/roboto-v27-latin-300.woff")
|
||||
format("woff"),
|
||||
/* Modern Browsers */ url("../fonts/roboto-v27-latin-300.ttf")
|
||||
format("truetype"),
|
||||
/* Safari, Android, iOS */ url("../fonts/roboto-v27-latin-300.svg#Roboto")
|
||||
format("svg"); /* Legacy iOS */
|
||||
}
|
||||
|
||||
/* roboto-regular - latin */
|
||||
@font-face {
|
||||
font-family: "Roboto";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url("../fonts/roboto-v27-latin-regular.eot"); /* IE9 Compat Modes */
|
||||
src: local(""),
|
||||
url("../fonts/roboto-v27-latin-regular.eot?#iefix")
|
||||
format("embedded-opentype"),
|
||||
/* IE6-IE8 */ url("../fonts/roboto-v27-latin-regular.woff2") format("woff2"),
|
||||
/* Super Modern Browsers */ url("../fonts/roboto-v27-latin-regular.woff")
|
||||
format("woff"),
|
||||
/* Modern Browsers */ url("../fonts/roboto-v27-latin-regular.ttf")
|
||||
format("truetype"),
|
||||
/* Safari, Android, iOS */
|
||||
url("../fonts/roboto-v27-latin-regular.svg#Roboto") format("svg"); /* Legacy iOS */
|
||||
}
|
||||
|
||||
/* roboto-500 - latin */
|
||||
@font-face {
|
||||
font-family: "Roboto";
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
src: url("../fonts/roboto-v27-latin-500.eot"); /* IE9 Compat Modes */
|
||||
src: local(""),
|
||||
url("../fonts/roboto-v27-latin-500.eot?#iefix") format("embedded-opentype"),
|
||||
/* IE6-IE8 */ url("../fonts/roboto-v27-latin-500.woff2") format("woff2"),
|
||||
/* Super Modern Browsers */ url("../fonts/roboto-v27-latin-500.woff")
|
||||
format("woff"),
|
||||
/* Modern Browsers */ url("../fonts/roboto-v27-latin-500.ttf")
|
||||
format("truetype"),
|
||||
/* Safari, Android, iOS */ url("../fonts/roboto-v27-latin-500.svg#Roboto")
|
||||
format("svg"); /* Legacy iOS */
|
||||
}
|
||||
|
||||
/* roboto-700 - latin */
|
||||
@font-face {
|
||||
font-family: "Roboto";
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url("../fonts/roboto-v27-latin-700.eot"); /* IE9 Compat Modes */
|
||||
src: local(""),
|
||||
url("../fonts/roboto-v27-latin-700.eot?#iefix") format("embedded-opentype"),
|
||||
/* IE6-IE8 */ url("../fonts/roboto-v27-latin-700.woff2") format("woff2"),
|
||||
/* Super Modern Browsers */ url("../fonts/roboto-v27-latin-700.woff")
|
||||
format("woff"),
|
||||
/* Modern Browsers */ url("../fonts/roboto-v27-latin-700.ttf")
|
||||
format("truetype"),
|
||||
/* Safari, Android, iOS */ url("../fonts/roboto-v27-latin-700.svg#Roboto")
|
||||
format("svg"); /* Legacy iOS */
|
||||
}
|
||||
|
||||
/* roboto-900 - latin */
|
||||
@font-face {
|
||||
font-family: "Roboto";
|
||||
font-style: normal;
|
||||
font-weight: 900;
|
||||
src: url("../fonts/roboto-v27-latin-900.eot"); /* IE9 Compat Modes */
|
||||
src: local(""),
|
||||
url("../fonts/roboto-v27-latin-900.eot?#iefix") format("embedded-opentype"),
|
||||
/* IE6-IE8 */ url("../fonts/roboto-v27-latin-900.woff2") format("woff2"),
|
||||
/* Super Modern Browsers */ url("../fonts/roboto-v27-latin-900.woff")
|
||||
format("woff"),
|
||||
/* Modern Browsers */ url("../fonts/roboto-v27-latin-900.ttf")
|
||||
format("truetype"),
|
||||
/* Safari, Android, iOS */ url("../fonts/roboto-v27-latin-900.svg#Roboto")
|
||||
format("svg"); /* Legacy iOS */
|
||||
}
|
1
hostel/assets-hms/css/jquery.dataTables.min.css
vendored
Normal file
1097
hostel/assets-hms/css/responsive.css
Normal file
1397
hostel/assets-hms/css/style.css
Normal file
BIN
hostel/assets-hms/fav.png
Normal file
After Width: | Height: | Size: 241 B |
BIN
hostel/assets-hms/fonts/roboto-v27-latin-100.eot
Normal file
313
hostel/assets-hms/fonts/roboto-v27-latin-100.svg
Normal file
@ -0,0 +1,313 @@
|
||||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg xmlns="http://www.w3.org/2000/svg">
|
||||
<defs >
|
||||
<font id="Roboto" horiz-adv-x="1113" ><font-face
|
||||
font-family="Roboto Thin"
|
||||
units-per-em="2048"
|
||||
panose-1="2 0 0 0 0 0 0 0 0 0"
|
||||
ascent="1900"
|
||||
descent="-500"
|
||||
alphabetic="0" />
|
||||
<glyph unicode=" " horiz-adv-x="490" />
|
||||
<glyph unicode="!" horiz-adv-x="397" d="M221 401H167V1456H221V401ZM147 49Q147 72 163 88T202 105T241 89T258 49T242 10T202 -6T163 10T147 49Z" />
|
||||
<glyph unicode=""" horiz-adv-x="521" d="M210 1393L200 1122H150Q155 1390 155 1536H210V1393ZM411 1393L401 1122H351L357 1390V1536H411V1393Z" />
|
||||
<glyph unicode="#" horiz-adv-x="1121" d="M742 410H378L304 0H248L322 410H51V462H332L427 986H127V1040H437L512 1456H568L492 1040H857L933 1456H989L913 1040H1167V986H903L807 462H1092V410H798L723 0H667L742 410ZM388 462H751L847 986H482L388 462Z" />
|
||||
<glyph unicode="$" horiz-adv-x="1121" d="M947 344Q947 435 913 494T796 604T554 709T317 817T205 940T168 1110Q168 1273 275 1371T554 1476V1663H609V1476Q793 1466 893 1354T993 1047H939Q939 1217 843 1320T579 1424Q417 1424 320 1337T222 1112Q222 1014
|
||||
254 957T362 854T575 760T785 677T906 592T977 485T1001 346Q1001 187 898 89T620 -20V-208H565V-21Q353 -13 237 99T121 409H175Q175 232 285 132T586 32Q743 32 845 122T947 344Z" />
|
||||
<glyph unicode="%" horiz-adv-x="1527" d="M114 1176Q114 1305 192 1391T386 1477Q503 1477 580 1391T657 1171V1099Q657 972 581 886T388 800Q271 800 193 885T114 1105V1176ZM169 1099Q169 995 228 925T388 855Q484 855 543 924T602 1104V1176Q602 1284 543
|
||||
1353T386 1422Q291 1422 230 1353T169 1169V1099ZM870 357Q870 486 947 571T1141 657Q1258 657 1335 572T1413 350V279Q1413 150 1336 65T1143 -21Q1027 -21 949 64T870 284V357ZM925 279Q925 172 984 103T1143 34Q1241 34 1299 103T1358 284V357Q1358 470 1300
|
||||
536T1141 602Q1042 602 984 535T925 353V279ZM422 131L377 162L1088 1300L1133 1269L422 131Z" />
|
||||
<glyph unicode="&" horiz-adv-x="1247" d="M422 802Q334 910 296 996T257 1167Q257 1308 341 1392T562 1477Q687 1477 762 1404T838 1213Q838 1077 650 921L494 797L969 258Q1084 418 1084 632H1139Q1139 395 1006 216L1196 0H1129L972 176Q776 -20 549 -20Q348
|
||||
-20 232 80T115 352Q115 450 171 545T371 762L422 802ZM549 34Q660 34 760 81T937 217L454 764L402 723Q284 621 227 532T169 352Q169 210 272 122T549 34ZM312 1169Q312 1011 462 834L637 973Q782 1094 782 1213Q782 1305 721 1364T562 1423Q449 1423 381 1353T312
|
||||
1169Z" />
|
||||
<glyph unicode="'" horiz-adv-x="340" d="M200 1367L186 1122H136L145 1365V1536H200V1367Z" />
|
||||
<glyph unicode="(" horiz-adv-x="607" d="M148 586Q148 802 201 1011T351 1386T562 1623L581 1580Q483 1515 396 1363T257 1011T202 616V564Q202 366 252 163T391 -200T581 -427L562 -470Q446 -397 351 -239T202 130T148 586Z" />
|
||||
<glyph unicode=")" horiz-adv-x="623" d="M461 566Q461 341 408 131T259 -238T47 -470L28 -427Q132 -357 221 -195T358 167T407 590Q407 792 356 995T217 1356T28 1580L47 1623Q160 1552 257 1386T408 1011T461 566Z" />
|
||||
<glyph unicode="*" horiz-adv-x="856" d="M393 1017L30 1141L48 1195L410 1062L411 1456H467L460 1061L812 1204L832 1151L472 1014L721 697L674 664L432 986L204 661L159 693L393 1017Z" />
|
||||
<glyph unicode="+" horiz-adv-x="1151" d="M590 702H1071V649H590V146H535V649H73V702H535V1206H590V702Z" />
|
||||
<glyph unicode="," horiz-adv-x="383" d="M129 -255L92 -223Q173 -119 180 -8L181 159H235V13Q231 -146 129 -255Z" />
|
||||
<glyph unicode="-" horiz-adv-x="607" d="M531 639H61V693H531V639Z" />
|
||||
<glyph unicode="." horiz-adv-x="439" d="M147 49Q147 72 163 88T202 105T241 89T258 49T242 10T202 -6T163 10T147 49Z" />
|
||||
<glyph unicode="/" horiz-adv-x="782" d="M101 -125H42L650 1456H709L101 -125Z" />
|
||||
<glyph unicode="0" horiz-adv-x="1121" d="M996 594Q996 301 882 141T562 -20Q357 -20 241 142T125 598V862Q125 1152 239 1314T560 1477Q767 1477 881 1315T996 858V594ZM942 862Q942 1127 843 1275T560 1423Q376 1423 278 1275T179 857V596Q179 332 280 183T562
|
||||
34Q744 34 843 183T942 601V862Z" />
|
||||
<glyph unicode="1" horiz-adv-x="1121" d="M659 0H605V1388L187 1231V1290L648 1460H659V0Z" />
|
||||
<glyph unicode="2" horiz-adv-x="1121" d="M1024 0H153V54L650 627Q772 770 831 881T891 1085Q891 1245 798 1333T536 1422Q434 1422 350 1373T219 1238T171 1045H117Q117 1162 171 1262T321 1419T536 1476Q730 1476 838 1373T946 1085Q946 915 755 678L664 567L224
|
||||
54H1024V0Z" />
|
||||
<glyph unicode="3" horiz-adv-x="1121" d="M417 770H539Q710 773 815 861T921 1085Q921 1240 827 1331T564 1422Q400 1422 294 1326T188 1074H134Q134 1190 190 1282T345 1425T564 1476Q753 1476 864 1370T975 1081Q975 965 902 874T703 745Q846 712 926 621T1007
|
||||
386Q1007 200 888 90T573 -20Q441 -20 329 37T160 188T103 405H157Q157 245 275 140T573 34Q752 34 852 126T953 382Q953 543 846 628T531 714H417V770Z" />
|
||||
<glyph unicode="4" horiz-adv-x="1121" d="M842 451H1094V397H842V0H788V397H82V427L777 1456H842V451ZM166 451H788V1391L704 1253L166 451Z" />
|
||||
<glyph unicode="5" horiz-adv-x="1121" d="M231 762L299 1456H1009V1403H348L289 819Q341 862 426 889T594 916Q790 916 907 792T1024 464Q1024 227 918 104T614 -20Q427 -20 312 87T182 383H237Q253 212 349 123T614 34Q794 34 881 142T969 462Q969 644 868 753T595
|
||||
862Q490 862 412 834T272 746L231 762Z" />
|
||||
<glyph unicode="6" horiz-adv-x="1121" d="M840 1476V1422Q534 1422 365 1241T183 733Q241 836 351 896T592 957Q784 957 898 826T1013 480Q1013 341 961 226T814 46T602 -20Q468 -20 360 42T191 219T128 481V660Q128 1048 311 1262T840 1476ZM585 903Q445 903
|
||||
329 823T182 621V493Q182 287 299 160T602 33Q757 33 858 162T959 480Q959 674 859 788T585 903Z" />
|
||||
<glyph unicode="7" horiz-adv-x="1121" d="M1007 1422L366 0H311L945 1402H77V1456H1007V1422Z" />
|
||||
<glyph unicode="8" horiz-adv-x="1121" d="M986 1086Q986 964 911 873T715 745Q858 707 943 607T1028 379Q1028 194 902 87T565 -20Q351 -20 226 87T100 379Q100 508 182 607T408 745Q288 781 215 872T141 1086Q141 1266 256 1371T561 1476Q751 1476 868 1369T986
|
||||
1086ZM973 374Q973 524 858 621T563 718Q382 718 268 622T154 374Q154 220 265 127T565 34Q749 34 861 127T973 374ZM932 1091Q932 1233 825 1327T561 1422Q400 1422 298 1331T195 1091Q195 949 297 861T563 772Q725 772 828 861T932 1091Z" />
|
||||
<glyph unicode="9" horiz-adv-x="1121" d="M939 724Q886 609 775 539T523 468Q403 468 307 532T157 710T103 958Q103 1101 158 1220T312 1408T531 1476Q756 1476 874 1330T993 907V740Q993 371 829 178T346 -20H298L300 34H343Q635 37 787 212T939 724ZM523 522Q671
|
||||
522 785 609T939 840V902Q939 1155 835 1288T535 1422Q428 1422 341 1359T206 1188T157 958Q157 839 204 738T334 579T523 522Z" />
|
||||
<glyph unicode=":" horiz-adv-x="364" d="M376 49Q376 72 392 88T431 105T470 89T487 49T471 10T431 -6T392 10T376 49ZM125 1011Q125 1034 141 1050T180 1067T219 1051T236 1011T220 972T180 956T141 972T125 1011Z" />
|
||||
<glyph unicode=";" horiz-adv-x="364" d="M126 1011Q126 1034 142 1050T181 1067T220 1051T237 1011T221 972T181 956T142 972T126 1011ZM374 -255L337 -223Q418 -119 425 -8L426 159H480V13Q476 -146 374 -255Z" />
|
||||
<glyph unicode="<" horiz-adv-x="1053" d="M155 666L919 321V262L82 641V691L919 1069V1011L155 666Z" />
|
||||
<glyph unicode="=" horiz-adv-x="1142" d="M981 843H147V897H981V843ZM981 436H147V490H981V436Z" />
|
||||
<glyph unicode=">" horiz-adv-x="1053" d="M872 668L114 1013V1072L950 694V644L114 265V324L872 668Z" />
|
||||
<glyph unicode="?" horiz-adv-x="893" d="M395 400Q397 512 429 583T552 739T678 874T730 980T747 1112Q747 1257 670 1340T458 1423Q314 1423 232 1337T147 1116H93Q95 1278 198 1377T458 1476T708 1377T801 1110Q801 995 756 906T581 698Q449 595 449 400H395ZM371
|
||||
49Q371 72 387 88T426 105T465 89T482 49T466 10T426 -6T387 10T371 49Z" />
|
||||
<glyph unicode="@" horiz-adv-x="1902" d="M1770 523Q1765 369 1715 240T1584 46T1400 -20Q1300 -20 1238 41T1165 210Q1055 -20 832 -20Q696 -20 630 104T581 436Q605 687 726 837T1018 988Q1133 988 1216 922L1268 878L1219 293Q1208 170 1256 103T1403 35Q1537
|
||||
35 1619 164T1713 523Q1735 934 1553 1144T1000 1354Q776 1354 593 1242T305 930T187 478Q175 223 259 24T513 -287T913 -398Q1003 -398 1091 -377T1243 -318L1267 -364Q1203 -406 1102 -429T909 -453Q659 -453 479 -341T210 -17T132 478Q144 758 255 970T560 1296T1004
|
||||
1411Q1396 1411 1592 1182T1770 523ZM634 279Q645 163 696 99T830 34Q955 34 1036 111T1168 344L1211 851Q1142 933 1015 933T792 833T655 557Q621 405 634 279Z" />
|
||||
<glyph unicode="A" horiz-adv-x="1223" d="M967 435H254L92 0H33L578 1456H644L1189 0H1130L967 435ZM274 489H947L611 1391L274 489Z" />
|
||||
<glyph unicode="B" horiz-adv-x="1235" d="M200 0V1456H583Q818 1456 938 1361T1059 1083Q1059 951 992 864T803 753Q941 735 1033 634T1125 401Q1125 215 1005 108T669 0H200ZM254 719V54H675Q860 54 965 145T1071 399Q1071 537 969 626T696 719H254ZM254 773H603Q802
|
||||
773 903 849T1004 1087Q1004 1397 595 1402H254V773Z" />
|
||||
<glyph unicode="C" horiz-adv-x="1327" d="M1190 446Q1169 221 1035 101T671 -20Q516 -20 397 58T211 281T144 612V837Q144 1023 209 1169T394 1396T671 1476Q899 1476 1034 1356T1190 1012H1136Q1113 1213 996 1317T671 1422Q459 1422 329 1262T198 833V619Q198
|
||||
447 256 315T422 108T671 34Q880 34 997 137T1136 446H1190Z" />
|
||||
<glyph unicode="D" horiz-adv-x="1340" d="M200 0V1456H603Q772 1456 909 1376T1124 1152T1204 828V639Q1204 457 1128 311T914 83T608 0H200ZM254 1402V54H603Q756 54 881 128T1078 336T1150 633V820Q1150 983 1081 1116T887 1324T611 1402H254Z" />
|
||||
<glyph unicode="E" horiz-adv-x="1166" d="M984 722H254V54H1086V0H200V1456H1086V1402H254V776H984V722Z" />
|
||||
<glyph unicode="F" horiz-adv-x="1172" d="M1000 716H254V0H200V1456H1102V1402H254V772H1000V716Z" />
|
||||
<glyph unicode="G" horiz-adv-x="1406" d="M1226 156Q1171 80 1033 30T729 -20Q567 -20 440 59T242 282T168 608V858Q168 1037 237 1179T431 1398T712 1476Q929 1476 1065 1365T1224 1062H1170Q1143 1236 1025 1329T712 1422Q492 1422 357 1265T222 852V620Q222
|
||||
449 285 315T464 108T729 34Q875 34 1000 77T1172 181V605H727V660H1226V156Z" />
|
||||
<glyph unicode="H" horiz-adv-x="1438" d="M1238 0H1184V722H254V0H200V1456H254V776H1184V1456H1238V0Z" />
|
||||
<glyph unicode="I" horiz-adv-x="534" d="M294 0H240V1456H294V0Z" />
|
||||
<glyph unicode="J" horiz-adv-x="1125" d="M876 1456H930V442Q930 231 815 106T510 -20Q306 -20 198 89T90 401H144Q144 223 235 129T510 34Q670 34 771 141T876 432V1456Z" />
|
||||
<glyph unicode="K" horiz-adv-x="1300" d="M487 766L254 551V0H200V1456H254V614L494 849L1098 1456H1176L527 803L1226 0H1156L487 766Z" />
|
||||
<glyph unicode="L" horiz-adv-x="1057" d="M255 54H1002V0H200V1456H255V54Z" />
|
||||
<glyph unicode="M" horiz-adv-x="1756" d="M277 1456L876 79L1477 1456H1556V0H1502V1376L898 0H855L254 1369V0H200V1456H277Z" />
|
||||
<glyph unicode="N" horiz-adv-x="1449" d="M1249 0H1195L255 1364V0H200V1456H255L1195 95V1456H1249V0Z" />
|
||||
<glyph unicode="O" horiz-adv-x="1364" d="M1231 619Q1231 430 1164 285T971 60T683 -20Q437 -20 285 155T133 627V837Q133 1025 200 1171T393 1396T681 1476Q844 1476 969 1397T1163 1171T1231 837V619ZM1177 839Q1177 1103 1043 1262T681 1422Q456 1422 322
|
||||
1264T188 832V619Q188 445 248 312T421 106T683 34Q911 34 1044 193T1177 627V839Z" />
|
||||
<glyph unicode="P" horiz-adv-x="1230" d="M254 615V0H200V1456H655Q878 1456 1001 1344T1125 1031Q1125 833 1005 725T662 615H254ZM254 669H655Q852 669 961 764T1071 1029Q1071 1205 962 1303T655 1402H254V669Z" />
|
||||
<glyph unicode="Q" horiz-adv-x="1364" d="M1231 619Q1231 415 1152 261T924 33L1191 -228L1152 -263L868 10Q778 -20 683 -20Q437 -20 285 155T133 627V837Q133 1025 200 1171T393 1396T681 1476Q844 1476 969 1397T1163 1171T1231 837V619ZM1177 839Q1177 1103
|
||||
1043 1262T681 1422Q456 1422 322 1264T188 832V619Q188 445 248 312T421 106T683 34Q911 34 1044 193T1177 627V839Z" />
|
||||
<glyph unicode="R" horiz-adv-x="1340" d="M754 623H249V0H195V1456H659Q878 1456 1007 1343T1137 1036Q1137 887 1045 776T809 637L1198 14V0H1141L754 623ZM249 677H708Q876 677 979 779T1083 1036Q1083 1206 969 1304T655 1402H249V677Z" />
|
||||
<glyph unicode="S" horiz-adv-x="1211" d="M1072 349Q1072 442 1029 506T892 620T609 722T326 827T187 950T143 1120Q143 1279 277 1377T626 1476Q766 1476 877 1422T1050 1269T1111 1046H1057Q1057 1209 937 1315T626 1422Q434 1422 316 1337T197 1122Q197 991
|
||||
300 911T640 770T987 627Q1127 524 1127 351Q1127 241 1065 157T889 26T633 -20Q475 -20 349 32T160 182T96 411H150Q150 232 284 133T633 34Q824 34 948 121T1072 349Z" />
|
||||
<glyph unicode="T" horiz-adv-x="1224" d="M1169 1402H639V0H585V1402H55V1456H1169V1402Z" />
|
||||
<glyph unicode="U" horiz-adv-x="1365" d="M1180 1456V470Q1180 239 1046 110T683 -20T320 109T185 466V1456H239V472Q239 270 360 152T683 34T1005 152T1126 473V1456H1180Z" />
|
||||
<glyph unicode="V" horiz-adv-x="1223" d="M583 142L612 54L641 142L1130 1456H1189L645 0H579L35 1456H94L583 142Z" />
|
||||
<glyph unicode="W" horiz-adv-x="1855" d="M489 90L555 330L899 1456H959L1301 330L1366 90L1434 330L1734 1456H1793L1401 0H1340L979 1214L928 1368L879 1214L515 0H454L61 1456H121L423 330L489 90Z" />
|
||||
<glyph unicode="X" horiz-adv-x="1223" d="M611 785L1081 1456H1149L645 743L1168 0H1101L611 701L119 0H54L577 743L73 1456H141L611 785Z" />
|
||||
<glyph unicode="Y" horiz-adv-x="1223" d="M609 602L1119 1456H1185L636 553V0H582V553L33 1456H105L609 602Z" />
|
||||
<glyph unicode="Z" horiz-adv-x="1224" d="M168 54H1130V0H94V44L1023 1403H134V1456H1098V1418L168 54Z" />
|
||||
<glyph unicode="[" horiz-adv-x="439" d="M464 1610H235V-258H464V-312H181V1664H464V1610Z" />
|
||||
<glyph unicode="\" horiz-adv-x="774" d="M57 1456H115L723 -125H665L57 1456Z" />
|
||||
<glyph unicode="]" horiz-adv-x="439" d="M-8 1664H275V-312H-8V-258H220V1610H-8V1664Z" />
|
||||
<glyph unicode="^" horiz-adv-x="849" d="M416 1382L150 729H91L390 1456H442L741 729H680L416 1382Z" />
|
||||
<glyph unicode="_" horiz-adv-x="845" d="M845 -54H-1V0H845V-54Z" />
|
||||
<glyph unicode="`" horiz-adv-x="537" d="M403 1270H344L149 1536H215L403 1270Z" />
|
||||
<glyph unicode="a" horiz-adv-x="1081" d="M871 0Q851 69 851 198Q787 94 676 37T425 -20Q275 -20 184 61T92 274Q92 423 226 512T584 604H851V762Q851 898 766 973T521 1048Q373 1048 274 972T175 784L121 786Q121 918 237 1010T521 1102Q696 1102 799 1015T905
|
||||
768V251Q905 73 933 9V0H871ZM425 33Q577 33 686 101T851 292V549H601Q369 549 246 457Q146 382 146 270Q146 171 225 102T425 33Z" />
|
||||
<glyph unicode="b" horiz-adv-x="1121" d="M999 531Q999 278 890 129T593 -20Q471 -20 375 30T224 171V0H170V1536H224V885Q281 992 374 1047T591 1102Q781 1102 890 957T999 548V531ZM943 552Q943 785 851 916T592 1048Q456 1048 362 978T224 770V274Q267 159
|
||||
361 97T594 34Q761 34 852 167T943 552Z" />
|
||||
<glyph unicode="c" horiz-adv-x="1039" d="M539 34Q686 34 781 112T886 328H940Q932 171 819 76T539 -20Q336 -20 217 127T97 526V562Q97 808 216 955T537 1102Q709 1102 821 999T940 725H886Q879 871 784 959T537 1048Q356 1048 254 918T151 555V520Q151 293
|
||||
254 164T539 34Z" />
|
||||
<glyph unicode="d" horiz-adv-x="1121" d="M122 552Q122 811 231 956T530 1102Q652 1102 745 1047T897 883V1536H951V0H897V173Q842 81 746 31T528 -20Q340 -20 231 129T122 538V552ZM178 531Q178 301 269 168T527 34Q661 34 756 93T897 268V775Q804 1048 529
|
||||
1048Q363 1048 271 917T178 531Z" />
|
||||
<glyph unicode="e" horiz-adv-x="1032" d="M561 -20Q430 -20 321 50T149 244T87 517V562Q87 712 147 837T312 1032T541 1102Q722 1102 837 973T952 634V577H141V518Q141 386 196 274T349 97T561 33Q670 33 746 69T882 182L920 155Q799 -20 561 -20ZM541 1048Q383
|
||||
1048 273 931T144 631H898V644Q898 754 852 848T724 995T541 1048Z" />
|
||||
<glyph unicode="f" horiz-adv-x="645" d="M254 0V1027H66V1082H254V1240Q255 1390 329 1473T537 1557Q611 1557 665 1540L657 1488Q605 1503 538 1503Q431 1503 370 1434T308 1236V1082H594V1027H308V0H254Z" />
|
||||
<glyph unicode="g" horiz-adv-x="1123" d="M121 552Q121 811 230 956T529 1102Q650 1102 744 1047T895 884V1082H950V19Q950 -195 840 -315T541 -436Q432 -436 342 -389T187 -254L225 -218Q288 -298 363 -340T539 -383Q706 -383 799 -282T895 5V171Q839 79 744
|
||||
30T527 -20Q339 -20 230 129T121 538V552ZM176 531Q176 299 268 167T526 34Q663 34 759 97T895 276V767Q807 1048 528 1048Q361 1048 269 917T176 531Z" />
|
||||
<glyph unicode="h" horiz-adv-x="1121" d="M226 830Q279 956 382 1029T610 1102Q784 1102 868 1004T954 706V0H900V708Q899 882 829 965T607 1049Q467 1049 365 950T226 693V0H172V1536H226V830Z" />
|
||||
<glyph unicode="i" horiz-adv-x="422" d="M239 0H185V1082H239V0ZM157 1420Q157 1443 173 1459T212 1476T251 1460T268 1420T252 1381T212 1365T173 1381T157 1420Z" />
|
||||
<glyph unicode="j" horiz-adv-x="445" d="M240 1082V-129Q240 -279 165 -358T-45 -437Q-94 -437 -143 -417L-140 -365Q-92 -383 -45 -383Q67 -383 126 -317T186 -129V1082H240ZM163 1420Q163 1443 179 1459T218 1476T257 1460T274 1420T258 1381T218 1365T179
|
||||
1381T163 1420Z" />
|
||||
<glyph unicode="k" horiz-adv-x="969" d="M385 585L383 583L226 448V0H172V1536H226V507L353 627L845 1082H922L425 621L953 0H883L385 585Z" />
|
||||
<glyph unicode="l" horiz-adv-x="422" d="M239 0H185V1536H239V0Z" />
|
||||
<glyph unicode="m" horiz-adv-x="1836" d="M946 0H892V727Q891 890 821 969T596 1049Q418 1049 305 892Q238 798 216 684V0H161V1082H216V826Q271 958 373 1030T599 1102Q735 1102 821 1042T935 846Q983 963 1091 1032T1333 1102Q1508 1102 1593 1003T1680 706V0H1626V702Q1626
|
||||
880 1555 965T1330 1049Q1133 1046 1018 892Q952 803 946 720V0Z" />
|
||||
<glyph unicode="n" horiz-adv-x="1121" d="M226 830Q279 956 382 1029T610 1102Q784 1102 868 1004T954 706V0H900V708Q899 882 829 965T607 1049Q467 1049 365 950T226 693V0H172V1082H226V830Z" />
|
||||
<glyph unicode="o" horiz-adv-x="1127" d="M90 562Q90 717 149 840T317 1033T563 1102Q699 1102 807 1035T975 845T1037 568V520Q1037 364 978 241T811 49T565 -20T320 48T151 238T90 514V562ZM144 520Q144 385 197 273T346 97T565 34Q750 34 866 173T983 531V562Q983
|
||||
695 929 808T780 984T563 1048Q378 1048 261 907T144 552V520Z" />
|
||||
<glyph unicode="p" horiz-adv-x="1121" d="M999 531Q999 278 890 129T593 -20Q470 -20 374 30T224 168V-416H170V1082H224V889Q280 992 375 1047T591 1102Q781 1102 890 957T999 548V531ZM944 552Q944 785 852 916T592 1048Q456 1048 361 978T224 775V269Q266
|
||||
157 361 96T594 34Q760 34 852 166T944 552Z" />
|
||||
<glyph unicode="q" horiz-adv-x="1121" d="M122 552Q122 811 231 956T530 1102Q651 1102 746 1047T897 889V1082H951V-416H897V168Q839 77 744 29T528 -20Q340 -20 231 129T122 538V552ZM178 531Q178 301 269 168T527 34Q661 34 756 93T897 268V775Q850 910 755
|
||||
979T529 1048Q363 1048 271 917T178 531Z" />
|
||||
<glyph unicode="r" horiz-adv-x="685" d="M649 1043L579 1049Q441 1049 348 960T226 709V0H172V1082H226V857Q270 970 358 1036T579 1102Q626 1102 655 1091L649 1043Z" />
|
||||
<glyph unicode="s" horiz-adv-x="1019" d="M839 265Q839 462 503 533Q301 576 222 643T143 829Q143 948 243 1025T505 1102Q680 1102 786 1019T892 793H837Q837 902 745 975T505 1048Q363 1048 280 986T197 831Q197 758 228 717T329 642T533 577T745 504T858 405T893
|
||||
264Q893 136 788 58T513 -20Q331 -20 220 62T108 275H162Q170 161 262 98T513 34Q658 34 748 101T839 265Z" />
|
||||
<glyph unicode="t" horiz-adv-x="648" d="M293 1374V1082H539V1027H293V259Q293 144 330 89T456 34Q500 34 563 43L572 -8Q539 -20 459 -20Q341 -20 290 45T238 252V1027H38V1082H238V1374H293Z" />
|
||||
<glyph unicode="u" horiz-adv-x="1121" d="M897 0V175Q849 85 757 33T524 -20Q347 -20 259 83T168 385V1082H222V383Q224 211 300 123T522 34Q677 34 774 107T897 321V1082H952V0H897Z" />
|
||||
<glyph unicode="v" horiz-adv-x="978" d="M490 86L879 1082H937L516 0H463L43 1082H101L490 86Z" />
|
||||
<glyph unicode="w" horiz-adv-x="1550" d="M366 313L425 80L742 1082H797L1112 80L1173 313L1393 1082H1456L1141 0H1087L820 813L769 1007L714 813L451 0H397L83 1082H145L366 313Z" />
|
||||
<glyph unicode="x" horiz-adv-x="978" d="M489 602L834 1082H902L522 555L922 0H855L488 508L122 0H55L455 555L75 1082H143L489 602Z" />
|
||||
<glyph unicode="y" horiz-adv-x="978" d="M503 84L510 104L884 1082H944L460 -188L436 -248Q358 -437 178 -437Q120 -437 98 -426L97 -375Q129 -384 170 -384Q255 -384 311 -335T408 -173L474 6L43 1082H102L503 84Z" />
|
||||
<glyph unicode="z" horiz-adv-x="978" d="M160 54H930V0H87V44L798 1027H118V1082H871V1034L160 54Z" />
|
||||
<glyph unicode="{" horiz-adv-x="660" d="M642 -441Q482 -391 403 -278T323 20V261Q323 543 73 543V609Q323 609 323 889V1136Q324 1321 403 1434T642 1597L657 1552Q377 1461 377 1125V897Q377 625 166 576Q377 523 377 255V26Q377 -299 662 -395L642 -441Z" />
|
||||
<glyph unicode="|" horiz-adv-x="406" d="M235 -270H181V1456H235V-270Z" />
|
||||
<glyph unicode="}" horiz-adv-x="660" d="M0 -395Q284 -298 284 22V255Q284 523 495 576Q284 625 284 897V1124Q284 1462 5 1552L19 1597Q179 1547 257 1435T338 1141V892Q338 609 588 609V543Q338 543 338 258V21Q338 -165 260 -277T19 -441L0 -395Z" />
|
||||
<glyph unicode="~" horiz-adv-x="1412" d="M1246 752Q1246 614 1173 529T977 443Q906 443 845 471T687 586T539 696T428 720Q328 720 272 655T215 462H160Q160 605 231 689T428 774Q500 774 563 745T723 629T870 519T977 496Q1078 496 1134 563T1190 753L1246 752Z" />
|
||||
<glyph unicode=" " horiz-adv-x="490" />
|
||||
<glyph unicode="¡" horiz-adv-x="406" d="M179 696H233V-359H179V696ZM253 1048Q253 1025 237 1009T198 992T159 1008T142 1048T158 1087T198 1103T237 1087T253 1048Z" />
|
||||
<glyph unicode="¢" horiz-adv-x="1110" d="M576 34Q723 34 818 112T923 328H977Q969 178 864 84T604 -19V-245H549V-19Q358 -9 246 136T134 526V562Q134 802 246 946T549 1101V1318H604V1101Q767 1090 868 989T977 725H923Q916 871 821 959T574 1048Q393
|
||||
1048 291 918T188 555V520Q188 293 291 164T576 34Z" />
|
||||
<glyph unicode="£" horiz-adv-x="1150" d="M360 667L370 336Q374 142 303 54H1060L1061 0H99V54H219Q267 68 292 148T316 336L306 667H95V721H304L295 1039Q295 1243 394 1359T661 1476Q834 1476 934 1372T1035 1089H981Q981 1248 896 1335T661 1422Q514
|
||||
1422 432 1322T349 1039L358 721H728V667H360Z" />
|
||||
<glyph unicode="¤" horiz-adv-x="1502" d="M1159 156Q1078 73 972 27T745 -20T518 26T330 154L154 -26L114 13L293 195Q149 371 149 608Q149 854 303 1032L114 1225L154 1264L342 1072Q513 1234 745 1234Q863 1234 965 1191T1148 1070L1339 1265L1380 1225L1187
|
||||
1029Q1339 851 1339 608Q1339 374 1198 199L1380 13L1339 -27L1159 156ZM204 608Q204 454 277 320T476 110T745 33Q888 33 1013 109T1211 320T1285 608Q1285 761 1213 893T1015 1103T745 1181T475 1104T277 894T204 608Z" />
|
||||
<glyph unicode="¥" horiz-adv-x="1038" d="M938 1456H1000L568 676H935V621H543V381H935V326H543V0H489V326H99V381H489V621H99V676H464L33 1456H95L487 738L512 687H521L547 738L938 1456Z" />
|
||||
<glyph unicode="¦" horiz-adv-x="398" d="M172 -270V482H226V-270H172ZM226 698H172V1456H226V698Z" />
|
||||
<glyph unicode="§" horiz-adv-x="1223" d="M1094 431Q1094 326 1012 255T790 164Q932 110 991 37T1050 -149Q1050 -309 929 -402T600 -495Q374 -495 245 -383T115 -64L169 -62Q169 -242 285 -341T600 -441Q783 -441 889 -362T995 -151Q995 -63 959 -10T840
|
||||
85T607 166Q336 230 229 319T121 551Q121 660 198 731T407 822Q278 873 222 947T166 1129Q166 1286 288 1381T618 1476Q833 1476 952 1364T1072 1045H1018Q1018 1212 909 1317T618 1422Q434 1422 327 1345T220 1132Q220 1041 256 987T374 891T616 804Q824 752 914
|
||||
705T1049 593T1094 431ZM590 766Q531 779 482 796Q339 791 257 726T175 553Q175 460 214 406T347 309T693 196Q850 198 945 262T1040 428Q1040 513 999 569T865 670T590 766Z" />
|
||||
<glyph unicode="¨" horiz-adv-x="906" d="M174 1421Q174 1444 190 1460T229 1477T268 1461T285 1421T269 1382T229 1366T190 1382T174 1421ZM619 1421Q619 1444 635 1460T674 1477T713 1461T730 1421T714 1382T674 1366T635 1382T619 1421Z" />
|
||||
<glyph unicode="©" horiz-adv-x="1666" d="M1124 616Q1124 464 1046 383T826 302Q682 302 594 409T506 693V768Q506 941 595 1048T826 1155Q969 1155 1047 1073T1125 842H1073Q1073 973 1009 1037T826 1102T634 1010T561 763V689Q561 540 633 449T826 357Q1072
|
||||
357 1072 616H1124ZM179 729Q179 541 267 380T507 126T833 34Q1009 34 1161 128T1400 382T1487 729Q1487 916 1400 1075T1161 1328T833 1421Q660 1421 508 1330T268 1079T179 729ZM123 729Q123 931 216 1104T475 1376T833 1476T1190 1377T1449 1104T1543 729Q1543
|
||||
530 1452 358T1196 83T833 -21T471 82T214 358T123 729Z" />
|
||||
<glyph unicode="ª" horiz-adv-x="898" d="M680 705Q662 759 658 823Q619 763 554 727T417 691Q296 691 232 748T168 900Q168 1009 251 1070T487 1132H657V1201Q657 1305 608 1363T458 1422Q349 1422 285 1378T221 1243H167Q167 1345 248 1410T458 1476Q574
|
||||
1476 643 1404T712 1200V884Q712 792 738 705H680ZM418 746Q488 746 562 793T657 899V1078H490Q222 1078 222 904Q222 746 418 746Z" />
|
||||
<glyph unicode="«" horiz-adv-x="905" d="M216 781L510 402H440L145 772V791L440 1161H510L216 781ZM503 525L797 146H727L432 516V535L727 905H797L503 525Z" />
|
||||
<glyph unicode="¬" horiz-adv-x="1101" d="M915 396H861V700H122V753H915V396Z" />
|
||||
<glyph unicode="­" horiz-adv-x="607" d="M531 639H61V693H531V639Z" />
|
||||
<glyph unicode="®" horiz-adv-x="1674" d="M115 729Q115 931 208 1104T467 1376T825 1476T1182 1377T1441 1104T1535 729Q1535 530 1444 358T1188 83T825 -21T463 82T206 358T115 729ZM170 729Q170 543 257 383T496 128T825 34Q1001 34 1153 128T1392 382T1479
|
||||
729Q1479 916 1392 1075T1153 1328T825 1421Q649 1421 497 1328T257 1076T170 729ZM648 678V326H593V1156H832Q1121 1156 1121 916Q1121 772 968 710Q1100 671 1100 502Q1100 391 1117 342V326H1058Q1044 362 1044 502Q1044 594 1006 635T873 678H648ZM648 734H853Q949
|
||||
734 1007 784T1066 917Q1066 1015 1015 1057T846 1101H648V734Z" />
|
||||
<glyph unicode="¯" horiz-adv-x="811" d="M699 1383H132V1436H699V1383Z" />
|
||||
<glyph unicode="°" horiz-adv-x="783" d="M156 1236Q156 1333 225 1404T392 1476Q488 1476 556 1405T624 1236Q624 1138 556 1069T392 999Q294 999 225 1068T156 1236ZM211 1236Q211 1159 262 1107T392 1055Q468 1055 518 1105T568 1236Q568 1318 518 1369T392
|
||||
1421Q314 1421 263 1368T211 1236Z" />
|
||||
<glyph unicode="±" horiz-adv-x="1077" d="M569 805H988V751H569V289H515V751H72V805H515V1267H569V805ZM957 -1H122V53H957V-1Z" />
|
||||
<glyph unicode="²" horiz-adv-x="728" d="M651 664H108V708L398 1003Q477 1080 514 1138T551 1247Q551 1324 502 1369T356 1415Q254 1415 197 1363T140 1226H86Q86 1329 161 1396T356 1464Q472 1464 538 1405T605 1248Q605 1154 492 1031L426 961L175 713H651V664Z" />
|
||||
<glyph unicode="³" horiz-adv-x="728" d="M270 1090H345Q446 1091 505 1135T564 1249Q564 1326 511 1370T362 1415Q271 1415 211 1369T150 1246H97Q97 1342 172 1403T362 1464Q481 1464 549 1406T618 1246Q618 1189 578 1140T463 1067Q549 1047 593 997T637
|
||||
875Q637 775 563 714T367 653Q243 653 162 716T80 881H134Q134 803 199 752T367 701T526 747T583 874Q583 1041 330 1041H270V1090Z" />
|
||||
<glyph unicode="´" horiz-adv-x="511" d="M315 1536H381L186 1270H126L315 1536Z" />
|
||||
<glyph unicode="µ" horiz-adv-x="1121" d="M223 1082V421Q226 232 302 133T529 34Q705 34 794 124T899 414V1082H953V0H902L899 203Q803 -20 538 -20Q424 -20 345 30T223 171V-416H171V1082H223Z" />
|
||||
<glyph unicode="¶" horiz-adv-x="946" d="M716 0V520H589Q439 520 328 578T158 742T99 988Q99 1201 232 1328T593 1456H770V0H716Z" />
|
||||
<glyph unicode="·" horiz-adv-x="472" d="M179 706Q179 729 195 745T234 762T273 746T290 706T274 667T234 651T195 667T179 706Z" />
|
||||
<glyph unicode="¸" horiz-adv-x="490" d="M207 0L196 -76Q373 -92 373 -245Q373 -330 297 -382T88 -435L81 -386Q182 -386 250 -347T318 -245Q318 -189 280 -161T129 -121L154 0H207Z" />
|
||||
<glyph unicode="¹" horiz-adv-x="728" d="M433 664H379V1386L131 1305V1358L424 1455H433V664Z" />
|
||||
<glyph unicode="º" horiz-adv-x="914" d="M148 1141Q148 1291 231 1383T452 1476T673 1384T757 1136V1024Q757 873 674 782T454 690Q317 690 233 781T148 1029V1141ZM202 1024Q202 893 268 819T454 744Q570 744 637 820T704 1028V1141Q704 1269 636 1345T452
|
||||
1422Q338 1422 270 1346T202 1135V1024Z" />
|
||||
<glyph unicode="»" horiz-adv-x="897" d="M198 940L492 560V541L198 171H128L421 550L128 940H198ZM488 940L782 560V541L488 171H418L711 550L418 940H488Z" />
|
||||
<glyph unicode="¼" horiz-adv-x="1467" d="M447 664H393V1386L145 1305V1358L438 1455H447V664ZM386 139L341 170L1052 1308L1097 1277L386 139ZM1225 253H1372V204H1225V0H1172V204H749L748 236L1165 789H1225V253ZM818 253H1172V727L1128 656L818 253Z" />
|
||||
<glyph unicode="½" horiz-adv-x="1508" d="M343 139L298 170L1009 1308L1054 1277L343 139ZM424 664H370V1386L122 1305V1358L415 1455H424V664ZM1392 0H849V44L1139 339Q1218 416 1255 474T1292 583Q1292 660 1243 705T1097 751Q995 751 938 699T881 562H827Q827
|
||||
665 902 732T1097 800Q1213 800 1279 741T1346 584Q1346 490 1233 367L1167 297L916 49H1392V0Z" />
|
||||
<glyph unicode="¾" horiz-adv-x="1586" d="M548 139L503 170L1214 1308L1259 1277L548 139ZM1365 253H1512V204H1365V0H1312V204H889L888 236L1305 789H1365V253ZM958 253H1312V727L1268 656L958 253ZM314 1090H389Q490 1091 549 1135T608 1249Q608 1326
|
||||
555 1370T406 1415Q315 1415 255 1369T194 1246H141Q141 1342 216 1403T406 1464Q525 1464 593 1406T662 1246Q662 1189 622 1140T507 1067Q593 1047 637 997T681 875Q681 775 607 714T411 653Q287 653 206 716T124 881H178Q178 803 243 752T411 701T570 747T627
|
||||
874Q627 1041 374 1041H314V1090Z" />
|
||||
<glyph unicode="¿" horiz-adv-x="912" d="M514 695Q512 593 503 557T469 487T389 403L311 327Q232 248 197 166T162 -17Q162 -166 241 -247T461 -328Q599 -328 678 -246T762 -21H816Q814 -188 719 -284T461 -381Q296 -381 202 -281T108 -15Q108 106 160 207T361
|
||||
445Q412 485 434 526T459 626L460 695H514ZM538 1046Q538 1023 522 1007T483 990T444 1006T427 1046T443 1085T483 1101T522 1085T538 1046Z" />
|
||||
<glyph unicode="À" horiz-adv-x="1223" d="M967 435H254L92 0H33L578 1456H644L1189 0H1130L967 435ZM274 489H947L611 1391L274 489ZM655 1589H596L401 1855H467L655 1589Z" />
|
||||
<glyph unicode="Á" horiz-adv-x="1223" d="M967 435H254L92 0H33L578 1456H644L1189 0H1130L967 435ZM274 489H947L611 1391L274 489ZM761 1855H827L632 1589H572L761 1855Z" />
|
||||
<glyph unicode="Â" horiz-adv-x="1223" d="M967 435H254L92 0H33L578 1456H644L1189 0H1130L967 435ZM274 489H947L611 1391L274 489ZM866 1593V1583H798L611 1779L426 1583H362V1597L592 1836H632L866 1593Z" />
|
||||
<glyph unicode="Ã" horiz-adv-x="1223" d="M967 435H254L92 0H33L578 1456H644L1189 0H1130L967 435ZM274 489H947L611 1391L274 489ZM940 1806Q940 1724 890 1672T764 1620Q683 1620 611 1682T477 1745Q421 1745 389 1711T356 1620H301Q301 1700 351 1749T477
|
||||
1799Q555 1799 630 1737T764 1675Q818 1675 851 1711T885 1806H940Z" />
|
||||
<glyph unicode="Ä" horiz-adv-x="1223" d="M967 435H254L92 0H33L578 1456H644L1189 0H1130L967 435ZM274 489H947L611 1391L274 489ZM336 1740Q336 1763 352 1779T391 1796T430 1780T447 1740T431 1701T391 1685T352 1701T336 1740ZM781 1740Q781 1763 797
|
||||
1779T836 1796T875 1780T892 1740T876 1701T836 1685T797 1701T781 1740Z" />
|
||||
<glyph unicode="Å" horiz-adv-x="1223" d="M967 435H254L92 0H33L578 1456H644L1189 0H1130L967 435ZM274 489H947L611 1391L274 489ZM614 1875Q686 1875 735 1824T785 1701T736 1580T614 1531Q545 1531 494 1578T443 1701T493 1825T614 1875ZM497 1701Q497
|
||||
1649 530 1617T614 1585T698 1617T731 1701Q731 1755 698 1788T614 1821T530 1788T497 1701Z" />
|
||||
<glyph unicode="Æ" horiz-adv-x="1816" d="M1768 0H1016L998 425H371L115 0H50L931 1456H1707V1402H1011L1037 786H1625V732H1039L1067 54H1768V0ZM403 478H996L957 1398L403 478Z" />
|
||||
<glyph unicode="Ç" horiz-adv-x="1327" d="M1190 446Q1169 221 1035 101T671 -20Q516 -20 397 58T211 281T144 612V837Q144 1023 209 1169T394 1396T671 1476Q899 1476 1034 1356T1190 1012H1136Q1113 1213 996 1317T671 1422Q459 1422 329 1262T198 833V619Q198
|
||||
447 256 315T422 108T671 34Q880 34 997 137T1136 446H1190ZM706 -9L695 -85Q872 -101 872 -254Q872 -339 796 -391T587 -444L580 -395Q681 -395 749 -356T817 -254Q817 -198 779 -170T628 -130L653 -9H706Z" />
|
||||
<glyph unicode="È" horiz-adv-x="1166" d="M984 722H254V54H1086V0H200V1456H1086V1402H254V776H984V722ZM662 1589H603L408 1855H474L662 1589Z" />
|
||||
<glyph unicode="É" horiz-adv-x="1166" d="M984 722H254V54H1086V0H200V1456H1086V1402H254V776H984V722ZM768 1855H834L639 1589H579L768 1855Z" />
|
||||
<glyph unicode="Ê" horiz-adv-x="1166" d="M984 722H254V54H1086V0H200V1456H1086V1402H254V776H984V722ZM873 1593V1583H805L618 1779L433 1583H369V1597L599 1836H639L873 1593Z" />
|
||||
<glyph unicode="Ë" horiz-adv-x="1166" d="M984 722H254V54H1086V0H200V1456H1086V1402H254V776H984V722ZM343 1740Q343 1763 359 1779T398 1796T437 1780T454 1740T438 1701T398 1685T359 1701T343 1740ZM788 1740Q788 1763 804 1779T843 1796T882 1780T899
|
||||
1740T883 1701T843 1685T804 1701T788 1740Z" />
|
||||
<glyph unicode="Ì" horiz-adv-x="534" d="M294 0H240V1456H294V0ZM312 1589H253L58 1855H124L312 1589Z" />
|
||||
<glyph unicode="Í" horiz-adv-x="534" d="M294 0H240V1456H294V0ZM417 1855H483L288 1589H228L417 1855Z" />
|
||||
<glyph unicode="Î" horiz-adv-x="534" d="M294 0H240V1456H294V0ZM523 1593V1583H455L268 1779L83 1583H19V1597L249 1836H289L523 1593Z" />
|
||||
<glyph unicode="Ï" horiz-adv-x="534" d="M294 0H240V1456H294V0ZM-7 1740Q-7 1763 9 1779T48 1796T87 1780T104 1740T88 1701T48 1685T9 1701T-7 1740ZM438 1740Q438 1763 454 1779T493 1796T532 1780T549 1740T533 1701T493 1685T454 1701T438 1740Z" />
|
||||
<glyph unicode="Ð" horiz-adv-x="1370" d="M230 0V713H60V767H230V1456H633Q802 1456 939 1376T1154 1152T1234 828V639Q1234 457 1158 311T944 83T638 0H230ZM647 713H284V54H623Q870 54 1025 220T1180 647V820Q1180 983 1111 1116T917 1324T641 1402H284V767H647V713Z"
|
||||
/>
|
||||
<glyph unicode="Ñ" horiz-adv-x="1449" d="M1249 0H1195L255 1364V0H200V1456H255L1195 95V1456H1249V0ZM1054 1806Q1054 1724 1004 1672T878 1620Q797 1620 725 1682T591 1745Q535 1745 503 1711T470 1620H415Q415 1700 465 1749T591 1799Q669 1799 744
|
||||
1737T878 1675Q932 1675 965 1711T999 1806H1054Z" />
|
||||
<glyph unicode="Ò" horiz-adv-x="1364" d="M1231 619Q1231 430 1164 285T971 60T683 -20Q437 -20 285 155T133 627V837Q133 1025 200 1171T393 1396T681 1476Q844 1476 969 1397T1163 1171T1231 837V619ZM1177 839Q1177 1103 1043 1262T681 1422Q456 1422
|
||||
322 1264T188 832V619Q188 445 248 312T421 106T683 34Q911 34 1044 193T1177 627V839ZM719 1610H660L465 1876H531L719 1610Z" />
|
||||
<glyph unicode="Ó" horiz-adv-x="1364" d="M1231 619Q1231 430 1164 285T971 60T683 -20Q437 -20 285 155T133 627V837Q133 1025 200 1171T393 1396T681 1476Q844 1476 969 1397T1163 1171T1231 837V619ZM1177 839Q1177 1103 1043 1262T681 1422Q456 1422
|
||||
322 1264T188 832V619Q188 445 248 312T421 106T683 34Q911 34 1044 193T1177 627V839ZM825 1876H891L696 1610H636L825 1876Z" />
|
||||
<glyph unicode="Ô" horiz-adv-x="1364" d="M1231 619Q1231 430 1164 285T971 60T683 -20Q437 -20 285 155T133 627V837Q133 1025 200 1171T393 1396T681 1476Q844 1476 969 1397T1163 1171T1231 837V619ZM1177 839Q1177 1103 1043 1262T681 1422Q456 1422
|
||||
322 1264T188 832V619Q188 445 248 312T421 106T683 34Q911 34 1044 193T1177 627V839ZM930 1614V1604H862L675 1800L490 1604H426V1618L656 1857H696L930 1614Z" />
|
||||
<glyph unicode="Õ" horiz-adv-x="1364" d="M1231 619Q1231 430 1164 285T971 60T683 -20Q437 -20 285 155T133 627V837Q133 1025 200 1171T393 1396T681 1476Q844 1476 969 1397T1163 1171T1231 837V619ZM1177 839Q1177 1103 1043 1262T681 1422Q456 1422
|
||||
322 1264T188 832V619Q188 445 248 312T421 106T683 34Q911 34 1044 193T1177 627V839ZM1004 1827Q1004 1745 954 1693T828 1641Q747 1641 675 1703T541 1766Q485 1766 453 1732T420 1641H365Q365 1721 415 1770T541 1820Q619 1820 694 1758T828 1696Q882 1696
|
||||
915 1732T949 1827H1004Z" />
|
||||
<glyph unicode="Ö" horiz-adv-x="1364" d="M1231 619Q1231 430 1164 285T971 60T683 -20Q437 -20 285 155T133 627V837Q133 1025 200 1171T393 1396T681 1476Q844 1476 969 1397T1163 1171T1231 837V619ZM1177 839Q1177 1103 1043 1262T681 1422Q456 1422
|
||||
322 1264T188 832V619Q188 445 248 312T421 106T683 34Q911 34 1044 193T1177 627V839ZM400 1761Q400 1784 416 1800T455 1817T494 1801T511 1761T495 1722T455 1706T416 1722T400 1761ZM845 1761Q845 1784 861 1800T900 1817T939 1801T956 1761T940 1722T900 1706T861
|
||||
1722T845 1761Z" />
|
||||
<glyph unicode="×" horiz-adv-x="1052" d="M98 36L482 429L125 793L164 832L520 468L877 832L916 793L559 429L944 36L905 -1L521 390L137 -1L98 36Z" />
|
||||
<glyph unicode="Ø" horiz-adv-x="1364" d="M1231 619Q1231 430 1164 285T971 60T683 -20Q488 -20 349 92L243 -75H177L307 130Q133 306 133 629V837Q133 1025 200 1171T393 1396T681 1476Q912 1476 1063 1319L1174 1495H1240L1100 1275Q1230 1103 1231 839V619ZM188
|
||||
619Q188 335 337 176L1033 1273Q901 1422 681 1422Q456 1422 322 1264T188 832V619ZM1177 839Q1177 1076 1070 1227L378 137Q502 34 683 34Q911 34 1044 193T1177 627V839Z" />
|
||||
<glyph unicode="Ù" horiz-adv-x="1365" d="M1180 1456V470Q1180 239 1046 110T683 -20T320 109T185 466V1456H239V472Q239 270 360 152T683 34T1005 152T1126 473V1456H1180ZM740 1589H681L486 1855H552L740 1589Z" />
|
||||
<glyph unicode="Ú" horiz-adv-x="1365" d="M1180 1456V470Q1180 239 1046 110T683 -20T320 109T185 466V1456H239V472Q239 270 360 152T683 34T1005 152T1126 473V1456H1180ZM846 1855H912L717 1589H657L846 1855Z" />
|
||||
<glyph unicode="Û" horiz-adv-x="1365" d="M1180 1456V470Q1180 239 1046 110T683 -20T320 109T185 466V1456H239V472Q239 270 360 152T683 34T1005 152T1126 473V1456H1180ZM951 1593V1583H883L696 1779L511 1583H447V1597L677 1836H717L951 1593Z" />
|
||||
<glyph unicode="Ü" horiz-adv-x="1365" d="M1180 1456V470Q1180 239 1046 110T683 -20T320 109T185 466V1456H239V472Q239 270 360 152T683 34T1005 152T1126 473V1456H1180ZM421 1740Q421 1763 437 1779T476 1796T515 1780T532 1740T516 1701T476 1685T437
|
||||
1701T421 1740ZM866 1740Q866 1763 882 1779T921 1796T960 1780T977 1740T961 1701T921 1685T882 1701T866 1740Z" />
|
||||
<glyph unicode="Ý" horiz-adv-x="1223" d="M609 602L1119 1456H1185L636 553V0H582V553L33 1456H105L609 602ZM757 1844H823L628 1578H568L757 1844Z" />
|
||||
<glyph unicode="Þ" horiz-adv-x="1219" d="M254 1456V1143H631Q837 1141 956 1030T1075 738Q1075 558 958 448T639 334H254V0H200V1456H254ZM254 1089V388H625Q806 388 913 486T1021 736Q1021 889 918 987T640 1089H254Z" />
|
||||
<glyph unicode="ß" horiz-adv-x="1183" d="M218 0H164V1143Q164 1334 248 1434T493 1535Q619 1535 711 1456T804 1257Q804 1157 745 1050T685 829Q685 770 727 717T871 589T1017 445T1062 297Q1062 207 1010 135T871 21T695 -21Q604 -21 513 6T383 68L408
|
||||
117Q452 82 533 57T687 32Q822 32 915 111T1008 306Q1008 371 967 428T822 561T675 698T631 831Q631 942 687 1055T744 1259Q744 1349 671 1415T503 1481Q222 1481 218 1153V0Z" />
|
||||
<glyph unicode="à" horiz-adv-x="1081" d="M871 0Q851 69 851 198Q787 94 676 37T425 -20Q275 -20 184 61T92 274Q92 423 226 512T584 604H851V762Q851 898 766 973T521 1048Q373 1048 274 972T175 784L121 786Q121 918 237 1010T521 1102Q696 1102 799 1015T905
|
||||
768V251Q905 73 933 9V0H871ZM425 33Q577 33 686 101T851 292V549H601Q369 549 246 457Q146 382 146 270Q146 171 225 102T425 33ZM620 1270H561L366 1536H432L620 1270Z" />
|
||||
<glyph unicode="á" horiz-adv-x="1081" d="M871 0Q851 69 851 198Q787 94 676 37T425 -20Q275 -20 184 61T92 274Q92 423 226 512T584 604H851V762Q851 898 766 973T521 1048Q373 1048 274 972T175 784L121 786Q121 918 237 1010T521 1102Q696 1102 799 1015T905
|
||||
768V251Q905 73 933 9V0H871ZM425 33Q577 33 686 101T851 292V549H601Q369 549 246 457Q146 382 146 270Q146 171 225 102T425 33ZM726 1536H792L597 1270H537L726 1536Z" />
|
||||
<glyph unicode="â" horiz-adv-x="1081" d="M871 0Q851 69 851 198Q787 94 676 37T425 -20Q275 -20 184 61T92 274Q92 423 226 512T584 604H851V762Q851 898 766 973T521 1048Q373 1048 274 972T175 784L121 786Q121 918 237 1010T521 1102Q696 1102 799 1015T905
|
||||
768V251Q905 73 933 9V0H871ZM425 33Q577 33 686 101T851 292V549H601Q369 549 246 457Q146 382 146 270Q146 171 225 102T425 33ZM831 1274V1264H763L576 1460L391 1264H327V1278L557 1517H597L831 1274Z" />
|
||||
<glyph unicode="ã" horiz-adv-x="1081" d="M871 0Q851 69 851 198Q787 94 676 37T425 -20Q275 -20 184 61T92 274Q92 423 226 512T584 604H851V762Q851 898 766 973T521 1048Q373 1048 274 972T175 784L121 786Q121 918 237 1010T521 1102Q696 1102 799 1015T905
|
||||
768V251Q905 73 933 9V0H871ZM425 33Q577 33 686 101T851 292V549H601Q369 549 246 457Q146 382 146 270Q146 171 225 102T425 33ZM905 1486Q905 1404 855 1352T729 1300Q648 1300 576 1362T442 1425Q386 1425 354 1391T321 1300H266Q266 1380 316 1429T442 1479Q520
|
||||
1479 595 1417T729 1355Q783 1355 816 1391T850 1486H905Z" />
|
||||
<glyph unicode="ä" horiz-adv-x="1081" d="M871 0Q851 69 851 198Q787 94 676 37T425 -20Q275 -20 184 61T92 274Q92 423 226 512T584 604H851V762Q851 898 766 973T521 1048Q373 1048 274 972T175 784L121 786Q121 918 237 1010T521 1102Q696 1102 799 1015T905
|
||||
768V251Q905 73 933 9V0H871ZM425 33Q577 33 686 101T851 292V549H601Q369 549 246 457Q146 382 146 270Q146 171 225 102T425 33ZM301 1421Q301 1444 317 1460T356 1477T395 1461T412 1421T396 1382T356 1366T317 1382T301 1421ZM746 1421Q746 1444 762 1460T801
|
||||
1477T840 1461T857 1421T841 1382T801 1366T762 1382T746 1421Z" />
|
||||
<glyph unicode="å" horiz-adv-x="1081" d="M871 0Q851 69 851 198Q787 94 676 37T425 -20Q275 -20 184 61T92 274Q92 423 226 512T584 604H851V762Q851 898 766 973T521 1048Q373 1048 274 972T175 784L121 786Q121 918 237 1010T521 1102Q696 1102 799 1015T905
|
||||
768V251Q905 73 933 9V0H871ZM425 33Q577 33 686 101T851 292V549H601Q369 549 246 457Q146 382 146 270Q146 171 225 102T425 33ZM579 1556Q651 1556 700 1505T750 1382T701 1261T579 1212Q510 1212 459 1259T408 1382T458 1506T579 1556ZM462 1382Q462 1330 495
|
||||
1298T579 1266T663 1298T696 1382Q696 1436 663 1469T579 1502T495 1469T462 1382Z" />
|
||||
<glyph unicode="æ" horiz-adv-x="1735" d="M1268 -20Q1121 -20 1021 47T868 230V218H869Q821 111 707 46T448 -20Q280 -20 187 62T93 284Q93 442 203 535T516 630H813V720Q813 876 741 962T521 1048Q363 1048 269 972T174 771L121 778Q121 923 232 1012T521
|
||||
1102Q662 1102 749 1028T860 814Q916 951 1019 1026T1253 1102Q1439 1102 1548 986T1657 656V577H870V500Q870 282 974 158T1268 34Q1472 34 1600 164L1630 122Q1551 43 1465 12T1268 -20ZM447 32Q528 32 606 60T741 136T813 225V575H512Q345 572 247 492T148 280Q148
|
||||
164 224 98T447 32ZM1253 1048Q1100 1048 996 935T873 632H1603V664Q1603 838 1510 943T1253 1048Z" />
|
||||
<glyph unicode="ç" horiz-adv-x="1039" d="M539 34Q686 34 781 112T886 328H940Q932 171 819 76T539 -20Q336 -20 217 127T97 526V562Q97 808 216 955T537 1102Q709 1102 821 999T940 725H886Q879 871 784 959T537 1048Q356 1048 254 918T151 555V520Q151
|
||||
293 254 164T539 34ZM575 -9L564 -85Q741 -101 741 -254Q741 -339 665 -391T456 -444L449 -395Q550 -395 618 -356T686 -254Q686 -198 648 -170T497 -130L522 -9H575Z" />
|
||||
<glyph unicode="è" horiz-adv-x="1032" d="M561 -20Q430 -20 321 50T149 244T87 517V562Q87 712 147 837T312 1032T541 1102Q722 1102 837 973T952 634V577H141V518Q141 386 196 274T349 97T561 33Q670 33 746 69T882 182L920 155Q799 -20 561 -20ZM541 1048Q383
|
||||
1048 273 931T144 631H898V644Q898 754 852 848T724 995T541 1048ZM610 1269H551L356 1535H422L610 1269Z" />
|
||||
<glyph unicode="é" horiz-adv-x="1032" d="M561 -20Q430 -20 321 50T149 244T87 517V562Q87 712 147 837T312 1032T541 1102Q722 1102 837 973T952 634V577H141V518Q141 386 196 274T349 97T561 33Q670 33 746 69T882 182L920 155Q799 -20 561 -20ZM541 1048Q383
|
||||
1048 273 931T144 631H898V644Q898 754 852 848T724 995T541 1048ZM716 1535H782L587 1269H527L716 1535Z" />
|
||||
<glyph unicode="ê" horiz-adv-x="1032" d="M561 -20Q430 -20 321 50T149 244T87 517V562Q87 712 147 837T312 1032T541 1102Q722 1102 837 973T952 634V577H141V518Q141 386 196 274T349 97T561 33Q670 33 746 69T882 182L920 155Q799 -20 561 -20ZM541 1048Q383
|
||||
1048 273 931T144 631H898V644Q898 754 852 848T724 995T541 1048ZM821 1273V1263H753L566 1459L381 1263H317V1277L547 1516H587L821 1273Z" />
|
||||
<glyph unicode="ë" horiz-adv-x="1032" d="M561 -20Q430 -20 321 50T149 244T87 517V562Q87 712 147 837T312 1032T541 1102Q722 1102 837 973T952 634V577H141V518Q141 386 196 274T349 97T561 33Q670 33 746 69T882 182L920 155Q799 -20 561 -20ZM541 1048Q383
|
||||
1048 273 931T144 631H898V644Q898 754 852 848T724 995T541 1048ZM291 1676Q291 1699 307 1715T346 1732T385 1716T402 1676T386 1637T346 1621T307 1637T291 1676ZM736 1676Q736 1699 752 1715T791 1732T830 1716T847 1676T831 1637T791 1621T752 1637T736 1676Z"
|
||||
/>
|
||||
<glyph unicode="ì" horiz-adv-x="406" d="M235 0H181V1082H235V0ZM253 1247H194L-1 1513H65L253 1247Z" />
|
||||
<glyph unicode="í" horiz-adv-x="406" d="M235 0H181V1082H235V0ZM358 1769H424L229 1503H169L358 1769Z" />
|
||||
<glyph unicode="î" horiz-adv-x="406" d="M235 0H181V1082H235V0ZM464 1251V1241H396L209 1437L24 1241H-40V1255L190 1494H230L464 1251Z" />
|
||||
<glyph unicode="ï" horiz-adv-x="406" d="M235 0H181V1082H235V0ZM-66 1398Q-66 1421 -50 1437T-11 1454T28 1438T45 1398T29 1359T-11 1343T-50 1359T-66 1398ZM379 1398Q379 1421 395 1437T434 1454T473 1438T490 1398T474 1359T434 1343T395 1359T379 1398Z" />
|
||||
<glyph unicode="ð" horiz-adv-x="1183" d="M802 1308Q923 1183 982 1014T1041 615V535Q1041 376 990 250T843 52T629 -20Q500 -20 396 43T232 218T173 465Q173 696 286 824T601 953Q714 953 815 909T977 780Q957 948 899 1069T752 1280L517 1149L489 1197L709
|
||||
1320Q571 1441 338 1527L358 1577Q610 1485 760 1348L962 1461L991 1413L802 1308ZM987 617L986 672Q940 777 837 836T601 895Q424 895 326 782T228 465Q228 350 279 250T423 94T633 38Q789 38 886 171T987 520V617Z" />
|
||||
<glyph unicode="ñ" horiz-adv-x="1121" d="M226 830Q279 956 382 1029T610 1102Q784 1102 868 1004T954 706V0H900V708Q899 882 829 965T607 1049Q467 1049 365 950T226 693V0H172V1082H226V830ZM906 1484Q906 1402 856 1350T730 1298Q649 1298 577 1360T443
|
||||
1423Q387 1423 355 1389T322 1298H267Q267 1378 317 1427T443 1477Q521 1477 596 1415T730 1353Q784 1353 817 1389T851 1484H906Z" />
|
||||
<glyph unicode="ò" horiz-adv-x="1127" d="M90 562Q90 717 149 840T317 1033T563 1102Q699 1102 807 1035T975 845T1037 568V520Q1037 364 978 241T811 49T565 -20T320 48T151 238T90 514V562ZM144 520Q144 385 197 273T346 97T565 34Q750 34 866 173T983
|
||||
531V562Q983 695 929 808T780 984T563 1048Q378 1048 261 907T144 552V520ZM610 1268H551L356 1534H422L610 1268Z" />
|
||||
<glyph unicode="ó" horiz-adv-x="1127" d="M90 562Q90 717 149 840T317 1033T563 1102Q699 1102 807 1035T975 845T1037 568V520Q1037 364 978 241T811 49T565 -20T320 48T151 238T90 514V562ZM144 520Q144 385 197 273T346 97T565 34Q750 34 866 173T983
|
||||
531V562Q983 695 929 808T780 984T563 1048Q378 1048 261 907T144 552V520ZM716 1534H782L587 1268H527L716 1534Z" />
|
||||
<glyph unicode="ô" horiz-adv-x="1127" d="M90 562Q90 717 149 840T317 1033T563 1102Q699 1102 807 1035T975 845T1037 568V520Q1037 364 978 241T811 49T565 -20T320 48T151 238T90 514V562ZM144 520Q144 385 197 273T346 97T565 34Q750 34 866 173T983
|
||||
531V562Q983 695 929 808T780 984T563 1048Q378 1048 261 907T144 552V520ZM821 1272V1262H753L566 1458L381 1262H317V1276L547 1515H587L821 1272Z" />
|
||||
<glyph unicode="õ" horiz-adv-x="1127" d="M90 562Q90 717 149 840T317 1033T563 1102Q699 1102 807 1035T975 845T1037 568V520Q1037 364 978 241T811 49T565 -20T320 48T151 238T90 514V562ZM144 520Q144 385 197 273T346 97T565 34Q750 34 866 173T983
|
||||
531V562Q983 695 929 808T780 984T563 1048Q378 1048 261 907T144 552V520ZM895 1484Q895 1402 845 1350T719 1298Q638 1298 566 1360T432 1423Q376 1423 344 1389T311 1298H256Q256 1378 306 1427T432 1477Q510 1477 585 1415T719 1353Q773 1353 806 1389T840
|
||||
1484H895Z" />
|
||||
<glyph unicode="ö" horiz-adv-x="1127" d="M90 562Q90 717 149 840T317 1033T563 1102Q699 1102 807 1035T975 845T1037 568V520Q1037 364 978 241T811 49T565 -20T320 48T151 238T90 514V562ZM144 520Q144 385 197 273T346 97T565 34Q750 34 866 173T983
|
||||
531V562Q983 695 929 808T780 984T563 1048Q378 1048 261 907T144 552V520ZM291 1675Q291 1698 307 1714T346 1731T385 1715T402 1675T386 1636T346 1620T307 1636T291 1675ZM736 1675Q736 1698 752 1714T791 1731T830 1715T847 1675T831 1636T791 1620T752 1636T736
|
||||
1675Z" />
|
||||
<glyph unicode="÷" horiz-adv-x="1159" d="M1071 686H73V738H1071V686ZM529 1079Q529 1102 545 1118T584 1135T623 1119T640 1079T624 1040T584 1024T545 1040T529 1079ZM529 301Q529 324 545 340T584 357T623 341T640 301T624 262T584 246T545 262T529 301Z" />
|
||||
<glyph unicode="ø" horiz-adv-x="1121" d="M87 562Q87 717 146 840T314 1033T560 1102Q680 1102 784 1047L868 1219H931L832 1016Q927 946 980 829T1034 562V520Q1034 364 975 241T808 49T562 -20Q450 -20 352 28L268 -145H205L303 56Q200 125 144 247T87
|
||||
522V562ZM141 520Q141 388 190 280T327 107L759 995Q671 1048 560 1048Q375 1048 258 907T141 552V520ZM980 562Q980 684 935 790T806 963L376 77Q459 34 562 34Q747 34 863 173T980 531V562Z" />
|
||||
<glyph unicode="ù" horiz-adv-x="1121" d="M897 0V175Q849 85 757 33T524 -20Q347 -20 259 83T168 385V1082H222V383Q224 211 300 123T522 34Q677 34 774 107T897 321V1082H952V0H897ZM623 1270H564L369 1536H435L623 1270Z" />
|
||||
<glyph unicode="ú" horiz-adv-x="1121" d="M897 0V175Q849 85 757 33T524 -20Q347 -20 259 83T168 385V1082H222V383Q224 211 300 123T522 34Q677 34 774 107T897 321V1082H952V0H897ZM729 1536H795L600 1270H540L729 1536Z" />
|
||||
<glyph unicode="û" horiz-adv-x="1121" d="M897 0V175Q849 85 757 33T524 -20Q347 -20 259 83T168 385V1082H222V383Q224 211 300 123T522 34Q677 34 774 107T897 321V1082H952V0H897ZM834 1274V1264H766L579 1460L394 1264H330V1278L560 1517H600L834 1274Z" />
|
||||
<glyph unicode="ü" horiz-adv-x="1121" d="M897 0V175Q849 85 757 33T524 -20Q347 -20 259 83T168 385V1082H222V383Q224 211 300 123T522 34Q677 34 774 107T897 321V1082H952V0H897ZM304 1421Q304 1444 320 1460T359 1477T398 1461T415 1421T399 1382T359
|
||||
1366T320 1382T304 1421ZM749 1421Q749 1444 765 1460T804 1477T843 1461T860 1421T844 1382T804 1366T765 1382T749 1421Z" />
|
||||
<glyph unicode="ý" horiz-adv-x="978" d="M503 84L510 104L884 1082H944L460 -188L436 -248Q358 -437 178 -437Q120 -437 98 -426L97 -375Q129 -384 170 -384Q255 -384 311 -335T408 -173L474 6L43 1082H102L503 84ZM668 1536H734L539 1270H479L668 1536Z" />
|
||||
<glyph unicode="þ" horiz-adv-x="1121" d="M999 531Q999 278 890 129T593 -20Q470 -20 374 30T224 168V-416H170V1536H224V889Q280 992 375 1047T591 1102Q781 1102 890 957T999 548V531ZM944 552Q944 785 852 916T592 1048Q456 1048 361 978T224 775V269Q266
|
||||
157 361 96T594 34Q760 34 852 166T944 552Z" />
|
||||
<glyph unicode="ÿ" horiz-adv-x="978" d="M503 84L510 104L884 1082H944L460 -188L436 -248Q358 -437 178 -437Q120 -437 98 -426L97 -375Q129 -384 170 -384Q255 -384 311 -335T408 -173L474 6L43 1082H102L503 84ZM243 1421Q243 1444 259 1460T298 1477T337
|
||||
1461T354 1421T338 1382T298 1366T259 1382T243 1421ZM688 1421Q688 1444 704 1460T743 1477T782 1461T799 1421T783 1382T743 1366T704 1382T688 1421Z" />
|
||||
<glyph unicode="–" horiz-adv-x="1324" d="M1415 721H413V775H1415V721Z" />
|
||||
<glyph unicode="—" horiz-adv-x="1561" d="M1446 721H110V775H1446V721Z" />
|
||||
<glyph unicode="‘" horiz-adv-x="320" d="M207 1554L244 1522Q158 1414 155 1288V1168H101V1286Q105 1445 207 1554Z" />
|
||||
<glyph unicode="’" horiz-adv-x="320" d="M114 1151L77 1183Q158 1287 165 1398L166 1536H220V1419Q216 1260 114 1151Z" />
|
||||
<glyph unicode="‚" horiz-adv-x="300" d="M84 -182L47 -150Q128 -46 135 65L136 228H190V86Q186 -73 84 -182Z" />
|
||||
<glyph unicode="“" horiz-adv-x="500" d="M458 1554L495 1522Q409 1414 406 1288V1168H352V1286Q356 1445 458 1554ZM387 1554L424 1522Q338 1414 335 1288V1168H281V1286Q285 1445 387 1554Z" />
|
||||
<glyph unicode="”" horiz-adv-x="502" d="M114 1151L77 1183Q158 1287 165 1398L166 1536H220V1419Q216 1260 114 1151ZM296 1151L259 1183Q340 1287 347 1398L348 1536H402V1419Q398 1260 296 1151Z" />
|
||||
<glyph unicode="„" horiz-adv-x="481" d="M84 -182L47 -150Q128 -46 135 65L136 228H190V86Q186 -73 84 -182ZM255 -182L218 -150Q299 -46 306 65L307 228H361V86Q357 -73 255 -182Z" />
|
||||
<glyph unicode="•" horiz-adv-x="635" d="M155 733Q155 804 200 848T321 893T442 849T489 730V703Q489 632 442 589T322 545Q250 545 203 587T155 701V733Z" />
|
||||
<glyph unicode="‹" horiz-adv-x="604" d="M179 560L473 181H403L108 551V570L403 940H473L179 560Z" />
|
||||
<glyph unicode="›" horiz-adv-x="604" d="M176 940L470 560V541L176 171H106L399 550L106 940H176Z" />
|
||||
</font>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 48 KiB |
BIN
hostel/assets-hms/fonts/roboto-v27-latin-100.ttf
Normal file
BIN
hostel/assets-hms/fonts/roboto-v27-latin-100.woff
Normal file
BIN
hostel/assets-hms/fonts/roboto-v27-latin-100.woff2
Normal file
BIN
hostel/assets-hms/fonts/roboto-v27-latin-300.eot
Normal file
312
hostel/assets-hms/fonts/roboto-v27-latin-300.svg
Normal file
@ -0,0 +1,312 @@
|
||||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg xmlns="http://www.w3.org/2000/svg">
|
||||
<defs >
|
||||
<font id="Roboto" horiz-adv-x="1135" ><font-face
|
||||
font-family="Roboto Light"
|
||||
units-per-em="2048"
|
||||
panose-1="2 0 0 0 0 0 0 0 0 0"
|
||||
ascent="1900"
|
||||
descent="-500"
|
||||
alphabetic="0" />
|
||||
<glyph unicode=" " horiz-adv-x="498" />
|
||||
<glyph unicode="!" horiz-adv-x="462" d="M284 405H173L167 1456H291L284 405ZM153 70Q153 104 175 127T235 151T295 128T318 70Q318 37 296 15T235 -8T175 14T153 70Z" />
|
||||
<glyph unicode=""" horiz-adv-x="588" d="M243 1396L223 1083H143L146 1536H243V1396ZM479 1396L459 1083H378L382 1536H479V1396Z" />
|
||||
<glyph unicode="#" horiz-adv-x="1191" d="M753 410H439L362 0H263L340 410H85V503H357L440 944H161V1040H458L537 1456H636L557 1040H872L951 1456H1051L972 1040H1201V944H954L871 503H1126V410H853L776 0H676L753 410ZM456 503H771L854 944H539L456 503Z" />
|
||||
<glyph unicode="$" d="M901 359Q901 470 829 540T575 674Q349 745 258 842T167 1095Q167 1258 267 1359T539 1475V1677H641V1475Q817 1459 913 1343T1010 1028H891Q891 1185 810 1277T587 1370Q445 1370 366 1296T286 1097Q286 977 359 910T607 783T862 669T981
|
||||
540T1021 361Q1021 197 919 97T637 -18V-208H536V-19Q335 -6 225 107T115 418H235Q235 262 326 174T580 85Q722 85 811 161T901 359Z" />
|
||||
<glyph unicode="%" horiz-adv-x="1513" d="M109 1176Q109 1306 189 1391T394 1477T598 1392T679 1170V1099Q679 971 600 886T396 800Q273 800 191 884T109 1106V1176ZM206 1099Q206 1006 257 946T396 886Q481 886 531 946T582 1103V1176Q582 1269 530 1329T394
|
||||
1390Q311 1390 259 1330T206 1170V1099ZM842 357Q842 487 922 572T1126 657T1330 573T1412 350V279Q1412 149 1332 64T1128 -21T924 63T842 284V357ZM938 279Q938 185 989 125T1128 65Q1214 65 1264 125T1315 284V357Q1315 453 1264 511T1126 570Q1042 570 990
|
||||
511T938 353V279ZM434 121L359 169L1070 1307L1145 1259L434 121Z" />
|
||||
<glyph unicode="&" horiz-adv-x="1260" d="M404 794Q317 899 278 981T238 1145Q238 1298 329 1387T573 1476Q712 1476 798 1396T884 1191Q884 1047 718 908L558 784L958 318Q1049 465 1049 651H1160Q1160 403 1032 232L1231 0H1087L961 146Q882 68 779 24T560
|
||||
-20Q352 -20 230 86T108 371Q108 477 170 571T390 784L404 794ZM560 81Q651 81 736 119T890 229L483 701L469 716L423 681Q227 521 227 371Q227 240 317 161T560 81ZM358 1149Q358 1027 493 861L624 961Q688 1007 729 1062T770 1191Q770 1269 716 1321T572 1374Q474
|
||||
1374 416 1311T358 1149Z" />
|
||||
<glyph unicode="'" horiz-adv-x="348" d="M226 1395L209 1090H119Q124 1386 124 1536H226V1395Z" />
|
||||
<glyph unicode="(" horiz-adv-x="653" d="M140 588Q140 806 196 1011T360 1387T592 1632L621 1551Q555 1504 490 1414T374 1200T292 922T260 571Q260 362 307 169T438 -171T621 -393L592 -470Q465 -394 357 -225T195 148T140 588Z" />
|
||||
<glyph unicode=")" horiz-adv-x="667" d="M514 573Q514 353 460 150T298 -223T62 -470L33 -393Q131 -323 214 -176T346 166T394 591Q394 798 346 990T214 1334T33 1555L62 1632Q188 1555 295 1386T458 1011T514 573Z" />
|
||||
<glyph unicode="*" horiz-adv-x="869" d="M361 1000L29 1108L61 1209L393 1086L389 1456H493L485 1083L809 1210L842 1109L509 994L732 700L647 637L433 942L229 639L144 700L361 1000Z" />
|
||||
<glyph unicode="+" horiz-adv-x="1156" d="M630 740H1073V628H630V146H509V628H75V740H509V1206H630V740Z" />
|
||||
<glyph unicode="," horiz-adv-x="392" d="M131 -272L60 -220Q151 -98 154 33V188H271V63Q271 -145 131 -272Z" />
|
||||
<glyph unicode="-" horiz-adv-x="586" d="M528 592H49V693H528V592Z" />
|
||||
<glyph unicode="." horiz-adv-x="489" d="M145 72Q145 107 167 131T230 156T293 132T316 72T293 15T230 -8T168 14T145 72Z" />
|
||||
<glyph unicode="/" horiz-adv-x="813" d="M139 -125H30L638 1456H746L139 -125Z" />
|
||||
<glyph unicode="0" d="M1015 607Q1015 299 902 140T569 -20Q353 -20 238 136T120 592V853Q120 1160 234 1318T567 1476Q783 1476 897 1324T1015 874V607ZM895 868Q895 1118 814 1246T567 1374Q405 1374 323 1249T239 880V594Q239 345 323 213T569 81Q729 81 811
|
||||
210T895 588V868Z" />
|
||||
<glyph unicode="1" d="M694 0H574V1312L178 1165V1277L674 1461H694V0Z" />
|
||||
<glyph unicode="2" d="M1049 0H137V92L636 658Q760 801 808 894T856 1075Q856 1213 775 1293T552 1374Q405 1374 315 1280T224 1036H105Q105 1159 160 1260T318 1418T552 1476Q752 1476 864 1371T977 1085Q977 983 914 862T690 560L284 101H1049V0Z" />
|
||||
<glyph unicode="3" d="M403 793H527Q630 793 707 829T824 929T865 1076Q865 1216 786 1295T559 1374Q419 1374 330 1292T240 1074H120Q120 1187 177 1280T335 1425T559 1476Q757 1476 871 1368T985 1072Q985 967 919 879T736 746Q872 708 942 616T1012 395Q1012
|
||||
208 890 94T564 -20Q434 -20 326 32T158 177T98 395H218Q218 256 315 169T564 81Q719 81 805 160T892 391Q892 537 799 614T523 691H403V793Z" />
|
||||
<glyph unicode="4" d="M872 469H1099V368H872V0H752V368H67V436L741 1456H872V469ZM214 469H752V1301L699 1209L214 469Z" />
|
||||
<glyph unicode="5" d="M218 746L289 1456H1017V1345H392L341 853Q458 933 615 933Q812 933 929 805T1046 464Q1046 234 932 107T611 -20Q421 -20 303 86T168 383H283Q300 234 384 158T611 81Q767 81 846 180T926 462Q926 622 837 723T594 824Q509 824 446 803T313
|
||||
719L218 746Z" />
|
||||
<glyph unicode="6" d="M843 1467V1362H829Q568 1362 418 1209T252 782Q312 865 405 910T613 956Q805 956 918 824T1032 477Q1032 335 979 221T827 44T601 -20Q392 -20 261 131T130 523V643Q130 1034 308 1248T813 1467H843ZM594 853Q480 853 382 786T250 614V512Q250
|
||||
322 347 202T601 82Q741 82 827 193T914 473Q914 645 828 749T594 853Z" />
|
||||
<glyph unicode="7" d="M1034 1387L412 0H287L905 1354H77V1456H1034V1387Z" />
|
||||
<glyph unicode="8" d="M995 1081Q995 968 929 879T755 747Q881 704 957 608T1033 386Q1033 199 906 90T570 -20Q359 -20 233 89T106 386Q106 510 179 607T379 747Q271 789 207 878T143 1081Q143 1262 259 1369T568 1476T877 1368T995 1081ZM913 385Q913 521 816
|
||||
608T568 696T321 610T225 385T318 164T570 81Q725 81 819 163T913 385ZM875 1082Q875 1207 789 1290T568 1374Q432 1374 348 1294T263 1082Q263 954 347 876T569 798Q704 798 789 876T875 1082Z" />
|
||||
<glyph unicode="9" d="M884 674Q820 580 725 529T519 477Q395 477 300 541T153 718T101 965Q101 1109 156 1227T311 1410T541 1476Q760 1476 882 1323T1004 887V779Q1004 385 836 187T323 -11H301L302 93H344Q605 97 741 241T884 674ZM534 580Q654 580 749 651T885
|
||||
837V906Q885 1128 793 1250T543 1373Q401 1373 310 1259T219 970Q219 803 306 692T534 580Z" />
|
||||
<glyph unicode=":" horiz-adv-x="430" d="M383 72Q383 107 405 131T468 156T531 132T554 72T531 15T468 -8T406 14T383 72ZM129 995Q129 1030 151 1054T214 1079T277 1055T300 995T277 938T214 915T152 937T129 995Z" />
|
||||
<glyph unicode=";" horiz-adv-x="399" d="M118 995Q118 1030 140 1054T203 1079T266 1055T289 995T266 938T203 915T141 937T118 995ZM131 -272L60 -220Q151 -98 154 33V188H271V63Q271 -145 131 -272Z" />
|
||||
<glyph unicode="<" horiz-adv-x="1047" d="M208 655L904 355V229L77 608V705L904 1083V957L208 655Z" />
|
||||
<glyph unicode="=" horiz-adv-x="1133" d="M983 829H149V935H983V829ZM983 418H149V524H983V418Z" />
|
||||
<glyph unicode=">" horiz-adv-x="1061" d="M835 659L124 962V1085L969 707V610L124 231V355L835 659Z" />
|
||||
<glyph unicode="?" horiz-adv-x="930" d="M376 404Q378 522 408 594T537 763T664 901T708 990T724 1101Q724 1226 658 1297T472 1369Q352 1369 279 1301T203 1115H84Q86 1279 195 1377T472 1476Q644 1476 743 1376T843 1103Q843 995 794 901T608 680Q495 585 495
|
||||
404H376ZM360 70Q360 104 381 127T442 151Q480 151 502 128T525 70Q525 37 503 15T442 -8Q403 -8 382 14T360 70Z" />
|
||||
<glyph unicode="@" horiz-adv-x="1870" d="M1754 513Q1749 366 1700 241T1565 48T1364 -20Q1267 -20 1206 31T1125 174Q1017 -20 827 -20Q687 -20 618 101T567 427Q582 590 641 717T796 916T1001 988Q1078 988 1136 967T1271 880L1220 310Q1210 194 1249 130T1376
|
||||
66Q1499 66 1575 186T1661 513Q1680 918 1507 1122T983 1327Q772 1327 603 1222T335 923T225 478T291 35T528 -260T906 -363Q998 -363 1087 -341T1236 -284L1267 -364Q1210 -402 1108 -427T902 -453Q652 -453 472 -341T203 -17T125 478Q137 756 247 970T550 1302T987
|
||||
1420Q1242 1420 1419 1314T1681 1002T1754 513ZM673 286Q684 186 729 132T848 77Q1033 77 1121 332L1166 848Q1099 897 1008 897Q897 897 816 809T696 565T673 286Z" />
|
||||
<glyph unicode="A" horiz-adv-x="1279" d="M970 408H309L159 0H30L581 1456H698L1249 0H1121L970 408ZM347 513H931L639 1306L347 513Z" />
|
||||
<glyph unicode="B" horiz-adv-x="1255" d="M184 0V1456H614Q848 1456 969 1360T1090 1075Q1090 962 1029 879T860 759Q987 731 1064 634T1142 410Q1142 217 1018 109T671 0H184ZM307 700V104H676Q834 104 926 184T1019 408Q1019 543 931 621T686 700H307ZM307
|
||||
803H643Q797 806 881 875T966 1078Q966 1218 879 1284T614 1351H307V803Z" />
|
||||
<glyph unicode="C" horiz-adv-x="1330" d="M1215 454Q1190 224 1051 102T679 -20Q517 -20 393 61T200 290T131 630V819Q131 1013 199 1163T394 1394T688 1476Q922 1476 1057 1350T1215 1000H1091Q1045 1371 688 1371Q490 1371 373 1223T255 814V636Q255 384 369
|
||||
234T679 84Q872 84 970 176T1091 454H1215Z" />
|
||||
<glyph unicode="D" horiz-adv-x="1341" d="M184 0V1456H591Q770 1456 912 1375T1133 1141T1213 795V661Q1213 466 1134 315T912 82T582 0H184ZM307 1351V104H583Q813 104 952 256T1091 669V797Q1091 1048 954 1199T593 1351H307Z" />
|
||||
<glyph unicode="E" horiz-adv-x="1165" d="M988 698H307V104H1090V0H184V1456H1085V1351H307V802H988V698Z" />
|
||||
<glyph unicode="F" horiz-adv-x="1152" d="M986 680H307V0H184V1456H1086V1351H307V785H986V680Z" />
|
||||
<glyph unicode="G" horiz-adv-x="1400" d="M1235 173Q1171 82 1035 31T729 -20Q558 -20 425 62T219 294T145 638V822Q145 1125 298 1300T709 1476Q934 1476 1071 1362T1234 1046H1111Q1084 1206 981 1288T710 1371Q506 1371 387 1226T268 817V645Q268 479 324
|
||||
352T486 154T729 84Q888 84 1002 134Q1076 167 1112 211V587H721V691H1235V173Z" />
|
||||
<glyph unicode="H" horiz-adv-x="1449" d="M1263 0H1139V698H307V0H184V1456H307V802H1139V1456H1263V0Z" />
|
||||
<glyph unicode="I" horiz-adv-x="545" d="M334 0H211V1456H334V0Z" />
|
||||
<glyph unicode="J" horiz-adv-x="1127" d="M827 1456H951V433Q951 226 832 103T511 -20Q299 -20 185 91T71 401H194Q194 243 277 164T511 84Q650 84 737 176T827 426V1456Z" />
|
||||
<glyph unicode="K" horiz-adv-x="1292" d="M512 723L307 521V0H184V1456H307V671L1053 1456H1208L598 808L1255 0H1105L512 723Z" />
|
||||
<glyph unicode="L" horiz-adv-x="1079" d="M308 104H1027V0H184V1456H308V104Z" />
|
||||
<glyph unicode="M" horiz-adv-x="1772" d="M347 1456L884 171L1423 1456H1587V0H1464V634L1474 1284L932 0H837L297 1279L307 638V0H184V1456H347Z" />
|
||||
<glyph unicode="N" horiz-adv-x="1454" d="M1268 0H1145L308 1246V0H184V1456H308L1146 209V1456H1268V0Z" />
|
||||
<glyph unicode="O" horiz-adv-x="1386" d="M1260 649Q1260 448 1191 296T992 62T694 -20Q439 -20 282 162T125 655V805Q125 1004 195 1157T395 1393T692 1476T988 1395T1187 1166T1260 823V649ZM1137 807Q1137 1070 1018 1219T692 1368Q489 1368 369 1219T248
|
||||
801V649Q248 390 368 239T694 87Q903 87 1020 236T1137 653V807Z" />
|
||||
<glyph unicode="P" horiz-adv-x="1261" d="M307 593V0H184V1456H680Q907 1456 1038 1340T1170 1021Q1170 816 1044 705T677 593H307ZM307 697H680Q859 697 953 782T1047 1019Q1047 1170 954 1259T688 1351H307V697Z" />
|
||||
<glyph unicode="Q" horiz-adv-x="1386" d="M1256 649Q1256 441 1183 287T973 53L1238 -178L1153 -254L856 3Q774 -20 689 -20Q523 -20 394 62T193 294T121 642V805Q121 1004 191 1157T391 1393T687 1476Q857 1476 986 1394T1185 1159T1256 806V649ZM1133 807Q1133
|
||||
1070 1014 1219T687 1368Q485 1368 365 1219T244 801V649Q244 390 363 239T689 87Q897 87 1015 236T1133 652V807Z" />
|
||||
<glyph unicode="R" horiz-adv-x="1300" d="M728 606H305V0H181V1456H654Q887 1456 1018 1343T1149 1027Q1149 887 1067 780T847 632L1211 13V0H1080L728 606ZM305 711H682Q837 711 931 799T1025 1027Q1025 1181 927 1266T652 1351H305V711Z" />
|
||||
<glyph unicode="S" horiz-adv-x="1213" d="M1008 358Q1008 479 923 549T612 683T282 822Q134 928 134 1100Q134 1267 271 1371T623 1476Q768 1476 882 1420T1060 1264T1123 1041H999Q999 1190 897 1280T623 1371Q456 1371 357 1297T258 1102Q258 991 347 921T632
|
||||
798T929 687T1081 549T1132 360Q1132 188 995 84T632 -20Q478 -20 350 35T155 189T88 416H211Q211 262 326 173T632 84Q802 84 905 159T1008 358Z" />
|
||||
<glyph unicode="T" horiz-adv-x="1223" d="M1172 1351H673V0H550V1351H52V1456H1172V1351Z" />
|
||||
<glyph unicode="U" horiz-adv-x="1346" d="M1187 1456V462Q1186 315 1122 206T942 39T674 -20Q444 -20 306 105T162 453V1456H284V471Q284 287 389 186T674 84T958 186T1063 470V1456H1187Z" />
|
||||
<glyph unicode="V" horiz-adv-x="1263" d="M623 180L631 149L640 180L1098 1456H1233L691 0H573L31 1456H165L623 180Z" />
|
||||
<glyph unicode="W" horiz-adv-x="1836" d="M453 393L498 167L553 383L869 1456H980L1292 383L1346 165L1394 393L1657 1456H1783L1410 0H1292L962 1139L925 1283L889 1139L551 0H433L61 1456H187L453 393Z" />
|
||||
<glyph unicode="X" horiz-adv-x="1253" d="M627 840L1037 1456H1184L702 738L1199 0H1051L627 636L201 0H55L553 738L70 1456H217L627 840Z" />
|
||||
<glyph unicode="Y" horiz-adv-x="1226" d="M611 662L1056 1456H1198L672 548V0H549V548L24 1456H170L611 662Z" />
|
||||
<glyph unicode="Z" horiz-adv-x="1225" d="M239 104H1138V0H90V93L954 1351H116V1456H1106V1368L239 104Z" />
|
||||
<glyph unicode="[" horiz-adv-x="491" d="M493 1562H283V-210H493V-312H163V1664H493V1562Z" />
|
||||
<glyph unicode="\" horiz-adv-x="807" d="M48 1456H165L773 -125H656L48 1456Z" />
|
||||
<glyph unicode="]" horiz-adv-x="491" d="M0 1664H331V-312H0V-210H211V1562H0V1664Z" />
|
||||
<glyph unicode="^" horiz-adv-x="852" d="M421 1298L193 729H77L376 1456H466L764 729H648L421 1298Z" />
|
||||
<glyph unicode="_" horiz-adv-x="884" d="M882 -101H1V0H882V-101Z" />
|
||||
<glyph unicode="`" horiz-adv-x="585" d="M438 1256H329L103 1536H247L438 1256Z" />
|
||||
<glyph unicode="a" horiz-adv-x="1097" d="M839 0Q821 51 816 151Q753 69 656 25T449 -20Q293 -20 197 67T100 287Q100 445 231 537T598 629H815V752Q815 868 744 934T535 1001Q410 1001 328 937T246 783L126 784Q126 913 246 1007T541 1102Q722 1102 826 1012T934
|
||||
759V247Q934 90 967 12V0H839ZM463 86Q583 86 677 144T815 299V537H601Q422 535 321 472T220 297Q220 206 287 146T463 86Z" />
|
||||
<glyph unicode="b" d="M1027 530Q1027 277 915 129T614 -20Q388 -20 272 148L267 0H155V1536H274V925Q388 1102 612 1102Q804 1102 915 956T1027 548V530ZM907 551Q907 765 824 881T590 998Q475 998 395 942T274 776V288Q364 84 592 84Q740 84 823 201T907 551Z" />
|
||||
<glyph unicode="c" horiz-adv-x="1055" d="M556 81Q681 81 765 151T857 334H972Q967 235 910 154T759 26T556 -20Q343 -20 219 128T94 526V562Q94 722 150 845T310 1035T555 1102Q733 1102 848 996T972 717H857Q849 844 766 922T555 1000Q393 1000 304 883T214
|
||||
555V520Q214 313 303 197T556 81Z" />
|
||||
<glyph unicode="d" horiz-adv-x="1138" d="M108 551Q108 803 220 952T526 1102Q745 1102 860 929V1536H979V0H867L862 144Q747 -20 524 -20Q337 -20 223 130T108 537V551ZM229 530Q229 323 312 204T546 84Q767 84 860 279V787Q767 998 548 998Q397 998 313 880T229 530Z" />
|
||||
<glyph unicode="e" horiz-adv-x="1058" d="M575 -20Q437 -20 326 48T152 237T90 510V553Q90 709 150 834T319 1030T553 1102Q750 1102 865 968T981 600V533H209V510Q209 326 314 204T580 81Q676 81 749 116T883 228L958 171Q826 -20 575 -20ZM553 1000Q418 1000
|
||||
326 901T213 635H862V648Q857 804 773 902T553 1000Z" />
|
||||
<glyph unicode="f" horiz-adv-x="678" d="M242 0V984H63V1082H242V1213Q242 1379 326 1468T562 1557Q630 1557 689 1540L680 1440Q630 1452 571 1452Q472 1452 417 1391T362 1216V1082H620V984H362V0H242Z" />
|
||||
<glyph unicode="g" horiz-adv-x="1136" d="M108 551Q108 805 220 953T526 1102Q747 1102 862 926L868 1082H980V22Q980 -187 863 -309T546 -431Q433 -431 331 -381T169 -246L236 -174Q363 -330 538 -330Q688 -330 772 -242T859 4V140Q744 -20 524 -20Q336 -20
|
||||
222 130T108 535V551ZM229 530Q229 323 312 204T546 84Q767 84 859 282V785Q817 889 738 943T548 998Q397 998 313 880T229 530Z" />
|
||||
<glyph unicode="h" horiz-adv-x="1124" d="M275 899Q334 996 426 1049T627 1102Q801 1102 886 1004T972 710V0H853V711Q852 856 792 927T598 998Q487 998 402 929T275 741V0H156V1536H275V899Z" />
|
||||
<glyph unicode="i" horiz-adv-x="459" d="M290 0H170V1082H290V0ZM149 1395Q149 1429 171 1452T231 1476T291 1453T314 1395T292 1338T231 1315T171 1338T149 1395Z" />
|
||||
<glyph unicode="j" horiz-adv-x="467" d="M285 1082V-129Q285 -279 213 -358T1 -437Q-53 -437 -104 -418L-102 -319Q-58 -332 -12 -332Q166 -332 166 -127V1082H285ZM226 1476Q265 1476 287 1453T309 1395T287 1338T226 1315Q188 1315 167 1338T145 1395T166 1452T226
|
||||
1476Z" />
|
||||
<glyph unicode="k" horiz-adv-x="1003" d="M413 545L276 413V0H156V1536H276V553L389 675L803 1082H954L495 626L994 0H851L413 545Z" />
|
||||
<glyph unicode="l" horiz-adv-x="459" d="M290 0H170V1536H290V0Z" />
|
||||
<glyph unicode="m" horiz-adv-x="1815" d="M265 1082L269 906Q329 1004 419 1053T619 1102Q875 1102 944 892Q1002 993 1099 1047T1313 1102Q1661 1102 1668 722V0H1548V713Q1547 858 1486 928T1285 998Q1156 996 1067 915T968 716V0H848V722Q847 861 783 929T584
|
||||
998Q471 998 390 934T270 742V0H150V1082H265Z" />
|
||||
<glyph unicode="n" horiz-adv-x="1125" d="M270 1082L274 897Q335 997 426 1049T627 1102Q801 1102 886 1004T972 710V0H853V711Q852 856 792 927T598 998Q487 998 402 929T275 741V0H156V1082H270Z" />
|
||||
<glyph unicode="o" horiz-adv-x="1147" d="M90 557Q90 713 150 838T321 1032T572 1102Q788 1102 922 951T1056 549V524Q1056 367 996 242T825 48T574 -20Q359 -20 225 131T90 533V557ZM210 524Q210 330 310 206T574 81Q736 81 836 205T937 534V557Q937 681 891
|
||||
784T762 943T572 1000Q412 1000 311 875T210 546V524Z" />
|
||||
<glyph unicode="p" d="M1026 530Q1026 277 914 129T614 -20Q392 -20 274 136V-416H155V1082H266L272 929Q389 1102 611 1102Q805 1102 915 955T1026 547V530ZM906 551Q906 758 821 878T584 998Q474 998 395 945T274 791V272Q317 179 397 130T586 81Q737 81 821
|
||||
201T906 551Z" />
|
||||
<glyph unicode="q" horiz-adv-x="1142" d="M108 551Q108 805 220 953T528 1102Q747 1102 861 935L867 1082H979V-416H859V134Q741 -20 526 -20Q336 -20 222 130T108 535V551ZM229 530Q229 320 313 201T548 81Q763 81 859 268V798Q814 895 735 947T550 1000Q399
|
||||
1000 314 881T229 530Z" />
|
||||
<glyph unicode="r" horiz-adv-x="689" d="M656 980Q618 987 575 987Q463 987 386 925T275 743V0H156V1082H273L275 910Q370 1102 580 1102Q630 1102 659 1089L656 980Z" />
|
||||
<glyph unicode="s" horiz-adv-x="1037" d="M804 275Q804 364 733 418T517 502T294 572T176 669T137 807Q137 935 244 1018T518 1102Q699 1102 808 1013T918 779H798Q798 874 719 937T518 1000Q400 1000 329 948T257 811Q257 730 316 686T533 604T769 525T886 424T924
|
||||
281Q924 144 814 62T525 -20Q336 -20 219 71T101 303H221Q228 198 309 140T525 81Q650 81 727 136T804 275Z" />
|
||||
<glyph unicode="t" horiz-adv-x="658" d="M342 1359V1082H566V984H342V263Q342 173 374 129T483 85Q513 85 580 95L585 -3Q538 -20 457 -20Q334 -20 278 51T222 262V984H23V1082H222V1359H342Z" />
|
||||
<glyph unicode="u" horiz-adv-x="1125" d="M852 137Q744 -20 507 -20Q334 -20 244 80T152 378V1082H271V393Q271 84 521 84Q781 84 850 299V1082H970V0H854L852 137Z" />
|
||||
<glyph unicode="v" horiz-adv-x="985" d="M493 165L822 1082H945L541 0H444L38 1082H161L493 165Z" />
|
||||
<glyph unicode="w" horiz-adv-x="1544" d="M415 249L433 156L457 254L717 1082H819L1076 261L1104 147L1127 252L1349 1082H1473L1158 0H1056L778 858L765 917L752 857L479 0H377L63 1082H186L415 249Z" />
|
||||
<glyph unicode="x" horiz-adv-x="996" d="M496 643L788 1082H930L563 551L946 0H805L497 458L189 0H48L430 551L63 1082H204L496 643Z" />
|
||||
<glyph unicode="y" horiz-adv-x="973" d="M499 172L815 1082H944L482 -184L458 -240Q369 -437 183 -437Q140 -437 91 -423L90 -324L152 -330Q240 -330 294 -287T387 -137L440 9L32 1082H163L499 172Z" />
|
||||
<glyph unicode="z" horiz-adv-x="996" d="M235 101H938V0H87V88L743 979H107V1082H894V993L235 101Z" />
|
||||
<glyph unicode="{" horiz-adv-x="676" d="M637 -404Q469 -354 384 -241T299 59V280Q299 543 68 543V647Q299 647 299 908V1137Q300 1320 384 1433T637 1597L663 1518Q419 1440 419 1127V914Q419 668 235 595Q419 518 419 277V49Q423 -243 666 -324L637 -404Z" />
|
||||
<glyph unicode="|" horiz-adv-x="452" d="M279 -270H178V1456H279V-270Z" />
|
||||
<glyph unicode="}" horiz-adv-x="676" d="M9 -324Q252 -243 256 49V273Q256 526 449 594Q256 662 256 913V1126Q256 1442 12 1518L38 1597Q209 1546 292 1432T376 1131V908Q376 647 607 647V543Q376 543 376 280V59Q376 -128 291 -241T38 -404L9 -324Z" />
|
||||
<glyph unicode="~" horiz-adv-x="1402" d="M1254 764Q1254 615 1171 519T958 423Q886 423 824 450T670 558T535 659T441 680Q352 680 303 621T253 450L145 449Q145 598 226 692T441 787Q515 787 581 756T740 643Q807 580 855 555T958 529Q1046 529 1098 592T1150
|
||||
764H1254Z" />
|
||||
<glyph unicode=" " horiz-adv-x="498" />
|
||||
<glyph unicode="¡" horiz-adv-x="452" d="M174 690H285L292 -359H168L174 690ZM305 1022Q305 988 283 965T223 942T163 965T140 1022T162 1079T223 1102T283 1079T305 1022Z" />
|
||||
<glyph unicode="¢" horiz-adv-x="1115" d="M581 81Q704 81 788 150T882 334H997Q989 195 887 97T636 -17V-245H516V-16Q331 7 225 150T119 526V562Q119 784 224 929T516 1098V1318H636V1099Q791 1083 891 978T997 717H882Q874 844 791 922T580 1000Q418 1000
|
||||
329 883T239 555V520Q239 313 328 197T581 81Z" />
|
||||
<glyph unicode="£" horiz-adv-x="1170" d="M404 645L413 368Q415 194 349 104H1094V0H97V104H195Q246 117 272 211Q292 285 290 367L281 645H93V749H277L268 1039Q268 1239 378 1357T674 1476Q856 1476 961 1371T1067 1088H944Q944 1223 869 1297T665 1371Q540
|
||||
1371 466 1283T392 1039L401 749H745V645H404Z" />
|
||||
<glyph unicode="¤" horiz-adv-x="1481" d="M1131 133Q1053 61 953 21T740 -20Q514 -20 349 132L194 -26L109 60L268 221Q144 389 144 608Q144 835 277 1006L109 1177L194 1264L361 1094Q526 1234 740 1234T1119 1092L1289 1265L1375 1177L1204 1002Q1334
|
||||
832 1334 608Q1334 393 1212 224L1375 60L1289 -27L1131 133ZM257 608Q257 470 321 350T499 161T740 91Q869 91 981 161T1157 350T1221 608Q1221 747 1156 866T979 1054T740 1122T500 1054T323 867T257 608Z" />
|
||||
<glyph unicode="¥" horiz-adv-x="1056" d="M527 731L892 1456H1030L631 705H944V616H586V412H944V324H586V0H463V324H109V412H463V616H109V705H422L24 1456H163L527 731Z" />
|
||||
<glyph unicode="¦" horiz-adv-x="444" d="M159 -270V501H279V-270H159ZM279 698H159V1456H279V698Z" />
|
||||
<glyph unicode="§" horiz-adv-x="1239" d="M1119 431Q1119 331 1058 262T887 159Q978 111 1026 41T1075 -139Q1075 -303 949 -399T606 -495Q497 -495 401 -467T236 -382Q102 -268 102 -64L222 -62Q222 -218 325 -305T606 -393Q766 -393 860 -324T954 -141Q954
|
||||
-64 920 -17T805 69T548 156T284 255T153 378T108 551Q108 651 166 721T331 825Q245 872 199 942T153 1120Q153 1281 282 1378T624 1476Q848 1476 972 1363T1097 1045H977Q977 1191 881 1282T624 1374Q459 1374 366 1306T273 1122Q273 1043 304 996T411 911T646
|
||||
828Q842 777 936 726T1075 603T1119 431ZM454 771Q346 758 287 700T228 553Q228 470 263 422T379 336T663 242L755 214Q867 227 933 284T999 428Q999 526 932 585T692 700L454 771Z" />
|
||||
<glyph unicode="¨" horiz-adv-x="881" d="M137 1396Q137 1430 159 1453T219 1477T279 1454T302 1396Q302 1363 280 1340T219 1317T159 1340T137 1396ZM575 1395Q575 1429 597 1452T657 1476T717 1453T740 1395Q740 1362 718 1339T657 1316T597 1339T575 1395Z" />
|
||||
<glyph unicode="©" horiz-adv-x="1637" d="M1121 607Q1121 455 1039 374T807 293T566 399T474 686V776Q474 950 566 1056T807 1163T1039 1083T1122 850H1023Q1023 1074 807 1074Q701 1074 637 993T573 771V680Q573 546 636 465T807 383Q913 383 967 436T1022
|
||||
607H1121ZM192 729Q192 553 273 399T502 155T817 65Q984 65 1129 154T1357 396T1441 729Q1441 907 1358 1059T1130 1300T817 1389Q646 1389 499 1298T272 1055T192 729ZM107 729Q107 931 200 1104T459 1376T817 1476T1174 1377T1432 1104T1526 729Q1526 532 1436
|
||||
360T1181 84T817 -21Q620 -21 455 82T198 358T107 729Z" />
|
||||
<glyph unicode="ª" horiz-adv-x="906" d="M649 705Q634 748 628 799Q541 691 406 691Q289 691 223 749T157 908Q157 1018 240 1079T486 1140H625V1201Q625 1286 585 1333T464 1380Q374 1380 323 1345T271 1237L164 1243Q164 1345 247 1410T464 1476Q588 1476
|
||||
661 1405T734 1199V884Q734 792 760 705H649ZM426 786Q479 786 536 816T625 890V1058H496Q266 1058 266 912Q266 786 426 786Z" />
|
||||
<glyph unicode="«" horiz-adv-x="933" d="M247 792L523 404H418L123 783V802L418 1181H523L247 792ZM556 536L832 148H727L432 527V546L727 925H832L556 536Z" />
|
||||
<glyph unicode="¬" horiz-adv-x="1117" d="M936 386H816V670H124V776H936V386Z" />
|
||||
<glyph unicode="­" horiz-adv-x="586" d="M528 592H49V693H528V592Z" />
|
||||
<glyph unicode="®" horiz-adv-x="1642" d="M102 729Q102 931 195 1104T454 1376T812 1476T1169 1377T1428 1104T1522 729Q1522 530 1431 358T1175 83T812 -21T450 82T193 358T102 729ZM187 729Q187 550 270 396T499 154T812 65T1125 153T1353 396T1436 729Q1436
|
||||
905 1355 1057T1129 1299T812 1389Q644 1389 499 1301T270 1060T187 729ZM650 666V321H552V1160H810Q957 1160 1036 1099T1115 912Q1115 779 974 715Q1046 689 1074 635T1102 504T1106 394T1119 337V321H1017Q1003 357 1003 503Q1003 592 966 629T838 666H650ZM650
|
||||
757H831Q912 757 964 799T1017 910Q1017 995 974 1031T824 1070H650V757Z" />
|
||||
<glyph unicode="¯" horiz-adv-x="874" d="M756 1343H137V1440H756V1343Z" />
|
||||
<glyph unicode="°" horiz-adv-x="774" d="M630 1226Q630 1122 559 1051T388 980Q287 980 215 1051T143 1226T216 1402T388 1476T558 1403T630 1226ZM233 1226Q233 1159 277 1115T388 1071T497 1115T540 1226Q540 1295 497 1340T388 1385Q323 1385 278 1340T233
|
||||
1226Z" />
|
||||
<glyph unicode="±" horiz-adv-x="1085" d="M609 829H1000V727H609V289H498V727H84V829H498V1267H609V829ZM963 0H128V101H963V0Z" />
|
||||
<glyph unicode="²" horiz-adv-x="740" d="M667 665H96V740L416 1054Q522 1164 522 1237Q522 1300 482 1338T362 1377Q275 1377 228 1333T181 1215H76Q76 1323 155 1394T360 1465T557 1403T628 1239Q628 1138 510 1016L455 961L229 752H667V665Z" />
|
||||
<glyph unicode="³" horiz-adv-x="740" d="M267 1107H353Q434 1109 481 1145T529 1241Q529 1303 486 1340T362 1377Q286 1377 238 1340T190 1245H85Q85 1341 163 1403T361 1465Q489 1465 562 1405T635 1243Q635 1187 597 1140T489 1069Q651 1027 651 880Q651
|
||||
778 572 716T363 654Q234 654 153 717T71 884H177Q177 822 229 782T366 741Q453 741 499 779T546 883Q546 1025 340 1025H267V1107Z" />
|
||||
<glyph unicode="´" horiz-adv-x="576" d="M315 1536H460L229 1256H124L315 1536Z" />
|
||||
<glyph unicode="µ" horiz-adv-x="1140" d="M281 1082V446Q281 266 344 174T544 81Q676 81 753 138T859 312V1082H979V0H870L863 154Q765 -20 552 -20Q368 -20 281 105V-416H162V1082H281Z" />
|
||||
<glyph unicode="¶" horiz-adv-x="973" d="M681 0V520H573Q423 520 312 578T142 742T83 988Q83 1201 216 1328T577 1456H801V0H681Z" />
|
||||
<glyph unicode="·" horiz-adv-x="503" d="M163 717Q163 752 185 776T247 800T310 776T333 717T310 659T247 635T185 658T163 717Z" />
|
||||
<glyph unicode="¸" horiz-adv-x="498" d="M246 0L234 -64Q399 -85 399 -235Q399 -327 320 -381T105 -435L98 -357Q187 -357 243 -325T300 -237Q300 -179 257 -157T124 -127L153 0H246Z" />
|
||||
<glyph unicode="¹" horiz-adv-x="740" d="M464 665H358V1328L126 1258V1348L450 1455H464V665Z" />
|
||||
<glyph unicode="º" horiz-adv-x="922" d="M135 1132Q135 1285 223 1380T458 1476Q605 1476 693 1381T782 1127V1033Q782 880 694 785T460 690Q313 690 224 784T135 1038V1132ZM243 1033Q243 919 299 852T460 785Q559 785 616 851T674 1037V1132Q674 1247
|
||||
616 1313T458 1380T301 1312T243 1127V1033Z" />
|
||||
<glyph unicode="»" horiz-adv-x="928" d="M221 944L516 560V541L221 162H115L391 550L115 944H221ZM540 944L835 560V541L540 162H434L710 550L434 944H540Z" />
|
||||
<glyph unicode="¼" horiz-adv-x="1484" d="M453 664H347V1327L115 1257V1347L439 1454H453V664ZM414 129L340 177L1051 1315L1125 1267L414 129ZM1272 275H1399V187H1272V0H1167V187H768L764 253L1161 789H1272V275ZM878 275H1167V659L1136 609L878 275Z" />
|
||||
<glyph unicode="½" horiz-adv-x="1548" d="M370 129L296 177L1007 1315L1081 1267L370 129ZM438 664H332V1327L100 1257V1347L424 1454H438V664ZM1436 0H865V75L1185 389Q1291 499 1291 572Q1291 635 1251 673T1131 712Q1044 712 997 668T950 550H845Q845
|
||||
658 924 729T1129 800T1326 738T1397 574Q1397 473 1279 351L1224 296L998 87H1436V0Z" />
|
||||
<glyph unicode="¾" horiz-adv-x="1590" d="M558 129L484 177L1195 1315L1269 1267L558 129ZM1387 275H1514V187H1387V0H1282V187H883L879 253L1276 789H1387V275ZM993 275H1282V659L1251 609L993 275ZM314 1107H400Q481 1109 528 1145T576 1241Q576 1303
|
||||
533 1340T409 1377Q333 1377 285 1340T237 1245H132Q132 1341 210 1403T408 1465Q536 1465 609 1405T682 1243Q682 1187 644 1140T536 1069Q698 1027 698 880Q698 778 619 716T410 654Q281 654 200 717T118 884H224Q224 822 276 782T413 741Q500 741 546 779T593
|
||||
883Q593 1025 387 1025H314V1107Z" />
|
||||
<glyph unicode="¿" horiz-adv-x="940" d="M551 687Q549 564 524 505T405 352T288 228Q207 123 207 -8Q207 -137 274 -207T469 -277Q588 -277 659 -207T732 -20H852Q850 -186 745 -284T469 -383Q291 -383 190 -283T88 -10Q88 101 141 202T337 438Q422 509
|
||||
429 618L431 687H551ZM567 1022Q567 988 545 965T485 941T425 964T402 1022Q402 1055 424 1078T485 1101T545 1078T567 1022Z" />
|
||||
<glyph unicode="À" horiz-adv-x="1279" d="M970 408H309L159 0H30L581 1456H698L1249 0H1121L970 408ZM347 513H931L639 1306L347 513ZM716 1571H607L381 1851H525L716 1571Z" />
|
||||
<glyph unicode="Á" horiz-adv-x="1279" d="M970 408H309L159 0H30L581 1456H698L1249 0H1121L970 408ZM347 513H931L639 1306L347 513ZM762 1851H907L676 1571H571L762 1851Z" />
|
||||
<glyph unicode="Â" horiz-adv-x="1279" d="M970 408H309L159 0H30L581 1456H698L1249 0H1121L970 408ZM347 513H931L639 1306L347 513ZM921 1583V1573H810L642 1756L475 1573H366V1586L604 1841H680L921 1583Z" />
|
||||
<glyph unicode="Ã" horiz-adv-x="1279" d="M970 408H309L159 0H30L581 1456H698L1249 0H1121L970 408ZM347 513H931L639 1306L347 513ZM983 1809Q983 1713 927 1655T788 1596Q712 1596 640 1651T510 1706Q463 1706 432 1675T400 1588L310 1591Q310 1683 364
|
||||
1743T505 1803Q553 1803 587 1786T651 1748T711 1710T783 1693Q829 1693 861 1726T894 1815L983 1809Z" />
|
||||
<glyph unicode="Ä" horiz-adv-x="1279" d="M970 408H309L159 0H30L581 1456H698L1249 0H1121L970 408ZM347 513H931L639 1306L347 513ZM343 1711Q343 1745 365 1768T425 1792T485 1769T508 1711Q508 1678 486 1655T425 1632T365 1655T343 1711ZM781 1710Q781
|
||||
1744 803 1767T863 1791T923 1768T946 1710Q946 1677 924 1654T863 1631T803 1654T781 1710Z" />
|
||||
<glyph unicode="Å" horiz-adv-x="1279" d="M970 408H309L159 0H30L581 1456H698L1249 0H1121L970 408ZM347 513H931L639 1306L347 513ZM450 1715Q450 1795 506 1850T643 1905Q722 1905 779 1850T836 1715Q836 1636 781 1582T643 1528T505 1582T450 1715ZM527
|
||||
1715Q527 1665 560 1632T643 1599Q692 1599 726 1631T760 1715Q760 1768 725 1801T643 1834Q594 1834 561 1800T527 1715Z" />
|
||||
<glyph unicode="Æ" horiz-adv-x="1865" d="M1823 0H1006L989 389H393L163 0H17L898 1456H1762V1354H1068L1091 809H1680V707H1095L1121 101H1823V0ZM460 502H985L950 1331L460 502Z" />
|
||||
<glyph unicode="Ç" horiz-adv-x="1330" d="M1215 454Q1190 224 1051 102T679 -20Q517 -20 393 61T200 290T131 630V819Q131 1013 199 1163T394 1394T688 1476Q922 1476 1057 1350T1215 1000H1091Q1045 1371 688 1371Q490 1371 373 1223T255 814V636Q255 384
|
||||
369 234T679 84Q872 84 970 176T1091 454H1215ZM728 -9L716 -73Q881 -94 881 -244Q881 -336 802 -390T587 -444L580 -366Q669 -366 725 -334T782 -246Q782 -188 739 -166T606 -136L635 -9H728Z" />
|
||||
<glyph unicode="È" horiz-adv-x="1165" d="M988 698H307V104H1090V0H184V1456H1085V1351H307V802H988V698ZM693 1577H584L358 1857H502L693 1577Z" />
|
||||
<glyph unicode="É" horiz-adv-x="1165" d="M988 698H307V104H1090V0H184V1456H1085V1351H307V802H988V698ZM739 1857H884L653 1577H548L739 1857Z" />
|
||||
<glyph unicode="Ê" horiz-adv-x="1165" d="M988 698H307V104H1090V0H184V1456H1085V1351H307V802H988V698ZM898 1589V1579H787L619 1762L452 1579H343V1592L581 1847H657L898 1589Z" />
|
||||
<glyph unicode="Ë" horiz-adv-x="1165" d="M988 698H307V104H1090V0H184V1456H1085V1351H307V802H988V698ZM320 1717Q320 1751 342 1774T402 1798T462 1775T485 1717Q485 1684 463 1661T402 1638T342 1661T320 1717ZM758 1716Q758 1750 780 1773T840 1797T900
|
||||
1774T923 1716Q923 1683 901 1660T840 1637T780 1660T758 1716Z" />
|
||||
<glyph unicode="Ì" horiz-adv-x="545" d="M334 0H211V1456H334V0ZM348 1577H239L13 1857H157L348 1577Z" />
|
||||
<glyph unicode="Í" horiz-adv-x="545" d="M334 0H211V1456H334V0ZM393 1857H538L307 1577H202L393 1857Z" />
|
||||
<glyph unicode="Î" horiz-adv-x="545" d="M334 0H211V1456H334V0ZM553 1589V1579H442L274 1762L107 1579H-2V1592L236 1847H312L553 1589Z" />
|
||||
<glyph unicode="Ï" horiz-adv-x="545" d="M334 0H211V1456H334V0ZM-25 1717Q-25 1751 -3 1774T57 1798T117 1775T140 1717Q140 1684 118 1661T57 1638T-3 1661T-25 1717ZM413 1716Q413 1750 435 1773T495 1797T555 1774T578 1716Q578 1683 556 1660T495 1637T435
|
||||
1660T413 1716Z" />
|
||||
<glyph unicode="Ð" horiz-adv-x="1371" d="M214 0V689H33V791H214V1456H621Q800 1456 942 1375T1163 1141T1243 795V661Q1243 466 1164 315T942 82T612 0H214ZM645 689H337V104H608Q843 104 982 256T1121 669V797Q1121 1048 984 1199T623 1351H337V791H645V689Z" />
|
||||
<glyph unicode="Ñ" horiz-adv-x="1454" d="M1268 0H1145L308 1246V0H184V1456H308L1146 209V1456H1268V0ZM1067 1809Q1067 1713 1011 1655T872 1596Q796 1596 724 1651T594 1706Q547 1706 516 1675T484 1588L394 1591Q394 1683 448 1743T589 1803Q637 1803
|
||||
671 1786T735 1748T795 1710T867 1693Q913 1693 945 1726T978 1815L1067 1809Z" />
|
||||
<glyph unicode="Ò" horiz-adv-x="1386" d="M1260 649Q1260 448 1191 296T992 62T694 -20Q439 -20 282 162T125 655V805Q125 1004 195 1157T395 1393T692 1476T988 1395T1187 1166T1260 823V649ZM1137 807Q1137 1070 1018 1219T692 1368Q489 1368 369 1219T248
|
||||
801V649Q248 390 368 239T694 87Q903 87 1020 236T1137 653V807ZM765 1583H656L430 1863H574L765 1583Z" />
|
||||
<glyph unicode="Ó" horiz-adv-x="1386" d="M1260 649Q1260 448 1191 296T992 62T694 -20Q439 -20 282 162T125 655V805Q125 1004 195 1157T395 1393T692 1476T988 1395T1187 1166T1260 823V649ZM1137 807Q1137 1070 1018 1219T692 1368Q489 1368 369 1219T248
|
||||
801V649Q248 390 368 239T694 87Q903 87 1020 236T1137 653V807ZM811 1863H956L725 1583H620L811 1863Z" />
|
||||
<glyph unicode="Ô" horiz-adv-x="1386" d="M1260 649Q1260 448 1191 296T992 62T694 -20Q439 -20 282 162T125 655V805Q125 1004 195 1157T395 1393T692 1476T988 1395T1187 1166T1260 823V649ZM1137 807Q1137 1070 1018 1219T692 1368Q489 1368 369 1219T248
|
||||
801V649Q248 390 368 239T694 87Q903 87 1020 236T1137 653V807ZM970 1595V1585H859L691 1768L524 1585H415V1598L653 1853H729L970 1595Z" />
|
||||
<glyph unicode="Õ" horiz-adv-x="1386" d="M1260 649Q1260 448 1191 296T992 62T694 -20Q439 -20 282 162T125 655V805Q125 1004 195 1157T395 1393T692 1476T988 1395T1187 1166T1260 823V649ZM1137 807Q1137 1070 1018 1219T692 1368Q489 1368 369 1219T248
|
||||
801V649Q248 390 368 239T694 87Q903 87 1020 236T1137 653V807ZM1032 1821Q1032 1725 976 1667T837 1608Q761 1608 689 1663T559 1718Q512 1718 481 1687T449 1600L359 1603Q359 1695 413 1755T554 1815Q602 1815 636 1798T700 1760T760 1722T832 1705Q878 1705
|
||||
910 1738T943 1827L1032 1821Z" />
|
||||
<glyph unicode="Ö" horiz-adv-x="1386" d="M1260 649Q1260 448 1191 296T992 62T694 -20Q439 -20 282 162T125 655V805Q125 1004 195 1157T395 1393T692 1476T988 1395T1187 1166T1260 823V649ZM1137 807Q1137 1070 1018 1219T692 1368Q489 1368 369 1219T248
|
||||
801V649Q248 390 368 239T694 87Q903 87 1020 236T1137 653V807ZM392 1723Q392 1757 414 1780T474 1804T534 1781T557 1723Q557 1690 535 1667T474 1644T414 1667T392 1723ZM830 1722Q830 1756 852 1779T912 1803T972 1780T995 1722Q995 1689 973 1666T912 1643T852
|
||||
1666T830 1722Z" />
|
||||
<glyph unicode="×" horiz-adv-x="1072" d="M93 179L451 544L108 894L187 974L529 624L872 974L951 894L608 544L966 179L887 100L529 464L172 100L93 179Z" />
|
||||
<glyph unicode="Ø" horiz-adv-x="1386" d="M1260 649Q1260 448 1191 296T992 62T694 -20Q508 -20 375 77L274 -83H170L307 134Q125 318 125 658V805Q125 1004 195 1157T395 1393T692 1476Q916 1476 1064 1336L1171 1505H1274L1125 1268Q1259 1088 1260 807V649ZM248
|
||||
649Q248 388 370 235L1002 1237Q883 1368 692 1368Q489 1368 369 1219T248 801V649ZM1137 807Q1137 1018 1057 1160L434 171Q541 87 694 87Q903 87 1020 236T1137 653V807Z" />
|
||||
<glyph unicode="Ù" horiz-adv-x="1346" d="M1187 1456V462Q1186 315 1122 206T942 39T674 -20Q444 -20 306 105T162 453V1456H284V471Q284 287 389 186T674 84T958 186T1063 470V1456H1187ZM756 1571H647L421 1851H565L756 1571Z" />
|
||||
<glyph unicode="Ú" horiz-adv-x="1346" d="M1187 1456V462Q1186 315 1122 206T942 39T674 -20Q444 -20 306 105T162 453V1456H284V471Q284 287 389 186T674 84T958 186T1063 470V1456H1187ZM802 1851H947L716 1571H611L802 1851Z" />
|
||||
<glyph unicode="Û" horiz-adv-x="1346" d="M1187 1456V462Q1186 315 1122 206T942 39T674 -20Q444 -20 306 105T162 453V1456H284V471Q284 287 389 186T674 84T958 186T1063 470V1456H1187ZM961 1583V1573H850L682 1756L515 1573H406V1586L644 1841H720L961 1583Z" />
|
||||
<glyph unicode="Ü" horiz-adv-x="1346" d="M1187 1456V462Q1186 315 1122 206T942 39T674 -20Q444 -20 306 105T162 453V1456H284V471Q284 287 389 186T674 84T958 186T1063 470V1456H1187ZM383 1711Q383 1745 405 1768T465 1792T525 1769T548 1711Q548 1678
|
||||
526 1655T465 1632T405 1655T383 1711ZM821 1710Q821 1744 843 1767T903 1791T963 1768T986 1710Q986 1677 964 1654T903 1631T843 1654T821 1710Z" />
|
||||
<glyph unicode="Ý" horiz-adv-x="1226" d="M611 662L1056 1456H1198L672 548V0H549V548L24 1456H170L611 662ZM732 1845H877L646 1565H541L732 1845Z" />
|
||||
<glyph unicode="Þ" horiz-adv-x="1214" d="M303 1456V1152H628Q771 1152 877 1101T1039 956T1096 738Q1096 553 974 441T641 324H303V0H183V1456H303ZM303 1051V425H627Q784 425 880 510T976 736T885 961T642 1051H303Z" />
|
||||
<glyph unicode="ß" horiz-adv-x="1200" d="M271 0H151V1127Q151 1327 246 1435T512 1544Q665 1544 760 1460T856 1237Q856 1179 843 1131T794 1019T746 913T733 824Q733 768 774 716T911 593T1051 454T1096 306Q1096 160 990 70T720 -20Q636 -20 545 4T414
|
||||
60L448 161Q485 132 562 106T706 80Q828 80 902 144T976 306Q976 367 932 423T797 547T659 681T613 826Q613 922 676 1034T739 1230Q739 1323 676 1382T522 1442Q275 1442 271 1136V0Z" />
|
||||
<glyph unicode="à" horiz-adv-x="1097" d="M839 0Q821 51 816 151Q753 69 656 25T449 -20Q293 -20 197 67T100 287Q100 445 231 537T598 629H815V752Q815 868 744 934T535 1001Q410 1001 328 937T246 783L126 784Q126 913 246 1007T541 1102Q722 1102 826
|
||||
1012T934 759V247Q934 90 967 12V0H839ZM463 86Q583 86 677 144T815 299V537H601Q422 535 321 472T220 297Q220 206 287 146T463 86ZM653 1256H544L318 1536H462L653 1256Z" />
|
||||
<glyph unicode="á" horiz-adv-x="1097" d="M839 0Q821 51 816 151Q753 69 656 25T449 -20Q293 -20 197 67T100 287Q100 445 231 537T598 629H815V752Q815 868 744 934T535 1001Q410 1001 328 937T246 783L126 784Q126 913 246 1007T541 1102Q722 1102 826
|
||||
1012T934 759V247Q934 90 967 12V0H839ZM463 86Q583 86 677 144T815 299V537H601Q422 535 321 472T220 297Q220 206 287 146T463 86ZM699 1536H844L613 1256H508L699 1536Z" />
|
||||
<glyph unicode="â" horiz-adv-x="1097" d="M839 0Q821 51 816 151Q753 69 656 25T449 -20Q293 -20 197 67T100 287Q100 445 231 537T598 629H815V752Q815 868 744 934T535 1001Q410 1001 328 937T246 783L126 784Q126 913 246 1007T541 1102Q722 1102 826
|
||||
1012T934 759V247Q934 90 967 12V0H839ZM463 86Q583 86 677 144T815 299V537H601Q422 535 321 472T220 297Q220 206 287 146T463 86ZM858 1268V1258H747L579 1441L412 1258H303V1271L541 1526H617L858 1268Z" />
|
||||
<glyph unicode="ã" horiz-adv-x="1097" d="M839 0Q821 51 816 151Q753 69 656 25T449 -20Q293 -20 197 67T100 287Q100 445 231 537T598 629H815V752Q815 868 744 934T535 1001Q410 1001 328 937T246 783L126 784Q126 913 246 1007T541 1102Q722 1102 826
|
||||
1012T934 759V247Q934 90 967 12V0H839ZM463 86Q583 86 677 144T815 299V537H601Q422 535 321 472T220 297Q220 206 287 146T463 86ZM920 1494Q920 1398 864 1340T725 1281Q649 1281 577 1336T447 1391Q400 1391 369 1360T337 1273L247 1276Q247 1368 301 1428T442
|
||||
1488Q490 1488 524 1471T588 1433T648 1395T720 1378Q766 1378 798 1411T831 1500L920 1494Z" />
|
||||
<glyph unicode="ä" horiz-adv-x="1097" d="M839 0Q821 51 816 151Q753 69 656 25T449 -20Q293 -20 197 67T100 287Q100 445 231 537T598 629H815V752Q815 868 744 934T535 1001Q410 1001 328 937T246 783L126 784Q126 913 246 1007T541 1102Q722 1102 826
|
||||
1012T934 759V247Q934 90 967 12V0H839ZM463 86Q583 86 677 144T815 299V537H601Q422 535 321 472T220 297Q220 206 287 146T463 86ZM280 1396Q280 1430 302 1453T362 1477T422 1454T445 1396Q445 1363 423 1340T362 1317T302 1340T280 1396ZM718 1395Q718 1429
|
||||
740 1452T800 1476T860 1453T883 1395Q883 1362 861 1339T800 1316T740 1339T718 1395Z" />
|
||||
<glyph unicode="å" horiz-adv-x="1097" d="M839 0Q821 51 816 151Q753 69 656 25T449 -20Q293 -20 197 67T100 287Q100 445 231 537T598 629H815V752Q815 868 744 934T535 1001Q410 1001 328 937T246 783L126 784Q126 913 246 1007T541 1102Q722 1102 826
|
||||
1012T934 759V247Q934 90 967 12V0H839ZM463 86Q583 86 677 144T815 299V537H601Q422 535 321 472T220 297Q220 206 287 146T463 86ZM387 1400Q387 1480 443 1535T580 1590Q659 1590 716 1535T773 1400Q773 1321 718 1267T580 1213T442 1267T387 1400ZM464 1400Q464
|
||||
1350 497 1317T580 1284Q629 1284 663 1316T697 1400Q697 1453 662 1486T580 1519Q531 1519 498 1485T464 1400Z" />
|
||||
<glyph unicode="æ" horiz-adv-x="1732" d="M1265 -20Q1126 -20 1027 34T867 186Q807 88 693 34T440 -20Q271 -20 178 64T85 293Q85 450 195 539T511 632H781V720Q781 852 718 926T528 1000Q398 1000 315 935T232 765L113 778Q113 922 229 1012T528 1102Q653
|
||||
1102 741 1049T870 889Q930 989 1024 1045T1235 1102Q1431 1102 1543 982T1658 644V538H901V509Q901 308 997 195T1265 81Q1450 81 1589 199L1636 112Q1491 -20 1265 -20ZM458 80Q549 80 642 126T781 236V536H525Q388 536 302 475T207 309L206 289Q206 192 271
|
||||
136T458 80ZM1235 1000Q1103 1000 1013 902T904 636H1539V667Q1539 821 1459 910T1235 1000Z" />
|
||||
<glyph unicode="ç" horiz-adv-x="1055" d="M556 81Q681 81 765 151T857 334H972Q967 235 910 154T759 26T556 -20Q343 -20 219 128T94 526V562Q94 722 150 845T310 1035T555 1102Q733 1102 848 996T972 717H857Q849 844 766 922T555 1000Q393 1000 304 883T214
|
||||
555V520Q214 313 303 197T556 81ZM589 -9L577 -73Q742 -94 742 -244Q742 -336 663 -390T448 -444L441 -366Q530 -366 586 -334T643 -246Q643 -188 600 -166T467 -136L496 -9H589Z" />
|
||||
<glyph unicode="è" horiz-adv-x="1058" d="M575 -20Q437 -20 326 48T152 237T90 510V553Q90 709 150 834T319 1030T553 1102Q750 1102 865 968T981 600V533H209V510Q209 326 314 204T580 81Q676 81 749 116T883 228L958 171Q826 -20 575 -20ZM553 1000Q418
|
||||
1000 326 901T213 635H862V648Q857 804 773 902T553 1000ZM640 1256H531L305 1536H449L640 1256Z" />
|
||||
<glyph unicode="é" horiz-adv-x="1058" d="M575 -20Q437 -20 326 48T152 237T90 510V553Q90 709 150 834T319 1030T553 1102Q750 1102 865 968T981 600V533H209V510Q209 326 314 204T580 81Q676 81 749 116T883 228L958 171Q826 -20 575 -20ZM553 1000Q418
|
||||
1000 326 901T213 635H862V648Q857 804 773 902T553 1000ZM686 1536H831L600 1256H495L686 1536Z" />
|
||||
<glyph unicode="ê" horiz-adv-x="1058" d="M575 -20Q437 -20 326 48T152 237T90 510V553Q90 709 150 834T319 1030T553 1102Q750 1102 865 968T981 600V533H209V510Q209 326 314 204T580 81Q676 81 749 116T883 228L958 171Q826 -20 575 -20ZM553 1000Q418
|
||||
1000 326 901T213 635H862V648Q857 804 773 902T553 1000ZM845 1268V1258H734L566 1441L399 1258H290V1271L528 1526H604L845 1268Z" />
|
||||
<glyph unicode="ë" horiz-adv-x="1058" d="M575 -20Q437 -20 326 48T152 237T90 510V553Q90 709 150 834T319 1030T553 1102Q750 1102 865 968T981 600V533H209V510Q209 326 314 204T580 81Q676 81 749 116T883 228L958 171Q826 -20 575 -20ZM553 1000Q418
|
||||
1000 326 901T213 635H862V648Q857 804 773 902T553 1000ZM267 1396Q267 1430 289 1453T349 1477T409 1454T432 1396Q432 1363 410 1340T349 1317T289 1340T267 1396ZM705 1395Q705 1429 727 1452T787 1476T847 1453T870 1395Q870 1362 848 1339T787 1316T727 1339T705
|
||||
1395Z" />
|
||||
<glyph unicode="ì" horiz-adv-x="456" d="M288 0H168V1082H288V0ZM305 1244H196L-30 1524H114L305 1244Z" />
|
||||
<glyph unicode="í" horiz-adv-x="456" d="M288 0H168V1082H288V0ZM350 1780H495L264 1500H159L350 1780Z" />
|
||||
<glyph unicode="î" horiz-adv-x="456" d="M288 0H168V1082H288V0ZM510 1256V1246H399L231 1429L64 1246H-45V1259L193 1514H269L510 1256Z" />
|
||||
<glyph unicode="ï" horiz-adv-x="456" d="M288 0H168V1082H288V0ZM-68 1384Q-68 1418 -46 1441T14 1465T74 1442T97 1384Q97 1351 75 1328T14 1305T-46 1328T-68 1384ZM370 1383Q370 1417 392 1440T452 1464T512 1441T535 1383Q535 1350 513 1327T452 1304T392
|
||||
1327T370 1383Z" />
|
||||
<glyph unicode="ð" horiz-adv-x="1191" d="M811 1303Q1049 1053 1055 645V535Q1055 376 999 249T842 51T615 -20Q485 -20 379 41T211 216T149 466Q149 695 268 830T587 965Q687 965 773 927T919 821Q877 1072 709 1240L484 1101L433 1174L639 1302Q502 1408
|
||||
296 1475L335 1578Q577 1506 744 1366L938 1487L989 1414L811 1303ZM935 625L933 682Q894 765 807 813T609 861Q448 861 359 756T269 466Q269 363 314 274T438 134T619 83Q760 83 847 207T935 543V625Z" />
|
||||
<glyph unicode="ñ" horiz-adv-x="1125" d="M270 1082L274 897Q335 997 426 1049T627 1102Q801 1102 886 1004T972 710V0H853V711Q852 856 792 927T598 998Q487 998 402 929T275 741V0H156V1082H270ZM916 1493Q916 1397 860 1339T721 1280Q645 1280 573 1335T443
|
||||
1390Q396 1390 365 1359T333 1272L243 1275Q243 1367 297 1427T438 1487Q486 1487 520 1470T584 1432T644 1394T716 1377Q762 1377 794 1410T827 1499L916 1493Z" />
|
||||
<glyph unicode="ò" horiz-adv-x="1147" d="M90 557Q90 713 150 838T321 1032T572 1102Q788 1102 922 951T1056 549V524Q1056 367 996 242T825 48T574 -20Q359 -20 225 131T90 533V557ZM210 524Q210 330 310 206T574 81Q736 81 836 205T937 534V557Q937 681
|
||||
891 784T762 943T572 1000Q412 1000 311 875T210 546V524ZM645 1256H536L310 1536H454L645 1256Z" />
|
||||
<glyph unicode="ó" horiz-adv-x="1147" d="M90 557Q90 713 150 838T321 1032T572 1102Q788 1102 922 951T1056 549V524Q1056 367 996 242T825 48T574 -20Q359 -20 225 131T90 533V557ZM210 524Q210 330 310 206T574 81Q736 81 836 205T937 534V557Q937 681
|
||||
891 784T762 943T572 1000Q412 1000 311 875T210 546V524ZM691 1536H836L605 1256H500L691 1536Z" />
|
||||
<glyph unicode="ô" horiz-adv-x="1147" d="M90 557Q90 713 150 838T321 1032T572 1102Q788 1102 922 951T1056 549V524Q1056 367 996 242T825 48T574 -20Q359 -20 225 131T90 533V557ZM210 524Q210 330 310 206T574 81Q736 81 836 205T937 534V557Q937 681
|
||||
891 784T762 943T572 1000Q412 1000 311 875T210 546V524ZM850 1268V1258H739L571 1441L404 1258H295V1271L533 1526H609L850 1268Z" />
|
||||
<glyph unicode="õ" horiz-adv-x="1147" d="M90 557Q90 713 150 838T321 1032T572 1102Q788 1102 922 951T1056 549V524Q1056 367 996 242T825 48T574 -20Q359 -20 225 131T90 533V557ZM210 524Q210 330 310 206T574 81Q736 81 836 205T937 534V557Q937 681
|
||||
891 784T762 943T572 1000Q412 1000 311 875T210 546V524ZM912 1493Q912 1397 856 1339T717 1280Q641 1280 569 1335T439 1390Q392 1390 361 1359T329 1272L239 1275Q239 1367 293 1427T434 1487Q482 1487 516 1470T580 1432T640 1394T712 1377Q758 1377 790 1410T823
|
||||
1499L912 1493Z" />
|
||||
<glyph unicode="ö" horiz-adv-x="1147" d="M90 557Q90 713 150 838T321 1032T572 1102Q788 1102 922 951T1056 549V524Q1056 367 996 242T825 48T574 -20Q359 -20 225 131T90 533V557ZM210 524Q210 330 310 206T574 81Q736 81 836 205T937 534V557Q937 681
|
||||
891 784T762 943T572 1000Q412 1000 311 875T210 546V524ZM272 1396Q272 1430 294 1453T354 1477T414 1454T437 1396Q437 1363 415 1340T354 1317T294 1340T272 1396ZM710 1395Q710 1429 732 1452T792 1476T852 1453T875 1395Q875 1362 853 1339T792 1316T732 1339T710
|
||||
1395Z" />
|
||||
<glyph unicode="÷" horiz-adv-x="1164" d="M1070 644H72V760H1070V644ZM495 1088Q495 1123 517 1147T579 1171T642 1147T665 1088T642 1030T579 1006T517 1029T495 1088ZM495 291Q495 326 517 350T579 374T642 350T665 291T642 233T579 210T517 233T495 291Z" />
|
||||
<glyph unicode="ø" horiz-adv-x="1140" d="M89 557Q89 713 149 838T320 1032T571 1102Q685 1102 785 1054L863 1214H957L857 1010Q951 938 1003 821T1055 557V524Q1055 368 994 242T823 48T573 -20Q465 -20 373 21L294 -140H200L299 63Q199 134 144 253T89
|
||||
524V557ZM208 524Q208 414 243 319T348 163L737 957Q662 1000 571 1000Q410 1000 309 875T208 546V524ZM935 557Q935 660 902 751T806 905L419 115Q487 81 573 81Q734 81 834 205T935 534V557Z" />
|
||||
<glyph unicode="ù" horiz-adv-x="1125" d="M852 137Q744 -20 507 -20Q334 -20 244 80T152 378V1082H271V393Q271 84 521 84Q781 84 850 299V1082H970V0H854L852 137ZM647 1256H538L312 1536H456L647 1256Z" />
|
||||
<glyph unicode="ú" horiz-adv-x="1125" d="M852 137Q744 -20 507 -20Q334 -20 244 80T152 378V1082H271V393Q271 84 521 84Q781 84 850 299V1082H970V0H854L852 137ZM693 1536H838L607 1256H502L693 1536Z" />
|
||||
<glyph unicode="û" horiz-adv-x="1125" d="M852 137Q744 -20 507 -20Q334 -20 244 80T152 378V1082H271V393Q271 84 521 84Q781 84 850 299V1082H970V0H854L852 137ZM852 1268V1258H741L573 1441L406 1258H297V1271L535 1526H611L852 1268Z" />
|
||||
<glyph unicode="ü" horiz-adv-x="1125" d="M852 137Q744 -20 507 -20Q334 -20 244 80T152 378V1082H271V393Q271 84 521 84Q781 84 850 299V1082H970V0H854L852 137ZM274 1396Q274 1430 296 1453T356 1477T416 1454T439 1396Q439 1363 417 1340T356 1317T296
|
||||
1340T274 1396ZM712 1395Q712 1429 734 1452T794 1476T854 1453T877 1395Q877 1362 855 1339T794 1316T734 1339T712 1395Z" />
|
||||
<glyph unicode="ý" horiz-adv-x="973" d="M499 172L815 1082H944L482 -184L458 -240Q369 -437 183 -437Q140 -437 91 -423L90 -324L152 -330Q240 -330 294 -287T387 -137L440 9L32 1082H163L499 172ZM633 1536H778L547 1256H442L633 1536Z" />
|
||||
<glyph unicode="þ" horiz-adv-x="1150" d="M1031 530Q1031 277 919 129T618 -20Q397 -20 279 136V-416H159V1536H279V932Q396 1102 616 1102Q808 1102 919 956T1031 548V530ZM911 551Q911 758 826 878T589 998Q479 998 400 945T279 791V270Q321 180 400 131T591
|
||||
81Q742 81 826 201T911 551Z" />
|
||||
<glyph unicode="ÿ" horiz-adv-x="973" d="M499 172L815 1082H944L482 -184L458 -240Q369 -437 183 -437Q140 -437 91 -423L90 -324L152 -330Q240 -330 294 -287T387 -137L440 9L32 1082H163L499 172ZM214 1396Q214 1430 236 1453T296 1477T356 1454T379 1396Q379
|
||||
1363 357 1340T296 1317T236 1340T214 1396ZM652 1395Q652 1429 674 1452T734 1476T794 1453T817 1395Q817 1362 795 1339T734 1316T674 1339T652 1395Z" />
|
||||
<glyph unicode="–" horiz-adv-x="1334" d="M1417 686H415V788H1417V686Z" />
|
||||
<glyph unicode="—" horiz-adv-x="1580" d="M1462 686H126V788H1462V686Z" />
|
||||
<glyph unicode="‘" horiz-adv-x="364" d="M238 1554L310 1503Q220 1385 217 1249V1121H98V1233Q98 1325 135 1410T238 1554Z" />
|
||||
<glyph unicode="’" horiz-adv-x="364" d="M133 1099L62 1151Q152 1272 155 1405V1536H273V1435Q273 1226 133 1099Z" />
|
||||
<glyph unicode="‚" horiz-adv-x="353" d="M112 -231L41 -179Q124 -68 132 51L133 205H252V104Q252 -104 112 -231Z" />
|
||||
<glyph unicode="“" horiz-adv-x="612" d="M239 1554L311 1503Q221 1385 218 1249V1121H99V1233Q99 1325 136 1410T239 1554ZM490 1554L562 1503Q472 1385 469 1249V1121H350V1233Q350 1325 387 1410T490 1554Z" />
|
||||
<glyph unicode="”" horiz-adv-x="617" d="M139 1099L68 1151Q158 1272 161 1405V1536H279V1435Q279 1226 139 1099ZM383 1099L312 1151Q402 1272 405 1405V1536H523V1435Q523 1226 383 1099Z" />
|
||||
<glyph unicode="„" horiz-adv-x="593" d="M112 -240L41 -188Q130 -65 133 73V236H252V106Q252 -111 112 -240ZM346 -240L275 -188Q363 -66 366 73V236H486V106Q486 -111 346 -240Z" />
|
||||
<glyph unicode="•" horiz-adv-x="662" d="M146 752Q146 831 197 881T331 931Q413 931 464 883T517 757V717Q517 636 466 588T332 540Q248 540 197 589T146 719V752Z" />
|
||||
<glyph unicode="‹" horiz-adv-x="609" d="M232 555L508 167H403L108 546V565L403 944H508L232 555Z" />
|
||||
<glyph unicode="›" horiz-adv-x="609" d="M203 944L498 560V541L203 162H97L373 550L97 944H203Z" />
|
||||
</font>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 48 KiB |
BIN
hostel/assets-hms/fonts/roboto-v27-latin-300.ttf
Normal file
BIN
hostel/assets-hms/fonts/roboto-v27-latin-300.woff
Normal file
BIN
hostel/assets-hms/fonts/roboto-v27-latin-300.woff2
Normal file
BIN
hostel/assets-hms/fonts/roboto-v27-latin-500.eot
Normal file
305
hostel/assets-hms/fonts/roboto-v27-latin-500.svg
Normal file
@ -0,0 +1,305 @@
|
||||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg xmlns="http://www.w3.org/2000/svg">
|
||||
<defs >
|
||||
<font id="Roboto" horiz-adv-x="1176" ><font-face
|
||||
font-family="Roboto Medium"
|
||||
units-per-em="2048"
|
||||
panose-1="2 0 0 0 0 0 0 0 0 0"
|
||||
ascent="1900"
|
||||
descent="-500"
|
||||
alphabetic="0" />
|
||||
<glyph unicode=" " horiz-adv-x="510" />
|
||||
<glyph unicode="!" horiz-adv-x="549" d="M382 429H173L150 1456H406L382 429ZM143 115Q143 172 180 209T281 247T382 210T419 115Q419 60 383 23T281 -14T179 23T143 115Z" />
|
||||
<glyph unicode=""" horiz-adv-x="664" d="M275 1399L240 1012H101V1536H275V1399ZM576 1399L541 1012H402V1536H576V1399Z" />
|
||||
<glyph unicode="#" horiz-adv-x="1250" d="M719 410H495L419 0H251L327 410H96V568H357L415 881H172V1040H445L523 1456H690L612 1040H837L915 1456H1082L1004 1040H1212V881H974L916 568H1137V410H886L810 0H643L719 410ZM525 568H749L807 881H583L525 568Z" />
|
||||
<glyph unicode="$" horiz-adv-x="1164" d="M819 380Q819 465 765 520T585 620T389 703Q156 828 156 1073Q156 1239 257 1346T531 1473V1691H691V1471Q865 1446 960 1324T1055 1005H813Q813 1131 757 1203T603 1276Q507 1276 453 1224T399 1075Q399 988 452 936T634
|
||||
836T835 749T958 658T1035 539T1062 382Q1062 213 959 108T670 -16V-211H511V-17Q313 5 207 125T100 443H343Q343 317 406 248T586 179Q700 179 759 234T819 380Z" />
|
||||
<glyph unicode="%" horiz-adv-x="1504" d="M99 1176Q99 1308 184 1392T407 1477Q547 1477 631 1393T716 1171V1099Q716 968 632 884T409 800Q274 800 187 882T99 1105V1176ZM269 1099Q269 1030 307 988T409 945Q471 945 509 987T547 1103V1176Q547 1245 509 1288T407
|
||||
1331T307 1288T269 1173V1099ZM799 357Q799 491 886 574T1108 657Q1244 657 1330 574T1417 350V279Q1417 149 1334 65T1110 -20T885 63T799 284V357ZM969 279Q969 211 1008 168T1110 124Q1174 124 1210 165T1247 282V357Q1247 427 1208 469T1108 511Q1046 511 1008
|
||||
469T969 353V279ZM459 109L334 181L1045 1319L1170 1247L459 109Z" />
|
||||
<glyph unicode="&" horiz-adv-x="1309" d="M86 393Q86 494 141 578T358 779Q273 886 240 961T206 1106Q206 1277 310 1376T590 1476Q749 1476 850 1383T952 1151Q952 1060 906 984T755 831L656 759L937 427Q998 547 998 694H1209Q1209 425 1083 253L1297 0H1015L933
|
||||
97Q777 -20 561 -20T216 94T86 393ZM568 174Q691 174 798 256L480 631L449 609Q329 518 329 401Q329 300 394 237T568 174ZM434 1112Q434 1028 537 901L648 977L679 1002Q741 1057 741 1143Q741 1200 698 1240T589 1281Q518 1281 476 1233T434 1112Z" />
|
||||
<glyph unicode="'" horiz-adv-x="346" d="M267 1411L241 1020H82V1536H267V1411Z" />
|
||||
<glyph unicode="(" horiz-adv-x="714" d="M128 592Q128 823 190 1030T372 1401T626 1631L674 1489Q533 1382 446 1163T350 660L349 574Q349 271 434 34T674 -328L626 -463Q492 -397 372 -233T190 138T128 592Z" />
|
||||
<glyph unicode=")" horiz-adv-x="722" d="M593 576Q593 354 532 148T347 -228T88 -463L40 -328Q190 -212 277 26T365 571V594Q365 872 289 1100T71 1467L40 1495L88 1631Q216 1569 336 1411T520 1058T592 654L593 576Z" />
|
||||
<glyph unicode="*" horiz-adv-x="905" d="M332 972L27 1060L82 1229L384 1112L369 1456H548L533 1106L830 1221L884 1049L574 961L774 695L629 589L449 877L271 598L125 700L332 972Z" />
|
||||
<glyph unicode="+" horiz-adv-x="1141" d="M686 801H1066V579H686V146H450V579H68V801H450V1206H686V801Z" />
|
||||
<glyph unicode="," horiz-adv-x="450" d="M159 -328L28 -250Q86 -159 107 -92T130 46V235H349L348 60Q347 -46 295 -152T159 -328Z" />
|
||||
<glyph unicode="-" horiz-adv-x="672" d="M596 521H71V717H596V521Z" />
|
||||
<glyph unicode="." horiz-adv-x="572" d="M276 256Q344 256 381 218T418 121Q418 64 381 27T276 -11Q211 -11 173 26T135 121T172 217T276 256Z" />
|
||||
<glyph unicode="/" horiz-adv-x="810" d="M193 -125H2L575 1456H766L193 -125Z" />
|
||||
<glyph unicode="0" horiz-adv-x="1164" d="M1058 613Q1058 299 941 140T583 -20Q347 -20 228 135T105 596V848Q105 1162 222 1319T581 1476Q820 1476 937 1323T1058 865V613ZM815 885Q815 1090 759 1185T581 1281Q462 1281 406 1191T347 908V578Q347 374 404 274T583
|
||||
174Q700 174 756 266T815 556V885Z" />
|
||||
<glyph unicode="1" horiz-adv-x="1164" d="M767 0H525V1169L168 1047V1252L736 1461H767V0Z" />
|
||||
<glyph unicode="2" horiz-adv-x="1164" d="M1088 0H109V167L594 696Q699 813 743 891T788 1049Q788 1153 730 1217T572 1281Q454 1281 389 1209T324 1012H81Q81 1145 141 1251T314 1417T574 1476Q786 1476 908 1370T1031 1075Q1031 966 970 847T768 575L412 194H1088V0Z" />
|
||||
<glyph unicode="3" horiz-adv-x="1164" d="M390 839H538Q650 840 715 897T781 1062Q781 1166 727 1223T560 1281Q462 1281 399 1225T336 1077H93Q93 1189 152 1281T318 1424T557 1476Q775 1476 899 1367T1024 1062Q1024 964 962 878T800 747Q920 706 982 618T1045
|
||||
408Q1045 212 911 96T557 -20Q347 -20 213 92T79 390H322Q322 294 386 234T560 174Q673 174 738 234T803 408Q803 523 735 585T533 647H390V839Z" />
|
||||
<glyph unicode="4" horiz-adv-x="1164" d="M931 519H1112V324H931V0H688V324H59L52 472L680 1456H931V519ZM307 519H688V1127L670 1095L307 519Z" />
|
||||
<glyph unicode="5" horiz-adv-x="1164" d="M174 722L253 1456H1035V1246H455L415 898Q516 956 643 956Q851 956 966 823T1082 465Q1082 243 954 112T603 -20Q403 -20 272 93T129 393H364Q378 287 440 231T602 174Q714 174 776 254T839 472Q839 605 770 682T580
|
||||
760Q514 760 468 743T368 674L174 722Z" />
|
||||
<glyph unicode="6" horiz-adv-x="1164" d="M865 1463V1262H835Q631 1259 509 1150T364 841Q481 964 663 964Q856 964 967 828T1079 477Q1079 255 949 118T606 -20Q388 -20 253 141T117 563V646Q117 1029 303 1246T840 1463H865ZM604 768Q524 768 458 723T360 603V529Q360
|
||||
367 428 272T604 176T775 257T838 470T774 685T604 768Z" />
|
||||
<glyph unicode="7" horiz-adv-x="1164" d="M1078 1321L496 0H241L822 1261H69V1456H1078V1321Z" />
|
||||
<glyph unicode="8" horiz-adv-x="1164" d="M1026 1072Q1026 965 971 882T821 750Q935 697 996 605T1058 397Q1058 205 928 93T582 -20Q365 -20 235 93T104 397Q104 514 166 607T340 750Q246 798 192 881T137 1072Q137 1258 257 1367T581 1476Q786 1476 906 1367T1026
|
||||
1072ZM815 409Q815 517 751 583T580 650T411 584T347 409Q347 302 409 238T582 174T753 236T815 409ZM784 1063Q784 1158 729 1219T581 1281T434 1223T380 1063Q380 963 434 904T582 845T729 904T784 1063Z" />
|
||||
<glyph unicode="9" horiz-adv-x="1164" d="M798 609Q676 480 513 480Q321 480 207 614T93 968Q93 1112 151 1229T316 1411T564 1476Q784 1476 913 1312T1042 873V805Q1042 411 864 204T333 -6H304V195H339Q554 198 669 298T798 609ZM564 670Q637 670 701 712T800
|
||||
828V923Q800 1084 734 1182T563 1280T396 1194T333 975Q333 838 396 754T564 670Z" />
|
||||
<glyph unicode=":" horiz-adv-x="543" d="M527 256Q595 256 632 218T669 121Q669 64 632 27T527 -11Q462 -11 424 26T386 121T423 217T527 256ZM271 1105Q339 1105 376 1067T413 970Q413 913 376 876T271 838Q206 838 168 875T130 970T167 1066T271 1105Z" />
|
||||
<glyph unicode=";" horiz-adv-x="487" d="M250 1105Q318 1105 355 1067T392 970Q392 913 355 876T250 838Q185 838 147 875T109 970T146 1066T250 1105ZM177 -328L46 -250Q104 -159 125 -92T148 46V235H367L366 60Q365 -46 313 -152T177 -328Z" />
|
||||
<glyph unicode="<" horiz-adv-x="1041" d="M310 631L900 407V164L63 537V730L900 1102V859L310 631Z" />
|
||||
<glyph unicode="=" horiz-adv-x="1146" d="M1007 780H145V982H1007V780ZM1007 356H145V557H1007V356Z" />
|
||||
<glyph unicode=">" horiz-adv-x="1066" d="M746 636L128 863V1102L992 730V537L128 165V404L746 636Z" />
|
||||
<glyph unicode="?" horiz-adv-x="996" d="M350 428Q350 561 383 640T513 813T637 948Q677 1009 677 1080Q677 1174 631 1223T494 1273Q408 1273 356 1225T303 1093H60Q62 1270 180 1373T494 1476Q695 1476 807 1374T920 1089Q920 926 768 768L645 647Q579 572
|
||||
577 428H350ZM333 117Q333 176 370 212T470 249Q534 249 571 212T608 117Q608 62 572 25T470 -12T369 25T333 117Z" />
|
||||
<glyph unicode="@" horiz-adv-x="1832" d="M1741 518Q1729 268 1618 124T1317 -21Q1136 -21 1075 133Q1024 57 957 19T815 -19Q669 -19 594 101T536 422Q552 585 615 716T776 918T984 990Q1068 990 1132 969T1284 882L1232 319Q1213 121 1346 121Q1448 121 1513
|
||||
230T1585 514Q1602 883 1443 1079T963 1275Q767 1275 616 1177T375 894T277 471Q265 230 334 56T547 -210T898 -301Q982 -301 1073 -281T1229 -227L1267 -364Q1206 -404 1103 -428T894 -453Q640 -453 458 -346T185 -34Q91 177 102 471Q114 745 225 963T528 1303T967
|
||||
1424Q1216 1424 1395 1315T1664 1000T1741 518ZM732 422Q719 286 756 216T874 145Q928 145 976 192T1054 323L1099 816Q1049 835 1002 835Q891 835 821 731T732 422Z" />
|
||||
<glyph unicode="A" horiz-adv-x="1363" d="M963 339H399L281 0H18L568 1456H795L1346 0H1082L963 339ZM470 543H892L681 1147L470 543Z" />
|
||||
<glyph unicode="B" horiz-adv-x="1292" d="M148 0V1456H647Q894 1456 1023 1357T1152 1062Q1152 962 1098 882T940 758Q1058 726 1122 638T1187 425Q1187 220 1056 110T679 0H148ZM401 657V202H682Q801 202 868 261T935 425Q935 652 703 657H401ZM401 843H649Q767
|
||||
843 833 896T900 1048Q900 1156 839 1204T647 1252H401V843Z" />
|
||||
<glyph unicode="C" horiz-adv-x="1337" d="M1259 474Q1237 241 1087 111T688 -20Q514 -20 382 62T177 297T102 650V786Q102 992 175 1149T384 1391T700 1476Q941 1476 1088 1345T1259 975H1007Q989 1132 916 1201T700 1271Q535 1271 447 1151T356 797V668Q356
|
||||
432 440 308T688 184Q837 184 912 251T1007 474H1259Z" />
|
||||
<glyph unicode="D" horiz-adv-x="1338" d="M148 0V1456H578Q771 1456 920 1370T1152 1126T1234 764V691Q1234 484 1152 327T917 85T567 0H148ZM401 1252V202H566Q765 202 871 326T980 684V765Q980 1002 877 1127T578 1252H401Z" />
|
||||
<glyph unicode="E" horiz-adv-x="1158" d="M999 650H401V202H1100V0H148V1456H1093V1252H401V850H999V650Z" />
|
||||
<glyph unicode="F" horiz-adv-x="1125" d="M987 617H401V0H148V1456H1073V1252H401V819H987V617Z" />
|
||||
<glyph unicode="G" horiz-adv-x="1394" d="M1264 189Q1185 86 1045 33T727 -20Q544 -20 403 63T186 300T106 661V775Q106 1105 264 1290T705 1476Q948 1476 1091 1356T1263 1010H1015Q973 1273 710 1273Q540 1273 452 1151T360 791V679Q360 443 459 313T736 182Q930
|
||||
182 1012 270V555H712V747H1264V189Z" />
|
||||
<glyph unicode="H" horiz-adv-x="1455" d="M1304 0H1052V647H401V0H148V1456H401V850H1052V1456H1304V0Z" />
|
||||
<glyph unicode="I" horiz-adv-x="578" d="M415 0H163V1456H415V0Z" />
|
||||
<glyph unicode="J" horiz-adv-x="1137" d="M744 1456H996V435Q996 226 866 103T521 -20Q293 -20 169 95T45 415H297Q297 299 354 241T521 182Q623 182 683 249T744 436V1456Z" />
|
||||
<glyph unicode="K" horiz-adv-x="1291" d="M566 629L401 454V0H148V1456H401V773L541 946L967 1456H1273L732 811L1304 0H1004L566 629Z" />
|
||||
<glyph unicode="L" horiz-adv-x="1108" d="M401 202H1062V0H148V1456H401V202Z" />
|
||||
<glyph unicode="M" horiz-adv-x="1793" d="M476 1456L896 340L1315 1456H1642V0H1390V480L1415 1122L985 0H804L375 1121L400 480V0H148V1456H476Z" />
|
||||
<glyph unicode="N" horiz-adv-x="1454" d="M1303 0H1050L401 1033V0H148V1456H401L1052 419V1456H1303V0Z" />
|
||||
<glyph unicode="O" horiz-adv-x="1414" d="M1310 690Q1310 476 1236 315T1025 67T708 -20Q531 -20 393 66T179 313T102 682V764Q102 977 177 1140T390 1389T706 1476T1021 1391T1234 1145T1310 771V690ZM1057 766Q1057 1008 966 1137T706 1266Q542 1266 450 1138T355
|
||||
774V690Q355 450 448 319T708 188Q876 188 966 316T1057 690V766Z" />
|
||||
<glyph unicode="P" horiz-adv-x="1309" d="M401 541V0H148V1456H705Q949 1456 1092 1329T1236 993Q1236 779 1096 660T702 541H401ZM401 744H705Q840 744 911 807T982 991Q982 1109 910 1179T712 1252H401V744Z" />
|
||||
<glyph unicode="Q" horiz-adv-x="1414" d="M1305 690Q1305 483 1240 332T1056 91L1306 -104L1142 -252L832 -7Q771 -20 701 -20Q525 -20 387 66T173 313T96 682V764Q96 977 171 1140T384 1389T699 1476Q879 1476 1016 1391T1229 1145T1305 771V690ZM1051 766Q1051
|
||||
1012 959 1139T699 1266Q536 1266 444 1138T349 775V690Q349 454 441 321T701 188Q870 188 960 316T1051 690V766Z" />
|
||||
<glyph unicode="R" horiz-adv-x="1278" d="M683 561H401V0H148V1456H660Q912 1456 1049 1343T1186 1016Q1186 870 1116 772T919 620L1246 13V0H975L683 561ZM401 764H661Q789 764 861 828T933 1005Q933 1122 867 1186T668 1252H401V764Z" />
|
||||
<glyph unicode="S" horiz-adv-x="1236" d="M909 375Q909 471 842 523T598 628T318 746Q119 871 119 1072Q119 1248 262 1362T635 1476Q787 1476 906 1420T1093 1261T1161 1031H909Q909 1145 838 1209T633 1274Q509 1274 441 1221T372 1073Q372 993 446 940T690
|
||||
836T963 721T1114 573T1162 377Q1162 195 1023 88T644 -20Q486 -20 354 38T148 200T74 440H327Q327 316 409 248T644 180Q776 180 842 233T909 375Z" />
|
||||
<glyph unicode="T" horiz-adv-x="1243" d="M1200 1252H746V0H495V1252H45V1456H1200V1252Z" />
|
||||
<glyph unicode="U" horiz-adv-x="1335" d="M1213 1456V483Q1213 251 1065 116T669 -20Q419 -20 272 113T125 484V1456H377V482Q377 336 451 259T669 182Q961 182 961 490V1456H1213Z" />
|
||||
<glyph unicode="V" horiz-adv-x="1325" d="M661 317L1031 1456H1309L785 0H540L18 1456H295L661 317Z" />
|
||||
<glyph unicode="W" horiz-adv-x="1802" d="M1290 360L1514 1456H1765L1429 0H1187L910 1063L627 0H384L48 1456H299L525 362L803 1456H1015L1290 360Z" />
|
||||
<glyph unicode="X" horiz-adv-x="1296" d="M649 930L955 1456H1247L807 734L1257 0H962L649 534L335 0H41L492 734L51 1456H343L649 930Z" />
|
||||
<glyph unicode="Y" horiz-adv-x="1248" d="M623 766L958 1456H1238L750 536V0H496V536L7 1456H288L623 766Z" />
|
||||
<glyph unicode="Z" horiz-adv-x="1233" d="M386 202H1164V0H80V164L833 1252H85V1456H1140V1296L386 202Z" />
|
||||
<glyph unicode="[" horiz-adv-x="561" d="M540 1488H375V-135H540V-324H132V1678H540V1488Z" />
|
||||
<glyph unicode="\" horiz-adv-x="856" d="M20 1456H260L868 -125H628L20 1456Z" />
|
||||
<glyph unicode="]" horiz-adv-x="561" d="M12 1678H422V-324H12V-135H179V1488H12V1678Z" />
|
||||
<glyph unicode="^" horiz-adv-x="875" d="M437 1190L259 729H53L352 1456H523L821 729H616L437 1190Z" />
|
||||
<glyph unicode="_" horiz-adv-x="924" d="M920 -191H3V0H920V-191Z" />
|
||||
<glyph unicode="`" horiz-adv-x="660" d="M521 1233H319L49 1536H326L521 1233Z" />
|
||||
<glyph unicode="a" horiz-adv-x="1108" d="M771 0Q755 31 743 101Q627 -20 459 -20Q296 -20 193 73T90 303Q90 476 218 568T586 661H735V732Q735 816 688 866T545 917Q462 917 409 876T356 770H113Q113 859 172 936T332 1058T559 1102Q749 1102 862 1007T978 738V250Q978
|
||||
104 1019 17V0H771ZM504 175Q576 175 639 210T735 304V508H604Q469 508 401 461T333 328Q333 258 379 217T504 175Z" />
|
||||
<glyph unicode="b" horiz-adv-x="1153" d="M1074 530Q1074 278 962 129T652 -20Q462 -20 356 117L344 0H124V1536H367V978Q472 1102 650 1102Q848 1102 961 955T1074 544V530ZM831 551Q831 727 769 815T589 903Q431 903 367 765V319Q432 178 591 178Q705 178 767
|
||||
263T831 520V551Z" />
|
||||
<glyph unicode="c" horiz-adv-x="1072" d="M569 174Q660 174 720 227T784 358H1013Q1009 257 950 170T790 31T572 -20Q345 -20 212 127T79 533V558Q79 805 211 953T571 1102Q764 1102 885 990T1013 694H784Q780 787 721 847T569 907Q451 907 387 822T322 562V523Q322
|
||||
347 385 261T569 174Z" />
|
||||
<glyph unicode="d" horiz-adv-x="1156" d="M79 549Q79 799 195 950T506 1102Q678 1102 784 982V1536H1027V0H807L795 112Q686 -20 504 -20Q314 -20 197 133T79 549ZM322 528Q322 363 385 271T566 178Q715 178 784 311V773Q717 903 568 903Q450 903 386 810T322 528Z" />
|
||||
<glyph unicode="e" horiz-adv-x="1099" d="M601 -20Q370 -20 227 125T83 513V543Q83 705 145 832T321 1031T573 1102Q794 1102 914 961T1035 562V464H328Q339 330 417 252T615 174Q782 174 887 309L1018 184Q953 87 845 34T601 -20ZM572 907Q472 907 411 837T332
|
||||
642H795V660Q787 782 730 844T572 907Z" />
|
||||
<glyph unicode="f" horiz-adv-x="726" d="M210 0V902H45V1082H210V1181Q210 1361 310 1459T590 1557Q654 1557 726 1539L720 1349Q680 1357 627 1357Q453 1357 453 1178V1082H673V902H453V0H210Z" />
|
||||
<glyph unicode="g" horiz-adv-x="1161" d="M82 549Q82 801 200 951T515 1102Q700 1102 806 973L817 1082H1036V33Q1036 -180 904 -303T546 -426Q427 -426 314 -377T141 -247L256 -101Q368 -234 532 -234Q653 -234 723 -169T793 24V97Q688 -20 513 -20Q323 -20
|
||||
203 131T82 549ZM324 528Q324 365 390 272T575 178Q722 178 793 304V780Q724 903 577 903Q457 903 391 808T324 528Z" />
|
||||
<glyph unicode="h" horiz-adv-x="1137" d="M364 964Q483 1102 665 1102Q1011 1102 1016 707V0H773V698Q773 810 725 856T582 903Q436 903 364 773V0H121V1536H364V964Z" />
|
||||
<glyph unicode="i" horiz-adv-x="523" d="M383 0H140V1082H383V0ZM125 1363Q125 1419 160 1456T262 1493T364 1456T400 1363Q400 1308 364 1272T262 1235T161 1271T125 1363Z" />
|
||||
<glyph unicode="j" horiz-adv-x="513" d="M378 1082V-96Q378 -262 296 -349T54 -437Q-13 -437 -75 -420V-228Q-37 -237 11 -237Q132 -237 135 -105V1082H378ZM114 1363Q114 1419 149 1456T251 1493T353 1456T389 1363Q389 1308 353 1272T251 1235T150 1271T114 1363Z" />
|
||||
<glyph unicode="k" horiz-adv-x="1069" d="M476 464L368 353V0H125V1536H368V650L444 745L743 1082H1035L633 631L1078 0H797L476 464Z" />
|
||||
<glyph unicode="l" horiz-adv-x="523" d="M383 0H140V1536H383V0Z" />
|
||||
<glyph unicode="m" horiz-adv-x="1782" d="M353 1082L360 969Q474 1102 672 1102Q889 1102 969 936Q1087 1102 1301 1102Q1480 1102 1567 1003T1657 711V0H1414V704Q1414 807 1369 855T1220 903Q1137 903 1085 859T1011 742L1012 0H769V712Q764 903 574 903Q428
|
||||
903 367 784V0H124V1082H353Z" />
|
||||
<glyph unicode="n" horiz-adv-x="1139" d="M350 1082L357 957Q477 1102 672 1102Q1010 1102 1016 715V0H773V701Q773 804 729 853T583 903Q436 903 364 770V0H121V1082H350Z" />
|
||||
<glyph unicode="o" horiz-adv-x="1166" d="M79 551Q79 710 142 837T319 1033T581 1102Q800 1102 936 961T1084 587L1085 530Q1085 370 1024 244T848 49T583 -20Q354 -20 217 132T79 539V551ZM322 530Q322 363 391 269T583 174T774 270T843 551Q843 715 773 811T581
|
||||
907Q462 907 392 813T322 530Z" />
|
||||
<glyph unicode="p" horiz-adv-x="1153" d="M1072 530Q1072 279 958 130T652 -20Q474 -20 367 97V-416H124V1082H348L358 972Q465 1102 649 1102Q847 1102 959 955T1072 545V530ZM830 551Q830 713 766 808T581 903Q432 903 367 780V300Q433 174 583 174Q699 174
|
||||
764 267T830 551Z" />
|
||||
<glyph unicode="q" horiz-adv-x="1163" d="M79 550Q79 804 195 953T509 1102Q690 1102 796 975L810 1082H1026V-416H783V92Q677 -20 507 -20Q313 -20 196 131T79 550ZM322 529Q322 363 387 269T569 174Q713 174 783 297V789Q713 907 571 907Q455 907 389 814T322 529Z" />
|
||||
<glyph unicode="r" horiz-adv-x="720" d="M691 860Q643 868 592 868Q425 868 367 740V0H124V1082H356L362 961Q450 1102 606 1102Q658 1102 692 1088L691 860Z" />
|
||||
<glyph unicode="s" horiz-adv-x="1057" d="M731 294Q731 359 678 393T500 453T293 519Q111 607 111 774Q111 914 229 1008T529 1102Q723 1102 842 1006T962 757H719Q719 827 667 873T529 920Q449 920 399 883T348 784Q348 728 395 697T585 635T809 560T930 455T970
|
||||
307Q970 161 849 71T532 -20Q399 -20 295 28T133 160T75 341H311Q316 255 376 209T535 162Q631 162 681 198T731 294Z" />
|
||||
<glyph unicode="t" horiz-adv-x="681" d="M429 1345V1082H620V902H429V298Q429 236 453 209T541 181Q583 181 626 191V3Q543 -20 466 -20Q186 -20 186 289V902H8V1082H186V1345H429Z" />
|
||||
<glyph unicode="u" horiz-adv-x="1138" d="M780 106Q673 -20 476 -20Q300 -20 210 83T119 381V1082H362V384Q362 178 533 178Q710 178 772 305V1082H1015V0H786L780 106Z" />
|
||||
<glyph unicode="v" horiz-adv-x="1013" d="M506 308L735 1082H986L611 0H400L22 1082H274L506 308Z" />
|
||||
<glyph unicode="w" horiz-adv-x="1522" d="M1075 335L1247 1082H1484L1189 0H989L757 743L529 0H329L33 1082H270L445 343L667 1082H850L1075 335Z" />
|
||||
<glyph unicode="x" horiz-adv-x="1030" d="M513 726L719 1082H989L658 549L1000 0H732L516 370L301 0H31L373 549L43 1082H311L513 726Z" />
|
||||
<glyph unicode="y" horiz-adv-x="997" d="M503 348L723 1082H982L552 -164Q453 -437 216 -437Q163 -437 99 -419V-231L145 -234Q237 -234 283 -201T357 -88L392 5L12 1082H274L503 348Z" />
|
||||
<glyph unicode="z" horiz-adv-x="1030" d="M384 194H960V0H82V159L631 886H92V1082H939V928L384 194Z" />
|
||||
<glyph unicode="{" horiz-adv-x="687" d="M609 -360Q256 -261 249 91V304Q249 529 56 529V707Q249 707 249 933V1145Q252 1325 342 1436T609 1597L657 1457Q484 1401 478 1151V935Q478 710 305 619Q478 527 478 300V87Q484 -163 657 -219L609 -360Z" />
|
||||
<glyph unicode="|" horiz-adv-x="514" d="M341 -270H174V1456H341V-270Z" />
|
||||
<glyph unicode="}" horiz-adv-x="687" d="M27 -219Q203 -162 207 93V301Q207 532 389 618Q207 704 207 938V1145Q203 1400 27 1457L75 1597Q257 1546 346 1432T435 1132V932Q435 707 629 707V529Q435 529 435 304V107Q435 -80 346 -194T75 -360L27 -219Z" />
|
||||
<glyph unicode="~" horiz-adv-x="1361" d="M1244 786Q1244 610 1149 499T912 387Q838 387 776 415T636 511T526 596T454 613Q387 613 349 561T310 425H117Q117 596 208 705T447 815Q521 815 587 786T726 690T832 607T905 590Q972 590 1014 646T1056 786H1244Z" />
|
||||
<glyph unicode=" " horiz-adv-x="510" />
|
||||
<glyph unicode="¡" horiz-adv-x="542" d="M170 662H379L403 -364H146L170 662ZM409 971Q409 915 373 878T272 840Q206 840 170 877T134 971Q134 1026 170 1063T272 1101Q337 1101 373 1064T409 971Z" />
|
||||
<glyph unicode="¢" horiz-adv-x="1149" d="M591 174Q680 174 740 226T806 358H1034Q1030 222 932 120T687 -11V-245H487V-11Q304 23 202 166T100 530V558Q100 771 202 915T487 1093V1318H687V1094Q845 1066 937 958T1034 694H806Q799 790 740 848T590 907Q360
|
||||
907 344 595L343 523Q343 347 406 261T591 174Z" />
|
||||
<glyph unicode="£" horiz-adv-x="1205" d="M509 598L516 422Q516 287 452 202H1148L1147 0H98V202H180Q219 211 240 266T262 413L255 598H94V797H249L241 1039Q241 1241 366 1358T694 1475T1013 1366T1129 1073H884Q884 1168 832 1220T685 1273Q596 1273
|
||||
545 1208T493 1039L502 797H813V598H509Z" />
|
||||
<glyph unicode="¤" horiz-adv-x="1437" d="M1085 107Q926 -20 723 -20Q521 -20 363 106L234 -26L93 118L228 255Q128 411 128 608Q128 808 237 973L93 1120L234 1264L376 1119Q531 1234 723 1234Q917 1234 1072 1117L1217 1265L1359 1120L1211 969Q1318 810
|
||||
1318 608Q1318 415 1220 259L1359 118L1217 -27L1085 107ZM313 608Q313 488 368 385T518 224T723 165T928 224T1077 386T1132 608T1078 829T929 989T723 1048T517 990T368 829T313 608Z" />
|
||||
<glyph unicode="¥" horiz-adv-x="1088" d="M545 847L807 1456H1076L735 742H969V590H666V452H969V301H666V0H414V301H106V452H414V590H106V742H354L11 1456H284L545 847Z" />
|
||||
<glyph unicode="¦" horiz-adv-x="508" d="M136 -270V525H365V-270H136ZM365 698H136V1456H365V698Z" />
|
||||
<glyph unicode="§" horiz-adv-x="1272" d="M1164 455Q1164 271 993 182Q1128 82 1128 -103Q1128 -276 993 -375T624 -474Q378 -474 234 -366T90 -50L332 -49Q332 -159 410 -219T624 -279Q745 -279 815 -232T886 -105Q886 -28 819 17T565 118Q377 169 282
|
||||
224T141 356T94 542Q94 726 263 816Q198 866 164 934T130 1102Q130 1272 267 1374T635 1476Q875 1476 1009 1364T1143 1047H900Q900 1153 828 1217T635 1281Q512 1281 443 1234T373 1104Q373 1020 433 977T686 881T977 773T1119 640T1164 455ZM601 673Q520 694
|
||||
444 722Q336 682 336 558Q336 477 385 434T584 344L763 291L809 275Q924 322 924 439Q924 520 856 568T601 673Z" />
|
||||
<glyph unicode="¨" horiz-adv-x="901" d="M93 1366Q93 1416 126 1450T219 1484T312 1450T346 1366T312 1282T219 1248T127 1282T93 1366ZM550 1365Q550 1415 583 1449T676 1483T769 1449T803 1365T769 1281T676 1247T584 1281T550 1365Z" />
|
||||
<glyph unicode="©" horiz-adv-x="1604" d="M1118 596Q1118 444 1031 363T783 282T529 388T434 675V788Q434 962 529 1068T783 1175Q946 1175 1032 1093T1119 861H963Q963 957 917 998T783 1040Q691 1040 640 972T588 786V669Q588 551 640 484T783 417Q872
|
||||
417 917 457T962 596H1118ZM1384 729Q1384 895 1309 1037T1097 1265T797 1351Q638 1351 502 1269T287 1043T209 729T286 415T500 188T797 104T1094 189T1308 418T1384 729ZM87 729Q87 931 180 1104T439 1376T797 1476T1154 1377T1412 1104T1506 729T1413 354T1155
|
||||
81T797 -20Q604 -20 440 80T181 353T87 729Z" />
|
||||
<glyph unicode="ª" horiz-adv-x="913" d="M608 705L591 773Q514 691 390 691Q272 691 207 752T141 919Q141 1029 225 1089T482 1150H584V1201Q584 1328 468 1328Q403 1328 367 1303T330 1229L157 1243Q157 1347 244 1411T468 1476Q605 1476 682 1404T759
|
||||
1199V883Q759 786 785 705H608ZM433 835Q473 835 515 853T584 896V1033H478Q402 1032 359 1002T316 923Q316 835 433 835Z" />
|
||||
<glyph unicode="«" horiz-adv-x="994" d="M551 537L798 138H631L343 528V547L631 937H798L551 537ZM654 537L901 138H734L446 528V547L734 937H901L654 537Z" />
|
||||
<glyph unicode="¬" horiz-adv-x="1133" d="M962 374H762V634H127V805H962V374Z" />
|
||||
<glyph unicode="­" horiz-adv-x="672" d="M596 521H71V717H596V521Z" />
|
||||
<glyph unicode="®" horiz-adv-x="1604" d="M87 729Q87 931 180 1104T439 1376T797 1476T1154 1377T1412 1104T1506 729T1413 354T1155 81T797 -20Q604 -20 440 80T181 353T87 729ZM1384 729Q1384 895 1309 1037T1097 1265T797 1351Q638 1351 502 1269T287
|
||||
1043T209 729T286 415T500 188T797 104T1094 189T1308 418T1384 729ZM653 653V316H502V1166H783Q936 1166 1022 1099T1108 906Q1108 789 988 726Q1053 697 1079 642T1105 505T1108 389T1122 332V316H967Q954 350 954 510Q954 586 921 619T811 653H653ZM653 787H796Q865
|
||||
787 911 818T958 903Q958 973 923 1002T794 1033H653V787Z" />
|
||||
<glyph unicode="¯" horiz-adv-x="987" d="M842 1292H155V1450H842V1292Z" />
|
||||
<glyph unicode="°" horiz-adv-x="778" d="M391 1476Q497 1476 574 1397T651 1208T575 1021T391 943Q282 943 205 1020T127 1208T205 1397T391 1476ZM391 1084Q444 1084 478 1119T513 1208Q513 1260 479 1298T391 1336T302 1298T266 1208T302 1120T391 1084Z" />
|
||||
<glyph unicode="±" horiz-adv-x="1098" d="M668 899H1011V700H668V312H452V700H95V899H452V1276H668V899ZM974 1H125V197H974V1Z" />
|
||||
<glyph unicode="²" horiz-adv-x="758" d="M690 667H78V792L363 1053Q476 1156 476 1223Q476 1265 449 1291T370 1318Q312 1318 279 1285T246 1198H60Q60 1314 144 1390T364 1467Q507 1467 585 1403T663 1224Q663 1117 557 1015L459 928L319 815H690V667Z" />
|
||||
<glyph unicode="³" horiz-adv-x="758" d="M268 1133H349Q481 1133 481 1230Q481 1265 454 1291T365 1318Q317 1318 285 1299T252 1244H66Q66 1343 148 1405T361 1467Q504 1467 585 1407T667 1241Q667 1122 532 1071Q681 1030 681 888Q681 782 593 719T361
|
||||
656Q226 656 141 719T55 896H241Q241 858 275 832T370 805Q433 805 463 832T494 902Q494 1003 360 1004H268V1133Z" />
|
||||
<glyph unicode="´" horiz-adv-x="667" d="M307 1536H584L307 1233H112L307 1536Z" />
|
||||
<glyph unicode="µ" horiz-adv-x="1211" d="M388 1082V446Q390 305 434 240T585 175Q753 175 812 296V1082H1055V0H832L825 86Q733 -21 586 -21Q465 -21 388 34V-416H146V1082H388Z" />
|
||||
<glyph unicode="¶" horiz-adv-x="1005" d="M644 0V520H564Q334 520 202 647T69 988Q69 1201 202 1328T565 1456H854V0H644Z" />
|
||||
<glyph unicode="·" horiz-adv-x="578" d="M142 714Q142 772 179 811T283 850T387 811T425 714Q425 655 386 618T283 581Q218 581 180 618T142 714Z" />
|
||||
<glyph unicode="¸" horiz-adv-x="528" d="M318 3L307 -51Q457 -78 457 -224Q457 -329 371 -388T130 -447L123 -310Q189 -310 224 -287T260 -221Q260 -176 225 -159T109 -136L141 3H318Z" />
|
||||
<glyph unicode="¹" horiz-adv-x="758" d="M514 667H329V1237L128 1189V1335L495 1454H514V667Z" />
|
||||
<glyph unicode="º" horiz-adv-x="935" d="M119 1121Q119 1281 214 1378T465 1476T716 1379T812 1116V1044Q812 885 718 788T467 690Q309 690 214 788T119 1049V1121ZM294 1044Q294 946 340 891T467 836Q545 836 590 890T637 1041V1121Q637 1218 591 1273T465
|
||||
1328Q387 1328 341 1274T294 1117V1044Z" />
|
||||
<glyph unicode="»" horiz-adv-x="994" d="M260 937L548 547V528L260 138H93L340 537L93 937H260ZM633 937L921 547V528L633 138H466L713 537L466 937H633Z" />
|
||||
<glyph unicode="¼" horiz-adv-x="1488" d="M475 664H290V1234L89 1186V1332L456 1451H475V664ZM453 117L328 189L1039 1327L1164 1255L453 117ZM1316 314H1411V163H1316V0H1129V163H771L762 284L1127 789H1316V314ZM943 314H1129V556L1115 534L943 314Z" />
|
||||
<glyph unicode="½" horiz-adv-x="1579" d="M410 117L285 189L996 1327L1121 1255L410 117ZM466 667H281V1237L80 1189V1335L447 1454H466V667ZM1484 0H872V125L1157 386Q1270 489 1270 556Q1270 598 1243 624T1164 651Q1106 651 1073 618T1040 531H854Q854
|
||||
647 938 723T1158 800Q1301 800 1379 736T1457 557Q1457 450 1351 348L1253 261L1113 148H1484V0Z" />
|
||||
<glyph unicode="¾" horiz-adv-x="1623" d="M594 117L469 189L1180 1327L1305 1255L594 117ZM1437 314H1532V163H1437V0H1250V163H892L883 284L1248 789H1437V314ZM1064 314H1250V556L1236 534L1064 314ZM316 1133H397Q529 1133 529 1230Q529 1265 502 1291T413
|
||||
1318Q365 1318 333 1299T300 1244H114Q114 1343 196 1405T409 1467Q552 1467 633 1407T715 1241Q715 1122 580 1071Q729 1030 729 888Q729 782 641 719T409 656Q274 656 189 719T103 896H289Q289 858 323 832T418 805Q481 805 511 832T542 902Q542 1003 408 1004H316V1133Z"
|
||||
/>
|
||||
<glyph unicode="¿" horiz-adv-x="996" d="M630 661Q628 537 602 465T502 313L399 207Q309 110 309 4Q309 -90 358 -136T496 -183Q584 -183 637 -133T690 0H933Q931 -177 812 -281T498 -385Q292 -385 179 -285T66 0Q66 165 221 328L313 421Q391 493 401 608L403
|
||||
661H630ZM650 972Q650 916 615 879T513 841T411 878T375 972Q375 1027 411 1064T513 1102T614 1065T650 972Z" />
|
||||
<glyph unicode="À" horiz-adv-x="1363" d="M963 339H399L281 0H18L568 1456H795L1346 0H1082L963 339ZM470 543H892L681 1147L470 543ZM812 1543H610L340 1846H617L812 1543Z" />
|
||||
<glyph unicode="Á" horiz-adv-x="1363" d="M963 339H399L281 0H18L568 1456H795L1346 0H1082L963 339ZM470 543H892L681 1147L470 543ZM757 1846H1034L757 1543H562L757 1846Z" />
|
||||
<glyph unicode="Â" horiz-adv-x="1363" d="M963 339H399L281 0H18L568 1456H795L1346 0H1082L963 339ZM470 543H892L681 1147L470 543ZM1030 1569V1558H835L685 1714L536 1558H343V1571L614 1847H757L1030 1569Z" />
|
||||
<glyph unicode="Ã" horiz-adv-x="1363" d="M963 339H399L281 0H18L568 1456H795L1346 0H1082L963 339ZM470 543H892L681 1147L470 543ZM1052 1824Q1052 1714 989 1641T829 1568Q790 1568 762 1576T681 1615T607 1651T559 1657Q521 1657 495 1629T468 1554L319
|
||||
1562Q319 1672 382 1747T541 1822Q598 1822 678 1777T811 1732Q849 1732 876 1760T903 1836L1052 1824Z" />
|
||||
<glyph unicode="Ä" horiz-adv-x="1363" d="M963 339H399L281 0H18L568 1456H795L1346 0H1082L963 339ZM470 543H892L681 1147L470 543ZM331 1676Q331 1726 364 1760T457 1794T550 1760T584 1676T550 1592T457 1558T365 1592T331 1676ZM788 1675Q788 1725
|
||||
821 1759T914 1793T1007 1759T1041 1675T1007 1591T914 1557T822 1591T788 1675Z" />
|
||||
<glyph unicode="Å" horiz-adv-x="1363" d="M963 339H399L281 0H18L568 1456H795L1346 0H1082L963 339ZM470 543H892L681 1147L470 543ZM686 1940Q779 1940 843 1879T907 1732T845 1587T686 1527Q589 1527 527 1587T464 1732T527 1878T686 1940ZM574 1732Q574
|
||||
1685 607 1653T686 1620Q733 1620 765 1652T798 1732Q798 1778 767 1811T686 1845T606 1812T574 1732Z" />
|
||||
<glyph unicode="Æ" horiz-adv-x="1925" d="M1879 0H981L966 340H464L280 0H-10L825 1456H1817V1259H1171L1188 851H1736V654H1196L1216 196H1879V0ZM580 555H957L930 1203L580 555Z" />
|
||||
<glyph unicode="Ç" horiz-adv-x="1337" d="M1259 474Q1237 241 1087 111T688 -20Q514 -20 382 62T177 297T102 650V786Q102 992 175 1149T384 1391T700 1476Q941 1476 1088 1345T1259 975H1007Q989 1132 916 1201T700 1271Q535 1271 447 1151T356 797V668Q356
|
||||
432 440 308T688 184Q837 184 912 251T1007 474H1259ZM775 -2L764 -56Q914 -83 914 -229Q914 -334 828 -393T587 -452L580 -315Q646 -315 681 -292T717 -226Q717 -181 682 -164T566 -141L598 -2H775Z" />
|
||||
<glyph unicode="È" horiz-adv-x="1158" d="M999 650H401V202H1100V0H148V1456H1093V1252H401V850H999V650ZM753 1550H551L281 1853H558L753 1550Z" />
|
||||
<glyph unicode="É" horiz-adv-x="1158" d="M999 650H401V202H1100V0H148V1456H1093V1252H401V850H999V650ZM698 1853H975L698 1550H503L698 1853Z" />
|
||||
<glyph unicode="Ê" horiz-adv-x="1158" d="M999 650H401V202H1100V0H148V1456H1093V1252H401V850H999V650ZM971 1576V1565H776L626 1721L477 1565H284V1578L555 1854H698L971 1576Z" />
|
||||
<glyph unicode="Ë" horiz-adv-x="1158" d="M999 650H401V202H1100V0H148V1456H1093V1252H401V850H999V650ZM272 1683Q272 1733 305 1767T398 1801T491 1767T525 1683T491 1599T398 1565T306 1599T272 1683ZM729 1682Q729 1732 762 1766T855 1800T948 1766T982
|
||||
1682T948 1598T855 1564T763 1598T729 1682Z" />
|
||||
<glyph unicode="Ì" horiz-adv-x="578" d="M415 0H163V1456H415V0ZM416 1550H214L-56 1853H221L416 1550Z" />
|
||||
<glyph unicode="Í" horiz-adv-x="578" d="M415 0H163V1456H415V0ZM360 1853H637L360 1550H165L360 1853Z" />
|
||||
<glyph unicode="Î" horiz-adv-x="578" d="M415 0H163V1456H415V0ZM634 1576V1565H439L289 1721L140 1565H-53V1578L218 1854H361L634 1576Z" />
|
||||
<glyph unicode="Ï" horiz-adv-x="578" d="M415 0H163V1456H415V0ZM-65 1683Q-65 1733 -32 1767T61 1801T154 1767T188 1683T154 1599T61 1565T-31 1599T-65 1683ZM392 1682Q392 1732 425 1766T518 1800T611 1766T645 1682T611 1598T518 1564T426 1598T392 1682Z" />
|
||||
<glyph unicode="Ð" horiz-adv-x="1368" d="M178 0V652H-9V822H178V1456H608Q801 1456 950 1370T1182 1126T1264 764V691Q1264 484 1182 327T947 85T597 0H178ZM660 652H431V202H594Q797 202 903 328T1010 695V765Q1010 1002 907 1127T608 1252H431V822H660V652Z" />
|
||||
<glyph unicode="Ñ" horiz-adv-x="1454" d="M1303 0H1050L401 1033V0H148V1456H401L1052 419V1456H1303V0ZM1093 1824Q1093 1714 1030 1641T870 1568Q831 1568 803 1576T722 1615T648 1651T600 1657Q562 1657 536 1629T509 1554L360 1562Q360 1672 423 1747T582
|
||||
1822Q639 1822 719 1777T852 1732Q890 1732 917 1760T944 1836L1093 1824Z" />
|
||||
<glyph unicode="Ò" horiz-adv-x="1414" d="M1310 690Q1310 476 1236 315T1025 67T708 -20Q531 -20 393 66T179 313T102 682V764Q102 977 177 1140T390 1389T706 1476T1021 1391T1234 1145T1310 771V690ZM1057 766Q1057 1008 966 1137T706 1266Q542 1266 450
|
||||
1138T355 774V690Q355 450 448 319T708 188Q876 188 966 316T1057 690V766ZM835 1543H633L363 1846H640L835 1543Z" />
|
||||
<glyph unicode="Ó" horiz-adv-x="1414" d="M1310 690Q1310 476 1236 315T1025 67T708 -20Q531 -20 393 66T179 313T102 682V764Q102 977 177 1140T390 1389T706 1476T1021 1391T1234 1145T1310 771V690ZM1057 766Q1057 1008 966 1137T706 1266Q542 1266 450
|
||||
1138T355 774V690Q355 450 448 319T708 188Q876 188 966 316T1057 690V766ZM780 1846H1057L780 1543H585L780 1846Z" />
|
||||
<glyph unicode="Ô" horiz-adv-x="1414" d="M1310 690Q1310 476 1236 315T1025 67T708 -20Q531 -20 393 66T179 313T102 682V764Q102 977 177 1140T390 1389T706 1476T1021 1391T1234 1145T1310 771V690ZM1057 766Q1057 1008 966 1137T706 1266Q542 1266 450
|
||||
1138T355 774V690Q355 450 448 319T708 188Q876 188 966 316T1057 690V766ZM1053 1569V1558H858L708 1714L559 1558H366V1571L637 1847H780L1053 1569Z" />
|
||||
<glyph unicode="Õ" horiz-adv-x="1414" d="M1310 690Q1310 476 1236 315T1025 67T708 -20Q531 -20 393 66T179 313T102 682V764Q102 977 177 1140T390 1389T706 1476T1021 1391T1234 1145T1310 771V690ZM1057 766Q1057 1008 966 1137T706 1266Q542 1266 450
|
||||
1138T355 774V690Q355 450 448 319T708 188Q876 188 966 316T1057 690V766ZM1075 1824Q1075 1714 1012 1641T852 1568Q813 1568 785 1576T704 1615T630 1651T582 1657Q544 1657 518 1629T491 1554L342 1562Q342 1672 405 1747T564 1822Q621 1822 701 1777T834 1732Q872
|
||||
1732 899 1760T926 1836L1075 1824Z" />
|
||||
<glyph unicode="Ö" horiz-adv-x="1414" d="M1310 690Q1310 476 1236 315T1025 67T708 -20Q531 -20 393 66T179 313T102 682V764Q102 977 177 1140T390 1389T706 1476T1021 1391T1234 1145T1310 771V690ZM1057 766Q1057 1008 966 1137T706 1266Q542 1266 450
|
||||
1138T355 774V690Q355 450 448 319T708 188Q876 188 966 316T1057 690V766ZM354 1676Q354 1726 387 1760T480 1794T573 1760T607 1676T573 1592T480 1558T388 1592T354 1676ZM811 1675Q811 1725 844 1759T937 1793T1030 1759T1064 1675T1030 1591T937 1557T845
|
||||
1591T811 1675Z" />
|
||||
<glyph unicode="×" horiz-adv-x="1092" d="M77 364L393 686L77 1008L225 1158L540 836L856 1158L1004 1008L688 686L1004 364L856 214L540 535L225 214L77 364Z" />
|
||||
<glyph unicode="Ø" horiz-adv-x="1412" d="M1314 690Q1314 476 1240 315T1029 67T711 -20Q547 -20 415 55L324 -95H155L300 143Q105 338 105 697V764Q105 977 180 1139T393 1388T709 1476Q906 1476 1049 1375L1136 1518H1303L1156 1275Q1313 1082 1314 765V690ZM358
|
||||
690Q358 483 429 355L931 1181Q844 1266 709 1266Q545 1266 453 1138T358 774V690ZM1061 766Q1061 932 1017 1046L528 242Q606 188 711 188Q880 188 970 316T1061 690V766Z" />
|
||||
<glyph unicode="Ù" horiz-adv-x="1335" d="M1213 1456V483Q1213 251 1065 116T669 -20Q419 -20 272 113T125 484V1456H377V482Q377 336 451 259T669 182Q961 182 961 490V1456H1213ZM794 1543H592L322 1846H599L794 1543Z" />
|
||||
<glyph unicode="Ú" horiz-adv-x="1335" d="M1213 1456V483Q1213 251 1065 116T669 -20Q419 -20 272 113T125 484V1456H377V482Q377 336 451 259T669 182Q961 182 961 490V1456H1213ZM739 1846H1016L739 1543H544L739 1846Z" />
|
||||
<glyph unicode="Û" horiz-adv-x="1335" d="M1213 1456V483Q1213 251 1065 116T669 -20Q419 -20 272 113T125 484V1456H377V482Q377 336 451 259T669 182Q961 182 961 490V1456H1213ZM1012 1569V1558H817L667 1714L518 1558H325V1571L596 1847H739L1012 1569Z" />
|
||||
<glyph unicode="Ü" horiz-adv-x="1335" d="M1213 1456V483Q1213 251 1065 116T669 -20Q419 -20 272 113T125 484V1456H377V482Q377 336 451 259T669 182Q961 182 961 490V1456H1213ZM313 1676Q313 1726 346 1760T439 1794T532 1760T566 1676T532 1592T439
|
||||
1558T347 1592T313 1676ZM770 1675Q770 1725 803 1759T896 1793T989 1759T1023 1675T989 1591T896 1557T804 1591T770 1675Z" />
|
||||
<glyph unicode="Ý" horiz-adv-x="1248" d="M623 766L958 1456H1238L750 536V0H496V536L7 1456H288L623 766ZM698 1846H975L698 1543H503L698 1846Z" />
|
||||
<glyph unicode="Þ" horiz-adv-x="1226" d="M391 1456V1176H632Q876 1176 1013 1057T1150 738Q1150 539 1013 420T633 300H391V0H148V1456H391ZM391 981V495H637Q762 495 834 560T907 736T837 913T645 981H391Z" />
|
||||
<glyph unicode="ß" horiz-adv-x="1255" d="M378 0H136V1105Q136 1319 250 1438T571 1557Q758 1557 865 1464T973 1201Q973 1139 960 1090T912 985T866 896T855 824Q855 780 887 738T1009 622T1138 480T1179 336Q1179 165 1071 73T764 -20Q684 -20 599 -1T475
|
||||
44L524 239Q569 211 632 193T750 174Q847 174 892 217T937 327Q937 376 902 421T780 535T653 671T612 819Q612 907 675 1007T738 1185Q738 1266 692 1314T566 1363Q382 1363 378 1116V0Z" />
|
||||
<glyph unicode="à" horiz-adv-x="1108" d="M771 0Q755 31 743 101Q627 -20 459 -20Q296 -20 193 73T90 303Q90 476 218 568T586 661H735V732Q735 816 688 866T545 917Q462 917 409 876T356 770H113Q113 859 172 936T332 1058T559 1102Q749 1102 862 1007T978
|
||||
738V250Q978 104 1019 17V0H771ZM504 175Q576 175 639 210T735 304V508H604Q469 508 401 461T333 328Q333 258 379 217T504 175ZM694 1233H492L222 1536H499L694 1233Z" />
|
||||
<glyph unicode="á" horiz-adv-x="1108" d="M771 0Q755 31 743 101Q627 -20 459 -20Q296 -20 193 73T90 303Q90 476 218 568T586 661H735V732Q735 816 688 866T545 917Q462 917 409 876T356 770H113Q113 859 172 936T332 1058T559 1102Q749 1102 862 1007T978
|
||||
738V250Q978 104 1019 17V0H771ZM504 175Q576 175 639 210T735 304V508H604Q469 508 401 461T333 328Q333 258 379 217T504 175ZM639 1536H916L639 1233H444L639 1536Z" />
|
||||
<glyph unicode="â" horiz-adv-x="1108" d="M771 0Q755 31 743 101Q627 -20 459 -20Q296 -20 193 73T90 303Q90 476 218 568T586 661H735V732Q735 816 688 866T545 917Q462 917 409 876T356 770H113Q113 859 172 936T332 1058T559 1102Q749 1102 862 1007T978
|
||||
738V250Q978 104 1019 17V0H771ZM504 175Q576 175 639 210T735 304V508H604Q469 508 401 461T333 328Q333 258 379 217T504 175ZM912 1259V1248H717L567 1404L418 1248H225V1261L496 1537H639L912 1259Z" />
|
||||
<glyph unicode="ã" horiz-adv-x="1108" d="M771 0Q755 31 743 101Q627 -20 459 -20Q296 -20 193 73T90 303Q90 476 218 568T586 661H735V732Q735 816 688 866T545 917Q462 917 409 876T356 770H113Q113 859 172 936T332 1058T559 1102Q749 1102 862 1007T978
|
||||
738V250Q978 104 1019 17V0H771ZM504 175Q576 175 639 210T735 304V508H604Q469 508 401 461T333 328Q333 258 379 217T504 175ZM934 1514Q934 1404 871 1331T711 1258Q672 1258 644 1266T563 1305T489 1341T441 1347Q403 1347 377 1319T350 1244L201 1252Q201
|
||||
1362 264 1437T423 1512Q480 1512 560 1467T693 1422Q731 1422 758 1450T785 1526L934 1514Z" />
|
||||
<glyph unicode="ä" horiz-adv-x="1108" d="M771 0Q755 31 743 101Q627 -20 459 -20Q296 -20 193 73T90 303Q90 476 218 568T586 661H735V732Q735 816 688 866T545 917Q462 917 409 876T356 770H113Q113 859 172 936T332 1058T559 1102Q749 1102 862 1007T978
|
||||
738V250Q978 104 1019 17V0H771ZM504 175Q576 175 639 210T735 304V508H604Q469 508 401 461T333 328Q333 258 379 217T504 175ZM213 1366Q213 1416 246 1450T339 1484T432 1450T466 1366T432 1282T339 1248T247 1282T213 1366ZM670 1365Q670 1415 703 1449T796
|
||||
1483T889 1449T923 1365T889 1281T796 1247T704 1281T670 1365Z" />
|
||||
<glyph unicode="å" horiz-adv-x="1108" d="M771 0Q755 31 743 101Q627 -20 459 -20Q296 -20 193 73T90 303Q90 476 218 568T586 661H735V732Q735 816 688 866T545 917Q462 917 409 876T356 770H113Q113 859 172 936T332 1058T559 1102Q749 1102 862 1007T978
|
||||
738V250Q978 104 1019 17V0H771ZM504 175Q576 175 639 210T735 304V508H604Q469 508 401 461T333 328Q333 258 379 217T504 175ZM568 1630Q661 1630 725 1569T789 1422T727 1277T568 1217Q471 1217 409 1277T346 1422T409 1568T568 1630ZM456 1422Q456 1375 489
|
||||
1343T568 1310Q615 1310 647 1342T680 1422Q680 1468 649 1501T568 1535T488 1502T456 1422Z" />
|
||||
<glyph unicode="æ" horiz-adv-x="1729" d="M1254 -20Q1001 -20 861 141Q796 64 689 22T448 -20Q272 -20 172 68T72 312Q72 470 191 556T543 642H734V713Q734 804 687 855T551 907Q460 907 403 863T345 752L103 771Q103 917 229 1009T553 1102Q776 1102 887
|
||||
969Q1018 1104 1218 1102Q1430 1102 1549 973T1668 608V471H973Q982 332 1058 253T1268 174Q1405 174 1512 232L1573 266L1646 100Q1576 44 1472 12T1254 -20ZM495 164Q553 164 621 193T734 266V475H538Q434 473 374 426T314 308Q314 243 360 204T495 164ZM1218
|
||||
907Q1119 907 1056 838T976 642H1428V672Q1428 785 1374 846T1218 907Z" />
|
||||
<glyph unicode="ç" horiz-adv-x="1072" d="M569 174Q660 174 720 227T784 358H1013Q1009 257 950 170T790 31T572 -20Q345 -20 212 127T79 533V558Q79 805 211 953T571 1102Q764 1102 885 990T1013 694H784Q780 787 721 847T569 907Q451 907 387 822T322
|
||||
562V523Q322 347 385 261T569 174ZM635 -2L624 -56Q774 -83 774 -229Q774 -334 688 -393T447 -452L440 -315Q506 -315 541 -292T577 -226Q577 -181 542 -164T426 -141L458 -2H635Z" />
|
||||
<glyph unicode="è" horiz-adv-x="1099" d="M601 -20Q370 -20 227 125T83 513V543Q83 705 145 832T321 1031T573 1102Q794 1102 914 961T1035 562V464H328Q339 330 417 252T615 174Q782 174 887 309L1018 184Q953 87 845 34T601 -20ZM572 907Q472 907 411
|
||||
837T332 642H795V660Q787 782 730 844T572 907ZM682 1233H480L210 1536H487L682 1233Z" />
|
||||
<glyph unicode="é" horiz-adv-x="1099" d="M601 -20Q370 -20 227 125T83 513V543Q83 705 145 832T321 1031T573 1102Q794 1102 914 961T1035 562V464H328Q339 330 417 252T615 174Q782 174 887 309L1018 184Q953 87 845 34T601 -20ZM572 907Q472 907 411
|
||||
837T332 642H795V660Q787 782 730 844T572 907ZM627 1536H904L627 1233H432L627 1536Z" />
|
||||
<glyph unicode="ê" horiz-adv-x="1099" d="M601 -20Q370 -20 227 125T83 513V543Q83 705 145 832T321 1031T573 1102Q794 1102 914 961T1035 562V464H328Q339 330 417 252T615 174Q782 174 887 309L1018 184Q953 87 845 34T601 -20ZM572 907Q472 907 411
|
||||
837T332 642H795V660Q787 782 730 844T572 907ZM900 1259V1248H705L555 1404L406 1248H213V1261L484 1537H627L900 1259Z" />
|
||||
<glyph unicode="ë" horiz-adv-x="1099" d="M601 -20Q370 -20 227 125T83 513V543Q83 705 145 832T321 1031T573 1102Q794 1102 914 961T1035 562V464H328Q339 330 417 252T615 174Q782 174 887 309L1018 184Q953 87 845 34T601 -20ZM572 907Q472 907 411
|
||||
837T332 642H795V660Q787 782 730 844T572 907ZM201 1366Q201 1416 234 1450T327 1484T420 1450T454 1366T420 1282T327 1248T235 1282T201 1366ZM658 1365Q658 1415 691 1449T784 1483T877 1449T911 1365T877 1281T784 1247T692 1281T658 1365Z" />
|
||||
<glyph unicode="ì" horiz-adv-x="538" d="M386 0H143V1082H386V0ZM652 1482H450L180 1785H457L652 1482Z" />
|
||||
<glyph unicode="í" horiz-adv-x="538" d="M386 0H143V1082H386V0ZM340 1785H617L340 1482H145L340 1785Z" />
|
||||
<glyph unicode="î" horiz-adv-x="538" d="M386 0H143V1082H386V0ZM614 1252V1241H419L269 1397L120 1241H-73V1254L198 1530H341L614 1252Z" />
|
||||
<glyph unicode="ï" horiz-adv-x="538" d="M386 0H143V1082H386V0ZM-85 1359Q-85 1409 -52 1443T41 1477T134 1443T168 1359T134 1275T41 1241T-51 1275T-85 1359ZM372 1358Q372 1408 405 1442T498 1476T591 1442T625 1358T591 1274T498 1240T406 1274T372 1358Z" />
|
||||
<glyph unicode="ð" horiz-adv-x="1191" d="M834 1303Q1088 1038 1088 637V555Q1088 389 1025 258T848 53T593 -20Q455 -20 342 43T166 219T103 468Q103 617 159 732T319 910T554 973Q700 973 813 882Q764 1051 638 1173L434 1038L356 1147L528 1261Q402 1343
|
||||
240 1385L315 1580Q553 1530 730 1395L910 1515L988 1406L834 1303ZM845 663L844 681Q812 729 751 757T611 785Q485 785 416 701T346 468Q346 342 416 258T597 174Q708 174 776 274T845 547V663Z" />
|
||||
<glyph unicode="ñ" horiz-adv-x="1139" d="M350 1082L357 957Q477 1102 672 1102Q1010 1102 1016 715V0H773V701Q773 804 729 853T583 903Q436 903 364 770V0H121V1082H350ZM940 1514Q940 1404 877 1331T717 1258Q678 1258 650 1266T569 1305T495 1341T447
|
||||
1347Q409 1347 383 1319T356 1244L207 1252Q207 1362 270 1437T429 1512Q486 1512 566 1467T699 1422Q737 1422 764 1450T791 1526L940 1514Z" />
|
||||
<glyph unicode="ò" horiz-adv-x="1166" d="M79 551Q79 710 142 837T319 1033T581 1102Q800 1102 936 961T1084 587L1085 530Q1085 370 1024 244T848 49T583 -20Q354 -20 217 132T79 539V551ZM322 530Q322 363 391 269T583 174T774 270T843 551Q843 715 773
|
||||
811T581 907Q462 907 392 813T322 530ZM703 1233H501L231 1536H508L703 1233Z" />
|
||||
<glyph unicode="ó" horiz-adv-x="1166" d="M79 551Q79 710 142 837T319 1033T581 1102Q800 1102 936 961T1084 587L1085 530Q1085 370 1024 244T848 49T583 -20Q354 -20 217 132T79 539V551ZM322 530Q322 363 391 269T583 174T774 270T843 551Q843 715 773
|
||||
811T581 907Q462 907 392 813T322 530ZM648 1536H925L648 1233H453L648 1536Z" />
|
||||
<glyph unicode="ô" horiz-adv-x="1166" d="M79 551Q79 710 142 837T319 1033T581 1102Q800 1102 936 961T1084 587L1085 530Q1085 370 1024 244T848 49T583 -20Q354 -20 217 132T79 539V551ZM322 530Q322 363 391 269T583 174T774 270T843 551Q843 715 773
|
||||
811T581 907Q462 907 392 813T322 530ZM921 1259V1248H726L576 1404L427 1248H234V1261L505 1537H648L921 1259Z" />
|
||||
<glyph unicode="õ" horiz-adv-x="1166" d="M79 551Q79 710 142 837T319 1033T581 1102Q800 1102 936 961T1084 587L1085 530Q1085 370 1024 244T848 49T583 -20Q354 -20 217 132T79 539V551ZM322 530Q322 363 391 269T583 174T774 270T843 551Q843 715 773
|
||||
811T581 907Q462 907 392 813T322 530ZM943 1514Q943 1404 880 1331T720 1258Q681 1258 653 1266T572 1305T498 1341T450 1347Q412 1347 386 1319T359 1244L210 1252Q210 1362 273 1437T432 1512Q489 1512 569 1467T702 1422Q740 1422 767 1450T794 1526L943 1514Z"
|
||||
/>
|
||||
<glyph unicode="ö" horiz-adv-x="1166" d="M79 551Q79 710 142 837T319 1033T581 1102Q800 1102 936 961T1084 587L1085 530Q1085 370 1024 244T848 49T583 -20Q354 -20 217 132T79 539V551ZM322 530Q322 363 391 269T583 174T774 270T843 551Q843 715 773
|
||||
811T581 907Q462 907 392 813T322 530ZM222 1366Q222 1416 255 1450T348 1484T441 1450T475 1366T441 1282T348 1248T256 1282T222 1366ZM679 1365Q679 1415 712 1449T805 1483T898 1449T932 1365T898 1281T805 1247T713 1281T679 1365Z" />
|
||||
<glyph unicode="÷" horiz-adv-x="1169" d="M1079 582H67V794H1079V582ZM576 1228Q644 1228 681 1190T718 1095T681 1001T576 963Q509 963 472 1000T435 1095T472 1190T576 1228ZM435 278Q435 336 472 374T576 412Q644 412 681 374T718 278Q718 221 681 184T576
|
||||
147Q509 147 472 184T435 278Z" />
|
||||
<glyph unicode="ø" horiz-adv-x="1160" d="M79 551Q79 710 142 837T319 1033T581 1102Q687 1102 775 1068L846 1211H991L889 1003Q1085 850 1085 530Q1085 370 1024 244T848 49T583 -20Q490 -20 400 10L328 -137H183L285 70Q79 220 79 551ZM322 530Q322 374
|
||||
386 276L685 885Q638 907 581 907Q462 907 392 813T322 530ZM843 551Q843 699 785 792L489 191Q532 174 583 174Q706 174 774 270T843 551Z" />
|
||||
<glyph unicode="ù" horiz-adv-x="1138" d="M780 106Q673 -20 476 -20Q300 -20 210 83T119 381V1082H362V384Q362 178 533 178Q710 178 772 305V1082H1015V0H786L780 106ZM696 1233H494L224 1536H501L696 1233Z" />
|
||||
<glyph unicode="ú" horiz-adv-x="1138" d="M780 106Q673 -20 476 -20Q300 -20 210 83T119 381V1082H362V384Q362 178 533 178Q710 178 772 305V1082H1015V0H786L780 106ZM641 1536H918L641 1233H446L641 1536Z" />
|
||||
<glyph unicode="û" horiz-adv-x="1138" d="M780 106Q673 -20 476 -20Q300 -20 210 83T119 381V1082H362V384Q362 178 533 178Q710 178 772 305V1082H1015V0H786L780 106ZM914 1259V1248H719L569 1404L420 1248H227V1261L498 1537H641L914 1259Z" />
|
||||
<glyph unicode="ü" horiz-adv-x="1138" d="M780 106Q673 -20 476 -20Q300 -20 210 83T119 381V1082H362V384Q362 178 533 178Q710 178 772 305V1082H1015V0H786L780 106ZM215 1366Q215 1416 248 1450T341 1484T434 1450T468 1366T434 1282T341 1248T249 1282T215
|
||||
1366ZM672 1365Q672 1415 705 1449T798 1483T891 1449T925 1365T891 1281T798 1247T706 1281T672 1365Z" />
|
||||
<glyph unicode="ý" horiz-adv-x="997" d="M503 348L723 1082H982L552 -164Q453 -437 216 -437Q163 -437 99 -419V-231L145 -234Q237 -234 283 -201T357 -88L392 5L12 1082H274L503 348ZM585 1536H862L585 1233H390L585 1536Z" />
|
||||
<glyph unicode="þ" horiz-adv-x="1175" d="M1079 530Q1079 283 966 132T658 -20Q480 -20 373 97V-416H130V1536H373V983Q479 1102 655 1102Q852 1102 965 955T1079 546V530ZM836 551Q836 717 771 810T587 903Q438 903 373 780V300Q439 174 589 174Q705 174
|
||||
770 267T836 551Z" />
|
||||
<glyph unicode="ÿ" horiz-adv-x="997" d="M503 348L723 1082H982L552 -164Q453 -437 216 -437Q163 -437 99 -419V-231L145 -234Q237 -234 283 -201T357 -88L392 5L12 1082H274L503 348ZM159 1366Q159 1416 192 1450T285 1484T378 1450T412 1366T378 1282T285
|
||||
1248T193 1282T159 1366ZM616 1365Q616 1415 649 1449T742 1483T835 1449T869 1365T835 1281T742 1247T650 1281T616 1365Z" />
|
||||
<glyph unicode="–" horiz-adv-x="1321" d="M1432 621H414V817H1432V621Z" />
|
||||
<glyph unicode="—" horiz-adv-x="1584" d="M1744 621H386V817H1744V621Z" />
|
||||
<glyph unicode="‘" horiz-adv-x="448" d="M282 1562L406 1485Q315 1352 312 1208V1056H99V1194Q100 1290 151 1394T282 1562Z" />
|
||||
<glyph unicode="’" horiz-adv-x="444" d="M175 1024L51 1101Q141 1232 144 1378V1536H357V1398Q357 1295 305 1191T175 1024Z" />
|
||||
<glyph unicode="‚" horiz-adv-x="462" d="M173 -298L50 -220Q135 -93 138 55V202H356V69Q355 -24 304 -128T173 -298Z" />
|
||||
<glyph unicode="“" horiz-adv-x="788" d="M291 1562L415 1485Q324 1352 321 1208V1056H108V1194Q109 1290 160 1394T291 1562ZM627 1562L751 1485Q660 1352 657 1208V1056H444V1194Q445 1290 496 1394T627 1562Z" />
|
||||
<glyph unicode="”" horiz-adv-x="795" d="M188 1024L64 1101Q154 1232 157 1378V1536H370V1398Q370 1295 318 1191T188 1024ZM522 1024L398 1101Q488 1232 491 1378V1536H704V1398Q704 1295 652 1191T522 1024Z" />
|
||||
<glyph unicode="„" horiz-adv-x="776" d="M177 -318L50 -240Q135 -103 138 54V255H356V69Q355 -39 300 -153Q251 -253 177 -318ZM499 -318L372 -240Q460 -98 464 52V255H682V73Q682 -26 631 -136T499 -318Z" />
|
||||
<glyph unicode="•" horiz-adv-x="715" d="M136 771Q136 866 196 926T357 987Q460 987 520 927T580 768V731Q580 637 521 578T358 518Q259 518 199 575T136 726V771Z" />
|
||||
<glyph unicode="‹" horiz-adv-x="626" d="M316 537L563 138H396L108 528V547L396 937H563L316 537Z" />
|
||||
<glyph unicode="›" horiz-adv-x="617" d="M251 937L539 547V528L251 138H84L331 537L84 937H251Z" />
|
||||
</font>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 48 KiB |
BIN
hostel/assets-hms/fonts/roboto-v27-latin-500.ttf
Normal file
BIN
hostel/assets-hms/fonts/roboto-v27-latin-500.woff
Normal file
BIN
hostel/assets-hms/fonts/roboto-v27-latin-500.woff2
Normal file
BIN
hostel/assets-hms/fonts/roboto-v27-latin-700.eot
Normal file
309
hostel/assets-hms/fonts/roboto-v27-latin-700.svg
Normal file
@ -0,0 +1,309 @@
|
||||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg xmlns="http://www.w3.org/2000/svg">
|
||||
<defs >
|
||||
<font id="Roboto" horiz-adv-x="1191" ><font-face
|
||||
font-family="Roboto"
|
||||
units-per-em="2048"
|
||||
panose-1="2 0 0 0 0 0 0 0 0 0"
|
||||
ascent="1900"
|
||||
descent="-500"
|
||||
alphabetic="0" />
|
||||
<glyph unicode=" " horiz-adv-x="510" />
|
||||
<glyph unicode="!" horiz-adv-x="557" d="M405 447H165L131 1456H439L405 447ZM285 289Q358 289 402 246T447 136Q447 70 403 27T285 -16Q213 -16 169 27T124 136T168 245T285 289Z" />
|
||||
<glyph unicode=""" horiz-adv-x="657" d="M266 1398L226 987H64V1536H266V1398ZM591 1398L552 987H390V1536H591V1398Z" />
|
||||
<glyph unicode="#" horiz-adv-x="1220" d="M667 410H474L402 0H219L291 410H64V582H321L371 866H139V1040H402L475 1456H657L584 1040H778L851 1456H1034L961 1040H1180V866H930L880 582H1104V410H850L778 0H595L667 410ZM504 582H697L747 866H553L504 582Z" />
|
||||
<glyph unicode="$" horiz-adv-x="1175" d="M790 383Q790 465 745 513T590 603T402 684T267 777T179 901T147 1070Q147 1239 255 1347T542 1473V1687H702V1470Q879 1445 979 1323T1079 1005H790Q790 1125 741 1184T608 1244Q526 1244 481 1198T436 1069Q436 993
|
||||
480 947T643 853T840 763T970 667T1051 545T1079 385Q1079 215 973 109T681 -16V-215H522V-17Q317 5 205 128T92 457H381Q381 338 437 275T600 211Q688 211 739 257T790 383Z" />
|
||||
<glyph unicode="%" horiz-adv-x="1512" d="M95 1176Q95 1310 182 1393T410 1477Q553 1477 640 1395T727 1171V1099Q727 964 640 882T412 800Q270 800 183 882T95 1105V1176ZM287 1099Q287 1039 321 1003T412 966T501 1003T534 1102V1176Q534 1236 501 1273T410
|
||||
1310Q355 1310 321 1274T287 1172V1099ZM791 357Q791 492 879 574T1107 657Q1249 657 1336 576T1424 351V279Q1424 145 1338 63T1109 -20Q965 -20 878 63T791 283V357ZM983 279Q983 224 1019 185T1109 146Q1231 146 1231 281V357Q1231 417 1197 453T1107 490T1017
|
||||
454T983 354V279ZM469 109L328 185L1039 1323L1180 1247L469 109Z" />
|
||||
<glyph unicode="&" horiz-adv-x="1344" d="M71 392Q71 493 127 579T335 770Q270 857 233 933T196 1093Q196 1263 303 1369T593 1476Q756 1476 860 1379T965 1137Q965 963 789 830L677 749L928 457Q987 573 987 713H1233Q1233 429 1102 253L1320 0H992L917
|
||||
86Q756 -20 547 -20Q331 -20 201 93T71 392ZM561 212Q665 212 758 270L471 602L450 587Q361 511 361 408Q361 321 416 267T561 212ZM455 1097Q455 1022 543 908L620 959Q679 997 701 1033T724 1119T687 1206T592 1243Q530 1243 493 1203T455 1097Z" />
|
||||
<glyph unicode="'" horiz-adv-x="331" d="M275 1389L246 985H63V1536H275V1389Z" />
|
||||
<glyph unicode="(" horiz-adv-x="719" d="M124 592Q124 821 185 1028T365 1394T623 1616L679 1460Q533 1352 451 1126T369 598V567Q369 264 450 37T679 -302L623 -455Q487 -394 370 -240T190 117T124 539V592Z" />
|
||||
<glyph unicode=")" horiz-adv-x="722" d="M609 569Q609 343 544 134T357 -235T96 -455L40 -302Q182 -195 264 28T349 541V594Q349 893 268 1121T40 1463L96 1616Q232 1557 352 1402T539 1041T609 614V569Z" />
|
||||
<glyph unicode="*" horiz-adv-x="928" d="M341 962L27 1051L86 1232L397 1107L377 1456H573L553 1100L856 1223L915 1040L595 951L805 685L646 572L464 864L284 582L125 690L341 962Z" />
|
||||
<glyph unicode="+" horiz-adv-x="1118" d="M694 815H1055V554H694V146H419V554H57V815H419V1206H694V815Z" />
|
||||
<glyph unicode="," horiz-adv-x="500" d="M186 -365L35 -286L71 -221Q138 -99 140 22V246H384L383 46Q382 -65 327 -178T186 -365Z" />
|
||||
<glyph unicode="-" horiz-adv-x="794" d="M673 507H110V740H673V507Z" />
|
||||
<glyph unicode="." horiz-adv-x="595" d="M126 142Q126 211 172 254T289 297Q360 297 406 254T453 142Q453 74 407 32T289 -11Q218 -11 172 31T126 142Z" />
|
||||
<glyph unicode="/" horiz-adv-x="765" d="M202 -125H-13L523 1456H738L202 -125Z" />
|
||||
<glyph unicode="0" horiz-adv-x="1175" d="M1079 602Q1079 300 954 140T588 -20Q350 -20 224 137T95 587V855Q95 1160 221 1318T586 1476T950 1320T1079 870V602ZM790 896Q790 1077 741 1159T586 1242Q484 1242 436 1164T384 918V564Q384 386 432 300T588 213Q694
|
||||
213 741 296T790 550V896Z" />
|
||||
<glyph unicode="1" horiz-adv-x="1175" d="M801 0H512V1114L167 1007V1242L770 1458H801V0Z" />
|
||||
<glyph unicode="2" horiz-adv-x="1175" d="M1097 0H99V198L570 700Q667 806 713 885T760 1035Q760 1132 711 1187T571 1243Q473 1243 417 1176T360 998H70Q70 1131 133 1241T313 1413T576 1476Q801 1476 925 1368T1050 1063Q1050 955 994 843T802 582L471 233H1097V0Z" />
|
||||
<glyph unicode="3" horiz-adv-x="1175" d="M393 856H547Q657 856 710 911T763 1057Q763 1145 711 1194T566 1243Q483 1243 427 1198T371 1079H82Q82 1193 143 1283T315 1425T559 1476Q790 1476 921 1366T1052 1061Q1052 961 991 877T831 748Q954 704 1014 616T1075
|
||||
408Q1075 214 934 97T559 -20Q341 -20 203 95T64 399H353Q353 317 414 265T566 213Q669 213 727 267T786 412Q786 630 546 630H393V856Z" />
|
||||
<glyph unicode="4" horiz-adv-x="1175" d="M954 548H1119V315H954V0H665V315H68L55 497L662 1456H954V548ZM343 548H665V1062L646 1029L343 548Z" />
|
||||
<glyph unicode="5" horiz-adv-x="1175" d="M142 716L226 1456H1042V1215H463L427 902Q530 957 646 957Q854 957 972 828T1090 467Q1090 326 1031 215T860 42T598 -20Q466 -20 353 33T175 184T105 405H391Q400 314 454 264T597 213Q695 213 748 283T801 483Q801
|
||||
607 740 673T567 739Q464 739 400 685L372 659L142 716Z" />
|
||||
<glyph unicode="6" horiz-adv-x="1175" d="M883 1471V1233H855Q659 1230 540 1131T396 856Q512 974 689 974Q879 974 991 838T1103 480Q1103 338 1042 223T868 44T613 -20Q383 -20 242 140T100 567V671Q100 908 189 1089T446 1370T835 1471H883ZM601 742Q531 742
|
||||
474 706T390 609V521Q390 376 447 295T607 213Q700 213 757 286T815 477Q815 596 757 669T601 742Z" />
|
||||
<glyph unicode="7" horiz-adv-x="1175" d="M1089 1294L526 0H221L785 1222H61V1456H1089V1294Z" />
|
||||
<glyph unicode="8" horiz-adv-x="1175" d="M1048 1069Q1048 963 995 881T849 750Q955 699 1017 610T1079 399Q1079 205 947 93T588 -20T228 93T95 399Q95 520 157 610T324 750Q231 799 179 881T126 1069Q126 1255 250 1365T587 1476Q799 1476 923 1367T1048 1069ZM789
|
||||
420Q789 515 734 572T586 629Q494 629 439 573T384 420Q384 327 438 270T588 213Q682 213 735 268T789 420ZM759 1055Q759 1140 714 1191T587 1243Q506 1243 461 1193T416 1055Q416 968 461 915T588 862T714 915T759 1055Z" />
|
||||
<glyph unicode="9" horiz-adv-x="1175" d="M775 582Q662 471 511 471Q318 471 202 603T86 961Q86 1104 148 1223T323 1409T575 1476Q719 1476 831 1404T1005 1197T1068 888V781Q1068 417 887 209T374 -13L303 -14V227L367 228Q744 245 775 582ZM582 692Q652 692
|
||||
702 728T779 815V934Q779 1081 723 1162T573 1243Q486 1243 430 1164T374 964Q374 845 428 769T582 692Z" />
|
||||
<glyph unicode=":" horiz-adv-x="578" d="M381 142Q381 211 427 254T544 297Q615 297 661 254T708 142Q708 74 662 32T544 -11Q473 -11 427 31T381 142ZM125 961Q125 1030 171 1073T288 1116Q359 1116 405 1073T452 961Q452 893 406 851T288 808Q217 808 171 850T125
|
||||
961Z" />
|
||||
<glyph unicode=";" horiz-adv-x="537" d="M108 961Q108 1030 154 1073T271 1116Q342 1116 388 1073T435 961Q435 893 389 851T271 808Q200 808 154 850T108 961ZM208 -365L57 -286L93 -221Q160 -99 162 22V246H406L405 46Q404 -65 349 -178T208 -365Z" />
|
||||
<glyph unicode="<" horiz-adv-x="1042" d="M345 618L915 417V137L54 502V738L915 1103V823L345 618Z" />
|
||||
<glyph unicode="=" horiz-adv-x="1172" d="M1030 746H136V982H1030V746ZM1030 313H136V549H1030V313Z" />
|
||||
<glyph unicode=">" horiz-adv-x="1058" d="M701 621L120 824V1102L991 737V502L120 136V415L701 621Z" />
|
||||
<glyph unicode="?" horiz-adv-x="1019" d="M347 447Q347 587 381 670T505 833T626 964T656 1071Q656 1240 500 1240Q426 1240 382 1195T335 1069H45Q47 1260 168 1368T500 1476Q712 1476 829 1374T946 1084Q946 999 908 924T775 756L694 679Q618 606 607 508L603
|
||||
447H347ZM318 140Q318 207 363 250T480 294T596 251T642 140Q642 74 598 31T480 -12T363 31T318 140Z" />
|
||||
<glyph unicode="@" horiz-adv-x="1833" d="M1749 536Q1738 280 1623 130T1312 -21Q1226 -21 1164 16T1069 122Q969 -18 808 -18Q662 -18 582 105T522 430Q540 595 605 723T771 921T987 990Q1130 990 1231 924L1294 881L1243 303Q1233 224 1260 182T1348 140Q1440
|
||||
140 1502 247T1570 529Q1587 878 1430 1065T963 1253Q770 1253 619 1155T381 877T283 463Q267 109 425 -84T898 -278Q981 -278 1072 -260T1229 -210L1267 -364Q1206 -404 1103 -428T894 -453Q630 -453 444 -347T167 -33T87 463Q99 739 213 958T523 1296T967 1416Q1218
|
||||
1416 1399 1309T1670 1001T1749 536ZM744 430Q733 298 767 230T877 161Q926 161 970 204T1043 328L1085 801Q1046 814 1005 814Q890 814 827 716T744 430Z" />
|
||||
<glyph unicode="A" horiz-adv-x="1378" d="M952 300H426L326 0H7L549 1456H827L1372 0H1053L952 300ZM507 543H871L688 1088L507 543Z" />
|
||||
<glyph unicode="B" horiz-adv-x="1307" d="M130 0V1456H640Q905 1456 1042 1355T1179 1057Q1179 950 1124 869T971 749Q1083 721 1147 636T1212 428Q1212 218 1078 110T696 0H130ZM430 634V241H687Q793 241 852 291T912 431Q912 631 705 634H430ZM430 846H652Q879
|
||||
850 879 1027Q879 1126 822 1169T640 1213H430V846Z" />
|
||||
<glyph unicode="C" horiz-adv-x="1340" d="M1273 485Q1256 250 1100 115T687 -20Q407 -20 247 168T86 686V775Q86 985 160 1145T371 1390T691 1476Q943 1476 1097 1341T1275 962H975Q964 1103 897 1166T691 1230Q541 1230 467 1123T390 789V679Q390 443 461 334T687
|
||||
225Q826 225 894 288T973 485H1273Z" />
|
||||
<glyph unicode="D" horiz-adv-x="1331" d="M130 0V1456H578Q770 1456 921 1370T1158 1124T1243 761V694Q1243 491 1160 333T924 88T581 0H130ZM430 1213V241H575Q751 241 844 356T939 685V762Q939 984 847 1098T578 1213H430Z" />
|
||||
<glyph unicode="E" horiz-adv-x="1152" d="M1006 631H430V241H1106V0H130V1456H1104V1213H430V866H1006V631Z" />
|
||||
<glyph unicode="F" horiz-adv-x="1122" d="M1006 595H430V0H130V1456H1078V1213H430V837H1006V595Z" />
|
||||
<glyph unicode="G" horiz-adv-x="1395" d="M1282 184Q1201 87 1053 34T725 -20Q536 -20 394 62T174 302T94 671V770Q94 988 167 1147T379 1391T704 1476Q963 1476 1109 1353T1282 993H990Q970 1118 902 1176T713 1234Q560 1234 480 1119T399 777V684Q399 455 486
|
||||
338T741 221Q910 221 982 293V544H709V765H1282V184Z" />
|
||||
<glyph unicode="H" horiz-adv-x="1447" d="M1315 0H1015V624H430V0H130V1456H430V866H1015V1456H1315V0Z" />
|
||||
<glyph unicode="I" horiz-adv-x="597" d="M449 0H149V1456H449V0Z" />
|
||||
<glyph unicode="J" horiz-adv-x="1144" d="M717 1456H1017V448Q1017 309 956 203T782 38T529 -20Q298 -20 169 97T40 430H342Q342 323 387 272T529 221Q615 221 666 280T717 448V1456Z" />
|
||||
<glyph unicode="K" horiz-adv-x="1300" d="M586 584L430 416V0H130V1456H430V796L562 977L933 1456H1302L785 809L1317 0H960L586 584Z" />
|
||||
<glyph unicode="L" horiz-adv-x="1109" d="M430 241H1067V0H130V1456H430V241Z" />
|
||||
<glyph unicode="M" horiz-adv-x="1794" d="M522 1456L896 400L1268 1456H1662V0H1361V398L1391 1085L998 0H792L400 1084L430 398V0H130V1456H522Z" />
|
||||
<glyph unicode="N" horiz-adv-x="1446" d="M1314 0H1014L430 958V0H130V1456H430L1015 496V1456H1314V0Z" />
|
||||
<glyph unicode="O" horiz-adv-x="1414" d="M1326 695Q1326 480 1250 318T1033 68T708 -20Q527 -20 385 67T165 315T86 687V759Q86 974 163 1137T382 1388T706 1476T1029 1389T1248 1138T1326 760V695ZM1022 761Q1022 990 940 1109T706 1228Q555 1228 473 1111T390
|
||||
766V695Q390 472 472 349T708 226Q859 226 940 344T1022 690V761Z" />
|
||||
<glyph unicode="P" horiz-adv-x="1321" d="M430 513V0H130V1456H698Q862 1456 986 1396T1178 1226T1245 974Q1245 760 1099 637T693 513H430ZM430 756H698Q817 756 879 812T942 972Q942 1079 879 1145T705 1213H430V756Z" />
|
||||
<glyph unicode="Q" horiz-adv-x="1414" d="M1324 695Q1324 491 1258 341T1075 99L1317 -91L1126 -260L816 -11Q763 -20 706 -20Q525 -20 383 67T163 315T84 687V759Q84 974 161 1137T380 1388T704 1476T1027 1389T1246 1138T1324 760V695ZM1020 761Q1020 990 938
|
||||
1109T704 1228Q553 1228 471 1111T388 766V695Q388 472 470 349T706 226Q857 226 938 344T1020 690V761Z" />
|
||||
<glyph unicode="R" horiz-adv-x="1307" d="M669 533H430V0H130V1456H671Q929 1456 1069 1341T1209 1016Q1209 867 1145 768T949 609L1264 14V0H942L669 533ZM430 776H672Q785 776 847 833T909 992Q909 1095 851 1154T671 1213H430V776Z" />
|
||||
<glyph unicode="S" horiz-adv-x="1259" d="M885 382Q885 467 825 512T609 608T362 708Q114 842 114 1069Q114 1187 180 1279T371 1424T651 1476Q807 1476 929 1420T1118 1260T1186 1026H886Q886 1126 823 1181T646 1237Q536 1237 475 1191T414 1068Q414 997 485
|
||||
949T696 859Q952 782 1069 668T1186 384Q1186 195 1043 88T658 -20Q490 -20 352 41T142 210T69 458H370Q370 217 658 217Q765 217 825 260T885 382Z" />
|
||||
<glyph unicode="T" horiz-adv-x="1267" d="M1226 1213H780V0H480V1213H40V1456H1226V1213Z" />
|
||||
<glyph unicode="U" horiz-adv-x="1348" d="M1232 1456V497Q1232 258 1083 119T674 -20Q419 -20 269 115T116 486V1456H416V495Q416 352 484 287T674 221Q927 221 931 487V1456H1232Z" />
|
||||
<glyph unicode="V" horiz-adv-x="1339" d="M668 361L998 1456H1332L825 0H512L7 1456H340L668 361Z" />
|
||||
<glyph unicode="W" horiz-adv-x="1791" d="M1264 420L1460 1456H1759L1436 0H1134L897 974L660 0H358L35 1456H334L531 422L771 1456H1025L1264 420Z" />
|
||||
<glyph unicode="X" horiz-adv-x="1301" d="M651 954L924 1456H1269L845 734L1280 0H931L651 510L371 0H22L457 734L33 1456H378L651 954Z" />
|
||||
<glyph unicode="Y" horiz-adv-x="1266" d="M632 800L935 1456H1263L785 528V0H480V528L2 1456H331L632 800Z" />
|
||||
<glyph unicode="Z" horiz-adv-x="1241" d="M448 241H1182V0H73V176L793 1213H74V1456H1166V1284L448 241Z" />
|
||||
<glyph unicode="[" horiz-adv-x="569" d="M552 1471H410V-116H552V-339H120V1694H552V1471Z" />
|
||||
<glyph unicode="\" horiz-adv-x="864" d="M0 1456H295L903 -125H607L0 1456Z" />
|
||||
<glyph unicode="]" horiz-adv-x="569" d="M13 1694H445V-339H13V-116H156V1471H13V1694Z" />
|
||||
<glyph unicode="^" horiz-adv-x="895" d="M448 1186L274 729H44L343 1456H553L852 729H623L448 1186Z" />
|
||||
<glyph unicode="_" horiz-adv-x="914" d="M912 -226H1V0H912V-226Z" />
|
||||
<glyph unicode="`" horiz-adv-x="677" d="M565 1226H328L52 1536H367L565 1226Z" />
|
||||
<glyph unicode="a" horiz-adv-x="1098" d="M738 0Q718 39 709 97Q604 -20 436 -20Q277 -20 173 72T68 304Q68 476 195 568T564 661H697V723Q697 798 659 843T537 888Q464 888 423 853T381 757H92Q92 851 150 931T314 1056T552 1102Q752 1102 869 1002T987 719V250Q988
|
||||
96 1030 17V0H738ZM499 201Q563 201 617 229T697 306V492H589Q372 492 358 342L357 325Q357 271 395 236T499 201Z" />
|
||||
<glyph unicode="b" horiz-adv-x="1153" d="M1086 531Q1086 271 975 126T665 -20Q489 -20 384 115L371 0H111V1536H400V985Q500 1102 663 1102Q861 1102 973 957T1086 547V531ZM797 552Q797 716 745 791T590 867Q452 867 400 754V327Q453 213 592 213Q732 213 776
|
||||
351Q797 417 797 552Z" />
|
||||
<glyph unicode="c" horiz-adv-x="1068" d="M561 213Q641 213 691 257T743 374H1014Q1013 264 954 173T793 31T566 -20Q334 -20 200 127T66 535V554Q66 804 199 953T564 1102Q767 1102 889 987T1014 679H743Q741 763 691 815T559 868Q458 868 407 795T355 556V526Q355
|
||||
359 406 286T561 213Z" />
|
||||
<glyph unicode="d" horiz-adv-x="1154" d="M66 549Q66 802 179 952T490 1102Q648 1102 751 984V1536H1041V0H780L766 115Q658 -20 488 -20Q297 -20 182 130T66 549ZM355 528Q355 376 408 295T562 214Q696 214 751 327V754Q697 867 564 867Q355 867 355 528Z" />
|
||||
<glyph unicode="e" horiz-adv-x="1107" d="M609 -20Q371 -20 222 126T72 515V543Q72 706 135 834T313 1032T577 1102Q799 1102 926 962T1054 565V447H365Q379 341 449 277T628 213Q795 213 889 334L1031 175Q966 83 855 32T609 -20ZM576 868Q490 868 437 810T368
|
||||
644H770V667Q768 763 718 815T576 868Z" />
|
||||
<glyph unicode="f" horiz-adv-x="734" d="M190 0V870H29V1082H190V1174Q190 1356 294 1456T587 1557Q647 1557 734 1537L731 1313Q695 1322 643 1322Q480 1322 480 1169V1082H695V870H480V0H190Z" />
|
||||
<glyph unicode="g" horiz-adv-x="1169" d="M69 549Q69 798 187 950T507 1102Q685 1102 784 980L796 1082H1058V36Q1058 -106 994 -211T812 -371T538 -426Q419 -426 306 -379T135 -256L263 -80Q371 -201 525 -201Q640 -201 704 -140T768 35V93Q668 -20 505 -20Q310
|
||||
-20 190 132T69 537V549ZM358 528Q358 381 417 298T579 214Q711 214 768 313V768Q710 867 581 867Q477 867 418 782T358 528Z" />
|
||||
<glyph unicode="h" horiz-adv-x="1146" d="M393 964Q508 1102 682 1102Q1034 1102 1039 693V0H750V685Q750 778 710 822T577 867Q450 867 393 769V0H104V1536H393V964Z" />
|
||||
<glyph unicode="i" horiz-adv-x="543" d="M416 0H126V1082H416V0ZM109 1362Q109 1427 152 1469T271 1511Q345 1511 389 1469T433 1362Q433 1296 389 1254T271 1212T154 1254T109 1362Z" />
|
||||
<glyph unicode="j" horiz-adv-x="532" d="M417 1082V-59Q417 -238 322 -337T48 -437Q-27 -437 -95 -420V-191Q-43 -200 -4 -200Q127 -200 127 -61V1082H417ZM104 1362Q104 1427 147 1469T266 1511T384 1469T428 1362Q428 1296 384 1254T266 1212T149 1254T104 1362Z" />
|
||||
<glyph unicode="k" horiz-adv-x="1094" d="M504 434L400 330V0H111V1536H400V685L456 757L733 1082H1080L689 631L1114 0H782L504 434Z" />
|
||||
<glyph unicode="l" horiz-adv-x="543" d="M416 0H126V1536H416V0Z" />
|
||||
<glyph unicode="m" horiz-adv-x="1773" d="M382 1082L391 961Q506 1102 702 1102Q911 1102 989 937Q1103 1102 1314 1102Q1490 1102 1576 1000T1662 691V0H1372V690Q1372 782 1336 824T1209 867Q1079 867 1029 743L1030 0H741V689Q741 783 704 825T578 867Q455
|
||||
867 400 765V0H111V1082H382Z" />
|
||||
<glyph unicode="n" horiz-adv-x="1147" d="M377 1082L386 957Q502 1102 697 1102Q869 1102 953 1001T1039 699V0H750V692Q750 784 710 825T577 867Q455 867 394 763V0H105V1082H377Z" />
|
||||
<glyph unicode="o" horiz-adv-x="1158" d="M66 551Q66 712 128 838T306 1033T577 1102Q796 1102 934 968T1089 604L1091 530Q1091 281 952 131T579 -20T206 130T66 538V551ZM355 530Q355 376 413 295T579 213Q684 213 743 293T802 551Q802 702 743 785T577 868Q471
|
||||
868 413 786T355 530Z" />
|
||||
<glyph unicode="p" horiz-adv-x="1153" d="M1085 531Q1085 281 972 131T665 -20Q501 -20 400 94V-416H111V1082H379L389 976Q494 1102 663 1102Q863 1102 974 954T1085 546V531ZM796 552Q796 703 743 785T587 867Q451 867 400 763V320Q453 213 589 213Q796 213 796 552Z" />
|
||||
<glyph unicode="q" horiz-adv-x="1157" d="M66 551Q66 806 179 954T491 1102Q665 1102 768 969L787 1082H1041V-416H751V93Q651 -20 489 -20Q296 -20 181 130T66 551ZM355 530Q355 375 409 294T563 213Q696 213 751 319V766Q697 868 565 868Q465 868 410 787T355 530Z" />
|
||||
<glyph unicode="r" horiz-adv-x="747" d="M719 811Q660 819 615 819Q451 819 400 708V0H111V1082H384L392 953Q479 1102 633 1102Q681 1102 723 1089L719 811Z" />
|
||||
<glyph unicode="s" horiz-adv-x="1053" d="M697 299Q697 352 645 382T476 437Q90 518 90 765Q90 909 209 1005T522 1102Q728 1102 851 1005T975 753H686Q686 815 646 855T521 896Q448 896 408 863T368 779Q368 731 413 702T567 651T749 602Q978 518 978 311Q978
|
||||
163 851 72T523 -20Q387 -20 282 28T116 161T56 344H330Q334 267 387 226T529 185Q612 185 654 216T697 299Z" />
|
||||
<glyph unicode="t" horiz-adv-x="692" d="M457 1348V1082H642V870H457V330Q457 270 480 244T568 218Q616 218 653 225V6Q568 -20 478 -20Q174 -20 168 287V870H10V1082H168V1348H457Z" />
|
||||
<glyph unicode="u" horiz-adv-x="1146" d="M759 110Q652 -20 463 -20Q289 -20 198 80T104 373V1082H393V383Q393 214 547 214Q694 214 749 316V1082H1039V0H767L759 110Z" />
|
||||
<glyph unicode="v" horiz-adv-x="1035" d="M516 353L717 1082H1019L654 0H378L13 1082H315L516 353Z" />
|
||||
<glyph unicode="w" horiz-adv-x="1505" d="M1052 393L1194 1082H1473L1197 0H955L750 681L545 0H304L28 1082H307L448 394L646 1082H855L1052 393Z" />
|
||||
<glyph unicode="x" horiz-adv-x="1042" d="M523 759L705 1082H1014L706 552L1027 0H717L524 340L332 0H21L342 552L35 1082H345L523 759Z" />
|
||||
<glyph unicode="y" horiz-adv-x="1028" d="M515 409L715 1082H1025L590 -168L566 -225Q469 -437 246 -437Q183 -437 118 -418V-199L162 -200Q244 -200 284 -175T348 -92L382 -3L3 1082H314L515 409Z" />
|
||||
<glyph unicode="z" horiz-adv-x="1042" d="M443 233H972V0H74V176L583 848H89V1082H956V911L443 233Z" />
|
||||
<glyph unicode="{" horiz-adv-x="676" d="M586 -360Q226 -259 226 105V304Q226 515 48 515V722Q222 722 226 921V1133Q226 1318 316 1432T586 1597L642 1436Q566 1408 527 1339T486 1146V936Q486 710 307 619Q486 527 486 300V88Q491 -146 642 -198L586 -360Z" />
|
||||
<glyph unicode="|" horiz-adv-x="518" d="M348 -270H173V1456H348V-270Z" />
|
||||
<glyph unicode="}" horiz-adv-x="676" d="M34 -198Q186 -144 190 92V304Q190 530 373 618Q190 706 190 937V1146Q186 1379 34 1436L90 1597Q269 1547 359 1434T450 1136V921Q454 722 628 722V515Q450 515 450 306V89Q442 -261 90 -360L34 -198Z" />
|
||||
<glyph unicode="~" horiz-adv-x="1328" d="M1221 793Q1221 607 1128 491T888 375Q814 375 751 403T604 511T451 591Q393 591 357 541T321 413L106 415Q106 601 196 714T437 827Q515 827 579 797T724 690T873 612Q932 612 969 665T1007 794L1221 793Z" />
|
||||
<glyph unicode=" " horiz-adv-x="510" />
|
||||
<glyph unicode="¡" horiz-adv-x="578" d="M170 639H411L444 -369H137L170 639ZM452 948Q452 881 406 838T290 795T174 838T128 948T172 1058T290 1101T407 1058T452 948Z" />
|
||||
<glyph unicode="¢" horiz-adv-x="1178" d="M594 213Q674 213 724 257T776 374H1048Q1046 229 950 124T698 -11V-245H498V-12Q311 18 205 162T99 532V554Q99 772 204 917T498 1094V1318H698V1093Q861 1064 953 953T1048 679H776Q774 765 724 816T593 868Q491
|
||||
868 440 794T388 559V526Q388 358 439 286T594 213Z" />
|
||||
<glyph unicode="£" horiz-adv-x="1217" d="M564 576L570 437Q570 314 508 241H1161V0H102V241H194Q266 259 266 420L261 576H99V812H253L246 1039Q246 1241 369 1358T700 1475Q912 1475 1033 1363T1154 1058H867Q867 1143 824 1188T699 1233Q633 1233 590
|
||||
1184T546 1039L555 812H864V576H564Z" />
|
||||
<glyph unicode="¤" horiz-adv-x="1418" d="M1073 107Q914 -20 712 -20Q509 -20 351 106L222 -26L81 118L216 255Q116 411 116 608Q116 812 225 973L81 1120L222 1264L364 1119Q519 1234 712 1234Q906 1234 1061 1117L1205 1265L1347 1120L1199 969Q1306 810
|
||||
1306 608Q1306 415 1208 259L1347 118L1205 -27L1073 107ZM302 608Q302 490 356 389T505 229T712 170Q822 170 917 228T1067 388T1121 608Q1121 727 1067 827T918 986T712 1044Q600 1044 505 986T356 828T302 608Z" />
|
||||
<glyph unicode="¥" horiz-adv-x="1098" d="M550 892L774 1456H1087L765 742H983V567H695V452H983V278H695V0H395V278H89V452H395V567H89V742H333L10 1456H325L550 892Z" />
|
||||
<glyph unicode="¦" horiz-adv-x="516" d="M128 -270V525H388V-270H128ZM388 698H128V1456H388V698Z" />
|
||||
<glyph unicode="§" horiz-adv-x="1287" d="M1180 481Q1180 299 1018 210Q1153 108 1153 -78Q1153 -253 1016 -352T636 -452Q379 -452 236 -345T92 -35L381 -34Q381 -123 445 -170T636 -218Q748 -218 806 -181T864 -80Q864 -15 800 26T553 117T278 223T140
|
||||
353T94 534Q94 714 256 807Q120 910 120 1095Q120 1266 260 1371T640 1476Q887 1476 1023 1363T1159 1049H870Q870 1136 809 1189T640 1243Q530 1243 470 1204T410 1097Q410 1024 465 987T706 901T988 797T1133 666T1180 481ZM458 704Q383 662 383 563Q383 494
|
||||
424 457T590 379L812 312Q894 359 894 452Q894 514 849 553T685 633L458 704Z" />
|
||||
<glyph unicode="¨" horiz-adv-x="956" d="M371 1365Q371 1312 332 1276T232 1239Q170 1239 132 1276T94 1365T132 1454T232 1492T332 1455T371 1365ZM581 1365Q581 1419 621 1455T720 1492Q779 1492 818 1455T858 1365Q858 1313 820 1276T720 1238T620 1275T581
|
||||
1365Z" />
|
||||
<glyph unicode="©" horiz-adv-x="1606" d="M1117 596Q1117 444 1030 363T782 282T528 388T433 675V788Q433 962 528 1068T782 1175Q945 1175 1031 1093T1118 861H962Q962 957 916 998T782 1040Q690 1040 640 973T588 792V669Q588 552 639 485T782 417Q871
|
||||
417 916 457T961 596H1117ZM1383 729Q1383 895 1308 1037T1096 1265T796 1351Q637 1351 501 1269T286 1043T208 729T285 415T499 188T796 104T1093 189T1307 418T1383 729ZM86 729Q86 931 179 1104T438 1376T796 1476T1153 1377T1412 1104T1506 729Q1506 525 1411
|
||||
352T1152 79T796 -20Q603 -20 439 80T180 353T86 729Z" />
|
||||
<glyph unicode="ª" horiz-adv-x="909" d="M604 705Q594 732 587 773Q510 691 386 691Q268 691 203 752T137 919Q137 1029 221 1089T478 1150H580V1201Q580 1328 464 1328Q399 1328 363 1303T326 1229L153 1243Q153 1347 240 1411T464 1476Q599 1476 677 1404T755
|
||||
1199V883Q755 786 781 705H604ZM429 835Q469 835 511 853T580 897V1033H474Q398 1032 355 1002T312 923Q312 835 429 835Z" />
|
||||
<glyph unicode="«" horiz-adv-x="1023" d="M559 524L799 125H613L333 515V534L613 924H799L559 524ZM688 524L928 125H742L462 515V534L742 924H928L688 524Z" />
|
||||
<glyph unicode="¬" horiz-adv-x="1129" d="M961 374H761V634H126V805H961V374Z" />
|
||||
<glyph unicode="­" horiz-adv-x="794" d="M673 507H110V740H673V507Z" />
|
||||
<glyph unicode="®" horiz-adv-x="1606" d="M86 729Q86 931 179 1104T438 1376T796 1476T1153 1377T1412 1104T1506 729Q1506 525 1411 352T1152 79T796 -20Q603 -20 439 80T180 353T86 729ZM1383 729Q1383 895 1308 1037T1096 1265T796 1351Q637 1351 501
|
||||
1269T286 1043T208 729T285 415T499 188T796 104T1093 189T1307 418T1383 729ZM652 653V316H501V1166H782Q933 1166 1020 1098T1107 903Q1107 791 994 729Q1055 698 1079 643T1104 505T1107 389T1121 332V316H966Q953 350 953 510Q953 586 920 619T810 653H652ZM652
|
||||
787H788Q862 787 909 819T957 903Q957 973 922 1002T793 1033H652V787Z" />
|
||||
<glyph unicode="¯" horiz-adv-x="1026" d="M858 1287H168V1454H858V1287Z" />
|
||||
<glyph unicode="°" horiz-adv-x="795" d="M126 1200Q126 1314 207 1395T398 1476Q507 1476 586 1396T666 1200T587 1007T398 928Q290 928 208 1006T126 1200ZM398 1076Q451 1076 485 1111T520 1200Q520 1252 486 1290T398 1328T309 1290T273 1200T309 1112T398
|
||||
1076Z" />
|
||||
<glyph unicode="±" horiz-adv-x="1100" d="M677 942H1005V701H677V337H424V701H89V942H424V1285H677V942ZM977 1H113V236H977V1Z" />
|
||||
<glyph unicode="²" horiz-adv-x="763" d="M693 667H73V805L360 1062Q416 1111 440 1153T465 1218Q465 1302 370 1302Q320 1302 291 1271T261 1193H55Q55 1309 140 1388T361 1467Q509 1467 589 1403T670 1219Q670 1149 634 1091T490 946L342 831H693V667Z" />
|
||||
<glyph unicode="³" horiz-adv-x="763" d="M273 1137H355Q474 1137 474 1225Q474 1260 446 1281T368 1302Q326 1302 297 1287T267 1242H62Q62 1344 146 1405T362 1467Q507 1467 592 1408T678 1241Q678 1122 543 1072Q693 1031 693 888Q693 783 602 720T362
|
||||
656Q220 656 134 722T48 903H254Q254 869 288 845T374 820Q434 820 460 846T487 908Q487 1000 365 1001H273V1137Z" />
|
||||
<glyph unicode="´" horiz-adv-x="679" d="M298 1536H613L336 1226H101L298 1536Z" />
|
||||
<glyph unicode="µ" horiz-adv-x="1261" d="M428 1082V459Q428 333 468 274T608 214Q757 214 813 319V1082H1102V0H833L827 68Q738 -21 602 -21Q500 -21 428 24V-416H139V1082H428Z" />
|
||||
<glyph unicode="¶" horiz-adv-x="1003" d="M650 0V520H570Q340 520 208 647T75 988Q75 1201 208 1328T571 1456H869V0H650Z" />
|
||||
<glyph unicode="·" horiz-adv-x="617" d="M140 697Q140 766 186 809T303 852T420 809T467 697T420 586T303 543Q231 543 186 586T140 697Z" />
|
||||
<glyph unicode="¸" horiz-adv-x="548" d="M345 7L334 -51Q484 -78 484 -224Q484 -334 393 -398T135 -462L128 -295Q240 -295 240 -214Q240 -172 207 -157T98 -136L129 7H345Z" />
|
||||
<glyph unicode="¹" horiz-adv-x="763" d="M528 667H324V1215L135 1174V1332L509 1453H528V667Z" />
|
||||
<glyph unicode="º" horiz-adv-x="936" d="M118 1121Q118 1281 213 1378T464 1476T715 1379T811 1116V1044Q811 885 717 788T466 690Q308 690 213 788T118 1049V1121ZM293 1044Q293 946 339 891T466 836Q544 836 589 890T636 1041V1121Q636 1218 590 1273T464
|
||||
1328Q386 1328 340 1274T293 1117V1044Z" />
|
||||
<glyph unicode="»" horiz-adv-x="1023" d="M272 923L552 533V514L272 124H85L325 523L85 923H272ZM665 923L945 533V514L665 124H478L718 523L478 923H665Z" />
|
||||
<glyph unicode="¼" horiz-adv-x="1470" d="M494 664H290V1212L101 1171V1329L475 1450H494V664ZM458 117L317 193L1028 1331L1169 1255L458 117ZM1302 326H1390V159H1302V0H1097V159H751L739 294L1096 789H1302V326ZM935 326H1097V538L1083 516L935 326Z" />
|
||||
<glyph unicode="½" horiz-adv-x="1559" d="M416 117L275 193L986 1331L1127 1255L416 117ZM477 670H273V1218L84 1177V1335L458 1456H477V670ZM1477 0H857V138L1144 395Q1200 444 1224 486T1249 551Q1249 635 1154 635Q1104 635 1075 604T1045 526H839Q839
|
||||
642 924 721T1145 800Q1293 800 1373 736T1454 552Q1454 482 1418 424T1274 279L1126 164H1477V0Z" />
|
||||
<glyph unicode="¾" horiz-adv-x="1655" d="M619 117L478 193L1189 1331L1330 1255L619 117ZM1460 326H1548V159H1460V0H1255V159H909L897 294L1254 789H1460V326ZM1093 326H1255V538L1241 516L1093 326ZM319 1137H401Q520 1137 520 1225Q520 1260 492 1281T414
|
||||
1302Q372 1302 343 1287T313 1242H108Q108 1344 192 1405T408 1467Q553 1467 638 1408T724 1241Q724 1122 589 1072Q739 1031 739 888Q739 783 648 720T408 656Q266 656 180 722T94 903H300Q300 869 334 845T420 820Q480 820 506 846T533 908Q533 1000 411 1001H319V1137Z"
|
||||
/>
|
||||
<glyph unicode="¿" horiz-adv-x="1019" d="M666 643Q666 510 635 428T525 272T417 162T374 89T359 8Q359 -149 513 -149Q590 -149 635 -104T683 22H972Q970 -170 849 -277T518 -385Q305 -385 187 -284T69 6Q69 165 222 318L319 411Q369 456 388 505T410 643H666ZM702
|
||||
949Q702 882 656 839T540 796T424 839T378 949T422 1059T540 1102T657 1059T702 949Z" />
|
||||
<glyph unicode="À" horiz-adv-x="1378" d="M952 300H426L326 0H7L549 1456H827L1372 0H1053L952 300ZM507 543H871L688 1088L507 543ZM836 1536H599L323 1846H638L836 1536Z" />
|
||||
<glyph unicode="Á" horiz-adv-x="1378" d="M952 300H426L326 0H7L549 1456H827L1372 0H1053L952 300ZM507 543H871L688 1088L507 543ZM750 1846H1065L788 1536H553L750 1846Z" />
|
||||
<glyph unicode="Â" horiz-adv-x="1378" d="M952 300H426L326 0H7L549 1456H827L1372 0H1053L952 300ZM507 543H871L688 1088L507 543ZM1076 1566V1554H846L692 1699L538 1554H312V1570L608 1846H776L1076 1566Z" />
|
||||
<glyph unicode="Ã" horiz-adv-x="1378" d="M952 300H426L326 0H7L549 1456H827L1372 0H1053L952 300ZM507 543H871L688 1088L507 543ZM1068 1832Q1068 1719 1002 1643T841 1566Q803 1566 774 1574T692 1611T617 1645T567 1652Q532 1652 508 1627T483 1556L315
|
||||
1566Q315 1677 380 1755T541 1833Q571 1833 597 1826T684 1789T767 1754T815 1748Q850 1748 875 1772T901 1843L1068 1832Z" />
|
||||
<glyph unicode="Ä" horiz-adv-x="1378" d="M952 300H426L326 0H7L549 1456H827L1372 0H1053L952 300ZM507 543H871L688 1088L507 543ZM587 1675Q587 1622 548 1586T448 1549Q386 1549 348 1586T310 1675T348 1764T448 1802T548 1765T587 1675ZM797 1675Q797
|
||||
1729 837 1765T936 1802Q995 1802 1034 1765T1074 1675Q1074 1623 1036 1586T936 1548T836 1585T797 1675Z" />
|
||||
<glyph unicode="Å" horiz-adv-x="1378" d="M952 300H426L326 0H7L549 1456H827L1372 0H1053L952 300ZM507 543H871L688 1088L507 543ZM470 1730Q470 1816 535 1875T693 1935Q785 1935 850 1877T916 1730Q916 1645 852 1587T693 1529Q596 1529 533 1588T470
|
||||
1730ZM585 1730Q585 1686 614 1655T693 1623T772 1654T801 1730Q801 1776 772 1807T693 1839T615 1808T585 1730Z" />
|
||||
<glyph unicode="Æ" horiz-adv-x="1925" d="M1865 0H968L954 333H508L341 0H2L788 1456H1804V1220H1206L1221 865H1723V629H1231L1247 235H1865V0ZM633 580H944L920 1150L633 580Z" />
|
||||
<glyph unicode="Ç" horiz-adv-x="1340" d="M1273 485Q1256 250 1100 115T687 -20Q407 -20 247 168T86 686V775Q86 985 160 1145T371 1390T691 1476Q943 1476 1097 1341T1275 962H975Q964 1103 897 1166T691 1230Q541 1230 467 1123T390 789V679Q390 443 461
|
||||
334T687 225Q826 225 894 288T973 485H1273ZM797 6L786 -52Q936 -79 936 -225Q936 -335 845 -399T587 -463L580 -296Q692 -296 692 -215Q692 -173 659 -158T550 -137L581 6H797Z" />
|
||||
<glyph unicode="È" horiz-adv-x="1152" d="M1006 631H430V241H1106V0H130V1456H1104V1213H430V866H1006V631ZM779 1539H542L266 1849H581L779 1539Z" />
|
||||
<glyph unicode="É" horiz-adv-x="1152" d="M1006 631H430V241H1106V0H130V1456H1104V1213H430V866H1006V631ZM693 1849H1008L731 1539H496L693 1849Z" />
|
||||
<glyph unicode="Ê" horiz-adv-x="1152" d="M1006 631H430V241H1106V0H130V1456H1104V1213H430V866H1006V631ZM1019 1569V1557H789L635 1702L481 1557H255V1573L551 1849H719L1019 1569Z" />
|
||||
<glyph unicode="Ë" horiz-adv-x="1152" d="M1006 631H430V241H1106V0H130V1456H1104V1213H430V866H1006V631ZM530 1678Q530 1625 491 1589T391 1552Q329 1552 291 1589T253 1678T291 1767T391 1805T491 1768T530 1678ZM740 1678Q740 1732 780 1768T879 1805Q938
|
||||
1805 977 1768T1017 1678Q1017 1626 979 1589T879 1551T779 1588T740 1678Z" />
|
||||
<glyph unicode="Ì" horiz-adv-x="597" d="M449 0H149V1456H449V0ZM443 1539H206L-70 1849H245L443 1539Z" />
|
||||
<glyph unicode="Í" horiz-adv-x="597" d="M449 0H149V1456H449V0ZM356 1849H671L394 1539H159L356 1849Z" />
|
||||
<glyph unicode="Î" horiz-adv-x="597" d="M449 0H149V1456H449V0ZM683 1569V1557H453L299 1702L145 1557H-81V1573L215 1849H383L683 1569Z" />
|
||||
<glyph unicode="Ï" horiz-adv-x="597" d="M449 0H149V1456H449V0ZM194 1678Q194 1625 155 1589T55 1552Q-7 1552 -45 1589T-83 1678T-45 1767T55 1805T155 1768T194 1678ZM404 1678Q404 1732 444 1768T543 1805Q602 1805 641 1768T681 1678Q681 1626 643
|
||||
1589T543 1551T443 1588T404 1678Z" />
|
||||
<glyph unicode="Ð" horiz-adv-x="1361" d="M160 0V642H-20V825H160V1456H608Q800 1456 951 1370T1188 1124T1273 761V694Q1273 491 1190 333T954 88T611 0H160ZM679 642H460V241H605Q783 241 876 358T969 694V762Q969 984 877 1098T608 1213H460V825H679V642Z" />
|
||||
<glyph unicode="Ñ" horiz-adv-x="1446" d="M1314 0H1014L430 958V0H130V1456H430L1015 496V1456H1314V0ZM1102 1832Q1102 1719 1036 1643T875 1566Q837 1566 808 1574T726 1611T651 1645T601 1652Q566 1652 542 1627T517 1556L349 1566Q349 1677 414 1755T575
|
||||
1833Q605 1833 631 1826T718 1789T801 1754T849 1748Q884 1748 909 1772T935 1843L1102 1832Z" />
|
||||
<glyph unicode="Ò" horiz-adv-x="1414" d="M1326 695Q1326 480 1250 318T1033 68T708 -20Q527 -20 385 67T165 315T86 687V759Q86 974 163 1137T382 1388T706 1476T1029 1389T1248 1138T1326 760V695ZM1022 761Q1022 990 940 1109T706 1228Q555 1228 473
|
||||
1111T390 766V695Q390 472 472 349T708 226Q859 226 940 344T1022 690V761ZM850 1536H613L337 1846H652L850 1536Z" />
|
||||
<glyph unicode="Ó" horiz-adv-x="1414" d="M1326 695Q1326 480 1250 318T1033 68T708 -20Q527 -20 385 67T165 315T86 687V759Q86 974 163 1137T382 1388T706 1476T1029 1389T1248 1138T1326 760V695ZM1022 761Q1022 990 940 1109T706 1228Q555 1228 473
|
||||
1111T390 766V695Q390 472 472 349T708 226Q859 226 940 344T1022 690V761ZM764 1846H1079L802 1536H567L764 1846Z" />
|
||||
<glyph unicode="Ô" horiz-adv-x="1414" d="M1326 695Q1326 480 1250 318T1033 68T708 -20Q527 -20 385 67T165 315T86 687V759Q86 974 163 1137T382 1388T706 1476T1029 1389T1248 1138T1326 760V695ZM1022 761Q1022 990 940 1109T706 1228Q555 1228 473
|
||||
1111T390 766V695Q390 472 472 349T708 226Q859 226 940 344T1022 690V761ZM1090 1566V1554H860L706 1699L552 1554H326V1570L622 1846H790L1090 1566Z" />
|
||||
<glyph unicode="Õ" horiz-adv-x="1414" d="M1326 695Q1326 480 1250 318T1033 68T708 -20Q527 -20 385 67T165 315T86 687V759Q86 974 163 1137T382 1388T706 1476T1029 1389T1248 1138T1326 760V695ZM1022 761Q1022 990 940 1109T706 1228Q555 1228 473
|
||||
1111T390 766V695Q390 472 472 349T708 226Q859 226 940 344T1022 690V761ZM1082 1832Q1082 1719 1016 1643T855 1566Q817 1566 788 1574T706 1611T631 1645T581 1652Q546 1652 522 1627T497 1556L329 1566Q329 1677 394 1755T555 1833Q585 1833 611 1826T698 1789T781
|
||||
1754T829 1748Q864 1748 889 1772T915 1843L1082 1832Z" />
|
||||
<glyph unicode="Ö" horiz-adv-x="1414" d="M1326 695Q1326 480 1250 318T1033 68T708 -20Q527 -20 385 67T165 315T86 687V759Q86 974 163 1137T382 1388T706 1476T1029 1389T1248 1138T1326 760V695ZM1022 761Q1022 990 940 1109T706 1228Q555 1228 473
|
||||
1111T390 766V695Q390 472 472 349T708 226Q859 226 940 344T1022 690V761ZM601 1675Q601 1622 562 1586T462 1549Q400 1549 362 1586T324 1675T362 1764T462 1802T562 1765T601 1675ZM811 1675Q811 1729 851 1765T950 1802Q1009 1802 1048 1765T1088 1675Q1088
|
||||
1623 1050 1586T950 1548T850 1585T811 1675Z" />
|
||||
<glyph unicode="×" horiz-adv-x="1088" d="M65 373L372 686L65 999L235 1167L539 856L844 1167L1014 999L707 686L1014 373L844 205L539 515L235 205L65 373Z" />
|
||||
<glyph unicode="Ø" horiz-adv-x="1411" d="M1333 695Q1333 480 1257 318T1040 68T715 -20Q551 -20 420 50L335 -95H147L290 147Q93 342 93 702V759Q93 974 170 1137T389 1388T713 1476Q888 1476 1027 1394L1101 1518H1288L1154 1291Q1333 1093 1333 754V695ZM397
|
||||
695Q397 523 446 410L893 1167Q820 1228 713 1228Q562 1228 480 1111T397 766V695ZM1030 761Q1030 912 992 1017L552 273Q622 226 715 226Q866 226 947 344T1030 690V761Z" />
|
||||
<glyph unicode="Ù" horiz-adv-x="1348" d="M1232 1456V497Q1232 258 1083 119T674 -20Q419 -20 269 115T116 486V1456H416V495Q416 352 484 287T674 221Q927 221 931 487V1456H1232ZM814 1536H577L301 1846H616L814 1536Z" />
|
||||
<glyph unicode="Ú" horiz-adv-x="1348" d="M1232 1456V497Q1232 258 1083 119T674 -20Q419 -20 269 115T116 486V1456H416V495Q416 352 484 287T674 221Q927 221 931 487V1456H1232ZM728 1846H1043L766 1536H531L728 1846Z" />
|
||||
<glyph unicode="Û" horiz-adv-x="1348" d="M1232 1456V497Q1232 258 1083 119T674 -20Q419 -20 269 115T116 486V1456H416V495Q416 352 484 287T674 221Q927 221 931 487V1456H1232ZM1054 1566V1554H824L670 1699L516 1554H290V1570L586 1846H754L1054 1566Z" />
|
||||
<glyph unicode="Ü" horiz-adv-x="1348" d="M1232 1456V497Q1232 258 1083 119T674 -20Q419 -20 269 115T116 486V1456H416V495Q416 352 484 287T674 221Q927 221 931 487V1456H1232ZM565 1675Q565 1622 526 1586T426 1549Q364 1549 326 1586T288 1675T326
|
||||
1764T426 1802T526 1765T565 1675ZM775 1675Q775 1729 815 1765T914 1802Q973 1802 1012 1765T1052 1675Q1052 1623 1014 1586T914 1548T814 1585T775 1675Z" />
|
||||
<glyph unicode="Ý" horiz-adv-x="1266" d="M632 800L935 1456H1263L785 528V0H480V528L2 1456H331L632 800ZM693 1846H1008L731 1536H496L693 1846Z" />
|
||||
<glyph unicode="Þ" horiz-adv-x="1246" d="M422 1456V1189H652Q814 1188 933 1133T1117 975T1181 738Q1181 536 1043 414T664 287H422V0H133V1456H422ZM422 956V520H645Q762 520 827 579T892 736T829 894T653 956H422Z" />
|
||||
<glyph unicode="ß" horiz-adv-x="1292" d="M424 0H135V1101Q135 1321 259 1440T609 1559Q800 1559 915 1460T1031 1189Q1031 1081 978 994T924 830Q924 793 954 754T1073 636Q1224 502 1224 354Q1224 177 1109 79T779 -20Q698 -20 619 -4T500 36L554 265Q652
|
||||
213 773 213Q852 213 894 249T936 349Q936 395 902 438T785 548Q635 668 635 818Q635 914 690 1004T745 1174Q745 1244 701 1285T588 1327Q429 1327 424 1114V0Z" />
|
||||
<glyph unicode="à" horiz-adv-x="1098" d="M738 0Q718 39 709 97Q604 -20 436 -20Q277 -20 173 72T68 304Q68 476 195 568T564 661H697V723Q697 798 659 843T537 888Q464 888 423 853T381 757H92Q92 851 150 931T314 1056T552 1102Q752 1102 869 1002T987
|
||||
719V250Q988 96 1030 17V0H738ZM499 201Q563 201 617 229T697 306V492H589Q372 492 358 342L357 325Q357 271 395 236T499 201ZM695 1226H458L182 1536H497L695 1226Z" />
|
||||
<glyph unicode="á" horiz-adv-x="1098" d="M738 0Q718 39 709 97Q604 -20 436 -20Q277 -20 173 72T68 304Q68 476 195 568T564 661H697V723Q697 798 659 843T537 888Q464 888 423 853T381 757H92Q92 851 150 931T314 1056T552 1102Q752 1102 869 1002T987
|
||||
719V250Q988 96 1030 17V0H738ZM499 201Q563 201 617 229T697 306V492H589Q372 492 358 342L357 325Q357 271 395 236T499 201ZM609 1536H924L647 1226H412L609 1536Z" />
|
||||
<glyph unicode="â" horiz-adv-x="1098" d="M738 0Q718 39 709 97Q604 -20 436 -20Q277 -20 173 72T68 304Q68 476 195 568T564 661H697V723Q697 798 659 843T537 888Q464 888 423 853T381 757H92Q92 851 150 931T314 1056T552 1102Q752 1102 869 1002T987
|
||||
719V250Q988 96 1030 17V0H738ZM499 201Q563 201 617 229T697 306V492H589Q372 492 358 342L357 325Q357 271 395 236T499 201ZM935 1256V1244H705L551 1389L397 1244H171V1260L467 1536H635L935 1256Z" />
|
||||
<glyph unicode="ã" horiz-adv-x="1098" d="M738 0Q718 39 709 97Q604 -20 436 -20Q277 -20 173 72T68 304Q68 476 195 568T564 661H697V723Q697 798 659 843T537 888Q464 888 423 853T381 757H92Q92 851 150 931T314 1056T552 1102Q752 1102 869 1002T987
|
||||
719V250Q988 96 1030 17V0H738ZM499 201Q563 201 617 229T697 306V492H589Q372 492 358 342L357 325Q357 271 395 236T499 201ZM927 1779Q927 1666 861 1590T700 1513Q662 1513 633 1521T551 1558T476 1592T426 1599Q391 1599 367 1574T342 1503L174 1513Q174 1624
|
||||
239 1702T400 1780Q430 1780 456 1773T543 1736T626 1701T674 1695Q709 1695 734 1719T760 1790L927 1779Z" />
|
||||
<glyph unicode="ä" horiz-adv-x="1098" d="M738 0Q718 39 709 97Q604 -20 436 -20Q277 -20 173 72T68 304Q68 476 195 568T564 661H697V723Q697 798 659 843T537 888Q464 888 423 853T381 757H92Q92 851 150 931T314 1056T552 1102Q752 1102 869 1002T987
|
||||
719V250Q988 96 1030 17V0H738ZM499 201Q563 201 617 229T697 306V492H589Q372 492 358 342L357 325Q357 271 395 236T499 201ZM446 1365Q446 1312 407 1276T307 1239Q245 1239 207 1276T169 1365T207 1454T307 1492T407 1455T446 1365ZM656 1365Q656 1419 696
|
||||
1455T795 1492Q854 1492 893 1455T933 1365Q933 1313 895 1276T795 1238T695 1275T656 1365Z" />
|
||||
<glyph unicode="å" horiz-adv-x="1098" d="M738 0Q718 39 709 97Q604 -20 436 -20Q277 -20 173 72T68 304Q68 476 195 568T564 661H697V723Q697 798 659 843T537 888Q464 888 423 853T381 757H92Q92 851 150 931T314 1056T552 1102Q752 1102 869 1002T987
|
||||
719V250Q988 96 1030 17V0H738ZM499 201Q563 201 617 229T697 306V492H589Q372 492 358 342L357 325Q357 271 395 236T499 201ZM329 1420Q329 1506 394 1565T552 1625Q644 1625 709 1567T775 1420Q775 1335 711 1277T552 1219Q455 1219 392 1278T329 1420ZM444
|
||||
1420Q444 1376 473 1345T552 1313T631 1344T660 1420Q660 1466 631 1497T552 1529T474 1498T444 1420Z" />
|
||||
<glyph unicode="æ" horiz-adv-x="1729" d="M1246 -20Q999 -20 860 127Q796 58 694 19T466 -20Q280 -20 173 69T66 319Q66 476 190 562T557 649H725V706Q725 782 685 825T567 868Q485 868 438 833T390 745L101 764Q101 913 231 1007T570 1102Q781 1102 897
|
||||
992Q1023 1104 1223 1102Q1435 1102 1556 971T1677 607V450H1009Q1020 334 1089 273T1276 212Q1353 212 1418 228T1571 289L1648 100Q1575 44 1468 12T1246 -20ZM521 192Q570 192 628 214T725 272V461H561Q466 460 411 418T355 315Q355 259 395 226T521 192ZM1223
|
||||
868Q1133 868 1079 811T1011 644H1393V672Q1393 766 1350 817T1223 868Z" />
|
||||
<glyph unicode="ç" horiz-adv-x="1068" d="M561 213Q641 213 691 257T743 374H1014Q1013 264 954 173T793 31T566 -20Q334 -20 200 127T66 535V554Q66 804 199 953T564 1102Q767 1102 889 987T1014 679H743Q741 763 691 815T559 868Q458 868 407 795T355
|
||||
556V526Q355 359 406 286T561 213ZM666 6L655 -52Q805 -79 805 -225Q805 -335 714 -399T456 -463L449 -296Q561 -296 561 -215Q561 -173 528 -158T419 -137L450 6H666Z" />
|
||||
<glyph unicode="è" horiz-adv-x="1107" d="M609 -20Q371 -20 222 126T72 515V543Q72 706 135 834T313 1032T577 1102Q799 1102 926 962T1054 565V447H365Q379 341 449 277T628 213Q795 213 889 334L1031 175Q966 83 855 32T609 -20ZM576 868Q490 868 437
|
||||
810T368 644H770V667Q768 763 718 815T576 868ZM688 1226H451L175 1536H490L688 1226Z" />
|
||||
<glyph unicode="é" horiz-adv-x="1107" d="M609 -20Q371 -20 222 126T72 515V543Q72 706 135 834T313 1032T577 1102Q799 1102 926 962T1054 565V447H365Q379 341 449 277T628 213Q795 213 889 334L1031 175Q966 83 855 32T609 -20ZM576 868Q490 868 437
|
||||
810T368 644H770V667Q768 763 718 815T576 868ZM602 1536H917L640 1226H405L602 1536Z" />
|
||||
<glyph unicode="ê" horiz-adv-x="1107" d="M609 -20Q371 -20 222 126T72 515V543Q72 706 135 834T313 1032T577 1102Q799 1102 926 962T1054 565V447H365Q379 341 449 277T628 213Q795 213 889 334L1031 175Q966 83 855 32T609 -20ZM576 868Q490 868 437
|
||||
810T368 644H770V667Q768 763 718 815T576 868ZM928 1256V1244H698L544 1389L390 1244H164V1260L460 1536H628L928 1256Z" />
|
||||
<glyph unicode="ë" horiz-adv-x="1107" d="M609 -20Q371 -20 222 126T72 515V543Q72 706 135 834T313 1032T577 1102Q799 1102 926 962T1054 565V447H365Q379 341 449 277T628 213Q795 213 889 334L1031 175Q966 83 855 32T609 -20ZM576 868Q490 868 437
|
||||
810T368 644H770V667Q768 763 718 815T576 868ZM439 1365Q439 1312 400 1276T300 1239Q238 1239 200 1276T162 1365T200 1454T300 1492T400 1455T439 1365ZM649 1365Q649 1419 689 1455T788 1492Q847 1492 886 1455T926 1365Q926 1313 888 1276T788 1238T688 1275T649
|
||||
1365Z" />
|
||||
<glyph unicode="ì" horiz-adv-x="561" d="M423 0H134V1082H423V0ZM425 1211H188L-88 1521H227L425 1211Z" />
|
||||
<glyph unicode="í" horiz-adv-x="561" d="M423 0H134V1082H423V0ZM338 1777H653L376 1467H141L338 1777Z" />
|
||||
<glyph unicode="î" horiz-adv-x="561" d="M423 0H134V1082H423V0ZM665 1241V1229H435L281 1374L127 1229H-99V1245L197 1521H365L665 1241Z" />
|
||||
<glyph unicode="ï" horiz-adv-x="561" d="M423 0H134V1082H423V0ZM176 1350Q176 1297 137 1261T37 1224Q-25 1224 -63 1261T-101 1350T-63 1439T37 1477T137 1440T176 1350ZM386 1350Q386 1404 426 1440T525 1477Q584 1477 623 1440T663 1350Q663 1298 625
|
||||
1261T525 1223T425 1260T386 1350Z" />
|
||||
<glyph unicode="ð" horiz-adv-x="1178" d="M849 1305Q1104 1043 1105 651V577Q1105 405 1039 268T853 56T587 -20Q443 -20 328 43T149 219T84 468Q84 699 207 832T536 966Q672 966 780 890Q731 1042 614 1155L423 1033L345 1147L497 1244Q381 1316 233 1355L324
|
||||
1579Q562 1531 740 1399L911 1508L988 1394L849 1305ZM816 663Q748 746 601 746Q488 746 431 672T373 468Q373 356 433 285T591 213Q694 213 755 303T816 552V663Z" />
|
||||
<glyph unicode="ñ" horiz-adv-x="1147" d="M377 1082L386 957Q502 1102 697 1102Q869 1102 953 1001T1039 699V0H750V692Q750 784 710 825T577 867Q455 867 394 763V0H105V1082H377ZM951 1779Q951 1666 885 1590T724 1513Q686 1513 657 1521T575 1558T500
|
||||
1592T450 1599Q415 1599 391 1574T366 1503L198 1513Q198 1624 263 1702T424 1780Q454 1780 480 1773T567 1736T650 1701T698 1695Q733 1695 758 1719T784 1790L951 1779Z" />
|
||||
<glyph unicode="ò" horiz-adv-x="1158" d="M66 551Q66 712 128 838T306 1033T577 1102Q796 1102 934 968T1089 604L1091 530Q1091 281 952 131T579 -20T206 130T66 538V551ZM355 530Q355 376 413 295T579 213Q684 213 743 293T802 551Q802 702 743 785T577
|
||||
868Q471 868 413 786T355 530ZM720 1226H483L207 1536H522L720 1226Z" />
|
||||
<glyph unicode="ó" horiz-adv-x="1158" d="M66 551Q66 712 128 838T306 1033T577 1102Q796 1102 934 968T1089 604L1091 530Q1091 281 952 131T579 -20T206 130T66 538V551ZM355 530Q355 376 413 295T579 213Q684 213 743 293T802 551Q802 702 743 785T577
|
||||
868Q471 868 413 786T355 530ZM634 1536H949L672 1226H437L634 1536Z" />
|
||||
<glyph unicode="ô" horiz-adv-x="1158" d="M66 551Q66 712 128 838T306 1033T577 1102Q796 1102 934 968T1089 604L1091 530Q1091 281 952 131T579 -20T206 130T66 538V551ZM355 530Q355 376 413 295T579 213Q684 213 743 293T802 551Q802 702 743 785T577
|
||||
868Q471 868 413 786T355 530ZM960 1256V1244H730L576 1389L422 1244H196V1260L492 1536H660L960 1256Z" />
|
||||
<glyph unicode="õ" horiz-adv-x="1158" d="M66 551Q66 712 128 838T306 1033T577 1102Q796 1102 934 968T1089 604L1091 530Q1091 281 952 131T579 -20T206 130T66 538V551ZM355 530Q355 376 413 295T579 213Q684 213 743 293T802 551Q802 702 743 785T577
|
||||
868Q471 868 413 786T355 530ZM952 1779Q952 1666 886 1590T725 1513Q687 1513 658 1521T576 1558T501 1592T451 1599Q416 1599 392 1574T367 1503L199 1513Q199 1624 264 1702T425 1780Q455 1780 481 1773T568 1736T651 1701T699 1695Q734 1695 759 1719T785 1790L952
|
||||
1779Z" />
|
||||
<glyph unicode="ö" horiz-adv-x="1158" d="M66 551Q66 712 128 838T306 1033T577 1102Q796 1102 934 968T1089 604L1091 530Q1091 281 952 131T579 -20T206 130T66 538V551ZM355 530Q355 376 413 295T579 213Q684 213 743 293T802 551Q802 702 743 785T577
|
||||
868Q471 868 413 786T355 530ZM471 1365Q471 1312 432 1276T332 1239Q270 1239 232 1276T194 1365T232 1454T332 1492T432 1455T471 1365ZM681 1365Q681 1419 721 1455T820 1492Q879 1492 918 1455T958 1365Q958 1313 920 1276T820 1238T720 1275T681 1365Z" />
|
||||
<glyph unicode="÷" horiz-adv-x="1168" d="M1091 571H63V801H1091V571ZM415 1089Q415 1157 460 1199T578 1241Q649 1241 695 1200T742 1089Q742 1022 697 981T578 939Q503 939 459 981T415 1089ZM415 277Q415 345 460 387T578 429Q649 429 695 388T742 277Q742
|
||||
210 697 169T578 127Q503 127 459 169T415 277Z" />
|
||||
<glyph unicode="ø" horiz-adv-x="1156" d="M66 551Q66 712 128 838T306 1033T577 1102Q678 1102 763 1073L833 1216H994L891 1005Q1091 856 1091 530Q1091 281 952 131T579 -20Q484 -20 403 6L331 -142H170L273 70Q66 216 66 551ZM355 530Q355 400 396 322L656
|
||||
854Q620 868 577 868Q471 868 413 786T355 530ZM802 551Q802 665 765 747L509 223Q539 213 579 213Q684 213 743 293T802 551Z" />
|
||||
<glyph unicode="ù" horiz-adv-x="1146" d="M759 110Q652 -20 463 -20Q289 -20 198 80T104 373V1082H393V383Q393 214 547 214Q694 214 749 316V1082H1039V0H767L759 110ZM716 1226H479L203 1536H518L716 1226Z" />
|
||||
<glyph unicode="ú" horiz-adv-x="1146" d="M759 110Q652 -20 463 -20Q289 -20 198 80T104 373V1082H393V383Q393 214 547 214Q694 214 749 316V1082H1039V0H767L759 110ZM630 1536H945L668 1226H433L630 1536Z" />
|
||||
<glyph unicode="û" horiz-adv-x="1146" d="M759 110Q652 -20 463 -20Q289 -20 198 80T104 373V1082H393V383Q393 214 547 214Q694 214 749 316V1082H1039V0H767L759 110ZM956 1256V1244H726L572 1389L418 1244H192V1260L488 1536H656L956 1256Z" />
|
||||
<glyph unicode="ü" horiz-adv-x="1146" d="M759 110Q652 -20 463 -20Q289 -20 198 80T104 373V1082H393V383Q393 214 547 214Q694 214 749 316V1082H1039V0H767L759 110ZM467 1365Q467 1312 428 1276T328 1239Q266 1239 228 1276T190 1365T228 1454T328 1492T428
|
||||
1455T467 1365ZM677 1365Q677 1419 717 1455T816 1492Q875 1492 914 1455T954 1365Q954 1313 916 1276T816 1238T716 1275T677 1365Z" />
|
||||
<glyph unicode="ý" horiz-adv-x="1028" d="M515 409L715 1082H1025L590 -168L566 -225Q469 -437 246 -437Q183 -437 118 -418V-199L162 -200Q244 -200 284 -175T348 -92L382 -3L3 1082H314L515 409ZM578 1536H893L616 1226H381L578 1536Z" />
|
||||
<glyph unicode="þ" horiz-adv-x="1162" d="M1087 531Q1087 281 974 131T667 -20Q503 -20 403 93V-416H113V1536H403V989Q503 1102 665 1102Q863 1102 975 955T1087 545V531ZM798 552Q798 703 745 785T589 867Q457 867 403 765V318Q457 213 591 213Q798 213 798 552Z" />
|
||||
<glyph unicode="ÿ" horiz-adv-x="1028" d="M515 409L715 1082H1025L590 -168L566 -225Q469 -437 246 -437Q183 -437 118 -418V-199L162 -200Q244 -200 284 -175T348 -92L382 -3L3 1082H314L515 409ZM415 1365Q415 1312 376 1276T276 1239Q214 1239 176 1276T138
|
||||
1365T176 1454T276 1492T376 1455T415 1365ZM625 1365Q625 1419 665 1455T764 1492Q823 1492 862 1455T902 1365Q902 1313 864 1276T764 1238T664 1275T625 1365Z" />
|
||||
<glyph unicode="–" horiz-adv-x="1294" d="M1444 596H408V832H1444V596Z" />
|
||||
<glyph unicode="—" horiz-adv-x="1563" d="M1746 596H365V832H1746V596Z" />
|
||||
<glyph unicode="‘" horiz-adv-x="479" d="M286 1570L422 1491Q336 1355 333 1215V1048H104V1198Q104 1292 156 1398T286 1570Z" />
|
||||
<glyph unicode="’" horiz-adv-x="470" d="M194 1009L58 1088Q144 1223 147 1367V1536H377V1381Q377 1291 327 1186T194 1009Z" />
|
||||
<glyph unicode="‚" horiz-adv-x="508" d="M202 -305L66 -226Q144 -100 147 48V229H385L384 63Q383 -26 334 -129T202 -305Z" />
|
||||
<glyph unicode="“" horiz-adv-x="831" d="M294 1570L430 1491Q344 1355 341 1215V1048H112V1198Q112 1292 164 1398T294 1570ZM637 1570L773 1491Q687 1355 684 1215V1048H455V1198Q455 1292 507 1398T637 1570Z" />
|
||||
<glyph unicode="”" horiz-adv-x="837" d="M208 1009L72 1088Q158 1223 161 1367V1536H391V1381Q391 1291 341 1186T208 1009ZM555 1009L419 1088Q505 1223 508 1367V1536H738V1381Q738 1291 688 1186T555 1009Z" />
|
||||
<glyph unicode="„" horiz-adv-x="825" d="M209 -325L66 -246Q144 -112 147 47V263H385L384 64Q383 -33 336 -142T209 -325ZM545 -325L402 -246Q488 -98 491 48V263H729L728 60Q726 -36 676 -145T545 -325Z" />
|
||||
<glyph unicode="•" horiz-adv-x="736" d="M135 766Q135 870 201 933T371 996Q479 996 543 934T610 771V728Q610 625 545 563T373 500Q268 500 202 562T135 731V766Z" />
|
||||
<glyph unicode="‹" horiz-adv-x="638" d="M334 524L574 125H388L108 515V534L388 924H574L334 524Z" />
|
||||
<glyph unicode="›" horiz-adv-x="618" d="M267 923L547 533V514L267 124H80L320 523L80 923H267Z" />
|
||||
</font>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 48 KiB |