Version Description
- Security bug fixes
- fix IP exclusion issue
Download this release
Release Info
Developer | osamaesh |
Plugin | Visitors Traffic Real Time Statistics |
Version | 4.1 |
Comparing to | |
See all releases |
Code changes from version 3.16 to 4.1
- Visitors-Traffic-Real-Time-Statistics.php +1 -1
- WPHitsCounter.php +16 -23
- ahc_settings.php +17 -21
- functions.php +64 -55
- geoip/.gitignore +0 -9
- geoip/.travis.yml +0 -31
- geoip/ChangeLog.md +0 -137
- geoip/LICENSE +0 -502
- geoip/README.md +0 -98
- geoip/admin/build_geoipregionvars.php +0 -35
- geoip/composer.json +0 -29
- geoip/data/GeoIP.dat +0 -0
- geoip/examples/asn-v6.php +0 -17
- geoip/examples/benchmark.php +0 -70
- geoip/examples/city-v6.php +0 -33
- geoip/examples/city.php +0 -33
- geoip/examples/country-v6.php +0 -32
- geoip/examples/country.php +0 -20
- geoip/examples/domain.php +0 -16
- geoip/examples/netspeed.php +0 -29
- geoip/examples/netspeedcell.php +0 -14
- geoip/examples/org.php +0 -22
- geoip/examples/region.php +0 -20
- geoip/phpunit.xml.dist +0 -28
- geoip/src/geoip.inc +0 -767
- geoip/src/geoipcity.inc +0 -171
- geoip/src/geoipregionvars.php +0 -4630
- geoip/src/timezone.php +0 -2235
- geoip/tests/CityTest.php +0 -34
- geoip/tests/CountryTest.php +0 -29
- geoip/tests/DomainTest.php +0 -15
- geoip/tests/NetspeedcellTest.php +0 -14
- geoip/tests/OrgTest.php +0 -14
- geoip/tests/RegionTest.php +0 -23
- geoip/tests/bootstrap.php +0 -5
- geoip/tests/data/GeoIP.dat +0 -0
- geoip/tests/data/GeoIPASNum.dat +0 -0
- geoip/tests/data/GeoIPCity.dat +0 -0
- geoip/tests/data/GeoIPDomain.dat +0 -0
- geoip/tests/data/GeoIPISP.dat +0 -0
- geoip/tests/data/GeoIPNetSpeedCell.dat +0 -0
- geoip/tests/data/GeoIPOrg.dat +0 -0
- geoip/tests/data/GeoIPRegion.dat +0 -0
- geoip/tests/data/GeoIPv6.dat +0 -0
- geoip/tests/data/GeoLiteCityIPv6.dat +0 -0
- geoip/timezone/make_time_zone_php_code.pl +0 -57
- geoip/timezone/test_timezone.php +0 -5
- init.php +1 -1
- lib/bootstrap/css/bootstrap.css +11263 -4
- lib/bootstrap/css/bootstrap.min.css +2 -2
- lib/bootstrap/css/desktop.ini +3 -0
- lib/bootstrap/js/bootstrap.min.js +1 -2
Visitors-Traffic-Real-Time-Statistics.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Visitor Traffic Real Time Statistics
|
|
4 |
Description: Hits counter that shows analytical numbers of your WordPress site visitors and hits.
|
5 |
Author: wp-buy
|
6 |
Author URI: https://www.wp-buy.com/
|
7 |
-
Version:
|
8 |
Text Domain: visitors-traffic-real-time-statistics
|
9 |
Domain Path: /languages
|
10 |
*/
|
4 |
Description: Hits counter that shows analytical numbers of your WordPress site visitors and hits.
|
5 |
Author: wp-buy
|
6 |
Author URI: https://www.wp-buy.com/
|
7 |
+
Version: 4.1
|
8 |
Text Domain: visitors-traffic-real-time-statistics
|
9 |
Domain Path: /languages
|
10 |
*/
|
WPHitsCounter.php
CHANGED
@@ -338,32 +338,14 @@ class WPHitsCounter {
|
|
338 |
* @return void
|
339 |
|
340 |
*/
|
341 |
-
/* protected function getCountryInternetCode() {
|
342 |
|
343 |
-
if (!$this->ipIsUnknown) {
|
344 |
-
|
345 |
-
$gi = geoip_open(AHCFREE_PLUGIN_ROOT_DIR . AHCFREE_DS . "geoip" . AHCFREE_DS . "data" . AHCFREE_DS . "GeoIP.dat", GEOIP_STANDARD);
|
346 |
-
|
347 |
-
$this->countryInternetCode = geoip_country_code_by_addr($gi, $this->ipAddress);
|
348 |
-
|
349 |
-
geoip_close($gi);
|
350 |
-
}
|
351 |
-
|
352 |
-
if (empty($this->countryInternetCode)) {
|
353 |
-
|
354 |
-
$this->countryInternetCode = 'XX';
|
355 |
-
}
|
356 |
-
}*/
|
357 |
|
358 |
protected function getCountryInternetCode() {
|
359 |
-
//https://nominatim.openstreetmap.org/reverse?format=json&lat=31.354675&lon=34.308826&zoom=18&addressdetails=1
|
360 |
-
|
361 |
|
362 |
-
|
363 |
if (!$this->ipIsUnknown) {
|
364 |
|
365 |
$ip_data = ahcfree_advanced_get_link("http://ip-api.com/json/".$this->ipAddress);
|
366 |
-
|
367 |
|
368 |
$countryCode = isset($ip_data->countryCode) ? $ip_data->countryCode : '';
|
369 |
|
@@ -372,13 +354,24 @@ class WPHitsCounter {
|
|
372 |
$this->countryInternetCode = $countryCode;
|
373 |
|
374 |
}else{
|
375 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
376 |
|
377 |
-
$gi = geoip_open(AHCFREE_PLUGIN_ROOT_DIR . AHCFREE_DS . "geoip" . AHCFREE_DS . "data" . AHCFREE_DS . "GeoIP.dat", GEOIP_STANDARD);
|
378 |
|
379 |
-
|
|
|
380 |
|
381 |
-
|
382 |
}
|
383 |
}
|
384 |
|
338 |
* @return void
|
339 |
|
340 |
*/
|
|
|
341 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
342 |
|
343 |
protected function getCountryInternetCode() {
|
|
|
|
|
344 |
|
|
|
345 |
if (!$this->ipIsUnknown) {
|
346 |
|
347 |
$ip_data = ahcfree_advanced_get_link("http://ip-api.com/json/".$this->ipAddress);
|
348 |
+
|
349 |
|
350 |
$countryCode = isset($ip_data->countryCode) ? $ip_data->countryCode : '';
|
351 |
|
354 |
$this->countryInternetCode = $countryCode;
|
355 |
|
356 |
}else{
|
357 |
+
|
358 |
+
$ip_data = ahcfree_advanced_get_link("https://geoip-db.com/json/".$vtr_ip_address);
|
359 |
+
|
360 |
+
$ahc_city = isset($ip_data->city) ? $ip_data->city : '';
|
361 |
+
$ahc_region = isset($ip_data->state) ? $ip_data->state : '';
|
362 |
+
$this->countryInternetCode = isset($ip_data->country_code) ? $ip_data->country_code : '';
|
363 |
+
|
364 |
+
if(empty($ip_data->country_code))
|
365 |
+
{
|
366 |
+
$ip_data = (ahcfree_advanced_get_link("http://www.geoplugin.net/json.gp?ip=".$vtr_ip_address));
|
367 |
+
|
368 |
+
$this->countryInternetCode = isset($ip_data->geoplugin_countryCode) ? $ip_data->geoplugin_countryCode : '';
|
369 |
|
|
|
370 |
|
371 |
+
}
|
372 |
+
|
373 |
|
374 |
+
|
375 |
}
|
376 |
}
|
377 |
|
ahc_settings.php
CHANGED
@@ -1,13 +1,5 @@
|
|
1 |
<?php
|
2 |
-
if(!
|
3 |
-
{
|
4 |
-
die('Sorry, you are not allowed to access this page.' );
|
5 |
-
return;
|
6 |
-
}
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
?>
|
12 |
<script language="javascript" type="text/javascript">
|
13 |
|
@@ -69,7 +61,7 @@ body{
|
|
69 |
//ahcfree_include_scripts();
|
70 |
$msg = '';
|
71 |
$save_btn = (isset($_POST['save'])) ? sanitize_text_field($_POST['save']) : '';
|
72 |
-
|
73 |
|
74 |
if(!empty($save_btn))
|
75 |
{
|
@@ -79,7 +71,8 @@ $verify = isset($_POST['ahc_settings_send']) ? wp_verify_nonce( sanitize_text_fi
|
|
79 |
{
|
80 |
if (ahcfree_savesettings())
|
81 |
{
|
82 |
-
|
|
|
83 |
}
|
84 |
}
|
85 |
}
|
@@ -97,21 +90,19 @@ $ahcproUserRoles = get_option('ahcproUserRoles');
|
|
97 |
$ahcproRobots = get_option('ahcproRobots');
|
98 |
?>
|
99 |
<div class="ahc_main_container" style="background-color:white; margin:20px; width:auto; padding:20px; border-radius:20px">
|
100 |
-
<h3><img width="40px" src="<?php echo plugins_url('/images/logo.png', AHCFREE_PLUGIN_MAIN_FILE) ?>"> Visitor Traffic Real Time Statistics Free <a title="change settings" href="admin.php?page=ahc_hits_counter_settings"><img src="<?php echo plugins_url('/images/settings.jpg', AHCFREE_PLUGIN_MAIN_FILE) ?>" /></a></h3><br />
|
101 |
<div class="panel">
|
102 |
<h2 class="box-heading">Settings</h2><hr>
|
103 |
<div class="panelcontent">
|
104 |
<form method="post" enctype="multipart/form-data" name="myform">
|
105 |
-
|
106 |
-
|
107 |
<?php $nonce = wp_create_nonce( 'ahc_settings_action' ); ?>
|
108 |
-
<input type="hidden" name="ahc_settings_send" value="<?php echo $nonce ?>" />
|
109 |
|
110 |
<div class="row">
|
111 |
<div class="form-group col-md-6">
|
112 |
|
113 |
<label for="exampleInput">show hits in last</label>
|
114 |
-
<input type="text" value="<?php echo $hits_days ?>" class="form-control" id="set_hits_days" name="set_hits_days" placeholder="Enter number of days">
|
115 |
<small id="Help" class="form-text text-muted">this will affect the chart in the statistics page. default: 14 day</small>
|
116 |
</div>
|
117 |
|
@@ -127,7 +118,7 @@ $ahcproRobots = get_option('ahcproRobots');
|
|
127 |
$timezones = DateTimeZone::listIdentifiers(DateTimeZone::ALL);
|
128 |
foreach ($timezones as $key => $value) {
|
129 |
?>
|
130 |
-
<option value="<?php echo $value; ?>" <?php echo ( $value == $custom_timezone_offset) ? 'selected' : ''; ?>><?php echo $value; ?></option>
|
131 |
<?php
|
132 |
}
|
133 |
?>
|
@@ -147,14 +138,14 @@ $ahcproRobots = get_option('ahcproRobots');
|
|
147 |
<div class="form-group col-md-6">
|
148 |
|
149 |
<label for="exampleInput">check for online users every</label>
|
150 |
-
<input type="text" value="<?php echo ($ajax_check / 1000) ?>" class="form-control" id="set_ajax_check" name="set_ajax_check" placeholder="Enter number of days">
|
151 |
<small id="Help" class="form-text text-muted">Enter total seconds. default: 10 seconds</small>
|
152 |
|
153 |
</div>
|
154 |
<div class="form-group col-md-6">
|
155 |
<label for="exampleInput">IP's to exclude</label>
|
156 |
-
<textarea placeholder='192.168.
|
157 |
-
<small id="Help" class="form-text text-muted">Excluded IPs will not be tracked by your counter,
|
158 |
</div>
|
159 |
|
160 |
</div>
|
@@ -264,7 +255,12 @@ jQuery(document).ready(function() {
|
|
264 |
font-size: 16px;" />
|
265 |
</div>
|
266 |
<?php
|
267 |
-
|
|
|
|
|
|
|
|
|
|
|
268 |
?>
|
269 |
</form>
|
270 |
|
1 |
<?php
|
2 |
+
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
?>
|
4 |
<script language="javascript" type="text/javascript">
|
5 |
|
61 |
//ahcfree_include_scripts();
|
62 |
$msg = '';
|
63 |
$save_btn = (isset($_POST['save'])) ? sanitize_text_field($_POST['save']) : '';
|
64 |
+
$saved_suc = false;
|
65 |
|
66 |
if(!empty($save_btn))
|
67 |
{
|
71 |
{
|
72 |
if (ahcfree_savesettings())
|
73 |
{
|
74 |
+
$saved_suc = true;
|
75 |
+
|
76 |
}
|
77 |
}
|
78 |
}
|
90 |
$ahcproRobots = get_option('ahcproRobots');
|
91 |
?>
|
92 |
<div class="ahc_main_container" style="background-color:white; margin:20px; width:auto; padding:20px; border-radius:20px">
|
93 |
+
<h3><img width="40px" src="<?php echo esc_url(plugins_url('/images/logo.png', AHCFREE_PLUGIN_MAIN_FILE)); ?>"> Visitor Traffic Real Time Statistics Free <a title="change settings" href="admin.php?page=ahc_hits_counter_settings"><img src="<?php echo esc_url(plugins_url('/images/settings.jpg', AHCFREE_PLUGIN_MAIN_FILE)); ?>" /></a></h3><br />
|
94 |
<div class="panel">
|
95 |
<h2 class="box-heading">Settings</h2><hr>
|
96 |
<div class="panelcontent">
|
97 |
<form method="post" enctype="multipart/form-data" name="myform">
|
|
|
|
|
98 |
<?php $nonce = wp_create_nonce( 'ahc_settings_action' ); ?>
|
99 |
+
<input type="hidden" name="ahc_settings_send" value="<?php echo esc_attr($nonce); ?>" />
|
100 |
|
101 |
<div class="row">
|
102 |
<div class="form-group col-md-6">
|
103 |
|
104 |
<label for="exampleInput">show hits in last</label>
|
105 |
+
<input type="text" value="<?php echo esc_attr($hits_days); ?>" class="form-control" id="set_hits_days" name="set_hits_days" placeholder="Enter number of days">
|
106 |
<small id="Help" class="form-text text-muted">this will affect the chart in the statistics page. default: 14 day</small>
|
107 |
</div>
|
108 |
|
118 |
$timezones = DateTimeZone::listIdentifiers(DateTimeZone::ALL);
|
119 |
foreach ($timezones as $key => $value) {
|
120 |
?>
|
121 |
+
<option value="<?php echo esc_attr($value); ?>" <?php echo ( $value == $custom_timezone_offset) ? 'selected' : ''; ?>><?php echo esc_html($value); ?></option>
|
122 |
<?php
|
123 |
}
|
124 |
?>
|
138 |
<div class="form-group col-md-6">
|
139 |
|
140 |
<label for="exampleInput">check for online users every</label>
|
141 |
+
<input type="text" value="<?php echo esc_attr(intval($ajax_check) / 1000); ?>" class="form-control" id="set_ajax_check" name="set_ajax_check" placeholder="Enter number of days">
|
142 |
<small id="Help" class="form-text text-muted">Enter total seconds. default: 10 seconds</small>
|
143 |
|
144 |
</div>
|
145 |
<div class="form-group col-md-6">
|
146 |
<label for="exampleInput">IP's to exclude</label>
|
147 |
+
<textarea placeholder='192.168.1.1, 192.168.1.2' name="set_ips" id="set_ips" rows="3" class="form-control" ><?php echo esc_html($set_ips); ?></textarea>
|
148 |
+
<small id="Help" class="form-text text-muted">Excluded IPs will not be tracked by your counter, Example: 192.168.1.1, 192.168.1.2</small>
|
149 |
</div>
|
150 |
|
151 |
</div>
|
255 |
font-size: 16px;" />
|
256 |
</div>
|
257 |
<?php
|
258 |
+
if($saved_suc)
|
259 |
+
{
|
260 |
+
echo '<br /><b style="color:green; margin-left:30px; float:left">settings saved successfully</b><br /><b style=" margin-left:30px; float:left"><a href="admin.php?page=ahc_hits_counter_settings">back to settings</a> | <a href="admin.php?page=ahc_hits_counter_menu_free">back to dashboard</a></b>';
|
261 |
+
}
|
262 |
+
|
263 |
+
|
264 |
?>
|
265 |
</form>
|
266 |
|
functions.php
CHANGED
@@ -162,49 +162,58 @@ function ahcfree_google_map($map_option) {
|
|
162 |
*/
|
163 |
|
164 |
function ahcfree_savesettings() {
|
|
|
165 |
global $wpdb;
|
166 |
|
167 |
-
$set_hits_days = intval($_POST['set_hits_days']);
|
168 |
-
$set_ajax_check = intval($_POST['set_ajax_check']);
|
169 |
-
$posts_type = '';
|
170 |
-
$set_ips = ahc_free_sanitize_text_or_array_field($_POST['set_ips']);
|
171 |
-
$set_google_map = '';
|
172 |
-
$ahcfree_hide_top_bar_icon = isset($_POST['ahcfree_hide_top_bar_icon']) ? intval($_POST['ahcfree_hide_top_bar_icon']) : '0';
|
173 |
-
$ahcfree_ahcfree_haships = isset($_POST['ahcfree_ahcfree_haships']) ? intval($_POST['ahcfree_ahcfree_haships']) : '0';
|
174 |
-
$delete_plugin_data = isset($_POST['delete_plugin_data']) ? intval($_POST['delete_plugin_data']) : '';
|
175 |
|
176 |
-
|
177 |
-
if ($custom_timezone_offset && $custom_timezone_offset != '') {
|
178 |
-
update_option('ahcfree_custom_timezone', $custom_timezone_offset);
|
179 |
-
}
|
180 |
|
181 |
-
|
182 |
-
update_option('ahcfree_ahcfree_haships', $ahcfree_ahcfree_haships);
|
183 |
-
update_option('ahcfree_delete_plugin_data_on_uninstall', $delete_plugin_data);
|
184 |
-
update_option('ahcfree_hide_top_bar_icon', $ahcfree_hide_top_bar_icon);
|
185 |
-
|
186 |
-
|
187 |
-
$ahcproUserRoles = (isset($_POST['ahcproUserRoles']) && is_array($_POST['ahcproUserRoles'])) ? $_POST['ahcproUserRoles'] : ''; // sanitize inside the loop
|
188 |
-
if(isset($ahcproUserRoles))
|
189 |
{
|
190 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
191 |
{
|
192 |
-
$ahcproUserRoles
|
|
|
|
|
|
|
|
|
|
|
|
|
193 |
}
|
194 |
|
195 |
-
|
196 |
-
update_option('ahcproUserRoles',$ahcproUserRoles);
|
197 |
-
}
|
198 |
-
|
199 |
-
ahcfree_update_tables();
|
200 |
|
201 |
-
|
202 |
-
|
203 |
|
204 |
-
|
205 |
|
206 |
-
|
207 |
-
|
|
|
|
|
208 |
|
209 |
return false;
|
210 |
}
|
@@ -2445,30 +2454,30 @@ function ahcfree_get_subpage_name($page_name) {
|
|
2445 |
function ahcfree_track_visitor()
|
2446 |
{
|
2447 |
$exclude_ips_arr = array();
|
2448 |
-
$exclude_ips =
|
|
|
2449 |
if ($exclude_ips == '' or empty($exclude_ips)) {
|
2450 |
$exclude_ips = array();
|
2451 |
}else{
|
2452 |
|
2453 |
-
$exclude_ips = explode("
|
2454 |
}
|
2455 |
|
2456 |
-
|
2457 |
$client_ip_address = trim(ahcfree_get_client_ip_address());
|
2458 |
foreach($exclude_ips as $k=>$v)
|
2459 |
{
|
2460 |
-
|
2461 |
if($v!='')
|
2462 |
{
|
2463 |
|
2464 |
$exclude_ips_arr[] = trim($v);
|
2465 |
}
|
2466 |
}
|
2467 |
-
|
2468 |
-
|
2469 |
|
2470 |
if (!ahcfree_is_login_page() && !ahcfree_is_search_engine_bot() && !ahcfree_is_wordpress_bot()) {
|
|
|
2471 |
if (!in_array($client_ip_address, $exclude_ips_arr)) {
|
|
|
2472 |
|
2473 |
$page_id = intval($_POST['page_id']);
|
2474 |
$page_title = ahc_free_sanitize_text_or_array_field($_POST['page_title']);
|
@@ -3435,9 +3444,9 @@ class ahcfree_vtrts_widget extends WP_Widget {
|
|
3435 |
public function widget($args, $instance) {
|
3436 |
$title = apply_filters('widget_title', $instance['title']);
|
3437 |
// before and after widget arguments are defined by themes
|
3438 |
-
|
3439 |
if (!empty($title))
|
3440 |
-
echo $
|
3441 |
|
3442 |
|
3443 |
$ahc_sum_stats = ahcfree_get_summary_statistics();
|
@@ -3445,28 +3454,28 @@ class ahcfree_vtrts_widget extends WP_Widget {
|
|
3445 |
if(is_array($instance) )
|
3446 |
{
|
3447 |
// This is where you run the code and display the output
|
3448 |
-
echo '<ul style="list-style:none; ' . $instance['fontTypeCombo'] . '; font-size:' . $instance['fontSizeCombo'] . 'px">';
|
3449 |
|
3450 |
if (isset($instance['display_visitorstoday']) && ($instance['display_visitorstoday'] == 1 or $instance['display_visitorstoday'] == '1')) {
|
3451 |
-
echo '<li><b>
|
3452 |
}
|
3453 |
if (isset($instance['display_pageviewtoday']) && ($instance['display_pageviewtoday'] == 1 or $instance['display_pageviewtoday'] == '1')) {
|
3454 |
-
echo '<li><b>
|
3455 |
}
|
3456 |
|
3457 |
if (isset($instance['display_totalvisitors']) && ($instance['display_totalvisitors'] == 1 or $instance['display_totalvisitors'] == '1')) {
|
3458 |
-
echo '<li><b>Total visitors : </b><span>' . ahcfree_NumFormat($ahc_sum_stats['total']['visitors']) . '</span></li>';
|
3459 |
}
|
3460 |
|
3461 |
if (isset($instance['display_totalpageview']) && ($instance['display_totalpageview'] == 1 or $instance['display_totalpageview'] == '1')) {
|
3462 |
-
echo '<li><b>Total page
|
3463 |
}
|
3464 |
|
3465 |
|
3466 |
echo '</ul>';
|
3467 |
|
3468 |
}
|
3469 |
-
|
3470 |
}
|
3471 |
|
3472 |
// Widget Backend
|
@@ -3489,8 +3498,8 @@ class ahcfree_vtrts_widget extends WP_Widget {
|
|
3489 |
|
3490 |
|
3491 |
<p>
|
3492 |
-
<label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Widget Title:'); ?></label>
|
3493 |
-
<input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo esc_attr($title); ?>" />
|
3494 |
</p>
|
3495 |
|
3496 |
|
@@ -3529,12 +3538,12 @@ class ahcfree_vtrts_widget extends WP_Widget {
|
|
3529 |
|
3530 |
</p>
|
3531 |
<label for="<?php echo $this->get_field_id('fontSizeCombo'); ?>"><?php _e('Font Size:'); ?></label>
|
3532 |
-
<select class="widefat" id="<?php echo $this->get_field_id('fontSizeCombo'); ?>" name="<?php echo $this->get_field_name('fontSizeCombo'); ?>">
|
3533 |
<?php
|
3534 |
for ($fs = 8; $fs <= 22; $fs++) {
|
3535 |
$fontSizeCombo = (isset($fontSizeCombo)) ? $fontSizeCombo : '12';
|
3536 |
?>
|
3537 |
-
<option value="<?php echo $fs ?>" <?php selected($fontSizeCombo, $fs); ?>><?php echo $fs; ?>px</option>
|
3538 |
<?php } ?>
|
3539 |
</select>
|
3540 |
<p>
|
@@ -3543,7 +3552,7 @@ class ahcfree_vtrts_widget extends WP_Widget {
|
|
3543 |
|
3544 |
<p><em>Display :</em></p>
|
3545 |
<?php
|
3546 |
-
|
3547 |
$display_visitorstoday = isset($display_visitorstoday) ? $display_visitorstoday : '0';
|
3548 |
$display_pageviewtoday = isset($display_pageviewtoday) ? $display_pageviewtoday : '0';
|
3549 |
$display_totalpageview = isset($display_totalpageview) ? $display_totalpageview : '0';
|
@@ -3552,16 +3561,16 @@ class ahcfree_vtrts_widget extends WP_Widget {
|
|
3552 |
|
3553 |
|
3554 |
<p>
|
3555 |
-
<input class="widefat" id="<?php echo $this->get_field_id('display_visitorstoday'); ?>" name="<?php echo $this->get_field_name('display_visitorstoday'); ?>" type="checkbox" value="1" <?php checked($display_visitorstoday, '1'); ?>/> <label for="<?php echo $this->get_field_id('display_visitorstoday'); ?>">
|
3556 |
</p>
|
3557 |
<p>
|
3558 |
-
<input class="widefat" id="<?php echo $this->get_field_id('display_pageviewtoday'); ?>" name="<?php echo $this->get_field_name('display_pageviewtoday'); ?>" type="checkbox" value="1" <?php checked($display_pageviewtoday, '1'); ?>/> <label for="<?php echo $this->get_field_id('display_pageviewtoday'); ?>">
|
3559 |
</p>
|
3560 |
<p>
|
3561 |
-
<input class="widefat" id="<?php echo $this->get_field_id('display_totalpageview'); ?>" name="<?php echo $this->get_field_name('display_totalpageview'); ?>" type="checkbox" value="1" <?php checked($display_totalpageview, '1'); ?> /> <label for="<?php echo $this->get_field_id('display_totalpageview'); ?>">Total
|
3562 |
</p>
|
3563 |
<p>
|
3564 |
-
<input class="widefat" id="<?php echo $this->get_field_id('display_totalvisitors'); ?>" name="<?php echo $this->get_field_name('display_totalvisitors'); ?>" type="checkbox" value="1" <?php checked($display_totalvisitors, '1'); ?>/> <label for="<?php echo $this->get_field_id('display_totalvisitors'); ?>">Total
|
3565 |
</p>
|
3566 |
|
3567 |
<?php
|
162 |
*/
|
163 |
|
164 |
function ahcfree_savesettings() {
|
165 |
+
|
166 |
global $wpdb;
|
167 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
168 |
|
169 |
+
$verify = isset($_POST['ahc_settings_send']) ? wp_verify_nonce( sanitize_text_field($_POST['ahc_settings_send']), 'ahc_settings_action' ) : false;
|
|
|
|
|
|
|
170 |
|
171 |
+
if ($verify && current_user_can( 'manage_options' ))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
172 |
{
|
173 |
+
|
174 |
+
$set_hits_days = intval($_POST['set_hits_days']);
|
175 |
+
$set_ajax_check = intval($_POST['set_ajax_check']);
|
176 |
+
$posts_type = '';
|
177 |
+
$set_ips = ahc_free_sanitize_text_or_array_field($_POST['set_ips']);
|
178 |
+
$set_google_map = '';
|
179 |
+
$ahcfree_hide_top_bar_icon = isset($_POST['ahcfree_hide_top_bar_icon']) ? intval($_POST['ahcfree_hide_top_bar_icon']) : '0';
|
180 |
+
$ahcfree_ahcfree_haships = isset($_POST['ahcfree_ahcfree_haships']) ? intval($_POST['ahcfree_ahcfree_haships']) : '0';
|
181 |
+
$delete_plugin_data = isset($_POST['delete_plugin_data']) ? intval($_POST['delete_plugin_data']) : '';
|
182 |
+
|
183 |
+
$custom_timezone_offset = ahc_free_sanitize_text_or_array_field($_POST['set_custom_timezone']);
|
184 |
+
if ($custom_timezone_offset && $custom_timezone_offset != '') {
|
185 |
+
update_option('ahcfree_custom_timezone', $custom_timezone_offset);
|
186 |
+
}
|
187 |
+
|
188 |
+
$delete_plugin_data = (isset($delete_plugin_data)) ? intval($delete_plugin_data) : 0;
|
189 |
+
update_option('ahcfree_ahcfree_haships', $ahcfree_ahcfree_haships);
|
190 |
+
update_option('ahcfree_delete_plugin_data_on_uninstall', $delete_plugin_data);
|
191 |
+
update_option('ahcfree_hide_top_bar_icon', $ahcfree_hide_top_bar_icon);
|
192 |
+
|
193 |
+
|
194 |
+
$ahcproUserRoles = (isset($_POST['ahcproUserRoles']) && is_array($_POST['ahcproUserRoles'])) ? $_POST['ahcproUserRoles'] : ''; // sanitize inside the loop
|
195 |
+
if(isset($ahcproUserRoles))
|
196 |
{
|
197 |
+
foreach ($ahcproUserRoles as $v)
|
198 |
+
{
|
199 |
+
$ahcproUserRoles .= $v.",";
|
200 |
+
}
|
201 |
+
|
202 |
+
$ahcproUserRoles = substr($ahcproUserRoles,0,-1);
|
203 |
+
update_option('ahcproUserRoles',$ahcproUserRoles);
|
204 |
}
|
205 |
|
206 |
+
ahcfree_update_tables();
|
|
|
|
|
|
|
|
|
207 |
|
208 |
+
$sql = $wpdb->prepare("UPDATE `ahc_settings` set `set_hits_days` = %s, `set_ajax_check` = %s, `set_ips` = %s, `set_google_map` = %s ",
|
209 |
+
$set_hits_days, $set_ajax_check, $set_ips, $set_google_map);
|
210 |
|
211 |
+
if ($wpdb->query($sql) !== false) {
|
212 |
|
213 |
+
return true;
|
214 |
+
}
|
215 |
+
|
216 |
+
}
|
217 |
|
218 |
return false;
|
219 |
}
|
2454 |
function ahcfree_track_visitor()
|
2455 |
{
|
2456 |
$exclude_ips_arr = array();
|
2457 |
+
$exclude_ips = AHCFREE_EXCLUDE_IPS;
|
2458 |
+
|
2459 |
if ($exclude_ips == '' or empty($exclude_ips)) {
|
2460 |
$exclude_ips = array();
|
2461 |
}else{
|
2462 |
|
2463 |
+
$exclude_ips = explode(",", $exclude_ips);
|
2464 |
}
|
2465 |
|
|
|
2466 |
$client_ip_address = trim(ahcfree_get_client_ip_address());
|
2467 |
foreach($exclude_ips as $k=>$v)
|
2468 |
{
|
|
|
2469 |
if($v!='')
|
2470 |
{
|
2471 |
|
2472 |
$exclude_ips_arr[] = trim($v);
|
2473 |
}
|
2474 |
}
|
2475 |
+
|
|
|
2476 |
|
2477 |
if (!ahcfree_is_login_page() && !ahcfree_is_search_engine_bot() && !ahcfree_is_wordpress_bot()) {
|
2478 |
+
|
2479 |
if (!in_array($client_ip_address, $exclude_ips_arr)) {
|
2480 |
+
|
2481 |
|
2482 |
$page_id = intval($_POST['page_id']);
|
2483 |
$page_title = ahc_free_sanitize_text_or_array_field($_POST['page_title']);
|
3444 |
public function widget($args, $instance) {
|
3445 |
$title = apply_filters('widget_title', $instance['title']);
|
3446 |
// before and after widget arguments are defined by themes
|
3447 |
+
|
3448 |
if (!empty($title))
|
3449 |
+
echo esc_html($title);
|
3450 |
|
3451 |
|
3452 |
$ahc_sum_stats = ahcfree_get_summary_statistics();
|
3454 |
if(is_array($instance) )
|
3455 |
{
|
3456 |
// This is where you run the code and display the output
|
3457 |
+
echo '<ul style="list-style:none; ' . esc_attr($instance['fontTypeCombo']) . '; font-size:' . esc_attr($instance['fontSizeCombo']) . 'px">';
|
3458 |
|
3459 |
if (isset($instance['display_visitorstoday']) && ($instance['display_visitorstoday'] == 1 or $instance['display_visitorstoday'] == '1')) {
|
3460 |
+
echo '<li><b>Today\'s visitors: </b><span>' . ahcfree_NumFormat(intval($ahc_sum_stats['today']['visitors'])) . '</span></li>';
|
3461 |
}
|
3462 |
if (isset($instance['display_pageviewtoday']) && ($instance['display_pageviewtoday'] == 1 or $instance['display_pageviewtoday'] == '1')) {
|
3463 |
+
echo '<li><b>Today\'s page views: : </b><span>' . ahcfree_NumFormat(intval($ahc_sum_stats['today']['visits'])) . '</span></li>';
|
3464 |
}
|
3465 |
|
3466 |
if (isset($instance['display_totalvisitors']) && ($instance['display_totalvisitors'] == 1 or $instance['display_totalvisitors'] == '1')) {
|
3467 |
+
echo '<li><b>Total visitors : </b><span>' . ahcfree_NumFormat(intval($ahc_sum_stats['total']['visitors'])) . '</span></li>';
|
3468 |
}
|
3469 |
|
3470 |
if (isset($instance['display_totalpageview']) && ($instance['display_totalpageview'] == 1 or $instance['display_totalpageview'] == '1')) {
|
3471 |
+
echo '<li><b>Total page views: </b><span>' . ahcfree_NumFormat(intval($ahc_sum_stats['total']['visits'])) . '</span></li>';
|
3472 |
}
|
3473 |
|
3474 |
|
3475 |
echo '</ul>';
|
3476 |
|
3477 |
}
|
3478 |
+
|
3479 |
}
|
3480 |
|
3481 |
// Widget Backend
|
3498 |
|
3499 |
|
3500 |
<p>
|
3501 |
+
<label for="<?php echo esc_attr($this->get_field_id('title')); ?>"><?php _e('Widget Title:'); ?></label>
|
3502 |
+
<input class="widefat" id="<?php echo esc_attr($this->get_field_id('title')); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo esc_attr($title); ?>" />
|
3503 |
</p>
|
3504 |
|
3505 |
|
3538 |
|
3539 |
</p>
|
3540 |
<label for="<?php echo $this->get_field_id('fontSizeCombo'); ?>"><?php _e('Font Size:'); ?></label>
|
3541 |
+
<select class="widefat" id="<?php echo esc_attr($this->get_field_id('fontSizeCombo')); ?>" name="<?php echo esc_attr($this->get_field_name('fontSizeCombo')); ?>">
|
3542 |
<?php
|
3543 |
for ($fs = 8; $fs <= 22; $fs++) {
|
3544 |
$fontSizeCombo = (isset($fontSizeCombo)) ? $fontSizeCombo : '12';
|
3545 |
?>
|
3546 |
+
<option value="<?php echo intval($fs) ?>" <?php selected($fontSizeCombo, $fs); ?>><?php echo intval($fs); ?>px</option>
|
3547 |
<?php } ?>
|
3548 |
</select>
|
3549 |
<p>
|
3552 |
|
3553 |
<p><em>Display :</em></p>
|
3554 |
<?php
|
3555 |
+
|
3556 |
$display_visitorstoday = isset($display_visitorstoday) ? $display_visitorstoday : '0';
|
3557 |
$display_pageviewtoday = isset($display_pageviewtoday) ? $display_pageviewtoday : '0';
|
3558 |
$display_totalpageview = isset($display_totalpageview) ? $display_totalpageview : '0';
|
3561 |
|
3562 |
|
3563 |
<p>
|
3564 |
+
<input class="widefat" id="<?php echo esc_attr($this->get_field_id('display_visitorstoday')); ?>" name="<?php echo esc_attr($this->get_field_name('display_visitorstoday')); ?>" type="checkbox" value="1" <?php checked($display_visitorstoday, '1'); ?>/> <label for="<?php echo esc_attr($this->get_field_id('display_visitorstoday')); ?>">Today\'s visitors</label>
|
3565 |
</p>
|
3566 |
<p>
|
3567 |
+
<input class="widefat" id="<?php echo esc_attr($this->get_field_id('display_pageviewtoday')); ?>" name="<?php echo esc_attr($this->get_field_name('display_pageviewtoday')); ?>" type="checkbox" value="1" <?php checked($display_pageviewtoday, '1'); ?>/> <label for="<?php echo esc_attr($this->get_field_id('display_pageviewtoday')); ?>">Today\'s page views</label>
|
3568 |
</p>
|
3569 |
<p>
|
3570 |
+
<input class="widefat" id="<?php echo esc_attr($this->get_field_id('display_totalpageview')); ?>" name="<?php echo esc_attr($this->get_field_name('display_totalpageview')); ?>" type="checkbox" value="1" <?php checked($display_totalpageview, '1'); ?> /> <label for="<?php echo esc_attr($this->get_field_id('display_totalpageview')); ?>">Total page views</label>
|
3571 |
</p>
|
3572 |
<p>
|
3573 |
+
<input class="widefat" id="<?php echo esc_attr($this->get_field_id('display_totalvisitors')); ?>" name="<?php echo esc_attr($this->get_field_name('display_totalvisitors')); ?>" type="checkbox" value="1" <?php checked($display_totalvisitors, '1'); ?>/> <label for="<?php echo esc_attr($this->get_field_id('display_totalvisitors')); ?>">Total visitors</label>
|
3574 |
</p>
|
3575 |
|
3576 |
<?php
|
geoip/.gitignore
DELETED
@@ -1,9 +0,0 @@
|
|
1 |
-
_site
|
2 |
-
.gh-pages
|
3 |
-
composer.lock
|
4 |
-
composer.phar
|
5 |
-
phpunit.xml
|
6 |
-
vendor/
|
7 |
-
*.sw?
|
8 |
-
t.php
|
9 |
-
*.old
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
geoip/.travis.yml
DELETED
@@ -1,31 +0,0 @@
|
|
1 |
-
language: php
|
2 |
-
|
3 |
-
php:
|
4 |
-
- 5.3
|
5 |
-
- 5.4
|
6 |
-
- 5.5
|
7 |
-
- 5.6
|
8 |
-
- hhvm
|
9 |
-
|
10 |
-
matrix:
|
11 |
-
allow_failures:
|
12 |
-
- php: hhvm
|
13 |
-
|
14 |
-
before_install:
|
15 |
-
- composer self-update
|
16 |
-
- composer install --dev -n --prefer-source
|
17 |
-
- phpenv rehash
|
18 |
-
- mkdir -p build/logs
|
19 |
-
|
20 |
-
script:
|
21 |
-
- phpunit -c phpunit.xml.dist
|
22 |
-
|
23 |
-
after_script:
|
24 |
-
- php vendor/bin/coveralls
|
25 |
-
|
26 |
-
notifications:
|
27 |
-
email:
|
28 |
-
recipients:
|
29 |
-
- dev@maxmind.com
|
30 |
-
on_success: change
|
31 |
-
on_failure: always
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
geoip/ChangeLog.md
DELETED
@@ -1,137 +0,0 @@
|
|
1 |
-
# Change Log #
|
2 |
-
|
3 |
-
## 1.15 (2014-??-??)
|
4 |
-
|
5 |
-
* Removed broken distributed queries code.
|
6 |
-
|
7 |
-
## 1.14 (2013-11-05)
|
8 |
-
|
9 |
-
* Fix lookup issues with some domain databases ( Boris Zentner )
|
10 |
-
* Reorganize and clean up code ( Gregory Oschwald )
|
11 |
-
* Fix for module when mbstring extension is missing ( Gregory Oschwald )
|
12 |
-
* Update time zones ( Boris Zentner )
|
13 |
-
|
14 |
-
## 1.13 (2013-05-27)
|
15 |
-
|
16 |
-
* Composer support ( Maksim Kotlyar )
|
17 |
-
* Remove duplicate key - A placeholder for unused countries.
|
18 |
-
( Boris Zentner )
|
19 |
-
|
20 |
-
## 1.12 (2013-02-20)
|
21 |
-
|
22 |
-
* Update FIPS Codes ( Boris Zentner )
|
23 |
-
* Add South Sudan ( Boris Zentner )
|
24 |
-
* Remove trailing space ( Boris Zentner )
|
25 |
-
|
26 |
-
## 1.11 (2012-07-08)
|
27 |
-
|
28 |
-
* Update Time Zones ( Boris Zentner )
|
29 |
-
* Update FIPS codes ( Boris Zentner )
|
30 |
-
|
31 |
-
## 1.10 (2012-03-26)
|
32 |
-
|
33 |
-
* Update time zones and country codes ( Boris Zentner )
|
34 |
-
* Add example for netspeedcell databases. ( Boris Zentner )
|
35 |
-
|
36 |
-
## 1.9 (2011-08-23)
|
37 |
-
|
38 |
-
* Add new datatypes
|
39 |
-
GEOIP_COUNTRY_EDITION_V6, GEOIP_CITY_EDITION_REV1_V6
|
40 |
-
GEOIP_CITY_EDITION_REV0_V6, GEOIP_NETSPEED_EDITION_REV1,
|
41 |
-
GEOIP_NETSPEED_EDITION_REV1_V6, GEOIP_ASNUM_EDITION_V6,
|
42 |
-
GEOIP_ORG_EDITION_V6, GEOIP_DOMAIN_EDITION_V6,
|
43 |
-
GEOIP_ISP_EDITION_V6 ( Boris Zentner )
|
44 |
-
* Add new functions
|
45 |
-
geoip_country_id_by_name_v6
|
46 |
-
geoip_country_code_by_name_v6
|
47 |
-
geoip_country_name_by_name_v6
|
48 |
-
geoip_country_id_by_addr_v6
|
49 |
-
geoip_country_code_by_addr_v6
|
50 |
-
geoip_country_name_by_addr_v6
|
51 |
-
geoip_name_by_addr_v6
|
52 |
-
GeoIP_record_by_addr_v6 ( Boris Zentner )
|
53 |
-
* Add new examples sample-v6.php, sample_city-v6.php and
|
54 |
-
sample_asn-v6.php ( Boris Zentner )
|
55 |
-
* Replace ereg with substr ( Boris Zentner )
|
56 |
-
* replace split by explode ( Boris Zentner )
|
57 |
-
* Add all missing timezones ( Boris Zentner )
|
58 |
-
* Fix some 3letter codes ( Boris Zentner )
|
59 |
-
* Fix some continent codes ( Boris Zentner )
|
60 |
-
* Update FIPS codes 20100810 ( Boris Zentner )
|
61 |
-
* Add new database types GEOIP_LOCATIONA_EDITION, GEOIP_DOMAIN_EDITION
|
62 |
-
and GEOIP_ACCURACYRADIUS_EDITION ( Boris Zentner )
|
63 |
-
* Workaround php's broken usage of mb_substr instead of substr with
|
64 |
-
mbstring.func_overload and mbstring.internal_encoding ( Boris Zentner )
|
65 |
-
* Change Turkey's continent code from AS to EU ( Boris Zentner )
|
66 |
-
* Update FIPS codes 20090723 ( Boris Zentner )
|
67 |
-
|
68 |
-
## 1.8 (2009-04-02)
|
69 |
-
|
70 |
-
* Add continent_code to the city record. See: sample_city.php ( Boris Zentner )
|
71 |
-
* Update FIPS codes 20090401 ( Boris Zentner )
|
72 |
-
* Fixed spelling of Kazakhstan, was Kazakstan
|
73 |
-
* Fix TN FIPS codes and add two new TH79 and TH80 ( Boris Zentner )
|
74 |
-
* Fix geoip_country_code_by_addr when used with a city database for unknown or private records ( cpw )
|
75 |
-
* Update timezone.php
|
76 |
-
* Sync geoipregionvars.php with fips codes from Jan, 14th 2009 ( Boris Zentner )
|
77 |
-
* use metro_code in sample_city.php ( Boris Zentner )
|
78 |
-
* replace the depreciated dma_code field with metro_code ( Boris Zentner )
|
79 |
-
* remove wrong but unreferenced Singapur SG fips regions codes ( Boris Zentner )
|
80 |
-
* update regions ( geoipregionvars.php ) ( Boris Zentner )
|
81 |
-
* Die when the database file is not found or readable ( Boris Zentner )
|
82 |
-
|
83 |
-
## 1.7 (2008-1-8)
|
84 |
-
|
85 |
-
* Added BL/Saint Barthelemy, MF/Saint Martin (ISO-3166-1 additions)
|
86 |
-
* fixed bug with newlines in Country Name
|
87 |
-
* replaced $s_array[size] with $s_array['size'] (Daniel Horchner)
|
88 |
-
* Fix bug where PHP API didn't work with new edition of GeoIP ISP
|
89 |
-
1.6 2007-1-10
|
90 |
-
* Added AX/Aland Islands, GG/Guernsey, IM/Isle of Man, JE/Jersey (ISO-3166-1 changes)
|
91 |
-
* Replaced CS/Serbia and Montenegro with RS/Serbia, removed ZR/Zaire, added ME/Montenegro
|
92 |
-
* geoip_country_(code|name)_by_addr now work against Geo(IP|Lite) City (Frank Mather)
|
93 |
-
* Added code to lookup zoneinfo timezone given country and region (Frank Mather)
|
94 |
-
* TP/East Timor changed to TL/Timor-Leste, reflecting changes in ISO-3166
|
95 |
-
|
96 |
-
## 1.5 (2005-11-01)
|
97 |
-
|
98 |
-
* Added Shared Memory support for GeoIP City (Frank Mather)
|
99 |
-
* Replaced Yugoslavia with Serbia and Montenegro
|
100 |
-
* Removed global declaration for $GEOIP_COUNTRY_CODE_TO_NUMBER, $GEOIP_COUNTRY_CODES,
|
101 |
-
and $GEOIP_COUNTRY_CODES3
|
102 |
-
|
103 |
-
## 1.4 (2005-01-13)
|
104 |
-
|
105 |
-
* Andrew Hill, Awarez Ltd. (http://www.awarez.net):
|
106 |
-
* Formatted file according to PEAR library standards.
|
107 |
-
* Moved $GEOIP_COUNTRY_CODE_TO_NUMBER, $GEOIP_COUNTRY_CODES,
|
108 |
-
$GEOIP_COUNTRY_CODES3 and $GEOIP_COUNTRY_NAMES into the
|
109 |
-
GeoIP class, so that library will still work even when
|
110 |
-
not included in the $GLOBAL context.
|
111 |
-
* Updated geoip_country_code_by_addr to work with PHP5 (Eric of Host Ultra)
|
112 |
-
* Replaced bit operators (| and &) with logical operators (|| and &&)
|
113 |
-
* Defined GEOIP_ISP_EDITION
|
114 |
-
|
115 |
-
## 1.3 (2004-08-04)
|
116 |
-
|
117 |
-
* Changed license from GPL to LGPL so code can be included in PEAR
|
118 |
-
* added global definitions to prevent undefined variables error when including
|
119 |
-
from function (C�dric Dufour)
|
120 |
-
* Updated country names
|
121 |
-
* Added support for GeoIP City, version 1 with DMA and Area codes
|
122 |
-
|
123 |
-
## 1.2 (2003-10-28)
|
124 |
-
|
125 |
-
* Added support for Shared Memory (Jason Priebe)
|
126 |
-
* Added support for Distributed queries
|
127 |
-
* Added support for GeoIP Region, version 1
|
128 |
-
* Added Anonymous Proxy and Satellite Provider code/labels
|
129 |
-
* Changed Taiwan, Province of China to Taiwan
|
130 |
-
|
131 |
-
## 1.1 (2003-01-15)
|
132 |
-
|
133 |
-
* Added support for GeoIP Region and GeoIP City
|
134 |
-
|
135 |
-
## 1.0 (2002-11-21)
|
136 |
-
|
137 |
-
* Initial checkin to CVS
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
geoip/LICENSE
DELETED
@@ -1,502 +0,0 @@
|
|
1 |
-
GNU LESSER GENERAL PUBLIC LICENSE
|
2 |
-
Version 2.1, February 1999
|
3 |
-
|
4 |
-
Copyright (C) 1991, 1999 Free Software Foundation, Inc.
|
5 |
-
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
6 |
-
Everyone is permitted to copy and distribute verbatim copies
|
7 |
-
of this license document, but changing it is not allowed.
|
8 |
-
|
9 |
-
[This is the first released version of the Lesser GPL. It also counts
|
10 |
-
as the successor of the GNU Library Public License, version 2, hence
|
11 |
-
the version number 2.1.]
|
12 |
-
|
13 |
-
Preamble
|
14 |
-
|
15 |
-
The licenses for most software are designed to take away your
|
16 |
-
freedom to share and change it. By contrast, the GNU General Public
|
17 |
-
Licenses are intended to guarantee your freedom to share and change
|
18 |
-
free software--to make sure the software is free for all its users.
|
19 |
-
|
20 |
-
This license, the Lesser General Public License, applies to some
|
21 |
-
specially designated software packages--typically libraries--of the
|
22 |
-
Free Software Foundation and other authors who decide to use it. You
|
23 |
-
can use it too, but we suggest you first think carefully about whether
|
24 |
-
this license or the ordinary General Public License is the better
|
25 |
-
strategy to use in any particular case, based on the explanations below.
|
26 |
-
|
27 |
-
When we speak of free software, we are referring to freedom of use,
|
28 |
-
not price. Our General Public Licenses are designed to make sure that
|
29 |
-
you have the freedom to distribute copies of free software (and charge
|
30 |
-
for this service if you wish); that you receive source code or can get
|
31 |
-
it if you want it; that you can change the software and use pieces of
|
32 |
-
it in new free programs; and that you are informed that you can do
|
33 |
-
these things.
|
34 |
-
|
35 |
-
To protect your rights, we need to make restrictions that forbid
|
36 |
-
distributors to deny you these rights or to ask you to surrender these
|
37 |
-
rights. These restrictions translate to certain responsibilities for
|
38 |
-
you if you distribute copies of the library or if you modify it.
|
39 |
-
|
40 |
-
For example, if you distribute copies of the library, whether gratis
|
41 |
-
or for a fee, you must give the recipients all the rights that we gave
|
42 |
-
you. You must make sure that they, too, receive or can get the source
|
43 |
-
code. If you link other code with the library, you must provide
|
44 |
-
complete object files to the recipients, so that they can relink them
|
45 |
-
with the library after making changes to the library and recompiling
|
46 |
-
it. And you must show them these terms so they know their rights.
|
47 |
-
|
48 |
-
We protect your rights with a two-step method: (1) we copyright the
|
49 |
-
library, and (2) we offer you this license, which gives you legal
|
50 |
-
permission to copy, distribute and/or modify the library.
|
51 |
-
|
52 |
-
To protect each distributor, we want to make it very clear that
|
53 |
-
there is no warranty for the free library. Also, if the library is
|
54 |
-
modified by someone else and passed on, the recipients should know
|
55 |
-
that what they have is not the original version, so that the original
|
56 |
-
author's reputation will not be affected by problems that might be
|
57 |
-
introduced by others.
|
58 |
-
|
59 |
-
Finally, software patents pose a constant threat to the existence of
|
60 |
-
any free program. We wish to make sure that a company cannot
|
61 |
-
effectively restrict the users of a free program by obtaining a
|
62 |
-
restrictive license from a patent holder. Therefore, we insist that
|
63 |
-
any patent license obtained for a version of the library must be
|
64 |
-
consistent with the full freedom of use specified in this license.
|
65 |
-
|
66 |
-
Most GNU software, including some libraries, is covered by the
|
67 |
-
ordinary GNU General Public License. This license, the GNU Lesser
|
68 |
-
General Public License, applies to certain designated libraries, and
|
69 |
-
is quite different from the ordinary General Public License. We use
|
70 |
-
this license for certain libraries in order to permit linking those
|
71 |
-
libraries into non-free programs.
|
72 |
-
|
73 |
-
When a program is linked with a library, whether statically or using
|
74 |
-
a shared library, the combination of the two is legally speaking a
|
75 |
-
combined work, a derivative of the original library. The ordinary
|
76 |
-
General Public License therefore permits such linking only if the
|
77 |
-
entire combination fits its criteria of freedom. The Lesser General
|
78 |
-
Public License permits more lax criteria for linking other code with
|
79 |
-
the library.
|
80 |
-
|
81 |
-
We call this license the "Lesser" General Public License because it
|
82 |
-
does Less to protect the user's freedom than the ordinary General
|
83 |
-
Public License. It also provides other free software developers Less
|
84 |
-
of an advantage over competing non-free programs. These disadvantages
|
85 |
-
are the reason we use the ordinary General Public License for many
|
86 |
-
libraries. However, the Lesser license provides advantages in certain
|
87 |
-
special circumstances.
|
88 |
-
|
89 |
-
For example, on rare occasions, there may be a special need to
|
90 |
-
encourage the widest possible use of a certain library, so that it becomes
|
91 |
-
a de-facto standard. To achieve this, non-free programs must be
|
92 |
-
allowed to use the library. A more frequent case is that a free
|
93 |
-
library does the same job as widely used non-free libraries. In this
|
94 |
-
case, there is little to gain by limiting the free library to free
|
95 |
-
software only, so we use the Lesser General Public License.
|
96 |
-
|
97 |
-
In other cases, permission to use a particular library in non-free
|
98 |
-
programs enables a greater number of people to use a large body of
|
99 |
-
free software. For example, permission to use the GNU C Library in
|
100 |
-
non-free programs enables many more people to use the whole GNU
|
101 |
-
operating system, as well as its variant, the GNU/Linux operating
|
102 |
-
system.
|
103 |
-
|
104 |
-
Although the Lesser General Public License is Less protective of the
|
105 |
-
users' freedom, it does ensure that the user of a program that is
|
106 |
-
linked with the Library has the freedom and the wherewithal to run
|
107 |
-
that program using a modified version of the Library.
|
108 |
-
|
109 |
-
The precise terms and conditions for copying, distribution and
|
110 |
-
modification follow. Pay close attention to the difference between a
|
111 |
-
"work based on the library" and a "work that uses the library". The
|
112 |
-
former contains code derived from the library, whereas the latter must
|
113 |
-
be combined with the library in order to run.
|
114 |
-
|
115 |
-
GNU LESSER GENERAL PUBLIC LICENSE
|
116 |
-
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
117 |
-
|
118 |
-
0. This License Agreement applies to any software library or other
|
119 |
-
program which contains a notice placed by the copyright holder or
|
120 |
-
other authorized party saying it may be distributed under the terms of
|
121 |
-
this Lesser General Public License (also called "this License").
|
122 |
-
Each licensee is addressed as "you".
|
123 |
-
|
124 |
-
A "library" means a collection of software functions and/or data
|
125 |
-
prepared so as to be conveniently linked with application programs
|
126 |
-
(which use some of those functions and data) to form executables.
|
127 |
-
|
128 |
-
The "Library", below, refers to any such software library or work
|
129 |
-
which has been distributed under these terms. A "work based on the
|
130 |
-
Library" means either the Library or any derivative work under
|
131 |
-
copyright law: that is to say, a work containing the Library or a
|
132 |
-
portion of it, either verbatim or with modifications and/or translated
|
133 |
-
straightforwardly into another language. (Hereinafter, translation is
|
134 |
-
included without limitation in the term "modification".)
|
135 |
-
|
136 |
-
"Source code" for a work means the preferred form of the work for
|
137 |
-
making modifications to it. For a library, complete source code means
|
138 |
-
all the source code for all modules it contains, plus any associated
|
139 |
-
interface definition files, plus the scripts used to control compilation
|
140 |
-
and installation of the library.
|
141 |
-
|
142 |
-
Activities other than copying, distribution and modification are not
|
143 |
-
covered by this License; they are outside its scope. The act of
|
144 |
-
running a program using the Library is not restricted, and output from
|
145 |
-
such a program is covered only if its contents constitute a work based
|
146 |
-
on the Library (independent of the use of the Library in a tool for
|
147 |
-
writing it). Whether that is true depends on what the Library does
|
148 |
-
and what the program that uses the Library does.
|
149 |
-
|
150 |
-
1. You may copy and distribute verbatim copies of the Library's
|
151 |
-
complete source code as you receive it, in any medium, provided that
|
152 |
-
you conspicuously and appropriately publish on each copy an
|
153 |
-
appropriate copyright notice and disclaimer of warranty; keep intact
|
154 |
-
all the notices that refer to this License and to the absence of any
|
155 |
-
warranty; and distribute a copy of this License along with the
|
156 |
-
Library.
|
157 |
-
|
158 |
-
You may charge a fee for the physical act of transferring a copy,
|
159 |
-
and you may at your option offer warranty protection in exchange for a
|
160 |
-
fee.
|
161 |
-
|
162 |
-
2. You may modify your copy or copies of the Library or any portion
|
163 |
-
of it, thus forming a work based on the Library, and copy and
|
164 |
-
distribute such modifications or work under the terms of Section 1
|
165 |
-
above, provided that you also meet all of these conditions:
|
166 |
-
|
167 |
-
a) The modified work must itself be a software library.
|
168 |
-
|
169 |
-
b) You must cause the files modified to carry prominent notices
|
170 |
-
stating that you changed the files and the date of any change.
|
171 |
-
|
172 |
-
c) You must cause the whole of the work to be licensed at no
|
173 |
-
charge to all third parties under the terms of this License.
|
174 |
-
|
175 |
-
d) If a facility in the modified Library refers to a function or a
|
176 |
-
table of data to be supplied by an application program that uses
|
177 |
-
the facility, other than as an argument passed when the facility
|
178 |
-
is invoked, then you must make a good faith effort to ensure that,
|
179 |
-
in the event an application does not supply such function or
|
180 |
-
table, the facility still operates, and performs whatever part of
|
181 |
-
its purpose remains meaningful.
|
182 |
-
|
183 |
-
(For example, a function in a library to compute square roots has
|
184 |
-
a purpose that is entirely well-defined independent of the
|
185 |
-
application. Therefore, Subsection 2d requires that any
|
186 |
-
application-supplied function or table used by this function must
|
187 |
-
be optional: if the application does not supply it, the square
|
188 |
-
root function must still compute square roots.)
|
189 |
-
|
190 |
-
These requirements apply to the modified work as a whole. If
|
191 |
-
identifiable sections of that work are not derived from the Library,
|
192 |
-
and can be reasonably considered independent and separate works in
|
193 |
-
themselves, then this License, and its terms, do not apply to those
|
194 |
-
sections when you distribute them as separate works. But when you
|
195 |
-
distribute the same sections as part of a whole which is a work based
|
196 |
-
on the Library, the distribution of the whole must be on the terms of
|
197 |
-
this License, whose permissions for other licensees extend to the
|
198 |
-
entire whole, and thus to each and every part regardless of who wrote
|
199 |
-
it.
|
200 |
-
|
201 |
-
Thus, it is not the intent of this section to claim rights or contest
|
202 |
-
your rights to work written entirely by you; rather, the intent is to
|
203 |
-
exercise the right to control the distribution of derivative or
|
204 |
-
collective works based on the Library.
|
205 |
-
|
206 |
-
In addition, mere aggregation of another work not based on the Library
|
207 |
-
with the Library (or with a work based on the Library) on a volume of
|
208 |
-
a storage or distribution medium does not bring the other work under
|
209 |
-
the scope of this License.
|
210 |
-
|
211 |
-
3. You may opt to apply the terms of the ordinary GNU General Public
|
212 |
-
License instead of this License to a given copy of the Library. To do
|
213 |
-
this, you must alter all the notices that refer to this License, so
|
214 |
-
that they refer to the ordinary GNU General Public License, version 2,
|
215 |
-
instead of to this License. (If a newer version than version 2 of the
|
216 |
-
ordinary GNU General Public License has appeared, then you can specify
|
217 |
-
that version instead if you wish.) Do not make any other change in
|
218 |
-
these notices.
|
219 |
-
|
220 |
-
Once this change is made in a given copy, it is irreversible for
|
221 |
-
that copy, so the ordinary GNU General Public License applies to all
|
222 |
-
subsequent copies and derivative works made from that copy.
|
223 |
-
|
224 |
-
This option is useful when you wish to copy part of the code of
|
225 |
-
the Library into a program that is not a library.
|
226 |
-
|
227 |
-
4. You may copy and distribute the Library (or a portion or
|
228 |
-
derivative of it, under Section 2) in object code or executable form
|
229 |
-
under the terms of Sections 1 and 2 above provided that you accompany
|
230 |
-
it with the complete corresponding machine-readable source code, which
|
231 |
-
must be distributed under the terms of Sections 1 and 2 above on a
|
232 |
-
medium customarily used for software interchange.
|
233 |
-
|
234 |
-
If distribution of object code is made by offering access to copy
|
235 |
-
from a designated place, then offering equivalent access to copy the
|
236 |
-
source code from the same place satisfies the requirement to
|
237 |
-
distribute the source code, even though third parties are not
|
238 |
-
compelled to copy the source along with the object code.
|
239 |
-
|
240 |
-
5. A program that contains no derivative of any portion of the
|
241 |
-
Library, but is designed to work with the Library by being compiled or
|
242 |
-
linked with it, is called a "work that uses the Library". Such a
|
243 |
-
work, in isolation, is not a derivative work of the Library, and
|
244 |
-
therefore falls outside the scope of this License.
|
245 |
-
|
246 |
-
However, linking a "work that uses the Library" with the Library
|
247 |
-
creates an executable that is a derivative of the Library (because it
|
248 |
-
contains portions of the Library), rather than a "work that uses the
|
249 |
-
library". The executable is therefore covered by this License.
|
250 |
-
Section 6 states terms for distribution of such executables.
|
251 |
-
|
252 |
-
When a "work that uses the Library" uses material from a header file
|
253 |
-
that is part of the Library, the object code for the work may be a
|
254 |
-
derivative work of the Library even though the source code is not.
|
255 |
-
Whether this is true is especially significant if the work can be
|
256 |
-
linked without the Library, or if the work is itself a library. The
|
257 |
-
threshold for this to be true is not precisely defined by law.
|
258 |
-
|
259 |
-
If such an object file uses only numerical parameters, data
|
260 |
-
structure layouts and accessors, and small macros and small inline
|
261 |
-
functions (ten lines or less in length), then the use of the object
|
262 |
-
file is unrestricted, regardless of whether it is legally a derivative
|
263 |
-
work. (Executables containing this object code plus portions of the
|
264 |
-
Library will still fall under Section 6.)
|
265 |
-
|
266 |
-
Otherwise, if the work is a derivative of the Library, you may
|
267 |
-
distribute the object code for the work under the terms of Section 6.
|
268 |
-
Any executables containing that work also fall under Section 6,
|
269 |
-
whether or not they are linked directly with the Library itself.
|
270 |
-
|
271 |
-
6. As an exception to the Sections above, you may also combine or
|
272 |
-
link a "work that uses the Library" with the Library to produce a
|
273 |
-
work containing portions of the Library, and distribute that work
|
274 |
-
under terms of your choice, provided that the terms permit
|
275 |
-
modification of the work for the customer's own use and reverse
|
276 |
-
engineering for debugging such modifications.
|
277 |
-
|
278 |
-
You must give prominent notice with each copy of the work that the
|
279 |
-
Library is used in it and that the Library and its use are covered by
|
280 |
-
this License. You must supply a copy of this License. If the work
|
281 |
-
during execution displays copyright notices, you must include the
|
282 |
-
copyright notice for the Library among them, as well as a reference
|
283 |
-
directing the user to the copy of this License. Also, you must do one
|
284 |
-
of these things:
|
285 |
-
|
286 |
-
a) Accompany the work with the complete corresponding
|
287 |
-
machine-readable source code for the Library including whatever
|
288 |
-
changes were used in the work (which must be distributed under
|
289 |
-
Sections 1 and 2 above); and, if the work is an executable linked
|
290 |
-
with the Library, with the complete machine-readable "work that
|
291 |
-
uses the Library", as object code and/or source code, so that the
|
292 |
-
user can modify the Library and then relink to produce a modified
|
293 |
-
executable containing the modified Library. (It is understood
|
294 |
-
that the user who changes the contents of definitions files in the
|
295 |
-
Library will not necessarily be able to recompile the application
|
296 |
-
to use the modified definitions.)
|
297 |
-
|
298 |
-
b) Use a suitable shared library mechanism for linking with the
|
299 |
-
Library. A suitable mechanism is one that (1) uses at run time a
|
300 |
-
copy of the library already present on the user's computer system,
|
301 |
-
rather than copying library functions into the executable, and (2)
|
302 |
-
will operate properly with a modified version of the library, if
|
303 |
-
the user installs one, as long as the modified version is
|
304 |
-
interface-compatible with the version that the work was made with.
|
305 |
-
|
306 |
-
c) Accompany the work with a written offer, valid for at
|
307 |
-
least three years, to give the same user the materials
|
308 |
-
specified in Subsection 6a, above, for a charge no more
|
309 |
-
than the cost of performing this distribution.
|
310 |
-
|
311 |
-
d) If distribution of the work is made by offering access to copy
|
312 |
-
from a designated place, offer equivalent access to copy the above
|
313 |
-
specified materials from the same place.
|
314 |
-
|
315 |
-
e) Verify that the user has already received a copy of these
|
316 |
-
materials or that you have already sent this user a copy.
|
317 |
-
|
318 |
-
For an executable, the required form of the "work that uses the
|
319 |
-
Library" must include any data and utility programs needed for
|
320 |
-
reproducing the executable from it. However, as a special exception,
|
321 |
-
the materials to be distributed need not include anything that is
|
322 |
-
normally distributed (in either source or binary form) with the major
|
323 |
-
components (compiler, kernel, and so on) of the operating system on
|
324 |
-
which the executable runs, unless that component itself accompanies
|
325 |
-
the executable.
|
326 |
-
|
327 |
-
It may happen that this requirement contradicts the license
|
328 |
-
restrictions of other proprietary libraries that do not normally
|
329 |
-
accompany the operating system. Such a contradiction means you cannot
|
330 |
-
use both them and the Library together in an executable that you
|
331 |
-
distribute.
|
332 |
-
|
333 |
-
7. You may place library facilities that are a work based on the
|
334 |
-
Library side-by-side in a single library together with other library
|
335 |
-
facilities not covered by this License, and distribute such a combined
|
336 |
-
library, provided that the separate distribution of the work based on
|
337 |
-
the Library and of the other library facilities is otherwise
|
338 |
-
permitted, and provided that you do these two things:
|
339 |
-
|
340 |
-
a) Accompany the combined library with a copy of the same work
|
341 |
-
based on the Library, uncombined with any other library
|
342 |
-
facilities. This must be distributed under the terms of the
|
343 |
-
Sections above.
|
344 |
-
|
345 |
-
b) Give prominent notice with the combined library of the fact
|
346 |
-
that part of it is a work based on the Library, and explaining
|
347 |
-
where to find the accompanying uncombined form of the same work.
|
348 |
-
|
349 |
-
8. You may not copy, modify, sublicense, link with, or distribute
|
350 |
-
the Library except as expressly provided under this License. Any
|
351 |
-
attempt otherwise to copy, modify, sublicense, link with, or
|
352 |
-
distribute the Library is void, and will automatically terminate your
|
353 |
-
rights under this License. However, parties who have received copies,
|
354 |
-
or rights, from you under this License will not have their licenses
|
355 |
-
terminated so long as such parties remain in full compliance.
|
356 |
-
|
357 |
-
9. You are not required to accept this License, since you have not
|
358 |
-
signed it. However, nothing else grants you permission to modify or
|
359 |
-
distribute the Library or its derivative works. These actions are
|
360 |
-
prohibited by law if you do not accept this License. Therefore, by
|
361 |
-
modifying or distributing the Library (or any work based on the
|
362 |
-
Library), you indicate your acceptance of this License to do so, and
|
363 |
-
all its terms and conditions for copying, distributing or modifying
|
364 |
-
the Library or works based on it.
|
365 |
-
|
366 |
-
10. Each time you redistribute the Library (or any work based on the
|
367 |
-
Library), the recipient automatically receives a license from the
|
368 |
-
original licensor to copy, distribute, link with or modify the Library
|
369 |
-
subject to these terms and conditions. You may not impose any further
|
370 |
-
restrictions on the recipients' exercise of the rights granted herein.
|
371 |
-
You are not responsible for enforcing compliance by third parties with
|
372 |
-
this License.
|
373 |
-
|
374 |
-
11. If, as a consequence of a court judgment or allegation of patent
|
375 |
-
infringement or for any other reason (not limited to patent issues),
|
376 |
-
conditions are imposed on you (whether by court order, agreement or
|
377 |
-
otherwise) that contradict the conditions of this License, they do not
|
378 |
-
excuse you from the conditions of this License. If you cannot
|
379 |
-
distribute so as to satisfy simultaneously your obligations under this
|
380 |
-
License and any other pertinent obligations, then as a consequence you
|
381 |
-
may not distribute the Library at all. For example, if a patent
|
382 |
-
license would not permit royalty-free redistribution of the Library by
|
383 |
-
all those who receive copies directly or indirectly through you, then
|
384 |
-
the only way you could satisfy both it and this License would be to
|
385 |
-
refrain entirely from distribution of the Library.
|
386 |
-
|
387 |
-
If any portion of this section is held invalid or unenforceable under any
|
388 |
-
particular circumstance, the balance of the section is intended to apply,
|
389 |
-
and the section as a whole is intended to apply in other circumstances.
|
390 |
-
|
391 |
-
It is not the purpose of this section to induce you to infringe any
|
392 |
-
patents or other property right claims or to contest validity of any
|
393 |
-
such claims; this section has the sole purpose of protecting the
|
394 |
-
integrity of the free software distribution system which is
|
395 |
-
implemented by public license practices. Many people have made
|
396 |
-
generous contributions to the wide range of software distributed
|
397 |
-
through that system in reliance on consistent application of that
|
398 |
-
system; it is up to the author/donor to decide if he or she is willing
|
399 |
-
to distribute software through any other system and a licensee cannot
|
400 |
-
impose that choice.
|
401 |
-
|
402 |
-
This section is intended to make thoroughly clear what is believed to
|
403 |
-
be a consequence of the rest of this License.
|
404 |
-
|
405 |
-
12. If the distribution and/or use of the Library is restricted in
|
406 |
-
certain countries either by patents or by copyrighted interfaces, the
|
407 |
-
original copyright holder who places the Library under this License may add
|
408 |
-
an explicit geographical distribution limitation excluding those countries,
|
409 |
-
so that distribution is permitted only in or among countries not thus
|
410 |
-
excluded. In such case, this License incorporates the limitation as if
|
411 |
-
written in the body of this License.
|
412 |
-
|
413 |
-
13. The Free Software Foundation may publish revised and/or new
|
414 |
-
versions of the Lesser General Public License from time to time.
|
415 |
-
Such new versions will be similar in spirit to the present version,
|
416 |
-
but may differ in detail to address new problems or concerns.
|
417 |
-
|
418 |
-
Each version is given a distinguishing version number. If the Library
|
419 |
-
specifies a version number of this License which applies to it and
|
420 |
-
"any later version", you have the option of following the terms and
|
421 |
-
conditions either of that version or of any later version published by
|
422 |
-
the Free Software Foundation. If the Library does not specify a
|
423 |
-
license version number, you may choose any version ever published by
|
424 |
-
the Free Software Foundation.
|
425 |
-
|
426 |
-
14. If you wish to incorporate parts of the Library into other free
|
427 |
-
programs whose distribution conditions are incompatible with these,
|
428 |
-
write to the author to ask for permission. For software which is
|
429 |
-
copyrighted by the Free Software Foundation, write to the Free
|
430 |
-
Software Foundation; we sometimes make exceptions for this. Our
|
431 |
-
decision will be guided by the two goals of preserving the free status
|
432 |
-
of all derivatives of our free software and of promoting the sharing
|
433 |
-
and reuse of software generally.
|
434 |
-
|
435 |
-
NO WARRANTY
|
436 |
-
|
437 |
-
15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
|
438 |
-
WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
|
439 |
-
EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
|
440 |
-
OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
|
441 |
-
KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
|
442 |
-
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
443 |
-
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
|
444 |
-
LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
|
445 |
-
THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
446 |
-
|
447 |
-
16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
|
448 |
-
WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
|
449 |
-
AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
|
450 |
-
FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
|
451 |
-
CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
|
452 |
-
LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
|
453 |
-
RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
|
454 |
-
FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
|
455 |
-
SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
456 |
-
DAMAGES.
|
457 |
-
|
458 |
-
END OF TERMS AND CONDITIONS
|
459 |
-
|
460 |
-
How to Apply These Terms to Your New Libraries
|
461 |
-
|
462 |
-
If you develop a new library, and you want it to be of the greatest
|
463 |
-
possible use to the public, we recommend making it free software that
|
464 |
-
everyone can redistribute and change. You can do so by permitting
|
465 |
-
redistribution under these terms (or, alternatively, under the terms of the
|
466 |
-
ordinary General Public License).
|
467 |
-
|
468 |
-
To apply these terms, attach the following notices to the library. It is
|
469 |
-
safest to attach them to the start of each source file to most effectively
|
470 |
-
convey the exclusion of warranty; and each file should have at least the
|
471 |
-
"copyright" line and a pointer to where the full notice is found.
|
472 |
-
|
473 |
-
<one line to give the library's name and a brief idea of what it does.>
|
474 |
-
Copyright (C) <year> <name of author>
|
475 |
-
|
476 |
-
This library is free software; you can redistribute it and/or
|
477 |
-
modify it under the terms of the GNU Lesser General Public
|
478 |
-
License as published by the Free Software Foundation; either
|
479 |
-
version 2.1 of the License, or (at your option) any later version.
|
480 |
-
|
481 |
-
This library is distributed in the hope that it will be useful,
|
482 |
-
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
483 |
-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
484 |
-
Lesser General Public License for more details.
|
485 |
-
|
486 |
-
You should have received a copy of the GNU Lesser General Public
|
487 |
-
License along with this library; if not, write to the Free Software
|
488 |
-
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
489 |
-
|
490 |
-
Also add information on how to contact you by electronic and paper mail.
|
491 |
-
|
492 |
-
You should also get your employer (if you work as a programmer) or your
|
493 |
-
school, if any, to sign a "copyright disclaimer" for the library, if
|
494 |
-
necessary. Here is a sample; alter the names:
|
495 |
-
|
496 |
-
Yoyodyne, Inc., hereby disclaims all copyright interest in the
|
497 |
-
library `Frob' (a library for tweaking knobs) written by James Random Hacker.
|
498 |
-
|
499 |
-
<signature of Ty Coon>, 1 April 1990
|
500 |
-
Ty Coon, President of Vice
|
501 |
-
|
502 |
-
That's all there is to it!
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
geoip/README.md
DELETED
@@ -1,98 +0,0 @@
|
|
1 |
-
# MaxMind GeoIP Legacy PHP API #
|
2 |
-
|
3 |
-
## Important Note ##
|
4 |
-
|
5 |
-
This API is for the GeoIP Legacy format (dat). To read the MaxMind DB format
|
6 |
-
(mmdb) used by GeoIP2, please see
|
7 |
-
[our GeoIP2 PHP API](https://github.com/maxmind/GeoIP2-php).
|
8 |
-
|
9 |
-
## Requirements ##
|
10 |
-
|
11 |
-
This module has no external dependencies. You only need a MaxMind GeoIP
|
12 |
-
database. To download a free GeoLite Legacy Country database, please see
|
13 |
-
our [GeoLite Legacy page](http://dev.maxmind.com/geoip/legacy/geolite).
|
14 |
-
|
15 |
-
## Install via Composer ##
|
16 |
-
|
17 |
-
We recommend installing this package with [Composer](http://getcomposer.org/).
|
18 |
-
|
19 |
-
### Download Composer ###
|
20 |
-
|
21 |
-
To download Composer, run in the root directory of your project:
|
22 |
-
|
23 |
-
```bash
|
24 |
-
curl -sS https://getcomposer.org/installer | php
|
25 |
-
```
|
26 |
-
|
27 |
-
You should now have the file `composer.phar` in your project directory.
|
28 |
-
|
29 |
-
### Install Dependencies ###
|
30 |
-
|
31 |
-
Run in your project root:
|
32 |
-
|
33 |
-
```
|
34 |
-
php composer.phar require geoip/geoip:~1.14
|
35 |
-
```
|
36 |
-
|
37 |
-
You should now have the files `composer.json` and `composer.lock` as well as
|
38 |
-
the directory `vendor` in your project directory. If you use a version control
|
39 |
-
system, `composer.json` should be added to it.
|
40 |
-
|
41 |
-
### Require Autoloader ###
|
42 |
-
|
43 |
-
After installing the dependencies, you need to require the Composer autoloader
|
44 |
-
from your code:
|
45 |
-
|
46 |
-
```php
|
47 |
-
require 'vendor/autoload.php';
|
48 |
-
```
|
49 |
-
|
50 |
-
## Install without Composer ##
|
51 |
-
|
52 |
-
Place the 'geoip.inc' file in the `include_path` as specified in your
|
53 |
-
`php.ini` file or place it in the same directory as your PHP scripts.
|
54 |
-
|
55 |
-
## Usage ##
|
56 |
-
|
57 |
-
Gets country name by hostname :
|
58 |
-
|
59 |
-
```php
|
60 |
-
<?php
|
61 |
-
|
62 |
-
require 'vendor/autoload.php';
|
63 |
-
|
64 |
-
$gi = geoip_open("/usr/local/share/GeoIP/GeoIP.dat",GEOIP_STANDARD);
|
65 |
-
|
66 |
-
echo geoip_country_code_by_addr($gi, "24.24.24.24") . "\t" .
|
67 |
-
geoip_country_name_by_addr($gi, "24.24.24.24") . "\n";
|
68 |
-
echo geoip_country_code_by_addr($gi, "80.24.24.24") . "\t" .
|
69 |
-
geoip_country_name_by_addr($gi, "80.24.24.24") . "\n";
|
70 |
-
|
71 |
-
geoip_close($gi);
|
72 |
-
```
|
73 |
-
|
74 |
-
## Memory Caching ##
|
75 |
-
|
76 |
-
To enable memory caching, pass `GEOIP_SHARED_MEMORY` or `GEOIP_MEMORY_CACHE`
|
77 |
-
as the second argument of `geoip_open`.
|
78 |
-
|
79 |
-
`GEOIP_SHARED_MEMORY` requires php >= 4.0.4 compiled with `--enable-shmop`
|
80 |
-
configure time. See (http://us2.php.net/manual/en/ref.shmop.php).
|
81 |
-
In addition, you should call `geoip_load_shared_mem` before calling
|
82 |
-
`geoip_open`. See `sample_city.php` for an example of shared memory caching.
|
83 |
-
|
84 |
-
## Support ##
|
85 |
-
|
86 |
-
For help with this API or our databases, please see [our support page]
|
87 |
-
(http://www.maxmind.com/en/support).
|
88 |
-
|
89 |
-
## Copyright and License ##
|
90 |
-
|
91 |
-
This software is Copyright (c) 2014 by MaxMind, Inc.
|
92 |
-
|
93 |
-
This is free software, licensed under the GNU Lesser General Public License
|
94 |
-
version 2.1 or later.
|
95 |
-
|
96 |
-
## Thanks ##
|
97 |
-
|
98 |
-
Thanks to Jim Winstead.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
geoip/admin/build_geoipregionvars.php
DELETED
@@ -1,35 +0,0 @@
|
|
1 |
-
#!/usr/bin/php -q
|
2 |
-
<?php
|
3 |
-
|
4 |
-
function downloadAndOpen($url)
|
5 |
-
{
|
6 |
-
$file = basename($url);
|
7 |
-
if (!file_exists(sprintf('%s/%s', __DIR__, $file))) {
|
8 |
-
$ch = curl_init();
|
9 |
-
$timeout = 5;
|
10 |
-
curl_setopt($ch, CURLOPT_URL, $url);
|
11 |
-
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
|
12 |
-
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
|
13 |
-
$data = curl_exec($ch);
|
14 |
-
curl_close($ch);
|
15 |
-
file_put_contents($file, $data);
|
16 |
-
}
|
17 |
-
return file($file);
|
18 |
-
}
|
19 |
-
|
20 |
-
$countries = downloadAndOpen('https://www.maxmind.com/download/geoip/misc/region_codes.csv');
|
21 |
-
|
22 |
-
$array = array();
|
23 |
-
foreach ($countries as $line) {
|
24 |
-
$datas = explode(',', $line);
|
25 |
-
$array[$datas[0]][trim(preg_replace('/"/im', '', $datas[2]))] = sprintf("%s", $datas[1]);
|
26 |
-
}
|
27 |
-
$array = array_map('array_flip', $array);
|
28 |
-
//date_default_timezone_set(date_default_timezone_get());
|
29 |
-
//date_default_timezone_set("UTC");
|
30 |
-
$output = "<?php\n";
|
31 |
-
$output .= sprintf("// Copyright %s MaxMind, Inc. All Rights Reserved\n", ahcpro_localtime('Y'));
|
32 |
-
$output .= "global \$GEOIP_REGION_NAME;\n";
|
33 |
-
$output .= "\$GEOIP_REGION_NAME = " . var_export($array, true) . ";\n";
|
34 |
-
|
35 |
-
file_put_contents(__DIR__ . '/../src/geoipregionvars.php', $output);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
geoip/composer.json
DELETED
@@ -1,29 +0,0 @@
|
|
1 |
-
{
|
2 |
-
"name": "geoip/geoip",
|
3 |
-
"description": "MaxMind GeoIP PHP API",
|
4 |
-
"keywords": [ "geoip", "geolocation", "maxmind" ],
|
5 |
-
"homepage": "http://dev.maxmind.com/geoip/legacy/downloadable",
|
6 |
-
"type": "library",
|
7 |
-
"license": "LGPL 2.1+",
|
8 |
-
"authors": [
|
9 |
-
{
|
10 |
-
"name": "MaxMind, Inc.",
|
11 |
-
"email": "support@maxmind.com",
|
12 |
-
"homepage": "http://www.maxmind.com/"
|
13 |
-
}
|
14 |
-
],
|
15 |
-
"autoload": {
|
16 |
-
"files": [
|
17 |
-
"src/geoip.inc",
|
18 |
-
"src/geoipcity.inc",
|
19 |
-
"src/timezone.php"
|
20 |
-
]
|
21 |
-
},
|
22 |
-
"conflict": {
|
23 |
-
"ext-geoip": "*"
|
24 |
-
},
|
25 |
-
"require-dev": {
|
26 |
-
"phpunit/phpunit": "3.7.*",
|
27 |
-
"satooshi/php-coveralls": "dev-master"
|
28 |
-
}
|
29 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
geoip/data/GeoIP.dat
DELETED
Binary file
|
geoip/examples/asn-v6.php
DELETED
@@ -1,17 +0,0 @@
|
|
1 |
-
#!/usr/bin/php -q
|
2 |
-
<?php
|
3 |
-
|
4 |
-
// This code demonstrates how to lookup the country and region by IP Address
|
5 |
-
// It is designed to work with GeoIP Organization or GeoIP ISP available from MaxMind
|
6 |
-
|
7 |
-
include("../src/geoip.inc");
|
8 |
-
|
9 |
-
$giasn = geoip_open("/usr/local/share/GeoIP/GeoIPASNumv6.dat", GEOIP_STANDARD);
|
10 |
-
|
11 |
-
$ip = '2001:4860:0:1001::68';
|
12 |
-
$asn = geoip_name_by_addr_v6($giasn, $ip);
|
13 |
-
print "$ip has asn " . $asn . "\n";
|
14 |
-
|
15 |
-
geoip_close($giasn);
|
16 |
-
|
17 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
geoip/examples/benchmark.php
DELETED
@@ -1,70 +0,0 @@
|
|
1 |
-
#!/usr/bin/php -q
|
2 |
-
<?php
|
3 |
-
|
4 |
-
set_time_limit('300');
|
5 |
-
|
6 |
-
include("../src/geoip.inc");
|
7 |
-
include("../src/geoipcity.inc");
|
8 |
-
define("GEOIP_COUNTRY_DATABASE", 0);
|
9 |
-
define("GEOIP_REGION_DATABASE", 1);
|
10 |
-
define("GEOIP_CITY_DATABASE", 2);
|
11 |
-
|
12 |
-
class mainappc
|
13 |
-
{
|
14 |
-
public $dbfilename = array(
|
15 |
-
"/usr/local/share/GeoIP/GeoIP.dat",
|
16 |
-
"/usr/local/share/GeoIP/GeoIPRegion.dat",
|
17 |
-
"/usr/local/share/GeoIP/GeoIPCity.dat"
|
18 |
-
);
|
19 |
-
|
20 |
-
public function randomipaddress()
|
21 |
-
{
|
22 |
-
$result = "";
|
23 |
-
for ($a = 0; $a < 4; $a++) {
|
24 |
-
if ($a > 0) {
|
25 |
-
$result = $result . ".";
|
26 |
-
}
|
27 |
-
$a2 = rand(1, 254);
|
28 |
-
$result = $result . $a2;
|
29 |
-
}
|
30 |
-
return $result;
|
31 |
-
}
|
32 |
-
|
33 |
-
public function testgeoipdatabase($type, $flags, $msg, $numlookups)
|
34 |
-
{
|
35 |
-
$gi = geoip_open($this->dbfilename[$type], $flags);
|
36 |
-
if ($gi == null) {
|
37 |
-
print "error: " . $this->dbfilename[$type] . " does not exist\n";
|
38 |
-
return;
|
39 |
-
}
|
40 |
-
$startTime = microtime(true);
|
41 |
-
for ($i2 = 0; $i2 < $numlookups; $i2++) {
|
42 |
-
switch ($type) {
|
43 |
-
case GEOIP_COUNTRY_DATABASE:
|
44 |
-
geoip_country_code_by_addr($gi, $this->randomipaddress());
|
45 |
-
break;
|
46 |
-
case GEOIP_REGION_DATABASE:
|
47 |
-
geoip_region_by_addr($gi, $this->randomipaddress());
|
48 |
-
break;
|
49 |
-
case GEOIP_CITY_DATABASE:
|
50 |
-
GeoIP_record_by_addr($gi, $this->randomipaddress());
|
51 |
-
break;
|
52 |
-
}
|
53 |
-
}
|
54 |
-
$duration = microtime(true) - $startTime;
|
55 |
-
print $msg . "\n";
|
56 |
-
print $numlookups . " lookups made in " . $duration . " seconds \n";
|
57 |
-
geoip_close($gi);
|
58 |
-
}
|
59 |
-
}
|
60 |
-
|
61 |
-
|
62 |
-
$mainapp = new mainappc();
|
63 |
-
|
64 |
-
|
65 |
-
$mainapp->testgeoipdatabase(GEOIP_COUNTRY_DATABASE, GEOIP_STANDARD, "Geoip Country ", 10000);
|
66 |
-
$mainapp->testgeoipdatabase(GEOIP_COUNTRY_DATABASE, GEOIP_MEMORY_CACHE, "Geoip Country with memory cache", 10000);
|
67 |
-
$mainapp->testgeoipdatabase(GEOIP_REGION_DATABASE, GEOIP_STANDARD, "Geoip Region ", 10000);
|
68 |
-
$mainapp->testgeoipdatabase(GEOIP_REGION_DATABASE, GEOIP_MEMORY_CACHE, "Geoip Region with memory cache", 10000);
|
69 |
-
$mainapp->testgeoipdatabase(GEOIP_CITY_DATABASE, GEOIP_STANDARD, "Geoip City ", 10000);
|
70 |
-
$mainapp->testgeoipdatabase(GEOIP_CITY_DATABASE, GEOIP_MEMORY_CACHE, "Geoip City with memory cache", 10000);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
geoip/examples/city-v6.php
DELETED
@@ -1,33 +0,0 @@
|
|
1 |
-
#!/usr/bin/php -q
|
2 |
-
<?php
|
3 |
-
|
4 |
-
// This code demonstrates how to lookup the country, region, city,
|
5 |
-
// postal code, latitude, and longitude by IP Address.
|
6 |
-
// It is designed to work with GeoIP/GeoLite City
|
7 |
-
|
8 |
-
// Note that you must download the New Format of GeoIP City (GEO-133).
|
9 |
-
// The old format (GEO-132) will not work.
|
10 |
-
|
11 |
-
include("../src/geoipcity.inc");
|
12 |
-
include("../src/geoipregionvars.php");
|
13 |
-
|
14 |
-
// uncomment for Shared Memory support
|
15 |
-
// geoip_load_shared_mem("/usr/local/share/GeoIP/GeoIPCity.dat");
|
16 |
-
// $gi = geoip_open("/usr/local/share/GeoIP/GeoIPCity.dat",GEOIP_SHARED_MEMORY);
|
17 |
-
|
18 |
-
$gi = geoip_open("/usr/local/share/GeoIP/GeoLiteCityv6.dat", GEOIP_STANDARD);
|
19 |
-
|
20 |
-
$record = geoip_record_by_addr_v6($gi, "::24.24.24.24");
|
21 |
-
print $record->country_code . " " . $record->country_code3 . " " . $record->country_name . "\n";
|
22 |
-
print $record->region . " " . $GEOIP_REGION_NAME[$record->country_code][$record->region] . "\n";
|
23 |
-
print $record->city . "\n";
|
24 |
-
print $record->postal_code . "\n";
|
25 |
-
print $record->latitude . "\n";
|
26 |
-
print $record->longitude . "\n";
|
27 |
-
print $record->metro_code . "\n";
|
28 |
-
print $record->area_code . "\n";
|
29 |
-
print $record->continent_code . "\n";
|
30 |
-
|
31 |
-
geoip_close($gi);
|
32 |
-
|
33 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
geoip/examples/city.php
DELETED
@@ -1,33 +0,0 @@
|
|
1 |
-
#!/usr/bin/php -q
|
2 |
-
<?php
|
3 |
-
|
4 |
-
// This code demonstrates how to lookup the country, region, city,
|
5 |
-
// postal code, latitude, and longitude by IP Address.
|
6 |
-
// It is designed to work with GeoIP/GeoLite City
|
7 |
-
|
8 |
-
// Note that you must download the New Format of GeoIP City (GEO-133).
|
9 |
-
// The old format (GEO-132) will not work.
|
10 |
-
|
11 |
-
include("../src/geoipcity.inc");
|
12 |
-
include("../src/geoipregionvars.php");
|
13 |
-
|
14 |
-
// uncomment for Shared Memory support
|
15 |
-
// geoip_load_shared_mem("/usr/local/share/GeoIP/GeoIPCity.dat");
|
16 |
-
// $gi = geoip_open("/usr/local/share/GeoIP/GeoIPCity.dat",GEOIP_SHARED_MEMORY);
|
17 |
-
|
18 |
-
$gi = geoip_open("/usr/local/share/GeoIP/GeoIPCity.dat", GEOIP_STANDARD);
|
19 |
-
|
20 |
-
$record = geoip_record_by_addr($gi, "24.24.24.24");
|
21 |
-
print $record->country_code . " " . $record->country_code3 . " " . $record->country_name . "\n";
|
22 |
-
print $record->region . " " . $GEOIP_REGION_NAME[$record->country_code][$record->region] . "\n";
|
23 |
-
print $record->city . "\n";
|
24 |
-
print $record->postal_code . "\n";
|
25 |
-
print $record->latitude . "\n";
|
26 |
-
print $record->longitude . "\n";
|
27 |
-
print $record->metro_code . "\n";
|
28 |
-
print $record->area_code . "\n";
|
29 |
-
print $record->continent_code . "\n";
|
30 |
-
|
31 |
-
geoip_close($gi);
|
32 |
-
|
33 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
geoip/examples/country-v6.php
DELETED
@@ -1,32 +0,0 @@
|
|
1 |
-
#!/usr/bin/php -q
|
2 |
-
<?php
|
3 |
-
|
4 |
-
// This code demonstrates how to lookup the country by IP Address
|
5 |
-
|
6 |
-
include("../src/geoip.inc");
|
7 |
-
|
8 |
-
// Uncomment if querying against GeoIP/Lite City.
|
9 |
-
// include("geoipcity.inc");
|
10 |
-
|
11 |
-
$gi = geoip_open("/usr/local/share/GeoIP/GeoIPv6.dat", GEOIP_STANDARD);
|
12 |
-
|
13 |
-
echo geoip_country_code_by_addr_v6($gi, "::24.24.24.24") . "\t" .
|
14 |
-
geoip_country_name_by_addr_v6($gi, "::24.24.24.24") . "\n";
|
15 |
-
echo geoip_country_code_by_addr_v6($gi, "::80.24.24.24") . "\t" .
|
16 |
-
geoip_country_name_by_addr_v6($gi, "::80.24.24.24") . "\n";
|
17 |
-
|
18 |
-
echo geoip_country_code_by_addr_v6($gi, "2001:4860:0:1001::68") . "\t" .
|
19 |
-
geoip_country_name_by_addr_v6($gi, "2001:4860:0:1001::68") . "\n";
|
20 |
-
|
21 |
-
echo geoip_country_code_by_addr_v6($gi, "2001:67c:26c::") . "\t" .
|
22 |
-
geoip_country_name_by_addr_v6($gi, "2001:67c:26c::") . "\n";
|
23 |
-
|
24 |
-
echo geoip_country_code_by_addr_v6($gi, "2001:67c:3a0:ffff:ffff:ffff:ffff:ffff") . "\t" .
|
25 |
-
geoip_country_name_by_addr_v6($gi, "2001:67c:3a0:ffff:ffff:ffff:ffff:ffff") . "\n";
|
26 |
-
|
27 |
-
echo ahc_geoip_country_code_by_name_v6($gi, "ipv6.google.com") . "\t" .
|
28 |
-
geoip_country_name_by_name_v6($gi, "ipv6.google.com") . "\n";
|
29 |
-
|
30 |
-
geoip_close($gi);
|
31 |
-
|
32 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
geoip/examples/country.php
DELETED
@@ -1,20 +0,0 @@
|
|
1 |
-
#!/usr/bin/php -q
|
2 |
-
<?php
|
3 |
-
|
4 |
-
// This code demonstrates how to lookup the country by IP Address
|
5 |
-
|
6 |
-
include("../src/geoip.inc");
|
7 |
-
|
8 |
-
// Uncomment if querying against GeoIP/Lite City.
|
9 |
-
// include("geoipcity.inc");
|
10 |
-
|
11 |
-
$gi = geoip_open("/usr/local/share/GeoIP/GeoIP.dat", GEOIP_STANDARD);
|
12 |
-
|
13 |
-
echo geoip_country_code_by_addr($gi, "24.24.24.24") . "\t" .
|
14 |
-
geoip_country_name_by_addr($gi, "24.24.24.24") . "\n";
|
15 |
-
echo geoip_country_code_by_addr($gi, "80.24.24.24") . "\t" .
|
16 |
-
geoip_country_name_by_addr($gi, "80.24.24.24") . "\n";
|
17 |
-
|
18 |
-
geoip_close($gi);
|
19 |
-
|
20 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
geoip/examples/domain.php
DELETED
@@ -1,16 +0,0 @@
|
|
1 |
-
#!/usr/bin/php -q
|
2 |
-
<?php
|
3 |
-
|
4 |
-
// This code demonstrates how to lookup the country and region by IP Address
|
5 |
-
// It is designed to work with GeoIP Organization or GeoIP ISP available from MaxMind
|
6 |
-
|
7 |
-
include("../src/geoip.inc");
|
8 |
-
|
9 |
-
$gi = geoip_open("/usr/local/share/GeoIP/GeoIPDomain.dat", GEOIP_STANDARD);
|
10 |
-
|
11 |
-
$domain = geoip_org_by_addr($gi, "80.24.24.24");
|
12 |
-
print "80.24.24.24 belongs to " . $domain . "\n";
|
13 |
-
|
14 |
-
geoip_close($gi);
|
15 |
-
|
16 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
geoip/examples/netspeed.php
DELETED
@@ -1,29 +0,0 @@
|
|
1 |
-
#!/usr/bin/php -q
|
2 |
-
<?php
|
3 |
-
|
4 |
-
include("../src/geoip.inc");
|
5 |
-
|
6 |
-
$gi = geoip_open("/usr/local/share/GeoIP/GeoIPNetSpeed.dat", GEOIP_STANDARD);
|
7 |
-
|
8 |
-
$netspeed = geoip_country_id_by_addr($gi, "24.24.24.24");
|
9 |
-
|
10 |
-
//print $n . "\n";
|
11 |
-
if ($netspeed == GEOIP_UNKNOWN_SPEED) {
|
12 |
-
print "Unknown\n";
|
13 |
-
} else {
|
14 |
-
if ($netspeed == GEOIP_DIALUP_SPEED) {
|
15 |
-
print "Dailup\n";
|
16 |
-
} else {
|
17 |
-
if ($netspeed == GEOIP_CABLEDSL_SPEED) {
|
18 |
-
print "Cable/DSL\n";
|
19 |
-
} else {
|
20 |
-
if ($netspeed == GEOIP_CORPORATE_SPEED) {
|
21 |
-
print "Corporate\n";
|
22 |
-
}
|
23 |
-
}
|
24 |
-
}
|
25 |
-
}
|
26 |
-
|
27 |
-
geoip_close($gi);
|
28 |
-
|
29 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
geoip/examples/netspeedcell.php
DELETED
@@ -1,14 +0,0 @@
|
|
1 |
-
#!/usr/bin/php -q
|
2 |
-
<?php
|
3 |
-
|
4 |
-
include("../src/geoip.inc");
|
5 |
-
|
6 |
-
$gi = geoip_open("/usr/local/share/GeoIP/GeoIPNetSpeedCell.dat", GEOIP_STANDARD);
|
7 |
-
|
8 |
-
$netspeed = geoip_name_by_addr($gi, "24.24.24.24");
|
9 |
-
|
10 |
-
print $netspeed . "\n";
|
11 |
-
|
12 |
-
geoip_close($gi);
|
13 |
-
|
14 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
geoip/examples/org.php
DELETED
@@ -1,22 +0,0 @@
|
|
1 |
-
#!/usr/bin/php -q
|
2 |
-
<?php
|
3 |
-
|
4 |
-
// This code demonstrates how to lookup the country and region by IP Address
|
5 |
-
// It is designed to work with GeoIP Organization or GeoIP ISP available from MaxMind
|
6 |
-
|
7 |
-
include("../src/geoip.inc");
|
8 |
-
|
9 |
-
$giorg = geoip_open("/usr/local/share/GeoIP/GeoIPOrg.dat", GEOIP_STANDARD);
|
10 |
-
|
11 |
-
$org = geoip_org_by_addr($giorg, "80.24.24.24");
|
12 |
-
print "80.24.24.24 belongs to " . $org . "\n";
|
13 |
-
|
14 |
-
$giisp = geoip_open("/usr/local/share/GeoIP/GeoIPISP.dat", GEOIP_STANDARD);
|
15 |
-
|
16 |
-
$isp = geoip_org_by_addr($giisp, "80.24.24.24");
|
17 |
-
print "80.24.24.24 has isp " . $isp . "\n";
|
18 |
-
|
19 |
-
geoip_close($giorg);
|
20 |
-
geoip_close($giisp);
|
21 |
-
|
22 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
geoip/examples/region.php
DELETED
@@ -1,20 +0,0 @@
|
|
1 |
-
#!/usr/bin/php -q
|
2 |
-
<?php
|
3 |
-
|
4 |
-
// This code demonstrates how to lookup the country and region by IP Address
|
5 |
-
// It is designed to work with GeoIP Region available from MaxMind
|
6 |
-
|
7 |
-
include("../src/geoip.inc");
|
8 |
-
include("../src/geoipregionvars.php");
|
9 |
-
|
10 |
-
$gi = geoip_open("/usr/local/share/GeoIP/GeoIPRegion.dat", GEOIP_STANDARD);
|
11 |
-
|
12 |
-
list ($countrycode, $region) = geoip_region_by_addr($gi, "24.24.24.24");
|
13 |
-
print $countrycode . " " . $region . " " . $GEOIP_REGION_NAME[$countrycode][$region] . "\n";
|
14 |
-
list ($countrycode, $region) = geoip_region_by_addr($gi, "80.24.24.24");
|
15 |
-
print $countrycode . " " . $region . " " . $GEOIP_REGION_NAME[$countrycode][$region] . "\n";
|
16 |
-
list ($countrycode, $region) = geoip_region_by_addr($gi, "199.243.137.184");
|
17 |
-
print $countrycode . " " . $region . " " . $GEOIP_REGION_NAME[$countrycode][$region] . "\n";
|
18 |
-
geoip_close($gi);
|
19 |
-
|
20 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
geoip/phpunit.xml.dist
DELETED
@@ -1,28 +0,0 @@
|
|
1 |
-
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
-
|
3 |
-
<phpunit bootstrap="./tests/bootstrap.php" colors="true">
|
4 |
-
<testsuites>
|
5 |
-
<testsuite name="GeoIP Test Suite">
|
6 |
-
<directory suffix="Test.php">./tests</directory>
|
7 |
-
</testsuite>
|
8 |
-
</testsuites>
|
9 |
-
|
10 |
-
<filter>
|
11 |
-
<whitelist>
|
12 |
-
<directory suffix=".inc">./src</directory>
|
13 |
-
<directory suffix=".php">./src</directory>
|
14 |
-
</whitelist>
|
15 |
-
<blacklist>
|
16 |
-
<directory>./build</directory>
|
17 |
-
<directory>./composer</directory>
|
18 |
-
<directory>./tests</directory>
|
19 |
-
<directory>./travis</directory>
|
20 |
-
<directory>./vendor</directory>
|
21 |
-
</blacklist>
|
22 |
-
</filter>
|
23 |
-
|
24 |
-
<logging>
|
25 |
-
<log type="coverage-clover" target="build/logs/clover.xml"/>
|
26 |
-
</logging>
|
27 |
-
|
28 |
-
</phpunit>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
geoip/src/geoip.inc
DELETED
@@ -1,767 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 2; tab-width: 2 -*- */
|
4 |
-
/* geoip.inc
|
5 |
-
*
|
6 |
-
* Copyright (C) 2007 MaxMind LLC
|
7 |
-
*
|
8 |
-
* This library is free software; you can redistribute it and/or
|
9 |
-
* modify it under the terms of the GNU Lesser General Public
|
10 |
-
* License as published by the Free Software Foundation; either
|
11 |
-
* version 2.1 of the License, or (at your option) any later version.
|
12 |
-
*
|
13 |
-
* This library is distributed in the hope that it will be useful,
|
14 |
-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
15 |
-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
16 |
-
* Lesser General Public License for more details.
|
17 |
-
*
|
18 |
-
* You should have received a copy of the GNU Lesser General Public
|
19 |
-
* License along with this library; if not, write to the Free Software
|
20 |
-
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
21 |
-
*/
|
22 |
-
if(! class_exists('ahcGeoIP')){
|
23 |
-
define("GEOIP_COUNTRY_BEGIN", 16776960);
|
24 |
-
define("GEOIP_STATE_BEGIN_REV0", 16700000);
|
25 |
-
define("GEOIP_STATE_BEGIN_REV1", 16000000);
|
26 |
-
define("GEOIP_STANDARD", 0);
|
27 |
-
define("GEOIP_MEMORY_CACHE", 1);
|
28 |
-
define("GEOIP_SHARED_MEMORY", 2);
|
29 |
-
define("STRUCTURE_INFO_MAX_SIZE", 20);
|
30 |
-
define("DATABASE_INFO_MAX_SIZE", 100);
|
31 |
-
define("GEOIP_COUNTRY_EDITION", 106);
|
32 |
-
define("GEOIP_PROXY_EDITION", 8);
|
33 |
-
define("GEOIP_ASNUM_EDITION", 9);
|
34 |
-
define("GEOIP_NETSPEED_EDITION", 10);
|
35 |
-
define("GEOIP_REGION_EDITION_REV0", 112);
|
36 |
-
define("GEOIP_REGION_EDITION_REV1", 3);
|
37 |
-
define("GEOIP_CITY_EDITION_REV0", 111);
|
38 |
-
define("GEOIP_CITY_EDITION_REV1", 2);
|
39 |
-
define("GEOIP_ORG_EDITION", 110);
|
40 |
-
define("GEOIP_ISP_EDITION", 4);
|
41 |
-
define("SEGMENT_RECORD_LENGTH", 3);
|
42 |
-
define("STANDARD_RECORD_LENGTH", 3);
|
43 |
-
define("ORG_RECORD_LENGTH", 4);
|
44 |
-
define("MAX_RECORD_LENGTH", 4);
|
45 |
-
define("MAX_ORG_RECORD_LENGTH", 300);
|
46 |
-
define("GEOIP_SHM_KEY", 0x4f415401);
|
47 |
-
define("US_OFFSET", 1);
|
48 |
-
define("CANADA_OFFSET", 677);
|
49 |
-
define("WORLD_OFFSET", 1353);
|
50 |
-
define("FIPS_RANGE", 360);
|
51 |
-
define("GEOIP_UNKNOWN_SPEED", 0);
|
52 |
-
define("GEOIP_DIALUP_SPEED", 1);
|
53 |
-
define("GEOIP_CABLEDSL_SPEED", 2);
|
54 |
-
define("GEOIP_CORPORATE_SPEED", 3);
|
55 |
-
define("GEOIP_DOMAIN_EDITION", 11);
|
56 |
-
define("GEOIP_COUNTRY_EDITION_V6", 12);
|
57 |
-
define("GEOIP_LOCATIONA_EDITION", 13);
|
58 |
-
define("GEOIP_ACCURACYRADIUS_EDITION", 14);
|
59 |
-
define("GEOIP_CITYCOMBINED_EDITION", 15);
|
60 |
-
define("GEOIP_CITY_EDITION_REV1_V6", 30);
|
61 |
-
define("GEOIP_CITY_EDITION_REV0_V6",31);
|
62 |
-
define("GEOIP_NETSPEED_EDITION_REV1",32);
|
63 |
-
define("GEOIP_NETSPEED_EDITION_REV1_V6",33);
|
64 |
-
define("GEOIP_USERTYPE_EDITION",28);
|
65 |
-
define("GEOIP_USERTYPE_EDITION_V6",29);
|
66 |
-
define("GEOIP_ASNUM_EDITION_V6",21);
|
67 |
-
define("GEOIP_ISP_EDITION_V6",22);
|
68 |
-
define("GEOIP_ORG_EDITION_V6",23);
|
69 |
-
define("GEOIP_DOMAIN_EDITION_V6",24);
|
70 |
-
|
71 |
-
define("CITYCOMBINED_FIXED_RECORD", 7 );
|
72 |
-
|
73 |
-
class ahcGeoIP {
|
74 |
-
var $flags;
|
75 |
-
var $filehandle;
|
76 |
-
var $memory_buffer;
|
77 |
-
var $databaseType;
|
78 |
-
var $databaseSegments;
|
79 |
-
var $record_length;
|
80 |
-
var $shmid;
|
81 |
-
var $GEOIP_COUNTRY_CODE_TO_NUMBER = array(
|
82 |
-
"" => 0, "AP" => 1, "EU" => 2, "AD" => 3, "AE" => 4, "AF" => 5,
|
83 |
-
"AG" => 6, "AI" => 7, "AL" => 8, "AM" => 9, "CW" => 10, "AO" => 11,
|
84 |
-
"AQ" => 12, "AR" => 13, "AS" => 14, "AT" => 15, "AU" => 16, "AW" => 17,
|
85 |
-
"AZ" => 18, "BA" => 19, "BB" => 20, "BD" => 21, "BE" => 22, "BF" => 23,
|
86 |
-
"BG" => 24, "BH" => 25, "BI" => 26, "BJ" => 27, "BM" => 28, "BN" => 29,
|
87 |
-
"BO" => 30, "BR" => 31, "BS" => 32, "BT" => 33, "BV" => 34, "BW" => 35,
|
88 |
-
"BY" => 36, "BZ" => 37, "CA" => 38, "CC" => 39, "CD" => 40, "CF" => 41,
|
89 |
-
"CG" => 42, "CH" => 43, "CI" => 44, "CK" => 45, "CL" => 46, "CM" => 47,
|
90 |
-
"CN" => 48, "CO" => 49, "CR" => 50, "CU" => 51, "CV" => 52, "CX" => 53,
|
91 |
-
"CY" => 54, "CZ" => 55, "DE" => 56, "DJ" => 57, "DK" => 58, "DM" => 59,
|
92 |
-
"DO" => 60, "DZ" => 61, "EC" => 62, "EE" => 63, "EG" => 64, "EH" => 65,
|
93 |
-
"ER" => 66, "ES" => 67, "ET" => 68, "FI" => 69, "FJ" => 70, "FK" => 71,
|
94 |
-
"FM" => 72, "FO" => 73, "FR" => 74, "SX" => 75, "GA" => 76, "GB" => 77,
|
95 |
-
"GD" => 78, "GE" => 79, "GF" => 80, "GH" => 81, "GI" => 82, "GL" => 83,
|
96 |
-
"GM" => 84, "GN" => 85, "GP" => 86, "GQ" => 87, "GR" => 88, "GS" => 89,
|
97 |
-
"GT" => 90, "GU" => 91, "GW" => 92, "GY" => 93, "HK" => 94, "HM" => 95,
|
98 |
-
"HN" => 96, "HR" => 97, "HT" => 98, "HU" => 99, "ID" => 100, "IE" => 101,
|
99 |
-
"IL" => 102, "IN" => 103, "IO" => 104, "IQ" => 105, "IR" => 106, "IS" => 107,
|
100 |
-
"IT" => 108, "JM" => 109, "JO" => 110, "JP" => 111, "KE" => 112, "KG" => 113,
|
101 |
-
"KH" => 114, "KI" => 115, "KM" => 116, "KN" => 117, "KP" => 118, "KR" => 119,
|
102 |
-
"KW" => 120, "KY" => 121, "KZ" => 122, "LA" => 123, "LB" => 124, "LC" => 125,
|
103 |
-
"LI" => 126, "LK" => 127, "LR" => 128, "LS" => 129, "LT" => 130, "LU" => 131,
|
104 |
-
"LV" => 132, "LY" => 133, "MA" => 134, "MC" => 135, "MD" => 136, "MG" => 137,
|
105 |
-
"MH" => 138, "MK" => 139, "ML" => 140, "MM" => 141, "MN" => 142, "MO" => 143,
|
106 |
-
"MP" => 144, "MQ" => 145, "MR" => 146, "MS" => 147, "MT" => 148, "MU" => 149,
|
107 |
-
"MV" => 150, "MW" => 151, "MX" => 152, "MY" => 153, "MZ" => 154, "NA" => 155,
|
108 |
-
"NC" => 156, "NE" => 157, "NF" => 158, "NG" => 159, "NI" => 160, "NL" => 161,
|
109 |
-
"NO" => 162, "NP" => 163, "NR" => 164, "NU" => 165, "NZ" => 166, "OM" => 167,
|
110 |
-
"PA" => 168, "PE" => 169, "PF" => 170, "PG" => 171, "PH" => 172, "PK" => 173,
|
111 |
-
"PL" => 174, "PM" => 175, "PN" => 176, "PR" => 177, "PS" => 178, "PT" => 179,
|
112 |
-
"PW" => 180, "PY" => 181, "QA" => 182, "RE" => 183, "RO" => 184, "RU" => 185,
|
113 |
-
"RW" => 186, "SA" => 187, "SB" => 188, "SC" => 189, "SD" => 190, "SE" => 191,
|
114 |
-
"SG" => 192, "SH" => 193, "SI" => 194, "SJ" => 195, "SK" => 196, "SL" => 197,
|
115 |
-
"SM" => 198, "SN" => 199, "SO" => 200, "SR" => 201, "ST" => 202, "SV" => 203,
|
116 |
-
"SY" => 204, "SZ" => 205, "TC" => 206, "TD" => 207, "TF" => 208, "TG" => 209,
|
117 |
-
"TH" => 210, "TJ" => 211, "TK" => 212, "TM" => 213, "TN" => 214, "TO" => 215,
|
118 |
-
"TL" => 216, "TR" => 217, "TT" => 218, "TV" => 219, "TW" => 220, "TZ" => 221,
|
119 |
-
"UA" => 222, "UG" => 223, "UM" => 224, "US" => 225, "UY" => 226, "UZ" => 227,
|
120 |
-
"VA" => 228, "VC" => 229, "VE" => 230, "VG" => 231, "VI" => 232, "VN" => 233,
|
121 |
-
"VU" => 234, "WF" => 235, "WS" => 236, "YE" => 237, "YT" => 238, "RS" => 239,
|
122 |
-
"ZA" => 240, "ZM" => 241, "ME" => 242, "ZW" => 243, "A1" => 244, "A2" => 245,
|
123 |
-
"O1" => 246, "AX" => 247, "GG" => 248, "IM" => 249, "JE" => 250, "BL" => 251,
|
124 |
-
"MF" => 252, "BQ" => 253,
|
125 |
-
);
|
126 |
-
var $GEOIP_COUNTRY_CODES = array(
|
127 |
-
"","AP","EU","AD","AE","AF","AG","AI","AL","AM","CW",
|
128 |
-
"AO","AQ","AR","AS","AT","AU","AW","AZ","BA","BB",
|
129 |
-
"BD","BE","BF","BG","BH","BI","BJ","BM","BN","BO",
|
130 |
-
"BR","BS","BT","BV","BW","BY","BZ","CA","CC","CD",
|
131 |
-
"CF","CG","CH","CI","CK","CL","CM","CN","CO","CR",
|
132 |
-
"CU","CV","CX","CY","CZ","DE","DJ","DK","DM","DO",
|
133 |
-
"DZ","EC","EE","EG","EH","ER","ES","ET","FI","FJ",
|
134 |
-
"FK","FM","FO","FR","SX","GA","GB","GD","GE","GF",
|
135 |
-
"GH","GI","GL","GM","GN","GP","GQ","GR","GS","GT",
|
136 |
-
"GU","GW","GY","HK","HM","HN","HR","HT","HU","ID",
|
137 |
-
"IE","IL","IN","IO","IQ","IR","IS","IT","JM","JO",
|
138 |
-
"JP","KE","KG","KH","KI","KM","KN","KP","KR","KW",
|
139 |
-
"KY","KZ","LA","LB","LC","LI","LK","LR","LS","LT",
|
140 |
-
"LU","LV","LY","MA","MC","MD","MG","MH","MK","ML",
|
141 |
-
"MM","MN","MO","MP","MQ","MR","MS","MT","MU","MV",
|
142 |
-
"MW","MX","MY","MZ","NA","NC","NE","NF","NG","NI",
|
143 |
-
"NL","NO","NP","NR","NU","NZ","OM","PA","PE","PF",
|
144 |
-
"PG","PH","PK","PL","PM","PN","PR","PS","PT","PW",
|
145 |
-
"PY","QA","RE","RO","RU","RW","SA","SB","SC","SD",
|
146 |
-
"SE","SG","SH","SI","SJ","SK","SL","SM","SN","SO",
|
147 |
-
"SR","ST","SV","SY","SZ","TC","TD","TF","TG","TH",
|
148 |
-
"TJ","TK","TM","TN","TO","TL","TR","TT","TV","TW",
|
149 |
-
"TZ","UA","UG","UM","US","UY","UZ","VA","VC","VE",
|
150 |
-
"VG","VI","VN","VU","WF","WS","YE","YT","RS","ZA",
|
151 |
-
"ZM","ME","ZW","A1","A2","O1","AX","GG","IM","JE",
|
152 |
-
"BL","MF", "BQ");
|
153 |
-
var $GEOIP_COUNTRY_CODES3 = array(
|
154 |
-
"","AP","EU","AND","ARE","AFG","ATG","AIA","ALB","ARM","CUW",
|
155 |
-
"AGO","ATA","ARG","ASM","AUT","AUS","ABW","AZE","BIH","BRB",
|
156 |
-
"BGD","BEL","BFA","BGR","BHR","BDI","BEN","BMU","BRN","BOL",
|
157 |
-
"BRA","BHS","BTN","BVT","BWA","BLR","BLZ","CAN","CCK","COD",
|
158 |
-
"CAF","COG","CHE","CIV","COK","CHL","CMR","CHN","COL","CRI",
|
159 |
-
"CUB","CPV","CXR","CYP","CZE","DEU","DJI","DNK","DMA","DOM",
|
160 |
-
"DZA","ECU","EST","EGY","ESH","ERI","ESP","ETH","FIN","FJI",
|
161 |
-
"FLK","FSM","FRO","FRA","SXM","GAB","GBR","GRD","GEO","GUF",
|
162 |
-
"GHA","GIB","GRL","GMB","GIN","GLP","GNQ","GRC","SGS","GTM",
|
163 |
-
"GUM","GNB","GUY","HKG","HMD","HND","HRV","HTI","HUN","IDN",
|
164 |
-
"IRL","ISR","IND","IOT","IRQ","IRN","ISL","ITA","JAM","JOR",
|
165 |
-
"JPN","KEN","KGZ","KHM","KIR","COM","KNA","PRK","KOR","KWT",
|
166 |
-
"CYM","KAZ","LAO","LBN","LCA","LIE","LKA","LBR","LSO","LTU",
|
167 |
-
"LUX","LVA","LBY","MAR","MCO","MDA","MDG","MHL","MKD","MLI",
|
168 |
-
"MMR","MNG","MAC","MNP","MTQ","MRT","MSR","MLT","MUS","MDV",
|
169 |
-
"MWI","MEX","MYS","MOZ","NAM","NCL","NER","NFK","NGA","NIC",
|
170 |
-
"NLD","NOR","NPL","NRU","NIU","NZL","OMN","PAN","PER","PYF",
|
171 |
-
"PNG","PHL","PAK","POL","SPM","PCN","PRI","PSE","PRT","PLW",
|
172 |
-
"PRY","QAT","REU","ROU","RUS","RWA","SAU","SLB","SYC","SDN",
|
173 |
-
"SWE","SGP","SHN","SVN","SJM","SVK","SLE","SMR","SEN","SOM",
|
174 |
-
"SUR","STP","SLV","SYR","SWZ","TCA","TCD","ATF","TGO","THA",
|
175 |
-
"TJK","TKL","TKM","TUN","TON","TLS","TUR","TTO","TUV","TWN",
|
176 |
-
"TZA","UKR","UGA","UMI","USA","URY","UZB","VAT","VCT","VEN",
|
177 |
-
"VGB","VIR","VNM","VUT","WLF","WSM","YEM","MYT","SRB","ZAF",
|
178 |
-
"ZMB","MNE","ZWE","A1","A2","O1","ALA","GGY","IMN","JEY",
|
179 |
-
"BLM","MAF", "BES"
|
180 |
-
);
|
181 |
-
var $GEOIP_COUNTRY_NAMES = array(
|
182 |
-
"","Asia/Pacific Region","Europe","Andorra","United Arab Emirates","Afghanistan","Antigua and Barbuda","Anguilla","Albania","Armenia","Curacao",
|
183 |
-
"Angola","Antarctica","Argentina","American Samoa","Austria","Australia","Aruba","Azerbaijan","Bosnia and Herzegovina","Barbados",
|
184 |
-
"Bangladesh","Belgium","Burkina Faso","Bulgaria","Bahrain","Burundi","Benin","Bermuda","Brunei Darussalam","Bolivia",
|
185 |
-
"Brazil","Bahamas","Bhutan","Bouvet Island","Botswana","Belarus","Belize","Canada","Cocos (Keeling) Islands","Congo, The Democratic Republic of the",
|
186 |
-
"Central African Republic","Congo","Switzerland","Cote D'Ivoire","Cook Islands","Chile","Cameroon","China","Colombia","Costa Rica",
|
187 |
-
"Cuba","Cape Verde","Christmas Island","Cyprus","Czech Republic","Germany","Djibouti","Denmark","Dominica","Dominican Republic",
|
188 |
-
"Algeria","Ecuador","Estonia","Egypt","Western Sahara","Eritrea","Spain","Ethiopia","Finland","Fiji",
|
189 |
-
"Falkland Islands (Malvinas)","Micronesia, Federated States of","Faroe Islands","France","Sint Maarten (Dutch part)","Gabon","United Kingdom","Grenada","Georgia","French Guiana",
|
190 |
-
"Ghana","Gibraltar","Greenland","Gambia","Guinea","Guadeloupe","Equatorial Guinea","Greece","South Georgia and the South Sandwich Islands","Guatemala",
|
191 |
-
"Guam","Guinea-Bissau","Guyana","Hong Kong","Heard Island and McDonald Islands","Honduras","Croatia","Haiti","Hungary","Indonesia",
|
192 |
-
"Ireland","Israel","India","British Indian Ocean Territory","Iraq","Iran, Islamic Republic of","Iceland","Italy","Jamaica","Jordan",
|
193 |
-
"Japan","Kenya","Kyrgyzstan","Cambodia","Kiribati","Comoros","Saint Kitts and Nevis","Korea, Democratic People's Republic of","Korea, Republic of","Kuwait",
|
194 |
-
"Cayman Islands","Kazakhstan","Lao People's Democratic Republic","Lebanon","Saint Lucia","Liechtenstein","Sri Lanka","Liberia","Lesotho","Lithuania",
|
195 |
-
"Luxembourg","Latvia","Libya","Morocco","Monaco","Moldova, Republic of","Madagascar","Marshall Islands","Macedonia","Mali",
|
196 |
-
"Myanmar","Mongolia","Macau","Northern Mariana Islands","Martinique","Mauritania","Montserrat","Malta","Mauritius","Maldives",
|
197 |
-
"Malawi","Mexico","Malaysia","Mozambique","Namibia","New Caledonia","Niger","Norfolk Island","Nigeria","Nicaragua",
|
198 |
-
"Netherlands","Norway","Nepal","Nauru","Niue","New Zealand","Oman","Panama","Peru","French Polynesia",
|
199 |
-
"Papua New Guinea","Philippines","Pakistan","Poland","Saint Pierre and Miquelon","Pitcairn Islands","Puerto Rico","Palestinian Territory","Portugal","Palau",
|
200 |
-
"Paraguay","Qatar","Reunion","Romania","Russian Federation","Rwanda","Saudi Arabia","Solomon Islands","Seychelles","Sudan",
|
201 |
-
"Sweden","Singapore","Saint Helena","Slovenia","Svalbard and Jan Mayen","Slovakia","Sierra Leone","San Marino","Senegal","Somalia","Suriname",
|
202 |
-
"Sao Tome and Principe","El Salvador","Syrian Arab Republic","Swaziland","Turks and Caicos Islands","Chad","French Southern Territories","Togo","Thailand",
|
203 |
-
"Tajikistan","Tokelau","Turkmenistan","Tunisia","Tonga","Timor-Leste","Turkey","Trinidad and Tobago","Tuvalu","Taiwan",
|
204 |
-
"Tanzania, United Republic of","Ukraine","Uganda","United States Minor Outlying Islands","United States","Uruguay","Uzbekistan","Holy See (Vatican City State)","Saint Vincent and the Grenadines","Venezuela",
|
205 |
-
"Virgin Islands, British","Virgin Islands, U.S.","Vietnam","Vanuatu","Wallis and Futuna","Samoa","Yemen","Mayotte","Serbia","South Africa",
|
206 |
-
"Zambia","Montenegro","Zimbabwe","Anonymous Proxy","Satellite Provider","Other","Aland Islands","Guernsey","Isle of Man","Jersey",
|
207 |
-
"Saint Barthelemy","Saint Martin", "Bonaire, Saint Eustatius and Saba"
|
208 |
-
);
|
209 |
-
|
210 |
-
var $GEOIP_CONTINENT_CODES = array(
|
211 |
-
"--", "AS","EU","EU","AS","AS","NA","NA","EU","AS","NA",
|
212 |
-
"AF","AN","SA","OC","EU","OC","NA","AS","EU","NA",
|
213 |
-
"AS","EU","AF","EU","AS","AF","AF","NA","AS","SA",
|
214 |
-
"SA","NA","AS","AN","AF","EU","NA","NA","AS","AF",
|
215 |
-
"AF","AF","EU","AF","OC","SA","AF","AS","SA","NA",
|
216 |
-
"NA","AF","AS","AS","EU","EU","AF","EU","NA","NA",
|
217 |
-
"AF","SA","EU","AF","AF","AF","EU","AF","EU","OC",
|
218 |
-
"SA","OC","EU","EU","NA","AF","EU","NA","AS","SA",
|
219 |
-
"AF","EU","NA","AF","AF","NA","AF","EU","AN","NA",
|
220 |
-
"OC","AF","SA","AS","AN","NA","EU","NA","EU","AS",
|
221 |
-
"EU","AS","AS","AS","AS","AS","EU","EU","NA","AS",
|
222 |
-
"AS","AF","AS","AS","OC","AF","NA","AS","AS","AS",
|
223 |
-
"NA","AS","AS","AS","NA","EU","AS","AF","AF","EU",
|
224 |
-
"EU","EU","AF","AF","EU","EU","AF","OC","EU","AF",
|
225 |
-
"AS","AS","AS","OC","NA","AF","NA","EU","AF","AS",
|
226 |
-
"AF","NA","AS","AF","AF","OC","AF","OC","AF","NA",
|
227 |
-
"EU","EU","AS","OC","OC","OC","AS","NA","SA","OC",
|
228 |
-
"OC","AS","AS","EU","NA","OC","NA","AS","EU","OC",
|
229 |
-
"SA","AS","AF","EU","EU","AF","AS","OC","AF","AF",
|
230 |
-
"EU","AS","AF","EU","EU","EU","AF","EU","AF","AF",
|
231 |
-
"SA","AF","NA","AS","AF","NA","AF","AN","AF","AS",
|
232 |
-
"AS","OC","AS","AF","OC","AS","EU","NA","OC","AS",
|
233 |
-
"AF","EU","AF","OC","NA","SA","AS","EU","NA","SA",
|
234 |
-
"NA","NA","AS","OC","OC","OC","AS","AF","EU","AF",
|
235 |
-
"AF","EU","AF","--","--","--","EU","EU","EU","EU",
|
236 |
-
"NA","NA","NA"
|
237 |
-
);
|
238 |
-
|
239 |
-
}
|
240 |
-
if(! function_exists('geoip_load_shared_mem')){
|
241 |
-
function geoip_load_shared_mem ($file) {
|
242 |
-
|
243 |
-
$fp = fopen($file, "rb");
|
244 |
-
if (!$fp) {
|
245 |
-
print "error opening $file: $php_errormsg\n";
|
246 |
-
exit;
|
247 |
-
}
|
248 |
-
$s_array = fstat($fp);
|
249 |
-
$size = $s_array['size'];
|
250 |
-
if ($shmid = @shmop_open (GEOIP_SHM_KEY, "w", 0, 0)) {
|
251 |
-
shmop_delete ($shmid);
|
252 |
-
shmop_close ($shmid);
|
253 |
-
}
|
254 |
-
$shmid = shmop_open (GEOIP_SHM_KEY, "c", 0644, $size);
|
255 |
-
shmop_write ($shmid, fread($fp, $size), 0);
|
256 |
-
shmop_close ($shmid);
|
257 |
-
}
|
258 |
-
}
|
259 |
-
|
260 |
-
if(! function_exists('_setup_segments')){
|
261 |
-
function _setup_segments($gi){
|
262 |
-
$gi->databaseType = GEOIP_COUNTRY_EDITION;
|
263 |
-
$gi->record_length = STANDARD_RECORD_LENGTH;
|
264 |
-
if ($gi->flags & GEOIP_SHARED_MEMORY) {
|
265 |
-
$offset = @shmop_size ($gi->shmid) - 3;
|
266 |
-
for ($i = 0; $i < STRUCTURE_INFO_MAX_SIZE; $i++) {
|
267 |
-
$delim = @shmop_read ($gi->shmid, $offset, 3);
|
268 |
-
$offset += 3;
|
269 |
-
if ($delim == (chr(255).chr(255).chr(255))) {
|
270 |
-
$gi->databaseType = ord(@shmop_read ($gi->shmid, $offset, 1));
|
271 |
-
$offset++;
|
272 |
-
|
273 |
-
if ($gi->databaseType == GEOIP_REGION_EDITION_REV0){
|
274 |
-
$gi->databaseSegments = GEOIP_STATE_BEGIN_REV0;
|
275 |
-
} else if ($gi->databaseType == GEOIP_REGION_EDITION_REV1){
|
276 |
-
$gi->databaseSegments = GEOIP_STATE_BEGIN_REV1;
|
277 |
-
} else if (($gi->databaseType == GEOIP_CITY_EDITION_REV0)||
|
278 |
-
($gi->databaseType == GEOIP_CITY_EDITION_REV1)
|
279 |
-
|| ($gi->databaseType == GEOIP_ORG_EDITION)
|
280 |
-
|| ($gi->databaseType == GEOIP_ORG_EDITION_V6)
|
281 |
-
|| ($gi->databaseType == GEOIP_DOMAIN_EDITION)
|
282 |
-
|| ($gi->databaseType == GEOIP_DOMAIN_EDITION_V6)
|
283 |
-
|| ($gi->databaseType == GEOIP_ISP_EDITION)
|
284 |
-
|| ($gi->databaseType == GEOIP_ISP_EDITION_V6)
|
285 |
-
|| ($gi->databaseType == GEOIP_USERTYPE_EDITION)
|
286 |
-
|| ($gi->databaseType == GEOIP_USERTYPE_EDITION_V6)
|
287 |
-
|| ($gi->databaseType == GEOIP_LOCATIONA_EDITION)
|
288 |
-
|| ($gi->databaseType == GEOIP_ACCURACYRADIUS_EDITION)
|
289 |
-
|| ($gi->databaseType == GEOIP_CITY_EDITION_REV0_V6)
|
290 |
-
|| ($gi->databaseType == GEOIP_CITY_EDITION_REV1_V6)
|
291 |
-
|| ($gi->databaseType == GEOIP_NETSPEED_EDITION_REV1)
|
292 |
-
|| ($gi->databaseType == GEOIP_NETSPEED_EDITION_REV1_V6)
|
293 |
-
|| ($gi->databaseType == GEOIP_ASNUM_EDITION)
|
294 |
-
|| ($gi->databaseType == GEOIP_ASNUM_EDITION_V6)){
|
295 |
-
$gi->databaseSegments = 0;
|
296 |
-
$buf = @shmop_read ($gi->shmid, $offset, SEGMENT_RECORD_LENGTH);
|
297 |
-
for ($j = 0;$j < SEGMENT_RECORD_LENGTH;$j++){
|
298 |
-
$gi->databaseSegments += (ord($buf[$j]) << ($j * 8));
|
299 |
-
}
|
300 |
-
if (($gi->databaseType == GEOIP_ORG_EDITION)
|
301 |
-
|| ($gi->databaseType == GEOIP_ORG_EDITION_V6)
|
302 |
-
|| ($gi->databaseType == GEOIP_DOMAIN_EDITION)
|
303 |
-
|| ($gi->databaseType == GEOIP_DOMAIN_EDITION_V6)
|
304 |
-
|| ($gi->databaseType == GEOIP_ISP_EDITION)
|
305 |
-
|| ($gi->databaseType == GEOIP_ISP_EDITION_V6)) {
|
306 |
-
$gi->record_length = ORG_RECORD_LENGTH;
|
307 |
-
}
|
308 |
-
}
|
309 |
-
break;
|
310 |
-
} else {
|
311 |
-
$offset -= 4;
|
312 |
-
}
|
313 |
-
}
|
314 |
-
if (($gi->databaseType == GEOIP_COUNTRY_EDITION)||
|
315 |
-
($gi->databaseType == GEOIP_COUNTRY_EDITION_V6)||
|
316 |
-
($gi->databaseType == GEOIP_PROXY_EDITION)||
|
317 |
-
($gi->databaseType == GEOIP_NETSPEED_EDITION)){
|
318 |
-
$gi->databaseSegments = GEOIP_COUNTRY_BEGIN;
|
319 |
-
}
|
320 |
-
} else {
|
321 |
-
$filepos = ftell($gi->filehandle);
|
322 |
-
fseek($gi->filehandle, -3, SEEK_END);
|
323 |
-
for ($i = 0; $i < STRUCTURE_INFO_MAX_SIZE; $i++) {
|
324 |
-
$delim = fread($gi->filehandle,3);
|
325 |
-
if ($delim == (chr(255).chr(255).chr(255))){
|
326 |
-
$gi->databaseType = ord(fread($gi->filehandle,1));
|
327 |
-
if ($gi->databaseType == GEOIP_REGION_EDITION_REV0){
|
328 |
-
$gi->databaseSegments = GEOIP_STATE_BEGIN_REV0;
|
329 |
-
}
|
330 |
-
else if ($gi->databaseType == GEOIP_REGION_EDITION_REV1){
|
331 |
-
$gi->databaseSegments = GEOIP_STATE_BEGIN_REV1;
|
332 |
-
} else if (($gi->databaseType == GEOIP_CITY_EDITION_REV0)
|
333 |
-
|| ($gi->databaseType == GEOIP_CITY_EDITION_REV1)
|
334 |
-
|| ($gi->databaseType == GEOIP_CITY_EDITION_REV0_V6)
|
335 |
-
|| ($gi->databaseType == GEOIP_CITY_EDITION_REV1_V6)
|
336 |
-
|| ($gi->databaseType == GEOIP_ORG_EDITION)
|
337 |
-
|| ($gi->databaseType == GEOIP_DOMAIN_EDITION)
|
338 |
-
|| ($gi->databaseType == GEOIP_ISP_EDITION)
|
339 |
-
|| ($gi->databaseType == GEOIP_ORG_EDITION_V6)
|
340 |
-
|| ($gi->databaseType == GEOIP_DOMAIN_EDITION_V6)
|
341 |
-
|| ($gi->databaseType == GEOIP_ISP_EDITION_V6)
|
342 |
-
|| ($gi->databaseType == GEOIP_LOCATIONA_EDITION)
|
343 |
-
|| ($gi->databaseType == GEOIP_ACCURACYRADIUS_EDITION)
|
344 |
-
|| ($gi->databaseType == GEOIP_CITY_EDITION_REV0_V6)
|
345 |
-
|| ($gi->databaseType == GEOIP_CITY_EDITION_REV1_V6)
|
346 |
-
|| ($gi->databaseType == GEOIP_NETSPEED_EDITION_REV1)
|
347 |
-
|| ($gi->databaseType == GEOIP_NETSPEED_EDITION_REV1_V6)
|
348 |
-
|| ($gi->databaseType == GEOIP_USERTYPE_EDITION)
|
349 |
-
|| ($gi->databaseType == GEOIP_USERTYPE_EDITION_V6)
|
350 |
-
|| ($gi->databaseType == GEOIP_ASNUM_EDITION)
|
351 |
-
|| ($gi->databaseType == GEOIP_ASNUM_EDITION_V6)){
|
352 |
-
$gi->databaseSegments = 0;
|
353 |
-
$buf = fread($gi->filehandle,SEGMENT_RECORD_LENGTH);
|
354 |
-
for ($j = 0;$j < SEGMENT_RECORD_LENGTH;$j++){
|
355 |
-
$gi->databaseSegments += (ord($buf[$j]) << ($j * 8));
|
356 |
-
}
|
357 |
-
if ( ( $gi->databaseType == GEOIP_ORG_EDITION )
|
358 |
-
|| ( $gi->databaseType == GEOIP_DOMAIN_EDITION )
|
359 |
-
|| ( $gi->databaseType == GEOIP_ISP_EDITION )
|
360 |
-
|| ( $gi->databaseType == GEOIP_ORG_EDITION_V6 )
|
361 |
-
|| ( $gi->databaseType == GEOIP_DOMAIN_EDITION_V6 )
|
362 |
-
|| ( $gi->databaseType == GEOIP_ISP_EDITION_V6 )) {
|
363 |
-
$gi->record_length = ORG_RECORD_LENGTH;
|
364 |
-
}
|
365 |
-
}
|
366 |
-
break;
|
367 |
-
} else {
|
368 |
-
fseek($gi->filehandle, -4, SEEK_CUR);
|
369 |
-
}
|
370 |
-
}
|
371 |
-
if (($gi->databaseType == GEOIP_COUNTRY_EDITION)||
|
372 |
-
($gi->databaseType == GEOIP_COUNTRY_EDITION_V6)||
|
373 |
-
($gi->databaseType == GEOIP_PROXY_EDITION)||
|
374 |
-
($gi->databaseType == GEOIP_NETSPEED_EDITION)){
|
375 |
-
$gi->databaseSegments = GEOIP_COUNTRY_BEGIN;
|
376 |
-
}
|
377 |
-
fseek($gi->filehandle,$filepos,SEEK_SET);
|
378 |
-
|
379 |
-
}
|
380 |
-
return $gi;
|
381 |
-
}
|
382 |
-
}
|
383 |
-
|
384 |
-
if(! function_exists('geoip_open')){
|
385 |
-
function geoip_open($filename, $flags) {
|
386 |
-
$gi = new ahcGeoIP;
|
387 |
-
$gi->flags = $flags;
|
388 |
-
if ($gi->flags & GEOIP_SHARED_MEMORY) {
|
389 |
-
$gi->shmid = @shmop_open (GEOIP_SHM_KEY, "a", 0, 0);
|
390 |
-
} else {
|
391 |
-
$gi->filehandle = fopen($filename,"rb") or die( "Can not open $filename\n" );
|
392 |
-
if ($gi->flags & GEOIP_MEMORY_CACHE) {
|
393 |
-
$s_array = fstat($gi->filehandle);
|
394 |
-
$gi->memory_buffer = fread($gi->filehandle, $s_array['size']);
|
395 |
-
}
|
396 |
-
}
|
397 |
-
|
398 |
-
$gi = _setup_segments($gi);
|
399 |
-
return $gi;
|
400 |
-
}
|
401 |
-
}
|
402 |
-
|
403 |
-
if(! function_exists('geoip_close')){
|
404 |
-
function geoip_close($gi) {
|
405 |
-
if ($gi->flags & GEOIP_SHARED_MEMORY) {
|
406 |
-
return true;
|
407 |
-
}
|
408 |
-
|
409 |
-
return fclose($gi->filehandle);
|
410 |
-
}
|
411 |
-
}
|
412 |
-
|
413 |
-
if(! function_exists('geoip_country_id_by_name_v6')){
|
414 |
-
function geoip_country_id_by_name_v6($gi, $name) {
|
415 |
-
$rec = dns_get_record($name, DNS_AAAA);
|
416 |
-
if ( !$rec ) {
|
417 |
-
return false;
|
418 |
-
}
|
419 |
-
$addr = $rec[0]["ipv6"];
|
420 |
-
if (!$addr || $addr == $name) {
|
421 |
-
return false;
|
422 |
-
}
|
423 |
-
return geoip_country_id_by_addr_v6($gi, $addr);
|
424 |
-
}
|
425 |
-
}
|
426 |
-
|
427 |
-
if(! function_exists('geoip_country_id_by_name')){
|
428 |
-
function geoip_country_id_by_name($gi, $name) {
|
429 |
-
$addr = gethostbyname($name);
|
430 |
-
if (!$addr || $addr == $name) {
|
431 |
-
return false;
|
432 |
-
}
|
433 |
-
return geoip_country_id_by_addr($gi, $addr);
|
434 |
-
}
|
435 |
-
}
|
436 |
-
|
437 |
-
if(! function_exists('geoip_country_id_by_name')){
|
438 |
-
function geoip_country_code_by_name_v6($gi, $name) {
|
439 |
-
$country_id = geoip_country_id_by_name_v6($gi,$name);
|
440 |
-
if ($country_id !== false) {
|
441 |
-
return $gi->GEOIP_COUNTRY_CODES[$country_id];
|
442 |
-
}
|
443 |
-
return false;
|
444 |
-
}
|
445 |
-
}
|
446 |
-
|
447 |
-
if(! function_exists('geoip_country_code_by_name')){
|
448 |
-
function geoip_country_code_by_name($gi, $name) {
|
449 |
-
$country_id = geoip_country_id_by_name($gi,$name);
|
450 |
-
if ($country_id !== false) {
|
451 |
-
return $gi->GEOIP_COUNTRY_CODES[$country_id];
|
452 |
-
}
|
453 |
-
return false;
|
454 |
-
}
|
455 |
-
}
|
456 |
-
|
457 |
-
if(! function_exists('geoip_country_name_by_name_v6')){
|
458 |
-
function geoip_country_name_by_name_v6($gi, $name) {
|
459 |
-
$country_id = geoip_country_id_by_name_v6($gi,$name);
|
460 |
-
if ($country_id !== false) {
|
461 |
-
return $gi->GEOIP_COUNTRY_NAMES[$country_id];
|
462 |
-
}
|
463 |
-
return false;
|
464 |
-
}
|
465 |
-
}
|
466 |
-
|
467 |
-
if(! function_exists('geoip_country_name_by_name')){
|
468 |
-
function geoip_country_name_by_name($gi, $name) {
|
469 |
-
$country_id = geoip_country_id_by_name($gi,$name);
|
470 |
-
if ($country_id !== false) {
|
471 |
-
return $gi->GEOIP_COUNTRY_NAMES[$country_id];
|
472 |
-
}
|
473 |
-
return false;
|
474 |
-
}
|
475 |
-
}
|
476 |
-
|
477 |
-
if(! function_exists('geoip_country_id_by_addr_v6')){
|
478 |
-
function geoip_country_id_by_addr_v6($gi, $addr) {
|
479 |
-
$ipnum = inet_pton($addr);
|
480 |
-
return _geoip_seek_country_v6($gi, $ipnum) - GEOIP_COUNTRY_BEGIN;
|
481 |
-
}
|
482 |
-
}
|
483 |
-
|
484 |
-
if(! function_exists('geoip_country_id_by_addr')){
|
485 |
-
function geoip_country_id_by_addr($gi, $addr) {
|
486 |
-
$ipnum = ip2long($addr);
|
487 |
-
return _geoip_seek_country($gi, $ipnum) - GEOIP_COUNTRY_BEGIN;
|
488 |
-
}
|
489 |
-
}
|
490 |
-
|
491 |
-
if(! function_exists('geoip_country_code_by_addr_v6')){
|
492 |
-
function geoip_country_code_by_addr_v6($gi, $addr) {
|
493 |
-
$country_id = geoip_country_id_by_addr_v6($gi,$addr);
|
494 |
-
if ($country_id !== false) {
|
495 |
-
return $gi->GEOIP_COUNTRY_CODES[$country_id];
|
496 |
-
}
|
497 |
-
return false;
|
498 |
-
}
|
499 |
-
}
|
500 |
-
|
501 |
-
if(! function_exists('geoip_country_code_by_addr')){
|
502 |
-
function geoip_country_code_by_addr($gi, $addr) {
|
503 |
-
if ($gi->databaseType == GEOIP_CITY_EDITION_REV1) {
|
504 |
-
$record = geoip_record_by_addr($gi,$addr);
|
505 |
-
if ( $record !== false ) {
|
506 |
-
return $record->country_code;
|
507 |
-
}
|
508 |
-
} else {
|
509 |
-
$country_id = geoip_country_id_by_addr($gi,$addr);
|
510 |
-
if ($country_id !== false) {
|
511 |
-
return $gi->GEOIP_COUNTRY_CODES[$country_id];
|
512 |
-
}
|
513 |
-
}
|
514 |
-
return false;
|
515 |
-
}
|
516 |
-
}
|
517 |
-
|
518 |
-
if(! function_exists('geoip_country_name_by_addr_v6')){
|
519 |
-
function geoip_country_name_by_addr_v6($gi, $addr) {
|
520 |
-
$country_id = geoip_country_id_by_addr_v6($gi,$addr);
|
521 |
-
if ($country_id !== false) {
|
522 |
-
return $gi->GEOIP_COUNTRY_NAMES[$country_id];
|
523 |
-
}
|
524 |
-
return false;
|
525 |
-
}
|
526 |
-
}
|
527 |
-
|
528 |
-
if(! function_exists('geoip_country_name_by_addr')){
|
529 |
-
function geoip_country_name_by_addr($gi, $addr) {
|
530 |
-
if ($gi->databaseType == GEOIP_CITY_EDITION_REV1) {
|
531 |
-
$record = geoip_record_by_addr($gi,$addr);
|
532 |
-
return $record->country_name;
|
533 |
-
} else {
|
534 |
-
$country_id = geoip_country_id_by_addr($gi,$addr);
|
535 |
-
if ($country_id !== false) {
|
536 |
-
return $gi->GEOIP_COUNTRY_NAMES[$country_id];
|
537 |
-
}
|
538 |
-
}
|
539 |
-
return false;
|
540 |
-
}
|
541 |
-
}
|
542 |
-
|
543 |
-
if(! function_exists('_geoip_seek_country_v6')){
|
544 |
-
function _geoip_seek_country_v6($gi, $ipnum) {
|
545 |
-
|
546 |
-
# arrays from unpack start with offset 1
|
547 |
-
# yet another php mystery. array_merge work around
|
548 |
-
# this broken behaviour
|
549 |
-
$v6vec = array_merge(unpack( "C16", $ipnum));
|
550 |
-
|
551 |
-
$offset = 0;
|
552 |
-
for ($depth = 127; $depth >= 0; --$depth) {
|
553 |
-
if ($gi->flags & GEOIP_MEMORY_CACHE) {
|
554 |
-
// workaround php's broken substr, strpos, etc handling with
|
555 |
-
// mbstring.func_overload and mbstring.internal_encoding
|
556 |
-
$enc = mb_internal_encoding();
|
557 |
-
mb_internal_encoding('ISO-8859-1');
|
558 |
-
|
559 |
-
$buf = substr($gi->memory_buffer,
|
560 |
-
2 * $gi->record_length * $offset,
|
561 |
-
2 * $gi->record_length);
|
562 |
-
|
563 |
-
mb_internal_encoding($enc);
|
564 |
-
} elseif ($gi->flags & GEOIP_SHARED_MEMORY) {
|
565 |
-
$buf = @shmop_read ($gi->shmid,
|
566 |
-
2 * $gi->record_length * $offset,
|
567 |
-
2 * $gi->record_length );
|
568 |
-
} else {
|
569 |
-
fseek($gi->filehandle, 2 * $gi->record_length * $offset, SEEK_SET) == 0
|
570 |
-
or die("fseek failed");
|
571 |
-
$buf = fread($gi->filehandle, 2 * $gi->record_length);
|
572 |
-
}
|
573 |
-
$x = array(0,0);
|
574 |
-
for ($i = 0; $i < 2; ++$i) {
|
575 |
-
for ($j = 0; $j < $gi->record_length; ++$j) {
|
576 |
-
$x[$i] += ord($buf[$gi->record_length * $i + $j]) << ($j * 8);
|
577 |
-
}
|
578 |
-
}
|
579 |
-
|
580 |
-
$bnum = 127 - $depth;
|
581 |
-
$idx = $bnum >> 3;
|
582 |
-
$b_mask = 1 << ( $bnum & 7 ^ 7 );
|
583 |
-
if (($v6vec[$idx] & $b_mask) > 0) {
|
584 |
-
if ($x[1] >= $gi->databaseSegments) {
|
585 |
-
return $x[1];
|
586 |
-
}
|
587 |
-
$offset = $x[1];
|
588 |
-
} else {
|
589 |
-
if ($x[0] >= $gi->databaseSegments) {
|
590 |
-
return $x[0];
|
591 |
-
}
|
592 |
-
$offset = $x[0];
|
593 |
-
}
|
594 |
-
}
|
595 |
-
trigger_error("error traversing database - perhaps it is corrupt?", E_USER_ERROR);
|
596 |
-
return false;
|
597 |
-
}
|
598 |
-
}
|
599 |
-
|
600 |
-
if(! function_exists('_geoip_seek_country')){
|
601 |
-
function _geoip_seek_country($gi, $ipnum) {
|
602 |
-
$offset = 0;
|
603 |
-
for ($depth = 31; $depth >= 0; --$depth) {
|
604 |
-
if ($gi->flags & GEOIP_MEMORY_CACHE) {
|
605 |
-
// workaround php's broken substr, strpos, etc handling with
|
606 |
-
// mbstring.func_overload and mbstring.internal_encoding
|
607 |
-
$enc = mb_internal_encoding();
|
608 |
-
mb_internal_encoding('ISO-8859-1');
|
609 |
-
|
610 |
-
$buf = substr($gi->memory_buffer,
|
611 |
-
2 * $gi->record_length * $offset,
|
612 |
-
2 * $gi->record_length);
|
613 |
-
|
614 |
-
mb_internal_encoding($enc);
|
615 |
-
} elseif ($gi->flags & GEOIP_SHARED_MEMORY) {
|
616 |
-
$buf = @shmop_read ($gi->shmid,
|
617 |
-
2 * $gi->record_length * $offset,
|
618 |
-
2 * $gi->record_length );
|
619 |
-
} else {
|
620 |
-
fseek($gi->filehandle, 2 * $gi->record_length * $offset, SEEK_SET) == 0
|
621 |
-
or die("fseek failed");
|
622 |
-
$buf = fread($gi->filehandle, 2 * $gi->record_length);
|
623 |
-
}
|
624 |
-
$x = array(0,0);
|
625 |
-
for ($i = 0; $i < 2; ++$i) {
|
626 |
-
for ($j = 0; $j < $gi->record_length; ++$j) {
|
627 |
-
$x[$i] += ord($buf[$gi->record_length * $i + $j]) << ($j * 8);
|
628 |
-
}
|
629 |
-
}
|
630 |
-
if ($ipnum & (1 << $depth)) {
|
631 |
-
if ($x[1] >= $gi->databaseSegments) {
|
632 |
-
return $x[1];
|
633 |
-
}
|
634 |
-
$offset = $x[1];
|
635 |
-
} else {
|
636 |
-
if ($x[0] >= $gi->databaseSegments) {
|
637 |
-
return $x[0];
|
638 |
-
}
|
639 |
-
$offset = $x[0];
|
640 |
-
}
|
641 |
-
}
|
642 |
-
trigger_error("error traversing database - perhaps it is corrupt?", E_USER_ERROR);
|
643 |
-
return false;
|
644 |
-
}
|
645 |
-
}
|
646 |
-
|
647 |
-
if(! function_exists('_common_get_org')){
|
648 |
-
function _common_get_org($gi, $seek_org){
|
649 |
-
$record_pointer = $seek_org + (2 * $gi->record_length - 1) * $gi->databaseSegments;
|
650 |
-
if ($gi->flags & GEOIP_SHARED_MEMORY) {
|
651 |
-
$org_buf = @shmop_read ($gi->shmid, $record_pointer, MAX_ORG_RECORD_LENGTH);
|
652 |
-
} else {
|
653 |
-
fseek($gi->filehandle, $record_pointer, SEEK_SET);
|
654 |
-
$org_buf = fread($gi->filehandle,MAX_ORG_RECORD_LENGTH);
|
655 |
-
|
656 |
-
}
|
657 |
-
// workaround php's broken substr, strpos, etc handling with
|
658 |
-
// mbstring.func_overload and mbstring.internal_encoding
|
659 |
-
$enc = mb_internal_encoding();
|
660 |
-
mb_internal_encoding('ISO-8859-1');
|
661 |
-
$org_buf = substr($org_buf, 0, strpos($org_buf, "\0"));
|
662 |
-
mb_internal_encoding($enc);
|
663 |
-
return $org_buf;
|
664 |
-
}
|
665 |
-
}
|
666 |
-
|
667 |
-
if(! function_exists('_get_org_v6')){
|
668 |
-
function _get_org_v6($gi,$ipnum){
|
669 |
-
$seek_org = _geoip_seek_country_v6($gi,$ipnum);
|
670 |
-
if ($seek_org == $gi->databaseSegments) {
|
671 |
-
return NULL;
|
672 |
-
}
|
673 |
-
return _common_get_org($gi, $seek_org);
|
674 |
-
}
|
675 |
-
}
|
676 |
-
|
677 |
-
if(! function_exists('_get_org')){
|
678 |
-
function _get_org($gi,$ipnum){
|
679 |
-
$seek_org = _geoip_seek_country($gi,$ipnum);
|
680 |
-
if ($seek_org == $gi->databaseSegments) {
|
681 |
-
return NULL;
|
682 |
-
}
|
683 |
-
return _common_get_org($gi, $seek_org);
|
684 |
-
}
|
685 |
-
}
|
686 |
-
|
687 |
-
if(! function_exists('geoip_name_by_addr_v6')){
|
688 |
-
function geoip_name_by_addr_v6 ($gi,$addr) {
|
689 |
-
if ($addr == NULL) {
|
690 |
-
return 0;
|
691 |
-
}
|
692 |
-
$ipnum = inet_pton($addr);
|
693 |
-
return _get_org_v6($gi, $ipnum);
|
694 |
-
}
|
695 |
-
}
|
696 |
-
|
697 |
-
if(! function_exists('geoip_name_by_addr')){
|
698 |
-
function geoip_name_by_addr ($gi,$addr) {
|
699 |
-
if ($addr == NULL) {
|
700 |
-
return 0;
|
701 |
-
}
|
702 |
-
$ipnum = ip2long($addr);
|
703 |
-
return _get_org($gi, $ipnum);
|
704 |
-
}
|
705 |
-
}
|
706 |
-
|
707 |
-
if(! function_exists('geoip_org_by_addr')){
|
708 |
-
function geoip_org_by_addr ($gi,$addr) {
|
709 |
-
return geoip_name_by_addr($gi, $addr);
|
710 |
-
}
|
711 |
-
}
|
712 |
-
|
713 |
-
if(! function_exists('_get_region')){
|
714 |
-
function _get_region($gi,$ipnum){
|
715 |
-
if ($gi->databaseType == GEOIP_REGION_EDITION_REV0){
|
716 |
-
$seek_region = _geoip_seek_country($gi,$ipnum) - GEOIP_STATE_BEGIN_REV0;
|
717 |
-
if ($seek_region >= 1000){
|
718 |
-
$country_code = "US";
|
719 |
-
$region = chr(($seek_region - 1000)/26 + 65) . chr(($seek_region - 1000)%26 + 65);
|
720 |
-
} else {
|
721 |
-
$country_code = $gi->GEOIP_COUNTRY_CODES[$seek_region];
|
722 |
-
$region = "";
|
723 |
-
}
|
724 |
-
return array ($country_code,$region);
|
725 |
-
} else if ($gi->databaseType == GEOIP_REGION_EDITION_REV1) {
|
726 |
-
$seek_region = _geoip_seek_country($gi,$ipnum) - GEOIP_STATE_BEGIN_REV1;
|
727 |
-
//print $seek_region;
|
728 |
-
if ($seek_region < US_OFFSET){
|
729 |
-
$country_code = "";
|
730 |
-
$region = "";
|
731 |
-
} else if ($seek_region < CANADA_OFFSET) {
|
732 |
-
$country_code = "US";
|
733 |
-
$region = chr(($seek_region - US_OFFSET)/26 + 65) . chr(($seek_region - US_OFFSET)%26 + 65);
|
734 |
-
} else if ($seek_region < WORLD_OFFSET) {
|
735 |
-
$country_code = "CA";
|
736 |
-
$region = chr(($seek_region - CANADA_OFFSET)/26 + 65) . chr(($seek_region - CANADA_OFFSET)%26 + 65);
|
737 |
-
} else {
|
738 |
-
$country_code = $gi->GEOIP_COUNTRY_CODES[($seek_region - WORLD_OFFSET) / FIPS_RANGE];
|
739 |
-
$region = "";
|
740 |
-
}
|
741 |
-
return array ($country_code,$region);
|
742 |
-
}
|
743 |
-
}
|
744 |
-
}
|
745 |
-
|
746 |
-
if(! function_exists('geoip_region_by_addr')){
|
747 |
-
function geoip_region_by_addr ($gi,$addr) {
|
748 |
-
if ($addr == NULL) {
|
749 |
-
return 0;
|
750 |
-
}
|
751 |
-
$ipnum = ip2long($addr);
|
752 |
-
return _get_region($gi, $ipnum);
|
753 |
-
}
|
754 |
-
}
|
755 |
-
|
756 |
-
if(! function_exists('getdnsattributes')){
|
757 |
-
function getdnsattributes ($l,$ip){
|
758 |
-
$r = new Net_DNS_Resolver();
|
759 |
-
$r->nameservers = array("ws1.maxmind.com");
|
760 |
-
$p = $r->search($l."." . $ip .".s.maxmind.com","TXT","IN");
|
761 |
-
$str = is_object($p->answer[0])?$p->answer[0]->string():'';
|
762 |
-
$str = substr( $str, 1, -1 );
|
763 |
-
return $str;
|
764 |
-
}
|
765 |
-
}
|
766 |
-
}
|
767 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
geoip/src/geoipcity.inc
DELETED
@@ -1,171 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
/* geoipcity.inc
|
4 |
-
*
|
5 |
-
* Copyright (C) 2013 MaxMind, Inc.
|
6 |
-
*
|
7 |
-
* This library is free software; you can redistribute it and/or
|
8 |
-
* modify it under the terms of the GNU Lesser General Public
|
9 |
-
* License as published by the Free Software Foundation; either
|
10 |
-
* version 2.1 of the License, or (at your option) any later version.
|
11 |
-
*
|
12 |
-
* This library is distributed in the hope that it will be useful,
|
13 |
-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14 |
-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
15 |
-
* Lesser General Public License for more details.
|
16 |
-
*
|
17 |
-
* You should have received a copy of the GNU Lesser General Public
|
18 |
-
* License along with this library; if not, write to the Free Software
|
19 |
-
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
20 |
-
*/
|
21 |
-
|
22 |
-
|
23 |
-
define("FULL_RECORD_LENGTH", 50);
|
24 |
-
|
25 |
-
require_once 'geoip.inc';
|
26 |
-
require_once 'geoipregionvars.php';
|
27 |
-
|
28 |
-
class geoiprecord
|
29 |
-
{
|
30 |
-
public $country_code;
|
31 |
-
public $country_code3;
|
32 |
-
public $country_name;
|
33 |
-
public $region;
|
34 |
-
public $city;
|
35 |
-
public $postal_code;
|
36 |
-
public $latitude;
|
37 |
-
public $longitude;
|
38 |
-
public $area_code;
|
39 |
-
public $dma_code; # metro and dma code are the same. use metro_code
|
40 |
-
public $metro_code;
|
41 |
-
public $continent_code;
|
42 |
-
}
|
43 |
-
|
44 |
-
function _get_record_v6($gi, $ipnum)
|
45 |
-
{
|
46 |
-
$seek_country = _geoip_seek_country_v6($gi, $ipnum);
|
47 |
-
if ($seek_country == $gi->databaseSegments) {
|
48 |
-
return null;
|
49 |
-
}
|
50 |
-
return _common_get_record($gi, $seek_country);
|
51 |
-
}
|
52 |
-
|
53 |
-
function _common_get_record($gi, $seek_country)
|
54 |
-
{
|
55 |
-
// workaround php's broken substr, strpos, etc handling with
|
56 |
-
// mbstring.func_overload and mbstring.internal_encoding
|
57 |
-
$mbExists = extension_loaded('mbstring');
|
58 |
-
if ($mbExists) {
|
59 |
-
$enc = mb_internal_encoding();
|
60 |
-
mb_internal_encoding('ISO-8859-1');
|
61 |
-
}
|
62 |
-
|
63 |
-
$record_pointer = $seek_country + (2 * $gi->record_length - 1) * $gi->databaseSegments;
|
64 |
-
|
65 |
-
if ($gi->flags & GEOIP_MEMORY_CACHE) {
|
66 |
-
$record_buf = substr($gi->memory_buffer, $record_pointer, FULL_RECORD_LENGTH);
|
67 |
-
} elseif ($gi->flags & GEOIP_SHARED_MEMORY) {
|
68 |
-
$record_buf = @shmop_read($gi->shmid, $record_pointer, FULL_RECORD_LENGTH);
|
69 |
-
} else {
|
70 |
-
fseek($gi->filehandle, $record_pointer, SEEK_SET);
|
71 |
-
$record_buf = fread($gi->filehandle, FULL_RECORD_LENGTH);
|
72 |
-
}
|
73 |
-
$record = new geoiprecord;
|
74 |
-
$record_buf_pos = 0;
|
75 |
-
$char = ord(substr($record_buf, $record_buf_pos, 1));
|
76 |
-
$record->country_code = $gi->GEOIP_COUNTRY_CODES[$char];
|
77 |
-
$record->country_code3 = $gi->GEOIP_COUNTRY_CODES3[$char];
|
78 |
-
$record->country_name = $gi->GEOIP_COUNTRY_NAMES[$char];
|
79 |
-
$record->continent_code = $gi->GEOIP_CONTINENT_CODES[$char];
|
80 |
-
$record_buf_pos++;
|
81 |
-
$str_length = 0;
|
82 |
-
|
83 |
-
// Get region
|
84 |
-
$char = ord(substr($record_buf, $record_buf_pos + $str_length, 1));
|
85 |
-
while ($char != 0) {
|
86 |
-
$str_length++;
|
87 |
-
$char = ord(substr($record_buf, $record_buf_pos + $str_length, 1));
|
88 |
-
}
|
89 |
-
if ($str_length > 0) {
|
90 |
-
$record->region = substr($record_buf, $record_buf_pos, $str_length);
|
91 |
-
}
|
92 |
-
$record_buf_pos += $str_length + 1;
|
93 |
-
$str_length = 0;
|
94 |
-
// Get city
|
95 |
-
$char = ord(substr($record_buf, $record_buf_pos + $str_length, 1));
|
96 |
-
while ($char != 0) {
|
97 |
-
$str_length++;
|
98 |
-
$char = ord(substr($record_buf, $record_buf_pos + $str_length, 1));
|
99 |
-
}
|
100 |
-
if ($str_length > 0) {
|
101 |
-
$record->city = substr($record_buf, $record_buf_pos, $str_length);
|
102 |
-
}
|
103 |
-
$record_buf_pos += $str_length + 1;
|
104 |
-
$str_length = 0;
|
105 |
-
// Get postal code
|
106 |
-
$char = ord(substr($record_buf, $record_buf_pos + $str_length, 1));
|
107 |
-
while ($char != 0) {
|
108 |
-
$str_length++;
|
109 |
-
$char = ord(substr($record_buf, $record_buf_pos + $str_length, 1));
|
110 |
-
}
|
111 |
-
if ($str_length > 0) {
|
112 |
-
$record->postal_code = substr($record_buf, $record_buf_pos, $str_length);
|
113 |
-
}
|
114 |
-
$record_buf_pos += $str_length + 1;
|
115 |
-
$str_length = 0;
|
116 |
-
// Get latitude and longitude
|
117 |
-
$latitude = 0;
|
118 |
-
$longitude = 0;
|
119 |
-
for ($j = 0; $j < 3; ++$j) {
|
120 |
-
$char = ord(substr($record_buf, $record_buf_pos++, 1));
|
121 |
-
$latitude += ($char << ($j * 8));
|
122 |
-
}
|
123 |
-
$record->latitude = ($latitude / 10000) - 180;
|
124 |
-
for ($j = 0; $j < 3; ++$j) {
|
125 |
-
$char = ord(substr($record_buf, $record_buf_pos++, 1));
|
126 |
-
$longitude += ($char << ($j * 8));
|
127 |
-
}
|
128 |
-
$record->longitude = ($longitude / 10000) - 180;
|
129 |
-
if (GEOIP_CITY_EDITION_REV1 == $gi->databaseType) {
|
130 |
-
$metroarea_combo = 0;
|
131 |
-
if ($record->country_code == "US") {
|
132 |
-
for ($j = 0; $j < 3; ++$j) {
|
133 |
-
$char = ord(substr($record_buf, $record_buf_pos++, 1));
|
134 |
-
$metroarea_combo += ($char << ($j * 8));
|
135 |
-
}
|
136 |
-
$record->metro_code = $record->dma_code = floor($metroarea_combo / 1000);
|
137 |
-
$record->area_code = $metroarea_combo % 1000;
|
138 |
-
}
|
139 |
-
}
|
140 |
-
if ($mbExists) {
|
141 |
-
mb_internal_encoding($enc);
|
142 |
-
}
|
143 |
-
return $record;
|
144 |
-
}
|
145 |
-
|
146 |
-
function GeoIP_record_by_addr_v6($gi, $addr)
|
147 |
-
{
|
148 |
-
if ($addr == null) {
|
149 |
-
return 0;
|
150 |
-
}
|
151 |
-
$ipnum = inet_pton($addr);
|
152 |
-
return _get_record_v6($gi, $ipnum);
|
153 |
-
}
|
154 |
-
|
155 |
-
function _get_record($gi, $ipnum)
|
156 |
-
{
|
157 |
-
$seek_country = _geoip_seek_country($gi, $ipnum);
|
158 |
-
if ($seek_country == $gi->databaseSegments) {
|
159 |
-
return null;
|
160 |
-
}
|
161 |
-
return _common_get_record($gi, $seek_country);
|
162 |
-
}
|
163 |
-
|
164 |
-
function GeoIP_record_by_addr($gi, $addr)
|
165 |
-
{
|
166 |
-
if ($addr == null) {
|
167 |
-
return 0;
|
168 |
-
}
|
169 |
-
$ipnum = ip2long($addr);
|
170 |
-
return _get_record($gi, $ipnum);
|
171 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
geoip/src/geoipregionvars.php
DELETED
@@ -1,4630 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
// Copyright 2014 MaxMind, Inc. All Rights Reserved
|
3 |
-
global $GEOIP_REGION_NAME;
|
4 |
-
$GEOIP_REGION_NAME = array (
|
5 |
-
'AD' =>
|
6 |
-
array (
|
7 |
-
'02' => 'Canillo',
|
8 |
-
'03' => 'Encamp',
|
9 |
-
'04' => 'La Massana',
|
10 |
-
'05' => 'Ordino',
|
11 |
-
'06' => 'Sant Julia de Loria',
|
12 |
-
'07' => 'Andorra la Vella',
|
13 |
-
'08' => 'Escaldes-Engordany',
|
14 |
-
),
|
15 |
-
'AE' =>
|
16 |
-
array (
|
17 |
-
'01' => 'Abu Dhabi',
|
18 |
-
'02' => 'Ajman',
|
19 |
-
'03' => 'Dubai',
|
20 |
-
'04' => 'Fujairah',
|
21 |
-
'05' => 'Ras Al Khaimah',
|
22 |
-
'06' => 'Sharjah',
|
23 |
-
'07' => 'Umm Al Quwain',
|
24 |
-
),
|
25 |
-
'AF' =>
|
26 |
-
array (
|
27 |
-
'01' => 'Badakhshan',
|
28 |
-
'02' => 'Badghis',
|
29 |
-
'03' => 'Baghlan',
|
30 |
-
'05' => 'Bamian',
|
31 |
-
'06' => 'Farah',
|
32 |
-
'07' => 'Faryab',
|
33 |
-
'08' => 'Ghazni',
|
34 |
-
'09' => 'Ghowr',
|
35 |
-
10 => 'Helmand',
|
36 |
-
11 => 'Herat',
|
37 |
-
13 => 'Kabol',
|
38 |
-
14 => 'Kapisa',
|
39 |
-
17 => 'Lowgar',
|
40 |
-
18 => 'Nangarhar',
|
41 |
-
19 => 'Nimruz',
|
42 |
-
23 => 'Kandahar',
|
43 |
-
24 => 'Kondoz',
|
44 |
-
26 => 'Takhar',
|
45 |
-
27 => 'Vardak',
|
46 |
-
28 => 'Zabol',
|
47 |
-
29 => 'Paktika',
|
48 |
-
30 => 'Balkh',
|
49 |
-
31 => 'Jowzjan',
|
50 |
-
32 => 'Samangan',
|
51 |
-
33 => 'Sar-e Pol',
|
52 |
-
34 => 'Konar',
|
53 |
-
35 => 'Laghman',
|
54 |
-
36 => 'Paktia',
|
55 |
-
37 => 'Khowst',
|
56 |
-
38 => 'Nurestan',
|
57 |
-
39 => 'Oruzgan',
|
58 |
-
40 => 'Parvan',
|
59 |
-
41 => 'Daykondi',
|
60 |
-
42 => 'Panjshir',
|
61 |
-
),
|
62 |
-
'AG' =>
|
63 |
-
array (
|
64 |
-
'01' => 'Barbuda',
|
65 |
-
'03' => 'Saint George',
|
66 |
-
'04' => 'Saint John',
|
67 |
-
'05' => 'Saint Mary',
|
68 |
-
'06' => 'Saint Paul',
|
69 |
-
'07' => 'Saint Peter',
|
70 |
-
'08' => 'Saint Philip',
|
71 |
-
'09' => 'Redonda',
|
72 |
-
),
|
73 |
-
'AL' =>
|
74 |
-
array (
|
75 |
-
40 => 'Berat',
|
76 |
-
41 => 'Diber',
|
77 |
-
42 => 'Durres',
|
78 |
-
43 => 'Elbasan',
|
79 |
-
44 => 'Fier',
|
80 |
-
45 => 'Gjirokaster',
|
81 |
-
46 => 'Korce',
|
82 |
-
47 => 'Kukes',
|
83 |
-
48 => 'Lezhe',
|
84 |
-
49 => 'Shkoder',
|
85 |
-
50 => 'Tirane',
|
86 |
-
51 => 'Vlore',
|
87 |
-
),
|
88 |
-
'AM' =>
|
89 |
-
array (
|
90 |
-
'01' => 'Aragatsotn',
|
91 |
-
'02' => 'Ararat',
|
92 |
-
'03' => 'Armavir',
|
93 |
-
'04' => 'Geghark\'unik\'',
|
94 |
-
'05' => 'Kotayk\'',
|
95 |
-
'06' => 'Lorri',
|
96 |
-
'07' => 'Shirak',
|
97 |
-
'08' => 'Syunik\'',
|
98 |
-
'09' => 'Tavush',
|
99 |
-
10 => 'Vayots\' Dzor',
|
100 |
-
11 => 'Yerevan',
|
101 |
-
),
|
102 |
-
'AO' =>
|
103 |
-
array (
|
104 |
-
'01' => 'Benguela',
|
105 |
-
'02' => 'Bie',
|
106 |
-
'03' => 'Cabinda',
|
107 |
-
'04' => 'Cuando Cubango',
|
108 |
-
'05' => 'Cuanza Norte',
|
109 |
-
'06' => 'Cuanza Sul',
|
110 |
-
'07' => 'Cunene',
|
111 |
-
'08' => 'Huambo',
|
112 |
-
'09' => 'Huila',
|
113 |
-
12 => 'Malanje',
|
114 |
-
13 => 'Namibe',
|
115 |
-
14 => 'Moxico',
|
116 |
-
15 => 'Uige',
|
117 |
-
16 => 'Zaire',
|
118 |
-
17 => 'Lunda Norte',
|
119 |
-
18 => 'Lunda Sul',
|
120 |
-
19 => 'Bengo',
|
121 |
-
20 => 'Luanda',
|
122 |
-
),
|
123 |
-
'AR' =>
|
124 |
-
array (
|
125 |
-
'01' => 'Buenos Aires',
|
126 |
-
'02' => 'Catamarca',
|
127 |
-
'03' => 'Chaco',
|
128 |
-
'04' => 'Chubut',
|
129 |
-
'05' => 'Cordoba',
|
130 |
-
'06' => 'Corrientes',
|
131 |
-
'07' => 'Distrito Federal',
|
132 |
-
'08' => 'Entre Rios',
|
133 |
-
'09' => 'Formosa',
|
134 |
-
10 => 'Jujuy',
|
135 |
-
11 => 'La Pampa',
|
136 |
-
12 => 'La Rioja',
|
137 |
-
13 => 'Mendoza',
|
138 |
-
14 => 'Misiones',
|
139 |
-
15 => 'Neuquen',
|
140 |
-
16 => 'Rio Negro',
|
141 |
-
17 => 'Salta',
|
142 |
-
18 => 'San Juan',
|
143 |
-
19 => 'San Luis',
|
144 |
-
20 => 'Santa Cruz',
|
145 |
-
21 => 'Santa Fe',
|
146 |
-
22 => 'Santiago del Estero',
|
147 |
-
23 => 'Tierra del Fuego',
|
148 |
-
24 => 'Tucuman',
|
149 |
-
),
|
150 |
-
'AT' =>
|
151 |
-
array (
|
152 |
-
'01' => 'Burgenland',
|
153 |
-
'02' => 'Karnten',
|
154 |
-
'03' => 'Niederosterreich',
|
155 |
-
'04' => 'Oberosterreich',
|
156 |
-
'05' => 'Salzburg',
|
157 |
-
'06' => 'Steiermark',
|
158 |
-
'07' => 'Tirol',
|
159 |
-
'08' => 'Vorarlberg',
|
160 |
-
'09' => 'Wien',
|
161 |
-
),
|
162 |
-
'AU' =>
|
163 |
-
array (
|
164 |
-
'01' => 'Australian Capital Territory',
|
165 |
-
'02' => 'New South Wales',
|
166 |
-
'03' => 'Northern Territory',
|
167 |
-
'04' => 'Queensland',
|
168 |
-
'05' => 'South Australia',
|
169 |
-
'06' => 'Tasmania',
|
170 |
-
'07' => 'Victoria',
|
171 |
-
'08' => 'Western Australia',
|
172 |
-
),
|
173 |
-
'AZ' =>
|
174 |
-
array (
|
175 |
-
'01' => 'Abseron',
|
176 |
-
'02' => 'Agcabadi',
|
177 |
-
'03' => 'Agdam',
|
178 |
-
'04' => 'Agdas',
|
179 |
-
'05' => 'Agstafa',
|
180 |
-
'06' => 'Agsu',
|
181 |
-
'07' => 'Ali Bayramli',
|
182 |
-
'08' => 'Astara',
|
183 |
-
'09' => 'Baki',
|
184 |
-
10 => 'Balakan',
|
185 |
-
11 => 'Barda',
|
186 |
-
12 => 'Beylaqan',
|
187 |
-
13 => 'Bilasuvar',
|
188 |
-
14 => 'Cabrayil',
|
189 |
-
15 => 'Calilabad',
|
190 |
-
16 => 'Daskasan',
|
191 |
-
17 => 'Davaci',
|
192 |
-
18 => 'Fuzuli',
|
193 |
-
19 => 'Gadabay',
|
194 |
-
20 => 'Ganca',
|
195 |
-
21 => 'Goranboy',
|
196 |
-
22 => 'Goycay',
|
197 |
-
23 => 'Haciqabul',
|
198 |
-
24 => 'Imisli',
|
199 |
-
25 => 'Ismayilli',
|
200 |
-
26 => 'Kalbacar',
|
201 |
-
27 => 'Kurdamir',
|
202 |
-
28 => 'Lacin',
|
203 |
-
30 => 'Lankaran',
|
204 |
-
31 => 'Lerik',
|
205 |
-
32 => 'Masalli',
|
206 |
-
33 => 'Mingacevir',
|
207 |
-
34 => 'Naftalan',
|
208 |
-
35 => 'Naxcivan',
|
209 |
-
36 => 'Neftcala',
|
210 |
-
37 => 'Oguz',
|
211 |
-
38 => 'Qabala',
|
212 |
-
39 => 'Qax',
|
213 |
-
40 => 'Qazax',
|
214 |
-
41 => 'Qobustan',
|
215 |
-
42 => 'Quba',
|
216 |
-
43 => 'Qubadli',
|
217 |
-
44 => 'Qusar',
|
218 |
-
45 => 'Saatli',
|
219 |
-
46 => 'Sabirabad',
|
220 |
-
48 => 'Saki',
|
221 |
-
49 => 'Salyan',
|
222 |
-
50 => 'Samaxi',
|
223 |
-
51 => 'Samkir',
|
224 |
-
52 => 'Samux',
|
225 |
-
53 => 'Siyazan',
|
226 |
-
54 => 'Sumqayit',
|
227 |
-
56 => 'Susa',
|
228 |
-
57 => 'Tartar',
|
229 |
-
58 => 'Tovuz',
|
230 |
-
59 => 'Ucar',
|
231 |
-
60 => 'Xacmaz',
|
232 |
-
61 => 'Xankandi',
|
233 |
-
62 => 'Xanlar',
|
234 |
-
63 => 'Xizi',
|
235 |
-
64 => 'Xocali',
|
236 |
-
65 => 'Xocavand',
|
237 |
-
66 => 'Yardimli',
|
238 |
-
68 => 'Yevlax',
|
239 |
-
69 => 'Zangilan',
|
240 |
-
70 => 'Zaqatala',
|
241 |
-
71 => 'Zardab',
|
242 |
-
),
|
243 |
-
'BA' =>
|
244 |
-
array (
|
245 |
-
'01' => 'Federation of Bosnia and Herzegovina',
|
246 |
-
'03' => 'Brcko District',
|
247 |
-
'02' => 'Republika Srpska',
|
248 |
-
),
|
249 |
-
'BB' =>
|
250 |
-
array (
|
251 |
-
'01' => 'Christ Church',
|
252 |
-
'02' => 'Saint Andrew',
|
253 |
-
'03' => 'Saint George',
|
254 |
-
'04' => 'Saint James',
|
255 |
-
'05' => 'Saint John',
|
256 |
-
'06' => 'Saint Joseph',
|
257 |
-
'07' => 'Saint Lucy',
|
258 |
-
'08' => 'Saint Michael',
|
259 |
-
'09' => 'Saint Peter',
|
260 |
-
10 => 'Saint Philip',
|
261 |
-
11 => 'Saint Thomas',
|
262 |
-
),
|
263 |
-
'BD' =>
|
264 |
-
array (
|
265 |
-
81 => 'Dhaka',
|
266 |
-
82 => 'Khulna',
|
267 |
-
83 => 'Rajshahi',
|
268 |
-
84 => 'Chittagong',
|
269 |
-
85 => 'Barisal',
|
270 |
-
86 => 'Sylhet',
|
271 |
-
87 => 'Rangpur',
|
272 |
-
),
|
273 |
-
'BE' =>
|
274 |
-
array (
|
275 |
-
'01' => 'Antwerpen',
|
276 |
-
'03' => 'Hainaut',
|
277 |
-
'04' => 'Liege',
|
278 |
-
'05' => 'Limburg',
|
279 |
-
'06' => 'Luxembourg',
|
280 |
-
'07' => 'Namur',
|
281 |
-
'08' => 'Oost-Vlaanderen',
|
282 |
-
'09' => 'West-Vlaanderen',
|
283 |
-
10 => 'Brabant Wallon',
|
284 |
-
11 => 'Brussels Hoofdstedelijk Gewest',
|
285 |
-
12 => 'Vlaams-Brabant',
|
286 |
-
13 => 'Flanders',
|
287 |
-
14 => 'Wallonia',
|
288 |
-
),
|
289 |
-
'BF' =>
|
290 |
-
array (
|
291 |
-
15 => 'Bam',
|
292 |
-
19 => 'Boulkiemde',
|
293 |
-
20 => 'Ganzourgou',
|
294 |
-
21 => 'Gnagna',
|
295 |
-
28 => 'Kouritenga',
|
296 |
-
33 => 'Oudalan',
|
297 |
-
34 => 'Passore',
|
298 |
-
36 => 'Sanguie',
|
299 |
-
40 => 'Soum',
|
300 |
-
42 => 'Tapoa',
|
301 |
-
44 => 'Zoundweogo',
|
302 |
-
45 => 'Bale',
|
303 |
-
46 => 'Banwa',
|
304 |
-
47 => 'Bazega',
|
305 |
-
48 => 'Bougouriba',
|
306 |
-
49 => 'Boulgou',
|
307 |
-
50 => 'Gourma',
|
308 |
-
51 => 'Houet',
|
309 |
-
52 => 'Ioba',
|
310 |
-
53 => 'Kadiogo',
|
311 |
-
54 => 'Kenedougou',
|
312 |
-
55 => 'Komoe',
|
313 |
-
56 => 'Komondjari',
|
314 |
-
57 => 'Kompienga',
|
315 |
-
58 => 'Kossi',
|
316 |
-
59 => 'Koulpelogo',
|
317 |
-
60 => 'Kourweogo',
|
318 |
-
61 => 'Leraba',
|
319 |
-
62 => 'Loroum',
|
320 |
-
63 => 'Mouhoun',
|
321 |
-
64 => 'Namentenga',
|
322 |
-
65 => 'Naouri',
|
323 |
-
66 => 'Nayala',
|
324 |
-
67 => 'Noumbiel',
|
325 |
-
68 => 'Oubritenga',
|
326 |
-
69 => 'Poni',
|
327 |
-
70 => 'Sanmatenga',
|
328 |
-
71 => 'Seno',
|
329 |
-
72 => 'Sissili',
|
330 |
-
73 => 'Sourou',
|
331 |
-
74 => 'Tuy',
|
332 |
-
75 => 'Yagha',
|
333 |
-
76 => 'Yatenga',
|
334 |
-
77 => 'Ziro',
|
335 |
-
78 => 'Zondoma',
|
336 |
-
),
|
337 |
-
'BG' =>
|
338 |
-
array (
|
339 |
-
33 => 'Mikhaylovgrad',
|
340 |
-
38 => 'Blagoevgrad',
|
341 |
-
39 => 'Burgas',
|
342 |
-
40 => 'Dobrich',
|
343 |
-
41 => 'Gabrovo',
|
344 |
-
42 => 'Grad Sofiya',
|
345 |
-
43 => 'Khaskovo',
|
346 |
-
44 => 'Kurdzhali',
|
347 |
-
45 => 'Kyustendil',
|
348 |
-
46 => 'Lovech',
|
349 |
-
47 => 'Montana',
|
350 |
-
48 => 'Pazardzhik',
|
351 |
-
49 => 'Pernik',
|
352 |
-
50 => 'Pleven',
|
353 |
-
51 => 'Plovdiv',
|
354 |
-
52 => 'Razgrad',
|
355 |
-
53 => 'Ruse',
|
356 |
-
54 => 'Shumen',
|
357 |
-
55 => 'Silistra',
|
358 |
-
56 => 'Sliven',
|
359 |
-
57 => 'Smolyan',
|
360 |
-
58 => 'Sofiya',
|
361 |
-
59 => 'Stara Zagora',
|
362 |
-
60 => 'Turgovishte',
|
363 |
-
61 => 'Varna',
|
364 |
-
62 => 'Veliko Turnovo',
|
365 |
-
63 => 'Vidin',
|
366 |
-
64 => 'Vratsa',
|
367 |
-
65 => 'Yambol',
|
368 |
-
),
|
369 |
-
'BH' =>
|
370 |
-
array (
|
371 |
-
'01' => 'Al Hadd',
|
372 |
-
'02' => 'Al Manamah',
|
373 |
-
'05' => 'Jidd Hafs',
|
374 |
-
'06' => 'Sitrah',
|
375 |
-
'08' => 'Al Mintaqah al Gharbiyah',
|
376 |
-
'09' => 'Mintaqat Juzur Hawar',
|
377 |
-
10 => 'Al Mintaqah ash Shamaliyah',
|
378 |
-
11 => 'Al Mintaqah al Wusta',
|
379 |
-
12 => 'Madinat',
|
380 |
-
13 => 'Ar Rifa',
|
381 |
-
14 => 'Madinat Hamad',
|
382 |
-
15 => 'Al Muharraq',
|
383 |
-
16 => 'Al Asimah',
|
384 |
-
17 => 'Al Janubiyah',
|
385 |
-
18 => 'Ash Shamaliyah',
|
386 |
-
19 => 'Al Wusta',
|
387 |
-
),
|
388 |
-
'BI' =>
|
389 |
-
array (
|
390 |
-
'02' => 'Bujumbura',
|
391 |
-
'09' => 'Bubanza',
|
392 |
-
10 => 'Bururi',
|
393 |
-
11 => 'Cankuzo',
|
394 |
-
12 => 'Cibitoke',
|
395 |
-
13 => 'Gitega',
|
396 |
-
14 => 'Karuzi',
|
397 |
-
15 => 'Kayanza',
|
398 |
-
16 => 'Kirundo',
|
399 |
-
17 => 'Makamba',
|
400 |
-
18 => 'Muyinga',
|
401 |
-
19 => 'Ngozi',
|
402 |
-
20 => 'Rutana',
|
403 |
-
21 => 'Ruyigi',
|
404 |
-
22 => 'Muramvya',
|
405 |
-
23 => 'Mwaro',
|
406 |
-
),
|
407 |
-
'BJ' =>
|
408 |
-
array (
|
409 |
-
'07' => 'Alibori',
|
410 |
-
'08' => 'Atakora',
|
411 |
-
'09' => 'Atlanyique',
|
412 |
-
10 => 'Borgou',
|
413 |
-
11 => 'Collines',
|
414 |
-
12 => 'Kouffo',
|
415 |
-
13 => 'Donga',
|
416 |
-
14 => 'Littoral',
|
417 |
-
15 => 'Mono',
|
418 |
-
16 => 'Oueme',
|
419 |
-
17 => 'Plateau',
|
420 |
-
18 => 'Zou',
|
421 |
-
),
|
422 |
-
'BM' =>
|
423 |
-
array (
|
424 |
-
'01' => 'Devonshire',
|
425 |
-
'03' => 'Hamilton',
|
426 |
-
'04' => 'Paget',
|
427 |
-
'05' => 'Pembroke',
|
428 |
-
'06' => 'Saint George',
|
429 |
-
'07' => 'Saint George\'s',
|
430 |
-
'08' => 'Sandys',
|
431 |
-
'09' => 'Smiths',
|
432 |
-
10 => 'Southampton',
|
433 |
-
11 => 'Warwick',
|
434 |
-
),
|
435 |
-
'BN' =>
|
436 |
-
array (
|
437 |
-
'07' => 'Alibori',
|
438 |
-
'08' => 'Belait',
|
439 |
-
'09' => 'Brunei and Muara',
|
440 |
-
10 => 'Temburong',
|
441 |
-
11 => 'Collines',
|
442 |
-
12 => 'Kouffo',
|
443 |
-
13 => 'Donga',
|
444 |
-
14 => 'Littoral',
|
445 |
-
15 => 'Tutong',
|
446 |
-
16 => 'Oueme',
|
447 |
-
17 => 'Plateau',
|
448 |
-
18 => 'Zou',
|
449 |
-
),
|
450 |
-
'BO' =>
|
451 |
-
array (
|
452 |
-
'01' => 'Chuquisaca',
|
453 |
-
'02' => 'Cochabamba',
|
454 |
-
'03' => 'El Beni',
|
455 |
-
'04' => 'La Paz',
|
456 |
-
'05' => 'Oruro',
|
457 |
-
'06' => 'Pando',
|
458 |
-
'07' => 'Potosi',
|
459 |
-
'08' => 'Santa Cruz',
|
460 |
-
'09' => 'Tarija',
|
461 |
-
),
|
462 |
-
'BR' =>
|
463 |
-
array (
|
464 |
-
'01' => 'Acre',
|
465 |
-
'02' => 'Alagoas',
|
466 |
-
'03' => 'Amapa',
|
467 |
-
'04' => 'Amazonas',
|
468 |
-
'05' => 'Bahia',
|
469 |
-
'06' => 'Ceara',
|
470 |
-
'07' => 'Distrito Federal',
|
471 |
-
'08' => 'Espirito Santo',
|
472 |
-
11 => 'Mato Grosso do Sul',
|
473 |
-
13 => 'Maranhao',
|
474 |
-
14 => 'Mato Grosso',
|
475 |
-
15 => 'Minas Gerais',
|
476 |
-
16 => 'Para',
|
477 |
-
17 => 'Paraiba',
|
478 |
-
18 => 'Parana',
|
479 |
-
20 => 'Piaui',
|
480 |
-
21 => 'Rio de Janeiro',
|
481 |
-
22 => 'Rio Grande do Norte',
|
482 |
-
23 => 'Rio Grande do Sul',
|
483 |
-
24 => 'Rondonia',
|
484 |
-
25 => 'Roraima',
|
485 |
-
26 => 'Santa Catarina',
|
486 |
-
27 => 'Sao Paulo',
|
487 |
-
28 => 'Sergipe',
|
488 |
-
29 => 'Goias',
|
489 |
-
30 => 'Pernambuco',
|
490 |
-
31 => 'Tocantins',
|
491 |
-
),
|
492 |
-
'BS' =>
|
493 |
-
array (
|
494 |
-
'05' => 'Bimini',
|
495 |
-
'06' => 'Cat Island',
|
496 |
-
10 => 'Exuma',
|
497 |
-
13 => 'Inagua',
|
498 |
-
15 => 'Long Island',
|
499 |
-
16 => 'Mayaguana',
|
500 |
-
18 => 'Ragged Island',
|
501 |
-
22 => 'Harbour Island',
|
502 |
-
23 => 'New Providence',
|
503 |
-
24 => 'Acklins and Crooked Islands',
|
504 |
-
25 => 'Freeport',
|
505 |
-
26 => 'Fresh Creek',
|
506 |
-
27 => 'Governor\'s Harbour',
|
507 |
-
28 => 'Green Turtle Cay',
|
508 |
-
29 => 'High Rock',
|
509 |
-
30 => 'Kemps Bay',
|
510 |
-
31 => 'Marsh Harbour',
|
511 |
-
32 => 'Nichollstown and Berry Islands',
|
512 |
-
33 => 'Rock Sound',
|
513 |
-
34 => 'Sandy Point',
|
514 |
-
35 => 'San Salvador and Rum Cay',
|
515 |
-
),
|
516 |
-
'BT' =>
|
517 |
-
array (
|
518 |
-
'05' => 'Bumthang',
|
519 |
-
'06' => 'Chhukha',
|
520 |
-
'07' => 'Chirang',
|
521 |
-
'08' => 'Daga',
|
522 |
-
'09' => 'Geylegphug',
|
523 |
-
10 => 'Ha',
|
524 |
-
11 => 'Lhuntshi',
|
525 |
-
12 => 'Mongar',
|
526 |
-
13 => 'Paro',
|
527 |
-
14 => 'Pemagatsel',
|
528 |
-
15 => 'Punakha',
|
529 |
-
16 => 'Samchi',
|
530 |
-
17 => 'Samdrup',
|
531 |
-
18 => 'Shemgang',
|
532 |
-
19 => 'Tashigang',
|
533 |
-
20 => 'Thimphu',
|
534 |
-
21 => 'Tongsa',
|
535 |
-
22 => 'Wangdi Phodrang',
|
536 |
-
),
|
537 |
-
'BW' =>
|
538 |
-
array (
|
539 |
-
'01' => 'Central',
|
540 |
-
'03' => 'Ghanzi',
|
541 |
-
'04' => 'Kgalagadi',
|
542 |
-
'05' => 'Kgatleng',
|
543 |
-
'06' => 'Kweneng',
|
544 |
-
'08' => 'North-East',
|
545 |
-
'09' => 'South-East',
|
546 |
-
10 => 'Southern',
|
547 |
-
11 => 'North-West',
|
548 |
-
),
|
549 |
-
'BY' =>
|
550 |
-
array (
|
551 |
-
'01' => 'Brestskaya Voblasts\'',
|
552 |
-
'02' => 'Homyel\'skaya Voblasts\'',
|
553 |
-
'03' => 'Hrodzyenskaya Voblasts\'',
|
554 |
-
'04' => 'Minsk',
|
555 |
-
'05' => 'Minskaya Voblasts\'',
|
556 |
-
'06' => 'Mahilyowskaya Voblasts\'',
|
557 |
-
'07' => 'Vitsyebskaya Voblasts\'',
|
558 |
-
),
|
559 |
-
'BZ' =>
|
560 |
-
array (
|
561 |
-
'01' => 'Belize',
|
562 |
-
'02' => 'Cayo',
|
563 |
-
'03' => 'Corozal',
|
564 |
-
'04' => 'Orange Walk',
|
565 |
-
'05' => 'Stann Creek',
|
566 |
-
'06' => 'Toledo',
|
567 |
-
),
|
568 |
-
'CA' =>
|
569 |
-
array (
|
570 |
-
'AB' => 'Alberta',
|
571 |
-
'BC' => 'British Columbia',
|
572 |
-
'MB' => 'Manitoba',
|
573 |
-
'NB' => 'New Brunswick',
|
574 |
-
'NL' => 'Newfoundland',
|
575 |
-
'NS' => 'Nova Scotia',
|
576 |
-
'NT' => 'Northwest Territories',
|
577 |
-
'NU' => 'Nunavut',
|
578 |
-
'ON' => 'Ontario',
|
579 |
-
'PE' => 'Prince Edward Island',
|
580 |
-
'QC' => 'Quebec',
|
581 |
-
'SK' => 'Saskatchewan',
|
582 |
-
'YT' => 'Yukon Territory',
|
583 |
-
),
|
584 |
-
'CD' =>
|
585 |
-
array (
|
586 |
-
'01' => 'Bandundu',
|
587 |
-
'02' => 'Equateur',
|
588 |
-
'04' => 'Kasai-Oriental',
|
589 |
-
'05' => 'Katanga',
|
590 |
-
'06' => 'Kinshasa',
|
591 |
-
'08' => 'Bas-Congo',
|
592 |
-
'09' => 'Orientale',
|
593 |
-
10 => 'Maniema',
|
594 |
-
11 => 'Nord-Kivu',
|
595 |
-
12 => 'Sud-Kivu',
|
596 |
-
),
|
597 |
-
'CF' =>
|
598 |
-
array (
|
599 |
-
'01' => 'Bamingui-Bangoran',
|
600 |
-
'02' => 'Basse-Kotto',
|
601 |
-
'03' => 'Haute-Kotto',
|
602 |
-
'04' => 'Mambere-Kadei',
|
603 |
-
'05' => 'Haut-Mbomou',
|
604 |
-
'06' => 'Kemo',
|
605 |
-
'07' => 'Lobaye',
|
606 |
-
'08' => 'Mbomou',
|
607 |
-
'09' => 'Nana-Mambere',
|
608 |
-
11 => 'Ouaka',
|
609 |
-
12 => 'Ouham',
|
610 |
-
13 => 'Ouham-Pende',
|
611 |
-
14 => 'Cuvette-Ouest',
|
612 |
-
15 => 'Nana-Grebizi',
|
613 |
-
16 => 'Sangha-Mbaere',
|
614 |
-
17 => 'Ombella-Mpoko',
|
615 |
-
18 => 'Bangui',
|
616 |
-
),
|
617 |
-
'CG' =>
|
618 |
-
array (
|
619 |
-
'01' => 'Bouenza',
|
620 |
-
'04' => 'Kouilou',
|
621 |
-
'05' => 'Lekoumou',
|
622 |
-
'06' => 'Likouala',
|
623 |
-
'07' => 'Niari',
|
624 |
-
'08' => 'Plateaux',
|
625 |
-
10 => 'Sangha',
|
626 |
-
11 => 'Pool',
|
627 |
-
12 => 'Brazzaville',
|
628 |
-
13 => 'Cuvette',
|
629 |
-
14 => 'Cuvette-Ouest',
|
630 |
-
),
|
631 |
-
'CH' =>
|
632 |
-
array (
|
633 |
-
'01' => 'Aargau',
|
634 |
-
'02' => 'Ausser-Rhoden',
|
635 |
-
'03' => 'Basel-Landschaft',
|
636 |
-
'04' => 'Basel-Stadt',
|
637 |
-
'05' => 'Bern',
|
638 |
-
'06' => 'Fribourg',
|
639 |
-
'07' => 'Geneve',
|
640 |
-
'08' => 'Glarus',
|
641 |
-
'09' => 'Graubunden',
|
642 |
-
10 => 'Inner-Rhoden',
|
643 |
-
11 => 'Luzern',
|
644 |
-
12 => 'Neuchatel',
|
645 |
-
13 => 'Nidwalden',
|
646 |
-
14 => 'Obwalden',
|
647 |
-
15 => 'Sankt Gallen',
|
648 |
-
16 => 'Schaffhausen',
|
649 |
-
17 => 'Schwyz',
|
650 |
-
18 => 'Solothurn',
|
651 |
-
19 => 'Thurgau',
|
652 |
-
20 => 'Ticino',
|
653 |
-
21 => 'Uri',
|
654 |
-
22 => 'Valais',
|
655 |
-
23 => 'Vaud',
|
656 |
-
24 => 'Zug',
|
657 |
-
25 => 'Zurich',
|
658 |
-
26 => 'Jura',
|
659 |
-
),
|
660 |
-
'CI' =>
|
661 |
-
array (
|
662 |
-
74 => 'Agneby',
|
663 |
-
75 => 'Bafing',
|
664 |
-
76 => 'Bas-Sassandra',
|
665 |
-
77 => 'Denguele',
|
666 |
-
78 => 'Dix-Huit Montagnes',
|
667 |
-
79 => 'Fromager',
|
668 |
-
80 => 'Haut-Sassandra',
|
669 |
-
81 => 'Lacs',
|
670 |
-
82 => 'Lagunes',
|
671 |
-
83 => 'Marahoue',
|
672 |
-
84 => 'Moyen-Cavally',
|
673 |
-
85 => 'Moyen-Comoe',
|
674 |
-
86 => 'N\'zi-Comoe',
|
675 |
-
87 => 'Savanes',
|
676 |
-
88 => 'Sud-Bandama',
|
677 |
-
89 => 'Sud-Comoe',
|
678 |
-
90 => 'Vallee du Bandama',
|
679 |
-
91 => 'Worodougou',
|
680 |
-
92 => 'Zanzan',
|
681 |
-
),
|
682 |
-
'CL' =>
|
683 |
-
array (
|
684 |
-
'01' => 'Valparaiso',
|
685 |
-
'02' => 'Aisen del General Carlos Ibanez del Campo',
|
686 |
-
'03' => 'Antofagasta',
|
687 |
-
'04' => 'Araucania',
|
688 |
-
'05' => 'Atacama',
|
689 |
-
'06' => 'Bio-Bio',
|
690 |
-
'07' => 'Coquimbo',
|
691 |
-
'08' => 'Libertador General Bernardo O\'Higgins',
|
692 |
-
14 => 'Los Lagos',
|
693 |
-
10 => 'Magallanes y de la Antartica Chilena',
|
694 |
-
11 => 'Maule',
|
695 |
-
12 => 'Region Metropolitana',
|
696 |
-
15 => 'Tarapaca',
|
697 |
-
16 => 'Arica y Parinacota',
|
698 |
-
17 => 'Los Rios',
|
699 |
-
),
|
700 |
-
'CM' =>
|
701 |
-
array (
|
702 |
-
'04' => 'Est',
|
703 |
-
'05' => 'Littoral',
|
704 |
-
'07' => 'Nord-Ouest',
|
705 |
-
'08' => 'Ouest',
|
706 |
-
'09' => 'Sud-Ouest',
|
707 |
-
10 => 'Adamaoua',
|
708 |
-
11 => 'Centre',
|
709 |
-
12 => 'Extreme-Nord',
|
710 |
-
13 => 'Nord',
|
711 |
-
14 => 'Sud',
|
712 |
-
),
|
713 |
-
'CN' =>
|
714 |
-
array (
|
715 |
-
'01' => 'Anhui',
|
716 |
-
'02' => 'Zhejiang',
|
717 |
-
'03' => 'Jiangxi',
|
718 |
-
'04' => 'Jiangsu',
|
719 |
-
'05' => 'Jilin',
|
720 |
-
'06' => 'Qinghai',
|
721 |
-
'07' => 'Fujian',
|
722 |
-
'08' => 'Heilongjiang',
|
723 |
-
'09' => 'Henan',
|
724 |
-
10 => 'Hebei',
|
725 |
-
11 => 'Hunan',
|
726 |
-
12 => 'Hubei',
|
727 |
-
13 => 'Xinjiang',
|
728 |
-
14 => 'Xizang',
|
729 |
-
15 => 'Gansu',
|
730 |
-
16 => 'Guangxi',
|
731 |
-
18 => 'Guizhou',
|
732 |
-
19 => 'Liaoning',
|
733 |
-
20 => 'Nei Mongol',
|
734 |
-
21 => 'Ningxia',
|
735 |
-
22 => 'Beijing',
|
736 |
-
23 => 'Shanghai',
|
737 |
-
24 => 'Shanxi',
|
738 |
-
25 => 'Shandong',
|
739 |
-
26 => 'Shaanxi',
|
740 |
-
28 => 'Tianjin',
|
741 |
-
29 => 'Yunnan',
|
742 |
-
30 => 'Guangdong',
|
743 |
-
31 => 'Hainan',
|
744 |
-
32 => 'Sichuan',
|
745 |
-
33 => 'Chongqing',
|
746 |
-
),
|
747 |
-
'CO' =>
|
748 |
-
array (
|
749 |
-
'01' => 'Amazonas',
|
750 |
-
'02' => 'Antioquia',
|
751 |
-
'03' => 'Arauca',
|
752 |
-
'04' => 'Atlantico',
|
753 |
-
'08' => 'Caqueta',
|
754 |
-
'09' => 'Cauca',
|
755 |
-
10 => 'Cesar',
|
756 |
-
11 => 'Choco',
|
757 |
-
12 => 'Cordoba',
|
758 |
-
14 => 'Guaviare',
|
759 |
-
15 => 'Guainia',
|
760 |
-
16 => 'Huila',
|
761 |
-
17 => 'La Guajira',
|
762 |
-
19 => 'Meta',
|
763 |
-
20 => 'Narino',
|
764 |
-
21 => 'Norte de Santander',
|
765 |
-
22 => 'Putumayo',
|
766 |
-
23 => 'Quindio',
|
767 |
-
24 => 'Risaralda',
|
768 |
-
25 => 'San Andres y Providencia',
|
769 |
-
26 => 'Santander',
|
770 |
-
27 => 'Sucre',
|
771 |
-
28 => 'Tolima',
|
772 |
-
29 => 'Valle del Cauca',
|
773 |
-
30 => 'Vaupes',
|
774 |
-
31 => 'Vichada',
|
775 |
-
32 => 'Casanare',
|
776 |
-
33 => 'Cundinamarca',
|
777 |
-
34 => 'Distrito Especial',
|
778 |
-
35 => 'Bolivar',
|
779 |
-
36 => 'Boyaca',
|
780 |
-
37 => 'Caldas',
|
781 |
-
38 => 'Magdalena',
|
782 |
-
),
|
783 |
-
'CR' =>
|
784 |
-
array (
|
785 |
-
'01' => 'Alajuela',
|
786 |
-
'02' => 'Cartago',
|
787 |
-
'03' => 'Guanacaste',
|
788 |
-
'04' => 'Heredia',
|
789 |
-
'06' => 'Limon',
|
790 |
-
'07' => 'Puntarenas',
|
791 |
-
'08' => 'San Jose',
|
792 |
-
),
|
793 |
-
'CU' =>
|
794 |
-
array (
|
795 |
-
'01' => 'Pinar del Rio',
|
796 |
-
'02' => 'Ciudad de la Habana',
|
797 |
-
'03' => 'Matanzas',
|
798 |
-
'04' => 'Isla de la Juventud',
|
799 |
-
'05' => 'Camaguey',
|
800 |
-
'07' => 'Ciego de Avila',
|
801 |
-
'08' => 'Cienfuegos',
|
802 |
-
'09' => 'Granma',
|
803 |
-
10 => 'Guantanamo',
|
804 |
-
11 => 'La Habana',
|
805 |
-
12 => 'Holguin',
|
806 |
-
13 => 'Las Tunas',
|
807 |
-
14 => 'Sancti Spiritus',
|
808 |
-
15 => 'Santiago de Cuba',
|
809 |
-
16 => 'Villa Clara',
|
810 |
-
),
|
811 |
-
'CV' =>
|
812 |
-
array (
|
813 |
-
'01' => 'Boa Vista',
|
814 |
-
'02' => 'Brava',
|
815 |
-
'04' => 'Maio',
|
816 |
-
'05' => 'Paul',
|
817 |
-
'07' => 'Ribeira Grande',
|
818 |
-
'08' => 'Sal',
|
819 |
-
10 => 'Sao Nicolau',
|
820 |
-
11 => 'Sao Vicente',
|
821 |
-
13 => 'Mosteiros',
|
822 |
-
14 => 'Praia',
|
823 |
-
15 => 'Santa Catarina',
|
824 |
-
16 => 'Santa Cruz',
|
825 |
-
17 => 'Sao Domingos',
|
826 |
-
18 => 'Sao Filipe',
|
827 |
-
19 => 'Sao Miguel',
|
828 |
-
20 => 'Tarrafal',
|
829 |
-
),
|
830 |
-
'CY' =>
|
831 |
-
array (
|
832 |
-
'01' => 'Famagusta',
|
833 |
-
'02' => 'Kyrenia',
|
834 |
-
'03' => 'Larnaca',
|
835 |
-
'04' => 'Nicosia',
|
836 |
-
'05' => 'Limassol',
|
837 |
-
'06' => 'Paphos',
|
838 |
-
),
|
839 |
-
'CZ' =>
|
840 |
-
array (
|
841 |
-
52 => 'Hlavni mesto Praha',
|
842 |
-
78 => 'Jihomoravsky kraj',
|
843 |
-
79 => 'Jihocesky kraj',
|
844 |
-
80 => 'Vysocina',
|
845 |
-
81 => 'Karlovarsky kraj',
|
846 |
-
82 => 'Kralovehradecky kraj',
|
847 |
-
83 => 'Liberecky kraj',
|
848 |
-
84 => 'Olomoucky kraj',
|
849 |
-
85 => 'Moravskoslezsky kraj',
|
850 |
-
86 => 'Pardubicky kraj',
|
851 |
-
87 => 'Plzensky kraj',
|
852 |
-
88 => 'Stredocesky kraj',
|
853 |
-
89 => 'Ustecky kraj',
|
854 |
-
90 => 'Zlinsky kraj',
|
855 |
-
),
|
856 |
-
'DE' =>
|
857 |
-
array (
|
858 |
-
'01' => 'Baden-Wurttemberg',
|
859 |
-
'02' => 'Bayern',
|
860 |
-
'03' => 'Bremen',
|
861 |
-
'04' => 'Hamburg',
|
862 |
-
'05' => 'Hessen',
|
863 |
-
'06' => 'Niedersachsen',
|
864 |
-
'07' => 'Nordrhein-Westfalen',
|
865 |
-
'08' => 'Rheinland-Pfalz',
|
866 |
-
'09' => 'Saarland',
|
867 |
-
10 => 'Schleswig-Holstein',
|
868 |
-
11 => 'Brandenburg',
|
869 |
-
12 => 'Mecklenburg-Vorpommern',
|
870 |
-
13 => 'Sachsen',
|
871 |
-
14 => 'Sachsen-Anhalt',
|
872 |
-
15 => 'Thuringen',
|
873 |
-
16 => 'Berlin',
|
874 |
-
),
|
875 |
-
'DJ' =>
|
876 |
-
array (
|
877 |
-
'01' => 'Ali Sabieh',
|
878 |
-
'04' => 'Obock',
|
879 |
-
'05' => 'Tadjoura',
|
880 |
-
'06' => 'Dikhil',
|
881 |
-
'07' => 'Djibouti',
|
882 |
-
'08' => 'Arta',
|
883 |
-
),
|
884 |
-
'DK' =>
|
885 |
-
array (
|
886 |
-
17 => 'Hovedstaden',
|
887 |
-
18 => 'Midtjylland',
|
888 |
-
19 => 'Nordjylland',
|
889 |
-
20 => 'Sjelland',
|
890 |
-
21 => 'Syddanmark',
|
891 |
-
),
|
892 |
-
'DM' =>
|
893 |
-
array (
|
894 |
-
'02' => 'Saint Andrew',
|
895 |
-
'03' => 'Saint David',
|
896 |
-
'04' => 'Saint George',
|
897 |
-
'05' => 'Saint John',
|
898 |
-
'06' => 'Saint Joseph',
|
899 |
-
'07' => 'Saint Luke',
|
900 |
-
'08' => 'Saint Mark',
|
901 |
-
'09' => 'Saint Patrick',
|
902 |
-
10 => 'Saint Paul',
|
903 |
-
11 => 'Saint Peter',
|
904 |
-
),
|
905 |
-
'DO' =>
|
906 |
-
array (
|
907 |
-
'01' => 'Azua',
|
908 |
-
'02' => 'Baoruco',
|
909 |
-
'03' => 'Barahona',
|
910 |
-
'04' => 'Dajabon',
|
911 |
-
34 => 'Distrito Nacional',
|
912 |
-
'06' => 'Duarte',
|
913 |
-
'08' => 'Espaillat',
|
914 |
-
'09' => 'Independencia',
|
915 |
-
10 => 'La Altagracia',
|
916 |
-
11 => 'Elias Pina',
|
917 |
-
12 => 'La Romana',
|
918 |
-
14 => 'Maria Trinidad Sanchez',
|
919 |
-
15 => 'Monte Cristi',
|
920 |
-
16 => 'Pedernales',
|
921 |
-
35 => 'Peravia',
|
922 |
-
18 => 'Puerto Plata',
|
923 |
-
19 => 'Salcedo',
|
924 |
-
20 => 'Samana',
|
925 |
-
21 => 'Sanchez Ramirez',
|
926 |
-
23 => 'San Juan',
|
927 |
-
24 => 'San Pedro De Macoris',
|
928 |
-
25 => 'Santiago',
|
929 |
-
26 => 'Santiago Rodriguez',
|
930 |
-
27 => 'Valverde',
|
931 |
-
28 => 'El Seibo',
|
932 |
-
29 => 'Hato Mayor',
|
933 |
-
30 => 'La Vega',
|
934 |
-
31 => 'Monsenor Nouel',
|
935 |
-
32 => 'Monte Plata',
|
936 |
-
33 => 'San Cristobal',
|
937 |
-
36 => 'San Jose de Ocoa',
|
938 |
-
37 => 'Santo Domingo',
|
939 |
-
),
|
940 |
-
'DZ' =>
|
941 |
-
array (
|
942 |
-
'01' => 'Alger',
|
943 |
-
'03' => 'Batna',
|
944 |
-
'04' => 'Constantine',
|
945 |
-
'06' => 'Medea',
|
946 |
-
'07' => 'Mostaganem',
|
947 |
-
'09' => 'Oran',
|
948 |
-
10 => 'Saida',
|
949 |
-
12 => 'Setif',
|
950 |
-
13 => 'Tiaret',
|
951 |
-
14 => 'Tizi Ouzou',
|
952 |
-
15 => 'Tlemcen',
|
953 |
-
18 => 'Bejaia',
|
954 |
-
19 => 'Biskra',
|
955 |
-
20 => 'Blida',
|
956 |
-
21 => 'Bouira',
|
957 |
-
22 => 'Djelfa',
|
958 |
-
23 => 'Guelma',
|
959 |
-
24 => 'Jijel',
|
960 |
-
25 => 'Laghouat',
|
961 |
-
26 => 'Mascara',
|
962 |
-
27 => 'M\'sila',
|
963 |
-
29 => 'Oum el Bouaghi',
|
964 |
-
30 => 'Sidi Bel Abbes',
|
965 |
-
31 => 'Skikda',
|
966 |
-
33 => 'Tebessa',
|
967 |
-
34 => 'Adrar',
|
968 |
-
35 => 'Ain Defla',
|
969 |
-
36 => 'Ain Temouchent',
|
970 |
-
37 => 'Annaba',
|
971 |
-
38 => 'Bechar',
|
972 |
-
39 => 'Bordj Bou Arreridj',
|
973 |
-
40 => 'Boumerdes',
|
974 |
-
41 => 'Chlef',
|
975 |
-
42 => 'El Bayadh',
|
976 |
-
43 => 'El Oued',
|
977 |
-
44 => 'El Tarf',
|
978 |
-
45 => 'Ghardaia',
|
979 |
-
46 => 'Illizi',
|
980 |
-
47 => 'Khenchela',
|
981 |
-
48 => 'Mila',
|
982 |
-
49 => 'Naama',
|
983 |
-
50 => 'Ouargla',
|
984 |
-
51 => 'Relizane',
|
985 |
-
52 => 'Souk Ahras',
|
986 |
-
53 => 'Tamanghasset',
|
987 |
-
54 => 'Tindouf',
|
988 |
-
55 => 'Tipaza',
|
989 |
-
56 => 'Tissemsilt',
|
990 |
-
),
|
991 |
-
'EC' =>
|
992 |
-
array (
|
993 |
-
'01' => 'Galapagos',
|
994 |
-
'02' => 'Azuay',
|
995 |
-
'03' => 'Bolivar',
|
996 |
-
'04' => 'Canar',
|
997 |
-
'05' => 'Carchi',
|
998 |
-
'06' => 'Chimborazo',
|
999 |
-
'07' => 'Cotopaxi',
|
1000 |
-
'08' => 'El Oro',
|
1001 |
-
'09' => 'Esmeraldas',
|
1002 |
-
10 => 'Guayas',
|
1003 |
-
11 => 'Imbabura',
|
1004 |
-
12 => 'Loja',
|
1005 |
-
13 => 'Los Rios',
|
1006 |
-
14 => 'Manabi',
|
1007 |
-
15 => 'Morona-Santiago',
|
1008 |
-
17 => 'Pastaza',
|
1009 |
-
18 => 'Pichincha',
|
1010 |
-
19 => 'Tungurahua',
|
1011 |
-
20 => 'Zamora-Chinchipe',
|
1012 |
-
22 => 'Sucumbios',
|
1013 |
-
23 => 'Napo',
|
1014 |
-
24 => 'Orellana',
|
1015 |
-
),
|
1016 |
-
'EE' =>
|
1017 |
-
array (
|
1018 |
-
'01' => 'Harjumaa',
|
1019 |
-
'02' => 'Hiiumaa',
|
1020 |
-
'03' => 'Ida-Virumaa',
|
1021 |
-
'04' => 'Jarvamaa',
|
1022 |
-
'05' => 'Jogevamaa',
|
1023 |
-
'06' => 'Kohtla-Jarve',
|
1024 |
-
'07' => 'Laanemaa',
|
1025 |
-
'08' => 'Laane-Virumaa',
|
1026 |
-
'09' => 'Narva',
|
1027 |
-
10 => 'Parnu',
|
1028 |
-
11 => 'Parnumaa',
|
1029 |
-
12 => 'Polvamaa',
|
1030 |
-
13 => 'Raplamaa',
|
1031 |
-
14 => 'Saaremaa',
|
1032 |
-
15 => 'Sillamae',
|
1033 |
-
16 => 'Tallinn',
|
1034 |
-
17 => 'Tartu',
|
1035 |
-
18 => 'Tartumaa',
|
1036 |
-
19 => 'Valgamaa',
|
1037 |
-
20 => 'Viljandimaa',
|
1038 |
-
21 => 'Vorumaa',
|
1039 |
-
),
|
1040 |
-
'EG' =>
|
1041 |
-
array (
|
1042 |
-
'01' => 'Ad Daqahliyah',
|
1043 |
-
'02' => 'Al Bahr al Ahmar',
|
1044 |
-
'03' => 'Al Buhayrah',
|
1045 |
-
'04' => 'Al Fayyum',
|
1046 |
-
'05' => 'Al Gharbiyah',
|
1047 |
-
'06' => 'Al Iskandariyah',
|
1048 |
-
'07' => 'Al Isma\'iliyah',
|
1049 |
-
'08' => 'Al Jizah',
|
1050 |
-
'09' => 'Al Minufiyah',
|
1051 |
-
10 => 'Al Minya',
|
1052 |
-
11 => 'Al Qahirah',
|
1053 |
-
12 => 'Al Qalyubiyah',
|
1054 |
-
13 => 'Al Wadi al Jadid',
|
1055 |
-
14 => 'Ash Sharqiyah',
|
1056 |
-
15 => 'As Suways',
|
1057 |
-
16 => 'Aswan',
|
1058 |
-
17 => 'Asyut',
|
1059 |
-
18 => 'Bani Suwayf',
|
1060 |
-
19 => 'Bur Sa\'id',
|
1061 |
-
20 => 'Dumyat',
|
1062 |
-
21 => 'Kafr ash Shaykh',
|
1063 |
-
22 => 'Matruh',
|
1064 |
-
23 => 'Qina',
|
1065 |
-
24 => 'Suhaj',
|
1066 |
-
26 => 'Janub Sina\'',
|
1067 |
-
27 => 'Shamal Sina\'',
|
1068 |
-
28 => 'Al Uqsur',
|
1069 |
-
),
|
1070 |
-
'ER' =>
|
1071 |
-
array (
|
1072 |
-
'01' => 'Anseba',
|
1073 |
-
'02' => 'Debub',
|
1074 |
-
'03' => 'Debubawi K\'eyih Bahri',
|
1075 |
-
'04' => 'Gash Barka',
|
1076 |
-
'05' => 'Ma\'akel',
|
1077 |
-
'06' => 'Semenawi K\'eyih Bahri',
|
1078 |
-
),
|
1079 |
-
'ES' =>
|
1080 |
-
array (
|
1081 |
-
'07' => 'Islas Baleares',
|
1082 |
-
27 => 'La Rioja',
|
1083 |
-
29 => 'Madrid',
|
1084 |
-
31 => 'Murcia',
|
1085 |
-
32 => 'Navarra',
|
1086 |
-
34 => 'Asturias',
|
1087 |
-
39 => 'Cantabria',
|
1088 |
-
51 => 'Andalucia',
|
1089 |
-
52 => 'Aragon',
|
1090 |
-
53 => 'Canarias',
|
1091 |
-
54 => 'Castilla-La Mancha',
|
1092 |
-
55 => 'Castilla y Leon',
|
1093 |
-
56 => 'Catalonia',
|
1094 |
-
57 => 'Extremadura',
|
1095 |
-
58 => 'Galicia',
|
1096 |
-
59 => 'Pais Vasco',
|
1097 |
-
60 => 'Comunidad Valenciana',
|
1098 |
-
),
|
1099 |
-
'ET' =>
|
1100 |
-
array (
|
1101 |
-
44 => 'Adis Abeba',
|
1102 |
-
45 => 'Afar',
|
1103 |
-
46 => 'Amara',
|
1104 |
-
47 => 'Binshangul Gumuz',
|
1105 |
-
48 => 'Dire Dawa',
|
1106 |
-
49 => 'Gambela Hizboch',
|
1107 |
-
50 => 'Hareri Hizb',
|
1108 |
-
51 => 'Oromiya',
|
1109 |
-
52 => 'Sumale',
|
1110 |
-
53 => 'Tigray',
|
1111 |
-
54 => 'YeDebub Biheroch Bihereseboch na Hizboch',
|
1112 |
-
),
|
1113 |
-
'FI' =>
|
1114 |
-
array (
|
1115 |
-
'01' => 'Aland',
|
1116 |
-
'06' => 'Lapland',
|
1117 |
-
'08' => 'Oulu',
|
1118 |
-
13 => 'Southern Finland',
|
1119 |
-
14 => 'Eastern Finland',
|
1120 |
-
15 => 'Western Finland',
|
1121 |
-
),
|
1122 |
-
'FJ' =>
|
1123 |
-
array (
|
1124 |
-
'01' => 'Central',
|
1125 |
-
'02' => 'Eastern',
|
1126 |
-
'03' => 'Northern',
|
1127 |
-
'04' => 'Rotuma',
|
1128 |
-
'05' => 'Western',
|
1129 |
-
),
|
1130 |
-
'FM' =>
|
1131 |
-
array (
|
1132 |
-
'01' => 'Kosrae',
|
1133 |
-
'02' => 'Pohnpei',
|
1134 |
-
'03' => 'Chuuk',
|
1135 |
-
'04' => 'Yap',
|
1136 |
-
),
|
1137 |
-
'FR' =>
|
1138 |
-
array (
|
1139 |
-
97 => 'Aquitaine',
|
1140 |
-
98 => 'Auvergne',
|
1141 |
-
99 => 'Basse-Normandie',
|
1142 |
-
'A1' => 'Bourgogne',
|
1143 |
-
'A2' => 'Bretagne',
|
1144 |
-
'A3' => 'Centre',
|
1145 |
-
'A4' => 'Champagne-Ardenne',
|
1146 |
-
'A5' => 'Corse',
|
1147 |
-
'A6' => 'Franche-Comte',
|
1148 |
-
'A7' => 'Haute-Normandie',
|
1149 |
-
'A8' => 'Ile-de-France',
|
1150 |
-
'A9' => 'Languedoc-Roussillon',
|
1151 |
-
'B1' => 'Limousin',
|
1152 |
-
'B2' => 'Lorraine',
|
1153 |
-
'B3' => 'Midi-Pyrenees',
|
1154 |
-
'B4' => 'Nord-Pas-de-Calais',
|
1155 |
-
'B5' => 'Pays de la Loire',
|
1156 |
-
'B6' => 'Picardie',
|
1157 |
-
'B7' => 'Poitou-Charentes',
|
1158 |
-
'B8' => 'Provence-Alpes-Cote d\'Azur',
|
1159 |
-
'B9' => 'Rhone-Alpes',
|
1160 |
-
'C1' => 'Alsace',
|
1161 |
-
),
|
1162 |
-
'GA' =>
|
1163 |
-
array (
|
1164 |
-
'01' => 'Estuaire',
|
1165 |
-
'02' => 'Haut-Ogooue',
|
1166 |
-
'03' => 'Moyen-Ogooue',
|
1167 |
-
'04' => 'Ngounie',
|
1168 |
-
'05' => 'Nyanga',
|
1169 |
-
'06' => 'Ogooue-Ivindo',
|
1170 |
-
'07' => 'Ogooue-Lolo',
|
1171 |
-
'08' => 'Ogooue-Maritime',
|
1172 |
-
'09' => 'Woleu-Ntem',
|
1173 |
-
),
|
1174 |
-
'GB' =>
|
1175 |
-
array (
|
1176 |
-
'A1' => 'Barking and Dagenham',
|
1177 |
-
'A2' => 'Barnet',
|
1178 |
-
'A3' => 'Barnsley',
|
1179 |
-
'A4' => 'Bath and North East Somerset',
|
1180 |
-
'Z5' => 'Bedfordshire',
|
1181 |
-
'A6' => 'Bexley',
|
1182 |
-
'A7' => 'Birmingham',
|
1183 |
-
'A8' => 'Blackburn with Darwen',
|
1184 |
-
'A9' => 'Blackpool',
|
1185 |
-
'B1' => 'Bolton',
|
1186 |
-
'B2' => 'Bournemouth',
|
1187 |
-
'B3' => 'Bracknell Forest',
|
1188 |
-
'B4' => 'Bradford',
|
1189 |
-
'B5' => 'Brent',
|
1190 |
-
'B6' => 'Brighton and Hove',
|
1191 |
-
'B7' => 'Bristol',
|
1192 |
-
'B8' => 'Bromley',
|
1193 |
-
'B9' => 'Buckinghamshire',
|
1194 |
-
'C1' => 'Bury',
|
1195 |
-
'C2' => 'Calderdale',
|
1196 |
-
'C3' => 'Cambridgeshire',
|
1197 |
-
'C4' => 'Camden',
|
1198 |
-
'C5' => 'Cheshire',
|
1199 |
-
'C6' => 'Cornwall',
|
1200 |
-
'C7' => 'Coventry',
|
1201 |
-
'C8' => 'Croydon',
|
1202 |
-
'C9' => 'Cumbria',
|
1203 |
-
'D1' => 'Darlington',
|
1204 |
-
'D2' => 'Derby',
|
1205 |
-
'D3' => 'Derbyshire',
|
1206 |
-
'D4' => 'Devon',
|
1207 |
-
'D5' => 'Doncaster',
|
1208 |
-
'D6' => 'Dorset',
|
1209 |
-
'D7' => 'Dudley',
|
1210 |
-
'D8' => 'Durham',
|
1211 |
-
'D9' => 'Ealing',
|
1212 |
-
'E1' => 'East Riding of Yorkshire',
|
1213 |
-
'E2' => 'East Sussex',
|
1214 |
-
'E3' => 'Enfield',
|
1215 |
-
'E4' => 'Essex',
|
1216 |
-
'E5' => 'Gateshead',
|
1217 |
-
'E6' => 'Gloucestershire',
|
1218 |
-
'E7' => 'Greenwich',
|
1219 |
-
'E8' => 'Hackney',
|
1220 |
-
'E9' => 'Halton',
|
1221 |
-
'F1' => 'Hammersmith and Fulham',
|
1222 |
-
'F2' => 'Hampshire',
|
1223 |
-
'F3' => 'Haringey',
|
1224 |
-
'F4' => 'Harrow',
|
1225 |
-
'F5' => 'Hartlepool',
|
1226 |
-
'F6' => 'Havering',
|
1227 |
-
'F7' => 'Herefordshire',
|
1228 |
-
'F8' => 'Hertford',
|
1229 |
-
'F9' => 'Hillingdon',
|
1230 |
-
'G1' => 'Hounslow',
|
1231 |
-
'G2' => 'Isle of Wight',
|
1232 |
-
'G3' => 'Islington',
|
1233 |
-
'G4' => 'Kensington and Chelsea',
|
1234 |
-
'G5' => 'Kent',
|
1235 |
-
'G6' => 'Kingston upon Hull',
|
1236 |
-
'G7' => 'Kingston upon Thames',
|
1237 |
-
'G8' => 'Kirklees',
|
1238 |
-
'G9' => 'Knowsley',
|
1239 |
-
'H1' => 'Lambeth',
|
1240 |
-
'H2' => 'Lancashire',
|
1241 |
-
'H3' => 'Leeds',
|
1242 |
-
'H4' => 'Leicester',
|
1243 |
-
'H5' => 'Leicestershire',
|
1244 |
-
'H6' => 'Lewisham',
|
1245 |
-
'H7' => 'Lincolnshire',
|
1246 |
-
'H8' => 'Liverpool',
|
1247 |
-
'H9' => 'London',
|
1248 |
-
'I1' => 'Luton',
|
1249 |
-
'I2' => 'Manchester',
|
1250 |
-
'I3' => 'Medway',
|
1251 |
-
'I4' => 'Merton',
|
1252 |
-
'I5' => 'Middlesbrough',
|
1253 |
-
'I6' => 'Milton Keynes',
|
1254 |
-
'I7' => 'Newcastle upon Tyne',
|
1255 |
-
'I8' => 'Newham',
|
1256 |
-
'I9' => 'Norfolk',
|
1257 |
-
'J1' => 'Northamptonshire',
|
1258 |
-
'J2' => 'North East Lincolnshire',
|
1259 |
-
'J3' => 'North Lincolnshire',
|
1260 |
-
'J4' => 'North Somerset',
|
1261 |
-
'J5' => 'North Tyneside',
|
1262 |
-
'J6' => 'Northumberland',
|
1263 |
-
'J7' => 'North Yorkshire',
|
1264 |
-
'J8' => 'Nottingham',
|
1265 |
-
'J9' => 'Nottinghamshire',
|
1266 |
-
'K1' => 'Oldham',
|
1267 |
-
'K2' => 'Oxfordshire',
|
1268 |
-
'K3' => 'Peterborough',
|
1269 |
-
'K4' => 'Plymouth',
|
1270 |
-
'K5' => 'Poole',
|
1271 |
-
'K6' => 'Portsmouth',
|
1272 |
-
'K7' => 'Reading',
|
1273 |
-
'K8' => 'Redbridge',
|
1274 |
-
'K9' => 'Redcar and Cleveland',
|
1275 |
-
'L1' => 'Richmond upon Thames',
|
1276 |
-
'L2' => 'Rochdale',
|
1277 |
-
'L3' => 'Rotherham',
|
1278 |
-
'L4' => 'Rutland',
|
1279 |
-
'L5' => 'Salford',
|
1280 |
-
'L6' => 'Shropshire',
|
1281 |
-
'L7' => 'Sandwell',
|
1282 |
-
'L8' => 'Sefton',
|
1283 |
-
'L9' => 'Sheffield',
|
1284 |
-
'M1' => 'Slough',
|
1285 |
-
'M2' => 'Solihull',
|
1286 |
-
'M3' => 'Somerset',
|
1287 |
-
'M4' => 'Southampton',
|
1288 |
-
'M5' => 'Southend-on-Sea',
|
1289 |
-
'M6' => 'South Gloucestershire',
|
1290 |
-
'M7' => 'South Tyneside',
|
1291 |
-
'M8' => 'Southwark',
|
1292 |
-
'M9' => 'Staffordshire',
|
1293 |
-
'N1' => 'St. Helens',
|
1294 |
-
'N2' => 'Stockport',
|
1295 |
-
'N3' => 'Stockton-on-Tees',
|
1296 |
-
'N4' => 'Stoke-on-Trent',
|
1297 |
-
'N5' => 'Suffolk',
|
1298 |
-
'N6' => 'Sunderland',
|
1299 |
-
'N7' => 'Surrey',
|
1300 |
-
'N8' => 'Sutton',
|
1301 |
-
'N9' => 'Swindon',
|
1302 |
-
'O1' => 'Tameside',
|
1303 |
-
'O2' => 'Telford and Wrekin',
|
1304 |
-
'O3' => 'Thurrock',
|
1305 |
-
'O4' => 'Torbay',
|
1306 |
-
'O5' => 'Tower Hamlets',
|
1307 |
-
'O6' => 'Trafford',
|
1308 |
-
'O7' => 'Wakefield',
|
1309 |
-
'O8' => 'Walsall',
|
1310 |
-
'O9' => 'Waltham Forest',
|
1311 |
-
'P1' => 'Wandsworth',
|
1312 |
-
'P2' => 'Warrington',
|
1313 |
-
'P3' => 'Warwickshire',
|
1314 |
-
'P4' => 'West Berkshire',
|
1315 |
-
'P5' => 'Westminster',
|
1316 |
-
'P6' => 'West Sussex',
|
1317 |
-
'P7' => 'Wigan',
|
1318 |
-
'P8' => 'Wiltshire',
|
1319 |
-
'P9' => 'Windsor and Maidenhead',
|
1320 |
-
'Q1' => 'Wirral',
|
1321 |
-
'Q2' => 'Wokingham',
|
1322 |
-
'Q3' => 'Wolverhampton',
|
1323 |
-
'Q4' => 'Worcestershire',
|
1324 |
-
'Q5' => 'York',
|
1325 |
-
'Q6' => 'Antrim',
|
1326 |
-
'Q7' => 'Ards',
|
1327 |
-
'Q8' => 'Armagh',
|
1328 |
-
'Q9' => 'Ballymena',
|
1329 |
-
'R1' => 'Ballymoney',
|
1330 |
-
'R2' => 'Banbridge',
|
1331 |
-
'R3' => 'Belfast',
|
1332 |
-
'R4' => 'Carrickfergus',
|
1333 |
-
'R5' => 'Castlereagh',
|
1334 |
-
'R6' => 'Coleraine',
|
1335 |
-
'R7' => 'Cookstown',
|
1336 |
-
'R8' => 'Craigavon',
|
1337 |
-
'R9' => 'Down',
|
1338 |
-
'S1' => 'Dungannon',
|
1339 |
-
'S2' => 'Fermanagh',
|
1340 |
-
'S3' => 'Larne',
|
1341 |
-
'S4' => 'Limavady',
|
1342 |
-
'S5' => 'Lisburn',
|
1343 |
-
'S6' => 'Derry',
|
1344 |
-
'S7' => 'Magherafelt',
|
1345 |
-
'S8' => 'Moyle',
|
1346 |
-
'S9' => 'Newry and Mourne',
|
1347 |
-
'T1' => 'Newtownabbey',
|
1348 |
-
'T2' => 'North Down',
|
1349 |
-
'T3' => 'Omagh',
|
1350 |
-
'T4' => 'Strabane',
|
1351 |
-
'T5' => 'Aberdeen City',
|
1352 |
-
'T6' => 'Aberdeenshire',
|
1353 |
-
'T7' => 'Angus',
|
1354 |
-
'T8' => 'Argyll and Bute',
|
1355 |
-
'T9' => 'Scottish Borders',
|
1356 |
-
'U1' => 'Clackmannanshire',
|
1357 |
-
'U2' => 'Dumfries and Galloway',
|
1358 |
-
'U3' => 'Dundee City',
|
1359 |
-
'U4' => 'East Ayrshire',
|
1360 |
-
'U5' => 'East Dunbartonshire',
|
1361 |
-
'U6' => 'East Lothian',
|
1362 |
-
'U7' => 'East Renfrewshire',
|
1363 |
-
'U8' => 'Edinburgh',
|
1364 |
-
'U9' => 'Falkirk',
|
1365 |
-
'V1' => 'Fife',
|
1366 |
-
'V2' => 'Glasgow City',
|
1367 |
-
'V3' => 'Highland',
|
1368 |
-
'V4' => 'Inverclyde',
|
1369 |
-
'V5' => 'Midlothian',
|
1370 |
-
'V6' => 'Moray',
|
1371 |
-
'V7' => 'North Ayrshire',
|
1372 |
-
'V8' => 'North Lanarkshire',
|
1373 |
-
'V9' => 'Orkney',
|
1374 |
-
'W1' => 'Perth and Kinross',
|
1375 |
-
'W2' => 'Renfrewshire',
|
1376 |
-
'W3' => 'Shetland Islands',
|
1377 |
-
'W4' => 'South Ayrshire',
|
1378 |
-
'W5' => 'South Lanarkshire',
|
1379 |
-
'W6' => 'Stirling',
|
1380 |
-
'W7' => 'West Dunbartonshire',
|
1381 |
-
'W8' => 'Eilean Siar',
|
1382 |
-
'W9' => 'West Lothian',
|
1383 |
-
'X1' => 'Isle of Anglesey',
|
1384 |
-
'X2' => 'Blaenau Gwent',
|
1385 |
-
'X3' => 'Bridgend',
|
1386 |
-
'X4' => 'Caerphilly',
|
1387 |
-
'X5' => 'Cardiff',
|
1388 |
-
'X6' => 'Ceredigion',
|
1389 |
-
'X7' => 'Carmarthenshire',
|
1390 |
-
'X8' => 'Conwy',
|
1391 |
-
'X9' => 'Denbighshire',
|
1392 |
-
'Y1' => 'Flintshire',
|
1393 |
-
'Y2' => 'Gwynedd',
|
1394 |
-
'Y3' => 'Merthyr Tydfil',
|
1395 |
-
'Y4' => 'Monmouthshire',
|
1396 |
-
'Y5' => 'Neath Port Talbot',
|
1397 |
-
'Y6' => 'Newport',
|
1398 |
-
'Y7' => 'Pembrokeshire',
|
1399 |
-
'Y8' => 'Powys',
|
1400 |
-
'Y9' => 'Rhondda Cynon Taff',
|
1401 |
-
'Z1' => 'Swansea',
|
1402 |
-
'Z2' => 'Torfaen',
|
1403 |
-
'Z3' => 'Vale of Glamorgan',
|
1404 |
-
'Z4' => 'Wrexham',
|
1405 |
-
'Z6' => 'Central Bedfordshire',
|
1406 |
-
'Z7' => 'Cheshire East',
|
1407 |
-
'Z8' => 'Cheshire West and Chester',
|
1408 |
-
'Z9' => 'Isles of Scilly',
|
1409 |
-
),
|
1410 |
-
'GD' =>
|
1411 |
-
array (
|
1412 |
-
'01' => 'Saint Andrew',
|
1413 |
-
'02' => 'Saint David',
|
1414 |
-
'03' => 'Saint George',
|
1415 |
-
'04' => 'Saint John',
|
1416 |
-
'05' => 'Saint Mark',
|
1417 |
-
'06' => 'Saint Patrick',
|
1418 |
-
),
|
1419 |
-
'GE' =>
|
1420 |
-
array (
|
1421 |
-
'01' => 'Abashis Raioni',
|
1422 |
-
'02' => 'Abkhazia',
|
1423 |
-
'03' => 'Adigenis Raioni',
|
1424 |
-
'04' => 'Ajaria',
|
1425 |
-
'05' => 'Akhalgoris Raioni',
|
1426 |
-
'06' => 'Akhalk\'alak\'is Raioni',
|
1427 |
-
'07' => 'Akhalts\'ikhis Raioni',
|
1428 |
-
'08' => 'Akhmetis Raioni',
|
1429 |
-
'09' => 'Ambrolauris Raioni',
|
1430 |
-
10 => 'Aspindzis Raioni',
|
1431 |
-
11 => 'Baghdat\'is Raioni',
|
1432 |
-
12 => 'Bolnisis Raioni',
|
1433 |
-
13 => 'Borjomis Raioni',
|
1434 |
-
14 => 'Chiat\'ura',
|
1435 |
-
15 => 'Ch\'khorotsqus Raioni',
|
1436 |
-
16 => 'Ch\'okhatauris Raioni',
|
1437 |
-
17 => 'Dedop\'listsqaros Raioni',
|
1438 |
-
18 => 'Dmanisis Raioni',
|
1439 |
-
19 => 'Dushet\'is Raioni',
|
1440 |
-
20 => 'Gardabanis Raioni',
|
1441 |
-
21 => 'Gori',
|
1442 |
-
22 => 'Goris Raioni',
|
1443 |
-
23 => 'Gurjaanis Raioni',
|
1444 |
-
24 => 'Javis Raioni',
|
1445 |
-
25 => 'K\'arelis Raioni',
|
1446 |
-
26 => 'Kaspis Raioni',
|
1447 |
-
27 => 'Kharagaulis Raioni',
|
1448 |
-
28 => 'Khashuris Raioni',
|
1449 |
-
29 => 'Khobis Raioni',
|
1450 |
-
30 => 'Khonis Raioni',
|
1451 |
-
31 => 'K\'ut\'aisi',
|
1452 |
-
32 => 'Lagodekhis Raioni',
|
1453 |
-
33 => 'Lanch\'khut\'is Raioni',
|
1454 |
-
34 => 'Lentekhis Raioni',
|
1455 |
-
35 => 'Marneulis Raioni',
|
1456 |
-
36 => 'Martvilis Raioni',
|
1457 |
-
37 => 'Mestiis Raioni',
|
1458 |
-
38 => 'Mts\'khet\'is Raioni',
|
1459 |
-
39 => 'Ninotsmindis Raioni',
|
1460 |
-
40 => 'Onis Raioni',
|
1461 |
-
41 => 'Ozurget\'is Raioni',
|
1462 |
-
42 => 'P\'ot\'i',
|
1463 |
-
43 => 'Qazbegis Raioni',
|
1464 |
-
44 => 'Qvarlis Raioni',
|
1465 |
-
45 => 'Rust\'avi',
|
1466 |
-
46 => 'Sach\'kheris Raioni',
|
1467 |
-
47 => 'Sagarejos Raioni',
|
1468 |
-
48 => 'Samtrediis Raioni',
|
1469 |
-
49 => 'Senakis Raioni',
|
1470 |
-
50 => 'Sighnaghis Raioni',
|
1471 |
-
51 => 'T\'bilisi',
|
1472 |
-
52 => 'T\'elavis Raioni',
|
1473 |
-
53 => 'T\'erjolis Raioni',
|
1474 |
-
54 => 'T\'et\'ritsqaros Raioni',
|
1475 |
-
55 => 'T\'ianet\'is Raioni',
|
1476 |
-
56 => 'Tqibuli',
|
1477 |
-
57 => 'Ts\'ageris Raioni',
|
1478 |
-
58 => 'Tsalenjikhis Raioni',
|
1479 |
-
59 => 'Tsalkis Raioni',
|
1480 |
-
60 => 'Tsqaltubo',
|
1481 |
-
61 => 'Vanis Raioni',
|
1482 |
-
62 => 'Zestap\'onis Raioni',
|
1483 |
-
63 => 'Zugdidi',
|
1484 |
-
64 => 'Zugdidis Raioni',
|
1485 |
-
),
|
1486 |
-
'GH' =>
|
1487 |
-
array (
|
1488 |
-
'01' => 'Greater Accra',
|
1489 |
-
'02' => 'Ashanti',
|
1490 |
-
'03' => 'Brong-Ahafo',
|
1491 |
-
'04' => 'Central',
|
1492 |
-
'05' => 'Eastern',
|
1493 |
-
'06' => 'Northern',
|
1494 |
-
'08' => 'Volta',
|
1495 |
-
'09' => 'Western',
|
1496 |
-
10 => 'Upper East',
|
1497 |
-
11 => 'Upper West',
|
1498 |
-
),
|
1499 |
-
'GL' =>
|
1500 |
-
array (
|
1501 |
-
'01' => 'Nordgronland',
|
1502 |
-
'02' => 'Ostgronland',
|
1503 |
-
'03' => 'Vestgronland',
|
1504 |
-
),
|
1505 |
-
'GM' =>
|
1506 |
-
array (
|
1507 |
-
'01' => 'Banjul',
|
1508 |
-
'02' => 'Lower River',
|
1509 |
-
'03' => 'Central River',
|
1510 |
-
'04' => 'Upper River',
|
1511 |
-
'05' => 'Western',
|
1512 |
-
'07' => 'North Bank',
|
1513 |
-
),
|
1514 |
-
'GN' =>
|
1515 |
-
array (
|
1516 |
-
'01' => 'Beyla',
|
1517 |
-
'02' => 'Boffa',
|
1518 |
-
'03' => 'Boke',
|
1519 |
-
'04' => 'Conakry',
|
1520 |
-
'05' => 'Dabola',
|
1521 |
-
'06' => 'Dalaba',
|
1522 |
-
'07' => 'Dinguiraye',
|
1523 |
-
'09' => 'Faranah',
|
1524 |
-
10 => 'Forecariah',
|
1525 |
-
11 => 'Fria',
|
1526 |
-
12 => 'Gaoual',
|
1527 |
-
13 => 'Gueckedou',
|
1528 |
-
15 => 'Kerouane',
|
1529 |
-
16 => 'Kindia',
|
1530 |
-
17 => 'Kissidougou',
|
1531 |
-
18 => 'Koundara',
|
1532 |
-
19 => 'Kouroussa',
|
1533 |
-
21 => 'Macenta',
|
1534 |
-
22 => 'Mali',
|
1535 |
-
23 => 'Mamou',
|
1536 |
-
25 => 'Pita',
|
1537 |
-
27 => 'Telimele',
|
1538 |
-
28 => 'Tougue',
|
1539 |
-
29 => 'Yomou',
|
1540 |
-
30 => 'Coyah',
|
1541 |
-
31 => 'Dubreka',
|
1542 |
-
32 => 'Kankan',
|
1543 |
-
33 => 'Koubia',
|
1544 |
-
34 => 'Labe',
|
1545 |
-
35 => 'Lelouma',
|
1546 |
-
36 => 'Lola',
|
1547 |
-
37 => 'Mandiana',
|
1548 |
-
38 => 'Nzerekore',
|
1549 |
-
39 => 'Siguiri',
|
1550 |
-
),
|
1551 |
-
'GQ' =>
|
1552 |
-
array (
|
1553 |
-
'03' => 'Annobon',
|
1554 |
-
'04' => 'Bioko Norte',
|
1555 |
-
'05' => 'Bioko Sur',
|
1556 |
-
'06' => 'Centro Sur',
|
1557 |
-
'07' => 'Kie-Ntem',
|
1558 |
-
'08' => 'Litoral',
|
1559 |
-
'09' => 'Wele-Nzas',
|
1560 |
-
),
|
1561 |
-
'GR' =>
|
1562 |
-
array (
|
1563 |
-
'01' => 'Evros',
|
1564 |
-
'02' => 'Rodhopi',
|
1565 |
-
'03' => 'Xanthi',
|
1566 |
-
'04' => 'Drama',
|
1567 |
-
'05' => 'Serrai',
|
1568 |
-
'06' => 'Kilkis',
|
1569 |
-
'07' => 'Pella',
|
1570 |
-
'08' => 'Florina',
|
1571 |
-
'09' => 'Kastoria',
|
1572 |
-
10 => 'Grevena',
|
1573 |
-
11 => 'Kozani',
|
1574 |
-
12 => 'Imathia',
|
1575 |
-
13 => 'Thessaloniki',
|
1576 |
-
14 => 'Kavala',
|
1577 |
-
15 => 'Khalkidhiki',
|
1578 |
-
16 => 'Pieria',
|
1579 |
-
17 => 'Ioannina',
|
1580 |
-
18 => 'Thesprotia',
|
1581 |
-
19 => 'Preveza',
|
1582 |
-
20 => 'Arta',
|
1583 |
-
21 => 'Larisa',
|
1584 |
-
22 => 'Trikala',
|
1585 |
-
23 => 'Kardhitsa',
|
1586 |
-
24 => 'Magnisia',
|
1587 |
-
25 => 'Kerkira',
|
1588 |
-
26 => 'Levkas',
|
1589 |
-
27 => 'Kefallinia',
|
1590 |
-
28 => 'Zakinthos',
|
1591 |
-
29 => 'Fthiotis',
|
1592 |
-
30 => 'Evritania',
|
1593 |
-
31 => 'Aitolia kai Akarnania',
|
1594 |
-
32 => 'Fokis',
|
1595 |
-
33 => 'Voiotia',
|
1596 |
-
34 => 'Evvoia',
|
1597 |
-
35 => 'Attiki',
|
1598 |
-
36 => 'Argolis',
|
1599 |
-
37 => 'Korinthia',
|
1600 |
-
38 => 'Akhaia',
|
1601 |
-
39 => 'Ilia',
|
1602 |
-
40 => 'Messinia',
|
1603 |
-
41 => 'Arkadhia',
|
1604 |
-
42 => 'Lakonia',
|
1605 |
-
43 => 'Khania',
|
1606 |
-
44 => 'Rethimni',
|
1607 |
-
45 => 'Iraklion',
|
1608 |
-
46 => 'Lasithi',
|
1609 |
-
47 => 'Dhodhekanisos',
|
1610 |
-
48 => 'Samos',
|
1611 |
-
49 => 'Kikladhes',
|
1612 |
-
50 => 'Khios',
|
1613 |
-
51 => 'Lesvos',
|
1614 |
-
),
|
1615 |
-
'GT' =>
|
1616 |
-
array (
|
1617 |
-
'01' => 'Alta Verapaz',
|
1618 |
-
'02' => 'Baja Verapaz',
|
1619 |
-
'03' => 'Chimaltenango',
|
1620 |
-
'04' => 'Chiquimula',
|
1621 |
-
'05' => 'El Progreso',
|
1622 |
-
'06' => 'Escuintla',
|
1623 |
-
'07' => 'Guatemala',
|
1624 |
-
'08' => 'Huehuetenango',
|
1625 |
-
'09' => 'Izabal',
|
1626 |
-
10 => 'Jalapa',
|
1627 |
-
11 => 'Jutiapa',
|
1628 |
-
12 => 'Peten',
|
1629 |
-
13 => 'Quetzaltenango',
|
1630 |
-
14 => 'Quiche',
|
1631 |
-
15 => 'Retalhuleu',
|
1632 |
-
16 => 'Sacatepequez',
|
1633 |
-
17 => 'San Marcos',
|
1634 |
-
18 => 'Santa Rosa',
|
1635 |
-
19 => 'Solola',
|
1636 |
-
20 => 'Suchitepequez',
|
1637 |
-
21 => 'Totonicapan',
|
1638 |
-
22 => 'Zacapa',
|
1639 |
-
),
|
1640 |
-
'GW' =>
|
1641 |
-
array (
|
1642 |
-
'01' => 'Bafata',
|
1643 |
-
'02' => 'Quinara',
|
1644 |
-
'04' => 'Oio',
|
1645 |
-
'05' => 'Bolama',
|
1646 |
-
'06' => 'Cacheu',
|
1647 |
-
'07' => 'Tombali',
|
1648 |
-
10 => 'Gabu',
|
1649 |
-
11 => 'Bissau',
|
1650 |
-
12 => 'Biombo',
|
1651 |
-
),
|
1652 |
-
'GY' =>
|
1653 |
-
array (
|
1654 |
-
10 => 'Barima-Waini',
|
1655 |
-
11 => 'Cuyuni-Mazaruni',
|
1656 |
-
12 => 'Demerara-Mahaica',
|
1657 |
-
13 => 'East Berbice-Corentyne',
|
1658 |
-
14 => 'Essequibo Islands-West Demerara',
|
1659 |
-
15 => 'Mahaica-Berbice',
|
1660 |
-
16 => 'Pomeroon-Supenaam',
|
1661 |
-
17 => 'Potaro-Siparuni',
|
1662 |
-
18 => 'Upper Demerara-Berbice',
|
1663 |
-
19 => 'Upper Takutu-Upper Essequibo',
|
1664 |
-
),
|
1665 |
-
'HN' =>
|
1666 |
-
array (
|
1667 |
-
'01' => 'Atlantida',
|
1668 |
-
'02' => 'Choluteca',
|
1669 |
-
'03' => 'Colon',
|
1670 |
-
'04' => 'Comayagua',
|
1671 |
-
'05' => 'Copan',
|
1672 |
-
'06' => 'Cortes',
|
1673 |
-
'07' => 'El Paraiso',
|
1674 |
-
'08' => 'Francisco Morazan',
|
1675 |
-
'09' => 'Gracias a Dios',
|
1676 |
-
10 => 'Intibuca',
|
1677 |
-
11 => 'Islas de la Bahia',
|
1678 |
-
12 => 'La Paz',
|
1679 |
-
13 => 'Lempira',
|
1680 |
-
14 => 'Ocotepeque',
|
1681 |
-
15 => 'Olancho',
|
1682 |
-
16 => 'Santa Barbara',
|
1683 |
-
17 => 'Valle',
|
1684 |
-
18 => 'Yoro',
|
1685 |
-
),
|
1686 |
-
'HR' =>
|
1687 |
-
array (
|
1688 |
-
'01' => 'Bjelovarsko-Bilogorska',
|
1689 |
-
'02' => 'Brodsko-Posavska',
|
1690 |
-
'03' => 'Dubrovacko-Neretvanska',
|
1691 |
-
'04' => 'Istarska',
|
1692 |
-
'05' => 'Karlovacka',
|
1693 |
-
'06' => 'Koprivnicko-Krizevacka',
|
1694 |
-
'07' => 'Krapinsko-Zagorska',
|
1695 |
-
'08' => 'Licko-Senjska',
|
1696 |
-
'09' => 'Medimurska',
|
1697 |
-
10 => 'Osjecko-Baranjska',
|
1698 |
-
11 => 'Pozesko-Slavonska',
|
1699 |
-
12 => 'Primorsko-Goranska',
|
1700 |
-
13 => 'Sibensko-Kninska',
|
1701 |
-
14 => 'Sisacko-Moslavacka',
|
1702 |
-
15 => 'Splitsko-Dalmatinska',
|
1703 |
-
16 => 'Varazdinska',
|
1704 |
-
17 => 'Viroviticko-Podravska',
|
1705 |
-
18 => 'Vukovarsko-Srijemska',
|
1706 |
-
19 => 'Zadarska',
|
1707 |
-
20 => 'Zagrebacka',
|
1708 |
-
21 => 'Grad Zagreb',
|
1709 |
-
),
|
1710 |
-
'HT' =>
|
1711 |
-
array (
|
1712 |
-
'03' => 'Nord-Ouest',
|
1713 |
-
'06' => 'Artibonite',
|
1714 |
-
'07' => 'Centre',
|
1715 |
-
'09' => 'Nord',
|
1716 |
-
10 => 'Nord-Est',
|
1717 |
-
11 => 'Ouest',
|
1718 |
-
12 => 'Sud',
|
1719 |
-
13 => 'Sud-Est',
|
1720 |
-
14 => 'Grand\' Anse',
|
1721 |
-
15 => 'Nippes',
|
1722 |
-
),
|
1723 |
-
'HU' =>
|
1724 |
-
array (
|
1725 |
-
'01' => 'Bacs-Kiskun',
|
1726 |
-
'02' => 'Baranya',
|
1727 |
-
'03' => 'Bekes',
|
1728 |
-
'04' => 'Borsod-Abauj-Zemplen',
|
1729 |
-
'05' => 'Budapest',
|
1730 |
-
'06' => 'Csongrad',
|
1731 |
-
'07' => 'Debrecen',
|
1732 |
-
'08' => 'Fejer',
|
1733 |
-
'09' => 'Gyor-Moson-Sopron',
|
1734 |
-
10 => 'Hajdu-Bihar',
|
1735 |
-
11 => 'Heves',
|
1736 |
-
12 => 'Komarom-Esztergom',
|
1737 |
-
13 => 'Miskolc',
|
1738 |
-
14 => 'Nograd',
|
1739 |
-
15 => 'Pecs',
|
1740 |
-
16 => 'Pest',
|
1741 |
-
17 => 'Somogy',
|
1742 |
-
18 => 'Szabolcs-Szatmar-Bereg',
|
1743 |
-
19 => 'Szeged',
|
1744 |
-
20 => 'Jasz-Nagykun-Szolnok',
|
1745 |
-
21 => 'Tolna',
|
1746 |
-
22 => 'Vas',
|
1747 |
-
39 => 'Veszprem',
|
1748 |
-
24 => 'Zala',
|
1749 |
-
25 => 'Gyor',
|
1750 |
-
26 => 'Bekescsaba',
|
1751 |
-
27 => 'Dunaujvaros',
|
1752 |
-
28 => 'Eger',
|
1753 |
-
29 => 'Hodmezovasarhely',
|
1754 |
-
30 => 'Kaposvar',
|
1755 |
-
31 => 'Kecskemet',
|
1756 |
-
32 => 'Nagykanizsa',
|
1757 |
-
33 => 'Nyiregyhaza',
|
1758 |
-
34 => 'Sopron',
|
1759 |
-
35 => 'Szekesfehervar',
|
1760 |
-
36 => 'Szolnok',
|
1761 |
-
37 => 'Szombathely',
|
1762 |
-
38 => 'Tatabanya',
|
1763 |
-
40 => 'Zalaegerszeg',
|
1764 |
-
41 => 'Salgotarjan',
|
1765 |
-
42 => 'Szekszard',
|
1766 |
-
43 => 'Erd',
|
1767 |
-
),
|
1768 |
-
'ID' =>
|
1769 |
-
array (
|
1770 |
-
'01' => 'Aceh',
|
1771 |
-
'02' => 'Bali',
|
1772 |
-
'03' => 'Bengkulu',
|
1773 |
-
'04' => 'Jakarta Raya',
|
1774 |
-
'05' => 'Jambi',
|
1775 |
-
'07' => 'Jawa Tengah',
|
1776 |
-
'08' => 'Jawa Timur',
|
1777 |
-
10 => 'Yogyakarta',
|
1778 |
-
11 => 'Kalimantan Barat',
|
1779 |
-
12 => 'Kalimantan Selatan',
|
1780 |
-
13 => 'Kalimantan Tengah',
|
1781 |
-
14 => 'Kalimantan Timur',
|
1782 |
-
15 => 'Lampung',
|
1783 |
-
17 => 'Nusa Tenggara Barat',
|
1784 |
-
18 => 'Nusa Tenggara Timur',
|
1785 |
-
21 => 'Sulawesi Tengah',
|
1786 |
-
22 => 'Sulawesi Tenggara',
|
1787 |
-
24 => 'Sumatera Barat',
|
1788 |
-
26 => 'Sumatera Utara',
|
1789 |
-
28 => 'Maluku',
|
1790 |
-
29 => 'Maluku Utara',
|
1791 |
-
30 => 'Jawa Barat',
|
1792 |
-
31 => 'Sulawesi Utara',
|
1793 |
-
32 => 'Sumatera Selatan',
|
1794 |
-
33 => 'Banten',
|
1795 |
-
34 => 'Gorontalo',
|
1796 |
-
35 => 'Kepulauan Bangka Belitung',
|
1797 |
-
36 => 'Papua',
|
1798 |
-
37 => 'Riau',
|
1799 |
-
38 => 'Sulawesi Selatan',
|
1800 |
-
39 => 'Irian Jaya Barat',
|
1801 |
-
40 => 'Kepulauan Riau',
|
1802 |
-
41 => 'Sulawesi Barat',
|
1803 |
-
),
|
1804 |
-
'IE' =>
|
1805 |
-
array (
|
1806 |
-
'01' => 'Carlow',
|
1807 |
-
'02' => 'Cavan',
|
1808 |
-
'03' => 'Clare',
|
1809 |
-
'04' => 'Cork',
|
1810 |
-
'06' => 'Donegal',
|
1811 |
-
'07' => 'Dublin',
|
1812 |
-
10 => 'Galway',
|
1813 |
-
11 => 'Kerry',
|
1814 |
-
12 => 'Kildare',
|
1815 |
-
13 => 'Kilkenny',
|
1816 |
-
14 => 'Leitrim',
|
1817 |
-
15 => 'Laois',
|
1818 |
-
16 => 'Limerick',
|
1819 |
-
18 => 'Longford',
|
1820 |
-
19 => 'Louth',
|
1821 |
-
20 => 'Mayo',
|
1822 |
-
21 => 'Meath',
|
1823 |
-
22 => 'Monaghan',
|
1824 |
-
23 => 'Offaly',
|
1825 |
-
24 => 'Roscommon',
|
1826 |
-
25 => 'Sligo',
|
1827 |
-
26 => 'Tipperary',
|
1828 |
-
27 => 'Waterford',
|
1829 |
-
29 => 'Westmeath',
|
1830 |
-
30 => 'Wexford',
|
1831 |
-
31 => 'Wicklow',
|
1832 |
-
),
|
1833 |
-
'IL' =>
|
1834 |
-
array (
|
1835 |
-
'01' => 'HaDarom',
|
1836 |
-
'02' => 'HaMerkaz',
|
1837 |
-
'03' => 'HaZafon',
|
1838 |
-
'04' => 'Hefa',
|
1839 |
-
'05' => 'Tel Aviv',
|
1840 |
-
'06' => 'Yerushalayim',
|
1841 |
-
),
|
1842 |
-
'IN' =>
|
1843 |
-
array (
|
1844 |
-
'01' => 'Andaman and Nicobar Islands',
|
1845 |
-
'02' => 'Andhra Pradesh',
|
1846 |
-
'03' => 'Assam',
|
1847 |
-
'05' => 'Chandigarh',
|
1848 |
-
'06' => 'Dadra and Nagar Haveli',
|
1849 |
-
'07' => 'Delhi',
|
1850 |
-
'09' => 'Gujarat',
|
1851 |
-
10 => 'Haryana',
|
1852 |
-
11 => 'Himachal Pradesh',
|
1853 |
-
12 => 'Jammu and Kashmir',
|
1854 |
-
13 => 'Kerala',
|
1855 |
-
14 => 'Lakshadweep',
|
1856 |
-
16 => 'Maharashtra',
|
1857 |
-
17 => 'Manipur',
|
1858 |
-
18 => 'Meghalaya',
|
1859 |
-
19 => 'Karnataka',
|
1860 |
-
20 => 'Nagaland',
|
1861 |
-
21 => 'Orissa',
|
1862 |
-
22 => 'Puducherry',
|
1863 |
-
23 => 'Punjab',
|
1864 |
-
24 => 'Rajasthan',
|
1865 |
-
25 => 'Tamil Nadu',
|
1866 |
-
26 => 'Tripura',
|
1867 |
-
28 => 'West Bengal',
|
1868 |
-
29 => 'Sikkim',
|
1869 |
-
30 => 'Arunachal Pradesh',
|
1870 |
-
31 => 'Mizoram',
|
1871 |
-
32 => 'Daman and Diu',
|
1872 |
-
33 => 'Goa',
|
1873 |
-
34 => 'Bihar',
|
1874 |
-
35 => 'Madhya Pradesh',
|
1875 |
-
36 => 'Uttar Pradesh',
|
1876 |
-
37 => 'Chhattisgarh',
|
1877 |
-
38 => 'Jharkhand',
|
1878 |
-
39 => 'Uttarakhand',
|
1879 |
-
),
|
1880 |
-
'IQ' =>
|
1881 |
-
array (
|
1882 |
-
'01' => 'Al Anbar',
|
1883 |
-
'02' => 'Al Basrah',
|
1884 |
-
'03' => 'Al Muthanna',
|
1885 |
-
'04' => 'Al Qadisiyah',
|
1886 |
-
'05' => 'As Sulaymaniyah',
|
1887 |
-
'06' => 'Babil',
|
1888 |
-
'07' => 'Baghdad',
|
1889 |
-
'08' => 'Dahuk',
|
1890 |
-
'09' => 'Dhi Qar',
|
1891 |
-
10 => 'Diyala',
|
1892 |
-
11 => 'Arbil',
|
1893 |
-
12 => 'Karbala\'',
|
1894 |
-
13 => 'At Ta\'mim',
|
1895 |
-
14 => 'Maysan',
|
1896 |
-
15 => 'Ninawa',
|
1897 |
-
16 => 'Wasit',
|
1898 |
-
17 => 'An Najaf',
|
1899 |
-
18 => 'Salah ad Din',
|
1900 |
-
),
|
1901 |
-
'IR' =>
|
1902 |
-
array (
|
1903 |
-
'01' => 'Azarbayjan-e Bakhtari',
|
1904 |
-
'03' => 'Chahar Mahall va Bakhtiari',
|
1905 |
-
'04' => 'Sistan va Baluchestan',
|
1906 |
-
'05' => 'Kohkiluyeh va Buyer Ahmadi',
|
1907 |
-
'07' => 'Fars',
|
1908 |
-
'08' => 'Gilan',
|
1909 |
-
'09' => 'Hamadan',
|
1910 |
-
10 => 'Ilam',
|
1911 |
-
11 => 'Hormozgan',
|
1912 |
-
29 => 'Kerman',
|
1913 |
-
13 => 'Bakhtaran',
|
1914 |
-
15 => 'Khuzestan',
|
1915 |
-
16 => 'Kordestan',
|
1916 |
-
35 => 'Mazandaran',
|
1917 |
-
18 => 'Semnan Province',
|
1918 |
-
34 => 'Markazi',
|
1919 |
-
36 => 'Zanjan',
|
1920 |
-
22 => 'Bushehr',
|
1921 |
-
23 => 'Lorestan',
|
1922 |
-
25 => 'Semnan',
|
1923 |
-
26 => 'Tehran',
|
1924 |
-
28 => 'Esfahan',
|
1925 |
-
30 => 'Khorasan',
|
1926 |
-
40 => 'Yazd',
|
1927 |
-
32 => 'Ardabil',
|
1928 |
-
33 => 'East Azarbaijan',
|
1929 |
-
37 => 'Golestan',
|
1930 |
-
38 => 'Qazvin',
|
1931 |
-
39 => 'Qom',
|
1932 |
-
41 => 'Khorasan-e Janubi',
|
1933 |
-
42 => 'Khorasan-e Razavi',
|
1934 |
-
43 => 'Khorasan-e Shemali',
|
1935 |
-
44 => 'Alborz',
|
1936 |
-
),
|
1937 |
-
'IS' =>
|
1938 |
-
array (
|
1939 |
-
'03' => 'Arnessysla',
|
1940 |
-
'05' => 'Austur-Hunavatnssysla',
|
1941 |
-
'06' => 'Austur-Skaftafellssysla',
|
1942 |
-
'07' => 'Borgarfjardarsysla',
|
1943 |
-
'09' => 'Eyjafjardarsysla',
|
1944 |
-
10 => 'Gullbringusysla',
|
1945 |
-
15 => 'Kjosarsysla',
|
1946 |
-
17 => 'Myrasysla',
|
1947 |
-
20 => 'Nordur-Mulasysla',
|
1948 |
-
21 => 'Nordur-Tingeyjarsysla',
|
1949 |
-
23 => 'Rangarvallasysla',
|
1950 |
-
28 => 'Skagafjardarsysla',
|
1951 |
-
29 => 'Snafellsnes- og Hnappadalssysla',
|
1952 |
-
30 => 'Strandasysla',
|
1953 |
-
31 => 'Sudur-Mulasysla',
|
1954 |
-
32 => 'Sudur-Tingeyjarsysla',
|
1955 |
-
34 => 'Vestur-Bardastrandarsysla',
|
1956 |
-
35 => 'Vestur-Hunavatnssysla',
|
1957 |
-
36 => 'Vestur-Isafjardarsysla',
|
1958 |
-
37 => 'Vestur-Skaftafellssysla',
|
1959 |
-
38 => 'Austurland',
|
1960 |
-
39 => 'Hofuoborgarsvaoio',
|
1961 |
-
40 => 'Norourland Eystra',
|
1962 |
-
41 => 'Norourland Vestra',
|
1963 |
-
42 => 'Suourland',
|
1964 |
-
43 => 'Suournes',
|
1965 |
-
44 => 'Vestfiroir',
|
1966 |
-
45 => 'Vesturland',
|
1967 |
-
),
|
1968 |
-
'IT' =>
|
1969 |
-
array (
|
1970 |
-
'01' => 'Abruzzi',
|
1971 |
-
'02' => 'Basilicata',
|
1972 |
-
'03' => 'Calabria',
|
1973 |
-
'04' => 'Campania',
|
1974 |
-
'05' => 'Emilia-Romagna',
|
1975 |
-
'06' => 'Friuli-Venezia Giulia',
|
1976 |
-
'07' => 'Lazio',
|
1977 |
-
'08' => 'Liguria',
|
1978 |
-
'09' => 'Lombardia',
|
1979 |
-
10 => 'Marche',
|
1980 |
-
11 => 'Molise',
|
1981 |
-
12 => 'Piemonte',
|
1982 |
-
13 => 'Puglia',
|
1983 |
-
14 => 'Sardegna',
|
1984 |
-
15 => 'Sicilia',
|
1985 |
-
16 => 'Toscana',
|
1986 |
-
17 => 'Trentino-Alto Adige',
|
1987 |
-
18 => 'Umbria',
|
1988 |
-
19 => 'Valle d\'Aosta',
|
1989 |
-
20 => 'Veneto',
|
1990 |
-
),
|
1991 |
-
'JM' =>
|
1992 |
-
array (
|
1993 |
-
'01' => 'Clarendon',
|
1994 |
-
'02' => 'Hanover',
|
1995 |
-
'04' => 'Manchester',
|
1996 |
-
'07' => 'Portland',
|
1997 |
-
'08' => 'Saint Andrew',
|
1998 |
-
'09' => 'Saint Ann',
|
1999 |
-
10 => 'Saint Catherine',
|
2000 |
-
11 => 'Saint Elizabeth',
|
2001 |
-
12 => 'Saint James',
|
2002 |
-
13 => 'Saint Mary',
|
2003 |
-
14 => 'Saint Thomas',
|
2004 |
-
15 => 'Trelawny',
|
2005 |
-
16 => 'Westmoreland',
|
2006 |
-
17 => 'Kingston',
|
2007 |
-
),
|
2008 |
-
'JO' =>
|
2009 |
-
array (
|
2010 |
-
'02' => 'Al Balqa\'',
|
2011 |
-
'09' => 'Al Karak',
|
2012 |
-
12 => 'At Tafilah',
|
2013 |
-
15 => 'Al Mafraq',
|
2014 |
-
16 => 'Amman',
|
2015 |
-
17 => 'Az Zaraqa',
|
2016 |
-
18 => 'Irbid',
|
2017 |
-
19 => 'Ma\'an',
|
2018 |
-
20 => 'Ajlun',
|
2019 |
-
21 => 'Al Aqabah',
|
2020 |
-
22 => 'Jarash',
|
2021 |
-
23 => 'Madaba',
|
2022 |
-
),
|
2023 |
-
'JP' =>
|
2024 |
-
array (
|
2025 |
-
'01' => 'Aichi',
|
2026 |
-
'02' => 'Akita',
|
2027 |
-
'03' => 'Aomori',
|
2028 |
-
'04' => 'Chiba',
|
2029 |
-
'05' => 'Ehime',
|
2030 |
-
'06' => 'Fukui',
|
2031 |
-
'07' => 'Fukuoka',
|
2032 |
-
'08' => 'Fukushima',
|
2033 |
-
'09' => 'Gifu',
|
2034 |
-
10 => 'Gumma',
|
2035 |
-
11 => 'Hiroshima',
|
2036 |
-
12 => 'Hokkaido',
|
2037 |
-
13 => 'Hyogo',
|
2038 |
-
14 => 'Ibaraki',
|
2039 |
-
15 => 'Ishikawa',
|
2040 |
-
16 => 'Iwate',
|
2041 |
-
17 => 'Kagawa',
|
2042 |
-
18 => 'Kagoshima',
|
2043 |
-
19 => 'Kanagawa',
|
2044 |
-
20 => 'Kochi',
|
2045 |
-
21 => 'Kumamoto',
|
2046 |
-
22 => 'Kyoto',
|
2047 |
-
23 => 'Mie',
|
2048 |
-
24 => 'Miyagi',
|
2049 |
-
25 => 'Miyazaki',
|
2050 |
-
26 => 'Nagano',
|
2051 |
-
27 => 'Nagasaki',
|
2052 |
-
28 => 'Nara',
|
2053 |
-
29 => 'Niigata',
|
2054 |
-
30 => 'Oita',
|
2055 |
-
31 => 'Okayama',
|
2056 |
-
32 => 'Osaka',
|
2057 |
-
33 => 'Saga',
|
2058 |
-
34 => 'Saitama',
|
2059 |
-
35 => 'Shiga',
|
2060 |
-
36 => 'Shimane',
|
2061 |
-
37 => 'Shizuoka',
|
2062 |
-
38 => 'Tochigi',
|
2063 |
-
39 => 'Tokushima',
|
2064 |
-
40 => 'Tokyo',
|
2065 |
-
41 => 'Tottori',
|
2066 |
-
42 => 'Toyama',
|
2067 |
-
43 => 'Wakayama',
|
2068 |
-
44 => 'Yamagata',
|
2069 |
-
45 => 'Yamaguchi',
|
2070 |
-
46 => 'Yamanashi',
|
2071 |
-
47 => 'Okinawa',
|
2072 |
-
),
|
2073 |
-
'KE' =>
|
2074 |
-
array (
|
2075 |
-
'01' => 'Central',
|
2076 |
-
'02' => 'Coast',
|
2077 |
-
'03' => 'Eastern',
|
2078 |
-
'05' => 'Nairobi Area',
|
2079 |
-
'06' => 'North-Eastern',
|
2080 |
-
'07' => 'Nyanza',
|
2081 |
-
'08' => 'Rift Valley',
|
2082 |
-
'09' => 'Western',
|
2083 |
-
),
|
2084 |
-
'KG' =>
|
2085 |
-
array (
|
2086 |
-
'01' => 'Bishkek',
|
2087 |
-
'02' => 'Chuy',
|
2088 |
-
'03' => 'Jalal-Abad',
|
2089 |
-
'04' => 'Naryn',
|
2090 |
-
'08' => 'Osh',
|
2091 |
-
'06' => 'Talas',
|
2092 |
-
'07' => 'Ysyk-Kol',
|
2093 |
-
'09' => 'Batken',
|
2094 |
-
),
|
2095 |
-
'KH' =>
|
2096 |
-
array (
|
2097 |
-
29 => 'Batdambang',
|
2098 |
-
'02' => 'Kampong Cham',
|
2099 |
-
'03' => 'Kampong Chhnang',
|
2100 |
-
'04' => 'Kampong Speu',
|
2101 |
-
'05' => 'Kampong Thum',
|
2102 |
-
'06' => 'Kampot',
|
2103 |
-
'07' => 'Kandal',
|
2104 |
-
'08' => 'Koh Kong',
|
2105 |
-
'09' => 'Kracheh',
|
2106 |
-
10 => 'Mondulkiri',
|
2107 |
-
22 => 'Phnum Penh',
|
2108 |
-
12 => 'Pursat',
|
2109 |
-
13 => 'Preah Vihear',
|
2110 |
-
14 => 'Prey Veng',
|
2111 |
-
15 => 'Ratanakiri Kiri',
|
2112 |
-
16 => 'Siem Reap',
|
2113 |
-
17 => 'Stung Treng',
|
2114 |
-
18 => 'Svay Rieng',
|
2115 |
-
19 => 'Takeo',
|
2116 |
-
25 => 'Banteay Meanchey',
|
2117 |
-
28 => 'Preah Seihanu',
|
2118 |
-
30 => 'Pailin',
|
2119 |
-
),
|
2120 |
-
'KI' =>
|
2121 |
-
array (
|
2122 |
-
'01' => 'Gilbert Islands',
|
2123 |
-
'02' => 'Line Islands',
|
2124 |
-
'03' => 'Phoenix Islands',
|
2125 |
-
),
|
2126 |
-
'KM' =>
|
2127 |
-
array (
|
2128 |
-
'01' => 'Anjouan',
|
2129 |
-
'02' => 'Grande Comore',
|
2130 |
-
'03' => 'Moheli',
|
2131 |
-
),
|
2132 |
-
'KN' =>
|
2133 |
-
array (
|
2134 |
-
'01' => 'Christ Church Nichola Town',
|
2135 |
-
'02' => 'Saint Anne Sandy Point',
|
2136 |
-
'03' => 'Saint George Basseterre',
|
2137 |
-
'04' => 'Saint George Gingerland',
|
2138 |
-
'05' => 'Saint James Windward',
|
2139 |
-
'06' => 'Saint John Capisterre',
|
2140 |
-
'07' => 'Saint John Figtree',
|
2141 |
-
'08' => 'Saint Mary Cayon',
|
2142 |
-
'09' => 'Saint Paul Capisterre',
|
2143 |
-
10 => 'Saint Paul Charlestown',
|
2144 |
-
11 => 'Saint Peter Basseterre',
|
2145 |
-
12 => 'Saint Thomas Lowland',
|
2146 |
-
13 => 'Saint Thomas Middle Island',
|
2147 |
-
15 => 'Trinity Palmetto Point',
|
2148 |
-
),
|
2149 |
-
'KP' =>
|
2150 |
-
array (
|
2151 |
-
'01' => 'Chagang-do',
|
2152 |
-
'03' => 'Hamgyong-namdo',
|
2153 |
-
'06' => 'Hwanghae-namdo',
|
2154 |
-
'07' => 'Hwanghae-bukto',
|
2155 |
-
'08' => 'Kaesong-si',
|
2156 |
-
'09' => 'Kangwon-do',
|
2157 |
-
11 => 'P\'yongan-bukto',
|
2158 |
-
12 => 'P\'yongyang-si',
|
2159 |
-
13 => 'Yanggang-do',
|
2160 |
-
14 => 'Namp\'o-si',
|
2161 |
-
15 => 'P\'yongan-namdo',
|
2162 |
-
17 => 'Hamgyong-bukto',
|
2163 |
-
18 => 'Najin Sonbong-si',
|
2164 |
-
),
|
2165 |
-
'KR' =>
|
2166 |
-
array (
|
2167 |
-
'01' => 'Cheju-do',
|
2168 |
-
'03' => 'Cholla-bukto',
|
2169 |
-
'05' => 'Ch\'ungch\'ong-bukto',
|
2170 |
-
'06' => 'Kangwon-do',
|
2171 |
-
10 => 'Pusan-jikhalsi',
|
2172 |
-
11 => 'Seoul-t\'ukpyolsi',
|
2173 |
-
12 => 'Inch\'on-jikhalsi',
|
2174 |
-
13 => 'Kyonggi-do',
|
2175 |
-
14 => 'Kyongsang-bukto',
|
2176 |
-
15 => 'Taegu-jikhalsi',
|
2177 |
-
16 => 'Cholla-namdo',
|
2178 |
-
17 => 'Ch\'ungch\'ong-namdo',
|
2179 |
-
18 => 'Kwangju-jikhalsi',
|
2180 |
-
19 => 'Taejon-jikhalsi',
|
2181 |
-
20 => 'Kyongsang-namdo',
|
2182 |
-
21 => 'Ulsan-gwangyoksi',
|
2183 |
-
),
|
2184 |
-
'KW' =>
|
2185 |
-
array (
|
2186 |
-
'01' => 'Al Ahmadi',
|
2187 |
-
'02' => 'Al Kuwayt',
|
2188 |
-
'05' => 'Al Jahra',
|
2189 |
-
'07' => 'Al Farwaniyah',
|
2190 |
-
'08' => 'Hawalli',
|
2191 |
-
'09' => 'Mubarak al Kabir',
|
2192 |
-
),
|
2193 |
-
'KY' =>
|
2194 |
-
array (
|
2195 |
-
'01' => 'Creek',
|
2196 |
-
'02' => 'Eastern',
|
2197 |
-
'03' => 'Midland',
|
2198 |
-
'04' => 'South Town',
|
2199 |
-
'05' => 'Spot Bay',
|
2200 |
-
'06' => 'Stake Bay',
|
2201 |
-
'07' => 'West End',
|
2202 |
-
'08' => 'Western',
|
2203 |
-
),
|
2204 |
-
'KZ' =>
|
2205 |
-
array (
|
2206 |
-
'01' => 'Almaty',
|
2207 |
-
'02' => 'Almaty City',
|
2208 |
-
'03' => 'Aqmola',
|
2209 |
-
'04' => 'Aqtobe',
|
2210 |
-
'05' => 'Astana',
|
2211 |
-
'06' => 'Atyrau',
|
2212 |
-
'07' => 'West Kazakhstan',
|
2213 |
-
'08' => 'Bayqonyr',
|
2214 |
-
'09' => 'Mangghystau',
|
2215 |
-
10 => 'South Kazakhstan',
|
2216 |
-
11 => 'Pavlodar',
|
2217 |
-
12 => 'Qaraghandy',
|
2218 |
-
13 => 'Qostanay',
|
2219 |
-
14 => 'Qyzylorda',
|
2220 |
-
15 => 'East Kazakhstan',
|
2221 |
-
16 => 'North Kazakhstan',
|
2222 |
-
17 => 'Zhambyl',
|
2223 |
-
),
|
2224 |
-
'LA' =>
|
2225 |
-
array (
|
2226 |
-
'01' => 'Attapu',
|
2227 |
-
'02' => 'Champasak',
|
2228 |
-
'03' => 'Houaphan',
|
2229 |
-
'04' => 'Khammouan',
|
2230 |
-
'05' => 'Louang Namtha',
|
2231 |
-
'07' => 'Oudomxai',
|
2232 |
-
'08' => 'Phongsali',
|
2233 |
-
'09' => 'Saravan',
|
2234 |
-
10 => 'Savannakhet',
|
2235 |
-
11 => 'Vientiane',
|
2236 |
-
13 => 'Xaignabouri',
|
2237 |
-
14 => 'Xiangkhoang',
|
2238 |
-
17 => 'Louangphrabang',
|
2239 |
-
),
|
2240 |
-
'LB' =>
|
2241 |
-
array (
|
2242 |
-
'08' => 'Beqaa',
|
2243 |
-
'02' => 'Al Janub',
|
2244 |
-
'09' => 'Liban-Nord',
|
2245 |
-
'04' => 'Beyrouth',
|
2246 |
-
'05' => 'Mont-Liban',
|
2247 |
-
'06' => 'Liban-Sud',
|
2248 |
-
'07' => 'Nabatiye',
|
2249 |
-
10 => 'Aakk',
|
2250 |
-
11 => 'Baalbek-Hermel',
|
2251 |
-
),
|
2252 |
-
'LC' =>
|
2253 |
-
array (
|
2254 |
-
'01' => 'Anse-la-Raye',
|
2255 |
-
'02' => 'Dauphin',
|
2256 |
-
'03' => 'Castries',
|
2257 |
-
'04' => 'Choiseul',
|
2258 |
-
'05' => 'Dennery',
|
2259 |
-
'06' => 'Gros-Islet',
|
2260 |
-
'07' => 'Laborie',
|
2261 |
-
'08' => 'Micoud',
|
2262 |
-
'09' => 'Soufriere',
|
2263 |
-
10 => 'Vieux-Fort',
|
2264 |
-
11 => 'Praslin',
|
2265 |
-
),
|
2266 |
-
'LI' =>
|
2267 |
-
array (
|
2268 |
-
'01' => 'Balzers',
|
2269 |
-
'02' => 'Eschen',
|
2270 |
-
'03' => 'Gamprin',
|
2271 |
-
'04' => 'Mauren',
|
2272 |
-
'05' => 'Planken',
|
2273 |
-
'06' => 'Ruggell',
|
2274 |
-
'07' => 'Schaan',
|
2275 |
-
'08' => 'Schellenberg',
|
2276 |
-
'09' => 'Triesen',
|
2277 |
-
10 => 'Triesenberg',
|
2278 |
-
11 => 'Vaduz',
|
2279 |
-
21 => 'Gbarpolu',
|
2280 |
-
22 => 'River Gee',
|
2281 |
-
),
|
2282 |
-
'LK' =>
|
2283 |
-
array (
|
2284 |
-
29 => 'Central',
|
2285 |
-
30 => 'North Central',
|
2286 |
-
32 => 'North Western',
|
2287 |
-
33 => 'Sabaragamuwa',
|
2288 |
-
34 => 'Southern',
|
2289 |
-
35 => 'Uva',
|
2290 |
-
36 => 'Western',
|
2291 |
-
37 => 'Eastern',
|
2292 |
-
38 => 'Northern',
|
2293 |
-
),
|
2294 |
-
'LR' =>
|
2295 |
-
array (
|
2296 |
-
'01' => 'Bong',
|
2297 |
-
12 => 'Grand Cape Mount',
|
2298 |
-
20 => 'Lofa',
|
2299 |
-
13 => 'Maryland',
|
2300 |
-
'07' => 'Monrovia',
|
2301 |
-
'09' => 'Nimba',
|
2302 |
-
10 => 'Sino',
|
2303 |
-
11 => 'Grand Bassa',
|
2304 |
-
14 => 'Montserrado',
|
2305 |
-
17 => 'Margibi',
|
2306 |
-
18 => 'River Cess',
|
2307 |
-
19 => 'Grand Gedeh',
|
2308 |
-
21 => 'Gbarpolu',
|
2309 |
-
22 => 'River Gee',
|
2310 |
-
),
|
2311 |
-
'LS' =>
|
2312 |
-
array (
|
2313 |
-
10 => 'Berea',
|
2314 |
-
11 => 'Butha-Buthe',
|
2315 |
-
12 => 'Leribe',
|
2316 |
-
13 => 'Mafeteng',
|
2317 |
-
14 => 'Maseru',
|
2318 |
-
15 => 'Mohales Hoek',
|
2319 |
-
16 => 'Mokhotlong',
|
2320 |
-
17 => 'Qachas Nek',
|
2321 |
-
18 => 'Quthing',
|
2322 |
-
19 => 'Thaba-Tseka',
|
2323 |
-
),
|
2324 |
-
'LT' =>
|
2325 |
-
array (
|
2326 |
-
56 => 'Alytaus Apskritis',
|
2327 |
-
57 => 'Kauno Apskritis',
|
2328 |
-
58 => 'Klaipedos Apskritis',
|
2329 |
-
59 => 'Marijampoles Apskritis',
|
2330 |
-
60 => 'Panevezio Apskritis',
|
2331 |
-
61 => 'Siauliu Apskritis',
|
2332 |
-
62 => 'Taurages Apskritis',
|
2333 |
-
63 => 'Telsiu Apskritis',
|
2334 |
-
64 => 'Utenos Apskritis',
|
2335 |
-
65 => 'Vilniaus Apskritis',
|
2336 |
-
),
|
2337 |
-
'LU' =>
|
2338 |
-
array (
|
2339 |
-
'01' => 'Diekirch',
|
2340 |
-
'02' => 'Grevenmacher',
|
2341 |
-
'03' => 'Luxembourg',
|
2342 |
-
),
|
2343 |
-
'LV' =>
|
2344 |
-
array (
|
2345 |
-
'01' => 'Aizkraukles',
|
2346 |
-
'02' => 'Aluksnes',
|
2347 |
-
'03' => 'Balvu',
|
2348 |
-
'04' => 'Bauskas',
|
2349 |
-
'05' => 'Cesu',
|
2350 |
-
'07' => 'Daugavpils',
|
2351 |
-
'08' => 'Dobeles',
|
2352 |
-
'09' => 'Gulbenes',
|
2353 |
-
10 => 'Jekabpils',
|
2354 |
-
11 => 'Jelgava',
|
2355 |
-
12 => 'Jelgavas',
|
2356 |
-
13 => 'Jurmala',
|
2357 |
-
14 => 'Kraslavas',
|
2358 |
-
15 => 'Kuldigas',
|
2359 |
-
16 => 'Liepaja',
|
2360 |
-
17 => 'Liepajas',
|
2361 |
-
18 => 'Limbazu',
|
2362 |
-
19 => 'Ludzas',
|
2363 |
-
20 => 'Madonas',
|
2364 |
-
21 => 'Ogres',
|
2365 |
-
22 => 'Preilu',
|
2366 |
-
23 => 'Rezekne',
|
2367 |
-
24 => 'Rezeknes',
|
2368 |
-
25 => 'Riga',
|
2369 |
-
26 => 'Rigas',
|
2370 |
-
27 => 'Saldus',
|
2371 |
-
28 => 'Talsu',
|
2372 |
-
29 => 'Tukuma',
|
2373 |
-
30 => 'Valkas',
|
2374 |
-
31 => 'Valmieras',
|
2375 |
-
33 => 'Ventspils',
|
2376 |
-
),
|
2377 |
-
'LY' =>
|
2378 |
-
array (
|
2379 |
-
'03' => 'Al Aziziyah',
|
2380 |
-
'05' => 'Al Jufrah',
|
2381 |
-
'08' => 'Al Kufrah',
|
2382 |
-
13 => 'Ash Shati\'',
|
2383 |
-
30 => 'Murzuq',
|
2384 |
-
34 => 'Sabha',
|
2385 |
-
41 => 'Tarhunah',
|
2386 |
-
42 => 'Tubruq',
|
2387 |
-
45 => 'Zlitan',
|
2388 |
-
47 => 'Ajdabiya',
|
2389 |
-
48 => 'Al Fatih',
|
2390 |
-
49 => 'Al Jabal al Akhdar',
|
2391 |
-
50 => 'Al Khums',
|
2392 |
-
51 => 'An Nuqat al Khams',
|
2393 |
-
52 => 'Awbari',
|
2394 |
-
53 => 'Az Zawiyah',
|
2395 |
-
54 => 'Banghazi',
|
2396 |
-
55 => 'Darnah',
|
2397 |
-
56 => 'Ghadamis',
|
2398 |
-
57 => 'Gharyan',
|
2399 |
-
58 => 'Misratah',
|
2400 |
-
59 => 'Sawfajjin',
|
2401 |
-
60 => 'Surt',
|
2402 |
-
61 => 'Tarabulus',
|
2403 |
-
62 => 'Yafran',
|
2404 |
-
),
|
2405 |
-
'MA' =>
|
2406 |
-
array (
|
2407 |
-
45 => 'Grand Casablanca',
|
2408 |
-
46 => 'Fes-Boulemane',
|
2409 |
-
47 => 'Marrakech-Tensift-Al Haouz',
|
2410 |
-
48 => 'Meknes-Tafilalet',
|
2411 |
-
49 => 'Rabat-Sale-Zemmour-Zaer',
|
2412 |
-
50 => 'Chaouia-Ouardigha',
|
2413 |
-
51 => 'Doukkala-Abda',
|
2414 |
-
52 => 'Gharb-Chrarda-Beni Hssen',
|
2415 |
-
53 => 'Guelmim-Es Smara',
|
2416 |
-
54 => 'Oriental',
|
2417 |
-
55 => 'Souss-Massa-Dr',
|
2418 |
-
56 => 'Tadla-Azilal',
|
2419 |
-
57 => 'Tanger-Tetouan',
|
2420 |
-
58 => 'Taza-Al Hoceima-Taounate',
|
2421 |
-
59 => 'La',
|
2422 |
-
),
|
2423 |
-
'MC' =>
|
2424 |
-
array (
|
2425 |
-
'01' => 'La Condamine',
|
2426 |
-
'02' => 'Monaco',
|
2427 |
-
'03' => 'Monte-Carlo',
|
2428 |
-
),
|
2429 |
-
'MD' =>
|
2430 |
-
array (
|
2431 |
-
51 => 'Gagauzia',
|
2432 |
-
57 => 'Chisinau',
|
2433 |
-
58 => 'Stinga Nistrului',
|
2434 |
-
59 => 'Anenii Noi',
|
2435 |
-
60 => 'Balti',
|
2436 |
-
61 => 'Basarabeasca',
|
2437 |
-
62 => 'Bender',
|
2438 |
-
63 => 'Briceni',
|
2439 |
-
64 => 'Cahul',
|
2440 |
-
65 => 'Cantemir',
|
2441 |
-
66 => 'Calarasi',
|
2442 |
-
67 => 'Causeni',
|
2443 |
-
68 => 'Cimislia',
|
2444 |
-
69 => 'Criuleni',
|
2445 |
-
70 => 'Donduseni',
|
2446 |
-
71 => 'Drochia',
|
2447 |
-
72 => 'Dubasari',
|
2448 |
-
73 => 'Edinet',
|
2449 |
-
74 => 'Falesti',
|
2450 |
-
75 => 'Floresti',
|
2451 |
-
76 => 'Glodeni',
|
2452 |
-
77 => 'Hincesti',
|
2453 |
-
78 => 'Ialoveni',
|
2454 |
-
79 => 'Leova',
|
2455 |
-
80 => 'Nisporeni',
|
2456 |
-
81 => 'Ocnita',
|
2457 |
-
82 => 'Orhei',
|
2458 |
-
83 => 'Rezina',
|
2459 |
-
84 => 'Riscani',
|
2460 |
-
85 => 'Singerei',
|
2461 |
-
86 => 'Soldanesti',
|
2462 |
-
87 => 'Soroca',
|
2463 |
-
88 => 'Stefan-Voda',
|
2464 |
-
89 => 'Straseni',
|
2465 |
-
90 => 'Taraclia',
|
2466 |
-
91 => 'Telenesti',
|
2467 |
-
92 => 'Ungheni',
|
2468 |
-
),
|
2469 |
-
'MG' =>
|
2470 |
-
array (
|
2471 |
-
'01' => 'Antsiranana',
|
2472 |
-
'02' => 'Fianarantsoa',
|
2473 |
-
'03' => 'Mahajanga',
|
2474 |
-
'04' => 'Toamasina',
|
2475 |
-
'05' => 'Antananarivo',
|
2476 |
-
'06' => 'Toliara',
|
2477 |
-
),
|
2478 |
-
'MK' =>
|
2479 |
-
array (
|
2480 |
-
'01' => 'Aracinovo',
|
2481 |
-
'02' => 'Bac',
|
2482 |
-
'03' => 'Belcista',
|
2483 |
-
'04' => 'Berovo',
|
2484 |
-
'05' => 'Bistrica',
|
2485 |
-
'06' => 'Bitola',
|
2486 |
-
'07' => 'Blatec',
|
2487 |
-
'08' => 'Bogdanci',
|
2488 |
-
'09' => 'Bogomila',
|
2489 |
-
10 => 'Bogovinje',
|
2490 |
-
11 => 'Bosilovo',
|
2491 |
-
12 => 'Brvenica',
|
2492 |
-
'C8' => 'Cair',
|
2493 |
-
14 => 'Capari',
|
2494 |
-
'C9' => 'Caska',
|
2495 |
-
16 => 'Cegrane',
|
2496 |
-
17 => 'Centar',
|
2497 |
-
18 => 'Centar Zupa',
|
2498 |
-
19 => 'Cesinovo',
|
2499 |
-
20 => 'Cucer-Sandevo',
|
2500 |
-
'D2' => 'Debar',
|
2501 |
-
22 => 'Delcevo',
|
2502 |
-
23 => 'Delogozdi',
|
2503 |
-
'D3' => 'Demir Hisar',
|
2504 |
-
25 => 'Demir Kapija',
|
2505 |
-
26 => 'Dobrusevo',
|
2506 |
-
27 => 'Dolna Banjica',
|
2507 |
-
28 => 'Dolneni',
|
2508 |
-
29 => 'Dorce Petrov',
|
2509 |
-
30 => 'Drugovo',
|
2510 |
-
31 => 'Dzepciste',
|
2511 |
-
32 => 'Gazi Baba',
|
2512 |
-
33 => 'Gevgelija',
|
2513 |
-
'D4' => 'Gostivar',
|
2514 |
-
35 => 'Gradsko',
|
2515 |
-
36 => 'Ilinden',
|
2516 |
-
37 => 'Izvor',
|
2517 |
-
38 => 'Jegunovce',
|
2518 |
-
39 => 'Kamenjane',
|
2519 |
-
40 => 'Karbinci',
|
2520 |
-
41 => 'Karpos',
|
2521 |
-
'D6' => 'Kavadarci',
|
2522 |
-
43 => 'Kicevo',
|
2523 |
-
44 => 'Kisela Voda',
|
2524 |
-
45 => 'Klecevce',
|
2525 |
-
46 => 'Kocani',
|
2526 |
-
47 => 'Konce',
|
2527 |
-
48 => 'Kondovo',
|
2528 |
-
49 => 'Konopiste',
|
2529 |
-
50 => 'Kosel',
|
2530 |
-
51 => 'Kratovo',
|
2531 |
-
52 => 'Kriva Palanka',
|
2532 |
-
53 => 'Krivogastani',
|
2533 |
-
54 => 'Krusevo',
|
2534 |
-
55 => 'Kuklis',
|
2535 |
-
56 => 'Kukurecani',
|
2536 |
-
'D7' => 'Kumanovo',
|
2537 |
-
58 => 'Labunista',
|
2538 |
-
59 => 'Lipkovo',
|
2539 |
-
60 => 'Lozovo',
|
2540 |
-
61 => 'Lukovo',
|
2541 |
-
62 => 'Makedonska Kamenica',
|
2542 |
-
'D8' => 'Makedonski Brod',
|
2543 |
-
64 => 'Mavrovi Anovi',
|
2544 |
-
65 => 'Meseista',
|
2545 |
-
66 => 'Miravci',
|
2546 |
-
67 => 'Mogila',
|
2547 |
-
68 => 'Murtino',
|
2548 |
-
69 => 'Negotino',
|
2549 |
-
70 => 'Negotino-Polosko',
|
2550 |
-
71 => 'Novaci',
|
2551 |
-
72 => 'Novo Selo',
|
2552 |
-
73 => 'Oblesevo',
|
2553 |
-
'E2' => 'Ohrid',
|
2554 |
-
75 => 'Orasac',
|
2555 |
-
76 => 'Orizari',
|
2556 |
-
77 => 'Oslomej',
|
2557 |
-
78 => 'Pehcevo',
|
2558 |
-
79 => 'Petrovec',
|
2559 |
-
80 => 'Plasnica',
|
2560 |
-
81 => 'Podares',
|
2561 |
-
'E3' => 'Prilep',
|
2562 |
-
83 => 'Probistip',
|
2563 |
-
84 => 'Radovis',
|
2564 |
-
85 => 'Rankovce',
|
2565 |
-
86 => 'Resen',
|
2566 |
-
87 => 'Rosoman',
|
2567 |
-
88 => 'Rostusa',
|
2568 |
-
89 => 'Samokov',
|
2569 |
-
90 => 'Saraj',
|
2570 |
-
91 => 'Sipkovica',
|
2571 |
-
92 => 'Sopiste',
|
2572 |
-
93 => 'Sopotnica',
|
2573 |
-
94 => 'Srbinovo',
|
2574 |
-
95 => 'Staravina',
|
2575 |
-
96 => 'Star Dojran',
|
2576 |
-
97 => 'Staro Nagoricane',
|
2577 |
-
98 => 'Stip',
|
2578 |
-
'E6' => 'Struga',
|
2579 |
-
'E7' => 'Strumica',
|
2580 |
-
'A2' => 'Studenicani',
|
2581 |
-
'A3' => 'Suto Orizari',
|
2582 |
-
'A4' => 'Sveti Nikole',
|
2583 |
-
'A5' => 'Tearce',
|
2584 |
-
'E8' => 'Tetovo',
|
2585 |
-
'A7' => 'Topolcani',
|
2586 |
-
'E9' => 'Valandovo',
|
2587 |
-
'A9' => 'Vasilevo',
|
2588 |
-
'F1' => 'Veles',
|
2589 |
-
'B2' => 'Velesta',
|
2590 |
-
'B3' => 'Vevcani',
|
2591 |
-
'B4' => 'Vinica',
|
2592 |
-
'B5' => 'Vitoliste',
|
2593 |
-
'B6' => 'Vranestica',
|
2594 |
-
'B7' => 'Vrapciste',
|
2595 |
-
'B8' => 'Vratnica',
|
2596 |
-
'B9' => 'Vrutok',
|
2597 |
-
'C1' => 'Zajas',
|
2598 |
-
'C2' => 'Zelenikovo',
|
2599 |
-
'C3' => 'Zelino',
|
2600 |
-
'C4' => 'Zitose',
|
2601 |
-
'C5' => 'Zletovo',
|
2602 |
-
'C6' => 'Zrnovci',
|
2603 |
-
'E5' => 'Dojran',
|
2604 |
-
'F2' => 'Aerodrom',
|
2605 |
-
),
|
2606 |
-
'ML' =>
|
2607 |
-
array (
|
2608 |
-
'01' => 'Bamako',
|
2609 |
-
'03' => 'Kayes',
|
2610 |
-
'04' => 'Mopti',
|
2611 |
-
'05' => 'Segou',
|
2612 |
-
'06' => 'Sikasso',
|
2613 |
-
'07' => 'Koulikoro',
|
2614 |
-
'08' => 'Tombouctou',
|
2615 |
-
'09' => 'Gao',
|
2616 |
-
10 => 'Kidal',
|
2617 |
-
),
|
2618 |
-
'MM' =>
|
2619 |
-
array (
|
2620 |
-
'01' => 'Rakhine State',
|
2621 |
-
'02' => 'Chin State',
|
2622 |
-
'03' => 'Irrawaddy',
|
2623 |
-
'04' => 'Kachin State',
|
2624 |
-
'05' => 'Karan State',
|
2625 |
-
'06' => 'Kayah State',
|
2626 |
-
'07' => 'Magwe',
|
2627 |
-
'08' => 'Mandalay',
|
2628 |
-
'09' => 'Pegu',
|
2629 |
-
10 => 'Sagaing',
|
2630 |
-
11 => 'Shan State',
|
2631 |
-
12 => 'Tenasserim',
|
2632 |
-
13 => 'Mon State',
|
2633 |
-
14 => 'Rangoon',
|
2634 |
-
17 => 'Yangon',
|
2635 |
-
),
|
2636 |
-
'MN' =>
|
2637 |
-
array (
|
2638 |
-
'01' => 'Arhangay',
|
2639 |
-
'02' => 'Bayanhongor',
|
2640 |
-
'03' => 'Bayan-Olgiy',
|
2641 |
-
'05' => 'Darhan',
|
2642 |
-
'06' => 'Dornod',
|
2643 |
-
'07' => 'Dornogovi',
|
2644 |
-
'08' => 'Dundgovi',
|
2645 |
-
'09' => 'Dzavhan',
|
2646 |
-
10 => 'Govi-Altay',
|
2647 |
-
11 => 'Hentiy',
|
2648 |
-
12 => 'Hovd',
|
2649 |
-
13 => 'Hovsgol',
|
2650 |
-
14 => 'Omnogovi',
|
2651 |
-
15 => 'Ovorhangay',
|
2652 |
-
16 => 'Selenge',
|
2653 |
-
17 => 'Suhbaatar',
|
2654 |
-
18 => 'Tov',
|
2655 |
-
19 => 'Uvs',
|
2656 |
-
20 => 'Ulaanbaatar',
|
2657 |
-
21 => 'Bulgan',
|
2658 |
-
22 => 'Erdenet',
|
2659 |
-
23 => 'Darhan-Uul',
|
2660 |
-
24 => 'Govisumber',
|
2661 |
-
25 => 'Orhon',
|
2662 |
-
),
|
2663 |
-
'MO' =>
|
2664 |
-
array (
|
2665 |
-
'01' => 'Ilhas',
|
2666 |
-
'02' => 'Macau',
|
2667 |
-
),
|
2668 |
-
'MR' =>
|
2669 |
-
array (
|
2670 |
-
'01' => 'Hodh Ech Chargui',
|
2671 |
-
'02' => 'Hodh El Gharbi',
|
2672 |
-
'03' => 'Assaba',
|
2673 |
-
'04' => 'Gorgol',
|
2674 |
-
'05' => 'Brakna',
|
2675 |
-
'06' => 'Trarza',
|
2676 |
-
'07' => 'Adrar',
|
2677 |
-
'08' => 'Dakhlet Nouadhibou',
|
2678 |
-
'09' => 'Tagant',
|
2679 |
-
10 => 'Guidimaka',
|
2680 |
-
11 => 'Tiris Zemmour',
|
2681 |
-
12 => 'Inchiri',
|
2682 |
-
),
|
2683 |
-
'MS' =>
|
2684 |
-
array (
|
2685 |
-
'01' => 'Saint Anthony',
|
2686 |
-
'02' => 'Saint Georges',
|
2687 |
-
'03' => 'Saint Peter',
|
2688 |
-
),
|
2689 |
-
'MU' =>
|
2690 |
-
array (
|
2691 |
-
12 => 'Black River',
|
2692 |
-
13 => 'Flacq',
|
2693 |
-
14 => 'Grand Port',
|
2694 |
-
15 => 'Moka',
|
2695 |
-
16 => 'Pamplemousses',
|
2696 |
-
17 => 'Plaines Wilhems',
|
2697 |
-
18 => 'Port Louis',
|
2698 |
-
19 => 'Riviere du Rempart',
|
2699 |
-
20 => 'Savanne',
|
2700 |
-
21 => 'Agalega Islands',
|
2701 |
-
22 => 'Cargados Carajos',
|
2702 |
-
23 => 'Rodrigues',
|
2703 |
-
),
|
2704 |
-
'MV' =>
|
2705 |
-
array (
|
2706 |
-
'01' => 'Seenu',
|
2707 |
-
'05' => 'Laamu',
|
2708 |
-
30 => 'Alifu',
|
2709 |
-
31 => 'Baa',
|
2710 |
-
32 => 'Dhaalu',
|
2711 |
-
33 => 'Faafu',
|
2712 |
-
34 => 'Gaafu Alifu',
|
2713 |
-
35 => 'Gaafu Dhaalu',
|
2714 |
-
36 => 'Haa Alifu',
|
2715 |
-
37 => 'Haa Dhaalu',
|
2716 |
-
38 => 'Kaafu',
|
2717 |
-
39 => 'Lhaviyani',
|
2718 |
-
40 => 'Maale',
|
2719 |
-
41 => 'Meemu',
|
2720 |
-
42 => 'Gnaviyani',
|
2721 |
-
43 => 'Noonu',
|
2722 |
-
44 => 'Raa',
|
2723 |
-
45 => 'Shaviyani',
|
2724 |
-
46 => 'Thaa',
|
2725 |
-
47 => 'Vaavu',
|
2726 |
-
),
|
2727 |
-
'MW' =>
|
2728 |
-
array (
|
2729 |
-
'02' => 'Chikwawa',
|
2730 |
-
'03' => 'Chiradzulu',
|
2731 |
-
'04' => 'Chitipa',
|
2732 |
-
'05' => 'Thyolo',
|
2733 |
-
'06' => 'Dedza',
|
2734 |
-
'07' => 'Dowa',
|
2735 |
-
'08' => 'Karonga',
|
2736 |
-
'09' => 'Kasungu',
|
2737 |
-
11 => 'Lilongwe',
|
2738 |
-
12 => 'Mangochi',
|
2739 |
-
13 => 'Mchinji',
|
2740 |
-
15 => 'Mzimba',
|
2741 |
-
16 => 'Ntcheu',
|
2742 |
-
17 => 'Nkhata Bay',
|
2743 |
-
18 => 'Nkhotakota',
|
2744 |
-
19 => 'Nsanje',
|
2745 |
-
20 => 'Ntchisi',
|
2746 |
-
21 => 'Rumphi',
|
2747 |
-
22 => 'Salima',
|
2748 |
-
23 => 'Zomba',
|
2749 |
-
24 => 'Blantyre',
|
2750 |
-
25 => 'Mwanza',
|
2751 |
-
26 => 'Balaka',
|
2752 |
-
27 => 'Likoma',
|
2753 |
-
28 => 'Machinga',
|
2754 |
-
29 => 'Mulanje',
|
2755 |
-
30 => 'Phalombe',
|
2756 |
-
),
|
2757 |
-
'MX' =>
|
2758 |
-
array (
|
2759 |
-
'01' => 'Aguascalientes',
|
2760 |
-
'02' => 'Baja California',
|
2761 |
-
'03' => 'Baja California Sur',
|
2762 |
-
'04' => 'Campeche',
|
2763 |
-
'05' => 'Chiapas',
|
2764 |
-
'06' => 'Chihuahua',
|
2765 |
-
'07' => 'Coahuila de Zaragoza',
|
2766 |
-
'08' => 'Colima',
|
2767 |
-
'09' => 'Distrito Federal',
|
2768 |
-
10 => 'Durango',
|
2769 |
-
11 => 'Guanajuato',
|
2770 |
-
12 => 'Guerrero',
|
2771 |
-
13 => 'Hidalgo',
|
2772 |
-
14 => 'Jalisco',
|
2773 |
-
15 => 'Mexico',
|
2774 |
-
16 => 'Michoacan de Ocampo',
|
2775 |
-
17 => 'Morelos',
|
2776 |
-
18 => 'Nayarit',
|
2777 |
-
19 => 'Nuevo Leon',
|
2778 |
-
20 => 'Oaxaca',
|
2779 |
-
21 => 'Puebla',
|
2780 |
-
22 => 'Queretaro de Arteaga',
|
2781 |
-
23 => 'Quintana Roo',
|
2782 |
-
24 => 'San Luis Potosi',
|
2783 |
-
25 => 'Sinaloa',
|
2784 |
-
26 => 'Sonora',
|
2785 |
-
27 => 'Tabasco',
|
2786 |
-
28 => 'Tamaulipas',
|
2787 |
-
29 => 'Tlaxcala',
|
2788 |
-
30 => 'Veracruz-Llave',
|
2789 |
-
31 => 'Yucatan',
|
2790 |
-
32 => 'Zacatecas',
|
2791 |
-
),
|
2792 |
-
'MY' =>
|
2793 |
-
array (
|
2794 |
-
'01' => 'Johor',
|
2795 |
-
'02' => 'Kedah',
|
2796 |
-
'03' => 'Kelantan',
|
2797 |
-
'04' => 'Melaka',
|
2798 |
-
'05' => 'Negeri Sembilan',
|
2799 |
-
'06' => 'Pahang',
|
2800 |
-
'07' => 'Perak',
|
2801 |
-
'08' => 'Perlis',
|
2802 |
-
'09' => 'Pulau Pinang',
|
2803 |
-
11 => 'Sarawak',
|
2804 |
-
12 => 'Selangor',
|
2805 |
-
13 => 'Terengganu',
|
2806 |
-
14 => 'Kuala Lumpur',
|
2807 |
-
15 => 'Labuan',
|
2808 |
-
16 => 'Sabah',
|
2809 |
-
17 => 'Putrajaya',
|
2810 |
-
),
|
2811 |
-
'MZ' =>
|
2812 |
-
array (
|
2813 |
-
'01' => 'Cabo Delgado',
|
2814 |
-
'02' => 'Gaza',
|
2815 |
-
'03' => 'Inhambane',
|
2816 |
-
11 => 'Maputo',
|
2817 |
-
'05' => 'Sofala',
|
2818 |
-
'06' => 'Nampula',
|
2819 |
-
'07' => 'Niassa',
|
2820 |
-
'08' => 'Tete',
|
2821 |
-
'09' => 'Zambezia',
|
2822 |
-
10 => 'Manica',
|
2823 |
-
),
|
2824 |
-
'NA' =>
|
2825 |
-
array (
|
2826 |
-
'01' => 'Bethanien',
|
2827 |
-
'02' => 'Caprivi Oos',
|
2828 |
-
'03' => 'Boesmanland',
|
2829 |
-
'04' => 'Gobabis',
|
2830 |
-
'05' => 'Grootfontein',
|
2831 |
-
'06' => 'Kaokoland',
|
2832 |
-
'07' => 'Karibib',
|
2833 |
-
'08' => 'Keetmanshoop',
|
2834 |
-
'09' => 'Luderitz',
|
2835 |
-
10 => 'Maltahohe',
|
2836 |
-
11 => 'Okahandja',
|
2837 |
-
12 => 'Omaruru',
|
2838 |
-
13 => 'Otjiwarongo',
|
2839 |
-
14 => 'Outjo',
|
2840 |
-
15 => 'Owambo',
|
2841 |
-
16 => 'Rehoboth',
|
2842 |
-
17 => 'Swakopmund',
|
2843 |
-
18 => 'Tsumeb',
|
2844 |
-
20 => 'Karasburg',
|
2845 |
-
21 => 'Windhoek',
|
2846 |
-
22 => 'Damaraland',
|
2847 |
-
23 => 'Hereroland Oos',
|
2848 |
-
24 => 'Hereroland Wes',
|
2849 |
-
25 => 'Kavango',
|
2850 |
-
26 => 'Mariental',
|
2851 |
-
27 => 'Namaland',
|
2852 |
-
28 => 'Caprivi',
|
2853 |
-
29 => 'Erongo',
|
2854 |
-
30 => 'Hardap',
|
2855 |
-
31 => 'Karas',
|
2856 |
-
32 => 'Kunene',
|
2857 |
-
33 => 'Ohangwena',
|
2858 |
-
34 => 'Okavango',
|
2859 |
-
35 => 'Omaheke',
|
2860 |
-
36 => 'Omusati',
|
2861 |
-
37 => 'Oshana',
|
2862 |
-
38 => 'Oshikoto',
|
2863 |
-
39 => 'Otjozondjupa',
|
2864 |
-
),
|
2865 |
-
'NE' =>
|
2866 |
-
array (
|
2867 |
-
'01' => 'Agadez',
|
2868 |
-
'02' => 'Diffa',
|
2869 |
-
'03' => 'Dosso',
|
2870 |
-
'04' => 'Maradi',
|
2871 |
-
'08' => 'Niamey',
|
2872 |
-
'06' => 'Tahoua',
|
2873 |
-
'07' => 'Zinder',
|
2874 |
-
),
|
2875 |
-
'NG' =>
|
2876 |
-
array (
|
2877 |
-
'05' => 'Lagos',
|
2878 |
-
11 => 'Federal Capital Territory',
|
2879 |
-
16 => 'Ogun',
|
2880 |
-
21 => 'Akwa Ibom',
|
2881 |
-
22 => 'Cross River',
|
2882 |
-
23 => 'Kaduna',
|
2883 |
-
24 => 'Katsina',
|
2884 |
-
25 => 'Anambra',
|
2885 |
-
26 => 'Benue',
|
2886 |
-
27 => 'Borno',
|
2887 |
-
28 => 'Imo',
|
2888 |
-
29 => 'Kano',
|
2889 |
-
30 => 'Kwara',
|
2890 |
-
31 => 'Niger',
|
2891 |
-
32 => 'Oyo',
|
2892 |
-
35 => 'Adamawa',
|
2893 |
-
36 => 'Delta',
|
2894 |
-
37 => 'Edo',
|
2895 |
-
39 => 'Jigawa',
|
2896 |
-
40 => 'Kebbi',
|
2897 |
-
41 => 'Kogi',
|
2898 |
-
42 => 'Osun',
|
2899 |
-
43 => 'Taraba',
|
2900 |
-
44 => 'Yobe',
|
2901 |
-
45 => 'Abia',
|
2902 |
-
46 => 'Bauchi',
|
2903 |
-
47 => 'Enugu',
|
2904 |
-
48 => 'Ondo',
|
2905 |
-
49 => 'Plateau',
|
2906 |
-
50 => 'Rivers',
|
2907 |
-
51 => 'Sokoto',
|
2908 |
-
52 => 'Bayelsa',
|
2909 |
-
53 => 'Ebonyi',
|
2910 |
-
54 => 'Ekiti',
|
2911 |
-
55 => 'Gombe',
|
2912 |
-
56 => 'Nassarawa',
|
2913 |
-
57 => 'Zamfara',
|
2914 |
-
),
|
2915 |
-
'NI' =>
|
2916 |
-
array (
|
2917 |
-
'01' => 'Boaco',
|
2918 |
-
'02' => 'Carazo',
|
2919 |
-
'03' => 'Chinandega',
|
2920 |
-
'04' => 'Chontales',
|
2921 |
-
'05' => 'Esteli',
|
2922 |
-
'06' => 'Granada',
|
2923 |
-
'07' => 'Jinotega',
|
2924 |
-
'08' => 'Leon',
|
2925 |
-
'09' => 'Madriz',
|
2926 |
-
10 => 'Managua',
|
2927 |
-
11 => 'Masaya',
|
2928 |
-
12 => 'Matagalpa',
|
2929 |
-
13 => 'Nueva Segovia',
|
2930 |
-
14 => 'Rio San Juan',
|
2931 |
-
15 => 'Rivas',
|
2932 |
-
16 => 'Zelaya',
|
2933 |
-
17 => 'Autonoma Atlantico Norte',
|
2934 |
-
18 => 'Region Autonoma Atlantico Sur',
|
2935 |
-
),
|
2936 |
-
'NL' =>
|
2937 |
-
array (
|
2938 |
-
'01' => 'Drenthe',
|
2939 |
-
'02' => 'Friesland',
|
2940 |
-
'03' => 'Gelderland',
|
2941 |
-
'04' => 'Groningen',
|
2942 |
-
'05' => 'Limburg',
|
2943 |
-
'06' => 'Noord-Brabant',
|
2944 |
-
'07' => 'Noord-Holland',
|
2945 |
-
'09' => 'Utrecht',
|
2946 |
-
10 => 'Zeeland',
|
2947 |
-
11 => 'Zuid-Holland',
|
2948 |
-
15 => 'Overijssel',
|
2949 |
-
16 => 'Flevoland',
|
2950 |
-
),
|
2951 |
-
'NO' =>
|
2952 |
-
array (
|
2953 |
-
'01' => 'Akershus',
|
2954 |
-
'02' => 'Aust-Agder',
|
2955 |
-
'04' => 'Buskerud',
|
2956 |
-
'05' => 'Finnmark',
|
2957 |
-
'06' => 'Hedmark',
|
2958 |
-
'07' => 'Hordaland',
|
2959 |
-
'08' => 'More og Romsdal',
|
2960 |
-
'09' => 'Nordland',
|
2961 |
-
10 => 'Nord-Trondelag',
|
2962 |
-
11 => 'Oppland',
|
2963 |
-
12 => 'Oslo',
|
2964 |
-
13 => 'Ostfold',
|
2965 |
-
14 => 'Rogaland',
|
2966 |
-
15 => 'Sogn og Fjordane',
|
2967 |
-
16 => 'Sor-Trondelag',
|
2968 |
-
17 => 'Telemark',
|
2969 |
-
18 => 'Troms',
|
2970 |
-
19 => 'Vest-Agder',
|
2971 |
-
20 => 'Vestfold',
|
2972 |
-
),
|
2973 |
-
'NP' =>
|
2974 |
-
array (
|
2975 |
-
'01' => 'Bagmati',
|
2976 |
-
'02' => 'Bheri',
|
2977 |
-
'03' => 'Dhawalagiri',
|
2978 |
-
'04' => 'Gandaki',
|
2979 |
-
'05' => 'Janakpur',
|
2980 |
-
'06' => 'Karnali',
|
2981 |
-
'07' => 'Kosi',
|
2982 |
-
'08' => 'Lumbini',
|
2983 |
-
'09' => 'Mahakali',
|
2984 |
-
10 => 'Mechi',
|
2985 |
-
11 => 'Narayani',
|
2986 |
-
12 => 'Rapti',
|
2987 |
-
13 => 'Sagarmatha',
|
2988 |
-
14 => 'Seti',
|
2989 |
-
),
|
2990 |
-
'NR' =>
|
2991 |
-
array (
|
2992 |
-
'01' => 'Aiwo',
|
2993 |
-
'02' => 'Anabar',
|
2994 |
-
'03' => 'Anetan',
|
2995 |
-
'04' => 'Anibare',
|
2996 |
-
'05' => 'Baiti',
|
2997 |
-
'06' => 'Boe',
|
2998 |
-
'07' => 'Buada',
|
2999 |
-
'08' => 'Denigomodu',
|
3000 |
-
'09' => 'Ewa',
|
3001 |
-
10 => 'Ijuw',
|
3002 |
-
11 => 'Meneng',
|
3003 |
-
12 => 'Nibok',
|
3004 |
-
13 => 'Uaboe',
|
3005 |
-
14 => 'Yaren',
|
3006 |
-
),
|
3007 |
-
'NZ' =>
|
3008 |
-
array (
|
3009 |
-
10 => 'Chatham Islands',
|
3010 |
-
'E7' => 'Auckland',
|
3011 |
-
'E8' => 'Bay of Plenty',
|
3012 |
-
'E9' => 'Canterbury',
|
3013 |
-
'F1' => 'Gisborne',
|
3014 |
-
'F2' => 'Hawke\'s Bay',
|
3015 |
-
'F3' => 'Manawatu-Wanganui',
|
3016 |
-
'F4' => 'Marlborough',
|
3017 |
-
'F5' => 'Nelson',
|
3018 |
-
'F6' => 'Northland',
|
3019 |
-
'F7' => 'Otago',
|
3020 |
-
'F8' => 'Southland',
|
3021 |
-
'F9' => 'Taranaki',
|
3022 |
-
'G1' => 'Waikato',
|
3023 |
-
'G2' => 'Wellington',
|
3024 |
-
'G3' => 'West Coast',
|
3025 |
-
),
|
3026 |
-
'OM' =>
|
3027 |
-
array (
|
3028 |
-
'01' => 'Ad Dakhiliyah',
|
3029 |
-
'02' => 'Al Batinah',
|
3030 |
-
'03' => 'Al Wusta',
|
3031 |
-
'04' => 'Ash Sharqiyah',
|
3032 |
-
'05' => 'Az Zahirah',
|
3033 |
-
'06' => 'Masqat',
|
3034 |
-
'07' => 'Musandam',
|
3035 |
-
'08' => 'Zufar',
|
3036 |
-
),
|
3037 |
-
'PA' =>
|
3038 |
-
array (
|
3039 |
-
'01' => 'Bocas del Toro',
|
3040 |
-
'02' => 'Chiriqui',
|
3041 |
-
'03' => 'Cocle',
|
3042 |
-
'04' => 'Colon',
|
3043 |
-
'05' => 'Darien',
|
3044 |
-
'06' => 'Herrera',
|
3045 |
-
'07' => 'Los Santos',
|
3046 |
-
'08' => 'Panama',
|
3047 |
-
'09' => 'San Blas',
|
3048 |
-
10 => 'Veraguas',
|
3049 |
-
),
|
3050 |
-
'PE' =>
|
3051 |
-
array (
|
3052 |
-
'01' => 'Amazonas',
|
3053 |
-
'02' => 'Ancash',
|
3054 |
-
'03' => 'Apurimac',
|
3055 |
-
'04' => 'Arequipa',
|
3056 |
-
'05' => 'Ayacucho',
|
3057 |
-
'06' => 'Cajamarca',
|
3058 |
-
'07' => 'Callao',
|
3059 |
-
'08' => 'Cusco',
|
3060 |
-
'09' => 'Huancavelica',
|
3061 |
-
10 => 'Huanuco',
|
3062 |
-
11 => 'Ica',
|
3063 |
-
12 => 'Junin',
|
3064 |
-
13 => 'La Libertad',
|
3065 |
-
14 => 'Lambayeque',
|
3066 |
-
15 => 'Lima',
|
3067 |
-
16 => 'Loreto',
|
3068 |
-
17 => 'Madre de Dios',
|
3069 |
-
18 => 'Moquegua',
|
3070 |
-
19 => 'Pasco',
|
3071 |
-
20 => 'Piura',
|
3072 |
-
21 => 'Puno',
|
3073 |
-
22 => 'San Martin',
|
3074 |
-
23 => 'Tacna',
|
3075 |
-
24 => 'Tumbes',
|
3076 |
-
25 => 'Ucayali',
|
3077 |
-
),
|
3078 |
-
'PG' =>
|
3079 |
-
array (
|
3080 |
-
'01' => 'Central',
|
3081 |
-
'02' => 'Gulf',
|
3082 |
-
'03' => 'Milne Bay',
|
3083 |
-
'04' => 'Northern',
|
3084 |
-
'05' => 'Southern Highlands',
|
3085 |
-
'06' => 'Western',
|
3086 |
-
'07' => 'North Solomons',
|
3087 |
-
'08' => 'Chimbu',
|
3088 |
-
'09' => 'Eastern Highlands',
|
3089 |
-
10 => 'East New Britain',
|
3090 |
-
11 => 'East Sepik',
|
3091 |
-
12 => 'Madang',
|
3092 |
-
13 => 'Manus',
|
3093 |
-
14 => 'Morobe',
|
3094 |
-
15 => 'New Ireland',
|
3095 |
-
16 => 'Western Highlands',
|
3096 |
-
17 => 'West New Britain',
|
3097 |
-
18 => 'Sandaun',
|
3098 |
-
19 => 'Enga',
|
3099 |
-
20 => 'National Capital',
|
3100 |
-
),
|
3101 |
-
'PH' =>
|
3102 |
-
array (
|
3103 |
-
'01' => 'Abra',
|
3104 |
-
'02' => 'Agusan del Norte',
|
3105 |
-
'03' => 'Agusan del Sur',
|
3106 |
-
'04' => 'Aklan',
|
3107 |
-
'05' => 'Albay',
|
3108 |
-
'06' => 'Antique',
|
3109 |
-
'07' => 'Bataan',
|
3110 |
-
'08' => 'Batanes',
|
3111 |
-
'09' => 'Batangas',
|
3112 |
-
10 => 'Benguet',
|
3113 |
-
11 => 'Bohol',
|
3114 |
-
12 => 'Bukidnon',
|
3115 |
-
13 => 'Bulacan',
|
3116 |
-
14 => 'Cagayan',
|
3117 |
-
15 => 'Camarines Norte',
|
3118 |
-
16 => 'Camarines Sur',
|
3119 |
-
17 => 'Camiguin',
|
3120 |
-
18 => 'Capiz',
|
3121 |
-
19 => 'Catanduanes',
|
3122 |
-
20 => 'Cavite',
|
3123 |
-
21 => 'Cebu',
|
3124 |
-
22 => 'Basilan',
|
3125 |
-
23 => 'Eastern Samar',
|
3126 |
-
24 => 'Davao',
|
3127 |
-
25 => 'Davao del Sur',
|
3128 |
-
26 => 'Davao Oriental',
|
3129 |
-
27 => 'Ifugao',
|
3130 |
-
28 => 'Ilocos Norte',
|
3131 |
-
29 => 'Ilocos Sur',
|
3132 |
-
30 => 'Iloilo',
|
3133 |
-
31 => 'Isabela',
|
3134 |
-
32 => 'Kalinga-Apayao',
|
3135 |
-
33 => 'Laguna',
|
3136 |
-
34 => 'Lanao del Norte',
|
3137 |
-
35 => 'Lanao del Sur',
|
3138 |
-
36 => 'La Union',
|
3139 |
-
37 => 'Leyte',
|
3140 |
-
38 => 'Marinduque',
|
3141 |
-
39 => 'Masbate',
|
3142 |
-
40 => 'Mindoro Occidental',
|
3143 |
-
41 => 'Mindoro Oriental',
|
3144 |
-
42 => 'Misamis Occidental',
|
3145 |
-
43 => 'Misamis Oriental',
|
3146 |
-
44 => 'Mountain',
|
3147 |
-
'H3' => 'Negros Occidental',
|
3148 |
-
46 => 'Negros Oriental',
|
3149 |
-
47 => 'Nueva Ecija',
|
3150 |
-
48 => 'Nueva Vizcaya',
|
3151 |
-
49 => 'Palawan',
|
3152 |
-
50 => 'Pampanga',
|
3153 |
-
51 => 'Pangasinan',
|
3154 |
-
53 => 'Rizal',
|
3155 |
-
54 => 'Romblon',
|
3156 |
-
55 => 'Samar',
|
3157 |
-
56 => 'Maguindanao',
|
3158 |
-
57 => 'North Cotabato',
|
3159 |
-
58 => 'Sorsogon',
|
3160 |
-
59 => 'Southern Leyte',
|
3161 |
-
60 => 'Sulu',
|
3162 |
-
'N3' => 'Surigao del Norte',
|
3163 |
-
62 => 'Surigao del Sur',
|
3164 |
-
63 => 'Tarlac',
|
3165 |
-
'P1' => 'Zambales',
|
3166 |
-
65 => 'Zamboanga del Norte',
|
3167 |
-
66 => 'Zamboanga del Sur',
|
3168 |
-
67 => 'Northern Samar',
|
3169 |
-
68 => 'Quirino',
|
3170 |
-
69 => 'Siquijor',
|
3171 |
-
70 => 'South Cotabato',
|
3172 |
-
71 => 'Sultan Kudarat',
|
3173 |
-
72 => 'Tawitawi',
|
3174 |
-
'A1' => 'Angeles',
|
3175 |
-
'A2' => 'Bacolod',
|
3176 |
-
'A3' => 'Bago',
|
3177 |
-
'A4' => 'Baguio',
|
3178 |
-
'A5' => 'Bais',
|
3179 |
-
'A6' => 'Basilan City',
|
3180 |
-
'A7' => 'Batangas City',
|
3181 |
-
'A8' => 'Butuan',
|
3182 |
-
'A9' => 'Cabanatuan',
|
3183 |
-
'B1' => 'Cadiz',
|
3184 |
-
'B2' => 'Cagayan de Oro',
|
3185 |
-
'B3' => 'Calbayog',
|
3186 |
-
'B4' => 'Caloocan',
|
3187 |
-
'B5' => 'Canlaon',
|
3188 |
-
'B6' => 'Cavite City',
|
3189 |
-
'B7' => 'Cebu City',
|
3190 |
-
'B8' => 'Cotabato',
|
3191 |
-
'B9' => 'Dagupan',
|
3192 |
-
'C1' => 'Danao',
|
3193 |
-
'C2' => 'Dapitan',
|
3194 |
-
'C3' => 'Davao City',
|
3195 |
-
'C4' => 'Dipolog',
|
3196 |
-
'C5' => 'Dumaguete',
|
3197 |
-
'C6' => 'General Santos',
|
3198 |
-
'C7' => 'Gingoog',
|
3199 |
-
'C8' => 'Iligan',
|
3200 |
-
'C9' => 'Iloilo City',
|
3201 |
-
'D1' => 'Iriga',
|
3202 |
-
'D2' => 'La Carlota',
|
3203 |
-
'D3' => 'Laoag',
|
3204 |
-
'D4' => 'Lapu-Lapu',
|
3205 |
-
'D5' => 'Legaspi',
|
3206 |
-
'D6' => 'Lipa',
|
3207 |
-
'D7' => 'Lucena',
|
3208 |
-
'D8' => 'Mandaue',
|
3209 |
-
'D9' => 'Manila',
|
3210 |
-
'E1' => 'Marawi',
|
3211 |
-
'E2' => 'Naga',
|
3212 |
-
'E3' => 'Olongapo',
|
3213 |
-
'E4' => 'Ormoc',
|
3214 |
-
'E5' => 'Oroquieta',
|
3215 |
-
'E6' => 'Ozamis',
|
3216 |
-
'E7' => 'Pagadian',
|
3217 |
-
'E8' => 'Palayan',
|
3218 |
-
'E9' => 'Pasay',
|
3219 |
-
'F1' => 'Puerto Princesa',
|
3220 |
-
'F2' => 'Quezon City',
|
3221 |
-
'F3' => 'Roxas',
|
3222 |
-
'F5' => 'San Carlos',
|
3223 |
-
'F6' => 'San Jose',
|
3224 |
-
'F7' => 'San Pablo',
|
3225 |
-
'F8' => 'Silay',
|
3226 |
-
'F9' => 'Surigao',
|
3227 |
-
'G1' => 'Tacloban',
|
3228 |
-
'G2' => 'Tagaytay',
|
3229 |
-
'G3' => 'Tagbilaran',
|
3230 |
-
'G4' => 'Tangub',
|
3231 |
-
'G5' => 'Toledo',
|
3232 |
-
'G6' => 'Trece Martires',
|
3233 |
-
'P2' => 'Zamboanga',
|
3234 |
-
'G8' => 'Aurora',
|
3235 |
-
'H2' => 'Quezon',
|
3236 |
-
'H9' => 'Biliran',
|
3237 |
-
'I6' => 'Compostela Valley',
|
3238 |
-
'I7' => 'Davao del Norte',
|
3239 |
-
'J3' => 'Guimaras',
|
3240 |
-
'J4' => 'Himamaylan',
|
3241 |
-
'J7' => 'Kalinga',
|
3242 |
-
'K1' => 'Las Pinas',
|
3243 |
-
'K5' => 'Malabon',
|
3244 |
-
'K6' => 'Malaybalay',
|
3245 |
-
'L4' => 'Muntinlupa',
|
3246 |
-
'L5' => 'Navotas',
|
3247 |
-
'L7' => 'Paranaque',
|
3248 |
-
'L9' => 'Passi',
|
3249 |
-
'M5' => 'San Jose del Monte',
|
3250 |
-
'M6' => 'San Juan',
|
3251 |
-
'M8' => 'Santiago',
|
3252 |
-
'M9' => 'Sarangani',
|
3253 |
-
'N1' => 'Sipalay',
|
3254 |
-
),
|
3255 |
-
'PK' =>
|
3256 |
-
array (
|
3257 |
-
'01' => 'Federally Administered Tribal Areas',
|
3258 |
-
'02' => 'Balochistan',
|
3259 |
-
'03' => 'North-West Frontier',
|
3260 |
-
'04' => 'Punjab',
|
3261 |
-
'05' => 'Sindh',
|
3262 |
-
'06' => 'Azad Kashmir',
|
3263 |
-
'07' => 'Northern Areas',
|
3264 |
-
'08' => 'Islamabad',
|
3265 |
-
),
|
3266 |
-
'PL' =>
|
3267 |
-
array (
|
3268 |
-
72 => 'Dolnoslaskie',
|
3269 |
-
73 => 'Kujawsko-Pomorskie',
|
3270 |
-
74 => 'Lodzkie',
|
3271 |
-
75 => 'Lubelskie',
|
3272 |
-
76 => 'Lubuskie',
|
3273 |
-
77 => 'Malopolskie',
|
3274 |
-
78 => 'Mazowieckie',
|
3275 |
-
79 => 'Opolskie',
|
3276 |
-
80 => 'Podkarpackie',
|
3277 |
-
81 => 'Podlaskie',
|
3278 |
-
82 => 'Pomorskie',
|
3279 |
-
83 => 'Slaskie',
|
3280 |
-
84 => 'Swietokrzyskie',
|
3281 |
-
85 => 'Warminsko-Mazurskie',
|
3282 |
-
86 => 'Wielkopolskie',
|
3283 |
-
87 => 'Zachodniopomorskie',
|
3284 |
-
),
|
3285 |
-
'PS' =>
|
3286 |
-
array (
|
3287 |
-
'GZ' => 'Gaza',
|
3288 |
-
'WE' => 'West Bank',
|
3289 |
-
),
|
3290 |
-
'PT' =>
|
3291 |
-
array (
|
3292 |
-
'02' => 'Aveiro',
|
3293 |
-
'03' => 'Beja',
|
3294 |
-
'04' => 'Braga',
|
3295 |
-
'05' => 'Braganca',
|
3296 |
-
'06' => 'Castelo Branco',
|
3297 |
-
'07' => 'Coimbra',
|
3298 |
-
'08' => 'Evora',
|
3299 |
-
'09' => 'Faro',
|
3300 |
-
10 => 'Madeira',
|
3301 |
-
11 => 'Guarda',
|
3302 |
-
13 => 'Leiria',
|
3303 |
-
14 => 'Lisboa',
|
3304 |
-
16 => 'Portalegre',
|
3305 |
-
17 => 'Porto',
|
3306 |
-
18 => 'Santarem',
|
3307 |
-
19 => 'Setubal',
|
3308 |
-
20 => 'Viana do Castelo',
|
3309 |
-
21 => 'Vila Real',
|
3310 |
-
22 => 'Viseu',
|
3311 |
-
23 => 'Azores',
|
3312 |
-
),
|
3313 |
-
'PY' =>
|
3314 |
-
array (
|
3315 |
-
'01' => 'Alto Parana',
|
3316 |
-
'02' => 'Amambay',
|
3317 |
-
'04' => 'Caaguazu',
|
3318 |
-
'05' => 'Caazapa',
|
3319 |
-
'06' => 'Central',
|
3320 |
-
'07' => 'Concepcion',
|
3321 |
-
'08' => 'Cordillera',
|
3322 |
-
10 => 'Guaira',
|
3323 |
-
11 => 'Itapua',
|
3324 |
-
12 => 'Misiones',
|
3325 |
-
13 => 'Neembucu',
|
3326 |
-
15 => 'Paraguari',
|
3327 |
-
16 => 'Presidente Hayes',
|
3328 |
-
17 => 'San Pedro',
|
3329 |
-
19 => 'Canindeyu',
|
3330 |
-
22 => 'Asuncion',
|
3331 |
-
23 => 'Alto Paraguay',
|
3332 |
-
24 => 'Boqueron',
|
3333 |
-
),
|
3334 |
-
'QA' =>
|
3335 |
-
array (
|
3336 |
-
'01' => 'Ad Dawhah',
|
3337 |
-
'02' => 'Al Ghuwariyah',
|
3338 |
-
'03' => 'Al Jumaliyah',
|
3339 |
-
'04' => 'Al Khawr',
|
3340 |
-
'05' => 'Al Wakrah Municipality',
|
3341 |
-
'06' => 'Ar Rayyan',
|
3342 |
-
'08' => 'Madinat ach Shamal',
|
3343 |
-
'09' => 'Umm Salal',
|
3344 |
-
10 => 'Al Wakrah',
|
3345 |
-
11 => 'Jariyan al Batnah',
|
3346 |
-
12 => 'Umm Sa\'id',
|
3347 |
-
),
|
3348 |
-
'RO' =>
|
3349 |
-
array (
|
3350 |
-
'01' => 'Alba',
|
3351 |
-
'02' => 'Arad',
|
3352 |
-
'03' => 'Arges',
|
3353 |
-
'04' => 'Bacau',
|
3354 |
-
'05' => 'Bihor',
|
3355 |
-
'06' => 'Bistrita-Nasaud',
|
3356 |
-
'07' => 'Botosani',
|
3357 |
-
'08' => 'Braila',
|
3358 |
-
'09' => 'Brasov',
|
3359 |
-
10 => 'Bucuresti',
|
3360 |
-
11 => 'Buzau',
|
3361 |
-
12 => 'Caras-Severin',
|
3362 |
-
13 => 'Cluj',
|
3363 |
-
14 => 'Constanta',
|
3364 |
-
15 => 'Covasna',
|
3365 |
-
16 => 'Dambovita',
|
3366 |
-
17 => 'Dolj',
|
3367 |
-
18 => 'Galati',
|
3368 |
-
19 => 'Gorj',
|
3369 |
-
20 => 'Harghita',
|
3370 |
-
21 => 'Hunedoara',
|
3371 |
-
22 => 'Ialomita',
|
3372 |
-
23 => 'Iasi',
|
3373 |
-
25 => 'Maramures',
|
3374 |
-
26 => 'Mehedinti',
|
3375 |
-
27 => 'Mures',
|
3376 |
-
28 => 'Neamt',
|
3377 |
-
29 => 'Olt',
|
3378 |
-
30 => 'Prahova',
|
3379 |
-
31 => 'Salaj',
|
3380 |
-
32 => 'Satu Mare',
|
3381 |
-
33 => 'Sibiu',
|
3382 |
-
34 => 'Suceava',
|
3383 |
-
35 => 'Teleorman',
|
3384 |
-
36 => 'Timis',
|
3385 |
-
37 => 'Tulcea',
|
3386 |
-
38 => 'Vaslui',
|
3387 |
-
39 => 'Valcea',
|
3388 |
-
40 => 'Vrancea',
|
3389 |
-
41 => 'Calarasi',
|
3390 |
-
42 => 'Giurgiu',
|
3391 |
-
43 => 'Ilfov',
|
3392 |
-
),
|
3393 |
-
'RS' =>
|
3394 |
-
array (
|
3395 |
-
'01' => 'Kosovo',
|
3396 |
-
'02' => 'Vojvodina',
|
3397 |
-
),
|
3398 |
-
'RU' =>
|
3399 |
-
array (
|
3400 |
-
'01' => 'Adygeya',
|
3401 |
-
'02' => 'Aginsky Buryatsky AO',
|
3402 |
-
'03' => 'Gorno-Altay',
|
3403 |
-
'04' => 'Altaisky krai',
|
3404 |
-
'05' => 'Amur',
|
3405 |
-
'06' => 'Arkhangel\'sk',
|
3406 |
-
'07' => 'Astrakhan\'',
|
3407 |
-
'08' => 'Bashkortostan',
|
3408 |
-
'09' => 'Belgorod',
|
3409 |
-
10 => 'Bryansk',
|
3410 |
-
11 => 'Buryat',
|
3411 |
-
12 => 'Chechnya',
|
3412 |
-
13 => 'Chelyabinsk',
|
3413 |
-
14 => 'Chita',
|
3414 |
-
15 => 'Chukot',
|
3415 |
-
16 => 'Chuvashia',
|
3416 |
-
17 => 'Dagestan',
|
3417 |
-
18 => 'Evenk',
|
3418 |
-
19 => 'Ingush',
|
3419 |
-
20 => 'Irkutsk',
|
3420 |
-
21 => 'Ivanovo',
|
3421 |
-
22 => 'Kabardin-Balkar',
|
3422 |
-
23 => 'Kaliningrad',
|
3423 |
-
24 => 'Kalmyk',
|
3424 |
-
25 => 'Kaluga',
|
3425 |
-
26 => 'Kamchatka',
|
3426 |
-
27 => 'Karachay-Cherkess',
|
3427 |
-
28 => 'Karelia',
|
3428 |
-
29 => 'Kemerovo',
|
3429 |
-
30 => 'Khabarovsk',
|
3430 |
-
31 => 'Khakass',
|
3431 |
-
32 => 'Khanty-Mansiy',
|
3432 |
-
33 => 'Kirov',
|
3433 |
-
34 => 'Komi',
|
3434 |
-
36 => 'Koryak',
|
3435 |
-
37 => 'Kostroma',
|
3436 |
-
38 => 'Krasnodar',
|
3437 |
-
39 => 'Krasnoyarsk',
|
3438 |
-
40 => 'Kurgan',
|
3439 |
-
41 => 'Kursk',
|
3440 |
-
42 => 'Leningrad',
|
3441 |
-
43 => 'Lipetsk',
|
3442 |
-
44 => 'Magadan',
|
3443 |
-
45 => 'Mariy-El',
|
3444 |
-
46 => 'Mordovia',
|
3445 |
-
47 => 'Moskva',
|
3446 |
-
48 => 'Moscow City',
|
3447 |
-
49 => 'Murmansk',
|
3448 |
-
50 => 'Nenets',
|
3449 |
-
51 => 'Nizhegorod',
|
3450 |
-
52 => 'Novgorod',
|
3451 |
-
53 => 'Novosibirsk',
|
3452 |
-
54 => 'Omsk',
|
3453 |
-
55 => 'Orenburg',
|
3454 |
-
56 => 'Orel',
|
3455 |
-
57 => 'Penza',
|
3456 |
-
58 => 'Perm\'',
|
3457 |
-
59 => 'Primor\'ye',
|
3458 |
-
60 => 'Pskov',
|
3459 |
-
61 => 'Rostov',
|
3460 |
-
62 => 'Ryazan\'',
|
3461 |
-
63 => 'Sakha',
|
3462 |
-
64 => 'Sakhalin',
|
3463 |
-
65 => 'Samara',
|
3464 |
-
66 => 'Saint Petersburg City',
|
3465 |
-
67 => 'Saratov',
|
3466 |
-
68 => 'North Ossetia',
|
3467 |
-
69 => 'Smolensk',
|
3468 |
-
70 => 'Stavropol\'',
|
3469 |
-
71 => 'Sverdlovsk',
|
3470 |
-
72 => 'Tambovskaya oblast',
|
3471 |
-
73 => 'Tatarstan',
|
3472 |
-
74 => 'Taymyr',
|
3473 |
-
75 => 'Tomsk',
|
3474 |
-
76 => 'Tula',
|
3475 |
-
77 => 'Tver\'',
|
3476 |
-
78 => 'Tyumen\'',
|
3477 |
-
79 => 'Tuva',
|
3478 |
-
80 => 'Udmurt',
|
3479 |
-
81 => 'Ul\'yanovsk',
|
3480 |
-
83 => 'Vladimir',
|
3481 |
-
84 => 'Volgograd',
|
3482 |
-
85 => 'Vologda',
|
3483 |
-
86 => 'Voronezh',
|
3484 |
-
87 => 'Yamal-Nenets',
|
3485 |
-
88 => 'Yaroslavl\'',
|
3486 |
-
89 => 'Yevrey',
|
3487 |
-
90 => 'Permskiy Kray',
|
3488 |
-
91 => 'Krasnoyarskiy Kray',
|
3489 |
-
92 => 'Kamchatskiy Kray',
|
3490 |
-
93 => 'Zabaykal\'skiy Kray',
|
3491 |
-
),
|
3492 |
-
'RW' =>
|
3493 |
-
array (
|
3494 |
-
'01' => 'Butare',
|
3495 |
-
'06' => 'Gitarama',
|
3496 |
-
'07' => 'Kibungo',
|
3497 |
-
12 => 'Kigali',
|
3498 |
-
11 => 'Est',
|
3499 |
-
13 => 'Nord',
|
3500 |
-
14 => 'Ouest',
|
3501 |
-
15 => 'Sud',
|
3502 |
-
),
|
3503 |
-
'SA' =>
|
3504 |
-
array (
|
3505 |
-
'02' => 'Al Bahah',
|
3506 |
-
'05' => 'Al Madinah',
|
3507 |
-
'06' => 'Ash Sharqiyah',
|
3508 |
-
'08' => 'Al Qasim',
|
3509 |
-
10 => 'Ar Riyad',
|
3510 |
-
11 => 'Asir Province',
|
3511 |
-
13 => 'Ha\'il',
|
3512 |
-
14 => 'Makkah',
|
3513 |
-
15 => 'Al Hudud ash Shamaliyah',
|
3514 |
-
16 => 'Najran',
|
3515 |
-
17 => 'Jizan',
|
3516 |
-
19 => 'Tabuk',
|
3517 |
-
20 => 'Al Jawf',
|
3518 |
-
),
|
3519 |
-
'SB' =>
|
3520 |
-
array (
|
3521 |
-
'03' => 'Malaita',
|
3522 |
-
'06' => 'Guadalcanal',
|
3523 |
-
'07' => 'Isabel',
|
3524 |
-
'08' => 'Makira',
|
3525 |
-
'09' => 'Temotu',
|
3526 |
-
10 => 'Central',
|
3527 |
-
11 => 'Western',
|
3528 |
-
12 => 'Choiseul',
|
3529 |
-
13 => 'Rennell and Bellona',
|
3530 |
-
),
|
3531 |
-
'SC' =>
|
3532 |
-
array (
|
3533 |
-
'01' => 'Anse aux Pins',
|
3534 |
-
'02' => 'Anse Boileau',
|
3535 |
-
'03' => 'Anse Etoile',
|
3536 |
-
'04' => 'Anse Louis',
|
3537 |
-
'05' => 'Anse Royale',
|
3538 |
-
'06' => 'Baie Lazare',
|
3539 |
-
'07' => 'Baie Sainte Anne',
|
3540 |
-
'08' => 'Beau Vallon',
|
3541 |
-
'09' => 'Bel Air',
|
3542 |
-
10 => 'Bel Ombre',
|
3543 |
-
11 => 'Cascade',
|
3544 |
-
12 => 'Glacis',
|
3545 |
-
14 => 'Grand\' Anse',
|
3546 |
-
15 => 'La Digue',
|
3547 |
-
16 => 'La Riviere Anglaise',
|
3548 |
-
17 => 'Mont Buxton',
|
3549 |
-
18 => 'Mont Fleuri',
|
3550 |
-
19 => 'Plaisance',
|
3551 |
-
20 => 'Pointe La Rue',
|
3552 |
-
21 => 'Port Glaud',
|
3553 |
-
22 => 'Saint Louis',
|
3554 |
-
23 => 'Takamaka',
|
3555 |
-
),
|
3556 |
-
'SD' =>
|
3557 |
-
array (
|
3558 |
-
27 => 'Al Wusta',
|
3559 |
-
28 => 'Al Istiwa\'iyah',
|
3560 |
-
29 => 'Al Khartum',
|
3561 |
-
30 => 'Ash Shamaliyah',
|
3562 |
-
31 => 'Ash Sharqiyah',
|
3563 |
-
32 => 'Bahr al Ghazal',
|
3564 |
-
33 => 'Darfur',
|
3565 |
-
34 => 'Kurdufan',
|
3566 |
-
35 => 'Upper Nile',
|
3567 |
-
40 => 'Al Wahadah State',
|
3568 |
-
44 => 'Central Equatoria State',
|
3569 |
-
49 => 'Southern Darfur',
|
3570 |
-
50 => 'Southern Kordofan',
|
3571 |
-
52 => 'Kassala',
|
3572 |
-
53 => 'River Nile',
|
3573 |
-
55 => 'Northern Darfur',
|
3574 |
-
),
|
3575 |
-
'SE' =>
|
3576 |
-
array (
|
3577 |
-
'02' => 'Blekinge Lan',
|
3578 |
-
'03' => 'Gavleborgs Lan',
|
3579 |
-
'05' => 'Gotlands Lan',
|
3580 |
-
'06' => 'Hallands Lan',
|
3581 |
-
'07' => 'Jamtlands Lan',
|
3582 |
-
'08' => 'Jonkopings Lan',
|
3583 |
-
'09' => 'Kalmar Lan',
|
3584 |
-
10 => 'Dalarnas Lan',
|
3585 |
-
12 => 'Kronobergs Lan',
|
3586 |
-
14 => 'Norrbottens Lan',
|
3587 |
-
15 => 'Orebro Lan',
|
3588 |
-
16 => 'Ostergotlands Lan',
|
3589 |
-
18 => 'Sodermanlands Lan',
|
3590 |
-
21 => 'Uppsala Lan',
|
3591 |
-
22 => 'Varmlands Lan',
|
3592 |
-
23 => 'Vasterbottens Lan',
|
3593 |
-
24 => 'Vasternorrlands Lan',
|
3594 |
-
25 => 'Vastmanlands Lan',
|
3595 |
-
26 => 'Stockholms Lan',
|
3596 |
-
27 => 'Skane Lan',
|
3597 |
-
28 => 'Vastra Gotaland',
|
3598 |
-
),
|
3599 |
-
'SH' =>
|
3600 |
-
array (
|
3601 |
-
'01' => 'Ascension',
|
3602 |
-
'02' => 'Saint Helena',
|
3603 |
-
'03' => 'Tristan da Cunha',
|
3604 |
-
),
|
3605 |
-
'SI' =>
|
3606 |
-
array (
|
3607 |
-
'01' => 'Ajdovscina Commune',
|
3608 |
-
'02' => 'Beltinci Commune',
|
3609 |
-
'03' => 'Bled Commune',
|
3610 |
-
'04' => 'Bohinj Commune',
|
3611 |
-
'05' => 'Borovnica Commune',
|
3612 |
-
'06' => 'Bovec Commune',
|
3613 |
-
'07' => 'Brda Commune',
|
3614 |
-
'08' => 'Brezice Commune',
|
3615 |
-
'09' => 'Brezovica Commune',
|
3616 |
-
11 => 'Celje Commune',
|
3617 |
-
12 => 'Cerklje na Gorenjskem Commune',
|
3618 |
-
13 => 'Cerknica Commune',
|
3619 |
-
14 => 'Cerkno Commune',
|
3620 |
-
15 => 'Crensovci Commune',
|
3621 |
-
16 => 'Crna na Koroskem Commune',
|
3622 |
-
17 => 'Crnomelj Commune',
|
3623 |
-
19 => 'Divaca Commune',
|
3624 |
-
20 => 'Dobrepolje Commune',
|
3625 |
-
22 => 'Dol pri Ljubljani Commune',
|
3626 |
-
24 => 'Dornava Commune',
|
3627 |
-
25 => 'Dravograd Commune',
|
3628 |
-
26 => 'Duplek Commune',
|
3629 |
-
27 => 'Gorenja vas-Poljane Commune',
|
3630 |
-
28 => 'Gorisnica Commune',
|
3631 |
-
29 => 'Gornja Radgona Commune',
|
3632 |
-
30 => 'Gornji Grad Commune',
|
3633 |
-
31 => 'Gornji Petrovci Commune',
|
3634 |
-
32 => 'Grosuplje Commune',
|
3635 |
-
34 => 'Hrastnik Commune',
|
3636 |
-
35 => 'Hrpelje-Kozina Commune',
|
3637 |
-
36 => 'Idrija Commune',
|
3638 |
-
37 => 'Ig Commune',
|
3639 |
-
38 => 'Ilirska Bistrica Commune',
|
3640 |
-
39 => 'Ivancna Gorica Commune',
|
3641 |
-
40 => 'Izola-Isola Commune',
|
3642 |
-
42 => 'Jursinci Commune',
|
3643 |
-
44 => 'Kanal Commune',
|
3644 |
-
45 => 'Kidricevo Commune',
|
3645 |
-
46 => 'Kobarid Commune',
|
3646 |
-
47 => 'Kobilje Commune',
|
3647 |
-
49 => 'Komen Commune',
|
3648 |
-
50 => 'Koper-Capodistria Urban Commune',
|
3649 |
-
51 => 'Kozje Commune',
|
3650 |
-
52 => 'Kranj Commune',
|
3651 |
-
53 => 'Kranjska Gora Commune',
|
3652 |
-
54 => 'Krsko Commune',
|
3653 |
-
55 => 'Kungota Commune',
|
3654 |
-
57 => 'Lasko Commune',
|
3655 |
-
61 => 'Ljubljana Urban Commune',
|
3656 |
-
62 => 'Ljubno Commune',
|
3657 |
-
64 => 'Logatec Commune',
|
3658 |
-
66 => 'Loski Potok Commune',
|
3659 |
-
68 => 'Lukovica Commune',
|
3660 |
-
71 => 'Medvode Commune',
|
3661 |
-
72 => 'Menges Commune',
|
3662 |
-
73 => 'Metlika Commune',
|
3663 |
-
74 => 'Mezica Commune',
|
3664 |
-
76 => 'Mislinja Commune',
|
3665 |
-
77 => 'Moravce Commune',
|
3666 |
-
78 => 'Moravske Toplice Commune',
|
3667 |
-
79 => 'Mozirje Commune',
|
3668 |
-
80 => 'Murska Sobota Urban Commune',
|
3669 |
-
81 => 'Muta Commune',
|
3670 |
-
82 => 'Naklo Commune',
|
3671 |
-
83 => 'Nazarje Commune',
|
3672 |
-
84 => 'Nova Gorica Urban Commune',
|
3673 |
-
86 => 'Odranci Commune',
|
3674 |
-
87 => 'Ormoz Commune',
|
3675 |
-
88 => 'Osilnica Commune',
|
3676 |
-
89 => 'Pesnica Commune',
|
3677 |
-
91 => 'Pivka Commune',
|
3678 |
-
92 => 'Podcetrtek Commune',
|
3679 |
-
94 => 'Postojna Commune',
|
3680 |
-
97 => 'Puconci Commune',
|
3681 |
-
98 => 'Race-Fram Commune',
|
3682 |
-
99 => 'Radece Commune',
|
3683 |
-
'A1' => 'Radenci Commune',
|
3684 |
-
'A2' => 'Radlje ob Dravi Commune',
|
3685 |
-
'A3' => 'Radovljica Commune',
|
3686 |
-
'A6' => 'Rogasovci Commune',
|
3687 |
-
'A7' => 'Rogaska Slatina Commune',
|
3688 |
-
'A8' => 'Rogatec Commune',
|
3689 |
-
'B1' => 'Semic Commune',
|
3690 |
-
'B2' => 'Sencur Commune',
|
3691 |
-
'B3' => 'Sentilj Commune',
|
3692 |
-
'B4' => 'Sentjernej Commune',
|
3693 |
-
'B6' => 'Sevnica Commune',
|
3694 |
-
'B7' => 'Sezana Commune',
|
3695 |
-
'B8' => 'Skocjan Commune',
|
3696 |
-
'B9' => 'Skofja Loka Commune',
|
3697 |
-
'C1' => 'Skofljica Commune',
|
3698 |
-
'C2' => 'Slovenj Gradec Urban Commune',
|
3699 |
-
'C4' => 'Slovenske Konjice Commune',
|
3700 |
-
'C5' => 'Smarje pri Jelsah Commune',
|
3701 |
-
'C6' => 'Smartno ob Paki Commune',
|
3702 |
-
'C7' => 'Sostanj Commune',
|
3703 |
-
'C8' => 'Starse Commune',
|
3704 |
-
'C9' => 'Store Commune',
|
3705 |
-
'D1' => 'Sveti Jurij Commune',
|
3706 |
-
'D2' => 'Tolmin Commune',
|
3707 |
-
'D3' => 'Trbovlje Commune',
|
3708 |
-
'D4' => 'Trebnje Commune',
|
3709 |
-
'D5' => 'Trzic Commune',
|
3710 |
-
'D6' => 'Turnisce Commune',
|
3711 |
-
'D7' => 'Velenje Urban Commune',
|
3712 |
-
'D8' => 'Velike Lasce Commune',
|
3713 |
-
'E1' => 'Vipava Commune',
|
3714 |
-
'E2' => 'Vitanje Commune',
|
3715 |
-
'E3' => 'Vodice Commune',
|
3716 |
-
'E5' => 'Vrhnika Commune',
|
3717 |
-
'E6' => 'Vuzenica Commune',
|
3718 |
-
'E7' => 'Zagorje ob Savi Commune',
|
3719 |
-
'E9' => 'Zavrc Commune',
|
3720 |
-
'F1' => 'Zelezniki Commune',
|
3721 |
-
'F2' => 'Ziri Commune',
|
3722 |
-
'F3' => 'Zrece Commune',
|
3723 |
-
'F4' => 'Benedikt Commune',
|
3724 |
-
'F5' => 'Bistrica ob Sotli Commune',
|
3725 |
-
'F6' => 'Bloke Commune',
|
3726 |
-
'F7' => 'Braslovce Commune',
|
3727 |
-
'F8' => 'Cankova Commune',
|
3728 |
-
'F9' => 'Cerkvenjak Commune',
|
3729 |
-
'G1' => 'Destrnik Commune',
|
3730 |
-
'G2' => 'Dobje Commune',
|
3731 |
-
'G3' => 'Dobrna Commune',
|
3732 |
-
'G4' => 'Dobrova-Horjul-Polhov Gradec Commune',
|
3733 |
-
'G5' => 'Dobrovnik-Dobronak Commune',
|
3734 |
-
'G6' => 'Dolenjske Toplice Commune',
|
3735 |
-
'G7' => 'Domzale Commune',
|
3736 |
-
'G8' => 'Grad Commune',
|
3737 |
-
'G9' => 'Hajdina Commune',
|
3738 |
-
'H1' => 'Hoce-Slivnica Commune',
|
3739 |
-
'H2' => 'Hodos-Hodos Commune',
|
3740 |
-
'H3' => 'Horjul Commune',
|
3741 |
-
'H4' => 'Jesenice Commune',
|
3742 |
-
'H5' => 'Jezersko Commune',
|
3743 |
-
'H6' => 'Kamnik Commune',
|
3744 |
-
'H7' => 'Kocevje Commune',
|
3745 |
-
'H8' => 'Komenda Commune',
|
3746 |
-
'H9' => 'Kostel Commune',
|
3747 |
-
'I1' => 'Krizevci Commune',
|
3748 |
-
'I2' => 'Kuzma Commune',
|
3749 |
-
'I3' => 'Lenart Commune',
|
3750 |
-
'I4' => 'Lendava-Lendva Commune',
|
3751 |
-
'I5' => 'Litija Commune',
|
3752 |
-
'I6' => 'Ljutomer Commune',
|
3753 |
-
'I7' => 'Loska Dolina Commune',
|
3754 |
-
'I8' => 'Lovrenc na Pohorju Commune',
|
3755 |
-
'I9' => 'Luce Commune',
|
3756 |
-
'J1' => 'Majsperk Commune',
|
3757 |
-
'J2' => 'Maribor Commune',
|
3758 |
-
'J3' => 'Markovci Commune',
|
3759 |
-
'J4' => 'Miklavz na Dravskem polju Commune',
|
3760 |
-
'J5' => 'Miren-Kostanjevica Commune',
|
3761 |
-
'J6' => 'Mirna Pec Commune',
|
3762 |
-
'J7' => 'Novo mesto Urban Commune',
|
3763 |
-
'J8' => 'Oplotnica Commune',
|
3764 |
-
'J9' => 'Piran-Pirano Commune',
|
3765 |
-
'K1' => 'Podlehnik Commune',
|
3766 |
-
'K2' => 'Podvelka Commune',
|
3767 |
-
'K3' => 'Polzela Commune',
|
3768 |
-
'K4' => 'Prebold Commune',
|
3769 |
-
'K5' => 'Preddvor Commune',
|
3770 |
-
'K6' => 'Prevalje Commune',
|
3771 |
-
'K7' => 'Ptuj Urban Commune',
|
3772 |
-
'K8' => 'Ravne na Koroskem Commune',
|
3773 |
-
'K9' => 'Razkrizje Commune',
|
3774 |
-
'L1' => 'Ribnica Commune',
|
3775 |
-
'L2' => 'Ribnica na Pohorju Commune',
|
3776 |
-
'L3' => 'Ruse Commune',
|
3777 |
-
'L4' => 'Salovci Commune',
|
3778 |
-
'L5' => 'Selnica ob Dravi Commune',
|
3779 |
-
'L6' => 'Sempeter-Vrtojba Commune',
|
3780 |
-
'L7' => 'Sentjur pri Celju Commune',
|
3781 |
-
'L8' => 'Slovenska Bistrica Commune',
|
3782 |
-
'L9' => 'Smartno pri Litiji Commune',
|
3783 |
-
'M1' => 'Sodrazica Commune',
|
3784 |
-
'M2' => 'Solcava Commune',
|
3785 |
-
'M3' => 'Sveta Ana Commune',
|
3786 |
-
'M4' => 'Sveti Andraz v Slovenskih goricah Commune',
|
3787 |
-
'M5' => 'Tabor Commune',
|
3788 |
-
'M6' => 'Tisina Commune',
|
3789 |
-
'M7' => 'Trnovska vas Commune',
|
3790 |
-
'M8' => 'Trzin Commune',
|
3791 |
-
'M9' => 'Velika Polana Commune',
|
3792 |
-
'N1' => 'Verzej Commune',
|
3793 |
-
'N2' => 'Videm Commune',
|
3794 |
-
'N3' => 'Vojnik Commune',
|
3795 |
-
'N4' => 'Vransko Commune',
|
3796 |
-
'N5' => 'Zalec Commune',
|
3797 |
-
'N6' => 'Zetale Commune',
|
3798 |
-
'N7' => 'Zirovnica Commune',
|
3799 |
-
'N8' => 'Zuzemberk Commune',
|
3800 |
-
'N9' => 'Apace Commune',
|
3801 |
-
'O1' => 'Cirkulane Commune',
|
3802 |
-
'O2' => 'Gorje',
|
3803 |
-
'O3' => 'Kostanjevica na Krki',
|
3804 |
-
'O4' => 'Log-Dragomer',
|
3805 |
-
'O5' => 'Makole',
|
3806 |
-
'O6' => 'Mirna',
|
3807 |
-
'O7' => 'Mokronog-Trebelno',
|
3808 |
-
'O8' => 'Poljcane',
|
3809 |
-
'O9' => 'Recica ob Savinji',
|
3810 |
-
'P1' => 'Rence-Vogrsko',
|
3811 |
-
'P2' => 'Sentrupert',
|
3812 |
-
'P3' => 'Smarjesk Toplice',
|
3813 |
-
'P4' => 'Sredisce ob Dravi',
|
3814 |
-
'P5' => 'Straza',
|
3815 |
-
),
|
3816 |
-
'SK' =>
|
3817 |
-
array (
|
3818 |
-
'01' => 'Banska Bystrica',
|
3819 |
-
'02' => 'Bratislava',
|
3820 |
-
'03' => 'Kosice',
|
3821 |
-
'04' => 'Nitra',
|
3822 |
-
'05' => 'Presov',
|
3823 |
-
'06' => 'Trencin',
|
3824 |
-
'07' => 'Trnava',
|
3825 |
-
'08' => 'Zilina',
|
3826 |
-
),
|
3827 |
-
'SL' =>
|
3828 |
-
array (
|
3829 |
-
'01' => 'Eastern',
|
3830 |
-
'02' => 'Northern',
|
3831 |
-
'03' => 'Southern',
|
3832 |
-
'04' => 'Western Area',
|
3833 |
-
),
|
3834 |
-
'SM' =>
|
3835 |
-
array (
|
3836 |
-
'01' => 'Acquaviva',
|
3837 |
-
'02' => 'Chiesanuova',
|
3838 |
-
'03' => 'Domagnano',
|
3839 |
-
'04' => 'Faetano',
|
3840 |
-
'05' => 'Fiorentino',
|
3841 |
-
'06' => 'Borgo Maggiore',
|
3842 |
-
'07' => 'San Marino',
|
3843 |
-
'08' => 'Monte Giardino',
|
3844 |
-
'09' => 'Serravalle',
|
3845 |
-
),
|
3846 |
-
'SN' =>
|
3847 |
-
array (
|
3848 |
-
'01' => 'Dakar',
|
3849 |
-
'03' => 'Diourbel',
|
3850 |
-
'05' => 'Tambacounda',
|
3851 |
-
'07' => 'Thies',
|
3852 |
-
'09' => 'Fatick',
|
3853 |
-
10 => 'Kaolack',
|
3854 |
-
11 => 'Kolda',
|
3855 |
-
12 => 'Ziguinchor',
|
3856 |
-
13 => 'Louga',
|
3857 |
-
14 => 'Saint-Louis',
|
3858 |
-
15 => 'Matam',
|
3859 |
-
),
|
3860 |
-
'SO' =>
|
3861 |
-
array (
|
3862 |
-
'01' => 'Bakool',
|
3863 |
-
'02' => 'Banaadir',
|
3864 |
-
'03' => 'Bari',
|
3865 |
-
'04' => 'Bay',
|
3866 |
-
'05' => 'Galguduud',
|
3867 |
-
'06' => 'Gedo',
|
3868 |
-
'07' => 'Hiiraan',
|
3869 |
-
'08' => 'Jubbada Dhexe',
|
3870 |
-
'09' => 'Jubbada Hoose',
|
3871 |
-
10 => 'Mudug',
|
3872 |
-
18 => 'Nugaal',
|
3873 |
-
12 => 'Sanaag',
|
3874 |
-
13 => 'Shabeellaha Dhexe',
|
3875 |
-
14 => 'Shabeellaha Hoose',
|
3876 |
-
20 => 'Woqooyi Galbeed',
|
3877 |
-
19 => 'Togdheer',
|
3878 |
-
21 => 'Awdal',
|
3879 |
-
22 => 'Sool',
|
3880 |
-
),
|
3881 |
-
'SR' =>
|
3882 |
-
array (
|
3883 |
-
10 => 'Brokopondo',
|
3884 |
-
11 => 'Commewijne',
|
3885 |
-
12 => 'Coronie',
|
3886 |
-
13 => 'Marowijne',
|
3887 |
-
14 => 'Nickerie',
|
3888 |
-
15 => 'Para',
|
3889 |
-
16 => 'Paramaribo',
|
3890 |
-
17 => 'Saramacca',
|
3891 |
-
18 => 'Sipaliwini',
|
3892 |
-
19 => 'Wanica',
|
3893 |
-
),
|
3894 |
-
'SS' =>
|
3895 |
-
array (
|
3896 |
-
'01' => 'Central Equatoria',
|
3897 |
-
'02' => 'Eastern Equatoria',
|
3898 |
-
'03' => 'Jonglei',
|
3899 |
-
'04' => 'Lakes',
|
3900 |
-
'05' => 'Northern Bahr el Ghazal',
|
3901 |
-
'06' => 'Unity',
|
3902 |
-
'07' => 'Upper Nile',
|
3903 |
-
'08' => 'Warrap',
|
3904 |
-
'09' => 'Western Bahr el Ghazal',
|
3905 |
-
10 => 'Western Equatoria',
|
3906 |
-
),
|
3907 |
-
'ST' =>
|
3908 |
-
array (
|
3909 |
-
'01' => 'Principe',
|
3910 |
-
'02' => 'Sao Tome',
|
3911 |
-
),
|
3912 |
-
'SV' =>
|
3913 |
-
array (
|
3914 |
-
'01' => 'Ahuachapan',
|
3915 |
-
'02' => 'Cabanas',
|
3916 |
-
'03' => 'Chalatenango',
|
3917 |
-
'04' => 'Cuscatlan',
|
3918 |
-
'05' => 'La Libertad',
|
3919 |
-
'06' => 'La Paz',
|
3920 |
-
'07' => 'La Union',
|
3921 |
-
'08' => 'Morazan',
|
3922 |
-
'09' => 'San Miguel',
|
3923 |
-
10 => 'San Salvador',
|
3924 |
-
11 => 'Santa Ana',
|
3925 |
-
12 => 'San Vicente',
|
3926 |
-
13 => 'Sonsonate',
|
3927 |
-
14 => 'Usulutan',
|
3928 |
-
),
|
3929 |
-
'SY' =>
|
3930 |
-
array (
|
3931 |
-
'01' => 'Al Hasakah',
|
3932 |
-
'02' => 'Al Ladhiqiyah',
|
3933 |
-
'03' => 'Al Qunaytirah',
|
3934 |
-
'04' => 'Ar Raqqah',
|
3935 |
-
'05' => 'As Suwayda\'',
|
3936 |
-
'06' => 'Dar',
|
3937 |
-
'07' => 'Dayr az Zawr',
|
3938 |
-
'08' => 'Rif Dimashq',
|
3939 |
-
'09' => 'Halab',
|
3940 |
-
10 => 'Hamah',
|
3941 |
-
11 => 'Hims',
|
3942 |
-
12 => 'Idlib',
|
3943 |
-
13 => 'Dimashq',
|
3944 |
-
14 => 'Tartus',
|
3945 |
-
),
|
3946 |
-
'SZ' =>
|
3947 |
-
array (
|
3948 |
-
'01' => 'Hhohho',
|
3949 |
-
'02' => 'Lubombo',
|
3950 |
-
'03' => 'Manzini',
|
3951 |
-
'04' => 'Shiselweni',
|
3952 |
-
'05' => 'Praslin',
|
3953 |
-
),
|
3954 |
-
'TD' =>
|
3955 |
-
array (
|
3956 |
-
'01' => 'Batha',
|
3957 |
-
'02' => 'Biltine',
|
3958 |
-
'03' => 'Borkou-Ennedi-Tibesti',
|
3959 |
-
'04' => 'Chari-Baguirmi',
|
3960 |
-
'05' => 'Guera',
|
3961 |
-
'06' => 'Kanem',
|
3962 |
-
'07' => 'Lac',
|
3963 |
-
'08' => 'Logone Occidental',
|
3964 |
-
'09' => 'Logone Oriental',
|
3965 |
-
10 => 'Mayo-Kebbi',
|
3966 |
-
11 => 'Moyen-Chari',
|
3967 |
-
12 => 'Ouaddai',
|
3968 |
-
13 => 'Salamat',
|
3969 |
-
14 => 'Tandjile',
|
3970 |
-
),
|
3971 |
-
'TG' =>
|
3972 |
-
array (
|
3973 |
-
22 => 'Centrale',
|
3974 |
-
23 => 'Kara',
|
3975 |
-
24 => 'Maritime',
|
3976 |
-
25 => 'Plateaux',
|
3977 |
-
26 => 'Savanes',
|
3978 |
-
),
|
3979 |
-
'TH' =>
|
3980 |
-
array (
|
3981 |
-
'01' => 'Mae Hong Son',
|
3982 |
-
'02' => 'Chiang Mai',
|
3983 |
-
'03' => 'Chiang Rai',
|
3984 |
-
'04' => 'Nan',
|
3985 |
-
'05' => 'Lamphun',
|
3986 |
-
'06' => 'Lampang',
|
3987 |
-
'07' => 'Phrae',
|
3988 |
-
'08' => 'Tak',
|
3989 |
-
'09' => 'Sukhothai',
|
3990 |
-
10 => 'Uttaradit',
|
3991 |
-
11 => 'Kamphaeng Phet',
|
3992 |
-
12 => 'Phitsanulok',
|
3993 |
-
13 => 'Phichit',
|
3994 |
-
14 => 'Phetchabun',
|
3995 |
-
15 => 'Uthai Thani',
|
3996 |
-
16 => 'Nakhon Sawan',
|
3997 |
-
17 => 'Nong Khai',
|
3998 |
-
18 => 'Loei',
|
3999 |
-
20 => 'Sakon Nakhon',
|
4000 |
-
73 => 'Nakhon Phanom',
|
4001 |
-
22 => 'Khon Kaen',
|
4002 |
-
23 => 'Kalasin',
|
4003 |
-
24 => 'Maha Sarakham',
|
4004 |
-
25 => 'Roi Et',
|
4005 |
-
26 => 'Chaiyaphum',
|
4006 |
-
27 => 'Nakhon Ratchasima',
|
4007 |
-
28 => 'Buriram',
|
4008 |
-
29 => 'Surin',
|
4009 |
-
30 => 'Sisaket',
|
4010 |
-
31 => 'Narathiwat',
|
4011 |
-
32 => 'Chai Nat',
|
4012 |
-
33 => 'Sing Buri',
|
4013 |
-
34 => 'Lop Buri',
|
4014 |
-
35 => 'Ang Thong',
|
4015 |
-
36 => 'Phra Nakhon Si Ayutthaya',
|
4016 |
-
37 => 'Saraburi',
|
4017 |
-
38 => 'Nonthaburi',
|
4018 |
-
39 => 'Pathum Thani',
|
4019 |
-
40 => 'Krung Thep',
|
4020 |
-
41 => 'Phayao',
|
4021 |
-
42 => 'Samut Prakan',
|
4022 |
-
43 => 'Nakhon Nayok',
|
4023 |
-
44 => 'Chachoengsao',
|
4024 |
-
74 => 'Prachin Buri',
|
4025 |
-
46 => 'Chon Buri',
|
4026 |
-
47 => 'Rayong',
|
4027 |
-
48 => 'Chanthaburi',
|
4028 |
-
49 => 'Trat',
|
4029 |
-
50 => 'Kanchanaburi',
|
4030 |
-
51 => 'Suphan Buri',
|
4031 |
-
52 => 'Ratchaburi',
|
4032 |
-
53 => 'Nakhon Pathom',
|
4033 |
-
54 => 'Samut Songkhram',
|
4034 |
-
55 => 'Samut Sakhon',
|
4035 |
-
56 => 'Phetchaburi',
|
4036 |
-
57 => 'Prachuap Khiri Khan',
|
4037 |
-
58 => 'Chumphon',
|
4038 |
-
59 => 'Ranong',
|
4039 |
-
60 => 'Surat Thani',
|
4040 |
-
61 => 'Phangnga',
|
4041 |
-
62 => 'Phuket',
|
4042 |
-
63 => 'Krabi',
|
4043 |
-
64 => 'Nakhon Si Thammarat',
|
4044 |
-
65 => 'Trang',
|
4045 |
-
66 => 'Phatthalung',
|
4046 |
-
67 => 'Satun',
|
4047 |
-
68 => 'Songkhla',
|
4048 |
-
69 => 'Pattani',
|
4049 |
-
70 => 'Yala',
|
4050 |
-
75 => 'Ubon Ratchathani',
|
4051 |
-
72 => 'Yasothon',
|
4052 |
-
76 => 'Udon Thani',
|
4053 |
-
77 => 'Amnat Charoen',
|
4054 |
-
78 => 'Mukdahan',
|
4055 |
-
79 => 'Nong Bua Lamphu',
|
4056 |
-
80 => 'Sa Kaeo',
|
4057 |
-
81 => 'Bueng Kan',
|
4058 |
-
),
|
4059 |
-
'TJ' =>
|
4060 |
-
array (
|
4061 |
-
'01' => 'Kuhistoni Badakhshon',
|
4062 |
-
'02' => 'Khatlon',
|
4063 |
-
'03' => 'Sughd',
|
4064 |
-
'04' => 'Dushanbe',
|
4065 |
-
'05' => 'Nohiyahoi Tobei Jumhuri',
|
4066 |
-
),
|
4067 |
-
'TL' =>
|
4068 |
-
array (
|
4069 |
-
'06' => 'Dili',
|
4070 |
-
),
|
4071 |
-
'TM' =>
|
4072 |
-
array (
|
4073 |
-
'01' => 'Ahal',
|
4074 |
-
'02' => 'Balkan',
|
4075 |
-
'03' => 'Dashoguz',
|
4076 |
-
'04' => 'Lebap',
|
4077 |
-
'05' => 'Mary',
|
4078 |
-
),
|
4079 |
-
'TN' =>
|
4080 |
-
array (
|
4081 |
-
'02' => 'Kasserine',
|
4082 |
-
'03' => 'Kairouan',
|
4083 |
-
'06' => 'Jendouba',
|
4084 |
-
10 => 'Qafsah',
|
4085 |
-
14 => 'El Kef',
|
4086 |
-
15 => 'Al Mahdia',
|
4087 |
-
16 => 'Al Munastir',
|
4088 |
-
17 => 'Bajah',
|
4089 |
-
18 => 'Bizerte',
|
4090 |
-
19 => 'Nabeul',
|
4091 |
-
22 => 'Siliana',
|
4092 |
-
23 => 'Sousse',
|
4093 |
-
27 => 'Ben Arous',
|
4094 |
-
28 => 'Madanin',
|
4095 |
-
29 => 'Gabes',
|
4096 |
-
31 => 'Kebili',
|
4097 |
-
32 => 'Sfax',
|
4098 |
-
33 => 'Sidi Bou Zid',
|
4099 |
-
34 => 'Tataouine',
|
4100 |
-
35 => 'Tozeur',
|
4101 |
-
36 => 'Tunis',
|
4102 |
-
37 => 'Zaghouan',
|
4103 |
-
38 => 'Aiana',
|
4104 |
-
39 => 'Manouba',
|
4105 |
-
),
|
4106 |
-
'TO' =>
|
4107 |
-
array (
|
4108 |
-
'01' => 'Ha',
|
4109 |
-
'02' => 'Tongatapu',
|
4110 |
-
'03' => 'Vava',
|
4111 |
-
),
|
4112 |
-
'TR' =>
|
4113 |
-
array (
|
4114 |
-
'02' => 'Adiyaman',
|
4115 |
-
'03' => 'Afyonkarahisar',
|
4116 |
-
'04' => 'Agri',
|
4117 |
-
'05' => 'Amasya',
|
4118 |
-
'07' => 'Antalya',
|
4119 |
-
'08' => 'Artvin',
|
4120 |
-
'09' => 'Aydin',
|
4121 |
-
10 => 'Balikesir',
|
4122 |
-
11 => 'Bilecik',
|
4123 |
-
12 => 'Bingol',
|
4124 |
-
13 => 'Bitlis',
|
4125 |
-
14 => 'Bolu',
|
4126 |
-
15 => 'Burdur',
|
4127 |
-
16 => 'Bursa',
|
4128 |
-
17 => 'Canakkale',
|
4129 |
-
19 => 'Corum',
|
4130 |
-
20 => 'Denizli',
|
4131 |
-
21 => 'Diyarbakir',
|
4132 |
-
22 => 'Edirne',
|
4133 |
-
23 => 'Elazig',
|
4134 |
-
24 => 'Erzincan',
|
4135 |
-
25 => 'Erzurum',
|
4136 |
-
26 => 'Eskisehir',
|
4137 |
-
28 => 'Giresun',
|
4138 |
-
31 => 'Hatay',
|
4139 |
-
32 => 'Mersin',
|
4140 |
-
33 => 'Isparta',
|
4141 |
-
34 => 'Istanbul',
|
4142 |
-
35 => 'Izmir',
|
4143 |
-
37 => 'Kastamonu',
|
4144 |
-
38 => 'Kayseri',
|
4145 |
-
39 => 'Kirklareli',
|
4146 |
-
40 => 'Kirsehir',
|
4147 |
-
41 => 'Kocaeli',
|
4148 |
-
43 => 'Kutahya',
|
4149 |
-
44 => 'Malatya',
|
4150 |
-
45 => 'Manisa',
|
4151 |
-
46 => 'Kahramanmaras',
|
4152 |
-
48 => 'Mugla',
|
4153 |
-
49 => 'Mus',
|
4154 |
-
50 => 'Nevsehir',
|
4155 |
-
52 => 'Ordu',
|
4156 |
-
53 => 'Rize',
|
4157 |
-
54 => 'Sakarya',
|
4158 |
-
55 => 'Samsun',
|
4159 |
-
57 => 'Sinop',
|
4160 |
-
58 => 'Sivas',
|
4161 |
-
59 => 'Tekirdag',
|
4162 |
-
60 => 'Tokat',
|
4163 |
-
61 => 'Trabzon',
|
4164 |
-
62 => 'Tunceli',
|
4165 |
-
63 => 'Sanliurfa',
|
4166 |
-
64 => 'Usak',
|
4167 |
-
65 => 'Van',
|
4168 |
-
66 => 'Yozgat',
|
4169 |
-
68 => 'Ankara',
|
4170 |
-
69 => 'Gumushane',
|
4171 |
-
70 => 'Hakkari',
|
4172 |
-
71 => 'Konya',
|
4173 |
-
72 => 'Mardin',
|
4174 |
-
73 => 'Nigde',
|
4175 |
-
74 => 'Siirt',
|
4176 |
-
75 => 'Aksaray',
|
4177 |
-
76 => 'Batman',
|
4178 |
-
77 => 'Bayburt',
|
4179 |
-
78 => 'Karaman',
|
4180 |
-
79 => 'Kirikkale',
|
4181 |
-
80 => 'Sirnak',
|
4182 |
-
81 => 'Adana',
|
4183 |
-
82 => 'Cankiri',
|
4184 |
-
83 => 'Gaziantep',
|
4185 |
-
84 => 'Kars',
|
4186 |
-
85 => 'Zonguldak',
|
4187 |
-
86 => 'Ardahan',
|
4188 |
-
87 => 'Bartin',
|
4189 |
-
88 => 'Igdir',
|
4190 |
-
89 => 'Karabuk',
|
4191 |
-
90 => 'Kilis',
|
4192 |
-
91 => 'Osmaniye',
|
4193 |
-
92 => 'Yalova',
|
4194 |
-
93 => 'Duzce',
|
4195 |
-
),
|
4196 |
-
'TT' =>
|
4197 |
-
array (
|
4198 |
-
'01' => 'Arima',
|
4199 |
-
'02' => 'Caroni',
|
4200 |
-
'03' => 'Mayaro',
|
4201 |
-
'04' => 'Nariva',
|
4202 |
-
'05' => 'Port-of-Spain',
|
4203 |
-
'06' => 'Saint Andrew',
|
4204 |
-
'07' => 'Saint David',
|
4205 |
-
'08' => 'Saint George',
|
4206 |
-
'09' => 'Saint Patrick',
|
4207 |
-
10 => 'San Fernando',
|
4208 |
-
11 => 'Tobago',
|
4209 |
-
12 => 'Victoria',
|
4210 |
-
),
|
4211 |
-
'TW' =>
|
4212 |
-
array (
|
4213 |
-
'01' => 'Fu-chien',
|
4214 |
-
'02' => 'Kao-hsiung',
|
4215 |
-
'03' => 'T\'ai-pei',
|
4216 |
-
'04' => 'T\'ai-wan',
|
4217 |
-
),
|
4218 |
-
'TZ' =>
|
4219 |
-
array (
|
4220 |
-
'02' => 'Pwani',
|
4221 |
-
'03' => 'Dodoma',
|
4222 |
-
'04' => 'Iringa',
|
4223 |
-
'05' => 'Kigoma',
|
4224 |
-
'06' => 'Kilimanjaro',
|
4225 |
-
'07' => 'Lindi',
|
4226 |
-
'08' => 'Mara',
|
4227 |
-
'09' => 'Mbeya',
|
4228 |
-
10 => 'Morogoro',
|
4229 |
-
11 => 'Mtwara',
|
4230 |
-
12 => 'Mwanza',
|
4231 |
-
13 => 'Pemba North',
|
4232 |
-
14 => 'Ruvuma',
|
4233 |
-
15 => 'Shinyanga',
|
4234 |
-
16 => 'Singida',
|
4235 |
-
17 => 'Tabora',
|
4236 |
-
18 => 'Tanga',
|
4237 |
-
19 => 'Kagera',
|
4238 |
-
20 => 'Pemba South',
|
4239 |
-
21 => 'Zanzibar Central',
|
4240 |
-
22 => 'Zanzibar North',
|
4241 |
-
23 => 'Dar es Salaam',
|
4242 |
-
24 => 'Rukwa',
|
4243 |
-
25 => 'Zanzibar Urban',
|
4244 |
-
26 => 'Arusha',
|
4245 |
-
27 => 'Manyara',
|
4246 |
-
),
|
4247 |
-
'UA' =>
|
4248 |
-
array (
|
4249 |
-
'01' => 'Cherkas\'ka Oblast\'',
|
4250 |
-
'02' => 'Chernihivs\'ka Oblast\'',
|
4251 |
-
'03' => 'Chernivets\'ka Oblast\'',
|
4252 |
-
'04' => 'Dnipropetrovs\'ka Oblast\'',
|
4253 |
-
'05' => 'Donets\'ka Oblast\'',
|
4254 |
-
'06' => 'Ivano-Frankivs\'ka Oblast\'',
|
4255 |
-
'07' => 'Kharkivs\'ka Oblast\'',
|
4256 |
-
'08' => 'Khersons\'ka Oblast\'',
|
4257 |
-
'09' => 'Khmel\'nyts\'ka Oblast\'',
|
4258 |
-
10 => 'Kirovohrads\'ka Oblast\'',
|
4259 |
-
11 => 'Krym',
|
4260 |
-
12 => 'Kyyiv',
|
4261 |
-
13 => 'Kyyivs\'ka Oblast\'',
|
4262 |
-
14 => 'Luhans\'ka Oblast\'',
|
4263 |
-
15 => 'L\'vivs\'ka Oblast\'',
|
4264 |
-
16 => 'Mykolayivs\'ka Oblast\'',
|
4265 |
-
17 => 'Odes\'ka Oblast\'',
|
4266 |
-
18 => 'Poltavs\'ka Oblast\'',
|
4267 |
-
19 => 'Rivnens\'ka Oblast\'',
|
4268 |
-
20 => 'Sevastopol\'',
|
4269 |
-
21 => 'Sums\'ka Oblast\'',
|
4270 |
-
22 => 'Ternopil\'s\'ka Oblast\'',
|
4271 |
-
23 => 'Vinnyts\'ka Oblast\'',
|
4272 |
-
24 => 'Volyns\'ka Oblast\'',
|
4273 |
-
25 => 'Zakarpats\'ka Oblast\'',
|
4274 |
-
26 => 'Zaporiz\'ka Oblast\'',
|
4275 |
-
27 => 'Zhytomyrs\'ka Oblast\'',
|
4276 |
-
),
|
4277 |
-
'UG' =>
|
4278 |
-
array (
|
4279 |
-
26 => 'Apac',
|
4280 |
-
28 => 'Bundibugyo',
|
4281 |
-
29 => 'Bushenyi',
|
4282 |
-
30 => 'Gulu',
|
4283 |
-
31 => 'Hoima',
|
4284 |
-
33 => 'Jinja',
|
4285 |
-
36 => 'Kalangala',
|
4286 |
-
37 => 'Kampala',
|
4287 |
-
38 => 'Kamuli',
|
4288 |
-
39 => 'Kapchorwa',
|
4289 |
-
40 => 'Kasese',
|
4290 |
-
41 => 'Kibale',
|
4291 |
-
42 => 'Kiboga',
|
4292 |
-
43 => 'Kisoro',
|
4293 |
-
45 => 'Kotido',
|
4294 |
-
46 => 'Kumi',
|
4295 |
-
47 => 'Lira',
|
4296 |
-
50 => 'Masindi',
|
4297 |
-
52 => 'Mbarara',
|
4298 |
-
56 => 'Mubende',
|
4299 |
-
58 => 'Nebbi',
|
4300 |
-
59 => 'Ntungamo',
|
4301 |
-
60 => 'Pallisa',
|
4302 |
-
61 => 'Rakai',
|
4303 |
-
65 => 'Adjumani',
|
4304 |
-
66 => 'Bugiri',
|
4305 |
-
67 => 'Busia',
|
4306 |
-
69 => 'Katakwi',
|
4307 |
-
70 => 'Luwero',
|
4308 |
-
71 => 'Masaka',
|
4309 |
-
72 => 'Moyo',
|
4310 |
-
73 => 'Nakasongola',
|
4311 |
-
74 => 'Sembabule',
|
4312 |
-
76 => 'Tororo',
|
4313 |
-
77 => 'Arua',
|
4314 |
-
78 => 'Iganga',
|
4315 |
-
79 => 'Kabarole',
|
4316 |
-
80 => 'Kaberamaido',
|
4317 |
-
81 => 'Kamwenge',
|
4318 |
-
82 => 'Kanungu',
|
4319 |
-
83 => 'Kayunga',
|
4320 |
-
84 => 'Kitgum',
|
4321 |
-
85 => 'Kyenjojo',
|
4322 |
-
86 => 'Mayuge',
|
4323 |
-
87 => 'Mbale',
|
4324 |
-
88 => 'Moroto',
|
4325 |
-
89 => 'Mpigi',
|
4326 |
-
90 => 'Mukono',
|
4327 |
-
91 => 'Nakapiripirit',
|
4328 |
-
92 => 'Pader',
|
4329 |
-
93 => 'Rukungiri',
|
4330 |
-
94 => 'Sironko',
|
4331 |
-
95 => 'Soroti',
|
4332 |
-
96 => 'Wakiso',
|
4333 |
-
97 => 'Yumbe',
|
4334 |
-
),
|
4335 |
-
'US' =>
|
4336 |
-
array (
|
4337 |
-
'AA' => 'Armed Forces Americas',
|
4338 |
-
'AE' => 'Armed Forces Europe',
|
4339 |
-
'AK' => 'Alaska',
|
4340 |
-
'AL' => 'Alabama',
|
4341 |
-
'AP' => 'Armed Forces Pacific',
|
4342 |
-
'AR' => 'Arkansas',
|
4343 |
-
'AS' => 'American Samoa',
|
4344 |
-
'AZ' => 'Arizona',
|
4345 |
-
'CA' => 'California',
|
4346 |
-
'CO' => 'Colorado',
|
4347 |
-
'CT' => 'Connecticut',
|
4348 |
-
'DC' => 'District of Columbia',
|
4349 |
-
'DE' => 'Delaware',
|
4350 |
-
'FL' => 'Florida',
|
4351 |
-
'FM' => 'Federated States of Micronesia',
|
4352 |
-
'GA' => 'Georgia',
|
4353 |
-
'GU' => 'Guam',
|
4354 |
-
'HI' => 'Hawaii',
|
4355 |
-
'IA' => 'Iowa',
|
4356 |
-
'ID' => 'Idaho',
|
4357 |
-
'IL' => 'Illinois',
|
4358 |
-
'IN' => 'Indiana',
|
4359 |
-
'KS' => 'Kansas',
|
4360 |
-
'KY' => 'Kentucky',
|
4361 |
-
'LA' => 'Louisiana',
|
4362 |
-
'MA' => 'Massachusetts',
|
4363 |
-
'MD' => 'Maryland',
|
4364 |
-
'ME' => 'Maine',
|
4365 |
-
'MH' => 'Marshall Islands',
|
4366 |
-
'MI' => 'Michigan',
|
4367 |
-
'MN' => 'Minnesota',
|
4368 |
-
'MO' => 'Missouri',
|
4369 |
-
'MP' => 'Northern Mariana Islands',
|
4370 |
-
'MS' => 'Mississippi',
|
4371 |
-
'MT' => 'Montana',
|
4372 |
-
'NC' => 'North Carolina',
|
4373 |
-
'ND' => 'North Dakota',
|
4374 |
-
'NE' => 'Nebraska',
|
4375 |
-
'NH' => 'New Hampshire',
|
4376 |
-
'NJ' => 'New Jersey',
|
4377 |
-
'NM' => 'New Mexico',
|
4378 |
-
'NV' => 'Nevada',
|
4379 |
-
'NY' => 'New York',
|
4380 |
-
'OH' => 'Ohio',
|
4381 |
-
'OK' => 'Oklahoma',
|
4382 |
-
'OR' => 'Oregon',
|
4383 |
-
'PA' => 'Pennsylvania',
|
4384 |
-
'PW' => 'Palau',
|
4385 |
-
'RI' => 'Rhode Island',
|
4386 |
-
'SC' => 'South Carolina',
|
4387 |
-
'SD' => 'South Dakota',
|
4388 |
-
'TN' => 'Tennessee',
|
4389 |
-
'TX' => 'Texas',
|
4390 |
-
'UT' => 'Utah',
|
4391 |
-
'VA' => 'Virginia',
|
4392 |
-
'VI' => 'Virgin Islands',
|
4393 |
-
'VT' => 'Vermont',
|
4394 |
-
'WA' => 'Washington',
|
4395 |
-
'WI' => 'Wisconsin',
|
4396 |
-
'WV' => 'West Virginia',
|
4397 |
-
'WY' => 'Wyoming',
|
4398 |
-
),
|
4399 |
-
'UY' =>
|
4400 |
-
array (
|
4401 |
-
'01' => 'Artigas',
|
4402 |
-
'02' => 'Canelones',
|
4403 |
-
'03' => 'Cerro Largo',
|
4404 |
-
'04' => 'Colonia',
|
4405 |
-
'05' => 'Durazno',
|
4406 |
-
'06' => 'Flores',
|
4407 |
-
'07' => 'Florida',
|
4408 |
-
'08' => 'Lavalleja',
|
4409 |
-
'09' => 'Maldonado',
|
4410 |
-
10 => 'Montevideo',
|
4411 |
-
11 => 'Paysandu',
|
4412 |
-
12 => 'Rio Negro',
|
4413 |
-
13 => 'Rivera',
|
4414 |
-
14 => 'Rocha',
|
4415 |
-
15 => 'Salto',
|
4416 |
-
16 => 'San Jose',
|
4417 |
-
17 => 'Soriano',
|
4418 |
-
18 => 'Tacuarembo',
|
4419 |
-
19 => 'Treinta y Tres',
|
4420 |
-
),
|
4421 |
-
'UZ' =>
|
4422 |
-
array (
|
4423 |
-
'01' => 'Andijon',
|
4424 |
-
'02' => 'Bukhoro',
|
4425 |
-
'03' => 'Farghona',
|
4426 |
-
'04' => 'Jizzakh',
|
4427 |
-
'05' => 'Khorazm',
|
4428 |
-
'06' => 'Namangan',
|
4429 |
-
'07' => 'Nawoiy',
|
4430 |
-
'08' => 'Qashqadaryo',
|
4431 |
-
'09' => 'Qoraqalpoghiston',
|
4432 |
-
10 => 'Samarqand',
|
4433 |
-
11 => 'Sirdaryo',
|
4434 |
-
12 => 'Surkhondaryo',
|
4435 |
-
14 => 'Toshkent',
|
4436 |
-
),
|
4437 |
-
'VC' =>
|
4438 |
-
array (
|
4439 |
-
'01' => 'Charlotte',
|
4440 |
-
'02' => 'Saint Andrew',
|
4441 |
-
'03' => 'Saint David',
|
4442 |
-
'04' => 'Saint George',
|
4443 |
-
'05' => 'Saint Patrick',
|
4444 |
-
'06' => 'Grenadines',
|
4445 |
-
),
|
4446 |
-
'VE' =>
|
4447 |
-
array (
|
4448 |
-
'01' => 'Amazonas',
|
4449 |
-
'02' => 'Anzoategui',
|
4450 |
-
'03' => 'Apure',
|
4451 |
-
'04' => 'Aragua',
|
4452 |
-
'05' => 'Barinas',
|
4453 |
-
'06' => 'Bolivar',
|
4454 |
-
'07' => 'Carabobo',
|
4455 |
-
'08' => 'Cojedes',
|
4456 |
-
'09' => 'Delta Amacuro',
|
4457 |
-
11 => 'Falcon',
|
4458 |
-
12 => 'Guarico',
|
4459 |
-
13 => 'Lara',
|
4460 |
-
14 => 'Merida',
|
4461 |
-
15 => 'Miranda',
|
4462 |
-
16 => 'Monagas',
|
4463 |
-
17 => 'Nueva Esparta',
|
4464 |
-
18 => 'Portuguesa',
|
4465 |
-
19 => 'Sucre',
|
4466 |
-
20 => 'Tachira',
|
4467 |
-
21 => 'Trujillo',
|
4468 |
-
22 => 'Yaracuy',
|
4469 |
-
23 => 'Zulia',
|
4470 |
-
24 => 'Dependencias Federales',
|
4471 |
-
25 => 'Distrito Federal',
|
4472 |
-
26 => 'Vargas',
|
4473 |
-
),
|
4474 |
-
'VN' =>
|
4475 |
-
array (
|
4476 |
-
'01' => 'An Giang',
|
4477 |
-
'03' => 'Ben Tre',
|
4478 |
-
'05' => 'Cao Bang',
|
4479 |
-
'09' => 'Dong Thap',
|
4480 |
-
13 => 'Hai Phong',
|
4481 |
-
20 => 'Ho Chi Minh',
|
4482 |
-
21 => 'Kien Giang',
|
4483 |
-
23 => 'Lam Dong',
|
4484 |
-
24 => 'Long An',
|
4485 |
-
30 => 'Quang Ninh',
|
4486 |
-
32 => 'Son La',
|
4487 |
-
33 => 'Tay Ninh',
|
4488 |
-
34 => 'Thanh Hoa',
|
4489 |
-
35 => 'Thai Binh',
|
4490 |
-
37 => 'Tien Giang',
|
4491 |
-
39 => 'Lang Son',
|
4492 |
-
43 => 'Dong Nai',
|
4493 |
-
44 => 'Ha Noi',
|
4494 |
-
45 => 'Ba Ria-Vung Tau',
|
4495 |
-
46 => 'Binh Dinh',
|
4496 |
-
47 => 'Binh Thuan',
|
4497 |
-
49 => 'Gia Lai',
|
4498 |
-
50 => 'Ha Giang',
|
4499 |
-
52 => 'Ha Tinh',
|
4500 |
-
53 => 'Hoa Binh',
|
4501 |
-
54 => 'Khanh Hoa',
|
4502 |
-
55 => 'Kon Tum',
|
4503 |
-
58 => 'Nghe An',
|
4504 |
-
59 => 'Ninh Binh',
|
4505 |
-
60 => 'Ninh Thuan',
|
4506 |
-
61 => 'Phu Yen',
|
4507 |
-
62 => 'Quang Binh',
|
4508 |
-
63 => 'Quang Ngai',
|
4509 |
-
64 => 'Quang Tri',
|
4510 |
-
65 => 'Soc Trang',
|
4511 |
-
66 => 'Thua Thien-Hue',
|
4512 |
-
67 => 'Tra Vinh',
|
4513 |
-
68 => 'Tuyen Quang',
|
4514 |
-
69 => 'Vinh Long',
|
4515 |
-
70 => 'Yen Bai',
|
4516 |
-
71 => 'Bac Giang',
|
4517 |
-
72 => 'Bac Kan',
|
4518 |
-
73 => 'Bac Lieu',
|
4519 |
-
74 => 'Bac Ninh',
|
4520 |
-
75 => 'Binh Duong',
|
4521 |
-
76 => 'Binh Phuoc',
|
4522 |
-
77 => 'Ca Mau',
|
4523 |
-
78 => 'Da Nang',
|
4524 |
-
79 => 'Hai Duong',
|
4525 |
-
80 => 'Ha Nam',
|
4526 |
-
81 => 'Hung Yen',
|
4527 |
-
82 => 'Nam Dinh',
|
4528 |
-
83 => 'Phu Tho',
|
4529 |
-
84 => 'Quang Nam',
|
4530 |
-
85 => 'Thai Nguyen',
|
4531 |
-
86 => 'Vinh Phuc',
|
4532 |
-
87 => 'Can Tho',
|
4533 |
-
88 => 'Dac Lak',
|
4534 |
-
89 => 'Lai Chau',
|
4535 |
-
90 => 'Lao Cai',
|
4536 |
-
91 => 'Dak Nong',
|
4537 |
-
92 => 'Dien Bien',
|
4538 |
-
93 => 'Hau Giang',
|
4539 |
-
),
|
4540 |
-
'VU' =>
|
4541 |
-
array (
|
4542 |
-
'05' => 'Ambrym',
|
4543 |
-
'06' => 'Aoba',
|
4544 |
-
'07' => 'Torba',
|
4545 |
-
'08' => 'Efate',
|
4546 |
-
'09' => 'Epi',
|
4547 |
-
10 => 'Malakula',
|
4548 |
-
11 => 'Paama',
|
4549 |
-
12 => 'Pentecote',
|
4550 |
-
13 => 'Sanma',
|
4551 |
-
14 => 'Shepherd',
|
4552 |
-
15 => 'Tafea',
|
4553 |
-
16 => 'Malampa',
|
4554 |
-
17 => 'Penama',
|
4555 |
-
18 => 'Shefa',
|
4556 |
-
),
|
4557 |
-
'WS' =>
|
4558 |
-
array (
|
4559 |
-
'02' => 'Aiga-i-le-Tai',
|
4560 |
-
'03' => 'Atua',
|
4561 |
-
'04' => 'Fa',
|
4562 |
-
'05' => 'Gaga',
|
4563 |
-
'06' => 'Va',
|
4564 |
-
'07' => 'Gagaifomauga',
|
4565 |
-
'08' => 'Palauli',
|
4566 |
-
'09' => 'Satupa',
|
4567 |
-
10 => 'Tuamasaga',
|
4568 |
-
11 => 'Vaisigano',
|
4569 |
-
),
|
4570 |
-
'YE' =>
|
4571 |
-
array (
|
4572 |
-
'01' => 'Abyan',
|
4573 |
-
'02' => 'Adan',
|
4574 |
-
'03' => 'Al Mahrah',
|
4575 |
-
'04' => 'Hadramawt',
|
4576 |
-
'05' => 'Shabwah',
|
4577 |
-
24 => 'Lahij',
|
4578 |
-
20 => 'Al Bayda\'',
|
4579 |
-
'08' => 'Al Hudaydah',
|
4580 |
-
21 => 'Al Jawf',
|
4581 |
-
10 => 'Al Mahwit',
|
4582 |
-
11 => 'Dhamar',
|
4583 |
-
22 => 'Hajjah',
|
4584 |
-
23 => 'Ibb',
|
4585 |
-
14 => 'Ma\'rib',
|
4586 |
-
15 => 'Sa\'dah',
|
4587 |
-
16 => 'San\'a\'',
|
4588 |
-
25 => 'Taizz',
|
4589 |
-
18 => 'Ad Dali',
|
4590 |
-
19 => 'Amran',
|
4591 |
-
),
|
4592 |
-
'ZA' =>
|
4593 |
-
array (
|
4594 |
-
'01' => 'North-Western Province',
|
4595 |
-
'02' => 'KwaZulu-Natal',
|
4596 |
-
'03' => 'Free State',
|
4597 |
-
'05' => 'Eastern Cape',
|
4598 |
-
'06' => 'Gauteng',
|
4599 |
-
'07' => 'Mpumalanga',
|
4600 |
-
'08' => 'Northern Cape',
|
4601 |
-
'09' => 'Limpopo',
|
4602 |
-
10 => 'North-West',
|
4603 |
-
11 => 'Western Cape',
|
4604 |
-
),
|
4605 |
-
'ZM' =>
|
4606 |
-
array (
|
4607 |
-
'01' => 'Western',
|
4608 |
-
'02' => 'Central',
|
4609 |
-
'03' => 'Eastern',
|
4610 |
-
'04' => 'Luapula',
|
4611 |
-
'05' => 'Northern',
|
4612 |
-
'06' => 'North-Western',
|
4613 |
-
'07' => 'Southern',
|
4614 |
-
'08' => 'Copperbelt',
|
4615 |
-
'09' => 'Lusaka',
|
4616 |
-
),
|
4617 |
-
'ZW' =>
|
4618 |
-
array (
|
4619 |
-
'01' => 'Manicaland',
|
4620 |
-
'02' => 'Midlands',
|
4621 |
-
'03' => 'Mashonaland Central',
|
4622 |
-
'04' => 'Mashonaland East',
|
4623 |
-
'05' => 'Mashonaland West',
|
4624 |
-
'06' => 'Matabeleland North',
|
4625 |
-
'07' => 'Matabeleland South',
|
4626 |
-
'08' => 'Masvingo',
|
4627 |
-
'09' => 'Bulawayo',
|
4628 |
-
10 => 'Harare',
|
4629 |
-
),
|
4630 |
-
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
geoip/src/timezone.php
DELETED
@@ -1,2235 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
function get_time_zone($country, $region)
|
3 |
-
{
|
4 |
-
switch ($country) {
|
5 |
-
case "AD":
|
6 |
-
$timezone = "Europe/Andorra";
|
7 |
-
break;
|
8 |
-
case "AE":
|
9 |
-
$timezone = "Asia/Dubai";
|
10 |
-
break;
|
11 |
-
case "AF":
|
12 |
-
$timezone = "Asia/Kabul";
|
13 |
-
break;
|
14 |
-
case "AG":
|
15 |
-
$timezone = "America/Antigua";
|
16 |
-
break;
|
17 |
-
case "AI":
|
18 |
-
$timezone = "America/Anguilla";
|
19 |
-
break;
|
20 |
-
case "AL":
|
21 |
-
$timezone = "Europe/Tirane";
|
22 |
-
break;
|
23 |
-
case "AM":
|
24 |
-
$timezone = "Asia/Yerevan";
|
25 |
-
break;
|
26 |
-
case "AN":
|
27 |
-
$timezone = "America/Curacao";
|
28 |
-
break;
|
29 |
-
case "AO":
|
30 |
-
$timezone = "Africa/Luanda";
|
31 |
-
break;
|
32 |
-
case "AQ":
|
33 |
-
$timezone = "Antarctica/South_Pole";
|
34 |
-
break;
|
35 |
-
case "AR":
|
36 |
-
switch ($region) {
|
37 |
-
case "01":
|
38 |
-
$timezone = "America/Argentina/Buenos_Aires";
|
39 |
-
break;
|
40 |
-
case "02":
|
41 |
-
$timezone = "America/Argentina/Catamarca";
|
42 |
-
break;
|
43 |
-
case "03":
|
44 |
-
$timezone = "America/Argentina/Tucuman";
|
45 |
-
break;
|
46 |
-
case "04":
|
47 |
-
$timezone = "America/Argentina/Rio_Gallegos";
|
48 |
-
break;
|
49 |
-
case "05":
|
50 |
-
$timezone = "America/Argentina/Cordoba";
|
51 |
-
break;
|
52 |
-
case "06":
|
53 |
-
$timezone = "America/Argentina/Tucuman";
|
54 |
-
break;
|
55 |
-
case "07":
|
56 |
-
$timezone = "America/Argentina/Buenos_Aires";
|
57 |
-
break;
|
58 |
-
case "08":
|
59 |
-
$timezone = "America/Argentina/Buenos_Aires";
|
60 |
-
break;
|
61 |
-
case "09":
|
62 |
-
$timezone = "America/Argentina/Tucuman";
|
63 |
-
break;
|
64 |
-
case "10":
|
65 |
-
$timezone = "America/Argentina/Jujuy";
|
66 |
-
break;
|
67 |
-
case "11":
|
68 |
-
$timezone = "America/Argentina/San_Luis";
|
69 |
-
break;
|
70 |
-
case "12":
|
71 |
-
$timezone = "America/Argentina/La_Rioja";
|
72 |
-
break;
|
73 |
-
case "13":
|
74 |
-
$timezone = "America/Argentina/Mendoza";
|
75 |
-
break;
|
76 |
-
case "14":
|
77 |
-
$timezone = "America/Argentina/Buenos_Aires";
|
78 |
-
break;
|
79 |
-
case "15":
|
80 |
-
$timezone = "America/Argentina/San_Luis";
|
81 |
-
break;
|
82 |
-
case "16":
|
83 |
-
$timezone = "America/Argentina/Buenos_Aires";
|
84 |
-
break;
|
85 |
-
case "17":
|
86 |
-
$timezone = "America/Argentina/Salta";
|
87 |
-
break;
|
88 |
-
case "18":
|
89 |
-
$timezone = "America/Argentina/San_Juan";
|
90 |
-
break;
|
91 |
-
case "19":
|
92 |
-
$timezone = "America/Argentina/San_Luis";
|
93 |
-
break;
|
94 |
-
case "20":
|
95 |
-
$timezone = "America/Argentina/Rio_Gallegos";
|
96 |
-
break;
|
97 |
-
case "21":
|
98 |
-
$timezone = "America/Argentina/Buenos_Aires";
|
99 |
-
break;
|
100 |
-
case "22":
|
101 |
-
$timezone = "America/Argentina/Catamarca";
|
102 |
-
break;
|
103 |
-
case "23":
|
104 |
-
$timezone = "America/Argentina/Ushuaia";
|
105 |
-
break;
|
106 |
-
case "24":
|
107 |
-
$timezone = "America/Argentina/Tucuman";
|
108 |
-
break;
|
109 |
-
}
|
110 |
-
break;
|
111 |
-
case "AS":
|
112 |
-
$timezone = "Pacific/Pago_Pago";
|
113 |
-
break;
|
114 |
-
case "AT":
|
115 |
-
$timezone = "Europe/Vienna";
|
116 |
-
break;
|
117 |
-
case "AU":
|
118 |
-
switch ($region) {
|
119 |
-
case "01":
|
120 |
-
$timezone = "Australia/Sydney";
|
121 |
-
break;
|
122 |
-
case "02":
|
123 |
-
$timezone = "Australia/Sydney";
|
124 |
-
break;
|
125 |
-
case "03":
|
126 |
-
$timezone = "Australia/Darwin";
|
127 |
-
break;
|
128 |
-
case "04":
|
129 |
-
$timezone = "Australia/Brisbane";
|
130 |
-
break;
|
131 |
-
case "05":
|
132 |
-
$timezone = "Australia/Adelaide";
|
133 |
-
break;
|
134 |
-
case "06":
|
135 |
-
$timezone = "Australia/Hobart";
|
136 |
-
break;
|
137 |
-
case "07":
|
138 |
-
$timezone = "Australia/Melbourne";
|
139 |
-
break;
|
140 |
-
case "08":
|
141 |
-
$timezone = "Australia/Perth";
|
142 |
-
break;
|
143 |
-
}
|
144 |
-
break;
|
145 |
-
case "AW":
|
146 |
-
$timezone = "America/Aruba";
|
147 |
-
break;
|
148 |
-
case "AX":
|
149 |
-
$timezone = "Europe/Mariehamn";
|
150 |
-
break;
|
151 |
-
case "AZ":
|
152 |
-
$timezone = "Asia/Baku";
|
153 |
-
break;
|
154 |
-
case "BA":
|
155 |
-
$timezone = "Europe/Sarajevo";
|
156 |
-
break;
|
157 |
-
case "BB":
|
158 |
-
$timezone = "America/Barbados";
|
159 |
-
break;
|
160 |
-
case "BD":
|
161 |
-
$timezone = "Asia/Dhaka";
|
162 |
-
break;
|
163 |
-
case "BE":
|
164 |
-
$timezone = "Europe/Brussels";
|
165 |
-
break;
|
166 |
-
case "BF":
|
167 |
-
$timezone = "Africa/Ouagadougou";
|
168 |
-
break;
|
169 |
-
case "BG":
|
170 |
-
$timezone = "Europe/Sofia";
|
171 |
-
break;
|
172 |
-
case "BH":
|
173 |
-
$timezone = "Asia/Bahrain";
|
174 |
-
break;
|
175 |
-
case "BI":
|
176 |
-
$timezone = "Africa/Bujumbura";
|
177 |
-
break;
|
178 |
-
case "BJ":
|
179 |
-
$timezone = "Africa/Porto-Novo";
|
180 |
-
break;
|
181 |
-
case "BL":
|
182 |
-
$timezone = "America/St_Barthelemy";
|
183 |
-
break;
|
184 |
-
case "BM":
|
185 |
-
$timezone = "Atlantic/Bermuda";
|
186 |
-
break;
|
187 |
-
case "BN":
|
188 |
-
$timezone = "Asia/Brunei";
|
189 |
-
break;
|
190 |
-
case "BO":
|
191 |
-
$timezone = "America/La_Paz";
|
192 |
-
break;
|
193 |
-
case "BQ":
|
194 |
-
$timezone = "America/Curacao";
|
195 |
-
break;
|
196 |
-
case "BR":
|
197 |
-
switch ($region) {
|
198 |
-
case "01":
|
199 |
-
$timezone = "America/Rio_Branco";
|
200 |
-
break;
|
201 |
-
case "02":
|
202 |
-
$timezone = "America/Maceio";
|
203 |
-
break;
|
204 |
-
case "03":
|
205 |
-
$timezone = "America/Sao_Paulo";
|
206 |
-
break;
|
207 |
-
case "04":
|
208 |
-
$timezone = "America/Manaus";
|
209 |
-
break;
|
210 |
-
case "05":
|
211 |
-
$timezone = "America/Bahia";
|
212 |
-
break;
|
213 |
-
case "06":
|
214 |
-
$timezone = "America/Fortaleza";
|
215 |
-
break;
|
216 |
-
case "07":
|
217 |
-
$timezone = "America/Sao_Paulo";
|
218 |
-
break;
|
219 |
-
case "08":
|
220 |
-
$timezone = "America/Sao_Paulo";
|
221 |
-
break;
|
222 |
-
case "11":
|
223 |
-
$timezone = "America/Campo_Grande";
|
224 |
-
break;
|
225 |
-
case "13":
|
226 |
-
$timezone = "America/Belem";
|
227 |
-
break;
|
228 |
-
case "14":
|
229 |
-
$timezone = "America/Cuiaba";
|
230 |
-
break;
|
231 |
-
case "15":
|
232 |
-
$timezone = "America/Sao_Paulo";
|
233 |
-
break;
|
234 |
-
case "16":
|
235 |
-
$timezone = "America/Belem";
|
236 |
-
break;
|
237 |
-
case "17":
|
238 |
-
$timezone = "America/Recife";
|
239 |
-
break;
|
240 |
-
case "18":
|
241 |
-
$timezone = "America/Sao_Paulo";
|
242 |
-
break;
|
243 |
-
case "20":
|
244 |
-
$timezone = "America/Fortaleza";
|
245 |
-
break;
|
246 |
-
case "21":
|
247 |
-
$timezone = "America/Sao_Paulo";
|
248 |
-
break;
|
249 |
-
case "22":
|
250 |
-
$timezone = "America/Recife";
|
251 |
-
break;
|
252 |
-
case "23":
|
253 |
-
$timezone = "America/Sao_Paulo";
|
254 |
-
break;
|
255 |
-
case "24":
|
256 |
-
$timezone = "America/Porto_Velho";
|
257 |
-
break;
|
258 |
-
case "25":
|
259 |
-
$timezone = "America/Boa_Vista";
|
260 |
-
break;
|
261 |
-
case "26":
|
262 |
-
$timezone = "America/Sao_Paulo";
|
263 |
-
break;
|
264 |
-
case "27":
|
265 |
-
$timezone = "America/Sao_Paulo";
|
266 |
-
break;
|
267 |
-
case "28":
|
268 |
-
$timezone = "America/Maceio";
|
269 |
-
break;
|
270 |
-
case "29":
|
271 |
-
$timezone = "America/Sao_Paulo";
|
272 |
-
break;
|
273 |
-
case "30":
|
274 |
-
$timezone = "America/Recife";
|
275 |
-
break;
|
276 |
-
case "31":
|
277 |
-
$timezone = "America/Araguaina";
|
278 |
-
break;
|
279 |
-
}
|
280 |
-
break;
|
281 |
-
case "BS":
|
282 |
-
$timezone = "America/Nassau";
|
283 |
-
break;
|
284 |
-
case "BT":
|
285 |
-
$timezone = "Asia/Thimphu";
|
286 |
-
break;
|
287 |
-
case "BV":
|
288 |
-
$timezone = "Antarctica/Syowa";
|
289 |
-
break;
|
290 |
-
case "BW":
|
291 |
-
$timezone = "Africa/Gaborone";
|
292 |
-
break;
|
293 |
-
case "BY":
|
294 |
-
$timezone = "Europe/Minsk";
|
295 |
-
break;
|
296 |
-
case "BZ":
|
297 |
-
$timezone = "America/Belize";
|
298 |
-
break;
|
299 |
-
case "CA":
|
300 |
-
switch ($region) {
|
301 |
-
case "AB":
|
302 |
-
$timezone = "America/Edmonton";
|
303 |
-
break;
|
304 |
-
case "BC":
|
305 |
-
$timezone = "America/Vancouver";
|
306 |
-
break;
|
307 |
-
case "MB":
|
308 |
-
$timezone = "America/Winnipeg";
|
309 |
-
break;
|
310 |
-
case "NB":
|
311 |
-
$timezone = "America/Halifax";
|
312 |
-
break;
|
313 |
-
case "NL":
|
314 |
-
$timezone = "America/St_Johns";
|
315 |
-
break;
|
316 |
-
case "NS":
|
317 |
-
$timezone = "America/Halifax";
|
318 |
-
break;
|
319 |
-
case "NT":
|
320 |
-
$timezone = "America/Yellowknife";
|
321 |
-
break;
|
322 |
-
case "NU":
|
323 |
-
$timezone = "America/Rankin_Inlet";
|
324 |
-
break;
|
325 |
-
case "ON":
|
326 |
-
$timezone = "America/Toronto";
|
327 |
-
break;
|
328 |
-
case "PE":
|
329 |
-
$timezone = "America/Halifax";
|
330 |
-
break;
|
331 |
-
case "QC":
|
332 |
-
$timezone = "America/Montreal";
|
333 |
-
break;
|
334 |
-
case "SK":
|
335 |
-
$timezone = "America/Regina";
|
336 |
-
break;
|
337 |
-
case "YT":
|
338 |
-
$timezone = "America/Whitehorse";
|
339 |
-
break;
|
340 |
-
}
|
341 |
-
break;
|
342 |
-
case "CC":
|
343 |
-
$timezone = "Indian/Cocos";
|
344 |
-
break;
|
345 |
-
case "CD":
|
346 |
-
switch ($region) {
|
347 |
-
case "01":
|
348 |
-
$timezone = "Africa/Kinshasa";
|
349 |
-
break;
|
350 |
-
case "02":
|
351 |
-
$timezone = "Africa/Kinshasa";
|
352 |
-
break;
|
353 |
-
case "03":
|
354 |
-
$timezone = "Africa/Kinshasa";
|
355 |
-
break;
|
356 |
-
case "04":
|
357 |
-
$timezone = "Africa/Lubumbashi";
|
358 |
-
break;
|
359 |
-
case "05":
|
360 |
-
$timezone = "Africa/Lubumbashi";
|
361 |
-
break;
|
362 |
-
case "06":
|
363 |
-
$timezone = "Africa/Kinshasa";
|
364 |
-
break;
|
365 |
-
case "07":
|
366 |
-
$timezone = "Africa/Lubumbashi";
|
367 |
-
break;
|
368 |
-
case "08":
|
369 |
-
$timezone = "Africa/Kinshasa";
|
370 |
-
break;
|
371 |
-
case "09":
|
372 |
-
$timezone = "Africa/Lubumbashi";
|
373 |
-
break;
|
374 |
-
case "10":
|
375 |
-
$timezone = "Africa/Lubumbashi";
|
376 |
-
break;
|
377 |
-
case "11":
|
378 |
-
$timezone = "Africa/Lubumbashi";
|
379 |
-
break;
|
380 |
-
case "12":
|
381 |
-
$timezone = "Africa/Lubumbashi";
|
382 |
-
break;
|
383 |
-
}
|
384 |
-
break;
|
385 |
-
case "CF":
|
386 |
-
$timezone = "Africa/Bangui";
|
387 |
-
break;
|
388 |
-
case "CG":
|
389 |
-
$timezone = "Africa/Brazzaville";
|
390 |
-
break;
|
391 |
-
case "CH":
|
392 |
-
$timezone = "Europe/Zurich";
|
393 |
-
break;
|
394 |
-
case "CI":
|
395 |
-
$timezone = "Africa/Abidjan";
|
396 |
-
break;
|
397 |
-
case "CK":
|
398 |
-
$timezone = "Pacific/Rarotonga";
|
399 |
-
break;
|
400 |
-
case "CL":
|
401 |
-
$timezone = "America/Santiago";
|
402 |
-
break;
|
403 |
-
case "CM":
|
404 |
-
$timezone = "Africa/Lagos";
|
405 |
-
break;
|
406 |
-
case "CN":
|
407 |
-
switch ($region) {
|
408 |
-
case "01":
|
409 |
-
$timezone = "Asia/Shanghai";
|
410 |
-
break;
|
411 |
-
case "02":
|
412 |
-
$timezone = "Asia/Shanghai";
|
413 |
-
break;
|
414 |
-
case "03":
|
415 |
-
$timezone = "Asia/Shanghai";
|
416 |
-
break;
|
417 |
-
case "04":
|
418 |
-
$timezone = "Asia/Shanghai";
|
419 |
-
break;
|
420 |
-
case "05":
|
421 |
-
$timezone = "Asia/Harbin";
|
422 |
-
break;
|
423 |
-
case "06":
|
424 |
-
$timezone = "Asia/Chongqing";
|
425 |
-
break;
|
426 |
-
case "07":
|
427 |
-
$timezone = "Asia/Shanghai";
|
428 |
-
break;
|
429 |
-
case "08":
|
430 |
-
$timezone = "Asia/Harbin";
|
431 |
-
break;
|
432 |
-
case "09":
|
433 |
-
$timezone = "Asia/Shanghai";
|
434 |
-
break;
|
435 |
-
case "10":
|
436 |
-
$timezone = "Asia/Shanghai";
|
437 |
-
break;
|
438 |
-
case "11":
|
439 |
-
$timezone = "Asia/Chongqing";
|
440 |
-
break;
|
441 |
-
case "12":
|
442 |
-
$timezone = "Asia/Shanghai";
|
443 |
-
break;
|
444 |
-
case "13":
|
445 |
-
$timezone = "Asia/Urumqi";
|
446 |
-
break;
|
447 |
-
case "14":
|
448 |
-
$timezone = "Asia/Chongqing";
|
449 |
-
break;
|
450 |
-
case "15":
|
451 |
-
$timezone = "Asia/Chongqing";
|
452 |
-
break;
|
453 |
-
case "16":
|
454 |
-
$timezone = "Asia/Chongqing";
|
455 |
-
break;
|
456 |
-
case "18":
|
457 |
-
$timezone = "Asia/Chongqing";
|
458 |
-
break;
|
459 |
-
case "19":
|
460 |
-
$timezone = "Asia/Harbin";
|
461 |
-
break;
|
462 |
-
case "20":
|
463 |
-
$timezone = "Asia/Harbin";
|
464 |
-
break;
|
465 |
-
case "21":
|
466 |
-
$timezone = "Asia/Chongqing";
|
467 |
-
break;
|
468 |
-
case "22":
|
469 |
-
$timezone = "Asia/Harbin";
|
470 |
-
break;
|
471 |
-
case "23":
|
472 |
-
$timezone = "Asia/Shanghai";
|
473 |
-
break;
|
474 |
-
case "24":
|
475 |
-
$timezone = "Asia/Chongqing";
|
476 |
-
break;
|
477 |
-
case "25":
|
478 |
-
$timezone = "Asia/Shanghai";
|
479 |
-
break;
|
480 |
-
case "26":
|
481 |
-
$timezone = "Asia/Chongqing";
|
482 |
-
break;
|
483 |
-
case "28":
|
484 |
-
$timezone = "Asia/Shanghai";
|
485 |
-
break;
|
486 |
-
case "29":
|
487 |
-
$timezone = "Asia/Chongqing";
|
488 |
-
break;
|
489 |
-
case "30":
|
490 |
-
$timezone = "Asia/Chongqing";
|
491 |
-
break;
|
492 |
-
case "31":
|
493 |
-
$timezone = "Asia/Chongqing";
|
494 |
-
break;
|
495 |
-
case "32":
|
496 |
-
$timezone = "Asia/Chongqing";
|
497 |
-
break;
|
498 |
-
case "33":
|
499 |
-
$timezone = "Asia/Chongqing";
|
500 |
-
break;
|
501 |
-
}
|
502 |
-
break;
|
503 |
-
case "CO":
|
504 |
-
$timezone = "America/Bogota";
|
505 |
-
break;
|
506 |
-
case "CR":
|
507 |
-
$timezone = "America/Costa_Rica";
|
508 |
-
break;
|
509 |
-
case "CU":
|
510 |
-
$timezone = "America/Havana";
|
511 |
-
break;
|
512 |
-
case "CV":
|
513 |
-
$timezone = "Atlantic/Cape_Verde";
|
514 |
-
break;
|
515 |
-
case "CW":
|
516 |
-
$timezone = "America/Curacao";
|
517 |
-
break;
|
518 |
-
case "CX":
|
519 |
-
$timezone = "Indian/Christmas";
|
520 |
-
break;
|
521 |
-
case "CY":
|
522 |
-
$timezone = "Asia/Nicosia";
|
523 |
-
break;
|
524 |
-
case "CZ":
|
525 |
-
$timezone = "Europe/Prague";
|
526 |
-
break;
|
527 |
-
case "DE":
|
528 |
-
$timezone = "Europe/Berlin";
|
529 |
-
break;
|
530 |
-
case "DJ":
|
531 |
-
$timezone = "Africa/Djibouti";
|
532 |
-
break;
|
533 |
-
case "DK":
|
534 |
-
$timezone = "Europe/Copenhagen";
|
535 |
-
break;
|
536 |
-
case "DM":
|
537 |
-
$timezone = "America/Dominica";
|
538 |
-
break;
|
539 |
-
case "DO":
|
540 |
-
$timezone = "America/Santo_Domingo";
|
541 |
-
break;
|
542 |
-
case "DZ":
|
543 |
-
$timezone = "Africa/Algiers";
|
544 |
-
break;
|
545 |
-
case "EC":
|
546 |
-
switch ($region) {
|
547 |
-
case "01":
|
548 |
-
$timezone = "Pacific/Galapagos";
|
549 |
-
break;
|
550 |
-
case "02":
|
551 |
-
$timezone = "America/Guayaquil";
|
552 |
-
break;
|
553 |
-
case "03":
|
554 |
-
$timezone = "America/Guayaquil";
|
555 |
-
break;
|
556 |
-
case "04":
|
557 |
-
$timezone = "America/Guayaquil";
|
558 |
-
break;
|
559 |
-
case "05":
|
560 |
-
$timezone = "America/Guayaquil";
|
561 |
-
break;
|
562 |
-
case "06":
|
563 |
-
$timezone = "America/Guayaquil";
|
564 |
-
break;
|
565 |
-
case "07":
|
566 |
-
$timezone = "America/Guayaquil";
|
567 |
-
break;
|
568 |
-
case "08":
|
569 |
-
$timezone = "America/Guayaquil";
|
570 |
-
break;
|
571 |
-
case "09":
|
572 |
-
$timezone = "America/Guayaquil";
|
573 |
-
break;
|
574 |
-
case "10":
|
575 |
-
$timezone = "America/Guayaquil";
|
576 |
-
break;
|
577 |
-
case "11":
|
578 |
-
$timezone = "America/Guayaquil";
|
579 |
-
break;
|
580 |
-
case "12":
|
581 |
-
$timezone = "America/Guayaquil";
|
582 |
-
break;
|
583 |
-
case "13":
|
584 |
-
$timezone = "America/Guayaquil";
|
585 |
-
break;
|
586 |
-
case "14":
|
587 |
-
$timezone = "America/Guayaquil";
|
588 |
-
break;
|
589 |
-
case "15":
|
590 |
-
$timezone = "America/Guayaquil";
|
591 |
-
break;
|
592 |
-
case "17":
|
593 |
-
$timezone = "America/Guayaquil";
|
594 |
-
break;
|
595 |
-
case "18":
|
596 |
-
$timezone = "America/Guayaquil";
|
597 |
-
break;
|
598 |
-
case "19":
|
599 |
-
$timezone = "America/Guayaquil";
|
600 |
-
break;
|
601 |
-
case "20":
|
602 |
-
$timezone = "America/Guayaquil";
|
603 |
-
break;
|
604 |
-
case "22":
|
605 |
-
$timezone = "America/Guayaquil";
|
606 |
-
break;
|
607 |
-
case "24":
|
608 |
-
$timezone = "America/Guayaquil";
|
609 |
-
break;
|
610 |
-
}
|
611 |
-
break;
|
612 |
-
case "EE":
|
613 |
-
$timezone = "Europe/Tallinn";
|
614 |
-
break;
|
615 |
-
case "EG":
|
616 |
-
$timezone = "Africa/Cairo";
|
617 |
-
break;
|
618 |
-
case "EH":
|
619 |
-
$timezone = "Africa/El_Aaiun";
|
620 |
-
break;
|
621 |
-
case "ER":
|
622 |
-
$timezone = "Africa/Asmara";
|
623 |
-
break;
|
624 |
-
case "ES":
|
625 |
-
switch ($region) {
|
626 |
-
case "07":
|
627 |
-
$timezone = "Europe/Madrid";
|
628 |
-
break;
|
629 |
-
case "27":
|
630 |
-
$timezone = "Europe/Madrid";
|
631 |
-
break;
|
632 |
-
case "29":
|
633 |
-
$timezone = "Europe/Madrid";
|
634 |
-
break;
|
635 |
-
case "31":
|
636 |
-
$timezone = "Europe/Madrid";
|
637 |
-
break;
|
638 |
-
case "32":
|
639 |
-
$timezone = "Europe/Madrid";
|
640 |
-
break;
|
641 |
-
case "34":
|
642 |
-
$timezone = "Europe/Madrid";
|
643 |
-
break;
|
644 |
-
case "39":
|
645 |
-
$timezone = "Europe/Madrid";
|
646 |
-
break;
|
647 |
-
case "51":
|
648 |
-
$timezone = "Africa/Ceuta";
|
649 |
-
break;
|
650 |
-
case "52":
|
651 |
-
$timezone = "Europe/Madrid";
|
652 |
-
break;
|
653 |
-
case "53":
|
654 |
-
$timezone = "Atlantic/Canary";
|
655 |
-
break;
|
656 |
-
case "54":
|
657 |
-
$timezone = "Europe/Madrid";
|
658 |
-
break;
|
659 |
-
case "55":
|
660 |
-
$timezone = "Europe/Madrid";
|
661 |
-
break;
|
662 |
-
case "56":
|
663 |
-
$timezone = "Europe/Madrid";
|
664 |
-
break;
|
665 |
-
case "57":
|
666 |
-
$timezone = "Europe/Madrid";
|
667 |
-
break;
|
668 |
-
case "58":
|
669 |
-
$timezone = "Europe/Madrid";
|
670 |
-
break;
|
671 |
-
case "59":
|
672 |
-
$timezone = "Europe/Madrid";
|
673 |
-
break;
|
674 |
-
case "60":
|
675 |
-
$timezone = "Europe/Madrid";
|
676 |
-
break;
|
677 |
-
}
|
678 |
-
break;
|
679 |
-
case "ET":
|
680 |
-
$timezone = "Africa/Addis_Ababa";
|
681 |
-
break;
|
682 |
-
case "FI":
|
683 |
-
$timezone = "Europe/Helsinki";
|
684 |
-
break;
|
685 |
-
case "FJ":
|
686 |
-
$timezone = "Pacific/Fiji";
|
687 |
-
break;
|
688 |
-
case "FK":
|
689 |
-
$timezone = "Atlantic/Stanley";
|
690 |
-
break;
|
691 |
-
case "FM":
|
692 |
-
$timezone = "Pacific/Pohnpei";
|
693 |
-
break;
|
694 |
-
case "FO":
|
695 |
-
$timezone = "Atlantic/Faroe";
|
696 |
-
break;
|
697 |
-
case "FR":
|
698 |
-
$timezone = "Europe/Paris";
|
699 |
-
break;
|
700 |
-
case "FX":
|
701 |
-
$timezone = "Europe/Paris";
|
702 |
-
break;
|
703 |
-
case "GA":
|
704 |
-
$timezone = "Africa/Libreville";
|
705 |
-
break;
|
706 |
-
case "GB":
|
707 |
-
$timezone = "Europe/London";
|
708 |
-
break;
|
709 |
-
case "GD":
|
710 |
-
$timezone = "America/Grenada";
|
711 |
-
break;
|
712 |
-
case "GE":
|
713 |
-
$timezone = "Asia/Tbilisi";
|
714 |
-
break;
|
715 |
-
case "GF":
|
716 |
-
$timezone = "America/Cayenne";
|
717 |
-
break;
|
718 |
-
case "GG":
|
719 |
-
$timezone = "Europe/Guernsey";
|
720 |
-
break;
|
721 |
-
case "GH":
|
722 |
-
$timezone = "Africa/Accra";
|
723 |
-
break;
|
724 |
-
case "GI":
|
725 |
-
$timezone = "Europe/Gibraltar";
|
726 |
-
break;
|
727 |
-
case "GL":
|
728 |
-
switch ($region) {
|
729 |
-
case "01":
|
730 |
-
$timezone = "America/Thule";
|
731 |
-
break;
|
732 |
-
case "02":
|
733 |
-
$timezone = "America/Godthab";
|
734 |
-
break;
|
735 |
-
case "03":
|
736 |
-
$timezone = "America/Godthab";
|
737 |
-
break;
|
738 |
-
}
|
739 |
-
break;
|
740 |
-
case "GM":
|
741 |
-
$timezone = "Africa/Banjul";
|
742 |
-
break;
|
743 |
-
case "GN":
|
744 |
-
$timezone = "Africa/Conakry";
|
745 |
-
break;
|
746 |
-
case "GP":
|
747 |
-
$timezone = "America/Guadeloupe";
|
748 |
-
break;
|
749 |
-
case "GQ":
|
750 |
-
$timezone = "Africa/Malabo";
|
751 |
-
break;
|
752 |
-
case "GR":
|
753 |
-
$timezone = "Europe/Athens";
|
754 |
-
break;
|
755 |
-
case "GS":
|
756 |
-
$timezone = "Atlantic/South_Georgia";
|
757 |
-
break;
|
758 |
-
case "GT":
|
759 |
-
$timezone = "America/Guatemala";
|
760 |
-
break;
|
761 |
-
case "GU":
|
762 |
-
$timezone = "Pacific/Guam";
|
763 |
-
break;
|
764 |
-
case "GW":
|
765 |
-
$timezone = "Africa/Bissau";
|
766 |
-
break;
|
767 |
-
case "GY":
|
768 |
-
$timezone = "America/Guyana";
|
769 |
-
break;
|
770 |
-
case "HK":
|
771 |
-
$timezone = "Asia/Hong_Kong";
|
772 |
-
break;
|
773 |
-
case "HN":
|
774 |
-
$timezone = "America/Tegucigalpa";
|
775 |
-
break;
|
776 |
-
case "HR":
|
777 |
-
$timezone = "Europe/Zagreb";
|
778 |
-
break;
|
779 |
-
case "HT":
|
780 |
-
$timezone = "America/Port-au-Prince";
|
781 |
-
break;
|
782 |
-
case "HU":
|
783 |
-
$timezone = "Europe/Budapest";
|
784 |
-
break;
|
785 |
-
case "ID":
|
786 |
-
switch ($region) {
|
787 |
-
case "01":
|
788 |
-
$timezone = "Asia/Pontianak";
|
789 |
-
break;
|
790 |
-
case "02":
|
791 |
-
$timezone = "Asia/Makassar";
|
792 |
-
break;
|
793 |
-
case "03":
|
794 |
-
$timezone = "Asia/Jakarta";
|
795 |
-
break;
|
796 |
-
case "04":
|
797 |
-
$timezone = "Asia/Jakarta";
|
798 |
-
break;
|
799 |
-
case "05":
|
800 |
-
$timezone = "Asia/Jakarta";
|
801 |
-
break;
|
802 |
-
case "06":
|
803 |
-
$timezone = "Asia/Jakarta";
|
804 |
-
break;
|
805 |
-
case "07":
|
806 |
-
$timezone = "Asia/Jakarta";
|
807 |
-
break;
|
808 |
-
case "08":
|
809 |
-
$timezone = "Asia/Jakarta";
|
810 |
-
break;
|
811 |
-
case "09":
|
812 |
-
$timezone = "Asia/Jayapura";
|
813 |
-
break;
|
814 |
-
case "10":
|
815 |
-
$timezone = "Asia/Jakarta";
|
816 |
-
break;
|
817 |
-
case "11":
|
818 |
-
$timezone = "Asia/Pontianak";
|
819 |
-
break;
|
820 |
-
case "12":
|
821 |
-
$timezone = "Asia/Makassar";
|
822 |
-
break;
|
823 |
-
case "13":
|
824 |
-
$timezone = "Asia/Makassar";
|
825 |
-
break;
|
826 |
-
case "14":
|
827 |
-
$timezone = "Asia/Makassar";
|
828 |
-
break;
|
829 |
-
case "15":
|
830 |
-
$timezone = "Asia/Jakarta";
|
831 |
-
break;
|
832 |
-
case "16":
|
833 |
-
$timezone = "Asia/Makassar";
|
834 |
-
break;
|
835 |
-
case "17":
|
836 |
-
$timezone = "Asia/Makassar";
|
837 |
-
break;
|
838 |
-
case "18":
|
839 |
-
$timezone = "Asia/Makassar";
|
840 |
-
break;
|
841 |
-
case "19":
|
842 |
-
$timezone = "Asia/Pontianak";
|
843 |
-
break;
|
844 |
-
case "20":
|
845 |
-
$timezone = "Asia/Makassar";
|
846 |
-
break;
|
847 |
-
case "21":
|
848 |
-
$timezone = "Asia/Makassar";
|
849 |
-
break;
|
850 |
-
case "22":
|
851 |
-
$timezone = "Asia/Makassar";
|
852 |
-
break;
|
853 |
-
case "23":
|
854 |
-
$timezone = "Asia/Makassar";
|
855 |
-
break;
|
856 |
-
case "24":
|
857 |
-
$timezone = "Asia/Jakarta";
|
858 |
-
break;
|
859 |
-
case "25":
|
860 |
-
$timezone = "Asia/Pontianak";
|
861 |
-
break;
|
862 |
-
case "26":
|
863 |
-
$timezone = "Asia/Pontianak";
|
864 |
-
break;
|
865 |
-
case "28":
|
866 |
-
$timezone = "Asia/Jayapura";
|
867 |
-
break;
|
868 |
-
case "29":
|
869 |
-
$timezone = "Asia/Makassar";
|
870 |
-
break;
|
871 |
-
case "30":
|
872 |
-
$timezone = "Asia/Jakarta";
|
873 |
-
break;
|
874 |
-
case "31":
|
875 |
-
$timezone = "Asia/Makassar";
|
876 |
-
break;
|
877 |
-
case "32":
|
878 |
-
$timezone = "Asia/Jakarta";
|
879 |
-
break;
|
880 |
-
case "33":
|
881 |
-
$timezone = "Asia/Jakarta";
|
882 |
-
break;
|
883 |
-
case "34":
|
884 |
-
$timezone = "Asia/Makassar";
|
885 |
-
break;
|
886 |
-
case "35":
|
887 |
-
$timezone = "Asia/Pontianak";
|
888 |
-
break;
|
889 |
-
case "36":
|
890 |
-
$timezone = "Asia/Jayapura";
|
891 |
-
break;
|
892 |
-
case "37":
|
893 |
-
$timezone = "Asia/Pontianak";
|
894 |
-
break;
|
895 |
-
case "38":
|
896 |
-
$timezone = "Asia/Makassar";
|
897 |
-
break;
|
898 |
-
case "39":
|
899 |
-
$timezone = "Asia/Jayapura";
|
900 |
-
break;
|
901 |
-
case "40":
|
902 |
-
$timezone = "Asia/Pontianak";
|
903 |
-
break;
|
904 |
-
case "41":
|
905 |
-
$timezone = "Asia/Makassar";
|
906 |
-
break;
|
907 |
-
}
|
908 |
-
break;
|
909 |
-
case "IE":
|
910 |
-
$timezone = "Europe/Dublin";
|
911 |
-
break;
|
912 |
-
case "IL":
|
913 |
-
$timezone = "Asia/Jerusalem";
|
914 |
-
break;
|
915 |
-
case "IM":
|
916 |
-
$timezone = "Europe/Isle_of_Man";
|
917 |
-
break;
|
918 |
-
case "IN":
|
919 |
-
$timezone = "Asia/Kolkata";
|
920 |
-
break;
|
921 |
-
case "IO":
|
922 |
-
$timezone = "Indian/Chagos";
|
923 |
-
break;
|
924 |
-
case "IQ":
|
925 |
-
$timezone = "Asia/Baghdad";
|
926 |
-
break;
|
927 |
-
case "IR":
|
928 |
-
$timezone = "Asia/Tehran";
|
929 |
-
break;
|
930 |
-
case "IS":
|
931 |
-
$timezone = "Atlantic/Reykjavik";
|
932 |
-
break;
|
933 |
-
case "IT":
|
934 |
-
$timezone = "Europe/Rome";
|
935 |
-
break;
|
936 |
-
case "JE":
|
937 |
-
$timezone = "Europe/Jersey";
|
938 |
-
break;
|
939 |
-
case "JM":
|
940 |
-
$timezone = "America/Jamaica";
|
941 |
-
break;
|
942 |
-
case "JO":
|
943 |
-
$timezone = "Asia/Amman";
|
944 |
-
break;
|
945 |
-
case "JP":
|
946 |
-
$timezone = "Asia/Tokyo";
|
947 |
-
break;
|
948 |
-
case "KE":
|
949 |
-
$timezone = "Africa/Nairobi";
|
950 |
-
break;
|
951 |
-
case "KG":
|
952 |
-
$timezone = "Asia/Bishkek";
|
953 |
-
break;
|
954 |
-
case "KH":
|
955 |
-
$timezone = "Asia/Phnom_Penh";
|
956 |
-
break;
|
957 |
-
case "KI":
|
958 |
-
$timezone = "Pacific/Tarawa";
|
959 |
-
break;
|
960 |
-
case "KM":
|
961 |
-
$timezone = "Indian/Comoro";
|
962 |
-
break;
|
963 |
-
case "KN":
|
964 |
-
$timezone = "America/St_Kitts";
|
965 |
-
break;
|
966 |
-
case "KP":
|
967 |
-
$timezone = "Asia/Pyongyang";
|
968 |
-
break;
|
969 |
-
case "KR":
|
970 |
-
$timezone = "Asia/Seoul";
|
971 |
-
break;
|
972 |
-
case "KW":
|
973 |
-
$timezone = "Asia/Kuwait";
|
974 |
-
break;
|
975 |
-
case "KY":
|
976 |
-
$timezone = "America/Cayman";
|
977 |
-
break;
|
978 |
-
case "KZ":
|
979 |
-
switch ($region) {
|
980 |
-
case "01":
|
981 |
-
$timezone = "Asia/Almaty";
|
982 |
-
break;
|
983 |
-
case "02":
|
984 |
-
$timezone = "Asia/Almaty";
|
985 |
-
break;
|
986 |
-
case "03":
|
987 |
-
$timezone = "Asia/Qyzylorda";
|
988 |
-
break;
|
989 |
-
case "04":
|
990 |
-
$timezone = "Asia/Aqtobe";
|
991 |
-
break;
|
992 |
-
case "05":
|
993 |
-
$timezone = "Asia/Qyzylorda";
|
994 |
-
break;
|
995 |
-
case "06":
|
996 |
-
$timezone = "Asia/Aqtau";
|
997 |
-
break;
|
998 |
-
case "07":
|
999 |
-
$timezone = "Asia/Oral";
|
1000 |
-
break;
|
1001 |
-
case "08":
|
1002 |
-
$timezone = "Asia/Qyzylorda";
|
1003 |
-
break;
|
1004 |
-
case "09":
|
1005 |
-
$timezone = "Asia/Aqtau";
|
1006 |
-
break;
|
1007 |
-
case "10":
|
1008 |
-
$timezone = "Asia/Qyzylorda";
|
1009 |
-
break;
|
1010 |
-
case "11":
|
1011 |
-
$timezone = "Asia/Almaty";
|
1012 |
-
break;
|
1013 |
-
case "12":
|
1014 |
-
$timezone = "Asia/Qyzylorda";
|
1015 |
-
break;
|
1016 |
-
case "13":
|
1017 |
-
$timezone = "Asia/Aqtobe";
|
1018 |
-
break;
|
1019 |
-
case "14":
|
1020 |
-
$timezone = "Asia/Qyzylorda";
|
1021 |
-
break;
|
1022 |
-
case "15":
|
1023 |
-
$timezone = "Asia/Almaty";
|
1024 |
-
break;
|
1025 |
-
case "16":
|
1026 |
-
$timezone = "Asia/Aqtobe";
|
1027 |
-
break;
|
1028 |
-
case "17":
|
1029 |
-
$timezone = "Asia/Almaty";
|
1030 |
-
break;
|
1031 |
-
}
|
1032 |
-
break;
|
1033 |
-
case "LA":
|
1034 |
-
$timezone = "Asia/Vientiane";
|
1035 |
-
break;
|
1036 |
-
case "LB":
|
1037 |
-
$timezone = "Asia/Beirut";
|
1038 |
-
break;
|
1039 |
-
case "LC":
|
1040 |
-
$timezone = "America/St_Lucia";
|
1041 |
-
break;
|
1042 |
-
case "LI":
|
1043 |
-
$timezone = "Europe/Vaduz";
|
1044 |
-
break;
|
1045 |
-
case "LK":
|
1046 |
-
$timezone = "Asia/Colombo";
|
1047 |
-
break;
|
1048 |
-
case "LR":
|
1049 |
-
$timezone = "Africa/Monrovia";
|
1050 |
-
break;
|
1051 |
-
case "LS":
|
1052 |
-
$timezone = "Africa/Maseru";
|
1053 |
-
break;
|
1054 |
-
case "LT":
|
1055 |
-
$timezone = "Europe/Vilnius";
|
1056 |
-
break;
|
1057 |
-
case "LU":
|
1058 |
-
$timezone = "Europe/Luxembourg";
|
1059 |
-
break;
|
1060 |
-
case "LV":
|
1061 |
-
$timezone = "Europe/Riga";
|
1062 |
-
break;
|
1063 |
-
case "LY":
|
1064 |
-
$timezone = "Africa/Tripoli";
|
1065 |
-
break;
|
1066 |
-
case "MA":
|
1067 |
-
$timezone = "Africa/Casablanca";
|
1068 |
-
break;
|
1069 |
-
case "MC":
|
1070 |
-
$timezone = "Europe/Monaco";
|
1071 |
-
break;
|
1072 |
-
case "MD":
|
1073 |
-
$timezone = "Europe/Chisinau";
|
1074 |
-
break;
|
1075 |
-
case "ME":
|
1076 |
-
$timezone = "Europe/Podgorica";
|
1077 |
-
break;
|
1078 |
-
case "MF":
|
1079 |
-
$timezone = "America/Marigot";
|
1080 |
-
break;
|
1081 |
-
case "MG":
|
1082 |
-
$timezone = "Indian/Antananarivo";
|
1083 |
-
break;
|
1084 |
-
case "MH":
|
1085 |
-
$timezone = "Pacific/Kwajalein";
|
1086 |
-
break;
|
1087 |
-
case "MK":
|
1088 |
-
$timezone = "Europe/Skopje";
|
1089 |
-
break;
|
1090 |
-
case "ML":
|
1091 |
-
$timezone = "Africa/Bamako";
|
1092 |
-
break;
|
1093 |
-
case "MM":
|
1094 |
-
$timezone = "Asia/Rangoon";
|
1095 |
-
break;
|
1096 |
-
case "MN":
|
1097 |
-
switch ($region) {
|
1098 |
-
case "06":
|
1099 |
-
$timezone = "Asia/Choibalsan";
|
1100 |
-
break;
|
1101 |
-
case "11":
|
1102 |
-
$timezone = "Asia/Ulaanbaatar";
|
1103 |
-
break;
|
1104 |
-
case "17":
|
1105 |
-
$timezone = "Asia/Choibalsan";
|
1106 |
-
break;
|
1107 |
-
case "19":
|
1108 |
-
$timezone = "Asia/Hovd";
|
1109 |
-
break;
|
1110 |
-
case "20":
|
1111 |
-
$timezone = "Asia/Ulaanbaatar";
|
1112 |
-
break;
|
1113 |
-
case "21":
|
1114 |
-
$timezone = "Asia/Ulaanbaatar";
|
1115 |
-
break;
|
1116 |
-
case "25":
|
1117 |
-
$timezone = "Asia/Ulaanbaatar";
|
1118 |
-
break;
|
1119 |
-
}
|
1120 |
-
break;
|
1121 |
-
case "MO":
|
1122 |
-
$timezone = "Asia/Macau";
|
1123 |
-
break;
|
1124 |
-
case "MP":
|
1125 |
-
$timezone = "Pacific/Saipan";
|
1126 |
-
break;
|
1127 |
-
case "MQ":
|
1128 |
-
$timezone = "America/Martinique";
|
1129 |
-
break;
|
1130 |
-
case "MR":
|
1131 |
-
$timezone = "Africa/Nouakchott";
|
1132 |
-
break;
|
1133 |
-
case "MS":
|
1134 |
-
$timezone = "America/Montserrat";
|
1135 |
-
break;
|
1136 |
-
case "MT":
|
1137 |
-
$timezone = "Europe/Malta";
|
1138 |
-
break;
|
1139 |
-
case "MU":
|
1140 |
-
$timezone = "Indian/Mauritius";
|
1141 |
-
break;
|
1142 |
-
case "MV":
|
1143 |
-
$timezone = "Indian/Maldives";
|
1144 |
-
break;
|
1145 |
-
case "MW":
|
1146 |
-
$timezone = "Africa/Blantyre";
|
1147 |
-
break;
|
1148 |
-
case "MX":
|
1149 |
-
switch ($region) {
|
1150 |
-
case "01":
|
1151 |
-
$timezone = "America/Mexico_City";
|
1152 |
-
break;
|
1153 |
-
case "02":
|
1154 |
-
$timezone = "America/Tijuana";
|
1155 |
-
break;
|
1156 |
-
case "03":
|
1157 |
-
$timezone = "America/Hermosillo";
|
1158 |
-
break;
|
1159 |
-
case "04":
|
1160 |
-
$timezone = "America/Merida";
|
1161 |
-
break;
|
1162 |
-
case "05":
|
1163 |
-
$timezone = "America/Mexico_City";
|
1164 |
-
break;
|
1165 |
-
case "06":
|
1166 |
-
$timezone = "America/Chihuahua";
|
1167 |
-
break;
|
1168 |
-
case "07":
|
1169 |
-
$timezone = "America/Monterrey";
|
1170 |
-
break;
|
1171 |
-
case "08":
|
1172 |
-
$timezone = "America/Mexico_City";
|
1173 |
-
break;
|
1174 |
-
case "09":
|
1175 |
-
$timezone = "America/Mexico_City";
|
1176 |
-
break;
|
1177 |
-
case "10":
|
1178 |
-
$timezone = "America/Mazatlan";
|
1179 |
-
break;
|
1180 |
-
case "11":
|
1181 |
-
$timezone = "America/Mexico_City";
|
1182 |
-
break;
|
1183 |
-
case "12":
|
1184 |
-
$timezone = "America/Mexico_City";
|
1185 |
-
break;
|
1186 |
-
case "13":
|
1187 |
-
$timezone = "America/Mexico_City";
|
1188 |
-
break;
|
1189 |
-
case "14":
|
1190 |
-
$timezone = "America/Mazatlan";
|
1191 |
-
break;
|
1192 |
-
case "15":
|
1193 |
-
$timezone = "America/Chihuahua";
|
1194 |
-
break;
|
1195 |
-
case "16":
|
1196 |
-
$timezone = "America/Mexico_City";
|
1197 |
-
break;
|
1198 |
-
case "17":
|
1199 |
-
$timezone = "America/Mexico_City";
|
1200 |
-
break;
|
1201 |
-
case "18":
|
1202 |
-
$timezone = "America/Mazatlan";
|
1203 |
-
break;
|
1204 |
-
case "19":
|
1205 |
-
$timezone = "America/Monterrey";
|
1206 |
-
break;
|
1207 |
-
case "20":
|
1208 |
-
$timezone = "America/Mexico_City";
|
1209 |
-
break;
|
1210 |
-
case "21":
|
1211 |
-
$timezone = "America/Mexico_City";
|
1212 |
-
break;
|
1213 |
-
case "22":
|
1214 |
-
$timezone = "America/Mexico_City";
|
1215 |
-
break;
|
1216 |
-
case "23":
|
1217 |
-
$timezone = "America/Cancun";
|
1218 |
-
break;
|
1219 |
-
case "24":
|
1220 |
-
$timezone = "America/Mexico_City";
|
1221 |
-
break;
|
1222 |
-
case "25":
|
1223 |
-
$timezone = "America/Mazatlan";
|
1224 |
-
break;
|
1225 |
-
case "26":
|
1226 |
-
$timezone = "America/Hermosillo";
|
1227 |
-
break;
|
1228 |
-
case "27":
|
1229 |
-
$timezone = "America/Merida";
|
1230 |
-
break;
|
1231 |
-
case "28":
|
1232 |
-
$timezone = "America/Monterrey";
|
1233 |
-
break;
|
1234 |
-
case "29":
|
1235 |
-
$timezone = "America/Mexico_City";
|
1236 |
-
break;
|
1237 |
-
case "30":
|
1238 |
-
$timezone = "America/Mexico_City";
|
1239 |
-
break;
|
1240 |
-
case "31":
|
1241 |
-
$timezone = "America/Merida";
|
1242 |
-
break;
|
1243 |
-
case "32":
|
1244 |
-
$timezone = "America/Monterrey";
|
1245 |
-
break;
|
1246 |
-
}
|
1247 |
-
break;
|
1248 |
-
case "MY":
|
1249 |
-
switch ($region) {
|
1250 |
-
case "01":
|
1251 |
-
$timezone = "Asia/Kuala_Lumpur";
|
1252 |
-
break;
|
1253 |
-
case "02":
|
1254 |
-
$timezone = "Asia/Kuala_Lumpur";
|
1255 |
-
break;
|
1256 |
-
case "03":
|
1257 |
-
$timezone = "Asia/Kuala_Lumpur";
|
1258 |
-
break;
|
1259 |
-
case "04":
|
1260 |
-
$timezone = "Asia/Kuala_Lumpur";
|
1261 |
-
break;
|
1262 |
-
case "05":
|
1263 |
-
$timezone = "Asia/Kuala_Lumpur";
|
1264 |
-
break;
|
1265 |
-
case "06":
|
1266 |
-
$timezone = "Asia/Kuala_Lumpur";
|
1267 |
-
break;
|
1268 |
-
case "07":
|
1269 |
-
$timezone = "Asia/Kuala_Lumpur";
|
1270 |
-
break;
|
1271 |
-
case "08":
|
1272 |
-
$timezone = "Asia/Kuala_Lumpur";
|
1273 |
-
break;
|
1274 |
-
case "09":
|
1275 |
-
$timezone = "Asia/Kuala_Lumpur";
|
1276 |
-
break;
|
1277 |
-
case "11":
|
1278 |
-
$timezone = "Asia/Kuching";
|
1279 |
-
break;
|
1280 |
-
case "12":
|
1281 |
-
$timezone = "Asia/Kuala_Lumpur";
|
1282 |
-
break;
|
1283 |
-
case "13":
|
1284 |
-
$timezone = "Asia/Kuala_Lumpur";
|
1285 |
-
break;
|
1286 |
-
case "14":
|
1287 |
-
$timezone = "Asia/Kuala_Lumpur";
|
1288 |
-
break;
|
1289 |
-
case "15":
|
1290 |
-
$timezone = "Asia/Kuching";
|
1291 |
-
break;
|
1292 |
-
case "16":
|
1293 |
-
$timezone = "Asia/Kuching";
|
1294 |
-
break;
|
1295 |
-
}
|
1296 |
-
break;
|
1297 |
-
case "MZ":
|
1298 |
-
$timezone = "Africa/Maputo";
|
1299 |
-
break;
|
1300 |
-
case "NA":
|
1301 |
-
$timezone = "Africa/Windhoek";
|
1302 |
-
break;
|
1303 |
-
case "NC":
|
1304 |
-
$timezone = "Pacific/Noumea";
|
1305 |
-
break;
|
1306 |
-
case "NE":
|
1307 |
-
$timezone = "Africa/Niamey";
|
1308 |
-
break;
|
1309 |
-
case "NF":
|
1310 |
-
$timezone = "Pacific/Norfolk";
|
1311 |
-
break;
|
1312 |
-
case "NG":
|
1313 |
-
$timezone = "Africa/Lagos";
|
1314 |
-
break;
|
1315 |
-
case "NI":
|
1316 |
-
$timezone = "America/Managua";
|
1317 |
-
break;
|
1318 |
-
case "NL":
|
1319 |
-
$timezone = "Europe/Amsterdam";
|
1320 |
-
break;
|
1321 |
-
case "NO":
|
1322 |
-
$timezone = "Europe/Oslo";
|
1323 |
-
break;
|
1324 |
-
case "NP":
|
1325 |
-
$timezone = "Asia/Kathmandu";
|
1326 |
-
break;
|
1327 |
-
case "NR":
|
1328 |
-
$timezone = "Pacific/Nauru";
|
1329 |
-
break;
|
1330 |
-
case "NU":
|
1331 |
-
$timezone = "Pacific/Niue";
|
1332 |
-
break;
|
1333 |
-
case "NZ":
|
1334 |
-
switch ($region) {
|
1335 |
-
case "85":
|
1336 |
-
$timezone = "Pacific/Auckland";
|
1337 |
-
break;
|
1338 |
-
case "E7":
|
1339 |
-
$timezone = "Pacific/Auckland";
|
1340 |
-
break;
|
1341 |
-
case "E8":
|
1342 |
-
$timezone = "Pacific/Auckland";
|
1343 |
-
break;
|
1344 |
-
case "E9":
|
1345 |
-
$timezone = "Pacific/Auckland";
|
1346 |
-
break;
|
1347 |
-
case "F1":
|
1348 |
-
$timezone = "Pacific/Auckland";
|
1349 |
-
break;
|
1350 |
-
case "F2":
|
1351 |
-
$timezone = "Pacific/Auckland";
|
1352 |
-
break;
|
1353 |
-
case "F3":
|
1354 |
-
$timezone = "Pacific/Auckland";
|
1355 |
-
break;
|
1356 |
-
case "F4":
|
1357 |
-
$timezone = "Pacific/Auckland";
|
1358 |
-
break;
|
1359 |
-
case "F5":
|
1360 |
-
$timezone = "Pacific/Auckland";
|
1361 |
-
break;
|
1362 |
-
case "F6":
|
1363 |
-
$timezone = "Pacific/Auckland";
|
1364 |
-
break;
|
1365 |
-
case "F7":
|
1366 |
-
$timezone = "Pacific/Chatham";
|
1367 |
-
break;
|
1368 |
-
case "F8":
|
1369 |
-
$timezone = "Pacific/Auckland";
|
1370 |
-
break;
|
1371 |
-
case "F9":
|
1372 |
-
$timezone = "Pacific/Auckland";
|
1373 |
-
break;
|
1374 |
-
case "G1":
|
1375 |
-
$timezone = "Pacific/Auckland";
|
1376 |
-
break;
|
1377 |
-
case "G2":
|
1378 |
-
$timezone = "Pacific/Auckland";
|
1379 |
-
break;
|
1380 |
-
case "G3":
|
1381 |
-
$timezone = "Pacific/Auckland";
|
1382 |
-
break;
|
1383 |
-
}
|
1384 |
-
break;
|
1385 |
-
case "OM":
|
1386 |
-
$timezone = "Asia/Muscat";
|
1387 |
-
break;
|
1388 |
-
case "PA":
|
1389 |
-
$timezone = "America/Panama";
|
1390 |
-
break;
|
1391 |
-
case "PE":
|
1392 |
-
$timezone = "America/Lima";
|
1393 |
-
break;
|
1394 |
-
case "PF":
|
1395 |
-
$timezone = "Pacific/Marquesas";
|
1396 |
-
break;
|
1397 |
-
case "PG":
|
1398 |
-
$timezone = "Pacific/Port_Moresby";
|
1399 |
-
break;
|
1400 |
-
case "PH":
|
1401 |
-
$timezone = "Asia/Manila";
|
1402 |
-
break;
|
1403 |
-
case "PK":
|
1404 |
-
$timezone = "Asia/Karachi";
|
1405 |
-
break;
|
1406 |
-
case "PL":
|
1407 |
-
$timezone = "Europe/Warsaw";
|
1408 |
-
break;
|
1409 |
-
case "PM":
|
1410 |
-
$timezone = "America/Miquelon";
|
1411 |
-
break;
|
1412 |
-
case "PN":
|
1413 |
-
$timezone = "Pacific/Pitcairn";
|
1414 |
-
break;
|
1415 |
-
case "PR":
|
1416 |
-
$timezone = "America/Puerto_Rico";
|
1417 |
-
break;
|
1418 |
-
case "PS":
|
1419 |
-
$timezone = "Asia/Gaza";
|
1420 |
-
break;
|
1421 |
-
case "PT":
|
1422 |
-
switch ($region) {
|
1423 |
-
case "02":
|
1424 |
-
$timezone = "Europe/Lisbon";
|
1425 |
-
break;
|
1426 |
-
case "03":
|
1427 |
-
$timezone = "Europe/Lisbon";
|
1428 |
-
break;
|
1429 |
-
case "04":
|
1430 |
-
$timezone = "Europe/Lisbon";
|
1431 |
-
break;
|
1432 |
-
case "05":
|
1433 |
-
$timezone = "Europe/Lisbon";
|
1434 |
-
break;
|
1435 |
-
case "06":
|
1436 |
-
$timezone = "Europe/Lisbon";
|
1437 |
-
break;
|
1438 |
-
case "07":
|
1439 |
-
$timezone = "Europe/Lisbon";
|
1440 |
-
break;
|
1441 |
-
case "08":
|
1442 |
-
$timezone = "Europe/Lisbon";
|
1443 |
-
break;
|
1444 |
-
case "09":
|
1445 |
-
$timezone = "Europe/Lisbon";
|
1446 |
-
break;
|
1447 |
-
case "10":
|
1448 |
-
$timezone = "Atlantic/Madeira";
|
1449 |
-
break;
|
1450 |
-
case "11":
|
1451 |
-
$timezone = "Europe/Lisbon";
|
1452 |
-
break;
|
1453 |
-
case "13":
|
1454 |
-
$timezone = "Europe/Lisbon";
|
1455 |
-
break;
|
1456 |
-
case "14":
|
1457 |
-
$timezone = "Europe/Lisbon";
|
1458 |
-
break;
|
1459 |
-
case "16":
|
1460 |
-
$timezone = "Europe/Lisbon";
|
1461 |
-
break;
|
1462 |
-
case "17":
|
1463 |
-
$timezone = "Europe/Lisbon";
|
1464 |
-
break;
|
1465 |
-
case "18":
|
1466 |
-
$timezone = "Europe/Lisbon";
|
1467 |
-
break;
|
1468 |
-
case "19":
|
1469 |
-
$timezone = "Europe/Lisbon";
|
1470 |
-
break;
|
1471 |
-
case "20":
|
1472 |
-
$timezone = "Europe/Lisbon";
|
1473 |
-
break;
|
1474 |
-
case "21":
|
1475 |
-
$timezone = "Europe/Lisbon";
|
1476 |
-
break;
|
1477 |
-
case "22":
|
1478 |
-
$timezone = "Europe/Lisbon";
|
1479 |
-
break;
|
1480 |
-
case "23":
|
1481 |
-
$timezone = "Atlantic/Azores";
|
1482 |
-
break;
|
1483 |
-
}
|
1484 |
-
break;
|
1485 |
-
case "PW":
|
1486 |
-
$timezone = "Pacific/Palau";
|
1487 |
-
break;
|
1488 |
-
case "PY":
|
1489 |
-
$timezone = "America/Asuncion";
|
1490 |
-
break;
|
1491 |
-
case "QA":
|
1492 |
-
$timezone = "Asia/Qatar";
|
1493 |
-
break;
|
1494 |
-
case "RE":
|
1495 |
-
$timezone = "Indian/Reunion";
|
1496 |
-
break;
|
1497 |
-
case "RO":
|
1498 |
-
$timezone = "Europe/Bucharest";
|
1499 |
-
break;
|
1500 |
-
case "RS":
|
1501 |
-
$timezone = "Europe/Belgrade";
|
1502 |
-
break;
|
1503 |
-
case "RU":
|
1504 |
-
switch ($region) {
|
1505 |
-
case "01":
|
1506 |
-
$timezone = "Europe/Volgograd";
|
1507 |
-
break;
|
1508 |
-
case "02":
|
1509 |
-
$timezone = "Asia/Irkutsk";
|
1510 |
-
break;
|
1511 |
-
case "03":
|
1512 |
-
$timezone = "Asia/Novokuznetsk";
|
1513 |
-
break;
|
1514 |
-
case "04":
|
1515 |
-
$timezone = "Asia/Novosibirsk";
|
1516 |
-
break;
|
1517 |
-
case "05":
|
1518 |
-
$timezone = "Asia/Vladivostok";
|
1519 |
-
break;
|
1520 |
-
case "06":
|
1521 |
-
$timezone = "Europe/Moscow";
|
1522 |
-
break;
|
1523 |
-
case "07":
|
1524 |
-
$timezone = "Europe/Volgograd";
|
1525 |
-
break;
|
1526 |
-
case "08":
|
1527 |
-
$timezone = "Europe/Samara";
|
1528 |
-
break;
|
1529 |
-
case "09":
|
1530 |
-
$timezone = "Europe/Moscow";
|
1531 |
-
break;
|
1532 |
-
case "10":
|
1533 |
-
$timezone = "Europe/Moscow";
|
1534 |
-
break;
|
1535 |
-
case "11":
|
1536 |
-
$timezone = "Asia/Irkutsk";
|
1537 |
-
break;
|
1538 |
-
case "12":
|
1539 |
-
$timezone = "Europe/Volgograd";
|
1540 |
-
break;
|
1541 |
-
case "13":
|
1542 |
-
$timezone = "Asia/Yekaterinburg";
|
1543 |
-
break;
|
1544 |
-
case "14":
|
1545 |
-
$timezone = "Asia/Irkutsk";
|
1546 |
-
break;
|
1547 |
-
case "15":
|
1548 |
-
$timezone = "Asia/Anadyr";
|
1549 |
-
break;
|
1550 |
-
case "16":
|
1551 |
-
$timezone = "Europe/Samara";
|
1552 |
-
break;
|
1553 |
-
case "17":
|
1554 |
-
$timezone = "Europe/Volgograd";
|
1555 |
-
break;
|
1556 |
-
case "18":
|
1557 |
-
$timezone = "Asia/Krasnoyarsk";
|
1558 |
-
break;
|
1559 |
-
case "20":
|
1560 |
-
$timezone = "Asia/Irkutsk";
|
1561 |
-
break;
|
1562 |
-
case "21":
|
1563 |
-
$timezone = "Europe/Moscow";
|
1564 |
-
break;
|
1565 |
-
case "22":
|
1566 |
-
$timezone = "Europe/Volgograd";
|
1567 |
-
break;
|
1568 |
-
case "23":
|
1569 |
-
$timezone = "Europe/Kaliningrad";
|
1570 |
-
break;
|
1571 |
-
case "24":
|
1572 |
-
$timezone = "Europe/Volgograd";
|
1573 |
-
break;
|
1574 |
-
case "25":
|
1575 |
-
$timezone = "Europe/Moscow";
|
1576 |
-
break;
|
1577 |
-
case "26":
|
1578 |
-
$timezone = "Asia/Kamchatka";
|
1579 |
-
break;
|
1580 |
-
case "27":
|
1581 |
-
$timezone = "Europe/Volgograd";
|
1582 |
-
break;
|
1583 |
-
case "28":
|
1584 |
-
$timezone = "Europe/Moscow";
|
1585 |
-
break;
|
1586 |
-
case "29":
|
1587 |
-
$timezone = "Asia/Novokuznetsk";
|
1588 |
-
break;
|
1589 |
-
case "30":
|
1590 |
-
$timezone = "Asia/Vladivostok";
|
1591 |
-
break;
|
1592 |
-
case "31":
|
1593 |
-
$timezone = "Asia/Krasnoyarsk";
|
1594 |
-
break;
|
1595 |
-
case "32":
|
1596 |
-
$timezone = "Asia/Omsk";
|
1597 |
-
break;
|
1598 |
-
case "33":
|
1599 |
-
$timezone = "Asia/Yekaterinburg";
|
1600 |
-
break;
|
1601 |
-
case "34":
|
1602 |
-
$timezone = "Asia/Yekaterinburg";
|
1603 |
-
break;
|
1604 |
-
case "35":
|
1605 |
-
$timezone = "Asia/Yekaterinburg";
|
1606 |
-
break;
|
1607 |
-
case "36":
|
1608 |
-
$timezone = "Asia/Anadyr";
|
1609 |
-
break;
|
1610 |
-
case "37":
|
1611 |
-
$timezone = "Europe/Moscow";
|
1612 |
-
break;
|
1613 |
-
case "38":
|
1614 |
-
$timezone = "Europe/Volgograd";
|
1615 |
-
break;
|
1616 |
-
case "39":
|
1617 |
-
$timezone = "Asia/Krasnoyarsk";
|
1618 |
-
break;
|
1619 |
-
case "40":
|
1620 |
-
$timezone = "Asia/Yekaterinburg";
|
1621 |
-
break;
|
1622 |
-
case "41":
|
1623 |
-
$timezone = "Europe/Moscow";
|
1624 |
-
break;
|
1625 |
-
case "42":
|
1626 |
-
$timezone = "Europe/Moscow";
|
1627 |
-
break;
|
1628 |
-
case "43":
|
1629 |
-
$timezone = "Europe/Moscow";
|
1630 |
-
break;
|
1631 |
-
case "44":
|
1632 |
-
$timezone = "Asia/Magadan";
|
1633 |
-
break;
|
1634 |
-
case "45":
|
1635 |
-
$timezone = "Europe/Samara";
|
1636 |
-
break;
|
1637 |
-
case "46":
|
1638 |
-
$timezone = "Europe/Samara";
|
1639 |
-
break;
|
1640 |
-
case "47":
|
1641 |
-
$timezone = "Europe/Moscow";
|
1642 |
-
break;
|
1643 |
-
case "48":
|
1644 |
-
$timezone = "Europe/Moscow";
|
1645 |
-
break;
|
1646 |
-
case "49":
|
1647 |
-
$timezone = "Europe/Moscow";
|
1648 |
-
break;
|
1649 |
-
case "50":
|
1650 |
-
$timezone = "Asia/Yekaterinburg";
|
1651 |
-
break;
|
1652 |
-
case "51":
|
1653 |
-
$timezone = "Europe/Moscow";
|
1654 |
-
break;
|
1655 |
-
case "52":
|
1656 |
-
$timezone = "Europe/Moscow";
|
1657 |
-
break;
|
1658 |
-
case "53":
|
1659 |
-
$timezone = "Asia/Novosibirsk";
|
1660 |
-
break;
|
1661 |
-
case "54":
|
1662 |
-
$timezone = "Asia/Omsk";
|
1663 |
-
break;
|
1664 |
-
case "55":
|
1665 |
-
$timezone = "Europe/Samara";
|
1666 |
-
break;
|
1667 |
-
case "56":
|
1668 |
-
$timezone = "Europe/Moscow";
|
1669 |
-
break;
|
1670 |
-
case "57":
|
1671 |
-
$timezone = "Europe/Samara";
|
1672 |
-
break;
|
1673 |
-
case "58":
|
1674 |
-
$timezone = "Asia/Yekaterinburg";
|
1675 |
-
break;
|
1676 |
-
case "59":
|
1677 |
-
$timezone = "Asia/Vladivostok";
|
1678 |
-
break;
|
1679 |
-
case "60":
|
1680 |
-
$timezone = "Europe/Kaliningrad";
|
1681 |
-
break;
|
1682 |
-
case "61":
|
1683 |
-
$timezone = "Europe/Volgograd";
|
1684 |
-
break;
|
1685 |
-
case "62":
|
1686 |
-
$timezone = "Europe/Moscow";
|
1687 |
-
break;
|
1688 |
-
case "63":
|
1689 |
-
$timezone = "Asia/Yakutsk";
|
1690 |
-
break;
|
1691 |
-
case "64":
|
1692 |
-
$timezone = "Asia/Sakhalin";
|
1693 |
-
break;
|
1694 |
-
case "65":
|
1695 |
-
$timezone = "Europe/Samara";
|
1696 |
-
break;
|
1697 |
-
case "66":
|
1698 |
-
$timezone = "Europe/Moscow";
|
1699 |
-
break;
|
1700 |
-
case "67":
|
1701 |
-
$timezone = "Europe/Samara";
|
1702 |
-
break;
|
1703 |
-
case "68":
|
1704 |
-
$timezone = "Europe/Volgograd";
|
1705 |
-
break;
|
1706 |
-
case "69":
|
1707 |
-
$timezone = "Europe/Moscow";
|
1708 |
-
break;
|
1709 |
-
case "70":
|
1710 |
-
$timezone = "Europe/Volgograd";
|
1711 |
-
break;
|
1712 |
-
case "71":
|
1713 |
-
$timezone = "Asia/Yekaterinburg";
|
1714 |
-
break;
|
1715 |
-
case "72":
|
1716 |
-
$timezone = "Europe/Moscow";
|
1717 |
-
break;
|
1718 |
-
case "73":
|
1719 |
-
$timezone = "Europe/Samara";
|
1720 |
-
break;
|
1721 |
-
case "74":
|
1722 |
-
$timezone = "Asia/Krasnoyarsk";
|
1723 |
-
break;
|
1724 |
-
case "75":
|
1725 |
-
$timezone = "Asia/Novosibirsk";
|
1726 |
-
break;
|
1727 |
-
case "76":
|
1728 |
-
$timezone = "Europe/Moscow";
|
1729 |
-
break;
|
1730 |
-
case "77":
|
1731 |
-
$timezone = "Europe/Moscow";
|
1732 |
-
break;
|
1733 |
-
case "78":
|
1734 |
-
$timezone = "Asia/Yekaterinburg";
|
1735 |
-
break;
|
1736 |
-
case "79":
|
1737 |
-
$timezone = "Asia/Irkutsk";
|
1738 |
-
break;
|
1739 |
-
case "80":
|
1740 |
-
$timezone = "Asia/Yekaterinburg";
|
1741 |
-
break;
|
1742 |
-
case "81":
|
1743 |
-
$timezone = "Europe/Samara";
|
1744 |
-
break;
|
1745 |
-
case "82":
|
1746 |
-
$timezone = "Asia/Irkutsk";
|
1747 |
-
break;
|
1748 |
-
case "83":
|
1749 |
-
$timezone = "Europe/Moscow";
|
1750 |
-
break;
|
1751 |
-
case "84":
|
1752 |
-
$timezone = "Europe/Volgograd";
|
1753 |
-
break;
|
1754 |
-
case "85":
|
1755 |
-
$timezone = "Europe/Moscow";
|
1756 |
-
break;
|
1757 |
-
case "86":
|
1758 |
-
$timezone = "Europe/Moscow";
|
1759 |
-
break;
|
1760 |
-
case "87":
|
1761 |
-
$timezone = "Asia/Novosibirsk";
|
1762 |
-
break;
|
1763 |
-
case "88":
|
1764 |
-
$timezone = "Europe/Moscow";
|
1765 |
-
break;
|
1766 |
-
case "89":
|
1767 |
-
$timezone = "Asia/Vladivostok";
|
1768 |
-
break;
|
1769 |
-
case "90":
|
1770 |
-
$timezone = "Asia/Yekaterinburg";
|
1771 |
-
break;
|
1772 |
-
case "91":
|
1773 |
-
$timezone = "Asia/Krasnoyarsk";
|
1774 |
-
break;
|
1775 |
-
case "92":
|
1776 |
-
$timezone = "Asia/Anadyr";
|
1777 |
-
break;
|
1778 |
-
case "93":
|
1779 |
-
$timezone = "Asia/Irkutsk";
|
1780 |
-
break;
|
1781 |
-
}
|
1782 |
-
break;
|
1783 |
-
case "RW":
|
1784 |
-
$timezone = "Africa/Kigali";
|
1785 |
-
break;
|
1786 |
-
case "SA":
|
1787 |
-
$timezone = "Asia/Riyadh";
|
1788 |
-
break;
|
1789 |
-
case "SB":
|
1790 |
-
$timezone = "Pacific/Guadalcanal";
|
1791 |
-
break;
|
1792 |
-
case "SC":
|
1793 |
-
$timezone = "Indian/Mahe";
|
1794 |
-
break;
|
1795 |
-
case "SD":
|
1796 |
-
$timezone = "Africa/Khartoum";
|
1797 |
-
break;
|
1798 |
-
case "SE":
|
1799 |
-
$timezone = "Europe/Stockholm";
|
1800 |
-
break;
|
1801 |
-
case "SG":
|
1802 |
-
$timezone = "Asia/Singapore";
|
1803 |
-
break;
|
1804 |
-
case "SH":
|
1805 |
-
$timezone = "Atlantic/St_Helena";
|
1806 |
-
break;
|
1807 |
-
case "SI":
|
1808 |
-
$timezone = "Europe/Ljubljana";
|
1809 |
-
break;
|
1810 |
-
case "SJ":
|
1811 |
-
$timezone = "Arctic/Longyearbyen";
|
1812 |
-
break;
|
1813 |
-
case "SK":
|
1814 |
-
$timezone = "Europe/Bratislava";
|
1815 |
-
break;
|
1816 |
-
case "SL":
|
1817 |
-
$timezone = "Africa/Freetown";
|
1818 |
-
break;
|
1819 |
-
case "SM":
|
1820 |
-
$timezone = "Europe/San_Marino";
|
1821 |
-
break;
|
1822 |
-
case "SN":
|
1823 |
-
$timezone = "Africa/Dakar";
|
1824 |
-
break;
|
1825 |
-
case "SO":
|
1826 |
-
$timezone = "Africa/Mogadishu";
|
1827 |
-
break;
|
1828 |
-
case "SR":
|
1829 |
-
$timezone = "America/Paramaribo";
|
1830 |
-
break;
|
1831 |
-
case "SS":
|
1832 |
-
$timezone = "Africa/Juba";
|
1833 |
-
break;
|
1834 |
-
case "ST":
|
1835 |
-
$timezone = "Africa/Sao_Tome";
|
1836 |
-
break;
|
1837 |
-
case "SV":
|
1838 |
-
$timezone = "America/El_Salvador";
|
1839 |
-
break;
|
1840 |
-
case "SX":
|
1841 |
-
$timezone = "America/Curacao";
|
1842 |
-
break;
|
1843 |
-
case "SY":
|
1844 |
-
$timezone = "Asia/Damascus";
|
1845 |
-
break;
|
1846 |
-
case "SZ":
|
1847 |
-
$timezone = "Africa/Mbabane";
|
1848 |
-
break;
|
1849 |
-
case "TC":
|
1850 |
-
$timezone = "America/Grand_Turk";
|
1851 |
-
break;
|
1852 |
-
case "TD":
|
1853 |
-
$timezone = "Africa/Ndjamena";
|
1854 |
-
break;
|
1855 |
-
case "TF":
|
1856 |
-
$timezone = "Indian/Kerguelen";
|
1857 |
-
break;
|
1858 |
-
case "TG":
|
1859 |
-
$timezone = "Africa/Lome";
|
1860 |
-
break;
|
1861 |
-
case "TH":
|
1862 |
-
$timezone = "Asia/Bangkok";
|
1863 |
-
break;
|
1864 |
-
case "TJ":
|
1865 |
-
$timezone = "Asia/Dushanbe";
|
1866 |
-
break;
|
1867 |
-
case "TK":
|
1868 |
-
$timezone = "Pacific/Fakaofo";
|
1869 |
-
break;
|
1870 |
-
case "TL":
|
1871 |
-
$timezone = "Asia/Dili";
|
1872 |
-
break;
|
1873 |
-
case "TM":
|
1874 |
-
$timezone = "Asia/Ashgabat";
|
1875 |
-
break;
|
1876 |
-
case "TN":
|
1877 |
-
$timezone = "Africa/Tunis";
|
1878 |
-
break;
|
1879 |
-
case "TO":
|
1880 |
-
$timezone = "Pacific/Tongatapu";
|
1881 |
-
break;
|
1882 |
-
case "TR":
|
1883 |
-
$timezone = "Asia/Istanbul";
|
1884 |
-
break;
|
1885 |
-
case "TT":
|
1886 |
-
$timezone = "America/Port_of_Spain";
|
1887 |
-
break;
|
1888 |
-
case "TV":
|
1889 |
-
$timezone = "Pacific/Funafuti";
|
1890 |
-
break;
|
1891 |
-
case "TW":
|
1892 |
-
$timezone = "Asia/Taipei";
|
1893 |
-
break;
|
1894 |
-
case "TZ":
|
1895 |
-
$timezone = "Africa/Dar_es_Salaam";
|
1896 |
-
break;
|
1897 |
-
case "UA":
|
1898 |
-
switch ($region) {
|
1899 |
-
case "01":
|
1900 |
-
$timezone = "Europe/Kiev";
|
1901 |
-
break;
|
1902 |
-
case "02":
|
1903 |
-
$timezone = "Europe/Kiev";
|
1904 |
-
break;
|
1905 |
-
case "03":
|
1906 |
-
$timezone = "Europe/Uzhgorod";
|
1907 |
-
break;
|
1908 |
-
case "04":
|
1909 |
-
$timezone = "Europe/Zaporozhye";
|
1910 |
-
break;
|
1911 |
-
case "05":
|
1912 |
-
$timezone = "Europe/Zaporozhye";
|
1913 |
-
break;
|
1914 |
-
case "06":
|
1915 |
-
$timezone = "Europe/Uzhgorod";
|
1916 |
-
break;
|
1917 |
-
case "07":
|
1918 |
-
$timezone = "Europe/Zaporozhye";
|
1919 |
-
break;
|
1920 |
-
case "08":
|
1921 |
-
$timezone = "Europe/Simferopol";
|
1922 |
-
break;
|
1923 |
-
case "09":
|
1924 |
-
$timezone = "Europe/Kiev";
|
1925 |
-
break;
|
1926 |
-
case "10":
|
1927 |
-
$timezone = "Europe/Zaporozhye";
|
1928 |
-
break;
|
1929 |
-
case "11":
|
1930 |
-
$timezone = "Europe/Simferopol";
|
1931 |
-
break;
|
1932 |
-
case "12":
|
1933 |
-
$timezone = "Europe/Kiev";
|
1934 |
-
break;
|
1935 |
-
case "13":
|
1936 |
-
$timezone = "Europe/Kiev";
|
1937 |
-
break;
|
1938 |
-
case "14":
|
1939 |
-
$timezone = "Europe/Zaporozhye";
|
1940 |
-
break;
|
1941 |
-
case "15":
|
1942 |
-
$timezone = "Europe/Uzhgorod";
|
1943 |
-
break;
|
1944 |
-
case "16":
|
1945 |
-
$timezone = "Europe/Zaporozhye";
|
1946 |
-
break;
|
1947 |
-
case "17":
|
1948 |
-
$timezone = "Europe/Simferopol";
|
1949 |
-
break;
|
1950 |
-
case "18":
|
1951 |
-
$timezone = "Europe/Zaporozhye";
|
1952 |
-
break;
|
1953 |
-
case "19":
|
1954 |
-
$timezone = "Europe/Kiev";
|
1955 |
-
break;
|
1956 |
-
case "20":
|
1957 |
-
$timezone = "Europe/Simferopol";
|
1958 |
-
break;
|
1959 |
-
case "21":
|
1960 |
-
$timezone = "Europe/Kiev";
|
1961 |
-
break;
|
1962 |
-
case "22":
|
1963 |
-
$timezone = "Europe/Uzhgorod";
|
1964 |
-
break;
|
1965 |
-
case "23":
|
1966 |
-
$timezone = "Europe/Kiev";
|
1967 |
-
break;
|
1968 |
-
case "24":
|
1969 |
-
$timezone = "Europe/Uzhgorod";
|
1970 |
-
break;
|
1971 |
-
case "25":
|
1972 |
-
$timezone = "Europe/Uzhgorod";
|
1973 |
-
break;
|
1974 |
-
case "26":
|
1975 |
-
$timezone = "Europe/Zaporozhye";
|
1976 |
-
break;
|
1977 |
-
case "27":
|
1978 |
-
$timezone = "Europe/Kiev";
|
1979 |
-
break;
|
1980 |
-
}
|
1981 |
-
break;
|
1982 |
-
case "UG":
|
1983 |
-
$timezone = "Africa/Kampala";
|
1984 |
-
break;
|
1985 |
-
case "UM":
|
1986 |
-
$timezone = "Pacific/Wake";
|
1987 |
-
break;
|
1988 |
-
case "US":
|
1989 |
-
switch ($region) {
|
1990 |
-
case "AK":
|
1991 |
-
$timezone = "America/Anchorage";
|
1992 |
-
break;
|
1993 |
-
case "AL":
|
1994 |
-
$timezone = "America/Chicago";
|
1995 |
-
break;
|
1996 |
-
case "AR":
|
1997 |
-
$timezone = "America/Chicago";
|
1998 |
-
break;
|
1999 |
-
case "AZ":
|
2000 |
-
$timezone = "America/Phoenix";
|
2001 |
-
break;
|
2002 |
-
case "CA":
|
2003 |
-
$timezone = "America/Los_Angeles";
|
2004 |
-
break;
|
2005 |
-
case "CO":
|
2006 |
-
$timezone = "America/Denver";
|
2007 |
-
break;
|
2008 |
-
case "CT":
|
2009 |
-
$timezone = "America/New_York";
|
2010 |
-
break;
|
2011 |
-
case "DC":
|
2012 |
-
$timezone = "America/New_York";
|
2013 |
-
break;
|
2014 |
-
case "DE":
|
2015 |
-
$timezone = "America/New_York";
|
2016 |
-
break;
|
2017 |
-
case "FL":
|
2018 |
-
$timezone = "America/New_York";
|
2019 |
-
break;
|
2020 |
-
case "GA":
|
2021 |
-
$timezone = "America/New_York";
|
2022 |
-
break;
|
2023 |
-
case "HI":
|
2024 |
-
$timezone = "Pacific/Honolulu";
|
2025 |
-
break;
|
2026 |
-
case "IA":
|
2027 |
-
$timezone = "America/Chicago";
|
2028 |
-
break;
|
2029 |
-
case "ID":
|
2030 |
-
$timezone = "America/Denver";
|
2031 |
-
break;
|
2032 |
-
case "IL":
|
2033 |
-
$timezone = "America/Chicago";
|
2034 |
-
break;
|
2035 |
-
case "IN":
|
2036 |
-
$timezone = "America/Indiana/Indianapolis";
|
2037 |
-
break;
|
2038 |
-
case "KS":
|
2039 |
-
$timezone = "America/Chicago";
|
2040 |
-
break;
|
2041 |
-
case "KY":
|
2042 |
-
$timezone = "America/New_York";
|
2043 |
-
break;
|
2044 |
-
case "LA":
|
2045 |
-
$timezone = "America/Chicago";
|
2046 |
-
break;
|
2047 |
-
case "MA":
|
2048 |
-
$timezone = "America/New_York";
|
2049 |
-
break;
|
2050 |
-
case "MD":
|
2051 |
-
$timezone = "America/New_York";
|
2052 |
-
break;
|
2053 |
-
case "ME":
|
2054 |
-
$timezone = "America/New_York";
|
2055 |
-
break;
|
2056 |
-
case "MI":
|
2057 |
-
$timezone = "America/New_York";
|
2058 |
-
break;
|
2059 |
-
case "MN":
|
2060 |
-
$timezone = "America/Chicago";
|
2061 |
-
break;
|
2062 |
-
case "MO":
|
2063 |
-
$timezone = "America/Chicago";
|
2064 |
-
break;
|
2065 |
-
case "MS":
|
2066 |
-
$timezone = "America/Chicago";
|
2067 |
-
break;
|
2068 |
-
case "MT":
|
2069 |
-
$timezone = "America/Denver";
|
2070 |
-
break;
|
2071 |
-
case "NC":
|
2072 |
-
$timezone = "America/New_York";
|
2073 |
-
break;
|
2074 |
-
case "ND":
|
2075 |
-
$timezone = "America/Chicago";
|
2076 |
-
break;
|
2077 |
-
case "NE":
|
2078 |
-
$timezone = "America/Chicago";
|
2079 |
-
break;
|
2080 |
-
case "NH":
|
2081 |
-
$timezone = "America/New_York";
|
2082 |
-
break;
|
2083 |
-
case "NJ":
|
2084 |
-
$timezone = "America/New_York";
|
2085 |
-
break;
|
2086 |
-
case "NM":
|
2087 |
-
$timezone = "America/Denver";
|
2088 |
-
break;
|
2089 |
-
case "NV":
|
2090 |
-
$timezone = "America/Los_Angeles";
|
2091 |
-
break;
|
2092 |
-
case "NY":
|
2093 |
-
$timezone = "America/New_York";
|
2094 |
-
break;
|
2095 |
-
case "OH":
|
2096 |
-
$timezone = "America/New_York";
|
2097 |
-
break;
|
2098 |
-
case "OK":
|
2099 |
-
$timezone = "America/Chicago";
|
2100 |
-
break;
|
2101 |
-
case "OR":
|
2102 |
-
$timezone = "America/Los_Angeles";
|
2103 |
-
break;
|
2104 |
-
case "PA":
|
2105 |
-
$timezone = "America/New_York";
|
2106 |
-
break;
|
2107 |
-
case "RI":
|
2108 |
-
$timezone = "America/New_York";
|
2109 |
-
break;
|
2110 |
-
case "SC":
|
2111 |
-
$timezone = "America/New_York";
|
2112 |
-
break;
|
2113 |
-
case "SD":
|
2114 |
-
$timezone = "America/Chicago";
|
2115 |
-
break;
|
2116 |
-
case "TN":
|
2117 |
-
$timezone = "America/Chicago";
|
2118 |
-
break;
|
2119 |
-
case "TX":
|
2120 |
-
$timezone = "America/Chicago";
|
2121 |
-
break;
|
2122 |
-
case "UT":
|
2123 |
-
$timezone = "America/Denver";
|
2124 |
-
break;
|
2125 |
-
case "VA":
|
2126 |
-
$timezone = "America/New_York";
|
2127 |
-
break;
|
2128 |
-
case "VT":
|
2129 |
-
$timezone = "America/New_York";
|
2130 |
-
break;
|
2131 |
-
case "WA":
|
2132 |
-
$timezone = "America/Los_Angeles";
|
2133 |
-
break;
|
2134 |
-
case "WI":
|
2135 |
-
$timezone = "America/Chicago";
|
2136 |
-
break;
|
2137 |
-
case "WV":
|
2138 |
-
$timezone = "America/New_York";
|
2139 |
-
break;
|
2140 |
-
case "WY":
|
2141 |
-
$timezone = "America/Denver";
|
2142 |
-
break;
|
2143 |
-
}
|
2144 |
-
break;
|
2145 |
-
case "UY":
|
2146 |
-
$timezone = "America/Montevideo";
|
2147 |
-
break;
|
2148 |
-
case "UZ":
|
2149 |
-
switch ($region) {
|
2150 |
-
case "01":
|
2151 |
-
$timezone = "Asia/Tashkent";
|
2152 |
-
break;
|
2153 |
-
case "02":
|
2154 |
-
$timezone = "Asia/Samarkand";
|
2155 |
-
break;
|
2156 |
-
case "03":
|
2157 |
-
$timezone = "Asia/Tashkent";
|
2158 |
-
break;
|
2159 |
-
case "05":
|
2160 |
-
$timezone = "Asia/Samarkand";
|
2161 |
-
break;
|
2162 |
-
case "06":
|
2163 |
-
$timezone = "Asia/Tashkent";
|
2164 |
-
break;
|
2165 |
-
case "07":
|
2166 |
-
$timezone = "Asia/Samarkand";
|
2167 |
-
break;
|
2168 |
-
case "08":
|
2169 |
-
$timezone = "Asia/Samarkand";
|
2170 |
-
break;
|
2171 |
-
case "09":
|
2172 |
-
$timezone = "Asia/Samarkand";
|
2173 |
-
break;
|
2174 |
-
case "10":
|
2175 |
-
$timezone = "Asia/Samarkand";
|
2176 |
-
break;
|
2177 |
-
case "12":
|
2178 |
-
$timezone = "Asia/Samarkand";
|
2179 |
-
break;
|
2180 |
-
case "13":
|
2181 |
-
$timezone = "Asia/Tashkent";
|
2182 |
-
break;
|
2183 |
-
case "14":
|
2184 |
-
$timezone = "Asia/Tashkent";
|
2185 |
-
break;
|
2186 |
-
}
|
2187 |
-
break;
|
2188 |
-
case "VA":
|
2189 |
-
$timezone = "Europe/Vatican";
|
2190 |
-
break;
|
2191 |
-
case "VC":
|
2192 |
-
$timezone = "America/St_Vincent";
|
2193 |
-
break;
|
2194 |
-
case "VE":
|
2195 |
-
$timezone = "America/Caracas";
|
2196 |
-
break;
|
2197 |
-
case "VG":
|
2198 |
-
$timezone = "America/Tortola";
|
2199 |
-
break;
|
2200 |
-
case "VI":
|
2201 |
-
$timezone = "America/St_Thomas";
|
2202 |
-
break;
|
2203 |
-
case "VN":
|
2204 |
-
$timezone = "Asia/Phnom_Penh";
|
2205 |
-
break;
|
2206 |
-
case "VU":
|
2207 |
-
$timezone = "Pacific/Efate";
|
2208 |
-
break;
|
2209 |
-
case "WF":
|
2210 |
-
$timezone = "Pacific/Wallis";
|
2211 |
-
break;
|
2212 |
-
case "WS":
|
2213 |
-
$timezone = "Pacific/Pago_Pago";
|
2214 |
-
break;
|
2215 |
-
case "YE":
|
2216 |
-
$timezone = "Asia/Aden";
|
2217 |
-
break;
|
2218 |
-
case "YT":
|
2219 |
-
$timezone = "Indian/Mayotte";
|
2220 |
-
break;
|
2221 |
-
case "YU":
|
2222 |
-
$timezone = "Europe/Belgrade";
|
2223 |
-
break;
|
2224 |
-
case "ZA":
|
2225 |
-
$timezone = "Africa/Johannesburg";
|
2226 |
-
break;
|
2227 |
-
case "ZM":
|
2228 |
-
$timezone = "Africa/Lusaka";
|
2229 |
-
break;
|
2230 |
-
case "ZW":
|
2231 |
-
$timezone = "Africa/Harare";
|
2232 |
-
break;
|
2233 |
-
}
|
2234 |
-
return $timezone;
|
2235 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
geoip/tests/CityTest.php
DELETED
@@ -1,34 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
class CityTest extends \PHPUnit_Framework_TestCase
|
4 |
-
{
|
5 |
-
|
6 |
-
public function testCity()
|
7 |
-
{
|
8 |
-
global $GEOIP_REGION_NAME;
|
9 |
-
|
10 |
-
$gi = geoip_open("tests/data/GeoIPCity.dat", GEOIP_STANDARD);
|
11 |
-
|
12 |
-
$record = geoip_record_by_addr($gi, "64.17.254.216");
|
13 |
-
|
14 |
-
$this->assertEquals(310, $record->area_code);
|
15 |
-
$this->assertEquals('El Segundo', $record->city);
|
16 |
-
$this->assertEquals('US', $record->country_code);
|
17 |
-
$this->assertEquals('USA', $record->country_code3);
|
18 |
-
$this->assertEquals('United States', $record->country_name);
|
19 |
-
$this->assertEquals(803, $record->dma_code);
|
20 |
-
$this->assertEquals(33.91, $record->latitude, '', 0.01);
|
21 |
-
$this->assertEquals(-118.40, $record->longitude, '', 0.01);
|
22 |
-
$this->assertEquals(803, $record->metro_code);
|
23 |
-
$this->assertEquals('90245', $record->postal_code);
|
24 |
-
$this->assertEquals('CA', $record->region);
|
25 |
-
$this->assertEquals(
|
26 |
-
'California',
|
27 |
-
$GEOIP_REGION_NAME[$record->country_code][$record->region]
|
28 |
-
);
|
29 |
-
$this->assertEquals(
|
30 |
-
'America/Los_Angeles',
|
31 |
-
get_time_zone($record->country_code, $record->region)
|
32 |
-
);
|
33 |
-
}
|
34 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
geoip/tests/CountryTest.php
DELETED
@@ -1,29 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
class CountryTest extends \PHPUnit_Framework_TestCase
|
4 |
-
{
|
5 |
-
|
6 |
-
public function testCountry()
|
7 |
-
{
|
8 |
-
$gi = geoip_open("tests/data/GeoIP.dat", GEOIP_STANDARD);
|
9 |
-
|
10 |
-
$this->assertEquals(
|
11 |
-
'US',
|
12 |
-
geoip_country_code_by_addr($gi, '64.17.254.216')
|
13 |
-
);
|
14 |
-
$this->assertEquals(
|
15 |
-
'United States',
|
16 |
-
geoip_country_name_by_addr($gi, '64.17.254.216')
|
17 |
-
);
|
18 |
-
}
|
19 |
-
|
20 |
-
public function testV6()
|
21 |
-
{
|
22 |
-
$gi = geoip_open("tests/data/GeoIPv6.dat", GEOIP_STANDARD);
|
23 |
-
|
24 |
-
$this->assertEquals(
|
25 |
-
'JP',
|
26 |
-
geoip_country_code_by_addr_v6($gi, '2001:200::')
|
27 |
-
);
|
28 |
-
}
|
29 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
geoip/tests/DomainTest.php
DELETED
@@ -1,15 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
class DomainTest extends \PHPUnit_Framework_TestCase
|
4 |
-
{
|
5 |
-
|
6 |
-
public function testDomain()
|
7 |
-
{
|
8 |
-
$gi = geoip_open("tests/data/GeoIPDomain.dat", GEOIP_STANDARD);
|
9 |
-
|
10 |
-
$this->assertEquals(
|
11 |
-
'shoesfin.NET',
|
12 |
-
geoip_org_by_addr($gi, "67.43.156.0")
|
13 |
-
);
|
14 |
-
}
|
15 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
geoip/tests/NetspeedcellTest.php
DELETED
@@ -1,14 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
class NetspeedcellTest extends \PHPUnit_Framework_TestCase
|
4 |
-
{
|
5 |
-
public function testNetspeedcell()
|
6 |
-
{
|
7 |
-
$gi = geoip_open("tests/data/GeoIPNetSpeedCell.dat", GEOIP_STANDARD);
|
8 |
-
|
9 |
-
$this->assertEquals(
|
10 |
-
'Dialup',
|
11 |
-
geoip_org_by_addr($gi, "2.125.160.1")
|
12 |
-
);
|
13 |
-
}
|
14 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
geoip/tests/OrgTest.php
DELETED
@@ -1,14 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
class OrgTest extends \PHPUnit_Framework_TestCase
|
4 |
-
{
|
5 |
-
public function testOrg()
|
6 |
-
{
|
7 |
-
$gi = geoip_open("tests/data/GeoIPOrg.dat", GEOIP_STANDARD);
|
8 |
-
|
9 |
-
$this->assertEquals(
|
10 |
-
'AT&T Worldnet Services',
|
11 |
-
geoip_org_by_addr($gi, "12.87.118.0")
|
12 |
-
);
|
13 |
-
}
|
14 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
geoip/tests/RegionTest.php
DELETED
@@ -1,23 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
class RegionTest extends \PHPUnit_Framework_TestCase
|
4 |
-
{
|
5 |
-
public function testRegion()
|
6 |
-
{
|
7 |
-
$gi = geoip_open("tests/data/GeoIPRegion.dat", GEOIP_STANDARD);
|
8 |
-
|
9 |
-
list($countryCode, $region) = geoip_region_by_addr(
|
10 |
-
$gi,
|
11 |
-
'64.17.254.223'
|
12 |
-
);
|
13 |
-
|
14 |
-
$this->assertEquals('CA', $region);
|
15 |
-
$this->assertEquals('US', $countryCode);
|
16 |
-
|
17 |
-
global $GEOIP_REGION_NAME;
|
18 |
-
$this->assertEquals(
|
19 |
-
'California',
|
20 |
-
$GEOIP_REGION_NAME[$countryCode][$region]
|
21 |
-
);
|
22 |
-
}
|
23 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
geoip/tests/bootstrap.php
DELETED
@@ -1,5 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
if (!$loader = @include __DIR__ . '/../vendor/autoload.php') {
|
4 |
-
die('Project dependencies missing');
|
5 |
-
}
|
|
|
|
|
|
|
|
|
|
geoip/tests/data/GeoIP.dat
DELETED
Binary file
|
geoip/tests/data/GeoIPASNum.dat
DELETED
Binary file
|
geoip/tests/data/GeoIPCity.dat
DELETED
Binary file
|
geoip/tests/data/GeoIPDomain.dat
DELETED
Binary file
|
geoip/tests/data/GeoIPISP.dat
DELETED
Binary file
|
geoip/tests/data/GeoIPNetSpeedCell.dat
DELETED
Binary file
|
geoip/tests/data/GeoIPOrg.dat
DELETED
Binary file
|
geoip/tests/data/GeoIPRegion.dat
DELETED
Binary file
|
geoip/tests/data/GeoIPv6.dat
DELETED
Binary file
|
geoip/tests/data/GeoLiteCityIPv6.dat
DELETED
Binary file
|
geoip/timezone/make_time_zone_php_code.pl
DELETED
@@ -1,57 +0,0 @@
|
|
1 |
-
#!/usr/bin/perl
|
2 |
-
|
3 |
-
use strict;
|
4 |
-
use warnings;
|
5 |
-
|
6 |
-
use HTTP::Tiny;
|
7 |
-
use Text::CSV_XS;
|
8 |
-
|
9 |
-
my $old_country;
|
10 |
-
my $old_region;
|
11 |
-
|
12 |
-
my $response = HTTP::Tiny->new->get(
|
13 |
-
'http://dev.maxmind.com/static/csv/codes/time_zone.csv');
|
14 |
-
|
15 |
-
die "Failed to download CSV!\n" unless $response->{success};
|
16 |
-
|
17 |
-
print "<?php\n";
|
18 |
-
print "function get_time_zone(\$country, \$region)\n{\n";
|
19 |
-
print " switch (\$country) {\n";
|
20 |
-
|
21 |
-
my $csv = Text::CSV_XS->new ({ binary => 1});
|
22 |
-
|
23 |
-
my @timezones = split /\n/, $response->{content};
|
24 |
-
shift @timezones;
|
25 |
-
|
26 |
-
for my $line (@timezones) {
|
27 |
-
$csv->parse($line) or die $csv->error_diag();
|
28 |
-
my ( $country, $region, $timezone ) = $csv->fields;
|
29 |
-
|
30 |
-
if ( $country ne $old_country ) {
|
31 |
-
if ( $old_region ne q{} ) {
|
32 |
-
print " }\n";
|
33 |
-
print " break;\n";
|
34 |
-
}
|
35 |
-
print ' case "' . $country . q(") . ":\n";
|
36 |
-
if ( $region ne q{} ) {
|
37 |
-
print " switch (\$region) {\n";
|
38 |
-
}
|
39 |
-
}
|
40 |
-
if ( $region ne q{} ) {
|
41 |
-
print ' case "' . $region . q(") . ":\n ";
|
42 |
-
}
|
43 |
-
print ' $timezone = "' . $timezone . q(") . ";\n";
|
44 |
-
if ( $region ne q{} ) {
|
45 |
-
print " break;\n";
|
46 |
-
}
|
47 |
-
else {
|
48 |
-
print " break;\n";
|
49 |
-
}
|
50 |
-
$old_country = $country;
|
51 |
-
$old_region = $region;
|
52 |
-
}
|
53 |
-
print " }\n";
|
54 |
-
print " return \$timezone;\n";
|
55 |
-
|
56 |
-
print "}\n";
|
57 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
geoip/timezone/test_timezone.php
DELETED
@@ -1,5 +0,0 @@
|
|
1 |
-
#!/usr/bin/php -q
|
2 |
-
<?php
|
3 |
-
require("timezone.php");
|
4 |
-
print get_time_zone("US", "WV");
|
5 |
-
?>
|
|
|
|
|
|
|
|
|
|
init.php
CHANGED
@@ -13,7 +13,7 @@ define('AHCFREE_TRAFFIC_BY_TITLE_LIMIT', 20);
|
|
13 |
|
14 |
|
15 |
require_once("WPHitsCounter.php");
|
16 |
-
|
17 |
|
18 |
register_activation_hook(AHCFREE_PLUGIN_MAIN_FILE, 'ahcfree_set_default_options');
|
19 |
register_deactivation_hook(AHCFREE_PLUGIN_MAIN_FILE, 'ahcfree_unset_default_options');
|
13 |
|
14 |
|
15 |
require_once("WPHitsCounter.php");
|
16 |
+
|
17 |
|
18 |
register_activation_hook(AHCFREE_PLUGIN_MAIN_FILE, 'ahcfree_set_default_options');
|
19 |
register_deactivation_hook(AHCFREE_PLUGIN_MAIN_FILE, 'ahcfree_unset_default_options');
|
lib/bootstrap/css/bootstrap.css
CHANGED
@@ -1,7 +1,11266 @@
|
|
1 |
-
@charset "UTF-8"
|
2 |
-
|
|
|
3 |
* Copyright 2011-2021 The Bootstrap Authors
|
4 |
* Copyright 2011-2021 Twitter, Inc.
|
5 |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
6 |
-
*/:root{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0))}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-font-sans-serif);font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){.h1,h1{font-size:2.5rem}}.h2,h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){.h2,h2{font-size:2rem}}.h3,h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){.h3,h3{font-size:1.75rem}}.h4,h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){.h4,h4{font-size:1.5rem}}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[data-bs-original-title],abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}.small,small{font-size:.875em}.mark,mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#0d6efd;text-decoration:underline}a:hover{color:#0a58ca}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em;direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#d63384;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:#6c757d}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{width:100%;padding-right:var(--bs-gutter-x,.75rem);padding-left:var(--bs-gutter-x,.75rem);margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(var(--bs-gutter-y) * -1);margin-right:calc(var(--bs-gutter-x)/ -2);margin-left:calc(var(--bs-gutter-x)/ -2)}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x)/ 2);padding-left:calc(var(--bs-gutter-x)/ 2);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.3333333333%}.col-2{flex:0 0 auto;width:16.6666666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.3333333333%}.col-5{flex:0 0 auto;width:41.6666666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.3333333333%}.col-8{flex:0 0 auto;width:66.6666666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.3333333333%}.col-11{flex:0 0 auto;width:91.6666666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.3333333333%}.offset-2{margin-left:16.6666666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.3333333333%}.offset-5{margin-left:41.6666666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.3333333333%}.offset-8{margin-left:66.6666666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.3333333333%}.offset-11{margin-left:91.6666666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.3333333333%}.col-sm-2{flex:0 0 auto;width:16.6666666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.3333333333%}.col-sm-5{flex:0 0 auto;width:41.6666666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.3333333333%}.col-sm-8{flex:0 0 auto;width:66.6666666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.3333333333%}.col-sm-11{flex:0 0 auto;width:91.6666666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.3333333333%}.offset-sm-2{margin-left:16.6666666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.3333333333%}.offset-sm-5{margin-left:41.6666666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.3333333333%}.offset-sm-8{margin-left:66.6666666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.3333333333%}.offset-sm-11{margin-left:91.6666666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.3333333333%}.col-md-2{flex:0 0 auto;width:16.6666666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.3333333333%}.col-md-5{flex:0 0 auto;width:41.6666666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.3333333333%}.col-md-8{flex:0 0 auto;width:66.6666666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.3333333333%}.col-md-11{flex:0 0 auto;width:91.6666666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.3333333333%}.offset-md-2{margin-left:16.6666666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.3333333333%}.offset-md-5{margin-left:41.6666666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.3333333333%}.offset-md-8{margin-left:66.6666666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.3333333333%}.offset-md-11{margin-left:91.6666666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.3333333333%}.col-lg-2{flex:0 0 auto;width:16.6666666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.3333333333%}.col-lg-5{flex:0 0 auto;width:41.6666666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.3333333333%}.col-lg-8{flex:0 0 auto;width:66.6666666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.3333333333%}.col-lg-11{flex:0 0 auto;width:91.6666666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.3333333333%}.offset-lg-2{margin-left:16.6666666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.3333333333%}.offset-lg-5{margin-left:41.6666666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.3333333333%}.offset-lg-8{margin-left:66.6666666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.3333333333%}.offset-lg-11{margin-left:91.6666666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.3333333333%}.col-xl-2{flex:0 0 auto;width:16.6666666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.3333333333%}.col-xl-5{flex:0 0 auto;width:41.6666666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.3333333333%}.col-xl-8{flex:0 0 auto;width:66.6666666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.3333333333%}.col-xl-11{flex:0 0 auto;width:91.6666666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.3333333333%}.offset-xl-2{margin-left:16.6666666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.3333333333%}.offset-xl-5{margin-left:41.6666666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.3333333333%}.offset-xl-8{margin-left:66.6666666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.3333333333%}.offset-xl-11{margin-left:91.6666666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.3333333333%}.col-xxl-2{flex:0 0 auto;width:16.6666666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.3333333333%}.col-xxl-5{flex:0 0 auto;width:41.6666666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.3333333333%}.col-xxl-8{flex:0 0 auto;width:66.6666666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.3333333333%}.col-xxl-11{flex:0 0 auto;width:91.6666666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.3333333333%}.offset-xxl-2{margin-left:16.6666666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.3333333333%}.offset-xxl-5{margin-left:41.6666666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.3333333333%}.offset-xxl-8{margin-left:66.6666666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.3333333333%}.offset-xxl-11{margin-left:91.6666666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.table{--bs-table-bg:transparent;--bs-table-striped-color:#212529;--bs-table-striped-bg:rgba(0, 0, 0, 0.05);--bs-table-active-color:#212529;--bs-table-active-bg:rgba(0, 0, 0, 0.1);--bs-table-hover-color:#212529;--bs-table-hover-bg:rgba(0, 0, 0, 0.075);width:100%;margin-bottom:1rem;color:#212529;vertical-align:top;border-color:#dee2e6}.table>:not(caption)>*>*{padding:.5rem .5rem;background-color:var(--bs-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table>:not(:last-child)>:last-child>*{border-bottom-color:currentColor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-striped>tbody>tr:nth-of-type(odd){--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-active{--bs-table-accent-bg:var(--bs-table-active-bg);color:var(--bs-table-active-color)}.table-hover>tbody>tr:hover{--bs-table-accent-bg:var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}.table-primary{--bs-table-bg:#cfe2ff;--bs-table-striped-bg:#c5d7f2;--bs-table-striped-color:#000;--bs-table-active-bg:#bacbe6;--bs-table-active-color:#000;--bs-table-hover-bg:#bfd1ec;--bs-table-hover-color:#000;color:#000;border-color:#bacbe6}.table-secondary{--bs-table-bg:#e2e3e5;--bs-table-striped-bg:#d7d8da;--bs-table-striped-color:#000;--bs-table-active-bg:#cbccce;--bs-table-active-color:#000;--bs-table-hover-bg:#d1d2d4;--bs-table-hover-color:#000;color:#000;border-color:#cbccce}.table-success{--bs-table-bg:#d1e7dd;--bs-table-striped-bg:#c7dbd2;--bs-table-striped-color:#000;--bs-table-active-bg:#bcd0c7;--bs-table-active-color:#000;--bs-table-hover-bg:#c1d6cc;--bs-table-hover-color:#000;color:#000;border-color:#bcd0c7}.table-info{--bs-table-bg:#cff4fc;--bs-table-striped-bg:#c5e8ef;--bs-table-striped-color:#000;--bs-table-active-bg:#badce3;--bs-table-active-color:#000;--bs-table-hover-bg:#bfe2e9;--bs-table-hover-color:#000;color:#000;border-color:#badce3}.table-warning{--bs-table-bg:#fff3cd;--bs-table-striped-bg:#f2e7c3;--bs-table-striped-color:#000;--bs-table-active-bg:#e6dbb9;--bs-table-active-color:#000;--bs-table-hover-bg:#ece1be;--bs-table-hover-color:#000;color:#000;border-color:#e6dbb9}.table-danger{--bs-table-bg:#f8d7da;--bs-table-striped-bg:#eccccf;--bs-table-striped-color:#000;--bs-table-active-bg:#dfc2c4;--bs-table-active-color:#000;--bs-table-hover-bg:#e5c7ca;--bs-table-hover-color:#000;color:#000;border-color:#dfc2c4}.table-light{--bs-table-bg:#f8f9fa;--bs-table-striped-bg:#ecedee;--bs-table-striped-color:#000;--bs-table-active-bg:#dfe0e1;--bs-table-active-color:#000;--bs-table-hover-bg:#e5e6e7;--bs-table-hover-color:#000;color:#000;border-color:#dfe0e1}.table-dark{--bs-table-bg:#212529;--bs-table-striped-bg:#2c3034;--bs-table-striped-color:#fff;--bs-table-active-bg:#373b3e;--bs-table-active-color:#fff;--bs-table-hover-bg:#323539;--bs-table-hover-color:#fff;color:#fff;border-color:#373b3e}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem}.form-text{margin-top:.25rem;font-size:.875em;color:#6c757d}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#212529;background-color:#fff;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-control::-webkit-date-and-time-value{height:1.5em}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#dde0e3}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#dde0e3}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + .75rem + 2px)}textarea.form-control-sm{min-height:calc(1.5em + .5rem + 2px)}textarea.form-control-lg{min-height:calc(1.5em + 1rem + 2px)}.form-control-color{max-width:3rem;height:auto;padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{height:1.5em;border-radius:.25rem}.form-control-color::-webkit-color-swatch{height:1.5em;border-radius:.25rem}.form-select{display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:#e9ecef}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #212529}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-input{width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:#fff;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid rgba(0,0,0,.25);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-check-input:checked{background-color:#0d6efd;border-color:#0d6efd}.form-check-input:checked[type=checkbox]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate{background-color:#0d6efd;border-color:#0d6efd;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{width:2em;margin-left:-2.5em;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;filter:none;opacity:.65}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#0d6efd;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b6d4fe}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#0d6efd;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b6d4fe}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.form-range:disabled::-moz-range-thumb{background-color:#adb5bd}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-select{height:calc(3.5rem + 2px);padding:1rem .75rem}.form-floating>label{position:absolute;top:0;left:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control::-moz-placeholder{color:transparent}.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-select:focus{z-index:3}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:3}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#198754}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(25,135,84,.9);border-radius:.25rem}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#198754;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-valid,.was-validated .form-select:valid{border-color:#198754;padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:#198754}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:#198754}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#198754}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.input-group .form-control.is-valid,.input-group .form-select.is-valid,.was-validated .input-group .form-control:valid,.was-validated .input-group .form-select:valid{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:#dc3545;padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:#dc3545}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:#dc3545}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.input-group .form-control.is-invalid,.input-group .form-select.is-invalid,.was-validated .input-group .form-control:invalid,.was-validated .input-group .form-select:invalid{z-index:3}.btn{display:inline-block;font-weight:400;line-height:1.5;color:#212529;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529}.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{pointer-events:none;opacity:.65}.btn-primary{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-primary:hover{color:#fff;background-color:#0b5ed7;border-color:#0a58ca}.btn-check:focus+.btn-primary,.btn-primary:focus{color:#fff;background-color:#0b5ed7;border-color:#0a58ca;box-shadow:0 0 0 .25rem rgba(49,132,253,.5)}.btn-check:active+.btn-primary,.btn-check:checked+.btn-primary,.btn-primary.active,.btn-primary:active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0a58ca;border-color:#0a53be}.btn-check:active+.btn-primary:focus,.btn-check:checked+.btn-primary:focus,.btn-primary.active:focus,.btn-primary:active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(49,132,253,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5c636a;border-color:#565e64}.btn-check:focus+.btn-secondary,.btn-secondary:focus{color:#fff;background-color:#5c636a;border-color:#565e64;box-shadow:0 0 0 .25rem rgba(130,138,145,.5)}.btn-check:active+.btn-secondary,.btn-check:checked+.btn-secondary,.btn-secondary.active,.btn-secondary:active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#565e64;border-color:#51585e}.btn-check:active+.btn-secondary:focus,.btn-check:checked+.btn-secondary:focus,.btn-secondary.active:focus,.btn-secondary:active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(130,138,145,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-success{color:#fff;background-color:#198754;border-color:#198754}.btn-success:hover{color:#fff;background-color:#157347;border-color:#146c43}.btn-check:focus+.btn-success,.btn-success:focus{color:#fff;background-color:#157347;border-color:#146c43;box-shadow:0 0 0 .25rem rgba(60,153,110,.5)}.btn-check:active+.btn-success,.btn-check:checked+.btn-success,.btn-success.active,.btn-success:active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#146c43;border-color:#13653f}.btn-check:active+.btn-success:focus,.btn-check:checked+.btn-success:focus,.btn-success.active:focus,.btn-success:active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(60,153,110,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#198754;border-color:#198754}.btn-info{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-info:hover{color:#000;background-color:#31d2f2;border-color:#25cff2}.btn-check:focus+.btn-info,.btn-info:focus{color:#000;background-color:#31d2f2;border-color:#25cff2;box-shadow:0 0 0 .25rem rgba(11,172,204,.5)}.btn-check:active+.btn-info,.btn-check:checked+.btn-info,.btn-info.active,.btn-info:active,.show>.btn-info.dropdown-toggle{color:#000;background-color:#3dd5f3;border-color:#25cff2}.btn-check:active+.btn-info:focus,.btn-check:checked+.btn-info:focus,.btn-info.active:focus,.btn-info:active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(11,172,204,.5)}.btn-info.disabled,.btn-info:disabled{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-warning{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#000;background-color:#ffca2c;border-color:#ffc720}.btn-check:focus+.btn-warning,.btn-warning:focus{color:#000;background-color:#ffca2c;border-color:#ffc720;box-shadow:0 0 0 .25rem rgba(217,164,6,.5)}.btn-check:active+.btn-warning,.btn-check:checked+.btn-warning,.btn-warning.active,.btn-warning:active,.show>.btn-warning.dropdown-toggle{color:#000;background-color:#ffcd39;border-color:#ffc720}.btn-check:active+.btn-warning:focus,.btn-check:checked+.btn-warning:focus,.btn-warning.active:focus,.btn-warning:active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(217,164,6,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#bb2d3b;border-color:#b02a37}.btn-check:focus+.btn-danger,.btn-danger:focus{color:#fff;background-color:#bb2d3b;border-color:#b02a37;box-shadow:0 0 0 .25rem rgba(225,83,97,.5)}.btn-check:active+.btn-danger,.btn-check:checked+.btn-danger,.btn-danger.active,.btn-danger:active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#b02a37;border-color:#a52834}.btn-check:active+.btn-danger:focus,.btn-check:checked+.btn-danger:focus,.btn-danger.active:focus,.btn-danger:active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(225,83,97,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-light{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:focus+.btn-light,.btn-light:focus{color:#000;background-color:#f9fafb;border-color:#f9fafb;box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-check:active+.btn-light,.btn-check:checked+.btn-light,.btn-light.active,.btn-light:active,.show>.btn-light.dropdown-toggle{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:active+.btn-light:focus,.btn-check:checked+.btn-light:focus,.btn-light.active:focus,.btn-light:active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-light.disabled,.btn-light:disabled{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-dark{color:#fff;background-color:#212529;border-color:#212529}.btn-dark:hover{color:#fff;background-color:#1c1f23;border-color:#1a1e21}.btn-check:focus+.btn-dark,.btn-dark:focus{color:#fff;background-color:#1c1f23;border-color:#1a1e21;box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-check:active+.btn-dark,.btn-check:checked+.btn-dark,.btn-dark.active,.btn-dark:active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1a1e21;border-color:#191c1f}.btn-check:active+.btn-dark:focus,.btn-check:checked+.btn-dark:focus,.btn-dark.active:focus,.btn-dark:active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#212529;border-color:#212529}.btn-outline-primary{color:#0d6efd;border-color:#0d6efd}.btn-outline-primary:hover{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:focus+.btn-outline-primary,.btn-outline-primary:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,.5)}.btn-check:active+.btn-outline-primary,.btn-check:checked+.btn-outline-primary,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show,.btn-outline-primary:active{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:active+.btn-outline-primary:focus,.btn-check:checked+.btn-outline-primary:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus,.btn-outline-primary:active:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#0d6efd;background-color:transparent}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:focus+.btn-outline-secondary,.btn-outline-secondary:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,.5)}.btn-check:active+.btn-outline-secondary,.btn-check:checked+.btn-outline-secondary,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show,.btn-outline-secondary:active{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:active+.btn-outline-secondary:focus,.btn-check:checked+.btn-outline-secondary:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus,.btn-outline-secondary:active:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-success{color:#198754;border-color:#198754}.btn-outline-success:hover{color:#fff;background-color:#198754;border-color:#198754}.btn-check:focus+.btn-outline-success,.btn-outline-success:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.5)}.btn-check:active+.btn-outline-success,.btn-check:checked+.btn-outline-success,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show,.btn-outline-success:active{color:#fff;background-color:#198754;border-color:#198754}.btn-check:active+.btn-outline-success:focus,.btn-check:checked+.btn-outline-success:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus,.btn-outline-success:active:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#198754;background-color:transparent}.btn-outline-info{color:#0dcaf0;border-color:#0dcaf0}.btn-outline-info:hover{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:focus+.btn-outline-info,.btn-outline-info:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,.5)}.btn-check:active+.btn-outline-info,.btn-check:checked+.btn-outline-info,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show,.btn-outline-info:active{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:active+.btn-outline-info:focus,.btn-check:checked+.btn-outline-info:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus,.btn-outline-info:active:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#0dcaf0;background-color:transparent}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:focus+.btn-outline-warning,.btn-outline-warning:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,.5)}.btn-check:active+.btn-outline-warning,.btn-check:checked+.btn-outline-warning,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show,.btn-outline-warning:active{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:active+.btn-outline-warning:focus,.btn-check:checked+.btn-outline-warning:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus,.btn-outline-warning:active:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:focus+.btn-outline-danger,.btn-outline-danger:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.5)}.btn-check:active+.btn-outline-danger,.btn-check:checked+.btn-outline-danger,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show,.btn-outline-danger:active{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:active+.btn-outline-danger:focus,.btn-check:checked+.btn-outline-danger:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus,.btn-outline-danger:active:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:focus+.btn-outline-light,.btn-outline-light:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-check:active+.btn-outline-light,.btn-check:checked+.btn-outline-light,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show,.btn-outline-light:active{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:active+.btn-outline-light:focus,.btn-check:checked+.btn-outline-light:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus,.btn-outline-light:active:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-dark{color:#212529;border-color:#212529}.btn-outline-dark:hover{color:#fff;background-color:#212529;border-color:#212529}.btn-check:focus+.btn-outline-dark,.btn-outline-dark:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-check:active+.btn-outline-dark,.btn-check:checked+.btn-outline-dark,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show,.btn-outline-dark:active{color:#fff;background-color:#212529;border-color:#212529}.btn-check:active+.btn-outline-dark:focus,.btn-check:checked+.btn-outline-dark:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus,.btn-outline-dark:active:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#212529;background-color:transparent}.btn-link{font-weight:400;color:#0d6efd;text-decoration:underline}.btn-link:hover{color:#0a58ca}.btn-link.disabled,.btn-link:disabled{color:#6c757d}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropdown,.dropend,.dropstart,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;z-index:1000;display:none;min-width:10rem;padding:.5rem 0;margin:0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu[data-bs-popper]{left:0;margin-top:.125rem}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu{top:0;right:auto;left:100%}.dropend .dropdown-menu[data-bs-popper]{margin-top:0;margin-left:.125rem}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu{top:0;right:100%;left:auto}.dropstart .dropdown-menu[data-bs-popper]{margin-top:0;margin-right:.125rem}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.15)}.dropdown-item{display:block;width:100%;padding:.25rem 1rem;clear:both;font-weight:400;color:#212529;text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#1e2125;background-color:#e9ecef}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#0d6efd}.dropdown-item.disabled,.dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1rem;color:#212529}.dropdown-menu-dark{color:#dee2e6;background-color:#343a40;border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item{color:#dee2e6}.dropdown-menu-dark .dropdown-item:focus,.dropdown-menu-dark .dropdown-item:hover{color:#fff;background-color:rgba(255,255,255,.15)}.dropdown-menu-dark .dropdown-item.active,.dropdown-menu-dark .dropdown-item:active{color:#fff;background-color:#0d6efd}.dropdown-menu-dark .dropdown-item.disabled,.dropdown-menu-dark .dropdown-item:disabled{color:#adb5bd}.dropdown-menu-dark .dropdown-divider{border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item-text{color:#dee2e6}.dropdown-menu-dark .dropdown-header{color:#adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn~.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-link{margin-bottom:-1px;background:0 0;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6;isolation:isolate}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{background:0 0;border:0;border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#0d6efd}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding-top:.5rem;padding-bottom:.5rem}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;text-decoration:none;white-space:nowrap}.navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem;transition:box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 .25rem}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height,75vh);overflow-y:auto}@media (min-width:576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (min-width:768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (min-width:992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (min-width:1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}@media (min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.55)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.55);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,.55)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.55)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.55);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,.55)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:1rem 1rem}.card-title{margin-bottom:.5rem}.card-subtitle{margin-top:-.25rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1rem}.card-header{padding:.5rem 1rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-footer{padding:.5rem 1rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.5rem;margin-bottom:-.5rem;margin-left:-.5rem;border-bottom:0}.card-header-pills{margin-right:-.5rem;margin-left:-.5rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1rem;border-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-group>.card{margin-bottom:.75rem}@media (min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:1rem 1.25rem;font-size:1rem;color:#212529;text-align:left;background-color:#fff;border:0;border-radius:0;overflow-anchor:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease}@media (prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:#0c63e4;background-color:#e7f1ff;box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-button:not(.collapsed)::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");transform:rotate(180deg)}.accordion-button::after{flex-shrink:0;width:1.25rem;height:1.25rem;margin-left:auto;content:"";background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-size:1.25rem;transition:transform .2s ease-in-out}@media (prefers-reduced-motion:reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.accordion-header{margin-bottom:0}.accordion-item{margin-bottom:-1px;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.accordion-item:first-of-type{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.accordion-item:first-of-type .accordion-button{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.accordion-item:last-of-type{margin-bottom:0;border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-body{padding:1rem 1.25rem}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button{border-radius:0}.breadcrumb{display:flex;flex-wrap:wrap;padding:0 0;margin-bottom:1rem;list-style:none}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:.5rem;color:#6c757d;content:var(--bs-breadcrumb-divider, "/")}.breadcrumb-item.active{color:#6c757d}.pagination{display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;color:#0d6efd;text-decoration:none;background-color:#fff;border:1px solid #dee2e6;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:#0a58ca;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;color:#0a58ca;background-color:#e9ecef;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.page-item:not(:first-child) .page-link{margin-left:-1px}.page-item.active .page-link{z-index:3;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;background-color:#fff;border-color:#dee2e6}.page-link{padding:.375rem .75rem}.page-item:first-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.35em .65em;font-size:.75em;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{position:relative;padding:1rem 1rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-primary{color:#084298;background-color:#cfe2ff;border-color:#b6d4fe}.alert-primary .alert-link{color:#06357a}.alert-secondary{color:#41464b;background-color:#e2e3e5;border-color:#d3d6d8}.alert-secondary .alert-link{color:#34383c}.alert-success{color:#0f5132;background-color:#d1e7dd;border-color:#badbcc}.alert-success .alert-link{color:#0c4128}.alert-info{color:#055160;background-color:#cff4fc;border-color:#b6effb}.alert-info .alert-link{color:#04414d}.alert-warning{color:#664d03;background-color:#fff3cd;border-color:#ffecb5}.alert-warning .alert-link{color:#523e02}.alert-danger{color:#842029;background-color:#f8d7da;border-color:#f5c2c7}.alert-danger .alert-link{color:#6a1a21}.alert-light{color:#636464;background-color:#fefefe;border-color:#fdfdfe}.alert-light .alert-link{color:#4f5050}.alert-dark{color:#141619;background-color:#d3d3d4;border-color:#bcbebf}.alert-dark .alert-link{color:#101214}@-webkit-keyframes progress-bar-stripes{0%{background-position-x:1rem}}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress{display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#0d6efd;transition:width .6s ease}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:1s linear infinite progress-bar-stripes;animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>li::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.5rem 1rem;color:#212529;text-decoration:none;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#084298;background-color:#cfe2ff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#084298;background-color:#bacbe6}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#084298;border-color:#084298}.list-group-item-secondary{color:#41464b;background-color:#e2e3e5}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#41464b;background-color:#cbccce}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#41464b;border-color:#41464b}.list-group-item-success{color:#0f5132;background-color:#d1e7dd}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#0f5132;background-color:#bcd0c7}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#0f5132;border-color:#0f5132}.list-group-item-info{color:#055160;background-color:#cff4fc}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#055160;background-color:#badce3}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#055160;border-color:#055160}.list-group-item-warning{color:#664d03;background-color:#fff3cd}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#664d03;background-color:#e6dbb9}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#664d03;border-color:#664d03}.list-group-item-danger{color:#842029;background-color:#f8d7da}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#842029;background-color:#dfc2c4}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#842029;border-color:#842029}.list-group-item-light{color:#636464;background-color:#fefefe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#636464;background-color:#e5e5e5}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#636464;border-color:#636464}.list-group-item-dark{color:#141619;background-color:#d3d3d4}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#141619;background-color:#bebebf}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#141619;border-color:#141619}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:#000;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;border:0;border-radius:.25rem;opacity:.5}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25);opacity:1}.btn-close.disabled,.btn-close:disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:.25}.btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}.toast{width:350px;max-width:100%;font-size:.875rem;pointer-events:auto;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .5rem 1rem rgba(0,0,0,.15);border-radius:.25rem}.toast:not(.showing):not(.show){opacity:0}.toast.hide{display:none}.toast-container{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:.75rem}.toast-header{display:flex;align-items:center;padding:.5rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.toast-header .btn-close{margin-right:-.375rem;margin-left:.75rem}.toast-body{padding:.75rem;word-wrap:break-word}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1060;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1050;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .btn-close{padding:.5rem .5rem;margin:-.5rem -.5rem -.5rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;flex-shrink:0;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{height:calc(100% - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}.modal-fullscreen .modal-footer{border-radius:0}@media (max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}.modal-fullscreen-sm-down .modal-footer{border-radius:0}}@media (max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}.modal-fullscreen-md-down .modal-footer{border-radius:0}}@media (max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}.modal-fullscreen-lg-down .modal-footer{border-radius:0}}@media (max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}.modal-fullscreen-xl-down .modal-footer{border-radius:0}}@media (max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}.modal-fullscreen-xxl-down .modal-footer{border-radius:0}}.tooltip{position:absolute;z-index:1080;display:block;margin:0;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,.bs-tooltip-top .tooltip-arrow::before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[data-popper-placement^=right],.bs-tooltip-end{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,.bs-tooltip-end .tooltip-arrow::before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[data-popper-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,.bs-tooltip-bottom .tooltip-arrow::before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[data-popper-placement^=left],.bs-tooltip-start{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,.bs-tooltip-start .tooltip-arrow::before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1070;display:block;max-width:276px;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}.popover .popover-arrow::after,.popover .popover-arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-top>.popover-arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-end>.popover-arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f0f0f0}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-start>.popover-arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem 1rem;margin-bottom:0;font-size:1rem;background-color:#f0f0f0;border-bottom:1px solid #d8d8d8;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:1rem 1rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:0 0;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%;list-style:none}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}@-webkit-keyframes spinner-border{to{transform:rotate(360deg)}}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:.75s linear infinite spinner-border;animation:.75s linear infinite spinner-border}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:.75s linear infinite spinner-grow;animation:.75s linear infinite spinner-grow}.spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{-webkit-animation-duration:1.5s;animation-duration:1.5s}}.offcanvas{position:fixed;bottom:0;z-index:1040;display:flex;flex-direction:column;max-width:100%;visibility:hidden;background-color:#fff;background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}@media (prefers-reduced-motion:reduce){.offcanvas{transition:none}}.offcanvas-header{display:flex;justify-content:space-between;padding:1rem 1rem}.offcanvas-header .btn-close{padding:.5rem .5rem;margin:-.5rem -.5rem -.5rem auto}.offcanvas-title{margin-bottom:0;line-height:1.5}.offcanvas-body{flex-grow:1;padding:1rem 1rem;overflow-y:auto}.offcanvas-start{top:0;left:0;width:400px;border-right:1px solid rgba(0,0,0,.2);transform:translateX(-100%)}.offcanvas-end{top:0;right:0;width:400px;border-left:1px solid rgba(0,0,0,.2);transform:translateX(100%)}.offcanvas-bottom{right:0;left:0;height:30vh;max-height:100%;border-top:1px solid rgba(0,0,0,.2);transform:translateY(100%)}.offcanvas.show{transform:none}.offcanvas-backdrop::before{position:fixed;top:0;left:0;z-index:1039;width:100vw;height:100vh;content:"";background-color:rgba(0,0,0,.5)}.clearfix::after{display:block;clear:both;content:""}.link-primary{color:#0d6efd}.link-primary:focus,.link-primary:hover{color:#0a58ca}.link-secondary{color:#6c757d}.link-secondary:focus,.link-secondary:hover{color:#565e64}.link-success{color:#198754}.link-success:focus,.link-success:hover{color:#146c43}.link-info{color:#0dcaf0}.link-info:focus,.link-info:hover{color:#3dd5f3}.link-warning{color:#ffc107}.link-warning:focus,.link-warning:hover{color:#ffcd39}.link-danger{color:#dc3545}.link-danger:focus,.link-danger:hover{color:#b02a37}.link-light{color:#f8f9fa}.link-light:focus,.link-light:hover{color:#f9fafb}.link-dark{color:#212529}.link-dark:focus,.link-dark:hover{color:#1a1e21}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio:100%}.ratio-4x3{--bs-aspect-ratio:calc(3 / 4 * 100%)}.ratio-16x9{--bs-aspect-ratio:calc(9 / 16 * 100%)}.ratio-21x9{--bs-aspect-ratio:calc(9 / 21 * 100%)}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}@media (min-width:576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.float-start{float:left!important}.float-end{float:right!important}.float-none{float:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-50{left:50%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-50{right:50%!important}.end-100{right:100%!important}.translate-middle{transform:translate(-50%,-50%)!important}.translate-middle-x{transform:translateX(-50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:1px solid #dee2e6!important}.border-0{border:0!important}.border-top{border-top:1px solid #dee2e6!important}.border-top-0{border-top:0!important}.border-end{border-right:1px solid #dee2e6!important}.border-end-0{border-right:0!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-bottom-0{border-bottom:0!important}.border-start{border-left:1px solid #dee2e6!important}.border-start-0{border-left:0!important}.border-primary{border-color:#0d6efd!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#198754!important}.border-info{border-color:#0dcaf0!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#212529!important}.border-white{border-color:#fff!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}.font-monospace{font-family:var(--bs-font-monospace)!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-light{font-weight:300!important}.fw-lighter{font-weight:lighter!important}.fw-normal{font-weight:400!important}.fw-bold{font-weight:700!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:2!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-primary{color:#0d6efd!important}.text-secondary{color:#6c757d!important}.text-success{color:#198754!important}.text-info{color:#0dcaf0!important}.text-warning{color:#ffc107!important}.text-danger{color:#dc3545!important}.text-light{color:#f8f9fa!important}.text-dark{color:#212529!important}.text-white{color:#fff!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-reset{color:inherit!important}.bg-primary{background-color:#0d6efd!important}.bg-secondary{background-color:#6c757d!important}.bg-success{background-color:#198754!important}.bg-info{background-color:#0dcaf0!important}.bg-warning{background-color:#ffc107!important}.bg-danger{background-color:#dc3545!important}.bg-light{background-color:#f8f9fa!important}.bg-dark{background-color:#212529!important}.bg-body{background-color:#fff!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.bg-gradient{background-image:var(--bs-gradient)!important}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:.25rem!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:.2rem!important}.rounded-2{border-radius:.25rem!important}.rounded-3{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-end{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-start{border-bottom-left-radius:.25rem!important;border-top-left-radius:.25rem!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media (min-width:576px){.float-sm-start{float:left!important}.float-sm-end{float:right!important}.float-sm-none{float:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.float-md-start{float:left!important}.float-md-end{float:right!important}.float-md-none{float:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.float-lg-start{float:left!important}.float-lg-end{float:right!important}.float-lg-none{float:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.float-xl-start{float:left!important}.float-xl-end{float:right!important}.float-xl-none{float:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}}@media (min-width:1400px){.float-xxl-start{float:left!important}.float-xxl-end{float:right!important}.float-xxl-none{float:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}.text-xxl-start{text-align:left!important}.text-xxl-end{text-align:right!important}.text-xxl-center{text-align:center!important}}@media (min-width:1200px){.fs-1{font-size:2.5rem!important}.fs-2{font-size:2rem!important}.fs-3{font-size:1.75rem!important}.fs-4{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}}
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
@charset "UTF-8";
|
2 |
+
/*!
|
3 |
+
* Bootstrap v5.1.3 (https://getbootstrap.com/)
|
4 |
* Copyright 2011-2021 The Bootstrap Authors
|
5 |
* Copyright 2011-2021 Twitter, Inc.
|
6 |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
7 |
+
*/
|
8 |
+
:root {
|
9 |
+
--bs-blue: #0d6efd;
|
10 |
+
--bs-indigo: #6610f2;
|
11 |
+
--bs-purple: #6f42c1;
|
12 |
+
--bs-pink: #d63384;
|
13 |
+
--bs-red: #dc3545;
|
14 |
+
--bs-orange: #fd7e14;
|
15 |
+
--bs-yellow: #ffc107;
|
16 |
+
--bs-green: #198754;
|
17 |
+
--bs-teal: #20c997;
|
18 |
+
--bs-cyan: #0dcaf0;
|
19 |
+
--bs-white: #fff;
|
20 |
+
--bs-gray: #6c757d;
|
21 |
+
--bs-gray-dark: #343a40;
|
22 |
+
--bs-gray-100: #f8f9fa;
|
23 |
+
--bs-gray-200: #e9ecef;
|
24 |
+
--bs-gray-300: #dee2e6;
|
25 |
+
--bs-gray-400: #ced4da;
|
26 |
+
--bs-gray-500: #adb5bd;
|
27 |
+
--bs-gray-600: #6c757d;
|
28 |
+
--bs-gray-700: #495057;
|
29 |
+
--bs-gray-800: #343a40;
|
30 |
+
--bs-gray-900: #212529;
|
31 |
+
--bs-primary: #0d6efd;
|
32 |
+
--bs-secondary: #6c757d;
|
33 |
+
--bs-success: #198754;
|
34 |
+
--bs-info: #0dcaf0;
|
35 |
+
--bs-warning: #ffc107;
|
36 |
+
--bs-danger: #dc3545;
|
37 |
+
--bs-light: #f8f9fa;
|
38 |
+
--bs-dark: #212529;
|
39 |
+
--bs-primary-rgb: 13, 110, 253;
|
40 |
+
--bs-secondary-rgb: 108, 117, 125;
|
41 |
+
--bs-success-rgb: 25, 135, 84;
|
42 |
+
--bs-info-rgb: 13, 202, 240;
|
43 |
+
--bs-warning-rgb: 255, 193, 7;
|
44 |
+
--bs-danger-rgb: 220, 53, 69;
|
45 |
+
--bs-light-rgb: 248, 249, 250;
|
46 |
+
--bs-dark-rgb: 33, 37, 41;
|
47 |
+
--bs-white-rgb: 255, 255, 255;
|
48 |
+
--bs-black-rgb: 0, 0, 0;
|
49 |
+
--bs-body-color-rgb: 33, 37, 41;
|
50 |
+
--bs-body-bg-rgb: 255, 255, 255;
|
51 |
+
--bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
52 |
+
--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
53 |
+
--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
|
54 |
+
--bs-body-font-family: var(--bs-font-sans-serif);
|
55 |
+
--bs-body-font-size: 1rem;
|
56 |
+
--bs-body-font-weight: 400;
|
57 |
+
--bs-body-line-height: 1.5;
|
58 |
+
--bs-body-color: #212529;
|
59 |
+
--bs-body-bg: #fff;
|
60 |
+
}
|
61 |
+
|
62 |
+
*,
|
63 |
+
*::before,
|
64 |
+
*::after {
|
65 |
+
box-sizing: border-box;
|
66 |
+
}
|
67 |
+
|
68 |
+
@media (prefers-reduced-motion: no-preference) {
|
69 |
+
:root {
|
70 |
+
scroll-behavior: smooth;
|
71 |
+
}
|
72 |
+
}
|
73 |
+
|
74 |
+
body {
|
75 |
+
margin: 0;
|
76 |
+
font-family: var(--bs-body-font-family);
|
77 |
+
font-size: var(--bs-body-font-size);
|
78 |
+
font-weight: var(--bs-body-font-weight);
|
79 |
+
line-height: var(--bs-body-line-height);
|
80 |
+
color: var(--bs-body-color);
|
81 |
+
text-align: var(--bs-body-text-align);
|
82 |
+
background-color: var(--bs-body-bg);
|
83 |
+
-webkit-text-size-adjust: 100%;
|
84 |
+
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
85 |
+
}
|
86 |
+
|
87 |
+
hr {
|
88 |
+
margin: 1rem 0;
|
89 |
+
color: inherit;
|
90 |
+
background-color: currentColor;
|
91 |
+
border: 0;
|
92 |
+
opacity: 0.25;
|
93 |
+
}
|
94 |
+
|
95 |
+
hr:not([size]) {
|
96 |
+
height: 1px;
|
97 |
+
}
|
98 |
+
|
99 |
+
h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
|
100 |
+
margin-top: 0;
|
101 |
+
margin-bottom: 0.5rem;
|
102 |
+
font-weight: 500;
|
103 |
+
line-height: 1.2;
|
104 |
+
}
|
105 |
+
|
106 |
+
h1, .h1 {
|
107 |
+
font-size: calc(1.375rem + 1.5vw);
|
108 |
+
}
|
109 |
+
@media (min-width: 1200px) {
|
110 |
+
h1, .h1 {
|
111 |
+
font-size: 2.5rem;
|
112 |
+
}
|
113 |
+
}
|
114 |
+
|
115 |
+
h2, .h2 {
|
116 |
+
font-size: calc(1.325rem + 0.9vw);
|
117 |
+
}
|
118 |
+
@media (min-width: 1200px) {
|
119 |
+
h2, .h2 {
|
120 |
+
font-size: 2rem;
|
121 |
+
}
|
122 |
+
}
|
123 |
+
|
124 |
+
h3, .h3 {
|
125 |
+
font-size: calc(1.3rem + 0.6vw);
|
126 |
+
}
|
127 |
+
@media (min-width: 1200px) {
|
128 |
+
h3, .h3 {
|
129 |
+
font-size: 1.75rem;
|
130 |
+
}
|
131 |
+
}
|
132 |
+
|
133 |
+
h4, .h4 {
|
134 |
+
font-size: calc(1.275rem + 0.3vw);
|
135 |
+
}
|
136 |
+
@media (min-width: 1200px) {
|
137 |
+
h4, .h4 {
|
138 |
+
font-size: 1.5rem;
|
139 |
+
}
|
140 |
+
}
|
141 |
+
|
142 |
+
h5, .h5 {
|
143 |
+
font-size: 1.25rem;
|
144 |
+
}
|
145 |
+
|
146 |
+
h6, .h6 {
|
147 |
+
font-size: 1rem;
|
148 |
+
}
|
149 |
+
|
150 |
+
p {
|
151 |
+
margin-top: 0;
|
152 |
+
margin-bottom: 1rem;
|
153 |
+
}
|
154 |
+
|
155 |
+
abbr[title],
|
156 |
+
abbr[data-bs-original-title] {
|
157 |
+
-webkit-text-decoration: underline dotted;
|
158 |
+
text-decoration: underline dotted;
|
159 |
+
cursor: help;
|
160 |
+
-webkit-text-decoration-skip-ink: none;
|
161 |
+
text-decoration-skip-ink: none;
|
162 |
+
}
|
163 |
+
|
164 |
+
address {
|
165 |
+
margin-bottom: 1rem;
|
166 |
+
font-style: normal;
|
167 |
+
line-height: inherit;
|
168 |
+
}
|
169 |
+
|
170 |
+
ol,
|
171 |
+
ul {
|
172 |
+
padding-left: 2rem;
|
173 |
+
}
|
174 |
+
|
175 |
+
ol,
|
176 |
+
ul,
|
177 |
+
dl {
|
178 |
+
margin-top: 0;
|
179 |
+
margin-bottom: 1rem;
|
180 |
+
}
|
181 |
+
|
182 |
+
ol ol,
|
183 |
+
ul ul,
|
184 |
+
ol ul,
|
185 |
+
ul ol {
|
186 |
+
margin-bottom: 0;
|
187 |
+
}
|
188 |
+
|
189 |
+
dt {
|
190 |
+
font-weight: 700;
|
191 |
+
}
|
192 |
+
|
193 |
+
dd {
|
194 |
+
margin-bottom: 0.5rem;
|
195 |
+
margin-left: 0;
|
196 |
+
}
|
197 |
+
|
198 |
+
blockquote {
|
199 |
+
margin: 0 0 1rem;
|
200 |
+
}
|
201 |
+
|
202 |
+
b,
|
203 |
+
strong {
|
204 |
+
font-weight: bolder;
|
205 |
+
}
|
206 |
+
|
207 |
+
small, .small {
|
208 |
+
font-size: 0.875em;
|
209 |
+
}
|
210 |
+
|
211 |
+
mark, .mark {
|
212 |
+
padding: 0.2em;
|
213 |
+
background-color: #fcf8e3;
|
214 |
+
}
|
215 |
+
|
216 |
+
sub,
|
217 |
+
sup {
|
218 |
+
position: relative;
|
219 |
+
font-size: 0.75em;
|
220 |
+
line-height: 0;
|
221 |
+
vertical-align: baseline;
|
222 |
+
}
|
223 |
+
|
224 |
+
sub {
|
225 |
+
bottom: -0.25em;
|
226 |
+
}
|
227 |
+
|
228 |
+
sup {
|
229 |
+
top: -0.5em;
|
230 |
+
}
|
231 |
+
|
232 |
+
a {
|
233 |
+
color: #0d6efd;
|
234 |
+
text-decoration: underline;
|
235 |
+
}
|
236 |
+
a:hover {
|
237 |
+
color: #0a58ca;
|
238 |
+
}
|
239 |
+
|
240 |
+
a:not([href]):not([class]), a:not([href]):not([class]):hover {
|
241 |
+
color: inherit;
|
242 |
+
text-decoration: none;
|
243 |
+
}
|
244 |
+
|
245 |
+
pre,
|
246 |
+
code,
|
247 |
+
kbd,
|
248 |
+
samp {
|
249 |
+
font-family: var(--bs-font-monospace);
|
250 |
+
font-size: 1em;
|
251 |
+
direction: ltr /* rtl:ignore */;
|
252 |
+
unicode-bidi: bidi-override;
|
253 |
+
}
|
254 |
+
|
255 |
+
pre {
|
256 |
+
display: block;
|
257 |
+
margin-top: 0;
|
258 |
+
margin-bottom: 1rem;
|
259 |
+
overflow: auto;
|
260 |
+
font-size: 0.875em;
|
261 |
+
}
|
262 |
+
pre code {
|
263 |
+
font-size: inherit;
|
264 |
+
color: inherit;
|
265 |
+
word-break: normal;
|
266 |
+
}
|
267 |
+
|
268 |
+
code {
|
269 |
+
font-size: 0.875em;
|
270 |
+
color: #d63384;
|
271 |
+
word-wrap: break-word;
|
272 |
+
}
|
273 |
+
a > code {
|
274 |
+
color: inherit;
|
275 |
+
}
|
276 |
+
|
277 |
+
kbd {
|
278 |
+
padding: 0.2rem 0.4rem;
|
279 |
+
font-size: 0.875em;
|
280 |
+
color: #fff;
|
281 |
+
background-color: #212529;
|
282 |
+
border-radius: 0.2rem;
|
283 |
+
}
|
284 |
+
kbd kbd {
|
285 |
+
padding: 0;
|
286 |
+
font-size: 1em;
|
287 |
+
font-weight: 700;
|
288 |
+
}
|
289 |
+
|
290 |
+
figure {
|
291 |
+
margin: 0 0 1rem;
|
292 |
+
}
|
293 |
+
|
294 |
+
img,
|
295 |
+
svg {
|
296 |
+
vertical-align: middle;
|
297 |
+
}
|
298 |
+
|
299 |
+
table {
|
300 |
+
caption-side: bottom;
|
301 |
+
border-collapse: collapse;
|
302 |
+
}
|
303 |
+
|
304 |
+
caption {
|
305 |
+
padding-top: 0.5rem;
|
306 |
+
padding-bottom: 0.5rem;
|
307 |
+
color: #6c757d;
|
308 |
+
text-align: left;
|
309 |
+
}
|
310 |
+
|
311 |
+
th {
|
312 |
+
text-align: inherit;
|
313 |
+
text-align: -webkit-match-parent;
|
314 |
+
}
|
315 |
+
|
316 |
+
thead,
|
317 |
+
tbody,
|
318 |
+
tfoot,
|
319 |
+
tr,
|
320 |
+
td,
|
321 |
+
th {
|
322 |
+
border-color: inherit;
|
323 |
+
border-style: solid;
|
324 |
+
border-width: 0;
|
325 |
+
}
|
326 |
+
|
327 |
+
label {
|
328 |
+
display: inline-block;
|
329 |
+
}
|
330 |
+
|
331 |
+
button {
|
332 |
+
border-radius: 0;
|
333 |
+
}
|
334 |
+
|
335 |
+
button:focus:not(:focus-visible) {
|
336 |
+
outline: 0;
|
337 |
+
}
|
338 |
+
|
339 |
+
input,
|
340 |
+
button,
|
341 |
+
select,
|
342 |
+
optgroup,
|
343 |
+
textarea {
|
344 |
+
margin: 0;
|
345 |
+
font-family: inherit;
|
346 |
+
font-size: inherit;
|
347 |
+
line-height: inherit;
|
348 |
+
}
|
349 |
+
|
350 |
+
button,
|
351 |
+
select {
|
352 |
+
text-transform: none;
|
353 |
+
}
|
354 |
+
|
355 |
+
[role=button] {
|
356 |
+
cursor: pointer;
|
357 |
+
}
|
358 |
+
|
359 |
+
select {
|
360 |
+
word-wrap: normal;
|
361 |
+
}
|
362 |
+
select:disabled {
|
363 |
+
opacity: 1;
|
364 |
+
}
|
365 |
+
|
366 |
+
[list]::-webkit-calendar-picker-indicator {
|
367 |
+
display: none;
|
368 |
+
}
|
369 |
+
|
370 |
+
button,
|
371 |
+
[type=button],
|
372 |
+
[type=reset],
|
373 |
+
[type=submit] {
|
374 |
+
-webkit-appearance: button;
|
375 |
+
}
|
376 |
+
button:not(:disabled),
|
377 |
+
[type=button]:not(:disabled),
|
378 |
+
[type=reset]:not(:disabled),
|
379 |
+
[type=submit]:not(:disabled) {
|
380 |
+
cursor: pointer;
|
381 |
+
}
|
382 |
+
|
383 |
+
::-moz-focus-inner {
|
384 |
+
padding: 0;
|
385 |
+
border-style: none;
|
386 |
+
}
|
387 |
+
|
388 |
+
textarea {
|
389 |
+
resize: vertical;
|
390 |
+
}
|
391 |
+
|
392 |
+
fieldset {
|
393 |
+
min-width: 0;
|
394 |
+
padding: 0;
|
395 |
+
margin: 0;
|
396 |
+
border: 0;
|
397 |
+
}
|
398 |
+
|
399 |
+
legend {
|
400 |
+
float: left;
|
401 |
+
width: 100%;
|
402 |
+
padding: 0;
|
403 |
+
margin-bottom: 0.5rem;
|
404 |
+
font-size: calc(1.275rem + 0.3vw);
|
405 |
+
line-height: inherit;
|
406 |
+
}
|
407 |
+
@media (min-width: 1200px) {
|
408 |
+
legend {
|
409 |
+
font-size: 1.5rem;
|
410 |
+
}
|
411 |
+
}
|
412 |
+
legend + * {
|
413 |
+
clear: left;
|
414 |
+
}
|
415 |
+
|
416 |
+
::-webkit-datetime-edit-fields-wrapper,
|
417 |
+
::-webkit-datetime-edit-text,
|
418 |
+
::-webkit-datetime-edit-minute,
|
419 |
+
::-webkit-datetime-edit-hour-field,
|
420 |
+
::-webkit-datetime-edit-day-field,
|
421 |
+
::-webkit-datetime-edit-month-field,
|
422 |
+
::-webkit-datetime-edit-year-field {
|
423 |
+
padding: 0;
|
424 |
+
}
|
425 |
+
|
426 |
+
::-webkit-inner-spin-button {
|
427 |
+
height: auto;
|
428 |
+
}
|
429 |
+
|
430 |
+
[type=search] {
|
431 |
+
outline-offset: -2px;
|
432 |
+
-webkit-appearance: textfield;
|
433 |
+
}
|
434 |
+
|
435 |
+
/* rtl:raw:
|
436 |
+
[type="tel"],
|
437 |
+
[type="url"],
|
438 |
+
[type="email"],
|
439 |
+
[type="number"] {
|
440 |
+
direction: ltr;
|
441 |
+
}
|
442 |
+
*/
|
443 |
+
::-webkit-search-decoration {
|
444 |
+
-webkit-appearance: none;
|
445 |
+
}
|
446 |
+
|
447 |
+
::-webkit-color-swatch-wrapper {
|
448 |
+
padding: 0;
|
449 |
+
}
|
450 |
+
|
451 |
+
::-webkit-file-upload-button {
|
452 |
+
font: inherit;
|
453 |
+
}
|
454 |
+
|
455 |
+
::file-selector-button {
|
456 |
+
font: inherit;
|
457 |
+
}
|
458 |
+
|
459 |
+
::-webkit-file-upload-button {
|
460 |
+
font: inherit;
|
461 |
+
-webkit-appearance: button;
|
462 |
+
}
|
463 |
+
|
464 |
+
output {
|
465 |
+
display: inline-block;
|
466 |
+
}
|
467 |
+
|
468 |
+
iframe {
|
469 |
+
border: 0;
|
470 |
+
}
|
471 |
+
|
472 |
+
summary {
|
473 |
+
display: list-item;
|
474 |
+
cursor: pointer;
|
475 |
+
}
|
476 |
+
|
477 |
+
progress {
|
478 |
+
vertical-align: baseline;
|
479 |
+
}
|
480 |
+
|
481 |
+
[hidden] {
|
482 |
+
display: none !important;
|
483 |
+
}
|
484 |
+
|
485 |
+
.lead {
|
486 |
+
font-size: 1.25rem;
|
487 |
+
font-weight: 300;
|
488 |
+
}
|
489 |
+
|
490 |
+
.display-1 {
|
491 |
+
font-size: calc(1.625rem + 4.5vw);
|
492 |
+
font-weight: 300;
|
493 |
+
line-height: 1.2;
|
494 |
+
}
|
495 |
+
@media (min-width: 1200px) {
|
496 |
+
.display-1 {
|
497 |
+
font-size: 5rem;
|
498 |
+
}
|
499 |
+
}
|
500 |
+
|
501 |
+
.display-2 {
|
502 |
+
font-size: calc(1.575rem + 3.9vw);
|
503 |
+
font-weight: 300;
|
504 |
+
line-height: 1.2;
|
505 |
+
}
|
506 |
+
@media (min-width: 1200px) {
|
507 |
+
.display-2 {
|
508 |
+
font-size: 4.5rem;
|
509 |
+
}
|
510 |
+
}
|
511 |
+
|
512 |
+
.display-3 {
|
513 |
+
font-size: calc(1.525rem + 3.3vw);
|
514 |
+
font-weight: 300;
|
515 |
+
line-height: 1.2;
|
516 |
+
}
|
517 |
+
@media (min-width: 1200px) {
|
518 |
+
.display-3 {
|
519 |
+
font-size: 4rem;
|
520 |
+
}
|
521 |
+
}
|
522 |
+
|
523 |
+
.display-4 {
|
524 |
+
font-size: calc(1.475rem + 2.7vw);
|
525 |
+
font-weight: 300;
|
526 |
+
line-height: 1.2;
|
527 |
+
}
|
528 |
+
@media (min-width: 1200px) {
|
529 |
+
.display-4 {
|
530 |
+
font-size: 3.5rem;
|
531 |
+
}
|
532 |
+
}
|
533 |
+
|
534 |
+
.display-5 {
|
535 |
+
font-size: calc(1.425rem + 2.1vw);
|
536 |
+
font-weight: 300;
|
537 |
+
line-height: 1.2;
|
538 |
+
}
|
539 |
+
@media (min-width: 1200px) {
|
540 |
+
.display-5 {
|
541 |
+
font-size: 3rem;
|
542 |
+
}
|
543 |
+
}
|
544 |
+
|
545 |
+
.display-6 {
|
546 |
+
font-size: calc(1.375rem + 1.5vw);
|
547 |
+
font-weight: 300;
|
548 |
+
line-height: 1.2;
|
549 |
+
}
|
550 |
+
@media (min-width: 1200px) {
|
551 |
+
.display-6 {
|
552 |
+
font-size: 2.5rem;
|
553 |
+
}
|
554 |
+
}
|
555 |
+
|
556 |
+
.list-unstyled {
|
557 |
+
padding-left: 0;
|
558 |
+
list-style: none;
|
559 |
+
}
|
560 |
+
|
561 |
+
.list-inline {
|
562 |
+
padding-left: 0;
|
563 |
+
list-style: none;
|
564 |
+
}
|
565 |
+
|
566 |
+
.list-inline-item {
|
567 |
+
display: inline-block;
|
568 |
+
}
|
569 |
+
.list-inline-item:not(:last-child) {
|
570 |
+
margin-right: 0.5rem;
|
571 |
+
}
|
572 |
+
|
573 |
+
.initialism {
|
574 |
+
font-size: 0.875em;
|
575 |
+
text-transform: uppercase;
|
576 |
+
}
|
577 |
+
|
578 |
+
.blockquote {
|
579 |
+
margin-bottom: 1rem;
|
580 |
+
font-size: 1.25rem;
|
581 |
+
}
|
582 |
+
.blockquote > :last-child {
|
583 |
+
margin-bottom: 0;
|
584 |
+
}
|
585 |
+
|
586 |
+
.blockquote-footer {
|
587 |
+
margin-top: -1rem;
|
588 |
+
margin-bottom: 1rem;
|
589 |
+
font-size: 0.875em;
|
590 |
+
color: #6c757d;
|
591 |
+
}
|
592 |
+
.blockquote-footer::before {
|
593 |
+
content: "— ";
|
594 |
+
}
|
595 |
+
|
596 |
+
.img-fluid {
|
597 |
+
max-width: 100%;
|
598 |
+
height: auto;
|
599 |
+
}
|
600 |
+
|
601 |
+
.img-thumbnail {
|
602 |
+
padding: 0.25rem;
|
603 |
+
background-color: #fff;
|
604 |
+
border: 1px solid #dee2e6;
|
605 |
+
border-radius: 0.25rem;
|
606 |
+
max-width: 100%;
|
607 |
+
height: auto;
|
608 |
+
}
|
609 |
+
|
610 |
+
.figure {
|
611 |
+
display: inline-block;
|
612 |
+
}
|
613 |
+
|
614 |
+
.figure-img {
|
615 |
+
margin-bottom: 0.5rem;
|
616 |
+
line-height: 1;
|
617 |
+
}
|
618 |
+
|
619 |
+
.figure-caption {
|
620 |
+
font-size: 0.875em;
|
621 |
+
color: #6c757d;
|
622 |
+
}
|
623 |
+
|
624 |
+
.container,
|
625 |
+
.container-fluid,
|
626 |
+
.container-xxl,
|
627 |
+
.container-xl,
|
628 |
+
.container-lg,
|
629 |
+
.container-md,
|
630 |
+
.container-sm {
|
631 |
+
width: 100%;
|
632 |
+
padding-right: var(--bs-gutter-x, 0.75rem);
|
633 |
+
padding-left: var(--bs-gutter-x, 0.75rem);
|
634 |
+
margin-right: auto;
|
635 |
+
margin-left: auto;
|
636 |
+
}
|
637 |
+
|
638 |
+
@media (min-width: 576px) {
|
639 |
+
.container-sm, .container {
|
640 |
+
max-width: 540px;
|
641 |
+
}
|
642 |
+
}
|
643 |
+
@media (min-width: 768px) {
|
644 |
+
.container-md, .container-sm, .container {
|
645 |
+
max-width: 720px;
|
646 |
+
}
|
647 |
+
}
|
648 |
+
@media (min-width: 992px) {
|
649 |
+
.container-lg, .container-md, .container-sm, .container {
|
650 |
+
max-width: 960px;
|
651 |
+
}
|
652 |
+
}
|
653 |
+
@media (min-width: 1200px) {
|
654 |
+
.container-xl, .container-lg, .container-md, .container-sm, .container {
|
655 |
+
max-width: 1140px;
|
656 |
+
}
|
657 |
+
}
|
658 |
+
@media (min-width: 1400px) {
|
659 |
+
.container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
|
660 |
+
max-width: 1320px;
|
661 |
+
}
|
662 |
+
}
|
663 |
+
.row {
|
664 |
+
--bs-gutter-x: 1.5rem;
|
665 |
+
--bs-gutter-y: 0;
|
666 |
+
display: flex;
|
667 |
+
flex-wrap: wrap;
|
668 |
+
margin-top: calc(-1 * var(--bs-gutter-y));
|
669 |
+
margin-right: calc(-0.5 * var(--bs-gutter-x));
|
670 |
+
margin-left: calc(-0.5 * var(--bs-gutter-x));
|
671 |
+
}
|
672 |
+
.row > * {
|
673 |
+
flex-shrink: 0;
|
674 |
+
width: 100%;
|
675 |
+
max-width: 100%;
|
676 |
+
padding-right: calc(var(--bs-gutter-x) * 0.5);
|
677 |
+
padding-left: calc(var(--bs-gutter-x) * 0.5);
|
678 |
+
margin-top: var(--bs-gutter-y);
|
679 |
+
}
|
680 |
+
|
681 |
+
.col {
|
682 |
+
flex: 1 0 0%;
|
683 |
+
}
|
684 |
+
|
685 |
+
.row-cols-auto > * {
|
686 |
+
flex: 0 0 auto;
|
687 |
+
width: auto;
|
688 |
+
}
|
689 |
+
|
690 |
+
.row-cols-1 > * {
|
691 |
+
flex: 0 0 auto;
|
692 |
+
width: 100%;
|
693 |
+
}
|
694 |
+
|
695 |
+
.row-cols-2 > * {
|
696 |
+
flex: 0 0 auto;
|
697 |
+
width: 50%;
|
698 |
+
}
|
699 |
+
|
700 |
+
.row-cols-3 > * {
|
701 |
+
flex: 0 0 auto;
|
702 |
+
width: 33.3333333333%;
|
703 |
+
}
|
704 |
+
|
705 |
+
.row-cols-4 > * {
|
706 |
+
flex: 0 0 auto;
|
707 |
+
width: 25%;
|
708 |
+
}
|
709 |
+
|
710 |
+
.row-cols-5 > * {
|
711 |
+
flex: 0 0 auto;
|
712 |
+
width: 20%;
|
713 |
+
}
|
714 |
+
|
715 |
+
.row-cols-6 > * {
|
716 |
+
flex: 0 0 auto;
|
717 |
+
width: 16.6666666667%;
|
718 |
+
}
|
719 |
+
|
720 |
+
.col-auto {
|
721 |
+
flex: 0 0 auto;
|
722 |
+
width: auto;
|
723 |
+
}
|
724 |
+
|
725 |
+
.col-1 {
|
726 |
+
flex: 0 0 auto;
|
727 |
+
width: 8.33333333%;
|
728 |
+
}
|
729 |
+
|
730 |
+
.col-2 {
|
731 |
+
flex: 0 0 auto;
|
732 |
+
width: 16.66666667%;
|
733 |
+
}
|
734 |
+
|
735 |
+
.col-3 {
|
736 |
+
flex: 0 0 auto;
|
737 |
+
width: 25%;
|
738 |
+
}
|
739 |
+
|
740 |
+
.col-4 {
|
741 |
+
flex: 0 0 auto;
|
742 |
+
width: 33.33333333%;
|
743 |
+
}
|
744 |
+
|
745 |
+
.col-5 {
|
746 |
+
flex: 0 0 auto;
|
747 |
+
width: 41.66666667%;
|
748 |
+
}
|
749 |
+
|
750 |
+
.col-6 {
|
751 |
+
flex: 0 0 auto;
|
752 |
+
width: 50%;
|
753 |
+
}
|
754 |
+
|
755 |
+
.col-7 {
|
756 |
+
flex: 0 0 auto;
|
757 |
+
width: 58.33333333%;
|
758 |
+
}
|
759 |
+
|
760 |
+
.col-8 {
|
761 |
+
flex: 0 0 auto;
|
762 |
+
width: 66.66666667%;
|
763 |
+
}
|
764 |
+
|
765 |
+
.col-9 {
|
766 |
+
flex: 0 0 auto;
|
767 |
+
width: 75%;
|
768 |
+
}
|
769 |
+
|
770 |
+
.col-10 {
|
771 |
+
flex: 0 0 auto;
|
772 |
+
width: 83.33333333%;
|
773 |
+
}
|
774 |
+
|
775 |
+
.col-11 {
|
776 |
+
flex: 0 0 auto;
|
777 |
+
width: 91.66666667%;
|
778 |
+
}
|
779 |
+
|
780 |
+
.col-12 {
|
781 |
+
flex: 0 0 auto;
|
782 |
+
width: 100%;
|
783 |
+
}
|
784 |
+
|
785 |
+
.offset-1 {
|
786 |
+
margin-left: 8.33333333%;
|
787 |
+
}
|
788 |
+
|
789 |
+
.offset-2 {
|
790 |
+
margin-left: 16.66666667%;
|
791 |
+
}
|
792 |
+
|
793 |
+
.offset-3 {
|
794 |
+
margin-left: 25%;
|
795 |
+
}
|
796 |
+
|
797 |
+
.offset-4 {
|
798 |
+
margin-left: 33.33333333%;
|
799 |
+
}
|
800 |
+
|
801 |
+
.offset-5 {
|
802 |
+
margin-left: 41.66666667%;
|
803 |
+
}
|
804 |
+
|
805 |
+
.offset-6 {
|
806 |
+
margin-left: 50%;
|
807 |
+
}
|
808 |
+
|
809 |
+
.offset-7 {
|
810 |
+
margin-left: 58.33333333%;
|
811 |
+
}
|
812 |
+
|
813 |
+
.offset-8 {
|
814 |
+
margin-left: 66.66666667%;
|
815 |
+
}
|
816 |
+
|
817 |
+
.offset-9 {
|
818 |
+
margin-left: 75%;
|
819 |
+
}
|
820 |
+
|
821 |
+
.offset-10 {
|
822 |
+
margin-left: 83.33333333%;
|
823 |
+
}
|
824 |
+
|
825 |
+
.offset-11 {
|
826 |
+
margin-left: 91.66666667%;
|
827 |
+
}
|
828 |
+
|
829 |
+
.g-0,
|
830 |
+
.gx-0 {
|
831 |
+
--bs-gutter-x: 0;
|
832 |
+
}
|
833 |
+
|
834 |
+
.g-0,
|
835 |
+
.gy-0 {
|
836 |
+
--bs-gutter-y: 0;
|
837 |
+
}
|
838 |
+
|
839 |
+
.g-1,
|
840 |
+
.gx-1 {
|
841 |
+
--bs-gutter-x: 0.25rem;
|
842 |
+
}
|
843 |
+
|
844 |
+
.g-1,
|
845 |
+
.gy-1 {
|
846 |
+
--bs-gutter-y: 0.25rem;
|
847 |
+
}
|
848 |
+
|
849 |
+
.g-2,
|
850 |
+
.gx-2 {
|
851 |
+
--bs-gutter-x: 0.5rem;
|
852 |
+
}
|
853 |
+
|
854 |
+
.g-2,
|
855 |
+
.gy-2 {
|
856 |
+
--bs-gutter-y: 0.5rem;
|
857 |
+
}
|
858 |
+
|
859 |
+
.g-3,
|
860 |
+
.gx-3 {
|
861 |
+
--bs-gutter-x: 1rem;
|
862 |
+
}
|
863 |
+
|
864 |
+
.g-3,
|
865 |
+
.gy-3 {
|
866 |
+
--bs-gutter-y: 1rem;
|
867 |
+
}
|
868 |
+
|
869 |
+
.g-4,
|
870 |
+
.gx-4 {
|
871 |
+
--bs-gutter-x: 1.5rem;
|
872 |
+
}
|
873 |
+
|
874 |
+
.g-4,
|
875 |
+
.gy-4 {
|
876 |
+
--bs-gutter-y: 1.5rem;
|
877 |
+
}
|
878 |
+
|
879 |
+
.g-5,
|
880 |
+
.gx-5 {
|
881 |
+
--bs-gutter-x: 3rem;
|
882 |
+
}
|
883 |
+
|
884 |
+
.g-5,
|
885 |
+
.gy-5 {
|
886 |
+
--bs-gutter-y: 3rem;
|
887 |
+
}
|
888 |
+
|
889 |
+
@media (min-width: 576px) {
|
890 |
+
.col-sm {
|
891 |
+
flex: 1 0 0%;
|
892 |
+
}
|
893 |
+
|
894 |
+
.row-cols-sm-auto > * {
|
895 |
+
flex: 0 0 auto;
|
896 |
+
width: auto;
|
897 |
+
}
|
898 |
+
|
899 |
+
.row-cols-sm-1 > * {
|
900 |
+
flex: 0 0 auto;
|
901 |
+
width: 100%;
|
902 |
+
}
|
903 |
+
|
904 |
+
.row-cols-sm-2 > * {
|
905 |
+
flex: 0 0 auto;
|
906 |
+
width: 50%;
|
907 |
+
}
|
908 |
+
|
909 |
+
.row-cols-sm-3 > * {
|
910 |
+
flex: 0 0 auto;
|
911 |
+
width: 33.3333333333%;
|
912 |
+
}
|
913 |
+
|
914 |
+
.row-cols-sm-4 > * {
|
915 |
+
flex: 0 0 auto;
|
916 |
+
width: 25%;
|
917 |
+
}
|
918 |
+
|
919 |
+
.row-cols-sm-5 > * {
|
920 |
+
flex: 0 0 auto;
|
921 |
+
width: 20%;
|
922 |
+
}
|
923 |
+
|
924 |
+
.row-cols-sm-6 > * {
|
925 |
+
flex: 0 0 auto;
|
926 |
+
width: 16.6666666667%;
|
927 |
+
}
|
928 |
+
|
929 |
+
.col-sm-auto {
|
930 |
+
flex: 0 0 auto;
|
931 |
+
width: auto;
|
932 |
+
}
|
933 |
+
|
934 |
+
.col-sm-1 {
|
935 |
+
flex: 0 0 auto;
|
936 |
+
width: 8.33333333%;
|
937 |
+
}
|
938 |
+
|
939 |
+
.col-sm-2 {
|
940 |
+
flex: 0 0 auto;
|
941 |
+
width: 16.66666667%;
|
942 |
+
}
|
943 |
+
|
944 |
+
.col-sm-3 {
|
945 |
+
flex: 0 0 auto;
|
946 |
+
width: 25%;
|
947 |
+
}
|
948 |
+
|
949 |
+
.col-sm-4 {
|
950 |
+
flex: 0 0 auto;
|
951 |
+
width: 33.33333333%;
|
952 |
+
}
|
953 |
+
|
954 |
+
.col-sm-5 {
|
955 |
+
flex: 0 0 auto;
|
956 |
+
width: 41.66666667%;
|
957 |
+
}
|
958 |
+
|
959 |
+
.col-sm-6 {
|
960 |
+
flex: 0 0 auto;
|
961 |
+
width: 50%;
|
962 |
+
}
|
963 |
+
|
964 |
+
.col-sm-7 {
|
965 |
+
flex: 0 0 auto;
|
966 |
+
width: 58.33333333%;
|
967 |
+
}
|
968 |
+
|
969 |
+
.col-sm-8 {
|
970 |
+
flex: 0 0 auto;
|
971 |
+
width: 66.66666667%;
|
972 |
+
}
|
973 |
+
|
974 |
+
.col-sm-9 {
|
975 |
+
flex: 0 0 auto;
|
976 |
+
width: 75%;
|
977 |
+
}
|
978 |
+
|
979 |
+
.col-sm-10 {
|
980 |
+
flex: 0 0 auto;
|
981 |
+
width: 83.33333333%;
|
982 |
+
}
|
983 |
+
|
984 |
+
.col-sm-11 {
|
985 |
+
flex: 0 0 auto;
|
986 |
+
width: 91.66666667%;
|
987 |
+
}
|
988 |
+
|
989 |
+
.col-sm-12 {
|
990 |
+
flex: 0 0 auto;
|
991 |
+
width: 100%;
|
992 |
+
}
|
993 |
+
|
994 |
+
.offset-sm-0 {
|
995 |
+
margin-left: 0;
|
996 |
+
}
|
997 |
+
|
998 |
+
.offset-sm-1 {
|
999 |
+
margin-left: 8.33333333%;
|
1000 |
+
}
|
1001 |
+
|
1002 |
+
.offset-sm-2 {
|
1003 |
+
margin-left: 16.66666667%;
|
1004 |
+
}
|
1005 |
+
|
1006 |
+
.offset-sm-3 {
|
1007 |
+
margin-left: 25%;
|
1008 |
+
}
|
1009 |
+
|
1010 |
+
.offset-sm-4 {
|
1011 |
+
margin-left: 33.33333333%;
|
1012 |
+
}
|
1013 |
+
|
1014 |
+
.offset-sm-5 {
|
1015 |
+
margin-left: 41.66666667%;
|
1016 |
+
}
|
1017 |
+
|
1018 |
+
.offset-sm-6 {
|
1019 |
+
margin-left: 50%;
|
1020 |
+
}
|
1021 |
+
|
1022 |
+
.offset-sm-7 {
|
1023 |
+
margin-left: 58.33333333%;
|
1024 |
+
}
|
1025 |
+
|
1026 |
+
.offset-sm-8 {
|
1027 |
+
margin-left: 66.66666667%;
|
1028 |
+
}
|
1029 |
+
|
1030 |
+
.offset-sm-9 {
|
1031 |
+
margin-left: 75%;
|
1032 |
+
}
|
1033 |
+
|
1034 |
+
.offset-sm-10 {
|
1035 |
+
margin-left: 83.33333333%;
|
1036 |
+
}
|
1037 |
+
|
1038 |
+
.offset-sm-11 {
|
1039 |
+
margin-left: 91.66666667%;
|
1040 |
+
}
|
1041 |
+
|
1042 |
+
.g-sm-0,
|
1043 |
+
.gx-sm-0 {
|
1044 |
+
--bs-gutter-x: 0;
|
1045 |
+
}
|
1046 |
+
|
1047 |
+
.g-sm-0,
|
1048 |
+
.gy-sm-0 {
|
1049 |
+
--bs-gutter-y: 0;
|
1050 |
+
}
|
1051 |
+
|
1052 |
+
.g-sm-1,
|
1053 |
+
.gx-sm-1 {
|
1054 |
+
--bs-gutter-x: 0.25rem;
|
1055 |
+
}
|
1056 |
+
|
1057 |
+
.g-sm-1,
|
1058 |
+
.gy-sm-1 {
|
1059 |
+
--bs-gutter-y: 0.25rem;
|
1060 |
+
}
|
1061 |
+
|
1062 |
+
.g-sm-2,
|
1063 |
+
.gx-sm-2 {
|
1064 |
+
--bs-gutter-x: 0.5rem;
|
1065 |
+
}
|
1066 |
+
|
1067 |
+
.g-sm-2,
|
1068 |
+
.gy-sm-2 {
|
1069 |
+
--bs-gutter-y: 0.5rem;
|
1070 |
+
}
|
1071 |
+
|
1072 |
+
.g-sm-3,
|
1073 |
+
.gx-sm-3 {
|
1074 |
+
--bs-gutter-x: 1rem;
|
1075 |
+
}
|
1076 |
+
|
1077 |
+
.g-sm-3,
|
1078 |
+
.gy-sm-3 {
|
1079 |
+
--bs-gutter-y: 1rem;
|
1080 |
+
}
|
1081 |
+
|
1082 |
+
.g-sm-4,
|
1083 |
+
.gx-sm-4 {
|
1084 |
+
--bs-gutter-x: 1.5rem;
|
1085 |
+
}
|
1086 |
+
|
1087 |
+
.g-sm-4,
|
1088 |
+
.gy-sm-4 {
|
1089 |
+
--bs-gutter-y: 1.5rem;
|
1090 |
+
}
|
1091 |
+
|
1092 |
+
.g-sm-5,
|
1093 |
+
.gx-sm-5 {
|
1094 |
+
--bs-gutter-x: 3rem;
|
1095 |
+
}
|
1096 |
+
|
1097 |
+
.g-sm-5,
|
1098 |
+
.gy-sm-5 {
|
1099 |
+
--bs-gutter-y: 3rem;
|
1100 |
+
}
|
1101 |
+
}
|
1102 |
+
@media (min-width: 768px) {
|
1103 |
+
.col-md {
|
1104 |
+
flex: 1 0 0%;
|
1105 |
+
}
|
1106 |
+
|
1107 |
+
.row-cols-md-auto > * {
|
1108 |
+
flex: 0 0 auto;
|
1109 |
+
width: auto;
|
1110 |
+
}
|
1111 |
+
|
1112 |
+
.row-cols-md-1 > * {
|
1113 |
+
flex: 0 0 auto;
|
1114 |
+
width: 100%;
|
1115 |
+
}
|
1116 |
+
|
1117 |
+
.row-cols-md-2 > * {
|
1118 |
+
flex: 0 0 auto;
|
1119 |
+
width: 50%;
|
1120 |
+
}
|
1121 |
+
|
1122 |
+
.row-cols-md-3 > * {
|
1123 |
+
flex: 0 0 auto;
|
1124 |
+
width: 33.3333333333%;
|
1125 |
+
}
|
1126 |
+
|
1127 |
+
.row-cols-md-4 > * {
|
1128 |
+
flex: 0 0 auto;
|
1129 |
+
width: 25%;
|
1130 |
+
}
|
1131 |
+
|
1132 |
+
.row-cols-md-5 > * {
|
1133 |
+
flex: 0 0 auto;
|
1134 |
+
width: 20%;
|
1135 |
+
}
|
1136 |
+
|
1137 |
+
.row-cols-md-6 > * {
|
1138 |
+
flex: 0 0 auto;
|
1139 |
+
width: 16.6666666667%;
|
1140 |
+
}
|
1141 |
+
|
1142 |
+
.col-md-auto {
|
1143 |
+
flex: 0 0 auto;
|
1144 |
+
width: auto;
|
1145 |
+
}
|
1146 |
+
|
1147 |
+
.col-md-1 {
|
1148 |
+
flex: 0 0 auto;
|
1149 |
+
width: 8.33333333%;
|
1150 |
+
}
|
1151 |
+
|
1152 |
+
.col-md-2 {
|
1153 |
+
flex: 0 0 auto;
|
1154 |
+
width: 16.66666667%;
|
1155 |
+
}
|
1156 |
+
|
1157 |
+
.col-md-3 {
|
1158 |
+
flex: 0 0 auto;
|
1159 |
+
width: 25%;
|
1160 |
+
}
|
1161 |
+
|
1162 |
+
.col-md-4 {
|
1163 |
+
flex: 0 0 auto;
|
1164 |
+
width: 33.33333333%;
|
1165 |
+
}
|
1166 |
+
|
1167 |
+
.col-md-5 {
|
1168 |
+
flex: 0 0 auto;
|
1169 |
+
width: 41.66666667%;
|
1170 |
+
}
|
1171 |
+
|
1172 |
+
.col-md-6 {
|
1173 |
+
flex: 0 0 auto;
|
1174 |
+
width: 50%;
|
1175 |
+
}
|
1176 |
+
|
1177 |
+
.col-md-7 {
|
1178 |
+
flex: 0 0 auto;
|
1179 |
+
width: 58.33333333%;
|
1180 |
+
}
|
1181 |
+
|
1182 |
+
.col-md-8 {
|
1183 |
+
flex: 0 0 auto;
|
1184 |
+
width: 66.66666667%;
|
1185 |
+
}
|
1186 |
+
|
1187 |
+
.col-md-9 {
|
1188 |
+
flex: 0 0 auto;
|
1189 |
+
width: 75%;
|
1190 |
+
}
|
1191 |
+
|
1192 |
+
.col-md-10 {
|
1193 |
+
flex: 0 0 auto;
|
1194 |
+
width: 83.33333333%;
|
1195 |
+
}
|
1196 |
+
|
1197 |
+
.col-md-11 {
|
1198 |
+
flex: 0 0 auto;
|
1199 |
+
width: 91.66666667%;
|
1200 |
+
}
|
1201 |
+
|
1202 |
+
.col-md-12 {
|
1203 |
+
flex: 0 0 auto;
|
1204 |
+
width: 100%;
|
1205 |
+
}
|
1206 |
+
|
1207 |
+
.offset-md-0 {
|
1208 |
+
margin-left: 0;
|
1209 |
+
}
|
1210 |
+
|
1211 |
+
.offset-md-1 {
|
1212 |
+
margin-left: 8.33333333%;
|
1213 |
+
}
|
1214 |
+
|
1215 |
+
.offset-md-2 {
|
1216 |
+
margin-left: 16.66666667%;
|
1217 |
+
}
|
1218 |
+
|
1219 |
+
.offset-md-3 {
|
1220 |
+
margin-left: 25%;
|
1221 |
+
}
|
1222 |
+
|
1223 |
+
.offset-md-4 {
|
1224 |
+
margin-left: 33.33333333%;
|
1225 |
+
}
|
1226 |
+
|
1227 |
+
.offset-md-5 {
|
1228 |
+
margin-left: 41.66666667%;
|
1229 |
+
}
|
1230 |
+
|
1231 |
+
.offset-md-6 {
|
1232 |
+
margin-left: 50%;
|
1233 |
+
}
|
1234 |
+
|
1235 |
+
.offset-md-7 {
|
1236 |
+
margin-left: 58.33333333%;
|
1237 |
+
}
|
1238 |
+
|
1239 |
+
.offset-md-8 {
|
1240 |
+
margin-left: 66.66666667%;
|
1241 |
+
}
|
1242 |
+
|
1243 |
+
.offset-md-9 {
|
1244 |
+
margin-left: 75%;
|
1245 |
+
}
|
1246 |
+
|
1247 |
+
.offset-md-10 {
|
1248 |
+
margin-left: 83.33333333%;
|
1249 |
+
}
|
1250 |
+
|
1251 |
+
.offset-md-11 {
|
1252 |
+
margin-left: 91.66666667%;
|
1253 |
+
}
|
1254 |
+
|
1255 |
+
.g-md-0,
|
1256 |
+
.gx-md-0 {
|
1257 |
+
--bs-gutter-x: 0;
|
1258 |
+
}
|
1259 |
+
|
1260 |
+
.g-md-0,
|
1261 |
+
.gy-md-0 {
|
1262 |
+
--bs-gutter-y: 0;
|
1263 |
+
}
|
1264 |
+
|
1265 |
+
.g-md-1,
|
1266 |
+
.gx-md-1 {
|
1267 |
+
--bs-gutter-x: 0.25rem;
|
1268 |
+
}
|
1269 |
+
|
1270 |
+
.g-md-1,
|
1271 |
+
.gy-md-1 {
|
1272 |
+
--bs-gutter-y: 0.25rem;
|
1273 |
+
}
|
1274 |
+
|
1275 |
+
.g-md-2,
|
1276 |
+
.gx-md-2 {
|
1277 |
+
--bs-gutter-x: 0.5rem;
|
1278 |
+
}
|
1279 |
+
|
1280 |
+
.g-md-2,
|
1281 |
+
.gy-md-2 {
|
1282 |
+
--bs-gutter-y: 0.5rem;
|
1283 |
+
}
|
1284 |
+
|
1285 |
+
.g-md-3,
|
1286 |
+
.gx-md-3 {
|
1287 |
+
--bs-gutter-x: 1rem;
|
1288 |
+
}
|
1289 |
+
|
1290 |
+
.g-md-3,
|
1291 |
+
.gy-md-3 {
|
1292 |
+
--bs-gutter-y: 1rem;
|
1293 |
+
}
|
1294 |
+
|
1295 |
+
.g-md-4,
|
1296 |
+
.gx-md-4 {
|
1297 |
+
--bs-gutter-x: 1.5rem;
|
1298 |
+
}
|
1299 |
+
|
1300 |
+
.g-md-4,
|
1301 |
+
.gy-md-4 {
|
1302 |
+
--bs-gutter-y: 1.5rem;
|
1303 |
+
}
|
1304 |
+
|
1305 |
+
.g-md-5,
|
1306 |
+
.gx-md-5 {
|
1307 |
+
--bs-gutter-x: 3rem;
|
1308 |
+
}
|
1309 |
+
|
1310 |
+
.g-md-5,
|
1311 |
+
.gy-md-5 {
|
1312 |
+
--bs-gutter-y: 3rem;
|
1313 |
+
}
|
1314 |
+
}
|
1315 |
+
@media (min-width: 992px) {
|
1316 |
+
.col-lg {
|
1317 |
+
flex: 1 0 0%;
|
1318 |
+
}
|
1319 |
+
|
1320 |
+
.row-cols-lg-auto > * {
|
1321 |
+
flex: 0 0 auto;
|
1322 |
+
width: auto;
|
1323 |
+
}
|
1324 |
+
|
1325 |
+
.row-cols-lg-1 > * {
|
1326 |
+
flex: 0 0 auto;
|
1327 |
+
width: 100%;
|
1328 |
+
}
|
1329 |
+
|
1330 |
+
.row-cols-lg-2 > * {
|
1331 |
+
flex: 0 0 auto;
|
1332 |
+
width: 50%;
|
1333 |
+
}
|
1334 |
+
|
1335 |
+
.row-cols-lg-3 > * {
|
1336 |
+
flex: 0 0 auto;
|
1337 |
+
width: 33.3333333333%;
|
1338 |
+
}
|
1339 |
+
|
1340 |
+
.row-cols-lg-4 > * {
|
1341 |
+
flex: 0 0 auto;
|
1342 |
+
width: 25%;
|
1343 |
+
}
|
1344 |
+
|
1345 |
+
.row-cols-lg-5 > * {
|
1346 |
+
flex: 0 0 auto;
|
1347 |
+
width: 20%;
|
1348 |
+
}
|
1349 |
+
|
1350 |
+
.row-cols-lg-6 > * {
|
1351 |
+
flex: 0 0 auto;
|
1352 |
+
width: 16.6666666667%;
|
1353 |
+
}
|
1354 |
+
|
1355 |
+
.col-lg-auto {
|
1356 |
+
flex: 0 0 auto;
|
1357 |
+
width: auto;
|
1358 |
+
}
|
1359 |
+
|
1360 |
+
.col-lg-1 {
|
1361 |
+
flex: 0 0 auto;
|
1362 |
+
width: 8.33333333%;
|
1363 |
+
}
|
1364 |
+
|
1365 |
+
.col-lg-2 {
|
1366 |
+
flex: 0 0 auto;
|
1367 |
+
width: 16.66666667%;
|
1368 |
+
}
|
1369 |
+
|
1370 |
+
.col-lg-3 {
|
1371 |
+
flex: 0 0 auto;
|
1372 |
+
width: 25%;
|
1373 |
+
}
|
1374 |
+
|
1375 |
+
.col-lg-4 {
|
1376 |
+
flex: 0 0 auto;
|
1377 |
+
width: 33.33333333%;
|
1378 |
+
}
|
1379 |
+
|
1380 |
+
.col-lg-5 {
|
1381 |
+
flex: 0 0 auto;
|
1382 |
+
width: 41.66666667%;
|
1383 |
+
}
|
1384 |
+
|
1385 |
+
.col-lg-6 {
|
1386 |
+
flex: 0 0 auto;
|
1387 |
+
width: 50%;
|
1388 |
+
}
|
1389 |
+
|
1390 |
+
.col-lg-7 {
|
1391 |
+
flex: 0 0 auto;
|
1392 |
+
width: 58.33333333%;
|
1393 |
+
}
|
1394 |
+
|
1395 |
+
.col-lg-8 {
|
1396 |
+
flex: 0 0 auto;
|
1397 |
+
width: 66.66666667%;
|
1398 |
+
}
|
1399 |
+
|
1400 |
+
.col-lg-9 {
|
1401 |
+
flex: 0 0 auto;
|
1402 |
+
width: 75%;
|
1403 |
+
}
|
1404 |
+
|
1405 |
+
.col-lg-10 {
|
1406 |
+
flex: 0 0 auto;
|
1407 |
+
width: 83.33333333%;
|
1408 |
+
}
|
1409 |
+
|
1410 |
+
.col-lg-11 {
|
1411 |
+
flex: 0 0 auto;
|
1412 |
+
width: 91.66666667%;
|
1413 |
+
}
|
1414 |
+
|
1415 |
+
.col-lg-12 {
|
1416 |
+
flex: 0 0 auto;
|
1417 |
+
width: 100%;
|
1418 |
+
}
|
1419 |
+
|
1420 |
+
.offset-lg-0 {
|
1421 |
+
margin-left: 0;
|
1422 |
+
}
|
1423 |
+
|
1424 |
+
.offset-lg-1 {
|
1425 |
+
margin-left: 8.33333333%;
|
1426 |
+
}
|
1427 |
+
|
1428 |
+
.offset-lg-2 {
|
1429 |
+
margin-left: 16.66666667%;
|
1430 |
+
}
|
1431 |
+
|
1432 |
+
.offset-lg-3 {
|
1433 |
+
margin-left: 25%;
|
1434 |
+
}
|
1435 |
+
|
1436 |
+
.offset-lg-4 {
|
1437 |
+
margin-left: 33.33333333%;
|
1438 |
+
}
|
1439 |
+
|
1440 |
+
.offset-lg-5 {
|
1441 |
+
margin-left: 41.66666667%;
|
1442 |
+
}
|
1443 |
+
|
1444 |
+
.offset-lg-6 {
|
1445 |
+
margin-left: 50%;
|
1446 |
+
}
|
1447 |
+
|
1448 |
+
.offset-lg-7 {
|
1449 |
+
margin-left: 58.33333333%;
|
1450 |
+
}
|
1451 |
+
|
1452 |
+
.offset-lg-8 {
|
1453 |
+
margin-left: 66.66666667%;
|
1454 |
+
}
|
1455 |
+
|
1456 |
+
.offset-lg-9 {
|
1457 |
+
margin-left: 75%;
|
1458 |
+
}
|
1459 |
+
|
1460 |
+
.offset-lg-10 {
|
1461 |
+
margin-left: 83.33333333%;
|
1462 |
+
}
|
1463 |
+
|
1464 |
+
.offset-lg-11 {
|
1465 |
+
margin-left: 91.66666667%;
|
1466 |
+
}
|
1467 |
+
|
1468 |
+
.g-lg-0,
|
1469 |
+
.gx-lg-0 {
|
1470 |
+
--bs-gutter-x: 0;
|
1471 |
+
}
|
1472 |
+
|
1473 |
+
.g-lg-0,
|
1474 |
+
.gy-lg-0 {
|
1475 |
+
--bs-gutter-y: 0;
|
1476 |
+
}
|
1477 |
+
|
1478 |
+
.g-lg-1,
|
1479 |
+
.gx-lg-1 {
|
1480 |
+
--bs-gutter-x: 0.25rem;
|
1481 |
+
}
|
1482 |
+
|
1483 |
+
.g-lg-1,
|
1484 |
+
.gy-lg-1 {
|
1485 |
+
--bs-gutter-y: 0.25rem;
|
1486 |
+
}
|
1487 |
+
|
1488 |
+
.g-lg-2,
|
1489 |
+
.gx-lg-2 {
|
1490 |
+
--bs-gutter-x: 0.5rem;
|
1491 |
+
}
|
1492 |
+
|
1493 |
+
.g-lg-2,
|
1494 |
+
.gy-lg-2 {
|
1495 |
+
--bs-gutter-y: 0.5rem;
|
1496 |
+
}
|
1497 |
+
|
1498 |
+
.g-lg-3,
|
1499 |
+
.gx-lg-3 {
|
1500 |
+
--bs-gutter-x: 1rem;
|
1501 |
+
}
|
1502 |
+
|
1503 |
+
.g-lg-3,
|
1504 |
+
.gy-lg-3 {
|
1505 |
+
--bs-gutter-y: 1rem;
|
1506 |
+
}
|
1507 |
+
|
1508 |
+
.g-lg-4,
|
1509 |
+
.gx-lg-4 {
|
1510 |
+
--bs-gutter-x: 1.5rem;
|
1511 |
+
}
|
1512 |
+
|
1513 |
+
.g-lg-4,
|
1514 |
+
.gy-lg-4 {
|
1515 |
+
--bs-gutter-y: 1.5rem;
|
1516 |
+
}
|
1517 |
+
|
1518 |
+
.g-lg-5,
|
1519 |
+
.gx-lg-5 {
|
1520 |
+
--bs-gutter-x: 3rem;
|
1521 |
+
}
|
1522 |
+
|
1523 |
+
.g-lg-5,
|
1524 |
+
.gy-lg-5 {
|
1525 |
+
--bs-gutter-y: 3rem;
|
1526 |
+
}
|
1527 |
+
}
|
1528 |
+
@media (min-width: 1200px) {
|
1529 |
+
.col-xl {
|
1530 |
+
flex: 1 0 0%;
|
1531 |
+
}
|
1532 |
+
|
1533 |
+
.row-cols-xl-auto > * {
|
1534 |
+
flex: 0 0 auto;
|
1535 |
+
width: auto;
|
1536 |
+
}
|
1537 |
+
|
1538 |
+
.row-cols-xl-1 > * {
|
1539 |
+
flex: 0 0 auto;
|
1540 |
+
width: 100%;
|
1541 |
+
}
|
1542 |
+
|
1543 |
+
.row-cols-xl-2 > * {
|
1544 |
+
flex: 0 0 auto;
|
1545 |
+
width: 50%;
|
1546 |
+
}
|
1547 |
+
|
1548 |
+
.row-cols-xl-3 > * {
|
1549 |
+
flex: 0 0 auto;
|
1550 |
+
width: 33.3333333333%;
|
1551 |
+
}
|
1552 |
+
|
1553 |
+
.row-cols-xl-4 > * {
|
1554 |
+
flex: 0 0 auto;
|
1555 |
+
width: 25%;
|
1556 |
+
}
|
1557 |
+
|
1558 |
+
.row-cols-xl-5 > * {
|
1559 |
+
flex: 0 0 auto;
|
1560 |
+
width: 20%;
|
1561 |
+
}
|
1562 |
+
|
1563 |
+
.row-cols-xl-6 > * {
|
1564 |
+
flex: 0 0 auto;
|
1565 |
+
width: 16.6666666667%;
|
1566 |
+
}
|
1567 |
+
|
1568 |
+
.col-xl-auto {
|
1569 |
+
flex: 0 0 auto;
|
1570 |
+
width: auto;
|
1571 |
+
}
|
1572 |
+
|
1573 |
+
.col-xl-1 {
|
1574 |
+
flex: 0 0 auto;
|
1575 |
+
width: 8.33333333%;
|
1576 |
+
}
|
1577 |
+
|
1578 |
+
.col-xl-2 {
|
1579 |
+
flex: 0 0 auto;
|
1580 |
+
width: 16.66666667%;
|
1581 |
+
}
|
1582 |
+
|
1583 |
+
.col-xl-3 {
|
1584 |
+
flex: 0 0 auto;
|
1585 |
+
width: 25%;
|
1586 |
+
}
|
1587 |
+
|
1588 |
+
.col-xl-4 {
|
1589 |
+
flex: 0 0 auto;
|
1590 |
+
width: 33.33333333%;
|
1591 |
+
}
|
1592 |
+
|
1593 |
+
.col-xl-5 {
|
1594 |
+
flex: 0 0 auto;
|
1595 |
+
width: 41.66666667%;
|
1596 |
+
}
|
1597 |
+
|
1598 |
+
.col-xl-6 {
|
1599 |
+
flex: 0 0 auto;
|
1600 |
+
width: 50%;
|
1601 |
+
}
|
1602 |
+
|
1603 |
+
.col-xl-7 {
|
1604 |
+
flex: 0 0 auto;
|
1605 |
+
width: 58.33333333%;
|
1606 |
+
}
|
1607 |
+
|
1608 |
+
.col-xl-8 {
|
1609 |
+
flex: 0 0 auto;
|
1610 |
+
width: 66.66666667%;
|
1611 |
+
}
|
1612 |
+
|
1613 |
+
.col-xl-9 {
|
1614 |
+
flex: 0 0 auto;
|
1615 |
+
width: 75%;
|
1616 |
+
}
|
1617 |
+
|
1618 |
+
.col-xl-10 {
|
1619 |
+
flex: 0 0 auto;
|
1620 |
+
width: 83.33333333%;
|
1621 |
+
}
|
1622 |
+
|
1623 |
+
.col-xl-11 {
|
1624 |
+
flex: 0 0 auto;
|
1625 |
+
width: 91.66666667%;
|
1626 |
+
}
|
1627 |
+
|
1628 |
+
.col-xl-12 {
|
1629 |
+
flex: 0 0 auto;
|
1630 |
+
width: 100%;
|
1631 |
+
}
|
1632 |
+
|
1633 |
+
.offset-xl-0 {
|
1634 |
+
margin-left: 0;
|
1635 |
+
}
|
1636 |
+
|
1637 |
+
.offset-xl-1 {
|
1638 |
+
margin-left: 8.33333333%;
|
1639 |
+
}
|
1640 |
+
|
1641 |
+
.offset-xl-2 {
|
1642 |
+
margin-left: 16.66666667%;
|
1643 |
+
}
|
1644 |
+
|
1645 |
+
.offset-xl-3 {
|
1646 |
+
margin-left: 25%;
|
1647 |
+
}
|
1648 |
+
|
1649 |
+
.offset-xl-4 {
|
1650 |
+
margin-left: 33.33333333%;
|
1651 |
+
}
|
1652 |
+
|
1653 |
+
.offset-xl-5 {
|
1654 |
+
margin-left: 41.66666667%;
|
1655 |
+
}
|
1656 |
+
|
1657 |
+
.offset-xl-6 {
|
1658 |
+
margin-left: 50%;
|
1659 |
+
}
|
1660 |
+
|
1661 |
+
.offset-xl-7 {
|
1662 |
+
margin-left: 58.33333333%;
|
1663 |
+
}
|
1664 |
+
|
1665 |
+
.offset-xl-8 {
|
1666 |
+
margin-left: 66.66666667%;
|
1667 |
+
}
|
1668 |
+
|
1669 |
+
.offset-xl-9 {
|
1670 |
+
margin-left: 75%;
|
1671 |
+
}
|
1672 |
+
|
1673 |
+
.offset-xl-10 {
|
1674 |
+
margin-left: 83.33333333%;
|
1675 |
+
}
|
1676 |
+
|
1677 |
+
.offset-xl-11 {
|
1678 |
+
margin-left: 91.66666667%;
|
1679 |
+
}
|
1680 |
+
|
1681 |
+
.g-xl-0,
|
1682 |
+
.gx-xl-0 {
|
1683 |
+
--bs-gutter-x: 0;
|
1684 |
+
}
|
1685 |
+
|
1686 |
+
.g-xl-0,
|
1687 |
+
.gy-xl-0 {
|
1688 |
+
--bs-gutter-y: 0;
|
1689 |
+
}
|
1690 |
+
|
1691 |
+
.g-xl-1,
|
1692 |
+
.gx-xl-1 {
|
1693 |
+
--bs-gutter-x: 0.25rem;
|
1694 |
+
}
|
1695 |
+
|
1696 |
+
.g-xl-1,
|
1697 |
+
.gy-xl-1 {
|
1698 |
+
--bs-gutter-y: 0.25rem;
|
1699 |
+
}
|
1700 |
+
|
1701 |
+
.g-xl-2,
|
1702 |
+
.gx-xl-2 {
|
1703 |
+
--bs-gutter-x: 0.5rem;
|
1704 |
+
}
|
1705 |
+
|
1706 |
+
.g-xl-2,
|
1707 |
+
.gy-xl-2 {
|
1708 |
+
--bs-gutter-y: 0.5rem;
|
1709 |
+
}
|
1710 |
+
|
1711 |
+
.g-xl-3,
|
1712 |
+
.gx-xl-3 {
|
1713 |
+
--bs-gutter-x: 1rem;
|
1714 |
+
}
|
1715 |
+
|
1716 |
+
.g-xl-3,
|
1717 |
+
.gy-xl-3 {
|
1718 |
+
--bs-gutter-y: 1rem;
|
1719 |
+
}
|
1720 |
+
|
1721 |
+
.g-xl-4,
|
1722 |
+
.gx-xl-4 {
|
1723 |
+
--bs-gutter-x: 1.5rem;
|
1724 |
+
}
|
1725 |
+
|
1726 |
+
.g-xl-4,
|
1727 |
+
.gy-xl-4 {
|
1728 |
+
--bs-gutter-y: 1.5rem;
|
1729 |
+
}
|
1730 |
+
|
1731 |
+
.g-xl-5,
|
1732 |
+
.gx-xl-5 {
|
1733 |
+
--bs-gutter-x: 3rem;
|
1734 |
+
}
|
1735 |
+
|
1736 |
+
.g-xl-5,
|
1737 |
+
.gy-xl-5 {
|
1738 |
+
--bs-gutter-y: 3rem;
|
1739 |
+
}
|
1740 |
+
}
|
1741 |
+
@media (min-width: 1400px) {
|
1742 |
+
.col-xxl {
|
1743 |
+
flex: 1 0 0%;
|
1744 |
+
}
|
1745 |
+
|
1746 |
+
.row-cols-xxl-auto > * {
|
1747 |
+
flex: 0 0 auto;
|
1748 |
+
width: auto;
|
1749 |
+
}
|
1750 |
+
|
1751 |
+
.row-cols-xxl-1 > * {
|
1752 |
+
flex: 0 0 auto;
|
1753 |
+
width: 100%;
|
1754 |
+
}
|
1755 |
+
|
1756 |
+
.row-cols-xxl-2 > * {
|
1757 |
+
flex: 0 0 auto;
|
1758 |
+
width: 50%;
|
1759 |
+
}
|
1760 |
+
|
1761 |
+
.row-cols-xxl-3 > * {
|
1762 |
+
flex: 0 0 auto;
|
1763 |
+
width: 33.3333333333%;
|
1764 |
+
}
|
1765 |
+
|
1766 |
+
.row-cols-xxl-4 > * {
|
1767 |
+
flex: 0 0 auto;
|
1768 |
+
width: 25%;
|
1769 |
+
}
|
1770 |
+
|
1771 |
+
.row-cols-xxl-5 > * {
|
1772 |
+
flex: 0 0 auto;
|
1773 |
+
width: 20%;
|
1774 |
+
}
|
1775 |
+
|
1776 |
+
.row-cols-xxl-6 > * {
|
1777 |
+
flex: 0 0 auto;
|
1778 |
+
width: 16.6666666667%;
|
1779 |
+
}
|
1780 |
+
|
1781 |
+
.col-xxl-auto {
|
1782 |
+
flex: 0 0 auto;
|
1783 |
+
width: auto;
|
1784 |
+
}
|
1785 |
+
|
1786 |
+
.col-xxl-1 {
|
1787 |
+
flex: 0 0 auto;
|
1788 |
+
width: 8.33333333%;
|
1789 |
+
}
|
1790 |
+
|
1791 |
+
.col-xxl-2 {
|
1792 |
+
flex: 0 0 auto;
|
1793 |
+
width: 16.66666667%;
|
1794 |
+
}
|
1795 |
+
|
1796 |
+
.col-xxl-3 {
|
1797 |
+
flex: 0 0 auto;
|
1798 |
+
width: 25%;
|
1799 |
+
}
|
1800 |
+
|
1801 |
+
.col-xxl-4 {
|
1802 |
+
flex: 0 0 auto;
|
1803 |
+
width: 33.33333333%;
|
1804 |
+
}
|
1805 |
+
|
1806 |
+
.col-xxl-5 {
|
1807 |
+
flex: 0 0 auto;
|
1808 |
+
width: 41.66666667%;
|
1809 |
+
}
|
1810 |
+
|
1811 |
+
.col-xxl-6 {
|
1812 |
+
flex: 0 0 auto;
|
1813 |
+
width: 50%;
|
1814 |
+
}
|
1815 |
+
|
1816 |
+
.col-xxl-7 {
|
1817 |
+
flex: 0 0 auto;
|
1818 |
+
width: 58.33333333%;
|
1819 |
+
}
|
1820 |
+
|
1821 |
+
.col-xxl-8 {
|
1822 |
+
flex: 0 0 auto;
|
1823 |
+
width: 66.66666667%;
|
1824 |
+
}
|
1825 |
+
|
1826 |
+
.col-xxl-9 {
|
1827 |
+
flex: 0 0 auto;
|
1828 |
+
width: 75%;
|
1829 |
+
}
|
1830 |
+
|
1831 |
+
.col-xxl-10 {
|
1832 |
+
flex: 0 0 auto;
|
1833 |
+
width: 83.33333333%;
|
1834 |
+
}
|
1835 |
+
|
1836 |
+
.col-xxl-11 {
|
1837 |
+
flex: 0 0 auto;
|
1838 |
+
width: 91.66666667%;
|
1839 |
+
}
|
1840 |
+
|
1841 |
+
.col-xxl-12 {
|
1842 |
+
flex: 0 0 auto;
|
1843 |
+
width: 100%;
|
1844 |
+
}
|
1845 |
+
|
1846 |
+
.offset-xxl-0 {
|
1847 |
+
margin-left: 0;
|
1848 |
+
}
|
1849 |
+
|
1850 |
+
.offset-xxl-1 {
|
1851 |
+
margin-left: 8.33333333%;
|
1852 |
+
}
|
1853 |
+
|
1854 |
+
.offset-xxl-2 {
|
1855 |
+
margin-left: 16.66666667%;
|
1856 |
+
}
|
1857 |
+
|
1858 |
+
.offset-xxl-3 {
|
1859 |
+
margin-left: 25%;
|
1860 |
+
}
|
1861 |
+
|
1862 |
+
.offset-xxl-4 {
|
1863 |
+
margin-left: 33.33333333%;
|
1864 |
+
}
|
1865 |
+
|
1866 |
+
.offset-xxl-5 {
|
1867 |
+
margin-left: 41.66666667%;
|
1868 |
+
}
|
1869 |
+
|
1870 |
+
.offset-xxl-6 {
|
1871 |
+
margin-left: 50%;
|
1872 |
+
}
|
1873 |
+
|
1874 |
+
.offset-xxl-7 {
|
1875 |
+
margin-left: 58.33333333%;
|
1876 |
+
}
|
1877 |
+
|
1878 |
+
.offset-xxl-8 {
|
1879 |
+
margin-left: 66.66666667%;
|
1880 |
+
}
|
1881 |
+
|
1882 |
+
.offset-xxl-9 {
|
1883 |
+
margin-left: 75%;
|
1884 |
+
}
|
1885 |
+
|
1886 |
+
.offset-xxl-10 {
|
1887 |
+
margin-left: 83.33333333%;
|
1888 |
+
}
|
1889 |
+
|
1890 |
+
.offset-xxl-11 {
|
1891 |
+
margin-left: 91.66666667%;
|
1892 |
+
}
|
1893 |
+
|
1894 |
+
.g-xxl-0,
|
1895 |
+
.gx-xxl-0 {
|
1896 |
+
--bs-gutter-x: 0;
|
1897 |
+
}
|
1898 |
+
|
1899 |
+
.g-xxl-0,
|
1900 |
+
.gy-xxl-0 {
|
1901 |
+
--bs-gutter-y: 0;
|
1902 |
+
}
|
1903 |
+
|
1904 |
+
.g-xxl-1,
|
1905 |
+
.gx-xxl-1 {
|
1906 |
+
--bs-gutter-x: 0.25rem;
|
1907 |
+
}
|
1908 |
+
|
1909 |
+
.g-xxl-1,
|
1910 |
+
.gy-xxl-1 {
|
1911 |
+
--bs-gutter-y: 0.25rem;
|
1912 |
+
}
|
1913 |
+
|
1914 |
+
.g-xxl-2,
|
1915 |
+
.gx-xxl-2 {
|
1916 |
+
--bs-gutter-x: 0.5rem;
|
1917 |
+
}
|
1918 |
+
|
1919 |
+
.g-xxl-2,
|
1920 |
+
.gy-xxl-2 {
|
1921 |
+
--bs-gutter-y: 0.5rem;
|
1922 |
+
}
|
1923 |
+
|
1924 |
+
.g-xxl-3,
|
1925 |
+
.gx-xxl-3 {
|
1926 |
+
--bs-gutter-x: 1rem;
|
1927 |
+
}
|
1928 |
+
|
1929 |
+
.g-xxl-3,
|
1930 |
+
.gy-xxl-3 {
|
1931 |
+
--bs-gutter-y: 1rem;
|
1932 |
+
}
|
1933 |
+
|
1934 |
+
.g-xxl-4,
|
1935 |
+
.gx-xxl-4 {
|
1936 |
+
--bs-gutter-x: 1.5rem;
|
1937 |
+
}
|
1938 |
+
|
1939 |
+
.g-xxl-4,
|
1940 |
+
.gy-xxl-4 {
|
1941 |
+
--bs-gutter-y: 1.5rem;
|
1942 |
+
}
|
1943 |
+
|
1944 |
+
.g-xxl-5,
|
1945 |
+
.gx-xxl-5 {
|
1946 |
+
--bs-gutter-x: 3rem;
|
1947 |
+
}
|
1948 |
+
|
1949 |
+
.g-xxl-5,
|
1950 |
+
.gy-xxl-5 {
|
1951 |
+
--bs-gutter-y: 3rem;
|
1952 |
+
}
|
1953 |
+
}
|
1954 |
+
.table {
|
1955 |
+
--bs-table-bg: transparent;
|
1956 |
+
--bs-table-accent-bg: transparent;
|
1957 |
+
--bs-table-striped-color: #212529;
|
1958 |
+
--bs-table-striped-bg: rgba(0, 0, 0, 0.05);
|
1959 |
+
--bs-table-active-color: #212529;
|
1960 |
+
--bs-table-active-bg: rgba(0, 0, 0, 0.1);
|
1961 |
+
--bs-table-hover-color: #212529;
|
1962 |
+
--bs-table-hover-bg: rgba(0, 0, 0, 0.075);
|
1963 |
+
width: 100%;
|
1964 |
+
margin-bottom: 1rem;
|
1965 |
+
color: #212529;
|
1966 |
+
vertical-align: top;
|
1967 |
+
border-color: #dee2e6;
|
1968 |
+
}
|
1969 |
+
.table > :not(caption) > * > * {
|
1970 |
+
padding: 0.5rem 0.5rem;
|
1971 |
+
background-color: var(--bs-table-bg);
|
1972 |
+
border-bottom-width: 1px;
|
1973 |
+
box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
|
1974 |
+
}
|
1975 |
+
.table > tbody {
|
1976 |
+
vertical-align: inherit;
|
1977 |
+
}
|
1978 |
+
.table > thead {
|
1979 |
+
vertical-align: bottom;
|
1980 |
+
}
|
1981 |
+
.table > :not(:first-child) {
|
1982 |
+
border-top: 2px solid currentColor;
|
1983 |
+
}
|
1984 |
+
|
1985 |
+
.caption-top {
|
1986 |
+
caption-side: top;
|
1987 |
+
}
|
1988 |
+
|
1989 |
+
.table-sm > :not(caption) > * > * {
|
1990 |
+
padding: 0.25rem 0.25rem;
|
1991 |
+
}
|
1992 |
+
|
1993 |
+
.table-bordered > :not(caption) > * {
|
1994 |
+
border-width: 1px 0;
|
1995 |
+
}
|
1996 |
+
.table-bordered > :not(caption) > * > * {
|
1997 |
+
border-width: 0 1px;
|
1998 |
+
}
|
1999 |
+
|
2000 |
+
.table-borderless > :not(caption) > * > * {
|
2001 |
+
border-bottom-width: 0;
|
2002 |
+
}
|
2003 |
+
.table-borderless > :not(:first-child) {
|
2004 |
+
border-top-width: 0;
|
2005 |
+
}
|
2006 |
+
|
2007 |
+
.table-striped > tbody > tr:nth-of-type(odd) > * {
|
2008 |
+
--bs-table-accent-bg: var(--bs-table-striped-bg);
|
2009 |
+
color: var(--bs-table-striped-color);
|
2010 |
+
}
|
2011 |
+
|
2012 |
+
.table-active {
|
2013 |
+
--bs-table-accent-bg: var(--bs-table-active-bg);
|
2014 |
+
color: var(--bs-table-active-color);
|
2015 |
+
}
|
2016 |
+
|
2017 |
+
.table-hover > tbody > tr:hover > * {
|
2018 |
+
--bs-table-accent-bg: var(--bs-table-hover-bg);
|
2019 |
+
color: var(--bs-table-hover-color);
|
2020 |
+
}
|
2021 |
+
|
2022 |
+
.table-primary {
|
2023 |
+
--bs-table-bg: #cfe2ff;
|
2024 |
+
--bs-table-striped-bg: #c5d7f2;
|
2025 |
+
--bs-table-striped-color: #000;
|
2026 |
+
--bs-table-active-bg: #bacbe6;
|
2027 |
+
--bs-table-active-color: #000;
|
2028 |
+
--bs-table-hover-bg: #bfd1ec;
|
2029 |
+
--bs-table-hover-color: #000;
|
2030 |
+
color: #000;
|
2031 |
+
border-color: #bacbe6;
|
2032 |
+
}
|
2033 |
+
|
2034 |
+
.table-secondary {
|
2035 |
+
--bs-table-bg: #e2e3e5;
|
2036 |
+
--bs-table-striped-bg: #d7d8da;
|
2037 |
+
--bs-table-striped-color: #000;
|
2038 |
+
--bs-table-active-bg: #cbccce;
|
2039 |
+
--bs-table-active-color: #000;
|
2040 |
+
--bs-table-hover-bg: #d1d2d4;
|
2041 |
+
--bs-table-hover-color: #000;
|
2042 |
+
color: #000;
|
2043 |
+
border-color: #cbccce;
|
2044 |
+
}
|
2045 |
+
|
2046 |
+
.table-success {
|
2047 |
+
--bs-table-bg: #d1e7dd;
|
2048 |
+
--bs-table-striped-bg: #c7dbd2;
|
2049 |
+
--bs-table-striped-color: #000;
|
2050 |
+
--bs-table-active-bg: #bcd0c7;
|
2051 |
+
--bs-table-active-color: #000;
|
2052 |
+
--bs-table-hover-bg: #c1d6cc;
|
2053 |
+
--bs-table-hover-color: #000;
|
2054 |
+
color: #000;
|
2055 |
+
border-color: #bcd0c7;
|
2056 |
+
}
|
2057 |
+
|
2058 |
+
.table-info {
|
2059 |
+
--bs-table-bg: #cff4fc;
|
2060 |
+
--bs-table-striped-bg: #c5e8ef;
|
2061 |
+
--bs-table-striped-color: #000;
|
2062 |
+
--bs-table-active-bg: #badce3;
|
2063 |
+
--bs-table-active-color: #000;
|
2064 |
+
--bs-table-hover-bg: #bfe2e9;
|
2065 |
+
--bs-table-hover-color: #000;
|
2066 |
+
color: #000;
|
2067 |
+
border-color: #badce3;
|
2068 |
+
}
|
2069 |
+
|
2070 |
+
.table-warning {
|
2071 |
+
--bs-table-bg: #fff3cd;
|
2072 |
+
--bs-table-striped-bg: #f2e7c3;
|
2073 |
+
--bs-table-striped-color: #000;
|
2074 |
+
--bs-table-active-bg: #e6dbb9;
|
2075 |
+
--bs-table-active-color: #000;
|
2076 |
+
--bs-table-hover-bg: #ece1be;
|
2077 |
+
--bs-table-hover-color: #000;
|
2078 |
+
color: #000;
|
2079 |
+
border-color: #e6dbb9;
|
2080 |
+
}
|
2081 |
+
|
2082 |
+
.table-danger {
|
2083 |
+
--bs-table-bg: #f8d7da;
|
2084 |
+
--bs-table-striped-bg: #eccccf;
|
2085 |
+
--bs-table-striped-color: #000;
|
2086 |
+
--bs-table-active-bg: #dfc2c4;
|
2087 |
+
--bs-table-active-color: #000;
|
2088 |
+
--bs-table-hover-bg: #e5c7ca;
|
2089 |
+
--bs-table-hover-color: #000;
|
2090 |
+
color: #000;
|
2091 |
+
border-color: #dfc2c4;
|
2092 |
+
}
|
2093 |
+
|
2094 |
+
.table-light {
|
2095 |
+
--bs-table-bg: #f8f9fa;
|
2096 |
+
--bs-table-striped-bg: #ecedee;
|
2097 |
+
--bs-table-striped-color: #000;
|
2098 |
+
--bs-table-active-bg: #dfe0e1;
|
2099 |
+
--bs-table-active-color: #000;
|
2100 |
+
--bs-table-hover-bg: #e5e6e7;
|
2101 |
+
--bs-table-hover-color: #000;
|
2102 |
+
color: #000;
|
2103 |
+
border-color: #dfe0e1;
|
2104 |
+
}
|
2105 |
+
|
2106 |
+
.table-dark {
|
2107 |
+
--bs-table-bg: #212529;
|
2108 |
+
--bs-table-striped-bg: #2c3034;
|
2109 |
+
--bs-table-striped-color: #fff;
|
2110 |
+
--bs-table-active-bg: #373b3e;
|
2111 |
+
--bs-table-active-color: #fff;
|
2112 |
+
--bs-table-hover-bg: #323539;
|
2113 |
+
--bs-table-hover-color: #fff;
|
2114 |
+
color: #fff;
|
2115 |
+
border-color: #373b3e;
|
2116 |
+
}
|
2117 |
+
|
2118 |
+
.table-responsive {
|
2119 |
+
overflow-x: auto;
|
2120 |
+
-webkit-overflow-scrolling: touch;
|
2121 |
+
}
|
2122 |
+
|
2123 |
+
@media (max-width: 575.98px) {
|
2124 |
+
.table-responsive-sm {
|
2125 |
+
overflow-x: auto;
|
2126 |
+
-webkit-overflow-scrolling: touch;
|
2127 |
+
}
|
2128 |
+
}
|
2129 |
+
@media (max-width: 767.98px) {
|
2130 |
+
.table-responsive-md {
|
2131 |
+
overflow-x: auto;
|
2132 |
+
-webkit-overflow-scrolling: touch;
|
2133 |
+
}
|
2134 |
+
}
|
2135 |
+
@media (max-width: 991.98px) {
|
2136 |
+
.table-responsive-lg {
|
2137 |
+
overflow-x: auto;
|
2138 |
+
-webkit-overflow-scrolling: touch;
|
2139 |
+
}
|
2140 |
+
}
|
2141 |
+
@media (max-width: 1199.98px) {
|
2142 |
+
.table-responsive-xl {
|
2143 |
+
overflow-x: auto;
|
2144 |
+
-webkit-overflow-scrolling: touch;
|
2145 |
+
}
|
2146 |
+
}
|
2147 |
+
@media (max-width: 1399.98px) {
|
2148 |
+
.table-responsive-xxl {
|
2149 |
+
overflow-x: auto;
|
2150 |
+
-webkit-overflow-scrolling: touch;
|
2151 |
+
}
|
2152 |
+
}
|
2153 |
+
.form-label {
|
2154 |
+
margin-bottom: 0.5rem;
|
2155 |
+
}
|
2156 |
+
|
2157 |
+
.col-form-label {
|
2158 |
+
padding-top: calc(0.375rem + 1px);
|
2159 |
+
padding-bottom: calc(0.375rem + 1px);
|
2160 |
+
margin-bottom: 0;
|
2161 |
+
font-size: inherit;
|
2162 |
+
line-height: 1.5;
|
2163 |
+
}
|
2164 |
+
|
2165 |
+
.col-form-label-lg {
|
2166 |
+
padding-top: calc(0.5rem + 1px);
|
2167 |
+
padding-bottom: calc(0.5rem + 1px);
|
2168 |
+
font-size: 1.25rem;
|
2169 |
+
}
|
2170 |
+
|
2171 |
+
.col-form-label-sm {
|
2172 |
+
padding-top: calc(0.25rem + 1px);
|
2173 |
+
padding-bottom: calc(0.25rem + 1px);
|
2174 |
+
font-size: 0.875rem;
|
2175 |
+
}
|
2176 |
+
|
2177 |
+
.form-text {
|
2178 |
+
margin-top: 0.25rem;
|
2179 |
+
font-size: 0.875em;
|
2180 |
+
color: #6c757d;
|
2181 |
+
}
|
2182 |
+
|
2183 |
+
.form-control {
|
2184 |
+
display: block;
|
2185 |
+
width: 100%;
|
2186 |
+
padding: 0.375rem 0.75rem;
|
2187 |
+
font-size: 1rem;
|
2188 |
+
font-weight: 400;
|
2189 |
+
line-height: 1.5;
|
2190 |
+
color: #212529;
|
2191 |
+
background-color: #fff;
|
2192 |
+
background-clip: padding-box;
|
2193 |
+
border: 1px solid #ced4da;
|
2194 |
+
-webkit-appearance: none;
|
2195 |
+
-moz-appearance: none;
|
2196 |
+
appearance: none;
|
2197 |
+
border-radius: 0.25rem;
|
2198 |
+
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
2199 |
+
}
|
2200 |
+
@media (prefers-reduced-motion: reduce) {
|
2201 |
+
.form-control {
|
2202 |
+
transition: none;
|
2203 |
+
}
|
2204 |
+
}
|
2205 |
+
.form-control[type=file] {
|
2206 |
+
overflow: hidden;
|
2207 |
+
}
|
2208 |
+
.form-control[type=file]:not(:disabled):not([readonly]) {
|
2209 |
+
cursor: pointer;
|
2210 |
+
}
|
2211 |
+
.form-control:focus {
|
2212 |
+
color: #212529;
|
2213 |
+
background-color: #fff;
|
2214 |
+
border-color: #86b7fe;
|
2215 |
+
outline: 0;
|
2216 |
+
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
|
2217 |
+
}
|
2218 |
+
.form-control::-webkit-date-and-time-value {
|
2219 |
+
height: 1.5em;
|
2220 |
+
}
|
2221 |
+
.form-control::-moz-placeholder {
|
2222 |
+
color: #6c757d;
|
2223 |
+
opacity: 1;
|
2224 |
+
}
|
2225 |
+
.form-control::placeholder {
|
2226 |
+
color: #6c757d;
|
2227 |
+
opacity: 1;
|
2228 |
+
}
|
2229 |
+
.form-control:disabled, .form-control[readonly] {
|
2230 |
+
background-color: #e9ecef;
|
2231 |
+
opacity: 1;
|
2232 |
+
}
|
2233 |
+
.form-control::-webkit-file-upload-button {
|
2234 |
+
padding: 0.375rem 0.75rem;
|
2235 |
+
margin: -0.375rem -0.75rem;
|
2236 |
+
-webkit-margin-end: 0.75rem;
|
2237 |
+
margin-inline-end: 0.75rem;
|
2238 |
+
color: #212529;
|
2239 |
+
background-color: #e9ecef;
|
2240 |
+
pointer-events: none;
|
2241 |
+
border-color: inherit;
|
2242 |
+
border-style: solid;
|
2243 |
+
border-width: 0;
|
2244 |
+
border-inline-end-width: 1px;
|
2245 |
+
border-radius: 0;
|
2246 |
+
-webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
2247 |
+
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
2248 |
+
}
|
2249 |
+
.form-control::file-selector-button {
|
2250 |
+
padding: 0.375rem 0.75rem;
|
2251 |
+
margin: -0.375rem -0.75rem;
|
2252 |
+
-webkit-margin-end: 0.75rem;
|
2253 |
+
margin-inline-end: 0.75rem;
|
2254 |
+
color: #212529;
|
2255 |
+
background-color: #e9ecef;
|
2256 |
+
pointer-events: none;
|
2257 |
+
border-color: inherit;
|
2258 |
+
border-style: solid;
|
2259 |
+
border-width: 0;
|
2260 |
+
border-inline-end-width: 1px;
|
2261 |
+
border-radius: 0;
|
2262 |
+
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
2263 |
+
}
|
2264 |
+
@media (prefers-reduced-motion: reduce) {
|
2265 |
+
.form-control::-webkit-file-upload-button {
|
2266 |
+
-webkit-transition: none;
|
2267 |
+
transition: none;
|
2268 |
+
}
|
2269 |
+
.form-control::file-selector-button {
|
2270 |
+
transition: none;
|
2271 |
+
}
|
2272 |
+
}
|
2273 |
+
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
|
2274 |
+
background-color: #dde0e3;
|
2275 |
+
}
|
2276 |
+
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
|
2277 |
+
background-color: #dde0e3;
|
2278 |
+
}
|
2279 |
+
.form-control::-webkit-file-upload-button {
|
2280 |
+
padding: 0.375rem 0.75rem;
|
2281 |
+
margin: -0.375rem -0.75rem;
|
2282 |
+
-webkit-margin-end: 0.75rem;
|
2283 |
+
margin-inline-end: 0.75rem;
|
2284 |
+
color: #212529;
|
2285 |
+
background-color: #e9ecef;
|
2286 |
+
pointer-events: none;
|
2287 |
+
border-color: inherit;
|
2288 |
+
border-style: solid;
|
2289 |
+
border-width: 0;
|
2290 |
+
border-inline-end-width: 1px;
|
2291 |
+
border-radius: 0;
|
2292 |
+
-webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
2293 |
+
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
2294 |
+
}
|
2295 |
+
@media (prefers-reduced-motion: reduce) {
|
2296 |
+
.form-control::-webkit-file-upload-button {
|
2297 |
+
-webkit-transition: none;
|
2298 |
+
transition: none;
|
2299 |
+
}
|
2300 |
+
}
|
2301 |
+
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
|
2302 |
+
background-color: #dde0e3;
|
2303 |
+
}
|
2304 |
+
|
2305 |
+
.form-control-plaintext {
|
2306 |
+
display: block;
|
2307 |
+
width: 100%;
|
2308 |
+
padding: 0.375rem 0;
|
2309 |
+
margin-bottom: 0;
|
2310 |
+
line-height: 1.5;
|
2311 |
+
color: #212529;
|
2312 |
+
background-color: transparent;
|
2313 |
+
border: solid transparent;
|
2314 |
+
border-width: 1px 0;
|
2315 |
+
}
|
2316 |
+
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
|
2317 |
+
padding-right: 0;
|
2318 |
+
padding-left: 0;
|
2319 |
+
}
|
2320 |
+
|
2321 |
+
.form-control-sm {
|
2322 |
+
min-height: calc(1.5em + 0.5rem + 2px);
|
2323 |
+
padding: 0.25rem 0.5rem;
|
2324 |
+
font-size: 0.875rem;
|
2325 |
+
border-radius: 0.2rem;
|
2326 |
+
}
|
2327 |
+
.form-control-sm::-webkit-file-upload-button {
|
2328 |
+
padding: 0.25rem 0.5rem;
|
2329 |
+
margin: -0.25rem -0.5rem;
|
2330 |
+
-webkit-margin-end: 0.5rem;
|
2331 |
+
margin-inline-end: 0.5rem;
|
2332 |
+
}
|
2333 |
+
.form-control-sm::file-selector-button {
|
2334 |
+
padding: 0.25rem 0.5rem;
|
2335 |
+
margin: -0.25rem -0.5rem;
|
2336 |
+
-webkit-margin-end: 0.5rem;
|
2337 |
+
margin-inline-end: 0.5rem;
|
2338 |
+
}
|
2339 |
+
.form-control-sm::-webkit-file-upload-button {
|
2340 |
+
padding: 0.25rem 0.5rem;
|
2341 |
+
margin: -0.25rem -0.5rem;
|
2342 |
+
-webkit-margin-end: 0.5rem;
|
2343 |
+
margin-inline-end: 0.5rem;
|
2344 |
+
}
|
2345 |
+
|
2346 |
+
.form-control-lg {
|
2347 |
+
min-height: calc(1.5em + 1rem + 2px);
|
2348 |
+
padding: 0.5rem 1rem;
|
2349 |
+
font-size: 1.25rem;
|
2350 |
+
border-radius: 0.3rem;
|
2351 |
+
}
|
2352 |
+
.form-control-lg::-webkit-file-upload-button {
|
2353 |
+
padding: 0.5rem 1rem;
|
2354 |
+
margin: -0.5rem -1rem;
|
2355 |
+
-webkit-margin-end: 1rem;
|
2356 |
+
margin-inline-end: 1rem;
|
2357 |
+
}
|
2358 |
+
.form-control-lg::file-selector-button {
|
2359 |
+
padding: 0.5rem 1rem;
|
2360 |
+
margin: -0.5rem -1rem;
|
2361 |
+
-webkit-margin-end: 1rem;
|
2362 |
+
margin-inline-end: 1rem;
|
2363 |
+
}
|
2364 |
+
.form-control-lg::-webkit-file-upload-button {
|
2365 |
+
padding: 0.5rem 1rem;
|
2366 |
+
margin: -0.5rem -1rem;
|
2367 |
+
-webkit-margin-end: 1rem;
|
2368 |
+
margin-inline-end: 1rem;
|
2369 |
+
}
|
2370 |
+
|
2371 |
+
textarea.form-control {
|
2372 |
+
min-height: calc(1.5em + 0.75rem + 2px);
|
2373 |
+
}
|
2374 |
+
textarea.form-control-sm {
|
2375 |
+
min-height: calc(1.5em + 0.5rem + 2px);
|
2376 |
+
}
|
2377 |
+
textarea.form-control-lg {
|
2378 |
+
min-height: calc(1.5em + 1rem + 2px);
|
2379 |
+
}
|
2380 |
+
|
2381 |
+
.form-control-color {
|
2382 |
+
width: 3rem;
|
2383 |
+
height: auto;
|
2384 |
+
padding: 0.375rem;
|
2385 |
+
}
|
2386 |
+
.form-control-color:not(:disabled):not([readonly]) {
|
2387 |
+
cursor: pointer;
|
2388 |
+
}
|
2389 |
+
.form-control-color::-moz-color-swatch {
|
2390 |
+
height: 1.5em;
|
2391 |
+
border-radius: 0.25rem;
|
2392 |
+
}
|
2393 |
+
.form-control-color::-webkit-color-swatch {
|
2394 |
+
height: 1.5em;
|
2395 |
+
border-radius: 0.25rem;
|
2396 |
+
}
|
2397 |
+
|
2398 |
+
.form-select {
|
2399 |
+
display: block;
|
2400 |
+
width: 100%;
|
2401 |
+
padding: 0.375rem 2.25rem 0.375rem 0.75rem;
|
2402 |
+
-moz-padding-start: calc(0.75rem - 3px);
|
2403 |
+
font-size: 1rem;
|
2404 |
+
font-weight: 400;
|
2405 |
+
line-height: 1.5;
|
2406 |
+
color: #212529;
|
2407 |
+
background-color: #fff;
|
2408 |
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
|
2409 |
+
background-repeat: no-repeat;
|
2410 |
+
background-position: right 0.75rem center;
|
2411 |
+
background-size: 16px 12px;
|
2412 |
+
border: 1px solid #ced4da;
|
2413 |
+
border-radius: 0.25rem;
|
2414 |
+
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
2415 |
+
-webkit-appearance: none;
|
2416 |
+
-moz-appearance: none;
|
2417 |
+
appearance: none;
|
2418 |
+
}
|
2419 |
+
@media (prefers-reduced-motion: reduce) {
|
2420 |
+
.form-select {
|
2421 |
+
transition: none;
|
2422 |
+
}
|
2423 |
+
}
|
2424 |
+
.form-select:focus {
|
2425 |
+
border-color: #86b7fe;
|
2426 |
+
outline: 0;
|
2427 |
+
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
|
2428 |
+
}
|
2429 |
+
.form-select[multiple], .form-select[size]:not([size="1"]) {
|
2430 |
+
padding-right: 0.75rem;
|
2431 |
+
background-image: none;
|
2432 |
+
}
|
2433 |
+
.form-select:disabled {
|
2434 |
+
background-color: #e9ecef;
|
2435 |
+
}
|
2436 |
+
.form-select:-moz-focusring {
|
2437 |
+
color: transparent;
|
2438 |
+
text-shadow: 0 0 0 #212529;
|
2439 |
+
}
|
2440 |
+
|
2441 |
+
.form-select-sm {
|
2442 |
+
padding-top: 0.25rem;
|
2443 |
+
padding-bottom: 0.25rem;
|
2444 |
+
padding-left: 0.5rem;
|
2445 |
+
font-size: 0.875rem;
|
2446 |
+
border-radius: 0.2rem;
|
2447 |
+
}
|
2448 |
+
|
2449 |
+
.form-select-lg {
|
2450 |
+
padding-top: 0.5rem;
|
2451 |
+
padding-bottom: 0.5rem;
|
2452 |
+
padding-left: 1rem;
|
2453 |
+
font-size: 1.25rem;
|
2454 |
+
border-radius: 0.3rem;
|
2455 |
+
}
|
2456 |
+
|
2457 |
+
.form-check {
|
2458 |
+
display: block;
|
2459 |
+
min-height: 1.5rem;
|
2460 |
+
padding-left: 1.5em;
|
2461 |
+
margin-bottom: 0.125rem;
|
2462 |
+
}
|
2463 |
+
.form-check .form-check-input {
|
2464 |
+
float: left;
|
2465 |
+
margin-left: -1.5em;
|
2466 |
+
}
|
2467 |
+
|
2468 |
+
.form-check-input {
|
2469 |
+
width: 1em;
|
2470 |
+
height: 1em;
|
2471 |
+
margin-top: 0.25em;
|
2472 |
+
vertical-align: top;
|
2473 |
+
background-color: #fff;
|
2474 |
+
background-repeat: no-repeat;
|
2475 |
+
background-position: center;
|
2476 |
+
background-size: contain;
|
2477 |
+
border: 1px solid rgba(0, 0, 0, 0.25);
|
2478 |
+
-webkit-appearance: none;
|
2479 |
+
-moz-appearance: none;
|
2480 |
+
appearance: none;
|
2481 |
+
-webkit-print-color-adjust: exact;
|
2482 |
+
color-adjust: exact;
|
2483 |
+
}
|
2484 |
+
.form-check-input[type=checkbox] {
|
2485 |
+
border-radius: 0.25em;
|
2486 |
+
}
|
2487 |
+
.form-check-input[type=radio] {
|
2488 |
+
border-radius: 50%;
|
2489 |
+
}
|
2490 |
+
.form-check-input:active {
|
2491 |
+
filter: brightness(90%);
|
2492 |
+
}
|
2493 |
+
.form-check-input:focus {
|
2494 |
+
border-color: #86b7fe;
|
2495 |
+
outline: 0;
|
2496 |
+
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
|
2497 |
+
}
|
2498 |
+
.form-check-input:checked {
|
2499 |
+
background-color: #0d6efd;
|
2500 |
+
border-color: #0d6efd;
|
2501 |
+
}
|
2502 |
+
.form-check-input:checked[type=checkbox] {
|
2503 |
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
|
2504 |
+
}
|
2505 |
+
.form-check-input:checked[type=radio] {
|
2506 |
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
|
2507 |
+
}
|
2508 |
+
.form-check-input[type=checkbox]:indeterminate {
|
2509 |
+
background-color: #0d6efd;
|
2510 |
+
border-color: #0d6efd;
|
2511 |
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
|
2512 |
+
}
|
2513 |
+
.form-check-input:disabled {
|
2514 |
+
pointer-events: none;
|
2515 |
+
filter: none;
|
2516 |
+
opacity: 0.5;
|
2517 |
+
}
|
2518 |
+
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
|
2519 |
+
opacity: 0.5;
|
2520 |
+
}
|
2521 |
+
|
2522 |
+
.form-switch {
|
2523 |
+
padding-left: 2.5em;
|
2524 |
+
}
|
2525 |
+
.form-switch .form-check-input {
|
2526 |
+
width: 2em;
|
2527 |
+
margin-left: -2.5em;
|
2528 |
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
|
2529 |
+
background-position: left center;
|
2530 |
+
border-radius: 2em;
|
2531 |
+
transition: background-position 0.15s ease-in-out;
|
2532 |
+
}
|
2533 |
+
@media (prefers-reduced-motion: reduce) {
|
2534 |
+
.form-switch .form-check-input {
|
2535 |
+
transition: none;
|
2536 |
+
}
|
2537 |
+
}
|
2538 |
+
.form-switch .form-check-input:focus {
|
2539 |
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e");
|
2540 |
+
}
|
2541 |
+
.form-switch .form-check-input:checked {
|
2542 |
+
background-position: right center;
|
2543 |
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
|
2544 |
+
}
|
2545 |
+
|
2546 |
+
.form-check-inline {
|
2547 |
+
display: inline-block;
|
2548 |
+
margin-right: 1rem;
|
2549 |
+
}
|
2550 |
+
|
2551 |
+
.btn-check {
|
2552 |
+
position: absolute;
|
2553 |
+
clip: rect(0, 0, 0, 0);
|
2554 |
+
pointer-events: none;
|
2555 |
+
}
|
2556 |
+
.btn-check[disabled] + .btn, .btn-check:disabled + .btn {
|
2557 |
+
pointer-events: none;
|
2558 |
+
filter: none;
|
2559 |
+
opacity: 0.65;
|
2560 |
+
}
|
2561 |
+
|
2562 |
+
.form-range {
|
2563 |
+
width: 100%;
|
2564 |
+
height: 1.5rem;
|
2565 |
+
padding: 0;
|
2566 |
+
background-color: transparent;
|
2567 |
+
-webkit-appearance: none;
|
2568 |
+
-moz-appearance: none;
|
2569 |
+
appearance: none;
|
2570 |
+
}
|
2571 |
+
.form-range:focus {
|
2572 |
+
outline: 0;
|
2573 |
+
}
|
2574 |
+
.form-range:focus::-webkit-slider-thumb {
|
2575 |
+
box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
|
2576 |
+
}
|
2577 |
+
.form-range:focus::-moz-range-thumb {
|
2578 |
+
box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
|
2579 |
+
}
|
2580 |
+
.form-range::-moz-focus-outer {
|
2581 |
+
border: 0;
|
2582 |
+
}
|
2583 |
+
.form-range::-webkit-slider-thumb {
|
2584 |
+
width: 1rem;
|
2585 |
+
height: 1rem;
|
2586 |
+
margin-top: -0.25rem;
|
2587 |
+
background-color: #0d6efd;
|
2588 |
+
border: 0;
|
2589 |
+
border-radius: 1rem;
|
2590 |
+
-webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
2591 |
+
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
2592 |
+
-webkit-appearance: none;
|
2593 |
+
appearance: none;
|
2594 |
+
}
|
2595 |
+
@media (prefers-reduced-motion: reduce) {
|
2596 |
+
.form-range::-webkit-slider-thumb {
|
2597 |
+
-webkit-transition: none;
|
2598 |
+
transition: none;
|
2599 |
+
}
|
2600 |
+
}
|
2601 |
+
.form-range::-webkit-slider-thumb:active {
|
2602 |
+
background-color: #b6d4fe;
|
2603 |
+
}
|
2604 |
+
.form-range::-webkit-slider-runnable-track {
|
2605 |
+
width: 100%;
|
2606 |
+
height: 0.5rem;
|
2607 |
+
color: transparent;
|
2608 |
+
cursor: pointer;
|
2609 |
+
background-color: #dee2e6;
|
2610 |
+
border-color: transparent;
|
2611 |
+
border-radius: 1rem;
|
2612 |
+
}
|
2613 |
+
.form-range::-moz-range-thumb {
|
2614 |
+
width: 1rem;
|
2615 |
+
height: 1rem;
|
2616 |
+
background-color: #0d6efd;
|
2617 |
+
border: 0;
|
2618 |
+
border-radius: 1rem;
|
2619 |
+
-moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
2620 |
+
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
2621 |
+
-moz-appearance: none;
|
2622 |
+
appearance: none;
|
2623 |
+
}
|
2624 |
+
@media (prefers-reduced-motion: reduce) {
|
2625 |
+
.form-range::-moz-range-thumb {
|
2626 |
+
-moz-transition: none;
|
2627 |
+
transition: none;
|
2628 |
+
}
|
2629 |
+
}
|
2630 |
+
.form-range::-moz-range-thumb:active {
|
2631 |
+
background-color: #b6d4fe;
|
2632 |
+
}
|
2633 |
+
.form-range::-moz-range-track {
|
2634 |
+
width: 100%;
|
2635 |
+
height: 0.5rem;
|
2636 |
+
color: transparent;
|
2637 |
+
cursor: pointer;
|
2638 |
+
background-color: #dee2e6;
|
2639 |
+
border-color: transparent;
|
2640 |
+
border-radius: 1rem;
|
2641 |
+
}
|
2642 |
+
.form-range:disabled {
|
2643 |
+
pointer-events: none;
|
2644 |
+
}
|
2645 |
+
.form-range:disabled::-webkit-slider-thumb {
|
2646 |
+
background-color: #adb5bd;
|
2647 |
+
}
|
2648 |
+
.form-range:disabled::-moz-range-thumb {
|
2649 |
+
background-color: #adb5bd;
|
2650 |
+
}
|
2651 |
+
|
2652 |
+
.form-floating {
|
2653 |
+
position: relative;
|
2654 |
+
}
|
2655 |
+
.form-floating > .form-control,
|
2656 |
+
.form-floating > .form-select {
|
2657 |
+
height: calc(3.5rem + 2px);
|
2658 |
+
line-height: 1.25;
|
2659 |
+
}
|
2660 |
+
.form-floating > label {
|
2661 |
+
position: absolute;
|
2662 |
+
top: 0;
|
2663 |
+
left: 0;
|
2664 |
+
height: 100%;
|
2665 |
+
padding: 1rem 0.75rem;
|
2666 |
+
pointer-events: none;
|
2667 |
+
border: 1px solid transparent;
|
2668 |
+
transform-origin: 0 0;
|
2669 |
+
transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
|
2670 |
+
}
|
2671 |
+
@media (prefers-reduced-motion: reduce) {
|
2672 |
+
.form-floating > label {
|
2673 |
+
transition: none;
|
2674 |
+
}
|
2675 |
+
}
|
2676 |
+
.form-floating > .form-control {
|
2677 |
+
padding: 1rem 0.75rem;
|
2678 |
+
}
|
2679 |
+
.form-floating > .form-control::-moz-placeholder {
|
2680 |
+
color: transparent;
|
2681 |
+
}
|
2682 |
+
.form-floating > .form-control::placeholder {
|
2683 |
+
color: transparent;
|
2684 |
+
}
|
2685 |
+
.form-floating > .form-control:not(:-moz-placeholder-shown) {
|
2686 |
+
padding-top: 1.625rem;
|
2687 |
+
padding-bottom: 0.625rem;
|
2688 |
+
}
|
2689 |
+
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
|
2690 |
+
padding-top: 1.625rem;
|
2691 |
+
padding-bottom: 0.625rem;
|
2692 |
+
}
|
2693 |
+
.form-floating > .form-control:-webkit-autofill {
|
2694 |
+
padding-top: 1.625rem;
|
2695 |
+
padding-bottom: 0.625rem;
|
2696 |
+
}
|
2697 |
+
.form-floating > .form-select {
|
2698 |
+
padding-top: 1.625rem;
|
2699 |
+
padding-bottom: 0.625rem;
|
2700 |
+
}
|
2701 |
+
.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
|
2702 |
+
opacity: 0.65;
|
2703 |
+
transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
|
2704 |
+
}
|
2705 |
+
.form-floating > .form-control:focus ~ label,
|
2706 |
+
.form-floating > .form-control:not(:placeholder-shown) ~ label,
|
2707 |
+
.form-floating > .form-select ~ label {
|
2708 |
+
opacity: 0.65;
|
2709 |
+
transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
|
2710 |
+
}
|
2711 |
+
.form-floating > .form-control:-webkit-autofill ~ label {
|
2712 |
+
opacity: 0.65;
|
2713 |
+
transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
|
2714 |
+
}
|
2715 |
+
|
2716 |
+
.input-group {
|
2717 |
+
position: relative;
|
2718 |
+
display: flex;
|
2719 |
+
flex-wrap: wrap;
|
2720 |
+
align-items: stretch;
|
2721 |
+
width: 100%;
|
2722 |
+
}
|
2723 |
+
.input-group > .form-control,
|
2724 |
+
.input-group > .form-select {
|
2725 |
+
position: relative;
|
2726 |
+
flex: 1 1 auto;
|
2727 |
+
width: 1%;
|
2728 |
+
min-width: 0;
|
2729 |
+
}
|
2730 |
+
.input-group > .form-control:focus,
|
2731 |
+
.input-group > .form-select:focus {
|
2732 |
+
z-index: 3;
|
2733 |
+
}
|
2734 |
+
.input-group .btn {
|
2735 |
+
position: relative;
|
2736 |
+
z-index: 2;
|
2737 |
+
}
|
2738 |
+
.input-group .btn:focus {
|
2739 |
+
z-index: 3;
|
2740 |
+
}
|
2741 |
+
|
2742 |
+
.input-group-text {
|
2743 |
+
display: flex;
|
2744 |
+
align-items: center;
|
2745 |
+
padding: 0.375rem 0.75rem;
|
2746 |
+
font-size: 1rem;
|
2747 |
+
font-weight: 400;
|
2748 |
+
line-height: 1.5;
|
2749 |
+
color: #212529;
|
2750 |
+
text-align: center;
|
2751 |
+
white-space: nowrap;
|
2752 |
+
background-color: #e9ecef;
|
2753 |
+
border: 1px solid #ced4da;
|
2754 |
+
border-radius: 0.25rem;
|
2755 |
+
}
|
2756 |
+
|
2757 |
+
.input-group-lg > .form-control,
|
2758 |
+
.input-group-lg > .form-select,
|
2759 |
+
.input-group-lg > .input-group-text,
|
2760 |
+
.input-group-lg > .btn {
|
2761 |
+
padding: 0.5rem 1rem;
|
2762 |
+
font-size: 1.25rem;
|
2763 |
+
border-radius: 0.3rem;
|
2764 |
+
}
|
2765 |
+
|
2766 |
+
.input-group-sm > .form-control,
|
2767 |
+
.input-group-sm > .form-select,
|
2768 |
+
.input-group-sm > .input-group-text,
|
2769 |
+
.input-group-sm > .btn {
|
2770 |
+
padding: 0.25rem 0.5rem;
|
2771 |
+
font-size: 0.875rem;
|
2772 |
+
border-radius: 0.2rem;
|
2773 |
+
}
|
2774 |
+
|
2775 |
+
.input-group-lg > .form-select,
|
2776 |
+
.input-group-sm > .form-select {
|
2777 |
+
padding-right: 3rem;
|
2778 |
+
}
|
2779 |
+
|
2780 |
+
.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
|
2781 |
+
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3) {
|
2782 |
+
border-top-right-radius: 0;
|
2783 |
+
border-bottom-right-radius: 0;
|
2784 |
+
}
|
2785 |
+
.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),
|
2786 |
+
.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4) {
|
2787 |
+
border-top-right-radius: 0;
|
2788 |
+
border-bottom-right-radius: 0;
|
2789 |
+
}
|
2790 |
+
.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
|
2791 |
+
margin-left: -1px;
|
2792 |
+
border-top-left-radius: 0;
|
2793 |
+
border-bottom-left-radius: 0;
|
2794 |
+
}
|
2795 |
+
|
2796 |
+
.valid-feedback {
|
2797 |
+
display: none;
|
2798 |
+
width: 100%;
|
2799 |
+
margin-top: 0.25rem;
|
2800 |
+
font-size: 0.875em;
|
2801 |
+
color: #198754;
|
2802 |
+
}
|
2803 |
+
|
2804 |
+
.valid-tooltip {
|
2805 |
+
position: absolute;
|
2806 |
+
top: 100%;
|
2807 |
+
z-index: 5;
|
2808 |
+
display: none;
|
2809 |
+
max-width: 100%;
|
2810 |
+
padding: 0.25rem 0.5rem;
|
2811 |
+
margin-top: 0.1rem;
|
2812 |
+
font-size: 0.875rem;
|
2813 |
+
color: #fff;
|
2814 |
+
background-color: rgba(25, 135, 84, 0.9);
|
2815 |
+
border-radius: 0.25rem;
|
2816 |
+
}
|
2817 |
+
|
2818 |
+
.was-validated :valid ~ .valid-feedback,
|
2819 |
+
.was-validated :valid ~ .valid-tooltip,
|
2820 |
+
.is-valid ~ .valid-feedback,
|
2821 |
+
.is-valid ~ .valid-tooltip {
|
2822 |
+
display: block;
|
2823 |
+
}
|
2824 |
+
|
2825 |
+
.was-validated .form-control:valid, .form-control.is-valid {
|
2826 |
+
border-color: #198754;
|
2827 |
+
padding-right: calc(1.5em + 0.75rem);
|
2828 |
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
|
2829 |
+
background-repeat: no-repeat;
|
2830 |
+
background-position: right calc(0.375em + 0.1875rem) center;
|
2831 |
+
background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
|
2832 |
+
}
|
2833 |
+
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
|
2834 |
+
border-color: #198754;
|
2835 |
+
box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
|
2836 |
+
}
|
2837 |
+
|
2838 |
+
.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
|
2839 |
+
padding-right: calc(1.5em + 0.75rem);
|
2840 |
+
background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
|
2841 |
+
}
|
2842 |
+
|
2843 |
+
.was-validated .form-select:valid, .form-select.is-valid {
|
2844 |
+
border-color: #198754;
|
2845 |
+
}
|
2846 |
+
.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
|
2847 |
+
padding-right: 4.125rem;
|
2848 |
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
|
2849 |
+
background-position: right 0.75rem center, center right 2.25rem;
|
2850 |
+
background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
|
2851 |
+
}
|
2852 |
+
.was-validated .form-select:valid:focus, .form-select.is-valid:focus {
|
2853 |
+
border-color: #198754;
|
2854 |
+
box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
|
2855 |
+
}
|
2856 |
+
|
2857 |
+
.was-validated .form-check-input:valid, .form-check-input.is-valid {
|
2858 |
+
border-color: #198754;
|
2859 |
+
}
|
2860 |
+
.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
|
2861 |
+
background-color: #198754;
|
2862 |
+
}
|
2863 |
+
.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
|
2864 |
+
box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
|
2865 |
+
}
|
2866 |
+
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
|
2867 |
+
color: #198754;
|
2868 |
+
}
|
2869 |
+
|
2870 |
+
.form-check-inline .form-check-input ~ .valid-feedback {
|
2871 |
+
margin-left: 0.5em;
|
2872 |
+
}
|
2873 |
+
|
2874 |
+
.was-validated .input-group .form-control:valid, .input-group .form-control.is-valid,
|
2875 |
+
.was-validated .input-group .form-select:valid,
|
2876 |
+
.input-group .form-select.is-valid {
|
2877 |
+
z-index: 1;
|
2878 |
+
}
|
2879 |
+
.was-validated .input-group .form-control:valid:focus, .input-group .form-control.is-valid:focus,
|
2880 |
+
.was-validated .input-group .form-select:valid:focus,
|
2881 |
+
.input-group .form-select.is-valid:focus {
|
2882 |
+
z-index: 3;
|
2883 |
+
}
|
2884 |
+
|
2885 |
+
.invalid-feedback {
|
2886 |
+
display: none;
|
2887 |
+
width: 100%;
|
2888 |
+
margin-top: 0.25rem;
|
2889 |
+
font-size: 0.875em;
|
2890 |
+
color: #dc3545;
|
2891 |
+
}
|
2892 |
+
|
2893 |
+
.invalid-tooltip {
|
2894 |
+
position: absolute;
|
2895 |
+
top: 100%;
|
2896 |
+
z-index: 5;
|
2897 |
+
display: none;
|
2898 |
+
max-width: 100%;
|
2899 |
+
padding: 0.25rem 0.5rem;
|
2900 |
+
margin-top: 0.1rem;
|
2901 |
+
font-size: 0.875rem;
|
2902 |
+
color: #fff;
|
2903 |
+
background-color: rgba(220, 53, 69, 0.9);
|
2904 |
+
border-radius: 0.25rem;
|
2905 |
+
}
|
2906 |
+
|
2907 |
+
.was-validated :invalid ~ .invalid-feedback,
|
2908 |
+
.was-validated :invalid ~ .invalid-tooltip,
|
2909 |
+
.is-invalid ~ .invalid-feedback,
|
2910 |
+
.is-invalid ~ .invalid-tooltip {
|
2911 |
+
display: block;
|
2912 |
+
}
|
2913 |
+
|
2914 |
+
.was-validated .form-control:invalid, .form-control.is-invalid {
|
2915 |
+
border-color: #dc3545;
|
2916 |
+
padding-right: calc(1.5em + 0.75rem);
|
2917 |
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
|
2918 |
+
background-repeat: no-repeat;
|
2919 |
+
background-position: right calc(0.375em + 0.1875rem) center;
|
2920 |
+
background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
|
2921 |
+
}
|
2922 |
+
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
|
2923 |
+
border-color: #dc3545;
|
2924 |
+
box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
|
2925 |
+
}
|
2926 |
+
|
2927 |
+
.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
|
2928 |
+
padding-right: calc(1.5em + 0.75rem);
|
2929 |
+
background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
|
2930 |
+
}
|
2931 |
+
|
2932 |
+
.was-validated .form-select:invalid, .form-select.is-invalid {
|
2933 |
+
border-color: #dc3545;
|
2934 |
+
}
|
2935 |
+
.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
|
2936 |
+
padding-right: 4.125rem;
|
2937 |
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
|
2938 |
+
background-position: right 0.75rem center, center right 2.25rem;
|
2939 |
+
background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
|
2940 |
+
}
|
2941 |
+
.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
|
2942 |
+
border-color: #dc3545;
|
2943 |
+
box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
|
2944 |
+
}
|
2945 |
+
|
2946 |
+
.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
|
2947 |
+
border-color: #dc3545;
|
2948 |
+
}
|
2949 |
+
.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
|
2950 |
+
background-color: #dc3545;
|
2951 |
+
}
|
2952 |
+
.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
|
2953 |
+
box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
|
2954 |
+
}
|
2955 |
+
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
|
2956 |
+
color: #dc3545;
|
2957 |
+
}
|
2958 |
+
|
2959 |
+
.form-check-inline .form-check-input ~ .invalid-feedback {
|
2960 |
+
margin-left: 0.5em;
|
2961 |
+
}
|
2962 |
+
|
2963 |
+
.was-validated .input-group .form-control:invalid, .input-group .form-control.is-invalid,
|
2964 |
+
.was-validated .input-group .form-select:invalid,
|
2965 |
+
.input-group .form-select.is-invalid {
|
2966 |
+
z-index: 2;
|
2967 |
+
}
|
2968 |
+
.was-validated .input-group .form-control:invalid:focus, .input-group .form-control.is-invalid:focus,
|
2969 |
+
.was-validated .input-group .form-select:invalid:focus,
|
2970 |
+
.input-group .form-select.is-invalid:focus {
|
2971 |
+
z-index: 3;
|
2972 |
+
}
|
2973 |
+
|
2974 |
+
.btn {
|
2975 |
+
display: inline-block;
|
2976 |
+
font-weight: 400;
|
2977 |
+
line-height: 1.5;
|
2978 |
+
color: #212529;
|
2979 |
+
text-align: center;
|
2980 |
+
text-decoration: none;
|
2981 |
+
vertical-align: middle;
|
2982 |
+
cursor: pointer;
|
2983 |
+
-webkit-user-select: none;
|
2984 |
+
-moz-user-select: none;
|
2985 |
+
user-select: none;
|
2986 |
+
background-color: transparent;
|
2987 |
+
border: 1px solid transparent;
|
2988 |
+
padding: 0.375rem 0.75rem;
|
2989 |
+
font-size: 1rem;
|
2990 |
+
border-radius: 0.25rem;
|
2991 |
+
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
2992 |
+
}
|
2993 |
+
@media (prefers-reduced-motion: reduce) {
|
2994 |
+
.btn {
|
2995 |
+
transition: none;
|
2996 |
+
}
|
2997 |
+
}
|
2998 |
+
.btn:hover {
|
2999 |
+
color: #212529;
|
3000 |
+
}
|
3001 |
+
.btn-check:focus + .btn, .btn:focus {
|
3002 |
+
outline: 0;
|
3003 |
+
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
|
3004 |
+
}
|
3005 |
+
.btn:disabled, .btn.disabled, fieldset:disabled .btn {
|
3006 |
+
pointer-events: none;
|
3007 |
+
opacity: 0.65;
|
3008 |
+
}
|
3009 |
+
|
3010 |
+
.btn-primary {
|
3011 |
+
color: #fff;
|
3012 |
+
background-color: #0d6efd;
|
3013 |
+
border-color: #0d6efd;
|
3014 |
+
}
|
3015 |
+
.btn-primary:hover {
|
3016 |
+
color: #fff;
|
3017 |
+
background-color: #0b5ed7;
|
3018 |
+
border-color: #0a58ca;
|
3019 |
+
}
|
3020 |
+
.btn-check:focus + .btn-primary, .btn-primary:focus {
|
3021 |
+
color: #fff;
|
3022 |
+
background-color: #0b5ed7;
|
3023 |
+
border-color: #0a58ca;
|
3024 |
+
box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
|
3025 |
+
}
|
3026 |
+
.btn-check:checked + .btn-primary, .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, .show > .btn-primary.dropdown-toggle {
|
3027 |
+
color: #fff;
|
3028 |
+
background-color: #0a58ca;
|
3029 |
+
border-color: #0a53be;
|
3030 |
+
}
|
3031 |
+
.btn-check:checked + .btn-primary:focus, .btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, .show > .btn-primary.dropdown-toggle:focus {
|
3032 |
+
box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
|
3033 |
+
}
|
3034 |
+
.btn-primary:disabled, .btn-primary.disabled {
|
3035 |
+
color: #fff;
|
3036 |
+
background-color: #0d6efd;
|
3037 |
+
border-color: #0d6efd;
|
3038 |
+
}
|
3039 |
+
|
3040 |
+
.btn-secondary {
|
3041 |
+
color: #fff;
|
3042 |
+
background-color: #6c757d;
|
3043 |
+
border-color: #6c757d;
|
3044 |
+
}
|
3045 |
+
.btn-secondary:hover {
|
3046 |
+
color: #fff;
|
3047 |
+
background-color: #5c636a;
|
3048 |
+
border-color: #565e64;
|
3049 |
+
}
|
3050 |
+
.btn-check:focus + .btn-secondary, .btn-secondary:focus {
|
3051 |
+
color: #fff;
|
3052 |
+
background-color: #5c636a;
|
3053 |
+
border-color: #565e64;
|
3054 |
+
box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
|
3055 |
+
}
|
3056 |
+
.btn-check:checked + .btn-secondary, .btn-check:active + .btn-secondary, .btn-secondary:active, .btn-secondary.active, .show > .btn-secondary.dropdown-toggle {
|
3057 |
+
color: #fff;
|
3058 |
+
background-color: #565e64;
|
3059 |
+
border-color: #51585e;
|
3060 |
+
}
|
3061 |
+
.btn-check:checked + .btn-secondary:focus, .btn-check:active + .btn-secondary:focus, .btn-secondary:active:focus, .btn-secondary.active:focus, .show > .btn-secondary.dropdown-toggle:focus {
|
3062 |
+
box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
|
3063 |
+
}
|
3064 |
+
.btn-secondary:disabled, .btn-secondary.disabled {
|
3065 |
+
color: #fff;
|
3066 |
+
background-color: #6c757d;
|
3067 |
+
border-color: #6c757d;
|
3068 |
+
}
|
3069 |
+
|
3070 |
+
.btn-success {
|
3071 |
+
color: #fff;
|
3072 |
+
background-color: #198754;
|
3073 |
+
border-color: #198754;
|
3074 |
+
}
|
3075 |
+
.btn-success:hover {
|
3076 |
+
color: #fff;
|
3077 |
+
background-color: #157347;
|
3078 |
+
border-color: #146c43;
|
3079 |
+
}
|
3080 |
+
.btn-check:focus + .btn-success, .btn-success:focus {
|
3081 |
+
color: #fff;
|
3082 |
+
background-color: #157347;
|
3083 |
+
border-color: #146c43;
|
3084 |
+
box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
|
3085 |
+
}
|
3086 |
+
.btn-check:checked + .btn-success, .btn-check:active + .btn-success, .btn-success:active, .btn-success.active, .show > .btn-success.dropdown-toggle {
|
3087 |
+
color: #fff;
|
3088 |
+
background-color: #146c43;
|
3089 |
+
border-color: #13653f;
|
3090 |
+
}
|
3091 |
+
.btn-check:checked + .btn-success:focus, .btn-check:active + .btn-success:focus, .btn-success:active:focus, .btn-success.active:focus, .show > .btn-success.dropdown-toggle:focus {
|
3092 |
+
box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
|
3093 |
+
}
|
3094 |
+
.btn-success:disabled, .btn-success.disabled {
|
3095 |
+
color: #fff;
|
3096 |
+
background-color: #198754;
|
3097 |
+
border-color: #198754;
|
3098 |
+
}
|
3099 |
+
|
3100 |
+
.btn-info {
|
3101 |
+
color: #000;
|
3102 |
+
background-color: #0dcaf0;
|
3103 |
+
border-color: #0dcaf0;
|
3104 |
+
}
|
3105 |
+
.btn-info:hover {
|
3106 |
+
color: #000;
|
3107 |
+
background-color: #31d2f2;
|
3108 |
+
border-color: #25cff2;
|
3109 |
+
}
|
3110 |
+
.btn-check:focus + .btn-info, .btn-info:focus {
|
3111 |
+
color: #000;
|
3112 |
+
background-color: #31d2f2;
|
3113 |
+
border-color: #25cff2;
|
3114 |
+
box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
|
3115 |
+
}
|
3116 |
+
.btn-check:checked + .btn-info, .btn-check:active + .btn-info, .btn-info:active, .btn-info.active, .show > .btn-info.dropdown-toggle {
|
3117 |
+
color: #000;
|
3118 |
+
background-color: #3dd5f3;
|
3119 |
+
border-color: #25cff2;
|
3120 |
+
}
|
3121 |
+
.btn-check:checked + .btn-info:focus, .btn-check:active + .btn-info:focus, .btn-info:active:focus, .btn-info.active:focus, .show > .btn-info.dropdown-toggle:focus {
|
3122 |
+
box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
|
3123 |
+
}
|
3124 |
+
.btn-info:disabled, .btn-info.disabled {
|
3125 |
+
color: #000;
|
3126 |
+
background-color: #0dcaf0;
|
3127 |
+
border-color: #0dcaf0;
|
3128 |
+
}
|
3129 |
+
|
3130 |
+
.btn-warning {
|
3131 |
+
color: #000;
|
3132 |
+
background-color: #ffc107;
|
3133 |
+
border-color: #ffc107;
|
3134 |
+
}
|
3135 |
+
.btn-warning:hover {
|
3136 |
+
color: #000;
|
3137 |
+
background-color: #ffca2c;
|
3138 |
+
border-color: #ffc720;
|
3139 |
+
}
|
3140 |
+
.btn-check:focus + .btn-warning, .btn-warning:focus {
|
3141 |
+
color: #000;
|
3142 |
+
background-color: #ffca2c;
|
3143 |
+
border-color: #ffc720;
|
3144 |
+
box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
|
3145 |
+
}
|
3146 |
+
.btn-check:checked + .btn-warning, .btn-check:active + .btn-warning, .btn-warning:active, .btn-warning.active, .show > .btn-warning.dropdown-toggle {
|
3147 |
+
color: #000;
|
3148 |
+
background-color: #ffcd39;
|
3149 |
+
border-color: #ffc720;
|
3150 |
+
}
|
3151 |
+
.btn-check:checked + .btn-warning:focus, .btn-check:active + .btn-warning:focus, .btn-warning:active:focus, .btn-warning.active:focus, .show > .btn-warning.dropdown-toggle:focus {
|
3152 |
+
box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
|
3153 |
+
}
|
3154 |
+
.btn-warning:disabled, .btn-warning.disabled {
|
3155 |
+
color: #000;
|
3156 |
+
background-color: #ffc107;
|
3157 |
+
border-color: #ffc107;
|
3158 |
+
}
|
3159 |
+
|
3160 |
+
.btn-danger {
|
3161 |
+
color: #fff;
|
3162 |
+
background-color: #dc3545;
|
3163 |
+
border-color: #dc3545;
|
3164 |
+
}
|
3165 |
+
.btn-danger:hover {
|
3166 |
+
color: #fff;
|
3167 |
+
background-color: #bb2d3b;
|
3168 |
+
border-color: #b02a37;
|
3169 |
+
}
|
3170 |
+
.btn-check:focus + .btn-danger, .btn-danger:focus {
|
3171 |
+
color: #fff;
|
3172 |
+
background-color: #bb2d3b;
|
3173 |
+
border-color: #b02a37;
|
3174 |
+
box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
|
3175 |
+
}
|
3176 |
+
.btn-check:checked + .btn-danger, .btn-check:active + .btn-danger, .btn-danger:active, .btn-danger.active, .show > .btn-danger.dropdown-toggle {
|
3177 |
+
color: #fff;
|
3178 |
+
background-color: #b02a37;
|
3179 |
+
border-color: #a52834;
|
3180 |
+
}
|
3181 |
+
.btn-check:checked + .btn-danger:focus, .btn-check:active + .btn-danger:focus, .btn-danger:active:focus, .btn-danger.active:focus, .show > .btn-danger.dropdown-toggle:focus {
|
3182 |
+
box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
|
3183 |
+
}
|
3184 |
+
.btn-danger:disabled, .btn-danger.disabled {
|
3185 |
+
color: #fff;
|
3186 |
+
background-color: #dc3545;
|
3187 |
+
border-color: #dc3545;
|
3188 |
+
}
|
3189 |
+
|
3190 |
+
.btn-light {
|
3191 |
+
color: #000;
|
3192 |
+
background-color: #f8f9fa;
|
3193 |
+
border-color: #f8f9fa;
|
3194 |
+
}
|
3195 |
+
.btn-light:hover {
|
3196 |
+
color: #000;
|
3197 |
+
background-color: #f9fafb;
|
3198 |
+
border-color: #f9fafb;
|
3199 |
+
}
|
3200 |
+
.btn-check:focus + .btn-light, .btn-light:focus {
|
3201 |
+
color: #000;
|
3202 |
+
background-color: #f9fafb;
|
3203 |
+
border-color: #f9fafb;
|
3204 |
+
box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
|
3205 |
+
}
|
3206 |
+
.btn-check:checked + .btn-light, .btn-check:active + .btn-light, .btn-light:active, .btn-light.active, .show > .btn-light.dropdown-toggle {
|
3207 |
+
color: #000;
|
3208 |
+
background-color: #f9fafb;
|
3209 |
+
border-color: #f9fafb;
|
3210 |
+
}
|
3211 |
+
.btn-check:checked + .btn-light:focus, .btn-check:active + .btn-light:focus, .btn-light:active:focus, .btn-light.active:focus, .show > .btn-light.dropdown-toggle:focus {
|
3212 |
+
box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
|
3213 |
+
}
|
3214 |
+
.btn-light:disabled, .btn-light.disabled {
|
3215 |
+
color: #000;
|
3216 |
+
background-color: #f8f9fa;
|
3217 |
+
border-color: #f8f9fa;
|
3218 |
+
}
|
3219 |
+
|
3220 |
+
.btn-dark {
|
3221 |
+
color: #fff;
|
3222 |
+
background-color: #212529;
|
3223 |
+
border-color: #212529;
|
3224 |
+
}
|
3225 |
+
.btn-dark:hover {
|
3226 |
+
color: #fff;
|
3227 |
+
background-color: #1c1f23;
|
3228 |
+
border-color: #1a1e21;
|
3229 |
+
}
|
3230 |
+
.btn-check:focus + .btn-dark, .btn-dark:focus {
|
3231 |
+
color: #fff;
|
3232 |
+
background-color: #1c1f23;
|
3233 |
+
border-color: #1a1e21;
|
3234 |
+
box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
|
3235 |
+
}
|
3236 |
+
.btn-check:checked + .btn-dark, .btn-check:active + .btn-dark, .btn-dark:active, .btn-dark.active, .show > .btn-dark.dropdown-toggle {
|
3237 |
+
color: #fff;
|
3238 |
+
background-color: #1a1e21;
|
3239 |
+
border-color: #191c1f;
|
3240 |
+
}
|
3241 |
+
.btn-check:checked + .btn-dark:focus, .btn-check:active + .btn-dark:focus, .btn-dark:active:focus, .btn-dark.active:focus, .show > .btn-dark.dropdown-toggle:focus {
|
3242 |
+
box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
|
3243 |
+
}
|
3244 |
+
.btn-dark:disabled, .btn-dark.disabled {
|
3245 |
+
color: #fff;
|
3246 |
+
background-color: #212529;
|
3247 |
+
border-color: #212529;
|
3248 |
+
}
|
3249 |
+
|
3250 |
+
.btn-outline-primary {
|
3251 |
+
color: #0d6efd;
|
3252 |
+
border-color: #0d6efd;
|
3253 |
+
}
|
3254 |
+
.btn-outline-primary:hover {
|
3255 |
+
color: #fff;
|
3256 |
+
background-color: #0d6efd;
|
3257 |
+
border-color: #0d6efd;
|
3258 |
+
}
|
3259 |
+
.btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {
|
3260 |
+
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
|
3261 |
+
}
|
3262 |
+
.btn-check:checked + .btn-outline-primary, .btn-check:active + .btn-outline-primary, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show {
|
3263 |
+
color: #fff;
|
3264 |
+
background-color: #0d6efd;
|
3265 |
+
border-color: #0d6efd;
|
3266 |
+
}
|
3267 |
+
.btn-check:checked + .btn-outline-primary:focus, .btn-check:active + .btn-outline-primary:focus, .btn-outline-primary:active:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus {
|
3268 |
+
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
|
3269 |
+
}
|
3270 |
+
.btn-outline-primary:disabled, .btn-outline-primary.disabled {
|
3271 |
+
color: #0d6efd;
|
3272 |
+
background-color: transparent;
|
3273 |
+
}
|
3274 |
+
|
3275 |
+
.btn-outline-secondary {
|
3276 |
+
color: #6c757d;
|
3277 |
+
border-color: #6c757d;
|
3278 |
+
}
|
3279 |
+
.btn-outline-secondary:hover {
|
3280 |
+
color: #fff;
|
3281 |
+
background-color: #6c757d;
|
3282 |
+
border-color: #6c757d;
|
3283 |
+
}
|
3284 |
+
.btn-check:focus + .btn-outline-secondary, .btn-outline-secondary:focus {
|
3285 |
+
box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
|
3286 |
+
}
|
3287 |
+
.btn-check:checked + .btn-outline-secondary, .btn-check:active + .btn-outline-secondary, .btn-outline-secondary:active, .btn-outline-secondary.active, .btn-outline-secondary.dropdown-toggle.show {
|
3288 |
+
color: #fff;
|
3289 |
+
background-color: #6c757d;
|
3290 |
+
border-color: #6c757d;
|
3291 |
+
}
|
3292 |
+
.btn-check:checked + .btn-outline-secondary:focus, .btn-check:active + .btn-outline-secondary:focus, .btn-outline-secondary:active:focus, .btn-outline-secondary.active:focus, .btn-outline-secondary.dropdown-toggle.show:focus {
|
3293 |
+
box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
|
3294 |
+
}
|
3295 |
+
.btn-outline-secondary:disabled, .btn-outline-secondary.disabled {
|
3296 |
+
color: #6c757d;
|
3297 |
+
background-color: transparent;
|
3298 |
+
}
|
3299 |
+
|
3300 |
+
.btn-outline-success {
|
3301 |
+
color: #198754;
|
3302 |
+
border-color: #198754;
|
3303 |
+
}
|
3304 |
+
.btn-outline-success:hover {
|
3305 |
+
color: #fff;
|
3306 |
+
background-color: #198754;
|
3307 |
+
border-color: #198754;
|
3308 |
+
}
|
3309 |
+
.btn-check:focus + .btn-outline-success, .btn-outline-success:focus {
|
3310 |
+
box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
|
3311 |
+
}
|
3312 |
+
.btn-check:checked + .btn-outline-success, .btn-check:active + .btn-outline-success, .btn-outline-success:active, .btn-outline-success.active, .btn-outline-success.dropdown-toggle.show {
|
3313 |
+
color: #fff;
|
3314 |
+
background-color: #198754;
|
3315 |
+
border-color: #198754;
|
3316 |
+
}
|
3317 |
+
.btn-check:checked + .btn-outline-success:focus, .btn-check:active + .btn-outline-success:focus, .btn-outline-success:active:focus, .btn-outline-success.active:focus, .btn-outline-success.dropdown-toggle.show:focus {
|
3318 |
+
box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
|
3319 |
+
}
|
3320 |
+
.btn-outline-success:disabled, .btn-outline-success.disabled {
|
3321 |
+
color: #198754;
|
3322 |
+
background-color: transparent;
|
3323 |
+
}
|
3324 |
+
|
3325 |
+
.btn-outline-info {
|
3326 |
+
color: #0dcaf0;
|
3327 |
+
border-color: #0dcaf0;
|
3328 |
+
}
|
3329 |
+
.btn-outline-info:hover {
|
3330 |
+
color: #000;
|
3331 |
+
background-color: #0dcaf0;
|
3332 |
+
border-color: #0dcaf0;
|
3333 |
+
}
|
3334 |
+
.btn-check:focus + .btn-outline-info, .btn-outline-info:focus {
|
3335 |
+
box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
|
3336 |
+
}
|
3337 |
+
.btn-check:checked + .btn-outline-info, .btn-check:active + .btn-outline-info, .btn-outline-info:active, .btn-outline-info.active, .btn-outline-info.dropdown-toggle.show {
|
3338 |
+
color: #000;
|
3339 |
+
background-color: #0dcaf0;
|
3340 |
+
border-color: #0dcaf0;
|
3341 |
+
}
|
3342 |
+
.btn-check:checked + .btn-outline-info:focus, .btn-check:active + .btn-outline-info:focus, .btn-outline-info:active:focus, .btn-outline-info.active:focus, .btn-outline-info.dropdown-toggle.show:focus {
|
3343 |
+
box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
|
3344 |
+
}
|
3345 |
+
.btn-outline-info:disabled, .btn-outline-info.disabled {
|
3346 |
+
color: #0dcaf0;
|
3347 |
+
background-color: transparent;
|
3348 |
+
}
|
3349 |
+
|
3350 |
+
.btn-outline-warning {
|
3351 |
+
color: #ffc107;
|
3352 |
+
border-color: #ffc107;
|
3353 |
+
}
|
3354 |
+
.btn-outline-warning:hover {
|
3355 |
+
color: #000;
|
3356 |
+
background-color: #ffc107;
|
3357 |
+
border-color: #ffc107;
|
3358 |
+
}
|
3359 |
+
.btn-check:focus + .btn-outline-warning, .btn-outline-warning:focus {
|
3360 |
+
box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
|
3361 |
+
}
|
3362 |
+
.btn-check:checked + .btn-outline-warning, .btn-check:active + .btn-outline-warning, .btn-outline-warning:active, .btn-outline-warning.active, .btn-outline-warning.dropdown-toggle.show {
|
3363 |
+
color: #000;
|
3364 |
+
background-color: #ffc107;
|
3365 |
+
border-color: #ffc107;
|
3366 |
+
}
|
3367 |
+
.btn-check:checked + .btn-outline-warning:focus, .btn-check:active + .btn-outline-warning:focus, .btn-outline-warning:active:focus, .btn-outline-warning.active:focus, .btn-outline-warning.dropdown-toggle.show:focus {
|
3368 |
+
box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
|
3369 |
+
}
|
3370 |
+
.btn-outline-warning:disabled, .btn-outline-warning.disabled {
|
3371 |
+
color: #ffc107;
|
3372 |
+
background-color: transparent;
|
3373 |
+
}
|
3374 |
+
|
3375 |
+
.btn-outline-danger {
|
3376 |
+
color: #dc3545;
|
3377 |
+
border-color: #dc3545;
|
3378 |
+
}
|
3379 |
+
.btn-outline-danger:hover {
|
3380 |
+
color: #fff;
|
3381 |
+
background-color: #dc3545;
|
3382 |
+
border-color: #dc3545;
|
3383 |
+
}
|
3384 |
+
.btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus {
|
3385 |
+
box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
|
3386 |
+
}
|
3387 |
+
.btn-check:checked + .btn-outline-danger, .btn-check:active + .btn-outline-danger, .btn-outline-danger:active, .btn-outline-danger.active, .btn-outline-danger.dropdown-toggle.show {
|
3388 |
+
color: #fff;
|
3389 |
+
background-color: #dc3545;
|
3390 |
+
border-color: #dc3545;
|
3391 |
+
}
|
3392 |
+
.btn-check:checked + .btn-outline-danger:focus, .btn-check:active + .btn-outline-danger:focus, .btn-outline-danger:active:focus, .btn-outline-danger.active:focus, .btn-outline-danger.dropdown-toggle.show:focus {
|
3393 |
+
box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
|
3394 |
+
}
|
3395 |
+
.btn-outline-danger:disabled, .btn-outline-danger.disabled {
|
3396 |
+
color: #dc3545;
|
3397 |
+
background-color: transparent;
|
3398 |
+
}
|
3399 |
+
|
3400 |
+
.btn-outline-light {
|
3401 |
+
color: #f8f9fa;
|
3402 |
+
border-color: #f8f9fa;
|
3403 |
+
}
|
3404 |
+
.btn-outline-light:hover {
|
3405 |
+
color: #000;
|
3406 |
+
background-color: #f8f9fa;
|
3407 |
+
border-color: #f8f9fa;
|
3408 |
+
}
|
3409 |
+
.btn-check:focus + .btn-outline-light, .btn-outline-light:focus {
|
3410 |
+
box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
|
3411 |
+
}
|
3412 |
+
.btn-check:checked + .btn-outline-light, .btn-check:active + .btn-outline-light, .btn-outline-light:active, .btn-outline-light.active, .btn-outline-light.dropdown-toggle.show {
|
3413 |
+
color: #000;
|
3414 |
+
background-color: #f8f9fa;
|
3415 |
+
border-color: #f8f9fa;
|
3416 |
+
}
|
3417 |
+
.btn-check:checked + .btn-outline-light:focus, .btn-check:active + .btn-outline-light:focus, .btn-outline-light:active:focus, .btn-outline-light.active:focus, .btn-outline-light.dropdown-toggle.show:focus {
|
3418 |
+
box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
|
3419 |
+
}
|
3420 |
+
.btn-outline-light:disabled, .btn-outline-light.disabled {
|
3421 |
+
color: #f8f9fa;
|
3422 |
+
background-color: transparent;
|
3423 |
+
}
|
3424 |
+
|
3425 |
+
.btn-outline-dark {
|
3426 |
+
color: #212529;
|
3427 |
+
border-color: #212529;
|
3428 |
+
}
|
3429 |
+
.btn-outline-dark:hover {
|
3430 |
+
color: #fff;
|
3431 |
+
background-color: #212529;
|
3432 |
+
border-color: #212529;
|
3433 |
+
}
|
3434 |
+
.btn-check:focus + .btn-outline-dark, .btn-outline-dark:focus {
|
3435 |
+
box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
|
3436 |
+
}
|
3437 |
+
.btn-check:checked + .btn-outline-dark, .btn-check:active + .btn-outline-dark, .btn-outline-dark:active, .btn-outline-dark.active, .btn-outline-dark.dropdown-toggle.show {
|
3438 |
+
color: #fff;
|
3439 |
+
background-color: #212529;
|
3440 |
+
border-color: #212529;
|
3441 |
+
}
|
3442 |
+
.btn-check:checked + .btn-outline-dark:focus, .btn-check:active + .btn-outline-dark:focus, .btn-outline-dark:active:focus, .btn-outline-dark.active:focus, .btn-outline-dark.dropdown-toggle.show:focus {
|
3443 |
+
box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
|
3444 |
+
}
|
3445 |
+
.btn-outline-dark:disabled, .btn-outline-dark.disabled {
|
3446 |
+
color: #212529;
|
3447 |
+
background-color: transparent;
|
3448 |
+
}
|
3449 |
+
|
3450 |
+
.btn-link {
|
3451 |
+
font-weight: 400;
|
3452 |
+
color: #0d6efd;
|
3453 |
+
text-decoration: underline;
|
3454 |
+
}
|
3455 |
+
.btn-link:hover {
|
3456 |
+
color: #0a58ca;
|
3457 |
+
}
|
3458 |
+
.btn-link:disabled, .btn-link.disabled {
|
3459 |
+
color: #6c757d;
|
3460 |
+
}
|
3461 |
+
|
3462 |
+
.btn-lg, .btn-group-lg > .btn {
|
3463 |
+
padding: 0.5rem 1rem;
|
3464 |
+
font-size: 1.25rem;
|
3465 |
+
border-radius: 0.3rem;
|
3466 |
+
}
|
3467 |
+
|
3468 |
+
.btn-sm, .btn-group-sm > .btn {
|
3469 |
+
padding: 0.25rem 0.5rem;
|
3470 |
+
font-size: 0.875rem;
|
3471 |
+
border-radius: 0.2rem;
|
3472 |
+
}
|
3473 |
+
|
3474 |
+
.fade {
|
3475 |
+
transition: opacity 0.15s linear;
|
3476 |
+
}
|
3477 |
+
@media (prefers-reduced-motion: reduce) {
|
3478 |
+
.fade {
|
3479 |
+
transition: none;
|
3480 |
+
}
|
3481 |
+
}
|
3482 |
+
.fade:not(.show) {
|
3483 |
+
opacity: 0;
|
3484 |
+
}
|
3485 |
+
|
3486 |
+
.collapse:not(.show) {
|
3487 |
+
display: none;
|
3488 |
+
}
|
3489 |
+
|
3490 |
+
.collapsing {
|
3491 |
+
height: 0;
|
3492 |
+
overflow: hidden;
|
3493 |
+
transition: height 0.35s ease;
|
3494 |
+
}
|
3495 |
+
@media (prefers-reduced-motion: reduce) {
|
3496 |
+
.collapsing {
|
3497 |
+
transition: none;
|
3498 |
+
}
|
3499 |
+
}
|
3500 |
+
.collapsing.collapse-horizontal {
|
3501 |
+
width: 0;
|
3502 |
+
height: auto;
|
3503 |
+
transition: width 0.35s ease;
|
3504 |
+
}
|
3505 |
+
@media (prefers-reduced-motion: reduce) {
|
3506 |
+
.collapsing.collapse-horizontal {
|
3507 |
+
transition: none;
|
3508 |
+
}
|
3509 |
+
}
|
3510 |
+
|
3511 |
+
.dropup,
|
3512 |
+
.dropend,
|
3513 |
+
.dropdown,
|
3514 |
+
.dropstart {
|
3515 |
+
position: relative;
|
3516 |
+
}
|
3517 |
+
|
3518 |
+
.dropdown-toggle {
|
3519 |
+
white-space: nowrap;
|
3520 |
+
}
|
3521 |
+
.dropdown-toggle::after {
|
3522 |
+
display: inline-block;
|
3523 |
+
margin-left: 0.255em;
|
3524 |
+
vertical-align: 0.255em;
|
3525 |
+
content: "";
|
3526 |
+
border-top: 0.3em solid;
|
3527 |
+
border-right: 0.3em solid transparent;
|
3528 |
+
border-bottom: 0;
|
3529 |
+
border-left: 0.3em solid transparent;
|
3530 |
+
}
|
3531 |
+
.dropdown-toggle:empty::after {
|
3532 |
+
margin-left: 0;
|
3533 |
+
}
|
3534 |
+
|
3535 |
+
.dropdown-menu {
|
3536 |
+
position: absolute;
|
3537 |
+
z-index: 1000;
|
3538 |
+
display: none;
|
3539 |
+
min-width: 10rem;
|
3540 |
+
padding: 0.5rem 0;
|
3541 |
+
margin: 0;
|
3542 |
+
font-size: 1rem;
|
3543 |
+
color: #212529;
|
3544 |
+
text-align: left;
|
3545 |
+
list-style: none;
|
3546 |
+
background-color: #fff;
|
3547 |
+
background-clip: padding-box;
|
3548 |
+
border: 1px solid rgba(0, 0, 0, 0.15);
|
3549 |
+
border-radius: 0.25rem;
|
3550 |
+
}
|
3551 |
+
.dropdown-menu[data-bs-popper] {
|
3552 |
+
top: 100%;
|
3553 |
+
left: 0;
|
3554 |
+
margin-top: 0.125rem;
|
3555 |
+
}
|
3556 |
+
|
3557 |
+
.dropdown-menu-start {
|
3558 |
+
--bs-position: start;
|
3559 |
+
}
|
3560 |
+
.dropdown-menu-start[data-bs-popper] {
|
3561 |
+
right: auto;
|
3562 |
+
left: 0;
|
3563 |
+
}
|
3564 |
+
|
3565 |
+
.dropdown-menu-end {
|
3566 |
+
--bs-position: end;
|
3567 |
+
}
|
3568 |
+
.dropdown-menu-end[data-bs-popper] {
|
3569 |
+
right: 0;
|
3570 |
+
left: auto;
|
3571 |
+
}
|
3572 |
+
|
3573 |
+
@media (min-width: 576px) {
|
3574 |
+
.dropdown-menu-sm-start {
|
3575 |
+
--bs-position: start;
|
3576 |
+
}
|
3577 |
+
.dropdown-menu-sm-start[data-bs-popper] {
|
3578 |
+
right: auto;
|
3579 |
+
left: 0;
|
3580 |
+
}
|
3581 |
+
|
3582 |
+
.dropdown-menu-sm-end {
|
3583 |
+
--bs-position: end;
|
3584 |
+
}
|
3585 |
+
.dropdown-menu-sm-end[data-bs-popper] {
|
3586 |
+
right: 0;
|
3587 |
+
left: auto;
|
3588 |
+
}
|
3589 |
+
}
|
3590 |
+
@media (min-width: 768px) {
|
3591 |
+
.dropdown-menu-md-start {
|
3592 |
+
--bs-position: start;
|
3593 |
+
}
|
3594 |
+
.dropdown-menu-md-start[data-bs-popper] {
|
3595 |
+
right: auto;
|
3596 |
+
left: 0;
|
3597 |
+
}
|
3598 |
+
|
3599 |
+
.dropdown-menu-md-end {
|
3600 |
+
--bs-position: end;
|
3601 |
+
}
|
3602 |
+
.dropdown-menu-md-end[data-bs-popper] {
|
3603 |
+
right: 0;
|
3604 |
+
left: auto;
|
3605 |
+
}
|
3606 |
+
}
|
3607 |
+
@media (min-width: 992px) {
|
3608 |
+
.dropdown-menu-lg-start {
|
3609 |
+
--bs-position: start;
|
3610 |
+
}
|
3611 |
+
.dropdown-menu-lg-start[data-bs-popper] {
|
3612 |
+
right: auto;
|
3613 |
+
left: 0;
|
3614 |
+
}
|
3615 |
+
|
3616 |
+
.dropdown-menu-lg-end {
|
3617 |
+
--bs-position: end;
|
3618 |
+
}
|
3619 |
+
.dropdown-menu-lg-end[data-bs-popper] {
|
3620 |
+
right: 0;
|
3621 |
+
left: auto;
|
3622 |
+
}
|
3623 |
+
}
|
3624 |
+
@media (min-width: 1200px) {
|
3625 |
+
.dropdown-menu-xl-start {
|
3626 |
+
--bs-position: start;
|
3627 |
+
}
|
3628 |
+
.dropdown-menu-xl-start[data-bs-popper] {
|
3629 |
+
right: auto;
|
3630 |
+
left: 0;
|
3631 |
+
}
|
3632 |
+
|
3633 |
+
.dropdown-menu-xl-end {
|
3634 |
+
--bs-position: end;
|
3635 |
+
}
|
3636 |
+
.dropdown-menu-xl-end[data-bs-popper] {
|
3637 |
+
right: 0;
|
3638 |
+
left: auto;
|
3639 |
+
}
|
3640 |
+
}
|
3641 |
+
@media (min-width: 1400px) {
|
3642 |
+
.dropdown-menu-xxl-start {
|
3643 |
+
--bs-position: start;
|
3644 |
+
}
|
3645 |
+
.dropdown-menu-xxl-start[data-bs-popper] {
|
3646 |
+
right: auto;
|
3647 |
+
left: 0;
|
3648 |
+
}
|
3649 |
+
|
3650 |
+
.dropdown-menu-xxl-end {
|
3651 |
+
--bs-position: end;
|
3652 |
+
}
|
3653 |
+
.dropdown-menu-xxl-end[data-bs-popper] {
|
3654 |
+
right: 0;
|
3655 |
+
left: auto;
|
3656 |
+
}
|
3657 |
+
}
|
3658 |
+
.dropup .dropdown-menu[data-bs-popper] {
|
3659 |
+
top: auto;
|
3660 |
+
bottom: 100%;
|
3661 |
+
margin-top: 0;
|
3662 |
+
margin-bottom: 0.125rem;
|
3663 |
+
}
|
3664 |
+
.dropup .dropdown-toggle::after {
|
3665 |
+
display: inline-block;
|
3666 |
+
margin-left: 0.255em;
|
3667 |
+
vertical-align: 0.255em;
|
3668 |
+
content: "";
|
3669 |
+
border-top: 0;
|
3670 |
+
border-right: 0.3em solid transparent;
|
3671 |
+
border-bottom: 0.3em solid;
|
3672 |
+
border-left: 0.3em solid transparent;
|
3673 |
+
}
|
3674 |
+
.dropup .dropdown-toggle:empty::after {
|
3675 |
+
margin-left: 0;
|
3676 |
+
}
|
3677 |
+
|
3678 |
+
.dropend .dropdown-menu[data-bs-popper] {
|
3679 |
+
top: 0;
|
3680 |
+
right: auto;
|
3681 |
+
left: 100%;
|
3682 |
+
margin-top: 0;
|
3683 |
+
margin-left: 0.125rem;
|
3684 |
+
}
|
3685 |
+
.dropend .dropdown-toggle::after {
|
3686 |
+
display: inline-block;
|
3687 |
+
margin-left: 0.255em;
|
3688 |
+
vertical-align: 0.255em;
|
3689 |
+
content: "";
|
3690 |
+
border-top: 0.3em solid transparent;
|
3691 |
+
border-right: 0;
|
3692 |
+
border-bottom: 0.3em solid transparent;
|
3693 |
+
border-left: 0.3em solid;
|
3694 |
+
}
|
3695 |
+
.dropend .dropdown-toggle:empty::after {
|
3696 |
+
margin-left: 0;
|
3697 |
+
}
|
3698 |
+
.dropend .dropdown-toggle::after {
|
3699 |
+
vertical-align: 0;
|
3700 |
+
}
|
3701 |
+
|
3702 |
+
.dropstart .dropdown-menu[data-bs-popper] {
|
3703 |
+
top: 0;
|
3704 |
+
right: 100%;
|
3705 |
+
left: auto;
|
3706 |
+
margin-top: 0;
|
3707 |
+
margin-right: 0.125rem;
|
3708 |
+
}
|
3709 |
+
.dropstart .dropdown-toggle::after {
|
3710 |
+
display: inline-block;
|
3711 |
+
margin-left: 0.255em;
|
3712 |
+
vertical-align: 0.255em;
|
3713 |
+
content: "";
|
3714 |
+
}
|
3715 |
+
.dropstart .dropdown-toggle::after {
|
3716 |
+
display: none;
|
3717 |
+
}
|
3718 |
+
.dropstart .dropdown-toggle::before {
|
3719 |
+
display: inline-block;
|
3720 |
+
margin-right: 0.255em;
|
3721 |
+
vertical-align: 0.255em;
|
3722 |
+
content: "";
|
3723 |
+
border-top: 0.3em solid transparent;
|
3724 |
+
border-right: 0.3em solid;
|
3725 |
+
border-bottom: 0.3em solid transparent;
|
3726 |
+
}
|
3727 |
+
.dropstart .dropdown-toggle:empty::after {
|
3728 |
+
margin-left: 0;
|
3729 |
+
}
|
3730 |
+
.dropstart .dropdown-toggle::before {
|
3731 |
+
vertical-align: 0;
|
3732 |
+
}
|
3733 |
+
|
3734 |
+
.dropdown-divider {
|
3735 |
+
height: 0;
|
3736 |
+
margin: 0.5rem 0;
|
3737 |
+
overflow: hidden;
|
3738 |
+
border-top: 1px solid rgba(0, 0, 0, 0.15);
|
3739 |
+
}
|
3740 |
+
|
3741 |
+
.dropdown-item {
|
3742 |
+
display: block;
|
3743 |
+
width: 100%;
|
3744 |
+
padding: 0.25rem 1rem;
|
3745 |
+
clear: both;
|
3746 |
+
font-weight: 400;
|
3747 |
+
color: #212529;
|
3748 |
+
text-align: inherit;
|
3749 |
+
text-decoration: none;
|
3750 |
+
white-space: nowrap;
|
3751 |
+
background-color: transparent;
|
3752 |
+
border: 0;
|
3753 |
+
}
|
3754 |
+
.dropdown-item:hover, .dropdown-item:focus {
|
3755 |
+
color: #1e2125;
|
3756 |
+
background-color: #e9ecef;
|
3757 |
+
}
|
3758 |
+
.dropdown-item.active, .dropdown-item:active {
|
3759 |
+
color: #fff;
|
3760 |
+
text-decoration: none;
|
3761 |
+
background-color: #0d6efd;
|
3762 |
+
}
|
3763 |
+
.dropdown-item.disabled, .dropdown-item:disabled {
|
3764 |
+
color: #adb5bd;
|
3765 |
+
pointer-events: none;
|
3766 |
+
background-color: transparent;
|
3767 |
+
}
|
3768 |
+
|
3769 |
+
.dropdown-menu.show {
|
3770 |
+
display: block;
|
3771 |
+
}
|
3772 |
+
|
3773 |
+
.dropdown-header {
|
3774 |
+
display: block;
|
3775 |
+
padding: 0.5rem 1rem;
|
3776 |
+
margin-bottom: 0;
|
3777 |
+
font-size: 0.875rem;
|
3778 |
+
color: #6c757d;
|
3779 |
+
white-space: nowrap;
|
3780 |
+
}
|
3781 |
+
|
3782 |
+
.dropdown-item-text {
|
3783 |
+
display: block;
|
3784 |
+
padding: 0.25rem 1rem;
|
3785 |
+
color: #212529;
|
3786 |
+
}
|
3787 |
+
|
3788 |
+
.dropdown-menu-dark {
|
3789 |
+
color: #dee2e6;
|
3790 |
+
background-color: #343a40;
|
3791 |
+
border-color: rgba(0, 0, 0, 0.15);
|
3792 |
+
}
|
3793 |
+
.dropdown-menu-dark .dropdown-item {
|
3794 |
+
color: #dee2e6;
|
3795 |
+
}
|
3796 |
+
.dropdown-menu-dark .dropdown-item:hover, .dropdown-menu-dark .dropdown-item:focus {
|
3797 |
+
color: #fff;
|
3798 |
+
background-color: rgba(255, 255, 255, 0.15);
|
3799 |
+
}
|
3800 |
+
.dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active {
|
3801 |
+
color: #fff;
|
3802 |
+
background-color: #0d6efd;
|
3803 |
+
}
|
3804 |
+
.dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled {
|
3805 |
+
color: #adb5bd;
|
3806 |
+
}
|
3807 |
+
.dropdown-menu-dark .dropdown-divider {
|
3808 |
+
border-color: rgba(0, 0, 0, 0.15);
|
3809 |
+
}
|
3810 |
+
.dropdown-menu-dark .dropdown-item-text {
|
3811 |
+
color: #dee2e6;
|
3812 |
+
}
|
3813 |
+
.dropdown-menu-dark .dropdown-header {
|
3814 |
+
color: #adb5bd;
|
3815 |
+
}
|
3816 |
+
|
3817 |
+
.btn-group,
|
3818 |
+
.btn-group-vertical {
|
3819 |
+
position: relative;
|
3820 |
+
display: inline-flex;
|
3821 |
+
vertical-align: middle;
|
3822 |
+
}
|
3823 |
+
.btn-group > .btn,
|
3824 |
+
.btn-group-vertical > .btn {
|
3825 |
+
position: relative;
|
3826 |
+
flex: 1 1 auto;
|
3827 |
+
}
|
3828 |
+
.btn-group > .btn-check:checked + .btn,
|
3829 |
+
.btn-group > .btn-check:focus + .btn,
|
3830 |
+
.btn-group > .btn:hover,
|
3831 |
+
.btn-group > .btn:focus,
|
3832 |
+
.btn-group > .btn:active,
|
3833 |
+
.btn-group > .btn.active,
|
3834 |
+
.btn-group-vertical > .btn-check:checked + .btn,
|
3835 |
+
.btn-group-vertical > .btn-check:focus + .btn,
|
3836 |
+
.btn-group-vertical > .btn:hover,
|
3837 |
+
.btn-group-vertical > .btn:focus,
|
3838 |
+
.btn-group-vertical > .btn:active,
|
3839 |
+
.btn-group-vertical > .btn.active {
|
3840 |
+
z-index: 1;
|
3841 |
+
}
|
3842 |
+
|
3843 |
+
.btn-toolbar {
|
3844 |
+
display: flex;
|
3845 |
+
flex-wrap: wrap;
|
3846 |
+
justify-content: flex-start;
|
3847 |
+
}
|
3848 |
+
.btn-toolbar .input-group {
|
3849 |
+
width: auto;
|
3850 |
+
}
|
3851 |
+
|
3852 |
+
.btn-group > .btn:not(:first-child),
|
3853 |
+
.btn-group > .btn-group:not(:first-child) {
|
3854 |
+
margin-left: -1px;
|
3855 |
+
}
|
3856 |
+
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
|
3857 |
+
.btn-group > .btn-group:not(:last-child) > .btn {
|
3858 |
+
border-top-right-radius: 0;
|
3859 |
+
border-bottom-right-radius: 0;
|
3860 |
+
}
|
3861 |
+
.btn-group > .btn:nth-child(n+3),
|
3862 |
+
.btn-group > :not(.btn-check) + .btn,
|
3863 |
+
.btn-group > .btn-group:not(:first-child) > .btn {
|
3864 |
+
border-top-left-radius: 0;
|
3865 |
+
border-bottom-left-radius: 0;
|
3866 |
+
}
|
3867 |
+
|
3868 |
+
.dropdown-toggle-split {
|
3869 |
+
padding-right: 0.5625rem;
|
3870 |
+
padding-left: 0.5625rem;
|
3871 |
+
}
|
3872 |
+
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after {
|
3873 |
+
margin-left: 0;
|
3874 |
+
}
|
3875 |
+
.dropstart .dropdown-toggle-split::before {
|
3876 |
+
margin-right: 0;
|
3877 |
+
}
|
3878 |
+
|
3879 |
+
.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
|
3880 |
+
padding-right: 0.375rem;
|
3881 |
+
padding-left: 0.375rem;
|
3882 |
+
}
|
3883 |
+
|
3884 |
+
.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
|
3885 |
+
padding-right: 0.75rem;
|
3886 |
+
padding-left: 0.75rem;
|
3887 |
+
}
|
3888 |
+
|
3889 |
+
.btn-group-vertical {
|
3890 |
+
flex-direction: column;
|
3891 |
+
align-items: flex-start;
|
3892 |
+
justify-content: center;
|
3893 |
+
}
|
3894 |
+
.btn-group-vertical > .btn,
|
3895 |
+
.btn-group-vertical > .btn-group {
|
3896 |
+
width: 100%;
|
3897 |
+
}
|
3898 |
+
.btn-group-vertical > .btn:not(:first-child),
|
3899 |
+
.btn-group-vertical > .btn-group:not(:first-child) {
|
3900 |
+
margin-top: -1px;
|
3901 |
+
}
|
3902 |
+
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
|
3903 |
+
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
|
3904 |
+
border-bottom-right-radius: 0;
|
3905 |
+
border-bottom-left-radius: 0;
|
3906 |
+
}
|
3907 |
+
.btn-group-vertical > .btn ~ .btn,
|
3908 |
+
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
|
3909 |
+
border-top-left-radius: 0;
|
3910 |
+
border-top-right-radius: 0;
|
3911 |
+
}
|
3912 |
+
|
3913 |
+
.nav {
|
3914 |
+
display: flex;
|
3915 |
+
flex-wrap: wrap;
|
3916 |
+
padding-left: 0;
|
3917 |
+
margin-bottom: 0;
|
3918 |
+
list-style: none;
|
3919 |
+
}
|
3920 |
+
|
3921 |
+
.nav-link {
|
3922 |
+
display: block;
|
3923 |
+
padding: 0.5rem 1rem;
|
3924 |
+
color: #0d6efd;
|
3925 |
+
text-decoration: none;
|
3926 |
+
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
|
3927 |
+
}
|
3928 |
+
@media (prefers-reduced-motion: reduce) {
|
3929 |
+
.nav-link {
|
3930 |
+
transition: none;
|
3931 |
+
}
|
3932 |
+
}
|
3933 |
+
.nav-link:hover, .nav-link:focus {
|
3934 |
+
color: #0a58ca;
|
3935 |
+
}
|
3936 |
+
.nav-link.disabled {
|
3937 |
+
color: #6c757d;
|
3938 |
+
pointer-events: none;
|
3939 |
+
cursor: default;
|
3940 |
+
}
|
3941 |
+
|
3942 |
+
.nav-tabs {
|
3943 |
+
border-bottom: 1px solid #dee2e6;
|
3944 |
+
}
|
3945 |
+
.nav-tabs .nav-link {
|
3946 |
+
margin-bottom: -1px;
|
3947 |
+
background: none;
|
3948 |
+
border: 1px solid transparent;
|
3949 |
+
border-top-left-radius: 0.25rem;
|
3950 |
+
border-top-right-radius: 0.25rem;
|
3951 |
+
}
|
3952 |
+
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
|
3953 |
+
border-color: #e9ecef #e9ecef #dee2e6;
|
3954 |
+
isolation: isolate;
|
3955 |
+
}
|
3956 |
+
.nav-tabs .nav-link.disabled {
|
3957 |
+
color: #6c757d;
|
3958 |
+
background-color: transparent;
|
3959 |
+
border-color: transparent;
|
3960 |
+
}
|
3961 |
+
.nav-tabs .nav-link.active,
|
3962 |
+
.nav-tabs .nav-item.show .nav-link {
|
3963 |
+
color: #495057;
|
3964 |
+
background-color: #fff;
|
3965 |
+
border-color: #dee2e6 #dee2e6 #fff;
|
3966 |
+
}
|
3967 |
+
.nav-tabs .dropdown-menu {
|
3968 |
+
margin-top: -1px;
|
3969 |
+
border-top-left-radius: 0;
|
3970 |
+
border-top-right-radius: 0;
|
3971 |
+
}
|
3972 |
+
|
3973 |
+
.nav-pills .nav-link {
|
3974 |
+
background: none;
|
3975 |
+
border: 0;
|
3976 |
+
border-radius: 0.25rem;
|
3977 |
+
}
|
3978 |
+
.nav-pills .nav-link.active,
|
3979 |
+
.nav-pills .show > .nav-link {
|
3980 |
+
color: #fff;
|
3981 |
+
background-color: #0d6efd;
|
3982 |
+
}
|
3983 |
+
|
3984 |
+
.nav-fill > .nav-link,
|
3985 |
+
.nav-fill .nav-item {
|
3986 |
+
flex: 1 1 auto;
|
3987 |
+
text-align: center;
|
3988 |
+
}
|
3989 |
+
|
3990 |
+
.nav-justified > .nav-link,
|
3991 |
+
.nav-justified .nav-item {
|
3992 |
+
flex-basis: 0;
|
3993 |
+
flex-grow: 1;
|
3994 |
+
text-align: center;
|
3995 |
+
}
|
3996 |
+
|
3997 |
+
.nav-fill .nav-item .nav-link,
|
3998 |
+
.nav-justified .nav-item .nav-link {
|
3999 |
+
width: 100%;
|
4000 |
+
}
|
4001 |
+
|
4002 |
+
.tab-content > .tab-pane {
|
4003 |
+
display: none;
|
4004 |
+
}
|
4005 |
+
.tab-content > .active {
|
4006 |
+
display: block;
|
4007 |
+
}
|
4008 |
+
|
4009 |
+
.navbar {
|
4010 |
+
position: relative;
|
4011 |
+
display: flex;
|
4012 |
+
flex-wrap: wrap;
|
4013 |
+
align-items: center;
|
4014 |
+
justify-content: space-between;
|
4015 |
+
padding-top: 0.5rem;
|
4016 |
+
padding-bottom: 0.5rem;
|
4017 |
+
}
|
4018 |
+
.navbar > .container,
|
4019 |
+
.navbar > .container-fluid,
|
4020 |
+
.navbar > .container-sm,
|
4021 |
+
.navbar > .container-md,
|
4022 |
+
.navbar > .container-lg,
|
4023 |
+
.navbar > .container-xl,
|
4024 |
+
.navbar > .container-xxl {
|
4025 |
+
display: flex;
|
4026 |
+
flex-wrap: inherit;
|
4027 |
+
align-items: center;
|
4028 |
+
justify-content: space-between;
|
4029 |
+
}
|
4030 |
+
.navbar-brand {
|
4031 |
+
padding-top: 0.3125rem;
|
4032 |
+
padding-bottom: 0.3125rem;
|
4033 |
+
margin-right: 1rem;
|
4034 |
+
font-size: 1.25rem;
|
4035 |
+
text-decoration: none;
|
4036 |
+
white-space: nowrap;
|
4037 |
+
}
|
4038 |
+
.navbar-nav {
|
4039 |
+
display: flex;
|
4040 |
+
flex-direction: column;
|
4041 |
+
padding-left: 0;
|
4042 |
+
margin-bottom: 0;
|
4043 |
+
list-style: none;
|
4044 |
+
}
|
4045 |
+
.navbar-nav .nav-link {
|
4046 |
+
padding-right: 0;
|
4047 |
+
padding-left: 0;
|
4048 |
+
}
|
4049 |
+
.navbar-nav .dropdown-menu {
|
4050 |
+
position: static;
|
4051 |
+
}
|
4052 |
+
|
4053 |
+
.navbar-text {
|
4054 |
+
padding-top: 0.5rem;
|
4055 |
+
padding-bottom: 0.5rem;
|
4056 |
+
}
|
4057 |
+
|
4058 |
+
.navbar-collapse {
|
4059 |
+
flex-basis: 100%;
|
4060 |
+
flex-grow: 1;
|
4061 |
+
align-items: center;
|
4062 |
+
}
|
4063 |
+
|
4064 |
+
.navbar-toggler {
|
4065 |
+
padding: 0.25rem 0.75rem;
|
4066 |
+
font-size: 1.25rem;
|
4067 |
+
line-height: 1;
|
4068 |
+
background-color: transparent;
|
4069 |
+
border: 1px solid transparent;
|
4070 |
+
border-radius: 0.25rem;
|
4071 |
+
transition: box-shadow 0.15s ease-in-out;
|
4072 |
+
}
|
4073 |
+
@media (prefers-reduced-motion: reduce) {
|
4074 |
+
.navbar-toggler {
|
4075 |
+
transition: none;
|
4076 |
+
}
|
4077 |
+
}
|
4078 |
+
.navbar-toggler:hover {
|
4079 |
+
text-decoration: none;
|
4080 |
+
}
|
4081 |
+
.navbar-toggler:focus {
|
4082 |
+
text-decoration: none;
|
4083 |
+
outline: 0;
|
4084 |
+
box-shadow: 0 0 0 0.25rem;
|
4085 |
+
}
|
4086 |
+
|
4087 |
+
.navbar-toggler-icon {
|
4088 |
+
display: inline-block;
|
4089 |
+
width: 1.5em;
|
4090 |
+
height: 1.5em;
|
4091 |
+
vertical-align: middle;
|
4092 |
+
background-repeat: no-repeat;
|
4093 |
+
background-position: center;
|
4094 |
+
background-size: 100%;
|
4095 |
+
}
|
4096 |
+
|
4097 |
+
.navbar-nav-scroll {
|
4098 |
+
max-height: var(--bs-scroll-height, 75vh);
|
4099 |
+
overflow-y: auto;
|
4100 |
+
}
|
4101 |
+
|
4102 |
+
@media (min-width: 576px) {
|
4103 |
+
.navbar-expand-sm {
|
4104 |
+
flex-wrap: nowrap;
|
4105 |
+
justify-content: flex-start;
|
4106 |
+
}
|
4107 |
+
.navbar-expand-sm .navbar-nav {
|
4108 |
+
flex-direction: row;
|
4109 |
+
}
|
4110 |
+
.navbar-expand-sm .navbar-nav .dropdown-menu {
|
4111 |
+
position: absolute;
|
4112 |
+
}
|
4113 |
+
.navbar-expand-sm .navbar-nav .nav-link {
|
4114 |
+
padding-right: 0.5rem;
|
4115 |
+
padding-left: 0.5rem;
|
4116 |
+
}
|
4117 |
+
.navbar-expand-sm .navbar-nav-scroll {
|
4118 |
+
overflow: visible;
|
4119 |
+
}
|
4120 |
+
.navbar-expand-sm .navbar-collapse {
|
4121 |
+
display: flex !important;
|
4122 |
+
flex-basis: auto;
|
4123 |
+
}
|
4124 |
+
.navbar-expand-sm .navbar-toggler {
|
4125 |
+
display: none;
|
4126 |
+
}
|
4127 |
+
.navbar-expand-sm .offcanvas-header {
|
4128 |
+
display: none;
|
4129 |
+
}
|
4130 |
+
.navbar-expand-sm .offcanvas {
|
4131 |
+
position: inherit;
|
4132 |
+
bottom: 0;
|
4133 |
+
z-index: 1000;
|
4134 |
+
flex-grow: 1;
|
4135 |
+
visibility: visible !important;
|
4136 |
+
background-color: transparent;
|
4137 |
+
border-right: 0;
|
4138 |
+
border-left: 0;
|
4139 |
+
transition: none;
|
4140 |
+
transform: none;
|
4141 |
+
}
|
4142 |
+
.navbar-expand-sm .offcanvas-top,
|
4143 |
+
.navbar-expand-sm .offcanvas-bottom {
|
4144 |
+
height: auto;
|
4145 |
+
border-top: 0;
|
4146 |
+
border-bottom: 0;
|
4147 |
+
}
|
4148 |
+
.navbar-expand-sm .offcanvas-body {
|
4149 |
+
display: flex;
|
4150 |
+
flex-grow: 0;
|
4151 |
+
padding: 0;
|
4152 |
+
overflow-y: visible;
|
4153 |
+
}
|
4154 |
+
}
|
4155 |
+
@media (min-width: 768px) {
|
4156 |
+
.navbar-expand-md {
|
4157 |
+
flex-wrap: nowrap;
|
4158 |
+
justify-content: flex-start;
|
4159 |
+
}
|
4160 |
+
.navbar-expand-md .navbar-nav {
|
4161 |
+
flex-direction: row;
|
4162 |
+
}
|
4163 |
+
.navbar-expand-md .navbar-nav .dropdown-menu {
|
4164 |
+
position: absolute;
|
4165 |
+
}
|
4166 |
+
.navbar-expand-md .navbar-nav .nav-link {
|
4167 |
+
padding-right: 0.5rem;
|
4168 |
+
padding-left: 0.5rem;
|
4169 |
+
}
|
4170 |
+
.navbar-expand-md .navbar-nav-scroll {
|
4171 |
+
overflow: visible;
|
4172 |
+
}
|
4173 |
+
.navbar-expand-md .navbar-collapse {
|
4174 |
+
display: flex !important;
|
4175 |
+
flex-basis: auto;
|
4176 |
+
}
|
4177 |
+
.navbar-expand-md .navbar-toggler {
|
4178 |
+
display: none;
|
4179 |
+
}
|
4180 |
+
.navbar-expand-md .offcanvas-header {
|
4181 |
+
display: none;
|
4182 |
+
}
|
4183 |
+
.navbar-expand-md .offcanvas {
|
4184 |
+
position: inherit;
|
4185 |
+
bottom: 0;
|
4186 |
+
z-index: 1000;
|
4187 |
+
flex-grow: 1;
|
4188 |
+
visibility: visible !important;
|
4189 |
+
background-color: transparent;
|
4190 |
+
border-right: 0;
|
4191 |
+
border-left: 0;
|
4192 |
+
transition: none;
|
4193 |
+
transform: none;
|
4194 |
+
}
|
4195 |
+
.navbar-expand-md .offcanvas-top,
|
4196 |
+
.navbar-expand-md .offcanvas-bottom {
|
4197 |
+
height: auto;
|
4198 |
+
border-top: 0;
|
4199 |
+
border-bottom: 0;
|
4200 |
+
}
|
4201 |
+
.navbar-expand-md .offcanvas-body {
|
4202 |
+
display: flex;
|
4203 |
+
flex-grow: 0;
|
4204 |
+
padding: 0;
|
4205 |
+
overflow-y: visible;
|
4206 |
+
}
|
4207 |
+
}
|
4208 |
+
@media (min-width: 992px) {
|
4209 |
+
.navbar-expand-lg {
|
4210 |
+
flex-wrap: nowrap;
|
4211 |
+
justify-content: flex-start;
|
4212 |
+
}
|
4213 |
+
.navbar-expand-lg .navbar-nav {
|
4214 |
+
flex-direction: row;
|
4215 |
+
}
|
4216 |
+
.navbar-expand-lg .navbar-nav .dropdown-menu {
|
4217 |
+
position: absolute;
|
4218 |
+
}
|
4219 |
+
.navbar-expand-lg .navbar-nav .nav-link {
|
4220 |
+
padding-right: 0.5rem;
|
4221 |
+
padding-left: 0.5rem;
|
4222 |
+
}
|
4223 |
+
.navbar-expand-lg .navbar-nav-scroll {
|
4224 |
+
overflow: visible;
|
4225 |
+
}
|
4226 |
+
.navbar-expand-lg .navbar-collapse {
|
4227 |
+
display: flex !important;
|
4228 |
+
flex-basis: auto;
|
4229 |
+
}
|
4230 |
+
.navbar-expand-lg .navbar-toggler {
|
4231 |
+
display: none;
|
4232 |
+
}
|
4233 |
+
.navbar-expand-lg .offcanvas-header {
|
4234 |
+
display: none;
|
4235 |
+
}
|
4236 |
+
.navbar-expand-lg .offcanvas {
|
4237 |
+
position: inherit;
|
4238 |
+
bottom: 0;
|
4239 |
+
z-index: 1000;
|
4240 |
+
flex-grow: 1;
|
4241 |
+
visibility: visible !important;
|
4242 |
+
background-color: transparent;
|
4243 |
+
border-right: 0;
|
4244 |
+
border-left: 0;
|
4245 |
+
transition: none;
|
4246 |
+
transform: none;
|
4247 |
+
}
|
4248 |
+
.navbar-expand-lg .offcanvas-top,
|
4249 |
+
.navbar-expand-lg .offcanvas-bottom {
|
4250 |
+
height: auto;
|
4251 |
+
border-top: 0;
|
4252 |
+
border-bottom: 0;
|
4253 |
+
}
|
4254 |
+
.navbar-expand-lg .offcanvas-body {
|
4255 |
+
display: flex;
|
4256 |
+
flex-grow: 0;
|
4257 |
+
padding: 0;
|
4258 |
+
overflow-y: visible;
|
4259 |
+
}
|
4260 |
+
}
|
4261 |
+
@media (min-width: 1200px) {
|
4262 |
+
.navbar-expand-xl {
|
4263 |
+
flex-wrap: nowrap;
|
4264 |
+
justify-content: flex-start;
|
4265 |
+
}
|
4266 |
+
.navbar-expand-xl .navbar-nav {
|
4267 |
+
flex-direction: row;
|
4268 |
+
}
|
4269 |
+
.navbar-expand-xl .navbar-nav .dropdown-menu {
|
4270 |
+
position: absolute;
|
4271 |
+
}
|
4272 |
+
.navbar-expand-xl .navbar-nav .nav-link {
|
4273 |
+
padding-right: 0.5rem;
|
4274 |
+
padding-left: 0.5rem;
|
4275 |
+
}
|
4276 |
+
.navbar-expand-xl .navbar-nav-scroll {
|
4277 |
+
overflow: visible;
|
4278 |
+
}
|
4279 |
+
.navbar-expand-xl .navbar-collapse {
|
4280 |
+
display: flex !important;
|
4281 |
+
flex-basis: auto;
|
4282 |
+
}
|
4283 |
+
.navbar-expand-xl .navbar-toggler {
|
4284 |
+
display: none;
|
4285 |
+
}
|
4286 |
+
.navbar-expand-xl .offcanvas-header {
|
4287 |
+
display: none;
|
4288 |
+
}
|
4289 |
+
.navbar-expand-xl .offcanvas {
|
4290 |
+
position: inherit;
|
4291 |
+
bottom: 0;
|
4292 |
+
z-index: 1000;
|
4293 |
+
flex-grow: 1;
|
4294 |
+
visibility: visible !important;
|
4295 |
+
background-color: transparent;
|
4296 |
+
border-right: 0;
|
4297 |
+
border-left: 0;
|
4298 |
+
transition: none;
|
4299 |
+
transform: none;
|
4300 |
+
}
|
4301 |
+
.navbar-expand-xl .offcanvas-top,
|
4302 |
+
.navbar-expand-xl .offcanvas-bottom {
|
4303 |
+
height: auto;
|
4304 |
+
border-top: 0;
|
4305 |
+
border-bottom: 0;
|
4306 |
+
}
|
4307 |
+
.navbar-expand-xl .offcanvas-body {
|
4308 |
+
display: flex;
|
4309 |
+
flex-grow: 0;
|
4310 |
+
padding: 0;
|
4311 |
+
overflow-y: visible;
|
4312 |
+
}
|
4313 |
+
}
|
4314 |
+
@media (min-width: 1400px) {
|
4315 |
+
.navbar-expand-xxl {
|
4316 |
+
flex-wrap: nowrap;
|
4317 |
+
justify-content: flex-start;
|
4318 |
+
}
|
4319 |
+
.navbar-expand-xxl .navbar-nav {
|
4320 |
+
flex-direction: row;
|
4321 |
+
}
|
4322 |
+
.navbar-expand-xxl .navbar-nav .dropdown-menu {
|
4323 |
+
position: absolute;
|
4324 |
+
}
|
4325 |
+
.navbar-expand-xxl .navbar-nav .nav-link {
|
4326 |
+
padding-right: 0.5rem;
|
4327 |
+
padding-left: 0.5rem;
|
4328 |
+
}
|
4329 |
+
.navbar-expand-xxl .navbar-nav-scroll {
|
4330 |
+
overflow: visible;
|
4331 |
+
}
|
4332 |
+
.navbar-expand-xxl .navbar-collapse {
|
4333 |
+
display: flex !important;
|
4334 |
+
flex-basis: auto;
|
4335 |
+
}
|
4336 |
+
.navbar-expand-xxl .navbar-toggler {
|
4337 |
+
display: none;
|
4338 |
+
}
|
4339 |
+
.navbar-expand-xxl .offcanvas-header {
|
4340 |
+
display: none;
|
4341 |
+
}
|
4342 |
+
.navbar-expand-xxl .offcanvas {
|
4343 |
+
position: inherit;
|
4344 |
+
bottom: 0;
|
4345 |
+
z-index: 1000;
|
4346 |
+
flex-grow: 1;
|
4347 |
+
visibility: visible !important;
|
4348 |
+
background-color: transparent;
|
4349 |
+
border-right: 0;
|
4350 |
+
border-left: 0;
|
4351 |
+
transition: none;
|
4352 |
+
transform: none;
|
4353 |
+
}
|
4354 |
+
.navbar-expand-xxl .offcanvas-top,
|
4355 |
+
.navbar-expand-xxl .offcanvas-bottom {
|
4356 |
+
height: auto;
|
4357 |
+
border-top: 0;
|
4358 |
+
border-bottom: 0;
|
4359 |
+
}
|
4360 |
+
.navbar-expand-xxl .offcanvas-body {
|
4361 |
+
display: flex;
|
4362 |
+
flex-grow: 0;
|
4363 |
+
padding: 0;
|
4364 |
+
overflow-y: visible;
|
4365 |
+
}
|
4366 |
+
}
|
4367 |
+
.navbar-expand {
|
4368 |
+
flex-wrap: nowrap;
|
4369 |
+
justify-content: flex-start;
|
4370 |
+
}
|
4371 |
+
.navbar-expand .navbar-nav {
|
4372 |
+
flex-direction: row;
|
4373 |
+
}
|
4374 |
+
.navbar-expand .navbar-nav .dropdown-menu {
|
4375 |
+
position: absolute;
|
4376 |
+
}
|
4377 |
+
.navbar-expand .navbar-nav .nav-link {
|
4378 |
+
padding-right: 0.5rem;
|
4379 |
+
padding-left: 0.5rem;
|
4380 |
+
}
|
4381 |
+
.navbar-expand .navbar-nav-scroll {
|
4382 |
+
overflow: visible;
|
4383 |
+
}
|
4384 |
+
.navbar-expand .navbar-collapse {
|
4385 |
+
display: flex !important;
|
4386 |
+
flex-basis: auto;
|
4387 |
+
}
|
4388 |
+
.navbar-expand .navbar-toggler {
|
4389 |
+
display: none;
|
4390 |
+
}
|
4391 |
+
.navbar-expand .offcanvas-header {
|
4392 |
+
display: none;
|
4393 |
+
}
|
4394 |
+
.navbar-expand .offcanvas {
|
4395 |
+
position: inherit;
|
4396 |
+
bottom: 0;
|
4397 |
+
z-index: 1000;
|
4398 |
+
flex-grow: 1;
|
4399 |
+
visibility: visible !important;
|
4400 |
+
background-color: transparent;
|
4401 |
+
border-right: 0;
|
4402 |
+
border-left: 0;
|
4403 |
+
transition: none;
|
4404 |
+
transform: none;
|
4405 |
+
}
|
4406 |
+
.navbar-expand .offcanvas-top,
|
4407 |
+
.navbar-expand .offcanvas-bottom {
|
4408 |
+
height: auto;
|
4409 |
+
border-top: 0;
|
4410 |
+
border-bottom: 0;
|
4411 |
+
}
|
4412 |
+
.navbar-expand .offcanvas-body {
|
4413 |
+
display: flex;
|
4414 |
+
flex-grow: 0;
|
4415 |
+
padding: 0;
|
4416 |
+
overflow-y: visible;
|
4417 |
+
}
|
4418 |
+
|
4419 |
+
.navbar-light .navbar-brand {
|
4420 |
+
color: rgba(0, 0, 0, 0.9);
|
4421 |
+
}
|
4422 |
+
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
|
4423 |
+
color: rgba(0, 0, 0, 0.9);
|
4424 |
+
}
|
4425 |
+
.navbar-light .navbar-nav .nav-link {
|
4426 |
+
color: rgba(0, 0, 0, 0.55);
|
4427 |
+
}
|
4428 |
+
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
|
4429 |
+
color: rgba(0, 0, 0, 0.7);
|
4430 |
+
}
|
4431 |
+
.navbar-light .navbar-nav .nav-link.disabled {
|
4432 |
+
color: rgba(0, 0, 0, 0.3);
|
4433 |
+
}
|
4434 |
+
.navbar-light .navbar-nav .show > .nav-link,
|
4435 |
+
.navbar-light .navbar-nav .nav-link.active {
|
4436 |
+
color: rgba(0, 0, 0, 0.9);
|
4437 |
+
}
|
4438 |
+
.navbar-light .navbar-toggler {
|
4439 |
+
color: rgba(0, 0, 0, 0.55);
|
4440 |
+
border-color: rgba(0, 0, 0, 0.1);
|
4441 |
+
}
|
4442 |
+
.navbar-light .navbar-toggler-icon {
|
4443 |
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
|
4444 |
+
}
|
4445 |
+
.navbar-light .navbar-text {
|
4446 |
+
color: rgba(0, 0, 0, 0.55);
|
4447 |
+
}
|
4448 |
+
.navbar-light .navbar-text a,
|
4449 |
+
.navbar-light .navbar-text a:hover,
|
4450 |
+
.navbar-light .navbar-text a:focus {
|
4451 |
+
color: rgba(0, 0, 0, 0.9);
|
4452 |
+
}
|
4453 |
+
|
4454 |
+
.navbar-dark .navbar-brand {
|
4455 |
+
color: #fff;
|
4456 |
+
}
|
4457 |
+
.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
|
4458 |
+
color: #fff;
|
4459 |
+
}
|
4460 |
+
.navbar-dark .navbar-nav .nav-link {
|
4461 |
+
color: rgba(255, 255, 255, 0.55);
|
4462 |
+
}
|
4463 |
+
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
|
4464 |
+
color: rgba(255, 255, 255, 0.75);
|
4465 |
+
}
|
4466 |
+
.navbar-dark .navbar-nav .nav-link.disabled {
|
4467 |
+
color: rgba(255, 255, 255, 0.25);
|
4468 |
+
}
|
4469 |
+
.navbar-dark .navbar-nav .show > .nav-link,
|
4470 |
+
.navbar-dark .navbar-nav .nav-link.active {
|
4471 |
+
color: #fff;
|
4472 |
+
}
|
4473 |
+
.navbar-dark .navbar-toggler {
|
4474 |
+
color: rgba(255, 255, 255, 0.55);
|
4475 |
+
border-color: rgba(255, 255, 255, 0.1);
|
4476 |
+
}
|
4477 |
+
.navbar-dark .navbar-toggler-icon {
|
4478 |
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
|
4479 |
+
}
|
4480 |
+
.navbar-dark .navbar-text {
|
4481 |
+
color: rgba(255, 255, 255, 0.55);
|
4482 |
+
}
|
4483 |
+
.navbar-dark .navbar-text a,
|
4484 |
+
.navbar-dark .navbar-text a:hover,
|
4485 |
+
.navbar-dark .navbar-text a:focus {
|
4486 |
+
color: #fff;
|
4487 |
+
}
|
4488 |
+
|
4489 |
+
.card {
|
4490 |
+
position: relative;
|
4491 |
+
display: flex;
|
4492 |
+
flex-direction: column;
|
4493 |
+
min-width: 0;
|
4494 |
+
word-wrap: break-word;
|
4495 |
+
background-color: #fff;
|
4496 |
+
background-clip: border-box;
|
4497 |
+
border: 1px solid rgba(0, 0, 0, 0.125);
|
4498 |
+
border-radius: 0.25rem;
|
4499 |
+
}
|
4500 |
+
.card > hr {
|
4501 |
+
margin-right: 0;
|
4502 |
+
margin-left: 0;
|
4503 |
+
}
|
4504 |
+
.card > .list-group {
|
4505 |
+
border-top: inherit;
|
4506 |
+
border-bottom: inherit;
|
4507 |
+
}
|
4508 |
+
.card > .list-group:first-child {
|
4509 |
+
border-top-width: 0;
|
4510 |
+
border-top-left-radius: calc(0.25rem - 1px);
|
4511 |
+
border-top-right-radius: calc(0.25rem - 1px);
|
4512 |
+
}
|
4513 |
+
.card > .list-group:last-child {
|
4514 |
+
border-bottom-width: 0;
|
4515 |
+
border-bottom-right-radius: calc(0.25rem - 1px);
|
4516 |
+
border-bottom-left-radius: calc(0.25rem - 1px);
|
4517 |
+
}
|
4518 |
+
.card > .card-header + .list-group,
|
4519 |
+
.card > .list-group + .card-footer {
|
4520 |
+
border-top: 0;
|
4521 |
+
}
|
4522 |
+
|
4523 |
+
.card-body {
|
4524 |
+
flex: 1 1 auto;
|
4525 |
+
padding: 1rem 1rem;
|
4526 |
+
}
|
4527 |
+
|
4528 |
+
.card-title {
|
4529 |
+
margin-bottom: 0.5rem;
|
4530 |
+
}
|
4531 |
+
|
4532 |
+
.card-subtitle {
|
4533 |
+
margin-top: -0.25rem;
|
4534 |
+
margin-bottom: 0;
|
4535 |
+
}
|
4536 |
+
|
4537 |
+
.card-text:last-child {
|
4538 |
+
margin-bottom: 0;
|
4539 |
+
}
|
4540 |
+
|
4541 |
+
.card-link + .card-link {
|
4542 |
+
margin-left: 1rem;
|
4543 |
+
}
|
4544 |
+
|
4545 |
+
.card-header {
|
4546 |
+
padding: 0.5rem 1rem;
|
4547 |
+
margin-bottom: 0;
|
4548 |
+
background-color: rgba(0, 0, 0, 0.03);
|
4549 |
+
border-bottom: 1px solid rgba(0, 0, 0, 0.125);
|
4550 |
+
}
|
4551 |
+
.card-header:first-child {
|
4552 |
+
border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
|
4553 |
+
}
|
4554 |
+
|
4555 |
+
.card-footer {
|
4556 |
+
padding: 0.5rem 1rem;
|
4557 |
+
background-color: rgba(0, 0, 0, 0.03);
|
4558 |
+
border-top: 1px solid rgba(0, 0, 0, 0.125);
|
4559 |
+
}
|
4560 |
+
.card-footer:last-child {
|
4561 |
+
border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
|
4562 |
+
}
|
4563 |
+
|
4564 |
+
.card-header-tabs {
|
4565 |
+
margin-right: -0.5rem;
|
4566 |
+
margin-bottom: -0.5rem;
|
4567 |
+
margin-left: -0.5rem;
|
4568 |
+
border-bottom: 0;
|
4569 |
+
}
|
4570 |
+
|
4571 |
+
.card-header-pills {
|
4572 |
+
margin-right: -0.5rem;
|
4573 |
+
margin-left: -0.5rem;
|
4574 |
+
}
|
4575 |
+
|
4576 |
+
.card-img-overlay {
|
4577 |
+
position: absolute;
|
4578 |
+
top: 0;
|
4579 |
+
right: 0;
|
4580 |
+
bottom: 0;
|
4581 |
+
left: 0;
|
4582 |
+
padding: 1rem;
|
4583 |
+
border-radius: calc(0.25rem - 1px);
|
4584 |
+
}
|
4585 |
+
|
4586 |
+
.card-img,
|
4587 |
+
.card-img-top,
|
4588 |
+
.card-img-bottom {
|
4589 |
+
width: 100%;
|
4590 |
+
}
|
4591 |
+
|
4592 |
+
.card-img,
|
4593 |
+
.card-img-top {
|
4594 |
+
border-top-left-radius: calc(0.25rem - 1px);
|
4595 |
+
border-top-right-radius: calc(0.25rem - 1px);
|
4596 |
+
}
|
4597 |
+
|
4598 |
+
.card-img,
|
4599 |
+
.card-img-bottom {
|
4600 |
+
border-bottom-right-radius: calc(0.25rem - 1px);
|
4601 |
+
border-bottom-left-radius: calc(0.25rem - 1px);
|
4602 |
+
}
|
4603 |
+
|
4604 |
+
.card-group > .card {
|
4605 |
+
margin-bottom: 0.75rem;
|
4606 |
+
}
|
4607 |
+
@media (min-width: 576px) {
|
4608 |
+
.card-group {
|
4609 |
+
display: flex;
|
4610 |
+
flex-flow: row wrap;
|
4611 |
+
}
|
4612 |
+
.card-group > .card {
|
4613 |
+
flex: 1 0 0%;
|
4614 |
+
margin-bottom: 0;
|
4615 |
+
}
|
4616 |
+
.card-group > .card + .card {
|
4617 |
+
margin-left: 0;
|
4618 |
+
border-left: 0;
|
4619 |
+
}
|
4620 |
+
.card-group > .card:not(:last-child) {
|
4621 |
+
border-top-right-radius: 0;
|
4622 |
+
border-bottom-right-radius: 0;
|
4623 |
+
}
|
4624 |
+
.card-group > .card:not(:last-child) .card-img-top,
|
4625 |
+
.card-group > .card:not(:last-child) .card-header {
|
4626 |
+
border-top-right-radius: 0;
|
4627 |
+
}
|
4628 |
+
.card-group > .card:not(:last-child) .card-img-bottom,
|
4629 |
+
.card-group > .card:not(:last-child) .card-footer {
|
4630 |
+
border-bottom-right-radius: 0;
|
4631 |
+
}
|
4632 |
+
.card-group > .card:not(:first-child) {
|
4633 |
+
border-top-left-radius: 0;
|
4634 |
+
border-bottom-left-radius: 0;
|
4635 |
+
}
|
4636 |
+
.card-group > .card:not(:first-child) .card-img-top,
|
4637 |
+
.card-group > .card:not(:first-child) .card-header {
|
4638 |
+
border-top-left-radius: 0;
|
4639 |
+
}
|
4640 |
+
.card-group > .card:not(:first-child) .card-img-bottom,
|
4641 |
+
.card-group > .card:not(:first-child) .card-footer {
|
4642 |
+
border-bottom-left-radius: 0;
|
4643 |
+
}
|
4644 |
+
}
|
4645 |
+
|
4646 |
+
.accordion-button {
|
4647 |
+
position: relative;
|
4648 |
+
display: flex;
|
4649 |
+
align-items: center;
|
4650 |
+
width: 100%;
|
4651 |
+
padding: 1rem 1.25rem;
|
4652 |
+
font-size: 1rem;
|
4653 |
+
color: #212529;
|
4654 |
+
text-align: left;
|
4655 |
+
background-color: #fff;
|
4656 |
+
border: 0;
|
4657 |
+
border-radius: 0;
|
4658 |
+
overflow-anchor: none;
|
4659 |
+
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
|
4660 |
+
}
|
4661 |
+
@media (prefers-reduced-motion: reduce) {
|
4662 |
+
.accordion-button {
|
4663 |
+
transition: none;
|
4664 |
+
}
|
4665 |
+
}
|
4666 |
+
.accordion-button:not(.collapsed) {
|
4667 |
+
color: #0c63e4;
|
4668 |
+
background-color: #e7f1ff;
|
4669 |
+
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
|
4670 |
+
}
|
4671 |
+
.accordion-button:not(.collapsed)::after {
|
4672 |
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
|
4673 |
+
transform: rotate(-180deg);
|
4674 |
+
}
|
4675 |
+
.accordion-button::after {
|
4676 |
+
flex-shrink: 0;
|
4677 |
+
width: 1.25rem;
|
4678 |
+
height: 1.25rem;
|
4679 |
+
margin-left: auto;
|
4680 |
+
content: "";
|
4681 |
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
|
4682 |
+
background-repeat: no-repeat;
|
4683 |
+
background-size: 1.25rem;
|
4684 |
+
transition: transform 0.2s ease-in-out;
|
4685 |
+
}
|
4686 |
+
@media (prefers-reduced-motion: reduce) {
|
4687 |
+
.accordion-button::after {
|
4688 |
+
transition: none;
|
4689 |
+
}
|
4690 |
+
}
|
4691 |
+
.accordion-button:hover {
|
4692 |
+
z-index: 2;
|
4693 |
+
}
|
4694 |
+
.accordion-button:focus {
|
4695 |
+
z-index: 3;
|
4696 |
+
border-color: #86b7fe;
|
4697 |
+
outline: 0;
|
4698 |
+
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
|
4699 |
+
}
|
4700 |
+
|
4701 |
+
.accordion-header {
|
4702 |
+
margin-bottom: 0;
|
4703 |
+
}
|
4704 |
+
|
4705 |
+
.accordion-item {
|
4706 |
+
background-color: #fff;
|
4707 |
+
border: 1px solid rgba(0, 0, 0, 0.125);
|
4708 |
+
}
|
4709 |
+
.accordion-item:first-of-type {
|
4710 |
+
border-top-left-radius: 0.25rem;
|
4711 |
+
border-top-right-radius: 0.25rem;
|
4712 |
+
}
|
4713 |
+
.accordion-item:first-of-type .accordion-button {
|
4714 |
+
border-top-left-radius: calc(0.25rem - 1px);
|
4715 |
+
border-top-right-radius: calc(0.25rem - 1px);
|
4716 |
+
}
|
4717 |
+
.accordion-item:not(:first-of-type) {
|
4718 |
+
border-top: 0;
|
4719 |
+
}
|
4720 |
+
.accordion-item:last-of-type {
|
4721 |
+
border-bottom-right-radius: 0.25rem;
|
4722 |
+
border-bottom-left-radius: 0.25rem;
|
4723 |
+
}
|
4724 |
+
.accordion-item:last-of-type .accordion-button.collapsed {
|
4725 |
+
border-bottom-right-radius: calc(0.25rem - 1px);
|
4726 |
+
border-bottom-left-radius: calc(0.25rem - 1px);
|
4727 |
+
}
|
4728 |
+
.accordion-item:last-of-type .accordion-collapse {
|
4729 |
+
border-bottom-right-radius: 0.25rem;
|
4730 |
+
border-bottom-left-radius: 0.25rem;
|
4731 |
+
}
|
4732 |
+
|
4733 |
+
.accordion-body {
|
4734 |
+
padding: 1rem 1.25rem;
|
4735 |
+
}
|
4736 |
+
|
4737 |
+
.accordion-flush .accordion-collapse {
|
4738 |
+
border-width: 0;
|
4739 |
+
}
|
4740 |
+
.accordion-flush .accordion-item {
|
4741 |
+
border-right: 0;
|
4742 |
+
border-left: 0;
|
4743 |
+
border-radius: 0;
|
4744 |
+
}
|
4745 |
+
.accordion-flush .accordion-item:first-child {
|
4746 |
+
border-top: 0;
|
4747 |
+
}
|
4748 |
+
.accordion-flush .accordion-item:last-child {
|
4749 |
+
border-bottom: 0;
|
4750 |
+
}
|
4751 |
+
.accordion-flush .accordion-item .accordion-button {
|
4752 |
+
border-radius: 0;
|
4753 |
+
}
|
4754 |
+
|
4755 |
+
.breadcrumb {
|
4756 |
+
display: flex;
|
4757 |
+
flex-wrap: wrap;
|
4758 |
+
padding: 0 0;
|
4759 |
+
margin-bottom: 1rem;
|
4760 |
+
list-style: none;
|
4761 |
+
}
|
4762 |
+
|
4763 |
+
.breadcrumb-item + .breadcrumb-item {
|
4764 |
+
padding-left: 0.5rem;
|
4765 |
+
}
|
4766 |
+
.breadcrumb-item + .breadcrumb-item::before {
|
4767 |
+
float: left;
|
4768 |
+
padding-right: 0.5rem;
|
4769 |
+
color: #6c757d;
|
4770 |
+
content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
|
4771 |
+
}
|
4772 |
+
.breadcrumb-item.active {
|
4773 |
+
color: #6c757d;
|
4774 |
+
}
|
4775 |
+
|
4776 |
+
.pagination {
|
4777 |
+
display: flex;
|
4778 |
+
padding-left: 0;
|
4779 |
+
list-style: none;
|
4780 |
+
}
|
4781 |
+
|
4782 |
+
.page-link {
|
4783 |
+
position: relative;
|
4784 |
+
display: block;
|
4785 |
+
color: #0d6efd;
|
4786 |
+
text-decoration: none;
|
4787 |
+
background-color: #fff;
|
4788 |
+
border: 1px solid #dee2e6;
|
4789 |
+
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
4790 |
+
}
|
4791 |
+
@media (prefers-reduced-motion: reduce) {
|
4792 |
+
.page-link {
|
4793 |
+
transition: none;
|
4794 |
+
}
|
4795 |
+
}
|
4796 |
+
.page-link:hover {
|
4797 |
+
z-index: 2;
|
4798 |
+
color: #0a58ca;
|
4799 |
+
background-color: #e9ecef;
|
4800 |
+
border-color: #dee2e6;
|
4801 |
+
}
|
4802 |
+
.page-link:focus {
|
4803 |
+
z-index: 3;
|
4804 |
+
color: #0a58ca;
|
4805 |
+
background-color: #e9ecef;
|
4806 |
+
outline: 0;
|
4807 |
+
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
|
4808 |
+
}
|
4809 |
+
|
4810 |
+
.page-item:not(:first-child) .page-link {
|
4811 |
+
margin-left: -1px;
|
4812 |
+
}
|
4813 |
+
.page-item.active .page-link {
|
4814 |
+
z-index: 3;
|
4815 |
+
color: #fff;
|
4816 |
+
background-color: #0d6efd;
|
4817 |
+
border-color: #0d6efd;
|
4818 |
+
}
|
4819 |
+
.page-item.disabled .page-link {
|
4820 |
+
color: #6c757d;
|
4821 |
+
pointer-events: none;
|
4822 |
+
background-color: #fff;
|
4823 |
+
border-color: #dee2e6;
|
4824 |
+
}
|
4825 |
+
|
4826 |
+
.page-link {
|
4827 |
+
padding: 0.375rem 0.75rem;
|
4828 |
+
}
|
4829 |
+
|
4830 |
+
.page-item:first-child .page-link {
|
4831 |
+
border-top-left-radius: 0.25rem;
|
4832 |
+
border-bottom-left-radius: 0.25rem;
|
4833 |
+
}
|
4834 |
+
.page-item:last-child .page-link {
|
4835 |
+
border-top-right-radius: 0.25rem;
|
4836 |
+
border-bottom-right-radius: 0.25rem;
|
4837 |
+
}
|
4838 |
+
|
4839 |
+
.pagination-lg .page-link {
|
4840 |
+
padding: 0.75rem 1.5rem;
|
4841 |
+
font-size: 1.25rem;
|
4842 |
+
}
|
4843 |
+
.pagination-lg .page-item:first-child .page-link {
|
4844 |
+
border-top-left-radius: 0.3rem;
|
4845 |
+
border-bottom-left-radius: 0.3rem;
|
4846 |
+
}
|
4847 |
+
.pagination-lg .page-item:last-child .page-link {
|
4848 |
+
border-top-right-radius: 0.3rem;
|
4849 |
+
border-bottom-right-radius: 0.3rem;
|
4850 |
+
}
|
4851 |
+
|
4852 |
+
.pagination-sm .page-link {
|
4853 |
+
padding: 0.25rem 0.5rem;
|
4854 |
+
font-size: 0.875rem;
|
4855 |
+
}
|
4856 |
+
.pagination-sm .page-item:first-child .page-link {
|
4857 |
+
border-top-left-radius: 0.2rem;
|
4858 |
+
border-bottom-left-radius: 0.2rem;
|
4859 |
+
}
|
4860 |
+
.pagination-sm .page-item:last-child .page-link {
|
4861 |
+
border-top-right-radius: 0.2rem;
|
4862 |
+
border-bottom-right-radius: 0.2rem;
|
4863 |
+
}
|
4864 |
+
|
4865 |
+
.badge {
|
4866 |
+
display: inline-block;
|
4867 |
+
padding: 0.35em 0.65em;
|
4868 |
+
font-size: 0.75em;
|
4869 |
+
font-weight: 700;
|
4870 |
+
line-height: 1;
|
4871 |
+
color: #fff;
|
4872 |
+
text-align: center;
|
4873 |
+
white-space: nowrap;
|
4874 |
+
vertical-align: baseline;
|
4875 |
+
border-radius: 0.25rem;
|
4876 |
+
}
|
4877 |
+
.badge:empty {
|
4878 |
+
display: none;
|
4879 |
+
}
|
4880 |
+
|
4881 |
+
.btn .badge {
|
4882 |
+
position: relative;
|
4883 |
+
top: -1px;
|
4884 |
+
}
|
4885 |
+
|
4886 |
+
.alert {
|
4887 |
+
position: relative;
|
4888 |
+
padding: 1rem 1rem;
|
4889 |
+
margin-bottom: 1rem;
|
4890 |
+
border: 1px solid transparent;
|
4891 |
+
border-radius: 0.25rem;
|
4892 |
+
}
|
4893 |
+
|
4894 |
+
.alert-heading {
|
4895 |
+
color: inherit;
|
4896 |
+
}
|
4897 |
+
|
4898 |
+
.alert-link {
|
4899 |
+
font-weight: 700;
|
4900 |
+
}
|
4901 |
+
|
4902 |
+
.alert-dismissible {
|
4903 |
+
padding-right: 3rem;
|
4904 |
+
}
|
4905 |
+
.alert-dismissible .btn-close {
|
4906 |
+
position: absolute;
|
4907 |
+
top: 0;
|
4908 |
+
right: 0;
|
4909 |
+
z-index: 2;
|
4910 |
+
padding: 1.25rem 1rem;
|
4911 |
+
}
|
4912 |
+
|
4913 |
+
.alert-primary {
|
4914 |
+
color: #084298;
|
4915 |
+
background-color: #cfe2ff;
|
4916 |
+
border-color: #b6d4fe;
|
4917 |
+
}
|
4918 |
+
.alert-primary .alert-link {
|
4919 |
+
color: #06357a;
|
4920 |
+
}
|
4921 |
+
|
4922 |
+
.alert-secondary {
|
4923 |
+
color: #41464b;
|
4924 |
+
background-color: #e2e3e5;
|
4925 |
+
border-color: #d3d6d8;
|
4926 |
+
}
|
4927 |
+
.alert-secondary .alert-link {
|
4928 |
+
color: #34383c;
|
4929 |
+
}
|
4930 |
+
|
4931 |
+
.alert-success {
|
4932 |
+
color: #0f5132;
|
4933 |
+
background-color: #d1e7dd;
|
4934 |
+
border-color: #badbcc;
|
4935 |
+
}
|
4936 |
+
.alert-success .alert-link {
|
4937 |
+
color: #0c4128;
|
4938 |
+
}
|
4939 |
+
|
4940 |
+
.alert-info {
|
4941 |
+
color: #055160;
|
4942 |
+
background-color: #cff4fc;
|
4943 |
+
border-color: #b6effb;
|
4944 |
+
}
|
4945 |
+
.alert-info .alert-link {
|
4946 |
+
color: #04414d;
|
4947 |
+
}
|
4948 |
+
|
4949 |
+
.alert-warning {
|
4950 |
+
color: #664d03;
|
4951 |
+
background-color: #fff3cd;
|
4952 |
+
border-color: #ffecb5;
|
4953 |
+
}
|
4954 |
+
.alert-warning .alert-link {
|
4955 |
+
color: #523e02;
|
4956 |
+
}
|
4957 |
+
|
4958 |
+
.alert-danger {
|
4959 |
+
color: #842029;
|
4960 |
+
background-color: #f8d7da;
|
4961 |
+
border-color: #f5c2c7;
|
4962 |
+
}
|
4963 |
+
.alert-danger .alert-link {
|
4964 |
+
color: #6a1a21;
|
4965 |
+
}
|
4966 |
+
|
4967 |
+
.alert-light {
|
4968 |
+
color: #636464;
|
4969 |
+
background-color: #fefefe;
|
4970 |
+
border-color: #fdfdfe;
|
4971 |
+
}
|
4972 |
+
.alert-light .alert-link {
|
4973 |
+
color: #4f5050;
|
4974 |
+
}
|
4975 |
+
|
4976 |
+
.alert-dark {
|
4977 |
+
color: #141619;
|
4978 |
+
background-color: #d3d3d4;
|
4979 |
+
border-color: #bcbebf;
|
4980 |
+
}
|
4981 |
+
.alert-dark .alert-link {
|
4982 |
+
color: #101214;
|
4983 |
+
}
|
4984 |
+
|
4985 |
+
@-webkit-keyframes progress-bar-stripes {
|
4986 |
+
0% {
|
4987 |
+
background-position-x: 1rem;
|
4988 |
+
}
|
4989 |
+
}
|
4990 |
+
|
4991 |
+
@keyframes progress-bar-stripes {
|
4992 |
+
0% {
|
4993 |
+
background-position-x: 1rem;
|
4994 |
+
}
|
4995 |
+
}
|
4996 |
+
.progress {
|
4997 |
+
display: flex;
|
4998 |
+
height: 1rem;
|
4999 |
+
overflow: hidden;
|
5000 |
+
font-size: 0.75rem;
|
5001 |
+
background-color: #e9ecef;
|
5002 |
+
border-radius: 0.25rem;
|
5003 |
+
}
|
5004 |
+
|
5005 |
+
.progress-bar {
|
5006 |
+
display: flex;
|
5007 |
+
flex-direction: column;
|
5008 |
+
justify-content: center;
|
5009 |
+
overflow: hidden;
|
5010 |
+
color: #fff;
|
5011 |
+
text-align: center;
|
5012 |
+
white-space: nowrap;
|
5013 |
+
background-color: #0d6efd;
|
5014 |
+
transition: width 0.6s ease;
|
5015 |
+
}
|
5016 |
+
@media (prefers-reduced-motion: reduce) {
|
5017 |
+
.progress-bar {
|
5018 |
+
transition: none;
|
5019 |
+
}
|
5020 |
+
}
|
5021 |
+
|
5022 |
+
.progress-bar-striped {
|
5023 |
+
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
5024 |
+
background-size: 1rem 1rem;
|
5025 |
+
}
|
5026 |
+
|
5027 |
+
.progress-bar-animated {
|
5028 |
+
-webkit-animation: 1s linear infinite progress-bar-stripes;
|
5029 |
+
animation: 1s linear infinite progress-bar-stripes;
|
5030 |
+
}
|
5031 |
+
@media (prefers-reduced-motion: reduce) {
|
5032 |
+
.progress-bar-animated {
|
5033 |
+
-webkit-animation: none;
|
5034 |
+
animation: none;
|
5035 |
+
}
|
5036 |
+
}
|
5037 |
+
|
5038 |
+
.list-group {
|
5039 |
+
display: flex;
|
5040 |
+
flex-direction: column;
|
5041 |
+
padding-left: 0;
|
5042 |
+
margin-bottom: 0;
|
5043 |
+
border-radius: 0.25rem;
|
5044 |
+
}
|
5045 |
+
|
5046 |
+
.list-group-numbered {
|
5047 |
+
list-style-type: none;
|
5048 |
+
counter-reset: section;
|
5049 |
+
}
|
5050 |
+
.list-group-numbered > li::before {
|
5051 |
+
content: counters(section, ".") ". ";
|
5052 |
+
counter-increment: section;
|
5053 |
+
}
|
5054 |
+
|
5055 |
+
.list-group-item-action {
|
5056 |
+
width: 100%;
|
5057 |
+
color: #495057;
|
5058 |
+
text-align: inherit;
|
5059 |
+
}
|
5060 |
+
.list-group-item-action:hover, .list-group-item-action:focus {
|
5061 |
+
z-index: 1;
|
5062 |
+
color: #495057;
|
5063 |
+
text-decoration: none;
|
5064 |
+
background-color: #f8f9fa;
|
5065 |
+
}
|
5066 |
+
.list-group-item-action:active {
|
5067 |
+
color: #212529;
|
5068 |
+
background-color: #e9ecef;
|
5069 |
+
}
|
5070 |
+
|
5071 |
+
.list-group-item {
|
5072 |
+
position: relative;
|
5073 |
+
display: block;
|
5074 |
+
padding: 0.5rem 1rem;
|
5075 |
+
color: #212529;
|
5076 |
+
text-decoration: none;
|
5077 |
+
background-color: #fff;
|
5078 |
+
border: 1px solid rgba(0, 0, 0, 0.125);
|
5079 |
+
}
|
5080 |
+
.list-group-item:first-child {
|
5081 |
+
border-top-left-radius: inherit;
|
5082 |
+
border-top-right-radius: inherit;
|
5083 |
+
}
|
5084 |
+
.list-group-item:last-child {
|
5085 |
+
border-bottom-right-radius: inherit;
|
5086 |
+
border-bottom-left-radius: inherit;
|
5087 |
+
}
|
5088 |
+
.list-group-item.disabled, .list-group-item:disabled {
|
5089 |
+
color: #6c757d;
|
5090 |
+
pointer-events: none;
|
5091 |
+
background-color: #fff;
|
5092 |
+
}
|
5093 |
+
.list-group-item.active {
|
5094 |
+
z-index: 2;
|
5095 |
+
color: #fff;
|
5096 |
+
background-color: #0d6efd;
|
5097 |
+
border-color: #0d6efd;
|
5098 |
+
}
|
5099 |
+
.list-group-item + .list-group-item {
|
5100 |
+
border-top-width: 0;
|
5101 |
+
}
|
5102 |
+
.list-group-item + .list-group-item.active {
|
5103 |
+
margin-top: -1px;
|
5104 |
+
border-top-width: 1px;
|
5105 |
+
}
|
5106 |
+
|
5107 |
+
.list-group-horizontal {
|
5108 |
+
flex-direction: row;
|
5109 |
+
}
|
5110 |
+
.list-group-horizontal > .list-group-item:first-child {
|
5111 |
+
border-bottom-left-radius: 0.25rem;
|
5112 |
+
border-top-right-radius: 0;
|
5113 |
+
}
|
5114 |
+
.list-group-horizontal > .list-group-item:last-child {
|
5115 |
+
border-top-right-radius: 0.25rem;
|
5116 |
+
border-bottom-left-radius: 0;
|
5117 |
+
}
|
5118 |
+
.list-group-horizontal > .list-group-item.active {
|
5119 |
+
margin-top: 0;
|
5120 |
+
}
|
5121 |
+
.list-group-horizontal > .list-group-item + .list-group-item {
|
5122 |
+
border-top-width: 1px;
|
5123 |
+
border-left-width: 0;
|
5124 |
+
}
|
5125 |
+
.list-group-horizontal > .list-group-item + .list-group-item.active {
|
5126 |
+
margin-left: -1px;
|
5127 |
+
border-left-width: 1px;
|
5128 |
+
}
|
5129 |
+
|
5130 |
+
@media (min-width: 576px) {
|
5131 |
+
.list-group-horizontal-sm {
|
5132 |
+
flex-direction: row;
|
5133 |
+
}
|
5134 |
+
.list-group-horizontal-sm > .list-group-item:first-child {
|
5135 |
+
border-bottom-left-radius: 0.25rem;
|
5136 |
+
border-top-right-radius: 0;
|
5137 |
+
}
|
5138 |
+
.list-group-horizontal-sm > .list-group-item:last-child {
|
5139 |
+
border-top-right-radius: 0.25rem;
|
5140 |
+
border-bottom-left-radius: 0;
|
5141 |
+
}
|
5142 |
+
.list-group-horizontal-sm > .list-group-item.active {
|
5143 |
+
margin-top: 0;
|
5144 |
+
}
|
5145 |
+
.list-group-horizontal-sm > .list-group-item + .list-group-item {
|
5146 |
+
border-top-width: 1px;
|
5147 |
+
border-left-width: 0;
|
5148 |
+
}
|
5149 |
+
.list-group-horizontal-sm > .list-group-item + .list-group-item.active {
|
5150 |
+
margin-left: -1px;
|
5151 |
+
border-left-width: 1px;
|
5152 |
+
}
|
5153 |
+
}
|
5154 |
+
@media (min-width: 768px) {
|
5155 |
+
.list-group-horizontal-md {
|
5156 |
+
flex-direction: row;
|
5157 |
+
}
|
5158 |
+
.list-group-horizontal-md > .list-group-item:first-child {
|
5159 |
+
border-bottom-left-radius: 0.25rem;
|
5160 |
+
border-top-right-radius: 0;
|
5161 |
+
}
|
5162 |
+
.list-group-horizontal-md > .list-group-item:last-child {
|
5163 |
+
border-top-right-radius: 0.25rem;
|
5164 |
+
border-bottom-left-radius: 0;
|
5165 |
+
}
|
5166 |
+
.list-group-horizontal-md > .list-group-item.active {
|
5167 |
+
margin-top: 0;
|
5168 |
+
}
|
5169 |
+
.list-group-horizontal-md > .list-group-item + .list-group-item {
|
5170 |
+
border-top-width: 1px;
|
5171 |
+
border-left-width: 0;
|
5172 |
+
}
|
5173 |
+
.list-group-horizontal-md > .list-group-item + .list-group-item.active {
|
5174 |
+
margin-left: -1px;
|
5175 |
+
border-left-width: 1px;
|
5176 |
+
}
|
5177 |
+
}
|
5178 |
+
@media (min-width: 992px) {
|
5179 |
+
.list-group-horizontal-lg {
|
5180 |
+
flex-direction: row;
|
5181 |
+
}
|
5182 |
+
.list-group-horizontal-lg > .list-group-item:first-child {
|
5183 |
+
border-bottom-left-radius: 0.25rem;
|
5184 |
+
border-top-right-radius: 0;
|
5185 |
+
}
|
5186 |
+
.list-group-horizontal-lg > .list-group-item:last-child {
|
5187 |
+
border-top-right-radius: 0.25rem;
|
5188 |
+
border-bottom-left-radius: 0;
|
5189 |
+
}
|
5190 |
+
.list-group-horizontal-lg > .list-group-item.active {
|
5191 |
+
margin-top: 0;
|
5192 |
+
}
|
5193 |
+
.list-group-horizontal-lg > .list-group-item + .list-group-item {
|
5194 |
+
border-top-width: 1px;
|
5195 |
+
border-left-width: 0;
|
5196 |
+
}
|
5197 |
+
.list-group-horizontal-lg > .list-group-item + .list-group-item.active {
|
5198 |
+
margin-left: -1px;
|
5199 |
+
border-left-width: 1px;
|
5200 |
+
}
|
5201 |
+
}
|
5202 |
+
@media (min-width: 1200px) {
|
5203 |
+
.list-group-horizontal-xl {
|
5204 |
+
flex-direction: row;
|
5205 |
+
}
|
5206 |
+
.list-group-horizontal-xl > .list-group-item:first-child {
|
5207 |
+
border-bottom-left-radius: 0.25rem;
|
5208 |
+
border-top-right-radius: 0;
|
5209 |
+
}
|
5210 |
+
.list-group-horizontal-xl > .list-group-item:last-child {
|
5211 |
+
border-top-right-radius: 0.25rem;
|
5212 |
+
border-bottom-left-radius: 0;
|
5213 |
+
}
|
5214 |
+
.list-group-horizontal-xl > .list-group-item.active {
|
5215 |
+
margin-top: 0;
|
5216 |
+
}
|
5217 |
+
.list-group-horizontal-xl > .list-group-item + .list-group-item {
|
5218 |
+
border-top-width: 1px;
|
5219 |
+
border-left-width: 0;
|
5220 |
+
}
|
5221 |
+
.list-group-horizontal-xl > .list-group-item + .list-group-item.active {
|
5222 |
+
margin-left: -1px;
|
5223 |
+
border-left-width: 1px;
|
5224 |
+
}
|
5225 |
+
}
|
5226 |
+
@media (min-width: 1400px) {
|
5227 |
+
.list-group-horizontal-xxl {
|
5228 |
+
flex-direction: row;
|
5229 |
+
}
|
5230 |
+
.list-group-horizontal-xxl > .list-group-item:first-child {
|
5231 |
+
border-bottom-left-radius: 0.25rem;
|
5232 |
+
border-top-right-radius: 0;
|
5233 |
+
}
|
5234 |
+
.list-group-horizontal-xxl > .list-group-item:last-child {
|
5235 |
+
border-top-right-radius: 0.25rem;
|
5236 |
+
border-bottom-left-radius: 0;
|
5237 |
+
}
|
5238 |
+
.list-group-horizontal-xxl > .list-group-item.active {
|
5239 |
+
margin-top: 0;
|
5240 |
+
}
|
5241 |
+
.list-group-horizontal-xxl > .list-group-item + .list-group-item {
|
5242 |
+
border-top-width: 1px;
|
5243 |
+
border-left-width: 0;
|
5244 |
+
}
|
5245 |
+
.list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
|
5246 |
+
margin-left: -1px;
|
5247 |
+
border-left-width: 1px;
|
5248 |
+
}
|
5249 |
+
}
|
5250 |
+
.list-group-flush {
|
5251 |
+
border-radius: 0;
|
5252 |
+
}
|
5253 |
+
.list-group-flush > .list-group-item {
|
5254 |
+
border-width: 0 0 1px;
|
5255 |
+
}
|
5256 |
+
.list-group-flush > .list-group-item:last-child {
|
5257 |
+
border-bottom-width: 0;
|
5258 |
+
}
|
5259 |
+
|
5260 |
+
.list-group-item-primary {
|
5261 |
+
color: #084298;
|
5262 |
+
background-color: #cfe2ff;
|
5263 |
+
}
|
5264 |
+
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
|
5265 |
+
color: #084298;
|
5266 |
+
background-color: #bacbe6;
|
5267 |
+
}
|
5268 |
+
.list-group-item-primary.list-group-item-action.active {
|
5269 |
+
color: #fff;
|
5270 |
+
background-color: #084298;
|
5271 |
+
border-color: #084298;
|
5272 |
+
}
|
5273 |
+
|
5274 |
+
.list-group-item-secondary {
|
5275 |
+
color: #41464b;
|
5276 |
+
background-color: #e2e3e5;
|
5277 |
+
}
|
5278 |
+
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
|
5279 |
+
color: #41464b;
|
5280 |
+
background-color: #cbccce;
|
5281 |
+
}
|
5282 |
+
.list-group-item-secondary.list-group-item-action.active {
|
5283 |
+
color: #fff;
|
5284 |
+
background-color: #41464b;
|
5285 |
+
border-color: #41464b;
|
5286 |
+
}
|
5287 |
+
|
5288 |
+
.list-group-item-success {
|
5289 |
+
color: #0f5132;
|
5290 |
+
background-color: #d1e7dd;
|
5291 |
+
}
|
5292 |
+
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
|
5293 |
+
color: #0f5132;
|
5294 |
+
background-color: #bcd0c7;
|
5295 |
+
}
|
5296 |
+
.list-group-item-success.list-group-item-action.active {
|
5297 |
+
color: #fff;
|
5298 |
+
background-color: #0f5132;
|
5299 |
+
border-color: #0f5132;
|
5300 |
+
}
|
5301 |
+
|
5302 |
+
.list-group-item-info {
|
5303 |
+
color: #055160;
|
5304 |
+
background-color: #cff4fc;
|
5305 |
+
}
|
5306 |
+
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
|
5307 |
+
color: #055160;
|
5308 |
+
background-color: #badce3;
|
5309 |
+
}
|
5310 |
+
.list-group-item-info.list-group-item-action.active {
|
5311 |
+
color: #fff;
|
5312 |
+
background-color: #055160;
|
5313 |
+
border-color: #055160;
|
5314 |
+
}
|
5315 |
+
|
5316 |
+
.list-group-item-warning {
|
5317 |
+
color: #664d03;
|
5318 |
+
background-color: #fff3cd;
|
5319 |
+
}
|
5320 |
+
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
|
5321 |
+
color: #664d03;
|
5322 |
+
background-color: #e6dbb9;
|
5323 |
+
}
|
5324 |
+
.list-group-item-warning.list-group-item-action.active {
|
5325 |
+
color: #fff;
|
5326 |
+
background-color: #664d03;
|
5327 |
+
border-color: #664d03;
|
5328 |
+
}
|
5329 |
+
|
5330 |
+
.list-group-item-danger {
|
5331 |
+
color: #842029;
|
5332 |
+
background-color: #f8d7da;
|
5333 |
+
}
|
5334 |
+
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
|
5335 |
+
color: #842029;
|
5336 |
+
background-color: #dfc2c4;
|
5337 |
+
}
|
5338 |
+
.list-group-item-danger.list-group-item-action.active {
|
5339 |
+
color: #fff;
|
5340 |
+
background-color: #842029;
|
5341 |
+
border-color: #842029;
|
5342 |
+
}
|
5343 |
+
|
5344 |
+
.list-group-item-light {
|
5345 |
+
color: #636464;
|
5346 |
+
background-color: #fefefe;
|
5347 |
+
}
|
5348 |
+
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
|
5349 |
+
color: #636464;
|
5350 |
+
background-color: #e5e5e5;
|
5351 |
+
}
|
5352 |
+
.list-group-item-light.list-group-item-action.active {
|
5353 |
+
color: #fff;
|
5354 |
+
background-color: #636464;
|
5355 |
+
border-color: #636464;
|
5356 |
+
}
|
5357 |
+
|
5358 |
+
.list-group-item-dark {
|
5359 |
+
color: #141619;
|
5360 |
+
background-color: #d3d3d4;
|
5361 |
+
}
|
5362 |
+
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
|
5363 |
+
color: #141619;
|
5364 |
+
background-color: #bebebf;
|
5365 |
+
}
|
5366 |
+
.list-group-item-dark.list-group-item-action.active {
|
5367 |
+
color: #fff;
|
5368 |
+
background-color: #141619;
|
5369 |
+
border-color: #141619;
|
5370 |
+
}
|
5371 |
+
|
5372 |
+
.btn-close {
|
5373 |
+
box-sizing: content-box;
|
5374 |
+
width: 1em;
|
5375 |
+
height: 1em;
|
5376 |
+
padding: 0.25em 0.25em;
|
5377 |
+
color: #000;
|
5378 |
+
background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
|
5379 |
+
border: 0;
|
5380 |
+
border-radius: 0.25rem;
|
5381 |
+
opacity: 0.5;
|
5382 |
+
}
|
5383 |
+
.btn-close:hover {
|
5384 |
+
color: #000;
|
5385 |
+
text-decoration: none;
|
5386 |
+
opacity: 0.75;
|
5387 |
+
}
|
5388 |
+
.btn-close:focus {
|
5389 |
+
outline: 0;
|
5390 |
+
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
|
5391 |
+
opacity: 1;
|
5392 |
+
}
|
5393 |
+
.btn-close:disabled, .btn-close.disabled {
|
5394 |
+
pointer-events: none;
|
5395 |
+
-webkit-user-select: none;
|
5396 |
+
-moz-user-select: none;
|
5397 |
+
user-select: none;
|
5398 |
+
opacity: 0.25;
|
5399 |
+
}
|
5400 |
+
|
5401 |
+
.btn-close-white {
|
5402 |
+
filter: invert(1) grayscale(100%) brightness(200%);
|
5403 |
+
}
|
5404 |
+
|
5405 |
+
.toast {
|
5406 |
+
width: 350px;
|
5407 |
+
max-width: 100%;
|
5408 |
+
font-size: 0.875rem;
|
5409 |
+
pointer-events: auto;
|
5410 |
+
background-color: rgba(255, 255, 255, 0.85);
|
5411 |
+
background-clip: padding-box;
|
5412 |
+
border: 1px solid rgba(0, 0, 0, 0.1);
|
5413 |
+
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
|
5414 |
+
border-radius: 0.25rem;
|
5415 |
+
}
|
5416 |
+
.toast.showing {
|
5417 |
+
opacity: 0;
|
5418 |
+
}
|
5419 |
+
.toast:not(.show) {
|
5420 |
+
display: none;
|
5421 |
+
}
|
5422 |
+
|
5423 |
+
.toast-container {
|
5424 |
+
width: -webkit-max-content;
|
5425 |
+
width: -moz-max-content;
|
5426 |
+
width: max-content;
|
5427 |
+
max-width: 100%;
|
5428 |
+
pointer-events: none;
|
5429 |
+
}
|
5430 |
+
.toast-container > :not(:last-child) {
|
5431 |
+
margin-bottom: 0.75rem;
|
5432 |
+
}
|
5433 |
+
|
5434 |
+
.toast-header {
|
5435 |
+
display: flex;
|
5436 |
+
align-items: center;
|
5437 |
+
padding: 0.5rem 0.75rem;
|
5438 |
+
color: #6c757d;
|
5439 |
+
background-color: rgba(255, 255, 255, 0.85);
|
5440 |
+
background-clip: padding-box;
|
5441 |
+
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
|
5442 |
+
border-top-left-radius: calc(0.25rem - 1px);
|
5443 |
+
border-top-right-radius: calc(0.25rem - 1px);
|
5444 |
+
}
|
5445 |
+
.toast-header .btn-close {
|
5446 |
+
margin-right: -0.375rem;
|
5447 |
+
margin-left: 0.75rem;
|
5448 |
+
}
|
5449 |
+
|
5450 |
+
.toast-body {
|
5451 |
+
padding: 0.75rem;
|
5452 |
+
word-wrap: break-word;
|
5453 |
+
}
|
5454 |
+
|
5455 |
+
.modal {
|
5456 |
+
position: fixed;
|
5457 |
+
top: 0;
|
5458 |
+
left: 0;
|
5459 |
+
z-index: 1055;
|
5460 |
+
display: none;
|
5461 |
+
width: 100%;
|
5462 |
+
height: 100%;
|
5463 |
+
overflow-x: hidden;
|
5464 |
+
overflow-y: auto;
|
5465 |
+
outline: 0;
|
5466 |
+
}
|
5467 |
+
|
5468 |
+
.modal-dialog {
|
5469 |
+
position: relative;
|
5470 |
+
width: auto;
|
5471 |
+
margin: 0.5rem;
|
5472 |
+
pointer-events: none;
|
5473 |
+
}
|
5474 |
+
.modal.fade .modal-dialog {
|
5475 |
+
transition: transform 0.3s ease-out;
|
5476 |
+
transform: translate(0, -50px);
|
5477 |
+
}
|
5478 |
+
@media (prefers-reduced-motion: reduce) {
|
5479 |
+
.modal.fade .modal-dialog {
|
5480 |
+
transition: none;
|
5481 |
+
}
|
5482 |
+
}
|
5483 |
+
.modal.show .modal-dialog {
|
5484 |
+
transform: none;
|
5485 |
+
}
|
5486 |
+
.modal.modal-static .modal-dialog {
|
5487 |
+
transform: scale(1.02);
|
5488 |
+
}
|
5489 |
+
|
5490 |
+
.modal-dialog-scrollable {
|
5491 |
+
height: calc(100% - 1rem);
|
5492 |
+
}
|
5493 |
+
.modal-dialog-scrollable .modal-content {
|
5494 |
+
max-height: 100%;
|
5495 |
+
overflow: hidden;
|
5496 |
+
}
|
5497 |
+
.modal-dialog-scrollable .modal-body {
|
5498 |
+
overflow-y: auto;
|
5499 |
+
}
|
5500 |
+
|
5501 |
+
.modal-dialog-centered {
|
5502 |
+
display: flex;
|
5503 |
+
align-items: center;
|
5504 |
+
min-height: calc(100% - 1rem);
|
5505 |
+
}
|
5506 |
+
|
5507 |
+
.modal-content {
|
5508 |
+
position: relative;
|
5509 |
+
display: flex;
|
5510 |
+
flex-direction: column;
|
5511 |
+
width: 100%;
|
5512 |
+
pointer-events: auto;
|
5513 |
+
background-color: #fff;
|
5514 |
+
background-clip: padding-box;
|
5515 |
+
border: 1px solid rgba(0, 0, 0, 0.2);
|
5516 |
+
border-radius: 0.3rem;
|
5517 |
+
outline: 0;
|
5518 |
+
}
|
5519 |
+
|
5520 |
+
.modal-backdrop {
|
5521 |
+
position: fixed;
|
5522 |
+
top: 0;
|
5523 |
+
left: 0;
|
5524 |
+
z-index: 1050;
|
5525 |
+
width: 100vw;
|
5526 |
+
height: 100vh;
|
5527 |
+
background-color: #000;
|
5528 |
+
}
|
5529 |
+
.modal-backdrop.fade {
|
5530 |
+
opacity: 0;
|
5531 |
+
}
|
5532 |
+
.modal-backdrop.show {
|
5533 |
+
opacity: 0.5;
|
5534 |
+
}
|
5535 |
+
|
5536 |
+
.modal-header {
|
5537 |
+
display: flex;
|
5538 |
+
flex-shrink: 0;
|
5539 |
+
align-items: center;
|
5540 |
+
justify-content: space-between;
|
5541 |
+
padding: 1rem 1rem;
|
5542 |
+
border-bottom: 1px solid #dee2e6;
|
5543 |
+
border-top-left-radius: calc(0.3rem - 1px);
|
5544 |
+
border-top-right-radius: calc(0.3rem - 1px);
|
5545 |
+
}
|
5546 |
+
.modal-header .btn-close {
|
5547 |
+
padding: 0.5rem 0.5rem;
|
5548 |
+
margin: -0.5rem -0.5rem -0.5rem auto;
|
5549 |
+
}
|
5550 |
+
|
5551 |
+
.modal-title {
|
5552 |
+
margin-bottom: 0;
|
5553 |
+
line-height: 1.5;
|
5554 |
+
}
|
5555 |
+
|
5556 |
+
.modal-body {
|
5557 |
+
position: relative;
|
5558 |
+
flex: 1 1 auto;
|
5559 |
+
padding: 1rem;
|
5560 |
+
}
|
5561 |
+
|
5562 |
+
.modal-footer {
|
5563 |
+
display: flex;
|
5564 |
+
flex-wrap: wrap;
|
5565 |
+
flex-shrink: 0;
|
5566 |
+
align-items: center;
|
5567 |
+
justify-content: flex-end;
|
5568 |
+
padding: 0.75rem;
|
5569 |
+
border-top: 1px solid #dee2e6;
|
5570 |
+
border-bottom-right-radius: calc(0.3rem - 1px);
|
5571 |
+
border-bottom-left-radius: calc(0.3rem - 1px);
|
5572 |
+
}
|
5573 |
+
.modal-footer > * {
|
5574 |
+
margin: 0.25rem;
|
5575 |
+
}
|
5576 |
+
|
5577 |
+
@media (min-width: 576px) {
|
5578 |
+
.modal-dialog {
|
5579 |
+
max-width: 500px;
|
5580 |
+
margin: 1.75rem auto;
|
5581 |
+
}
|
5582 |
+
|
5583 |
+
.modal-dialog-scrollable {
|
5584 |
+
height: calc(100% - 3.5rem);
|
5585 |
+
}
|
5586 |
+
|
5587 |
+
.modal-dialog-centered {
|
5588 |
+
min-height: calc(100% - 3.5rem);
|
5589 |
+
}
|
5590 |
+
|
5591 |
+
.modal-sm {
|
5592 |
+
max-width: 300px;
|
5593 |
+
}
|
5594 |
+
}
|
5595 |
+
@media (min-width: 992px) {
|
5596 |
+
.modal-lg,
|
5597 |
+
.modal-xl {
|
5598 |
+
max-width: 800px;
|
5599 |
+
}
|
5600 |
+
}
|
5601 |
+
@media (min-width: 1200px) {
|
5602 |
+
.modal-xl {
|
5603 |
+
max-width: 1140px;
|
5604 |
+
}
|
5605 |
+
}
|
5606 |
+
.modal-fullscreen {
|
5607 |
+
width: 100vw;
|
5608 |
+
max-width: none;
|
5609 |
+
height: 100%;
|
5610 |
+
margin: 0;
|
5611 |
+
}
|
5612 |
+
.modal-fullscreen .modal-content {
|
5613 |
+
height: 100%;
|
5614 |
+
border: 0;
|
5615 |
+
border-radius: 0;
|
5616 |
+
}
|
5617 |
+
.modal-fullscreen .modal-header {
|
5618 |
+
border-radius: 0;
|
5619 |
+
}
|
5620 |
+
.modal-fullscreen .modal-body {
|
5621 |
+
overflow-y: auto;
|
5622 |
+
}
|
5623 |
+
.modal-fullscreen .modal-footer {
|
5624 |
+
border-radius: 0;
|
5625 |
+
}
|
5626 |
+
|
5627 |
+
@media (max-width: 575.98px) {
|
5628 |
+
.modal-fullscreen-sm-down {
|
5629 |
+
width: 100vw;
|
5630 |
+
max-width: none;
|
5631 |
+
height: 100%;
|
5632 |
+
margin: 0;
|
5633 |
+
}
|
5634 |
+
.modal-fullscreen-sm-down .modal-content {
|
5635 |
+
height: 100%;
|
5636 |
+
border: 0;
|
5637 |
+
border-radius: 0;
|
5638 |
+
}
|
5639 |
+
.modal-fullscreen-sm-down .modal-header {
|
5640 |
+
border-radius: 0;
|
5641 |
+
}
|
5642 |
+
.modal-fullscreen-sm-down .modal-body {
|
5643 |
+
overflow-y: auto;
|
5644 |
+
}
|
5645 |
+
.modal-fullscreen-sm-down .modal-footer {
|
5646 |
+
border-radius: 0;
|
5647 |
+
}
|
5648 |
+
}
|
5649 |
+
@media (max-width: 767.98px) {
|
5650 |
+
.modal-fullscreen-md-down {
|
5651 |
+
width: 100vw;
|
5652 |
+
max-width: none;
|
5653 |
+
height: 100%;
|
5654 |
+
margin: 0;
|
5655 |
+
}
|
5656 |
+
.modal-fullscreen-md-down .modal-content {
|
5657 |
+
height: 100%;
|
5658 |
+
border: 0;
|
5659 |
+
border-radius: 0;
|
5660 |
+
}
|
5661 |
+
.modal-fullscreen-md-down .modal-header {
|
5662 |
+
border-radius: 0;
|
5663 |
+
}
|
5664 |
+
.modal-fullscreen-md-down .modal-body {
|
5665 |
+
overflow-y: auto;
|
5666 |
+
}
|
5667 |
+
.modal-fullscreen-md-down .modal-footer {
|
5668 |
+
border-radius: 0;
|
5669 |
+
}
|
5670 |
+
}
|
5671 |
+
@media (max-width: 991.98px) {
|
5672 |
+
.modal-fullscreen-lg-down {
|
5673 |
+
width: 100vw;
|
5674 |
+
max-width: none;
|
5675 |
+
height: 100%;
|
5676 |
+
margin: 0;
|
5677 |
+
}
|
5678 |
+
.modal-fullscreen-lg-down .modal-content {
|
5679 |
+
height: 100%;
|
5680 |
+
border: 0;
|
5681 |
+
border-radius: 0;
|
5682 |
+
}
|
5683 |
+
.modal-fullscreen-lg-down .modal-header {
|
5684 |
+
border-radius: 0;
|
5685 |
+
}
|
5686 |
+
.modal-fullscreen-lg-down .modal-body {
|
5687 |
+
overflow-y: auto;
|
5688 |
+
}
|
5689 |
+
.modal-fullscreen-lg-down .modal-footer {
|
5690 |
+
border-radius: 0;
|
5691 |
+
}
|
5692 |
+
}
|
5693 |
+
@media (max-width: 1199.98px) {
|
5694 |
+
.modal-fullscreen-xl-down {
|
5695 |
+
width: 100vw;
|
5696 |
+
max-width: none;
|
5697 |
+
height: 100%;
|
5698 |
+
margin: 0;
|
5699 |
+
}
|
5700 |
+
.modal-fullscreen-xl-down .modal-content {
|
5701 |
+
height: 100%;
|
5702 |
+
border: 0;
|
5703 |
+
border-radius: 0;
|
5704 |
+
}
|
5705 |
+
.modal-fullscreen-xl-down .modal-header {
|
5706 |
+
border-radius: 0;
|
5707 |
+
}
|
5708 |
+
.modal-fullscreen-xl-down .modal-body {
|
5709 |
+
overflow-y: auto;
|
5710 |
+
}
|
5711 |
+
.modal-fullscreen-xl-down .modal-footer {
|
5712 |
+
border-radius: 0;
|
5713 |
+
}
|
5714 |
+
}
|
5715 |
+
@media (max-width: 1399.98px) {
|
5716 |
+
.modal-fullscreen-xxl-down {
|
5717 |
+
width: 100vw;
|
5718 |
+
max-width: none;
|
5719 |
+
height: 100%;
|
5720 |
+
margin: 0;
|
5721 |
+
}
|
5722 |
+
.modal-fullscreen-xxl-down .modal-content {
|
5723 |
+
height: 100%;
|
5724 |
+
border: 0;
|
5725 |
+
border-radius: 0;
|
5726 |
+
}
|
5727 |
+
.modal-fullscreen-xxl-down .modal-header {
|
5728 |
+
border-radius: 0;
|
5729 |
+
}
|
5730 |
+
.modal-fullscreen-xxl-down .modal-body {
|
5731 |
+
overflow-y: auto;
|
5732 |
+
}
|
5733 |
+
.modal-fullscreen-xxl-down .modal-footer {
|
5734 |
+
border-radius: 0;
|
5735 |
+
}
|
5736 |
+
}
|
5737 |
+
.tooltip {
|
5738 |
+
position: absolute;
|
5739 |
+
z-index: 1080;
|
5740 |
+
display: block;
|
5741 |
+
margin: 0;
|
5742 |
+
font-family: var(--bs-font-sans-serif);
|
5743 |
+
font-style: normal;
|
5744 |
+
font-weight: 400;
|
5745 |
+
line-height: 1.5;
|
5746 |
+
text-align: left;
|
5747 |
+
text-align: start;
|
5748 |
+
text-decoration: none;
|
5749 |
+
text-shadow: none;
|
5750 |
+
text-transform: none;
|
5751 |
+
letter-spacing: normal;
|
5752 |
+
word-break: normal;
|
5753 |
+
word-spacing: normal;
|
5754 |
+
white-space: normal;
|
5755 |
+
line-break: auto;
|
5756 |
+
font-size: 0.875rem;
|
5757 |
+
word-wrap: break-word;
|
5758 |
+
opacity: 0;
|
5759 |
+
}
|
5760 |
+
.tooltip.show {
|
5761 |
+
opacity: 0.9;
|
5762 |
+
}
|
5763 |
+
.tooltip .tooltip-arrow {
|
5764 |
+
position: absolute;
|
5765 |
+
display: block;
|
5766 |
+
width: 0.8rem;
|
5767 |
+
height: 0.4rem;
|
5768 |
+
}
|
5769 |
+
.tooltip .tooltip-arrow::before {
|
5770 |
+
position: absolute;
|
5771 |
+
content: "";
|
5772 |
+
border-color: transparent;
|
5773 |
+
border-style: solid;
|
5774 |
+
}
|
5775 |
+
|
5776 |
+
.bs-tooltip-top, .bs-tooltip-auto[data-popper-placement^=top] {
|
5777 |
+
padding: 0.4rem 0;
|
5778 |
+
}
|
5779 |
+
.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
|
5780 |
+
bottom: 0;
|
5781 |
+
}
|
5782 |
+
.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
|
5783 |
+
top: -1px;
|
5784 |
+
border-width: 0.4rem 0.4rem 0;
|
5785 |
+
border-top-color: #000;
|
5786 |
+
}
|
5787 |
+
|
5788 |
+
.bs-tooltip-end, .bs-tooltip-auto[data-popper-placement^=right] {
|
5789 |
+
padding: 0 0.4rem;
|
5790 |
+
}
|
5791 |
+
.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
|
5792 |
+
left: 0;
|
5793 |
+
width: 0.4rem;
|
5794 |
+
height: 0.8rem;
|
5795 |
+
}
|
5796 |
+
.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
|
5797 |
+
right: -1px;
|
5798 |
+
border-width: 0.4rem 0.4rem 0.4rem 0;
|
5799 |
+
border-right-color: #000;
|
5800 |
+
}
|
5801 |
+
|
5802 |
+
.bs-tooltip-bottom, .bs-tooltip-auto[data-popper-placement^=bottom] {
|
5803 |
+
padding: 0.4rem 0;
|
5804 |
+
}
|
5805 |
+
.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
|
5806 |
+
top: 0;
|
5807 |
+
}
|
5808 |
+
.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
|
5809 |
+
bottom: -1px;
|
5810 |
+
border-width: 0 0.4rem 0.4rem;
|
5811 |
+
border-bottom-color: #000;
|
5812 |
+
}
|
5813 |
+
|
5814 |
+
.bs-tooltip-start, .bs-tooltip-auto[data-popper-placement^=left] {
|
5815 |
+
padding: 0 0.4rem;
|
5816 |
+
}
|
5817 |
+
.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
|
5818 |
+
right: 0;
|
5819 |
+
width: 0.4rem;
|
5820 |
+
height: 0.8rem;
|
5821 |
+
}
|
5822 |
+
.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
|
5823 |
+
left: -1px;
|
5824 |
+
border-width: 0.4rem 0 0.4rem 0.4rem;
|
5825 |
+
border-left-color: #000;
|
5826 |
+
}
|
5827 |
+
|
5828 |
+
.tooltip-inner {
|
5829 |
+
max-width: 200px;
|
5830 |
+
padding: 0.25rem 0.5rem;
|
5831 |
+
color: #fff;
|
5832 |
+
text-align: center;
|
5833 |
+
background-color: #000;
|
5834 |
+
border-radius: 0.25rem;
|
5835 |
+
}
|
5836 |
+
|
5837 |
+
.popover {
|
5838 |
+
position: absolute;
|
5839 |
+
top: 0;
|
5840 |
+
left: 0 /* rtl:ignore */;
|
5841 |
+
z-index: 1070;
|
5842 |
+
display: block;
|
5843 |
+
max-width: 276px;
|
5844 |
+
font-family: var(--bs-font-sans-serif);
|
5845 |
+
font-style: normal;
|
5846 |
+
font-weight: 400;
|
5847 |
+
line-height: 1.5;
|
5848 |
+
text-align: left;
|
5849 |
+
text-align: start;
|
5850 |
+
text-decoration: none;
|
5851 |
+
text-shadow: none;
|
5852 |
+
text-transform: none;
|
5853 |
+
letter-spacing: normal;
|
5854 |
+
word-break: normal;
|
5855 |
+
word-spacing: normal;
|
5856 |
+
white-space: normal;
|
5857 |
+
line-break: auto;
|
5858 |
+
font-size: 0.875rem;
|
5859 |
+
word-wrap: break-word;
|
5860 |
+
background-color: #fff;
|
5861 |
+
background-clip: padding-box;
|
5862 |
+
border: 1px solid rgba(0, 0, 0, 0.2);
|
5863 |
+
border-radius: 0.3rem;
|
5864 |
+
}
|
5865 |
+
.popover .popover-arrow {
|
5866 |
+
position: absolute;
|
5867 |
+
display: block;
|
5868 |
+
width: 1rem;
|
5869 |
+
height: 0.5rem;
|
5870 |
+
}
|
5871 |
+
.popover .popover-arrow::before, .popover .popover-arrow::after {
|
5872 |
+
position: absolute;
|
5873 |
+
display: block;
|
5874 |
+
content: "";
|
5875 |
+
border-color: transparent;
|
5876 |
+
border-style: solid;
|
5877 |
+
}
|
5878 |
+
|
5879 |
+
.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
|
5880 |
+
bottom: calc(-0.5rem - 1px);
|
5881 |
+
}
|
5882 |
+
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
|
5883 |
+
bottom: 0;
|
5884 |
+
border-width: 0.5rem 0.5rem 0;
|
5885 |
+
border-top-color: rgba(0, 0, 0, 0.25);
|
5886 |
+
}
|
5887 |
+
.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
|
5888 |
+
bottom: 1px;
|
5889 |
+
border-width: 0.5rem 0.5rem 0;
|
5890 |
+
border-top-color: #fff;
|
5891 |
+
}
|
5892 |
+
|
5893 |
+
.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
|
5894 |
+
left: calc(-0.5rem - 1px);
|
5895 |
+
width: 0.5rem;
|
5896 |
+
height: 1rem;
|
5897 |
+
}
|
5898 |
+
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
|
5899 |
+
left: 0;
|
5900 |
+
border-width: 0.5rem 0.5rem 0.5rem 0;
|
5901 |
+
border-right-color: rgba(0, 0, 0, 0.25);
|
5902 |
+
}
|
5903 |
+
.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
|
5904 |
+
left: 1px;
|
5905 |
+
border-width: 0.5rem 0.5rem 0.5rem 0;
|
5906 |
+
border-right-color: #fff;
|
5907 |
+
}
|
5908 |
+
|
5909 |
+
.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
|
5910 |
+
top: calc(-0.5rem - 1px);
|
5911 |
+
}
|
5912 |
+
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
|
5913 |
+
top: 0;
|
5914 |
+
border-width: 0 0.5rem 0.5rem 0.5rem;
|
5915 |
+
border-bottom-color: rgba(0, 0, 0, 0.25);
|
5916 |
+
}
|
5917 |
+
.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
|
5918 |
+
top: 1px;
|
5919 |
+
border-width: 0 0.5rem 0.5rem 0.5rem;
|
5920 |
+
border-bottom-color: #fff;
|
5921 |
+
}
|
5922 |
+
.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
|
5923 |
+
position: absolute;
|
5924 |
+
top: 0;
|
5925 |
+
left: 50%;
|
5926 |
+
display: block;
|
5927 |
+
width: 1rem;
|
5928 |
+
margin-left: -0.5rem;
|
5929 |
+
content: "";
|
5930 |
+
border-bottom: 1px solid #f0f0f0;
|
5931 |
+
}
|
5932 |
+
|
5933 |
+
.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
|
5934 |
+
right: calc(-0.5rem - 1px);
|
5935 |
+
width: 0.5rem;
|
5936 |
+
height: 1rem;
|
5937 |
+
}
|
5938 |
+
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
|
5939 |
+
right: 0;
|
5940 |
+
border-width: 0.5rem 0 0.5rem 0.5rem;
|
5941 |
+
border-left-color: rgba(0, 0, 0, 0.25);
|
5942 |
+
}
|
5943 |
+
.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
|
5944 |
+
right: 1px;
|
5945 |
+
border-width: 0.5rem 0 0.5rem 0.5rem;
|
5946 |
+
border-left-color: #fff;
|
5947 |
+
}
|
5948 |
+
|
5949 |
+
.popover-header {
|
5950 |
+
padding: 0.5rem 1rem;
|
5951 |
+
margin-bottom: 0;
|
5952 |
+
font-size: 1rem;
|
5953 |
+
background-color: #f0f0f0;
|
5954 |
+
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
|
5955 |
+
border-top-left-radius: calc(0.3rem - 1px);
|
5956 |
+
border-top-right-radius: calc(0.3rem - 1px);
|
5957 |
+
}
|
5958 |
+
.popover-header:empty {
|
5959 |
+
display: none;
|
5960 |
+
}
|
5961 |
+
|
5962 |
+
.popover-body {
|
5963 |
+
padding: 1rem 1rem;
|
5964 |
+
color: #212529;
|
5965 |
+
}
|
5966 |
+
|
5967 |
+
.carousel {
|
5968 |
+
position: relative;
|
5969 |
+
}
|
5970 |
+
|
5971 |
+
.carousel.pointer-event {
|
5972 |
+
touch-action: pan-y;
|
5973 |
+
}
|
5974 |
+
|
5975 |
+
.carousel-inner {
|
5976 |
+
position: relative;
|
5977 |
+
width: 100%;
|
5978 |
+
overflow: hidden;
|
5979 |
+
}
|
5980 |
+
.carousel-inner::after {
|
5981 |
+
display: block;
|
5982 |
+
clear: both;
|
5983 |
+
content: "";
|
5984 |
+
}
|
5985 |
+
|
5986 |
+
.carousel-item {
|
5987 |
+
position: relative;
|
5988 |
+
display: none;
|
5989 |
+
float: left;
|
5990 |
+
width: 100%;
|
5991 |
+
margin-right: -100%;
|
5992 |
+
-webkit-backface-visibility: hidden;
|
5993 |
+
backface-visibility: hidden;
|
5994 |
+
transition: transform 0.6s ease-in-out;
|
5995 |
+
}
|
5996 |
+
@media (prefers-reduced-motion: reduce) {
|
5997 |
+
.carousel-item {
|
5998 |
+
transition: none;
|
5999 |
+
}
|
6000 |
+
}
|
6001 |
+
|
6002 |
+
.carousel-item.active,
|
6003 |
+
.carousel-item-next,
|
6004 |
+
.carousel-item-prev {
|
6005 |
+
display: block;
|
6006 |
+
}
|
6007 |
+
|
6008 |
+
/* rtl:begin:ignore */
|
6009 |
+
.carousel-item-next:not(.carousel-item-start),
|
6010 |
+
.active.carousel-item-end {
|
6011 |
+
transform: translateX(100%);
|
6012 |
+
}
|
6013 |
+
|
6014 |
+
.carousel-item-prev:not(.carousel-item-end),
|
6015 |
+
.active.carousel-item-start {
|
6016 |
+
transform: translateX(-100%);
|
6017 |
+
}
|
6018 |
+
|
6019 |
+
/* rtl:end:ignore */
|
6020 |
+
.carousel-fade .carousel-item {
|
6021 |
+
opacity: 0;
|
6022 |
+
transition-property: opacity;
|
6023 |
+
transform: none;
|
6024 |
+
}
|
6025 |
+
.carousel-fade .carousel-item.active,
|
6026 |
+
.carousel-fade .carousel-item-next.carousel-item-start,
|
6027 |
+
.carousel-fade .carousel-item-prev.carousel-item-end {
|
6028 |
+
z-index: 1;
|
6029 |
+
opacity: 1;
|
6030 |
+
}
|
6031 |
+
.carousel-fade .active.carousel-item-start,
|
6032 |
+
.carousel-fade .active.carousel-item-end {
|
6033 |
+
z-index: 0;
|
6034 |
+
opacity: 0;
|
6035 |
+
transition: opacity 0s 0.6s;
|
6036 |
+
}
|
6037 |
+
@media (prefers-reduced-motion: reduce) {
|
6038 |
+
.carousel-fade .active.carousel-item-start,
|
6039 |
+
.carousel-fade .active.carousel-item-end {
|
6040 |
+
transition: none;
|
6041 |
+
}
|
6042 |
+
}
|
6043 |
+
|
6044 |
+
.carousel-control-prev,
|
6045 |
+
.carousel-control-next {
|
6046 |
+
position: absolute;
|
6047 |
+
top: 0;
|
6048 |
+
bottom: 0;
|
6049 |
+
z-index: 1;
|
6050 |
+
display: flex;
|
6051 |
+
align-items: center;
|
6052 |
+
justify-content: center;
|
6053 |
+
width: 15%;
|
6054 |
+
padding: 0;
|
6055 |
+
color: #fff;
|
6056 |
+
text-align: center;
|
6057 |
+
background: none;
|
6058 |
+
border: 0;
|
6059 |
+
opacity: 0.5;
|
6060 |
+
transition: opacity 0.15s ease;
|
6061 |
+
}
|
6062 |
+
@media (prefers-reduced-motion: reduce) {
|
6063 |
+
.carousel-control-prev,
|
6064 |
+
.carousel-control-next {
|
6065 |
+
transition: none;
|
6066 |
+
}
|
6067 |
+
}
|
6068 |
+
.carousel-control-prev:hover, .carousel-control-prev:focus,
|
6069 |
+
.carousel-control-next:hover,
|
6070 |
+
.carousel-control-next:focus {
|
6071 |
+
color: #fff;
|
6072 |
+
text-decoration: none;
|
6073 |
+
outline: 0;
|
6074 |
+
opacity: 0.9;
|
6075 |
+
}
|
6076 |
+
|
6077 |
+
.carousel-control-prev {
|
6078 |
+
left: 0;
|
6079 |
+
}
|
6080 |
+
|
6081 |
+
.carousel-control-next {
|
6082 |
+
right: 0;
|
6083 |
+
}
|
6084 |
+
|
6085 |
+
.carousel-control-prev-icon,
|
6086 |
+
.carousel-control-next-icon {
|
6087 |
+
display: inline-block;
|
6088 |
+
width: 2rem;
|
6089 |
+
height: 2rem;
|
6090 |
+
background-repeat: no-repeat;
|
6091 |
+
background-position: 50%;
|
6092 |
+
background-size: 100% 100%;
|
6093 |
+
}
|
6094 |
+
|
6095 |
+
/* rtl:options: {
|
6096 |
+
"autoRename": true,
|
6097 |
+
"stringMap":[ {
|
6098 |
+
"name" : "prev-next",
|
6099 |
+
"search" : "prev",
|
6100 |
+
"replace" : "next"
|
6101 |
+
} ]
|
6102 |
+
} */
|
6103 |
+
.carousel-control-prev-icon {
|
6104 |
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
|
6105 |
+
}
|
6106 |
+
|
6107 |
+
.carousel-control-next-icon {
|
6108 |
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
|
6109 |
+
}
|
6110 |
+
|
6111 |
+
.carousel-indicators {
|
6112 |
+
position: absolute;
|
6113 |
+
right: 0;
|
6114 |
+
bottom: 0;
|
6115 |
+
left: 0;
|
6116 |
+
z-index: 2;
|
6117 |
+
display: flex;
|
6118 |
+
justify-content: center;
|
6119 |
+
padding: 0;
|
6120 |
+
margin-right: 15%;
|
6121 |
+
margin-bottom: 1rem;
|
6122 |
+
margin-left: 15%;
|
6123 |
+
list-style: none;
|
6124 |
+
}
|
6125 |
+
.carousel-indicators [data-bs-target] {
|
6126 |
+
box-sizing: content-box;
|
6127 |
+
flex: 0 1 auto;
|
6128 |
+
width: 30px;
|
6129 |
+
height: 3px;
|
6130 |
+
padding: 0;
|
6131 |
+
margin-right: 3px;
|
6132 |
+
margin-left: 3px;
|
6133 |
+
text-indent: -999px;
|
6134 |
+
cursor: pointer;
|
6135 |
+
background-color: #fff;
|
6136 |
+
background-clip: padding-box;
|
6137 |
+
border: 0;
|
6138 |
+
border-top: 10px solid transparent;
|
6139 |
+
border-bottom: 10px solid transparent;
|
6140 |
+
opacity: 0.5;
|
6141 |
+
transition: opacity 0.6s ease;
|
6142 |
+
}
|
6143 |
+
@media (prefers-reduced-motion: reduce) {
|
6144 |
+
.carousel-indicators [data-bs-target] {
|
6145 |
+
transition: none;
|
6146 |
+
}
|
6147 |
+
}
|
6148 |
+
.carousel-indicators .active {
|
6149 |
+
opacity: 1;
|
6150 |
+
}
|
6151 |
+
|
6152 |
+
.carousel-caption {
|
6153 |
+
position: absolute;
|
6154 |
+
right: 15%;
|
6155 |
+
bottom: 1.25rem;
|
6156 |
+
left: 15%;
|
6157 |
+
padding-top: 1.25rem;
|
6158 |
+
padding-bottom: 1.25rem;
|
6159 |
+
color: #fff;
|
6160 |
+
text-align: center;
|
6161 |
+
}
|
6162 |
+
|
6163 |
+
.carousel-dark .carousel-control-prev-icon,
|
6164 |
+
.carousel-dark .carousel-control-next-icon {
|
6165 |
+
filter: invert(1) grayscale(100);
|
6166 |
+
}
|
6167 |
+
.carousel-dark .carousel-indicators [data-bs-target] {
|
6168 |
+
background-color: #000;
|
6169 |
+
}
|
6170 |
+
.carousel-dark .carousel-caption {
|
6171 |
+
color: #000;
|
6172 |
+
}
|
6173 |
+
|
6174 |
+
@-webkit-keyframes spinner-border {
|
6175 |
+
to {
|
6176 |
+
transform: rotate(360deg) /* rtl:ignore */;
|
6177 |
+
}
|
6178 |
+
}
|
6179 |
+
|
6180 |
+
@keyframes spinner-border {
|
6181 |
+
to {
|
6182 |
+
transform: rotate(360deg) /* rtl:ignore */;
|
6183 |
+
}
|
6184 |
+
}
|
6185 |
+
.spinner-border {
|
6186 |
+
display: inline-block;
|
6187 |
+
width: 2rem;
|
6188 |
+
height: 2rem;
|
6189 |
+
vertical-align: -0.125em;
|
6190 |
+
border: 0.25em solid currentColor;
|
6191 |
+
border-right-color: transparent;
|
6192 |
+
border-radius: 50%;
|
6193 |
+
-webkit-animation: 0.75s linear infinite spinner-border;
|
6194 |
+
animation: 0.75s linear infinite spinner-border;
|
6195 |
+
}
|
6196 |
+
|
6197 |
+
.spinner-border-sm {
|
6198 |
+
width: 1rem;
|
6199 |
+
height: 1rem;
|
6200 |
+
border-width: 0.2em;
|
6201 |
+
}
|
6202 |
+
|
6203 |
+
@-webkit-keyframes spinner-grow {
|
6204 |
+
0% {
|
6205 |
+
transform: scale(0);
|
6206 |
+
}
|
6207 |
+
50% {
|
6208 |
+
opacity: 1;
|
6209 |
+
transform: none;
|
6210 |
+
}
|
6211 |
+
}
|
6212 |
+
|
6213 |
+
@keyframes spinner-grow {
|
6214 |
+
0% {
|
6215 |
+
transform: scale(0);
|
6216 |
+
}
|
6217 |
+
50% {
|
6218 |
+
opacity: 1;
|
6219 |
+
transform: none;
|
6220 |
+
}
|
6221 |
+
}
|
6222 |
+
.spinner-grow {
|
6223 |
+
display: inline-block;
|
6224 |
+
width: 2rem;
|
6225 |
+
height: 2rem;
|
6226 |
+
vertical-align: -0.125em;
|
6227 |
+
background-color: currentColor;
|
6228 |
+
border-radius: 50%;
|
6229 |
+
opacity: 0;
|
6230 |
+
-webkit-animation: 0.75s linear infinite spinner-grow;
|
6231 |
+
animation: 0.75s linear infinite spinner-grow;
|
6232 |
+
}
|
6233 |
+
|
6234 |
+
.spinner-grow-sm {
|
6235 |
+
width: 1rem;
|
6236 |
+
height: 1rem;
|
6237 |
+
}
|
6238 |
+
|
6239 |
+
@media (prefers-reduced-motion: reduce) {
|
6240 |
+
.spinner-border,
|
6241 |
+
.spinner-grow {
|
6242 |
+
-webkit-animation-duration: 1.5s;
|
6243 |
+
animation-duration: 1.5s;
|
6244 |
+
}
|
6245 |
+
}
|
6246 |
+
.offcanvas {
|
6247 |
+
position: fixed;
|
6248 |
+
bottom: 0;
|
6249 |
+
z-index: 1045;
|
6250 |
+
display: flex;
|
6251 |
+
flex-direction: column;
|
6252 |
+
max-width: 100%;
|
6253 |
+
visibility: hidden;
|
6254 |
+
background-color: #fff;
|
6255 |
+
background-clip: padding-box;
|
6256 |
+
outline: 0;
|
6257 |
+
transition: transform 0.3s ease-in-out;
|
6258 |
+
}
|
6259 |
+
@media (prefers-reduced-motion: reduce) {
|
6260 |
+
.offcanvas {
|
6261 |
+
transition: none;
|
6262 |
+
}
|
6263 |
+
}
|
6264 |
+
|
6265 |
+
.offcanvas-backdrop {
|
6266 |
+
position: fixed;
|
6267 |
+
top: 0;
|
6268 |
+
left: 0;
|
6269 |
+
z-index: 1040;
|
6270 |
+
width: 100vw;
|
6271 |
+
height: 100vh;
|
6272 |
+
background-color: #000;
|
6273 |
+
}
|
6274 |
+
.offcanvas-backdrop.fade {
|
6275 |
+
opacity: 0;
|
6276 |
+
}
|
6277 |
+
.offcanvas-backdrop.show {
|
6278 |
+
opacity: 0.5;
|
6279 |
+
}
|
6280 |
+
|
6281 |
+
.offcanvas-header {
|
6282 |
+
display: flex;
|
6283 |
+
align-items: center;
|
6284 |
+
justify-content: space-between;
|
6285 |
+
padding: 1rem 1rem;
|
6286 |
+
}
|
6287 |
+
.offcanvas-header .btn-close {
|
6288 |
+
padding: 0.5rem 0.5rem;
|
6289 |
+
margin-top: -0.5rem;
|
6290 |
+
margin-right: -0.5rem;
|
6291 |
+
margin-bottom: -0.5rem;
|
6292 |
+
}
|
6293 |
+
|
6294 |
+
.offcanvas-title {
|
6295 |
+
margin-bottom: 0;
|
6296 |
+
line-height: 1.5;
|
6297 |
+
}
|
6298 |
+
|
6299 |
+
.offcanvas-body {
|
6300 |
+
flex-grow: 1;
|
6301 |
+
padding: 1rem 1rem;
|
6302 |
+
overflow-y: auto;
|
6303 |
+
}
|
6304 |
+
|
6305 |
+
.offcanvas-start {
|
6306 |
+
top: 0;
|
6307 |
+
left: 0;
|
6308 |
+
width: 400px;
|
6309 |
+
border-right: 1px solid rgba(0, 0, 0, 0.2);
|
6310 |
+
transform: translateX(-100%);
|
6311 |
+
}
|
6312 |
+
|
6313 |
+
.offcanvas-end {
|
6314 |
+
top: 0;
|
6315 |
+
right: 0;
|
6316 |
+
width: 400px;
|
6317 |
+
border-left: 1px solid rgba(0, 0, 0, 0.2);
|
6318 |
+
transform: translateX(100%);
|
6319 |
+
}
|
6320 |
+
|
6321 |
+
.offcanvas-top {
|
6322 |
+
top: 0;
|
6323 |
+
right: 0;
|
6324 |
+
left: 0;
|
6325 |
+
height: 30vh;
|
6326 |
+
max-height: 100%;
|
6327 |
+
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
|
6328 |
+
transform: translateY(-100%);
|
6329 |
+
}
|
6330 |
+
|
6331 |
+
.offcanvas-bottom {
|
6332 |
+
right: 0;
|
6333 |
+
left: 0;
|
6334 |
+
height: 30vh;
|
6335 |
+
max-height: 100%;
|
6336 |
+
border-top: 1px solid rgba(0, 0, 0, 0.2);
|
6337 |
+
transform: translateY(100%);
|
6338 |
+
}
|
6339 |
+
|
6340 |
+
.offcanvas.show {
|
6341 |
+
transform: none;
|
6342 |
+
}
|
6343 |
+
|
6344 |
+
.placeholder {
|
6345 |
+
display: inline-block;
|
6346 |
+
min-height: 1em;
|
6347 |
+
vertical-align: middle;
|
6348 |
+
cursor: wait;
|
6349 |
+
background-color: currentColor;
|
6350 |
+
opacity: 0.5;
|
6351 |
+
}
|
6352 |
+
.placeholder.btn::before {
|
6353 |
+
display: inline-block;
|
6354 |
+
content: "";
|
6355 |
+
}
|
6356 |
+
|
6357 |
+
.placeholder-xs {
|
6358 |
+
min-height: 0.6em;
|
6359 |
+
}
|
6360 |
+
|
6361 |
+
.placeholder-sm {
|
6362 |
+
min-height: 0.8em;
|
6363 |
+
}
|
6364 |
+
|
6365 |
+
.placeholder-lg {
|
6366 |
+
min-height: 1.2em;
|
6367 |
+
}
|
6368 |
+
|
6369 |
+
.placeholder-glow .placeholder {
|
6370 |
+
-webkit-animation: placeholder-glow 2s ease-in-out infinite;
|
6371 |
+
animation: placeholder-glow 2s ease-in-out infinite;
|
6372 |
+
}
|
6373 |
+
|
6374 |
+
@-webkit-keyframes placeholder-glow {
|
6375 |
+
50% {
|
6376 |
+
opacity: 0.2;
|
6377 |
+
}
|
6378 |
+
}
|
6379 |
+
|
6380 |
+
@keyframes placeholder-glow {
|
6381 |
+
50% {
|
6382 |
+
opacity: 0.2;
|
6383 |
+
}
|
6384 |
+
}
|
6385 |
+
.placeholder-wave {
|
6386 |
+
-webkit-mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
|
6387 |
+
mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
|
6388 |
+
-webkit-mask-size: 200% 100%;
|
6389 |
+
mask-size: 200% 100%;
|
6390 |
+
-webkit-animation: placeholder-wave 2s linear infinite;
|
6391 |
+
animation: placeholder-wave 2s linear infinite;
|
6392 |
+
}
|
6393 |
+
|
6394 |
+
@-webkit-keyframes placeholder-wave {
|
6395 |
+
100% {
|
6396 |
+
-webkit-mask-position: -200% 0%;
|
6397 |
+
mask-position: -200% 0%;
|
6398 |
+
}
|
6399 |
+
}
|
6400 |
+
|
6401 |
+
@keyframes placeholder-wave {
|
6402 |
+
100% {
|
6403 |
+
-webkit-mask-position: -200% 0%;
|
6404 |
+
mask-position: -200% 0%;
|
6405 |
+
}
|
6406 |
+
}
|
6407 |
+
.clearfix::after {
|
6408 |
+
display: block;
|
6409 |
+
clear: both;
|
6410 |
+
content: "";
|
6411 |
+
}
|
6412 |
+
|
6413 |
+
.link-primary {
|
6414 |
+
color: #0d6efd;
|
6415 |
+
}
|
6416 |
+
.link-primary:hover, .link-primary:focus {
|
6417 |
+
color: #0a58ca;
|
6418 |
+
}
|
6419 |
+
|
6420 |
+
.link-secondary {
|
6421 |
+
color: #6c757d;
|
6422 |
+
}
|
6423 |
+
.link-secondary:hover, .link-secondary:focus {
|
6424 |
+
color: #565e64;
|
6425 |
+
}
|
6426 |
+
|
6427 |
+
.link-success {
|
6428 |
+
color: #198754;
|
6429 |
+
}
|
6430 |
+
.link-success:hover, .link-success:focus {
|
6431 |
+
color: #146c43;
|
6432 |
+
}
|
6433 |
+
|
6434 |
+
.link-info {
|
6435 |
+
color: #0dcaf0;
|
6436 |
+
}
|
6437 |
+
.link-info:hover, .link-info:focus {
|
6438 |
+
color: #3dd5f3;
|
6439 |
+
}
|
6440 |
+
|
6441 |
+
.link-warning {
|
6442 |
+
color: #ffc107;
|
6443 |
+
}
|
6444 |
+
.link-warning:hover, .link-warning:focus {
|
6445 |
+
color: #ffcd39;
|
6446 |
+
}
|
6447 |
+
|
6448 |
+
.link-danger {
|
6449 |
+
color: #dc3545;
|
6450 |
+
}
|
6451 |
+
.link-danger:hover, .link-danger:focus {
|
6452 |
+
color: #b02a37;
|
6453 |
+
}
|
6454 |
+
|
6455 |
+
.link-light {
|
6456 |
+
color: #f8f9fa;
|
6457 |
+
}
|
6458 |
+
.link-light:hover, .link-light:focus {
|
6459 |
+
color: #f9fafb;
|
6460 |
+
}
|
6461 |
+
|
6462 |
+
.link-dark {
|
6463 |
+
color: #212529;
|
6464 |
+
}
|
6465 |
+
.link-dark:hover, .link-dark:focus {
|
6466 |
+
color: #1a1e21;
|
6467 |
+
}
|
6468 |
+
|
6469 |
+
.ratio {
|
6470 |
+
position: relative;
|
6471 |
+
width: 100%;
|
6472 |
+
}
|
6473 |
+
.ratio::before {
|
6474 |
+
display: block;
|
6475 |
+
padding-top: var(--bs-aspect-ratio);
|
6476 |
+
content: "";
|
6477 |
+
}
|
6478 |
+
.ratio > * {
|
6479 |
+
position: absolute;
|
6480 |
+
top: 0;
|
6481 |
+
left: 0;
|
6482 |
+
width: 100%;
|
6483 |
+
height: 100%;
|
6484 |
+
}
|
6485 |
+
|
6486 |
+
.ratio-1x1 {
|
6487 |
+
--bs-aspect-ratio: 100%;
|
6488 |
+
}
|
6489 |
+
|
6490 |
+
.ratio-4x3 {
|
6491 |
+
--bs-aspect-ratio: 75%;
|
6492 |
+
}
|
6493 |
+
|
6494 |
+
.ratio-16x9 {
|
6495 |
+
--bs-aspect-ratio: 56.25%;
|
6496 |
+
}
|
6497 |
+
|
6498 |
+
.ratio-21x9 {
|
6499 |
+
--bs-aspect-ratio: 42.8571428571%;
|
6500 |
+
}
|
6501 |
+
|
6502 |
+
.fixed-top {
|
6503 |
+
position: fixed;
|
6504 |
+
top: 0;
|
6505 |
+
right: 0;
|
6506 |
+
left: 0;
|
6507 |
+
z-index: 1030;
|
6508 |
+
}
|
6509 |
+
|
6510 |
+
.fixed-bottom {
|
6511 |
+
position: fixed;
|
6512 |
+
right: 0;
|
6513 |
+
bottom: 0;
|
6514 |
+
left: 0;
|
6515 |
+
z-index: 1030;
|
6516 |
+
}
|
6517 |
+
|
6518 |
+
.sticky-top {
|
6519 |
+
position: -webkit-sticky;
|
6520 |
+
position: sticky;
|
6521 |
+
top: 0;
|
6522 |
+
z-index: 1020;
|
6523 |
+
}
|
6524 |
+
|
6525 |
+
@media (min-width: 576px) {
|
6526 |
+
.sticky-sm-top {
|
6527 |
+
position: -webkit-sticky;
|
6528 |
+
position: sticky;
|
6529 |
+
top: 0;
|
6530 |
+
z-index: 1020;
|
6531 |
+
}
|
6532 |
+
}
|
6533 |
+
@media (min-width: 768px) {
|
6534 |
+
.sticky-md-top {
|
6535 |
+
position: -webkit-sticky;
|
6536 |
+
position: sticky;
|
6537 |
+
top: 0;
|
6538 |
+
z-index: 1020;
|
6539 |
+
}
|
6540 |
+
}
|
6541 |
+
@media (min-width: 992px) {
|
6542 |
+
.sticky-lg-top {
|
6543 |
+
position: -webkit-sticky;
|
6544 |
+
position: sticky;
|
6545 |
+
top: 0;
|
6546 |
+
z-index: 1020;
|
6547 |
+
}
|
6548 |
+
}
|
6549 |
+
@media (min-width: 1200px) {
|
6550 |
+
.sticky-xl-top {
|
6551 |
+
position: -webkit-sticky;
|
6552 |
+
position: sticky;
|
6553 |
+
top: 0;
|
6554 |
+
z-index: 1020;
|
6555 |
+
}
|
6556 |
+
}
|
6557 |
+
@media (min-width: 1400px) {
|
6558 |
+
.sticky-xxl-top {
|
6559 |
+
position: -webkit-sticky;
|
6560 |
+
position: sticky;
|
6561 |
+
top: 0;
|
6562 |
+
z-index: 1020;
|
6563 |
+
}
|
6564 |
+
}
|
6565 |
+
.hstack {
|
6566 |
+
display: flex;
|
6567 |
+
flex-direction: row;
|
6568 |
+
align-items: center;
|
6569 |
+
align-self: stretch;
|
6570 |
+
}
|
6571 |
+
|
6572 |
+
.vstack {
|
6573 |
+
display: flex;
|
6574 |
+
flex: 1 1 auto;
|
6575 |
+
flex-direction: column;
|
6576 |
+
align-self: stretch;
|
6577 |
+
}
|
6578 |
+
|
6579 |
+
.visually-hidden,
|
6580 |
+
.visually-hidden-focusable:not(:focus):not(:focus-within) {
|
6581 |
+
position: absolute !important;
|
6582 |
+
width: 1px !important;
|
6583 |
+
height: 1px !important;
|
6584 |
+
padding: 0 !important;
|
6585 |
+
margin: -1px !important;
|
6586 |
+
overflow: hidden !important;
|
6587 |
+
clip: rect(0, 0, 0, 0) !important;
|
6588 |
+
white-space: nowrap !important;
|
6589 |
+
border: 0 !important;
|
6590 |
+
}
|
6591 |
+
|
6592 |
+
.stretched-link::after {
|
6593 |
+
position: absolute;
|
6594 |
+
top: 0;
|
6595 |
+
right: 0;
|
6596 |
+
bottom: 0;
|
6597 |
+
left: 0;
|
6598 |
+
z-index: 1;
|
6599 |
+
content: "";
|
6600 |
+
}
|
6601 |
+
|
6602 |
+
.text-truncate {
|
6603 |
+
overflow: hidden;
|
6604 |
+
text-overflow: ellipsis;
|
6605 |
+
white-space: nowrap;
|
6606 |
+
}
|
6607 |
+
|
6608 |
+
.vr {
|
6609 |
+
display: inline-block;
|
6610 |
+
align-self: stretch;
|
6611 |
+
width: 1px;
|
6612 |
+
min-height: 1em;
|
6613 |
+
background-color: currentColor;
|
6614 |
+
opacity: 0.25;
|
6615 |
+
}
|
6616 |
+
|
6617 |
+
.align-baseline {
|
6618 |
+
vertical-align: baseline !important;
|
6619 |
+
}
|
6620 |
+
|
6621 |
+
.align-top {
|
6622 |
+
vertical-align: top !important;
|
6623 |
+
}
|
6624 |
+
|
6625 |
+
.align-middle {
|
6626 |
+
vertical-align: middle !important;
|
6627 |
+
}
|
6628 |
+
|
6629 |
+
.align-bottom {
|
6630 |
+
vertical-align: bottom !important;
|
6631 |
+
}
|
6632 |
+
|
6633 |
+
.align-text-bottom {
|
6634 |
+
vertical-align: text-bottom !important;
|
6635 |
+
}
|
6636 |
+
|
6637 |
+
.align-text-top {
|
6638 |
+
vertical-align: text-top !important;
|
6639 |
+
}
|
6640 |
+
|
6641 |
+
.float-start {
|
6642 |
+
float: left !important;
|
6643 |
+
}
|
6644 |
+
|
6645 |
+
.float-end {
|
6646 |
+
float: right !important;
|
6647 |
+
}
|
6648 |
+
|
6649 |
+
.float-none {
|
6650 |
+
float: none !important;
|
6651 |
+
}
|
6652 |
+
|
6653 |
+
.opacity-0 {
|
6654 |
+
opacity: 0 !important;
|
6655 |
+
}
|
6656 |
+
|
6657 |
+
.opacity-25 {
|
6658 |
+
opacity: 0.25 !important;
|
6659 |
+
}
|
6660 |
+
|
6661 |
+
.opacity-50 {
|
6662 |
+
opacity: 0.5 !important;
|
6663 |
+
}
|
6664 |
+
|
6665 |
+
.opacity-75 {
|
6666 |
+
opacity: 0.75 !important;
|
6667 |
+
}
|
6668 |
+
|
6669 |
+
.opacity-100 {
|
6670 |
+
opacity: 1 !important;
|
6671 |
+
}
|
6672 |
+
|
6673 |
+
.overflow-auto {
|
6674 |
+
overflow: auto !important;
|
6675 |
+
}
|
6676 |
+
|
6677 |
+
.overflow-hidden {
|
6678 |
+
overflow: hidden !important;
|
6679 |
+
}
|
6680 |
+
|
6681 |
+
.overflow-visible {
|
6682 |
+
overflow: visible !important;
|
6683 |
+
}
|
6684 |
+
|
6685 |
+
.overflow-scroll {
|
6686 |
+
overflow: scroll !important;
|
6687 |
+
}
|
6688 |
+
|
6689 |
+
.d-inline {
|
6690 |
+
display: inline !important;
|
6691 |
+
}
|
6692 |
+
|
6693 |
+
.d-inline-block {
|
6694 |
+
display: inline-block !important;
|
6695 |
+
}
|
6696 |
+
|
6697 |
+
.d-block {
|
6698 |
+
display: block !important;
|
6699 |
+
}
|
6700 |
+
|
6701 |
+
.d-grid {
|
6702 |
+
display: grid !important;
|
6703 |
+
}
|
6704 |
+
|
6705 |
+
.d-table {
|
6706 |
+
display: table !important;
|
6707 |
+
}
|
6708 |
+
|
6709 |
+
.d-table-row {
|
6710 |
+
display: table-row !important;
|
6711 |
+
}
|
6712 |
+
|
6713 |
+
.d-table-cell {
|
6714 |
+
display: table-cell !important;
|
6715 |
+
}
|
6716 |
+
|
6717 |
+
.d-flex {
|
6718 |
+
display: flex !important;
|
6719 |
+
}
|
6720 |
+
|
6721 |
+
.d-inline-flex {
|
6722 |
+
display: inline-flex !important;
|
6723 |
+
}
|
6724 |
+
|
6725 |
+
.d-none {
|
6726 |
+
display: none !important;
|
6727 |
+
}
|
6728 |
+
|
6729 |
+
.shadow {
|
6730 |
+
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
|
6731 |
+
}
|
6732 |
+
|
6733 |
+
.shadow-sm {
|
6734 |
+
box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
|
6735 |
+
}
|
6736 |
+
|
6737 |
+
.shadow-lg {
|
6738 |
+
box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
|
6739 |
+
}
|
6740 |
+
|
6741 |
+
.shadow-none {
|
6742 |
+
box-shadow: none !important;
|
6743 |
+
}
|
6744 |
+
|
6745 |
+
.position-static {
|
6746 |
+
position: static !important;
|
6747 |
+
}
|
6748 |
+
|
6749 |
+
.position-relative {
|
6750 |
+
position: relative !important;
|
6751 |
+
}
|
6752 |
+
|
6753 |
+
.position-absolute {
|
6754 |
+
position: absolute !important;
|
6755 |
+
}
|
6756 |
+
|
6757 |
+
.position-fixed {
|
6758 |
+
position: fixed !important;
|
6759 |
+
}
|
6760 |
+
|
6761 |
+
.position-sticky {
|
6762 |
+
position: -webkit-sticky !important;
|
6763 |
+
position: sticky !important;
|
6764 |
+
}
|
6765 |
+
|
6766 |
+
.top-0 {
|
6767 |
+
top: 0 !important;
|
6768 |
+
}
|
6769 |
+
|
6770 |
+
.top-50 {
|
6771 |
+
top: 50% !important;
|
6772 |
+
}
|
6773 |
+
|
6774 |
+
.top-100 {
|
6775 |
+
top: 100% !important;
|
6776 |
+
}
|
6777 |
+
|
6778 |
+
.bottom-0 {
|
6779 |
+
bottom: 0 !important;
|
6780 |
+
}
|
6781 |
+
|
6782 |
+
.bottom-50 {
|
6783 |
+
bottom: 50% !important;
|
6784 |
+
}
|
6785 |
+
|
6786 |
+
.bottom-100 {
|
6787 |
+
bottom: 100% !important;
|
6788 |
+
}
|
6789 |
+
|
6790 |
+
.start-0 {
|
6791 |
+
left: 0 !important;
|
6792 |
+
}
|
6793 |
+
|
6794 |
+
.start-50 {
|
6795 |
+
left: 50% !important;
|
6796 |
+
}
|
6797 |
+
|
6798 |
+
.start-100 {
|
6799 |
+
left: 100% !important;
|
6800 |
+
}
|
6801 |
+
|
6802 |
+
.end-0 {
|
6803 |
+
right: 0 !important;
|
6804 |
+
}
|
6805 |
+
|
6806 |
+
.end-50 {
|
6807 |
+
right: 50% !important;
|
6808 |
+
}
|
6809 |
+
|
6810 |
+
.end-100 {
|
6811 |
+
right: 100% !important;
|
6812 |
+
}
|
6813 |
+
|
6814 |
+
.translate-middle {
|
6815 |
+
transform: translate(-50%, -50%) !important;
|
6816 |
+
}
|
6817 |
+
|
6818 |
+
.translate-middle-x {
|
6819 |
+
transform: translateX(-50%) !important;
|
6820 |
+
}
|
6821 |
+
|
6822 |
+
.translate-middle-y {
|
6823 |
+
transform: translateY(-50%) !important;
|
6824 |
+
}
|
6825 |
+
|
6826 |
+
.border {
|
6827 |
+
border: 1px solid #dee2e6 !important;
|
6828 |
+
}
|
6829 |
+
|
6830 |
+
.border-0 {
|
6831 |
+
border: 0 !important;
|
6832 |
+
}
|
6833 |
+
|
6834 |
+
.border-top {
|
6835 |
+
border-top: 1px solid #dee2e6 !important;
|
6836 |
+
}
|
6837 |
+
|
6838 |
+
.border-top-0 {
|
6839 |
+
border-top: 0 !important;
|
6840 |
+
}
|
6841 |
+
|
6842 |
+
.border-end {
|
6843 |
+
border-right: 1px solid #dee2e6 !important;
|
6844 |
+
}
|
6845 |
+
|
6846 |
+
.border-end-0 {
|
6847 |
+
border-right: 0 !important;
|
6848 |
+
}
|
6849 |
+
|
6850 |
+
.border-bottom {
|
6851 |
+
border-bottom: 1px solid #dee2e6 !important;
|
6852 |
+
}
|
6853 |
+
|
6854 |
+
.border-bottom-0 {
|
6855 |
+
border-bottom: 0 !important;
|
6856 |
+
}
|
6857 |
+
|
6858 |
+
.border-start {
|
6859 |
+
border-left: 1px solid #dee2e6 !important;
|
6860 |
+
}
|
6861 |
+
|
6862 |
+
.border-start-0 {
|
6863 |
+
border-left: 0 !important;
|
6864 |
+
}
|
6865 |
+
|
6866 |
+
.border-primary {
|
6867 |
+
border-color: #0d6efd !important;
|
6868 |
+
}
|
6869 |
+
|
6870 |
+
.border-secondary {
|
6871 |
+
border-color: #6c757d !important;
|
6872 |
+
}
|
6873 |
+
|
6874 |
+
.border-success {
|
6875 |
+
border-color: #198754 !important;
|
6876 |
+
}
|
6877 |
+
|
6878 |
+
.border-info {
|
6879 |
+
border-color: #0dcaf0 !important;
|
6880 |
+
}
|
6881 |
+
|
6882 |
+
.border-warning {
|
6883 |
+
border-color: #ffc107 !important;
|
6884 |
+
}
|
6885 |
+
|
6886 |
+
.border-danger {
|
6887 |
+
border-color: #dc3545 !important;
|
6888 |
+
}
|
6889 |
+
|
6890 |
+
.border-light {
|
6891 |
+
border-color: #f8f9fa !important;
|
6892 |
+
}
|
6893 |
+
|
6894 |
+
.border-dark {
|
6895 |
+
border-color: #212529 !important;
|
6896 |
+
}
|
6897 |
+
|
6898 |
+
.border-white {
|
6899 |
+
border-color: #fff !important;
|
6900 |
+
}
|
6901 |
+
|
6902 |
+
.border-1 {
|
6903 |
+
border-width: 1px !important;
|
6904 |
+
}
|
6905 |
+
|
6906 |
+
.border-2 {
|
6907 |
+
border-width: 2px !important;
|
6908 |
+
}
|
6909 |
+
|
6910 |
+
.border-3 {
|
6911 |
+
border-width: 3px !important;
|
6912 |
+
}
|
6913 |
+
|
6914 |
+
.border-4 {
|
6915 |
+
border-width: 4px !important;
|
6916 |
+
}
|
6917 |
+
|
6918 |
+
.border-5 {
|
6919 |
+
border-width: 5px !important;
|
6920 |
+
}
|
6921 |
+
|
6922 |
+
.w-25 {
|
6923 |
+
width: 25% !important;
|
6924 |
+
}
|
6925 |
+
|
6926 |
+
.w-50 {
|
6927 |
+
width: 50% !important;
|
6928 |
+
}
|
6929 |
+
|
6930 |
+
.w-75 {
|
6931 |
+
width: 75% !important;
|
6932 |
+
}
|
6933 |
+
|
6934 |
+
.w-100 {
|
6935 |
+
width: 100% !important;
|
6936 |
+
}
|
6937 |
+
|
6938 |
+
.w-auto {
|
6939 |
+
width: auto !important;
|
6940 |
+
}
|
6941 |
+
|
6942 |
+
.mw-100 {
|
6943 |
+
max-width: 100% !important;
|
6944 |
+
}
|
6945 |
+
|
6946 |
+
.vw-100 {
|
6947 |
+
width: 100vw !important;
|
6948 |
+
}
|
6949 |
+
|
6950 |
+
.min-vw-100 {
|
6951 |
+
min-width: 100vw !important;
|
6952 |
+
}
|
6953 |
+
|
6954 |
+
.h-25 {
|
6955 |
+
height: 25% !important;
|
6956 |
+
}
|
6957 |
+
|
6958 |
+
.h-50 {
|
6959 |
+
height: 50% !important;
|
6960 |
+
}
|
6961 |
+
|
6962 |
+
.h-75 {
|
6963 |
+
height: 75% !important;
|
6964 |
+
}
|
6965 |
+
|
6966 |
+
.h-100 {
|
6967 |
+
height: 100% !important;
|
6968 |
+
}
|
6969 |
+
|
6970 |
+
.h-auto {
|
6971 |
+
height: auto !important;
|
6972 |
+
}
|
6973 |
+
|
6974 |
+
.mh-100 {
|
6975 |
+
max-height: 100% !important;
|
6976 |
+
}
|
6977 |
+
|
6978 |
+
.vh-100 {
|
6979 |
+
height: 100vh !important;
|
6980 |
+
}
|
6981 |
+
|
6982 |
+
.min-vh-100 {
|
6983 |
+
min-height: 100vh !important;
|
6984 |
+
}
|
6985 |
+
|
6986 |
+
.flex-fill {
|
6987 |
+
flex: 1 1 auto !important;
|
6988 |
+
}
|
6989 |
+
|
6990 |
+
.flex-row {
|
6991 |
+
flex-direction: row !important;
|
6992 |
+
}
|
6993 |
+
|
6994 |
+
.flex-column {
|
6995 |
+
flex-direction: column !important;
|
6996 |
+
}
|
6997 |
+
|
6998 |
+
.flex-row-reverse {
|
6999 |
+
flex-direction: row-reverse !important;
|
7000 |
+
}
|
7001 |
+
|
7002 |
+
.flex-column-reverse {
|
7003 |
+
flex-direction: column-reverse !important;
|
7004 |
+
}
|
7005 |
+
|
7006 |
+
.flex-grow-0 {
|
7007 |
+
flex-grow: 0 !important;
|
7008 |
+
}
|
7009 |
+
|
7010 |
+
.flex-grow-1 {
|
7011 |
+
flex-grow: 1 !important;
|
7012 |
+
}
|
7013 |
+
|
7014 |
+
.flex-shrink-0 {
|
7015 |
+
flex-shrink: 0 !important;
|
7016 |
+
}
|
7017 |
+
|
7018 |
+
.flex-shrink-1 {
|
7019 |
+
flex-shrink: 1 !important;
|
7020 |
+
}
|
7021 |
+
|
7022 |
+
.flex-wrap {
|
7023 |
+
flex-wrap: wrap !important;
|
7024 |
+
}
|
7025 |
+
|
7026 |
+
.flex-nowrap {
|
7027 |
+
flex-wrap: nowrap !important;
|
7028 |
+
}
|
7029 |
+
|
7030 |
+
.flex-wrap-reverse {
|
7031 |
+
flex-wrap: wrap-reverse !important;
|
7032 |
+
}
|
7033 |
+
|
7034 |
+
.gap-0 {
|
7035 |
+
gap: 0 !important;
|
7036 |
+
}
|
7037 |
+
|
7038 |
+
.gap-1 {
|
7039 |
+
gap: 0.25rem !important;
|
7040 |
+
}
|
7041 |
+
|
7042 |
+
.gap-2 {
|
7043 |
+
gap: 0.5rem !important;
|
7044 |
+
}
|
7045 |
+
|
7046 |
+
.gap-3 {
|
7047 |
+
gap: 1rem !important;
|
7048 |
+
}
|
7049 |
+
|
7050 |
+
.gap-4 {
|
7051 |
+
gap: 1.5rem !important;
|
7052 |
+
}
|
7053 |
+
|
7054 |
+
.gap-5 {
|
7055 |
+
gap: 3rem !important;
|
7056 |
+
}
|
7057 |
+
|
7058 |
+
.justify-content-start {
|
7059 |
+
justify-content: flex-start !important;
|
7060 |
+
}
|
7061 |
+
|
7062 |
+
.justify-content-end {
|
7063 |
+
justify-content: flex-end !important;
|
7064 |
+
}
|
7065 |
+
|
7066 |
+
.justify-content-center {
|
7067 |
+
justify-content: center !important;
|
7068 |
+
}
|
7069 |
+
|
7070 |
+
.justify-content-between {
|
7071 |
+
justify-content: space-between !important;
|
7072 |
+
}
|
7073 |
+
|
7074 |
+
.justify-content-around {
|
7075 |
+
justify-content: space-around !important;
|
7076 |
+
}
|
7077 |
+
|
7078 |
+
.justify-content-evenly {
|
7079 |
+
justify-content: space-evenly !important;
|
7080 |
+
}
|
7081 |
+
|
7082 |
+
.align-items-start {
|
7083 |
+
align-items: flex-start !important;
|
7084 |
+
}
|
7085 |
+
|
7086 |
+
.align-items-end {
|
7087 |
+
align-items: flex-end !important;
|
7088 |
+
}
|
7089 |
+
|
7090 |
+
.align-items-center {
|
7091 |
+
align-items: center !important;
|
7092 |
+
}
|
7093 |
+
|
7094 |
+
.align-items-baseline {
|
7095 |
+
align-items: baseline !important;
|
7096 |
+
}
|
7097 |
+
|
7098 |
+
.align-items-stretch {
|
7099 |
+
align-items: stretch !important;
|
7100 |
+
}
|
7101 |
+
|
7102 |
+
.align-content-start {
|
7103 |
+
align-content: flex-start !important;
|
7104 |
+
}
|
7105 |
+
|
7106 |
+
.align-content-end {
|
7107 |
+
align-content: flex-end !important;
|
7108 |
+
}
|
7109 |
+
|
7110 |
+
.align-content-center {
|
7111 |
+
align-content: center !important;
|
7112 |
+
}
|
7113 |
+
|
7114 |
+
.align-content-between {
|
7115 |
+
align-content: space-between !important;
|
7116 |
+
}
|
7117 |
+
|
7118 |
+
.align-content-around {
|
7119 |
+
align-content: space-around !important;
|
7120 |
+
}
|
7121 |
+
|
7122 |
+
.align-content-stretch {
|
7123 |
+
align-content: stretch !important;
|
7124 |
+
}
|
7125 |
+
|
7126 |
+
.align-self-auto {
|
7127 |
+
align-self: auto !important;
|
7128 |
+
}
|
7129 |
+
|
7130 |
+
.align-self-start {
|
7131 |
+
align-self: flex-start !important;
|
7132 |
+
}
|
7133 |
+
|
7134 |
+
.align-self-end {
|
7135 |
+
align-self: flex-end !important;
|
7136 |
+
}
|
7137 |
+
|
7138 |
+
.align-self-center {
|
7139 |
+
align-self: center !important;
|
7140 |
+
}
|
7141 |
+
|
7142 |
+
.align-self-baseline {
|
7143 |
+
align-self: baseline !important;
|
7144 |
+
}
|
7145 |
+
|
7146 |
+
.align-self-stretch {
|
7147 |
+
align-self: stretch !important;
|
7148 |
+
}
|
7149 |
+
|
7150 |
+
.order-first {
|
7151 |
+
order: -1 !important;
|
7152 |
+
}
|
7153 |
+
|
7154 |
+
.order-0 {
|
7155 |
+
order: 0 !important;
|
7156 |
+
}
|
7157 |
+
|
7158 |
+
.order-1 {
|
7159 |
+
order: 1 !important;
|
7160 |
+
}
|
7161 |
+
|
7162 |
+
.order-2 {
|
7163 |
+
order: 2 !important;
|
7164 |
+
}
|
7165 |
+
|
7166 |
+
.order-3 {
|
7167 |
+
order: 3 !important;
|
7168 |
+
}
|
7169 |
+
|
7170 |
+
.order-4 {
|
7171 |
+
order: 4 !important;
|
7172 |
+
}
|
7173 |
+
|
7174 |
+
.order-5 {
|
7175 |
+
order: 5 !important;
|
7176 |
+
}
|
7177 |
+
|
7178 |
+
.order-last {
|
7179 |
+
order: 6 !important;
|
7180 |
+
}
|
7181 |
+
|
7182 |
+
.m-0 {
|
7183 |
+
margin: 0 !important;
|
7184 |
+
}
|
7185 |
+
|
7186 |
+
.m-1 {
|
7187 |
+
margin: 0.25rem !important;
|
7188 |
+
}
|
7189 |
+
|
7190 |
+
.m-2 {
|
7191 |
+
margin: 0.5rem !important;
|
7192 |
+
}
|
7193 |
+
|
7194 |
+
.m-3 {
|
7195 |
+
margin: 1rem !important;
|
7196 |
+
}
|
7197 |
+
|
7198 |
+
.m-4 {
|
7199 |
+
margin: 1.5rem !important;
|
7200 |
+
}
|
7201 |
+
|
7202 |
+
.m-5 {
|
7203 |
+
margin: 3rem !important;
|
7204 |
+
}
|
7205 |
+
|
7206 |
+
.m-auto {
|
7207 |
+
margin: auto !important;
|
7208 |
+
}
|
7209 |
+
|
7210 |
+
.mx-0 {
|
7211 |
+
margin-right: 0 !important;
|
7212 |
+
margin-left: 0 !important;
|
7213 |
+
}
|
7214 |
+
|
7215 |
+
.mx-1 {
|
7216 |
+
margin-right: 0.25rem !important;
|
7217 |
+
margin-left: 0.25rem !important;
|
7218 |
+
}
|
7219 |
+
|
7220 |
+
.mx-2 {
|
7221 |
+
margin-right: 0.5rem !important;
|
7222 |
+
margin-left: 0.5rem !important;
|
7223 |
+
}
|
7224 |
+
|
7225 |
+
.mx-3 {
|
7226 |
+
margin-right: 1rem !important;
|
7227 |
+
margin-left: 1rem !important;
|
7228 |
+
}
|
7229 |
+
|
7230 |
+
.mx-4 {
|
7231 |
+
margin-right: 1.5rem !important;
|
7232 |
+
margin-left: 1.5rem !important;
|
7233 |
+
}
|
7234 |
+
|
7235 |
+
.mx-5 {
|
7236 |
+
margin-right: 3rem !important;
|
7237 |
+
margin-left: 3rem !important;
|
7238 |
+
}
|
7239 |
+
|
7240 |
+
.mx-auto {
|
7241 |
+
margin-right: auto !important;
|
7242 |
+
margin-left: auto !important;
|
7243 |
+
}
|
7244 |
+
|
7245 |
+
.my-0 {
|
7246 |
+
margin-top: 0 !important;
|
7247 |
+
margin-bottom: 0 !important;
|
7248 |
+
}
|
7249 |
+
|
7250 |
+
.my-1 {
|
7251 |
+
margin-top: 0.25rem !important;
|
7252 |
+
margin-bottom: 0.25rem !important;
|
7253 |
+
}
|
7254 |
+
|
7255 |
+
.my-2 {
|
7256 |
+
margin-top: 0.5rem !important;
|
7257 |
+
margin-bottom: 0.5rem !important;
|
7258 |
+
}
|
7259 |
+
|
7260 |
+
.my-3 {
|
7261 |
+
margin-top: 1rem !important;
|
7262 |
+
margin-bottom: 1rem !important;
|
7263 |
+
}
|
7264 |
+
|
7265 |
+
.my-4 {
|
7266 |
+
margin-top: 1.5rem !important;
|
7267 |
+
margin-bottom: 1.5rem !important;
|
7268 |
+
}
|
7269 |
+
|
7270 |
+
.my-5 {
|
7271 |
+
margin-top: 3rem !important;
|
7272 |
+
margin-bottom: 3rem !important;
|
7273 |
+
}
|
7274 |
+
|
7275 |
+
.my-auto {
|
7276 |
+
margin-top: auto !important;
|
7277 |
+
margin-bottom: auto !important;
|
7278 |
+
}
|
7279 |
+
|
7280 |
+
.mt-0 {
|
7281 |
+
margin-top: 0 !important;
|
7282 |
+
}
|
7283 |
+
|
7284 |
+
.mt-1 {
|
7285 |
+
margin-top: 0.25rem !important;
|
7286 |
+
}
|
7287 |
+
|
7288 |
+
.mt-2 {
|
7289 |
+
margin-top: 0.5rem !important;
|
7290 |
+
}
|
7291 |
+
|
7292 |
+
.mt-3 {
|
7293 |
+
margin-top: 1rem !important;
|
7294 |
+
}
|
7295 |
+
|
7296 |
+
.mt-4 {
|
7297 |
+
margin-top: 1.5rem !important;
|
7298 |
+
}
|
7299 |
+
|
7300 |
+
.mt-5 {
|
7301 |
+
margin-top: 3rem !important;
|
7302 |
+
}
|
7303 |
+
|
7304 |
+
.mt-auto {
|
7305 |
+
margin-top: auto !important;
|
7306 |
+
}
|
7307 |
+
|
7308 |
+
.me-0 {
|
7309 |
+
margin-right: 0 !important;
|
7310 |
+
}
|
7311 |
+
|
7312 |
+
.me-1 {
|
7313 |
+
margin-right: 0.25rem !important;
|
7314 |
+
}
|
7315 |
+
|
7316 |
+
.me-2 {
|
7317 |
+
margin-right: 0.5rem !important;
|
7318 |
+
}
|
7319 |
+
|
7320 |
+
.me-3 {
|
7321 |
+
margin-right: 1rem !important;
|
7322 |
+
}
|
7323 |
+
|
7324 |
+
.me-4 {
|
7325 |
+
margin-right: 1.5rem !important;
|
7326 |
+
}
|
7327 |
+
|
7328 |
+
.me-5 {
|
7329 |
+
margin-right: 3rem !important;
|
7330 |
+
}
|
7331 |
+
|
7332 |
+
.me-auto {
|
7333 |
+
margin-right: auto !important;
|
7334 |
+
}
|
7335 |
+
|
7336 |
+
.mb-0 {
|
7337 |
+
margin-bottom: 0 !important;
|
7338 |
+
}
|
7339 |
+
|
7340 |
+
.mb-1 {
|
7341 |
+
margin-bottom: 0.25rem !important;
|
7342 |
+
}
|
7343 |
+
|
7344 |
+
.mb-2 {
|
7345 |
+
margin-bottom: 0.5rem !important;
|
7346 |
+
}
|
7347 |
+
|
7348 |
+
.mb-3 {
|
7349 |
+
margin-bottom: 1rem !important;
|
7350 |
+
}
|
7351 |
+
|
7352 |
+
.mb-4 {
|
7353 |
+
margin-bottom: 1.5rem !important;
|
7354 |
+
}
|
7355 |
+
|
7356 |
+
.mb-5 {
|
7357 |
+
margin-bottom: 3rem !important;
|
7358 |
+
}
|
7359 |
+
|
7360 |
+
.mb-auto {
|
7361 |
+
margin-bottom: auto !important;
|
7362 |
+
}
|
7363 |
+
|
7364 |
+
.ms-0 {
|
7365 |
+
margin-left: 0 !important;
|
7366 |
+
}
|
7367 |
+
|
7368 |
+
.ms-1 {
|
7369 |
+
margin-left: 0.25rem !important;
|
7370 |
+
}
|
7371 |
+
|
7372 |
+
.ms-2 {
|
7373 |
+
margin-left: 0.5rem !important;
|
7374 |
+
}
|
7375 |
+
|
7376 |
+
.ms-3 {
|
7377 |
+
margin-left: 1rem !important;
|
7378 |
+
}
|
7379 |
+
|
7380 |
+
.ms-4 {
|
7381 |
+
margin-left: 1.5rem !important;
|
7382 |
+
}
|
7383 |
+
|
7384 |
+
.ms-5 {
|
7385 |
+
margin-left: 3rem !important;
|
7386 |
+
}
|
7387 |
+
|
7388 |
+
.ms-auto {
|
7389 |
+
margin-left: auto !important;
|
7390 |
+
}
|
7391 |
+
|
7392 |
+
.p-0 {
|
7393 |
+
padding: 0 !important;
|
7394 |
+
}
|
7395 |
+
|
7396 |
+
.p-1 {
|
7397 |
+
padding: 0.25rem !important;
|
7398 |
+
}
|
7399 |
+
|
7400 |
+
.p-2 {
|
7401 |
+
padding: 0.5rem !important;
|
7402 |
+
}
|
7403 |
+
|
7404 |
+
.p-3 {
|
7405 |
+
padding: 1rem !important;
|
7406 |
+
}
|
7407 |
+
|
7408 |
+
.p-4 {
|
7409 |
+
padding: 1.5rem !important;
|
7410 |
+
}
|
7411 |
+
|
7412 |
+
.p-5 {
|
7413 |
+
padding: 3rem !important;
|
7414 |
+
}
|
7415 |
+
|
7416 |
+
.px-0 {
|
7417 |
+
padding-right: 0 !important;
|
7418 |
+
padding-left: 0 !important;
|
7419 |
+
}
|
7420 |
+
|
7421 |
+
.px-1 {
|
7422 |
+
padding-right: 0.25rem !important;
|
7423 |
+
padding-left: 0.25rem !important;
|
7424 |
+
}
|
7425 |
+
|
7426 |
+
.px-2 {
|
7427 |
+
padding-right: 0.5rem !important;
|
7428 |
+
padding-left: 0.5rem !important;
|
7429 |
+
}
|
7430 |
+
|
7431 |
+
.px-3 {
|
7432 |
+
padding-right: 1rem !important;
|
7433 |
+
padding-left: 1rem !important;
|
7434 |
+
}
|
7435 |
+
|
7436 |
+
.px-4 {
|
7437 |
+
padding-right: 1.5rem !important;
|
7438 |
+
padding-left: 1.5rem !important;
|
7439 |
+
}
|
7440 |
+
|
7441 |
+
.px-5 {
|
7442 |
+
padding-right: 3rem !important;
|
7443 |
+
padding-left: 3rem !important;
|
7444 |
+
}
|
7445 |
+
|
7446 |
+
.py-0 {
|
7447 |
+
padding-top: 0 !important;
|
7448 |
+
padding-bottom: 0 !important;
|
7449 |
+
}
|
7450 |
+
|
7451 |
+
.py-1 {
|
7452 |
+
padding-top: 0.25rem !important;
|
7453 |
+
padding-bottom: 0.25rem !important;
|
7454 |
+
}
|
7455 |
+
|
7456 |
+
.py-2 {
|
7457 |
+
padding-top: 0.5rem !important;
|
7458 |
+
padding-bottom: 0.5rem !important;
|
7459 |
+
}
|
7460 |
+
|
7461 |
+
.py-3 {
|
7462 |
+
padding-top: 1rem !important;
|
7463 |
+
padding-bottom: 1rem !important;
|
7464 |
+
}
|
7465 |
+
|
7466 |
+
.py-4 {
|
7467 |
+
padding-top: 1.5rem !important;
|
7468 |
+
padding-bottom: 1.5rem !important;
|
7469 |
+
}
|
7470 |
+
|
7471 |
+
.py-5 {
|
7472 |
+
padding-top: 3rem !important;
|
7473 |
+
padding-bottom: 3rem !important;
|
7474 |
+
}
|
7475 |
+
|
7476 |
+
.pt-0 {
|
7477 |
+
padding-top: 0 !important;
|
7478 |
+
}
|
7479 |
+
|
7480 |
+
.pt-1 {
|
7481 |
+
padding-top: 0.25rem !important;
|
7482 |
+
}
|
7483 |
+
|
7484 |
+
.pt-2 {
|
7485 |
+
padding-top: 0.5rem !important;
|
7486 |
+
}
|
7487 |
+
|
7488 |
+
.pt-3 {
|
7489 |
+
padding-top: 1rem !important;
|
7490 |
+
}
|
7491 |
+
|
7492 |
+
.pt-4 {
|
7493 |
+
padding-top: 1.5rem !important;
|
7494 |
+
}
|
7495 |
+
|
7496 |
+
.pt-5 {
|
7497 |
+
padding-top: 3rem !important;
|
7498 |
+
}
|
7499 |
+
|
7500 |
+
.pe-0 {
|
7501 |
+
padding-right: 0 !important;
|
7502 |
+
}
|
7503 |
+
|
7504 |
+
.pe-1 {
|
7505 |
+
padding-right: 0.25rem !important;
|
7506 |
+
}
|
7507 |
+
|
7508 |
+
.pe-2 {
|
7509 |
+
padding-right: 0.5rem !important;
|
7510 |
+
}
|
7511 |
+
|
7512 |
+
.pe-3 {
|
7513 |
+
padding-right: 1rem !important;
|
7514 |
+
}
|
7515 |
+
|
7516 |
+
.pe-4 {
|
7517 |
+
padding-right: 1.5rem !important;
|
7518 |
+
}
|
7519 |
+
|
7520 |
+
.pe-5 {
|
7521 |
+
padding-right: 3rem !important;
|
7522 |
+
}
|
7523 |
+
|
7524 |
+
.pb-0 {
|
7525 |
+
padding-bottom: 0 !important;
|
7526 |
+
}
|
7527 |
+
|
7528 |
+
.pb-1 {
|
7529 |
+
padding-bottom: 0.25rem !important;
|
7530 |
+
}
|
7531 |
+
|
7532 |
+
.pb-2 {
|
7533 |
+
padding-bottom: 0.5rem !important;
|
7534 |
+
}
|
7535 |
+
|
7536 |
+
.pb-3 {
|
7537 |
+
padding-bottom: 1rem !important;
|
7538 |
+
}
|
7539 |
+
|
7540 |
+
.pb-4 {
|
7541 |
+
padding-bottom: 1.5rem !important;
|
7542 |
+
}
|
7543 |
+
|
7544 |
+
.pb-5 {
|
7545 |
+
padding-bottom: 3rem !important;
|
7546 |
+
}
|
7547 |
+
|
7548 |
+
.ps-0 {
|
7549 |
+
padding-left: 0 !important;
|
7550 |
+
}
|
7551 |
+
|
7552 |
+
.ps-1 {
|
7553 |
+
padding-left: 0.25rem !important;
|
7554 |
+
}
|
7555 |
+
|
7556 |
+
.ps-2 {
|
7557 |
+
padding-left: 0.5rem !important;
|
7558 |
+
}
|
7559 |
+
|
7560 |
+
.ps-3 {
|
7561 |
+
padding-left: 1rem !important;
|
7562 |
+
}
|
7563 |
+
|
7564 |
+
.ps-4 {
|
7565 |
+
padding-left: 1.5rem !important;
|
7566 |
+
}
|
7567 |
+
|
7568 |
+
.ps-5 {
|
7569 |
+
padding-left: 3rem !important;
|
7570 |
+
}
|
7571 |
+
|
7572 |
+
.font-monospace {
|
7573 |
+
font-family: var(--bs-font-monospace) !important;
|
7574 |
+
}
|
7575 |
+
|
7576 |
+
.fs-1 {
|
7577 |
+
font-size: calc(1.375rem + 1.5vw) !important;
|
7578 |
+
}
|
7579 |
+
|
7580 |
+
.fs-2 {
|
7581 |
+
font-size: calc(1.325rem + 0.9vw) !important;
|
7582 |
+
}
|
7583 |
+
|
7584 |
+
.fs-3 {
|
7585 |
+
font-size: calc(1.3rem + 0.6vw) !important;
|
7586 |
+
}
|
7587 |
+
|
7588 |
+
.fs-4 {
|
7589 |
+
font-size: calc(1.275rem + 0.3vw) !important;
|
7590 |
+
}
|
7591 |
+
|
7592 |
+
.fs-5 {
|
7593 |
+
font-size: 1.25rem !important;
|
7594 |
+
}
|
7595 |
+
|
7596 |
+
.fs-6 {
|
7597 |
+
font-size: 1rem !important;
|
7598 |
+
}
|
7599 |
+
|
7600 |
+
.fst-italic {
|
7601 |
+
font-style: italic !important;
|
7602 |
+
}
|
7603 |
+
|
7604 |
+
.fst-normal {
|
7605 |
+
font-style: normal !important;
|
7606 |
+
}
|
7607 |
+
|
7608 |
+
.fw-light {
|
7609 |
+
font-weight: 300 !important;
|
7610 |
+
}
|
7611 |
+
|
7612 |
+
.fw-lighter {
|
7613 |
+
font-weight: lighter !important;
|
7614 |
+
}
|
7615 |
+
|
7616 |
+
.fw-normal {
|
7617 |
+
font-weight: 400 !important;
|
7618 |
+
}
|
7619 |
+
|
7620 |
+
.fw-bold {
|
7621 |
+
font-weight: 700 !important;
|
7622 |
+
}
|
7623 |
+
|
7624 |
+
.fw-bolder {
|
7625 |
+
font-weight: bolder !important;
|
7626 |
+
}
|
7627 |
+
|
7628 |
+
.lh-1 {
|
7629 |
+
line-height: 1 !important;
|
7630 |
+
}
|
7631 |
+
|
7632 |
+
.lh-sm {
|
7633 |
+
line-height: 1.25 !important;
|
7634 |
+
}
|
7635 |
+
|
7636 |
+
.lh-base {
|
7637 |
+
line-height: 1.5 !important;
|
7638 |
+
}
|
7639 |
+
|
7640 |
+
.lh-lg {
|
7641 |
+
line-height: 2 !important;
|
7642 |
+
}
|
7643 |
+
|
7644 |
+
.text-start {
|
7645 |
+
text-align: left !important;
|
7646 |
+
}
|
7647 |
+
|
7648 |
+
.text-end {
|
7649 |
+
text-align: right !important;
|
7650 |
+
}
|
7651 |
+
|
7652 |
+
.text-center {
|
7653 |
+
text-align: center !important;
|
7654 |
+
}
|
7655 |
+
|
7656 |
+
.text-decoration-none {
|
7657 |
+
text-decoration: none !important;
|
7658 |
+
}
|
7659 |
+
|
7660 |
+
.text-decoration-underline {
|
7661 |
+
text-decoration: underline !important;
|
7662 |
+
}
|
7663 |
+
|
7664 |
+
.text-decoration-line-through {
|
7665 |
+
text-decoration: line-through !important;
|
7666 |
+
}
|
7667 |
+
|
7668 |
+
.text-lowercase {
|
7669 |
+
text-transform: lowercase !important;
|
7670 |
+
}
|
7671 |
+
|
7672 |
+
.text-uppercase {
|
7673 |
+
text-transform: uppercase !important;
|
7674 |
+
}
|
7675 |
+
|
7676 |
+
.text-capitalize {
|
7677 |
+
text-transform: capitalize !important;
|
7678 |
+
}
|
7679 |
+
|
7680 |
+
.text-wrap {
|
7681 |
+
white-space: normal !important;
|
7682 |
+
}
|
7683 |
+
|
7684 |
+
.text-nowrap {
|
7685 |
+
white-space: nowrap !important;
|
7686 |
+
}
|
7687 |
+
|
7688 |
+
/* rtl:begin:remove */
|
7689 |
+
.text-break {
|
7690 |
+
word-wrap: break-word !important;
|
7691 |
+
word-break: break-word !important;
|
7692 |
+
}
|
7693 |
+
|
7694 |
+
/* rtl:end:remove */
|
7695 |
+
.text-primary {
|
7696 |
+
--bs-text-opacity: 1;
|
7697 |
+
color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
|
7698 |
+
}
|
7699 |
+
|
7700 |
+
.text-secondary {
|
7701 |
+
--bs-text-opacity: 1;
|
7702 |
+
color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
|
7703 |
+
}
|
7704 |
+
|
7705 |
+
.text-success {
|
7706 |
+
--bs-text-opacity: 1;
|
7707 |
+
color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
|
7708 |
+
}
|
7709 |
+
|
7710 |
+
.text-info {
|
7711 |
+
--bs-text-opacity: 1;
|
7712 |
+
color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
|
7713 |
+
}
|
7714 |
+
|
7715 |
+
.text-warning {
|
7716 |
+
--bs-text-opacity: 1;
|
7717 |
+
color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
|
7718 |
+
}
|
7719 |
+
|
7720 |
+
.text-danger {
|
7721 |
+
--bs-text-opacity: 1;
|
7722 |
+
color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
|
7723 |
+
}
|
7724 |
+
|
7725 |
+
.text-light {
|
7726 |
+
--bs-text-opacity: 1;
|
7727 |
+
color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
|
7728 |
+
}
|
7729 |
+
|
7730 |
+
.text-dark {
|
7731 |
+
--bs-text-opacity: 1;
|
7732 |
+
color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
|
7733 |
+
}
|
7734 |
+
|
7735 |
+
.text-black {
|
7736 |
+
--bs-text-opacity: 1;
|
7737 |
+
color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
|
7738 |
+
}
|
7739 |
+
|
7740 |
+
.text-white {
|
7741 |
+
--bs-text-opacity: 1;
|
7742 |
+
color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
|
7743 |
+
}
|
7744 |
+
|
7745 |
+
.text-body {
|
7746 |
+
--bs-text-opacity: 1;
|
7747 |
+
color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
|
7748 |
+
}
|
7749 |
+
|
7750 |
+
.text-muted {
|
7751 |
+
--bs-text-opacity: 1;
|
7752 |
+
color: #6c757d !important;
|
7753 |
+
}
|
7754 |
+
|
7755 |
+
.text-black-50 {
|
7756 |
+
--bs-text-opacity: 1;
|
7757 |
+
color: rgba(0, 0, 0, 0.5) !important;
|
7758 |
+
}
|
7759 |
+
|
7760 |
+
.text-white-50 {
|
7761 |
+
--bs-text-opacity: 1;
|
7762 |
+
color: rgba(255, 255, 255, 0.5) !important;
|
7763 |
+
}
|
7764 |
+
|
7765 |
+
.text-reset {
|
7766 |
+
--bs-text-opacity: 1;
|
7767 |
+
color: inherit !important;
|
7768 |
+
}
|
7769 |
+
|
7770 |
+
.text-opacity-25 {
|
7771 |
+
--bs-text-opacity: 0.25;
|
7772 |
+
}
|
7773 |
+
|
7774 |
+
.text-opacity-50 {
|
7775 |
+
--bs-text-opacity: 0.5;
|
7776 |
+
}
|
7777 |
+
|
7778 |
+
.text-opacity-75 {
|
7779 |
+
--bs-text-opacity: 0.75;
|
7780 |
+
}
|
7781 |
+
|
7782 |
+
.text-opacity-100 {
|
7783 |
+
--bs-text-opacity: 1;
|
7784 |
+
}
|
7785 |
+
|
7786 |
+
.bg-primary {
|
7787 |
+
--bs-bg-opacity: 1;
|
7788 |
+
background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
|
7789 |
+
}
|
7790 |
+
|
7791 |
+
.bg-secondary {
|
7792 |
+
--bs-bg-opacity: 1;
|
7793 |
+
background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
|
7794 |
+
}
|
7795 |
+
|
7796 |
+
.bg-success {
|
7797 |
+
--bs-bg-opacity: 1;
|
7798 |
+
background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
|
7799 |
+
}
|
7800 |
+
|
7801 |
+
.bg-info {
|
7802 |
+
--bs-bg-opacity: 1;
|
7803 |
+
background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
|
7804 |
+
}
|
7805 |
+
|
7806 |
+
.bg-warning {
|
7807 |
+
--bs-bg-opacity: 1;
|
7808 |
+
background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
|
7809 |
+
}
|
7810 |
+
|
7811 |
+
.bg-danger {
|
7812 |
+
--bs-bg-opacity: 1;
|
7813 |
+
background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
|
7814 |
+
}
|
7815 |
+
|
7816 |
+
.bg-light {
|
7817 |
+
--bs-bg-opacity: 1;
|
7818 |
+
background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
|
7819 |
+
}
|
7820 |
+
|
7821 |
+
.bg-dark {
|
7822 |
+
--bs-bg-opacity: 1;
|
7823 |
+
background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
|
7824 |
+
}
|
7825 |
+
|
7826 |
+
.bg-black {
|
7827 |
+
--bs-bg-opacity: 1;
|
7828 |
+
background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
|
7829 |
+
}
|
7830 |
+
|
7831 |
+
.bg-white {
|
7832 |
+
--bs-bg-opacity: 1;
|
7833 |
+
background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
|
7834 |
+
}
|
7835 |
+
|
7836 |
+
.bg-body {
|
7837 |
+
--bs-bg-opacity: 1;
|
7838 |
+
background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
|
7839 |
+
}
|
7840 |
+
|
7841 |
+
.bg-transparent {
|
7842 |
+
--bs-bg-opacity: 1;
|
7843 |
+
background-color: transparent !important;
|
7844 |
+
}
|
7845 |
+
|
7846 |
+
.bg-opacity-10 {
|
7847 |
+
--bs-bg-opacity: 0.1;
|
7848 |
+
}
|
7849 |
+
|
7850 |
+
.bg-opacity-25 {
|
7851 |
+
--bs-bg-opacity: 0.25;
|
7852 |
+
}
|
7853 |
+
|
7854 |
+
.bg-opacity-50 {
|
7855 |
+
--bs-bg-opacity: 0.5;
|
7856 |
+
}
|
7857 |
+
|
7858 |
+
.bg-opacity-75 {
|
7859 |
+
--bs-bg-opacity: 0.75;
|
7860 |
+
}
|
7861 |
+
|
7862 |
+
.bg-opacity-100 {
|
7863 |
+
--bs-bg-opacity: 1;
|
7864 |
+
}
|
7865 |
+
|
7866 |
+
.bg-gradient {
|
7867 |
+
background-image: var(--bs-gradient) !important;
|
7868 |
+
}
|
7869 |
+
|
7870 |
+
.user-select-all {
|
7871 |
+
-webkit-user-select: all !important;
|
7872 |
+
-moz-user-select: all !important;
|
7873 |
+
user-select: all !important;
|
7874 |
+
}
|
7875 |
+
|
7876 |
+
.user-select-auto {
|
7877 |
+
-webkit-user-select: auto !important;
|
7878 |
+
-moz-user-select: auto !important;
|
7879 |
+
user-select: auto !important;
|
7880 |
+
}
|
7881 |
+
|
7882 |
+
.user-select-none {
|
7883 |
+
-webkit-user-select: none !important;
|
7884 |
+
-moz-user-select: none !important;
|
7885 |
+
user-select: none !important;
|
7886 |
+
}
|
7887 |
+
|
7888 |
+
.pe-none {
|
7889 |
+
pointer-events: none !important;
|
7890 |
+
}
|
7891 |
+
|
7892 |
+
.pe-auto {
|
7893 |
+
pointer-events: auto !important;
|
7894 |
+
}
|
7895 |
+
|
7896 |
+
.rounded {
|
7897 |
+
border-radius: 0.25rem !important;
|
7898 |
+
}
|
7899 |
+
|
7900 |
+
.rounded-0 {
|
7901 |
+
border-radius: 0 !important;
|
7902 |
+
}
|
7903 |
+
|
7904 |
+
.rounded-1 {
|
7905 |
+
border-radius: 0.2rem !important;
|
7906 |
+
}
|
7907 |
+
|
7908 |
+
.rounded-2 {
|
7909 |
+
border-radius: 0.25rem !important;
|
7910 |
+
}
|
7911 |
+
|
7912 |
+
.rounded-3 {
|
7913 |
+
border-radius: 0.3rem !important;
|
7914 |
+
}
|
7915 |
+
|
7916 |
+
.rounded-circle {
|
7917 |
+
border-radius: 50% !important;
|
7918 |
+
}
|
7919 |
+
|
7920 |
+
.rounded-pill {
|
7921 |
+
border-radius: 50rem !important;
|
7922 |
+
}
|
7923 |
+
|
7924 |
+
.rounded-top {
|
7925 |
+
border-top-left-radius: 0.25rem !important;
|
7926 |
+
border-top-right-radius: 0.25rem !important;
|
7927 |
+
}
|
7928 |
+
|
7929 |
+
.rounded-end {
|
7930 |
+
border-top-right-radius: 0.25rem !important;
|
7931 |
+
border-bottom-right-radius: 0.25rem !important;
|
7932 |
+
}
|
7933 |
+
|
7934 |
+
.rounded-bottom {
|
7935 |
+
border-bottom-right-radius: 0.25rem !important;
|
7936 |
+
border-bottom-left-radius: 0.25rem !important;
|
7937 |
+
}
|
7938 |
+
|
7939 |
+
.rounded-start {
|
7940 |
+
border-bottom-left-radius: 0.25rem !important;
|
7941 |
+
border-top-left-radius: 0.25rem !important;
|
7942 |
+
}
|
7943 |
+
|
7944 |
+
.visible {
|
7945 |
+
visibility: visible !important;
|
7946 |
+
}
|
7947 |
+
|
7948 |
+
.invisible {
|
7949 |
+
visibility: hidden !important;
|
7950 |
+
}
|
7951 |
+
|
7952 |
+
@media (min-width: 576px) {
|
7953 |
+
.float-sm-start {
|
7954 |
+
float: left !important;
|
7955 |
+
}
|
7956 |
+
|
7957 |
+
.float-sm-end {
|
7958 |
+
float: right !important;
|
7959 |
+
}
|
7960 |
+
|
7961 |
+
.float-sm-none {
|
7962 |
+
float: none !important;
|
7963 |
+
}
|
7964 |
+
|
7965 |
+
.d-sm-inline {
|
7966 |
+
display: inline !important;
|
7967 |
+
}
|
7968 |
+
|
7969 |
+
.d-sm-inline-block {
|
7970 |
+
display: inline-block !important;
|
7971 |
+
}
|
7972 |
+
|
7973 |
+
.d-sm-block {
|
7974 |
+
display: block !important;
|
7975 |
+
}
|
7976 |
+
|
7977 |
+
.d-sm-grid {
|
7978 |
+
display: grid !important;
|
7979 |
+
}
|
7980 |
+
|
7981 |
+
.d-sm-table {
|
7982 |
+
display: table !important;
|
7983 |
+
}
|
7984 |
+
|
7985 |
+
.d-sm-table-row {
|
7986 |
+
display: table-row !important;
|
7987 |
+
}
|
7988 |
+
|
7989 |
+
.d-sm-table-cell {
|
7990 |
+
display: table-cell !important;
|
7991 |
+
}
|
7992 |
+
|
7993 |
+
.d-sm-flex {
|
7994 |
+
display: flex !important;
|
7995 |
+
}
|
7996 |
+
|
7997 |
+
.d-sm-inline-flex {
|
7998 |
+
display: inline-flex !important;
|
7999 |
+
}
|
8000 |
+
|
8001 |
+
.d-sm-none {
|
8002 |
+
display: none !important;
|
8003 |
+
}
|
8004 |
+
|
8005 |
+
.flex-sm-fill {
|
8006 |
+
flex: 1 1 auto !important;
|
8007 |
+
}
|
8008 |
+
|
8009 |
+
.flex-sm-row {
|
8010 |
+
flex-direction: row !important;
|
8011 |
+
}
|
8012 |
+
|
8013 |
+
.flex-sm-column {
|
8014 |
+
flex-direction: column !important;
|
8015 |
+
}
|
8016 |
+
|
8017 |
+
.flex-sm-row-reverse {
|
8018 |
+
flex-direction: row-reverse !important;
|
8019 |
+
}
|
8020 |
+
|
8021 |
+
.flex-sm-column-reverse {
|
8022 |
+
flex-direction: column-reverse !important;
|
8023 |
+
}
|
8024 |
+
|
8025 |
+
.flex-sm-grow-0 {
|
8026 |
+
flex-grow: 0 !important;
|
8027 |
+
}
|
8028 |
+
|
8029 |
+
.flex-sm-grow-1 {
|
8030 |
+
flex-grow: 1 !important;
|
8031 |
+
}
|
8032 |
+
|
8033 |
+
.flex-sm-shrink-0 {
|
8034 |
+
flex-shrink: 0 !important;
|
8035 |
+
}
|
8036 |
+
|
8037 |
+
.flex-sm-shrink-1 {
|
8038 |
+
flex-shrink: 1 !important;
|
8039 |
+
}
|
8040 |
+
|
8041 |
+
.flex-sm-wrap {
|
8042 |
+
flex-wrap: wrap !important;
|
8043 |
+
}
|
8044 |
+
|
8045 |
+
.flex-sm-nowrap {
|
8046 |
+
flex-wrap: nowrap !important;
|
8047 |
+
}
|
8048 |
+
|
8049 |
+
.flex-sm-wrap-reverse {
|
8050 |
+
flex-wrap: wrap-reverse !important;
|
8051 |
+
}
|
8052 |
+
|
8053 |
+
.gap-sm-0 {
|
8054 |
+
gap: 0 !important;
|
8055 |
+
}
|
8056 |
+
|
8057 |
+
.gap-sm-1 {
|
8058 |
+
gap: 0.25rem !important;
|
8059 |
+
}
|
8060 |
+
|
8061 |
+
.gap-sm-2 {
|
8062 |
+
gap: 0.5rem !important;
|
8063 |
+
}
|
8064 |
+
|
8065 |
+
.gap-sm-3 {
|
8066 |
+
gap: 1rem !important;
|
8067 |
+
}
|
8068 |
+
|
8069 |
+
.gap-sm-4 {
|
8070 |
+
gap: 1.5rem !important;
|
8071 |
+
}
|
8072 |
+
|
8073 |
+
.gap-sm-5 {
|
8074 |
+
gap: 3rem !important;
|
8075 |
+
}
|
8076 |
+
|
8077 |
+
.justify-content-sm-start {
|
8078 |
+
justify-content: flex-start !important;
|
8079 |
+
}
|
8080 |
+
|
8081 |
+
.justify-content-sm-end {
|
8082 |
+
justify-content: flex-end !important;
|
8083 |
+
}
|
8084 |
+
|
8085 |
+
.justify-content-sm-center {
|
8086 |
+
justify-content: center !important;
|
8087 |
+
}
|
8088 |
+
|
8089 |
+
.justify-content-sm-between {
|
8090 |
+
justify-content: space-between !important;
|
8091 |
+
}
|
8092 |
+
|
8093 |
+
.justify-content-sm-around {
|
8094 |
+
justify-content: space-around !important;
|
8095 |
+
}
|
8096 |
+
|
8097 |
+
.justify-content-sm-evenly {
|
8098 |
+
justify-content: space-evenly !important;
|
8099 |
+
}
|
8100 |
+
|
8101 |
+
.align-items-sm-start {
|
8102 |
+
align-items: flex-start !important;
|
8103 |
+
}
|
8104 |
+
|
8105 |
+
.align-items-sm-end {
|
8106 |
+
align-items: flex-end !important;
|
8107 |
+
}
|
8108 |
+
|
8109 |
+
.align-items-sm-center {
|
8110 |
+
align-items: center !important;
|
8111 |
+
}
|
8112 |
+
|
8113 |
+
.align-items-sm-baseline {
|
8114 |
+
align-items: baseline !important;
|
8115 |
+
}
|
8116 |
+
|
8117 |
+
.align-items-sm-stretch {
|
8118 |
+
align-items: stretch !important;
|
8119 |
+
}
|
8120 |
+
|
8121 |
+
.align-content-sm-start {
|
8122 |
+
align-content: flex-start !important;
|
8123 |
+
}
|
8124 |
+
|
8125 |
+
.align-content-sm-end {
|
8126 |
+
align-content: flex-end !important;
|
8127 |
+
}
|
8128 |
+
|
8129 |
+
.align-content-sm-center {
|
8130 |
+
align-content: center !important;
|
8131 |
+
}
|
8132 |
+
|
8133 |
+
.align-content-sm-between {
|
8134 |
+
align-content: space-between !important;
|
8135 |
+
}
|
8136 |
+
|
8137 |
+
.align-content-sm-around {
|
8138 |
+
align-content: space-around !important;
|
8139 |
+
}
|
8140 |
+
|
8141 |
+
.align-content-sm-stretch {
|
8142 |
+
align-content: stretch !important;
|
8143 |
+
}
|
8144 |
+
|
8145 |
+
.align-self-sm-auto {
|
8146 |
+
align-self: auto !important;
|
8147 |
+
}
|
8148 |
+
|
8149 |
+
.align-self-sm-start {
|
8150 |
+
align-self: flex-start !important;
|
8151 |
+
}
|
8152 |
+
|
8153 |
+
.align-self-sm-end {
|
8154 |
+
align-self: flex-end !important;
|
8155 |
+
}
|
8156 |
+
|
8157 |
+
.align-self-sm-center {
|
8158 |
+
align-self: center !important;
|
8159 |
+
}
|
8160 |
+
|
8161 |
+
.align-self-sm-baseline {
|
8162 |
+
align-self: baseline !important;
|
8163 |
+
}
|
8164 |
+
|
8165 |
+
.align-self-sm-stretch {
|
8166 |
+
align-self: stretch !important;
|
8167 |
+
}
|
8168 |
+
|
8169 |
+
.order-sm-first {
|
8170 |
+
order: -1 !important;
|
8171 |
+
}
|
8172 |
+
|
8173 |
+
.order-sm-0 {
|
8174 |
+
order: 0 !important;
|
8175 |
+
}
|
8176 |
+
|
8177 |
+
.order-sm-1 {
|
8178 |
+
order: 1 !important;
|
8179 |
+
}
|
8180 |
+
|
8181 |
+
.order-sm-2 {
|
8182 |
+
order: 2 !important;
|
8183 |
+
}
|
8184 |
+
|
8185 |
+
.order-sm-3 {
|
8186 |
+
order: 3 !important;
|
8187 |
+
}
|
8188 |
+
|
8189 |
+
.order-sm-4 {
|
8190 |
+
order: 4 !important;
|
8191 |
+
}
|
8192 |
+
|
8193 |
+
.order-sm-5 {
|
8194 |
+
order: 5 !important;
|
8195 |
+
}
|
8196 |
+
|
8197 |
+
.order-sm-last {
|
8198 |
+
order: 6 !important;
|
8199 |
+
}
|
8200 |
+
|
8201 |
+
.m-sm-0 {
|
8202 |
+
margin: 0 !important;
|
8203 |
+
}
|
8204 |
+
|
8205 |
+
.m-sm-1 {
|
8206 |
+
margin: 0.25rem !important;
|
8207 |
+
}
|
8208 |
+
|
8209 |
+
.m-sm-2 {
|
8210 |
+
margin: 0.5rem !important;
|
8211 |
+
}
|
8212 |
+
|
8213 |
+
.m-sm-3 {
|
8214 |
+
margin: 1rem !important;
|
8215 |
+
}
|
8216 |
+
|
8217 |
+
.m-sm-4 {
|
8218 |
+
margin: 1.5rem !important;
|
8219 |
+
}
|
8220 |
+
|
8221 |
+
.m-sm-5 {
|
8222 |
+
margin: 3rem !important;
|
8223 |
+
}
|
8224 |
+
|
8225 |
+
.m-sm-auto {
|
8226 |
+
margin: auto !important;
|
8227 |
+
}
|
8228 |
+
|
8229 |
+
.mx-sm-0 {
|
8230 |
+
margin-right: 0 !important;
|
8231 |
+
margin-left: 0 !important;
|
8232 |
+
}
|
8233 |
+
|
8234 |
+
.mx-sm-1 {
|
8235 |
+
margin-right: 0.25rem !important;
|
8236 |
+
margin-left: 0.25rem !important;
|
8237 |
+
}
|
8238 |
+
|
8239 |
+
.mx-sm-2 {
|
8240 |
+
margin-right: 0.5rem !important;
|
8241 |
+
margin-left: 0.5rem !important;
|
8242 |
+
}
|
8243 |
+
|
8244 |
+
.mx-sm-3 {
|
8245 |
+
margin-right: 1rem !important;
|
8246 |
+
margin-left: 1rem !important;
|
8247 |
+
}
|
8248 |
+
|
8249 |
+
.mx-sm-4 {
|
8250 |
+
margin-right: 1.5rem !important;
|
8251 |
+
margin-left: 1.5rem !important;
|
8252 |
+
}
|
8253 |
+
|
8254 |
+
.mx-sm-5 {
|
8255 |
+
margin-right: 3rem !important;
|
8256 |
+
margin-left: 3rem !important;
|
8257 |
+
}
|
8258 |
+
|
8259 |
+
.mx-sm-auto {
|
8260 |
+
margin-right: auto !important;
|
8261 |
+
margin-left: auto !important;
|
8262 |
+
}
|
8263 |
+
|
8264 |
+
.my-sm-0 {
|
8265 |
+
margin-top: 0 !important;
|
8266 |
+
margin-bottom: 0 !important;
|
8267 |
+
}
|
8268 |
+
|
8269 |
+
.my-sm-1 {
|
8270 |
+
margin-top: 0.25rem !important;
|
8271 |
+
margin-bottom: 0.25rem !important;
|
8272 |
+
}
|
8273 |
+
|
8274 |
+
.my-sm-2 {
|
8275 |
+
margin-top: 0.5rem !important;
|
8276 |
+
margin-bottom: 0.5rem !important;
|
8277 |
+
}
|
8278 |
+
|
8279 |
+
.my-sm-3 {
|
8280 |
+
margin-top: 1rem !important;
|
8281 |
+
margin-bottom: 1rem !important;
|
8282 |
+
}
|
8283 |
+
|
8284 |
+
.my-sm-4 {
|
8285 |
+
margin-top: 1.5rem !important;
|
8286 |
+
margin-bottom: 1.5rem !important;
|
8287 |
+
}
|
8288 |
+
|
8289 |
+
.my-sm-5 {
|
8290 |
+
margin-top: 3rem !important;
|
8291 |
+
margin-bottom: 3rem !important;
|
8292 |
+
}
|
8293 |
+
|
8294 |
+
.my-sm-auto {
|
8295 |
+
margin-top: auto !important;
|
8296 |
+
margin-bottom: auto !important;
|
8297 |
+
}
|
8298 |
+
|
8299 |
+
.mt-sm-0 {
|
8300 |
+
margin-top: 0 !important;
|
8301 |
+
}
|
8302 |
+
|
8303 |
+
.mt-sm-1 {
|
8304 |
+
margin-top: 0.25rem !important;
|
8305 |
+
}
|
8306 |
+
|
8307 |
+
.mt-sm-2 {
|
8308 |
+
margin-top: 0.5rem !important;
|
8309 |
+
}
|
8310 |
+
|
8311 |
+
.mt-sm-3 {
|
8312 |
+
margin-top: 1rem !important;
|
8313 |
+
}
|
8314 |
+
|
8315 |
+
.mt-sm-4 {
|
8316 |
+
margin-top: 1.5rem !important;
|
8317 |
+
}
|
8318 |
+
|
8319 |
+
.mt-sm-5 {
|
8320 |
+
margin-top: 3rem !important;
|
8321 |
+
}
|
8322 |
+
|
8323 |
+
.mt-sm-auto {
|
8324 |
+
margin-top: auto !important;
|
8325 |
+
}
|
8326 |
+
|
8327 |
+
.me-sm-0 {
|
8328 |
+
margin-right: 0 !important;
|
8329 |
+
}
|
8330 |
+
|
8331 |
+
.me-sm-1 {
|
8332 |
+
margin-right: 0.25rem !important;
|
8333 |
+
}
|
8334 |
+
|
8335 |
+
.me-sm-2 {
|
8336 |
+
margin-right: 0.5rem !important;
|
8337 |
+
}
|
8338 |
+
|
8339 |
+
.me-sm-3 {
|
8340 |
+
margin-right: 1rem !important;
|
8341 |
+
}
|
8342 |
+
|
8343 |
+
.me-sm-4 {
|
8344 |
+
margin-right: 1.5rem !important;
|
8345 |
+
}
|
8346 |
+
|
8347 |
+
.me-sm-5 {
|
8348 |
+
margin-right: 3rem !important;
|
8349 |
+
}
|
8350 |
+
|
8351 |
+
.me-sm-auto {
|
8352 |
+
margin-right: auto !important;
|
8353 |
+
}
|
8354 |
+
|
8355 |
+
.mb-sm-0 {
|
8356 |
+
margin-bottom: 0 !important;
|
8357 |
+
}
|
8358 |
+
|
8359 |
+
.mb-sm-1 {
|
8360 |
+
margin-bottom: 0.25rem !important;
|
8361 |
+
}
|
8362 |
+
|
8363 |
+
.mb-sm-2 {
|
8364 |
+
margin-bottom: 0.5rem !important;
|
8365 |
+
}
|
8366 |
+
|
8367 |
+
.mb-sm-3 {
|
8368 |
+
margin-bottom: 1rem !important;
|
8369 |
+
}
|
8370 |
+
|
8371 |
+
.mb-sm-4 {
|
8372 |
+
margin-bottom: 1.5rem !important;
|
8373 |
+
}
|
8374 |
+
|
8375 |
+
.mb-sm-5 {
|
8376 |
+
margin-bottom: 3rem !important;
|
8377 |
+
}
|
8378 |
+
|
8379 |
+
.mb-sm-auto {
|
8380 |
+
margin-bottom: auto !important;
|
8381 |
+
}
|
8382 |
+
|
8383 |
+
.ms-sm-0 {
|
8384 |
+
margin-left: 0 !important;
|
8385 |
+
}
|
8386 |
+
|
8387 |
+
.ms-sm-1 {
|
8388 |
+
margin-left: 0.25rem !important;
|
8389 |
+
}
|
8390 |
+
|
8391 |
+
.ms-sm-2 {
|
8392 |
+
margin-left: 0.5rem !important;
|
8393 |
+
}
|
8394 |
+
|
8395 |
+
.ms-sm-3 {
|
8396 |
+
margin-left: 1rem !important;
|
8397 |
+
}
|
8398 |
+
|
8399 |
+
.ms-sm-4 {
|
8400 |
+
margin-left: 1.5rem !important;
|
8401 |
+
}
|
8402 |
+
|
8403 |
+
.ms-sm-5 {
|
8404 |
+
margin-left: 3rem !important;
|
8405 |
+
}
|
8406 |
+
|
8407 |
+
.ms-sm-auto {
|
8408 |
+
margin-left: auto !important;
|
8409 |
+
}
|
8410 |
+
|
8411 |
+
.p-sm-0 {
|
8412 |
+
padding: 0 !important;
|
8413 |
+
}
|
8414 |
+
|
8415 |
+
.p-sm-1 {
|
8416 |
+
padding: 0.25rem !important;
|
8417 |
+
}
|
8418 |
+
|
8419 |
+
.p-sm-2 {
|
8420 |
+
padding: 0.5rem !important;
|
8421 |
+
}
|
8422 |
+
|
8423 |
+
.p-sm-3 {
|
8424 |
+
padding: 1rem !important;
|
8425 |
+
}
|
8426 |
+
|
8427 |
+
.p-sm-4 {
|
8428 |
+
padding: 1.5rem !important;
|
8429 |
+
}
|
8430 |
+
|
8431 |
+
.p-sm-5 {
|
8432 |
+
padding: 3rem !important;
|
8433 |
+
}
|
8434 |
+
|
8435 |
+
.px-sm-0 {
|
8436 |
+
padding-right: 0 !important;
|
8437 |
+
padding-left: 0 !important;
|
8438 |
+
}
|
8439 |
+
|
8440 |
+
.px-sm-1 {
|
8441 |
+
padding-right: 0.25rem !important;
|
8442 |
+
padding-left: 0.25rem !important;
|
8443 |
+
}
|
8444 |
+
|
8445 |
+
.px-sm-2 {
|
8446 |
+
padding-right: 0.5rem !important;
|
8447 |
+
padding-left: 0.5rem !important;
|
8448 |
+
}
|
8449 |
+
|
8450 |
+
.px-sm-3 {
|
8451 |
+
padding-right: 1rem !important;
|
8452 |
+
padding-left: 1rem !important;
|
8453 |
+
}
|
8454 |
+
|
8455 |
+
.px-sm-4 {
|
8456 |
+
padding-right: 1.5rem !important;
|
8457 |
+
padding-left: 1.5rem !important;
|
8458 |
+
}
|
8459 |
+
|
8460 |
+
.px-sm-5 {
|
8461 |
+
padding-right: 3rem !important;
|
8462 |
+
padding-left: 3rem !important;
|
8463 |
+
}
|
8464 |
+
|
8465 |
+
.py-sm-0 {
|
8466 |
+
padding-top: 0 !important;
|
8467 |
+
padding-bottom: 0 !important;
|
8468 |
+
}
|
8469 |
+
|
8470 |
+
.py-sm-1 {
|
8471 |
+
padding-top: 0.25rem !important;
|
8472 |
+
padding-bottom: 0.25rem !important;
|
8473 |
+
}
|
8474 |
+
|
8475 |
+
.py-sm-2 {
|
8476 |
+
padding-top: 0.5rem !important;
|
8477 |
+
padding-bottom: 0.5rem !important;
|
8478 |
+
}
|
8479 |
+
|
8480 |
+
.py-sm-3 {
|
8481 |
+
padding-top: 1rem !important;
|
8482 |
+
padding-bottom: 1rem !important;
|
8483 |
+
}
|
8484 |
+
|
8485 |
+
.py-sm-4 {
|
8486 |
+
padding-top: 1.5rem !important;
|
8487 |
+
padding-bottom: 1.5rem !important;
|
8488 |
+
}
|
8489 |
+
|
8490 |
+
.py-sm-5 {
|
8491 |
+
padding-top: 3rem !important;
|
8492 |
+
padding-bottom: 3rem !important;
|
8493 |
+
}
|
8494 |
+
|
8495 |
+
.pt-sm-0 {
|
8496 |
+
padding-top: 0 !important;
|
8497 |
+
}
|
8498 |
+
|
8499 |
+
.pt-sm-1 {
|
8500 |
+
padding-top: 0.25rem !important;
|
8501 |
+
}
|
8502 |
+
|
8503 |
+
.pt-sm-2 {
|
8504 |
+
padding-top: 0.5rem !important;
|
8505 |
+
}
|
8506 |
+
|
8507 |
+
.pt-sm-3 {
|
8508 |
+
padding-top: 1rem !important;
|
8509 |
+
}
|
8510 |
+
|
8511 |
+
.pt-sm-4 {
|
8512 |
+
padding-top: 1.5rem !important;
|
8513 |
+
}
|
8514 |
+
|
8515 |
+
.pt-sm-5 {
|
8516 |
+
padding-top: 3rem !important;
|
8517 |
+
}
|
8518 |
+
|
8519 |
+
.pe-sm-0 {
|
8520 |
+
padding-right: 0 !important;
|
8521 |
+
}
|
8522 |
+
|
8523 |
+
.pe-sm-1 {
|
8524 |
+
padding-right: 0.25rem !important;
|
8525 |
+
}
|
8526 |
+
|
8527 |
+
.pe-sm-2 {
|
8528 |
+
padding-right: 0.5rem !important;
|
8529 |
+
}
|
8530 |
+
|
8531 |
+
.pe-sm-3 {
|
8532 |
+
padding-right: 1rem !important;
|
8533 |
+
}
|
8534 |
+
|
8535 |
+
.pe-sm-4 {
|
8536 |
+
padding-right: 1.5rem !important;
|
8537 |
+
}
|
8538 |
+
|
8539 |
+
.pe-sm-5 {
|
8540 |
+
padding-right: 3rem !important;
|
8541 |
+
}
|
8542 |
+
|
8543 |
+
.pb-sm-0 {
|
8544 |
+
padding-bottom: 0 !important;
|
8545 |
+
}
|
8546 |
+
|
8547 |
+
.pb-sm-1 {
|
8548 |
+
padding-bottom: 0.25rem !important;
|
8549 |
+
}
|
8550 |
+
|
8551 |
+
.pb-sm-2 {
|
8552 |
+
padding-bottom: 0.5rem !important;
|
8553 |
+
}
|
8554 |
+
|
8555 |
+
.pb-sm-3 {
|
8556 |
+
padding-bottom: 1rem !important;
|
8557 |
+
}
|
8558 |
+
|
8559 |
+
.pb-sm-4 {
|
8560 |
+
padding-bottom: 1.5rem !important;
|
8561 |
+
}
|
8562 |
+
|
8563 |
+
.pb-sm-5 {
|
8564 |
+
padding-bottom: 3rem !important;
|
8565 |
+
}
|
8566 |
+
|
8567 |
+
.ps-sm-0 {
|
8568 |
+
padding-left: 0 !important;
|
8569 |
+
}
|
8570 |
+
|
8571 |
+
.ps-sm-1 {
|
8572 |
+
padding-left: 0.25rem !important;
|
8573 |
+
}
|
8574 |
+
|
8575 |
+
.ps-sm-2 {
|
8576 |
+
padding-left: 0.5rem !important;
|
8577 |
+
}
|
8578 |
+
|
8579 |
+
.ps-sm-3 {
|
8580 |
+
padding-left: 1rem !important;
|
8581 |
+
}
|
8582 |
+
|
8583 |
+
.ps-sm-4 {
|
8584 |
+
padding-left: 1.5rem !important;
|
8585 |
+
}
|
8586 |
+
|
8587 |
+
.ps-sm-5 {
|
8588 |
+
padding-left: 3rem !important;
|
8589 |
+
}
|
8590 |
+
|
8591 |
+
.text-sm-start {
|
8592 |
+
text-align: left !important;
|
8593 |
+
}
|
8594 |
+
|
8595 |
+
.text-sm-end {
|
8596 |
+
text-align: right !important;
|
8597 |
+
}
|
8598 |
+
|
8599 |
+
.text-sm-center {
|
8600 |
+
text-align: center !important;
|
8601 |
+
}
|
8602 |
+
}
|
8603 |
+
@media (min-width: 768px) {
|
8604 |
+
.float-md-start {
|
8605 |
+
float: left !important;
|
8606 |
+
}
|
8607 |
+
|
8608 |
+
.float-md-end {
|
8609 |
+
float: right !important;
|
8610 |
+
}
|
8611 |
+
|
8612 |
+
.float-md-none {
|
8613 |
+
float: none !important;
|
8614 |
+
}
|
8615 |
+
|
8616 |
+
.d-md-inline {
|
8617 |
+
display: inline !important;
|
8618 |
+
}
|
8619 |
+
|
8620 |
+
.d-md-inline-block {
|
8621 |
+
display: inline-block !important;
|
8622 |
+
}
|
8623 |
+
|
8624 |
+
.d-md-block {
|
8625 |
+
display: block !important;
|
8626 |
+
}
|
8627 |
+
|
8628 |
+
.d-md-grid {
|
8629 |
+
display: grid !important;
|
8630 |
+
}
|
8631 |
+
|
8632 |
+
.d-md-table {
|
8633 |
+
display: table !important;
|
8634 |
+
}
|
8635 |
+
|
8636 |
+
.d-md-table-row {
|
8637 |
+
display: table-row !important;
|
8638 |
+
}
|
8639 |
+
|
8640 |
+
.d-md-table-cell {
|
8641 |
+
display: table-cell !important;
|
8642 |
+
}
|
8643 |
+
|
8644 |
+
.d-md-flex {
|
8645 |
+
display: flex !important;
|
8646 |
+
}
|
8647 |
+
|
8648 |
+
.d-md-inline-flex {
|
8649 |
+
display: inline-flex !important;
|
8650 |
+
}
|
8651 |
+
|
8652 |
+
.d-md-none {
|
8653 |
+
display: none !important;
|
8654 |
+
}
|
8655 |
+
|
8656 |
+
.flex-md-fill {
|
8657 |
+
flex: 1 1 auto !important;
|
8658 |
+
}
|
8659 |
+
|
8660 |
+
.flex-md-row {
|
8661 |
+
flex-direction: row !important;
|
8662 |
+
}
|
8663 |
+
|
8664 |
+
.flex-md-column {
|
8665 |
+
flex-direction: column !important;
|
8666 |
+
}
|
8667 |
+
|
8668 |
+
.flex-md-row-reverse {
|
8669 |
+
flex-direction: row-reverse !important;
|
8670 |
+
}
|
8671 |
+
|
8672 |
+
.flex-md-column-reverse {
|
8673 |
+
flex-direction: column-reverse !important;
|
8674 |
+
}
|
8675 |
+
|
8676 |
+
.flex-md-grow-0 {
|
8677 |
+
flex-grow: 0 !important;
|
8678 |
+
}
|
8679 |
+
|
8680 |
+
.flex-md-grow-1 {
|
8681 |
+
flex-grow: 1 !important;
|
8682 |
+
}
|
8683 |
+
|
8684 |
+
.flex-md-shrink-0 {
|
8685 |
+
flex-shrink: 0 !important;
|
8686 |
+
}
|
8687 |
+
|
8688 |
+
.flex-md-shrink-1 {
|
8689 |
+
flex-shrink: 1 !important;
|
8690 |
+
}
|
8691 |
+
|
8692 |
+
.flex-md-wrap {
|
8693 |
+
flex-wrap: wrap !important;
|
8694 |
+
}
|
8695 |
+
|
8696 |
+
.flex-md-nowrap {
|
8697 |
+
flex-wrap: nowrap !important;
|
8698 |
+
}
|
8699 |
+
|
8700 |
+
.flex-md-wrap-reverse {
|
8701 |
+
flex-wrap: wrap-reverse !important;
|
8702 |
+
}
|
8703 |
+
|
8704 |
+
.gap-md-0 {
|
8705 |
+
gap: 0 !important;
|
8706 |
+
}
|
8707 |
+
|
8708 |
+
.gap-md-1 {
|
8709 |
+
gap: 0.25rem !important;
|
8710 |
+
}
|
8711 |
+
|
8712 |
+
.gap-md-2 {
|
8713 |
+
gap: 0.5rem !important;
|
8714 |
+
}
|
8715 |
+
|
8716 |
+
.gap-md-3 {
|
8717 |
+
gap: 1rem !important;
|
8718 |
+
}
|
8719 |
+
|
8720 |
+
.gap-md-4 {
|
8721 |
+
gap: 1.5rem !important;
|
8722 |
+
}
|
8723 |
+
|
8724 |
+
.gap-md-5 {
|
8725 |
+
gap: 3rem !important;
|
8726 |
+
}
|
8727 |
+
|
8728 |
+
.justify-content-md-start {
|
8729 |
+
justify-content: flex-start !important;
|
8730 |
+
}
|
8731 |
+
|
8732 |
+
.justify-content-md-end {
|
8733 |
+
justify-content: flex-end !important;
|
8734 |
+
}
|
8735 |
+
|
8736 |
+
.justify-content-md-center {
|
8737 |
+
justify-content: center !important;
|
8738 |
+
}
|
8739 |
+
|
8740 |
+
.justify-content-md-between {
|
8741 |
+
justify-content: space-between !important;
|
8742 |
+
}
|
8743 |
+
|
8744 |
+
.justify-content-md-around {
|
8745 |
+
justify-content: space-around !important;
|
8746 |
+
}
|
8747 |
+
|
8748 |
+
.justify-content-md-evenly {
|
8749 |
+
justify-content: space-evenly !important;
|
8750 |
+
}
|
8751 |
+
|
8752 |
+
.align-items-md-start {
|
8753 |
+
align-items: flex-start !important;
|
8754 |
+
}
|
8755 |
+
|
8756 |
+
.align-items-md-end {
|
8757 |
+
align-items: flex-end !important;
|
8758 |
+
}
|
8759 |
+
|
8760 |
+
.align-items-md-center {
|
8761 |
+
align-items: center !important;
|
8762 |
+
}
|
8763 |
+
|
8764 |
+
.align-items-md-baseline {
|
8765 |
+
align-items: baseline !important;
|
8766 |
+
}
|
8767 |
+
|
8768 |
+
.align-items-md-stretch {
|
8769 |
+
align-items: stretch !important;
|
8770 |
+
}
|
8771 |
+
|
8772 |
+
.align-content-md-start {
|
8773 |
+
align-content: flex-start !important;
|
8774 |
+
}
|
8775 |
+
|
8776 |
+
.align-content-md-end {
|
8777 |
+
align-content: flex-end !important;
|
8778 |
+
}
|
8779 |
+
|
8780 |
+
.align-content-md-center {
|
8781 |
+
align-content: center !important;
|
8782 |
+
}
|
8783 |
+
|
8784 |
+
.align-content-md-between {
|
8785 |
+
align-content: space-between !important;
|
8786 |
+
}
|
8787 |
+
|
8788 |
+
.align-content-md-around {
|
8789 |
+
align-content: space-around !important;
|
8790 |
+
}
|
8791 |
+
|
8792 |
+
.align-content-md-stretch {
|
8793 |
+
align-content: stretch !important;
|
8794 |
+
}
|
8795 |
+
|
8796 |
+
.align-self-md-auto {
|
8797 |
+
align-self: auto !important;
|
8798 |
+
}
|
8799 |
+
|
8800 |
+
.align-self-md-start {
|
8801 |
+
align-self: flex-start !important;
|
8802 |
+
}
|
8803 |
+
|
8804 |
+
.align-self-md-end {
|
8805 |
+
align-self: flex-end !important;
|
8806 |
+
}
|
8807 |
+
|
8808 |
+
.align-self-md-center {
|
8809 |
+
align-self: center !important;
|
8810 |
+
}
|
8811 |
+
|
8812 |
+
.align-self-md-baseline {
|
8813 |
+
align-self: baseline !important;
|
8814 |
+
}
|
8815 |
+
|
8816 |
+
.align-self-md-stretch {
|
8817 |
+
align-self: stretch !important;
|
8818 |
+
}
|
8819 |
+
|
8820 |
+
.order-md-first {
|
8821 |
+
order: -1 !important;
|
8822 |
+
}
|
8823 |
+
|
8824 |
+
.order-md-0 {
|
8825 |
+
order: 0 !important;
|
8826 |
+
}
|
8827 |
+
|
8828 |
+
.order-md-1 {
|
8829 |
+
order: 1 !important;
|
8830 |
+
}
|
8831 |
+
|
8832 |
+
.order-md-2 {
|
8833 |
+
order: 2 !important;
|
8834 |
+
}
|
8835 |
+
|
8836 |
+
.order-md-3 {
|
8837 |
+
order: 3 !important;
|
8838 |
+
}
|
8839 |
+
|
8840 |
+
.order-md-4 {
|
8841 |
+
order: 4 !important;
|
8842 |
+
}
|
8843 |
+
|
8844 |
+
.order-md-5 {
|
8845 |
+
order: 5 !important;
|
8846 |
+
}
|
8847 |
+
|
8848 |
+
.order-md-last {
|
8849 |
+
order: 6 !important;
|
8850 |
+
}
|
8851 |
+
|
8852 |
+
.m-md-0 {
|
8853 |
+
margin: 0 !important;
|
8854 |
+
}
|
8855 |
+
|
8856 |
+
.m-md-1 {
|
8857 |
+
margin: 0.25rem !important;
|
8858 |
+
}
|
8859 |
+
|
8860 |
+
.m-md-2 {
|
8861 |
+
margin: 0.5rem !important;
|
8862 |
+
}
|
8863 |
+
|
8864 |
+
.m-md-3 {
|
8865 |
+
margin: 1rem !important;
|
8866 |
+
}
|
8867 |
+
|
8868 |
+
.m-md-4 {
|
8869 |
+
margin: 1.5rem !important;
|
8870 |
+
}
|
8871 |
+
|
8872 |
+
.m-md-5 {
|
8873 |
+
margin: 3rem !important;
|
8874 |
+
}
|
8875 |
+
|
8876 |
+
.m-md-auto {
|
8877 |
+
margin: auto !important;
|
8878 |
+
}
|
8879 |
+
|
8880 |
+
.mx-md-0 {
|
8881 |
+
margin-right: 0 !important;
|
8882 |
+
margin-left: 0 !important;
|
8883 |
+
}
|
8884 |
+
|
8885 |
+
.mx-md-1 {
|
8886 |
+
margin-right: 0.25rem !important;
|
8887 |
+
margin-left: 0.25rem !important;
|
8888 |
+
}
|
8889 |
+
|
8890 |
+
.mx-md-2 {
|
8891 |
+
margin-right: 0.5rem !important;
|
8892 |
+
margin-left: 0.5rem !important;
|
8893 |
+
}
|
8894 |
+
|
8895 |
+
.mx-md-3 {
|
8896 |
+
margin-right: 1rem !important;
|
8897 |
+
margin-left: 1rem !important;
|
8898 |
+
}
|
8899 |
+
|
8900 |
+
.mx-md-4 {
|
8901 |
+
margin-right: 1.5rem !important;
|
8902 |
+
margin-left: 1.5rem !important;
|
8903 |
+
}
|
8904 |
+
|
8905 |
+
.mx-md-5 {
|
8906 |
+
margin-right: 3rem !important;
|
8907 |
+
margin-left: 3rem !important;
|
8908 |
+
}
|
8909 |
+
|
8910 |
+
.mx-md-auto {
|
8911 |
+
margin-right: auto !important;
|
8912 |
+
margin-left: auto !important;
|
8913 |
+
}
|
8914 |
+
|
8915 |
+
.my-md-0 {
|
8916 |
+
margin-top: 0 !important;
|
8917 |
+
margin-bottom: 0 !important;
|
8918 |
+
}
|
8919 |
+
|
8920 |
+
.my-md-1 {
|
8921 |
+
margin-top: 0.25rem !important;
|
8922 |
+
margin-bottom: 0.25rem !important;
|
8923 |
+
}
|
8924 |
+
|
8925 |
+
.my-md-2 {
|
8926 |
+
margin-top: 0.5rem !important;
|
8927 |
+
margin-bottom: 0.5rem !important;
|
8928 |
+
}
|
8929 |
+
|
8930 |
+
.my-md-3 {
|
8931 |
+
margin-top: 1rem !important;
|
8932 |
+
margin-bottom: 1rem !important;
|
8933 |
+
}
|
8934 |
+
|
8935 |
+
.my-md-4 {
|
8936 |
+
margin-top: 1.5rem !important;
|
8937 |
+
margin-bottom: 1.5rem !important;
|
8938 |
+
}
|
8939 |
+
|
8940 |
+
.my-md-5 {
|
8941 |
+
margin-top: 3rem !important;
|
8942 |
+
margin-bottom: 3rem !important;
|
8943 |
+
}
|
8944 |
+
|
8945 |
+
.my-md-auto {
|
8946 |
+
margin-top: auto !important;
|
8947 |
+
margin-bottom: auto !important;
|
8948 |
+
}
|
8949 |
+
|
8950 |
+
.mt-md-0 {
|
8951 |
+
margin-top: 0 !important;
|
8952 |
+
}
|
8953 |
+
|
8954 |
+
.mt-md-1 {
|
8955 |
+
margin-top: 0.25rem !important;
|
8956 |
+
}
|
8957 |
+
|
8958 |
+
.mt-md-2 {
|
8959 |
+
margin-top: 0.5rem !important;
|
8960 |
+
}
|
8961 |
+
|
8962 |
+
.mt-md-3 {
|
8963 |
+
margin-top: 1rem !important;
|
8964 |
+
}
|
8965 |
+
|
8966 |
+
.mt-md-4 {
|
8967 |
+
margin-top: 1.5rem !important;
|
8968 |
+
}
|
8969 |
+
|
8970 |
+
.mt-md-5 {
|
8971 |
+
margin-top: 3rem !important;
|
8972 |
+
}
|
8973 |
+
|
8974 |
+
.mt-md-auto {
|
8975 |
+
margin-top: auto !important;
|
8976 |
+
}
|
8977 |
+
|
8978 |
+
.me-md-0 {
|
8979 |
+
margin-right: 0 !important;
|
8980 |
+
}
|
8981 |
+
|
8982 |
+
.me-md-1 {
|
8983 |
+
margin-right: 0.25rem !important;
|
8984 |
+
}
|
8985 |
+
|
8986 |
+
.me-md-2 {
|
8987 |
+
margin-right: 0.5rem !important;
|
8988 |
+
}
|
8989 |
+
|
8990 |
+
.me-md-3 {
|
8991 |
+
margin-right: 1rem !important;
|
8992 |
+
}
|
8993 |
+
|
8994 |
+
.me-md-4 {
|
8995 |
+
margin-right: 1.5rem !important;
|
8996 |
+
}
|
8997 |
+
|
8998 |
+
.me-md-5 {
|
8999 |
+
margin-right: 3rem !important;
|
9000 |
+
}
|
9001 |
+
|
9002 |
+
.me-md-auto {
|
9003 |
+
margin-right: auto !important;
|
9004 |
+
}
|
9005 |
+
|
9006 |
+
.mb-md-0 {
|
9007 |
+
margin-bottom: 0 !important;
|
9008 |
+
}
|
9009 |
+
|
9010 |
+
.mb-md-1 {
|
9011 |
+
margin-bottom: 0.25rem !important;
|
9012 |
+
}
|
9013 |
+
|
9014 |
+
.mb-md-2 {
|
9015 |
+
margin-bottom: 0.5rem !important;
|
9016 |
+
}
|
9017 |
+
|
9018 |
+
.mb-md-3 {
|
9019 |
+
margin-bottom: 1rem !important;
|
9020 |
+
}
|
9021 |
+
|
9022 |
+
.mb-md-4 {
|
9023 |
+
margin-bottom: 1.5rem !important;
|
9024 |
+
}
|
9025 |
+
|
9026 |
+
.mb-md-5 {
|
9027 |
+
margin-bottom: 3rem !important;
|
9028 |
+
}
|
9029 |
+
|
9030 |
+
.mb-md-auto {
|
9031 |
+
margin-bottom: auto !important;
|
9032 |
+
}
|
9033 |
+
|
9034 |
+
.ms-md-0 {
|
9035 |
+
margin-left: 0 !important;
|
9036 |
+
}
|
9037 |
+
|
9038 |
+
.ms-md-1 {
|
9039 |
+
margin-left: 0.25rem !important;
|
9040 |
+
}
|
9041 |
+
|
9042 |
+
.ms-md-2 {
|
9043 |
+
margin-left: 0.5rem !important;
|
9044 |
+
}
|
9045 |
+
|
9046 |
+
.ms-md-3 {
|
9047 |
+
margin-left: 1rem !important;
|
9048 |
+
}
|
9049 |
+
|
9050 |
+
.ms-md-4 {
|
9051 |
+
margin-left: 1.5rem !important;
|
9052 |
+
}
|
9053 |
+
|
9054 |
+
.ms-md-5 {
|
9055 |
+
margin-left: 3rem !important;
|
9056 |
+
}
|
9057 |
+
|
9058 |
+
.ms-md-auto {
|
9059 |
+
margin-left: auto !important;
|
9060 |
+
}
|
9061 |
+
|
9062 |
+
.p-md-0 {
|
9063 |
+
padding: 0 !important;
|
9064 |
+
}
|
9065 |
+
|
9066 |
+
.p-md-1 {
|
9067 |
+
padding: 0.25rem !important;
|
9068 |
+
}
|
9069 |
+
|
9070 |
+
.p-md-2 {
|
9071 |
+
padding: 0.5rem !important;
|
9072 |
+
}
|
9073 |
+
|
9074 |
+
.p-md-3 {
|
9075 |
+
padding: 1rem !important;
|
9076 |
+
}
|
9077 |
+
|
9078 |
+
.p-md-4 {
|
9079 |
+
padding: 1.5rem !important;
|
9080 |
+
}
|
9081 |
+
|
9082 |
+
.p-md-5 {
|
9083 |
+
padding: 3rem !important;
|
9084 |
+
}
|
9085 |
+
|
9086 |
+
.px-md-0 {
|
9087 |
+
padding-right: 0 !important;
|
9088 |
+
padding-left: 0 !important;
|
9089 |
+
}
|
9090 |
+
|
9091 |
+
.px-md-1 {
|
9092 |
+
padding-right: 0.25rem !important;
|
9093 |
+
padding-left: 0.25rem !important;
|
9094 |
+
}
|
9095 |
+
|
9096 |
+
.px-md-2 {
|
9097 |
+
padding-right: 0.5rem !important;
|
9098 |
+
padding-left: 0.5rem !important;
|
9099 |
+
}
|
9100 |
+
|
9101 |
+
.px-md-3 {
|
9102 |
+
padding-right: 1rem !important;
|
9103 |
+
padding-left: 1rem !important;
|
9104 |
+
}
|
9105 |
+
|
9106 |
+
.px-md-4 {
|
9107 |
+
padding-right: 1.5rem !important;
|
9108 |
+
padding-left: 1.5rem !important;
|
9109 |
+
}
|
9110 |
+
|
9111 |
+
.px-md-5 {
|
9112 |
+
padding-right: 3rem !important;
|
9113 |
+
padding-left: 3rem !important;
|
9114 |
+
}
|
9115 |
+
|
9116 |
+
.py-md-0 {
|
9117 |
+
padding-top: 0 !important;
|
9118 |
+
padding-bottom: 0 !important;
|
9119 |
+
}
|
9120 |
+
|
9121 |
+
.py-md-1 {
|
9122 |
+
padding-top: 0.25rem !important;
|
9123 |
+
padding-bottom: 0.25rem !important;
|
9124 |
+
}
|
9125 |
+
|
9126 |
+
.py-md-2 {
|
9127 |
+
padding-top: 0.5rem !important;
|
9128 |
+
padding-bottom: 0.5rem !important;
|
9129 |
+
}
|
9130 |
+
|
9131 |
+
.py-md-3 {
|
9132 |
+
padding-top: 1rem !important;
|
9133 |
+
padding-bottom: 1rem !important;
|
9134 |
+
}
|
9135 |
+
|
9136 |
+
.py-md-4 {
|
9137 |
+
padding-top: 1.5rem !important;
|
9138 |
+
padding-bottom: 1.5rem !important;
|
9139 |
+
}
|
9140 |
+
|
9141 |
+
.py-md-5 {
|
9142 |
+
padding-top: 3rem !important;
|
9143 |
+
padding-bottom: 3rem !important;
|
9144 |
+
}
|
9145 |
+
|
9146 |
+
.pt-md-0 {
|
9147 |
+
padding-top: 0 !important;
|
9148 |
+
}
|
9149 |
+
|
9150 |
+
.pt-md-1 {
|
9151 |
+
padding-top: 0.25rem !important;
|
9152 |
+
}
|
9153 |
+
|
9154 |
+
.pt-md-2 {
|
9155 |
+
padding-top: 0.5rem !important;
|
9156 |
+
}
|
9157 |
+
|
9158 |
+
.pt-md-3 {
|
9159 |
+
padding-top: 1rem !important;
|
9160 |
+
}
|
9161 |
+
|
9162 |
+
.pt-md-4 {
|
9163 |
+
padding-top: 1.5rem !important;
|
9164 |
+
}
|
9165 |
+
|
9166 |
+
.pt-md-5 {
|
9167 |
+
padding-top: 3rem !important;
|
9168 |
+
}
|
9169 |
+
|
9170 |
+
.pe-md-0 {
|
9171 |
+
padding-right: 0 !important;
|
9172 |
+
}
|
9173 |
+
|
9174 |
+
.pe-md-1 {
|
9175 |
+
padding-right: 0.25rem !important;
|
9176 |
+
}
|
9177 |
+
|
9178 |
+
.pe-md-2 {
|
9179 |
+
padding-right: 0.5rem !important;
|
9180 |
+
}
|
9181 |
+
|
9182 |
+
.pe-md-3 {
|
9183 |
+
padding-right: 1rem !important;
|
9184 |
+
}
|
9185 |
+
|
9186 |
+
.pe-md-4 {
|
9187 |
+
padding-right: 1.5rem !important;
|
9188 |
+
}
|
9189 |
+
|
9190 |
+
.pe-md-5 {
|
9191 |
+
padding-right: 3rem !important;
|
9192 |
+
}
|
9193 |
+
|
9194 |
+
.pb-md-0 {
|
9195 |
+
padding-bottom: 0 !important;
|
9196 |
+
}
|
9197 |
+
|
9198 |
+
.pb-md-1 {
|
9199 |
+
padding-bottom: 0.25rem !important;
|
9200 |
+
}
|
9201 |
+
|
9202 |
+
.pb-md-2 {
|
9203 |
+
padding-bottom: 0.5rem !important;
|
9204 |
+
}
|
9205 |
+
|
9206 |
+
.pb-md-3 {
|
9207 |
+
padding-bottom: 1rem !important;
|
9208 |
+
}
|
9209 |
+
|
9210 |
+
.pb-md-4 {
|
9211 |
+
padding-bottom: 1.5rem !important;
|
9212 |
+
}
|
9213 |
+
|
9214 |
+
.pb-md-5 {
|
9215 |
+
padding-bottom: 3rem !important;
|
9216 |
+
}
|
9217 |
+
|
9218 |
+
.ps-md-0 {
|
9219 |
+
padding-left: 0 !important;
|
9220 |
+
}
|
9221 |
+
|
9222 |
+
.ps-md-1 {
|
9223 |
+
padding-left: 0.25rem !important;
|
9224 |
+
}
|
9225 |
+
|
9226 |
+
.ps-md-2 {
|
9227 |
+
padding-left: 0.5rem !important;
|
9228 |
+
}
|
9229 |
+
|
9230 |
+
.ps-md-3 {
|
9231 |
+
padding-left: 1rem !important;
|
9232 |
+
}
|
9233 |
+
|
9234 |
+
.ps-md-4 {
|
9235 |
+
padding-left: 1.5rem !important;
|
9236 |
+
}
|
9237 |
+
|
9238 |
+
.ps-md-5 {
|
9239 |
+
padding-left: 3rem !important;
|
9240 |
+
}
|
9241 |
+
|
9242 |
+
.text-md-start {
|
9243 |
+
text-align: left !important;
|
9244 |
+
}
|
9245 |
+
|
9246 |
+
.text-md-end {
|
9247 |
+
text-align: right !important;
|
9248 |
+
}
|
9249 |
+
|
9250 |
+
.text-md-center {
|
9251 |
+
text-align: center !important;
|
9252 |
+
}
|
9253 |
+
}
|
9254 |
+
@media (min-width: 992px) {
|
9255 |
+
.float-lg-start {
|
9256 |
+
float: left !important;
|
9257 |
+
}
|
9258 |
+
|
9259 |
+
.float-lg-end {
|
9260 |
+
float: right !important;
|
9261 |
+
}
|
9262 |
+
|
9263 |
+
.float-lg-none {
|
9264 |
+
float: none !important;
|
9265 |
+
}
|
9266 |
+
|
9267 |
+
.d-lg-inline {
|
9268 |
+
display: inline !important;
|
9269 |
+
}
|
9270 |
+
|
9271 |
+
.d-lg-inline-block {
|
9272 |
+
display: inline-block !important;
|
9273 |
+
}
|
9274 |
+
|
9275 |
+
.d-lg-block {
|
9276 |
+
display: block !important;
|
9277 |
+
}
|
9278 |
+
|
9279 |
+
.d-lg-grid {
|
9280 |
+
display: grid !important;
|
9281 |
+
}
|
9282 |
+
|
9283 |
+
.d-lg-table {
|
9284 |
+
display: table !important;
|
9285 |
+
}
|
9286 |
+
|
9287 |
+
.d-lg-table-row {
|
9288 |
+
display: table-row !important;
|
9289 |
+
}
|
9290 |
+
|
9291 |
+
.d-lg-table-cell {
|
9292 |
+
display: table-cell !important;
|
9293 |
+
}
|
9294 |
+
|
9295 |
+
.d-lg-flex {
|
9296 |
+
display: flex !important;
|
9297 |
+
}
|
9298 |
+
|
9299 |
+
.d-lg-inline-flex {
|
9300 |
+
display: inline-flex !important;
|
9301 |
+
}
|
9302 |
+
|
9303 |
+
.d-lg-none {
|
9304 |
+
display: none !important;
|
9305 |
+
}
|
9306 |
+
|
9307 |
+
.flex-lg-fill {
|
9308 |
+
flex: 1 1 auto !important;
|
9309 |
+
}
|
9310 |
+
|
9311 |
+
.flex-lg-row {
|
9312 |
+
flex-direction: row !important;
|
9313 |
+
}
|
9314 |
+
|
9315 |
+
.flex-lg-column {
|
9316 |
+
flex-direction: column !important;
|
9317 |
+
}
|
9318 |
+
|
9319 |
+
.flex-lg-row-reverse {
|
9320 |
+
flex-direction: row-reverse !important;
|
9321 |
+
}
|
9322 |
+
|
9323 |
+
.flex-lg-column-reverse {
|
9324 |
+
flex-direction: column-reverse !important;
|
9325 |
+
}
|
9326 |
+
|
9327 |
+
.flex-lg-grow-0 {
|
9328 |
+
flex-grow: 0 !important;
|
9329 |
+
}
|
9330 |
+
|
9331 |
+
.flex-lg-grow-1 {
|
9332 |
+
flex-grow: 1 !important;
|
9333 |
+
}
|
9334 |
+
|
9335 |
+
.flex-lg-shrink-0 {
|
9336 |
+
flex-shrink: 0 !important;
|
9337 |
+
}
|
9338 |
+
|
9339 |
+
.flex-lg-shrink-1 {
|
9340 |
+
flex-shrink: 1 !important;
|
9341 |
+
}
|
9342 |
+
|
9343 |
+
.flex-lg-wrap {
|
9344 |
+
flex-wrap: wrap !important;
|
9345 |
+
}
|
9346 |
+
|
9347 |
+
.flex-lg-nowrap {
|
9348 |
+
flex-wrap: nowrap !important;
|
9349 |
+
}
|
9350 |
+
|
9351 |
+
.flex-lg-wrap-reverse {
|
9352 |
+
flex-wrap: wrap-reverse !important;
|
9353 |
+
}
|
9354 |
+
|
9355 |
+
.gap-lg-0 {
|
9356 |
+
gap: 0 !important;
|
9357 |
+
}
|
9358 |
+
|
9359 |
+
.gap-lg-1 {
|
9360 |
+
gap: 0.25rem !important;
|
9361 |
+
}
|
9362 |
+
|
9363 |
+
.gap-lg-2 {
|
9364 |
+
gap: 0.5rem !important;
|
9365 |
+
}
|
9366 |
+
|
9367 |
+
.gap-lg-3 {
|
9368 |
+
gap: 1rem !important;
|
9369 |
+
}
|
9370 |
+
|
9371 |
+
.gap-lg-4 {
|
9372 |
+
gap: 1.5rem !important;
|
9373 |
+
}
|
9374 |
+
|
9375 |
+
.gap-lg-5 {
|
9376 |
+
gap: 3rem !important;
|
9377 |
+
}
|
9378 |
+
|
9379 |
+
.justify-content-lg-start {
|
9380 |
+
justify-content: flex-start !important;
|
9381 |
+
}
|
9382 |
+
|
9383 |
+
.justify-content-lg-end {
|
9384 |
+
justify-content: flex-end !important;
|
9385 |
+
}
|
9386 |
+
|
9387 |
+
.justify-content-lg-center {
|
9388 |
+
justify-content: center !important;
|
9389 |
+
}
|
9390 |
+
|
9391 |
+
.justify-content-lg-between {
|
9392 |
+
justify-content: space-between !important;
|
9393 |
+
}
|
9394 |
+
|
9395 |
+
.justify-content-lg-around {
|
9396 |
+
justify-content: space-around !important;
|
9397 |
+
}
|
9398 |
+
|
9399 |
+
.justify-content-lg-evenly {
|
9400 |
+
justify-content: space-evenly !important;
|
9401 |
+
}
|
9402 |
+
|
9403 |
+
.align-items-lg-start {
|
9404 |
+
align-items: flex-start !important;
|
9405 |
+
}
|
9406 |
+
|
9407 |
+
.align-items-lg-end {
|
9408 |
+
align-items: flex-end !important;
|
9409 |
+
}
|
9410 |
+
|
9411 |
+
.align-items-lg-center {
|
9412 |
+
align-items: center !important;
|
9413 |
+
}
|
9414 |
+
|
9415 |
+
.align-items-lg-baseline {
|
9416 |
+
align-items: baseline !important;
|
9417 |
+
}
|
9418 |
+
|
9419 |
+
.align-items-lg-stretch {
|
9420 |
+
align-items: stretch !important;
|
9421 |
+
}
|
9422 |
+
|
9423 |
+
.align-content-lg-start {
|
9424 |
+
align-content: flex-start !important;
|
9425 |
+
}
|
9426 |
+
|
9427 |
+
.align-content-lg-end {
|
9428 |
+
align-content: flex-end !important;
|
9429 |
+
}
|
9430 |
+
|
9431 |
+
.align-content-lg-center {
|
9432 |
+
align-content: center !important;
|
9433 |
+
}
|
9434 |
+
|
9435 |
+
.align-content-lg-between {
|
9436 |
+
align-content: space-between !important;
|
9437 |
+
}
|
9438 |
+
|
9439 |
+
.align-content-lg-around {
|
9440 |
+
align-content: space-around !important;
|
9441 |
+
}
|
9442 |
+
|
9443 |
+
.align-content-lg-stretch {
|
9444 |
+
align-content: stretch !important;
|
9445 |
+
}
|
9446 |
+
|
9447 |
+
.align-self-lg-auto {
|
9448 |
+
align-self: auto !important;
|
9449 |
+
}
|
9450 |
+
|
9451 |
+
.align-self-lg-start {
|
9452 |
+
align-self: flex-start !important;
|
9453 |
+
}
|
9454 |
+
|
9455 |
+
.align-self-lg-end {
|
9456 |
+
align-self: flex-end !important;
|
9457 |
+
}
|
9458 |
+
|
9459 |
+
.align-self-lg-center {
|
9460 |
+
align-self: center !important;
|
9461 |
+
}
|
9462 |
+
|
9463 |
+
.align-self-lg-baseline {
|
9464 |
+
align-self: baseline !important;
|
9465 |
+
}
|
9466 |
+
|
9467 |
+
.align-self-lg-stretch {
|
9468 |
+
align-self: stretch !important;
|
9469 |
+
}
|
9470 |
+
|
9471 |
+
.order-lg-first {
|
9472 |
+
order: -1 !important;
|
9473 |
+
}
|
9474 |
+
|
9475 |
+
.order-lg-0 {
|
9476 |
+
order: 0 !important;
|
9477 |
+
}
|
9478 |
+
|
9479 |
+
.order-lg-1 {
|
9480 |
+
order: 1 !important;
|
9481 |
+
}
|
9482 |
+
|
9483 |
+
.order-lg-2 {
|
9484 |
+
order: 2 !important;
|
9485 |
+
}
|
9486 |
+
|
9487 |
+
.order-lg-3 {
|
9488 |
+
order: 3 !important;
|
9489 |
+
}
|
9490 |
+
|
9491 |
+
.order-lg-4 {
|
9492 |
+
order: 4 !important;
|
9493 |
+
}
|
9494 |
+
|
9495 |
+
.order-lg-5 {
|
9496 |
+
order: 5 !important;
|
9497 |
+
}
|
9498 |
+
|
9499 |
+
.order-lg-last {
|
9500 |
+
order: 6 !important;
|
9501 |
+
}
|
9502 |
+
|
9503 |
+
.m-lg-0 {
|
9504 |
+
margin: 0 !important;
|
9505 |
+
}
|
9506 |
+
|
9507 |
+
.m-lg-1 {
|
9508 |
+
margin: 0.25rem !important;
|
9509 |
+
}
|
9510 |
+
|
9511 |
+
.m-lg-2 {
|
9512 |
+
margin: 0.5rem !important;
|
9513 |
+
}
|
9514 |
+
|
9515 |
+
.m-lg-3 {
|
9516 |
+
margin: 1rem !important;
|
9517 |
+
}
|
9518 |
+
|
9519 |
+
.m-lg-4 {
|
9520 |
+
margin: 1.5rem !important;
|
9521 |
+
}
|
9522 |
+
|
9523 |
+
.m-lg-5 {
|
9524 |
+
margin: 3rem !important;
|
9525 |
+
}
|
9526 |
+
|
9527 |
+
.m-lg-auto {
|
9528 |
+
margin: auto !important;
|
9529 |
+
}
|
9530 |
+
|
9531 |
+
.mx-lg-0 {
|
9532 |
+
margin-right: 0 !important;
|
9533 |
+
margin-left: 0 !important;
|
9534 |
+
}
|
9535 |
+
|
9536 |
+
.mx-lg-1 {
|
9537 |
+
margin-right: 0.25rem !important;
|
9538 |
+
margin-left: 0.25rem !important;
|
9539 |
+
}
|
9540 |
+
|
9541 |
+
.mx-lg-2 {
|
9542 |
+
margin-right: 0.5rem !important;
|
9543 |
+
margin-left: 0.5rem !important;
|
9544 |
+
}
|
9545 |
+
|
9546 |
+
.mx-lg-3 {
|
9547 |
+
margin-right: 1rem !important;
|
9548 |
+
margin-left: 1rem !important;
|
9549 |
+
}
|
9550 |
+
|
9551 |
+
.mx-lg-4 {
|
9552 |
+
margin-right: 1.5rem !important;
|
9553 |
+
margin-left: 1.5rem !important;
|
9554 |
+
}
|
9555 |
+
|
9556 |
+
.mx-lg-5 {
|
9557 |
+
margin-right: 3rem !important;
|
9558 |
+
margin-left: 3rem !important;
|
9559 |
+
}
|
9560 |
+
|
9561 |
+
.mx-lg-auto {
|
9562 |
+
margin-right: auto !important;
|
9563 |
+
margin-left: auto !important;
|
9564 |
+
}
|
9565 |
+
|
9566 |
+
.my-lg-0 {
|
9567 |
+
margin-top: 0 !important;
|
9568 |
+
margin-bottom: 0 !important;
|
9569 |
+
}
|
9570 |
+
|
9571 |
+
.my-lg-1 {
|
9572 |
+
margin-top: 0.25rem !important;
|
9573 |
+
margin-bottom: 0.25rem !important;
|
9574 |
+
}
|
9575 |
+
|
9576 |
+
.my-lg-2 {
|
9577 |
+
margin-top: 0.5rem !important;
|
9578 |
+
margin-bottom: 0.5rem !important;
|
9579 |
+
}
|
9580 |
+
|
9581 |
+
.my-lg-3 {
|
9582 |
+
margin-top: 1rem !important;
|
9583 |
+
margin-bottom: 1rem !important;
|
9584 |
+
}
|
9585 |
+
|
9586 |
+
.my-lg-4 {
|
9587 |
+
margin-top: 1.5rem !important;
|
9588 |
+
margin-bottom: 1.5rem !important;
|
9589 |
+
}
|
9590 |
+
|
9591 |
+
.my-lg-5 {
|
9592 |
+
margin-top: 3rem !important;
|
9593 |
+
margin-bottom: 3rem !important;
|
9594 |
+
}
|
9595 |
+
|
9596 |
+
.my-lg-auto {
|
9597 |
+
margin-top: auto !important;
|
9598 |
+
margin-bottom: auto !important;
|
9599 |
+
}
|
9600 |
+
|
9601 |
+
.mt-lg-0 {
|
9602 |
+
margin-top: 0 !important;
|
9603 |
+
}
|
9604 |
+
|
9605 |
+
.mt-lg-1 {
|
9606 |
+
margin-top: 0.25rem !important;
|
9607 |
+
}
|
9608 |
+
|
9609 |
+
.mt-lg-2 {
|
9610 |
+
margin-top: 0.5rem !important;
|
9611 |
+
}
|
9612 |
+
|
9613 |
+
.mt-lg-3 {
|
9614 |
+
margin-top: 1rem !important;
|
9615 |
+
}
|
9616 |
+
|
9617 |
+
.mt-lg-4 {
|
9618 |
+
margin-top: 1.5rem !important;
|
9619 |
+
}
|
9620 |
+
|
9621 |
+
.mt-lg-5 {
|
9622 |
+
margin-top: 3rem !important;
|
9623 |
+
}
|
9624 |
+
|
9625 |
+
.mt-lg-auto {
|
9626 |
+
margin-top: auto !important;
|
9627 |
+
}
|
9628 |
+
|
9629 |
+
.me-lg-0 {
|
9630 |
+
margin-right: 0 !important;
|
9631 |
+
}
|
9632 |
+
|
9633 |
+
.me-lg-1 {
|
9634 |
+
margin-right: 0.25rem !important;
|
9635 |
+
}
|
9636 |
+
|
9637 |
+
.me-lg-2 {
|
9638 |
+
margin-right: 0.5rem !important;
|
9639 |
+
}
|
9640 |
+
|
9641 |
+
.me-lg-3 {
|
9642 |
+
margin-right: 1rem !important;
|
9643 |
+
}
|
9644 |
+
|
9645 |
+
.me-lg-4 {
|
9646 |
+
margin-right: 1.5rem !important;
|
9647 |
+
}
|
9648 |
+
|
9649 |
+
.me-lg-5 {
|
9650 |
+
margin-right: 3rem !important;
|
9651 |
+
}
|
9652 |
+
|
9653 |
+
.me-lg-auto {
|
9654 |
+
margin-right: auto !important;
|
9655 |
+
}
|
9656 |
+
|
9657 |
+
.mb-lg-0 {
|
9658 |
+
margin-bottom: 0 !important;
|
9659 |
+
}
|
9660 |
+
|
9661 |
+
.mb-lg-1 {
|
9662 |
+
margin-bottom: 0.25rem !important;
|
9663 |
+
}
|
9664 |
+
|
9665 |
+
.mb-lg-2 {
|
9666 |
+
margin-bottom: 0.5rem !important;
|
9667 |
+
}
|
9668 |
+
|
9669 |
+
.mb-lg-3 {
|
9670 |
+
margin-bottom: 1rem !important;
|
9671 |
+
}
|
9672 |
+
|
9673 |
+
.mb-lg-4 {
|
9674 |
+
margin-bottom: 1.5rem !important;
|
9675 |
+
}
|
9676 |
+
|
9677 |
+
.mb-lg-5 {
|
9678 |
+
margin-bottom: 3rem !important;
|
9679 |
+
}
|
9680 |
+
|
9681 |
+
.mb-lg-auto {
|
9682 |
+
margin-bottom: auto !important;
|
9683 |
+
}
|
9684 |
+
|
9685 |
+
.ms-lg-0 {
|
9686 |
+
margin-left: 0 !important;
|
9687 |
+
}
|
9688 |
+
|
9689 |
+
.ms-lg-1 {
|
9690 |
+
margin-left: 0.25rem !important;
|
9691 |
+
}
|
9692 |
+
|
9693 |
+
.ms-lg-2 {
|
9694 |
+
margin-left: 0.5rem !important;
|
9695 |
+
}
|
9696 |
+
|
9697 |
+
.ms-lg-3 {
|
9698 |
+
margin-left: 1rem !important;
|
9699 |
+
}
|
9700 |
+
|
9701 |
+
.ms-lg-4 {
|
9702 |
+
margin-left: 1.5rem !important;
|
9703 |
+
}
|
9704 |
+
|
9705 |
+
.ms-lg-5 {
|
9706 |
+
margin-left: 3rem !important;
|
9707 |
+
}
|
9708 |
+
|
9709 |
+
.ms-lg-auto {
|
9710 |
+
margin-left: auto !important;
|
9711 |
+
}
|
9712 |
+
|
9713 |
+
.p-lg-0 {
|
9714 |
+
padding: 0 !important;
|
9715 |
+
}
|
9716 |
+
|
9717 |
+
.p-lg-1 {
|
9718 |
+
padding: 0.25rem !important;
|
9719 |
+
}
|
9720 |
+
|
9721 |
+
.p-lg-2 {
|
9722 |
+
padding: 0.5rem !important;
|
9723 |
+
}
|
9724 |
+
|
9725 |
+
.p-lg-3 {
|
9726 |
+
padding: 1rem !important;
|
9727 |
+
}
|
9728 |
+
|
9729 |
+
.p-lg-4 {
|
9730 |
+
padding: 1.5rem !important;
|
9731 |
+
}
|
9732 |
+
|
9733 |
+
.p-lg-5 {
|
9734 |
+
padding: 3rem !important;
|
9735 |
+
}
|
9736 |
+
|
9737 |
+
.px-lg-0 {
|
9738 |
+
padding-right: 0 !important;
|
9739 |
+
padding-left: 0 !important;
|
9740 |
+
}
|
9741 |
+
|
9742 |
+
.px-lg-1 {
|
9743 |
+
padding-right: 0.25rem !important;
|
9744 |
+
padding-left: 0.25rem !important;
|
9745 |
+
}
|
9746 |
+
|
9747 |
+
.px-lg-2 {
|
9748 |
+
padding-right: 0.5rem !important;
|
9749 |
+
padding-left: 0.5rem !important;
|
9750 |
+
}
|
9751 |
+
|
9752 |
+
.px-lg-3 {
|
9753 |
+
padding-right: 1rem !important;
|
9754 |
+
padding-left: 1rem !important;
|
9755 |
+
}
|
9756 |
+
|
9757 |
+
.px-lg-4 {
|
9758 |
+
padding-right: 1.5rem !important;
|
9759 |
+
padding-left: 1.5rem !important;
|
9760 |
+
}
|
9761 |
+
|
9762 |
+
.px-lg-5 {
|
9763 |
+
padding-right: 3rem !important;
|
9764 |
+
padding-left: 3rem !important;
|
9765 |
+
}
|
9766 |
+
|
9767 |
+
.py-lg-0 {
|
9768 |
+
padding-top: 0 !important;
|
9769 |
+
padding-bottom: 0 !important;
|
9770 |
+
}
|
9771 |
+
|
9772 |
+
.py-lg-1 {
|
9773 |
+
padding-top: 0.25rem !important;
|
9774 |
+
padding-bottom: 0.25rem !important;
|
9775 |
+
}
|
9776 |
+
|
9777 |
+
.py-lg-2 {
|
9778 |
+
padding-top: 0.5rem !important;
|
9779 |
+
padding-bottom: 0.5rem !important;
|
9780 |
+
}
|
9781 |
+
|
9782 |
+
.py-lg-3 {
|
9783 |
+
padding-top: 1rem !important;
|
9784 |
+
padding-bottom: 1rem !important;
|
9785 |
+
}
|
9786 |
+
|
9787 |
+
.py-lg-4 {
|
9788 |
+
padding-top: 1.5rem !important;
|
9789 |
+
padding-bottom: 1.5rem !important;
|
9790 |
+
}
|
9791 |
+
|
9792 |
+
.py-lg-5 {
|
9793 |
+
padding-top: 3rem !important;
|
9794 |
+
padding-bottom: 3rem !important;
|
9795 |
+
}
|
9796 |
+
|
9797 |
+
.pt-lg-0 {
|
9798 |
+
padding-top: 0 !important;
|
9799 |
+
}
|
9800 |
+
|
9801 |
+
.pt-lg-1 {
|
9802 |
+
padding-top: 0.25rem !important;
|
9803 |
+
}
|
9804 |
+
|
9805 |
+
.pt-lg-2 {
|
9806 |
+
padding-top: 0.5rem !important;
|
9807 |
+
}
|
9808 |
+
|
9809 |
+
.pt-lg-3 {
|
9810 |
+
padding-top: 1rem !important;
|
9811 |
+
}
|
9812 |
+
|
9813 |
+
.pt-lg-4 {
|
9814 |
+
padding-top: 1.5rem !important;
|
9815 |
+
}
|
9816 |
+
|
9817 |
+
.pt-lg-5 {
|
9818 |
+
padding-top: 3rem !important;
|
9819 |
+
}
|
9820 |
+
|
9821 |
+
.pe-lg-0 {
|
9822 |
+
padding-right: 0 !important;
|
9823 |
+
}
|
9824 |
+
|
9825 |
+
.pe-lg-1 {
|
9826 |
+
padding-right: 0.25rem !important;
|
9827 |
+
}
|
9828 |
+
|
9829 |
+
.pe-lg-2 {
|
9830 |
+
padding-right: 0.5rem !important;
|
9831 |
+
}
|
9832 |
+
|
9833 |
+
.pe-lg-3 {
|
9834 |
+
padding-right: 1rem !important;
|
9835 |
+
}
|
9836 |
+
|
9837 |
+
.pe-lg-4 {
|
9838 |
+
padding-right: 1.5rem !important;
|
9839 |
+
}
|
9840 |
+
|
9841 |
+
.pe-lg-5 {
|
9842 |
+
padding-right: 3rem !important;
|
9843 |
+
}
|
9844 |
+
|
9845 |
+
.pb-lg-0 {
|
9846 |
+
padding-bottom: 0 !important;
|
9847 |
+
}
|
9848 |
+
|
9849 |
+
.pb-lg-1 {
|
9850 |
+
padding-bottom: 0.25rem !important;
|
9851 |
+
}
|
9852 |
+
|
9853 |
+
.pb-lg-2 {
|
9854 |
+
padding-bottom: 0.5rem !important;
|
9855 |
+
}
|
9856 |
+
|
9857 |
+
.pb-lg-3 {
|
9858 |
+
padding-bottom: 1rem !important;
|
9859 |
+
}
|
9860 |
+
|
9861 |
+
.pb-lg-4 {
|
9862 |
+
padding-bottom: 1.5rem !important;
|
9863 |
+
}
|
9864 |
+
|
9865 |
+
.pb-lg-5 {
|
9866 |
+
padding-bottom: 3rem !important;
|
9867 |
+
}
|
9868 |
+
|
9869 |
+
.ps-lg-0 {
|
9870 |
+
padding-left: 0 !important;
|
9871 |
+
}
|
9872 |
+
|
9873 |
+
.ps-lg-1 {
|
9874 |
+
padding-left: 0.25rem !important;
|
9875 |
+
}
|
9876 |
+
|
9877 |
+
.ps-lg-2 {
|
9878 |
+
padding-left: 0.5rem !important;
|
9879 |
+
}
|
9880 |
+
|
9881 |
+
.ps-lg-3 {
|
9882 |
+
padding-left: 1rem !important;
|
9883 |
+
}
|
9884 |
+
|
9885 |
+
.ps-lg-4 {
|
9886 |
+
padding-left: 1.5rem !important;
|
9887 |
+
}
|
9888 |
+
|
9889 |
+
.ps-lg-5 {
|
9890 |
+
padding-left: 3rem !important;
|
9891 |
+
}
|
9892 |
+
|
9893 |
+
.text-lg-start {
|
9894 |
+
text-align: left !important;
|
9895 |
+
}
|
9896 |
+
|
9897 |
+
.text-lg-end {
|
9898 |
+
text-align: right !important;
|
9899 |
+
}
|
9900 |
+
|
9901 |
+
.text-lg-center {
|
9902 |
+
text-align: center !important;
|
9903 |
+
}
|
9904 |
+
}
|
9905 |
+
@media (min-width: 1200px) {
|
9906 |
+
.float-xl-start {
|
9907 |
+
float: left !important;
|
9908 |
+
}
|
9909 |
+
|
9910 |
+
.float-xl-end {
|
9911 |
+
float: right !important;
|
9912 |
+
}
|
9913 |
+
|
9914 |
+
.float-xl-none {
|
9915 |
+
float: none !important;
|
9916 |
+
}
|
9917 |
+
|
9918 |
+
.d-xl-inline {
|
9919 |
+
display: inline !important;
|
9920 |
+
}
|
9921 |
+
|
9922 |
+
.d-xl-inline-block {
|
9923 |
+
display: inline-block !important;
|
9924 |
+
}
|
9925 |
+
|
9926 |
+
.d-xl-block {
|
9927 |
+
display: block !important;
|
9928 |
+
}
|
9929 |
+
|
9930 |
+
.d-xl-grid {
|
9931 |
+
display: grid !important;
|
9932 |
+
}
|
9933 |
+
|
9934 |
+
.d-xl-table {
|
9935 |
+
display: table !important;
|
9936 |
+
}
|
9937 |
+
|
9938 |
+
.d-xl-table-row {
|
9939 |
+
display: table-row !important;
|
9940 |
+
}
|
9941 |
+
|
9942 |
+
.d-xl-table-cell {
|
9943 |
+
display: table-cell !important;
|
9944 |
+
}
|
9945 |
+
|
9946 |
+
.d-xl-flex {
|
9947 |
+
display: flex !important;
|
9948 |
+
}
|
9949 |
+
|
9950 |
+
.d-xl-inline-flex {
|
9951 |
+
display: inline-flex !important;
|
9952 |
+
}
|
9953 |
+
|
9954 |
+
.d-xl-none {
|
9955 |
+
display: none !important;
|
9956 |
+
}
|
9957 |
+
|
9958 |
+
.flex-xl-fill {
|
9959 |
+
flex: 1 1 auto !important;
|
9960 |
+
}
|
9961 |
+
|
9962 |
+
.flex-xl-row {
|
9963 |
+
flex-direction: row !important;
|
9964 |
+
}
|
9965 |
+
|
9966 |
+
.flex-xl-column {
|
9967 |
+
flex-direction: column !important;
|
9968 |
+
}
|
9969 |
+
|
9970 |
+
.flex-xl-row-reverse {
|
9971 |
+
flex-direction: row-reverse !important;
|
9972 |
+
}
|
9973 |
+
|
9974 |
+
.flex-xl-column-reverse {
|
9975 |
+
flex-direction: column-reverse !important;
|
9976 |
+
}
|
9977 |
+
|
9978 |
+
.flex-xl-grow-0 {
|
9979 |
+
flex-grow: 0 !important;
|
9980 |
+
}
|
9981 |
+
|
9982 |
+
.flex-xl-grow-1 {
|
9983 |
+
flex-grow: 1 !important;
|
9984 |
+
}
|
9985 |
+
|
9986 |
+
.flex-xl-shrink-0 {
|
9987 |
+
flex-shrink: 0 !important;
|
9988 |
+
}
|
9989 |
+
|
9990 |
+
.flex-xl-shrink-1 {
|
9991 |
+
flex-shrink: 1 !important;
|
9992 |
+
}
|
9993 |
+
|
9994 |
+
.flex-xl-wrap {
|
9995 |
+
flex-wrap: wrap !important;
|
9996 |
+
}
|
9997 |
+
|
9998 |
+
.flex-xl-nowrap {
|
9999 |
+
flex-wrap: nowrap !important;
|
10000 |
+
}
|
10001 |
+
|
10002 |
+
.flex-xl-wrap-reverse {
|
10003 |
+
flex-wrap: wrap-reverse !important;
|
10004 |
+
}
|
10005 |
+
|
10006 |
+
.gap-xl-0 {
|
10007 |
+
gap: 0 !important;
|
10008 |
+
}
|
10009 |
+
|
10010 |
+
.gap-xl-1 {
|
10011 |
+
gap: 0.25rem !important;
|
10012 |
+
}
|
10013 |
+
|
10014 |
+
.gap-xl-2 {
|
10015 |
+
gap: 0.5rem !important;
|
10016 |
+
}
|
10017 |
+
|
10018 |
+
.gap-xl-3 {
|
10019 |
+
gap: 1rem !important;
|
10020 |
+
}
|
10021 |
+
|
10022 |
+
.gap-xl-4 {
|
10023 |
+
gap: 1.5rem !important;
|
10024 |
+
}
|
10025 |
+
|
10026 |
+
.gap-xl-5 {
|
10027 |
+
gap: 3rem !important;
|
10028 |
+
}
|
10029 |
+
|
10030 |
+
.justify-content-xl-start {
|
10031 |
+
justify-content: flex-start !important;
|
10032 |
+
}
|
10033 |
+
|
10034 |
+
.justify-content-xl-end {
|
10035 |
+
justify-content: flex-end !important;
|
10036 |
+
}
|
10037 |
+
|
10038 |
+
.justify-content-xl-center {
|
10039 |
+
justify-content: center !important;
|
10040 |
+
}
|
10041 |
+
|
10042 |
+
.justify-content-xl-between {
|
10043 |
+
justify-content: space-between !important;
|
10044 |
+
}
|
10045 |
+
|
10046 |
+
.justify-content-xl-around {
|
10047 |
+
justify-content: space-around !important;
|
10048 |
+
}
|
10049 |
+
|
10050 |
+
.justify-content-xl-evenly {
|
10051 |
+
justify-content: space-evenly !important;
|
10052 |
+
}
|
10053 |
+
|
10054 |
+
.align-items-xl-start {
|
10055 |
+
align-items: flex-start !important;
|
10056 |
+
}
|
10057 |
+
|
10058 |
+
.align-items-xl-end {
|
10059 |
+
align-items: flex-end !important;
|
10060 |
+
}
|
10061 |
+
|
10062 |
+
.align-items-xl-center {
|
10063 |
+
align-items: center !important;
|
10064 |
+
}
|
10065 |
+
|
10066 |
+
.align-items-xl-baseline {
|
10067 |
+
align-items: baseline !important;
|
10068 |
+
}
|
10069 |
+
|
10070 |
+
.align-items-xl-stretch {
|
10071 |
+
align-items: stretch !important;
|
10072 |
+
}
|
10073 |
+
|
10074 |
+
.align-content-xl-start {
|
10075 |
+
align-content: flex-start !important;
|
10076 |
+
}
|
10077 |
+
|
10078 |
+
.align-content-xl-end {
|
10079 |
+
align-content: flex-end !important;
|
10080 |
+
}
|
10081 |
+
|
10082 |
+
.align-content-xl-center {
|
10083 |
+
align-content: center !important;
|
10084 |
+
}
|
10085 |
+
|
10086 |
+
.align-content-xl-between {
|
10087 |
+
align-content: space-between !important;
|
10088 |
+
}
|
10089 |
+
|
10090 |
+
.align-content-xl-around {
|
10091 |
+
align-content: space-around !important;
|
10092 |
+
}
|
10093 |
+
|
10094 |
+
.align-content-xl-stretch {
|
10095 |
+
align-content: stretch !important;
|
10096 |
+
}
|
10097 |
+
|
10098 |
+
.align-self-xl-auto {
|
10099 |
+
align-self: auto !important;
|
10100 |
+
}
|
10101 |
+
|
10102 |
+
.align-self-xl-start {
|
10103 |
+
align-self: flex-start !important;
|
10104 |
+
}
|
10105 |
+
|
10106 |
+
.align-self-xl-end {
|
10107 |
+
align-self: flex-end !important;
|
10108 |
+
}
|
10109 |
+
|
10110 |
+
.align-self-xl-center {
|
10111 |
+
align-self: center !important;
|
10112 |
+
}
|
10113 |
+
|
10114 |
+
.align-self-xl-baseline {
|
10115 |
+
align-self: baseline !important;
|
10116 |
+
}
|
10117 |
+
|
10118 |
+
.align-self-xl-stretch {
|
10119 |
+
align-self: stretch !important;
|
10120 |
+
}
|
10121 |
+
|
10122 |
+
.order-xl-first {
|
10123 |
+
order: -1 !important;
|
10124 |
+
}
|
10125 |
+
|
10126 |
+
.order-xl-0 {
|
10127 |
+
order: 0 !important;
|
10128 |
+
}
|
10129 |
+
|
10130 |
+
.order-xl-1 {
|
10131 |
+
order: 1 !important;
|
10132 |
+
}
|
10133 |
+
|
10134 |
+
.order-xl-2 {
|
10135 |
+
order: 2 !important;
|
10136 |
+
}
|
10137 |
+
|
10138 |
+
.order-xl-3 {
|
10139 |
+
order: 3 !important;
|
10140 |
+
}
|
10141 |
+
|
10142 |
+
.order-xl-4 {
|
10143 |
+
order: 4 !important;
|
10144 |
+
}
|
10145 |
+
|
10146 |
+
.order-xl-5 {
|
10147 |
+
order: 5 !important;
|
10148 |
+
}
|
10149 |
+
|
10150 |
+
.order-xl-last {
|
10151 |
+
order: 6 !important;
|
10152 |
+
}
|
10153 |
+
|
10154 |
+
.m-xl-0 {
|
10155 |
+
margin: 0 !important;
|
10156 |
+
}
|
10157 |
+
|
10158 |
+
.m-xl-1 {
|
10159 |
+
margin: 0.25rem !important;
|
10160 |
+
}
|
10161 |
+
|
10162 |
+
.m-xl-2 {
|
10163 |
+
margin: 0.5rem !important;
|
10164 |
+
}
|
10165 |
+
|
10166 |
+
.m-xl-3 {
|
10167 |
+
margin: 1rem !important;
|
10168 |
+
}
|
10169 |
+
|
10170 |
+
.m-xl-4 {
|
10171 |
+
margin: 1.5rem !important;
|
10172 |
+
}
|
10173 |
+
|
10174 |
+
.m-xl-5 {
|
10175 |
+
margin: 3rem !important;
|
10176 |
+
}
|
10177 |
+
|
10178 |
+
.m-xl-auto {
|
10179 |
+
margin: auto !important;
|
10180 |
+
}
|
10181 |
+
|
10182 |
+
.mx-xl-0 {
|
10183 |
+
margin-right: 0 !important;
|
10184 |
+
margin-left: 0 !important;
|
10185 |
+
}
|
10186 |
+
|
10187 |
+
.mx-xl-1 {
|
10188 |
+
margin-right: 0.25rem !important;
|
10189 |
+
margin-left: 0.25rem !important;
|
10190 |
+
}
|
10191 |
+
|
10192 |
+
.mx-xl-2 {
|
10193 |
+
margin-right: 0.5rem !important;
|
10194 |
+
margin-left: 0.5rem !important;
|
10195 |
+
}
|
10196 |
+
|
10197 |
+
.mx-xl-3 {
|
10198 |
+
margin-right: 1rem !important;
|
10199 |
+
margin-left: 1rem !important;
|
10200 |
+
}
|
10201 |
+
|
10202 |
+
.mx-xl-4 {
|
10203 |
+
margin-right: 1.5rem !important;
|
10204 |
+
margin-left: 1.5rem !important;
|
10205 |
+
}
|
10206 |
+
|
10207 |
+
.mx-xl-5 {
|
10208 |
+
margin-right: 3rem !important;
|
10209 |
+
margin-left: 3rem !important;
|
10210 |
+
}
|
10211 |
+
|
10212 |
+
.mx-xl-auto {
|
10213 |
+
margin-right: auto !important;
|
10214 |
+
margin-left: auto !important;
|
10215 |
+
}
|
10216 |
+
|
10217 |
+
.my-xl-0 {
|
10218 |
+
margin-top: 0 !important;
|
10219 |
+
margin-bottom: 0 !important;
|
10220 |
+
}
|
10221 |
+
|
10222 |
+
.my-xl-1 {
|
10223 |
+
margin-top: 0.25rem !important;
|
10224 |
+
margin-bottom: 0.25rem !important;
|
10225 |
+
}
|
10226 |
+
|
10227 |
+
.my-xl-2 {
|
10228 |
+
margin-top: 0.5rem !important;
|
10229 |
+
margin-bottom: 0.5rem !important;
|
10230 |
+
}
|
10231 |
+
|
10232 |
+
.my-xl-3 {
|
10233 |
+
margin-top: 1rem !important;
|
10234 |
+
margin-bottom: 1rem !important;
|
10235 |
+
}
|
10236 |
+
|
10237 |
+
.my-xl-4 {
|
10238 |
+
margin-top: 1.5rem !important;
|
10239 |
+
margin-bottom: 1.5rem !important;
|
10240 |
+
}
|
10241 |
+
|
10242 |
+
.my-xl-5 {
|
10243 |
+
margin-top: 3rem !important;
|
10244 |
+
margin-bottom: 3rem !important;
|
10245 |
+
}
|
10246 |
+
|
10247 |
+
.my-xl-auto {
|
10248 |
+
margin-top: auto !important;
|
10249 |
+
margin-bottom: auto !important;
|
10250 |
+
}
|
10251 |
+
|
10252 |
+
.mt-xl-0 {
|
10253 |
+
margin-top: 0 !important;
|
10254 |
+
}
|
10255 |
+
|
10256 |
+
.mt-xl-1 {
|
10257 |
+
margin-top: 0.25rem !important;
|
10258 |
+
}
|
10259 |
+
|
10260 |
+
.mt-xl-2 {
|
10261 |
+
margin-top: 0.5rem !important;
|
10262 |
+
}
|
10263 |
+
|
10264 |
+
.mt-xl-3 {
|
10265 |
+
margin-top: 1rem !important;
|
10266 |
+
}
|
10267 |
+
|
10268 |
+
.mt-xl-4 {
|
10269 |
+
margin-top: 1.5rem !important;
|
10270 |
+
}
|
10271 |
+
|
10272 |
+
.mt-xl-5 {
|
10273 |
+
margin-top: 3rem !important;
|
10274 |
+
}
|
10275 |
+
|
10276 |
+
.mt-xl-auto {
|
10277 |
+
margin-top: auto !important;
|
10278 |
+
}
|
10279 |
+
|
10280 |
+
.me-xl-0 {
|
10281 |
+
margin-right: 0 !important;
|
10282 |
+
}
|
10283 |
+
|
10284 |
+
.me-xl-1 {
|
10285 |
+
margin-right: 0.25rem !important;
|
10286 |
+
}
|
10287 |
+
|
10288 |
+
.me-xl-2 {
|
10289 |
+
margin-right: 0.5rem !important;
|
10290 |
+
}
|
10291 |
+
|
10292 |
+
.me-xl-3 {
|
10293 |
+
margin-right: 1rem !important;
|
10294 |
+
}
|
10295 |
+
|
10296 |
+
.me-xl-4 {
|
10297 |
+
margin-right: 1.5rem !important;
|
10298 |
+
}
|
10299 |
+
|
10300 |
+
.me-xl-5 {
|
10301 |
+
margin-right: 3rem !important;
|
10302 |
+
}
|
10303 |
+
|
10304 |
+
.me-xl-auto {
|
10305 |
+
margin-right: auto !important;
|
10306 |
+
}
|
10307 |
+
|
10308 |
+
.mb-xl-0 {
|
10309 |
+
margin-bottom: 0 !important;
|
10310 |
+
}
|
10311 |
+
|
10312 |
+
.mb-xl-1 {
|
10313 |
+
margin-bottom: 0.25rem !important;
|
10314 |
+
}
|
10315 |
+
|
10316 |
+
.mb-xl-2 {
|
10317 |
+
margin-bottom: 0.5rem !important;
|
10318 |
+
}
|
10319 |
+
|
10320 |
+
.mb-xl-3 {
|
10321 |
+
margin-bottom: 1rem !important;
|
10322 |
+
}
|
10323 |
+
|
10324 |
+
.mb-xl-4 {
|
10325 |
+
margin-bottom: 1.5rem !important;
|
10326 |
+
}
|
10327 |
+
|
10328 |
+
.mb-xl-5 {
|
10329 |
+
margin-bottom: 3rem !important;
|
10330 |
+
}
|
10331 |
+
|
10332 |
+
.mb-xl-auto {
|
10333 |
+
margin-bottom: auto !important;
|
10334 |
+
}
|
10335 |
+
|
10336 |
+
.ms-xl-0 {
|
10337 |
+
margin-left: 0 !important;
|
10338 |
+
}
|
10339 |
+
|
10340 |
+
.ms-xl-1 {
|
10341 |
+
margin-left: 0.25rem !important;
|
10342 |
+
}
|
10343 |
+
|
10344 |
+
.ms-xl-2 {
|
10345 |
+
margin-left: 0.5rem !important;
|
10346 |
+
}
|
10347 |
+
|
10348 |
+
.ms-xl-3 {
|
10349 |
+
margin-left: 1rem !important;
|
10350 |
+
}
|
10351 |
+
|
10352 |
+
.ms-xl-4 {
|
10353 |
+
margin-left: 1.5rem !important;
|
10354 |
+
}
|
10355 |
+
|
10356 |
+
.ms-xl-5 {
|
10357 |
+
margin-left: 3rem !important;
|
10358 |
+
}
|
10359 |
+
|
10360 |
+
.ms-xl-auto {
|
10361 |
+
margin-left: auto !important;
|
10362 |
+
}
|
10363 |
+
|
10364 |
+
.p-xl-0 {
|
10365 |
+
padding: 0 !important;
|
10366 |
+
}
|
10367 |
+
|
10368 |
+
.p-xl-1 {
|
10369 |
+
padding: 0.25rem !important;
|
10370 |
+
}
|
10371 |
+
|
10372 |
+
.p-xl-2 {
|
10373 |
+
padding: 0.5rem !important;
|
10374 |
+
}
|
10375 |
+
|
10376 |
+
.p-xl-3 {
|
10377 |
+
padding: 1rem !important;
|
10378 |
+
}
|
10379 |
+
|
10380 |
+
.p-xl-4 {
|
10381 |
+
padding: 1.5rem !important;
|
10382 |
+
}
|
10383 |
+
|
10384 |
+
.p-xl-5 {
|
10385 |
+
padding: 3rem !important;
|
10386 |
+
}
|
10387 |
+
|
10388 |
+
.px-xl-0 {
|
10389 |
+
padding-right: 0 !important;
|
10390 |
+
padding-left: 0 !important;
|
10391 |
+
}
|
10392 |
+
|
10393 |
+
.px-xl-1 {
|
10394 |
+
padding-right: 0.25rem !important;
|
10395 |
+
padding-left: 0.25rem !important;
|
10396 |
+
}
|
10397 |
+
|
10398 |
+
.px-xl-2 {
|
10399 |
+
padding-right: 0.5rem !important;
|
10400 |
+
padding-left: 0.5rem !important;
|
10401 |
+
}
|
10402 |
+
|
10403 |
+
.px-xl-3 {
|
10404 |
+
padding-right: 1rem !important;
|
10405 |
+
padding-left: 1rem !important;
|
10406 |
+
}
|
10407 |
+
|
10408 |
+
.px-xl-4 {
|
10409 |
+
padding-right: 1.5rem !important;
|
10410 |
+
padding-left: 1.5rem !important;
|
10411 |
+
}
|
10412 |
+
|
10413 |
+
.px-xl-5 {
|
10414 |
+
padding-right: 3rem !important;
|
10415 |
+
padding-left: 3rem !important;
|
10416 |
+
}
|
10417 |
+
|
10418 |
+
.py-xl-0 {
|
10419 |
+
padding-top: 0 !important;
|
10420 |
+
padding-bottom: 0 !important;
|
10421 |
+
}
|
10422 |
+
|
10423 |
+
.py-xl-1 {
|
10424 |
+
padding-top: 0.25rem !important;
|
10425 |
+
padding-bottom: 0.25rem !important;
|
10426 |
+
}
|
10427 |
+
|
10428 |
+
.py-xl-2 {
|
10429 |
+
padding-top: 0.5rem !important;
|
10430 |
+
padding-bottom: 0.5rem !important;
|
10431 |
+
}
|
10432 |
+
|
10433 |
+
.py-xl-3 {
|
10434 |
+
padding-top: 1rem !important;
|
10435 |
+
padding-bottom: 1rem !important;
|
10436 |
+
}
|
10437 |
+
|
10438 |
+
.py-xl-4 {
|
10439 |
+
padding-top: 1.5rem !important;
|
10440 |
+
padding-bottom: 1.5rem !important;
|
10441 |
+
}
|
10442 |
+
|
10443 |
+
.py-xl-5 {
|
10444 |
+
padding-top: 3rem !important;
|
10445 |
+
padding-bottom: 3rem !important;
|
10446 |
+
}
|
10447 |
+
|
10448 |
+
.pt-xl-0 {
|
10449 |
+
padding-top: 0 !important;
|
10450 |
+
}
|
10451 |
+
|
10452 |
+
.pt-xl-1 {
|
10453 |
+
padding-top: 0.25rem !important;
|
10454 |
+
}
|
10455 |
+
|
10456 |
+
.pt-xl-2 {
|
10457 |
+
padding-top: 0.5rem !important;
|
10458 |
+
}
|
10459 |
+
|
10460 |
+
.pt-xl-3 {
|
10461 |
+
padding-top: 1rem !important;
|
10462 |
+
}
|
10463 |
+
|
10464 |
+
.pt-xl-4 {
|
10465 |
+
padding-top: 1.5rem !important;
|
10466 |
+
}
|
10467 |
+
|
10468 |
+
.pt-xl-5 {
|
10469 |
+
padding-top: 3rem !important;
|
10470 |
+
}
|
10471 |
+
|
10472 |
+
.pe-xl-0 {
|
10473 |
+
padding-right: 0 !important;
|
10474 |
+
}
|
10475 |
+
|
10476 |
+
.pe-xl-1 {
|
10477 |
+
padding-right: 0.25rem !important;
|
10478 |
+
}
|
10479 |
+
|
10480 |
+
.pe-xl-2 {
|
10481 |
+
padding-right: 0.5rem !important;
|
10482 |
+
}
|
10483 |
+
|
10484 |
+
.pe-xl-3 {
|
10485 |
+
padding-right: 1rem !important;
|
10486 |
+
}
|
10487 |
+
|
10488 |
+
.pe-xl-4 {
|
10489 |
+
padding-right: 1.5rem !important;
|
10490 |
+
}
|
10491 |
+
|
10492 |
+
.pe-xl-5 {
|
10493 |
+
padding-right: 3rem !important;
|
10494 |
+
}
|
10495 |
+
|
10496 |
+
.pb-xl-0 {
|
10497 |
+
padding-bottom: 0 !important;
|
10498 |
+
}
|
10499 |
+
|
10500 |
+
.pb-xl-1 {
|
10501 |
+
padding-bottom: 0.25rem !important;
|
10502 |
+
}
|
10503 |
+
|
10504 |
+
.pb-xl-2 {
|
10505 |
+
padding-bottom: 0.5rem !important;
|
10506 |
+
}
|
10507 |
+
|
10508 |
+
.pb-xl-3 {
|
10509 |
+
padding-bottom: 1rem !important;
|
10510 |
+
}
|
10511 |
+
|
10512 |
+
.pb-xl-4 {
|
10513 |
+
padding-bottom: 1.5rem !important;
|
10514 |
+
}
|
10515 |
+
|
10516 |
+
.pb-xl-5 {
|
10517 |
+
padding-bottom: 3rem !important;
|
10518 |
+
}
|
10519 |
+
|
10520 |
+
.ps-xl-0 {
|
10521 |
+
padding-left: 0 !important;
|
10522 |
+
}
|
10523 |
+
|
10524 |
+
.ps-xl-1 {
|
10525 |
+
padding-left: 0.25rem !important;
|
10526 |
+
}
|
10527 |
+
|
10528 |
+
.ps-xl-2 {
|
10529 |
+
padding-left: 0.5rem !important;
|
10530 |
+
}
|
10531 |
+
|
10532 |
+
.ps-xl-3 {
|
10533 |
+
padding-left: 1rem !important;
|
10534 |
+
}
|
10535 |
+
|
10536 |
+
.ps-xl-4 {
|
10537 |
+
padding-left: 1.5rem !important;
|
10538 |
+
}
|
10539 |
+
|
10540 |
+
.ps-xl-5 {
|
10541 |
+
padding-left: 3rem !important;
|
10542 |
+
}
|
10543 |
+
|
10544 |
+
.text-xl-start {
|
10545 |
+
text-align: left !important;
|
10546 |
+
}
|
10547 |
+
|
10548 |
+
.text-xl-end {
|
10549 |
+
text-align: right !important;
|
10550 |
+
}
|
10551 |
+
|
10552 |
+
.text-xl-center {
|
10553 |
+
text-align: center !important;
|
10554 |
+
}
|
10555 |
+
}
|
10556 |
+
@media (min-width: 1400px) {
|
10557 |
+
.float-xxl-start {
|
10558 |
+
float: left !important;
|
10559 |
+
}
|
10560 |
+
|
10561 |
+
.float-xxl-end {
|
10562 |
+
float: right !important;
|
10563 |
+
}
|
10564 |
+
|
10565 |
+
.float-xxl-none {
|
10566 |
+
float: none !important;
|
10567 |
+
}
|
10568 |
+
|
10569 |
+
.d-xxl-inline {
|
10570 |
+
display: inline !important;
|
10571 |
+
}
|
10572 |
+
|
10573 |
+
.d-xxl-inline-block {
|
10574 |
+
display: inline-block !important;
|
10575 |
+
}
|
10576 |
+
|
10577 |
+
.d-xxl-block {
|
10578 |
+
display: block !important;
|
10579 |
+
}
|
10580 |
+
|
10581 |
+
.d-xxl-grid {
|
10582 |
+
display: grid !important;
|
10583 |
+
}
|
10584 |
+
|
10585 |
+
.d-xxl-table {
|
10586 |
+
display: table !important;
|
10587 |
+
}
|
10588 |
+
|
10589 |
+
.d-xxl-table-row {
|
10590 |
+
display: table-row !important;
|
10591 |
+
}
|
10592 |
+
|
10593 |
+
.d-xxl-table-cell {
|
10594 |
+
display: table-cell !important;
|
10595 |
+
}
|
10596 |
+
|
10597 |
+
.d-xxl-flex {
|
10598 |
+
display: flex !important;
|
10599 |
+
}
|
10600 |
+
|
10601 |
+
.d-xxl-inline-flex {
|
10602 |
+
display: inline-flex !important;
|
10603 |
+
}
|
10604 |
+
|
10605 |
+
.d-xxl-none {
|
10606 |
+
display: none !important;
|
10607 |
+
}
|
10608 |
+
|
10609 |
+
.flex-xxl-fill {
|
10610 |
+
flex: 1 1 auto !important;
|
10611 |
+
}
|
10612 |
+
|
10613 |
+
.flex-xxl-row {
|
10614 |
+
flex-direction: row !important;
|
10615 |
+
}
|
10616 |
+
|
10617 |
+
.flex-xxl-column {
|
10618 |
+
flex-direction: column !important;
|
10619 |
+
}
|
10620 |
+
|
10621 |
+
.flex-xxl-row-reverse {
|
10622 |
+
flex-direction: row-reverse !important;
|
10623 |
+
}
|
10624 |
+
|
10625 |
+
.flex-xxl-column-reverse {
|
10626 |
+
flex-direction: column-reverse !important;
|
10627 |
+
}
|
10628 |
+
|
10629 |
+
.flex-xxl-grow-0 {
|
10630 |
+
flex-grow: 0 !important;
|
10631 |
+
}
|
10632 |
+
|
10633 |
+
.flex-xxl-grow-1 {
|
10634 |
+
flex-grow: 1 !important;
|
10635 |
+
}
|
10636 |
+
|
10637 |
+
.flex-xxl-shrink-0 {
|
10638 |
+
flex-shrink: 0 !important;
|
10639 |
+
}
|
10640 |
+
|
10641 |
+
.flex-xxl-shrink-1 {
|
10642 |
+
flex-shrink: 1 !important;
|
10643 |
+
}
|
10644 |
+
|
10645 |
+
.flex-xxl-wrap {
|
10646 |
+
flex-wrap: wrap !important;
|
10647 |
+
}
|
10648 |
+
|
10649 |
+
.flex-xxl-nowrap {
|
10650 |
+
flex-wrap: nowrap !important;
|
10651 |
+
}
|
10652 |
+
|
10653 |
+
.flex-xxl-wrap-reverse {
|
10654 |
+
flex-wrap: wrap-reverse !important;
|
10655 |
+
}
|
10656 |
+
|
10657 |
+
.gap-xxl-0 {
|
10658 |
+
gap: 0 !important;
|
10659 |
+
}
|
10660 |
+
|
10661 |
+
.gap-xxl-1 {
|
10662 |
+
gap: 0.25rem !important;
|
10663 |
+
}
|
10664 |
+
|
10665 |
+
.gap-xxl-2 {
|
10666 |
+
gap: 0.5rem !important;
|
10667 |
+
}
|
10668 |
+
|
10669 |
+
.gap-xxl-3 {
|
10670 |
+
gap: 1rem !important;
|
10671 |
+
}
|
10672 |
+
|
10673 |
+
.gap-xxl-4 {
|
10674 |
+
gap: 1.5rem !important;
|
10675 |
+
}
|
10676 |
+
|
10677 |
+
.gap-xxl-5 {
|
10678 |
+
gap: 3rem !important;
|
10679 |
+
}
|
10680 |
+
|
10681 |
+
.justify-content-xxl-start {
|
10682 |
+
justify-content: flex-start !important;
|
10683 |
+
}
|
10684 |
+
|
10685 |
+
.justify-content-xxl-end {
|
10686 |
+
justify-content: flex-end !important;
|
10687 |
+
}
|
10688 |
+
|
10689 |
+
.justify-content-xxl-center {
|
10690 |
+
justify-content: center !important;
|
10691 |
+
}
|
10692 |
+
|
10693 |
+
.justify-content-xxl-between {
|
10694 |
+
justify-content: space-between !important;
|
10695 |
+
}
|
10696 |
+
|
10697 |
+
.justify-content-xxl-around {
|
10698 |
+
justify-content: space-around !important;
|
10699 |
+
}
|
10700 |
+
|
10701 |
+
.justify-content-xxl-evenly {
|
10702 |
+
justify-content: space-evenly !important;
|
10703 |
+
}
|
10704 |
+
|
10705 |
+
.align-items-xxl-start {
|
10706 |
+
align-items: flex-start !important;
|
10707 |
+
}
|
10708 |
+
|
10709 |
+
.align-items-xxl-end {
|
10710 |
+
align-items: flex-end !important;
|
10711 |
+
}
|
10712 |
+
|
10713 |
+
.align-items-xxl-center {
|
10714 |
+
align-items: center !important;
|
10715 |
+
}
|
10716 |
+
|
10717 |
+
.align-items-xxl-baseline {
|
10718 |
+
align-items: baseline !important;
|
10719 |
+
}
|
10720 |
+
|
10721 |
+
.align-items-xxl-stretch {
|
10722 |
+
align-items: stretch !important;
|
10723 |
+
}
|
10724 |
+
|
10725 |
+
.align-content-xxl-start {
|
10726 |
+
align-content: flex-start !important;
|
10727 |
+
}
|
10728 |
+
|
10729 |
+
.align-content-xxl-end {
|
10730 |
+
align-content: flex-end !important;
|
10731 |
+
}
|
10732 |
+
|
10733 |
+
.align-content-xxl-center {
|
10734 |
+
align-content: center !important;
|
10735 |
+
}
|
10736 |
+
|
10737 |
+
.align-content-xxl-between {
|
10738 |
+
align-content: space-between !important;
|
10739 |
+
}
|
10740 |
+
|
10741 |
+
.align-content-xxl-around {
|
10742 |
+
align-content: space-around !important;
|
10743 |
+
}
|
10744 |
+
|
10745 |
+
.align-content-xxl-stretch {
|
10746 |
+
align-content: stretch !important;
|
10747 |
+
}
|
10748 |
+
|
10749 |
+
.align-self-xxl-auto {
|
10750 |
+
align-self: auto !important;
|
10751 |
+
}
|
10752 |
+
|
10753 |
+
.align-self-xxl-start {
|
10754 |
+
align-self: flex-start !important;
|
10755 |
+
}
|
10756 |
+
|
10757 |
+
.align-self-xxl-end {
|
10758 |
+
align-self: flex-end !important;
|
10759 |
+
}
|
10760 |
+
|
10761 |
+
.align-self-xxl-center {
|
10762 |
+
align-self: center !important;
|
10763 |
+
}
|
10764 |
+
|
10765 |
+
.align-self-xxl-baseline {
|
10766 |
+
align-self: baseline !important;
|
10767 |
+
}
|
10768 |
+
|
10769 |
+
.align-self-xxl-stretch {
|
10770 |
+
align-self: stretch !important;
|
10771 |
+
}
|
10772 |
+
|
10773 |
+
.order-xxl-first {
|
10774 |
+
order: -1 !important;
|
10775 |
+
}
|
10776 |
+
|
10777 |
+
.order-xxl-0 {
|
10778 |
+
order: 0 !important;
|
10779 |
+
}
|
10780 |
+
|
10781 |
+
.order-xxl-1 {
|
10782 |
+
order: 1 !important;
|
10783 |
+
}
|
10784 |
+
|
10785 |
+
.order-xxl-2 {
|
10786 |
+
order: 2 !important;
|
10787 |
+
}
|
10788 |
+
|
10789 |
+
.order-xxl-3 {
|
10790 |
+
order: 3 !important;
|
10791 |
+
}
|
10792 |
+
|
10793 |
+
.order-xxl-4 {
|
10794 |
+
order: 4 !important;
|
10795 |
+
}
|
10796 |
+
|
10797 |
+
.order-xxl-5 {
|
10798 |
+
order: 5 !important;
|
10799 |
+
}
|
10800 |
+
|
10801 |
+
.order-xxl-last {
|
10802 |
+
order: 6 !important;
|
10803 |
+
}
|
10804 |
+
|
10805 |
+
.m-xxl-0 {
|
10806 |
+
margin: 0 !important;
|
10807 |
+
}
|
10808 |
+
|
10809 |
+
.m-xxl-1 {
|
10810 |
+
margin: 0.25rem !important;
|
10811 |
+
}
|
10812 |
+
|
10813 |
+
.m-xxl-2 {
|
10814 |
+
margin: 0.5rem !important;
|
10815 |
+
}
|
10816 |
+
|
10817 |
+
.m-xxl-3 {
|
10818 |
+
margin: 1rem !important;
|
10819 |
+
}
|
10820 |
+
|
10821 |
+
.m-xxl-4 {
|
10822 |
+
margin: 1.5rem !important;
|
10823 |
+
}
|
10824 |
+
|
10825 |
+
.m-xxl-5 {
|
10826 |
+
margin: 3rem !important;
|
10827 |
+
}
|
10828 |
+
|
10829 |
+
.m-xxl-auto {
|
10830 |
+
margin: auto !important;
|
10831 |
+
}
|
10832 |
+
|
10833 |
+
.mx-xxl-0 {
|
10834 |
+
margin-right: 0 !important;
|
10835 |
+
margin-left: 0 !important;
|
10836 |
+
}
|
10837 |
+
|
10838 |
+
.mx-xxl-1 {
|
10839 |
+
margin-right: 0.25rem !important;
|
10840 |
+
margin-left: 0.25rem !important;
|
10841 |
+
}
|
10842 |
+
|
10843 |
+
.mx-xxl-2 {
|
10844 |
+
margin-right: 0.5rem !important;
|
10845 |
+
margin-left: 0.5rem !important;
|
10846 |
+
}
|
10847 |
+
|
10848 |
+
.mx-xxl-3 {
|
10849 |
+
margin-right: 1rem !important;
|
10850 |
+
margin-left: 1rem !important;
|
10851 |
+
}
|
10852 |
+
|
10853 |
+
.mx-xxl-4 {
|
10854 |
+
margin-right: 1.5rem !important;
|
10855 |
+
margin-left: 1.5rem !important;
|
10856 |
+
}
|
10857 |
+
|
10858 |
+
.mx-xxl-5 {
|
10859 |
+
margin-right: 3rem !important;
|
10860 |
+
margin-left: 3rem !important;
|
10861 |
+
}
|
10862 |
+
|
10863 |
+
.mx-xxl-auto {
|
10864 |
+
margin-right: auto !important;
|
10865 |
+
margin-left: auto !important;
|
10866 |
+
}
|
10867 |
+
|
10868 |
+
.my-xxl-0 {
|
10869 |
+
margin-top: 0 !important;
|
10870 |
+
margin-bottom: 0 !important;
|
10871 |
+
}
|
10872 |
+
|
10873 |
+
.my-xxl-1 {
|
10874 |
+
margin-top: 0.25rem !important;
|
10875 |
+
margin-bottom: 0.25rem !important;
|
10876 |
+
}
|
10877 |
+
|
10878 |
+
.my-xxl-2 {
|
10879 |
+
margin-top: 0.5rem !important;
|
10880 |
+
margin-bottom: 0.5rem !important;
|
10881 |
+
}
|
10882 |
+
|
10883 |
+
.my-xxl-3 {
|
10884 |
+
margin-top: 1rem !important;
|
10885 |
+
margin-bottom: 1rem !important;
|
10886 |
+
}
|
10887 |
+
|
10888 |
+
.my-xxl-4 {
|
10889 |
+
margin-top: 1.5rem !important;
|
10890 |
+
margin-bottom: 1.5rem !important;
|
10891 |
+
}
|
10892 |
+
|
10893 |
+
.my-xxl-5 {
|
10894 |
+
margin-top: 3rem !important;
|
10895 |
+
margin-bottom: 3rem !important;
|
10896 |
+
}
|
10897 |
+
|
10898 |
+
.my-xxl-auto {
|
10899 |
+
margin-top: auto !important;
|
10900 |
+
margin-bottom: auto !important;
|
10901 |
+
}
|
10902 |
+
|
10903 |
+
.mt-xxl-0 {
|
10904 |
+
margin-top: 0 !important;
|
10905 |
+
}
|
10906 |
+
|
10907 |
+
.mt-xxl-1 {
|
10908 |
+
margin-top: 0.25rem !important;
|
10909 |
+
}
|
10910 |
+
|
10911 |
+
.mt-xxl-2 {
|
10912 |
+
margin-top: 0.5rem !important;
|
10913 |
+
}
|
10914 |
+
|
10915 |
+
.mt-xxl-3 {
|
10916 |
+
margin-top: 1rem !important;
|
10917 |
+
}
|
10918 |
+
|
10919 |
+
.mt-xxl-4 {
|
10920 |
+
margin-top: 1.5rem !important;
|
10921 |
+
}
|
10922 |
+
|
10923 |
+
.mt-xxl-5 {
|
10924 |
+
margin-top: 3rem !important;
|
10925 |
+
}
|
10926 |
+
|
10927 |
+
.mt-xxl-auto {
|
10928 |
+
margin-top: auto !important;
|
10929 |
+
}
|
10930 |
+
|
10931 |
+
.me-xxl-0 {
|
10932 |
+
margin-right: 0 !important;
|
10933 |
+
}
|
10934 |
+
|
10935 |
+
.me-xxl-1 {
|
10936 |
+
margin-right: 0.25rem !important;
|
10937 |
+
}
|
10938 |
+
|
10939 |
+
.me-xxl-2 {
|
10940 |
+
margin-right: 0.5rem !important;
|
10941 |
+
}
|
10942 |
+
|
10943 |
+
.me-xxl-3 {
|
10944 |
+
margin-right: 1rem !important;
|
10945 |
+
}
|
10946 |
+
|
10947 |
+
.me-xxl-4 {
|
10948 |
+
margin-right: 1.5rem !important;
|
10949 |
+
}
|
10950 |
+
|
10951 |
+
.me-xxl-5 {
|
10952 |
+
margin-right: 3rem !important;
|
10953 |
+
}
|
10954 |
+
|
10955 |
+
.me-xxl-auto {
|
10956 |
+
margin-right: auto !important;
|
10957 |
+
}
|
10958 |
+
|
10959 |
+
.mb-xxl-0 {
|
10960 |
+
margin-bottom: 0 !important;
|
10961 |
+
}
|
10962 |
+
|
10963 |
+
.mb-xxl-1 {
|
10964 |
+
margin-bottom: 0.25rem !important;
|
10965 |
+
}
|
10966 |
+
|
10967 |
+
.mb-xxl-2 {
|
10968 |
+
margin-bottom: 0.5rem !important;
|
10969 |
+
}
|
10970 |
+
|
10971 |
+
.mb-xxl-3 {
|
10972 |
+
margin-bottom: 1rem !important;
|
10973 |
+
}
|
10974 |
+
|
10975 |
+
.mb-xxl-4 {
|
10976 |
+
margin-bottom: 1.5rem !important;
|
10977 |
+
}
|
10978 |
+
|
10979 |
+
.mb-xxl-5 {
|
10980 |
+
margin-bottom: 3rem !important;
|
10981 |
+
}
|
10982 |
+
|
10983 |
+
.mb-xxl-auto {
|
10984 |
+
margin-bottom: auto !important;
|
10985 |
+
}
|
10986 |
+
|
10987 |
+
.ms-xxl-0 {
|
10988 |
+
margin-left: 0 !important;
|
10989 |
+
}
|
10990 |
+
|
10991 |
+
.ms-xxl-1 {
|
10992 |
+
margin-left: 0.25rem !important;
|
10993 |
+
}
|
10994 |
+
|
10995 |
+
.ms-xxl-2 {
|
10996 |
+
margin-left: 0.5rem !important;
|
10997 |
+
}
|
10998 |
+
|
10999 |
+
.ms-xxl-3 {
|
11000 |
+
margin-left: 1rem !important;
|
11001 |
+
}
|
11002 |
+
|
11003 |
+
.ms-xxl-4 {
|
11004 |
+
margin-left: 1.5rem !important;
|
11005 |
+
}
|
11006 |
+
|
11007 |
+
.ms-xxl-5 {
|
11008 |
+
margin-left: 3rem !important;
|
11009 |
+
}
|
11010 |
+
|
11011 |
+
.ms-xxl-auto {
|
11012 |
+
margin-left: auto !important;
|
11013 |
+
}
|
11014 |
+
|
11015 |
+
.p-xxl-0 {
|
11016 |
+
padding: 0 !important;
|
11017 |
+
}
|
11018 |
+
|
11019 |
+
.p-xxl-1 {
|
11020 |
+
padding: 0.25rem !important;
|
11021 |
+
}
|
11022 |
+
|
11023 |
+
.p-xxl-2 {
|
11024 |
+
padding: 0.5rem !important;
|
11025 |
+
}
|
11026 |
+
|
11027 |
+
.p-xxl-3 {
|
11028 |
+
padding: 1rem !important;
|
11029 |
+
}
|
11030 |
+
|
11031 |
+
.p-xxl-4 {
|
11032 |
+
padding: 1.5rem !important;
|
11033 |
+
}
|
11034 |
+
|
11035 |
+
.p-xxl-5 {
|
11036 |
+
padding: 3rem !important;
|
11037 |
+
}
|
11038 |
+
|
11039 |
+
.px-xxl-0 {
|
11040 |
+
padding-right: 0 !important;
|
11041 |
+
padding-left: 0 !important;
|
11042 |
+
}
|
11043 |
+
|
11044 |
+
.px-xxl-1 {
|
11045 |
+
padding-right: 0.25rem !important;
|
11046 |
+
padding-left: 0.25rem !important;
|
11047 |
+
}
|
11048 |
+
|
11049 |
+
.px-xxl-2 {
|
11050 |
+
padding-right: 0.5rem !important;
|
11051 |
+
padding-left: 0.5rem !important;
|
11052 |
+
}
|
11053 |
+
|
11054 |
+
.px-xxl-3 {
|
11055 |
+
padding-right: 1rem !important;
|
11056 |
+
padding-left: 1rem !important;
|
11057 |
+
}
|
11058 |
+
|
11059 |
+
.px-xxl-4 {
|
11060 |
+
padding-right: 1.5rem !important;
|
11061 |
+
padding-left: 1.5rem !important;
|
11062 |
+
}
|
11063 |
+
|
11064 |
+
.px-xxl-5 {
|
11065 |
+
padding-right: 3rem !important;
|
11066 |
+
padding-left: 3rem !important;
|
11067 |
+
}
|
11068 |
+
|
11069 |
+
.py-xxl-0 {
|
11070 |
+
padding-top: 0 !important;
|
11071 |
+
padding-bottom: 0 !important;
|
11072 |
+
}
|
11073 |
+
|
11074 |
+
.py-xxl-1 {
|
11075 |
+
padding-top: 0.25rem !important;
|
11076 |
+
padding-bottom: 0.25rem !important;
|
11077 |
+
}
|
11078 |
+
|
11079 |
+
.py-xxl-2 {
|
11080 |
+
padding-top: 0.5rem !important;
|
11081 |
+
padding-bottom: 0.5rem !important;
|
11082 |
+
}
|
11083 |
+
|
11084 |
+
.py-xxl-3 {
|
11085 |
+
padding-top: 1rem !important;
|
11086 |
+
padding-bottom: 1rem !important;
|
11087 |
+
}
|
11088 |
+
|
11089 |
+
.py-xxl-4 {
|
11090 |
+
padding-top: 1.5rem !important;
|
11091 |
+
padding-bottom: 1.5rem !important;
|
11092 |
+
}
|
11093 |
+
|
11094 |
+
.py-xxl-5 {
|
11095 |
+
padding-top: 3rem !important;
|
11096 |
+
padding-bottom: 3rem !important;
|
11097 |
+
}
|
11098 |
+
|
11099 |
+
.pt-xxl-0 {
|
11100 |
+
padding-top: 0 !important;
|
11101 |
+
}
|
11102 |
+
|
11103 |
+
.pt-xxl-1 {
|
11104 |
+
padding-top: 0.25rem !important;
|
11105 |
+
}
|
11106 |
+
|
11107 |
+
.pt-xxl-2 {
|
11108 |
+
padding-top: 0.5rem !important;
|
11109 |
+
}
|
11110 |
+
|
11111 |
+
.pt-xxl-3 {
|
11112 |
+
padding-top: 1rem !important;
|
11113 |
+
}
|
11114 |
+
|
11115 |
+
.pt-xxl-4 {
|
11116 |
+
padding-top: 1.5rem !important;
|
11117 |
+
}
|
11118 |
+
|
11119 |
+
.pt-xxl-5 {
|
11120 |
+
padding-top: 3rem !important;
|
11121 |
+
}
|
11122 |
+
|
11123 |
+
.pe-xxl-0 {
|
11124 |
+
padding-right: 0 !important;
|
11125 |
+
}
|
11126 |
+
|
11127 |
+
.pe-xxl-1 {
|
11128 |
+
padding-right: 0.25rem !important;
|
11129 |
+
}
|
11130 |
+
|
11131 |
+
.pe-xxl-2 {
|
11132 |
+
padding-right: 0.5rem !important;
|
11133 |
+
}
|
11134 |
+
|
11135 |
+
.pe-xxl-3 {
|
11136 |
+
padding-right: 1rem !important;
|
11137 |
+
}
|
11138 |
+
|
11139 |
+
.pe-xxl-4 {
|
11140 |
+
padding-right: 1.5rem !important;
|
11141 |
+
}
|
11142 |
+
|
11143 |
+
.pe-xxl-5 {
|
11144 |
+
padding-right: 3rem !important;
|
11145 |
+
}
|
11146 |
+
|
11147 |
+
.pb-xxl-0 {
|
11148 |
+
padding-bottom: 0 !important;
|
11149 |
+
}
|
11150 |
+
|
11151 |
+
.pb-xxl-1 {
|
11152 |
+
padding-bottom: 0.25rem !important;
|
11153 |
+
}
|
11154 |
+
|
11155 |
+
.pb-xxl-2 {
|
11156 |
+
padding-bottom: 0.5rem !important;
|
11157 |
+
}
|
11158 |
+
|
11159 |
+
.pb-xxl-3 {
|
11160 |
+
padding-bottom: 1rem !important;
|
11161 |
+
}
|
11162 |
+
|
11163 |
+
.pb-xxl-4 {
|
11164 |
+
padding-bottom: 1.5rem !important;
|
11165 |
+
}
|
11166 |
+
|
11167 |
+
.pb-xxl-5 {
|
11168 |
+
padding-bottom: 3rem !important;
|
11169 |
+
}
|
11170 |
+
|
11171 |
+
.ps-xxl-0 {
|
11172 |
+
padding-left: 0 !important;
|
11173 |
+
}
|
11174 |
+
|
11175 |
+
.ps-xxl-1 {
|
11176 |
+
padding-left: 0.25rem !important;
|
11177 |
+
}
|
11178 |
+
|
11179 |
+
.ps-xxl-2 {
|
11180 |
+
padding-left: 0.5rem !important;
|
11181 |
+
}
|
11182 |
+
|
11183 |
+
.ps-xxl-3 {
|
11184 |
+
padding-left: 1rem !important;
|
11185 |
+
}
|
11186 |
+
|
11187 |
+
.ps-xxl-4 {
|
11188 |
+
padding-left: 1.5rem !important;
|
11189 |
+
}
|
11190 |
+
|
11191 |
+
.ps-xxl-5 {
|
11192 |
+
padding-left: 3rem !important;
|
11193 |
+
}
|
11194 |
+
|
11195 |
+
.text-xxl-start {
|
11196 |
+
text-align: left !important;
|
11197 |
+
}
|
11198 |
+
|
11199 |
+
.text-xxl-end {
|
11200 |
+
text-align: right !important;
|
11201 |
+
}
|
11202 |
+
|
11203 |
+
.text-xxl-center {
|
11204 |
+
text-align: center !important;
|
11205 |
+
}
|
11206 |
+
}
|
11207 |
+
@media (min-width: 1200px) {
|
11208 |
+
.fs-1 {
|
11209 |
+
font-size: 2.5rem !important;
|
11210 |
+
}
|
11211 |
+
|
11212 |
+
.fs-2 {
|
11213 |
+
font-size: 2rem !important;
|
11214 |
+
}
|
11215 |
+
|
11216 |
+
.fs-3 {
|
11217 |
+
font-size: 1.75rem !important;
|
11218 |
+
}
|
11219 |
+
|
11220 |
+
.fs-4 {
|
11221 |
+
font-size: 1.5rem !important;
|
11222 |
+
}
|
11223 |
+
}
|
11224 |
+
@media print {
|
11225 |
+
.d-print-inline {
|
11226 |
+
display: inline !important;
|
11227 |
+
}
|
11228 |
+
|
11229 |
+
.d-print-inline-block {
|
11230 |
+
display: inline-block !important;
|
11231 |
+
}
|
11232 |
+
|
11233 |
+
.d-print-block {
|
11234 |
+
display: block !important;
|
11235 |
+
}
|
11236 |
+
|
11237 |
+
.d-print-grid {
|
11238 |
+
display: grid !important;
|
11239 |
+
}
|
11240 |
+
|
11241 |
+
.d-print-table {
|
11242 |
+
display: table !important;
|
11243 |
+
}
|
11244 |
+
|
11245 |
+
.d-print-table-row {
|
11246 |
+
display: table-row !important;
|
11247 |
+
}
|
11248 |
+
|
11249 |
+
.d-print-table-cell {
|
11250 |
+
display: table-cell !important;
|
11251 |
+
}
|
11252 |
+
|
11253 |
+
.d-print-flex {
|
11254 |
+
display: flex !important;
|
11255 |
+
}
|
11256 |
+
|
11257 |
+
.d-print-inline-flex {
|
11258 |
+
display: inline-flex !important;
|
11259 |
+
}
|
11260 |
+
|
11261 |
+
.d-print-none {
|
11262 |
+
display: none !important;
|
11263 |
+
}
|
11264 |
+
}
|
11265 |
+
|
11266 |
+
/*# sourceMappingURL=bootstrap.css.map */
|
lib/bootstrap/css/bootstrap.min.css
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
@charset "UTF-8";/*!
|
2 |
-
* Bootstrap v5.
|
3 |
* Copyright 2011-2021 The Bootstrap Authors
|
4 |
* Copyright 2011-2021 Twitter, Inc.
|
5 |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
6 |
-
*/:root{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0))}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-font-sans-serif);font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){.h1,h1{font-size:2.5rem}}.h2,h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){.h2,h2{font-size:2rem}}.h3,h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){.h3,h3{font-size:1.75rem}}.h4,h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){.h4,h4{font-size:1.5rem}}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[data-bs-original-title],abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}.small,small{font-size:.875em}.mark,mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#0d6efd;text-decoration:underline}a:hover{color:#0a58ca}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em;direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#d63384;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:#6c757d}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{width:100%;padding-right:var(--bs-gutter-x,.75rem);padding-left:var(--bs-gutter-x,.75rem);margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(var(--bs-gutter-y) * -1);margin-right:calc(var(--bs-gutter-x)/ -2);margin-left:calc(var(--bs-gutter-x)/ -2)}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x)/ 2);padding-left:calc(var(--bs-gutter-x)/ 2);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.3333333333%}.col-2{flex:0 0 auto;width:16.6666666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.3333333333%}.col-5{flex:0 0 auto;width:41.6666666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.3333333333%}.col-8{flex:0 0 auto;width:66.6666666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.3333333333%}.col-11{flex:0 0 auto;width:91.6666666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.3333333333%}.offset-2{margin-left:16.6666666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.3333333333%}.offset-5{margin-left:41.6666666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.3333333333%}.offset-8{margin-left:66.6666666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.3333333333%}.offset-11{margin-left:91.6666666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.3333333333%}.col-sm-2{flex:0 0 auto;width:16.6666666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.3333333333%}.col-sm-5{flex:0 0 auto;width:41.6666666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.3333333333%}.col-sm-8{flex:0 0 auto;width:66.6666666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.3333333333%}.col-sm-11{flex:0 0 auto;width:91.6666666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.3333333333%}.offset-sm-2{margin-left:16.6666666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.3333333333%}.offset-sm-5{margin-left:41.6666666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.3333333333%}.offset-sm-8{margin-left:66.6666666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.3333333333%}.offset-sm-11{margin-left:91.6666666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.3333333333%}.col-md-2{flex:0 0 auto;width:16.6666666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.3333333333%}.col-md-5{flex:0 0 auto;width:41.6666666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.3333333333%}.col-md-8{flex:0 0 auto;width:66.6666666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.3333333333%}.col-md-11{flex:0 0 auto;width:91.6666666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.3333333333%}.offset-md-2{margin-left:16.6666666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.3333333333%}.offset-md-5{margin-left:41.6666666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.3333333333%}.offset-md-8{margin-left:66.6666666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.3333333333%}.offset-md-11{margin-left:91.6666666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.3333333333%}.col-lg-2{flex:0 0 auto;width:16.6666666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.3333333333%}.col-lg-5{flex:0 0 auto;width:41.6666666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.3333333333%}.col-lg-8{flex:0 0 auto;width:66.6666666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.3333333333%}.col-lg-11{flex:0 0 auto;width:91.6666666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.3333333333%}.offset-lg-2{margin-left:16.6666666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.3333333333%}.offset-lg-5{margin-left:41.6666666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.3333333333%}.offset-lg-8{margin-left:66.6666666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.3333333333%}.offset-lg-11{margin-left:91.6666666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.3333333333%}.col-xl-2{flex:0 0 auto;width:16.6666666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.3333333333%}.col-xl-5{flex:0 0 auto;width:41.6666666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.3333333333%}.col-xl-8{flex:0 0 auto;width:66.6666666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.3333333333%}.col-xl-11{flex:0 0 auto;width:91.6666666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.3333333333%}.offset-xl-2{margin-left:16.6666666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.3333333333%}.offset-xl-5{margin-left:41.6666666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.3333333333%}.offset-xl-8{margin-left:66.6666666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.3333333333%}.offset-xl-11{margin-left:91.6666666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.3333333333%}.col-xxl-2{flex:0 0 auto;width:16.6666666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.3333333333%}.col-xxl-5{flex:0 0 auto;width:41.6666666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.3333333333%}.col-xxl-8{flex:0 0 auto;width:66.6666666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.3333333333%}.col-xxl-11{flex:0 0 auto;width:91.6666666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.3333333333%}.offset-xxl-2{margin-left:16.6666666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.3333333333%}.offset-xxl-5{margin-left:41.6666666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.3333333333%}.offset-xxl-8{margin-left:66.6666666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.3333333333%}.offset-xxl-11{margin-left:91.6666666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.table{--bs-table-bg:transparent;--bs-table-striped-color:#212529;--bs-table-striped-bg:rgba(0, 0, 0, 0.05);--bs-table-active-color:#212529;--bs-table-active-bg:rgba(0, 0, 0, 0.1);--bs-table-hover-color:#212529;--bs-table-hover-bg:rgba(0, 0, 0, 0.075);width:100%;margin-bottom:1rem;color:#212529;vertical-align:top;border-color:#dee2e6}.table>:not(caption)>*>*{padding:.5rem .5rem;background-color:var(--bs-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table>:not(:last-child)>:last-child>*{border-bottom-color:currentColor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-striped>tbody>tr:nth-of-type(odd){--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-active{--bs-table-accent-bg:var(--bs-table-active-bg);color:var(--bs-table-active-color)}.table-hover>tbody>tr:hover{--bs-table-accent-bg:var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}.table-primary{--bs-table-bg:#cfe2ff;--bs-table-striped-bg:#c5d7f2;--bs-table-striped-color:#000;--bs-table-active-bg:#bacbe6;--bs-table-active-color:#000;--bs-table-hover-bg:#bfd1ec;--bs-table-hover-color:#000;color:#000;border-color:#bacbe6}.table-secondary{--bs-table-bg:#e2e3e5;--bs-table-striped-bg:#d7d8da;--bs-table-striped-color:#000;--bs-table-active-bg:#cbccce;--bs-table-active-color:#000;--bs-table-hover-bg:#d1d2d4;--bs-table-hover-color:#000;color:#000;border-color:#cbccce}.table-success{--bs-table-bg:#d1e7dd;--bs-table-striped-bg:#c7dbd2;--bs-table-striped-color:#000;--bs-table-active-bg:#bcd0c7;--bs-table-active-color:#000;--bs-table-hover-bg:#c1d6cc;--bs-table-hover-color:#000;color:#000;border-color:#bcd0c7}.table-info{--bs-table-bg:#cff4fc;--bs-table-striped-bg:#c5e8ef;--bs-table-striped-color:#000;--bs-table-active-bg:#badce3;--bs-table-active-color:#000;--bs-table-hover-bg:#bfe2e9;--bs-table-hover-color:#000;color:#000;border-color:#badce3}.table-warning{--bs-table-bg:#fff3cd;--bs-table-striped-bg:#f2e7c3;--bs-table-striped-color:#000;--bs-table-active-bg:#e6dbb9;--bs-table-active-color:#000;--bs-table-hover-bg:#ece1be;--bs-table-hover-color:#000;color:#000;border-color:#e6dbb9}.table-danger{--bs-table-bg:#f8d7da;--bs-table-striped-bg:#eccccf;--bs-table-striped-color:#000;--bs-table-active-bg:#dfc2c4;--bs-table-active-color:#000;--bs-table-hover-bg:#e5c7ca;--bs-table-hover-color:#000;color:#000;border-color:#dfc2c4}.table-light{--bs-table-bg:#f8f9fa;--bs-table-striped-bg:#ecedee;--bs-table-striped-color:#000;--bs-table-active-bg:#dfe0e1;--bs-table-active-color:#000;--bs-table-hover-bg:#e5e6e7;--bs-table-hover-color:#000;color:#000;border-color:#dfe0e1}.table-dark{--bs-table-bg:#212529;--bs-table-striped-bg:#2c3034;--bs-table-striped-color:#fff;--bs-table-active-bg:#373b3e;--bs-table-active-color:#fff;--bs-table-hover-bg:#323539;--bs-table-hover-color:#fff;color:#fff;border-color:#373b3e}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem}.form-text{margin-top:.25rem;font-size:.875em;color:#6c757d}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#212529;background-color:#fff;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-control::-webkit-date-and-time-value{height:1.5em}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#dde0e3}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#dde0e3}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + .75rem + 2px)}textarea.form-control-sm{min-height:calc(1.5em + .5rem + 2px)}textarea.form-control-lg{min-height:calc(1.5em + 1rem + 2px)}.form-control-color{max-width:3rem;height:auto;padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{height:1.5em;border-radius:.25rem}.form-control-color::-webkit-color-swatch{height:1.5em;border-radius:.25rem}.form-select{display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:#e9ecef}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #212529}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-input{width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:#fff;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid rgba(0,0,0,.25);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-check-input:checked{background-color:#0d6efd;border-color:#0d6efd}.form-check-input:checked[type=checkbox]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate{background-color:#0d6efd;border-color:#0d6efd;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{width:2em;margin-left:-2.5em;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;filter:none;opacity:.65}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#0d6efd;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b6d4fe}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#0d6efd;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b6d4fe}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.form-range:disabled::-moz-range-thumb{background-color:#adb5bd}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-select{height:calc(3.5rem + 2px);padding:1rem .75rem}.form-floating>label{position:absolute;top:0;left:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control::-moz-placeholder{color:transparent}.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-select:focus{z-index:3}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:3}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#198754}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(25,135,84,.9);border-radius:.25rem}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#198754;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-valid,.was-validated .form-select:valid{border-color:#198754;padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:#198754}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:#198754}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#198754}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.input-group .form-control.is-valid,.input-group .form-select.is-valid,.was-validated .input-group .form-control:valid,.was-validated .input-group .form-select:valid{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:#dc3545;padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:#dc3545}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:#dc3545}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.input-group .form-control.is-invalid,.input-group .form-select.is-invalid,.was-validated .input-group .form-control:invalid,.was-validated .input-group .form-select:invalid{z-index:3}.btn{display:inline-block;font-weight:400;line-height:1.5;color:#212529;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529}.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{pointer-events:none;opacity:.65}.btn-primary{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-primary:hover{color:#fff;background-color:#0b5ed7;border-color:#0a58ca}.btn-check:focus+.btn-primary,.btn-primary:focus{color:#fff;background-color:#0b5ed7;border-color:#0a58ca;box-shadow:0 0 0 .25rem rgba(49,132,253,.5)}.btn-check:active+.btn-primary,.btn-check:checked+.btn-primary,.btn-primary.active,.btn-primary:active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0a58ca;border-color:#0a53be}.btn-check:active+.btn-primary:focus,.btn-check:checked+.btn-primary:focus,.btn-primary.active:focus,.btn-primary:active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(49,132,253,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5c636a;border-color:#565e64}.btn-check:focus+.btn-secondary,.btn-secondary:focus{color:#fff;background-color:#5c636a;border-color:#565e64;box-shadow:0 0 0 .25rem rgba(130,138,145,.5)}.btn-check:active+.btn-secondary,.btn-check:checked+.btn-secondary,.btn-secondary.active,.btn-secondary:active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#565e64;border-color:#51585e}.btn-check:active+.btn-secondary:focus,.btn-check:checked+.btn-secondary:focus,.btn-secondary.active:focus,.btn-secondary:active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(130,138,145,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-success{color:#fff;background-color:#198754;border-color:#198754}.btn-success:hover{color:#fff;background-color:#157347;border-color:#146c43}.btn-check:focus+.btn-success,.btn-success:focus{color:#fff;background-color:#157347;border-color:#146c43;box-shadow:0 0 0 .25rem rgba(60,153,110,.5)}.btn-check:active+.btn-success,.btn-check:checked+.btn-success,.btn-success.active,.btn-success:active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#146c43;border-color:#13653f}.btn-check:active+.btn-success:focus,.btn-check:checked+.btn-success:focus,.btn-success.active:focus,.btn-success:active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(60,153,110,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#198754;border-color:#198754}.btn-info{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-info:hover{color:#000;background-color:#31d2f2;border-color:#25cff2}.btn-check:focus+.btn-info,.btn-info:focus{color:#000;background-color:#31d2f2;border-color:#25cff2;box-shadow:0 0 0 .25rem rgba(11,172,204,.5)}.btn-check:active+.btn-info,.btn-check:checked+.btn-info,.btn-info.active,.btn-info:active,.show>.btn-info.dropdown-toggle{color:#000;background-color:#3dd5f3;border-color:#25cff2}.btn-check:active+.btn-info:focus,.btn-check:checked+.btn-info:focus,.btn-info.active:focus,.btn-info:active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(11,172,204,.5)}.btn-info.disabled,.btn-info:disabled{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-warning{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#000;background-color:#ffca2c;border-color:#ffc720}.btn-check:focus+.btn-warning,.btn-warning:focus{color:#000;background-color:#ffca2c;border-color:#ffc720;box-shadow:0 0 0 .25rem rgba(217,164,6,.5)}.btn-check:active+.btn-warning,.btn-check:checked+.btn-warning,.btn-warning.active,.btn-warning:active,.show>.btn-warning.dropdown-toggle{color:#000;background-color:#ffcd39;border-color:#ffc720}.btn-check:active+.btn-warning:focus,.btn-check:checked+.btn-warning:focus,.btn-warning.active:focus,.btn-warning:active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(217,164,6,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#bb2d3b;border-color:#b02a37}.btn-check:focus+.btn-danger,.btn-danger:focus{color:#fff;background-color:#bb2d3b;border-color:#b02a37;box-shadow:0 0 0 .25rem rgba(225,83,97,.5)}.btn-check:active+.btn-danger,.btn-check:checked+.btn-danger,.btn-danger.active,.btn-danger:active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#b02a37;border-color:#a52834}.btn-check:active+.btn-danger:focus,.btn-check:checked+.btn-danger:focus,.btn-danger.active:focus,.btn-danger:active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(225,83,97,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-light{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:focus+.btn-light,.btn-light:focus{color:#000;background-color:#f9fafb;border-color:#f9fafb;box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-check:active+.btn-light,.btn-check:checked+.btn-light,.btn-light.active,.btn-light:active,.show>.btn-light.dropdown-toggle{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:active+.btn-light:focus,.btn-check:checked+.btn-light:focus,.btn-light.active:focus,.btn-light:active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-light.disabled,.btn-light:disabled{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-dark{color:#fff;background-color:#212529;border-color:#212529}.btn-dark:hover{color:#fff;background-color:#1c1f23;border-color:#1a1e21}.btn-check:focus+.btn-dark,.btn-dark:focus{color:#fff;background-color:#1c1f23;border-color:#1a1e21;box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-check:active+.btn-dark,.btn-check:checked+.btn-dark,.btn-dark.active,.btn-dark:active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1a1e21;border-color:#191c1f}.btn-check:active+.btn-dark:focus,.btn-check:checked+.btn-dark:focus,.btn-dark.active:focus,.btn-dark:active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#212529;border-color:#212529}.btn-outline-primary{color:#0d6efd;border-color:#0d6efd}.btn-outline-primary:hover{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:focus+.btn-outline-primary,.btn-outline-primary:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,.5)}.btn-check:active+.btn-outline-primary,.btn-check:checked+.btn-outline-primary,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show,.btn-outline-primary:active{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:active+.btn-outline-primary:focus,.btn-check:checked+.btn-outline-primary:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus,.btn-outline-primary:active:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#0d6efd;background-color:transparent}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:focus+.btn-outline-secondary,.btn-outline-secondary:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,.5)}.btn-check:active+.btn-outline-secondary,.btn-check:checked+.btn-outline-secondary,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show,.btn-outline-secondary:active{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:active+.btn-outline-secondary:focus,.btn-check:checked+.btn-outline-secondary:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus,.btn-outline-secondary:active:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-success{color:#198754;border-color:#198754}.btn-outline-success:hover{color:#fff;background-color:#198754;border-color:#198754}.btn-check:focus+.btn-outline-success,.btn-outline-success:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.5)}.btn-check:active+.btn-outline-success,.btn-check:checked+.btn-outline-success,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show,.btn-outline-success:active{color:#fff;background-color:#198754;border-color:#198754}.btn-check:active+.btn-outline-success:focus,.btn-check:checked+.btn-outline-success:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus,.btn-outline-success:active:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#198754;background-color:transparent}.btn-outline-info{color:#0dcaf0;border-color:#0dcaf0}.btn-outline-info:hover{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:focus+.btn-outline-info,.btn-outline-info:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,.5)}.btn-check:active+.btn-outline-info,.btn-check:checked+.btn-outline-info,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show,.btn-outline-info:active{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:active+.btn-outline-info:focus,.btn-check:checked+.btn-outline-info:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus,.btn-outline-info:active:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#0dcaf0;background-color:transparent}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:focus+.btn-outline-warning,.btn-outline-warning:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,.5)}.btn-check:active+.btn-outline-warning,.btn-check:checked+.btn-outline-warning,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show,.btn-outline-warning:active{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:active+.btn-outline-warning:focus,.btn-check:checked+.btn-outline-warning:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus,.btn-outline-warning:active:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:focus+.btn-outline-danger,.btn-outline-danger:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.5)}.btn-check:active+.btn-outline-danger,.btn-check:checked+.btn-outline-danger,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show,.btn-outline-danger:active{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:active+.btn-outline-danger:focus,.btn-check:checked+.btn-outline-danger:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus,.btn-outline-danger:active:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:focus+.btn-outline-light,.btn-outline-light:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-check:active+.btn-outline-light,.btn-check:checked+.btn-outline-light,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show,.btn-outline-light:active{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:active+.btn-outline-light:focus,.btn-check:checked+.btn-outline-light:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus,.btn-outline-light:active:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-dark{color:#212529;border-color:#212529}.btn-outline-dark:hover{color:#fff;background-color:#212529;border-color:#212529}.btn-check:focus+.btn-outline-dark,.btn-outline-dark:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-check:active+.btn-outline-dark,.btn-check:checked+.btn-outline-dark,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show,.btn-outline-dark:active{color:#fff;background-color:#212529;border-color:#212529}.btn-check:active+.btn-outline-dark:focus,.btn-check:checked+.btn-outline-dark:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus,.btn-outline-dark:active:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#212529;background-color:transparent}.btn-link{font-weight:400;color:#0d6efd;text-decoration:underline}.btn-link:hover{color:#0a58ca}.btn-link.disabled,.btn-link:disabled{color:#6c757d}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropdown,.dropend,.dropstart,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;z-index:1000;display:none;min-width:10rem;padding:.5rem 0;margin:0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu[data-bs-popper]{left:0;margin-top:.125rem}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu{top:0;right:auto;left:100%}.dropend .dropdown-menu[data-bs-popper]{margin-top:0;margin-left:.125rem}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu{top:0;right:100%;left:auto}.dropstart .dropdown-menu[data-bs-popper]{margin-top:0;margin-right:.125rem}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.15)}.dropdown-item{display:block;width:100%;padding:.25rem 1rem;clear:both;font-weight:400;color:#212529;text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#1e2125;background-color:#e9ecef}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#0d6efd}.dropdown-item.disabled,.dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1rem;color:#212529}.dropdown-menu-dark{color:#dee2e6;background-color:#343a40;border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item{color:#dee2e6}.dropdown-menu-dark .dropdown-item:focus,.dropdown-menu-dark .dropdown-item:hover{color:#fff;background-color:rgba(255,255,255,.15)}.dropdown-menu-dark .dropdown-item.active,.dropdown-menu-dark .dropdown-item:active{color:#fff;background-color:#0d6efd}.dropdown-menu-dark .dropdown-item.disabled,.dropdown-menu-dark .dropdown-item:disabled{color:#adb5bd}.dropdown-menu-dark .dropdown-divider{border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item-text{color:#dee2e6}.dropdown-menu-dark .dropdown-header{color:#adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn~.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-link{margin-bottom:-1px;background:0 0;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6;isolation:isolate}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{background:0 0;border:0;border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#0d6efd}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding-top:.5rem;padding-bottom:.5rem}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;text-decoration:none;white-space:nowrap}.navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem;transition:box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 .25rem}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height,75vh);overflow-y:auto}@media (min-width:576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (min-width:768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (min-width:992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (min-width:1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}@media (min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.55)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.55);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,.55)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.55)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.55);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,.55)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:1rem 1rem}.card-title{margin-bottom:.5rem}.card-subtitle{margin-top:-.25rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1rem}.card-header{padding:.5rem 1rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-footer{padding:.5rem 1rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.5rem;margin-bottom:-.5rem;margin-left:-.5rem;border-bottom:0}.card-header-pills{margin-right:-.5rem;margin-left:-.5rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1rem;border-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-group>.card{margin-bottom:.75rem}@media (min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:1rem 1.25rem;font-size:1rem;color:#212529;text-align:left;background-color:#fff;border:0;border-radius:0;overflow-anchor:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease}@media (prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:#0c63e4;background-color:#e7f1ff;box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-button:not(.collapsed)::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");transform:rotate(180deg)}.accordion-button::after{flex-shrink:0;width:1.25rem;height:1.25rem;margin-left:auto;content:"";background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-size:1.25rem;transition:transform .2s ease-in-out}@media (prefers-reduced-motion:reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.accordion-header{margin-bottom:0}.accordion-item{margin-bottom:-1px;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.accordion-item:first-of-type{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.accordion-item:first-of-type .accordion-button{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.accordion-item:last-of-type{margin-bottom:0;border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-body{padding:1rem 1.25rem}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button{border-radius:0}.breadcrumb{display:flex;flex-wrap:wrap;padding:0 0;margin-bottom:1rem;list-style:none}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:.5rem;color:#6c757d;content:var(--bs-breadcrumb-divider, "/")}.breadcrumb-item.active{color:#6c757d}.pagination{display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;color:#0d6efd;text-decoration:none;background-color:#fff;border:1px solid #dee2e6;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:#0a58ca;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;color:#0a58ca;background-color:#e9ecef;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.page-item:not(:first-child) .page-link{margin-left:-1px}.page-item.active .page-link{z-index:3;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;background-color:#fff;border-color:#dee2e6}.page-link{padding:.375rem .75rem}.page-item:first-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.35em .65em;font-size:.75em;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{position:relative;padding:1rem 1rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-primary{color:#084298;background-color:#cfe2ff;border-color:#b6d4fe}.alert-primary .alert-link{color:#06357a}.alert-secondary{color:#41464b;background-color:#e2e3e5;border-color:#d3d6d8}.alert-secondary .alert-link{color:#34383c}.alert-success{color:#0f5132;background-color:#d1e7dd;border-color:#badbcc}.alert-success .alert-link{color:#0c4128}.alert-info{color:#055160;background-color:#cff4fc;border-color:#b6effb}.alert-info .alert-link{color:#04414d}.alert-warning{color:#664d03;background-color:#fff3cd;border-color:#ffecb5}.alert-warning .alert-link{color:#523e02}.alert-danger{color:#842029;background-color:#f8d7da;border-color:#f5c2c7}.alert-danger .alert-link{color:#6a1a21}.alert-light{color:#636464;background-color:#fefefe;border-color:#fdfdfe}.alert-light .alert-link{color:#4f5050}.alert-dark{color:#141619;background-color:#d3d3d4;border-color:#bcbebf}.alert-dark .alert-link{color:#101214}@-webkit-keyframes progress-bar-stripes{0%{background-position-x:1rem}}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress{display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#0d6efd;transition:width .6s ease}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:1s linear infinite progress-bar-stripes;animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>li::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.5rem 1rem;color:#212529;text-decoration:none;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#084298;background-color:#cfe2ff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#084298;background-color:#bacbe6}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#084298;border-color:#084298}.list-group-item-secondary{color:#41464b;background-color:#e2e3e5}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#41464b;background-color:#cbccce}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#41464b;border-color:#41464b}.list-group-item-success{color:#0f5132;background-color:#d1e7dd}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#0f5132;background-color:#bcd0c7}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#0f5132;border-color:#0f5132}.list-group-item-info{color:#055160;background-color:#cff4fc}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#055160;background-color:#badce3}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#055160;border-color:#055160}.list-group-item-warning{color:#664d03;background-color:#fff3cd}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#664d03;background-color:#e6dbb9}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#664d03;border-color:#664d03}.list-group-item-danger{color:#842029;background-color:#f8d7da}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#842029;background-color:#dfc2c4}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#842029;border-color:#842029}.list-group-item-light{color:#636464;background-color:#fefefe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#636464;background-color:#e5e5e5}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#636464;border-color:#636464}.list-group-item-dark{color:#141619;background-color:#d3d3d4}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#141619;background-color:#bebebf}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#141619;border-color:#141619}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:#000;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;border:0;border-radius:.25rem;opacity:.5}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25);opacity:1}.btn-close.disabled,.btn-close:disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:.25}.btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}.toast{width:350px;max-width:100%;font-size:.875rem;pointer-events:auto;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .5rem 1rem rgba(0,0,0,.15);border-radius:.25rem}.toast:not(.showing):not(.show){opacity:0}.toast.hide{display:none}.toast-container{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:.75rem}.toast-header{display:flex;align-items:center;padding:.5rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.toast-header .btn-close{margin-right:-.375rem;margin-left:.75rem}.toast-body{padding:.75rem;word-wrap:break-word}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1060;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1050;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .btn-close{padding:.5rem .5rem;margin:-.5rem -.5rem -.5rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;flex-shrink:0;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{height:calc(100% - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}.modal-fullscreen .modal-footer{border-radius:0}@media (max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}.modal-fullscreen-sm-down .modal-footer{border-radius:0}}@media (max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}.modal-fullscreen-md-down .modal-footer{border-radius:0}}@media (max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}.modal-fullscreen-lg-down .modal-footer{border-radius:0}}@media (max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}.modal-fullscreen-xl-down .modal-footer{border-radius:0}}@media (max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}.modal-fullscreen-xxl-down .modal-footer{border-radius:0}}.tooltip{position:absolute;z-index:1080;display:block;margin:0;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,.bs-tooltip-top .tooltip-arrow::before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[data-popper-placement^=right],.bs-tooltip-end{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,.bs-tooltip-end .tooltip-arrow::before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[data-popper-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,.bs-tooltip-bottom .tooltip-arrow::before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[data-popper-placement^=left],.bs-tooltip-start{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,.bs-tooltip-start .tooltip-arrow::before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1070;display:block;max-width:276px;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}.popover .popover-arrow::after,.popover .popover-arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-top>.popover-arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-end>.popover-arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f0f0f0}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-start>.popover-arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem 1rem;margin-bottom:0;font-size:1rem;background-color:#f0f0f0;border-bottom:1px solid #d8d8d8;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:1rem 1rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:0 0;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%;list-style:none}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}@-webkit-keyframes spinner-border{to{transform:rotate(360deg)}}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:.75s linear infinite spinner-border;animation:.75s linear infinite spinner-border}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:.75s linear infinite spinner-grow;animation:.75s linear infinite spinner-grow}.spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{-webkit-animation-duration:1.5s;animation-duration:1.5s}}.offcanvas{position:fixed;bottom:0;z-index:1040;display:flex;flex-direction:column;max-width:100%;visibility:hidden;background-color:#fff;background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}@media (prefers-reduced-motion:reduce){.offcanvas{transition:none}}.offcanvas-header{display:flex;justify-content:space-between;padding:1rem 1rem}.offcanvas-header .btn-close{padding:.5rem .5rem;margin:-.5rem -.5rem -.5rem auto}.offcanvas-title{margin-bottom:0;line-height:1.5}.offcanvas-body{flex-grow:1;padding:1rem 1rem;overflow-y:auto}.offcanvas-start{top:0;left:0;width:400px;border-right:1px solid rgba(0,0,0,.2);transform:translateX(-100%)}.offcanvas-end{top:0;right:0;width:400px;border-left:1px solid rgba(0,0,0,.2);transform:translateX(100%)}.offcanvas-bottom{right:0;left:0;height:30vh;max-height:100%;border-top:1px solid rgba(0,0,0,.2);transform:translateY(100%)}.offcanvas.show{transform:none}.offcanvas-backdrop::before{position:fixed;top:0;left:0;z-index:1039;width:100vw;height:100vh;content:"";background-color:rgba(0,0,0,.5)}.clearfix::after{display:block;clear:both;content:""}.link-primary{color:#0d6efd}.link-primary:focus,.link-primary:hover{color:#0a58ca}.link-secondary{color:#6c757d}.link-secondary:focus,.link-secondary:hover{color:#565e64}.link-success{color:#198754}.link-success:focus,.link-success:hover{color:#146c43}.link-info{color:#0dcaf0}.link-info:focus,.link-info:hover{color:#3dd5f3}.link-warning{color:#ffc107}.link-warning:focus,.link-warning:hover{color:#ffcd39}.link-danger{color:#dc3545}.link-danger:focus,.link-danger:hover{color:#b02a37}.link-light{color:#f8f9fa}.link-light:focus,.link-light:hover{color:#f9fafb}.link-dark{color:#212529}.link-dark:focus,.link-dark:hover{color:#1a1e21}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio:100%}.ratio-4x3{--bs-aspect-ratio:calc(3 / 4 * 100%)}.ratio-16x9{--bs-aspect-ratio:calc(9 / 16 * 100%)}.ratio-21x9{--bs-aspect-ratio:calc(9 / 21 * 100%)}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}@media (min-width:576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.float-start{float:left!important}.float-end{float:right!important}.float-none{float:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-50{left:50%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-50{right:50%!important}.end-100{right:100%!important}.translate-middle{transform:translate(-50%,-50%)!important}.translate-middle-x{transform:translateX(-50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:1px solid #dee2e6!important}.border-0{border:0!important}.border-top{border-top:1px solid #dee2e6!important}.border-top-0{border-top:0!important}.border-end{border-right:1px solid #dee2e6!important}.border-end-0{border-right:0!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-bottom-0{border-bottom:0!important}.border-start{border-left:1px solid #dee2e6!important}.border-start-0{border-left:0!important}.border-primary{border-color:#0d6efd!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#198754!important}.border-info{border-color:#0dcaf0!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#212529!important}.border-white{border-color:#fff!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}.font-monospace{font-family:var(--bs-font-monospace)!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-light{font-weight:300!important}.fw-lighter{font-weight:lighter!important}.fw-normal{font-weight:400!important}.fw-bold{font-weight:700!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:2!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-primary{color:#0d6efd!important}.text-secondary{color:#6c757d!important}.text-success{color:#198754!important}.text-info{color:#0dcaf0!important}.text-warning{color:#ffc107!important}.text-danger{color:#dc3545!important}.text-light{color:#f8f9fa!important}.text-dark{color:#212529!important}.text-white{color:#fff!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-reset{color:inherit!important}.bg-primary{background-color:#0d6efd!important}.bg-secondary{background-color:#6c757d!important}.bg-success{background-color:#198754!important}.bg-info{background-color:#0dcaf0!important}.bg-warning{background-color:#ffc107!important}.bg-danger{background-color:#dc3545!important}.bg-light{background-color:#f8f9fa!important}.bg-dark{background-color:#212529!important}.bg-body{background-color:#fff!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.bg-gradient{background-image:var(--bs-gradient)!important}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:.25rem!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:.2rem!important}.rounded-2{border-radius:.25rem!important}.rounded-3{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-end{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-start{border-bottom-left-radius:.25rem!important;border-top-left-radius:.25rem!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media (min-width:576px){.float-sm-start{float:left!important}.float-sm-end{float:right!important}.float-sm-none{float:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.float-md-start{float:left!important}.float-md-end{float:right!important}.float-md-none{float:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.float-lg-start{float:left!important}.float-lg-end{float:right!important}.float-lg-none{float:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.float-xl-start{float:left!important}.float-xl-end{float:right!important}.float-xl-none{float:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}}@media (min-width:1400px){.float-xxl-start{float:left!important}.float-xxl-end{float:right!important}.float-xxl-none{float:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}.text-xxl-start{text-align:left!important}.text-xxl-end{text-align:right!important}.text-xxl-center{text-align:center!important}}@media (min-width:1200px){.fs-1{font-size:2.5rem!important}.fs-2{font-size:2rem!important}.fs-3{font-size:1.75rem!important}.fs-4{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}}
|
7 |
/*# sourceMappingURL=bootstrap.min.css.map */
|
1 |
@charset "UTF-8";/*!
|
2 |
+
* Bootstrap v5.1.3 (https://getbootstrap.com/)
|
3 |
* Copyright 2011-2021 The Bootstrap Authors
|
4 |
* Copyright 2011-2021 Twitter, Inc.
|
5 |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
6 |
+
*/:root{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-gray-100:#f8f9fa;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#6c757d;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#212529;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-primary-rgb:13,110,253;--bs-secondary-rgb:108,117,125;--bs-success-rgb:25,135,84;--bs-info-rgb:13,202,240;--bs-warning-rgb:255,193,7;--bs-danger-rgb:220,53,69;--bs-light-rgb:248,249,250;--bs-dark-rgb:33,37,41;--bs-white-rgb:255,255,255;--bs-black-rgb:0,0,0;--bs-body-color-rgb:33,37,41;--bs-body-bg-rgb:255,255,255;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#212529;--bs-body-bg:#fff}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){.h1,h1{font-size:2.5rem}}.h2,h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){.h2,h2{font-size:2rem}}.h3,h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){.h3,h3{font-size:1.75rem}}.h4,h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){.h4,h4{font-size:1.5rem}}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[data-bs-original-title],abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}.small,small{font-size:.875em}.mark,mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#0d6efd;text-decoration:underline}a:hover{color:#0a58ca}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em;direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#d63384;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::-webkit-file-upload-button{font:inherit}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:#6c757d}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{width:100%;padding-right:var(--bs-gutter-x,.75rem);padding-left:var(--bs-gutter-x,.75rem);margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(-1 * var(--bs-gutter-y));margin-right:calc(-.5 * var(--bs-gutter-x));margin-left:calc(-.5 * var(--bs-gutter-x))}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.table{--bs-table-bg:transparent;--bs-table-accent-bg:transparent;--bs-table-striped-color:#212529;--bs-table-striped-bg:rgba(0, 0, 0, 0.05);--bs-table-active-color:#212529;--bs-table-active-bg:rgba(0, 0, 0, 0.1);--bs-table-hover-color:#212529;--bs-table-hover-bg:rgba(0, 0, 0, 0.075);width:100%;margin-bottom:1rem;color:#212529;vertical-align:top;border-color:#dee2e6}.table>:not(caption)>*>*{padding:.5rem .5rem;background-color:var(--bs-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table>:not(:first-child){border-top:2px solid currentColor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-borderless>:not(:first-child){border-top-width:0}.table-striped>tbody>tr:nth-of-type(odd)>*{--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-active{--bs-table-accent-bg:var(--bs-table-active-bg);color:var(--bs-table-active-color)}.table-hover>tbody>tr:hover>*{--bs-table-accent-bg:var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}.table-primary{--bs-table-bg:#cfe2ff;--bs-table-striped-bg:#c5d7f2;--bs-table-striped-color:#000;--bs-table-active-bg:#bacbe6;--bs-table-active-color:#000;--bs-table-hover-bg:#bfd1ec;--bs-table-hover-color:#000;color:#000;border-color:#bacbe6}.table-secondary{--bs-table-bg:#e2e3e5;--bs-table-striped-bg:#d7d8da;--bs-table-striped-color:#000;--bs-table-active-bg:#cbccce;--bs-table-active-color:#000;--bs-table-hover-bg:#d1d2d4;--bs-table-hover-color:#000;color:#000;border-color:#cbccce}.table-success{--bs-table-bg:#d1e7dd;--bs-table-striped-bg:#c7dbd2;--bs-table-striped-color:#000;--bs-table-active-bg:#bcd0c7;--bs-table-active-color:#000;--bs-table-hover-bg:#c1d6cc;--bs-table-hover-color:#000;color:#000;border-color:#bcd0c7}.table-info{--bs-table-bg:#cff4fc;--bs-table-striped-bg:#c5e8ef;--bs-table-striped-color:#000;--bs-table-active-bg:#badce3;--bs-table-active-color:#000;--bs-table-hover-bg:#bfe2e9;--bs-table-hover-color:#000;color:#000;border-color:#badce3}.table-warning{--bs-table-bg:#fff3cd;--bs-table-striped-bg:#f2e7c3;--bs-table-striped-color:#000;--bs-table-active-bg:#e6dbb9;--bs-table-active-color:#000;--bs-table-hover-bg:#ece1be;--bs-table-hover-color:#000;color:#000;border-color:#e6dbb9}.table-danger{--bs-table-bg:#f8d7da;--bs-table-striped-bg:#eccccf;--bs-table-striped-color:#000;--bs-table-active-bg:#dfc2c4;--bs-table-active-color:#000;--bs-table-hover-bg:#e5c7ca;--bs-table-hover-color:#000;color:#000;border-color:#dfc2c4}.table-light{--bs-table-bg:#f8f9fa;--bs-table-striped-bg:#ecedee;--bs-table-striped-color:#000;--bs-table-active-bg:#dfe0e1;--bs-table-active-color:#000;--bs-table-hover-bg:#e5e6e7;--bs-table-hover-color:#000;color:#000;border-color:#dfe0e1}.table-dark{--bs-table-bg:#212529;--bs-table-striped-bg:#2c3034;--bs-table-striped-color:#fff;--bs-table-active-bg:#373b3e;--bs-table-active-color:#fff;--bs-table-hover-bg:#323539;--bs-table-hover-color:#fff;color:#fff;border-color:#373b3e}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem}.form-text{margin-top:.25rem;font-size:.875em;color:#6c757d}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#212529;background-color:#fff;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-control::-webkit-date-and-time-value{height:1.5em}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#dde0e3}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#dde0e3}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#dde0e3}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + .75rem + 2px)}textarea.form-control-sm{min-height:calc(1.5em + .5rem + 2px)}textarea.form-control-lg{min-height:calc(1.5em + 1rem + 2px)}.form-control-color{width:3rem;height:auto;padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{height:1.5em;border-radius:.25rem}.form-control-color::-webkit-color-swatch{height:1.5em;border-radius:.25rem}.form-select{display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;-moz-padding-start:calc(0.75rem - 3px);font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-select{transition:none}}.form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:#e9ecef}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #212529}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem;border-radius:.2rem}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem;border-radius:.3rem}.form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-input{width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:#fff;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid rgba(0,0,0,.25);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-check-input:checked{background-color:#0d6efd;border-color:#0d6efd}.form-check-input:checked[type=checkbox]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate{background-color:#0d6efd;border-color:#0d6efd;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{width:2em;margin-left:-2.5em;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;filter:none;opacity:.65}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#0d6efd;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b6d4fe}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#0d6efd;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b6d4fe}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.form-range:disabled::-moz-range-thumb{background-color:#adb5bd}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-select{height:calc(3.5rem + 2px);line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control{padding:1rem .75rem}.form-floating>.form-control::-moz-placeholder{color:transparent}.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-select:focus{z-index:3}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:3}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#198754}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(25,135,84,.9);border-radius:.25rem}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#198754;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-valid,.was-validated .form-select:valid{border-color:#198754}.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:#198754}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:#198754}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#198754}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.input-group .form-control.is-valid,.input-group .form-select.is-valid,.was-validated .input-group .form-control:valid,.was-validated .input-group .form-select:valid{z-index:1}.input-group .form-control.is-valid:focus,.input-group .form-select.is-valid:focus,.was-validated .input-group .form-control:valid:focus,.was-validated .input-group .form-select:valid:focus{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:#dc3545}.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:#dc3545}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:#dc3545}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.input-group .form-control.is-invalid,.input-group .form-select.is-invalid,.was-validated .input-group .form-control:invalid,.was-validated .input-group .form-select:invalid{z-index:2}.input-group .form-control.is-invalid:focus,.input-group .form-select.is-invalid:focus,.was-validated .input-group .form-control:invalid:focus,.was-validated .input-group .form-select:invalid:focus{z-index:3}.btn{display:inline-block;font-weight:400;line-height:1.5;color:#212529;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529}.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{pointer-events:none;opacity:.65}.btn-primary{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-primary:hover{color:#fff;background-color:#0b5ed7;border-color:#0a58ca}.btn-check:focus+.btn-primary,.btn-primary:focus{color:#fff;background-color:#0b5ed7;border-color:#0a58ca;box-shadow:0 0 0 .25rem rgba(49,132,253,.5)}.btn-check:active+.btn-primary,.btn-check:checked+.btn-primary,.btn-primary.active,.btn-primary:active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0a58ca;border-color:#0a53be}.btn-check:active+.btn-primary:focus,.btn-check:checked+.btn-primary:focus,.btn-primary.active:focus,.btn-primary:active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(49,132,253,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5c636a;border-color:#565e64}.btn-check:focus+.btn-secondary,.btn-secondary:focus{color:#fff;background-color:#5c636a;border-color:#565e64;box-shadow:0 0 0 .25rem rgba(130,138,145,.5)}.btn-check:active+.btn-secondary,.btn-check:checked+.btn-secondary,.btn-secondary.active,.btn-secondary:active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#565e64;border-color:#51585e}.btn-check:active+.btn-secondary:focus,.btn-check:checked+.btn-secondary:focus,.btn-secondary.active:focus,.btn-secondary:active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(130,138,145,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-success{color:#fff;background-color:#198754;border-color:#198754}.btn-success:hover{color:#fff;background-color:#157347;border-color:#146c43}.btn-check:focus+.btn-success,.btn-success:focus{color:#fff;background-color:#157347;border-color:#146c43;box-shadow:0 0 0 .25rem rgba(60,153,110,.5)}.btn-check:active+.btn-success,.btn-check:checked+.btn-success,.btn-success.active,.btn-success:active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#146c43;border-color:#13653f}.btn-check:active+.btn-success:focus,.btn-check:checked+.btn-success:focus,.btn-success.active:focus,.btn-success:active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(60,153,110,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#198754;border-color:#198754}.btn-info{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-info:hover{color:#000;background-color:#31d2f2;border-color:#25cff2}.btn-check:focus+.btn-info,.btn-info:focus{color:#000;background-color:#31d2f2;border-color:#25cff2;box-shadow:0 0 0 .25rem rgba(11,172,204,.5)}.btn-check:active+.btn-info,.btn-check:checked+.btn-info,.btn-info.active,.btn-info:active,.show>.btn-info.dropdown-toggle{color:#000;background-color:#3dd5f3;border-color:#25cff2}.btn-check:active+.btn-info:focus,.btn-check:checked+.btn-info:focus,.btn-info.active:focus,.btn-info:active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(11,172,204,.5)}.btn-info.disabled,.btn-info:disabled{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-warning{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#000;background-color:#ffca2c;border-color:#ffc720}.btn-check:focus+.btn-warning,.btn-warning:focus{color:#000;background-color:#ffca2c;border-color:#ffc720;box-shadow:0 0 0 .25rem rgba(217,164,6,.5)}.btn-check:active+.btn-warning,.btn-check:checked+.btn-warning,.btn-warning.active,.btn-warning:active,.show>.btn-warning.dropdown-toggle{color:#000;background-color:#ffcd39;border-color:#ffc720}.btn-check:active+.btn-warning:focus,.btn-check:checked+.btn-warning:focus,.btn-warning.active:focus,.btn-warning:active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(217,164,6,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#bb2d3b;border-color:#b02a37}.btn-check:focus+.btn-danger,.btn-danger:focus{color:#fff;background-color:#bb2d3b;border-color:#b02a37;box-shadow:0 0 0 .25rem rgba(225,83,97,.5)}.btn-check:active+.btn-danger,.btn-check:checked+.btn-danger,.btn-danger.active,.btn-danger:active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#b02a37;border-color:#a52834}.btn-check:active+.btn-danger:focus,.btn-check:checked+.btn-danger:focus,.btn-danger.active:focus,.btn-danger:active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(225,83,97,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-light{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:focus+.btn-light,.btn-light:focus{color:#000;background-color:#f9fafb;border-color:#f9fafb;box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-check:active+.btn-light,.btn-check:checked+.btn-light,.btn-light.active,.btn-light:active,.show>.btn-light.dropdown-toggle{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:active+.btn-light:focus,.btn-check:checked+.btn-light:focus,.btn-light.active:focus,.btn-light:active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-light.disabled,.btn-light:disabled{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-dark{color:#fff;background-color:#212529;border-color:#212529}.btn-dark:hover{color:#fff;background-color:#1c1f23;border-color:#1a1e21}.btn-check:focus+.btn-dark,.btn-dark:focus{color:#fff;background-color:#1c1f23;border-color:#1a1e21;box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-check:active+.btn-dark,.btn-check:checked+.btn-dark,.btn-dark.active,.btn-dark:active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1a1e21;border-color:#191c1f}.btn-check:active+.btn-dark:focus,.btn-check:checked+.btn-dark:focus,.btn-dark.active:focus,.btn-dark:active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#212529;border-color:#212529}.btn-outline-primary{color:#0d6efd;border-color:#0d6efd}.btn-outline-primary:hover{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:focus+.btn-outline-primary,.btn-outline-primary:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,.5)}.btn-check:active+.btn-outline-primary,.btn-check:checked+.btn-outline-primary,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show,.btn-outline-primary:active{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:active+.btn-outline-primary:focus,.btn-check:checked+.btn-outline-primary:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus,.btn-outline-primary:active:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#0d6efd;background-color:transparent}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:focus+.btn-outline-secondary,.btn-outline-secondary:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,.5)}.btn-check:active+.btn-outline-secondary,.btn-check:checked+.btn-outline-secondary,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show,.btn-outline-secondary:active{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:active+.btn-outline-secondary:focus,.btn-check:checked+.btn-outline-secondary:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus,.btn-outline-secondary:active:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-success{color:#198754;border-color:#198754}.btn-outline-success:hover{color:#fff;background-color:#198754;border-color:#198754}.btn-check:focus+.btn-outline-success,.btn-outline-success:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.5)}.btn-check:active+.btn-outline-success,.btn-check:checked+.btn-outline-success,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show,.btn-outline-success:active{color:#fff;background-color:#198754;border-color:#198754}.btn-check:active+.btn-outline-success:focus,.btn-check:checked+.btn-outline-success:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus,.btn-outline-success:active:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#198754;background-color:transparent}.btn-outline-info{color:#0dcaf0;border-color:#0dcaf0}.btn-outline-info:hover{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:focus+.btn-outline-info,.btn-outline-info:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,.5)}.btn-check:active+.btn-outline-info,.btn-check:checked+.btn-outline-info,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show,.btn-outline-info:active{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:active+.btn-outline-info:focus,.btn-check:checked+.btn-outline-info:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus,.btn-outline-info:active:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#0dcaf0;background-color:transparent}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:focus+.btn-outline-warning,.btn-outline-warning:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,.5)}.btn-check:active+.btn-outline-warning,.btn-check:checked+.btn-outline-warning,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show,.btn-outline-warning:active{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:active+.btn-outline-warning:focus,.btn-check:checked+.btn-outline-warning:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus,.btn-outline-warning:active:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:focus+.btn-outline-danger,.btn-outline-danger:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.5)}.btn-check:active+.btn-outline-danger,.btn-check:checked+.btn-outline-danger,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show,.btn-outline-danger:active{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:active+.btn-outline-danger:focus,.btn-check:checked+.btn-outline-danger:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus,.btn-outline-danger:active:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:focus+.btn-outline-light,.btn-outline-light:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-check:active+.btn-outline-light,.btn-check:checked+.btn-outline-light,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show,.btn-outline-light:active{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:active+.btn-outline-light:focus,.btn-check:checked+.btn-outline-light:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus,.btn-outline-light:active:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-dark{color:#212529;border-color:#212529}.btn-outline-dark:hover{color:#fff;background-color:#212529;border-color:#212529}.btn-check:focus+.btn-outline-dark,.btn-outline-dark:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-check:active+.btn-outline-dark,.btn-check:checked+.btn-outline-dark,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show,.btn-outline-dark:active{color:#fff;background-color:#212529;border-color:#212529}.btn-check:active+.btn-outline-dark:focus,.btn-check:checked+.btn-outline-dark:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus,.btn-outline-dark:active:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#212529;background-color:transparent}.btn-link{font-weight:400;color:#0d6efd;text-decoration:underline}.btn-link:hover{color:#0a58ca}.btn-link.disabled,.btn-link:disabled{color:#6c757d}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media (prefers-reduced-motion:reduce){.collapsing.collapse-horizontal{transition:none}}.dropdown,.dropend,.dropstart,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;z-index:1000;display:none;min-width:10rem;padding:.5rem 0;margin:0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:.125rem}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.15)}.dropdown-item{display:block;width:100%;padding:.25rem 1rem;clear:both;font-weight:400;color:#212529;text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#1e2125;background-color:#e9ecef}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#0d6efd}.dropdown-item.disabled,.dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1rem;color:#212529}.dropdown-menu-dark{color:#dee2e6;background-color:#343a40;border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item{color:#dee2e6}.dropdown-menu-dark .dropdown-item:focus,.dropdown-menu-dark .dropdown-item:hover{color:#fff;background-color:rgba(255,255,255,.15)}.dropdown-menu-dark .dropdown-item.active,.dropdown-menu-dark .dropdown-item:active{color:#fff;background-color:#0d6efd}.dropdown-menu-dark .dropdown-item.disabled,.dropdown-menu-dark .dropdown-item:disabled{color:#adb5bd}.dropdown-menu-dark .dropdown-divider{border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item-text{color:#dee2e6}.dropdown-menu-dark .dropdown-header{color:#adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn~.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem;color:#0d6efd;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link:focus,.nav-link:hover{color:#0a58ca}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-link{margin-bottom:-1px;background:0 0;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6;isolation:isolate}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{background:0 0;border:0;border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#0d6efd}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding-top:.5rem;padding-bottom:.5rem}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;text-decoration:none;white-space:nowrap}.navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem;transition:box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 .25rem}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height,75vh);overflow-y:auto}@media (min-width:576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .offcanvas-header{display:none}.navbar-expand-sm .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-sm .offcanvas-bottom,.navbar-expand-sm .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-sm .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .offcanvas-header{display:none}.navbar-expand-md .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-md .offcanvas-bottom,.navbar-expand-md .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-md .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .offcanvas-header{display:none}.navbar-expand-lg .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-lg .offcanvas-bottom,.navbar-expand-lg .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-lg .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .offcanvas-header{display:none}.navbar-expand-xl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-xl .offcanvas-bottom,.navbar-expand-xl .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-xl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}.navbar-expand-xxl .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-xxl .offcanvas-bottom,.navbar-expand-xxl .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-xxl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .offcanvas-header{display:none}.navbar-expand .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand .offcanvas-bottom,.navbar-expand .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.55)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.55);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,.55)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.55)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.55);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,.55)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:1rem 1rem}.card-title{margin-bottom:.5rem}.card-subtitle{margin-top:-.25rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-left:1rem}.card-header{padding:.5rem 1rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-footer{padding:.5rem 1rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.5rem;margin-bottom:-.5rem;margin-left:-.5rem;border-bottom:0}.card-header-pills{margin-right:-.5rem;margin-left:-.5rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1rem;border-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-group>.card{margin-bottom:.75rem}@media (min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:1rem 1.25rem;font-size:1rem;color:#212529;text-align:left;background-color:#fff;border:0;border-radius:0;overflow-anchor:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease}@media (prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:#0c63e4;background-color:#e7f1ff;box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-button:not(.collapsed)::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");transform:rotate(-180deg)}.accordion-button::after{flex-shrink:0;width:1.25rem;height:1.25rem;margin-left:auto;content:"";background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-size:1.25rem;transition:transform .2s ease-in-out}@media (prefers-reduced-motion:reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.accordion-header{margin-bottom:0}.accordion-item{background-color:#fff;border:1px solid rgba(0,0,0,.125)}.accordion-item:first-of-type{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.accordion-item:first-of-type .accordion-button{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-body{padding:1rem 1.25rem}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button{border-radius:0}.breadcrumb{display:flex;flex-wrap:wrap;padding:0 0;margin-bottom:1rem;list-style:none}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:.5rem;color:#6c757d;content:var(--bs-breadcrumb-divider, "/")}.breadcrumb-item.active{color:#6c757d}.pagination{display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;color:#0d6efd;text-decoration:none;background-color:#fff;border:1px solid #dee2e6;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:#0a58ca;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;color:#0a58ca;background-color:#e9ecef;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.page-item:not(:first-child) .page-link{margin-left:-1px}.page-item.active .page-link{z-index:3;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;background-color:#fff;border-color:#dee2e6}.page-link{padding:.375rem .75rem}.page-item:first-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.35em .65em;font-size:.75em;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{position:relative;padding:1rem 1rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-primary{color:#084298;background-color:#cfe2ff;border-color:#b6d4fe}.alert-primary .alert-link{color:#06357a}.alert-secondary{color:#41464b;background-color:#e2e3e5;border-color:#d3d6d8}.alert-secondary .alert-link{color:#34383c}.alert-success{color:#0f5132;background-color:#d1e7dd;border-color:#badbcc}.alert-success .alert-link{color:#0c4128}.alert-info{color:#055160;background-color:#cff4fc;border-color:#b6effb}.alert-info .alert-link{color:#04414d}.alert-warning{color:#664d03;background-color:#fff3cd;border-color:#ffecb5}.alert-warning .alert-link{color:#523e02}.alert-danger{color:#842029;background-color:#f8d7da;border-color:#f5c2c7}.alert-danger .alert-link{color:#6a1a21}.alert-light{color:#636464;background-color:#fefefe;border-color:#fdfdfe}.alert-light .alert-link{color:#4f5050}.alert-dark{color:#141619;background-color:#d3d3d4;border-color:#bcbebf}.alert-dark .alert-link{color:#101214}@-webkit-keyframes progress-bar-stripes{0%{background-position-x:1rem}}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress{display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#0d6efd;transition:width .6s ease}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:1s linear infinite progress-bar-stripes;animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>li::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.5rem 1rem;color:#212529;text-decoration:none;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#084298;background-color:#cfe2ff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#084298;background-color:#bacbe6}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#084298;border-color:#084298}.list-group-item-secondary{color:#41464b;background-color:#e2e3e5}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#41464b;background-color:#cbccce}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#41464b;border-color:#41464b}.list-group-item-success{color:#0f5132;background-color:#d1e7dd}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#0f5132;background-color:#bcd0c7}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#0f5132;border-color:#0f5132}.list-group-item-info{color:#055160;background-color:#cff4fc}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#055160;background-color:#badce3}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#055160;border-color:#055160}.list-group-item-warning{color:#664d03;background-color:#fff3cd}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#664d03;background-color:#e6dbb9}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#664d03;border-color:#664d03}.list-group-item-danger{color:#842029;background-color:#f8d7da}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#842029;background-color:#dfc2c4}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#842029;border-color:#842029}.list-group-item-light{color:#636464;background-color:#fefefe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#636464;background-color:#e5e5e5}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#636464;border-color:#636464}.list-group-item-dark{color:#141619;background-color:#d3d3d4}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#141619;background-color:#bebebf}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#141619;border-color:#141619}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:#000;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;border:0;border-radius:.25rem;opacity:.5}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25);opacity:1}.btn-close.disabled,.btn-close:disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:.25}.btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}.toast{width:350px;max-width:100%;font-size:.875rem;pointer-events:auto;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .5rem 1rem rgba(0,0,0,.15);border-radius:.25rem}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:.75rem}.toast-header{display:flex;align-items:center;padding:.5rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.toast-header .btn-close{margin-right:-.375rem;margin-left:.75rem}.toast-body{padding:.75rem;word-wrap:break-word}.modal{position:fixed;top:0;left:0;z-index:1055;display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1050;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .btn-close{padding:.5rem .5rem;margin:-.5rem -.5rem -.5rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;flex-shrink:0;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{height:calc(100% - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}.modal-fullscreen .modal-footer{border-radius:0}@media (max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}.modal-fullscreen-sm-down .modal-footer{border-radius:0}}@media (max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}.modal-fullscreen-md-down .modal-footer{border-radius:0}}@media (max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}.modal-fullscreen-lg-down .modal-footer{border-radius:0}}@media (max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}.modal-fullscreen-xl-down .modal-footer{border-radius:0}}@media (max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}.modal-fullscreen-xxl-down .modal-footer{border-radius:0}}.tooltip{position:absolute;z-index:1080;display:block;margin:0;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,.bs-tooltip-top .tooltip-arrow::before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[data-popper-placement^=right],.bs-tooltip-end{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,.bs-tooltip-end .tooltip-arrow::before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[data-popper-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,.bs-tooltip-bottom .tooltip-arrow::before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[data-popper-placement^=left],.bs-tooltip-start{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,.bs-tooltip-start .tooltip-arrow::before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1070;display:block;max-width:276px;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}.popover .popover-arrow::after,.popover .popover-arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-top>.popover-arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-end>.popover-arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f0f0f0}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-start>.popover-arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem 1rem;margin-bottom:0;font-size:1rem;background-color:#f0f0f0;border-bottom:1px solid rgba(0,0,0,.2);border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:1rem 1rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:0 0;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%;list-style:none}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}@-webkit-keyframes spinner-border{to{transform:rotate(360deg)}}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:.75s linear infinite spinner-border;animation:.75s linear infinite spinner-border}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:.75s linear infinite spinner-grow;animation:.75s linear infinite spinner-grow}.spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{-webkit-animation-duration:1.5s;animation-duration:1.5s}}.offcanvas{position:fixed;bottom:0;z-index:1045;display:flex;flex-direction:column;max-width:100%;visibility:hidden;background-color:#fff;background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}@media (prefers-reduced-motion:reduce){.offcanvas{transition:none}}.offcanvas-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas-header{display:flex;align-items:center;justify-content:space-between;padding:1rem 1rem}.offcanvas-header .btn-close{padding:.5rem .5rem;margin-top:-.5rem;margin-right:-.5rem;margin-bottom:-.5rem}.offcanvas-title{margin-bottom:0;line-height:1.5}.offcanvas-body{flex-grow:1;padding:1rem 1rem;overflow-y:auto}.offcanvas-start{top:0;left:0;width:400px;border-right:1px solid rgba(0,0,0,.2);transform:translateX(-100%)}.offcanvas-end{top:0;right:0;width:400px;border-left:1px solid rgba(0,0,0,.2);transform:translateX(100%)}.offcanvas-top{top:0;right:0;left:0;height:30vh;max-height:100%;border-bottom:1px solid rgba(0,0,0,.2);transform:translateY(-100%)}.offcanvas-bottom{right:0;left:0;height:30vh;max-height:100%;border-top:1px solid rgba(0,0,0,.2);transform:translateY(100%)}.offcanvas.show{transform:none}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentColor;opacity:.5}.placeholder.btn::before{display:inline-block;content:""}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{-webkit-animation:placeholder-glow 2s ease-in-out infinite;animation:placeholder-glow 2s ease-in-out infinite}@-webkit-keyframes placeholder-glow{50%{opacity:.2}}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{-webkit-mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);-webkit-mask-size:200% 100%;mask-size:200% 100%;-webkit-animation:placeholder-wave 2s linear infinite;animation:placeholder-wave 2s linear infinite}@-webkit-keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}@keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}.clearfix::after{display:block;clear:both;content:""}.link-primary{color:#0d6efd}.link-primary:focus,.link-primary:hover{color:#0a58ca}.link-secondary{color:#6c757d}.link-secondary:focus,.link-secondary:hover{color:#565e64}.link-success{color:#198754}.link-success:focus,.link-success:hover{color:#146c43}.link-info{color:#0dcaf0}.link-info:focus,.link-info:hover{color:#3dd5f3}.link-warning{color:#ffc107}.link-warning:focus,.link-warning:hover{color:#ffcd39}.link-danger{color:#dc3545}.link-danger:focus,.link-danger:hover{color:#b02a37}.link-light{color:#f8f9fa}.link-light:focus,.link-light:hover{color:#f9fafb}.link-dark{color:#212529}.link-dark:focus,.link-dark:hover{color:#1a1e21}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio:100%}.ratio-4x3{--bs-aspect-ratio:75%}.ratio-16x9{--bs-aspect-ratio:56.25%}.ratio-21x9{--bs-aspect-ratio:42.8571428571%}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}@media (min-width:576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.hstack{display:flex;flex-direction:row;align-items:center;align-self:stretch}.vstack{display:flex;flex:1 1 auto;flex-direction:column;align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;width:1px;min-height:1em;background-color:currentColor;opacity:.25}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.float-start{float:left!important}.float-end{float:right!important}.float-none{float:none!important}.opacity-0{opacity:0!important}.opacity-25{opacity:.25!important}.opacity-50{opacity:.5!important}.opacity-75{opacity:.75!important}.opacity-100{opacity:1!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-50{left:50%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-50{right:50%!important}.end-100{right:100%!important}.translate-middle{transform:translate(-50%,-50%)!important}.translate-middle-x{transform:translateX(-50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:1px solid #dee2e6!important}.border-0{border:0!important}.border-top{border-top:1px solid #dee2e6!important}.border-top-0{border-top:0!important}.border-end{border-right:1px solid #dee2e6!important}.border-end-0{border-right:0!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-bottom-0{border-bottom:0!important}.border-start{border-left:1px solid #dee2e6!important}.border-start-0{border-left:0!important}.border-primary{border-color:#0d6efd!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#198754!important}.border-info{border-color:#0dcaf0!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#212529!important}.border-white{border-color:#fff!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}.font-monospace{font-family:var(--bs-font-monospace)!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-light{font-weight:300!important}.fw-lighter{font-weight:lighter!important}.fw-normal{font-weight:400!important}.fw-bold{font-weight:700!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:2!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-primary{--bs-text-opacity:1;color:rgba(var(--bs-primary-rgb),var(--bs-text-opacity))!important}.text-secondary{--bs-text-opacity:1;color:rgba(var(--bs-secondary-rgb),var(--bs-text-opacity))!important}.text-success{--bs-text-opacity:1;color:rgba(var(--bs-success-rgb),var(--bs-text-opacity))!important}.text-info{--bs-text-opacity:1;color:rgba(var(--bs-info-rgb),var(--bs-text-opacity))!important}.text-warning{--bs-text-opacity:1;color:rgba(var(--bs-warning-rgb),var(--bs-text-opacity))!important}.text-danger{--bs-text-opacity:1;color:rgba(var(--bs-danger-rgb),var(--bs-text-opacity))!important}.text-light{--bs-text-opacity:1;color:rgba(var(--bs-light-rgb),var(--bs-text-opacity))!important}.text-dark{--bs-text-opacity:1;color:rgba(var(--bs-dark-rgb),var(--bs-text-opacity))!important}.text-black{--bs-text-opacity:1;color:rgba(var(--bs-black-rgb),var(--bs-text-opacity))!important}.text-white{--bs-text-opacity:1;color:rgba(var(--bs-white-rgb),var(--bs-text-opacity))!important}.text-body{--bs-text-opacity:1;color:rgba(var(--bs-body-color-rgb),var(--bs-text-opacity))!important}.text-muted{--bs-text-opacity:1;color:#6c757d!important}.text-black-50{--bs-text-opacity:1;color:rgba(0,0,0,.5)!important}.text-white-50{--bs-text-opacity:1;color:rgba(255,255,255,.5)!important}.text-reset{--bs-text-opacity:1;color:inherit!important}.text-opacity-25{--bs-text-opacity:0.25}.text-opacity-50{--bs-text-opacity:0.5}.text-opacity-75{--bs-text-opacity:0.75}.text-opacity-100{--bs-text-opacity:1}.bg-primary{--bs-bg-opacity:1;background-color:rgba(var(--bs-primary-rgb),var(--bs-bg-opacity))!important}.bg-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-rgb),var(--bs-bg-opacity))!important}.bg-success{--bs-bg-opacity:1;background-color:rgba(var(--bs-success-rgb),var(--bs-bg-opacity))!important}.bg-info{--bs-bg-opacity:1;background-color:rgba(var(--bs-info-rgb),var(--bs-bg-opacity))!important}.bg-warning{--bs-bg-opacity:1;background-color:rgba(var(--bs-warning-rgb),var(--bs-bg-opacity))!important}.bg-danger{--bs-bg-opacity:1;background-color:rgba(var(--bs-danger-rgb),var(--bs-bg-opacity))!important}.bg-light{--bs-bg-opacity:1;background-color:rgba(var(--bs-light-rgb),var(--bs-bg-opacity))!important}.bg-dark{--bs-bg-opacity:1;background-color:rgba(var(--bs-dark-rgb),var(--bs-bg-opacity))!important}.bg-black{--bs-bg-opacity:1;background-color:rgba(var(--bs-black-rgb),var(--bs-bg-opacity))!important}.bg-white{--bs-bg-opacity:1;background-color:rgba(var(--bs-white-rgb),var(--bs-bg-opacity))!important}.bg-body{--bs-bg-opacity:1;background-color:rgba(var(--bs-body-bg-rgb),var(--bs-bg-opacity))!important}.bg-transparent{--bs-bg-opacity:1;background-color:transparent!important}.bg-opacity-10{--bs-bg-opacity:0.1}.bg-opacity-25{--bs-bg-opacity:0.25}.bg-opacity-50{--bs-bg-opacity:0.5}.bg-opacity-75{--bs-bg-opacity:0.75}.bg-opacity-100{--bs-bg-opacity:1}.bg-gradient{background-image:var(--bs-gradient)!important}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:.25rem!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:.2rem!important}.rounded-2{border-radius:.25rem!important}.rounded-3{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-end{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-start{border-bottom-left-radius:.25rem!important;border-top-left-radius:.25rem!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media (min-width:576px){.float-sm-start{float:left!important}.float-sm-end{float:right!important}.float-sm-none{float:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.float-md-start{float:left!important}.float-md-end{float:right!important}.float-md-none{float:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.float-lg-start{float:left!important}.float-lg-end{float:right!important}.float-lg-none{float:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.float-xl-start{float:left!important}.float-xl-end{float:right!important}.float-xl-none{float:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}}@media (min-width:1400px){.float-xxl-start{float:left!important}.float-xxl-end{float:right!important}.float-xxl-none{float:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}.text-xxl-start{text-align:left!important}.text-xxl-end{text-align:right!important}.text-xxl-center{text-align:center!important}}@media (min-width:1200px){.fs-1{font-size:2.5rem!important}.fs-2{font-size:2rem!important}.fs-3{font-size:1.75rem!important}.fs-4{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}}
|
7 |
/*# sourceMappingURL=bootstrap.min.css.map */
|
lib/bootstrap/css/desktop.ini
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
1 |
+
[LocalizedFileNames]
|
2 |
+
bootstrap.css=@bootstrap.css,0
|
3 |
+
bootstrap.min.css=@bootstrap.min.css,0
|
lib/bootstrap/js/bootstrap.min.js
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
/*!
|
2 |
-
* Bootstrap v5.
|
3 |
* Copyright 2011-2021 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
|
4 |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
5 |
*/
|
6 |
-
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e(require("@popperjs/core")):"function"==typeof define&&define.amd?define(["@popperjs/core"],e):(t="undefined"!=typeof globalThis?globalThis:t||self).bootstrap=e(t.Popper)}(this,(function(t){"use strict";function e(t){if(t&&t.__esModule)return t;var e=Object.create(null);return t&&Object.keys(t).forEach((function(s){if("default"!==s){var i=Object.getOwnPropertyDescriptor(t,s);Object.defineProperty(e,s,i.get?i:{enumerable:!0,get:function(){return t[s]}})}})),e.default=t,Object.freeze(e)}var s=e(t);const i=t=>{do{t+=Math.floor(1e6*Math.random())}while(document.getElementById(t));return t},n=t=>{let e=t.getAttribute("data-bs-target");if(!e||"#"===e){let s=t.getAttribute("href");if(!s||!s.includes("#")&&!s.startsWith("."))return null;s.includes("#")&&!s.startsWith("#")&&(s="#"+s.split("#")[1]),e=s&&"#"!==s?s.trim():null}return e},o=t=>{const e=n(t);return e&&document.querySelector(e)?e:null},r=t=>{const e=n(t);return e?document.querySelector(e):null},a=t=>{if(!t)return 0;let{transitionDuration:e,transitionDelay:s}=window.getComputedStyle(t);const i=Number.parseFloat(e),n=Number.parseFloat(s);return i||n?(e=e.split(",")[0],s=s.split(",")[0],1e3*(Number.parseFloat(e)+Number.parseFloat(s))):0},l=t=>{t.dispatchEvent(new Event("transitionend"))},c=t=>(t[0]||t).nodeType,h=(t,e)=>{let s=!1;const i=e+5;t.addEventListener("transitionend",(function e(){s=!0,t.removeEventListener("transitionend",e)})),setTimeout(()=>{s||l(t)},i)},d=(t,e,s)=>{Object.keys(s).forEach(i=>{const n=s[i],o=e[i],r=o&&c(o)?"element":null==(a=o)?""+a:{}.toString.call(a).match(/\s([a-z]+)/i)[1].toLowerCase();var a;if(!new RegExp(n).test(r))throw new TypeError(t.toUpperCase()+": "+`Option "${i}" provided type "${r}" `+`but expected type "${n}".`)})},u=t=>{if(!t)return!1;if(t.style&&t.parentNode&&t.parentNode.style){const e=getComputedStyle(t),s=getComputedStyle(t.parentNode);return"none"!==e.display&&"none"!==s.display&&"hidden"!==e.visibility}return!1},g=t=>!t||t.nodeType!==Node.ELEMENT_NODE||!!t.classList.contains("disabled")||(void 0!==t.disabled?t.disabled:t.hasAttribute("disabled")&&"false"!==t.getAttribute("disabled")),f=t=>{if(!document.documentElement.attachShadow)return null;if("function"==typeof t.getRootNode){const e=t.getRootNode();return e instanceof ShadowRoot?e:null}return t instanceof ShadowRoot?t:t.parentNode?f(t.parentNode):null},p=()=>function(){},m=t=>t.offsetHeight,_=()=>{const{jQuery:t}=window;return t&&!document.body.hasAttribute("data-bs-no-jquery")?t:null},b=()=>"rtl"===document.documentElement.dir,v=(t,e)=>{var s;s=()=>{const s=_();if(s){const i=s.fn[t];s.fn[t]=e.jQueryInterface,s.fn[t].Constructor=e,s.fn[t].noConflict=()=>(s.fn[t]=i,e.jQueryInterface)}},"loading"===document.readyState?document.addEventListener("DOMContentLoaded",s):s()},y=new Map;var w={set(t,e,s){y.has(t)||y.set(t,new Map);const i=y.get(t);i.has(e)||0===i.size?i.set(e,s):console.error(`Bootstrap doesn't allow more than one instance per element. Bound instance: ${Array.from(i.keys())[0]}.`)},get:(t,e)=>y.has(t)&&y.get(t).get(e)||null,remove(t,e){if(!y.has(t))return;const s=y.get(t);s.delete(e),0===s.size&&y.delete(t)}};const E=/[^.]*(?=\..*)\.|.*/,T=/\..*/,A=/::\d+$/,L={};let k=1;const C={mouseenter:"mouseover",mouseleave:"mouseout"},D=new Set(["click","dblclick","mouseup","mousedown","contextmenu","mousewheel","DOMMouseScroll","mouseover","mouseout","mousemove","selectstart","selectend","keydown","keypress","keyup","orientationchange","touchstart","touchmove","touchend","touchcancel","pointerdown","pointermove","pointerup","pointerleave","pointercancel","gesturestart","gesturechange","gestureend","focus","blur","change","reset","select","submit","focusin","focusout","load","unload","beforeunload","resize","move","DOMContentLoaded","readystatechange","error","abort","scroll"]);function S(t,e){return e&&`${e}::${k++}`||t.uidEvent||k++}function N(t){const e=S(t);return t.uidEvent=e,L[e]=L[e]||{},L[e]}function O(t,e,s=null){const i=Object.keys(t);for(let n=0,o=i.length;n<o;n++){const o=t[i[n]];if(o.originalHandler===e&&o.delegationSelector===s)return o}return null}function x(t,e,s){const i="string"==typeof e,n=i?s:e;let o=t.replace(T,"");const r=C[o];return r&&(o=r),D.has(o)||(o=t),[i,n,o]}function I(t,e,s,i,n){if("string"!=typeof e||!t)return;s||(s=i,i=null);const[o,r,a]=x(e,s,i),l=N(t),c=l[a]||(l[a]={}),h=O(c,r,o?s:null);if(h)return void(h.oneOff=h.oneOff&&n);const d=S(r,e.replace(E,"")),u=o?function(t,e,s){return function i(n){const o=t.querySelectorAll(e);for(let{target:e}=n;e&&e!==this;e=e.parentNode)for(let r=o.length;r--;)if(o[r]===e)return n.delegateTarget=e,i.oneOff&&P.off(t,n.type,s),s.apply(e,[n]);return null}}(t,s,i):function(t,e){return function s(i){return i.delegateTarget=t,s.oneOff&&P.off(t,i.type,e),e.apply(t,[i])}}(t,s);u.delegationSelector=o?s:null,u.originalHandler=r,u.oneOff=n,u.uidEvent=d,c[d]=u,t.addEventListener(a,u,o)}function j(t,e,s,i,n){const o=O(e[s],i,n);o&&(t.removeEventListener(s,o,Boolean(n)),delete e[s][o.uidEvent])}const P={on(t,e,s,i){I(t,e,s,i,!1)},one(t,e,s,i){I(t,e,s,i,!0)},off(t,e,s,i){if("string"!=typeof e||!t)return;const[n,o,r]=x(e,s,i),a=r!==e,l=N(t),c=e.startsWith(".");if(void 0!==o){if(!l||!l[r])return;return void j(t,l,r,o,n?s:null)}c&&Object.keys(l).forEach(s=>{!function(t,e,s,i){const n=e[s]||{};Object.keys(n).forEach(o=>{if(o.includes(i)){const i=n[o];j(t,e,s,i.originalHandler,i.delegationSelector)}})}(t,l,s,e.slice(1))});const h=l[r]||{};Object.keys(h).forEach(s=>{const i=s.replace(A,"");if(!a||e.includes(i)){const e=h[s];j(t,l,r,e.originalHandler,e.delegationSelector)}})},trigger(t,e,s){if("string"!=typeof e||!t)return null;const i=_(),n=e.replace(T,""),o=e!==n,r=D.has(n);let a,l=!0,c=!0,h=!1,d=null;return o&&i&&(a=i.Event(e,s),i(t).trigger(a),l=!a.isPropagationStopped(),c=!a.isImmediatePropagationStopped(),h=a.isDefaultPrevented()),r?(d=document.createEvent("HTMLEvents"),d.initEvent(n,l,!0)):d=new CustomEvent(e,{bubbles:l,cancelable:!0}),void 0!==s&&Object.keys(s).forEach(t=>{Object.defineProperty(d,t,{get:()=>s[t]})}),h&&d.preventDefault(),c&&t.dispatchEvent(d),d.defaultPrevented&&void 0!==a&&a.preventDefault(),d}};class M{constructor(t){(t="string"==typeof t?document.querySelector(t):t)&&(this._element=t,w.set(this._element,this.constructor.DATA_KEY,this))}dispose(){w.remove(this._element,this.constructor.DATA_KEY),this._element=null}static getInstance(t){return w.get(t,this.DATA_KEY)}static get VERSION(){return"5.0.0-beta3"}}class H extends M{static get DATA_KEY(){return"bs.alert"}close(t){const e=t?this._getRootElement(t):this._element,s=this._triggerCloseEvent(e);null===s||s.defaultPrevented||this._removeElement(e)}_getRootElement(t){return r(t)||t.closest(".alert")}_triggerCloseEvent(t){return P.trigger(t,"close.bs.alert")}_removeElement(t){if(t.classList.remove("show"),!t.classList.contains("fade"))return void this._destroyElement(t);const e=a(t);P.one(t,"transitionend",()=>this._destroyElement(t)),h(t,e)}_destroyElement(t){t.parentNode&&t.parentNode.removeChild(t),P.trigger(t,"closed.bs.alert")}static jQueryInterface(t){return this.each((function(){let e=w.get(this,"bs.alert");e||(e=new H(this)),"close"===t&&e[t](this)}))}static handleDismiss(t){return function(e){e&&e.preventDefault(),t.close(this)}}}P.on(document,"click.bs.alert.data-api",'[data-bs-dismiss="alert"]',H.handleDismiss(new H)),v("alert",H);class R extends M{static get DATA_KEY(){return"bs.button"}toggle(){this._element.setAttribute("aria-pressed",this._element.classList.toggle("active"))}static jQueryInterface(t){return this.each((function(){let e=w.get(this,"bs.button");e||(e=new R(this)),"toggle"===t&&e[t]()}))}}function B(t){return"true"===t||"false"!==t&&(t===Number(t).toString()?Number(t):""===t||"null"===t?null:t)}function W(t){return t.replace(/[A-Z]/g,t=>"-"+t.toLowerCase())}P.on(document,"click.bs.button.data-api",'[data-bs-toggle="button"]',t=>{t.preventDefault();const e=t.target.closest('[data-bs-toggle="button"]');let s=w.get(e,"bs.button");s||(s=new R(e)),s.toggle()}),v("button",R);const $={setDataAttribute(t,e,s){t.setAttribute("data-bs-"+W(e),s)},removeDataAttribute(t,e){t.removeAttribute("data-bs-"+W(e))},getDataAttributes(t){if(!t)return{};const e={};return Object.keys(t.dataset).filter(t=>t.startsWith("bs")).forEach(s=>{let i=s.replace(/^bs/,"");i=i.charAt(0).toLowerCase()+i.slice(1,i.length),e[i]=B(t.dataset[s])}),e},getDataAttribute:(t,e)=>B(t.getAttribute("data-bs-"+W(e))),offset(t){const e=t.getBoundingClientRect();return{top:e.top+document.body.scrollTop,left:e.left+document.body.scrollLeft}},position:t=>({top:t.offsetTop,left:t.offsetLeft})},U={find:(t,e=document.documentElement)=>[].concat(...Element.prototype.querySelectorAll.call(e,t)),findOne:(t,e=document.documentElement)=>Element.prototype.querySelector.call(e,t),children:(t,e)=>[].concat(...t.children).filter(t=>t.matches(e)),parents(t,e){const s=[];let i=t.parentNode;for(;i&&i.nodeType===Node.ELEMENT_NODE&&3!==i.nodeType;)i.matches(e)&&s.push(i),i=i.parentNode;return s},prev(t,e){let s=t.previousElementSibling;for(;s;){if(s.matches(e))return[s];s=s.previousElementSibling}return[]},next(t,e){let s=t.nextElementSibling;for(;s;){if(s.matches(e))return[s];s=s.nextElementSibling}return[]}},F={interval:5e3,keyboard:!0,slide:!1,pause:"hover",wrap:!0,touch:!0},K={interval:"(number|boolean)",keyboard:"boolean",slide:"(boolean|string)",pause:"(string|boolean)",wrap:"boolean",touch:"boolean"},z="next",Y="prev",q="left",Q="right";class X extends M{constructor(t,e){super(t),this._items=null,this._interval=null,this._activeElement=null,this._isPaused=!1,this._isSliding=!1,this.touchTimeout=null,this.touchStartX=0,this.touchDeltaX=0,this._config=this._getConfig(e),this._indicatorsElement=U.findOne(".carousel-indicators",this._element),this._touchSupported="ontouchstart"in document.documentElement||navigator.maxTouchPoints>0,this._pointerEvent=Boolean(window.PointerEvent),this._addEventListeners()}static get Default(){return F}static get DATA_KEY(){return"bs.carousel"}next(){this._isSliding||this._slide(z)}nextWhenVisible(){!document.hidden&&u(this._element)&&this.next()}prev(){this._isSliding||this._slide(Y)}pause(t){t||(this._isPaused=!0),U.findOne(".carousel-item-next, .carousel-item-prev",this._element)&&(l(this._element),this.cycle(!0)),clearInterval(this._interval),this._interval=null}cycle(t){t||(this._isPaused=!1),this._interval&&(clearInterval(this._interval),this._interval=null),this._config&&this._config.interval&&!this._isPaused&&(this._updateInterval(),this._interval=setInterval((document.visibilityState?this.nextWhenVisible:this.next).bind(this),this._config.interval))}to(t){this._activeElement=U.findOne(".active.carousel-item",this._element);const e=this._getItemIndex(this._activeElement);if(t>this._items.length-1||t<0)return;if(this._isSliding)return void P.one(this._element,"slid.bs.carousel",()=>this.to(t));if(e===t)return this.pause(),void this.cycle();const s=t>e?z:Y;this._slide(s,this._items[t])}dispose(){P.off(this._element,".bs.carousel"),this._items=null,this._config=null,this._interval=null,this._isPaused=null,this._isSliding=null,this._activeElement=null,this._indicatorsElement=null,super.dispose()}_getConfig(t){return t={...F,...t},d("carousel",t,K),t}_handleSwipe(){const t=Math.abs(this.touchDeltaX);if(t<=40)return;const e=t/this.touchDeltaX;this.touchDeltaX=0,e&&this._slide(e>0?Q:q)}_addEventListeners(){this._config.keyboard&&P.on(this._element,"keydown.bs.carousel",t=>this._keydown(t)),"hover"===this._config.pause&&(P.on(this._element,"mouseenter.bs.carousel",t=>this.pause(t)),P.on(this._element,"mouseleave.bs.carousel",t=>this.cycle(t))),this._config.touch&&this._touchSupported&&this._addTouchEventListeners()}_addTouchEventListeners(){const t=t=>{!this._pointerEvent||"pen"!==t.pointerType&&"touch"!==t.pointerType?this._pointerEvent||(this.touchStartX=t.touches[0].clientX):this.touchStartX=t.clientX},e=t=>{this.touchDeltaX=t.touches&&t.touches.length>1?0:t.touches[0].clientX-this.touchStartX},s=t=>{!this._pointerEvent||"pen"!==t.pointerType&&"touch"!==t.pointerType||(this.touchDeltaX=t.clientX-this.touchStartX),this._handleSwipe(),"hover"===this._config.pause&&(this.pause(),this.touchTimeout&&clearTimeout(this.touchTimeout),this.touchTimeout=setTimeout(t=>this.cycle(t),500+this._config.interval))};U.find(".carousel-item img",this._element).forEach(t=>{P.on(t,"dragstart.bs.carousel",t=>t.preventDefault())}),this._pointerEvent?(P.on(this._element,"pointerdown.bs.carousel",e=>t(e)),P.on(this._element,"pointerup.bs.carousel",t=>s(t)),this._element.classList.add("pointer-event")):(P.on(this._element,"touchstart.bs.carousel",e=>t(e)),P.on(this._element,"touchmove.bs.carousel",t=>e(t)),P.on(this._element,"touchend.bs.carousel",t=>s(t)))}_keydown(t){/input|textarea/i.test(t.target.tagName)||("ArrowLeft"===t.key?(t.preventDefault(),this._slide(q)):"ArrowRight"===t.key&&(t.preventDefault(),this._slide(Q)))}_getItemIndex(t){return this._items=t&&t.parentNode?U.find(".carousel-item",t.parentNode):[],this._items.indexOf(t)}_getItemByOrder(t,e){const s=t===z,i=t===Y,n=this._getItemIndex(e),o=this._items.length-1;if((i&&0===n||s&&n===o)&&!this._config.wrap)return e;const r=(n+(i?-1:1))%this._items.length;return-1===r?this._items[this._items.length-1]:this._items[r]}_triggerSlideEvent(t,e){const s=this._getItemIndex(t),i=this._getItemIndex(U.findOne(".active.carousel-item",this._element));return P.trigger(this._element,"slide.bs.carousel",{relatedTarget:t,direction:e,from:i,to:s})}_setActiveIndicatorElement(t){if(this._indicatorsElement){const e=U.findOne(".active",this._indicatorsElement);e.classList.remove("active"),e.removeAttribute("aria-current");const s=U.find("[data-bs-target]",this._indicatorsElement);for(let e=0;e<s.length;e++)if(Number.parseInt(s[e].getAttribute("data-bs-slide-to"),10)===this._getItemIndex(t)){s[e].classList.add("active"),s[e].setAttribute("aria-current","true");break}}}_updateInterval(){const t=this._activeElement||U.findOne(".active.carousel-item",this._element);if(!t)return;const e=Number.parseInt(t.getAttribute("data-bs-interval"),10);e?(this._config.defaultInterval=this._config.defaultInterval||this._config.interval,this._config.interval=e):this._config.interval=this._config.defaultInterval||this._config.interval}_slide(t,e){const s=this._directionToOrder(t),i=U.findOne(".active.carousel-item",this._element),n=this._getItemIndex(i),o=e||this._getItemByOrder(s,i),r=this._getItemIndex(o),l=Boolean(this._interval),c=s===z,d=c?"carousel-item-start":"carousel-item-end",u=c?"carousel-item-next":"carousel-item-prev",g=this._orderToDirection(s);if(o&&o.classList.contains("active"))this._isSliding=!1;else if(!this._triggerSlideEvent(o,g).defaultPrevented&&i&&o){if(this._isSliding=!0,l&&this.pause(),this._setActiveIndicatorElement(o),this._activeElement=o,this._element.classList.contains("slide")){o.classList.add(u),m(o),i.classList.add(d),o.classList.add(d);const t=a(i);P.one(i,"transitionend",()=>{o.classList.remove(d,u),o.classList.add("active"),i.classList.remove("active",u,d),this._isSliding=!1,setTimeout(()=>{P.trigger(this._element,"slid.bs.carousel",{relatedTarget:o,direction:g,from:n,to:r})},0)}),h(i,t)}else i.classList.remove("active"),o.classList.add("active"),this._isSliding=!1,P.trigger(this._element,"slid.bs.carousel",{relatedTarget:o,direction:g,from:n,to:r});l&&this.cycle()}}_directionToOrder(t){return[Q,q].includes(t)?b()?t===Q?Y:z:t===Q?z:Y:t}_orderToDirection(t){return[z,Y].includes(t)?b()?t===z?q:Q:t===z?Q:q:t}static carouselInterface(t,e){let s=w.get(t,"bs.carousel"),i={...F,...$.getDataAttributes(t)};"object"==typeof e&&(i={...i,...e});const n="string"==typeof e?e:i.slide;if(s||(s=new X(t,i)),"number"==typeof e)s.to(e);else if("string"==typeof n){if(void 0===s[n])throw new TypeError(`No method named "${n}"`);s[n]()}else i.interval&&i.ride&&(s.pause(),s.cycle())}static jQueryInterface(t){return this.each((function(){X.carouselInterface(this,t)}))}static dataApiClickHandler(t){const e=r(this);if(!e||!e.classList.contains("carousel"))return;const s={...$.getDataAttributes(e),...$.getDataAttributes(this)},i=this.getAttribute("data-bs-slide-to");i&&(s.interval=!1),X.carouselInterface(e,s),i&&w.get(e,"bs.carousel").to(i),t.preventDefault()}}P.on(document,"click.bs.carousel.data-api","[data-bs-slide], [data-bs-slide-to]",X.dataApiClickHandler),P.on(window,"load.bs.carousel.data-api",()=>{const t=U.find('[data-bs-ride="carousel"]');for(let e=0,s=t.length;e<s;e++)X.carouselInterface(t[e],w.get(t[e],"bs.carousel"))}),v("carousel",X);const V={toggle:!0,parent:""},G={toggle:"boolean",parent:"(string|element)"};class Z extends M{constructor(t,e){super(t),this._isTransitioning=!1,this._config=this._getConfig(e),this._triggerArray=U.find(`[data-bs-toggle="collapse"][href="#${this._element.id}"],[data-bs-toggle="collapse"][data-bs-target="#${this._element.id}"]`);const s=U.find('[data-bs-toggle="collapse"]');for(let t=0,e=s.length;t<e;t++){const e=s[t],i=o(e),n=U.find(i).filter(t=>t===this._element);null!==i&&n.length&&(this._selector=i,this._triggerArray.push(e))}this._parent=this._config.parent?this._getParent():null,this._config.parent||this._addAriaAndCollapsedClass(this._element,this._triggerArray),this._config.toggle&&this.toggle()}static get Default(){return V}static get DATA_KEY(){return"bs.collapse"}toggle(){this._element.classList.contains("show")?this.hide():this.show()}show(){if(this._isTransitioning||this._element.classList.contains("show"))return;let t,e;this._parent&&(t=U.find(".show, .collapsing",this._parent).filter(t=>"string"==typeof this._config.parent?t.getAttribute("data-bs-parent")===this._config.parent:t.classList.contains("collapse")),0===t.length&&(t=null));const s=U.findOne(this._selector);if(t){const i=t.find(t=>s!==t);if(e=i?w.get(i,"bs.collapse"):null,e&&e._isTransitioning)return}if(P.trigger(this._element,"show.bs.collapse").defaultPrevented)return;t&&t.forEach(t=>{s!==t&&Z.collapseInterface(t,"hide"),e||w.set(t,"bs.collapse",null)});const i=this._getDimension();this._element.classList.remove("collapse"),this._element.classList.add("collapsing"),this._element.style[i]=0,this._triggerArray.length&&this._triggerArray.forEach(t=>{t.classList.remove("collapsed"),t.setAttribute("aria-expanded",!0)}),this.setTransitioning(!0);const n="scroll"+(i[0].toUpperCase()+i.slice(1)),o=a(this._element);P.one(this._element,"transitionend",()=>{this._element.classList.remove("collapsing"),this._element.classList.add("collapse","show"),this._element.style[i]="",this.setTransitioning(!1),P.trigger(this._element,"shown.bs.collapse")}),h(this._element,o),this._element.style[i]=this._element[n]+"px"}hide(){if(this._isTransitioning||!this._element.classList.contains("show"))return;if(P.trigger(this._element,"hide.bs.collapse").defaultPrevented)return;const t=this._getDimension();this._element.style[t]=this._element.getBoundingClientRect()[t]+"px",m(this._element),this._element.classList.add("collapsing"),this._element.classList.remove("collapse","show");const e=this._triggerArray.length;if(e>0)for(let t=0;t<e;t++){const e=this._triggerArray[t],s=r(e);s&&!s.classList.contains("show")&&(e.classList.add("collapsed"),e.setAttribute("aria-expanded",!1))}this.setTransitioning(!0),this._element.style[t]="";const s=a(this._element);P.one(this._element,"transitionend",()=>{this.setTransitioning(!1),this._element.classList.remove("collapsing"),this._element.classList.add("collapse"),P.trigger(this._element,"hidden.bs.collapse")}),h(this._element,s)}setTransitioning(t){this._isTransitioning=t}dispose(){super.dispose(),this._config=null,this._parent=null,this._triggerArray=null,this._isTransitioning=null}_getConfig(t){return(t={...V,...t}).toggle=Boolean(t.toggle),d("collapse",t,G),t}_getDimension(){return this._element.classList.contains("width")?"width":"height"}_getParent(){let{parent:t}=this._config;c(t)?void 0===t.jquery&&void 0===t[0]||(t=t[0]):t=U.findOne(t);const e=`[data-bs-toggle="collapse"][data-bs-parent="${t}"]`;return U.find(e,t).forEach(t=>{const e=r(t);this._addAriaAndCollapsedClass(e,[t])}),t}_addAriaAndCollapsedClass(t,e){if(!t||!e.length)return;const s=t.classList.contains("show");e.forEach(t=>{s?t.classList.remove("collapsed"):t.classList.add("collapsed"),t.setAttribute("aria-expanded",s)})}static collapseInterface(t,e){let s=w.get(t,"bs.collapse");const i={...V,...$.getDataAttributes(t),..."object"==typeof e&&e?e:{}};if(!s&&i.toggle&&"string"==typeof e&&/show|hide/.test(e)&&(i.toggle=!1),s||(s=new Z(t,i)),"string"==typeof e){if(void 0===s[e])throw new TypeError(`No method named "${e}"`);s[e]()}}static jQueryInterface(t){return this.each((function(){Z.collapseInterface(this,t)}))}}P.on(document,"click.bs.collapse.data-api",'[data-bs-toggle="collapse"]',(function(t){("A"===t.target.tagName||t.delegateTarget&&"A"===t.delegateTarget.tagName)&&t.preventDefault();const e=$.getDataAttributes(this),s=o(this);U.find(s).forEach(t=>{const s=w.get(t,"bs.collapse");let i;s?(null===s._parent&&"string"==typeof e.parent&&(s._config.parent=e.parent,s._parent=s._getParent()),i="toggle"):i=e,Z.collapseInterface(t,i)})})),v("collapse",Z);const J=new RegExp("ArrowUp|ArrowDown|Escape"),tt=b()?"top-end":"top-start",et=b()?"top-start":"top-end",st=b()?"bottom-end":"bottom-start",it=b()?"bottom-start":"bottom-end",nt=b()?"left-start":"right-start",ot=b()?"right-start":"left-start",rt={offset:[0,2],boundary:"clippingParents",reference:"toggle",display:"dynamic",popperConfig:null},at={offset:"(array|string|function)",boundary:"(string|element)",reference:"(string|element|object)",display:"string",popperConfig:"(null|object|function)"};class lt extends M{constructor(t,e){super(t),this._popper=null,this._config=this._getConfig(e),this._menu=this._getMenuElement(),this._inNavbar=this._detectNavbar(),this._addEventListeners()}static get Default(){return rt}static get DefaultType(){return at}static get DATA_KEY(){return"bs.dropdown"}toggle(){if(this._element.disabled||this._element.classList.contains("disabled"))return;const t=this._element.classList.contains("show");lt.clearMenus(),t||this.show()}show(){if(this._element.disabled||this._element.classList.contains("disabled")||this._menu.classList.contains("show"))return;const t=lt.getParentFromElement(this._element),e={relatedTarget:this._element};if(!P.trigger(this._element,"show.bs.dropdown",e).defaultPrevented){if(this._inNavbar)$.setDataAttribute(this._menu,"popper","none");else{if(void 0===s)throw new TypeError("Bootstrap's dropdowns require Popper (https://popper.js.org)");let e=this._element;"parent"===this._config.reference?e=t:c(this._config.reference)?(e=this._config.reference,void 0!==this._config.reference.jquery&&(e=this._config.reference[0])):"object"==typeof this._config.reference&&(e=this._config.reference);const i=this._getPopperConfig(),n=i.modifiers.find(t=>"applyStyles"===t.name&&!1===t.enabled);this._popper=s.createPopper(e,this._menu,i),n&&$.setDataAttribute(this._menu,"popper","static")}"ontouchstart"in document.documentElement&&!t.closest(".navbar-nav")&&[].concat(...document.body.children).forEach(t=>P.on(t,"mouseover",null,(function(){}))),this._element.focus(),this._element.setAttribute("aria-expanded",!0),this._menu.classList.toggle("show"),this._element.classList.toggle("show"),P.trigger(this._element,"shown.bs.dropdown",e)}}hide(){if(this._element.disabled||this._element.classList.contains("disabled")||!this._menu.classList.contains("show"))return;const t={relatedTarget:this._element};P.trigger(this._element,"hide.bs.dropdown",t).defaultPrevented||(this._popper&&this._popper.destroy(),this._menu.classList.toggle("show"),this._element.classList.toggle("show"),$.removeDataAttribute(this._menu,"popper"),P.trigger(this._element,"hidden.bs.dropdown",t))}dispose(){P.off(this._element,".bs.dropdown"),this._menu=null,this._popper&&(this._popper.destroy(),this._popper=null),super.dispose()}update(){this._inNavbar=this._detectNavbar(),this._popper&&this._popper.update()}_addEventListeners(){P.on(this._element,"click.bs.dropdown",t=>{t.preventDefault(),this.toggle()})}_getConfig(t){if(t={...this.constructor.Default,...$.getDataAttributes(this._element),...t},d("dropdown",t,this.constructor.DefaultType),"object"==typeof t.reference&&!c(t.reference)&&"function"!=typeof t.reference.getBoundingClientRect)throw new TypeError("dropdown".toUpperCase()+': Option "reference" provided type "object" without a required "getBoundingClientRect" method.');return t}_getMenuElement(){return U.next(this._element,".dropdown-menu")[0]}_getPlacement(){const t=this._element.parentNode;if(t.classList.contains("dropend"))return nt;if(t.classList.contains("dropstart"))return ot;const e="end"===getComputedStyle(this._menu).getPropertyValue("--bs-position").trim();return t.classList.contains("dropup")?e?et:tt:e?it:st}_detectNavbar(){return null!==this._element.closest(".navbar")}_getOffset(){const{offset:t}=this._config;return"string"==typeof t?t.split(",").map(t=>Number.parseInt(t,10)):"function"==typeof t?e=>t(e,this._element):t}_getPopperConfig(){const t={placement:this._getPlacement(),modifiers:[{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"offset",options:{offset:this._getOffset()}}]};return"static"===this._config.display&&(t.modifiers=[{name:"applyStyles",enabled:!1}]),{...t,..."function"==typeof this._config.popperConfig?this._config.popperConfig(t):this._config.popperConfig}}static dropdownInterface(t,e){let s=w.get(t,"bs.dropdown");if(s||(s=new lt(t,"object"==typeof e?e:null)),"string"==typeof e){if(void 0===s[e])throw new TypeError(`No method named "${e}"`);s[e]()}}static jQueryInterface(t){return this.each((function(){lt.dropdownInterface(this,t)}))}static clearMenus(t){if(t){if(2===t.button||"keyup"===t.type&&"Tab"!==t.key)return;if(/input|select|textarea|form/i.test(t.target.tagName))return}const e=U.find('[data-bs-toggle="dropdown"]');for(let s=0,i=e.length;s<i;s++){const i=w.get(e[s],"bs.dropdown"),n={relatedTarget:e[s]};if(t&&"click"===t.type&&(n.clickEvent=t),!i)continue;const o=i._menu;if(e[s].classList.contains("show")){if(t){if([i._element].some(e=>t.composedPath().includes(e)))continue;if("keyup"===t.type&&"Tab"===t.key&&o.contains(t.target))continue}P.trigger(e[s],"hide.bs.dropdown",n).defaultPrevented||("ontouchstart"in document.documentElement&&[].concat(...document.body.children).forEach(t=>P.off(t,"mouseover",null,(function(){}))),e[s].setAttribute("aria-expanded","false"),i._popper&&i._popper.destroy(),o.classList.remove("show"),e[s].classList.remove("show"),$.removeDataAttribute(o,"popper"),P.trigger(e[s],"hidden.bs.dropdown",n))}}}static getParentFromElement(t){return r(t)||t.parentNode}static dataApiKeydownHandler(t){if(/input|textarea/i.test(t.target.tagName)?"Space"===t.key||"Escape"!==t.key&&("ArrowDown"!==t.key&&"ArrowUp"!==t.key||t.target.closest(".dropdown-menu")):!J.test(t.key))return;if(t.preventDefault(),t.stopPropagation(),this.disabled||this.classList.contains("disabled"))return;const e=lt.getParentFromElement(this),s=this.classList.contains("show");if("Escape"===t.key)return(this.matches('[data-bs-toggle="dropdown"]')?this:U.prev(this,'[data-bs-toggle="dropdown"]')[0]).focus(),void lt.clearMenus();if(!s&&("ArrowUp"===t.key||"ArrowDown"===t.key))return void(this.matches('[data-bs-toggle="dropdown"]')?this:U.prev(this,'[data-bs-toggle="dropdown"]')[0]).click();if(!s||"Space"===t.key)return void lt.clearMenus();const i=U.find(".dropdown-menu .dropdown-item:not(.disabled):not(:disabled)",e).filter(u);if(!i.length)return;let n=i.indexOf(t.target);"ArrowUp"===t.key&&n>0&&n--,"ArrowDown"===t.key&&n<i.length-1&&n++,n=-1===n?0:n,i[n].focus()}}P.on(document,"keydown.bs.dropdown.data-api",'[data-bs-toggle="dropdown"]',lt.dataApiKeydownHandler),P.on(document,"keydown.bs.dropdown.data-api",".dropdown-menu",lt.dataApiKeydownHandler),P.on(document,"click.bs.dropdown.data-api",lt.clearMenus),P.on(document,"keyup.bs.dropdown.data-api",lt.clearMenus),P.on(document,"click.bs.dropdown.data-api",'[data-bs-toggle="dropdown"]',(function(t){t.preventDefault(),lt.dropdownInterface(this)})),v("dropdown",lt);const ct={backdrop:!0,keyboard:!0,focus:!0},ht={backdrop:"(boolean|string)",keyboard:"boolean",focus:"boolean"};class dt extends M{constructor(t,e){super(t),this._config=this._getConfig(e),this._dialog=U.findOne(".modal-dialog",this._element),this._backdrop=null,this._isShown=!1,this._isBodyOverflowing=!1,this._ignoreBackdropClick=!1,this._isTransitioning=!1,this._scrollbarWidth=0}static get Default(){return ct}static get DATA_KEY(){return"bs.modal"}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){if(this._isShown||this._isTransitioning)return;this._isAnimated()&&(this._isTransitioning=!0);const e=P.trigger(this._element,"show.bs.modal",{relatedTarget:t});this._isShown||e.defaultPrevented||(this._isShown=!0,this._checkScrollbar(),this._setScrollbar(),this._adjustDialog(),this._setEscapeEvent(),this._setResizeEvent(),P.on(this._element,"click.dismiss.bs.modal",'[data-bs-dismiss="modal"]',t=>this.hide(t)),P.on(this._dialog,"mousedown.dismiss.bs.modal",()=>{P.one(this._element,"mouseup.dismiss.bs.modal",t=>{t.target===this._element&&(this._ignoreBackdropClick=!0)})}),this._showBackdrop(()=>this._showElement(t)))}hide(t){if(t&&t.preventDefault(),!this._isShown||this._isTransitioning)return;if(P.trigger(this._element,"hide.bs.modal").defaultPrevented)return;this._isShown=!1;const e=this._isAnimated();if(e&&(this._isTransitioning=!0),this._setEscapeEvent(),this._setResizeEvent(),P.off(document,"focusin.bs.modal"),this._element.classList.remove("show"),P.off(this._element,"click.dismiss.bs.modal"),P.off(this._dialog,"mousedown.dismiss.bs.modal"),e){const t=a(this._element);P.one(this._element,"transitionend",t=>this._hideModal(t)),h(this._element,t)}else this._hideModal()}dispose(){[window,this._element,this._dialog].forEach(t=>P.off(t,".bs.modal")),super.dispose(),P.off(document,"focusin.bs.modal"),this._config=null,this._dialog=null,this._backdrop=null,this._isShown=null,this._isBodyOverflowing=null,this._ignoreBackdropClick=null,this._isTransitioning=null,this._scrollbarWidth=null}handleUpdate(){this._adjustDialog()}_getConfig(t){return t={...ct,...t},d("modal",t,ht),t}_showElement(t){const e=this._isAnimated(),s=U.findOne(".modal-body",this._dialog);this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE||document.body.appendChild(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.scrollTop=0,s&&(s.scrollTop=0),e&&m(this._element),this._element.classList.add("show"),this._config.focus&&this._enforceFocus();const i=()=>{this._config.focus&&this._element.focus(),this._isTransitioning=!1,P.trigger(this._element,"shown.bs.modal",{relatedTarget:t})};if(e){const t=a(this._dialog);P.one(this._dialog,"transitionend",i),h(this._dialog,t)}else i()}_enforceFocus(){P.off(document,"focusin.bs.modal"),P.on(document,"focusin.bs.modal",t=>{document===t.target||this._element===t.target||this._element.contains(t.target)||this._element.focus()})}_setEscapeEvent(){this._isShown?P.on(this._element,"keydown.dismiss.bs.modal",t=>{this._config.keyboard&&"Escape"===t.key?(t.preventDefault(),this.hide()):this._config.keyboard||"Escape"!==t.key||this._triggerBackdropTransition()}):P.off(this._element,"keydown.dismiss.bs.modal")}_setResizeEvent(){this._isShown?P.on(window,"resize.bs.modal",()=>this._adjustDialog()):P.off(window,"resize.bs.modal")}_hideModal(){this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._isTransitioning=!1,this._showBackdrop(()=>{document.body.classList.remove("modal-open"),this._resetAdjustments(),this._resetScrollbar(),P.trigger(this._element,"hidden.bs.modal")})}_removeBackdrop(){this._backdrop.parentNode.removeChild(this._backdrop),this._backdrop=null}_showBackdrop(t){const e=this._isAnimated();if(this._isShown&&this._config.backdrop){if(this._backdrop=document.createElement("div"),this._backdrop.className="modal-backdrop",e&&this._backdrop.classList.add("fade"),document.body.appendChild(this._backdrop),P.on(this._element,"click.dismiss.bs.modal",t=>{this._ignoreBackdropClick?this._ignoreBackdropClick=!1:t.target===t.currentTarget&&("static"===this._config.backdrop?this._triggerBackdropTransition():this.hide())}),e&&m(this._backdrop),this._backdrop.classList.add("show"),!e)return void t();const s=a(this._backdrop);P.one(this._backdrop,"transitionend",t),h(this._backdrop,s)}else if(!this._isShown&&this._backdrop){this._backdrop.classList.remove("show");const s=()=>{this._removeBackdrop(),t()};if(e){const t=a(this._backdrop);P.one(this._backdrop,"transitionend",s),h(this._backdrop,t)}else s()}else t()}_isAnimated(){return this._element.classList.contains("fade")}_triggerBackdropTransition(){if(P.trigger(this._element,"hidePrevented.bs.modal").defaultPrevented)return;const t=this._element.scrollHeight>document.documentElement.clientHeight;t||(this._element.style.overflowY="hidden"),this._element.classList.add("modal-static");const e=a(this._dialog);P.off(this._element,"transitionend"),P.one(this._element,"transitionend",()=>{this._element.classList.remove("modal-static"),t||(P.one(this._element,"transitionend",()=>{this._element.style.overflowY=""}),h(this._element,e))}),h(this._element,e),this._element.focus()}_adjustDialog(){const t=this._element.scrollHeight>document.documentElement.clientHeight;(!this._isBodyOverflowing&&t&&!b()||this._isBodyOverflowing&&!t&&b())&&(this._element.style.paddingLeft=this._scrollbarWidth+"px"),(this._isBodyOverflowing&&!t&&!b()||!this._isBodyOverflowing&&t&&b())&&(this._element.style.paddingRight=this._scrollbarWidth+"px")}_resetAdjustments(){this._element.style.paddingLeft="",this._element.style.paddingRight=""}_checkScrollbar(){const t=document.body.getBoundingClientRect();this._isBodyOverflowing=Math.round(t.left+t.right)<window.innerWidth,this._scrollbarWidth=this._getScrollbarWidth()}_setScrollbar(){this._isBodyOverflowing&&(this._setElementAttributes(".fixed-top, .fixed-bottom, .is-fixed, .sticky-top","paddingRight",t=>t+this._scrollbarWidth),this._setElementAttributes(".sticky-top","marginRight",t=>t-this._scrollbarWidth),this._setElementAttributes("body","paddingRight",t=>t+this._scrollbarWidth)),document.body.classList.add("modal-open")}_setElementAttributes(t,e,s){U.find(t).forEach(t=>{if(t!==document.body&&window.innerWidth>t.clientWidth+this._scrollbarWidth)return;const i=t.style[e],n=window.getComputedStyle(t)[e];$.setDataAttribute(t,e,i),t.style[e]=s(Number.parseFloat(n))+"px"})}_resetScrollbar(){this._resetElementAttributes(".fixed-top, .fixed-bottom, .is-fixed, .sticky-top","paddingRight"),this._resetElementAttributes(".sticky-top","marginRight"),this._resetElementAttributes("body","paddingRight")}_resetElementAttributes(t,e){U.find(t).forEach(t=>{const s=$.getDataAttribute(t,e);void 0===s&&t===document.body?t.style[e]="":($.removeDataAttribute(t,e),t.style[e]=s)})}_getScrollbarWidth(){const t=document.createElement("div");t.className="modal-scrollbar-measure",document.body.appendChild(t);const e=t.getBoundingClientRect().width-t.clientWidth;return document.body.removeChild(t),e}static jQueryInterface(t,e){return this.each((function(){let s=w.get(this,"bs.modal");const i={...ct,...$.getDataAttributes(this),..."object"==typeof t&&t?t:{}};if(s||(s=new dt(this,i)),"string"==typeof t){if(void 0===s[t])throw new TypeError(`No method named "${t}"`);s[t](e)}}))}}P.on(document,"click.bs.modal.data-api",'[data-bs-toggle="modal"]',(function(t){const e=r(this);"A"!==this.tagName&&"AREA"!==this.tagName||t.preventDefault(),P.one(e,"show.bs.modal",t=>{t.defaultPrevented||P.one(e,"hidden.bs.modal",()=>{u(this)&&this.focus()})});let s=w.get(e,"bs.modal");if(!s){const t={...$.getDataAttributes(e),...$.getDataAttributes(this)};s=new dt(e,t)}s.toggle(this)})),v("modal",dt);const ut=()=>{const t=document.documentElement.clientWidth;return Math.abs(window.innerWidth-t)},gt=(t,e,s)=>{const i=ut();U.find(t).forEach(t=>{if(t!==document.body&&window.innerWidth>t.clientWidth+i)return;const n=t.style[e],o=window.getComputedStyle(t)[e];$.setDataAttribute(t,e,n),t.style[e]=s(Number.parseFloat(o))+"px"})},ft=(t,e)=>{U.find(t).forEach(t=>{const s=$.getDataAttribute(t,e);void 0===s&&t===document.body?t.style.removeProperty(e):($.removeDataAttribute(t,e),t.style[e]=s)})},pt={backdrop:!0,keyboard:!0,scroll:!1},mt={backdrop:"boolean",keyboard:"boolean",scroll:"boolean"};class _t extends M{constructor(t,e){super(t),this._config=this._getConfig(e),this._isShown=!1,this._addEventListeners()}static get Default(){return pt}static get DATA_KEY(){return"bs.offcanvas"}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){this._isShown||P.trigger(this._element,"show.bs.offcanvas",{relatedTarget:t}).defaultPrevented||(this._isShown=!0,this._element.style.visibility="visible",this._config.backdrop&&document.body.classList.add("offcanvas-backdrop"),this._config.scroll||((t=ut())=>{document.body.style.overflow="hidden",gt(".fixed-top, .fixed-bottom, .is-fixed","paddingRight",e=>e+t),gt(".sticky-top","marginRight",e=>e-t),gt("body","paddingRight",e=>e+t)})(),this._element.classList.add("offcanvas-toggling"),this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.classList.add("show"),setTimeout(()=>{this._element.classList.remove("offcanvas-toggling"),P.trigger(this._element,"shown.bs.offcanvas",{relatedTarget:t}),this._enforceFocusOnElement(this._element)},a(this._element)))}hide(){this._isShown&&(P.trigger(this._element,"hide.bs.offcanvas").defaultPrevented||(this._element.classList.add("offcanvas-toggling"),P.off(document,"focusin.bs.offcanvas"),this._element.blur(),this._isShown=!1,this._element.classList.remove("show"),setTimeout(()=>{this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._element.style.visibility="hidden",this._config.backdrop&&document.body.classList.remove("offcanvas-backdrop"),this._config.scroll||(document.body.style.overflow="auto",ft(".fixed-top, .fixed-bottom, .is-fixed","paddingRight"),ft(".sticky-top","marginRight"),ft("body","paddingRight")),P.trigger(this._element,"hidden.bs.offcanvas"),this._element.classList.remove("offcanvas-toggling")},a(this._element))))}_getConfig(t){return t={...pt,...$.getDataAttributes(this._element),..."object"==typeof t?t:{}},d("offcanvas",t,mt),t}_enforceFocusOnElement(t){P.off(document,"focusin.bs.offcanvas"),P.on(document,"focusin.bs.offcanvas",e=>{document===e.target||t===e.target||t.contains(e.target)||t.focus()}),t.focus()}_addEventListeners(){P.on(this._element,"click.dismiss.bs.offcanvas",'[data-bs-dismiss="offcanvas"]',()=>this.hide()),P.on(document,"keydown",t=>{this._config.keyboard&&"Escape"===t.key&&this.hide()}),P.on(document,"click.bs.offcanvas.data-api",t=>{const e=U.findOne(o(t.target));this._element.contains(t.target)||e===this._element||this.hide()})}static jQueryInterface(t){return this.each((function(){const e=w.get(this,"bs.offcanvas")||new _t(this,"object"==typeof t?t:{});if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}P.on(document,"click.bs.offcanvas.data-api",'[data-bs-toggle="offcanvas"]',(function(t){const e=r(this);if(["A","AREA"].includes(this.tagName)&&t.preventDefault(),g(this))return;P.one(e,"hidden.bs.offcanvas",()=>{u(this)&&this.focus()});const s=U.findOne(".offcanvas.show, .offcanvas-toggling");s&&s!==e||(w.get(e,"bs.offcanvas")||new _t(e)).toggle(this)})),P.on(window,"load.bs.offcanvas.data-api",()=>{U.find(".offcanvas.show").forEach(t=>(w.get(t,"bs.offcanvas")||new _t(t)).show())}),v("offcanvas",_t);const bt=new Set(["background","cite","href","itemtype","longdesc","poster","src","xlink:href"]),vt=/^(?:(?:https?|mailto|ftp|tel|file):|[^#&/:?]*(?:[#/?]|$))/i,yt=/^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[\d+/a-z]+=*$/i,wt=(t,e)=>{const s=t.nodeName.toLowerCase();if(e.includes(s))return!bt.has(s)||Boolean(vt.test(t.nodeValue)||yt.test(t.nodeValue));const i=e.filter(t=>t instanceof RegExp);for(let t=0,e=i.length;t<e;t++)if(i[t].test(s))return!0;return!1};function Et(t,e,s){if(!t.length)return t;if(s&&"function"==typeof s)return s(t);const i=(new window.DOMParser).parseFromString(t,"text/html"),n=Object.keys(e),o=[].concat(...i.body.querySelectorAll("*"));for(let t=0,s=o.length;t<s;t++){const s=o[t],i=s.nodeName.toLowerCase();if(!n.includes(i)){s.parentNode.removeChild(s);continue}const r=[].concat(...s.attributes),a=[].concat(e["*"]||[],e[i]||[]);r.forEach(t=>{wt(t,a)||s.removeAttribute(t.nodeName)})}return i.body.innerHTML}const Tt=new RegExp("(^|\\s)bs-tooltip\\S+","g"),At=new Set(["sanitize","allowList","sanitizeFn"]),Lt={animation:"boolean",template:"string",title:"(string|element|function)",trigger:"string",delay:"(number|object)",html:"boolean",selector:"(string|boolean)",placement:"(string|function)",offset:"(array|string|function)",container:"(string|element|boolean)",fallbackPlacements:"array",boundary:"(string|element)",customClass:"(string|function)",sanitize:"boolean",sanitizeFn:"(null|function)",allowList:"object",popperConfig:"(null|object|function)"},kt={AUTO:"auto",TOP:"top",RIGHT:b()?"left":"right",BOTTOM:"bottom",LEFT:b()?"right":"left"},Ct={animation:!0,template:'<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,selector:!1,placement:"top",offset:[0,0],container:!1,fallbackPlacements:["top","right","bottom","left"],boundary:"clippingParents",customClass:"",sanitize:!0,sanitizeFn:null,allowList:{"*":["class","dir","id","lang","role",/^aria-[\w-]*$/i],a:["target","href","title","rel"],area:[],b:[],br:[],col:[],code:[],div:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:["src","srcset","alt","title","width","height"],li:[],ol:[],p:[],pre:[],s:[],small:[],span:[],sub:[],sup:[],strong:[],u:[],ul:[]},popperConfig:null},Dt={HIDE:"hide.bs.tooltip",HIDDEN:"hidden.bs.tooltip",SHOW:"show.bs.tooltip",SHOWN:"shown.bs.tooltip",INSERTED:"inserted.bs.tooltip",CLICK:"click.bs.tooltip",FOCUSIN:"focusin.bs.tooltip",FOCUSOUT:"focusout.bs.tooltip",MOUSEENTER:"mouseenter.bs.tooltip",MOUSELEAVE:"mouseleave.bs.tooltip"};class St extends M{constructor(t,e){if(void 0===s)throw new TypeError("Bootstrap's tooltips require Popper (https://popper.js.org)");super(t),this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this.config=this._getConfig(e),this.tip=null,this._setListeners()}static get Default(){return Ct}static get NAME(){return"tooltip"}static get DATA_KEY(){return"bs.tooltip"}static get Event(){return Dt}static get EVENT_KEY(){return".bs.tooltip"}static get DefaultType(){return Lt}enable(){this._isEnabled=!0}disable(){this._isEnabled=!1}toggleEnabled(){this._isEnabled=!this._isEnabled}toggle(t){if(this._isEnabled)if(t){const e=this._initializeOnDelegatedTarget(t);e._activeTrigger.click=!e._activeTrigger.click,e._isWithActiveTrigger()?e._enter(null,e):e._leave(null,e)}else{if(this.getTipElement().classList.contains("show"))return void this._leave(null,this);this._enter(null,this)}}dispose(){clearTimeout(this._timeout),P.off(this._element,this.constructor.EVENT_KEY),P.off(this._element.closest(".modal"),"hide.bs.modal",this._hideModalHandler),this.tip&&this.tip.parentNode&&this.tip.parentNode.removeChild(this.tip),this._isEnabled=null,this._timeout=null,this._hoverState=null,this._activeTrigger=null,this._popper&&this._popper.destroy(),this._popper=null,this.config=null,this.tip=null,super.dispose()}show(){if("none"===this._element.style.display)throw new Error("Please use show on visible elements");if(!this.isWithContent()||!this._isEnabled)return;const t=P.trigger(this._element,this.constructor.Event.SHOW),e=f(this._element),n=null===e?this._element.ownerDocument.documentElement.contains(this._element):e.contains(this._element);if(t.defaultPrevented||!n)return;const o=this.getTipElement(),r=i(this.constructor.NAME);o.setAttribute("id",r),this._element.setAttribute("aria-describedby",r),this.setContent(),this.config.animation&&o.classList.add("fade");const l="function"==typeof this.config.placement?this.config.placement.call(this,o,this._element):this.config.placement,c=this._getAttachment(l);this._addAttachmentClass(c);const d=this._getContainer();w.set(o,this.constructor.DATA_KEY,this),this._element.ownerDocument.documentElement.contains(this.tip)||(d.appendChild(o),P.trigger(this._element,this.constructor.Event.INSERTED)),this._popper?this._popper.update():this._popper=s.createPopper(this._element,o,this._getPopperConfig(c)),o.classList.add("show");const u="function"==typeof this.config.customClass?this.config.customClass():this.config.customClass;u&&o.classList.add(...u.split(" ")),"ontouchstart"in document.documentElement&&[].concat(...document.body.children).forEach(t=>{P.on(t,"mouseover",(function(){}))});const g=()=>{const t=this._hoverState;this._hoverState=null,P.trigger(this._element,this.constructor.Event.SHOWN),"out"===t&&this._leave(null,this)};if(this.tip.classList.contains("fade")){const t=a(this.tip);P.one(this.tip,"transitionend",g),h(this.tip,t)}else g()}hide(){if(!this._popper)return;const t=this.getTipElement(),e=()=>{this._isWithActiveTrigger()||("show"!==this._hoverState&&t.parentNode&&t.parentNode.removeChild(t),this._cleanTipClass(),this._element.removeAttribute("aria-describedby"),P.trigger(this._element,this.constructor.Event.HIDDEN),this._popper&&(this._popper.destroy(),this._popper=null))};if(!P.trigger(this._element,this.constructor.Event.HIDE).defaultPrevented){if(t.classList.remove("show"),"ontouchstart"in document.documentElement&&[].concat(...document.body.children).forEach(t=>P.off(t,"mouseover",p)),this._activeTrigger.click=!1,this._activeTrigger.focus=!1,this._activeTrigger.hover=!1,this.tip.classList.contains("fade")){const s=a(t);P.one(t,"transitionend",e),h(t,s)}else e();this._hoverState=""}}update(){null!==this._popper&&this._popper.update()}isWithContent(){return Boolean(this.getTitle())}getTipElement(){if(this.tip)return this.tip;const t=document.createElement("div");return t.innerHTML=this.config.template,this.tip=t.children[0],this.tip}setContent(){const t=this.getTipElement();this.setElementContent(U.findOne(".tooltip-inner",t),this.getTitle()),t.classList.remove("fade","show")}setElementContent(t,e){if(null!==t)return"object"==typeof e&&c(e)?(e.jquery&&(e=e[0]),void(this.config.html?e.parentNode!==t&&(t.innerHTML="",t.appendChild(e)):t.textContent=e.textContent)):void(this.config.html?(this.config.sanitize&&(e=Et(e,this.config.allowList,this.config.sanitizeFn)),t.innerHTML=e):t.textContent=e)}getTitle(){let t=this._element.getAttribute("data-bs-original-title");return t||(t="function"==typeof this.config.title?this.config.title.call(this._element):this.config.title),t}updateAttachment(t){return"right"===t?"end":"left"===t?"start":t}_initializeOnDelegatedTarget(t,e){const s=this.constructor.DATA_KEY;return(e=e||w.get(t.delegateTarget,s))||(e=new this.constructor(t.delegateTarget,this._getDelegateConfig()),w.set(t.delegateTarget,s,e)),e}_getOffset(){const{offset:t}=this.config;return"string"==typeof t?t.split(",").map(t=>Number.parseInt(t,10)):"function"==typeof t?e=>t(e,this._element):t}_getPopperConfig(t){const e={placement:t,modifiers:[{name:"flip",options:{altBoundary:!0,fallbackPlacements:this.config.fallbackPlacements}},{name:"offset",options:{offset:this._getOffset()}},{name:"preventOverflow",options:{boundary:this.config.boundary}},{name:"arrow",options:{element:`.${this.constructor.NAME}-arrow`}},{name:"onChange",enabled:!0,phase:"afterWrite",fn:t=>this._handlePopperPlacementChange(t)}],onFirstUpdate:t=>{t.options.placement!==t.placement&&this._handlePopperPlacementChange(t)}};return{...e,..."function"==typeof this.config.popperConfig?this.config.popperConfig(e):this.config.popperConfig}}_addAttachmentClass(t){this.getTipElement().classList.add("bs-tooltip-"+this.updateAttachment(t))}_getContainer(){return!1===this.config.container?document.body:c(this.config.container)?this.config.container:U.findOne(this.config.container)}_getAttachment(t){return kt[t.toUpperCase()]}_setListeners(){this.config.trigger.split(" ").forEach(t=>{if("click"===t)P.on(this._element,this.constructor.Event.CLICK,this.config.selector,t=>this.toggle(t));else if("manual"!==t){const e="hover"===t?this.constructor.Event.MOUSEENTER:this.constructor.Event.FOCUSIN,s="hover"===t?this.constructor.Event.MOUSELEAVE:this.constructor.Event.FOCUSOUT;P.on(this._element,e,this.config.selector,t=>this._enter(t)),P.on(this._element,s,this.config.selector,t=>this._leave(t))}}),this._hideModalHandler=()=>{this._element&&this.hide()},P.on(this._element.closest(".modal"),"hide.bs.modal",this._hideModalHandler),this.config.selector?this.config={...this.config,trigger:"manual",selector:""}:this._fixTitle()}_fixTitle(){const t=this._element.getAttribute("title"),e=typeof this._element.getAttribute("data-bs-original-title");(t||"string"!==e)&&(this._element.setAttribute("data-bs-original-title",t||""),!t||this._element.getAttribute("aria-label")||this._element.textContent||this._element.setAttribute("aria-label",t),this._element.setAttribute("title",""))}_enter(t,e){e=this._initializeOnDelegatedTarget(t,e),t&&(e._activeTrigger["focusin"===t.type?"focus":"hover"]=!0),e.getTipElement().classList.contains("show")||"show"===e._hoverState?e._hoverState="show":(clearTimeout(e._timeout),e._hoverState="show",e.config.delay&&e.config.delay.show?e._timeout=setTimeout(()=>{"show"===e._hoverState&&e.show()},e.config.delay.show):e.show())}_leave(t,e){e=this._initializeOnDelegatedTarget(t,e),t&&(e._activeTrigger["focusout"===t.type?"focus":"hover"]=e._element.contains(t.relatedTarget)),e._isWithActiveTrigger()||(clearTimeout(e._timeout),e._hoverState="out",e.config.delay&&e.config.delay.hide?e._timeout=setTimeout(()=>{"out"===e._hoverState&&e.hide()},e.config.delay.hide):e.hide())}_isWithActiveTrigger(){for(const t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1}_getConfig(t){const e=$.getDataAttributes(this._element);return Object.keys(e).forEach(t=>{At.has(t)&&delete e[t]}),t&&"object"==typeof t.container&&t.container.jquery&&(t.container=t.container[0]),"number"==typeof(t={...this.constructor.Default,...e,..."object"==typeof t&&t?t:{}}).delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),d("tooltip",t,this.constructor.DefaultType),t.sanitize&&(t.template=Et(t.template,t.allowList,t.sanitizeFn)),t}_getDelegateConfig(){const t={};if(this.config)for(const e in this.config)this.constructor.Default[e]!==this.config[e]&&(t[e]=this.config[e]);return t}_cleanTipClass(){const t=this.getTipElement(),e=t.getAttribute("class").match(Tt);null!==e&&e.length>0&&e.map(t=>t.trim()).forEach(e=>t.classList.remove(e))}_handlePopperPlacementChange(t){const{state:e}=t;e&&(this.tip=e.elements.popper,this._cleanTipClass(),this._addAttachmentClass(this._getAttachment(e.placement)))}static jQueryInterface(t){return this.each((function(){let e=w.get(this,"bs.tooltip");const s="object"==typeof t&&t;if((e||!/dispose|hide/.test(t))&&(e||(e=new St(this,s)),"string"==typeof t)){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}v("tooltip",St);const Nt=new RegExp("(^|\\s)bs-popover\\S+","g"),Ot={...St.Default,placement:"right",offset:[0,8],trigger:"click",content:"",template:'<div class="popover" role="tooltip"><div class="popover-arrow"></div><h3 class="popover-header"></h3><div class="popover-body"></div></div>'},xt={...St.DefaultType,content:"(string|element|function)"},It={HIDE:"hide.bs.popover",HIDDEN:"hidden.bs.popover",SHOW:"show.bs.popover",SHOWN:"shown.bs.popover",INSERTED:"inserted.bs.popover",CLICK:"click.bs.popover",FOCUSIN:"focusin.bs.popover",FOCUSOUT:"focusout.bs.popover",MOUSEENTER:"mouseenter.bs.popover",MOUSELEAVE:"mouseleave.bs.popover"};class jt extends St{static get Default(){return Ot}static get NAME(){return"popover"}static get DATA_KEY(){return"bs.popover"}static get Event(){return It}static get EVENT_KEY(){return".bs.popover"}static get DefaultType(){return xt}isWithContent(){return this.getTitle()||this._getContent()}setContent(){const t=this.getTipElement();this.setElementContent(U.findOne(".popover-header",t),this.getTitle());let e=this._getContent();"function"==typeof e&&(e=e.call(this._element)),this.setElementContent(U.findOne(".popover-body",t),e),t.classList.remove("fade","show")}_addAttachmentClass(t){this.getTipElement().classList.add("bs-popover-"+this.updateAttachment(t))}_getContent(){return this._element.getAttribute("data-bs-content")||this.config.content}_cleanTipClass(){const t=this.getTipElement(),e=t.getAttribute("class").match(Nt);null!==e&&e.length>0&&e.map(t=>t.trim()).forEach(e=>t.classList.remove(e))}static jQueryInterface(t){return this.each((function(){let e=w.get(this,"bs.popover");const s="object"==typeof t?t:null;if((e||!/dispose|hide/.test(t))&&(e||(e=new jt(this,s),w.set(this,"bs.popover",e)),"string"==typeof t)){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}v("popover",jt);const Pt={offset:10,method:"auto",target:""},Mt={offset:"number",method:"string",target:"(string|element)"};class Ht extends M{constructor(t,e){super(t),this._scrollElement="BODY"===this._element.tagName?window:this._element,this._config=this._getConfig(e),this._selector=`${this._config.target} .nav-link, ${this._config.target} .list-group-item, ${this._config.target} .dropdown-item`,this._offsets=[],this._targets=[],this._activeTarget=null,this._scrollHeight=0,P.on(this._scrollElement,"scroll.bs.scrollspy",()=>this._process()),this.refresh(),this._process()}static get Default(){return Pt}static get DATA_KEY(){return"bs.scrollspy"}refresh(){const t=this._scrollElement===this._scrollElement.window?"offset":"position",e="auto"===this._config.method?t:this._config.method,s="position"===e?this._getScrollTop():0;this._offsets=[],this._targets=[],this._scrollHeight=this._getScrollHeight(),U.find(this._selector).map(t=>{const i=o(t),n=i?U.findOne(i):null;if(n){const t=n.getBoundingClientRect();if(t.width||t.height)return[$[e](n).top+s,i]}return null}).filter(t=>t).sort((t,e)=>t[0]-e[0]).forEach(t=>{this._offsets.push(t[0]),this._targets.push(t[1])})}dispose(){super.dispose(),P.off(this._scrollElement,".bs.scrollspy"),this._scrollElement=null,this._config=null,this._selector=null,this._offsets=null,this._targets=null,this._activeTarget=null,this._scrollHeight=null}_getConfig(t){if("string"!=typeof(t={...Pt,..."object"==typeof t&&t?t:{}}).target&&c(t.target)){let{id:e}=t.target;e||(e=i("scrollspy"),t.target.id=e),t.target="#"+e}return d("scrollspy",t,Mt),t}_getScrollTop(){return this._scrollElement===window?this._scrollElement.pageYOffset:this._scrollElement.scrollTop}_getScrollHeight(){return this._scrollElement.scrollHeight||Math.max(document.body.scrollHeight,document.documentElement.scrollHeight)}_getOffsetHeight(){return this._scrollElement===window?window.innerHeight:this._scrollElement.getBoundingClientRect().height}_process(){const t=this._getScrollTop()+this._config.offset,e=this._getScrollHeight(),s=this._config.offset+e-this._getOffsetHeight();if(this._scrollHeight!==e&&this.refresh(),t>=s){const t=this._targets[this._targets.length-1];this._activeTarget!==t&&this._activate(t)}else{if(this._activeTarget&&t<this._offsets[0]&&this._offsets[0]>0)return this._activeTarget=null,void this._clear();for(let e=this._offsets.length;e--;)this._activeTarget!==this._targets[e]&&t>=this._offsets[e]&&(void 0===this._offsets[e+1]||t<this._offsets[e+1])&&this._activate(this._targets[e])}}_activate(t){this._activeTarget=t,this._clear();const e=this._selector.split(",").map(e=>`${e}[data-bs-target="${t}"],${e}[href="${t}"]`),s=U.findOne(e.join(","));s.classList.contains("dropdown-item")?(U.findOne(".dropdown-toggle",s.closest(".dropdown")).classList.add("active"),s.classList.add("active")):(s.classList.add("active"),U.parents(s,".nav, .list-group").forEach(t=>{U.prev(t,".nav-link, .list-group-item").forEach(t=>t.classList.add("active")),U.prev(t,".nav-item").forEach(t=>{U.children(t,".nav-link").forEach(t=>t.classList.add("active"))})})),P.trigger(this._scrollElement,"activate.bs.scrollspy",{relatedTarget:t})}_clear(){U.find(this._selector).filter(t=>t.classList.contains("active")).forEach(t=>t.classList.remove("active"))}static jQueryInterface(t){return this.each((function(){let e=w.get(this,"bs.scrollspy");if(e||(e=new Ht(this,"object"==typeof t&&t)),"string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}P.on(window,"load.bs.scrollspy.data-api",()=>{U.find('[data-bs-spy="scroll"]').forEach(t=>new Ht(t,$.getDataAttributes(t)))}),v("scrollspy",Ht);class Rt extends M{static get DATA_KEY(){return"bs.tab"}show(){if(this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE&&this._element.classList.contains("active")||g(this._element))return;let t;const e=r(this._element),s=this._element.closest(".nav, .list-group");if(s){const e="UL"===s.nodeName||"OL"===s.nodeName?":scope > li > .active":".active";t=U.find(e,s),t=t[t.length-1]}const i=t?P.trigger(t,"hide.bs.tab",{related
|
1 |
/*!
|
2 |
+
* Bootstrap v5.1.3 (https://getbootstrap.com/)
|
3 |
* Copyright 2011-2021 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
|
4 |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
5 |
*/
|
|