EmbedPress – Embed Google Docs, YouTube, Maps, Vimeo, Wistia Videos & Upload PDF, PPT in Gutenberg & Elementor - Version 3.6.0

Version Description

Download this release

Release Info

Developer wpdevteam
Plugin Icon wp plugin EmbedPress – Embed Google Docs, YouTube, Maps, Vimeo, Wistia Videos & Upload PDF, PPT in Gutenberg & Elementor
Version 3.6.0
Comparing to
See all releases

Code changes from version 3.5.3 to 3.6.0

EmbedPress/Elementor/Widgets/Embedpress_Elementor.php CHANGED
@@ -112,6 +112,7 @@ class Embedpress_Elementor extends Widget_Base
112
  'wistia' => __('Wistia', 'embedpress'),
113
  'twitch' => __('Twitch', 'embedpress'),
114
  'soundcloud' => __('SoundCloud', 'embedpress'),
 
115
  ]
116
  ]
117
  );
@@ -159,19 +160,29 @@ class Embedpress_Elementor extends Widget_Base
159
  ]
160
  );
161
 
 
 
 
 
162
  $this->init_youtube_controls();
163
  $this->init_vimeo_controls();
164
  $this->init_wistia_controls();
165
  $this->init_soundcloud_controls();
166
  $this->init_dailymotion_control();
167
  $this->init_twitch_control();
168
-
169
  $this->end_controls_section();
170
 
171
  $this->init_youtube_channel_section();
172
  $this->init_youtube_subscription_section();
173
  $this->init_youtube_livechat_section();
174
 
 
 
 
 
 
 
175
  if (!is_embedpress_pro_active()) {
176
  $this->start_controls_section(
177
  'embedpress_pro_section',
@@ -200,7 +211,13 @@ class Embedpress_Elementor extends Widget_Base
200
  }
201
 
202
  $this->init_style_controls();
 
203
  }
 
 
 
 
 
204
  public function init_youtube_controls()
205
  {
206
  $yt_condition = [
@@ -562,6 +579,7 @@ class Embedpress_Elementor extends Widget_Base
562
 
563
  $this->end_controls_section();
564
  }
 
565
  public function init_youtube_livechat_section()
566
  {
567
  $yt_condition = [
@@ -594,6 +612,12 @@ class Embedpress_Elementor extends Widget_Base
594
 
595
  $this->end_controls_section();
596
  }
 
 
 
 
 
 
597
  public function init_dailymotion_control()
598
  {
599
  //@TODO; Kamal - migrate from 'embedpress_pro_dailymotion_logo' to 'embedpress_pro_dailymotion_ui_logo'
@@ -703,6 +727,11 @@ class Embedpress_Elementor extends Widget_Base
703
  );
704
  $this->init_branding_controls('dailymotion');
705
  }
 
 
 
 
 
706
  public function init_wistia_controls()
707
  {
708
  $this->add_control(
@@ -927,6 +956,13 @@ class Embedpress_Elementor extends Widget_Base
927
  );
928
  $this->init_branding_controls('wistia');
929
  }
 
 
 
 
 
 
 
930
  public function init_twitch_control()
931
  {
932
  $condition = [
@@ -994,6 +1030,12 @@ class Embedpress_Elementor extends Widget_Base
994
 
995
  $this->init_branding_controls('twitch');
996
  }
 
 
 
 
 
 
997
  public function init_soundcloud_controls()
998
  {
999
  $this->add_control(
@@ -1160,6 +1202,11 @@ class Embedpress_Elementor extends Widget_Base
1160
  ]
1161
  );
1162
  }
 
 
 
 
 
1163
  public function init_vimeo_controls()
1164
  {
1165
  $this->add_control(
@@ -1298,6 +1345,12 @@ class Embedpress_Elementor extends Widget_Base
1298
 
1299
  $this->init_branding_controls('vimeo');
1300
  }
 
 
 
 
 
 
1301
  public function init_spotify_controls()
1302
  {
1303
  $condition = [
@@ -1320,36 +1373,542 @@ class Embedpress_Elementor extends Widget_Base
1320
  ]
1321
  );
1322
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1323
 
1324
  public function init_style_controls()
1325
  {
1326
  $this->start_controls_section(
1327
  'embedpress_style_section',
1328
  [
1329
- 'label' => __('Style', 'embedpress'),
1330
  'tab' => Controls_Manager::TAB_STYLE,
 
 
 
 
 
 
 
 
 
 
1331
  ]
1332
  );
1333
- //$this->add_control(
1334
- // 'embedpress_elementor_aspect_ratio',
1335
- // [
1336
- // 'label' => __( 'Aspect Ratio', 'embedpress' ),
1337
- // 'description' => __( 'Good for any video. You may turn it off for other embed type.', 'embedpress' ),
1338
- // 'type' => Controls_Manager::SELECT,
1339
- // 'options' => [
1340
- // 0 => __('None'),
1341
- // '169' => '16:9',
1342
- // '219' => '21:9',
1343
- // '43' => '4:3',
1344
- // '32' => '3:2',
1345
- // '11' => '1:1',
1346
- // '916' => '9:16',
1347
- // ],
1348
- // 'default' => 0,
1349
- // 'prefix_class' => 'embedpress-aspect-ratio-',
1350
- // 'frontend_available' => true,
1351
- // ]
1352
- //);
1353
  $this->add_control(
1354
  'width',
1355
  [
@@ -1388,7 +1947,6 @@ class Embedpress_Elementor extends Widget_Base
1388
  ]
1389
  ]
1390
  );
1391
-
1392
  $this->add_responsive_control(
1393
  'margin',
1394
  [
@@ -1455,7 +2013,9 @@ class Embedpress_Elementor extends Widget_Base
1455
  {
1456
  $_settings = [];
1457
  foreach ($settings as $key => $value) {
1458
- if (!empty($value['size'])) {
 
 
1459
  $_settings[$key] = $value['size'];
1460
  } else if (!empty($value['url'])) {
1461
  $_settings[$key] = $value['url'];
@@ -1469,12 +2029,18 @@ class Embedpress_Elementor extends Widget_Base
1469
 
1470
  protected function render()
1471
  {
 
1472
  add_filter('embedpress_should_modify_spotify', '__return_false');
1473
  $settings = $this->get_settings_for_display();
 
1474
  $is_editor_view = Plugin::$instance->editor->is_edit_mode();
1475
  $link = $settings['embedpress_embeded_link'];
1476
  $is_apple_podcast = (strpos($link, 'podcasts.apple.com') !== false);
1477
- $_settings = $this->convert_settings($settings);
 
 
 
 
1478
 
1479
  $embed_content = Shortcode::parseContent($settings['embedpress_embeded_link'], true, $_settings);
1480
  $embed_content = $this->onAfterEmbedSpotify($embed_content, $settings);
@@ -1507,15 +2073,19 @@ class Embedpress_Elementor extends Widget_Base
1507
  ?>
1508
  </div>
1509
 
1510
- <style>
1511
- #ep-elements-id-<?php echo esc_html($this->get_id()); ?> .ep-youtube__content__block .youtube__content__body .content__wrap {
1512
- grid-template-columns: repeat(auto-fit, minmax(<?php echo esc_html($calVal); ?>, 1fr)) !important;
1513
- }
1514
 
1515
- #ep-elements-id-<?php echo esc_html($this->get_id()); ?> .ep-youtube__content__pagination {
1516
- display: <?php echo esc_html($ispagination); ?> !important;
1517
- }
1518
- </style>
 
 
 
 
 
 
 
 
1519
  <?php
1520
  }
1521
  public function onAfterEmbedSpotify($embed, $setting)
112
  'wistia' => __('Wistia', 'embedpress'),
113
  'twitch' => __('Twitch', 'embedpress'),
114
  'soundcloud' => __('SoundCloud', 'embedpress'),
115
+ 'opensea' => __('OpenSea', 'embedpress'),
116
  ]
117
  ]
118
  );
160
  ]
161
  );
162
 
163
+
164
+ /**
165
+ * Initialized controls
166
+ */
167
  $this->init_youtube_controls();
168
  $this->init_vimeo_controls();
169
  $this->init_wistia_controls();
170
  $this->init_soundcloud_controls();
171
  $this->init_dailymotion_control();
172
  $this->init_twitch_control();
173
+ $this->init_opensea_control();
174
  $this->end_controls_section();
175
 
176
  $this->init_youtube_channel_section();
177
  $this->init_youtube_subscription_section();
178
  $this->init_youtube_livechat_section();
179
 
180
+ /**
181
+ * Opensea Control section
182
+ */
183
+ $this->init_opensea_control_section();
184
+
185
+
186
  if (!is_embedpress_pro_active()) {
187
  $this->start_controls_section(
188
  'embedpress_pro_section',
211
  }
212
 
213
  $this->init_style_controls();
214
+ $this->init_opensea_color_and_typography();
215
  }
216
+
217
+ /**
218
+ * Youtube Controls
219
+ */
220
+
221
  public function init_youtube_controls()
222
  {
223
  $yt_condition = [
579
 
580
  $this->end_controls_section();
581
  }
582
+
583
  public function init_youtube_livechat_section()
584
  {
585
  $yt_condition = [
612
 
613
  $this->end_controls_section();
614
  }
615
+
616
+ //End Youtube Controls
617
+
618
+ /**
619
+ * Dailymotion Controls
620
+ */
621
  public function init_dailymotion_control()
622
  {
623
  //@TODO; Kamal - migrate from 'embedpress_pro_dailymotion_logo' to 'embedpress_pro_dailymotion_ui_logo'
727
  );
728
  $this->init_branding_controls('dailymotion');
729
  }
730
+ //End Dailymotion Controls
731
+
732
+ /**
733
+ * Wistia Controls
734
+ */
735
  public function init_wistia_controls()
736
  {
737
  $this->add_control(
956
  );
957
  $this->init_branding_controls('wistia');
958
  }
959
+ //End Wistia controls
960
+
961
+
962
+
963
+ /**
964
+ * Twitch Controls
965
+ */
966
  public function init_twitch_control()
967
  {
968
  $condition = [
1030
 
1031
  $this->init_branding_controls('twitch');
1032
  }
1033
+ //End Twitch controls
1034
+
1035
+
1036
+ /**
1037
+ * SoundCloud Controls
1038
+ */
1039
  public function init_soundcloud_controls()
1040
  {
1041
  $this->add_control(
1202
  ]
1203
  );
1204
  }
1205
+ //End SoundCloud controls
1206
+
1207
+ /**
1208
+ * Vimeo Controls
1209
+ */
1210
  public function init_vimeo_controls()
1211
  {
1212
  $this->add_control(
1345
 
1346
  $this->init_branding_controls('vimeo');
1347
  }
1348
+ //End Vimeo controls
1349
+
1350
+
1351
+ /**
1352
+ * Spotify Controls
1353
+ */
1354
  public function init_spotify_controls()
1355
  {
1356
  $condition = [
1373
  ]
1374
  );
1375
  }
1376
+ //End Spotify controls
1377
+
1378
+ /**
1379
+ * OpenSea Controls
1380
+ */
1381
+ public function init_opensea_control(){
1382
+ $condition = [
1383
+ 'embedpress_pro_embeded_source' => 'opensea'
1384
+ ];
1385
+
1386
+ $this->add_control(
1387
+ 'limit',
1388
+ [
1389
+ 'type' => \Elementor\Controls_Manager::NUMBER,
1390
+ 'label' => esc_html__( 'Limit', 'embedpress' ),
1391
+ 'placeholder' => '9',
1392
+ 'min' => 1,
1393
+ 'max' => 100,
1394
+ 'step' => 1,
1395
+ 'default' => 9,
1396
+ 'condition' => $condition
1397
+ ]
1398
+ );
1399
+ $this->add_control(
1400
+ 'orderby',
1401
+ [
1402
+ 'type' => \Elementor\Controls_Manager::SELECT,
1403
+ 'label' => esc_html__( 'Order By', 'embedpress' ),
1404
+ 'options' => [
1405
+ 'asc' => esc_html__( 'Oldest', 'embedpress' ),
1406
+ 'desc' => esc_html__( 'Newest', 'embedpress' ),
1407
+ ],
1408
+ 'default' => 'desc',
1409
+ 'condition' => $condition
1410
+ ]
1411
+ );
1412
+ }
1413
+
1414
+ public function init_opensea_control_section(){
1415
+ $condition = [
1416
+ 'embedpress_pro_embeded_source' => 'opensea',
1417
+ ];
1418
+
1419
+ $this->start_controls_section(
1420
+ 'embedpress_opensea_control_section',
1421
+ [
1422
+ 'label' => __('OpenSea Control Settings', 'embedpress'),
1423
+ 'condition' => $condition,
1424
+ ]
1425
+ );
1426
+
1427
+ $this->add_control(
1428
+ 'opense_important_note',
1429
+ [
1430
+ 'type' => \Elementor\Controls_Manager::RAW_HTML,
1431
+ 'raw' => esc_html__( 'These options take effect only when a Opensea Collection is embedded.', 'embedpress' ),
1432
+ 'content_classes' => 'elementor-panel-alert elementor-panel-alert-info',
1433
+ ]
1434
+ );
1435
+
1436
+ $this->add_control(
1437
+ 'layout',
1438
+ [
1439
+ 'label' => __('Layout', 'embedpress'),
1440
+ 'type' => \Elementor\Controls_Manager::SELECT,
1441
+ 'label_block' => false,
1442
+ 'default' => 'ep-grid',
1443
+ 'options' => [
1444
+ 'ep-grid' => esc_html__('Grid', 'embedpress'),
1445
+ 'ep-list' => esc_html__('List', 'embedpress'),
1446
+ ],
1447
+ 'conditions' => [
1448
+ 'terms' => [
1449
+ [
1450
+ 'name' => 'embedpress_pro_embeded_source',
1451
+ 'operator' => '===',
1452
+ 'value' => 'opensea',
1453
+ ],
1454
+ ],
1455
+ ]
1456
+
1457
+ ]
1458
+ );
1459
+ $this->add_control(
1460
+ 'preset',
1461
+ [
1462
+ 'label' => __('Preset', 'embedpress'),
1463
+ 'type' => \Elementor\Controls_Manager::SELECT,
1464
+ 'label_block' => false,
1465
+ 'default' => 'ep-preset-1',
1466
+ 'options' => [
1467
+ 'ep-preset-1' => esc_html__('Preset 1', 'embedpress'),
1468
+ 'ep-preset-2' => esc_html__('Preset 2', 'embedpress'),
1469
+ ],
1470
+ 'conditions' => [
1471
+ 'terms' => [
1472
+ [
1473
+ 'name' => 'layout',
1474
+ 'operator' => '===',
1475
+ 'value' => 'ep-grid',
1476
+ ],
1477
+ ],
1478
+ ]
1479
+
1480
+ ]
1481
+ );
1482
+
1483
+ $this->add_control(
1484
+ 'nftperrow',
1485
+ [
1486
+ 'label' => __('Column', 'embedpress'),
1487
+ 'type' => \Elementor\Controls_Manager::SELECT,
1488
+ 'label_block' => false,
1489
+ 'default' => '3',
1490
+ 'options' => [
1491
+ '1' => esc_html__('1', 'embedpress'),
1492
+ '2' => esc_html__('2', 'embedpress'),
1493
+ '3' => esc_html__('3', 'embedpress'),
1494
+ '4' => esc_html__('4', 'embedpress'),
1495
+ '5' => esc_html__('5', 'embedpress'),
1496
+ '6' => esc_html__('6', 'embedpress'),
1497
+ 'auto' => esc_html__('Auto', 'embedpress'),
1498
+ ],
1499
+ 'conditions' => [
1500
+ 'terms' => [
1501
+ [
1502
+ 'name' => 'embedpress_pro_embeded_source',
1503
+ 'operator' => '===',
1504
+ 'value' => 'opensea',
1505
+ ],
1506
+ ],
1507
+ ]
1508
+
1509
+ ]
1510
+ );
1511
+
1512
+ $this->add_control(
1513
+ 'gapbetweenitem',
1514
+ [
1515
+ 'label' => esc_html__( 'Gap Between Item', 'embedpress' ),
1516
+ 'type' => \Elementor\Controls_Manager::SLIDER,
1517
+ 'size_units' => [ 'px'],
1518
+ 'range' => [
1519
+ 'px' => [
1520
+ 'min' => 1,
1521
+ 'max' => 100,
1522
+ 'step' => 1,
1523
+ ],
1524
+ ],
1525
+ 'default' => [
1526
+ 'unit' => 'px',
1527
+ 'size' => 15,
1528
+ ],
1529
+ ]
1530
+ );
1531
+
1532
+ $this->add_control(
1533
+ 'nftimage',
1534
+ [
1535
+ 'label' => __('Thumbnail', 'embedpress'),
1536
+ 'type' => Controls_Manager::SWITCHER,
1537
+ 'label_block' => false,
1538
+ 'return_value' => 'yes',
1539
+ 'label_off' => __('Hide', 'embedpress'),
1540
+ 'label_on' => __('Show', 'embedpress'),
1541
+ 'default' => 'yes',
1542
+ 'condition' => $condition,
1543
+ ]
1544
+ );
1545
+ $this->add_control(
1546
+ 'nfttitle',
1547
+ [
1548
+ 'label' => __('Title', 'embedpress'),
1549
+ 'type' => Controls_Manager::SWITCHER,
1550
+ 'label_block' => false,
1551
+ 'return_value' => 'yes',
1552
+ 'default' => '',
1553
+ 'label_off' => __('Hide', 'embedpress'),
1554
+ 'label_on' => __('Show', 'embedpress'),
1555
+ 'default' => 'yes',
1556
+ 'condition' => $condition,
1557
+ ]
1558
+ );
1559
+ $this->add_control(
1560
+ 'nftcreator',
1561
+ [
1562
+ 'label' => __('Creator', 'embedpress'),
1563
+ 'type' => Controls_Manager::SWITCHER,
1564
+ 'label_block' => false,
1565
+ 'return_value' => 'yes',
1566
+ 'default' => '',
1567
+ 'label_off' => __('Hide', 'embedpress'),
1568
+ 'label_on' => __('Show', 'embedpress'),
1569
+ 'default' => 'yes',
1570
+ 'condition' => $condition,
1571
+ ]
1572
+ );
1573
+
1574
+ $this->add_control(
1575
+ 'prefix_nftcreator',
1576
+ [
1577
+ 'label' => sprintf(__('Prefix %s', 'embedpress'), $this->pro_text),
1578
+ 'type' => \Elementor\Controls_Manager::TEXT,
1579
+ 'default' => esc_html__( 'Created By', 'embedpress' ),
1580
+ 'placeholder' => esc_html__( 'Created By', 'embedpress' ),
1581
+ 'classes' => $this->pro_class,
1582
+ 'condition' => [
1583
+ 'nftcreator' => 'yes',
1584
+ ]
1585
+ ]
1586
+ );
1587
+
1588
+ $this->add_control(
1589
+ 'nftprice',
1590
+ [
1591
+ 'label' => __('Price', 'embedpress'),
1592
+ 'type' => Controls_Manager::SWITCHER,
1593
+ 'label_block' => false,
1594
+ 'return_value' => 'yes',
1595
+ 'default' => '',
1596
+ 'label_off' => __('Hide', 'embedpress'),
1597
+ 'label_on' => __('Show', 'embedpress'),
1598
+ 'default' => 'yes',
1599
+ 'condition' => $condition,
1600
+ ]
1601
+ );
1602
+
1603
+ $this->add_control(
1604
+ 'prefix_nftprice',
1605
+ [
1606
+ 'label' => sprintf(__('Prefix %s', 'embedpress'), $this->pro_text),
1607
+ 'type' => \Elementor\Controls_Manager::TEXT,
1608
+ 'default' => esc_html__( 'Price', 'embedpress' ),
1609
+ 'placeholder' => esc_html__( 'Price', 'embedpress' ),
1610
+ 'classes' => $this->pro_class,
1611
+ 'condition' => [
1612
+ 'nftprice' => 'yes',
1613
+ ]
1614
+ ]
1615
+ );
1616
+
1617
+ $this->add_control(
1618
+ 'nftlastsale',
1619
+ [
1620
+ 'label' => __('Last Sale', 'embedpress'),
1621
+ 'type' => Controls_Manager::SWITCHER,
1622
+ 'label_block' => false,
1623
+ 'return_value' => 'yes',
1624
+ 'default' => '',
1625
+ 'label_off' => __('Hide', 'embedpress'),
1626
+ 'label_on' => __('Show', 'embedpress'),
1627
+ 'default' => 'yes',
1628
+ 'condition' => $condition,
1629
+ ]
1630
+ );
1631
+
1632
+ $this->add_control(
1633
+ 'prefix_nftlastsale',
1634
+ [
1635
+ 'label' => sprintf(__('Prefix %s', 'embedpress'), $this->pro_text),
1636
+ 'type' => \Elementor\Controls_Manager::TEXT,
1637
+ 'default' => esc_html__( 'Last Sale', 'embedpress' ),
1638
+ 'placeholder' => esc_html__( 'Last Sale', 'embedpress' ),
1639
+ 'classes' => $this->pro_class,
1640
+ 'condition' => [
1641
+ 'nftlastsale' => 'yes',
1642
+ ]
1643
+ ]
1644
+ );
1645
+
1646
+ $this->add_control(
1647
+ 'nftbutton',
1648
+ [
1649
+ 'label' => __('Button', 'embedpress'),
1650
+ 'type' => Controls_Manager::SWITCHER,
1651
+ 'label_block' => false,
1652
+ 'return_value' => 'yes',
1653
+ 'default' => '',
1654
+ 'label_off' => __('Hide', 'embedpress'),
1655
+ 'label_on' => __('Show', 'embedpress'),
1656
+ 'default' => 'yes',
1657
+ 'condition' => $condition,
1658
+ ]
1659
+ );
1660
+ $this->add_control(
1661
+ 'label_nftbutton',
1662
+ [
1663
+ 'label' => sprintf(__('Button Label %s', 'embedpress'), $this->pro_text),
1664
+ 'type' => \Elementor\Controls_Manager::TEXT,
1665
+ 'default' => esc_html__( 'See Datails', 'embedpress' ),
1666
+ 'placeholder' => esc_html__( 'See Details', 'embedpress' ),
1667
+ 'classes' => $this->pro_class,
1668
+ 'condition' => [
1669
+ 'nftbutton' => 'yes',
1670
+ ]
1671
+ ]
1672
+ );
1673
+
1674
+
1675
+ $this->end_controls_section();
1676
+ }
1677
+
1678
+ public function init_opensea_color_and_typography(){
1679
+ $condition = [
1680
+ 'embedpress_pro_embeded_source' => 'opensea',
1681
+ ];
1682
+
1683
+ $this->start_controls_section(
1684
+ 'embedpress_color_typography_control_section',
1685
+ [
1686
+ 'label' => __('Color and Typography', 'embedpress'),
1687
+ 'tab' => Controls_Manager::TAB_STYLE,
1688
+ 'condition' => $condition,
1689
+ ]
1690
+ );
1691
+
1692
+ $this->add_control(
1693
+ 'opense_color_important_note',
1694
+ [
1695
+ 'type' => \Elementor\Controls_Manager::RAW_HTML,
1696
+ 'raw' => esc_html__( 'These options take effect only when a Opensea Collection is embedded.', 'embedpress' ),
1697
+ 'content_classes' => 'elementor-panel-alert elementor-panel-alert-info',
1698
+ ]
1699
+ );
1700
+
1701
+
1702
+ $this->add_control(
1703
+ 'item_heading',
1704
+ [
1705
+ 'label' => esc_html__( 'NFT Item', 'embedpress' ),
1706
+ 'type' => \Elementor\Controls_Manager::HEADING,
1707
+ 'separator' => 'before',
1708
+ ]
1709
+ );
1710
+
1711
+ $this->add_control(
1712
+ 'nft_item_background_color',
1713
+ [
1714
+ 'label' => esc_html__( 'Background Color', 'embedpress' ),
1715
+ 'type' => \Elementor\Controls_Manager::COLOR,
1716
+ 'selectors' => [
1717
+ '{{WRAPPER}} .ep_nft_content_wrap .ep_nft_item' => 'background-color: {{VALUE}}',
1718
+ ],
1719
+ ]
1720
+ );
1721
+
1722
+ $this->add_control(
1723
+ 'title_heading',
1724
+ [
1725
+ 'label' => esc_html__( 'Title', 'embedpress' ),
1726
+ 'type' => \Elementor\Controls_Manager::HEADING,
1727
+ 'separator' => 'before',
1728
+ ]
1729
+ );
1730
+
1731
+ $this->add_control(
1732
+ 'nft_title_color',
1733
+ [
1734
+ 'label' => esc_html__( 'Color', 'embedpress' ),
1735
+ 'type' => \Elementor\Controls_Manager::COLOR,
1736
+ 'selectors' => [
1737
+ '{{WRAPPER}} .ep_nft_title' => 'color: {{VALUE}}',
1738
+ ],
1739
+ ]
1740
+ );
1741
+ $this->add_group_control(
1742
+ \Elementor\Group_Control_Typography::get_type(),
1743
+ [
1744
+ 'name' => 'nft_title_typography',
1745
+ 'selector' => '{{WRAPPER}} .ep_nft_title',
1746
+ ]
1747
+ );
1748
+
1749
+
1750
+ $this->add_control(
1751
+ 'creator_heading',
1752
+ [
1753
+ 'label' => esc_html__( 'Creator', 'embedpress' ),
1754
+ 'type' => \Elementor\Controls_Manager::HEADING,
1755
+ 'separator' => 'before',
1756
+ ]
1757
+ );
1758
+
1759
+ $this->add_control(
1760
+ 'nft_creator_color',
1761
+ [
1762
+ 'label' => esc_html__( 'Color', 'embedpress' ),
1763
+ 'type' => \Elementor\Controls_Manager::COLOR,
1764
+ 'selectors' => [
1765
+ '{{WRAPPER}} .ep_nft_creator span' => 'color: {{VALUE}}',
1766
+ ],
1767
+ ]
1768
+ );
1769
+ $this->add_group_control(
1770
+ \Elementor\Group_Control_Typography::get_type(),
1771
+ [
1772
+ 'name' => 'nft_creator_typography',
1773
+ 'selector' => '{{WRAPPER}} .ep_nft_creator span',
1774
+ ]
1775
+ );
1776
+
1777
+ $this->add_control(
1778
+ 'nft_created_by_color',
1779
+ [
1780
+ 'label' => esc_html__( 'Link Color', 'embedpress' ),
1781
+ 'type' => \Elementor\Controls_Manager::COLOR,
1782
+ 'selectors' => [
1783
+ '{{WRAPPER}} .ep_nft_creator span a' => 'color: {{VALUE}}',
1784
+ ],
1785
+ ]
1786
+ );
1787
+ $this->add_group_control(
1788
+ \Elementor\Group_Control_Typography::get_type(),
1789
+ [
1790
+ 'label' => esc_html__( 'Link Typography', 'embedpress' ),
1791
+ 'name' => 'nft_created_by_typography',
1792
+ 'selector' => '{{WRAPPER}} .ep_nft_creator span a',
1793
+ ]
1794
+ );
1795
+
1796
+ $this->add_control(
1797
+ 'price_heading',
1798
+ [
1799
+ 'label' => esc_html__( 'Current Price', 'embedpress' ),
1800
+ 'type' => \Elementor\Controls_Manager::HEADING,
1801
+ 'separator' => 'before',
1802
+ ]
1803
+ );
1804
+
1805
+ $this->add_control(
1806
+ 'nft_price_color',
1807
+ [
1808
+ 'label' => esc_html__( 'Color', 'embedpress' ),
1809
+ 'type' => \Elementor\Controls_Manager::COLOR,
1810
+ 'selectors' => [
1811
+ '{{WRAPPER}} .ep_current_price span' => 'color: {{VALUE}}',
1812
+ ],
1813
+ ]
1814
+ );
1815
+
1816
+ $this->add_group_control(
1817
+ \Elementor\Group_Control_Typography::get_type(),
1818
+ [
1819
+ 'name' => 'nft_price_typography',
1820
+ 'selector' => '{{WRAPPER}} .ep_current_price span',
1821
+ ]
1822
+ );
1823
+ $this->add_control(
1824
+ 'last_sale_heading',
1825
+ [
1826
+ 'label' => esc_html__( 'Last Sale Price', 'embedpress' ),
1827
+ 'type' => \Elementor\Controls_Manager::HEADING,
1828
+ 'separator' => 'before',
1829
+ ]
1830
+ );
1831
+
1832
+ $this->add_control(
1833
+ 'nft_last_sale_color',
1834
+ [
1835
+ 'label' => esc_html__( 'Color', 'embedpress' ),
1836
+ 'type' => \Elementor\Controls_Manager::COLOR,
1837
+ 'selectors' => [
1838
+ '{{WRAPPER}} .ep_nft_last_sale span' => 'color: {{VALUE}}',
1839
+ ],
1840
+ ]
1841
+ );
1842
+ $this->add_group_control(
1843
+ \Elementor\Group_Control_Typography::get_type(),
1844
+ [
1845
+ 'name' => 'nft_last_sale_typography',
1846
+ 'selector' => '{{WRAPPER}} .ep_nft_last_sale span',
1847
+ ]
1848
+ );
1849
+ $this->add_control(
1850
+ 'nftbutton_heading',
1851
+ [
1852
+ 'label' => esc_html__( 'Button', 'embedpress' ),
1853
+ 'type' => \Elementor\Controls_Manager::HEADING,
1854
+ 'separator' => 'before',
1855
+ ]
1856
+ );
1857
+
1858
+
1859
+ $this->add_control(
1860
+ 'nftbutton_color',
1861
+ [
1862
+ 'label' => esc_html__( 'Color', 'embedpress' ),
1863
+ 'type' => \Elementor\Controls_Manager::COLOR,
1864
+ 'selectors' => [
1865
+ '{{WRAPPER}} .ep-nft-gallery-wrapper.ep-nft-gallery-r1a5mbx .ep_nft_button a' => 'color: {{VALUE}}',
1866
+ ],
1867
+ ]
1868
+ );
1869
+ $this->add_control(
1870
+ 'nftbutton_bg_color',
1871
+ [
1872
+ 'label' => esc_html__( 'Background Color', 'embedpress' ),
1873
+ 'type' => \Elementor\Controls_Manager::COLOR,
1874
+ 'selectors' => [
1875
+ '{{WRAPPER}} .ep-nft-gallery-wrapper.ep-nft-gallery-r1a5mbx .ep_nft_button a' => 'background-color: {{VALUE}}',
1876
+ ],
1877
+ ]
1878
+ );
1879
+ $this->add_group_control(
1880
+ \Elementor\Group_Control_Typography::get_type(),
1881
+ [
1882
+ 'name' => 'nftbutton_typography',
1883
+ 'selector' => '{{WRAPPER}} .ep-nft-gallery-wrapper.ep-nft-gallery-r1a5mbx .ep_nft_button a',
1884
+ ]
1885
+ );
1886
+
1887
+ $this->end_controls_section();
1888
+ }
1889
+ //End OpenSea controls
1890
+
1891
+
1892
 
1893
  public function init_style_controls()
1894
  {
1895
  $this->start_controls_section(
1896
  'embedpress_style_section',
1897
  [
1898
+ 'label' => __('General', 'embedpress'),
1899
  'tab' => Controls_Manager::TAB_STYLE,
1900
+ 'conditions' => [
1901
+ 'terms' => [
1902
+ [
1903
+ 'name' => 'embedpress_pro_embeded_source',
1904
+ 'operator' => '!==',
1905
+ 'value' => 'opensea',
1906
+ ],
1907
+ ],
1908
+ ]
1909
+
1910
  ]
1911
  );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1912
  $this->add_control(
1913
  'width',
1914
  [
1947
  ]
1948
  ]
1949
  );
 
1950
  $this->add_responsive_control(
1951
  'margin',
1952
  [
2013
  {
2014
  $_settings = [];
2015
  foreach ($settings as $key => $value) {
2016
+ if(empty($value)){
2017
+ $_settings[$key] = 'false';
2018
+ }else if (!empty($value['size'])) {
2019
  $_settings[$key] = $value['size'];
2020
  } else if (!empty($value['url'])) {
2021
  $_settings[$key] = $value['url'];
2029
 
2030
  protected function render()
2031
  {
2032
+
2033
  add_filter('embedpress_should_modify_spotify', '__return_false');
2034
  $settings = $this->get_settings_for_display();
2035
+
2036
  $is_editor_view = Plugin::$instance->editor->is_edit_mode();
2037
  $link = $settings['embedpress_embeded_link'];
2038
  $is_apple_podcast = (strpos($link, 'podcasts.apple.com') !== false);
2039
+ $_settings = [];
2040
+ $source = $settings['embedpress_pro_embeded_source'];
2041
+ if($source != 'default' && (!is_array($source) || !in_array('default', $source))){
2042
+ $_settings = $this->convert_settings($settings);
2043
+ }
2044
 
2045
  $embed_content = Shortcode::parseContent($settings['embedpress_embeded_link'], true, $_settings);
2046
  $embed_content = $this->onAfterEmbedSpotify($embed_content, $settings);
2073
  ?>
2074
  </div>
2075
 
 
 
 
 
2076
 
2077
+ <?php if($settings['embedpress_pro_embeded_source'] === 'youtube'): ?>
2078
+ <style>
2079
+ #ep-elements-id-<?php echo esc_html($this->get_id()); ?> .ep-youtube__content__block .youtube__content__body .content__wrap {
2080
+ grid-template-columns: repeat(auto-fit, minmax(<?php echo esc_html($calVal); ?>, 1fr))!important;
2081
+ }
2082
+
2083
+ #ep-elements-id-<?php echo esc_html($this->get_id()); ?> .ep-youtube__content__pagination {
2084
+ display: <?php echo esc_html($ispagination); ?>!important;
2085
+ }
2086
+ </style>
2087
+ <?php endif; ?>
2088
+
2089
  <?php
2090
  }
2091
  public function onAfterEmbedSpotify($embed, $setting)
EmbedPress/Elementor/Widgets/Embedpress_Pdf.php CHANGED
@@ -312,7 +312,7 @@ class Embedpress_Pdf extends Widget_Base
312
  ],
313
  ]
314
  );
315
-
316
  $this->add_control(
317
  'pdf_print_download',
318
  [
@@ -507,16 +507,16 @@ class Embedpress_Pdf extends Widget_Base
507
  bottom: -20px!important;
508
  transform: rotate(180deg);
509
  }
510
- #findbar:after {
511
  bottom: -19px!important;
512
  transform: rotate(180deg);
513
  }
514
  `;
515
-
516
  }
517
 
518
  style.textContent = `
519
-
520
  .toolbar{
521
  display: ${$toolbar}!important;
522
  position: absolute;
@@ -549,17 +549,17 @@ class Embedpress_Pdf extends Widget_Base
549
  ${$settingsPos}
550
  `;
551
  if (otherhead) {
552
- if(frm.getElementById("EBiframeStyleID")){
553
  frm.getElementById("EBiframeStyleID").remove();
554
  }
555
  otherhead.appendChild(style);
556
  clearInterval(setEmbedInterval);
557
  }
558
- if (x > 50) {
559
- clearInterval(setEmbedInterval);
560
- }
561
 
562
  });
 
 
 
563
  }
564
 
565
  }, 100);
312
  ],
313
  ]
314
  );
315
+
316
  $this->add_control(
317
  'pdf_print_download',
318
  [
507
  bottom: -20px!important;
508
  transform: rotate(180deg);
509
  }
510
+ #findbar:after {
511
  bottom: -19px!important;
512
  transform: rotate(180deg);
513
  }
514
  `;
515
+
516
  }
517
 
518
  style.textContent = `
519
+
520
  .toolbar{
521
  display: ${$toolbar}!important;
522
  position: absolute;
549
  ${$settingsPos}
550
  `;
551
  if (otherhead) {
552
+ if(frm.getElementById("EBiframeStyleID")){
553
  frm.getElementById("EBiframeStyleID").remove();
554
  }
555
  otherhead.appendChild(style);
556
  clearInterval(setEmbedInterval);
557
  }
 
 
 
558
 
559
  });
560
+ if (x > 50) {
561
+ clearInterval(setEmbedInterval);
562
+ }
563
  }
564
 
565
  }, 100);
EmbedPress/Ends/Back/Handler.php CHANGED
@@ -39,6 +39,7 @@ class Handler extends EndHandlerAbstract {
39
  wp_enqueue_script( "bootbox-bootstrap", EMBEDPRESS_URL_ASSETS . 'js/vendor/bootstrap/bootstrap.min.js',[ 'jquery' ], $this->pluginVersion, false );
40
  wp_enqueue_script( "bootbox", EMBEDPRESS_URL_ASSETS . 'js/vendor/bootbox.min.js', [ 'jquery', 'bootbox-bootstrap' ], $this->pluginVersion, true );
41
  wp_enqueue_script( $this->pluginName, EMBEDPRESS_URL_ASSETS . 'js/preview.js', [ 'jquery', 'bootbox' ],$this->pluginVersion, true );
 
42
 
43
  wp_localize_script( $this->pluginName, '$data', [
44
  'previewSettings' => [
@@ -203,6 +204,9 @@ class Handler extends EndHandlerAbstract {
203
  'youtube.com/user/*',
204
  'youtube.com/(\w+)[^?\/]*$',
205
 
 
 
 
206
  // Flickr (http://www.flickr.com/)
207
  'flickr.com/photos/*/*',
208
  'flic.kr/p/*',
@@ -458,6 +462,7 @@ class Handler extends EndHandlerAbstract {
458
  'geo-en.hlipp.de/*',
459
  'geograph.org.uk/*',
460
  'fortest.getshow.io/*',
 
461
  ];
462
  }
463
 
39
  wp_enqueue_script( "bootbox-bootstrap", EMBEDPRESS_URL_ASSETS . 'js/vendor/bootstrap/bootstrap.min.js',[ 'jquery' ], $this->pluginVersion, false );
40
  wp_enqueue_script( "bootbox", EMBEDPRESS_URL_ASSETS . 'js/vendor/bootbox.min.js', [ 'jquery', 'bootbox-bootstrap' ], $this->pluginVersion, true );
41
  wp_enqueue_script( $this->pluginName, EMBEDPRESS_URL_ASSETS . 'js/preview.js', [ 'jquery', 'bootbox' ],$this->pluginVersion, true );
42
+ wp_enqueue_style( $this->pluginName, EMBEDPRESS_URL_ASSETS . 'css/embedpress.css', $this->pluginVersion, true );
43
 
44
  wp_localize_script( $this->pluginName, '$data', [
45
  'previewSettings' => [
204
  'youtube.com/user/*',
205
  'youtube.com/(\w+)[^?\/]*$',
206
 
207
+ // opensea
208
+ 'opensea.io/collection/*',
209
+
210
  // Flickr (http://www.flickr.com/)
211
  'flickr.com/photos/*/*',
212
  'flic.kr/p/*',
462
  'geo-en.hlipp.de/*',
463
  'geograph.org.uk/*',
464
  'fortest.getshow.io/*',
465
+ 'opensea.io/assets/*',
466
  ];
467
  }
468
 
EmbedPress/Ends/Back/Settings/EmbedpressSettings.php CHANGED
@@ -174,7 +174,7 @@ class EmbedpressSettings {
174
  $nonce_field = wp_nonce_field('ep_settings_nonce', 'ep_settings_nonce', true, false);
175
  $ep_page = admin_url('admin.php?page='.$this->page_slug);
176
  $gen_menu_template_names = apply_filters('ep_general_menu_tmpl_names', ['general', 'shortcode',]);
177
- $platform_menu_template_names = apply_filters('ep_platform_menu_tmpl_names', [ 'youtube', 'vimeo', 'wistia', 'twitch','dailymotion', 'soundcloud' ,'spotify','google-calendar']);
178
  $brand_menu_template_names = apply_filters('ep_brand_menu_templates', ['custom-logo', 'branding',]);
179
  $pro_active = is_embedpress_pro_active();
180
  $coming_soon = "<span class='ep-coming-soon'>". esc_html__( '(Coming soon)', 'embedpress'). "</span>";
@@ -364,6 +364,21 @@ class EmbedpressSettings {
364
 
365
  }
366
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
367
 
368
  function get_pretty_json_string($array) {
369
  return str_replace(" ", " ", json_encode($array, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES));
174
  $nonce_field = wp_nonce_field('ep_settings_nonce', 'ep_settings_nonce', true, false);
175
  $ep_page = admin_url('admin.php?page='.$this->page_slug);
176
  $gen_menu_template_names = apply_filters('ep_general_menu_tmpl_names', ['general', 'shortcode',]);
177
+ $platform_menu_template_names = apply_filters('ep_platform_menu_tmpl_names', [ 'youtube', 'vimeo', 'wistia', 'twitch','dailymotion', 'soundcloud' ,'spotify','google-calendar','opensea']);
178
  $brand_menu_template_names = apply_filters('ep_brand_menu_templates', ['custom-logo', 'branding',]);
179
  $pro_active = is_embedpress_pro_active();
180
  $coming_soon = "<span class='ep-coming-soon'>". esc_html__( '(Coming soon)', 'embedpress'). "</span>";
364
 
365
  }
366
 
367
+ public function save_opensea_settings() {
368
+ $option_name = EMBEDPRESS_PLG_NAME.':opensea';
369
+ $settings = get_option( $option_name, []);
370
+ $settings['api_key'] = isset( $_POST['api_key']) ? sanitize_text_field( $_POST['api_key']) : 0;
371
+ $settings['limit'] = isset( $_POST['limit']) ? sanitize_text_field( $_POST['limit']) : 0;
372
+ $settings['orderby'] = isset( $_POST['orderby']) ? sanitize_text_field( $_POST['orderby']) : 0;
373
+
374
+ $settings['license_key'] = 1; // backward compatibility
375
+
376
+ // Pro will handle g_loading_animation settings and other
377
+ $settings = apply_filters( 'ep_opensea_settings_before_save', $settings);
378
+ update_option( $option_name, $settings);
379
+ do_action( 'ep_opensea_settings_after_save', $settings);
380
+ }
381
+
382
 
383
  function get_pretty_json_string($array) {
384
  return str_replace(" ", " ", json_encode($array, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES));
EmbedPress/Ends/Back/Settings/assets/css/fonts/DMSans-Regular.svg ADDED
@@ -0,0 +1,6242 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
4
+ <metadata>
5
+ Created by FontForge 20201107 at Tue Oct 15 17:58:10 2019
6
+ By Jimmy Wärting
7
+ Copyright 2014-2017 Indian Type Foundry (info@indiantypefoundry.com) with Reserved Font Name 'Poppins'. Copyright 2019 Google LLC.
8
+ </metadata>
9
+ <defs>
10
+ <font id="DMSans-Regular" horiz-adv-x="0" >
11
+ <font-face
12
+ font-family="DM Sans"
13
+ font-weight="400"
14
+ font-stretch="normal"
15
+ units-per-em="1000"
16
+ panose-1="0 0 0 0 0 0 0 0 0 0"
17
+ ascent="800"
18
+ descent="-200"
19
+ x-height="496"
20
+ cap-height="700"
21
+ bbox="-63 -260 1083 967"
22
+ underline-thickness="50"
23
+ underline-position="-125"
24
+ unicode-range="U+000D-FB02"
25
+ />
26
+ <missing-glyph horiz-adv-x="549"
27
+ d="M74 0v700h401v-700h-401zM144 57h261v586h-261v-586z" />
28
+ <glyph glyph-name="fi" unicode="fi" horiz-adv-x="567"
29
+ d="M96 0v425h-75v71h75v86q0 72 36 105t105 33h50v-72h-37q-38 0 -54 -15.5t-16 -52.5v-84h308v-496h-84v425h-224v-425h-84zM447 591q-24 0 -41 16.5t-17 41.5q0 24 17 40t41 16q25 0 41.5 -16t16.5 -40q0 -25 -16.5 -41.5t-41.5 -16.5z" />
30
+ <glyph glyph-name="fl" unicode="fl" horiz-adv-x="555"
31
+ d="M96 0v425h-75v71h75v86q0 72 36 105t105 33h50v-72h-37q-38 0 -54 -15.5t-16 -52.5v-84h122v-71h-122v-425h-84zM402 0v720h84v-720h-84z" />
32
+ <glyph glyph-name=".notdef" horiz-adv-x="549"
33
+ d="M74 0v700h401v-700h-401zM144 57h261v586h-261v-586z" />
34
+ <glyph glyph-name="A" unicode="A" horiz-adv-x="664"
35
+ d="M30 0l258 700h89l257 -700h-89l-64 180h-298l-65 -180h-88zM208 248h248l-124 346z" />
36
+ <glyph glyph-name="Aacute" unicode="&#xc1;" horiz-adv-x="664"
37
+ d="M30 0l258 700h89l257 -700h-89l-64 180h-298l-65 -180h-88zM208 248h248l-124 346zM288 741v63l210 127v-73z" />
38
+ <glyph glyph-name="Abreve" unicode="&#x102;" horiz-adv-x="664"
39
+ d="M30 0l258 700h89l257 -700h-89l-64 180h-298l-65 -180h-88zM208 248h248l-124 346zM333 757q-69 0 -104.5 37.5t-35.5 92.5v14h50q0 -37 21 -57.5t69 -20.5t69 20.5t21 57.5h51v-14q0 -55 -36.5 -92.5t-104.5 -37.5z" />
40
+ <glyph glyph-name="Acircumflex" unicode="&#xc2;" horiz-adv-x="664"
41
+ d="M30 0l258 700h89l257 -700h-89l-64 180h-298l-65 -180h-88zM208 248h248l-124 346zM196 755v66l137 81l137 -81v-66l-137 84z" />
42
+ <glyph glyph-name="Adieresis" unicode="&#xc4;" horiz-adv-x="664"
43
+ d="M30 0l258 700h89l257 -700h-89l-64 180h-298l-65 -180h-88zM208 248h248l-124 346zM414 775q-21 0 -35.5 14.5t-14.5 35.5q0 20 14.5 35t35.5 15t35 -15t14 -35q0 -21 -14 -35.5t-35 -14.5zM254 775q-21 0 -35.5 14.5t-14.5 35.5q0 20 14.5 35t35.5 15q20 0 35 -15
44
+ t15 -35q0 -21 -15 -35.5t-35 -14.5z" />
45
+ <glyph glyph-name="Agrave" unicode="&#xc0;" horiz-adv-x="664"
46
+ d="M30 0l258 700h89l257 -700h-89l-64 180h-298l-65 -180h-88zM208 248h248l-124 346zM377 741l-210 117v73l210 -127v-63z" />
47
+ <glyph glyph-name="Amacron" unicode="&#x100;" horiz-adv-x="664"
48
+ d="M30 0l258 700h89l257 -700h-89l-64 180h-298l-65 -180h-88zM208 248h248l-124 346zM159 796v63h347v-63h-347z" />
49
+ <glyph glyph-name="Aogonek" unicode="&#x104;" horiz-adv-x="668"
50
+ d="M30 0l258 700h89l257 -700l-57 -28q-37 -17 -50.5 -35t-13.5 -37q0 -23 16.5 -36t42.5 -13q31 0 67 15v-56q-18 -6 -37.5 -9.5t-38.5 -3.5q-46 0 -82 22t-36 73q0 33 21.5 62.5t74.5 56.5l-60 169h-298l-65 -180h-88zM208 248h248l-124 346z" />
51
+ <glyph glyph-name="Aring" unicode="&#xc5;" horiz-adv-x="664"
52
+ d="M30 0l258 700h89l257 -700h-89l-64 180h-298l-65 -180h-88zM208 248h248l-124 346zM333 761q-43 0 -74 27.5t-31 75.5t31 75.5t74 27.5q44 0 74.5 -27.5t30.5 -75.5t-30.5 -75.5t-74.5 -27.5zM333 804q24 0 40.5 16.5t16.5 43.5t-16.5 43t-40.5 16t-40.5 -16t-16.5 -43
53
+ t16.5 -43.5t40.5 -16.5z" />
54
+ <glyph glyph-name="Atilde" unicode="&#xc3;" horiz-adv-x="664"
55
+ d="M30 0l258 700h89l257 -700h-89l-64 180h-298l-65 -180h-88zM208 248h248l-124 346zM397 756q-27 0 -45 12t-33.5 23.5t-36.5 11.5q-36 0 -42 -45h-49q7 51 32 76t63 25q26 0 44 -12t33.5 -23.5t37.5 -11.5q16 0 28 11t15 34h49q-6 -49 -32 -75t-64 -26z" />
56
+ <glyph glyph-name="AE" unicode="&#xc6;" horiz-adv-x="911"
57
+ d="M30 0l399 700h425v-67h-289v-247h259v-66h-259v-253h289v-67h-373v159h-269l-90 -159h-92zM481 631l-231 -405h231v405z" />
58
+ <glyph glyph-name="AEacute" unicode="&#x1fc;" horiz-adv-x="911"
59
+ d="M30 0l399 700h425v-67h-289v-247h259v-66h-259v-253h289v-67h-373v159h-269l-90 -159h-92zM481 631l-231 -405h231v405zM521 741v63l210 127v-73z" />
60
+ <glyph glyph-name="B" unicode="B" horiz-adv-x="602"
61
+ d="M74 0v700h246q74 0 122.5 -23.5t72.5 -64t24 -90.5q0 -68 -36.5 -107t-87.5 -54q39 -7 71 -31t50.5 -60t18.5 -79q0 -53 -26 -96.5t-77 -69t-124 -25.5h-254zM158 394h156q67 0 103 31.5t36 87.5q0 53 -35.5 85t-106.5 32h-153v-236zM158 70h161q72 0 111 33.5t39 93.5
62
+ q0 59 -41 94.5t-111 35.5h-159v-257z" />
63
+ <glyph glyph-name="C" unicode="C" horiz-adv-x="720"
64
+ d="M381 -12q-103 0 -177.5 45.5t-115.5 127t-41 189.5q0 107 41 188.5t115.5 127.5t177.5 46q120 0 195.5 -57.5t96.5 -160.5h-93q-16 65 -65.5 104.5t-133.5 39.5q-75 0 -131 -34.5t-86.5 -99t-30.5 -154.5t30.5 -154.5t86.5 -99t131 -34.5q84 0 133.5 38.5t65.5 102.5h93
65
+ q-21 -101 -96.5 -158t-195.5 -57z" />
66
+ <glyph glyph-name="Cacute" unicode="&#x106;" horiz-adv-x="720"
67
+ d="M381 -12q-103 0 -177.5 45.5t-115.5 127t-41 189.5q0 107 41 188.5t115.5 127.5t177.5 46q120 0 195.5 -57.5t96.5 -160.5h-93q-16 65 -65.5 104.5t-133.5 39.5q-75 0 -131 -34.5t-86.5 -99t-30.5 -154.5t30.5 -154.5t86.5 -99t131 -34.5q84 0 133.5 38.5t65.5 102.5h93
68
+ q-21 -101 -96.5 -158t-195.5 -57zM337 741v63l210 127v-73z" />
69
+ <glyph glyph-name="Ccaron" unicode="&#x10c;" horiz-adv-x="720"
70
+ d="M381 -12q-103 0 -177.5 45.5t-115.5 127t-41 189.5q0 107 41 188.5t115.5 127.5t177.5 46q120 0 195.5 -57.5t96.5 -160.5h-93q-16 65 -65.5 104.5t-133.5 39.5q-75 0 -131 -34.5t-86.5 -99t-30.5 -154.5t30.5 -154.5t86.5 -99t131 -34.5q84 0 133.5 38.5t65.5 102.5h93
71
+ q-21 -101 -96.5 -158t-195.5 -57zM382 754l-137 82v65l137 -84l137 84v-65z" />
72
+ <glyph glyph-name="Ccedilla" unicode="&#xc7;" horiz-adv-x="720"
73
+ d="M381 -12q-103 0 -177.5 45.5t-115.5 127t-41 189.5q0 107 41 188.5t115.5 127.5t177.5 46q120 0 195.5 -57.5t96.5 -160.5h-93q-16 65 -65.5 104.5t-133.5 39.5q-75 0 -131 -34.5t-86.5 -99t-30.5 -154.5t30.5 -154.5t86.5 -99t131 -34.5q84 0 133.5 38.5t65.5 102.5h93
74
+ q-21 -101 -96.5 -158t-195.5 -57zM315 -260v53h92q68 0 68 48q0 45 -68 45h-49v120h56v-70q57 1 93 -23t36 -73q0 -47 -34 -73.5t-87 -26.5h-107z" />
75
+ <glyph glyph-name="Cdotaccent" unicode="&#x10a;" horiz-adv-x="720"
76
+ d="M381 -12q-103 0 -177.5 45.5t-115.5 127t-41 189.5q0 107 41 188.5t115.5 127.5t177.5 46q120 0 195.5 -57.5t96.5 -160.5h-93q-16 65 -65.5 104.5t-133.5 39.5q-75 0 -131 -34.5t-86.5 -99t-30.5 -154.5t30.5 -154.5t86.5 -99t131 -34.5q84 0 133.5 38.5t65.5 102.5h93
77
+ q-21 -101 -96.5 -158t-195.5 -57zM382 766q-21 0 -35.5 15t-14.5 35q0 21 14.5 35.5t35.5 14.5q20 0 35 -14.5t15 -35.5q0 -20 -15 -35t-35 -15z" />
78
+ <glyph glyph-name="D" unicode="D" horiz-adv-x="696"
79
+ d="M74 0v700h215q185 0 272.5 -94t87.5 -258q0 -161 -87.5 -254.5t-272.5 -93.5h-215zM158 70h129q102 0 162.5 33.5t86.5 96t26 148.5q0 88 -26 151t-86.5 97t-162.5 34h-129v-560z" />
80
+ <glyph glyph-name="Eth" unicode="&#xd0;" horiz-adv-x="717"
81
+ d="M95 0v311h-87v76h87v313h215q185 0 272.5 -94t87.5 -258q0 -161 -87.5 -254.5t-272.5 -93.5h-215zM179 70h130q101 0 161.5 33.5t87 96t26.5 148.5q0 88 -26.5 151t-87 97t-161.5 34h-130v-243h202v-76h-202v-241z" />
82
+ <glyph glyph-name="Dcaron" unicode="&#x10e;" horiz-adv-x="696"
83
+ d="M74 0v700h215q185 0 272.5 -94t87.5 -258q0 -161 -87.5 -254.5t-272.5 -93.5h-215zM158 70h129q102 0 162.5 33.5t86.5 96t26 148.5q0 88 -26 151t-86.5 97t-162.5 34h-129v-560zM286 754l-137 82v65l137 -84l137 84v-65z" />
84
+ <glyph glyph-name="Dcroat" unicode="&#x110;" horiz-adv-x="717"
85
+ d="M95 0v311h-87v76h87v313h215q185 0 272.5 -94t87.5 -258q0 -161 -87.5 -254.5t-272.5 -93.5h-215zM179 70h130q101 0 161.5 33.5t87 96t26.5 148.5q0 88 -26.5 151t-87 97t-161.5 34h-130v-243h202v-76h-202v-241z" />
86
+ <glyph glyph-name="E" unicode="E" horiz-adv-x="564"
87
+ d="M74 0v700h433v-69h-349v-244h319v-68h-319v-250h349v-69h-433z" />
88
+ <glyph glyph-name="Eacute" unicode="&#xc9;" horiz-adv-x="564"
89
+ d="M74 0v700h433v-69h-349v-244h319v-68h-319v-250h349v-69h-433zM251 741v63l210 127v-73z" />
90
+ <glyph glyph-name="Ebreve" unicode="&#x114;" horiz-adv-x="564"
91
+ d="M74 0v700h433v-69h-349v-244h319v-68h-319v-250h349v-69h-433zM295 757q-69 0 -104.5 37.5t-35.5 92.5v14h50q0 -37 21 -57.5t69 -20.5t69 20.5t21 57.5h51v-14q0 -55 -36.5 -92.5t-104.5 -37.5z" />
92
+ <glyph glyph-name="Ecaron" unicode="&#x11a;" horiz-adv-x="564"
93
+ d="M74 0v700h433v-69h-349v-244h319v-68h-319v-250h349v-69h-433zM295 754l-137 82v65l137 -84l137 84v-65z" />
94
+ <glyph glyph-name="Ecircumflex" unicode="&#xca;" horiz-adv-x="564"
95
+ d="M74 0v700h433v-69h-349v-244h319v-68h-319v-250h349v-69h-433zM158 755v66l137 81l137 -81v-66l-137 84z" />
96
+ <glyph glyph-name="Edieresis" unicode="&#xcb;" horiz-adv-x="564"
97
+ d="M74 0v700h433v-69h-349v-244h319v-68h-319v-250h349v-69h-433zM376 775q-21 0 -35.5 14.5t-14.5 35.5q0 20 14.5 35t35.5 15t35 -15t14 -35q0 -21 -14 -35.5t-35 -14.5zM216 775q-21 0 -35.5 14.5t-14.5 35.5q0 20 14.5 35t35.5 15q20 0 35 -15t15 -35q0 -21 -15 -35.5
98
+ t-35 -14.5z" />
99
+ <glyph glyph-name="Edotaccent" unicode="&#x116;" horiz-adv-x="564"
100
+ d="M74 0v700h433v-69h-349v-244h319v-68h-319v-250h349v-69h-433zM295 766q-21 0 -35.5 15t-14.5 35q0 21 14.5 35.5t35.5 14.5q20 0 35 -14.5t15 -35.5q0 -20 -15 -35t-35 -15z" />
101
+ <glyph glyph-name="Egrave" unicode="&#xc8;" horiz-adv-x="564"
102
+ d="M74 0v700h433v-69h-349v-244h319v-68h-319v-250h349v-69h-433zM340 741l-210 117v73l210 -127v-63z" />
103
+ <glyph glyph-name="Emacron" unicode="&#x112;" horiz-adv-x="564"
104
+ d="M74 0v700h433v-69h-349v-244h319v-68h-319v-250h349v-69h-433zM121 796v63h347v-63h-347z" />
105
+ <glyph glyph-name="Eogonek" unicode="&#x118;" horiz-adv-x="564"
106
+ d="M74 0v700h433v-69h-349v-244h319v-68h-319v-250h349v-69h-433zM435 -203q-30 0 -57 9.5t-44 30.5t-17 55q0 35 25.5 67t90.5 61l53 23l21 -43l-58 -28q-36 -18 -50 -35.5t-14 -36.5q0 -23 16.5 -36t43.5 -13q30 0 65 15v-56q-37 -13 -75 -13z" />
107
+ <glyph glyph-name="uni1EBC" unicode="&#x1ebc;" horiz-adv-x="564"
108
+ d="M74 0v700h433v-69h-349v-244h319v-68h-319v-250h349v-69h-433zM360 756q-27 0 -45 12t-33.5 23.5t-36.5 11.5q-36 0 -42 -45h-49q7 51 32 76t63 25q26 0 44 -12t33.5 -23.5t37.5 -11.5q16 0 28 11t15 34h49q-6 -49 -32 -75t-64 -26z" />
109
+ <glyph glyph-name="F" unicode="F" horiz-adv-x="534"
110
+ d="M74 0v700h426v-69h-342v-246h291v-68h-291v-317h-84z" />
111
+ <glyph glyph-name="G" unicode="G" horiz-adv-x="757"
112
+ d="M375 -12q-98 0 -172 45.5t-115 127t-41 188.5t41.5 189t118 128t180.5 46q118 0 196.5 -57t101.5 -157h-97q-14 63 -66.5 100t-134.5 37q-77 0 -134 -34.5t-88.5 -98.5t-31.5 -153t31 -153t86 -98.5t128 -34.5q112 0 169 65.5t65 179.5h-202v66h288v-374h-77l-7 115
113
+ q-38 -61 -93 -94t-146 -33z" />
114
+ <glyph glyph-name="Gbreve" unicode="&#x11e;" horiz-adv-x="757"
115
+ d="M375 -12q-98 0 -172 45.5t-115 127t-41 188.5t41.5 189t118 128t180.5 46q118 0 196.5 -57t101.5 -157h-97q-14 63 -66.5 100t-134.5 37q-77 0 -134 -34.5t-88.5 -98.5t-31.5 -153t31 -153t86 -98.5t128 -34.5q112 0 169 65.5t65 179.5h-202v66h288v-374h-77l-7 115
116
+ q-38 -61 -93 -94t-146 -33zM387 757q-69 0 -104.5 37.5t-35.5 92.5v14h50q0 -37 21 -57.5t69 -20.5t69 20.5t21 57.5h51v-14q0 -55 -36.5 -92.5t-104.5 -37.5z" />
117
+ <glyph glyph-name="uni0122" unicode="&#x122;" horiz-adv-x="757"
118
+ d="M375 -12q-98 0 -172 45.5t-115 127t-41 188.5t41.5 189t118 128t180.5 46q118 0 196.5 -57t101.5 -157h-97q-14 63 -66.5 100t-134.5 37q-77 0 -134 -34.5t-88.5 -98.5t-31.5 -153t31 -153t86 -98.5t128 -34.5q112 0 169 65.5t65 179.5h-202v66h288v-374h-77l-7 115
119
+ q-38 -61 -93 -94t-146 -33zM347 -238v40q46 0 46 57v14h-45v77h86q9 -41 9 -74q0 -60 -25 -87t-71 -27z" />
120
+ <glyph glyph-name="Gdotaccent" unicode="&#x120;" horiz-adv-x="757"
121
+ d="M375 -12q-98 0 -172 45.5t-115 127t-41 188.5t41.5 189t118 128t180.5 46q118 0 196.5 -57t101.5 -157h-97q-14 63 -66.5 100t-134.5 37q-77 0 -134 -34.5t-88.5 -98.5t-31.5 -153t31 -153t86 -98.5t128 -34.5q112 0 169 65.5t65 179.5h-202v66h288v-374h-77l-7 115
122
+ q-38 -61 -93 -94t-146 -33zM387 766q-21 0 -35.5 15t-14.5 35q0 21 14.5 35.5t35.5 14.5q20 0 35 -14.5t15 -35.5q0 -20 -15 -35t-35 -15z" />
123
+ <glyph glyph-name="H" unicode="H" horiz-adv-x="679"
124
+ d="M74 0v700h84v-309h363v309h84v-700h-84v322h-363v-322h-84z" />
125
+ <glyph glyph-name="I" unicode="I" horiz-adv-x="232"
126
+ d="M74 0v700h84v-700h-84z" />
127
+ <glyph glyph-name="Iacute" unicode="&#xcd;" horiz-adv-x="232"
128
+ d="M74 0v700h84v-700h-84zM71 741v63l210 127v-73z" />
129
+ <glyph glyph-name="Ibreve" unicode="&#x12c;" horiz-adv-x="232"
130
+ d="M74 0v700h84v-700h-84zM116 757q-69 0 -104.5 37.5t-35.5 92.5v14h50q0 -37 21 -57.5t69 -20.5t69 20.5t21 57.5h51v-14q0 -55 -36.5 -92.5t-104.5 -37.5z" />
131
+ <glyph glyph-name="Icircumflex" unicode="&#xce;" horiz-adv-x="232"
132
+ d="M74 0v700h84v-700h-84zM-21 755v66l137 81l137 -81v-66l-137 84z" />
133
+ <glyph glyph-name="Idieresis" unicode="&#xcf;" horiz-adv-x="232"
134
+ d="M74 0v700h84v-700h-84zM197 775q-21 0 -35.5 14.5t-14.5 35.5q0 20 14.5 35t35.5 15t35 -15t14 -35q0 -21 -14 -35.5t-35 -14.5zM37 775q-21 0 -35.5 14.5t-14.5 35.5q0 20 14.5 35t35.5 15q20 0 35 -15t15 -35q0 -21 -15 -35.5t-35 -14.5z" />
135
+ <glyph glyph-name="Idotaccent" unicode="&#x130;" horiz-adv-x="232"
136
+ d="M74 0v700h84v-700h-84zM116 766q-21 0 -35.5 15t-14.5 35q0 21 14.5 35.5t35.5 14.5q20 0 35 -14.5t15 -35.5q0 -20 -15 -35t-35 -15z" />
137
+ <glyph glyph-name="Igrave" unicode="&#xcc;" horiz-adv-x="232"
138
+ d="M74 0v700h84v-700h-84zM161 741l-210 117v73l210 -127v-63z" />
139
+ <glyph glyph-name="Imacron" unicode="&#x12a;" horiz-adv-x="232"
140
+ d="M74 0v700h84v-700h-84zM-58 796v63h347v-63h-347z" />
141
+ <glyph glyph-name="Iogonek" unicode="&#x12e;" horiz-adv-x="232"
142
+ d="M74 0v700h84v-700h-84zM86 -202q-30 0 -57 9.5t-44 30.5t-17 55q0 35 25.5 67t90.5 61l53 23l21 -43l-58 -28q-36 -18 -50 -35.5t-14 -36.5q0 -23 16.5 -36t43.5 -13q30 0 65 15v-56q-37 -13 -75 -13z" />
143
+ <glyph glyph-name="Itilde" unicode="&#x128;" horiz-adv-x="232"
144
+ d="M74 0v700h84v-700h-84zM181 756q-27 0 -45 12t-33.5 23.5t-36.5 11.5q-36 0 -42 -45h-49q7 51 32 76t63 25q26 0 44 -12t33.5 -23.5t37.5 -11.5q16 0 28 11t15 34h49q-6 -49 -32 -75t-64 -26z" />
145
+ <glyph glyph-name="J" unicode="J" horiz-adv-x="499"
146
+ d="M230 -12q-95 0 -149 53t-54 147h85q0 -53 26 -89t91 -36q63 0 87.5 35t24.5 87v515h84v-515q0 -93 -51.5 -145t-143.5 -52z" />
147
+ <glyph glyph-name="K" unicode="K" horiz-adv-x="582"
148
+ d="M74 0v700h84v-317l292 317h106l-260 -279l264 -421h-102l-222 356l-78 -83v-273h-84z" />
149
+ <glyph glyph-name="uni0136" unicode="&#x136;" horiz-adv-x="582"
150
+ d="M74 0v700h84v-317l292 317h106l-260 -279l264 -421h-102l-222 356l-78 -83v-273h-84zM247 -238v40q47 0 47 57v14h-46v77h86q10 -41 10 -74q0 -60 -25.5 -87t-71.5 -27z" />
151
+ <glyph glyph-name="L" unicode="L" horiz-adv-x="525"
152
+ d="M74 0v700h84v-633h326v-67h-410z" />
153
+ <glyph glyph-name="Lacute" unicode="&#x139;" horiz-adv-x="525"
154
+ d="M74 0v700h84v-633h326v-67h-410zM78 741v63l210 127v-73z" />
155
+ <glyph glyph-name="Lcaron" unicode="&#x13d;" horiz-adv-x="525"
156
+ d="M277 501v40q48 0 48 54v22h-49v83h88q11 -51 11 -90q0 -56 -25.5 -82.5t-72.5 -26.5zM74 0v700h84v-633h326v-67h-410z" />
157
+ <glyph glyph-name="uni013B" unicode="&#x13b;" horiz-adv-x="525"
158
+ d="M74 0v700h84v-633h326v-67h-410zM198 -238v40q47 0 47 57v14h-45v77h86q10 -40 10 -74q0 -60 -25.5 -87t-72.5 -27z" />
159
+ <glyph glyph-name="Ldot" unicode="&#x13f;" horiz-adv-x="525"
160
+ d="M74 0v700h84v-633h326v-67h-410zM357 293q-25 0 -41.5 16.5t-16.5 40.5q0 25 16.5 41t41.5 16q24 0 40.5 -16t16.5 -41q0 -24 -16.5 -40.5t-40.5 -16.5z" />
161
+ <glyph glyph-name="Lslash" unicode="&#x141;" horiz-adv-x="551"
162
+ d="M100 0v314l-80 -30v67l80 30v319h84v-287l122 46v-67l-122 -46v-279h326v-67h-410z" />
163
+ <glyph glyph-name="M" unicode="M" horiz-adv-x="847"
164
+ d="M74 0v700h98l252 -488l250 488h99v-700h-84v550l-234 -450h-63l-234 449v-549h-84z" />
165
+ <glyph glyph-name="N" unicode="N" horiz-adv-x="689"
166
+ d="M74 0v700h84l373 -561v561h84v-700h-84l-373 561v-561h-84z" />
167
+ <glyph glyph-name="Nacute" unicode="&#x143;" horiz-adv-x="689"
168
+ d="M74 0v700h84l373 -561v561h84v-700h-84l-373 561v-561h-84zM300 741v63l210 127v-73z" />
169
+ <glyph glyph-name="Ncaron" unicode="&#x147;" horiz-adv-x="689"
170
+ d="M74 0v700h84l373 -561v561h84v-700h-84l-373 561v-561h-84zM345 754l-137 82v65l137 -84l137 84v-65z" />
171
+ <glyph glyph-name="uni0145" unicode="&#x145;" horiz-adv-x="689"
172
+ d="M74 0v700h84l373 -561v561h84v-700h-84l-373 561v-561h-84zM304 -238v40q46 0 46 57v14h-45v77h85q11 -40 11 -74q0 -60 -25.5 -87t-71.5 -27z" />
173
+ <glyph glyph-name="Ntilde" unicode="&#xd1;" horiz-adv-x="689"
174
+ d="M74 0v700h84l373 -561v561h84v-700h-84l-373 561v-561h-84zM410 756q-27 0 -45 12t-33.5 23.5t-36.5 11.5q-36 0 -42 -45h-49q7 51 32 76t63 25q26 0 44 -12t33.5 -23.5t37.5 -11.5q16 0 28 11t15 34h49q-6 -49 -32 -75t-64 -26z" />
175
+ <glyph glyph-name="O" unicode="O" horiz-adv-x="784"
176
+ d="M392 -12q-103 0 -180.5 45.5t-121 127.5t-43.5 189t43.5 188.5t121 127.5t180.5 46q104 0 181.5 -46t120.5 -127.5t43 -188.5t-43 -189t-120.5 -127.5t-181.5 -45.5zM392 62q77 0 135.5 34.5t91 99t32.5 154.5t-32.5 154t-91 98.5t-135.5 34.5t-135.5 -34.5t-91 -98.5
177
+ t-32.5 -154t32.5 -154.5t91 -99t135.5 -34.5z" />
178
+ <glyph glyph-name="Oacute" unicode="&#xd3;" horiz-adv-x="784"
179
+ d="M392 -12q-103 0 -180.5 45.5t-121 127.5t-43.5 189t43.5 188.5t121 127.5t180.5 46q104 0 181.5 -46t120.5 -127.5t43 -188.5t-43 -189t-120.5 -127.5t-181.5 -45.5zM392 62q77 0 135.5 34.5t91 99t32.5 154.5t-32.5 154t-91 98.5t-135.5 34.5t-135.5 -34.5t-91 -98.5
180
+ t-32.5 -154t32.5 -154.5t91 -99t135.5 -34.5zM348 741v63l210 127v-73z" />
181
+ <glyph glyph-name="Obreve" unicode="&#x14e;" horiz-adv-x="784"
182
+ d="M392 -12q-103 0 -180.5 45.5t-121 127.5t-43.5 189t43.5 188.5t121 127.5t180.5 46q104 0 181.5 -46t120.5 -127.5t43 -188.5t-43 -189t-120.5 -127.5t-181.5 -45.5zM392 62q77 0 135.5 34.5t91 99t32.5 154.5t-32.5 154t-91 98.5t-135.5 34.5t-135.5 -34.5t-91 -98.5
183
+ t-32.5 -154t32.5 -154.5t91 -99t135.5 -34.5zM392 757q-69 0 -104.5 37.5t-35.5 92.5v14h50q0 -37 21 -57.5t69 -20.5t69 20.5t21 57.5h51v-14q0 -55 -36.5 -92.5t-104.5 -37.5z" />
184
+ <glyph glyph-name="Ocircumflex" unicode="&#xd4;" horiz-adv-x="784"
185
+ d="M392 -12q-103 0 -180.5 45.5t-121 127.5t-43.5 189t43.5 188.5t121 127.5t180.5 46q104 0 181.5 -46t120.5 -127.5t43 -188.5t-43 -189t-120.5 -127.5t-181.5 -45.5zM392 62q77 0 135.5 34.5t91 99t32.5 154.5t-32.5 154t-91 98.5t-135.5 34.5t-135.5 -34.5t-91 -98.5
186
+ t-32.5 -154t32.5 -154.5t91 -99t135.5 -34.5zM255 755v66l137 81l137 -81v-66l-137 84z" />
187
+ <glyph glyph-name="Odieresis" unicode="&#xd6;" horiz-adv-x="784"
188
+ d="M392 -12q-103 0 -180.5 45.5t-121 127.5t-43.5 189t43.5 188.5t121 127.5t180.5 46q104 0 181.5 -46t120.5 -127.5t43 -188.5t-43 -189t-120.5 -127.5t-181.5 -45.5zM392 62q77 0 135.5 34.5t91 99t32.5 154.5t-32.5 154t-91 98.5t-135.5 34.5t-135.5 -34.5t-91 -98.5
189
+ t-32.5 -154t32.5 -154.5t91 -99t135.5 -34.5zM473 775q-21 0 -35.5 14.5t-14.5 35.5q0 20 14.5 35t35.5 15t35 -15t14 -35q0 -21 -14 -35.5t-35 -14.5zM313 775q-21 0 -35.5 14.5t-14.5 35.5q0 20 14.5 35t35.5 15q20 0 35 -15t15 -35q0 -21 -15 -35.5t-35 -14.5z" />
190
+ <glyph glyph-name="Ograve" unicode="&#xd2;" horiz-adv-x="784"
191
+ d="M392 -12q-103 0 -180.5 45.5t-121 127.5t-43.5 189t43.5 188.5t121 127.5t180.5 46q104 0 181.5 -46t120.5 -127.5t43 -188.5t-43 -189t-120.5 -127.5t-181.5 -45.5zM392 62q77 0 135.5 34.5t91 99t32.5 154.5t-32.5 154t-91 98.5t-135.5 34.5t-135.5 -34.5t-91 -98.5
192
+ t-32.5 -154t32.5 -154.5t91 -99t135.5 -34.5zM437 741l-210 117v73l210 -127v-63z" />
193
+ <glyph glyph-name="Ohungarumlaut" unicode="&#x150;" horiz-adv-x="784"
194
+ d="M392 -12q-103 0 -180.5 45.5t-121 127.5t-43.5 189t43.5 188.5t121 127.5t180.5 46q104 0 181.5 -46t120.5 -127.5t43 -188.5t-43 -189t-120.5 -127.5t-181.5 -45.5zM392 62q77 0 135.5 34.5t91 99t32.5 154.5t-32.5 154t-91 98.5t-135.5 34.5t-135.5 -34.5t-91 -98.5
195
+ t-32.5 -154t32.5 -154.5t91 -99t135.5 -34.5zM428 753l72 149h73l-89 -149h-56zM282 753l66 149h73l-82 -149h-57z" />
196
+ <glyph glyph-name="Omacron" unicode="&#x14c;" horiz-adv-x="784"
197
+ d="M392 -12q-103 0 -180.5 45.5t-121 127.5t-43.5 189t43.5 188.5t121 127.5t180.5 46q104 0 181.5 -46t120.5 -127.5t43 -188.5t-43 -189t-120.5 -127.5t-181.5 -45.5zM392 62q77 0 135.5 34.5t91 99t32.5 154.5t-32.5 154t-91 98.5t-135.5 34.5t-135.5 -34.5t-91 -98.5
198
+ t-32.5 -154t32.5 -154.5t91 -99t135.5 -34.5zM218 796v63h347v-63h-347z" />
199
+ <glyph glyph-name="Oslash" unicode="&#xd8;" horiz-adv-x="786"
200
+ d="M39 0l91 102q-40 47 -61.5 110t-21.5 138q0 107 43.5 188.5t121 127.5t180.5 46q64 0 118.5 -18t96.5 -51l51 57h89l-92 -104q39 -47 60.5 -109.5t21.5 -136.5q0 -107 -43 -189t-120.5 -127.5t-181.5 -45.5q-63 0 -117 17.5t-96 50.5l-50 -56h-90zM133 350
201
+ q0 -57 13.5 -103.5t37.5 -82.5l371 420q-66 53 -163 53q-77 0 -135.5 -34.5t-91 -98.5t-32.5 -154zM392 62q77 0 135.5 34.5t91 99t32.5 154.5q0 56 -13 102.5t-37 81.5l-370 -419q65 -53 161 -53z" />
202
+ <glyph glyph-name="Otilde" unicode="&#xd5;" horiz-adv-x="784"
203
+ d="M392 -12q-103 0 -180.5 45.5t-121 127.5t-43.5 189t43.5 188.5t121 127.5t180.5 46q104 0 181.5 -46t120.5 -127.5t43 -188.5t-43 -189t-120.5 -127.5t-181.5 -45.5zM392 62q77 0 135.5 34.5t91 99t32.5 154.5t-32.5 154t-91 98.5t-135.5 34.5t-135.5 -34.5t-91 -98.5
204
+ t-32.5 -154t32.5 -154.5t91 -99t135.5 -34.5zM457 756q-27 0 -45 12t-33.5 23.5t-36.5 11.5q-36 0 -42 -45h-49q7 51 32 76t63 25q26 0 44 -12t33.5 -23.5t37.5 -11.5q16 0 28 11t15 34h49q-6 -49 -32 -75t-64 -26z" />
205
+ <glyph glyph-name="OE" unicode="&#x152;" horiz-adv-x="1118"
206
+ d="M393 -12q-74 0 -137 26t-109.5 74.5t-73 114.5t-26.5 147q0 80 26.5 146.5t73 114.5t109.5 74.5t137 26.5q82 0 151.5 -35t114.5 -102v125h402v-69h-318v-244h288v-68h-288v-250h318v-69h-402v124q-45 -66 -114.5 -101t-151.5 -35zM395 62q72 0 131.5 34.5t95 99
207
+ t35.5 154.5t-35.5 154t-95 98.5t-131.5 34.5t-131.5 -34.5t-95 -98.5t-35.5 -154t35.5 -154.5t95 -99t131.5 -34.5z" />
208
+ <glyph glyph-name="P" unicode="P" horiz-adv-x="579"
209
+ d="M74 0v700h230q82 0 135 -27t78.5 -73t25.5 -104q0 -57 -25 -103t-78 -73.5t-136 -27.5h-146v-292h-84zM158 363h144q84 0 119.5 35.5t35.5 97.5q0 63 -35.5 98.5t-119.5 35.5h-144v-267z" />
210
+ <glyph glyph-name="Thorn" unicode="&#xde;" horiz-adv-x="579"
211
+ d="M74 0v700h84v-146h146q82 0 135 -26.5t78.5 -73t25.5 -104.5q0 -57 -25 -103t-78 -73t-136 -27h-146v-147h-84zM158 217h144q84 0 119.5 36t35.5 97q0 64 -35.5 99t-119.5 35h-144v-267z" />
212
+ <glyph glyph-name="Q" unicode="Q" horiz-adv-x="789"
213
+ d="M392 -12q-103 0 -180.5 45.5t-121 127.5t-43.5 189t43.5 188.5t121 127.5t180.5 46q104 0 181.5 -46t120.5 -127.5t43 -188.5t-43 -188.5t-118 -126.5l177 -170h-109l-142 138q-51 -15 -110 -15zM392 62q77 0 135.5 34.5t91 99t32.5 154.5t-32.5 154t-91 98.5
214
+ t-135.5 34.5t-135.5 -34.5t-91 -98.5t-32.5 -154t32.5 -154.5t91 -99t135.5 -34.5z" />
215
+ <glyph glyph-name="R" unicode="R" horiz-adv-x="593"
216
+ d="M74 0v700h226q82 0 134 -27t77 -74t25 -104q0 -66 -35.5 -119t-110.5 -75l153 -301h-99l-142 289h-6h-138v-289h-84zM158 355h136q81 0 118 39t37 100q0 62 -36.5 98.5t-119.5 36.5h-135v-274z" />
217
+ <glyph glyph-name="Racute" unicode="&#x154;" horiz-adv-x="593"
218
+ d="M74 0v700h226q82 0 134 -27t77 -74t25 -104q0 -66 -35.5 -119t-110.5 -75l153 -301h-99l-142 289h-6h-138v-289h-84zM158 355h136q81 0 118 39t37 100q0 62 -36.5 98.5t-119.5 36.5h-135v-274zM224 741v63l210 127v-73z" />
219
+ <glyph glyph-name="Rcaron" unicode="&#x158;" horiz-adv-x="593"
220
+ d="M74 0v700h226q82 0 134 -27t77 -74t25 -104q0 -66 -35.5 -119t-110.5 -75l153 -301h-99l-142 289h-6h-138v-289h-84zM158 355h136q81 0 118 39t37 100q0 62 -36.5 98.5t-119.5 36.5h-135v-274zM268 754l-137 82v65l137 -84l137 84v-65z" />
221
+ <glyph glyph-name="uni0156" unicode="&#x156;" horiz-adv-x="593"
222
+ d="M74 0v700h226q82 0 134 -27t77 -74t25 -104q0 -66 -35.5 -119t-110.5 -75l153 -301h-99l-142 289h-6h-138v-289h-84zM158 355h136q81 0 118 39t37 100q0 62 -36.5 98.5t-119.5 36.5h-135v-274zM251 -238v40q46 0 46 57v14h-45v77h86q10 -41 10 -74q0 -60 -25.5 -87
223
+ t-71.5 -27z" />
224
+ <glyph glyph-name="S" unicode="S" horiz-adv-x="578"
225
+ d="M297 -12q-77 0 -134 28t-88 78t-31 116h88q0 -41 19 -75.5t55.5 -55t90.5 -20.5q71 0 110 34t39 85q0 42 -18 67.5t-48.5 41.5t-70 28t-82.5 27q-81 28 -120 69.5t-39 108.5q-1 56 26 99.5t76.5 68t117.5 24.5q67 0 116.5 -25t77 -69t28.5 -100h-88q0 29 -15 57.5
226
+ t-45.5 46.5t-76.5 18q-57 1 -93.5 -29t-36.5 -83q0 -45 25.5 -69t71.5 -39.5t106 -35.5q50 -18 90 -42t62.5 -62t22.5 -97q0 -50 -26 -94.5t-78.5 -72.5t-131.5 -28z" />
227
+ <glyph glyph-name="Sacute" unicode="&#x15a;" horiz-adv-x="578"
228
+ d="M297 -12q-77 0 -134 28t-88 78t-31 116h88q0 -41 19 -75.5t55.5 -55t90.5 -20.5q71 0 110 34t39 85q0 42 -18 67.5t-48.5 41.5t-70 28t-82.5 27q-81 28 -120 69.5t-39 108.5q-1 56 26 99.5t76.5 68t117.5 24.5q67 0 116.5 -25t77 -69t28.5 -100h-88q0 29 -15 57.5
229
+ t-45.5 46.5t-76.5 18q-57 1 -93.5 -29t-36.5 -83q0 -45 25.5 -69t71.5 -39.5t106 -35.5q50 -18 90 -42t62.5 -62t22.5 -97q0 -50 -26 -94.5t-78.5 -72.5t-131.5 -28zM242 741v63l210 127v-73z" />
230
+ <glyph glyph-name="Scaron" unicode="&#x160;" horiz-adv-x="578"
231
+ d="M297 -12q-77 0 -134 28t-88 78t-31 116h88q0 -41 19 -75.5t55.5 -55t90.5 -20.5q71 0 110 34t39 85q0 42 -18 67.5t-48.5 41.5t-70 28t-82.5 27q-81 28 -120 69.5t-39 108.5q-1 56 26 99.5t76.5 68t117.5 24.5q67 0 116.5 -25t77 -69t28.5 -100h-88q0 29 -15 57.5
232
+ t-45.5 46.5t-76.5 18q-57 1 -93.5 -29t-36.5 -83q0 -45 25.5 -69t71.5 -39.5t106 -35.5q50 -18 90 -42t62.5 -62t22.5 -97q0 -50 -26 -94.5t-78.5 -72.5t-131.5 -28zM287 754l-137 82v65l137 -84l137 84v-65z" />
233
+ <glyph glyph-name="Scedilla" unicode="&#x15e;" horiz-adv-x="578"
234
+ d="M297 -12q-77 0 -134 28t-88 78t-31 116h88q0 -41 19 -75.5t55.5 -55t90.5 -20.5q71 0 110 34t39 85q0 42 -18 67.5t-48.5 41.5t-70 28t-82.5 27q-81 28 -120 69.5t-39 108.5q-1 56 26 99.5t76.5 68t117.5 24.5q67 0 116.5 -25t77 -69t28.5 -100h-88q0 29 -15 57.5
235
+ t-45.5 46.5t-76.5 18q-57 1 -93.5 -29t-36.5 -83q0 -45 25.5 -69t71.5 -39.5t106 -35.5q50 -18 90 -42t62.5 -62t22.5 -97q0 -50 -26 -94.5t-78.5 -72.5t-131.5 -28zM228 -260v53h92q68 0 68 48q0 45 -68 45h-49v120h56v-70q57 1 93 -23t36 -73q0 -47 -34 -73.5t-87 -26.5
236
+ h-107z" />
237
+ <glyph glyph-name="uni0218" unicode="&#x218;" horiz-adv-x="578"
238
+ d="M297 -12q-77 0 -134 28t-88 78t-31 116h88q0 -41 19 -75.5t55.5 -55t90.5 -20.5q71 0 110 34t39 85q0 42 -18 67.5t-48.5 41.5t-70 28t-82.5 27q-81 28 -120 69.5t-39 108.5q-1 56 26 99.5t76.5 68t117.5 24.5q67 0 116.5 -25t77 -69t28.5 -100h-88q0 29 -15 57.5
239
+ t-45.5 46.5t-76.5 18q-57 1 -93.5 -29t-36.5 -83q0 -45 25.5 -69t71.5 -39.5t106 -35.5q50 -18 90 -42t62.5 -62t22.5 -97q0 -50 -26 -94.5t-78.5 -72.5t-131.5 -28zM255 -238v40q48 0 48 57v14h-46v77h86q10 -41 10 -74q0 -60 -25.5 -87t-72.5 -27z" />
240
+ <glyph glyph-name="uni018F" unicode="&#x18f;" horiz-adv-x="755"
241
+ d="M372 -12q-95 0 -168.5 39t-115 112t-41.5 177q0 27 3 59h568q-3 82 -35 140t-86 89.5t-122 31.5q-81 0 -143 -41.5t-85 -115.5h-95q21 70 66.5 122.5t111 81.5t145.5 29q99 0 174 -46t117 -128t42 -192q0 -107 -42 -187.5t-117.5 -125.5t-176.5 -45zM372 64
242
+ q67 0 121.5 28t87.5 81.5t37 129.5h-483q-1 -72 28 -126t83 -83.5t126 -29.5z" />
243
+ <glyph glyph-name="T" unicode="T" horiz-adv-x="560"
244
+ d="M238 0v631h-209v69h502v-69h-209v-631h-84z" />
245
+ <glyph glyph-name="Tcaron" unicode="&#x164;" horiz-adv-x="560"
246
+ d="M238 0v631h-209v69h502v-69h-209v-631h-84zM280 754l-137 82v65l137 -84l137 84v-65z" />
247
+ <glyph glyph-name="uni0162" unicode="&#x162;" horiz-adv-x="560"
248
+ d="M238 0v631h-209v69h502v-69h-209v-631h-84zM211 -260v53h92q68 0 68 48q0 45 -68 45h-49v120h56v-70q57 1 93 -23t36 -73q0 -47 -34 -73.5t-86 -26.5h-108z" />
249
+ <glyph glyph-name="uni021A" unicode="&#x21a;" horiz-adv-x="560"
250
+ d="M238 0v631h-209v69h502v-69h-209v-631h-84zM232 -238v40q47 0 47 57v14h-46v77h87q9 -42 9 -74q0 -60 -25.5 -87t-71.5 -27z" />
251
+ <glyph glyph-name="U" unicode="U" horiz-adv-x="656"
252
+ d="M327 -12q-72 0 -130.5 28.5t-93.5 88.5t-35 153v442h84v-443q0 -102 49 -148t128 -46t127 46t48 148v443h84v-442q0 -93 -35 -153t-94 -88.5t-132 -28.5z" />
253
+ <glyph glyph-name="Uacute" unicode="&#xda;" horiz-adv-x="656"
254
+ d="M327 -12q-72 0 -130.5 28.5t-93.5 88.5t-35 153v442h84v-443q0 -102 49 -148t128 -46t127 46t48 148v443h84v-442q0 -93 -35 -153t-94 -88.5t-132 -28.5zM282 741v63l210 127v-73z" />
255
+ <glyph glyph-name="Ubreve" unicode="&#x16c;" horiz-adv-x="656"
256
+ d="M327 -12q-72 0 -130.5 28.5t-93.5 88.5t-35 153v442h84v-443q0 -102 49 -148t128 -46t127 46t48 148v443h84v-442q0 -93 -35 -153t-94 -88.5t-132 -28.5zM327 757q-69 0 -104.5 37.5t-35.5 92.5v14h50q0 -37 21 -57.5t69 -20.5t69 20.5t21 57.5h51v-14q0 -55 -36.5 -92.5
257
+ t-104.5 -37.5z" />
258
+ <glyph glyph-name="Ucircumflex" unicode="&#xdb;" horiz-adv-x="656"
259
+ d="M327 -12q-72 0 -130.5 28.5t-93.5 88.5t-35 153v442h84v-443q0 -102 49 -148t128 -46t127 46t48 148v443h84v-442q0 -93 -35 -153t-94 -88.5t-132 -28.5zM190 755v66l137 81l137 -81v-66l-137 84z" />
260
+ <glyph glyph-name="Udieresis" unicode="&#xdc;" horiz-adv-x="656"
261
+ d="M327 -12q-72 0 -130.5 28.5t-93.5 88.5t-35 153v442h84v-443q0 -102 49 -148t128 -46t127 46t48 148v443h84v-442q0 -93 -35 -153t-94 -88.5t-132 -28.5zM408 775q-21 0 -35.5 14.5t-14.5 35.5q0 20 14.5 35t35.5 15t35 -15t14 -35q0 -21 -14 -35.5t-35 -14.5zM248 775
262
+ q-21 0 -35.5 14.5t-14.5 35.5q0 20 14.5 35t35.5 15q20 0 35 -15t15 -35q0 -21 -15 -35.5t-35 -14.5z" />
263
+ <glyph glyph-name="Ugrave" unicode="&#xd9;" horiz-adv-x="656"
264
+ d="M327 -12q-72 0 -130.5 28.5t-93.5 88.5t-35 153v442h84v-443q0 -102 49 -148t128 -46t127 46t48 148v443h84v-442q0 -93 -35 -153t-94 -88.5t-132 -28.5zM372 741l-210 117v73l210 -127v-63z" />
265
+ <glyph glyph-name="Uhungarumlaut" unicode="&#x170;" horiz-adv-x="656"
266
+ d="M327 -12q-72 0 -130.5 28.5t-93.5 88.5t-35 153v442h84v-443q0 -102 49 -148t128 -46t127 46t48 148v443h84v-442q0 -93 -35 -153t-94 -88.5t-132 -28.5zM363 753l72 149h73l-89 -149h-56zM217 753l66 149h73l-82 -149h-57z" />
267
+ <glyph glyph-name="Umacron" unicode="&#x16a;" horiz-adv-x="656"
268
+ d="M327 -12q-72 0 -130.5 28.5t-93.5 88.5t-35 153v442h84v-443q0 -102 49 -148t128 -46t127 46t48 148v443h84v-442q0 -93 -35 -153t-94 -88.5t-132 -28.5zM153 796v63h347v-63h-347z" />
269
+ <glyph glyph-name="Uogonek" unicode="&#x172;" horiz-adv-x="656"
270
+ d="M327 -12q-72 0 -130.5 28.5t-93.5 88.5t-35 153v442h84v-443q0 -102 49 -148t128 -46t127 46t48 148v443h84v-442q0 -93 -35 -153t-94 -88.5t-132 -28.5zM326 -203q-31 0 -57.5 9.5t-43.5 30.5t-17 55q0 35 25.5 67t90.5 61l52 23l22 -43l-58 -28q-36 -18 -50 -35.5
271
+ t-14 -36.5q0 -23 16.5 -36t43.5 -13q30 0 65 15v-56q-37 -13 -75 -13z" />
272
+ <glyph glyph-name="Uring" unicode="&#x16e;" horiz-adv-x="656"
273
+ d="M327 -12q-72 0 -130.5 28.5t-93.5 88.5t-35 153v442h84v-443q0 -102 49 -148t128 -46t127 46t48 148v443h84v-442q0 -93 -35 -153t-94 -88.5t-132 -28.5zM327 761q-43 0 -74 27.5t-31 75.5t31 75.5t74 27.5q44 0 74.5 -27.5t30.5 -75.5t-30.5 -75.5t-74.5 -27.5zM327 804
274
+ q24 0 40.5 16.5t16.5 43.5t-16.5 43t-40.5 16t-40.5 -16t-16.5 -43t16.5 -43.5t40.5 -16.5z" />
275
+ <glyph glyph-name="Utilde" unicode="&#x168;" horiz-adv-x="656"
276
+ d="M327 -12q-72 0 -130.5 28.5t-93.5 88.5t-35 153v442h84v-443q0 -102 49 -148t128 -46t127 46t48 148v443h84v-442q0 -93 -35 -153t-94 -88.5t-132 -28.5zM392 756q-27 0 -45 12t-33.5 23.5t-36.5 11.5q-36 0 -42 -45h-49q7 51 32 76t63 25q26 0 44 -12t33.5 -23.5
277
+ t37.5 -11.5q16 0 28 11t15 34h49q-6 -49 -32 -75t-64 -26z" />
278
+ <glyph glyph-name="V" unicode="V" horiz-adv-x="668"
279
+ d="M285 0l-263 700h91l221 -611l223 611h89l-263 -700h-98z" />
280
+ <glyph glyph-name="W" unicode="W" horiz-adv-x="967"
281
+ d="M218 -1l-192 701h90l151 -601l172 601h93l167 -601l153 601h90l-196 -700h-96l-167 578l-171 -578z" />
282
+ <glyph glyph-name="Wacute" unicode="&#x1e82;" horiz-adv-x="967"
283
+ d="M218 -1l-192 701h90l151 -601l172 601h93l167 -601l153 601h90l-196 -700h-96l-167 578l-171 -578zM440 741v63l210 127v-73z" />
284
+ <glyph glyph-name="Wcircumflex" unicode="&#x174;" horiz-adv-x="967"
285
+ d="M218 -1l-192 701h90l151 -601l172 601h93l167 -601l153 601h90l-196 -700h-96l-167 578l-171 -578zM348 755v66l137 81l137 -81v-66l-137 84z" />
286
+ <glyph glyph-name="Wdieresis" unicode="&#x1e84;" horiz-adv-x="967"
287
+ d="M218 -1l-192 701h90l151 -601l172 601h93l167 -601l153 601h90l-196 -700h-96l-167 578l-171 -578zM565 775q-21 0 -35.5 14.5t-14.5 35.5q0 20 14.5 35t35.5 15t35 -15t14 -35q0 -21 -14 -35.5t-35 -14.5zM405 775q-21 0 -35.5 14.5t-14.5 35.5q0 20 14.5 35t35.5 15
288
+ q20 0 35 -15t15 -35q0 -21 -15 -35.5t-35 -14.5z" />
289
+ <glyph glyph-name="Wgrave" unicode="&#x1e80;" horiz-adv-x="967"
290
+ d="M218 -1l-192 701h90l151 -601l172 601h93l167 -601l153 601h90l-196 -700h-96l-167 578l-171 -578zM529 741l-210 117v73l210 -127v-63z" />
291
+ <glyph glyph-name="X" unicode="X" horiz-adv-x="602"
292
+ d="M38 0l214 353l-214 347h95l172 -280l164 280h94l-214 -351l215 -349h-95l-173 281l-163 -281h-95z" />
293
+ <glyph glyph-name="Y" unicode="Y" horiz-adv-x="579"
294
+ d="M248 0v266l-228 434h95l175 -354l175 354h94l-227 -434v-266h-84z" />
295
+ <glyph glyph-name="Yacute" unicode="&#xdd;" horiz-adv-x="579"
296
+ d="M248 0v266l-228 434h95l175 -354l175 354h94l-227 -434v-266h-84zM246 741v63l210 127v-73z" />
297
+ <glyph glyph-name="Ycircumflex" unicode="&#x176;" horiz-adv-x="579"
298
+ d="M248 0v266l-228 434h95l175 -354l175 354h94l-227 -434v-266h-84zM153 755v66l137 81l137 -81v-66l-137 84z" />
299
+ <glyph glyph-name="Ydieresis" unicode="&#x178;" horiz-adv-x="579"
300
+ d="M248 0v266l-228 434h95l175 -354l175 354h94l-227 -434v-266h-84zM371 775q-21 0 -35.5 14.5t-14.5 35.5q0 20 14.5 35t35.5 15t35 -15t14 -35q0 -21 -14 -35.5t-35 -14.5zM211 775q-21 0 -35.5 14.5t-14.5 35.5q0 20 14.5 35t35.5 15q20 0 35 -15t15 -35
301
+ q0 -21 -15 -35.5t-35 -14.5z" />
302
+ <glyph glyph-name="Ygrave" unicode="&#x1ef2;" horiz-adv-x="579"
303
+ d="M248 0v266l-228 434h95l175 -354l175 354h94l-227 -434v-266h-84zM335 741l-210 117v73l210 -127v-63z" />
304
+ <glyph glyph-name="uni1EF8" unicode="&#x1ef8;" horiz-adv-x="579"
305
+ d="M248 0v266l-228 434h95l175 -354l175 354h94l-227 -434v-266h-84zM355 756q-27 0 -45 12t-33.5 23.5t-36.5 11.5q-36 0 -42 -45h-49q7 51 32 76t63 25q26 0 44 -12t33.5 -23.5t37.5 -11.5q16 0 28 11t15 34h49q-6 -49 -32 -75t-64 -26z" />
306
+ <glyph glyph-name="Z" unicode="Z" horiz-adv-x="535"
307
+ d="M44 0v66l345 561h-340v73h438v-66l-346 -561h350v-73h-447z" />
308
+ <glyph glyph-name="Zacute" unicode="&#x179;" horiz-adv-x="535"
309
+ d="M44 0v66l345 561h-340v73h438v-66l-346 -561h350v-73h-447zM223 741v63l210 127v-73z" />
310
+ <glyph glyph-name="Zcaron" unicode="&#x17d;" horiz-adv-x="535"
311
+ d="M44 0v66l345 561h-340v73h438v-66l-346 -561h350v-73h-447zM268 754l-137 82v65l137 -84l137 84v-65z" />
312
+ <glyph glyph-name="Zdotaccent" unicode="&#x17b;" horiz-adv-x="535"
313
+ d="M44 0v66l345 561h-340v73h438v-66l-346 -561h350v-73h-447zM268 766q-21 0 -35.5 15t-14.5 35q0 21 14.5 35.5t35.5 14.5q20 0 35 -14.5t15 -35.5q0 -20 -15 -35t-35 -15z" />
314
+ <glyph glyph-name="a" unicode="a" horiz-adv-x="541"
315
+ d="M234 -12q-62 0 -103 21t-61 56t-20 76q0 76 58 117t158 41h134v6q0 65 -34 98.5t-91 33.5q-49 0 -84.5 -24.5t-44.5 -71.5h-86q5 54 36.5 91t78.5 56.5t100 19.5q104 0 156.5 -55.5t52.5 -147.5v-305h-75l-5 89q-21 -42 -61.5 -71.5t-108.5 -29.5zM247 59q48 0 82.5 25
316
+ t52.5 65t18 84v1h-127q-74 0 -104.5 -25.5t-30.5 -63.5q0 -39 28.5 -62.5t80.5 -23.5z" />
317
+ <glyph glyph-name="aacute" unicode="&#xe1;" horiz-adv-x="541"
318
+ d="M234 -12q-62 0 -103 21t-61 56t-20 76q0 76 58 117t158 41h134v6q0 65 -34 98.5t-91 33.5q-49 0 -84.5 -24.5t-44.5 -71.5h-86q5 54 36.5 91t78.5 56.5t100 19.5q104 0 156.5 -55.5t52.5 -147.5v-305h-75l-5 89q-21 -42 -61.5 -71.5t-108.5 -29.5zM247 59q48 0 82.5 25
319
+ t52.5 65t18 84v1h-127q-74 0 -104.5 -25.5t-30.5 -63.5q0 -39 28.5 -62.5t80.5 -23.5zM249 537v63l210 127v-73z" />
320
+ <glyph glyph-name="abreve" unicode="&#x103;" horiz-adv-x="541"
321
+ d="M234 -12q-62 0 -103 21t-61 56t-20 76q0 76 58 117t158 41h134v6q0 65 -34 98.5t-91 33.5q-49 0 -84.5 -24.5t-44.5 -71.5h-86q5 54 36.5 91t78.5 56.5t100 19.5q104 0 156.5 -55.5t52.5 -147.5v-305h-75l-5 89q-21 -42 -61.5 -71.5t-108.5 -29.5zM247 59q48 0 82.5 25
322
+ t52.5 65t18 84v1h-127q-74 0 -104.5 -25.5t-30.5 -63.5q0 -39 28.5 -62.5t80.5 -23.5zM272 553q-69 0 -104.5 37.5t-35.5 92.5v14h50q0 -37 21 -57.5t69 -20.5t69 20.5t21 57.5h51v-14q0 -55 -36.5 -92.5t-104.5 -37.5z" />
323
+ <glyph glyph-name="acircumflex" unicode="&#xe2;" horiz-adv-x="541"
324
+ d="M234 -12q-62 0 -103 21t-61 56t-20 76q0 76 58 117t158 41h134v6q0 65 -34 98.5t-91 33.5q-49 0 -84.5 -24.5t-44.5 -71.5h-86q5 54 36.5 91t78.5 56.5t100 19.5q104 0 156.5 -55.5t52.5 -147.5v-305h-75l-5 89q-21 -42 -61.5 -71.5t-108.5 -29.5zM247 59q48 0 82.5 25
325
+ t52.5 65t18 84v1h-127q-74 0 -104.5 -25.5t-30.5 -63.5q0 -39 28.5 -62.5t80.5 -23.5zM135 551v66l137 81l137 -81v-66l-137 84z" />
326
+ <glyph glyph-name="adieresis" unicode="&#xe4;" horiz-adv-x="541"
327
+ d="M234 -12q-62 0 -103 21t-61 56t-20 76q0 76 58 117t158 41h134v6q0 65 -34 98.5t-91 33.5q-49 0 -84.5 -24.5t-44.5 -71.5h-86q5 54 36.5 91t78.5 56.5t100 19.5q104 0 156.5 -55.5t52.5 -147.5v-305h-75l-5 89q-21 -42 -61.5 -71.5t-108.5 -29.5zM247 59q48 0 82.5 25
328
+ t52.5 65t18 84v1h-127q-74 0 -104.5 -25.5t-30.5 -63.5q0 -39 28.5 -62.5t80.5 -23.5zM353 571q-21 0 -35.5 14.5t-14.5 35.5q0 20 14.5 35t35.5 15q20 0 34.5 -15t14.5 -35q0 -21 -14.5 -35.5t-34.5 -14.5zM192 571q-21 0 -35 14.5t-14 35.5q0 20 14 35t35 15t35.5 -15
329
+ t14.5 -35q0 -21 -14.5 -35.5t-35.5 -14.5z" />
330
+ <glyph glyph-name="agrave" unicode="&#xe0;" horiz-adv-x="541"
331
+ d="M234 -12q-62 0 -103 21t-61 56t-20 76q0 76 58 117t158 41h134v6q0 65 -34 98.5t-91 33.5q-49 0 -84.5 -24.5t-44.5 -71.5h-86q5 54 36.5 91t78.5 56.5t100 19.5q104 0 156.5 -55.5t52.5 -147.5v-305h-75l-5 89q-21 -42 -61.5 -71.5t-108.5 -29.5zM247 59q48 0 82.5 25
332
+ t52.5 65t18 84v1h-127q-74 0 -104.5 -25.5t-30.5 -63.5q0 -39 28.5 -62.5t80.5 -23.5zM316 537l-210 117v73l210 -127v-63z" />
333
+ <glyph glyph-name="amacron" unicode="&#x101;" horiz-adv-x="541"
334
+ d="M234 -12q-62 0 -103 21t-61 56t-20 76q0 76 58 117t158 41h134v6q0 65 -34 98.5t-91 33.5q-49 0 -84.5 -24.5t-44.5 -71.5h-86q5 54 36.5 91t78.5 56.5t100 19.5q104 0 156.5 -55.5t52.5 -147.5v-305h-75l-5 89q-21 -42 -61.5 -71.5t-108.5 -29.5zM247 59q48 0 82.5 25
335
+ t52.5 65t18 84v1h-127q-74 0 -104.5 -25.5t-30.5 -63.5q0 -39 28.5 -62.5t80.5 -23.5zM97 592v63h348v-63h-348z" />
336
+ <glyph glyph-name="aogonek" unicode="&#x105;" horiz-adv-x="541"
337
+ d="M234 -12q-62 0 -103 21t-61 56t-20 76q0 76 58 117t158 41h134v6q0 65 -34 98.5t-91 33.5q-49 0 -84.5 -24.5t-44.5 -71.5h-86q5 54 36.5 91t78.5 56.5t100 19.5q104 0 156.5 -55.5t52.5 -147.5v-305h-75l-5 89q-21 -42 -61.5 -71.5t-108.5 -29.5zM247 59q48 0 82.5 25
338
+ t52.5 65t18 84v1h-127q-74 0 -104.5 -25.5t-30.5 -63.5q0 -39 28.5 -62.5t80.5 -23.5zM412 -203q-31 0 -57.5 9.5t-43.5 30.5t-17 55q0 35 25.5 67t90.5 61l52 23l22 -43l-58 -28q-36 -18 -50 -35.5t-14 -36.5q0 -23 16.5 -36t43.5 -13q30 0 65 15v-56q-37 -13 -75 -13z" />
339
+ <glyph glyph-name="aring" unicode="&#xe5;" horiz-adv-x="541"
340
+ d="M234 -12q-62 0 -103 21t-61 56t-20 76q0 76 58 117t158 41h134v6q0 65 -34 98.5t-91 33.5q-49 0 -84.5 -24.5t-44.5 -71.5h-86q5 54 36.5 91t78.5 56.5t100 19.5q104 0 156.5 -55.5t52.5 -147.5v-305h-75l-5 89q-21 -42 -61.5 -71.5t-108.5 -29.5zM247 59q48 0 82.5 25
341
+ t52.5 65t18 84v1h-127q-74 0 -104.5 -25.5t-30.5 -63.5q0 -39 28.5 -62.5t80.5 -23.5zM272 557q-43 0 -74 27.5t-31 75.5t31 75.5t74 27.5q44 0 74.5 -27.5t30.5 -75.5t-30.5 -75.5t-74.5 -27.5zM272 600q24 0 40.5 16.5t16.5 43.5t-16.5 43t-40.5 16q-23 0 -40 -16t-17 -43
342
+ t17 -43.5t40 -16.5z" />
343
+ <glyph glyph-name="atilde" unicode="&#xe3;" horiz-adv-x="541"
344
+ d="M234 -12q-62 0 -103 21t-61 56t-20 76q0 76 58 117t158 41h134v6q0 65 -34 98.5t-91 33.5q-49 0 -84.5 -24.5t-44.5 -71.5h-86q5 54 36.5 91t78.5 56.5t100 19.5q104 0 156.5 -55.5t52.5 -147.5v-305h-75l-5 89q-21 -42 -61.5 -71.5t-108.5 -29.5zM247 59q48 0 82.5 25
345
+ t52.5 65t18 84v1h-127q-74 0 -104.5 -25.5t-30.5 -63.5q0 -39 28.5 -62.5t80.5 -23.5zM326 552q-27 0 -44.5 12t-33.5 23.5t-36 11.5q-37 0 -43 -45h-49q7 51 32.5 76t62.5 25q27 0 44.5 -12t33.5 -23.5t37 -11.5q17 0 29 11t15 34h48q-5 -49 -31.5 -75t-64.5 -26z" />
346
+ <glyph glyph-name="ae" unicode="&#xe6;" horiz-adv-x="913"
347
+ d="M237 -12q-63 0 -104.5 21t-62 56t-20.5 76q0 76 57.5 116t153.5 40h138v8q0 65 -34.5 98.5t-87.5 33.5q-45 0 -79.5 -24.5t-42.5 -71.5h-87q6 54 37 91t76.5 56.5t95.5 19.5q63 0 108.5 -24t69.5 -67q32 44 80.5 67.5t106.5 23.5q70 0 121.5 -32t79.5 -84.5t28 -113.5
348
+ q0 -10 -0.5 -21t-1.5 -25h-385q2 -58 25 -96.5t58.5 -57.5t72.5 -19q56 0 91 28t51 76h81q-18 -75 -76 -125t-146 -50q-66 0 -120 31.5t-85 86.5q-29 -50 -78.5 -84t-120.5 -34zM485 297h303q-4 66 -46 103t-100 37t-103.5 -36t-53.5 -104zM243 59q42 0 75.5 22t54.5 56.5
349
+ t25 74.5v20h-129q-71 0 -101 -24t-30 -62q0 -39 28 -63t77 -24z" />
350
+ <glyph glyph-name="aeacute" unicode="&#x1fd;" horiz-adv-x="913"
351
+ d="M237 -12q-63 0 -104.5 21t-62 56t-20.5 76q0 76 57.5 116t153.5 40h138v8q0 65 -34.5 98.5t-87.5 33.5q-45 0 -79.5 -24.5t-42.5 -71.5h-87q6 54 37 91t76.5 56.5t95.5 19.5q63 0 108.5 -24t69.5 -67q32 44 80.5 67.5t106.5 23.5q70 0 121.5 -32t79.5 -84.5t28 -113.5
352
+ q0 -10 -0.5 -21t-1.5 -25h-385q2 -58 25 -96.5t58.5 -57.5t72.5 -19q56 0 91 28t51 76h81q-18 -75 -76 -125t-146 -50q-66 0 -120 31.5t-85 86.5q-29 -50 -78.5 -84t-120.5 -34zM485 297h303q-4 66 -46 103t-100 37t-103.5 -36t-53.5 -104zM243 59q42 0 75.5 22t54.5 56.5
353
+ t25 74.5v20h-129q-71 0 -101 -24t-30 -62q0 -39 28 -63t77 -24zM438 537v63l210 127v-73z" />
354
+ <glyph glyph-name="b" unicode="b" horiz-adv-x="628"
355
+ d="M334 -12q-61 0 -108.5 25t-72.5 70l-8 -83h-76v720h84v-306q24 36 68.5 65t113.5 29q74 0 129 -34t85.5 -93t30.5 -134t-30.5 -133.5t-86 -92t-129.5 -33.5zM325 61q50 0 88 23.5t60 65.5t22 98t-22 98t-60 65.5t-88 23.5t-88 -23.5t-60 -65.5t-22 -98t22 -98t60 -65.5
356
+ t88 -23.5z" />
357
+ <glyph glyph-name="c" unicode="c" horiz-adv-x="570"
358
+ d="M297 -12q-71 0 -127.5 32.5t-89 91t-32.5 136.5t32.5 136.5t89 91t127.5 32.5q88 0 148.5 -46t76.5 -123h-86q-10 46 -49 71.5t-91 25.5q-42 0 -79 -21t-60 -63t-23 -104t23 -104t60 -63.5t79 -21.5q52 0 91 25.5t49 72.5h86q-15 -75 -76 -122t-149 -47z" />
359
+ <glyph glyph-name="cacute" unicode="&#x107;" horiz-adv-x="570"
360
+ d="M297 -12q-71 0 -127.5 32.5t-89 91t-32.5 136.5t32.5 136.5t89 91t127.5 32.5q88 0 148.5 -46t76.5 -123h-86q-10 46 -49 71.5t-91 25.5q-42 0 -79 -21t-60 -63t-23 -104t23 -104t60 -63.5t79 -21.5q52 0 91 25.5t49 72.5h86q-15 -75 -76 -122t-149 -47zM275 538v63
361
+ l210 127v-73z" />
362
+ <glyph glyph-name="ccaron" unicode="&#x10d;" horiz-adv-x="570"
363
+ d="M297 -12q-71 0 -127.5 32.5t-89 91t-32.5 136.5t32.5 136.5t89 91t127.5 32.5q88 0 148.5 -46t76.5 -123h-86q-10 46 -49 71.5t-91 25.5q-42 0 -79 -21t-60 -63t-23 -104t23 -104t60 -63.5t79 -21.5q52 0 91 25.5t49 72.5h86q-15 -75 -76 -122t-149 -47zM297 551l-137 82
364
+ v65l137 -84l137 84v-65z" />
365
+ <glyph glyph-name="ccedilla" unicode="&#xe7;" horiz-adv-x="570"
366
+ d="M297 -12q-71 0 -127.5 32.5t-89 91t-32.5 136.5t32.5 136.5t89 91t127.5 32.5q88 0 148.5 -46t76.5 -123h-86q-10 46 -49 71.5t-91 25.5q-42 0 -79 -21t-60 -63t-23 -104t23 -104t60 -63.5t79 -21.5q52 0 91 25.5t49 72.5h86q-15 -75 -76 -122t-149 -47zM225 -260v53h92
367
+ q68 0 68 48q0 45 -68 45h-49v120h56v-70q57 1 93 -23t36 -73q0 -47 -34 -73.5t-86 -26.5h-108z" />
368
+ <glyph glyph-name="cdotaccent" unicode="&#x10b;" horiz-adv-x="570"
369
+ d="M297 -12q-71 0 -127.5 32.5t-89 91t-32.5 136.5t32.5 136.5t89 91t127.5 32.5q88 0 148.5 -46t76.5 -123h-86q-10 46 -49 71.5t-91 25.5q-42 0 -79 -21t-60 -63t-23 -104t23 -104t60 -63.5t79 -21.5q52 0 91 25.5t49 72.5h86q-15 -75 -76 -122t-149 -47zM297 563
370
+ q-20 0 -34.5 15t-14.5 35q0 21 14.5 35.5t34.5 14.5q21 0 35.5 -14.5t14.5 -35.5q0 -20 -14.5 -35t-35.5 -15z" />
371
+ <glyph glyph-name="d" unicode="d" horiz-adv-x="628"
372
+ d="M294 -12q-74 0 -129.5 34t-86 93t-30.5 134t31 133.5t86 92t130 33.5q61 0 108 -25t73 -70v307h84v-720h-76l-8 82q-24 -36 -69 -65t-113 -29zM303 61q50 0 88.5 23.5t60 65.5t21.5 98t-21.5 98t-60 65.5t-88.5 23.5q-49 0 -87.5 -23.5t-60 -65.5t-21.5 -98t21.5 -98
373
+ t60 -65.5t87.5 -23.5z" />
374
+ <glyph glyph-name="eth" unicode="&#xf0;" horiz-adv-x="626"
375
+ d="M311 -12q-77 0 -136 35t-93 93.5t-34 130.5q0 75 34 134t92.5 92.5t130.5 33.5q49 0 96.5 -18t81.5 -60q-16 44 -39.5 86t-57.5 83l-134 -47v57l95 33q-29 30 -64 59h84q22 -18 41 -37l131 45v-57l-90 -32q129 -151 129 -347q0 -84 -35.5 -148t-96 -100t-135.5 -36z
376
+ M313 59q47 0 88 23t66 65.5t25 100.5t-25 100t-66 65t-88 23t-88 -23t-66 -65t-25 -100t25 -100.5t66 -65.5t88 -23z" />
377
+ <glyph glyph-name="dcaron" unicode="&#x10f;" horiz-adv-x="744"
378
+ d="M635 541v40q26 0 36.5 13.5t10.5 39.5v23h-48v83h88q6 -26 8.5 -48t2.5 -42q0 -57 -25 -83t-73 -26zM294 -12q-74 0 -129.5 34t-86 93t-30.5 134t31 133.5t86 92t130 33.5q61 0 108 -25t73 -70v307h84v-720h-76l-8 82q-24 -36 -69 -65t-113 -29zM303 61q50 0 88.5 23.5
379
+ t60 65.5t21.5 98t-21.5 98t-60 65.5t-88.5 23.5q-49 0 -87.5 -23.5t-60 -65.5t-21.5 -98t21.5 -98t60 -65.5t87.5 -23.5z" />
380
+ <glyph glyph-name="dcroat" unicode="&#x111;" horiz-adv-x="674"
381
+ d="M294 -12q-74 0 -129.5 34t-86 93t-30.5 134t31 133.5t86 92t130 33.5q61 0 108 -25t73 -70v157h-145v65h145v85h84v-85h75v-65h-75v-570h-76l-8 82q-24 -36 -69 -65t-113 -29zM303 61q50 0 88.5 23.5t60 65.5t21.5 98t-21.5 98t-60 65.5t-88.5 23.5q-49 0 -87.5 -23.5
382
+ t-60 -65.5t-21.5 -98t21.5 -98t60 -65.5t87.5 -23.5z" />
383
+ <glyph glyph-name="e" unicode="e" horiz-adv-x="569"
384
+ d="M292 -12q-71 0 -126 32.5t-86.5 90.5t-31.5 137q0 78 31 136.5t86.5 91t128.5 32.5q72 0 124.5 -32.5t80.5 -85.5t28 -114q0 -11 -0.5 -22t-0.5 -25h-395q3 -57 26.5 -94.5t59 -56.5t75.5 -19q52 0 87 24t51 65h83q-20 -69 -76.5 -114.5t-144.5 -45.5zM292 437
385
+ q-60 0 -106.5 -36.5t-53.5 -106.5h312q-3 67 -46 105t-106 38z" />
386
+ <glyph glyph-name="eacute" unicode="&#xe9;" horiz-adv-x="569"
387
+ d="M292 -12q-71 0 -126 32.5t-86.5 90.5t-31.5 137q0 78 31 136.5t86.5 91t128.5 32.5q72 0 124.5 -32.5t80.5 -85.5t28 -114q0 -11 -0.5 -22t-0.5 -25h-395q3 -57 26.5 -94.5t59 -56.5t75.5 -19q52 0 87 24t51 65h83q-20 -69 -76.5 -114.5t-144.5 -45.5zM292 437
388
+ q-60 0 -106.5 -36.5t-53.5 -106.5h312q-3 67 -46 105t-106 38zM269 537v63l210 127v-73z" />
389
+ <glyph glyph-name="ebreve" unicode="&#x115;" horiz-adv-x="569"
390
+ d="M292 -12q-71 0 -126 32.5t-86.5 90.5t-31.5 137q0 78 31 136.5t86.5 91t128.5 32.5q72 0 124.5 -32.5t80.5 -85.5t28 -114q0 -11 -0.5 -22t-0.5 -25h-395q3 -57 26.5 -94.5t59 -56.5t75.5 -19q52 0 87 24t51 65h83q-20 -69 -76.5 -114.5t-144.5 -45.5zM292 437
391
+ q-60 0 -106.5 -36.5t-53.5 -106.5h312q-3 67 -46 105t-106 38zM291 553q-69 0 -104.5 37.5t-35.5 92.5v14h50q0 -37 21 -57.5t69 -20.5t69 20.5t21 57.5h51v-14q0 -55 -36.5 -92.5t-104.5 -37.5z" />
392
+ <glyph glyph-name="ecaron" unicode="&#x11b;" horiz-adv-x="569"
393
+ d="M292 -12q-71 0 -126 32.5t-86.5 90.5t-31.5 137q0 78 31 136.5t86.5 91t128.5 32.5q72 0 124.5 -32.5t80.5 -85.5t28 -114q0 -11 -0.5 -22t-0.5 -25h-395q3 -57 26.5 -94.5t59 -56.5t75.5 -19q52 0 87 24t51 65h83q-20 -69 -76.5 -114.5t-144.5 -45.5zM292 437
394
+ q-60 0 -106.5 -36.5t-53.5 -106.5h312q-3 67 -46 105t-106 38zM291 550l-137 82v65l137 -84l137 84v-65z" />
395
+ <glyph glyph-name="ecircumflex" unicode="&#xea;" horiz-adv-x="569"
396
+ d="M292 -12q-71 0 -126 32.5t-86.5 90.5t-31.5 137q0 78 31 136.5t86.5 91t128.5 32.5q72 0 124.5 -32.5t80.5 -85.5t28 -114q0 -11 -0.5 -22t-0.5 -25h-395q3 -57 26.5 -94.5t59 -56.5t75.5 -19q52 0 87 24t51 65h83q-20 -69 -76.5 -114.5t-144.5 -45.5zM292 437
397
+ q-60 0 -106.5 -36.5t-53.5 -106.5h312q-3 67 -46 105t-106 38zM154 551v66l137 81l137 -81v-66l-137 84z" />
398
+ <glyph glyph-name="edieresis" unicode="&#xeb;" horiz-adv-x="569"
399
+ d="M292 -12q-71 0 -126 32.5t-86.5 90.5t-31.5 137q0 78 31 136.5t86.5 91t128.5 32.5q72 0 124.5 -32.5t80.5 -85.5t28 -114q0 -11 -0.5 -22t-0.5 -25h-395q3 -57 26.5 -94.5t59 -56.5t75.5 -19q52 0 87 24t51 65h83q-20 -69 -76.5 -114.5t-144.5 -45.5zM292 437
400
+ q-60 0 -106.5 -36.5t-53.5 -106.5h312q-3 67 -46 105t-106 38zM373 571q-21 0 -35.5 14.5t-14.5 35.5q0 20 14.5 35t35.5 15q20 0 34.5 -15t14.5 -35q0 -21 -14.5 -35.5t-34.5 -14.5zM212 571q-21 0 -35 14.5t-14 35.5q0 20 14 35t35 15t35.5 -15t14.5 -35
401
+ q0 -21 -14.5 -35.5t-35.5 -14.5z" />
402
+ <glyph glyph-name="edotaccent" unicode="&#x117;" horiz-adv-x="569"
403
+ d="M292 -12q-71 0 -126 32.5t-86.5 90.5t-31.5 137q0 78 31 136.5t86.5 91t128.5 32.5q72 0 124.5 -32.5t80.5 -85.5t28 -114q0 -11 -0.5 -22t-0.5 -25h-395q3 -57 26.5 -94.5t59 -56.5t75.5 -19q52 0 87 24t51 65h83q-20 -69 -76.5 -114.5t-144.5 -45.5zM292 437
404
+ q-60 0 -106.5 -36.5t-53.5 -106.5h312q-3 67 -46 105t-106 38zM291 562q-20 0 -34.5 15t-14.5 35q0 21 14.5 35.5t34.5 14.5q21 0 35.5 -14.5t14.5 -35.5q0 -20 -14.5 -35t-35.5 -15z" />
405
+ <glyph glyph-name="egrave" unicode="&#xe8;" horiz-adv-x="569"
406
+ d="M292 -12q-71 0 -126 32.5t-86.5 90.5t-31.5 137q0 78 31 136.5t86.5 91t128.5 32.5q72 0 124.5 -32.5t80.5 -85.5t28 -114q0 -11 -0.5 -22t-0.5 -25h-395q3 -57 26.5 -94.5t59 -56.5t75.5 -19q52 0 87 24t51 65h83q-20 -69 -76.5 -114.5t-144.5 -45.5zM292 437
407
+ q-60 0 -106.5 -36.5t-53.5 -106.5h312q-3 67 -46 105t-106 38zM336 537l-210 117v73l210 -127v-63z" />
408
+ <glyph glyph-name="emacron" unicode="&#x113;" horiz-adv-x="569"
409
+ d="M292 -12q-71 0 -126 32.5t-86.5 90.5t-31.5 137q0 78 31 136.5t86.5 91t128.5 32.5q72 0 124.5 -32.5t80.5 -85.5t28 -114q0 -11 -0.5 -22t-0.5 -25h-395q3 -57 26.5 -94.5t59 -56.5t75.5 -19q52 0 87 24t51 65h83q-20 -69 -76.5 -114.5t-144.5 -45.5zM292 437
410
+ q-60 0 -106.5 -36.5t-53.5 -106.5h312q-3 67 -46 105t-106 38zM117 592v63h348v-63h-348z" />
411
+ <glyph glyph-name="eogonek" unicode="&#x119;" horiz-adv-x="569"
412
+ d="M292 -12q-71 0 -126 32.5t-86.5 90.5t-31.5 137q0 78 31 136.5t86.5 91t128.5 32.5q72 0 124.5 -32.5t80.5 -85.5t28 -114q0 -11 -0.5 -22t-0.5 -25h-395q3 -57 26.5 -94.5t59 -56.5t75.5 -19q52 0 87 24t51 65h83q-20 -69 -76.5 -114.5t-144.5 -45.5zM292 437
413
+ q-60 0 -106.5 -36.5t-53.5 -106.5h312q-3 67 -46 105t-106 38zM323 -191q-31 0 -57.5 9.5t-43.5 30.5t-17 55q0 35 25.5 67t90.5 61l52 23l22 -43l-58 -28q-36 -18 -50 -35.5t-14 -36.5q0 -23 16.5 -36t43.5 -13q30 0 65 15v-56q-37 -13 -75 -13z" />
414
+ <glyph glyph-name="uni1EBD" unicode="&#x1ebd;" horiz-adv-x="569"
415
+ d="M292 -12q-71 0 -126 32.5t-86.5 90.5t-31.5 137q0 78 31 136.5t86.5 91t128.5 32.5q72 0 124.5 -32.5t80.5 -85.5t28 -114q0 -11 -0.5 -22t-0.5 -25h-395q3 -57 26.5 -94.5t59 -56.5t75.5 -19q52 0 87 24t51 65h83q-20 -69 -76.5 -114.5t-144.5 -45.5zM292 437
416
+ q-60 0 -106.5 -36.5t-53.5 -106.5h312q-3 67 -46 105t-106 38zM346 552q-27 0 -44.5 12t-33.5 23.5t-36 11.5q-37 0 -43 -45h-49q7 51 32.5 76t62.5 25q27 0 44.5 -12t33.5 -23.5t37 -11.5q17 0 29 11t15 34h48q-5 -49 -31.5 -75t-64.5 -26z" />
417
+ <glyph glyph-name="uni0259" unicode="&#x259;" horiz-adv-x="569"
418
+ d="M275 -12q-72 0 -124.5 32.5t-80.5 85.5t-28 114q0 11 0.5 22t1.5 25h395q-3 57 -26.5 94.5t-59.5 56.5t-76 19q-51 0 -86.5 -24t-51.5 -65h-83q20 69 76.5 114.5t144.5 45.5q71 0 126 -32.5t86.5 -90.5t31.5 -137q0 -78 -31 -136.5t-86.5 -91t-128.5 -32.5zM277 59
419
+ q61 0 107 36.5t54 106.5h-313q3 -67 46 -105t106 -38z" />
420
+ <glyph glyph-name="f" unicode="f" horiz-adv-x="333"
421
+ d="M96 0v425h-75v71h75v86q0 72 36 105t105 33h50v-72h-37q-38 0 -54 -15.5t-16 -52.5v-84h122v-71h-122v-425h-84z" />
422
+ <glyph glyph-name="g" unicode="g" horiz-adv-x="552"
423
+ d="M265 156q-42 0 -77 11l-50 -47q11 -8 27.5 -13.5t47.5 -10t87 -9.5q100 -7 143 -46t43 -102q0 -43 -23.5 -82t-72 -64t-124.5 -25q-67 0 -119 17.5t-81 53t-29 89.5q0 28 15 60.5t56 61.5q-22 9 -37.5 19.5t-28.5 23.5v23l85 84q-59 50 -59 132q0 49 23 89t67 63.5
424
+ t107 23.5q43 0 78 -12h183v-63l-93 -4q29 -42 29 -97q0 -49 -23.5 -89t-67 -63.5t-106.5 -23.5zM265 225q53 0 84.5 27.5t31.5 79.5q0 51 -31.5 78.5t-84.5 27.5q-54 0 -85.5 -27.5t-31.5 -78.5q0 -52 31.5 -79.5t85.5 -27.5zM119 -64q0 -50 42 -74.5t105 -24.5
425
+ q62 0 99.5 27t37.5 72q0 32 -26 55.5t-96 27.5q-55 4 -95 10q-41 -22 -54 -47.5t-13 -45.5z" />
426
+ <glyph glyph-name="gbreve" unicode="&#x11f;" horiz-adv-x="552"
427
+ d="M265 156q-42 0 -77 11l-50 -47q11 -8 27.5 -13.5t47.5 -10t87 -9.5q100 -7 143 -46t43 -102q0 -43 -23.5 -82t-72 -64t-124.5 -25q-67 0 -119 17.5t-81 53t-29 89.5q0 28 15 60.5t56 61.5q-22 9 -37.5 19.5t-28.5 23.5v23l85 84q-59 50 -59 132q0 49 23 89t67 63.5
428
+ t107 23.5q43 0 78 -12h183v-63l-93 -4q29 -42 29 -97q0 -49 -23.5 -89t-67 -63.5t-106.5 -23.5zM265 225q53 0 84.5 27.5t31.5 79.5q0 51 -31.5 78.5t-84.5 27.5q-54 0 -85.5 -27.5t-31.5 -78.5q0 -52 31.5 -79.5t85.5 -27.5zM119 -64q0 -50 42 -74.5t105 -24.5
429
+ q62 0 99.5 27t37.5 72q0 32 -26 55.5t-96 27.5q-55 4 -95 10q-41 -22 -54 -47.5t-13 -45.5zM265 553q-69 0 -104.5 37.5t-35.5 92.5v14h50q0 -37 21 -57.5t69 -20.5t69 20.5t21 57.5h51v-14q0 -55 -36.5 -92.5t-104.5 -37.5z" />
430
+ <glyph glyph-name="uni0123" unicode="&#x123;" horiz-adv-x="552"
431
+ d="M225 595q-10 51 -10 90q0 57 25 83.5t73 26.5v-40q-48 0 -48 -53v-23h48v-84h-88zM265 156q-42 0 -77 11l-50 -47q11 -8 27.5 -13.5t47.5 -10t87 -9.5q100 -7 143 -46t43 -102q0 -43 -23.5 -82t-72 -64t-124.5 -25q-67 0 -119 17.5t-81 53t-29 89.5q0 28 15 60.5t56 61.5
432
+ q-22 9 -37.5 19.5t-28.5 23.5v23l85 84q-59 50 -59 132q0 49 23 89t67 63.5t107 23.5q43 0 78 -12h183v-63l-93 -4q29 -42 29 -97q0 -49 -23.5 -89t-67 -63.5t-106.5 -23.5zM265 225q53 0 84.5 27.5t31.5 79.5q0 51 -31.5 78.5t-84.5 27.5q-54 0 -85.5 -27.5t-31.5 -78.5
433
+ q0 -52 31.5 -79.5t85.5 -27.5zM119 -64q0 -50 42 -74.5t105 -24.5q62 0 99.5 27t37.5 72q0 32 -26 55.5t-96 27.5q-55 4 -95 10q-41 -22 -54 -47.5t-13 -45.5z" />
434
+ <glyph glyph-name="gdotaccent" unicode="&#x121;" horiz-adv-x="552"
435
+ d="M265 156q-42 0 -77 11l-50 -47q11 -8 27.5 -13.5t47.5 -10t87 -9.5q100 -7 143 -46t43 -102q0 -43 -23.5 -82t-72 -64t-124.5 -25q-67 0 -119 17.5t-81 53t-29 89.5q0 28 15 60.5t56 61.5q-22 9 -37.5 19.5t-28.5 23.5v23l85 84q-59 50 -59 132q0 49 23 89t67 63.5
436
+ t107 23.5q43 0 78 -12h183v-63l-93 -4q29 -42 29 -97q0 -49 -23.5 -89t-67 -63.5t-106.5 -23.5zM265 225q53 0 84.5 27.5t31.5 79.5q0 51 -31.5 78.5t-84.5 27.5q-54 0 -85.5 -27.5t-31.5 -78.5q0 -52 31.5 -79.5t85.5 -27.5zM119 -64q0 -50 42 -74.5t105 -24.5
437
+ q62 0 99.5 27t37.5 72q0 32 -26 55.5t-96 27.5q-55 4 -95 10q-41 -22 -54 -47.5t-13 -45.5zM265 562q-21 0 -35.5 15t-14.5 35q0 21 14.5 35.5t35.5 14.5q20 0 35 -14.5t15 -35.5q0 -20 -15 -35t-35 -15z" />
438
+ <glyph glyph-name="h" unicode="h" horiz-adv-x="572"
439
+ d="M69 0v720h84v-309q25 46 71 71.5t100 25.5q86 0 138 -53.5t52 -164.5v-290h-83v281q0 155 -125 155q-65 0 -109 -46.5t-44 -132.5v-257h-84z" />
440
+ <glyph glyph-name="i" unicode="i" horiz-adv-x="239"
441
+ d="M120 606q-25 0 -41.5 16.5t-16.5 41.5q0 24 16.5 40t41.5 16q24 0 41 -16t17 -40q0 -25 -17 -41.5t-41 -16.5zM78 0v496h84v-496h-84z" />
442
+ <glyph glyph-name="dotlessi" unicode="&#x131;" horiz-adv-x="222"
443
+ d="M69 0v496h84v-496h-84z" />
444
+ <glyph glyph-name="iacute" unicode="&#xed;" horiz-adv-x="222"
445
+ d="M69 0v496h84v-496h-84zM88 537v63l210 127v-73z" />
446
+ <glyph glyph-name="ibreve" unicode="&#x12d;" horiz-adv-x="222"
447
+ d="M69 0v496h84v-496h-84zM111 553q-69 0 -104.5 37.5t-35.5 92.5v14h50q0 -37 21 -57.5t69 -20.5t69 20.5t21 57.5h51v-14q0 -55 -36.5 -92.5t-104.5 -37.5z" />
448
+ <glyph glyph-name="icircumflex" unicode="&#xee;" horiz-adv-x="222"
449
+ d="M69 0v496h84v-496h-84zM-26 551v66l137 81l137 -81v-66l-137 84z" />
450
+ <glyph glyph-name="idieresis" unicode="&#xef;" horiz-adv-x="222"
451
+ d="M69 0v496h84v-496h-84zM192 571q-21 0 -35.5 14.5t-14.5 35.5q0 20 14.5 35t35.5 15q20 0 34.5 -15t14.5 -35q0 -21 -14.5 -35.5t-34.5 -14.5zM31 571q-21 0 -35 14.5t-14 35.5q0 20 14 35t35 15t35.5 -15t14.5 -35q0 -21 -14.5 -35.5t-35.5 -14.5z" />
452
+ <glyph glyph-name="igrave" unicode="&#xec;" horiz-adv-x="222"
453
+ d="M69 0v496h84v-496h-84zM156 537l-210 117v73l210 -127v-63z" />
454
+ <glyph glyph-name="imacron" unicode="&#x12b;" horiz-adv-x="222"
455
+ d="M69 0v496h84v-496h-84zM-63 592v63h348v-63h-348z" />
456
+ <glyph glyph-name="iogonek" unicode="&#x12f;" horiz-adv-x="239"
457
+ d="M120 606q-25 0 -41.5 16.5t-16.5 41.5q0 24 16.5 40t41.5 16q24 0 41 -16t17 -40q0 -25 -17 -41.5t-41 -16.5zM78 0v496h84v-496h-84zM90 -202q-31 0 -57.5 9.5t-43.5 30.5t-17 55q0 35 25.5 67t90.5 61l52 23l22 -43l-58 -28q-36 -18 -50 -35.5t-14 -36.5
458
+ q0 -23 16.5 -36t43.5 -13q30 0 65 15v-56q-37 -13 -75 -13z" />
459
+ <glyph glyph-name="itilde" unicode="&#x129;" horiz-adv-x="222"
460
+ d="M69 0v496h84v-496h-84zM166 552q-27 0 -44.5 12t-33.5 23.5t-36 11.5q-37 0 -43 -45h-49q7 51 32.5 76t62.5 25q27 0 44.5 -12t33.5 -23.5t37 -11.5q17 0 29 11t15 34h48q-5 -49 -31.5 -75t-64.5 -26z" />
461
+ <glyph glyph-name="j" unicode="j" horiz-adv-x="242"
462
+ d="M124 606q-24 0 -41 16.5t-17 41.5q0 24 17 40t41 16t40.5 -16t16.5 -40q0 -25 -16.5 -41.5t-40.5 -16.5zM-28 -220v72h39q37 0 53.5 15.5t16.5 52.5v576h84v-578q0 -72 -36 -105t-105 -33h-52z" />
463
+ <glyph glyph-name="k" unicode="k" horiz-adv-x="504"
464
+ d="M69 0v720h84v-433l203 209h103l-220 -224l248 -272h-107l-227 257v-257h-84z" />
465
+ <glyph glyph-name="uni0137" unicode="&#x137;" horiz-adv-x="504"
466
+ d="M69 0v720h84v-433l203 209h103l-220 -224l248 -272h-107l-227 257v-257h-84zM206 -238v40q47 0 47 57v14h-46v77h86q10 -42 10 -74q0 -60 -25.5 -87t-71.5 -27z" />
467
+ <glyph glyph-name="l" unicode="l" horiz-adv-x="222"
468
+ d="M69 0v720h84v-720h-84z" />
469
+ <glyph glyph-name="lacute" unicode="&#x13a;" horiz-adv-x="222"
470
+ d="M69 0v720h84v-720h-84zM88 761v63l210 127v-73z" />
471
+ <glyph glyph-name="lcaron" unicode="&#x13e;" horiz-adv-x="338"
472
+ d="M230 541v40q47 0 47 53v23h-48v83h88q6 -26 8 -48t2 -42q0 -57 -25 -83t-72 -26zM69 0v720h84v-720h-84z" />
473
+ <glyph glyph-name="uni013C" unicode="&#x13c;" horiz-adv-x="238"
474
+ d="M69 0v720h84v-720h-84zM66 -238v40q48 0 48 57v14h-46v77h86q10 -41 10 -74q0 -60 -25.5 -87t-72.5 -27z" />
475
+ <glyph glyph-name="ldot" unicode="&#x140;" horiz-adv-x="346"
476
+ d="M78 0v720h84v-720h-84zM266 318q-21 0 -35.5 14.5t-14.5 34.5q0 21 14.5 35.5t35.5 14.5t35.5 -14.5t14.5 -35.5q0 -20 -14.5 -34.5t-35.5 -14.5z" />
477
+ <glyph glyph-name="lslash" unicode="&#x142;" horiz-adv-x="251"
478
+ d="M83 0v361l-74 -30v67l74 31v291h84v-257l75 31v-68l-75 -30v-396h-84z" />
479
+ <glyph glyph-name="m" unicode="m" horiz-adv-x="895"
480
+ d="M69 0v496h76l6 -72q24 40 64 62t90 22q59 0 101.5 -24t65.5 -73q26 45 71.5 71t98.5 26q89 0 142 -53.5t53 -164.5v-290h-83v281q0 77 -31 116t-89 39q-60 0 -99.5 -46.5t-39.5 -132.5v-257h-84v281q0 77 -31 116t-89 39q-59 0 -98.5 -46.5t-39.5 -132.5v-257h-84z" />
481
+ <glyph glyph-name="n" unicode="n" horiz-adv-x="572"
482
+ d="M69 0v496h76l5 -89q24 47 69 74t102 27q88 0 140.5 -53.5t52.5 -164.5v-290h-84v281q0 155 -128 155q-64 0 -106.5 -46.5t-42.5 -132.5v-257h-84z" />
483
+ <glyph glyph-name="nacute" unicode="&#x144;" horiz-adv-x="572"
484
+ d="M69 0v496h76l5 -89q24 47 69 74t102 27q88 0 140.5 -53.5t52.5 -164.5v-290h-84v281q0 155 -128 155q-64 0 -106.5 -46.5t-42.5 -132.5v-257h-84zM282 537v63l210 127v-73z" />
485
+ <glyph glyph-name="ncaron" unicode="&#x148;" horiz-adv-x="572"
486
+ d="M69 0v496h76l5 -89q24 47 69 74t102 27q88 0 140.5 -53.5t52.5 -164.5v-290h-84v281q0 155 -128 155q-64 0 -106.5 -46.5t-42.5 -132.5v-257h-84zM305 550l-137 82v65l137 -84l137 84v-65z" />
487
+ <glyph glyph-name="uni0146" unicode="&#x146;" horiz-adv-x="572"
488
+ d="M69 0v496h76l5 -89q24 47 69 74t102 27q88 0 140.5 -53.5t52.5 -164.5v-290h-84v281q0 155 -128 155q-64 0 -106.5 -46.5t-42.5 -132.5v-257h-84zM257 -238v40q47 0 47 57v14h-45v77h86q9 -41 9 -74q0 -60 -25 -87t-72 -27z" />
489
+ <glyph glyph-name="ntilde" unicode="&#xf1;" horiz-adv-x="572"
490
+ d="M69 0v496h76l5 -89q24 47 69 74t102 27q88 0 140.5 -53.5t52.5 -164.5v-290h-84v281q0 155 -128 155q-64 0 -106.5 -46.5t-42.5 -132.5v-257h-84zM359 552q-27 0 -44.5 12t-33.5 23.5t-36 11.5q-37 0 -43 -45h-49q7 51 32.5 76t62.5 25q27 0 44.5 -12t33.5 -23.5
491
+ t37 -11.5q17 0 29 11t15 34h48q-5 -49 -31.5 -75t-64.5 -26z" />
492
+ <glyph glyph-name="o" unicode="o" horiz-adv-x="592"
493
+ d="M295 -12q-70 0 -126 32t-88.5 90.5t-32.5 137.5t33 137.5t89.5 90.5t126.5 32t126 -32t88.5 -90.5t32.5 -137.5t-33 -137.5t-89.5 -90.5t-126.5 -32zM295 60q43 0 80 21t60 63t23 104t-22.5 104t-59.5 63t-79 21q-43 0 -80 -21t-60 -63t-23 -104t23 -104t59.5 -63
494
+ t78.5 -21z" />
495
+ <glyph glyph-name="oacute" unicode="&#xf3;" horiz-adv-x="592"
496
+ d="M295 -12q-70 0 -126 32t-88.5 90.5t-32.5 137.5t33 137.5t89.5 90.5t126.5 32t126 -32t88.5 -90.5t32.5 -137.5t-33 -137.5t-89.5 -90.5t-126.5 -32zM295 60q43 0 80 21t60 63t23 104t-22.5 104t-59.5 63t-79 21q-43 0 -80 -21t-60 -63t-23 -104t23 -104t59.5 -63
497
+ t78.5 -21zM274 537v63l210 127v-73z" />
498
+ <glyph glyph-name="obreve" unicode="&#x14f;" horiz-adv-x="592"
499
+ d="M295 -12q-70 0 -126 32t-88.5 90.5t-32.5 137.5t33 137.5t89.5 90.5t126.5 32t126 -32t88.5 -90.5t32.5 -137.5t-33 -137.5t-89.5 -90.5t-126.5 -32zM295 60q43 0 80 21t60 63t23 104t-22.5 104t-59.5 63t-79 21q-43 0 -80 -21t-60 -63t-23 -104t23 -104t59.5 -63
500
+ t78.5 -21zM297 553q-69 0 -104.5 37.5t-35.5 92.5v14h50q0 -37 21 -57.5t69 -20.5t69 20.5t21 57.5h51v-14q0 -55 -36.5 -92.5t-104.5 -37.5z" />
501
+ <glyph glyph-name="ocircumflex" unicode="&#xf4;" horiz-adv-x="592"
502
+ d="M295 -12q-70 0 -126 32t-88.5 90.5t-32.5 137.5t33 137.5t89.5 90.5t126.5 32t126 -32t88.5 -90.5t32.5 -137.5t-33 -137.5t-89.5 -90.5t-126.5 -32zM295 60q43 0 80 21t60 63t23 104t-22.5 104t-59.5 63t-79 21q-43 0 -80 -21t-60 -63t-23 -104t23 -104t59.5 -63
503
+ t78.5 -21zM160 551v66l137 81l137 -81v-66l-137 84z" />
504
+ <glyph glyph-name="odieresis" unicode="&#xf6;" horiz-adv-x="592"
505
+ d="M295 -12q-70 0 -126 32t-88.5 90.5t-32.5 137.5t33 137.5t89.5 90.5t126.5 32t126 -32t88.5 -90.5t32.5 -137.5t-33 -137.5t-89.5 -90.5t-126.5 -32zM295 60q43 0 80 21t60 63t23 104t-22.5 104t-59.5 63t-79 21q-43 0 -80 -21t-60 -63t-23 -104t23 -104t59.5 -63
506
+ t78.5 -21zM378 571q-21 0 -35.5 14.5t-14.5 35.5q0 20 14.5 35t35.5 15q20 0 34.5 -15t14.5 -35q0 -21 -14.5 -35.5t-34.5 -14.5zM217 571q-21 0 -35 14.5t-14 35.5q0 20 14 35t35 15t35.5 -15t14.5 -35q0 -21 -14.5 -35.5t-35.5 -14.5z" />
507
+ <glyph glyph-name="ograve" unicode="&#xf2;" horiz-adv-x="592"
508
+ d="M295 -12q-70 0 -126 32t-88.5 90.5t-32.5 137.5t33 137.5t89.5 90.5t126.5 32t126 -32t88.5 -90.5t32.5 -137.5t-33 -137.5t-89.5 -90.5t-126.5 -32zM295 60q43 0 80 21t60 63t23 104t-22.5 104t-59.5 63t-79 21q-43 0 -80 -21t-60 -63t-23 -104t23 -104t59.5 -63
509
+ t78.5 -21zM342 537l-210 117v73l210 -127v-63z" />
510
+ <glyph glyph-name="ohungarumlaut" unicode="&#x151;" horiz-adv-x="592"
511
+ d="M295 -12q-70 0 -126 32t-88.5 90.5t-32.5 137.5t33 137.5t89.5 90.5t126.5 32t126 -32t88.5 -90.5t32.5 -137.5t-33 -137.5t-89.5 -90.5t-126.5 -32zM295 60q43 0 80 21t60 63t23 104t-22.5 104t-59.5 63t-79 21q-43 0 -80 -21t-60 -63t-23 -104t23 -104t59.5 -63
512
+ t78.5 -21zM333 549l72 149h73l-89 -149h-56zM187 549l66 149h73l-82 -149h-57z" />
513
+ <glyph glyph-name="omacron" unicode="&#x14d;" horiz-adv-x="592"
514
+ d="M295 -12q-70 0 -126 32t-88.5 90.5t-32.5 137.5t33 137.5t89.5 90.5t126.5 32t126 -32t88.5 -90.5t32.5 -137.5t-33 -137.5t-89.5 -90.5t-126.5 -32zM295 60q43 0 80 21t60 63t23 104t-22.5 104t-59.5 63t-79 21q-43 0 -80 -21t-60 -63t-23 -104t23 -104t59.5 -63
515
+ t78.5 -21zM123 592v63h348v-63h-348z" />
516
+ <glyph glyph-name="oslash" unicode="&#xf8;" horiz-adv-x="596"
517
+ d="M43 0l64 74q-27 33 -42 77t-15 97q0 79 33 137.5t89.5 90.5t126.5 32q83 0 146 -45l29 33h79l-65 -74q27 -33 42.5 -77t15.5 -97q0 -79 -33 -137.5t-89.5 -90.5t-126.5 -32q-83 0 -146 45l-28 -33h-80zM134 248q0 -34 7 -62t20 -50l234 270q-41 32 -96 32
518
+ q-44 0 -81.5 -21t-60.5 -63.5t-23 -105.5zM297 58q43 0 80.5 21t61 63.5t23.5 105.5q0 34 -7.5 62t-19.5 50l-235 -270q42 -32 97 -32z" />
519
+ <glyph glyph-name="otilde" unicode="&#xf5;" horiz-adv-x="592"
520
+ d="M295 -12q-70 0 -126 32t-88.5 90.5t-32.5 137.5t33 137.5t89.5 90.5t126.5 32t126 -32t88.5 -90.5t32.5 -137.5t-33 -137.5t-89.5 -90.5t-126.5 -32zM295 60q43 0 80 21t60 63t23 104t-22.5 104t-59.5 63t-79 21q-43 0 -80 -21t-60 -63t-23 -104t23 -104t59.5 -63
521
+ t78.5 -21zM352 552q-27 0 -44.5 12t-33.5 23.5t-36 11.5q-37 0 -43 -45h-49q7 51 32.5 76t62.5 25q27 0 44.5 -12t33.5 -23.5t37 -11.5q17 0 29 11t15 34h48q-5 -49 -31.5 -75t-64.5 -26z" />
522
+ <glyph glyph-name="oe" unicode="&#x153;" horiz-adv-x="979"
523
+ d="M295 -12q-70 0 -126 32t-88.5 90.5t-32.5 137.5t33 137.5t89.5 90.5t126.5 32q67 0 118.5 -29.5t80.5 -84.5q31 54 84.5 84t123.5 30q72 0 124 -32.5t80.5 -85.5t28.5 -114q0 -11 -0.5 -22t-1.5 -25h-395q3 -57 26.5 -94.5t59.5 -56.5t76 -19q56 0 93 28t53 76h81
524
+ q-18 -75 -76.5 -125t-150.5 -50q-68 0 -121 30t-84 84q-30 -54 -82 -84t-120 -30zM542 294h312q-3 67 -46 105t-107 38q-60 0 -106.5 -36.5t-52.5 -106.5zM295 60q43 0 80 21t60 63t23 104t-22.5 104t-59.5 63t-79 21q-43 0 -80 -21t-60 -63t-23 -104t23 -104t59.5 -63
525
+ t78.5 -21z" />
526
+ <glyph glyph-name="p" unicode="p" horiz-adv-x="628"
527
+ d="M69 -220v716h76l8 -82q24 36 68.5 65t113.5 29q74 0 129 -34t85.5 -93t30.5 -134t-30.5 -133.5t-86 -92t-129.5 -33.5q-61 0 -108.5 25t-72.5 70v-303h-84zM325 61q50 0 88 23.5t60 65.5t22 98t-22 98t-60 65.5t-88 23.5t-88 -23.5t-60 -65.5t-22 -98t22 -98t60 -65.5
528
+ t88 -23.5z" />
529
+ <glyph glyph-name="thorn" unicode="&#xfe;" horiz-adv-x="628"
530
+ d="M69 -220v940h84v-306q24 36 68.5 65t113.5 29q74 0 129 -34t85.5 -93t30.5 -134t-30.5 -133.5t-86 -92t-129.5 -33.5q-61 0 -108.5 25t-72.5 70v-303h-84zM325 61q50 0 88 23.5t60 65.5t22 98t-22 98t-60 65.5t-88 23.5t-88 -23.5t-60 -65.5t-22 -98t22 -98t60 -65.5
531
+ t88 -23.5z" />
532
+ <glyph glyph-name="q" unicode="q" horiz-adv-x="628"
533
+ d="M476 -220v302q-24 -36 -69 -65t-113 -29q-74 0 -129.5 34t-86 93t-30.5 134t31 133.5t86 92t130 33.5q61 0 108 -25t73 -70l8 83h76v-716h-84zM303 61q50 0 88.5 23.5t60 65.5t21.5 98t-21.5 98t-60 65.5t-88.5 23.5q-49 0 -87.5 -23.5t-60 -65.5t-21.5 -98t21.5 -98
534
+ t60 -65.5t87.5 -23.5z" />
535
+ <glyph glyph-name="r" unicode="r" horiz-adv-x="363"
536
+ d="M69 0v496h76l7 -95q23 49 70 78t116 29v-88h-23q-44 0 -81 -15.5t-59 -52.5t-22 -102v-250h-84z" />
537
+ <glyph glyph-name="racute" unicode="&#x155;" horiz-adv-x="363"
538
+ d="M69 0v496h76l7 -95q23 49 70 78t116 29v-88h-23q-44 0 -81 -15.5t-59 -52.5t-22 -102v-250h-84zM174 537v63l210 127v-73z" />
539
+ <glyph glyph-name="rcaron" unicode="&#x159;" horiz-adv-x="363"
540
+ d="M69 0v496h76l7 -95q23 49 70 78t116 29v-88h-23q-44 0 -81 -15.5t-59 -52.5t-22 -102v-250h-84zM219 550l-137 82v65l137 -84l137 84v-65z" />
541
+ <glyph glyph-name="uni0157" unicode="&#x157;" horiz-adv-x="363"
542
+ d="M69 0v496h76l7 -95q23 49 70 78t116 29v-88h-23q-44 0 -81 -15.5t-59 -52.5t-22 -102v-250h-84zM72 -238v40q47 0 47 57v14h-46v77h86q6 -20 8 -39t2 -35q0 -60 -25 -87t-72 -27z" />
543
+ <glyph glyph-name="s" unicode="s" horiz-adv-x="500"
544
+ d="M259 -12q-89 0 -148 45t-69 122h86q8 -39 41.5 -67.5t90.5 -28.5q53 0 78 22.5t25 53.5q0 45 -32.5 60t-91.5 27q-40 8 -80 23t-67 42.5t-27 72.5q0 65 48.5 106.5t131.5 41.5q79 0 129.5 -39.5t58.5 -112.5h-83q-5 38 -32.5 59.5t-73.5 21.5q-45 0 -69.5 -19t-24.5 -50
545
+ q0 -30 31.5 -47t85.5 -29q46 -10 87.5 -24.5t68 -43t26.5 -82.5q1 -67 -50.5 -110.5t-139.5 -43.5z" />
546
+ <glyph glyph-name="sacute" unicode="&#x15b;" horiz-adv-x="500"
547
+ d="M259 -12q-89 0 -148 45t-69 122h86q8 -39 41.5 -67.5t90.5 -28.5q53 0 78 22.5t25 53.5q0 45 -32.5 60t-91.5 27q-40 8 -80 23t-67 42.5t-27 72.5q0 65 48.5 106.5t131.5 41.5q79 0 129.5 -39.5t58.5 -112.5h-83q-5 38 -32.5 59.5t-73.5 21.5q-45 0 -69.5 -19t-24.5 -50
548
+ q0 -30 31.5 -47t85.5 -29q46 -10 87.5 -24.5t68 -43t26.5 -82.5q1 -67 -50.5 -110.5t-139.5 -43.5zM202 537v63l210 127v-73z" />
549
+ <glyph glyph-name="scaron" unicode="&#x161;" horiz-adv-x="500"
550
+ d="M259 -12q-89 0 -148 45t-69 122h86q8 -39 41.5 -67.5t90.5 -28.5q53 0 78 22.5t25 53.5q0 45 -32.5 60t-91.5 27q-40 8 -80 23t-67 42.5t-27 72.5q0 65 48.5 106.5t131.5 41.5q79 0 129.5 -39.5t58.5 -112.5h-83q-5 38 -32.5 59.5t-73.5 21.5q-45 0 -69.5 -19t-24.5 -50
551
+ q0 -30 31.5 -47t85.5 -29q46 -10 87.5 -24.5t68 -43t26.5 -82.5q1 -67 -50.5 -110.5t-139.5 -43.5zM247 550l-137 82v65l137 -84l137 84v-65z" />
552
+ <glyph glyph-name="scedilla" unicode="&#x15f;" horiz-adv-x="500"
553
+ d="M259 -12q-89 0 -148 45t-69 122h86q8 -39 41.5 -67.5t90.5 -28.5q53 0 78 22.5t25 53.5q0 45 -32.5 60t-91.5 27q-40 8 -80 23t-67 42.5t-27 72.5q0 65 48.5 106.5t131.5 41.5q79 0 129.5 -39.5t58.5 -112.5h-83q-5 38 -32.5 59.5t-73.5 21.5q-45 0 -69.5 -19t-24.5 -50
554
+ q0 -30 31.5 -47t85.5 -29q46 -10 87.5 -24.5t68 -43t26.5 -82.5q1 -67 -50.5 -110.5t-139.5 -43.5zM181 -260v53h92q68 0 68 48q0 45 -68 45h-49v120h56v-70q57 1 93 -23t36 -73q0 -47 -34 -73.5t-87 -26.5h-107z" />
555
+ <glyph glyph-name="uni0219" unicode="&#x219;" horiz-adv-x="500"
556
+ d="M259 -12q-89 0 -148 45t-69 122h86q8 -39 41.5 -67.5t90.5 -28.5q53 0 78 22.5t25 53.5q0 45 -32.5 60t-91.5 27q-40 8 -80 23t-67 42.5t-27 72.5q0 65 48.5 106.5t131.5 41.5q79 0 129.5 -39.5t58.5 -112.5h-83q-5 38 -32.5 59.5t-73.5 21.5q-45 0 -69.5 -19t-24.5 -50
557
+ q0 -30 31.5 -47t85.5 -29q46 -10 87.5 -24.5t68 -43t26.5 -82.5q1 -67 -50.5 -110.5t-139.5 -43.5zM221 -238v40q47 0 47 57v14h-46v77h86q10 -41 10 -74q0 -60 -25.5 -87t-71.5 -27z" />
558
+ <glyph glyph-name="germandbls" unicode="&#xdf;" horiz-adv-x="664"
559
+ d="M441 -10q-86 0 -140.5 47.5t-62.5 131.5h83q4 -51 35.5 -82t83.5 -31q48 0 74.5 23.5t26.5 64.5q0 37 -23 60.5t-80 41.5q-79 27 -113.5 55t-34.5 74q0 30 14.5 49.5t35.5 33.5t42.5 27.5t35.5 31.5t14 45q0 46 -35.5 72.5t-96.5 26.5q-75 0 -110.5 -40t-35.5 -109v-512
560
+ h-83v520q0 61 26 109t77.5 75.5t127.5 27.5q69 0 117 -22.5t72.5 -59.5t24.5 -81q0 -35 -14 -58t-35 -38.5t-42 -28t-35.5 -26t-14.5 -32.5q0 -23 22.5 -40t91.5 -39q73 -25 105 -62.5t32 -94.5q0 -71 -49.5 -115.5t-135.5 -44.5z" />
561
+ <glyph glyph-name="t" unicode="t" horiz-adv-x="387"
562
+ d="M265 0q-68 0 -107 33t-39 119v273h-86v71h86l11 119h73v-119h146v-71h-146v-273q0 -47 19 -63.5t67 -16.5h52v-72h-76z" />
563
+ <glyph glyph-name="tcaron" unicode="&#x165;" horiz-adv-x="387"
564
+ d="M257 592v40q47 0 47 38v21h-48v83h88q5 -26 8 -45t3 -39q0 -52 -25.5 -75t-72.5 -23zM265 0q-68 0 -107 33t-39 119v273h-86v71h86l11 119h73v-119h146v-71h-146v-273q0 -47 19 -63.5t67 -16.5h52v-72h-76z" />
565
+ <glyph glyph-name="uni0163" unicode="&#x163;" horiz-adv-x="387"
566
+ d="M169 -260v54h92q68 0 68 47q0 45 -68 45h-49v119q-44 11 -68.5 45t-24.5 102v273h-86v71h86l11 119h73v-119h146v-71h-146v-273q0 -47 19 -63.5t67 -16.5h52v-72h-73v-63q57 1 93 -23.5t36 -72.5t-34 -74.5t-86 -26.5h-108z" />
567
+ <glyph glyph-name="uni021B" unicode="&#x21b;" horiz-adv-x="387"
568
+ d="M265 0q-68 0 -107 33t-39 119v273h-86v71h86l11 119h73v-119h146v-71h-146v-273q0 -47 19 -63.5t67 -16.5h52v-72h-76zM193 -238v40q47 0 47 57v14h-46v77h86q6 -20 8 -39t2 -35q0 -60 -25.5 -87t-71.5 -27z" />
569
+ <glyph glyph-name="u" unicode="u" horiz-adv-x="572"
570
+ d="M250 -12q-88 0 -140 53.5t-52 164.5v290h84v-281q0 -155 127 -155q65 0 107.5 46.5t42.5 132.5v257h84v-496h-76l-6 89q-23 -47 -68.5 -74t-102.5 -27z" />
571
+ <glyph glyph-name="uacute" unicode="&#xfa;" horiz-adv-x="572"
572
+ d="M250 -12q-88 0 -140 53.5t-52 164.5v290h84v-281q0 -155 127 -155q65 0 107.5 46.5t42.5 132.5v257h84v-496h-76l-6 89q-23 -47 -68.5 -74t-102.5 -27zM232 537v63l210 127v-73z" />
573
+ <glyph glyph-name="ubreve" unicode="&#x16d;" horiz-adv-x="572"
574
+ d="M250 -12q-88 0 -140 53.5t-52 164.5v290h84v-281q0 -155 127 -155q65 0 107.5 46.5t42.5 132.5v257h84v-496h-76l-6 89q-23 -47 -68.5 -74t-102.5 -27zM277 553q-69 0 -104.5 37.5t-35.5 92.5v14h50q0 -37 21 -57.5t69 -20.5t69 20.5t21 57.5h51v-14q0 -55 -36.5 -92.5
575
+ t-104.5 -37.5z" />
576
+ <glyph glyph-name="ucircumflex" unicode="&#xfb;" horiz-adv-x="572"
577
+ d="M250 -12q-88 0 -140 53.5t-52 164.5v290h84v-281q0 -155 127 -155q65 0 107.5 46.5t42.5 132.5v257h84v-496h-76l-6 89q-23 -47 -68.5 -74t-102.5 -27zM140 551v66l137 81l137 -81v-66l-137 84z" />
578
+ <glyph glyph-name="udieresis" unicode="&#xfc;" horiz-adv-x="572"
579
+ d="M250 -12q-88 0 -140 53.5t-52 164.5v290h84v-281q0 -155 127 -155q65 0 107.5 46.5t42.5 132.5v257h84v-496h-76l-6 89q-23 -47 -68.5 -74t-102.5 -27zM357 571q-21 0 -35.5 14.5t-14.5 35.5q0 20 14.5 35t35.5 15t35 -15t14 -35q0 -21 -14 -35.5t-35 -14.5zM197 571
580
+ q-21 0 -35.5 14.5t-14.5 35.5q0 20 14.5 35t35.5 15q20 0 35 -15t15 -35q0 -21 -15 -35.5t-35 -14.5z" />
581
+ <glyph glyph-name="ugrave" unicode="&#xf9;" horiz-adv-x="572"
582
+ d="M250 -12q-88 0 -140 53.5t-52 164.5v290h84v-281q0 -155 127 -155q65 0 107.5 46.5t42.5 132.5v257h84v-496h-76l-6 89q-23 -47 -68.5 -74t-102.5 -27zM321 537l-210 117v73l210 -127v-63z" />
583
+ <glyph glyph-name="uhungarumlaut" unicode="&#x171;" horiz-adv-x="572"
584
+ d="M250 -12q-88 0 -140 53.5t-52 164.5v290h84v-281q0 -155 127 -155q65 0 107.5 46.5t42.5 132.5v257h84v-496h-76l-6 89q-23 -47 -68.5 -74t-102.5 -27zM312 549l72 149h73l-89 -149h-56zM166 549l66 149h73l-82 -149h-57z" />
585
+ <glyph glyph-name="umacron" unicode="&#x16b;" horiz-adv-x="572"
586
+ d="M250 -12q-88 0 -140 53.5t-52 164.5v290h84v-281q0 -155 127 -155q65 0 107.5 46.5t42.5 132.5v257h84v-496h-76l-6 89q-23 -47 -68.5 -74t-102.5 -27zM102 592v63h347v-63h-347z" />
587
+ <glyph glyph-name="uogonek" unicode="&#x173;" horiz-adv-x="572"
588
+ d="M250 -12q-88 0 -140 53.5t-52 164.5v290h84v-281q0 -155 127 -155q65 0 107.5 46.5t42.5 132.5v257h84v-496h-76l-6 89q-23 -47 -68.5 -74t-102.5 -27zM431 -203q-30 0 -57 9.5t-44 30.5t-17 55q0 35 25.5 67t90.5 61l53 23l21 -43l-58 -28q-36 -18 -50 -35.5t-14 -36.5
589
+ q0 -23 16.5 -36t43.5 -13q30 0 65 15v-56q-37 -13 -75 -13z" />
590
+ <glyph glyph-name="uring" unicode="&#x16f;" horiz-adv-x="572"
591
+ d="M250 -12q-88 0 -140 53.5t-52 164.5v290h84v-281q0 -155 127 -155q65 0 107.5 46.5t42.5 132.5v257h84v-496h-76l-6 89q-23 -47 -68.5 -74t-102.5 -27zM277 557q-43 0 -74 27.5t-31 75.5t31 75.5t74 27.5q44 0 74.5 -27.5t30.5 -75.5t-30.5 -75.5t-74.5 -27.5zM277 600
592
+ q24 0 40.5 16.5t16.5 43.5t-16.5 43t-40.5 16t-40.5 -16t-16.5 -43t16.5 -43.5t40.5 -16.5z" />
593
+ <glyph glyph-name="utilde" unicode="&#x169;" horiz-adv-x="572"
594
+ d="M250 -12q-88 0 -140 53.5t-52 164.5v290h84v-281q0 -155 127 -155q65 0 107.5 46.5t42.5 132.5v257h84v-496h-76l-6 89q-23 -47 -68.5 -74t-102.5 -27zM341 552q-27 0 -45 12t-33.5 23.5t-36.5 11.5q-36 0 -42 -45h-49q7 51 32 76t63 25q26 0 44 -12t33.5 -23.5
595
+ t37.5 -11.5q16 0 28 11t15 34h49q-6 -49 -32 -75t-64 -26z" />
596
+ <glyph glyph-name="v" unicode="v" horiz-adv-x="521"
597
+ d="M212 0l-188 496h88l149 -415l150 415h86l-188 -496h-97z" />
598
+ <glyph glyph-name="w" unicode="w" horiz-adv-x="754"
599
+ d="M169 0l-145 496h84l105 -389l116 389h95l117 -389l104 389h85l-145 -496h-86l-122 409l-122 -409h-86z" />
600
+ <glyph glyph-name="wacute" unicode="&#x1e83;" horiz-adv-x="754"
601
+ d="M169 0l-145 496h84l105 -389l116 389h95l117 -389l104 389h85l-145 -496h-86l-122 409l-122 -409h-86zM332 537v63l210 127v-73z" />
602
+ <glyph glyph-name="wcircumflex" unicode="&#x175;" horiz-adv-x="754"
603
+ d="M169 0l-145 496h84l105 -389l116 389h95l117 -389l104 389h85l-145 -496h-86l-122 409l-122 -409h-86zM240 551v66l137 81l137 -81v-66l-137 84z" />
604
+ <glyph glyph-name="wdieresis" unicode="&#x1e85;" horiz-adv-x="754"
605
+ d="M169 0l-145 496h84l105 -389l116 389h95l117 -389l104 389h85l-145 -496h-86l-122 409l-122 -409h-86zM458 571q-21 0 -35.5 14.5t-14.5 35.5q0 20 14.5 35t35.5 15t35 -15t14 -35q0 -21 -14 -35.5t-35 -14.5zM298 571q-21 0 -35.5 14.5t-14.5 35.5q0 20 14.5 35t35.5 15
606
+ q20 0 35 -15t15 -35q0 -21 -15 -35.5t-35 -14.5z" />
607
+ <glyph glyph-name="wgrave" unicode="&#x1e81;" horiz-adv-x="754"
608
+ d="M169 0l-145 496h84l105 -389l116 389h95l117 -389l104 389h85l-145 -496h-86l-122 409l-122 -409h-86zM421 537l-210 117v73l210 -127v-63z" />
609
+ <glyph glyph-name="x" unicode="x" horiz-adv-x="498"
610
+ d="M19 0l172 248l-172 248h91l139 -205l140 205h90l-172 -248l172 -248h-90l-140 205l-139 -205h-91z" />
611
+ <glyph glyph-name="y" unicode="y" horiz-adv-x="556"
612
+ d="M123 -220l123 268h-29l-197 448h91l164 -386l174 386h87l-325 -716h-88z" />
613
+ <glyph glyph-name="yacute" unicode="&#xfd;" horiz-adv-x="556"
614
+ d="M123 -220l123 268h-29l-197 448h91l164 -386l174 386h87l-325 -716h-88zM232 537v63l210 127v-73z" />
615
+ <glyph glyph-name="ycircumflex" unicode="&#x177;" horiz-adv-x="556"
616
+ d="M123 -220l123 268h-29l-197 448h91l164 -386l174 386h87l-325 -716h-88zM139 551v66l137 81l137 -81v-66l-137 84z" />
617
+ <glyph glyph-name="ydieresis" unicode="&#xff;" horiz-adv-x="556"
618
+ d="M123 -220l123 268h-29l-197 448h91l164 -386l174 386h87l-325 -716h-88zM357 571q-21 0 -35.5 14.5t-14.5 35.5q0 20 14.5 35t35.5 15t35 -15t14 -35q0 -21 -14 -35.5t-35 -14.5zM197 571q-21 0 -35.5 14.5t-14.5 35.5q0 20 14.5 35t35.5 15q20 0 35 -15t15 -35
619
+ q0 -21 -15 -35.5t-35 -14.5z" />
620
+ <glyph glyph-name="ygrave" unicode="&#x1ef3;" horiz-adv-x="556"
621
+ d="M123 -220l123 268h-29l-197 448h91l164 -386l174 386h87l-325 -716h-88zM321 537l-210 117v73l210 -127v-63z" />
622
+ <glyph glyph-name="uni1EF9" unicode="&#x1ef9;" horiz-adv-x="556"
623
+ d="M123 -220l123 268h-29l-197 448h91l164 -386l174 386h87l-325 -716h-88zM341 552q-27 0 -45 12t-33.5 23.5t-36.5 11.5q-36 0 -42 -45h-49q7 51 32 76t63 25q26 0 44 -12t33.5 -23.5t37.5 -11.5q16 0 28 11t15 34h49q-6 -49 -32 -75t-64 -26z" />
624
+ <glyph glyph-name="z" unicode="z" horiz-adv-x="452"
625
+ d="M35 0v69l276 357h-271v70h365v-69l-276 -357h281v-70h-375z" />
626
+ <glyph glyph-name="zacute" unicode="&#x17a;" horiz-adv-x="452"
627
+ d="M35 0v69l276 357h-271v70h365v-69l-276 -357h281v-70h-375zM180 537v63l210 127v-73z" />
628
+ <glyph glyph-name="zcaron" unicode="&#x17e;" horiz-adv-x="452"
629
+ d="M35 0v69l276 357h-271v70h365v-69l-276 -357h281v-70h-375zM224 550l-137 82v65l137 -84l137 84v-65z" />
630
+ <glyph glyph-name="zdotaccent" unicode="&#x17c;" horiz-adv-x="452"
631
+ d="M35 0v69l276 357h-271v70h365v-69l-276 -357h281v-70h-375zM224 562q-21 0 -35.5 15t-14.5 35q0 21 14.5 35.5t35.5 14.5q20 0 35 -14.5t15 -35.5q0 -20 -15 -35t-35 -15z" />
632
+ <glyph glyph-name="a.ss02" horiz-adv-x="628"
633
+ d="M294 -12q-74 0 -129.5 34t-86 93t-30.5 134t31 133.5t86 92t130 33.5q61 0 108 -25t73 -70l4 83h80v-496h-79l-5 82q-24 -36 -69 -65t-113 -29zM303 61q50 0 88.5 23.5t60 65.5t21.5 98t-21.5 98t-60 65.5t-88.5 23.5q-49 0 -87.5 -23.5t-60 -65.5t-21.5 -98t21.5 -98
634
+ t60 -65.5t87.5 -23.5z" />
635
+ <glyph glyph-name="aacute.ss02" horiz-adv-x="628"
636
+ d="M294 -12q-74 0 -129.5 34t-86 93t-30.5 134t31 133.5t86 92t130 33.5q61 0 108 -25t73 -70l4 83h80v-496h-79l-5 82q-24 -36 -69 -65t-113 -29zM303 61q50 0 88.5 23.5t60 65.5t21.5 98t-21.5 98t-60 65.5t-88.5 23.5q-49 0 -87.5 -23.5t-60 -65.5t-21.5 -98t21.5 -98
637
+ t60 -65.5t87.5 -23.5zM256 534v63l210 127v-73z" />
638
+ <glyph glyph-name="abreve.ss02" horiz-adv-x="628"
639
+ d="M294 -12q-74 0 -129.5 34t-86 93t-30.5 134t31 133.5t86 92t130 33.5q61 0 108 -25t73 -70l4 83h80v-496h-79l-5 82q-24 -36 -69 -65t-113 -29zM303 61q50 0 88.5 23.5t60 65.5t21.5 98t-21.5 98t-60 65.5t-88.5 23.5q-49 0 -87.5 -23.5t-60 -65.5t-21.5 -98t21.5 -98
640
+ t60 -65.5t87.5 -23.5zM300 550q-69 0 -104.5 37.5t-35.5 92.5v14h50q0 -37 21 -57.5t69 -20.5t69 20.5t21 57.5h51v-14q0 -55 -36.5 -92.5t-104.5 -37.5z" />
641
+ <glyph glyph-name="acircumflex.ss02" horiz-adv-x="628"
642
+ d="M294 -12q-74 0 -129.5 34t-86 93t-30.5 134t31 133.5t86 92t130 33.5q61 0 108 -25t73 -70l4 83h80v-496h-79l-5 82q-24 -36 -69 -65t-113 -29zM303 61q50 0 88.5 23.5t60 65.5t21.5 98t-21.5 98t-60 65.5t-88.5 23.5q-49 0 -87.5 -23.5t-60 -65.5t-21.5 -98t21.5 -98
643
+ t60 -65.5t87.5 -23.5zM163 548v66l137 81l137 -81v-66l-137 84z" />
644
+ <glyph glyph-name="adieresis.ss02" horiz-adv-x="628"
645
+ d="M294 -12q-74 0 -129.5 34t-86 93t-30.5 134t31 133.5t86 92t130 33.5q61 0 108 -25t73 -70l4 83h80v-496h-79l-5 82q-24 -36 -69 -65t-113 -29zM303 61q50 0 88.5 23.5t60 65.5t21.5 98t-21.5 98t-60 65.5t-88.5 23.5q-49 0 -87.5 -23.5t-60 -65.5t-21.5 -98t21.5 -98
646
+ t60 -65.5t87.5 -23.5zM381 568q-21 0 -35.5 14.5t-14.5 35.5q0 20 14.5 35t35.5 15t35 -15t14 -35q0 -21 -14 -35.5t-35 -14.5zM221 568q-21 0 -35.5 14.5t-14.5 35.5q0 20 14.5 35t35.5 15q20 0 35 -15t15 -35q0 -21 -15 -35.5t-35 -14.5z" />
647
+ <glyph glyph-name="agrave.ss02" horiz-adv-x="628"
648
+ d="M294 -12q-74 0 -129.5 34t-86 93t-30.5 134t31 133.5t86 92t130 33.5q61 0 108 -25t73 -70l4 83h80v-496h-79l-5 82q-24 -36 -69 -65t-113 -29zM303 61q50 0 88.5 23.5t60 65.5t21.5 98t-21.5 98t-60 65.5t-88.5 23.5q-49 0 -87.5 -23.5t-60 -65.5t-21.5 -98t21.5 -98
649
+ t60 -65.5t87.5 -23.5zM345 534l-210 117v73l210 -127v-63z" />
650
+ <glyph glyph-name="amacron.ss02" horiz-adv-x="628"
651
+ d="M294 -12q-74 0 -129.5 34t-86 93t-30.5 134t31 133.5t86 92t130 33.5q61 0 108 -25t73 -70l4 83h80v-496h-79l-5 82q-24 -36 -69 -65t-113 -29zM303 61q50 0 88.5 23.5t60 65.5t21.5 98t-21.5 98t-60 65.5t-88.5 23.5q-49 0 -87.5 -23.5t-60 -65.5t-21.5 -98t21.5 -98
652
+ t60 -65.5t87.5 -23.5zM126 589v63h347v-63h-347z" />
653
+ <glyph glyph-name="aogonek.ss02" horiz-adv-x="628"
654
+ d="M294 -12q-74 0 -129.5 34t-86 93t-30.5 134t31 133.5t86 92t130 33.5q61 0 108 -25t73 -70l4 83h80v-496h-79l-5 82q-24 -36 -69 -65t-113 -29zM303 61q50 0 88.5 23.5t60 65.5t21.5 98t-21.5 98t-60 65.5t-88.5 23.5q-49 0 -87.5 -23.5t-60 -65.5t-21.5 -98t21.5 -98
655
+ t60 -65.5t87.5 -23.5zM488 -203q-30 0 -57 9.5t-44 30.5t-17 55q0 35 25.5 67t90.5 61l53 23l21 -43l-58 -28q-36 -18 -50 -35.5t-14 -36.5q0 -23 16.5 -36t43.5 -13q30 0 65 15v-56q-37 -13 -75 -13z" />
656
+ <glyph glyph-name="aring.ss02" horiz-adv-x="628"
657
+ d="M294 -12q-74 0 -129.5 34t-86 93t-30.5 134t31 133.5t86 92t130 33.5q61 0 108 -25t73 -70l4 83h80v-496h-79l-5 82q-24 -36 -69 -65t-113 -29zM303 61q50 0 88.5 23.5t60 65.5t21.5 98t-21.5 98t-60 65.5t-88.5 23.5q-49 0 -87.5 -23.5t-60 -65.5t-21.5 -98t21.5 -98
658
+ t60 -65.5t87.5 -23.5zM300 554q-43 0 -74 27.5t-31 75.5t31 75.5t74 27.5q44 0 74.5 -27.5t30.5 -75.5t-30.5 -75.5t-74.5 -27.5zM300 597q24 0 40.5 16.5t16.5 43.5t-16.5 43t-40.5 16t-40.5 -16t-16.5 -43t16.5 -43.5t40.5 -16.5z" />
659
+ <glyph glyph-name="atilde.ss02" horiz-adv-x="628"
660
+ d="M294 -12q-74 0 -129.5 34t-86 93t-30.5 134t31 133.5t86 92t130 33.5q61 0 108 -25t73 -70l4 83h80v-496h-79l-5 82q-24 -36 -69 -65t-113 -29zM303 61q50 0 88.5 23.5t60 65.5t21.5 98t-21.5 98t-60 65.5t-88.5 23.5q-49 0 -87.5 -23.5t-60 -65.5t-21.5 -98t21.5 -98
661
+ t60 -65.5t87.5 -23.5zM365 549q-27 0 -45 12t-33.5 23.5t-36.5 11.5q-36 0 -42 -45h-49q7 51 32 76t63 25q26 0 44 -12t33.5 -23.5t37.5 -11.5q16 0 28 11t15 34h49q-6 -49 -32 -75t-64 -26z" />
662
+ <glyph glyph-name="ae.ss02" horiz-adv-x="999"
663
+ d="M295 -12q-74 0 -129.5 34t-86.5 93t-31 134t31 133.5t86 92t130 33.5q58 0 103.5 -23t72.5 -64l6 75h74v-61q67 73 175 73q72 0 123.5 -32.5t79.5 -85.5t28 -114v-22t-1 -25h-395q3 -57 26.5 -94.5t59.5 -56.5t75 -19q56 0 93 28t53 76h81q-18 -75 -76 -125t-150 -50
664
+ q-52 0 -96 19t-76 52v-59h-74l-6 61q-39 -44 -84 -58.5t-92 -14.5zM562 294h312q-3 67 -45.5 105t-106.5 38q-60 0 -106.5 -36.5t-53.5 -106.5zM303 61q50 0 88.5 23.5t60 65.5t21.5 98t-21.5 98t-60 65.5t-88.5 23.5q-49 0 -87.5 -23.5t-60 -65.5t-21.5 -98t21.5 -98
665
+ t60 -65.5t87.5 -23.5z" />
666
+ <glyph glyph-name="aeacute.ss02" horiz-adv-x="999"
667
+ d="M295 -12q-74 0 -129.5 34t-86.5 93t-31 134t31 133.5t86 92t130 33.5q58 0 103.5 -23t72.5 -64l6 75h74v-61q67 73 175 73q72 0 123.5 -32.5t79.5 -85.5t28 -114v-22t-1 -25h-395q3 -57 26.5 -94.5t59.5 -56.5t75 -19q56 0 93 28t53 76h81q-18 -75 -76 -125t-150 -50
668
+ q-52 0 -96 19t-76 52v-59h-74l-6 61q-39 -44 -84 -58.5t-92 -14.5zM562 294h312q-3 67 -45.5 105t-106.5 38q-60 0 -106.5 -36.5t-53.5 -106.5zM303 61q50 0 88.5 23.5t60 65.5t21.5 98t-21.5 98t-60 65.5t-88.5 23.5q-49 0 -87.5 -23.5t-60 -65.5t-21.5 -98t21.5 -98
669
+ t60 -65.5t87.5 -23.5zM473 537v63l210 127v-73z" />
670
+ <glyph glyph-name="g.ss03" horiz-adv-x="644"
671
+ d="M319 -232q-65 0 -119 22.5t-89.5 64.5t-46.5 102h83q16 -52 61.5 -84t109.5 -32q73 0 123 47t50 140v72q-24 -42 -72 -76t-121 -34q-70 0 -126.5 34t-90 93t-33.5 133t33.5 132.5t90.5 92t127 33.5q66 0 116 -29.5t76 -71.5l8 89h76v-467q0 -81 -33 -139.5t-91 -90
672
+ t-132 -31.5zM311 63q51 0 90.5 24t63 66t23.5 97t-23.5 97t-63 65t-90.5 23q-50 0 -90 -23t-63.5 -65t-23.5 -97t23.5 -97t63.5 -66t90 -24z" />
673
+ <glyph glyph-name="gbreve.ss03" horiz-adv-x="644"
674
+ d="M319 -232q-65 0 -119 22.5t-89.5 64.5t-46.5 102h83q16 -52 61.5 -84t109.5 -32q73 0 123 47t50 140v72q-24 -42 -72 -76t-121 -34q-70 0 -126.5 34t-90 93t-33.5 133t33.5 132.5t90.5 92t127 33.5q66 0 116 -29.5t76 -71.5l8 89h76v-467q0 -81 -33 -139.5t-91 -90
675
+ t-132 -31.5zM311 63q51 0 90.5 24t63 66t23.5 97t-23.5 97t-63 65t-90.5 23q-50 0 -90 -23t-63.5 -65t-23.5 -97t23.5 -97t63.5 -66t90 -24zM309 553q-69 0 -104.5 37.5t-35.5 92.5v14h50q0 -37 21 -57.5t69 -20.5t69 20.5t21 57.5h51v-14q0 -55 -36.5 -92.5t-104.5 -37.5z
676
+ " />
677
+ <glyph glyph-name="uni0123.ss03" horiz-adv-x="644"
678
+ d="M258 595q-10 51 -10 90q0 57 25 83.5t72 26.5v-40q-47 0 -47 -53v-23h48v-84h-88zM319 -232q-65 0 -119 22.5t-89.5 64.5t-46.5 102h83q16 -52 61.5 -84t109.5 -32q73 0 123 47t50 140v72q-24 -42 -72 -76t-121 -34q-70 0 -126.5 34t-90 93t-33.5 133t33.5 132.5t90.5 92
679
+ t127 33.5q66 0 116 -29.5t76 -71.5l8 89h76v-467q0 -81 -33 -139.5t-91 -90t-132 -31.5zM311 63q51 0 90.5 24t63 66t23.5 97t-23.5 97t-63 65t-90.5 23q-50 0 -90 -23t-63.5 -65t-23.5 -97t23.5 -97t63.5 -66t90 -24z" />
680
+ <glyph glyph-name="gdotaccent.ss03" horiz-adv-x="644"
681
+ d="M319 -232q-65 0 -119 22.5t-89.5 64.5t-46.5 102h83q16 -52 61.5 -84t109.5 -32q73 0 123 47t50 140v72q-24 -42 -72 -76t-121 -34q-70 0 -126.5 34t-90 93t-33.5 133t33.5 132.5t90.5 92t127 33.5q66 0 116 -29.5t76 -71.5l8 89h76v-467q0 -81 -33 -139.5t-91 -90
682
+ t-132 -31.5zM311 63q51 0 90.5 24t63 66t23.5 97t-23.5 97t-63 65t-90.5 23q-50 0 -90 -23t-63.5 -65t-23.5 -97t23.5 -97t63.5 -66t90 -24zM309 562q-21 0 -35.5 15t-14.5 35q0 21 14.5 35.5t35.5 14.5q20 0 35 -14.5t15 -35.5q0 -20 -15 -35t-35 -15z" />
683
+ <glyph glyph-name="ordfeminine" unicode="&#xaa;" horiz-adv-x="448"
684
+ d="M201 347q-48 0 -86 23.5t-59.5 64.5t-21.5 94q0 54 21.5 94.5t58.5 63t85 22.5q51 0 85 -21.5t49 -53.5l7 69h60v-350h-60l-7 69q-14 -33 -48 -54t-84 -21zM217 400q49 0 82.5 34t33.5 94q0 61 -33.5 94.5t-82.5 33.5q-47 0 -80.5 -33.5t-33.5 -93.5q0 -61 33.5 -95
685
+ t80.5 -34z" />
686
+ <glyph glyph-name="ordmasculine" unicode="&#xba;" horiz-adv-x="433"
687
+ d="M216 348q-53 0 -94 23t-64.5 64t-23.5 95q0 55 24 96t65.5 63.5t93.5 22.5q53 0 94.5 -22.5t65 -63.5t23.5 -96q0 -54 -24 -95t-66 -64t-94 -23zM216 403q46 0 80.5 32.5t34.5 94.5q0 63 -34 96t-81 33q-46 0 -79.5 -33t-33.5 -96q0 -62 33 -94.5t80 -32.5z" />
688
+ <glyph glyph-name="pi" unicode="&#x3c0;" horiz-adv-x="646"
689
+ d="M125 0v430h-79v66h554v-66h-79v-430h-84v430h-228v-430h-84z" />
690
+ <glyph glyph-name="zero" unicode="0" horiz-adv-x="693"
691
+ d="M347 -12q-93 0 -160.5 45.5t-103.5 127t-36 189.5t36 189.5t103.5 127t160.5 45.5t160 -45.5t103 -127t36 -189.5t-36 -189.5t-103 -127t-160 -45.5zM347 62q61 0 109.5 34.5t76 99t27.5 154.5t-27.5 154t-76 98.5t-109.5 34.5q-62 0 -110 -34.5t-76 -98.5t-28 -154
692
+ t28 -154.5t76 -99t110 -34.5z" />
693
+ <glyph glyph-name="one" unicode="1" horiz-adv-x="302"
694
+ d="M143 0v606l-113 -25v58l141 61h57v-700h-85z" />
695
+ <glyph glyph-name="two" unicode="2" horiz-adv-x="572"
696
+ d="M63 0v59q71 56 134.5 113.5t113 113.5t78 110t28.5 104q0 37 -12.5 69t-40.5 51.5t-76 19.5q-46 0 -77 -20.5t-46.5 -54.5t-15.5 -73h-81q0 69 29 118.5t79 75.5t113 26q93 0 152.5 -52.5t59.5 -156.5q0 -62 -31 -122.5t-79 -117t-102.5 -105.5t-101.5 -88h338v-70h-462z
697
+ " />
698
+ <glyph glyph-name="three" unicode="3" horiz-adv-x="588"
699
+ d="M292 -12q-67 0 -121 24.5t-86.5 73.5t-34.5 122h85q1 -60 42 -103.5t115 -43.5t111.5 41t37.5 99q0 49 -23.5 80t-63 46t-86.5 15h-52v71h52q68 0 106.5 31t38.5 87q0 47 -30.5 77.5t-90.5 30.5q-58 0 -93 -34.5t-39 -86.5h-85q3 57 30.5 101t75.5 68.5t111 24.5
700
+ q68 0 113.5 -24t69 -64t23.5 -88q0 -53 -29 -96.5t-87 -58.5q62 -13 103 -59t41 -121q0 -58 -26.5 -106.5t-78.5 -77.5t-129 -29z" />
701
+ <glyph glyph-name="four" unicode="4" horiz-adv-x="605"
702
+ d="M391 0v150h-355v65l340 485h98v-476h104v-74h-104v-150h-83zM129 224h266v383z" />
703
+ <glyph glyph-name="five" unicode="5" horiz-adv-x="612"
704
+ d="M312 -12q-72 0 -125 26t-84.5 71.5t-38.5 103.5h82q12 -58 56 -93.5t111 -35.5q50 0 86 23.5t55.5 63.5t19.5 89q0 78 -44 126t-114 48q-58 0 -99 -26t-60 -68h-80l60 384h367v-73h-302l-41 -213q24 29 66.5 48t97.5 19q69 0 120.5 -32t80.5 -87t29 -125
705
+ q0 -67 -28.5 -124t-83 -91t-131.5 -34z" />
706
+ <glyph glyph-name="six" unicode="6" horiz-adv-x="630"
707
+ d="M326 -12q-76 0 -128 28.5t-83.5 76.5t-46 107.5t-14.5 121.5q0 116 32 203.5t92.5 137t146.5 49.5q66 0 113 -26t74.5 -69.5t34.5 -96.5h-78q-11 57 -49 88t-96 31q-79 0 -132.5 -74.5t-57.5 -232.5q24 47 76.5 81.5t126.5 34.5q60 0 112.5 -28t85.5 -78.5t33 -118.5
708
+ q0 -59 -29 -113t-83.5 -88t-129.5 -34zM320 62q47 0 84 20t58 55.5t21 81.5q0 71 -46.5 113.5t-116.5 42.5q-47 0 -84 -21.5t-58.5 -57.5t-21.5 -78q0 -45 21.5 -80.5t58.5 -55.5t84 -20z" />
709
+ <glyph glyph-name="seven" unicode="7" horiz-adv-x="533"
710
+ d="M132 0l278 628h-384v72h470v-63l-275 -637h-89z" />
711
+ <glyph glyph-name="eight" unicode="8" horiz-adv-x="610"
712
+ d="M305 -12q-69 0 -124 25.5t-86.5 71t-31.5 105.5q0 64 37.5 115t99.5 68q-57 19 -88 61t-31 92q0 51 27 93.5t77 67.5t120 25t120 -25t77 -67.5t27 -93.5q0 -49 -31 -91.5t-88 -61.5q62 -17 99.5 -68t37.5 -115q0 -60 -31.5 -105.5t-86.5 -71t-124 -25.5zM305 403
713
+ q64 0 101.5 32.5t37.5 85.5q0 59 -37 89t-102 30t-101.5 -30t-36.5 -89q0 -53 37 -85.5t101 -32.5zM305 62q79 0 118.5 36.5t39.5 96.5q0 68 -43 103t-115 35t-115 -35t-43 -103q0 -60 39.5 -96.5t118.5 -36.5z" />
714
+ <glyph glyph-name="nine" unicode="9" horiz-adv-x="630"
715
+ d="M305 -12q-66 0 -113 26t-74.5 69.5t-33.5 96.5h78q10 -57 48 -88t96 -31q80 0 133 74.5t57 232.5q-24 -47 -76.5 -81.5t-126.5 -34.5q-59 0 -112 28t-86 78.5t-33 118.5q0 59 29.5 113t83.5 88t129 34q76 0 128 -28.5t83.5 -76.5t46 -107.5t14.5 -121.5
716
+ q0 -116 -32 -203.5t-92.5 -137t-146.5 -49.5zM310 325q47 0 84 21.5t59 57.5t22 78q0 45 -22 80.5t-59 55.5t-84 20t-84 -20t-58 -55.5t-21 -81.5q0 -71 46.5 -113.5t116.5 -42.5z" />
717
+ <glyph glyph-name="three.ss04" horiz-adv-x="597"
718
+ d="M297 -5q-101 0 -168.5 54t-76.5 159h83q8 -61 48.5 -102t114.5 -41q73 0 115 40t42 111q0 72 -41.5 112.5t-114.5 40.5h-100v59l203 201h-305v71h409v-64l-207 -203h4q110 0 172 -57t62 -161q0 -101 -64.5 -160.5t-175.5 -59.5z" />
719
+ <glyph glyph-name="six.ss04" horiz-adv-x="591"
720
+ d="M296 -12q-75 0 -131 32.5t-86.5 87.5t-30.5 124q0 53 17.5 103.5t55.5 105.5l174 259h99l-168 -246q19 6 39 10t42 4q71 0 123.5 -29.5t82.5 -83t30 -123.5q0 -72 -31.5 -127t-87 -86t-128.5 -31zM296 65q75 0 119 45.5t44 120.5t-44 121t-119 46q-74 0 -118.5 -45.5
721
+ t-44.5 -120.5t44.5 -121t118.5 -46z" />
722
+ <glyph glyph-name="nine.ss04" horiz-adv-x="591"
723
+ d="M197 0l168 246q-19 -6 -39 -10t-42 -4q-71 0 -124 29.5t-82.5 83t-29.5 123.5q0 72 31.5 127t87 86t127.5 31q76 0 132 -32.5t86.5 -87.5t30.5 -124q0 -53 -17.5 -103.5t-55.5 -105.5l-174 -259h-99zM294 302q75 0 119.5 45.5t44.5 120.5t-44.5 121t-119.5 46
724
+ q-74 0 -118 -45.5t-44 -120.5t44 -121t118 -46z" />
725
+ <glyph glyph-name="uni00B9" unicode="&#xb9;" horiz-adv-x="204"
726
+ d="M95 352v286l-67 -18v42l90 42h44v-352h-67z" />
727
+ <glyph glyph-name="uni00B2" unicode="&#xb2;" horiz-adv-x="330"
728
+ d="M35 352v48l112 92q29 24 48.5 49t19.5 59q0 30 -16 44.5t-39 14.5q-53 0 -60 -59h-67q3 46 36 78t95 32q57 0 89.5 -31.5t32.5 -75.5q0 -41 -24.5 -72t-71.5 -65l-81 -60h181v-54h-255z" />
729
+ <glyph glyph-name="uni00B3" unicode="&#xb3;" horiz-adv-x="330"
730
+ d="M161 347q-60 0 -95 27.5t-40 79.5h67q4 -32 22.5 -44t44.5 -12q30 0 47.5 14.5t17.5 39.5q0 27 -19.5 41.5t-48.5 14.5h-46v41h45q29 0 47.5 14t18.5 41q0 25 -17 39.5t-46 14.5t-44.5 -12.5t-21.5 -34.5h-63q4 42 39 70.5t96 28.5q54 0 91 -29t37 -73q0 -31 -17.5 -51
731
+ t-47.5 -28v-2q29 -9 48.5 -29.5t19.5 -53.5q0 -40 -36 -68.5t-99 -28.5z" />
732
+ <glyph glyph-name="uni2074" unicode="&#x2074;" horiz-adv-x="321"
733
+ d="M193 352v66h-172v50l164 232h74v-228h46v-54h-46v-66h-66zM91 472h107v156z" />
734
+ <glyph glyph-name="fraction" unicode="&#x2044;" horiz-adv-x="431"
735
+ d="M-24 0l407 700h85l-408 -700h-84z" />
736
+ <glyph glyph-name="onehalf" unicode="&#xbd;" horiz-adv-x="674"
737
+ d="M105 352v286l-67 -18v42l91 42h43v-352h-67zM57 0l363 700h81l-363 -700h-81zM365 -1v48l113 92q28 24 48 49t20 59q0 30 -16 44.5t-39 14.5q-53 0 -60 -59h-67q3 46 35.5 78t94.5 32q57 0 89.5 -31.5t32.5 -75.5q0 -41 -24 -72t-71 -65l-81 -60h181v-54h-256z" />
738
+ <glyph glyph-name="onequarter" unicode="&#xbc;" horiz-adv-x="625"
739
+ d="M105 352v286l-67 -18v42l91 42h43v-352h-67zM61 0l370 700h79l-368 -700h-81zM476 0v70h-181v39l160 245h88v-241h48v-43h-48v-70h-67zM362 114h116v178z" />
740
+ <glyph glyph-name="threequarters" unicode="&#xbe;" horiz-adv-x="716"
741
+ d="M175 347q-61 0 -96 27.5t-39 79.5h66q4 -32 22.5 -44t45.5 -12q29 0 46.5 14.5t17.5 39.5q0 27 -19 41.5t-49 14.5h-46v41h45q29 0 48 14t19 41q0 25 -17 39.5t-46 14.5t-45 -12.5t-21 -34.5h-64q5 42 39.5 70.5t95.5 28.5q55 0 92 -29t37 -73q0 -31 -17.5 -51t-47.5 -28
742
+ v-2q29 -9 48 -29.5t19 -53.5q0 -40 -36 -68.5t-98 -28.5zM154 0l378 700h79l-377 -700h-80zM567 0v70h-181v39l159 245h89v-241h48v-43h-48v-70h-67zM453 113h116v180z" />
743
+ <glyph glyph-name="period" unicode="." horiz-adv-x="195"
744
+ d="M98 -5q-25 0 -41.5 16.5t-16.5 40.5t16.5 40.5t41.5 16.5q24 0 40.5 -16.5t16.5 -40.5t-16.5 -40.5t-40.5 -16.5z" />
745
+ <glyph glyph-name="comma" unicode="," horiz-adv-x="178"
746
+ d="M2 -119l58 221h87l-87 -221h-58z" />
747
+ <glyph glyph-name="colon" unicode=":" horiz-adv-x="199"
748
+ d="M98 -5q-25 0 -41.5 16.5t-16.5 40.5t16.5 40.5t41.5 16.5q24 0 40.5 -16.5t16.5 -40.5t-16.5 -40.5t-40.5 -16.5zM98 394q-25 0 -41.5 16.5t-16.5 40.5t16.5 40.5t41.5 16.5q24 0 40.5 -16.5t16.5 -40.5t-16.5 -40.5t-40.5 -16.5z" />
749
+ <glyph glyph-name="semicolon" unicode=";" horiz-adv-x="223"
750
+ d="M123 394q-25 0 -41.5 16.5t-16.5 40.5t16.5 40.5t41.5 16.5q24 0 40.5 -16.5t16.5 -40.5t-16.5 -40.5t-40.5 -16.5zM23 -119l58 221h87l-87 -221h-58z" />
751
+ <glyph glyph-name="ellipsis" unicode="&#x2026;" horiz-adv-x="563"
752
+ d="M282 -5q-25 0 -41.5 16.5t-16.5 40.5t16.5 40.5t41.5 16.5q24 0 40.5 -16.5t16.5 -40.5t-16.5 -40.5t-40.5 -16.5zM466 -5q-25 0 -41.5 16.5t-16.5 40.5t16.5 40.5t41.5 16.5q24 0 40.5 -16.5t16.5 -40.5t-16.5 -40.5t-40.5 -16.5zM98 -5q-25 0 -41.5 16.5t-16.5 40.5
753
+ t16.5 40.5t41.5 16.5q24 0 40.5 -16.5t16.5 -40.5t-16.5 -40.5t-40.5 -16.5z" />
754
+ <glyph glyph-name="exclam" unicode="!" horiz-adv-x="248"
755
+ d="M87 194l-10 506h91l-10 -506h-71zM125 -5q-25 0 -41.5 16.5t-16.5 40.5t16.5 40.5t41.5 16.5q24 0 40.5 -16.5t16.5 -40.5t-16.5 -40.5t-40.5 -16.5z" />
756
+ <glyph glyph-name="exclamdown" unicode="&#xa1;" horiz-adv-x="248"
757
+ d="M125 448q-25 0 -41.5 16.5t-16.5 40.5t16.5 41t41.5 17q24 0 40.5 -17t16.5 -41t-16.5 -40.5t-40.5 -16.5zM77 -143l10 506h71l10 -506h-91z" />
758
+ <glyph glyph-name="question" unicode="?" horiz-adv-x="516"
759
+ d="M151 196l-4 161h31q56 0 104.5 11t78.5 43t30 96q0 62 -38.5 98t-101.5 36q-64 0 -101 -35t-37 -94h-80q0 60 27.5 105t76.5 70t114 25t115 -25t78 -71t28 -109q0 -74 -31.5 -120t-87 -67t-126.5 -21l-3 -103h-73zM187 -5q-25 0 -41.5 16.5t-16.5 40.5t16.5 40.5
760
+ t41.5 16.5t41 -16.5t16 -40.5t-16 -40.5t-41 -16.5z" />
761
+ <glyph glyph-name="questiondown" unicode="&#xbf;" horiz-adv-x="516"
762
+ d="M328 439q-24 0 -40.5 16.5t-16.5 40.5t16.5 41t40.5 17q25 0 41.5 -17t16.5 -41t-16.5 -40.5t-41.5 -16.5zM264 -164q-65 0 -114.5 25.5t-77.5 71.5t-28 109q0 74 31.5 119.5t86.5 67t126 21.5l3 103h73l4 -162h-31q-56 0 -104.5 -10.5t-78.5 -42.5t-30 -96q0 -62 39 -98
763
+ t101 -36q64 0 101 34.5t37 94.5h80q1 -60 -26.5 -105.5t-77 -70.5t-114.5 -25z" />
764
+ <glyph glyph-name="periodcentered" unicode="&#xb7;" horiz-adv-x="195"
765
+ d="M98 285q-25 0 -41.5 16.5t-16.5 40.5q0 25 16.5 41t41.5 16q24 0 40.5 -16t16.5 -41q0 -24 -16.5 -40.5t-40.5 -16.5z" />
766
+ <glyph glyph-name="bullet" unicode="&#x2022;" horiz-adv-x="358"
767
+ d="M178 213q-32 0 -59.5 16t-43.5 43.5t-16 60.5q0 34 16 61.5t43.5 43.5t59.5 16q34 0 61.5 -16t43.5 -43.5t16 -61.5q0 -33 -16 -60.5t-43.5 -43.5t-61.5 -16z" />
768
+ <glyph glyph-name="asterisk" unicode="*" horiz-adv-x="478"
769
+ d="M208 360l12 153l-124 -87l-35 61l139 61l-138 60l33 59l126 -87l-14 153h68l-15 -153l125 87l32 -58l-138 -62l139 -61l-33 -59l-125 86l14 -153h-66z" />
770
+ <glyph glyph-name="numbersign" unicode="#" horiz-adv-x="814"
771
+ d="M145 0l43 197h-142v75h158l34 163h-150v74h166l42 197h80l-42 -197h215l42 197h79l-42 -197h139v-74h-155l-34 -163h145v-75h-161l-43 -197h-80l43 197h-215l-42 -197h-80zM283 272h215l35 163h-215z" />
772
+ <glyph glyph-name="slash" unicode="/" horiz-adv-x="391"
773
+ d="M28 -95l251 859h83l-251 -859h-83z" />
774
+ <glyph glyph-name="backslash" unicode="\" horiz-adv-x="391"
775
+ d="M280 -95l-252 859h84l250 -859h-82z" />
776
+ <glyph glyph-name="comma.ss01" horiz-adv-x="172"
777
+ d="M34 -98v39q26 0 36.5 13.5t10.5 40.5v24h-48v82h88q6 -26 8.5 -48.5t2.5 -41.5q0 -57 -25 -83t-73 -26z" />
778
+ <glyph glyph-name="parenleft" unicode="(" horiz-adv-x="372"
779
+ d="M248 -145q-54 52 -100 123.5t-73.5 161t-27.5 193.5t27.5 193.5t73.5 161t100 123.5h86v-8q-92 -90 -147.5 -210.5t-55.5 -259.5t56 -259.5t147 -210.5v-8h-86z" />
780
+ <glyph glyph-name="parenright" unicode=")" horiz-adv-x="372"
781
+ d="M38 -145v8q91 90 147.5 210.5t56.5 259.5t-56 259.5t-147 210.5v8h85q55 -52 100.5 -123.5t73 -161t27.5 -193.5t-27.5 -193.5t-73 -161t-100.5 -123.5h-86z" />
782
+ <glyph glyph-name="braceleft" unicode="{" horiz-adv-x="425"
783
+ d="M320 -152q-68 0 -110 37.5t-42 112.5q0 34 5.5 61.5t11 56.5t5.5 68q0 36 -21 67.5t-82 44.5v68q61 13 82 44t21 68q0 38 -5.5 67t-11 56.5t-5.5 61.5q0 76 42 113t110 37h53v-72h-38q-42 0 -63.5 -19.5t-21.5 -65.5q0 -29 5 -55.5t10.5 -56t5.5 -69.5q0 -53 -26.5 -91
784
+ t-84.5 -51v-2q58 -14 84.5 -52t26.5 -91q0 -39 -5.5 -68.5t-10.5 -56t-5 -56.5q0 -45 21.5 -65t63.5 -20h38v-72h-53z" />
785
+ <glyph glyph-name="braceright" unicode="}" horiz-adv-x="425"
786
+ d="M52 -152v72h38q41 0 63 20t22 65q0 30 -5 56.5t-10.5 56t-5.5 68.5q0 53 26 91t85 52v2q-59 13 -85 51t-26 91q0 40 5.5 69.5t10.5 56t5 55.5q0 46 -22 65.5t-63 19.5h-38v72h53q68 0 109.5 -37t41.5 -113q0 -34 -5 -61.5t-10.5 -56.5t-5.5 -67q0 -37 21 -68t82 -44v-68
787
+ q-61 -13 -82 -44.5t-21 -67.5q0 -39 5.5 -68t10.5 -56.5t5 -61.5q0 -75 -41.5 -112.5t-109.5 -37.5h-53z" />
788
+ <glyph glyph-name="bracketleft" unicode="[" horiz-adv-x="307"
789
+ d="M74 -151v962h174v-69h-95v-823h95v-70h-174z" />
790
+ <glyph glyph-name="bracketright" unicode="]" horiz-adv-x="307"
791
+ d="M59 -151v70h95v823h-95v69h174v-962h-174z" />
792
+ <glyph glyph-name="hyphen" unicode="-" horiz-adv-x="513"
793
+ d="M59 255v71h396v-71h-396z" />
794
+ <glyph glyph-name="uni00AD" unicode="&#xad;" horiz-adv-x="600"
795
+ d="M59 255v71h396v-71h-396z" />
796
+ <glyph glyph-name="endash" unicode="&#x2013;" horiz-adv-x="641"
797
+ d="M59 255v71h524v-71h-524z" />
798
+ <glyph glyph-name="emdash" unicode="&#x2014;" horiz-adv-x="846"
799
+ d="M59 255v71h728v-71h-728z" />
800
+ <glyph glyph-name="underscore" unicode="_" horiz-adv-x="642"
801
+ d="M59 -115v79h524v-79h-524z" />
802
+ <glyph glyph-name="quotesinglbase" unicode="&#x201a;" horiz-adv-x="184"
803
+ d="M2 -121l57 223h94l-91 -223h-60z" />
804
+ <glyph glyph-name="quotedblbase" unicode="&#x201e;" horiz-adv-x="342"
805
+ d="M2 -121l57 223h94l-91 -223h-60zM161 -121l56 223h94l-90 -223h-60z" />
806
+ <glyph glyph-name="quotedblleft" unicode="&#x201c;" horiz-adv-x="370"
807
+ d="M29 477l90 223h60l-56 -223h-94zM185 477l91 223h60l-57 -223h-94z" />
808
+ <glyph glyph-name="quotedblright" unicode="&#x201d;" horiz-adv-x="370"
809
+ d="M190 477l57 223h94l-91 -223h-60zM33 477l58 223h94l-92 -223h-60z" />
810
+ <glyph glyph-name="quoteleft" unicode="&#x2018;" horiz-adv-x="212"
811
+ d="M29 477l90 223h60l-56 -223h-94z" />
812
+ <glyph glyph-name="quoteright" unicode="&#x2019;" horiz-adv-x="213"
813
+ d="M33 477l58 223h94l-92 -223h-60z" />
814
+ <glyph glyph-name="guillemotleft" unicode="&#xab;" horiz-adv-x="452"
815
+ d="M319 120l-97 175l97 175h83l-100 -175l100 -175h-83zM141 120l-97 175l97 175h83l-100 -175l100 -175h-83z" />
816
+ <glyph glyph-name="guillemotright" unicode="&#xbb;" horiz-adv-x="452"
817
+ d="M228 120l100 175l-100 175h83l97 -175l-97 -175h-83zM50 120l100 175l-100 175h83l97 -175l-97 -175h-83z" />
818
+ <glyph glyph-name="guilsinglleft" unicode="&#x2039;" horiz-adv-x="274"
819
+ d="M141 120l-97 175l97 175h83l-100 -175l100 -175h-83z" />
820
+ <glyph glyph-name="guilsinglright" unicode="&#x203a;" horiz-adv-x="274"
821
+ d="M50 120l100 175l-100 175h83l97 -175l-97 -175h-83z" />
822
+ <glyph glyph-name="quotedbl" unicode="&#x22;" horiz-adv-x="284"
823
+ d="M178 558l-11 197h79l-9 -197h-59zM48 558l-11 197h79l-10 -197h-58z" />
824
+ <glyph glyph-name="quotesingle" unicode="'" horiz-adv-x="157"
825
+ d="M50 558l-13 197h83l-12 -197h-58z" />
826
+ <glyph glyph-name="quotesinglbase.ss01" horiz-adv-x="172"
827
+ d="M34 -98v39q26 0 36.5 13.5t10.5 40.5v24h-48v82h88q6 -26 8.5 -48.5t2.5 -41.5q0 -57 -25 -83t-73 -26z" />
828
+ <glyph glyph-name="quotedblbase.ss01" horiz-adv-x="304"
829
+ d="M34 -98v39q26 0 36.5 13.5t10.5 40.5v24h-48v82h88q6 -26 8.5 -48.5t2.5 -41.5q0 -57 -25 -83t-73 -26zM166 -98v39q25 0 36 13.5t11 40.5v24h-49v82h88q6 -26 9 -48.5t3 -41.5q0 -57 -25.5 -83t-72.5 -26z" />
830
+ <glyph glyph-name="quotedblleft.ss01" horiz-adv-x="293"
831
+ d="M172 582q-11 51 -11 90q0 57 25.5 83t73.5 26v-40q-26 0 -37.5 -13.5t-11.5 -39.5v-23h49v-83h-88zM42 582q-6 26 -8.5 48t-2.5 42q0 57 25 83t72 26v-40q-25 0 -36 -13.5t-11 -39.5v-23h49v-83h-88z" />
832
+ <glyph glyph-name="quotedblright.ss01" horiz-adv-x="292"
833
+ d="M163 582v39q47 0 47 54v24h-47v82h88q10 -50 10 -90q0 -57 -25.5 -83t-72.5 -26zM33 582v39q25 0 36 14t11 40v24h-49v82h88q6 -25 9 -48t3 -42q0 -57 -25.5 -83t-72.5 -26z" />
834
+ <glyph glyph-name="quoteleft.ss01" horiz-adv-x="161"
835
+ d="M42 582q-6 26 -8.5 48t-2.5 42q0 57 25 83t72 26v-40q-25 0 -36 -13.5t-11 -39.5v-23h49v-83h-88z" />
836
+ <glyph glyph-name="quoteright.ss01" horiz-adv-x="161"
837
+ d="M33 582v39q25 0 36 14t11 40v24h-49v82h88q6 -25 9 -48t3 -42q0 -57 -25.5 -83t-72.5 -26z" />
838
+ <glyph glyph-name="space" unicode=" " horiz-adv-x="265"
839
+ />
840
+ <glyph glyph-name="uni00A0" unicode="&#xa0;" horiz-adv-x="265"
841
+ />
842
+ <glyph glyph-name="CR" unicode="&#xd;" horiz-adv-x="600"
843
+ />
844
+ <glyph glyph-name="cent" unicode="&#xa2;" horiz-adv-x="570"
845
+ d="M255 -104v95q-61 9 -107.5 43.5t-73 89t-26.5 124.5t26.5 124.5t73 89t107.5 43.5v95h81v-95q73 -9 122.5 -53.5t63.5 -112.5h-86q-10 46 -49 71.5t-91 25.5q-42 0 -79 -21t-60 -63t-23 -104t23 -104t60 -63.5t79 -21.5q52 0 91 25.5t49 72.5h86q-14 -66 -63 -111
846
+ t-123 -55v-95h-81z" />
847
+ <glyph glyph-name="currency" unicode="&#xa4;" horiz-adv-x="532"
848
+ d="M103 92l-38 38l59 59q-32 45 -32 108q0 33 9 60.5t25 48.5l-61 60l38 38l61 -61q44 30 103 30q58 0 102 -30l60 61l38 -38l-60 -60q16 -21 25 -48.5t9 -60.5q0 -32 -8.5 -59t-24.5 -49l59 -59l-38 -38l-59 60q-45 -31 -104 -31q-60 0 -104 31zM266 186q23 0 45 11
849
+ t36.5 35.5t14.5 64.5q0 59 -30.5 85.5t-65.5 26.5q-37 0 -66 -26.5t-29 -85.5t29 -85t66 -26z" />
850
+ <glyph glyph-name="dollar" unicode="$" horiz-adv-x="578"
851
+ d="M256 -87v77q-98 11 -155 70t-57 150h88q0 -53 31.5 -94.5t92.5 -53.5v271q-7 2 -14.5 4.5t-14.5 4.5q-81 28 -120 69.5t-39 108.5q-1 78 49.5 130t138.5 60v81h69v-81q84 -10 134 -63t51 -129h-88q0 37 -24 71.5t-73 46.5v-242q8 -2 16 -5t17 -5q50 -18 90 -42t62.5 -62
852
+ t22.5 -97q0 -47 -23 -89t-69.5 -71t-115.5 -34v-76h-69zM155 528q0 -46 27 -69.5t74 -40.5v220q-45 -7 -73 -35.5t-28 -74.5zM446 178q0 58 -34 86t-87 46v-250q58 7 89.5 40t31.5 78z" />
853
+ <glyph glyph-name="Euro" unicode="&#x20ac;" horiz-adv-x="775"
854
+ d="M23 242v63h81q-2 22 -2 45t2 46h-81v62h91q27 116 111 185t210 69q121 0 196 -57.5t96 -160.5h-93q-16 65 -65 104.5t-134 39.5q-88 0 -149 -47t-84 -133h253v-62h-265q-2 -22 -2 -46t2 -45h265v-63h-254q24 -85 85 -132.5t149 -47.5q85 0 134 38.5t65 102.5h93
855
+ q-21 -101 -96 -158t-196 -57q-127 0 -211 69t-111 185h-90z" />
856
+ <glyph glyph-name="florin" unicode="&#x192;" horiz-adv-x="333"
857
+ d="M-44 -191l6 70h22q30 0 45 14t20 53l56 532h-72l6 70h74l5 48q9 89 62 129.5t152 40.5l-6 -71q-60 0 -89.5 -23t-34.5 -76l-5 -48h120l-6 -70h-122l-56 -532q-8 -73 -45 -105t-107 -32h-25z" />
858
+ <glyph glyph-name="uni20BD" unicode="&#x20bd;" horiz-adv-x="621"
859
+ d="M127 0v126h-87v67h87v101h-87v69h87v336h220q82 0 135 -26.5t78.5 -72.5t25.5 -104q0 -56 -25 -102t-78 -73t-136 -27h-136v-101h223v-67h-223v-126h-84zM346 633h-135v-270h135q83 0 119 36.5t36 96.5q0 64 -36 100.5t-119 36.5z" />
860
+ <glyph glyph-name="uni20A8" unicode="&#x20a8;" horiz-adv-x="1090"
861
+ d="M78 0v699h221q82 0 135 -27t78.5 -73.5t25.5 -104.5q0 -76 -44.5 -131.5t-140.5 -68.5l194 -294h-101l-187 290h-97v-290h-84zM162 356h136q83 0 118.5 38t35.5 99q0 63 -35.5 101t-118.5 38h-136v-276zM824 -8q-93 0 -152 45.5t-67 128.5h85q5 -47 39.5 -77.5
862
+ t95.5 -30.5q54 0 82.5 26t28.5 64q0 32 -18 50.5t-47 29t-64.5 18t-70.5 17t-64 25t-47 42t-18 69.5q0 44 24 79.5t68.5 56.5t105.5 21q90 0 145 -47t61 -127h-84q-5 46 -36.5 77t-89.5 31q-54 0 -83.5 -25.5t-29.5 -64.5q0 -31 18 -49t47 -28t64.5 -17.5t70.5 -17
863
+ t64.5 -25.5t47 -44t17.5 -72q0 -46 -24 -81t-67.5 -54.5t-101.5 -19.5z" />
864
+ <glyph glyph-name="sterling" unicode="&#xa3;" horiz-adv-x="600"
865
+ d="M87 0v54q24 27 43 53.5t29.5 58t10.5 74.5q0 19 -3 36.5t-8 33.5h-114v59h93q-11 30 -20 63.5t-9 74.5q0 62 27 108t75 71.5t111 25.5q71 0 118 -28t71.5 -74.5t27.5 -102.5h-77q-3 58 -38.5 96.5t-101.5 38.5q-35 0 -65.5 -14.5t-49 -45t-18.5 -79.5q0 -35 9.5 -68
866
+ t21.5 -66h192v-59h-173q5 -17 7.5 -34t2.5 -34q0 -97 -73 -173h365v-70z" />
867
+ <glyph glyph-name="yen" unicode="&#xa5;" horiz-adv-x="601"
868
+ d="M59 167v61h200v38l-27 52l-173 1v60h141l-169 321h95l175 -357l174 357h95l-168 -321h141v-60l-173 -1l-27 -52v-38h200v-61h-200v-167h-84v167h-200z" />
869
+ <glyph glyph-name="uni2215" unicode="&#x2215;" horiz-adv-x="391"
870
+ d="M28 -95l251 859h83l-251 -859h-83z" />
871
+ <glyph glyph-name="plus" unicode="+" horiz-adv-x="583"
872
+ d="M63 255v71h191v182h75v-182h191v-71h-191v-183h-75v183h-191z" />
873
+ <glyph glyph-name="minus" unicode="&#x2212;" horiz-adv-x="522"
874
+ d="M63 255v71h396v-71h-396z" />
875
+ <glyph glyph-name="multiply" unicode="&#xd7;" horiz-adv-x="495"
876
+ d="M113 106l-50 50l134 135l-129 129l51 50l129 -129l134 135l50 -50l-134 -135l129 -129l-51 -50l-129 129z" />
877
+ <glyph glyph-name="divide" unicode="&#xf7;" horiz-adv-x="524"
878
+ d="M262 378q-25 0 -41.5 17t-16.5 41t16.5 40.5t41.5 16.5q24 0 40.5 -16.5t16.5 -40.5t-16.5 -41t-40.5 -17zM63 255v71h398v-71h-398zM262 89q-25 0 -41.5 16.5t-16.5 40.5t16.5 40.5t41.5 16.5q24 0 40.5 -16.5t16.5 -40.5t-16.5 -40.5t-40.5 -16.5z" />
879
+ <glyph glyph-name="equal" unicode="=" horiz-adv-x="525"
880
+ d="M63 359v72h399v-72h-399zM63 151v72h399v-72h-399z" />
881
+ <glyph glyph-name="notequal" unicode="&#x2260;" horiz-adv-x="525"
882
+ d="M115 84l36 67h-88v72h126l72 135h-198v73h236l35 66h76l-35 -66h87v-73h-126l-72 -135h198v-72h-236l-36 -67h-75z" />
883
+ <glyph glyph-name="greater" unicode="&#x3e;" horiz-adv-x="499"
884
+ d="M76 137l245 230l-245 231h107l244 -231l-244 -230h-107z" />
885
+ <glyph glyph-name="less" unicode="&#x3c;" horiz-adv-x="499"
886
+ d="M316 137l-244 230l244 231h107l-245 -231l245 -230h-107z" />
887
+ <glyph glyph-name="greaterequal" unicode="&#x2265;" horiz-adv-x="482"
888
+ d="M65 213l242 192l-242 193h109l246 -193l-246 -192h-109zM64 89v64h349v-64h-349z" />
889
+ <glyph glyph-name="lessequal" unicode="&#x2264;" horiz-adv-x="481"
890
+ d="M307 213l-245 192l245 193h110l-243 -193l243 -192h-110zM68 89v64h349v-64h-349z" />
891
+ <glyph glyph-name="plusminus" unicode="&#xb1;" horiz-adv-x="603"
892
+ d="M64 266v71h200v141h75v-141h200v-71h-200v-141h-75v141h-200zM64 0v73h475v-73h-475z" />
893
+ <glyph glyph-name="approxequal" unicode="&#x2248;" horiz-adv-x="508"
894
+ d="M337 112q-29 0 -51 10.5t-41 23.5t-38 23t-41 10q-27 0 -44.5 -18.5t-21.5 -47.5h-63q12 72 46.5 106.5t87.5 34.5q28 0 51 -10t42 -23t38 -23t40 -10q27 0 44.5 18t21.5 48h63q-11 -72 -45.5 -107t-88.5 -35zM337 319q-29 0 -51 10.5t-41 23.5t-38 23t-41 10
895
+ q-27 0 -44.5 -18.5t-21.5 -47.5h-63q12 72 46.5 106.5t87.5 34.5q28 0 51 -10t42 -23t38 -23t40 -10q27 0 44.5 18t21.5 48h63q-11 -72 -45.5 -107t-88.5 -35z" />
896
+ <glyph glyph-name="asciitilde" unicode="~" horiz-adv-x="508"
897
+ d="M337 249q-29 0 -51 10.5t-41 23.5t-38 23t-41 10q-27 0 -44.5 -18.5t-21.5 -47.5h-63q12 72 46.5 106.5t87.5 34.5q28 0 51 -10t42 -23t38 -23t40 -10q27 0 44.5 18t21.5 48h63q-11 -72 -45.5 -107t-88.5 -35z" />
898
+ <glyph glyph-name="logicalnot" unicode="&#xac;" horiz-adv-x="660"
899
+ d="M531 223v142h-486v67h570v-209h-84z" />
900
+ <glyph glyph-name="asciicircum" unicode="^" horiz-adv-x="620"
901
+ d="M37 178l235 522h77l235 -522h-86l-187 419l-188 -419h-86z" />
902
+ <glyph glyph-name="infinity" unicode="&#x221e;" horiz-adv-x="703"
903
+ d="M185 141q-63 0 -105.5 38t-42.5 107q0 70 43.5 109t105.5 39q59 0 98 -31.5t70 -71.5q23 43 64.5 73.5t98.5 29.5q63 0 106 -38t43 -107q0 -70 -44.5 -109t-108.5 -39q-57 0 -96 30t-70 69q-24 -41 -64.5 -70.5t-97.5 -28.5zM107 286q0 -39 22.5 -61.5t60.5 -22.5t70 23
904
+ t53 60q-27 36 -56 62.5t-68 26.5q-36 0 -59 -24t-23 -64zM513 373q-39 0 -71.5 -24t-53.5 -63q26 -35 54 -60t67 -25q40 0 63.5 24t23.5 63t-23 62t-60 23z" />
905
+ <glyph glyph-name="integral" unicode="&#x222b;" horiz-adv-x="258"
906
+ d="M-38 -191l7 70h21q28 0 39.5 14.5t15.5 52.5l93 836q8 72 44.5 102.5t100.5 30.5h22l-7 -71h-19q-25 0 -39 -13t-18 -49l-93 -836q-8 -73 -42.5 -105t-100.5 -32h-24z" />
907
+ <glyph glyph-name="uni2126" unicode="&#x2126;" horiz-adv-x="789"
908
+ d="M56 0v66h143q-77 42 -116.5 120.5t-39.5 170.5q0 79 27 144t75 112.5t112 73t137 25.5q74 0 138 -25.5t112.5 -73t75.5 -112.5t27 -144q0 -92 -40 -170.5t-117 -120.5h142v-66h-274v69q59 15 105 53.5t72.5 97t26.5 132.5q0 86 -35.5 150t-96 99t-136.5 35
909
+ q-77 0 -137.5 -35.5t-95 -99.5t-34.5 -149q0 -74 26.5 -132.5t72.5 -97t105 -53.5v-69h-275z" />
910
+ <glyph glyph-name="uni2206" unicode="&#x2206;" horiz-adv-x="695"
911
+ d="M30 0v65l282 635h70l283 -635v-65h-635zM115 65h465l-233 539z" />
912
+ <glyph glyph-name="product" unicode="&#x220f;" horiz-adv-x="725"
913
+ d="M117 0v634h-80v66h651v-66h-79v-634h-84v634h-324v-634h-84z" />
914
+ <glyph glyph-name="summation" unicode="&#x2211;" horiz-adv-x="450"
915
+ d="M41 -49v96l262 279l-262 278v96h390v-65h-322l270 -275v-65l-268 -279h320v-65h-390z" />
916
+ <glyph glyph-name="radical" unicode="&#x221a;" horiz-adv-x="712"
917
+ d="M230 -44l-122 215l-64 -36l-26 44l136 79l113 -200l431 807h60l-487 -909h-41z" />
918
+ <glyph glyph-name="uni00B5" unicode="&#xb5;" horiz-adv-x="583"
919
+ d="M69 -220v716h84v-281q0 -155 128 -155q64 0 106.5 46.5t42.5 132.5v257h84v-496h-76l-5 88q-24 -46 -69.5 -73t-102.5 -27q-66 0 -108 32v-240h-84z" />
920
+ <glyph glyph-name="partialdiff" unicode="&#x2202;" horiz-adv-x="567"
921
+ d="M234 -10q-54 0 -98 25t-70.5 76t-26.5 130q0 66 19 126.5t54.5 107.5t84.5 74.5t108 27.5q48 0 85.5 -24t53.5 -89q-2 70 -17.5 125t-50.5 87.5t-95 32.5q-19 0 -38.5 -3.5t-41.5 -9.5v50q50 14 95 14q110 0 171 -84t61 -243q0 -130 -38.5 -225t-105 -146.5t-150.5 -51.5
922
+ zM242 62q56 0 98.5 37t66.5 97t24 130q0 82 -33 121t-88 39t-96.5 -35t-65.5 -95.5t-24 -134.5q0 -83 34.5 -121t83.5 -38z" />
923
+ <glyph glyph-name="percent" unicode="%" horiz-adv-x="773"
924
+ d="M200 375q-45 0 -81.5 20.5t-57.5 58t-21 89.5t21.5 89.5t58 58t81.5 20.5t81 -20.5t57 -58t21 -89.5t-21.5 -89.5t-57.5 -58t-81 -20.5zM138 0l407 700h84l-407 -700h-84zM200 440q35 0 61.5 26t26.5 77q0 52 -26 78.5t-61 26.5t-62.5 -26.5t-27.5 -78.5q0 -51 27 -77
925
+ t62 -26zM574 -12q-45 0 -81.5 20.5t-57.5 58t-21 89.5t21.5 89.5t57.5 58t81 20.5t81 -20.5t57 -58t21 -89.5t-21 -89.5t-57 -58t-81 -20.5zM573 53q36 0 62.5 26t26.5 77q0 52 -26 78t-62 26q-35 0 -62 -26t-27 -78q0 -51 26.5 -77t61.5 -26z" />
926
+ <glyph glyph-name="perthousand" unicode="&#x2030;" horiz-adv-x="1123"
927
+ d="M200 375q-45 0 -81.5 20.5t-57.5 58t-21 89.5t21.5 89.5t58 58t81.5 20.5t81 -20.5t57 -58t21 -89.5t-21.5 -89.5t-57.5 -58t-81 -20.5zM138 0l407 700h84l-407 -700h-84zM200 438q35 0 62.5 26.5t27.5 78.5q0 53 -27 79.5t-62 26.5q-36 0 -63.5 -26.5t-27.5 -79.5
928
+ q0 -52 27 -78.5t63 -26.5zM574 -12q-45 0 -81.5 20.5t-57.5 58t-21 89.5t21.5 89.5t57.5 58t81 20.5t81 -20.5t57 -58t21 -89.5t-21 -89.5t-57 -58t-81 -20.5zM923 -12q-45 0 -81 20.5t-57.5 58t-21.5 89.5t21.5 89.5t58 58t81.5 20.5t81 -20.5t57 -58t21 -89.5t-21 -89.5
929
+ t-57.5 -58t-81.5 -20.5zM573 51q36 0 63.5 26.5t27.5 78.5q0 53 -27 79.5t-63 26.5q-35 0 -63 -26.5t-28 -79.5q0 -52 27.5 -78.5t62.5 -26.5zM923 51q36 0 63 26.5t27 78.5q0 53 -26.5 79.5t-62.5 26.5t-63.5 -26.5t-27.5 -79.5q0 -52 27 -78.5t63 -26.5z" />
930
+ <glyph glyph-name="lozenge" unicode="&#x25ca;" horiz-adv-x="553"
931
+ d="M276 110l-239 240l240 239l239 -239zM276 198l151 152l-150 151l-150 -151z" />
932
+ <glyph glyph-name="at" unicode="@" horiz-adv-x="1013"
933
+ d="M432 -199q-107 0 -187.5 41t-125 116t-44.5 178q0 106 37 198t104 161t158 107t200 38q111 0 193 -42.5t126.5 -118t44.5 -175.5q0 -57 -14 -112.5t-41.5 -100t-67 -71t-90.5 -26.5t-77.5 26t-29.5 70q-31 -45 -78.5 -70.5t-100.5 -25.5q-76 0 -118.5 46t-42.5 124
934
+ q0 55 17.5 105.5t49.5 90t76 62.5t98 23q101 0 131 -83l13 72h71l-50 -286q-7 -43 4.5 -69.5t48.5 -26.5q32 0 57 22.5t42 60t25.5 81t8.5 84.5q0 131 -81.5 206t-224.5 75q-91 0 -167.5 -34t-133.5 -94t-88.5 -139t-31.5 -171q0 -90 37 -153t105 -96t162 -33q43 0 86 8.5
935
+ t80 25.5l14 -57q-90 -37 -195 -37zM464 58q43 0 79 23t59 63.5t28 93.5q7 59 -20.5 101t-88.5 42q-51 0 -88.5 -29.5t-57.5 -76.5t-20 -98q0 -54 27.5 -86.5t81.5 -32.5z" />
936
+ <glyph glyph-name="ampersand" unicode="&#x26;" horiz-adv-x="732"
937
+ d="M281 -12q-72 0 -126.5 26.5t-85 74t-30.5 112.5q0 71 41.5 126.5t120.5 87.5q-34 37 -49 70.5t-15 72.5q0 67 47.5 110.5t130.5 43.5q54 0 94 -20.5t62 -56.5t20 -82h-83q1 45 -27.5 68t-65.5 23q-45 0 -70 -24t-25 -61q0 -32 17.5 -62t52.5 -67l221 -223q29 42 63 101
938
+ l31 54h89l-44 -78q-44 -79 -84 -132l151 -152h-106l-93 94q-53 -57 -110 -81.5t-127 -24.5zM123 204q0 -62 44 -103t115 -41q53 0 96.5 20.5t85.5 67.5l-212 215q-66 -26 -97.5 -66t-31.5 -93z" />
939
+ <glyph glyph-name="paragraph" unicode="&#xb6;" horiz-adv-x="586"
940
+ d="M282 -100v395h-10q-82 0 -134 27t-77 72.5t-25 102.5t25.5 103t77.5 73t133 27h240v-800h-74v734h-82v-734h-74z" />
941
+ <glyph glyph-name="section" unicode="&#xa7;" horiz-adv-x="584"
942
+ d="M289 -232q-67 0 -116.5 25t-77 69t-28.5 100h88q0 -29 15 -57.5t45.5 -46.5t76.5 -18q57 -1 93.5 29t36.5 83q0 45 -25.5 68.5t-71.5 39t-106 35.5q-50 17 -90 41.5t-62.5 62.5t-22.5 96q0 37 14 71t42 62q-27 37 -27 92q0 56 27 99.5t76.5 68t117.5 24.5q67 0 116.5 -25
943
+ t77 -69t28.5 -100h-88q0 29 -15 57.5t-45.5 46.5t-76.5 18q-57 1 -93.5 -29t-36.5 -83q0 -45 25.5 -68.5t71.5 -39t106 -35.5q50 -17 89.5 -41.5t62.5 -62.5t23 -96q0 -37 -14 -71.5t-43 -61.5q27 -39 27 -92q1 -56 -26 -99.5t-76.5 -68t-117.5 -24.5zM422 104q30 30 30 76
944
+ q0 40 -17 65t-47 41t-68.5 28.5t-81.5 27.5q-24 7 -42.5 16t-34.5 18q-30 -30 -30 -76q0 -40 17 -65t47 -41t68.5 -28.5t81.5 -27.5q23 -7 42 -16t35 -18z" />
945
+ <glyph glyph-name="copyright" unicode="&#xa9;" horiz-adv-x="794"
946
+ d="M397 -4q-103 0 -181 45.5t-121.5 125.5t-43.5 183q0 104 43.5 184t121.5 125t181 45t181 -45t121.5 -125t43.5 -184q0 -103 -43.5 -183t-121.5 -125.5t-181 -45.5zM397 33q94 0 163 40t106.5 112t37.5 165q0 95 -37.5 166.5t-106.5 111.5t-163 40t-163 -40t-106.5 -111.5
947
+ t-37.5 -166.5q0 -93 37.5 -165t106.5 -112t163 -40zM397 119q-60 0 -109 27t-78.5 79.5t-29.5 125.5t29.5 125t78.5 79.5t109 27.5q74 0 130 -39.5t75 -113.5h-77q-14 45 -49 68.5t-80 23.5q-58 0 -100 -43t-42 -129q0 -85 42 -128t100 -43q98 0 129 91h77
948
+ q-19 -70 -75 -110.5t-130 -40.5z" />
949
+ <glyph glyph-name="registered" unicode="&#xae;" horiz-adv-x="504"
950
+ d="M253 307q-59 0 -104.5 26t-71 72t-25.5 104t25.5 104t71 72.5t104.5 26.5q58 0 103 -26.5t70.5 -72.5t25.5 -104t-25.5 -104t-70.5 -72t-103 -26zM253 343q72 0 116 46.5t44 119.5t-44 119.5t-116 46.5q-74 0 -118 -46.5t-44 -119.5t44 -119.5t118 -46.5zM173 403v215h95
951
+ q34 0 53.5 -17.5t19.5 -48.5q0 -24 -13.5 -40.5t-36.5 -22.5l58 -85l-56 -1l-52 84h-21v-84h-47zM220 525h44q13 0 21.5 6t8.5 20q0 13 -8.5 19t-21.5 6h-44v-51z" />
952
+ <glyph glyph-name="trademark" unicode="&#x2122;" horiz-adv-x="772"
953
+ d="M326 348v352h85l113 -274l118 274h80v-352h-62l-1 260l-113 -260h-48l-112 264v-264h-60zM116 348l1 299h-90v53h245v-53h-90l1 -299h-67z" />
954
+ <glyph glyph-name="degree" unicode="&#xb0;" horiz-adv-x="343"
955
+ d="M171 444q-54 0 -93 36t-39 97q0 41 18.5 71.5t48.5 47t66 16.5q53 0 92 -36.5t39 -98.5q0 -40 -18 -70t-48 -46.5t-66 -16.5zM171 506q24 0 45.5 18t21.5 54t-21 54t-45 18q-25 0 -46 -18t-21 -54t20.5 -54t45.5 -18z" />
956
+ <glyph glyph-name="bar" unicode="|" horiz-adv-x="232"
957
+ d="M74 -100v820h84v-820h-84z" />
958
+ <glyph glyph-name="brokenbar" unicode="&#xa6;" horiz-adv-x="232"
959
+ d="M74 387v333h84v-333h-84zM74 -100v333h84v-333h-84z" />
960
+ <glyph glyph-name="dagger" unicode="&#x2020;" horiz-adv-x="531"
961
+ d="M224 -259l8 747l-191 -7v67l191 -8l-8 240h83l-8 -240l190 8v-67l-190 7l8 -747h-83z" />
962
+ <glyph glyph-name="uni2113" unicode="&#x2113;" horiz-adv-x="232"
963
+ d="M74 -100v820h84v-820h-84z" />
964
+ <glyph glyph-name="daggerdbl" unicode="&#x2021;" horiz-adv-x="532"
965
+ d="M224 -259l9 240l-191 -7v67l191 -8v455l-191 -7v67l191 -8l-9 240h83l-8 -240l191 8v-67l-191 7v-455l191 8v-67l-191 7l8 -240h-83z" />
966
+ <glyph glyph-name="estimated" unicode="&#x212e;" horiz-adv-x="762"
967
+ d="M390 -7q-98 0 -175.5 39t-122 114.5t-44.5 183.5q0 103 38.5 186.5t113 133t181.5 49.5q80 0 142 -26.5t104.5 -72.5t64.5 -104t22 -121v-61h-536v-166q39 -48 89 -73t123 -25q76 0 136 34t121 95l39 -42q-62 -67 -136 -105.5t-160 -38.5zM178 376h396v177q-31 43 -81 66
968
+ t-112 23q-63 0 -115.5 -24t-87.5 -76v-166z" />
969
+ <glyph glyph-name="uni0308" unicode="&#x308;"
970
+ d="M210 571q-21 0 -35.5 14.5t-14.5 35.5q0 20 14.5 35t35.5 15t35 -15t14 -35q0 -21 -14 -35.5t-35 -14.5zM50 571q-21 0 -35.5 14.5t-14.5 35.5q0 20 14.5 35t35.5 15q20 0 35 -15t15 -35q0 -21 -15 -35.5t-35 -14.5z" />
971
+ <glyph glyph-name="uni0307" unicode="&#x307;"
972
+ d="M50 562q-21 0 -35.5 15t-14.5 35q0 21 14.5 35.5t35.5 14.5q20 0 35 -14.5t15 -35.5q0 -20 -15 -35t-35 -15z" />
973
+ <glyph glyph-name="gravecomb" unicode="&#x300;"
974
+ d="M210 537l-210 117v73l210 -127v-63z" />
975
+ <glyph glyph-name="acutecomb" unicode="&#x301;"
976
+ d="M0 537v63l210 127v-73z" />
977
+ <glyph glyph-name="uni030B" unicode="&#x30b;"
978
+ d="M146 549l72 149h73l-89 -149h-56zM0 549l66 149h73l-82 -149h-57z" />
979
+ <glyph glyph-name="uni0302" unicode="&#x302;"
980
+ d="M0 551v66l137 81l137 -81v-66l-137 84z" />
981
+ <glyph glyph-name="uni030C" unicode="&#x30c;"
982
+ d="M137 550l-137 82v65l137 -84l137 84v-65z" />
983
+ <glyph glyph-name="uni0306" unicode="&#x306;"
984
+ d="M140 553q-69 0 -104.5 37.5t-35.5 92.5v14h50q0 -37 21 -57.5t69 -20.5t69 20.5t21 57.5h51v-14q0 -55 -36.5 -92.5t-104.5 -37.5z" />
985
+ <glyph glyph-name="uni030A" unicode="&#x30a;"
986
+ d="M105 557q-43 0 -74 27.5t-31 75.5t31 75.5t74 27.5q44 0 74.5 -27.5t30.5 -75.5t-30.5 -75.5t-74.5 -27.5zM105 600q24 0 40.5 16.5t16.5 43.5t-16.5 43t-40.5 16t-40.5 -16t-16.5 -43t16.5 -43.5t40.5 -16.5z" />
987
+ <glyph glyph-name="tildecomb" unicode="&#x303;"
988
+ d="M206 552q-27 0 -45 12t-33.5 23.5t-36.5 11.5q-36 0 -42 -45h-49q7 51 32 76t63 25q26 0 44 -12t33.5 -23.5t37.5 -11.5q16 0 28 11t15 34h49q-6 -49 -32 -75t-64 -26z" />
989
+ <glyph glyph-name="uni0304" unicode="&#x304;"
990
+ d="M0 592v63h347v-63h-347z" />
991
+ <glyph glyph-name="uni0327" unicode="&#x327;"
992
+ d="M0 -259v53h92q68 0 68 48q0 45 -68 45h-49v120h56v-70q57 1 93 -23t36 -73q0 -47 -34 -73.5t-87 -26.5h-107z" />
993
+ <glyph glyph-name="uni0328" unicode="&#x328;"
994
+ d="M118 -203q-30 0 -57 9.5t-44 30.5t-17 55q0 35 25.5 67t90.5 61l53 23l21 -43l-58 -28q-36 -18 -50 -35.5t-14 -36.5q0 -23 16.5 -36t43.5 -13q30 0 65 15v-56q-37 -13 -75 -13z" />
995
+ <glyph glyph-name="acute" unicode="&#xb4;" horiz-adv-x="254"
996
+ d="M22 537v63l210 127v-73z" />
997
+ <glyph glyph-name="breve" unicode="&#x2d8;" horiz-adv-x="325"
998
+ d="M162 553q-69 0 -104.5 37.5t-35.5 92.5v14h50q0 -37 21 -57.5t69 -20.5t69 20.5t21 57.5h51v-14q0 -55 -36.5 -92.5t-104.5 -37.5z" />
999
+ <glyph glyph-name="caron" unicode="&#x2c7;" horiz-adv-x="318"
1000
+ d="M159 550l-137 82v65l137 -84l137 84v-65z" />
1001
+ <glyph glyph-name="cedilla" unicode="&#xb8;" horiz-adv-x="272"
1002
+ d="M22 -259v53h92q68 0 68 48q0 45 -68 45h-49v120h56v-70q57 1 93 -23t36 -73q0 -47 -34 -73.5t-86 -26.5h-108z" />
1003
+ <glyph glyph-name="circumflex" unicode="&#x2c6;" horiz-adv-x="318"
1004
+ d="M22 551v66l137 81l137 -81v-66l-137 84z" />
1005
+ <glyph glyph-name="dieresis" unicode="&#xa8;" horiz-adv-x="322"
1006
+ d="M242 571q-21 0 -35.5 14.5t-14.5 35.5q0 20 14.5 35t35.5 15q20 0 34.5 -15t14.5 -35q0 -21 -14.5 -35.5t-34.5 -14.5zM81 571q-21 0 -35 14.5t-14 35.5q0 20 14 35t35 15t35.5 -15t14.5 -35q0 -21 -14.5 -35.5t-35.5 -14.5z" />
1007
+ <glyph glyph-name="dotaccent" unicode="&#x2d9;" horiz-adv-x="151"
1008
+ d="M75 562q-20 0 -34.5 15t-14.5 35q0 21 14.5 35.5t34.5 14.5q21 0 35.5 -14.5t14.5 -35.5q0 -20 -14.5 -35t-35.5 -15z" />
1009
+ <glyph glyph-name="grave" unicode="`" horiz-adv-x="254"
1010
+ d="M232 537l-210 117v73l210 -127v-63z" />
1011
+ <glyph glyph-name="hungarumlaut" unicode="&#x2dd;" horiz-adv-x="341"
1012
+ d="M168 549l72 149h73l-89 -149h-56zM22 549l66 149h73l-82 -149h-57z" />
1013
+ <glyph glyph-name="macron" unicode="&#xaf;" horiz-adv-x="392"
1014
+ d="M22 592v63h348v-63h-348z" />
1015
+ <glyph glyph-name="ogonek" unicode="&#x2db;" horiz-adv-x="251"
1016
+ d="M145 -203q-31 0 -57.5 9.5t-43.5 30.5t-17 55q0 35 25.5 67t90.5 61l52 23l22 -43l-58 -28q-36 -18 -50 -35.5t-14 -36.5q0 -23 16.5 -36t43.5 -13q30 0 65 15v-56q-37 -13 -75 -13z" />
1017
+ <glyph glyph-name="ring" unicode="&#x2da;" horiz-adv-x="250"
1018
+ d="M125 557q-43 0 -74 27.5t-31 75.5t31 75.5t74 27.5q44 0 74.5 -27.5t30.5 -75.5t-30.5 -75.5t-74.5 -27.5zM125 600q24 0 40.5 16.5t16.5 43.5t-16.5 43t-40.5 16q-23 0 -40 -16t-17 -43t17 -43.5t40 -16.5z" />
1019
+ <glyph glyph-name="tilde" unicode="&#x2dc;" horiz-adv-x="345"
1020
+ d="M227 552q-27 0 -44.5 12t-33.5 23.5t-36 11.5q-37 0 -43 -45h-49q7 51 32.5 76t62.5 25q27 0 44.5 -12t33.5 -23.5t37 -11.5q17 0 29 11t15 34h48q-5 -49 -31.5 -75t-64.5 -26z" />
1021
+ <glyph glyph-name="uni0308.cap"
1022
+ d="M210 775q-21 0 -35.5 14.5t-14.5 35.5q0 20 14.5 35t35.5 15t35 -15t14 -35q0 -21 -14 -35.5t-35 -14.5zM50 775q-21 0 -35.5 14.5t-14.5 35.5q0 20 14.5 35t35.5 15q20 0 35 -15t15 -35q0 -21 -15 -35.5t-35 -14.5z" />
1023
+ <glyph glyph-name="uni0307.cap"
1024
+ d="M50 766q-21 0 -35.5 15t-14.5 35q0 21 14.5 35.5t35.5 14.5q20 0 35 -14.5t15 -35.5q0 -20 -15 -35t-35 -15z" />
1025
+ <glyph glyph-name="gravecomb.cap"
1026
+ d="M210 741l-210 117v73l210 -127v-63z" />
1027
+ <glyph glyph-name="acutecomb.cap"
1028
+ d="M0 741v63l210 127v-73z" />
1029
+ <glyph glyph-name="uni030B.cap"
1030
+ d="M146 753l72 149h73l-89 -149h-56zM0 753l66 149h73l-82 -149h-57z" />
1031
+ <glyph glyph-name="uni0302.cap"
1032
+ d="M0 755v66l137 81l137 -81v-66l-137 84z" />
1033
+ <glyph glyph-name="uni030C.cap"
1034
+ d="M137 754l-137 82v65l137 -84l137 84v-65z" />
1035
+ <glyph glyph-name="uni0306.cap"
1036
+ d="M140 757q-69 0 -104.5 37.5t-35.5 92.5v14h50q0 -37 21 -57.5t69 -20.5t69 20.5t21 57.5h51v-14q0 -55 -36.5 -92.5t-104.5 -37.5z" />
1037
+ <glyph glyph-name="uni030A.cap"
1038
+ d="M105 761q-43 0 -74 27.5t-31 75.5t31 75.5t74 27.5q44 0 74.5 -27.5t30.5 -75.5t-30.5 -75.5t-74.5 -27.5zM105 804q24 0 40.5 16.5t16.5 43.5t-16.5 43t-40.5 16t-40.5 -16t-16.5 -43t16.5 -43.5t40.5 -16.5z" />
1039
+ <glyph glyph-name="tildecomb.cap"
1040
+ d="M206 756q-27 0 -45 12t-33.5 23.5t-36.5 11.5q-36 0 -42 -45h-49q7 51 32 76t63 25q26 0 44 -12t33.5 -23.5t37.5 -11.5q16 0 28 11t15 34h49q-6 -49 -32 -75t-64 -26z" />
1041
+ <glyph glyph-name="uni0304.cap"
1042
+ d="M0 796v63h347v-63h-347z" />
1043
+ <glyph glyph-name="uni0327.cap"
1044
+ d="M0 -259v53h92q68 0 68 48q0 45 -68 45h-49v120h56v-70q57 1 93 -23t36 -73q0 -47 -34 -73.5t-87 -26.5h-107z" />
1045
+ <glyph glyph-name="uni0328.cap"
1046
+ d="M118 -203q-30 0 -57 9.5t-44 30.5t-17 55q0 35 25.5 67t90.5 61l53 23l21 -43l-58 -28q-36 -18 -50 -35.5t-14 -36.5q0 -23 16.5 -36t43.5 -13q30 0 65 15v-56q-37 -13 -75 -13z" />
1047
+ <hkern u1="A" u2="&#x40;" k="17" />
1048
+ <hkern u1="A" u2="&#xd7;" k="21" />
1049
+ <hkern u1="A" u2="&#x2b;" k="37" />
1050
+ <hkern u1="A" u2="&#x7b;" k="57" />
1051
+ <hkern u1="A" u2="&#x29;" k="34" />
1052
+ <hkern u1="A" u2="\" k="60" />
1053
+ <hkern u1="A" u2="&#x2a;" k="91" />
1054
+ <hkern u1="A" u2="&#x3f;" k="39" />
1055
+ <hkern u1="A" g2="nine.ss04" k="77" />
1056
+ <hkern u1="A" g2="six.ss04" k="29" />
1057
+ <hkern u1="A" g2="three.ss04" k="29" />
1058
+ <hkern u1="A" u2="&#x39;" k="40" />
1059
+ <hkern u1="A" u2="&#x38;" k="30" />
1060
+ <hkern u1="A" u2="&#x37;" k="26" />
1061
+ <hkern u1="A" u2="&#x36;" k="35" />
1062
+ <hkern u1="A" u2="&#x35;" k="39" />
1063
+ <hkern u1="A" u2="&#x34;" k="19" />
1064
+ <hkern u1="A" u2="&#x33;" k="20" />
1065
+ <hkern u1="A" u2="&#x31;" k="30" />
1066
+ <hkern u1="A" u2="&#x30;" k="40" />
1067
+ <hkern u1="A" u2="v" k="51" />
1068
+ <hkern u1="A" u2="f" k="17" />
1069
+ <hkern u1="&#xc1;" u2="&#x40;" k="17" />
1070
+ <hkern u1="&#xc1;" u2="&#xd7;" k="21" />
1071
+ <hkern u1="&#xc1;" u2="&#x2b;" k="37" />
1072
+ <hkern u1="&#xc1;" u2="&#x7b;" k="57" />
1073
+ <hkern u1="&#xc1;" u2="&#x29;" k="34" />
1074
+ <hkern u1="&#xc1;" u2="\" k="60" />
1075
+ <hkern u1="&#xc1;" u2="&#x2a;" k="91" />
1076
+ <hkern u1="&#xc1;" u2="&#x3f;" k="39" />
1077
+ <hkern u1="&#xc1;" g2="nine.ss04" k="77" />
1078
+ <hkern u1="&#xc1;" g2="six.ss04" k="29" />
1079
+ <hkern u1="&#xc1;" g2="three.ss04" k="29" />
1080
+ <hkern u1="&#xc1;" u2="&#x39;" k="40" />
1081
+ <hkern u1="&#xc1;" u2="&#x38;" k="30" />
1082
+ <hkern u1="&#xc1;" u2="&#x37;" k="26" />
1083
+ <hkern u1="&#xc1;" u2="&#x36;" k="35" />
1084
+ <hkern u1="&#xc1;" u2="&#x35;" k="39" />
1085
+ <hkern u1="&#xc1;" u2="&#x34;" k="19" />
1086
+ <hkern u1="&#xc1;" u2="&#x33;" k="20" />
1087
+ <hkern u1="&#xc1;" u2="&#x31;" k="30" />
1088
+ <hkern u1="&#xc1;" u2="&#x30;" k="40" />
1089
+ <hkern u1="&#xc1;" u2="v" k="51" />
1090
+ <hkern u1="&#xc1;" u2="f" k="17" />
1091
+ <hkern u1="&#x102;" u2="&#x40;" k="17" />
1092
+ <hkern u1="&#x102;" u2="&#xd7;" k="21" />
1093
+ <hkern u1="&#x102;" u2="&#x2b;" k="37" />
1094
+ <hkern u1="&#x102;" u2="&#x7b;" k="57" />
1095
+ <hkern u1="&#x102;" u2="&#x29;" k="34" />
1096
+ <hkern u1="&#x102;" u2="\" k="60" />
1097
+ <hkern u1="&#x102;" u2="&#x2a;" k="91" />
1098
+ <hkern u1="&#x102;" u2="&#x3f;" k="39" />
1099
+ <hkern u1="&#x102;" g2="nine.ss04" k="77" />
1100
+ <hkern u1="&#x102;" g2="six.ss04" k="29" />
1101
+ <hkern u1="&#x102;" g2="three.ss04" k="29" />
1102
+ <hkern u1="&#x102;" u2="&#x39;" k="40" />
1103
+ <hkern u1="&#x102;" u2="&#x38;" k="30" />
1104
+ <hkern u1="&#x102;" u2="&#x37;" k="26" />
1105
+ <hkern u1="&#x102;" u2="&#x36;" k="35" />
1106
+ <hkern u1="&#x102;" u2="&#x35;" k="39" />
1107
+ <hkern u1="&#x102;" u2="&#x34;" k="19" />
1108
+ <hkern u1="&#x102;" u2="&#x33;" k="20" />
1109
+ <hkern u1="&#x102;" u2="&#x31;" k="30" />
1110
+ <hkern u1="&#x102;" u2="&#x30;" k="40" />
1111
+ <hkern u1="&#x102;" u2="v" k="51" />
1112
+ <hkern u1="&#x102;" u2="f" k="17" />
1113
+ <hkern u1="&#xc2;" u2="&#x40;" k="17" />
1114
+ <hkern u1="&#xc2;" u2="&#xd7;" k="21" />
1115
+ <hkern u1="&#xc2;" u2="&#x2b;" k="37" />
1116
+ <hkern u1="&#xc2;" u2="&#x7b;" k="57" />
1117
+ <hkern u1="&#xc2;" u2="&#x29;" k="34" />
1118
+ <hkern u1="&#xc2;" u2="\" k="60" />
1119
+ <hkern u1="&#xc2;" u2="&#x2a;" k="91" />
1120
+ <hkern u1="&#xc2;" u2="&#x3f;" k="39" />
1121
+ <hkern u1="&#xc2;" g2="nine.ss04" k="77" />
1122
+ <hkern u1="&#xc2;" g2="six.ss04" k="29" />
1123
+ <hkern u1="&#xc2;" g2="three.ss04" k="29" />
1124
+ <hkern u1="&#xc2;" u2="&#x39;" k="40" />
1125
+ <hkern u1="&#xc2;" u2="&#x38;" k="30" />
1126
+ <hkern u1="&#xc2;" u2="&#x37;" k="26" />
1127
+ <hkern u1="&#xc2;" u2="&#x36;" k="35" />
1128
+ <hkern u1="&#xc2;" u2="&#x35;" k="39" />
1129
+ <hkern u1="&#xc2;" u2="&#x34;" k="19" />
1130
+ <hkern u1="&#xc2;" u2="&#x33;" k="20" />
1131
+ <hkern u1="&#xc2;" u2="&#x31;" k="30" />
1132
+ <hkern u1="&#xc2;" u2="&#x30;" k="40" />
1133
+ <hkern u1="&#xc2;" u2="v" k="51" />
1134
+ <hkern u1="&#xc2;" u2="f" k="17" />
1135
+ <hkern u1="&#xc4;" u2="&#x40;" k="17" />
1136
+ <hkern u1="&#xc4;" u2="&#xd7;" k="21" />
1137
+ <hkern u1="&#xc4;" u2="&#x2b;" k="37" />
1138
+ <hkern u1="&#xc4;" u2="&#x7b;" k="57" />
1139
+ <hkern u1="&#xc4;" u2="&#x29;" k="34" />
1140
+ <hkern u1="&#xc4;" u2="\" k="60" />
1141
+ <hkern u1="&#xc4;" u2="&#x2a;" k="91" />
1142
+ <hkern u1="&#xc4;" u2="&#x3f;" k="39" />
1143
+ <hkern u1="&#xc4;" g2="nine.ss04" k="77" />
1144
+ <hkern u1="&#xc4;" g2="six.ss04" k="29" />
1145
+ <hkern u1="&#xc4;" g2="three.ss04" k="29" />
1146
+ <hkern u1="&#xc4;" u2="&#x39;" k="40" />
1147
+ <hkern u1="&#xc4;" u2="&#x38;" k="30" />
1148
+ <hkern u1="&#xc4;" u2="&#x37;" k="26" />
1149
+ <hkern u1="&#xc4;" u2="&#x36;" k="35" />
1150
+ <hkern u1="&#xc4;" u2="&#x35;" k="39" />
1151
+ <hkern u1="&#xc4;" u2="&#x34;" k="19" />
1152
+ <hkern u1="&#xc4;" u2="&#x33;" k="20" />
1153
+ <hkern u1="&#xc4;" u2="&#x31;" k="30" />
1154
+ <hkern u1="&#xc4;" u2="&#x30;" k="40" />
1155
+ <hkern u1="&#xc4;" u2="v" k="51" />
1156
+ <hkern u1="&#xc4;" u2="f" k="17" />
1157
+ <hkern u1="&#xc0;" u2="&#x40;" k="17" />
1158
+ <hkern u1="&#xc0;" u2="&#xd7;" k="21" />
1159
+ <hkern u1="&#xc0;" u2="&#x2b;" k="37" />
1160
+ <hkern u1="&#xc0;" u2="&#x7b;" k="57" />
1161
+ <hkern u1="&#xc0;" u2="&#x29;" k="34" />
1162
+ <hkern u1="&#xc0;" u2="\" k="60" />
1163
+ <hkern u1="&#xc0;" u2="&#x2a;" k="91" />
1164
+ <hkern u1="&#xc0;" u2="&#x3f;" k="39" />
1165
+ <hkern u1="&#xc0;" g2="nine.ss04" k="77" />
1166
+ <hkern u1="&#xc0;" g2="six.ss04" k="29" />
1167
+ <hkern u1="&#xc0;" g2="three.ss04" k="29" />
1168
+ <hkern u1="&#xc0;" u2="&#x39;" k="40" />
1169
+ <hkern u1="&#xc0;" u2="&#x38;" k="30" />
1170
+ <hkern u1="&#xc0;" u2="&#x37;" k="26" />
1171
+ <hkern u1="&#xc0;" u2="&#x36;" k="35" />
1172
+ <hkern u1="&#xc0;" u2="&#x35;" k="39" />
1173
+ <hkern u1="&#xc0;" u2="&#x34;" k="19" />
1174
+ <hkern u1="&#xc0;" u2="&#x33;" k="20" />
1175
+ <hkern u1="&#xc0;" u2="&#x31;" k="30" />
1176
+ <hkern u1="&#xc0;" u2="&#x30;" k="40" />
1177
+ <hkern u1="&#xc0;" u2="v" k="51" />
1178
+ <hkern u1="&#xc0;" u2="f" k="17" />
1179
+ <hkern u1="&#x100;" u2="&#x40;" k="17" />
1180
+ <hkern u1="&#x100;" u2="&#xd7;" k="21" />
1181
+ <hkern u1="&#x100;" u2="&#x2b;" k="37" />
1182
+ <hkern u1="&#x100;" u2="&#x7b;" k="57" />
1183
+ <hkern u1="&#x100;" u2="&#x29;" k="34" />
1184
+ <hkern u1="&#x100;" u2="\" k="60" />
1185
+ <hkern u1="&#x100;" u2="&#x2a;" k="91" />
1186
+ <hkern u1="&#x100;" u2="&#x3f;" k="39" />
1187
+ <hkern u1="&#x100;" g2="nine.ss04" k="77" />
1188
+ <hkern u1="&#x100;" g2="six.ss04" k="29" />
1189
+ <hkern u1="&#x100;" g2="three.ss04" k="29" />
1190
+ <hkern u1="&#x100;" u2="&#x39;" k="40" />
1191
+ <hkern u1="&#x100;" u2="&#x38;" k="30" />
1192
+ <hkern u1="&#x100;" u2="&#x37;" k="26" />
1193
+ <hkern u1="&#x100;" u2="&#x36;" k="35" />
1194
+ <hkern u1="&#x100;" u2="&#x35;" k="39" />
1195
+ <hkern u1="&#x100;" u2="&#x34;" k="19" />
1196
+ <hkern u1="&#x100;" u2="&#x33;" k="20" />
1197
+ <hkern u1="&#x100;" u2="&#x31;" k="30" />
1198
+ <hkern u1="&#x100;" u2="&#x30;" k="40" />
1199
+ <hkern u1="&#x100;" u2="v" k="51" />
1200
+ <hkern u1="&#x100;" u2="f" k="17" />
1201
+ <hkern u1="&#x104;" u2="&#x40;" k="17" />
1202
+ <hkern u1="&#x104;" u2="&#xd7;" k="21" />
1203
+ <hkern u1="&#x104;" u2="&#x2b;" k="37" />
1204
+ <hkern u1="&#x104;" u2="&#x7b;" k="57" />
1205
+ <hkern u1="&#x104;" u2="&#x29;" k="34" />
1206
+ <hkern u1="&#x104;" u2="\" k="60" />
1207
+ <hkern u1="&#x104;" u2="&#x2a;" k="91" />
1208
+ <hkern u1="&#x104;" u2="&#x3f;" k="39" />
1209
+ <hkern u1="&#x104;" g2="nine.ss04" k="77" />
1210
+ <hkern u1="&#x104;" g2="six.ss04" k="29" />
1211
+ <hkern u1="&#x104;" g2="three.ss04" k="29" />
1212
+ <hkern u1="&#x104;" u2="&#x39;" k="40" />
1213
+ <hkern u1="&#x104;" u2="&#x38;" k="30" />
1214
+ <hkern u1="&#x104;" u2="&#x37;" k="26" />
1215
+ <hkern u1="&#x104;" u2="&#x36;" k="35" />
1216
+ <hkern u1="&#x104;" u2="&#x35;" k="39" />
1217
+ <hkern u1="&#x104;" u2="&#x34;" k="19" />
1218
+ <hkern u1="&#x104;" u2="&#x33;" k="20" />
1219
+ <hkern u1="&#x104;" u2="&#x31;" k="30" />
1220
+ <hkern u1="&#x104;" u2="&#x30;" k="40" />
1221
+ <hkern u1="&#x104;" u2="v" k="51" />
1222
+ <hkern u1="&#x104;" u2="f" k="17" />
1223
+ <hkern u1="&#xc5;" u2="&#x40;" k="17" />
1224
+ <hkern u1="&#xc5;" u2="&#xd7;" k="21" />
1225
+ <hkern u1="&#xc5;" u2="&#x2b;" k="37" />
1226
+ <hkern u1="&#xc5;" u2="&#x7b;" k="57" />
1227
+ <hkern u1="&#xc5;" u2="&#x29;" k="34" />
1228
+ <hkern u1="&#xc5;" u2="\" k="60" />
1229
+ <hkern u1="&#xc5;" u2="&#x2a;" k="91" />
1230
+ <hkern u1="&#xc5;" u2="&#x3f;" k="39" />
1231
+ <hkern u1="&#xc5;" g2="nine.ss04" k="77" />
1232
+ <hkern u1="&#xc5;" g2="six.ss04" k="29" />
1233
+ <hkern u1="&#xc5;" g2="three.ss04" k="29" />
1234
+ <hkern u1="&#xc5;" u2="&#x39;" k="40" />
1235
+ <hkern u1="&#xc5;" u2="&#x38;" k="30" />
1236
+ <hkern u1="&#xc5;" u2="&#x37;" k="26" />
1237
+ <hkern u1="&#xc5;" u2="&#x36;" k="35" />
1238
+ <hkern u1="&#xc5;" u2="&#x35;" k="39" />
1239
+ <hkern u1="&#xc5;" u2="&#x34;" k="19" />
1240
+ <hkern u1="&#xc5;" u2="&#x33;" k="20" />
1241
+ <hkern u1="&#xc5;" u2="&#x31;" k="30" />
1242
+ <hkern u1="&#xc5;" u2="&#x30;" k="40" />
1243
+ <hkern u1="&#xc5;" u2="v" k="51" />
1244
+ <hkern u1="&#xc5;" u2="f" k="17" />
1245
+ <hkern u1="&#xc3;" u2="&#x40;" k="17" />
1246
+ <hkern u1="&#xc3;" u2="&#xd7;" k="21" />
1247
+ <hkern u1="&#xc3;" u2="&#x2b;" k="37" />
1248
+ <hkern u1="&#xc3;" u2="&#x7b;" k="57" />
1249
+ <hkern u1="&#xc3;" u2="&#x29;" k="34" />
1250
+ <hkern u1="&#xc3;" u2="\" k="60" />
1251
+ <hkern u1="&#xc3;" u2="&#x2a;" k="91" />
1252
+ <hkern u1="&#xc3;" u2="&#x3f;" k="39" />
1253
+ <hkern u1="&#xc3;" g2="nine.ss04" k="77" />
1254
+ <hkern u1="&#xc3;" g2="six.ss04" k="29" />
1255
+ <hkern u1="&#xc3;" g2="three.ss04" k="29" />
1256
+ <hkern u1="&#xc3;" u2="&#x39;" k="40" />
1257
+ <hkern u1="&#xc3;" u2="&#x38;" k="30" />
1258
+ <hkern u1="&#xc3;" u2="&#x37;" k="26" />
1259
+ <hkern u1="&#xc3;" u2="&#x36;" k="35" />
1260
+ <hkern u1="&#xc3;" u2="&#x35;" k="39" />
1261
+ <hkern u1="&#xc3;" u2="&#x34;" k="19" />
1262
+ <hkern u1="&#xc3;" u2="&#x33;" k="20" />
1263
+ <hkern u1="&#xc3;" u2="&#x31;" k="30" />
1264
+ <hkern u1="&#xc3;" u2="&#x30;" k="40" />
1265
+ <hkern u1="&#xc3;" u2="v" k="51" />
1266
+ <hkern u1="&#xc3;" u2="f" k="17" />
1267
+ <hkern u1="&#xc6;" u2="&#x129;" k="-33" />
1268
+ <hkern u1="&#xc6;" u2="&#x12b;" k="-51" />
1269
+ <hkern u1="&#xc6;" u2="&#x12d;" k="-39" />
1270
+ <hkern u1="&#x1fc;" u2="&#x129;" k="-33" />
1271
+ <hkern u1="&#x1fc;" u2="&#x12b;" k="-51" />
1272
+ <hkern u1="&#x1fc;" u2="&#x12d;" k="-39" />
1273
+ <hkern u1="B" u2="&#x39;" k="21" />
1274
+ <hkern u1="B" u2="&#x12b;" k="-40" />
1275
+ <hkern u1="B" u2="&#x1ef8;" k="30" />
1276
+ <hkern u1="B" u2="&#x1ef2;" k="30" />
1277
+ <hkern u1="B" u2="&#x178;" k="30" />
1278
+ <hkern u1="B" u2="&#x176;" k="30" />
1279
+ <hkern u1="B" u2="&#xdd;" k="30" />
1280
+ <hkern u1="B" u2="Y" k="30" />
1281
+ <hkern u1="B" u2="X" k="23" />
1282
+ <hkern u1="B" u2="&#x1e80;" k="20" />
1283
+ <hkern u1="B" u2="&#x1e84;" k="20" />
1284
+ <hkern u1="B" u2="&#x174;" k="20" />
1285
+ <hkern u1="B" u2="&#x1e82;" k="20" />
1286
+ <hkern u1="B" u2="W" k="20" />
1287
+ <hkern u1="B" u2="V" k="20" />
1288
+ <hkern u1="B" u2="&#x21a;" k="17" />
1289
+ <hkern u1="B" u2="&#x162;" k="17" />
1290
+ <hkern u1="B" u2="&#x164;" k="17" />
1291
+ <hkern u1="B" u2="T" k="17" />
1292
+ <hkern u1="B" u2="&#x1fc;" k="37" />
1293
+ <hkern u1="B" u2="&#xc6;" k="37" />
1294
+ <hkern u1="B" u2="&#xc3;" k="12" />
1295
+ <hkern u1="B" u2="&#xc5;" k="12" />
1296
+ <hkern u1="B" u2="&#x104;" k="12" />
1297
+ <hkern u1="B" u2="&#x100;" k="12" />
1298
+ <hkern u1="B" u2="&#xc0;" k="12" />
1299
+ <hkern u1="B" u2="&#xc4;" k="12" />
1300
+ <hkern u1="B" u2="&#xc2;" k="12" />
1301
+ <hkern u1="B" u2="&#x102;" k="12" />
1302
+ <hkern u1="B" u2="&#xc1;" k="12" />
1303
+ <hkern u1="B" u2="A" k="12" />
1304
+ <hkern u1="C" u2="&#x29;" k="30" />
1305
+ <hkern u1="C" u2="&#x129;" k="-30" />
1306
+ <hkern u1="C" u2="&#x12b;" k="-30" />
1307
+ <hkern u1="C" u2="X" k="20" />
1308
+ <hkern u1="&#x106;" u2="&#x29;" k="30" />
1309
+ <hkern u1="&#x106;" u2="&#x129;" k="-30" />
1310
+ <hkern u1="&#x106;" u2="&#x12b;" k="-30" />
1311
+ <hkern u1="&#x106;" u2="X" k="20" />
1312
+ <hkern u1="&#x10c;" u2="&#x29;" k="30" />
1313
+ <hkern u1="&#x10c;" u2="&#x129;" k="-30" />
1314
+ <hkern u1="&#x10c;" u2="&#x12b;" k="-30" />
1315
+ <hkern u1="&#x10c;" u2="X" k="20" />
1316
+ <hkern u1="&#xc7;" u2="&#x29;" k="30" />
1317
+ <hkern u1="&#xc7;" u2="&#x129;" k="-30" />
1318
+ <hkern u1="&#xc7;" u2="&#x12b;" k="-30" />
1319
+ <hkern u1="&#xc7;" u2="X" k="20" />
1320
+ <hkern u1="&#x10a;" u2="&#x29;" k="30" />
1321
+ <hkern u1="&#x10a;" u2="&#x129;" k="-30" />
1322
+ <hkern u1="&#x10a;" u2="&#x12b;" k="-30" />
1323
+ <hkern u1="&#x10a;" u2="X" k="20" />
1324
+ <hkern u1="D" u2="_" k="43" />
1325
+ <hkern u1="D" u2="&#x7d;" k="31" />
1326
+ <hkern u1="D" u2="&#x29;" k="67" />
1327
+ <hkern u1="D" u2="\" k="26" />
1328
+ <hkern u1="D" u2="&#x2f;" k="41" />
1329
+ <hkern u1="D" u2="&#x2c;" k="40" />
1330
+ <hkern u1="D" u2="&#x37;" k="30" />
1331
+ <hkern u1="D" u2="&#x32;" k="17" />
1332
+ <hkern u1="D" u2="X" k="47" />
1333
+ <hkern u1="&#xd0;" u2="_" k="43" />
1334
+ <hkern u1="&#xd0;" u2="&#x7d;" k="31" />
1335
+ <hkern u1="&#xd0;" u2="&#x29;" k="67" />
1336
+ <hkern u1="&#xd0;" u2="\" k="26" />
1337
+ <hkern u1="&#xd0;" u2="&#x2f;" k="41" />
1338
+ <hkern u1="&#xd0;" u2="&#x2c;" k="40" />
1339
+ <hkern u1="&#xd0;" u2="&#x37;" k="30" />
1340
+ <hkern u1="&#xd0;" u2="&#x32;" k="17" />
1341
+ <hkern u1="&#xd0;" u2="X" k="47" />
1342
+ <hkern u1="&#x10e;" u2="_" k="43" />
1343
+ <hkern u1="&#x10e;" u2="&#x7d;" k="31" />
1344
+ <hkern u1="&#x10e;" u2="&#x29;" k="67" />
1345
+ <hkern u1="&#x10e;" u2="\" k="26" />
1346
+ <hkern u1="&#x10e;" u2="&#x2f;" k="41" />
1347
+ <hkern u1="&#x10e;" u2="&#x2c;" k="40" />
1348
+ <hkern u1="&#x10e;" u2="&#x37;" k="30" />
1349
+ <hkern u1="&#x10e;" u2="&#x32;" k="17" />
1350
+ <hkern u1="&#x10e;" u2="X" k="47" />
1351
+ <hkern u1="&#x110;" u2="_" k="43" />
1352
+ <hkern u1="&#x110;" u2="&#x7d;" k="31" />
1353
+ <hkern u1="&#x110;" u2="&#x29;" k="67" />
1354
+ <hkern u1="&#x110;" u2="\" k="26" />
1355
+ <hkern u1="&#x110;" u2="&#x2f;" k="41" />
1356
+ <hkern u1="&#x110;" u2="&#x2c;" k="40" />
1357
+ <hkern u1="&#x110;" u2="&#x37;" k="30" />
1358
+ <hkern u1="&#x110;" u2="&#x32;" k="17" />
1359
+ <hkern u1="&#x110;" u2="X" k="47" />
1360
+ <hkern u1="E" u2="&#x129;" k="-33" />
1361
+ <hkern u1="E" u2="&#x12b;" k="-51" />
1362
+ <hkern u1="E" u2="&#x12d;" k="-39" />
1363
+ <hkern u1="&#xc9;" u2="&#x129;" k="-33" />
1364
+ <hkern u1="&#xc9;" u2="&#x12b;" k="-51" />
1365
+ <hkern u1="&#xc9;" u2="&#x12d;" k="-39" />
1366
+ <hkern u1="&#x114;" u2="&#x129;" k="-33" />
1367
+ <hkern u1="&#x114;" u2="&#x12b;" k="-51" />
1368
+ <hkern u1="&#x114;" u2="&#x12d;" k="-39" />
1369
+ <hkern u1="&#x11a;" u2="&#x129;" k="-33" />
1370
+ <hkern u1="&#x11a;" u2="&#x12b;" k="-51" />
1371
+ <hkern u1="&#x11a;" u2="&#x12d;" k="-39" />
1372
+ <hkern u1="&#xca;" u2="&#x129;" k="-33" />
1373
+ <hkern u1="&#xca;" u2="&#x12b;" k="-51" />
1374
+ <hkern u1="&#xca;" u2="&#x12d;" k="-39" />
1375
+ <hkern u1="&#xcb;" u2="&#x129;" k="-33" />
1376
+ <hkern u1="&#xcb;" u2="&#x12b;" k="-51" />
1377
+ <hkern u1="&#xcb;" u2="&#x12d;" k="-39" />
1378
+ <hkern u1="&#x116;" u2="&#x129;" k="-33" />
1379
+ <hkern u1="&#x116;" u2="&#x12b;" k="-51" />
1380
+ <hkern u1="&#x116;" u2="&#x12d;" k="-39" />
1381
+ <hkern u1="&#xc8;" u2="&#x129;" k="-33" />
1382
+ <hkern u1="&#xc8;" u2="&#x12b;" k="-51" />
1383
+ <hkern u1="&#xc8;" u2="&#x12d;" k="-39" />
1384
+ <hkern u1="&#x112;" u2="&#x129;" k="-33" />
1385
+ <hkern u1="&#x112;" u2="&#x12b;" k="-51" />
1386
+ <hkern u1="&#x112;" u2="&#x12d;" k="-39" />
1387
+ <hkern u1="&#x118;" u2="&#x129;" k="-33" />
1388
+ <hkern u1="&#x118;" u2="&#x12b;" k="-51" />
1389
+ <hkern u1="&#x118;" u2="&#x12d;" k="-39" />
1390
+ <hkern u1="&#x1ebc;" u2="&#x129;" k="-33" />
1391
+ <hkern u1="&#x1ebc;" u2="&#x12b;" k="-51" />
1392
+ <hkern u1="&#x1ebc;" u2="&#x12d;" k="-39" />
1393
+ <hkern u1="F" u2="&#x26;" k="20" />
1394
+ <hkern u1="F" u2="&#x40;" k="40" />
1395
+ <hkern u1="F" u2="&#xd7;" k="20" />
1396
+ <hkern u1="F" g2="quotedblbase.ss01" k="41" />
1397
+ <hkern u1="F" g2="quotesinglbase.ss01" k="41" />
1398
+ <hkern u1="F" u2="_" k="40" />
1399
+ <hkern u1="F" g2="comma.ss01" k="41" />
1400
+ <hkern u1="F" u2="&#x2026;" k="60" />
1401
+ <hkern u1="F" u2="&#x2c;" k="60" />
1402
+ <hkern u1="F" u2="&#x2e;" k="60" />
1403
+ <hkern u1="F" g2="six.ss04" k="30" />
1404
+ <hkern u1="F" g2="three.ss04" k="26" />
1405
+ <hkern u1="F" u2="&#x38;" k="17" />
1406
+ <hkern u1="F" g2="gdotaccent.ss03" k="20" />
1407
+ <hkern u1="F" g2="uni0123.ss03" k="20" />
1408
+ <hkern u1="F" g2="gbreve.ss03" k="20" />
1409
+ <hkern u1="F" g2="g.ss03" k="20" />
1410
+ <hkern u1="F" g2="aeacute.ss02" k="21" />
1411
+ <hkern u1="F" g2="ae.ss02" k="21" />
1412
+ <hkern u1="F" g2="atilde.ss02" k="21" />
1413
+ <hkern u1="F" g2="aring.ss02" k="21" />
1414
+ <hkern u1="F" g2="aogonek.ss02" k="21" />
1415
+ <hkern u1="F" g2="amacron.ss02" k="21" />
1416
+ <hkern u1="F" g2="agrave.ss02" k="21" />
1417
+ <hkern u1="F" g2="adieresis.ss02" k="21" />
1418
+ <hkern u1="F" g2="acircumflex.ss02" k="21" />
1419
+ <hkern u1="F" g2="abreve.ss02" k="21" />
1420
+ <hkern u1="F" g2="aacute.ss02" k="21" />
1421
+ <hkern u1="F" g2="a.ss02" k="21" />
1422
+ <hkern u1="F" u2="&#x219;" k="20" />
1423
+ <hkern u1="F" u2="&#x15f;" k="20" />
1424
+ <hkern u1="F" u2="&#x161;" k="20" />
1425
+ <hkern u1="F" u2="&#x15b;" k="20" />
1426
+ <hkern u1="F" u2="s" k="20" />
1427
+ <hkern u1="F" u2="q" k="21" />
1428
+ <hkern u1="F" u2="&#x153;" k="21" />
1429
+ <hkern u1="F" u2="&#xf5;" k="21" />
1430
+ <hkern u1="F" u2="&#x14d;" k="21" />
1431
+ <hkern u1="F" u2="&#x151;" k="21" />
1432
+ <hkern u1="F" u2="&#xf2;" k="21" />
1433
+ <hkern u1="F" u2="&#xf6;" k="21" />
1434
+ <hkern u1="F" u2="&#xf4;" k="21" />
1435
+ <hkern u1="F" u2="&#x14f;" k="21" />
1436
+ <hkern u1="F" u2="&#xf3;" k="21" />
1437
+ <hkern u1="F" u2="o" k="21" />
1438
+ <hkern u1="F" u2="&#x12b;" k="-70" />
1439
+ <hkern u1="F" u2="&#x12d;" k="-49" />
1440
+ <hkern u1="F" u2="&#x259;" k="21" />
1441
+ <hkern u1="F" u2="&#x1ebd;" k="21" />
1442
+ <hkern u1="F" u2="&#x119;" k="21" />
1443
+ <hkern u1="F" u2="&#x113;" k="21" />
1444
+ <hkern u1="F" u2="&#xe8;" k="21" />
1445
+ <hkern u1="F" u2="&#x117;" k="21" />
1446
+ <hkern u1="F" u2="&#xeb;" k="21" />
1447
+ <hkern u1="F" u2="&#xea;" k="21" />
1448
+ <hkern u1="F" u2="&#x11b;" k="21" />
1449
+ <hkern u1="F" u2="&#x115;" k="21" />
1450
+ <hkern u1="F" u2="&#xe9;" k="21" />
1451
+ <hkern u1="F" u2="e" k="21" />
1452
+ <hkern u1="F" u2="&#x111;" k="21" />
1453
+ <hkern u1="F" u2="&#x10f;" k="21" />
1454
+ <hkern u1="F" u2="&#xf0;" k="21" />
1455
+ <hkern u1="F" u2="d" k="21" />
1456
+ <hkern u1="F" u2="&#x10b;" k="21" />
1457
+ <hkern u1="F" u2="&#xe7;" k="21" />
1458
+ <hkern u1="F" u2="&#x10d;" k="21" />
1459
+ <hkern u1="F" u2="&#x107;" k="21" />
1460
+ <hkern u1="F" u2="c" k="21" />
1461
+ <hkern u1="F" u2="&#x1fd;" k="34" />
1462
+ <hkern u1="F" u2="&#xe6;" k="34" />
1463
+ <hkern u1="F" u2="&#xe3;" k="34" />
1464
+ <hkern u1="F" u2="&#xe5;" k="34" />
1465
+ <hkern u1="F" u2="&#x105;" k="34" />
1466
+ <hkern u1="F" u2="&#x101;" k="34" />
1467
+ <hkern u1="F" u2="&#xe0;" k="34" />
1468
+ <hkern u1="F" u2="&#xe4;" k="34" />
1469
+ <hkern u1="F" u2="&#xe2;" k="34" />
1470
+ <hkern u1="F" u2="&#x103;" k="34" />
1471
+ <hkern u1="F" u2="&#xe1;" k="34" />
1472
+ <hkern u1="F" u2="a" k="34" />
1473
+ <hkern u1="F" u2="J" k="57" />
1474
+ <hkern u1="F" u2="&#xc3;" k="71" />
1475
+ <hkern u1="F" u2="&#xc5;" k="71" />
1476
+ <hkern u1="F" u2="&#x104;" k="71" />
1477
+ <hkern u1="F" u2="&#x100;" k="71" />
1478
+ <hkern u1="F" u2="&#xc0;" k="71" />
1479
+ <hkern u1="F" u2="&#xc4;" k="71" />
1480
+ <hkern u1="F" u2="&#xc2;" k="71" />
1481
+ <hkern u1="F" u2="&#x102;" k="71" />
1482
+ <hkern u1="F" u2="&#xc1;" k="71" />
1483
+ <hkern u1="F" u2="A" k="71" />
1484
+ <hkern u1="G" u2="&#x12b;" k="-30" />
1485
+ <hkern u1="&#x11e;" u2="&#x12b;" k="-30" />
1486
+ <hkern u1="&#x122;" u2="&#x12b;" k="-30" />
1487
+ <hkern u1="&#x120;" u2="&#x12b;" k="-30" />
1488
+ <hkern u1="H" u2="&#x129;" k="-4" />
1489
+ <hkern u1="H" u2="&#x12b;" k="-40" />
1490
+ <hkern u1="I" u2="&#x129;" k="-4" />
1491
+ <hkern u1="I" u2="&#x12b;" k="-40" />
1492
+ <hkern u1="&#xcd;" u2="&#x129;" k="-4" />
1493
+ <hkern u1="&#xcd;" u2="&#x12b;" k="-40" />
1494
+ <hkern u1="&#x12c;" u2="&#x129;" k="-4" />
1495
+ <hkern u1="&#x12c;" u2="&#x12b;" k="-40" />
1496
+ <hkern u1="&#xce;" u2="&#x129;" k="-4" />
1497
+ <hkern u1="&#xce;" u2="&#x12b;" k="-40" />
1498
+ <hkern u1="&#xcf;" u2="&#x129;" k="-4" />
1499
+ <hkern u1="&#xcf;" u2="&#x12b;" k="-40" />
1500
+ <hkern u1="&#x130;" u2="&#x129;" k="-4" />
1501
+ <hkern u1="&#x130;" u2="&#x12b;" k="-40" />
1502
+ <hkern u1="&#xcc;" u2="&#x129;" k="-4" />
1503
+ <hkern u1="&#xcc;" u2="&#x12b;" k="-40" />
1504
+ <hkern u1="&#x12a;" u2="&#x129;" k="-4" />
1505
+ <hkern u1="&#x12a;" u2="&#x12b;" k="-40" />
1506
+ <hkern u1="&#x12e;" u2="&#x129;" k="-4" />
1507
+ <hkern u1="&#x12e;" u2="&#x12b;" k="-40" />
1508
+ <hkern u1="&#x128;" u2="&#x129;" k="-4" />
1509
+ <hkern u1="&#x128;" u2="&#x12b;" k="-40" />
1510
+ <hkern u1="J" u2="&#x2026;" k="20" />
1511
+ <hkern u1="J" u2="&#x2e;" k="20" />
1512
+ <hkern u1="J" u2="&#x12b;" k="-61" />
1513
+ <hkern u1="J" u2="&#xec;" k="-40" />
1514
+ <hkern u1="J" u2="&#xc3;" k="30" />
1515
+ <hkern u1="J" u2="&#xc5;" k="30" />
1516
+ <hkern u1="J" u2="&#x104;" k="30" />
1517
+ <hkern u1="J" u2="&#x100;" k="30" />
1518
+ <hkern u1="J" u2="&#xc0;" k="30" />
1519
+ <hkern u1="J" u2="&#xc4;" k="30" />
1520
+ <hkern u1="J" u2="&#xc2;" k="30" />
1521
+ <hkern u1="J" u2="&#x102;" k="30" />
1522
+ <hkern u1="J" u2="&#xc1;" k="30" />
1523
+ <hkern u1="J" u2="A" k="30" />
1524
+ <hkern u1="K" u2="&#x26;" k="14" />
1525
+ <hkern u1="K" u2="&#x2b;" k="50" />
1526
+ <hkern u1="K" u2="&#x3f;" k="14" />
1527
+ <hkern u1="K" g2="nine.ss04" k="23" />
1528
+ <hkern u1="K" g2="six.ss04" k="40" />
1529
+ <hkern u1="K" u2="&#x39;" k="29" />
1530
+ <hkern u1="K" u2="&#x38;" k="30" />
1531
+ <hkern u1="K" u2="&#x36;" k="28" />
1532
+ <hkern u1="K" u2="&#x34;" k="21" />
1533
+ <hkern u1="K" u2="&#x33;" k="20" />
1534
+ <hkern u1="K" u2="&#x30;" k="23" />
1535
+ <hkern u1="K" u2="v" k="30" />
1536
+ <hkern u1="K" u2="&#x12b;" k="-60" />
1537
+ <hkern u1="K" u2="&#xec;" k="-60" />
1538
+ <hkern u1="K" u2="&#x12d;" k="-59" />
1539
+ <hkern u1="&#x136;" u2="&#x26;" k="14" />
1540
+ <hkern u1="&#x136;" u2="&#x2b;" k="50" />
1541
+ <hkern u1="&#x136;" u2="&#x3f;" k="14" />
1542
+ <hkern u1="&#x136;" g2="nine.ss04" k="23" />
1543
+ <hkern u1="&#x136;" g2="six.ss04" k="40" />
1544
+ <hkern u1="&#x136;" u2="&#x39;" k="29" />
1545
+ <hkern u1="&#x136;" u2="&#x38;" k="30" />
1546
+ <hkern u1="&#x136;" u2="&#x36;" k="28" />
1547
+ <hkern u1="&#x136;" u2="&#x34;" k="21" />
1548
+ <hkern u1="&#x136;" u2="&#x33;" k="20" />
1549
+ <hkern u1="&#x136;" u2="&#x30;" k="23" />
1550
+ <hkern u1="&#x136;" u2="v" k="30" />
1551
+ <hkern u1="&#x136;" u2="&#x12b;" k="-60" />
1552
+ <hkern u1="&#x136;" u2="&#xec;" k="-60" />
1553
+ <hkern u1="&#x136;" u2="&#x12d;" k="-59" />
1554
+ <hkern u1="L" u2="&#x2b;" k="57" />
1555
+ <hkern u1="L" u2="\" k="40" />
1556
+ <hkern u1="L" u2="&#x2a;" k="93" />
1557
+ <hkern u1="L" u2="&#x3f;" k="29" />
1558
+ <hkern u1="L" g2="nine.ss04" k="57" />
1559
+ <hkern u1="L" u2="&#x39;" k="57" />
1560
+ <hkern u1="L" u2="&#x37;" k="49" />
1561
+ <hkern u1="L" u2="&#x36;" k="29" />
1562
+ <hkern u1="L" u2="&#x35;" k="21" />
1563
+ <hkern u1="L" u2="&#x34;" k="34" />
1564
+ <hkern u1="L" u2="&#x31;" k="31" />
1565
+ <hkern u1="L" u2="&#x30;" k="39" />
1566
+ <hkern u1="L" u2="v" k="67" />
1567
+ <hkern u1="L" u2="&#x18f;" k="30" />
1568
+ <hkern u1="&#x139;" u2="&#x2b;" k="57" />
1569
+ <hkern u1="&#x139;" u2="\" k="40" />
1570
+ <hkern u1="&#x139;" u2="&#x2a;" k="93" />
1571
+ <hkern u1="&#x139;" u2="&#x3f;" k="29" />
1572
+ <hkern u1="&#x139;" g2="nine.ss04" k="57" />
1573
+ <hkern u1="&#x139;" u2="&#x39;" k="57" />
1574
+ <hkern u1="&#x139;" u2="&#x37;" k="49" />
1575
+ <hkern u1="&#x139;" u2="&#x36;" k="29" />
1576
+ <hkern u1="&#x139;" u2="&#x35;" k="21" />
1577
+ <hkern u1="&#x139;" u2="&#x34;" k="34" />
1578
+ <hkern u1="&#x139;" u2="&#x31;" k="31" />
1579
+ <hkern u1="&#x139;" u2="&#x30;" k="39" />
1580
+ <hkern u1="&#x139;" u2="v" k="67" />
1581
+ <hkern u1="&#x139;" u2="&#x18f;" k="30" />
1582
+ <hkern u1="&#x13d;" u2="&#x2b;" k="57" />
1583
+ <hkern u1="&#x13d;" u2="\" k="40" />
1584
+ <hkern u1="&#x13d;" u2="&#x2a;" k="93" />
1585
+ <hkern u1="&#x13d;" u2="&#x3f;" k="29" />
1586
+ <hkern u1="&#x13d;" g2="nine.ss04" k="57" />
1587
+ <hkern u1="&#x13d;" u2="&#x39;" k="57" />
1588
+ <hkern u1="&#x13d;" u2="&#x37;" k="49" />
1589
+ <hkern u1="&#x13d;" u2="&#x36;" k="29" />
1590
+ <hkern u1="&#x13d;" u2="&#x35;" k="21" />
1591
+ <hkern u1="&#x13d;" u2="&#x34;" k="34" />
1592
+ <hkern u1="&#x13d;" u2="&#x31;" k="31" />
1593
+ <hkern u1="&#x13d;" u2="&#x30;" k="39" />
1594
+ <hkern u1="&#x13d;" u2="v" k="67" />
1595
+ <hkern u1="&#x13d;" u2="V" k="64" />
1596
+ <hkern u1="&#x13d;" u2="&#x18f;" k="30" />
1597
+ <hkern u1="&#x13b;" u2="&#x2b;" k="57" />
1598
+ <hkern u1="&#x13b;" u2="\" k="40" />
1599
+ <hkern u1="&#x13b;" u2="&#x2a;" k="93" />
1600
+ <hkern u1="&#x13b;" u2="&#x3f;" k="29" />
1601
+ <hkern u1="&#x13b;" g2="nine.ss04" k="57" />
1602
+ <hkern u1="&#x13b;" u2="&#x39;" k="57" />
1603
+ <hkern u1="&#x13b;" u2="&#x37;" k="49" />
1604
+ <hkern u1="&#x13b;" u2="&#x36;" k="29" />
1605
+ <hkern u1="&#x13b;" u2="&#x35;" k="21" />
1606
+ <hkern u1="&#x13b;" u2="&#x34;" k="34" />
1607
+ <hkern u1="&#x13b;" u2="&#x31;" k="31" />
1608
+ <hkern u1="&#x13b;" u2="&#x30;" k="39" />
1609
+ <hkern u1="&#x13b;" u2="v" k="67" />
1610
+ <hkern u1="&#x13b;" u2="&#x18f;" k="30" />
1611
+ <hkern u1="&#x13f;" u2="&#x2b;" k="57" />
1612
+ <hkern u1="&#x13f;" u2="\" k="40" />
1613
+ <hkern u1="&#x13f;" u2="&#x2a;" k="93" />
1614
+ <hkern u1="&#x13f;" u2="&#x3f;" k="29" />
1615
+ <hkern u1="&#x13f;" g2="nine.ss04" k="57" />
1616
+ <hkern u1="&#x13f;" u2="&#x39;" k="57" />
1617
+ <hkern u1="&#x13f;" u2="&#x37;" k="49" />
1618
+ <hkern u1="&#x13f;" u2="&#x36;" k="29" />
1619
+ <hkern u1="&#x13f;" u2="&#x35;" k="21" />
1620
+ <hkern u1="&#x13f;" u2="&#x34;" k="34" />
1621
+ <hkern u1="&#x13f;" u2="&#x31;" k="31" />
1622
+ <hkern u1="&#x13f;" u2="&#x30;" k="39" />
1623
+ <hkern u1="&#x13f;" u2="v" k="67" />
1624
+ <hkern u1="&#x13f;" u2="&#x18f;" k="30" />
1625
+ <hkern u1="&#x141;" u2="&#x2b;" k="57" />
1626
+ <hkern u1="&#x141;" u2="\" k="40" />
1627
+ <hkern u1="&#x141;" u2="&#x2a;" k="93" />
1628
+ <hkern u1="&#x141;" u2="&#x3f;" k="29" />
1629
+ <hkern u1="&#x141;" g2="nine.ss04" k="57" />
1630
+ <hkern u1="&#x141;" u2="&#x39;" k="57" />
1631
+ <hkern u1="&#x141;" u2="&#x37;" k="49" />
1632
+ <hkern u1="&#x141;" u2="&#x36;" k="29" />
1633
+ <hkern u1="&#x141;" u2="&#x35;" k="21" />
1634
+ <hkern u1="&#x141;" u2="&#x34;" k="34" />
1635
+ <hkern u1="&#x141;" u2="&#x31;" k="31" />
1636
+ <hkern u1="&#x141;" u2="&#x30;" k="39" />
1637
+ <hkern u1="&#x141;" u2="v" k="67" />
1638
+ <hkern u1="&#x141;" u2="&#x18f;" k="30" />
1639
+ <hkern u1="M" u2="&#x129;" k="-4" />
1640
+ <hkern u1="M" u2="&#x12b;" k="-40" />
1641
+ <hkern u1="N" u2="&#x129;" k="-4" />
1642
+ <hkern u1="N" u2="&#x12b;" k="-40" />
1643
+ <hkern u1="&#x143;" u2="&#x129;" k="-4" />
1644
+ <hkern u1="&#x143;" u2="&#x12b;" k="-40" />
1645
+ <hkern u1="&#x147;" u2="&#x129;" k="-4" />
1646
+ <hkern u1="&#x147;" u2="&#x12b;" k="-40" />
1647
+ <hkern u1="&#x145;" u2="&#x129;" k="-4" />
1648
+ <hkern u1="&#x145;" u2="&#x12b;" k="-40" />
1649
+ <hkern u1="&#xd1;" u2="&#x129;" k="-4" />
1650
+ <hkern u1="&#xd1;" u2="&#x12b;" k="-40" />
1651
+ <hkern u1="O" u2="_" k="43" />
1652
+ <hkern u1="O" u2="&#x7d;" k="31" />
1653
+ <hkern u1="O" u2="&#x29;" k="67" />
1654
+ <hkern u1="O" u2="\" k="26" />
1655
+ <hkern u1="O" u2="&#x2f;" k="41" />
1656
+ <hkern u1="O" u2="&#x2c;" k="40" />
1657
+ <hkern u1="O" u2="&#x37;" k="30" />
1658
+ <hkern u1="O" u2="&#x32;" k="17" />
1659
+ <hkern u1="O" u2="X" k="47" />
1660
+ <hkern u1="&#xd3;" u2="_" k="43" />
1661
+ <hkern u1="&#xd3;" u2="&#x7d;" k="31" />
1662
+ <hkern u1="&#xd3;" u2="&#x29;" k="67" />
1663
+ <hkern u1="&#xd3;" u2="\" k="26" />
1664
+ <hkern u1="&#xd3;" u2="&#x2f;" k="41" />
1665
+ <hkern u1="&#xd3;" u2="&#x2c;" k="40" />
1666
+ <hkern u1="&#xd3;" u2="&#x37;" k="30" />
1667
+ <hkern u1="&#xd3;" u2="&#x32;" k="17" />
1668
+ <hkern u1="&#xd3;" u2="X" k="47" />
1669
+ <hkern u1="&#x14e;" u2="_" k="43" />
1670
+ <hkern u1="&#x14e;" u2="&#x7d;" k="31" />
1671
+ <hkern u1="&#x14e;" u2="&#x29;" k="67" />
1672
+ <hkern u1="&#x14e;" u2="\" k="26" />
1673
+ <hkern u1="&#x14e;" u2="&#x2f;" k="41" />
1674
+ <hkern u1="&#x14e;" u2="&#x2c;" k="40" />
1675
+ <hkern u1="&#x14e;" u2="&#x37;" k="30" />
1676
+ <hkern u1="&#x14e;" u2="&#x32;" k="17" />
1677
+ <hkern u1="&#x14e;" u2="X" k="47" />
1678
+ <hkern u1="&#xd4;" u2="_" k="43" />
1679
+ <hkern u1="&#xd4;" u2="&#x7d;" k="31" />
1680
+ <hkern u1="&#xd4;" u2="&#x29;" k="67" />
1681
+ <hkern u1="&#xd4;" u2="\" k="26" />
1682
+ <hkern u1="&#xd4;" u2="&#x2f;" k="41" />
1683
+ <hkern u1="&#xd4;" u2="&#x2c;" k="40" />
1684
+ <hkern u1="&#xd4;" u2="&#x37;" k="30" />
1685
+ <hkern u1="&#xd4;" u2="&#x32;" k="17" />
1686
+ <hkern u1="&#xd4;" u2="X" k="47" />
1687
+ <hkern u1="&#xd6;" u2="_" k="43" />
1688
+ <hkern u1="&#xd6;" u2="&#x7d;" k="31" />
1689
+ <hkern u1="&#xd6;" u2="&#x29;" k="67" />
1690
+ <hkern u1="&#xd6;" u2="\" k="26" />
1691
+ <hkern u1="&#xd6;" u2="&#x2f;" k="41" />
1692
+ <hkern u1="&#xd6;" u2="&#x2c;" k="40" />
1693
+ <hkern u1="&#xd6;" u2="&#x37;" k="30" />
1694
+ <hkern u1="&#xd6;" u2="&#x32;" k="17" />
1695
+ <hkern u1="&#xd6;" u2="X" k="47" />
1696
+ <hkern u1="&#xd2;" u2="_" k="43" />
1697
+ <hkern u1="&#xd2;" u2="&#x7d;" k="31" />
1698
+ <hkern u1="&#xd2;" u2="&#x29;" k="67" />
1699
+ <hkern u1="&#xd2;" u2="\" k="26" />
1700
+ <hkern u1="&#xd2;" u2="&#x2f;" k="41" />
1701
+ <hkern u1="&#xd2;" u2="&#x2c;" k="40" />
1702
+ <hkern u1="&#xd2;" u2="&#x37;" k="30" />
1703
+ <hkern u1="&#xd2;" u2="&#x32;" k="17" />
1704
+ <hkern u1="&#xd2;" u2="X" k="47" />
1705
+ <hkern u1="&#x150;" u2="_" k="43" />
1706
+ <hkern u1="&#x150;" u2="&#x7d;" k="31" />
1707
+ <hkern u1="&#x150;" u2="&#x29;" k="67" />
1708
+ <hkern u1="&#x150;" u2="\" k="26" />
1709
+ <hkern u1="&#x150;" u2="&#x2f;" k="41" />
1710
+ <hkern u1="&#x150;" u2="&#x2c;" k="40" />
1711
+ <hkern u1="&#x150;" u2="&#x37;" k="30" />
1712
+ <hkern u1="&#x150;" u2="&#x32;" k="17" />
1713
+ <hkern u1="&#x150;" u2="X" k="47" />
1714
+ <hkern u1="&#x14c;" u2="_" k="43" />
1715
+ <hkern u1="&#x14c;" u2="&#x7d;" k="31" />
1716
+ <hkern u1="&#x14c;" u2="&#x29;" k="67" />
1717
+ <hkern u1="&#x14c;" u2="\" k="26" />
1718
+ <hkern u1="&#x14c;" u2="&#x2f;" k="41" />
1719
+ <hkern u1="&#x14c;" u2="&#x2c;" k="40" />
1720
+ <hkern u1="&#x14c;" u2="&#x37;" k="30" />
1721
+ <hkern u1="&#x14c;" u2="&#x32;" k="17" />
1722
+ <hkern u1="&#x14c;" u2="X" k="47" />
1723
+ <hkern u1="&#xd8;" u2="_" k="40" />
1724
+ <hkern u1="&#xd8;" u2="&#x2f;" k="41" />
1725
+ <hkern u1="&#xd8;" u2="&#x2026;" k="34" />
1726
+ <hkern u1="&#xd8;" u2="&#x2e;" k="34" />
1727
+ <hkern u1="&#xd8;" u2="&#x12b;" k="-53" />
1728
+ <hkern u1="&#xd8;" u2="&#xec;" k="-59" />
1729
+ <hkern u1="&#xd5;" u2="_" k="43" />
1730
+ <hkern u1="&#xd5;" u2="&#x7d;" k="31" />
1731
+ <hkern u1="&#xd5;" u2="&#x29;" k="67" />
1732
+ <hkern u1="&#xd5;" u2="\" k="26" />
1733
+ <hkern u1="&#xd5;" u2="&#x2f;" k="41" />
1734
+ <hkern u1="&#xd5;" u2="&#x2c;" k="40" />
1735
+ <hkern u1="&#xd5;" u2="&#x37;" k="30" />
1736
+ <hkern u1="&#xd5;" u2="&#x32;" k="17" />
1737
+ <hkern u1="&#xd5;" u2="X" k="47" />
1738
+ <hkern u1="&#x152;" u2="&#x129;" k="-33" />
1739
+ <hkern u1="&#x152;" u2="&#x12b;" k="-51" />
1740
+ <hkern u1="&#x152;" u2="&#x12d;" k="-39" />
1741
+ <hkern u1="P" u2="&#x26;" k="39" />
1742
+ <hkern u1="P" u2="&#x40;" k="47" />
1743
+ <hkern u1="P" u2="&#x2b;" k="17" />
1744
+ <hkern u1="P" g2="quotedblbase.ss01" k="60" />
1745
+ <hkern u1="P" g2="quotesinglbase.ss01" k="60" />
1746
+ <hkern u1="P" u2="_" k="77" />
1747
+ <hkern u1="P" u2="&#x29;" k="30" />
1748
+ <hkern u1="P" g2="comma.ss01" k="60" />
1749
+ <hkern u1="P" u2="&#x2f;" k="79" />
1750
+ <hkern u1="P" u2="&#x2026;" k="70" />
1751
+ <hkern u1="P" u2="&#x2c;" k="83" />
1752
+ <hkern u1="P" u2="&#x2e;" k="70" />
1753
+ <hkern u1="P" g2="six.ss04" k="30" />
1754
+ <hkern u1="P" g2="three.ss04" k="37" />
1755
+ <hkern u1="P" u2="&#x38;" k="12" />
1756
+ <hkern u1="P" u2="&#x35;" k="17" />
1757
+ <hkern u1="P" u2="&#x34;" k="57" />
1758
+ <hkern u1="P" g2="gdotaccent.ss03" k="30" />
1759
+ <hkern u1="P" g2="uni0123.ss03" k="30" />
1760
+ <hkern u1="P" g2="gbreve.ss03" k="30" />
1761
+ <hkern u1="P" g2="g.ss03" k="30" />
1762
+ <hkern u1="P" g2="aeacute.ss02" k="29" />
1763
+ <hkern u1="P" g2="ae.ss02" k="29" />
1764
+ <hkern u1="P" g2="atilde.ss02" k="29" />
1765
+ <hkern u1="P" g2="aring.ss02" k="29" />
1766
+ <hkern u1="P" g2="aogonek.ss02" k="29" />
1767
+ <hkern u1="P" g2="amacron.ss02" k="29" />
1768
+ <hkern u1="P" g2="agrave.ss02" k="29" />
1769
+ <hkern u1="P" g2="adieresis.ss02" k="29" />
1770
+ <hkern u1="P" g2="acircumflex.ss02" k="29" />
1771
+ <hkern u1="P" g2="abreve.ss02" k="29" />
1772
+ <hkern u1="P" g2="aacute.ss02" k="29" />
1773
+ <hkern u1="P" g2="a.ss02" k="29" />
1774
+ <hkern u1="P" u2="q" k="29" />
1775
+ <hkern u1="P" u2="&#x153;" k="29" />
1776
+ <hkern u1="P" u2="&#xf5;" k="29" />
1777
+ <hkern u1="P" u2="&#x14d;" k="29" />
1778
+ <hkern u1="P" u2="&#x151;" k="29" />
1779
+ <hkern u1="P" u2="&#xf2;" k="29" />
1780
+ <hkern u1="P" u2="&#xf6;" k="29" />
1781
+ <hkern u1="P" u2="&#xf4;" k="29" />
1782
+ <hkern u1="P" u2="&#x14f;" k="29" />
1783
+ <hkern u1="P" u2="&#xf3;" k="29" />
1784
+ <hkern u1="P" u2="o" k="29" />
1785
+ <hkern u1="P" u2="&#x129;" k="-40" />
1786
+ <hkern u1="P" u2="&#x121;" k="37" />
1787
+ <hkern u1="P" u2="&#x123;" k="37" />
1788
+ <hkern u1="P" u2="&#x11f;" k="37" />
1789
+ <hkern u1="P" u2="g" k="37" />
1790
+ <hkern u1="P" u2="&#x259;" k="29" />
1791
+ <hkern u1="P" u2="&#x1ebd;" k="29" />
1792
+ <hkern u1="P" u2="&#x119;" k="29" />
1793
+ <hkern u1="P" u2="&#x113;" k="29" />
1794
+ <hkern u1="P" u2="&#xe8;" k="29" />
1795
+ <hkern u1="P" u2="&#x117;" k="29" />
1796
+ <hkern u1="P" u2="&#xeb;" k="29" />
1797
+ <hkern u1="P" u2="&#xea;" k="29" />
1798
+ <hkern u1="P" u2="&#x11b;" k="29" />
1799
+ <hkern u1="P" u2="&#x115;" k="29" />
1800
+ <hkern u1="P" u2="&#xe9;" k="29" />
1801
+ <hkern u1="P" u2="e" k="29" />
1802
+ <hkern u1="P" u2="&#x111;" k="29" />
1803
+ <hkern u1="P" u2="&#x10f;" k="29" />
1804
+ <hkern u1="P" u2="&#xf0;" k="29" />
1805
+ <hkern u1="P" u2="d" k="29" />
1806
+ <hkern u1="P" u2="&#x10b;" k="29" />
1807
+ <hkern u1="P" u2="&#xe7;" k="29" />
1808
+ <hkern u1="P" u2="&#x10d;" k="29" />
1809
+ <hkern u1="P" u2="&#x107;" k="29" />
1810
+ <hkern u1="P" u2="c" k="29" />
1811
+ <hkern u1="P" u2="&#x1fd;" k="23" />
1812
+ <hkern u1="P" u2="&#xe6;" k="23" />
1813
+ <hkern u1="P" u2="&#xe3;" k="23" />
1814
+ <hkern u1="P" u2="&#xe5;" k="23" />
1815
+ <hkern u1="P" u2="&#x105;" k="23" />
1816
+ <hkern u1="P" u2="&#x101;" k="23" />
1817
+ <hkern u1="P" u2="&#xe0;" k="23" />
1818
+ <hkern u1="P" u2="&#xe4;" k="23" />
1819
+ <hkern u1="P" u2="&#xe2;" k="23" />
1820
+ <hkern u1="P" u2="&#x103;" k="23" />
1821
+ <hkern u1="P" u2="&#xe1;" k="23" />
1822
+ <hkern u1="P" u2="a" k="23" />
1823
+ <hkern u1="P" u2="&#x17b;" k="20" />
1824
+ <hkern u1="P" u2="&#x17d;" k="20" />
1825
+ <hkern u1="P" u2="&#x179;" k="20" />
1826
+ <hkern u1="P" u2="Z" k="20" />
1827
+ <hkern u1="P" u2="&#x1ef8;" k="12" />
1828
+ <hkern u1="P" u2="&#x1ef2;" k="12" />
1829
+ <hkern u1="P" u2="&#x178;" k="12" />
1830
+ <hkern u1="P" u2="&#x176;" k="12" />
1831
+ <hkern u1="P" u2="&#xdd;" k="12" />
1832
+ <hkern u1="P" u2="Y" k="12" />
1833
+ <hkern u1="P" u2="X" k="30" />
1834
+ <hkern u1="P" u2="J" k="77" />
1835
+ <hkern u1="P" u2="&#x1fc;" k="134" />
1836
+ <hkern u1="P" u2="&#xc6;" k="134" />
1837
+ <hkern u1="P" u2="&#xc3;" k="88" />
1838
+ <hkern u1="P" u2="&#xc5;" k="88" />
1839
+ <hkern u1="P" u2="&#x104;" k="88" />
1840
+ <hkern u1="P" u2="&#x100;" k="88" />
1841
+ <hkern u1="P" u2="&#xc0;" k="88" />
1842
+ <hkern u1="P" u2="&#xc4;" k="88" />
1843
+ <hkern u1="P" u2="&#xc2;" k="88" />
1844
+ <hkern u1="P" u2="&#x102;" k="88" />
1845
+ <hkern u1="P" u2="&#xc1;" k="88" />
1846
+ <hkern u1="P" u2="A" k="88" />
1847
+ <hkern u1="&#xde;" u2="&#x29;" k="39" />
1848
+ <hkern u1="&#xde;" u2="&#x2026;" k="57" />
1849
+ <hkern u1="&#xde;" u2="&#x2e;" k="57" />
1850
+ <hkern u1="&#xde;" u2="&#x1ef8;" k="69" />
1851
+ <hkern u1="&#xde;" u2="&#x1ef2;" k="69" />
1852
+ <hkern u1="&#xde;" u2="&#x178;" k="69" />
1853
+ <hkern u1="&#xde;" u2="&#x176;" k="69" />
1854
+ <hkern u1="&#xde;" u2="&#xdd;" k="69" />
1855
+ <hkern u1="&#xde;" u2="Y" k="69" />
1856
+ <hkern u1="&#xde;" u2="X" k="70" />
1857
+ <hkern u1="&#xde;" u2="&#x1e80;" k="40" />
1858
+ <hkern u1="&#xde;" u2="&#x1e84;" k="40" />
1859
+ <hkern u1="&#xde;" u2="&#x174;" k="40" />
1860
+ <hkern u1="&#xde;" u2="&#x1e82;" k="40" />
1861
+ <hkern u1="&#xde;" u2="W" k="40" />
1862
+ <hkern u1="&#xde;" u2="V" k="49" />
1863
+ <hkern u1="&#xde;" u2="&#x21a;" k="74" />
1864
+ <hkern u1="&#xde;" u2="&#x162;" k="74" />
1865
+ <hkern u1="&#xde;" u2="&#x164;" k="74" />
1866
+ <hkern u1="&#xde;" u2="T" k="74" />
1867
+ <hkern u1="&#xde;" u2="&#xc3;" k="49" />
1868
+ <hkern u1="&#xde;" u2="&#xc5;" k="49" />
1869
+ <hkern u1="&#xde;" u2="&#x104;" k="49" />
1870
+ <hkern u1="&#xde;" u2="&#x100;" k="49" />
1871
+ <hkern u1="&#xde;" u2="&#xc0;" k="49" />
1872
+ <hkern u1="&#xde;" u2="&#xc4;" k="49" />
1873
+ <hkern u1="&#xde;" u2="&#xc2;" k="49" />
1874
+ <hkern u1="&#xde;" u2="&#x102;" k="49" />
1875
+ <hkern u1="&#xde;" u2="&#xc1;" k="49" />
1876
+ <hkern u1="&#xde;" u2="A" k="49" />
1877
+ <hkern u1="Q" u2="&#x40;" k="26" />
1878
+ <hkern u1="Q" u2="&#x1e81;" k="-3" />
1879
+ <hkern u1="Q" u2="&#x1e85;" k="-3" />
1880
+ <hkern u1="Q" u2="&#x175;" k="-3" />
1881
+ <hkern u1="Q" u2="&#x1e83;" k="-3" />
1882
+ <hkern u1="Q" u2="w" k="-3" />
1883
+ <hkern u1="Q" u2="&#x169;" k="-3" />
1884
+ <hkern u1="Q" u2="&#x16f;" k="-3" />
1885
+ <hkern u1="Q" u2="&#x173;" k="-3" />
1886
+ <hkern u1="Q" u2="&#x16b;" k="-3" />
1887
+ <hkern u1="Q" u2="&#x171;" k="-3" />
1888
+ <hkern u1="Q" u2="&#xf9;" k="-3" />
1889
+ <hkern u1="Q" u2="&#xfc;" k="-3" />
1890
+ <hkern u1="Q" u2="&#xfb;" k="-3" />
1891
+ <hkern u1="Q" u2="&#x16d;" k="-3" />
1892
+ <hkern u1="Q" u2="&#xfa;" k="-3" />
1893
+ <hkern u1="Q" u2="u" k="-3" />
1894
+ <hkern u1="Q" u2="&#x1ef8;" k="47" />
1895
+ <hkern u1="Q" u2="&#x1ef2;" k="47" />
1896
+ <hkern u1="Q" u2="&#x178;" k="47" />
1897
+ <hkern u1="Q" u2="&#x176;" k="47" />
1898
+ <hkern u1="Q" u2="&#xdd;" k="47" />
1899
+ <hkern u1="Q" u2="Y" k="47" />
1900
+ <hkern u1="Q" u2="X" k="34" />
1901
+ <hkern u1="Q" u2="&#x1e80;" k="34" />
1902
+ <hkern u1="Q" u2="&#x1e84;" k="34" />
1903
+ <hkern u1="Q" u2="&#x174;" k="34" />
1904
+ <hkern u1="Q" u2="&#x1e82;" k="34" />
1905
+ <hkern u1="Q" u2="W" k="34" />
1906
+ <hkern u1="Q" u2="V" k="27" />
1907
+ <hkern u1="Q" u2="&#x21a;" k="34" />
1908
+ <hkern u1="Q" u2="&#x162;" k="34" />
1909
+ <hkern u1="Q" u2="&#x164;" k="34" />
1910
+ <hkern u1="Q" u2="T" k="34" />
1911
+ <hkern u1="Q" u2="&#xc3;" k="26" />
1912
+ <hkern u1="Q" u2="&#xc5;" k="26" />
1913
+ <hkern u1="Q" u2="&#x104;" k="26" />
1914
+ <hkern u1="Q" u2="&#x100;" k="26" />
1915
+ <hkern u1="Q" u2="&#xc0;" k="26" />
1916
+ <hkern u1="Q" u2="&#xc4;" k="26" />
1917
+ <hkern u1="Q" u2="&#xc2;" k="26" />
1918
+ <hkern u1="Q" u2="&#x102;" k="26" />
1919
+ <hkern u1="Q" u2="&#xc1;" k="26" />
1920
+ <hkern u1="Q" u2="A" k="26" />
1921
+ <hkern u1="R" u2="&#x2b;" k="17" />
1922
+ <hkern u1="R" g2="three.ss04" k="10" />
1923
+ <hkern u1="R" u2="&#x38;" k="17" />
1924
+ <hkern u1="R" u2="&#x35;" k="20" />
1925
+ <hkern u1="R" u2="&#x34;" k="29" />
1926
+ <hkern u1="R" u2="&#x129;" k="-20" />
1927
+ <hkern u1="R" u2="&#x12b;" k="-39" />
1928
+ <hkern u1="&#x154;" u2="&#x2b;" k="17" />
1929
+ <hkern u1="&#x154;" g2="three.ss04" k="10" />
1930
+ <hkern u1="&#x154;" u2="&#x38;" k="17" />
1931
+ <hkern u1="&#x154;" u2="&#x35;" k="20" />
1932
+ <hkern u1="&#x154;" u2="&#x34;" k="29" />
1933
+ <hkern u1="&#x154;" u2="&#x129;" k="-20" />
1934
+ <hkern u1="&#x154;" u2="&#x12b;" k="-39" />
1935
+ <hkern u1="&#x158;" u2="&#x2b;" k="17" />
1936
+ <hkern u1="&#x158;" g2="three.ss04" k="10" />
1937
+ <hkern u1="&#x158;" u2="&#x38;" k="17" />
1938
+ <hkern u1="&#x158;" u2="&#x35;" k="20" />
1939
+ <hkern u1="&#x158;" u2="&#x34;" k="29" />
1940
+ <hkern u1="&#x158;" u2="&#x129;" k="-20" />
1941
+ <hkern u1="&#x158;" u2="&#x12b;" k="-39" />
1942
+ <hkern u1="&#x156;" u2="&#x2b;" k="17" />
1943
+ <hkern u1="&#x156;" g2="three.ss04" k="10" />
1944
+ <hkern u1="&#x156;" u2="&#x38;" k="17" />
1945
+ <hkern u1="&#x156;" u2="&#x35;" k="20" />
1946
+ <hkern u1="&#x156;" u2="&#x34;" k="29" />
1947
+ <hkern u1="&#x156;" u2="&#x129;" k="-20" />
1948
+ <hkern u1="&#x156;" u2="&#x12b;" k="-39" />
1949
+ <hkern u1="S" u2="&#x129;" k="-20" />
1950
+ <hkern u1="S" u2="&#x12b;" k="-40" />
1951
+ <hkern u1="&#x15a;" u2="&#x129;" k="-20" />
1952
+ <hkern u1="&#x15a;" u2="&#x12b;" k="-40" />
1953
+ <hkern u1="&#x160;" u2="&#x129;" k="-20" />
1954
+ <hkern u1="&#x160;" u2="&#x12b;" k="-40" />
1955
+ <hkern u1="&#x15e;" u2="&#x129;" k="-20" />
1956
+ <hkern u1="&#x15e;" u2="&#x12b;" k="-40" />
1957
+ <hkern u1="&#x218;" u2="&#x129;" k="-20" />
1958
+ <hkern u1="&#x218;" u2="&#x12b;" k="-40" />
1959
+ <hkern u1="&#x18f;" u2="_" k="43" />
1960
+ <hkern u1="&#x18f;" u2="&#x7d;" k="31" />
1961
+ <hkern u1="&#x18f;" u2="&#x29;" k="67" />
1962
+ <hkern u1="&#x18f;" u2="\" k="26" />
1963
+ <hkern u1="&#x18f;" u2="&#x2f;" k="41" />
1964
+ <hkern u1="&#x18f;" u2="&#x2c;" k="40" />
1965
+ <hkern u1="&#x18f;" u2="&#x37;" k="30" />
1966
+ <hkern u1="&#x18f;" u2="&#x32;" k="17" />
1967
+ <hkern u1="&#x18f;" u2="X" k="47" />
1968
+ <hkern u1="T" u2="&#x26;" k="50" />
1969
+ <hkern u1="T" u2="&#x40;" k="97" />
1970
+ <hkern u1="T" u2="&#xd7;" k="60" />
1971
+ <hkern u1="T" u2="&#x2b;" k="59" />
1972
+ <hkern u1="T" u2="_" k="60" />
1973
+ <hkern u1="T" u2="&#x7b;" k="30" />
1974
+ <hkern u1="T" u2="\" k="-4" />
1975
+ <hkern u1="T" u2="&#x2f;" k="61" />
1976
+ <hkern u1="T" u2="&#xbf;" k="97" />
1977
+ <hkern u1="T" u2="&#x3f;" k="-20" />
1978
+ <hkern u1="T" u2="&#xa1;" k="47" />
1979
+ <hkern u1="T" u2="&#x3b;" k="51" />
1980
+ <hkern u1="T" u2="&#x2c;" k="80" />
1981
+ <hkern u1="T" g2="six.ss04" k="50" />
1982
+ <hkern u1="T" g2="three.ss04" k="22" />
1983
+ <hkern u1="T" u2="&#x39;" k="17" />
1984
+ <hkern u1="T" u2="&#x38;" k="34" />
1985
+ <hkern u1="T" u2="&#x34;" k="60" />
1986
+ <hkern u1="T" u2="&#x33;" k="22" />
1987
+ <hkern u1="T" u2="&#x32;" k="19" />
1988
+ <hkern u1="T" u2="&#x30;" k="37" />
1989
+ <hkern u1="T" u2="x" k="47" />
1990
+ <hkern u1="T" u2="v" k="60" />
1991
+ <hkern u1="T" u2="p" k="50" />
1992
+ <hkern u1="T" u2="&#xf8;" k="90" />
1993
+ <hkern u1="T" u2="&#x12b;" k="-70" />
1994
+ <hkern u1="T" u2="J" k="83" />
1995
+ <hkern u1="&#x164;" u2="&#x26;" k="50" />
1996
+ <hkern u1="&#x164;" u2="&#x40;" k="97" />
1997
+ <hkern u1="&#x164;" u2="&#xd7;" k="60" />
1998
+ <hkern u1="&#x164;" u2="&#x2b;" k="59" />
1999
+ <hkern u1="&#x164;" u2="_" k="60" />
2000
+ <hkern u1="&#x164;" u2="&#x7b;" k="30" />
2001
+ <hkern u1="&#x164;" u2="\" k="-4" />
2002
+ <hkern u1="&#x164;" u2="&#x2f;" k="61" />
2003
+ <hkern u1="&#x164;" u2="&#xbf;" k="97" />
2004
+ <hkern u1="&#x164;" u2="&#x3f;" k="-20" />
2005
+ <hkern u1="&#x164;" u2="&#xa1;" k="47" />
2006
+ <hkern u1="&#x164;" u2="&#x3b;" k="51" />
2007
+ <hkern u1="&#x164;" u2="&#x2c;" k="80" />
2008
+ <hkern u1="&#x164;" g2="six.ss04" k="50" />
2009
+ <hkern u1="&#x164;" g2="three.ss04" k="22" />
2010
+ <hkern u1="&#x164;" u2="&#x39;" k="17" />
2011
+ <hkern u1="&#x164;" u2="&#x38;" k="34" />
2012
+ <hkern u1="&#x164;" u2="&#x34;" k="60" />
2013
+ <hkern u1="&#x164;" u2="&#x33;" k="22" />
2014
+ <hkern u1="&#x164;" u2="&#x32;" k="19" />
2015
+ <hkern u1="&#x164;" u2="&#x30;" k="37" />
2016
+ <hkern u1="&#x164;" u2="x" k="47" />
2017
+ <hkern u1="&#x164;" u2="v" k="60" />
2018
+ <hkern u1="&#x164;" u2="p" k="50" />
2019
+ <hkern u1="&#x164;" u2="&#xf8;" k="90" />
2020
+ <hkern u1="&#x164;" u2="&#x12b;" k="-70" />
2021
+ <hkern u1="&#x164;" u2="J" k="83" />
2022
+ <hkern u1="&#x162;" u2="&#x26;" k="50" />
2023
+ <hkern u1="&#x162;" u2="&#x40;" k="97" />
2024
+ <hkern u1="&#x162;" u2="&#xd7;" k="60" />
2025
+ <hkern u1="&#x162;" u2="&#x2b;" k="59" />
2026
+ <hkern u1="&#x162;" u2="_" k="60" />
2027
+ <hkern u1="&#x162;" u2="&#x7b;" k="30" />
2028
+ <hkern u1="&#x162;" u2="\" k="-4" />
2029
+ <hkern u1="&#x162;" u2="&#x2f;" k="61" />
2030
+ <hkern u1="&#x162;" u2="&#xbf;" k="97" />
2031
+ <hkern u1="&#x162;" u2="&#x3f;" k="-20" />
2032
+ <hkern u1="&#x162;" u2="&#xa1;" k="47" />
2033
+ <hkern u1="&#x162;" u2="&#x3b;" k="51" />
2034
+ <hkern u1="&#x162;" u2="&#x2c;" k="80" />
2035
+ <hkern u1="&#x162;" g2="six.ss04" k="50" />
2036
+ <hkern u1="&#x162;" g2="three.ss04" k="22" />
2037
+ <hkern u1="&#x162;" u2="&#x39;" k="17" />
2038
+ <hkern u1="&#x162;" u2="&#x38;" k="34" />
2039
+ <hkern u1="&#x162;" u2="&#x34;" k="60" />
2040
+ <hkern u1="&#x162;" u2="&#x33;" k="22" />
2041
+ <hkern u1="&#x162;" u2="&#x32;" k="19" />
2042
+ <hkern u1="&#x162;" u2="&#x30;" k="37" />
2043
+ <hkern u1="&#x162;" u2="x" k="47" />
2044
+ <hkern u1="&#x162;" u2="v" k="60" />
2045
+ <hkern u1="&#x162;" u2="p" k="50" />
2046
+ <hkern u1="&#x162;" u2="&#xf8;" k="90" />
2047
+ <hkern u1="&#x162;" u2="&#x12b;" k="-70" />
2048
+ <hkern u1="&#x162;" u2="J" k="83" />
2049
+ <hkern u1="&#x21a;" u2="&#x26;" k="50" />
2050
+ <hkern u1="&#x21a;" u2="&#x40;" k="97" />
2051
+ <hkern u1="&#x21a;" u2="&#xd7;" k="60" />
2052
+ <hkern u1="&#x21a;" u2="&#x2b;" k="59" />
2053
+ <hkern u1="&#x21a;" u2="_" k="60" />
2054
+ <hkern u1="&#x21a;" u2="&#x7b;" k="30" />
2055
+ <hkern u1="&#x21a;" u2="\" k="-4" />
2056
+ <hkern u1="&#x21a;" u2="&#x2f;" k="61" />
2057
+ <hkern u1="&#x21a;" u2="&#xbf;" k="97" />
2058
+ <hkern u1="&#x21a;" u2="&#x3f;" k="-20" />
2059
+ <hkern u1="&#x21a;" u2="&#xa1;" k="47" />
2060
+ <hkern u1="&#x21a;" u2="&#x3b;" k="51" />
2061
+ <hkern u1="&#x21a;" u2="&#x2c;" k="80" />
2062
+ <hkern u1="&#x21a;" g2="six.ss04" k="50" />
2063
+ <hkern u1="&#x21a;" g2="three.ss04" k="22" />
2064
+ <hkern u1="&#x21a;" u2="&#x39;" k="17" />
2065
+ <hkern u1="&#x21a;" u2="&#x38;" k="34" />
2066
+ <hkern u1="&#x21a;" u2="&#x34;" k="60" />
2067
+ <hkern u1="&#x21a;" u2="&#x33;" k="22" />
2068
+ <hkern u1="&#x21a;" u2="&#x32;" k="19" />
2069
+ <hkern u1="&#x21a;" u2="&#x30;" k="37" />
2070
+ <hkern u1="&#x21a;" u2="x" k="47" />
2071
+ <hkern u1="&#x21a;" u2="v" k="60" />
2072
+ <hkern u1="&#x21a;" u2="p" k="50" />
2073
+ <hkern u1="&#x21a;" u2="&#xf8;" k="90" />
2074
+ <hkern u1="&#x21a;" u2="&#x12b;" k="-70" />
2075
+ <hkern u1="&#x21a;" u2="J" k="83" />
2076
+ <hkern u1="U" u2="_" k="40" />
2077
+ <hkern u1="U" u2="&#x2f;" k="30" />
2078
+ <hkern u1="U" u2="&#x129;" k="-20" />
2079
+ <hkern u1="U" u2="&#x12b;" k="-51" />
2080
+ <hkern u1="&#xda;" u2="_" k="40" />
2081
+ <hkern u1="&#xda;" u2="&#x2f;" k="30" />
2082
+ <hkern u1="&#xda;" u2="&#x129;" k="-20" />
2083
+ <hkern u1="&#xda;" u2="&#x12b;" k="-51" />
2084
+ <hkern u1="&#x16c;" u2="_" k="40" />
2085
+ <hkern u1="&#x16c;" u2="&#x2f;" k="30" />
2086
+ <hkern u1="&#x16c;" u2="&#x129;" k="-20" />
2087
+ <hkern u1="&#x16c;" u2="&#x12b;" k="-51" />
2088
+ <hkern u1="&#xdb;" u2="_" k="40" />
2089
+ <hkern u1="&#xdb;" u2="&#x2f;" k="30" />
2090
+ <hkern u1="&#xdb;" u2="&#x129;" k="-20" />
2091
+ <hkern u1="&#xdb;" u2="&#x12b;" k="-51" />
2092
+ <hkern u1="&#xdc;" u2="_" k="40" />
2093
+ <hkern u1="&#xdc;" u2="&#x2f;" k="30" />
2094
+ <hkern u1="&#xdc;" u2="&#x129;" k="-20" />
2095
+ <hkern u1="&#xdc;" u2="&#x12b;" k="-51" />
2096
+ <hkern u1="&#xd9;" u2="_" k="40" />
2097
+ <hkern u1="&#xd9;" u2="&#x2f;" k="30" />
2098
+ <hkern u1="&#xd9;" u2="&#x129;" k="-20" />
2099
+ <hkern u1="&#xd9;" u2="&#x12b;" k="-51" />
2100
+ <hkern u1="&#x170;" u2="_" k="40" />
2101
+ <hkern u1="&#x170;" u2="&#x2f;" k="30" />
2102
+ <hkern u1="&#x170;" u2="&#x129;" k="-20" />
2103
+ <hkern u1="&#x170;" u2="&#x12b;" k="-51" />
2104
+ <hkern u1="&#x16a;" u2="_" k="40" />
2105
+ <hkern u1="&#x16a;" u2="&#x2f;" k="30" />
2106
+ <hkern u1="&#x16a;" u2="&#x129;" k="-20" />
2107
+ <hkern u1="&#x16a;" u2="&#x12b;" k="-51" />
2108
+ <hkern u1="&#x172;" u2="_" k="40" />
2109
+ <hkern u1="&#x172;" u2="&#x2f;" k="30" />
2110
+ <hkern u1="&#x172;" u2="&#x129;" k="-20" />
2111
+ <hkern u1="&#x172;" u2="&#x12b;" k="-51" />
2112
+ <hkern u1="&#x16e;" u2="_" k="40" />
2113
+ <hkern u1="&#x16e;" u2="&#x2f;" k="30" />
2114
+ <hkern u1="&#x16e;" u2="&#x129;" k="-20" />
2115
+ <hkern u1="&#x16e;" u2="&#x12b;" k="-51" />
2116
+ <hkern u1="&#x168;" u2="_" k="40" />
2117
+ <hkern u1="&#x168;" u2="&#x2f;" k="30" />
2118
+ <hkern u1="&#x168;" u2="&#x129;" k="-20" />
2119
+ <hkern u1="&#x168;" u2="&#x12b;" k="-51" />
2120
+ <hkern u1="V" u2="&#x26;" k="60" />
2121
+ <hkern u1="V" u2="&#x40;" k="91" />
2122
+ <hkern u1="V" u2="&#xd7;" k="69" />
2123
+ <hkern u1="V" u2="&#x2b;" k="57" />
2124
+ <hkern u1="V" u2="_" k="99" />
2125
+ <hkern u1="V" u2="\" k="-6" />
2126
+ <hkern u1="V" u2="&#x2f;" k="79" />
2127
+ <hkern u1="V" u2="&#xa1;" k="31" />
2128
+ <hkern u1="V" u2="&#x3a;" k="30" />
2129
+ <hkern u1="V" u2="&#x2c;" k="71" />
2130
+ <hkern u1="V" g2="nine.ss04" k="17" />
2131
+ <hkern u1="V" g2="six.ss04" k="67" />
2132
+ <hkern u1="V" g2="three.ss04" k="17" />
2133
+ <hkern u1="V" u2="&#x39;" k="28" />
2134
+ <hkern u1="V" u2="&#x38;" k="35" />
2135
+ <hkern u1="V" u2="&#x37;" k="-20" />
2136
+ <hkern u1="V" u2="&#x36;" k="34" />
2137
+ <hkern u1="V" u2="&#x35;" k="26" />
2138
+ <hkern u1="V" u2="&#x34;" k="86" />
2139
+ <hkern u1="V" u2="&#x33;" k="17" />
2140
+ <hkern u1="V" u2="&#x32;" k="26" />
2141
+ <hkern u1="V" u2="&#x30;" k="39" />
2142
+ <hkern u1="V" u2="v" k="17" />
2143
+ <hkern u1="V" u2="&#x12b;" k="-61" />
2144
+ <hkern u1="V" u2="&#x12d;" k="-50" />
2145
+ <hkern u1="V" u2="J" k="60" />
2146
+ <hkern u1="W" u2="&#x26;" k="50" />
2147
+ <hkern u1="W" u2="&#x40;" k="80" />
2148
+ <hkern u1="W" u2="&#xd7;" k="43" />
2149
+ <hkern u1="W" u2="&#x2b;" k="57" />
2150
+ <hkern u1="W" u2="_" k="70" />
2151
+ <hkern u1="W" u2="&#x7b;" k="30" />
2152
+ <hkern u1="W" u2="&#x2f;" k="60" />
2153
+ <hkern u1="W" u2="&#xa1;" k="30" />
2154
+ <hkern u1="W" u2="&#x3b;" k="31" />
2155
+ <hkern u1="W" u2="&#x2c;" k="60" />
2156
+ <hkern u1="W" g2="nine.ss04" k="20" />
2157
+ <hkern u1="W" g2="six.ss04" k="50" />
2158
+ <hkern u1="W" g2="three.ss04" k="26" />
2159
+ <hkern u1="W" u2="&#x39;" k="29" />
2160
+ <hkern u1="W" u2="&#x38;" k="40" />
2161
+ <hkern u1="W" u2="&#x36;" k="40" />
2162
+ <hkern u1="W" u2="&#x35;" k="34" />
2163
+ <hkern u1="W" u2="&#x34;" k="50" />
2164
+ <hkern u1="W" u2="&#x33;" k="22" />
2165
+ <hkern u1="W" u2="&#x32;" k="26" />
2166
+ <hkern u1="W" u2="&#x30;" k="40" />
2167
+ <hkern u1="W" u2="v" k="17" />
2168
+ <hkern u1="W" u2="&#xf8;" k="51" />
2169
+ <hkern u1="W" u2="&#x129;" k="-40" />
2170
+ <hkern u1="W" u2="&#x12b;" k="-71" />
2171
+ <hkern u1="W" u2="&#x12d;" k="-40" />
2172
+ <hkern u1="W" u2="&#xd8;" k="20" />
2173
+ <hkern u1="W" u2="J" k="40" />
2174
+ <hkern u1="&#x1e82;" u2="&#x26;" k="50" />
2175
+ <hkern u1="&#x1e82;" u2="&#x40;" k="80" />
2176
+ <hkern u1="&#x1e82;" u2="&#xd7;" k="43" />
2177
+ <hkern u1="&#x1e82;" u2="&#x2b;" k="57" />
2178
+ <hkern u1="&#x1e82;" u2="_" k="70" />
2179
+ <hkern u1="&#x1e82;" u2="&#x7b;" k="30" />
2180
+ <hkern u1="&#x1e82;" u2="&#x2f;" k="60" />
2181
+ <hkern u1="&#x1e82;" u2="&#xa1;" k="30" />
2182
+ <hkern u1="&#x1e82;" u2="&#x3b;" k="31" />
2183
+ <hkern u1="&#x1e82;" u2="&#x2c;" k="60" />
2184
+ <hkern u1="&#x1e82;" g2="nine.ss04" k="20" />
2185
+ <hkern u1="&#x1e82;" g2="six.ss04" k="50" />
2186
+ <hkern u1="&#x1e82;" g2="three.ss04" k="26" />
2187
+ <hkern u1="&#x1e82;" u2="&#x39;" k="29" />
2188
+ <hkern u1="&#x1e82;" u2="&#x38;" k="40" />
2189
+ <hkern u1="&#x1e82;" u2="&#x36;" k="40" />
2190
+ <hkern u1="&#x1e82;" u2="&#x35;" k="34" />
2191
+ <hkern u1="&#x1e82;" u2="&#x34;" k="50" />
2192
+ <hkern u1="&#x1e82;" u2="&#x33;" k="22" />
2193
+ <hkern u1="&#x1e82;" u2="&#x32;" k="26" />
2194
+ <hkern u1="&#x1e82;" u2="&#x30;" k="40" />
2195
+ <hkern u1="&#x1e82;" u2="v" k="17" />
2196
+ <hkern u1="&#x1e82;" u2="&#xf8;" k="51" />
2197
+ <hkern u1="&#x1e82;" u2="&#x129;" k="-40" />
2198
+ <hkern u1="&#x1e82;" u2="&#x12b;" k="-71" />
2199
+ <hkern u1="&#x1e82;" u2="&#x12d;" k="-40" />
2200
+ <hkern u1="&#x1e82;" u2="&#xd8;" k="20" />
2201
+ <hkern u1="&#x1e82;" u2="J" k="40" />
2202
+ <hkern u1="&#x174;" u2="&#x26;" k="50" />
2203
+ <hkern u1="&#x174;" u2="&#x40;" k="80" />
2204
+ <hkern u1="&#x174;" u2="&#xd7;" k="43" />
2205
+ <hkern u1="&#x174;" u2="&#x2b;" k="57" />
2206
+ <hkern u1="&#x174;" u2="_" k="70" />
2207
+ <hkern u1="&#x174;" u2="&#x7b;" k="30" />
2208
+ <hkern u1="&#x174;" u2="&#x2f;" k="60" />
2209
+ <hkern u1="&#x174;" u2="&#xa1;" k="30" />
2210
+ <hkern u1="&#x174;" u2="&#x3b;" k="31" />
2211
+ <hkern u1="&#x174;" u2="&#x2c;" k="60" />
2212
+ <hkern u1="&#x174;" g2="nine.ss04" k="20" />
2213
+ <hkern u1="&#x174;" g2="six.ss04" k="50" />
2214
+ <hkern u1="&#x174;" g2="three.ss04" k="26" />
2215
+ <hkern u1="&#x174;" u2="&#x39;" k="29" />
2216
+ <hkern u1="&#x174;" u2="&#x38;" k="40" />
2217
+ <hkern u1="&#x174;" u2="&#x36;" k="40" />
2218
+ <hkern u1="&#x174;" u2="&#x35;" k="34" />
2219
+ <hkern u1="&#x174;" u2="&#x34;" k="50" />
2220
+ <hkern u1="&#x174;" u2="&#x33;" k="22" />
2221
+ <hkern u1="&#x174;" u2="&#x32;" k="26" />
2222
+ <hkern u1="&#x174;" u2="&#x30;" k="40" />
2223
+ <hkern u1="&#x174;" u2="v" k="17" />
2224
+ <hkern u1="&#x174;" u2="&#xf8;" k="51" />
2225
+ <hkern u1="&#x174;" u2="&#x129;" k="-40" />
2226
+ <hkern u1="&#x174;" u2="&#x12b;" k="-71" />
2227
+ <hkern u1="&#x174;" u2="&#x12d;" k="-40" />
2228
+ <hkern u1="&#x174;" u2="&#xd8;" k="20" />
2229
+ <hkern u1="&#x174;" u2="J" k="40" />
2230
+ <hkern u1="&#x1e84;" u2="&#x26;" k="50" />
2231
+ <hkern u1="&#x1e84;" u2="&#x40;" k="80" />
2232
+ <hkern u1="&#x1e84;" u2="&#xd7;" k="43" />
2233
+ <hkern u1="&#x1e84;" u2="&#x2b;" k="57" />
2234
+ <hkern u1="&#x1e84;" u2="_" k="70" />
2235
+ <hkern u1="&#x1e84;" u2="&#x7b;" k="30" />
2236
+ <hkern u1="&#x1e84;" u2="&#x2f;" k="60" />
2237
+ <hkern u1="&#x1e84;" u2="&#xa1;" k="30" />
2238
+ <hkern u1="&#x1e84;" u2="&#x3b;" k="31" />
2239
+ <hkern u1="&#x1e84;" u2="&#x2c;" k="60" />
2240
+ <hkern u1="&#x1e84;" g2="nine.ss04" k="20" />
2241
+ <hkern u1="&#x1e84;" g2="six.ss04" k="50" />
2242
+ <hkern u1="&#x1e84;" g2="three.ss04" k="26" />
2243
+ <hkern u1="&#x1e84;" u2="&#x39;" k="29" />
2244
+ <hkern u1="&#x1e84;" u2="&#x38;" k="40" />
2245
+ <hkern u1="&#x1e84;" u2="&#x36;" k="40" />
2246
+ <hkern u1="&#x1e84;" u2="&#x35;" k="34" />
2247
+ <hkern u1="&#x1e84;" u2="&#x34;" k="50" />
2248
+ <hkern u1="&#x1e84;" u2="&#x33;" k="22" />
2249
+ <hkern u1="&#x1e84;" u2="&#x32;" k="26" />
2250
+ <hkern u1="&#x1e84;" u2="&#x30;" k="40" />
2251
+ <hkern u1="&#x1e84;" u2="v" k="17" />
2252
+ <hkern u1="&#x1e84;" u2="&#xf8;" k="51" />
2253
+ <hkern u1="&#x1e84;" u2="&#x129;" k="-40" />
2254
+ <hkern u1="&#x1e84;" u2="&#x12b;" k="-71" />
2255
+ <hkern u1="&#x1e84;" u2="&#x12d;" k="-40" />
2256
+ <hkern u1="&#x1e84;" u2="&#xd8;" k="20" />
2257
+ <hkern u1="&#x1e84;" u2="J" k="40" />
2258
+ <hkern u1="&#x1e80;" u2="&#x26;" k="50" />
2259
+ <hkern u1="&#x1e80;" u2="&#x40;" k="80" />
2260
+ <hkern u1="&#x1e80;" u2="&#xd7;" k="43" />
2261
+ <hkern u1="&#x1e80;" u2="&#x2b;" k="57" />
2262
+ <hkern u1="&#x1e80;" u2="_" k="70" />
2263
+ <hkern u1="&#x1e80;" u2="&#x7b;" k="30" />
2264
+ <hkern u1="&#x1e80;" u2="&#x2f;" k="60" />
2265
+ <hkern u1="&#x1e80;" u2="&#xa1;" k="30" />
2266
+ <hkern u1="&#x1e80;" u2="&#x3b;" k="31" />
2267
+ <hkern u1="&#x1e80;" u2="&#x2c;" k="60" />
2268
+ <hkern u1="&#x1e80;" g2="nine.ss04" k="20" />
2269
+ <hkern u1="&#x1e80;" g2="six.ss04" k="50" />
2270
+ <hkern u1="&#x1e80;" g2="three.ss04" k="26" />
2271
+ <hkern u1="&#x1e80;" u2="&#x39;" k="29" />
2272
+ <hkern u1="&#x1e80;" u2="&#x38;" k="40" />
2273
+ <hkern u1="&#x1e80;" u2="&#x36;" k="40" />
2274
+ <hkern u1="&#x1e80;" u2="&#x35;" k="34" />
2275
+ <hkern u1="&#x1e80;" u2="&#x34;" k="50" />
2276
+ <hkern u1="&#x1e80;" u2="&#x33;" k="22" />
2277
+ <hkern u1="&#x1e80;" u2="&#x32;" k="26" />
2278
+ <hkern u1="&#x1e80;" u2="&#x30;" k="40" />
2279
+ <hkern u1="&#x1e80;" u2="v" k="17" />
2280
+ <hkern u1="&#x1e80;" u2="&#xf8;" k="51" />
2281
+ <hkern u1="&#x1e80;" u2="&#x129;" k="-40" />
2282
+ <hkern u1="&#x1e80;" u2="&#x12b;" k="-71" />
2283
+ <hkern u1="&#x1e80;" u2="&#x12d;" k="-40" />
2284
+ <hkern u1="&#x1e80;" u2="&#xd8;" k="20" />
2285
+ <hkern u1="&#x1e80;" u2="J" k="40" />
2286
+ <hkern u1="X" u2="&#x40;" k="26" />
2287
+ <hkern u1="X" u2="&#xd7;" k="39" />
2288
+ <hkern u1="X" u2="&#x3f;" k="21" />
2289
+ <hkern u1="X" g2="nine.ss04" k="47" />
2290
+ <hkern u1="X" g2="six.ss04" k="31" />
2291
+ <hkern u1="X" g2="three.ss04" k="30" />
2292
+ <hkern u1="X" u2="&#x39;" k="40" />
2293
+ <hkern u1="X" u2="&#x38;" k="40" />
2294
+ <hkern u1="X" u2="&#x36;" k="39" />
2295
+ <hkern u1="X" u2="&#x35;" k="41" />
2296
+ <hkern u1="X" u2="&#x34;" k="50" />
2297
+ <hkern u1="X" u2="&#x33;" k="20" />
2298
+ <hkern u1="X" u2="&#x30;" k="41" />
2299
+ <hkern u1="X" g2="gdotaccent.ss03" k="30" />
2300
+ <hkern u1="X" g2="uni0123.ss03" k="30" />
2301
+ <hkern u1="X" g2="gbreve.ss03" k="30" />
2302
+ <hkern u1="X" g2="g.ss03" k="30" />
2303
+ <hkern u1="X" g2="aeacute.ss02" k="31" />
2304
+ <hkern u1="X" g2="ae.ss02" k="31" />
2305
+ <hkern u1="X" g2="atilde.ss02" k="31" />
2306
+ <hkern u1="X" g2="aring.ss02" k="31" />
2307
+ <hkern u1="X" g2="aogonek.ss02" k="31" />
2308
+ <hkern u1="X" g2="amacron.ss02" k="31" />
2309
+ <hkern u1="X" g2="agrave.ss02" k="31" />
2310
+ <hkern u1="X" g2="adieresis.ss02" k="31" />
2311
+ <hkern u1="X" g2="acircumflex.ss02" k="31" />
2312
+ <hkern u1="X" g2="abreve.ss02" k="31" />
2313
+ <hkern u1="X" g2="aacute.ss02" k="31" />
2314
+ <hkern u1="X" g2="a.ss02" k="31" />
2315
+ <hkern u1="X" u2="&#x1ef9;" k="21" />
2316
+ <hkern u1="X" u2="&#x1ef3;" k="21" />
2317
+ <hkern u1="X" u2="&#xff;" k="21" />
2318
+ <hkern u1="X" u2="&#x177;" k="21" />
2319
+ <hkern u1="X" u2="&#xfd;" k="21" />
2320
+ <hkern u1="X" u2="y" k="21" />
2321
+ <hkern u1="X" u2="&#x1e81;" k="30" />
2322
+ <hkern u1="X" u2="&#x1e85;" k="30" />
2323
+ <hkern u1="X" u2="&#x175;" k="30" />
2324
+ <hkern u1="X" u2="&#x1e83;" k="30" />
2325
+ <hkern u1="X" u2="w" k="30" />
2326
+ <hkern u1="X" u2="v" k="30" />
2327
+ <hkern u1="X" u2="&#x169;" k="23" />
2328
+ <hkern u1="X" u2="&#x16f;" k="23" />
2329
+ <hkern u1="X" u2="&#x173;" k="23" />
2330
+ <hkern u1="X" u2="&#x16b;" k="23" />
2331
+ <hkern u1="X" u2="&#x171;" k="23" />
2332
+ <hkern u1="X" u2="&#xf9;" k="23" />
2333
+ <hkern u1="X" u2="&#xfc;" k="23" />
2334
+ <hkern u1="X" u2="&#xfb;" k="23" />
2335
+ <hkern u1="X" u2="&#x16d;" k="23" />
2336
+ <hkern u1="X" u2="&#xfa;" k="23" />
2337
+ <hkern u1="X" u2="u" k="23" />
2338
+ <hkern u1="X" u2="&#x219;" k="17" />
2339
+ <hkern u1="X" u2="&#x15f;" k="17" />
2340
+ <hkern u1="X" u2="&#x161;" k="17" />
2341
+ <hkern u1="X" u2="&#x15b;" k="17" />
2342
+ <hkern u1="X" u2="s" k="17" />
2343
+ <hkern u1="X" u2="q" k="31" />
2344
+ <hkern u1="X" u2="&#x153;" k="31" />
2345
+ <hkern u1="X" u2="&#xf5;" k="31" />
2346
+ <hkern u1="X" u2="&#x14d;" k="31" />
2347
+ <hkern u1="X" u2="&#x151;" k="31" />
2348
+ <hkern u1="X" u2="&#xf2;" k="31" />
2349
+ <hkern u1="X" u2="&#xf6;" k="31" />
2350
+ <hkern u1="X" u2="&#xf4;" k="31" />
2351
+ <hkern u1="X" u2="&#x14f;" k="31" />
2352
+ <hkern u1="X" u2="&#xf3;" k="31" />
2353
+ <hkern u1="X" u2="o" k="31" />
2354
+ <hkern u1="X" u2="&#x129;" k="-20" />
2355
+ <hkern u1="X" u2="&#x12b;" k="-50" />
2356
+ <hkern u1="X" u2="&#x12d;" k="-30" />
2357
+ <hkern u1="X" u2="&#x259;" k="31" />
2358
+ <hkern u1="X" u2="&#x1ebd;" k="31" />
2359
+ <hkern u1="X" u2="&#x119;" k="31" />
2360
+ <hkern u1="X" u2="&#x113;" k="31" />
2361
+ <hkern u1="X" u2="&#xe8;" k="31" />
2362
+ <hkern u1="X" u2="&#x117;" k="31" />
2363
+ <hkern u1="X" u2="&#xeb;" k="31" />
2364
+ <hkern u1="X" u2="&#xea;" k="31" />
2365
+ <hkern u1="X" u2="&#x11b;" k="31" />
2366
+ <hkern u1="X" u2="&#x115;" k="31" />
2367
+ <hkern u1="X" u2="&#xe9;" k="31" />
2368
+ <hkern u1="X" u2="e" k="31" />
2369
+ <hkern u1="X" u2="&#x111;" k="31" />
2370
+ <hkern u1="X" u2="&#x10f;" k="31" />
2371
+ <hkern u1="X" u2="&#xf0;" k="31" />
2372
+ <hkern u1="X" u2="d" k="31" />
2373
+ <hkern u1="X" u2="&#x10b;" k="31" />
2374
+ <hkern u1="X" u2="&#xe7;" k="31" />
2375
+ <hkern u1="X" u2="&#x10d;" k="31" />
2376
+ <hkern u1="X" u2="&#x107;" k="31" />
2377
+ <hkern u1="X" u2="c" k="31" />
2378
+ <hkern u1="X" u2="&#x1fd;" k="21" />
2379
+ <hkern u1="X" u2="&#xe6;" k="21" />
2380
+ <hkern u1="X" u2="&#xe3;" k="21" />
2381
+ <hkern u1="X" u2="&#xe5;" k="21" />
2382
+ <hkern u1="X" u2="&#x105;" k="21" />
2383
+ <hkern u1="X" u2="&#x101;" k="21" />
2384
+ <hkern u1="X" u2="&#xe0;" k="21" />
2385
+ <hkern u1="X" u2="&#xe4;" k="21" />
2386
+ <hkern u1="X" u2="&#xe2;" k="21" />
2387
+ <hkern u1="X" u2="&#x103;" k="21" />
2388
+ <hkern u1="X" u2="&#xe1;" k="21" />
2389
+ <hkern u1="X" u2="a" k="21" />
2390
+ <hkern u1="X" u2="Q" k="47" />
2391
+ <hkern u1="X" u2="&#x152;" k="47" />
2392
+ <hkern u1="X" u2="&#xd5;" k="47" />
2393
+ <hkern u1="X" u2="&#x14c;" k="47" />
2394
+ <hkern u1="X" u2="&#x150;" k="47" />
2395
+ <hkern u1="X" u2="&#xd2;" k="47" />
2396
+ <hkern u1="X" u2="&#xd6;" k="47" />
2397
+ <hkern u1="X" u2="&#xd4;" k="47" />
2398
+ <hkern u1="X" u2="&#x14e;" k="47" />
2399
+ <hkern u1="X" u2="&#xd3;" k="47" />
2400
+ <hkern u1="X" u2="O" k="47" />
2401
+ <hkern u1="X" u2="&#x120;" k="47" />
2402
+ <hkern u1="X" u2="&#x122;" k="47" />
2403
+ <hkern u1="X" u2="&#x11e;" k="47" />
2404
+ <hkern u1="X" u2="G" k="47" />
2405
+ <hkern u1="X" u2="&#x10a;" k="47" />
2406
+ <hkern u1="X" u2="&#xc7;" k="47" />
2407
+ <hkern u1="X" u2="&#x10c;" k="47" />
2408
+ <hkern u1="X" u2="&#x106;" k="47" />
2409
+ <hkern u1="X" u2="C" k="47" />
2410
+ <hkern u1="Y" u2="&#x26;" k="70" />
2411
+ <hkern u1="Y" u2="&#x40;" k="110" />
2412
+ <hkern u1="Y" u2="&#xd7;" k="60" />
2413
+ <hkern u1="Y" u2="&#x2b;" k="71" />
2414
+ <hkern u1="Y" u2="_" k="70" />
2415
+ <hkern u1="Y" u2="&#x7b;" k="50" />
2416
+ <hkern u1="Y" u2="&#x2f;" k="61" />
2417
+ <hkern u1="Y" u2="&#xbf;" k="89" />
2418
+ <hkern u1="Y" u2="&#xa1;" k="31" />
2419
+ <hkern u1="Y" u2="&#x3b;" k="36" />
2420
+ <hkern u1="Y" u2="&#x3a;" k="31" />
2421
+ <hkern u1="Y" u2="&#x2c;" k="64" />
2422
+ <hkern u1="Y" g2="nine.ss04" k="25" />
2423
+ <hkern u1="Y" g2="six.ss04" k="73" />
2424
+ <hkern u1="Y" g2="three.ss04" k="17" />
2425
+ <hkern u1="Y" u2="&#x39;" k="39" />
2426
+ <hkern u1="Y" u2="&#x38;" k="49" />
2427
+ <hkern u1="Y" u2="&#x36;" k="49" />
2428
+ <hkern u1="Y" u2="&#x35;" k="47" />
2429
+ <hkern u1="Y" u2="&#x34;" k="74" />
2430
+ <hkern u1="Y" u2="&#x33;" k="47" />
2431
+ <hkern u1="Y" u2="&#x32;" k="26" />
2432
+ <hkern u1="Y" u2="&#x30;" k="40" />
2433
+ <hkern u1="Y" u2="v" k="42" />
2434
+ <hkern u1="Y" u2="&#x129;" k="-20" />
2435
+ <hkern u1="Y" u2="&#x12b;" k="-63" />
2436
+ <hkern u1="Y" u2="&#x12d;" k="-40" />
2437
+ <hkern u1="Y" u2="&#xd8;" k="49" />
2438
+ <hkern u1="Y" u2="J" k="81" />
2439
+ <hkern u1="&#xdd;" u2="&#x26;" k="70" />
2440
+ <hkern u1="&#xdd;" u2="&#x40;" k="110" />
2441
+ <hkern u1="&#xdd;" u2="&#xd7;" k="60" />
2442
+ <hkern u1="&#xdd;" u2="&#x2b;" k="71" />
2443
+ <hkern u1="&#xdd;" u2="_" k="70" />
2444
+ <hkern u1="&#xdd;" u2="&#x7b;" k="50" />
2445
+ <hkern u1="&#xdd;" u2="&#x2f;" k="61" />
2446
+ <hkern u1="&#xdd;" u2="&#xbf;" k="89" />
2447
+ <hkern u1="&#xdd;" u2="&#xa1;" k="31" />
2448
+ <hkern u1="&#xdd;" u2="&#x3b;" k="36" />
2449
+ <hkern u1="&#xdd;" u2="&#x3a;" k="31" />
2450
+ <hkern u1="&#xdd;" u2="&#x2c;" k="64" />
2451
+ <hkern u1="&#xdd;" g2="nine.ss04" k="25" />
2452
+ <hkern u1="&#xdd;" g2="six.ss04" k="73" />
2453
+ <hkern u1="&#xdd;" g2="three.ss04" k="17" />
2454
+ <hkern u1="&#xdd;" u2="&#x39;" k="39" />
2455
+ <hkern u1="&#xdd;" u2="&#x38;" k="49" />
2456
+ <hkern u1="&#xdd;" u2="&#x36;" k="49" />
2457
+ <hkern u1="&#xdd;" u2="&#x35;" k="47" />
2458
+ <hkern u1="&#xdd;" u2="&#x34;" k="74" />
2459
+ <hkern u1="&#xdd;" u2="&#x33;" k="47" />
2460
+ <hkern u1="&#xdd;" u2="&#x32;" k="26" />
2461
+ <hkern u1="&#xdd;" u2="&#x30;" k="40" />
2462
+ <hkern u1="&#xdd;" u2="v" k="42" />
2463
+ <hkern u1="&#xdd;" u2="&#x129;" k="-20" />
2464
+ <hkern u1="&#xdd;" u2="&#x12b;" k="-63" />
2465
+ <hkern u1="&#xdd;" u2="&#x12d;" k="-40" />
2466
+ <hkern u1="&#xdd;" u2="&#xd8;" k="49" />
2467
+ <hkern u1="&#xdd;" u2="J" k="81" />
2468
+ <hkern u1="&#x176;" u2="&#x26;" k="70" />
2469
+ <hkern u1="&#x176;" u2="&#x40;" k="110" />
2470
+ <hkern u1="&#x176;" u2="&#xd7;" k="60" />
2471
+ <hkern u1="&#x176;" u2="&#x2b;" k="71" />
2472
+ <hkern u1="&#x176;" u2="_" k="70" />
2473
+ <hkern u1="&#x176;" u2="&#x7b;" k="50" />
2474
+ <hkern u1="&#x176;" u2="&#x2f;" k="61" />
2475
+ <hkern u1="&#x176;" u2="&#xbf;" k="89" />
2476
+ <hkern u1="&#x176;" u2="&#xa1;" k="31" />
2477
+ <hkern u1="&#x176;" u2="&#x3b;" k="36" />
2478
+ <hkern u1="&#x176;" u2="&#x3a;" k="31" />
2479
+ <hkern u1="&#x176;" u2="&#x2c;" k="64" />
2480
+ <hkern u1="&#x176;" g2="nine.ss04" k="25" />
2481
+ <hkern u1="&#x176;" g2="six.ss04" k="73" />
2482
+ <hkern u1="&#x176;" g2="three.ss04" k="17" />
2483
+ <hkern u1="&#x176;" u2="&#x39;" k="39" />
2484
+ <hkern u1="&#x176;" u2="&#x38;" k="49" />
2485
+ <hkern u1="&#x176;" u2="&#x36;" k="49" />
2486
+ <hkern u1="&#x176;" u2="&#x35;" k="47" />
2487
+ <hkern u1="&#x176;" u2="&#x34;" k="74" />
2488
+ <hkern u1="&#x176;" u2="&#x33;" k="47" />
2489
+ <hkern u1="&#x176;" u2="&#x32;" k="26" />
2490
+ <hkern u1="&#x176;" u2="&#x30;" k="40" />
2491
+ <hkern u1="&#x176;" u2="v" k="42" />
2492
+ <hkern u1="&#x176;" u2="&#x129;" k="-20" />
2493
+ <hkern u1="&#x176;" u2="&#x12b;" k="-63" />
2494
+ <hkern u1="&#x176;" u2="&#x12d;" k="-40" />
2495
+ <hkern u1="&#x176;" u2="&#xd8;" k="49" />
2496
+ <hkern u1="&#x176;" u2="J" k="81" />
2497
+ <hkern u1="&#x178;" u2="&#x26;" k="70" />
2498
+ <hkern u1="&#x178;" u2="&#x40;" k="110" />
2499
+ <hkern u1="&#x178;" u2="&#xd7;" k="60" />
2500
+ <hkern u1="&#x178;" u2="&#x2b;" k="71" />
2501
+ <hkern u1="&#x178;" u2="_" k="70" />
2502
+ <hkern u1="&#x178;" u2="&#x7b;" k="50" />
2503
+ <hkern u1="&#x178;" u2="&#x2f;" k="61" />
2504
+ <hkern u1="&#x178;" u2="&#xbf;" k="89" />
2505
+ <hkern u1="&#x178;" u2="&#xa1;" k="31" />
2506
+ <hkern u1="&#x178;" u2="&#x3b;" k="36" />
2507
+ <hkern u1="&#x178;" u2="&#x3a;" k="31" />
2508
+ <hkern u1="&#x178;" u2="&#x2c;" k="64" />
2509
+ <hkern u1="&#x178;" g2="nine.ss04" k="25" />
2510
+ <hkern u1="&#x178;" g2="six.ss04" k="73" />
2511
+ <hkern u1="&#x178;" g2="three.ss04" k="17" />
2512
+ <hkern u1="&#x178;" u2="&#x39;" k="39" />
2513
+ <hkern u1="&#x178;" u2="&#x38;" k="49" />
2514
+ <hkern u1="&#x178;" u2="&#x36;" k="49" />
2515
+ <hkern u1="&#x178;" u2="&#x35;" k="47" />
2516
+ <hkern u1="&#x178;" u2="&#x34;" k="74" />
2517
+ <hkern u1="&#x178;" u2="&#x33;" k="47" />
2518
+ <hkern u1="&#x178;" u2="&#x32;" k="26" />
2519
+ <hkern u1="&#x178;" u2="&#x30;" k="40" />
2520
+ <hkern u1="&#x178;" u2="v" k="42" />
2521
+ <hkern u1="&#x178;" u2="&#x129;" k="-20" />
2522
+ <hkern u1="&#x178;" u2="&#x12b;" k="-63" />
2523
+ <hkern u1="&#x178;" u2="&#x12d;" k="-40" />
2524
+ <hkern u1="&#x178;" u2="&#xd8;" k="49" />
2525
+ <hkern u1="&#x178;" u2="J" k="81" />
2526
+ <hkern u1="&#x1ef2;" u2="&#x26;" k="70" />
2527
+ <hkern u1="&#x1ef2;" u2="&#x40;" k="110" />
2528
+ <hkern u1="&#x1ef2;" u2="&#xd7;" k="60" />
2529
+ <hkern u1="&#x1ef2;" u2="&#x2b;" k="71" />
2530
+ <hkern u1="&#x1ef2;" u2="_" k="70" />
2531
+ <hkern u1="&#x1ef2;" u2="&#x7b;" k="50" />
2532
+ <hkern u1="&#x1ef2;" u2="&#x2f;" k="61" />
2533
+ <hkern u1="&#x1ef2;" u2="&#xbf;" k="89" />
2534
+ <hkern u1="&#x1ef2;" u2="&#xa1;" k="31" />
2535
+ <hkern u1="&#x1ef2;" u2="&#x3b;" k="36" />
2536
+ <hkern u1="&#x1ef2;" u2="&#x3a;" k="31" />
2537
+ <hkern u1="&#x1ef2;" u2="&#x2c;" k="64" />
2538
+ <hkern u1="&#x1ef2;" g2="nine.ss04" k="25" />
2539
+ <hkern u1="&#x1ef2;" g2="six.ss04" k="73" />
2540
+ <hkern u1="&#x1ef2;" g2="three.ss04" k="17" />
2541
+ <hkern u1="&#x1ef2;" u2="&#x39;" k="39" />
2542
+ <hkern u1="&#x1ef2;" u2="&#x38;" k="49" />
2543
+ <hkern u1="&#x1ef2;" u2="&#x36;" k="49" />
2544
+ <hkern u1="&#x1ef2;" u2="&#x35;" k="47" />
2545
+ <hkern u1="&#x1ef2;" u2="&#x34;" k="74" />
2546
+ <hkern u1="&#x1ef2;" u2="&#x33;" k="47" />
2547
+ <hkern u1="&#x1ef2;" u2="&#x32;" k="26" />
2548
+ <hkern u1="&#x1ef2;" u2="&#x30;" k="40" />
2549
+ <hkern u1="&#x1ef2;" u2="v" k="42" />
2550
+ <hkern u1="&#x1ef2;" u2="&#x129;" k="-20" />
2551
+ <hkern u1="&#x1ef2;" u2="&#x12b;" k="-63" />
2552
+ <hkern u1="&#x1ef2;" u2="&#x12d;" k="-40" />
2553
+ <hkern u1="&#x1ef2;" u2="&#xd8;" k="49" />
2554
+ <hkern u1="&#x1ef2;" u2="J" k="81" />
2555
+ <hkern u1="&#x1ef8;" u2="&#x26;" k="70" />
2556
+ <hkern u1="&#x1ef8;" u2="&#x40;" k="110" />
2557
+ <hkern u1="&#x1ef8;" u2="&#xd7;" k="60" />
2558
+ <hkern u1="&#x1ef8;" u2="&#x2b;" k="71" />
2559
+ <hkern u1="&#x1ef8;" u2="_" k="70" />
2560
+ <hkern u1="&#x1ef8;" u2="&#x7b;" k="50" />
2561
+ <hkern u1="&#x1ef8;" u2="&#x2f;" k="61" />
2562
+ <hkern u1="&#x1ef8;" u2="&#xbf;" k="89" />
2563
+ <hkern u1="&#x1ef8;" u2="&#xa1;" k="31" />
2564
+ <hkern u1="&#x1ef8;" u2="&#x3b;" k="36" />
2565
+ <hkern u1="&#x1ef8;" u2="&#x3a;" k="31" />
2566
+ <hkern u1="&#x1ef8;" u2="&#x2c;" k="64" />
2567
+ <hkern u1="&#x1ef8;" g2="nine.ss04" k="25" />
2568
+ <hkern u1="&#x1ef8;" g2="six.ss04" k="73" />
2569
+ <hkern u1="&#x1ef8;" g2="three.ss04" k="17" />
2570
+ <hkern u1="&#x1ef8;" u2="&#x39;" k="39" />
2571
+ <hkern u1="&#x1ef8;" u2="&#x38;" k="49" />
2572
+ <hkern u1="&#x1ef8;" u2="&#x36;" k="49" />
2573
+ <hkern u1="&#x1ef8;" u2="&#x35;" k="47" />
2574
+ <hkern u1="&#x1ef8;" u2="&#x34;" k="74" />
2575
+ <hkern u1="&#x1ef8;" u2="&#x33;" k="47" />
2576
+ <hkern u1="&#x1ef8;" u2="&#x32;" k="26" />
2577
+ <hkern u1="&#x1ef8;" u2="&#x30;" k="40" />
2578
+ <hkern u1="&#x1ef8;" u2="v" k="42" />
2579
+ <hkern u1="&#x1ef8;" u2="&#x129;" k="-20" />
2580
+ <hkern u1="&#x1ef8;" u2="&#x12b;" k="-63" />
2581
+ <hkern u1="&#x1ef8;" u2="&#x12d;" k="-40" />
2582
+ <hkern u1="&#x1ef8;" u2="&#xd8;" k="49" />
2583
+ <hkern u1="&#x1ef8;" u2="J" k="81" />
2584
+ <hkern u1="Z" u2="&#x34;" k="26" />
2585
+ <hkern u1="Z" u2="&#x129;" k="-31" />
2586
+ <hkern u1="Z" u2="&#x12b;" k="-61" />
2587
+ <hkern u1="Z" u2="&#x12d;" k="-39" />
2588
+ <hkern u1="&#x179;" u2="&#x34;" k="26" />
2589
+ <hkern u1="&#x179;" u2="&#x129;" k="-31" />
2590
+ <hkern u1="&#x179;" u2="&#x12b;" k="-61" />
2591
+ <hkern u1="&#x179;" u2="&#x12d;" k="-39" />
2592
+ <hkern u1="&#x17d;" u2="&#x34;" k="26" />
2593
+ <hkern u1="&#x17d;" u2="&#x129;" k="-31" />
2594
+ <hkern u1="&#x17d;" u2="&#x12b;" k="-61" />
2595
+ <hkern u1="&#x17d;" u2="&#x12d;" k="-39" />
2596
+ <hkern u1="&#x17b;" u2="&#x34;" k="26" />
2597
+ <hkern u1="&#x17b;" u2="&#x129;" k="-31" />
2598
+ <hkern u1="&#x17b;" u2="&#x12b;" k="-61" />
2599
+ <hkern u1="&#x17b;" u2="&#x12d;" k="-39" />
2600
+ <hkern u1="a" u2="\" k="41" />
2601
+ <hkern u1="a" u2="&#x2a;" k="33" />
2602
+ <hkern u1="a" g2="nine.ss04" k="3" />
2603
+ <hkern u1="a" u2="&#x37;" k="26" />
2604
+ <hkern u1="a" u2="v" k="19" />
2605
+ <hkern u1="&#xe1;" u2="\" k="41" />
2606
+ <hkern u1="&#xe1;" u2="&#x2a;" k="33" />
2607
+ <hkern u1="&#xe1;" g2="nine.ss04" k="3" />
2608
+ <hkern u1="&#xe1;" u2="&#x37;" k="26" />
2609
+ <hkern u1="&#xe1;" u2="v" k="19" />
2610
+ <hkern u1="&#x103;" u2="\" k="41" />
2611
+ <hkern u1="&#x103;" u2="&#x2a;" k="33" />
2612
+ <hkern u1="&#x103;" g2="nine.ss04" k="3" />
2613
+ <hkern u1="&#x103;" u2="&#x37;" k="26" />
2614
+ <hkern u1="&#x103;" u2="v" k="19" />
2615
+ <hkern u1="&#xe2;" u2="\" k="41" />
2616
+ <hkern u1="&#xe2;" u2="&#x2a;" k="33" />
2617
+ <hkern u1="&#xe2;" g2="nine.ss04" k="3" />
2618
+ <hkern u1="&#xe2;" u2="&#x37;" k="26" />
2619
+ <hkern u1="&#xe2;" u2="v" k="19" />
2620
+ <hkern u1="&#xe4;" u2="\" k="41" />
2621
+ <hkern u1="&#xe4;" u2="&#x2a;" k="33" />
2622
+ <hkern u1="&#xe4;" g2="nine.ss04" k="3" />
2623
+ <hkern u1="&#xe4;" u2="&#x37;" k="26" />
2624
+ <hkern u1="&#xe4;" u2="v" k="19" />
2625
+ <hkern u1="&#xe0;" u2="\" k="41" />
2626
+ <hkern u1="&#xe0;" u2="&#x2a;" k="33" />
2627
+ <hkern u1="&#xe0;" g2="nine.ss04" k="3" />
2628
+ <hkern u1="&#xe0;" u2="&#x37;" k="26" />
2629
+ <hkern u1="&#xe0;" u2="v" k="19" />
2630
+ <hkern u1="&#x101;" u2="\" k="41" />
2631
+ <hkern u1="&#x101;" u2="&#x2a;" k="33" />
2632
+ <hkern u1="&#x101;" g2="nine.ss04" k="3" />
2633
+ <hkern u1="&#x101;" u2="&#x37;" k="26" />
2634
+ <hkern u1="&#x101;" u2="v" k="19" />
2635
+ <hkern u1="&#x105;" u2="\" k="41" />
2636
+ <hkern u1="&#x105;" u2="&#x2a;" k="33" />
2637
+ <hkern u1="&#x105;" g2="nine.ss04" k="3" />
2638
+ <hkern u1="&#x105;" u2="&#x37;" k="26" />
2639
+ <hkern u1="&#x105;" u2="v" k="19" />
2640
+ <hkern u1="&#xe5;" u2="\" k="41" />
2641
+ <hkern u1="&#xe5;" u2="&#x2a;" k="33" />
2642
+ <hkern u1="&#xe5;" g2="nine.ss04" k="3" />
2643
+ <hkern u1="&#xe5;" u2="&#x37;" k="26" />
2644
+ <hkern u1="&#xe5;" u2="v" k="19" />
2645
+ <hkern u1="&#xe3;" u2="\" k="41" />
2646
+ <hkern u1="&#xe3;" u2="&#x2a;" k="33" />
2647
+ <hkern u1="&#xe3;" g2="nine.ss04" k="3" />
2648
+ <hkern u1="&#xe3;" u2="&#x37;" k="26" />
2649
+ <hkern u1="&#xe3;" u2="v" k="19" />
2650
+ <hkern u1="&#xe6;" u2="\" k="51" />
2651
+ <hkern u1="&#xe6;" u2="&#x2a;" k="23" />
2652
+ <hkern u1="&#xe6;" u2="&#x3f;" k="20" />
2653
+ <hkern u1="&#xe6;" u2="&#x37;" k="39" />
2654
+ <hkern u1="&#xe6;" u2="x" k="23" />
2655
+ <hkern u1="&#xe6;" u2="v" k="20" />
2656
+ <hkern u1="&#x1fd;" u2="\" k="51" />
2657
+ <hkern u1="&#x1fd;" u2="&#x2a;" k="23" />
2658
+ <hkern u1="&#x1fd;" u2="&#x3f;" k="20" />
2659
+ <hkern u1="&#x1fd;" u2="&#x37;" k="39" />
2660
+ <hkern u1="&#x1fd;" u2="x" k="23" />
2661
+ <hkern u1="&#x1fd;" u2="v" k="20" />
2662
+ <hkern u1="b" u2="&#x7d;" k="50" />
2663
+ <hkern u1="b" u2="&#x29;" k="41" />
2664
+ <hkern u1="b" u2="\" k="79" />
2665
+ <hkern u1="b" u2="&#x2f;" k="11" />
2666
+ <hkern u1="b" u2="&#x2a;" k="34" />
2667
+ <hkern u1="b" u2="&#x3f;" k="30" />
2668
+ <hkern u1="b" g2="nine.ss04" k="20" />
2669
+ <hkern u1="b" u2="&#x39;" k="17" />
2670
+ <hkern u1="b" u2="&#x37;" k="69" />
2671
+ <hkern u1="b" u2="&#x31;" k="40" />
2672
+ <hkern u1="b" u2="x" k="21" />
2673
+ <hkern u1="b" u2="v" k="25" />
2674
+ <hkern u1="c" u2="&#x29;" k="4" />
2675
+ <hkern u1="c" u2="\" k="43" />
2676
+ <hkern u1="c" u2="&#x2a;" k="23" />
2677
+ <hkern u1="c" u2="&#x3f;" k="30" />
2678
+ <hkern u1="c" g2="nine.ss04" k="21" />
2679
+ <hkern u1="c" u2="&#x37;" k="17" />
2680
+ <hkern u1="c" u2="v" k="16" />
2681
+ <hkern u1="&#x107;" u2="&#x29;" k="4" />
2682
+ <hkern u1="&#x107;" u2="\" k="43" />
2683
+ <hkern u1="&#x107;" u2="&#x2a;" k="23" />
2684
+ <hkern u1="&#x107;" u2="&#x3f;" k="30" />
2685
+ <hkern u1="&#x107;" g2="nine.ss04" k="21" />
2686
+ <hkern u1="&#x107;" u2="&#x37;" k="17" />
2687
+ <hkern u1="&#x107;" u2="v" k="16" />
2688
+ <hkern u1="&#x10d;" u2="&#x29;" k="4" />
2689
+ <hkern u1="&#x10d;" u2="\" k="43" />
2690
+ <hkern u1="&#x10d;" u2="&#x2a;" k="23" />
2691
+ <hkern u1="&#x10d;" u2="&#x3f;" k="30" />
2692
+ <hkern u1="&#x10d;" g2="nine.ss04" k="21" />
2693
+ <hkern u1="&#x10d;" u2="&#x37;" k="17" />
2694
+ <hkern u1="&#x10d;" u2="v" k="16" />
2695
+ <hkern u1="&#xe7;" u2="&#x29;" k="4" />
2696
+ <hkern u1="&#xe7;" u2="\" k="43" />
2697
+ <hkern u1="&#xe7;" u2="&#x2a;" k="23" />
2698
+ <hkern u1="&#xe7;" u2="&#x3f;" k="30" />
2699
+ <hkern u1="&#xe7;" g2="nine.ss04" k="21" />
2700
+ <hkern u1="&#xe7;" u2="&#x37;" k="17" />
2701
+ <hkern u1="&#xe7;" u2="v" k="16" />
2702
+ <hkern u1="&#x10b;" u2="&#x29;" k="4" />
2703
+ <hkern u1="&#x10b;" u2="\" k="43" />
2704
+ <hkern u1="&#x10b;" u2="&#x2a;" k="23" />
2705
+ <hkern u1="&#x10b;" u2="&#x3f;" k="30" />
2706
+ <hkern u1="&#x10b;" g2="nine.ss04" k="21" />
2707
+ <hkern u1="&#x10b;" u2="&#x37;" k="17" />
2708
+ <hkern u1="&#x10b;" u2="v" k="16" />
2709
+ <hkern u1="d" u2="&#x12b;" k="-49" />
2710
+ <hkern u1="&#xf0;" u2="&#x12b;" k="-30" />
2711
+ <hkern u1="&#x10f;" u2="&#xbf;" k="44" />
2712
+ <hkern u1="&#x111;" u2="&#x12b;" k="-81" />
2713
+ <hkern u1="e" u2="\" k="51" />
2714
+ <hkern u1="e" u2="&#x2a;" k="23" />
2715
+ <hkern u1="e" u2="&#x3f;" k="20" />
2716
+ <hkern u1="e" u2="&#x37;" k="39" />
2717
+ <hkern u1="e" u2="x" k="23" />
2718
+ <hkern u1="e" u2="v" k="20" />
2719
+ <hkern u1="&#xe9;" u2="\" k="51" />
2720
+ <hkern u1="&#xe9;" u2="&#x2a;" k="23" />
2721
+ <hkern u1="&#xe9;" u2="&#x3f;" k="20" />
2722
+ <hkern u1="&#xe9;" u2="&#x37;" k="39" />
2723
+ <hkern u1="&#xe9;" u2="x" k="23" />
2724
+ <hkern u1="&#xe9;" u2="v" k="20" />
2725
+ <hkern u1="&#x115;" u2="\" k="51" />
2726
+ <hkern u1="&#x115;" u2="&#x2a;" k="23" />
2727
+ <hkern u1="&#x115;" u2="&#x3f;" k="20" />
2728
+ <hkern u1="&#x115;" u2="&#x37;" k="39" />
2729
+ <hkern u1="&#x115;" u2="x" k="23" />
2730
+ <hkern u1="&#x115;" u2="v" k="20" />
2731
+ <hkern u1="&#x11b;" u2="\" k="51" />
2732
+ <hkern u1="&#x11b;" u2="&#x2a;" k="23" />
2733
+ <hkern u1="&#x11b;" u2="&#x3f;" k="20" />
2734
+ <hkern u1="&#x11b;" u2="&#x37;" k="39" />
2735
+ <hkern u1="&#x11b;" u2="x" k="23" />
2736
+ <hkern u1="&#x11b;" u2="v" k="20" />
2737
+ <hkern u1="&#xea;" u2="\" k="51" />
2738
+ <hkern u1="&#xea;" u2="&#x2a;" k="23" />
2739
+ <hkern u1="&#xea;" u2="&#x3f;" k="20" />
2740
+ <hkern u1="&#xea;" u2="&#x37;" k="39" />
2741
+ <hkern u1="&#xea;" u2="x" k="23" />
2742
+ <hkern u1="&#xea;" u2="v" k="20" />
2743
+ <hkern u1="&#xeb;" u2="\" k="51" />
2744
+ <hkern u1="&#xeb;" u2="&#x2a;" k="23" />
2745
+ <hkern u1="&#xeb;" u2="&#x3f;" k="20" />
2746
+ <hkern u1="&#xeb;" u2="&#x37;" k="39" />
2747
+ <hkern u1="&#xeb;" u2="x" k="23" />
2748
+ <hkern u1="&#xeb;" u2="v" k="20" />
2749
+ <hkern u1="&#x117;" u2="\" k="51" />
2750
+ <hkern u1="&#x117;" u2="&#x2a;" k="23" />
2751
+ <hkern u1="&#x117;" u2="&#x3f;" k="20" />
2752
+ <hkern u1="&#x117;" u2="&#x37;" k="39" />
2753
+ <hkern u1="&#x117;" u2="x" k="23" />
2754
+ <hkern u1="&#x117;" u2="v" k="20" />
2755
+ <hkern u1="&#xe8;" u2="\" k="51" />
2756
+ <hkern u1="&#xe8;" u2="&#x2a;" k="23" />
2757
+ <hkern u1="&#xe8;" u2="&#x3f;" k="20" />
2758
+ <hkern u1="&#xe8;" u2="&#x37;" k="39" />
2759
+ <hkern u1="&#xe8;" u2="x" k="23" />
2760
+ <hkern u1="&#xe8;" u2="v" k="20" />
2761
+ <hkern u1="&#x113;" u2="\" k="51" />
2762
+ <hkern u1="&#x113;" u2="&#x2a;" k="23" />
2763
+ <hkern u1="&#x113;" u2="&#x3f;" k="20" />
2764
+ <hkern u1="&#x113;" u2="&#x37;" k="39" />
2765
+ <hkern u1="&#x113;" u2="x" k="23" />
2766
+ <hkern u1="&#x113;" u2="v" k="20" />
2767
+ <hkern u1="&#x119;" u2="\" k="51" />
2768
+ <hkern u1="&#x119;" u2="&#x2a;" k="23" />
2769
+ <hkern u1="&#x119;" u2="&#x3f;" k="20" />
2770
+ <hkern u1="&#x119;" u2="&#x37;" k="39" />
2771
+ <hkern u1="&#x119;" u2="x" k="23" />
2772
+ <hkern u1="&#x119;" u2="v" k="20" />
2773
+ <hkern u1="&#x1ebd;" u2="\" k="51" />
2774
+ <hkern u1="&#x1ebd;" u2="&#x2a;" k="23" />
2775
+ <hkern u1="&#x1ebd;" u2="&#x3f;" k="20" />
2776
+ <hkern u1="&#x1ebd;" u2="&#x37;" k="39" />
2777
+ <hkern u1="&#x1ebd;" u2="x" k="23" />
2778
+ <hkern u1="&#x1ebd;" u2="v" k="20" />
2779
+ <hkern u1="&#x259;" u2="&#x7d;" k="50" />
2780
+ <hkern u1="&#x259;" u2="&#x29;" k="41" />
2781
+ <hkern u1="&#x259;" u2="\" k="79" />
2782
+ <hkern u1="&#x259;" u2="&#x2f;" k="11" />
2783
+ <hkern u1="&#x259;" u2="&#x2a;" k="34" />
2784
+ <hkern u1="&#x259;" u2="&#x3f;" k="30" />
2785
+ <hkern u1="&#x259;" g2="nine.ss04" k="20" />
2786
+ <hkern u1="&#x259;" u2="&#x39;" k="17" />
2787
+ <hkern u1="&#x259;" u2="&#x37;" k="69" />
2788
+ <hkern u1="&#x259;" u2="&#x31;" k="40" />
2789
+ <hkern u1="&#x259;" u2="x" k="21" />
2790
+ <hkern u1="&#x259;" u2="v" k="25" />
2791
+ <hkern u1="f" u2="&#x40;" k="37" />
2792
+ <hkern u1="f" u2="&#x2026;" k="30" />
2793
+ <hkern u1="f" u2="&#x2e;" k="30" />
2794
+ <hkern u1="f" u2="&#x34;" k="20" />
2795
+ <hkern u1="f" g2="gdotaccent.ss03" k="19" />
2796
+ <hkern u1="f" g2="uni0123.ss03" k="19" />
2797
+ <hkern u1="f" g2="gbreve.ss03" k="19" />
2798
+ <hkern u1="f" g2="g.ss03" k="19" />
2799
+ <hkern u1="f" g2="aeacute.ss02" k="20" />
2800
+ <hkern u1="f" g2="ae.ss02" k="20" />
2801
+ <hkern u1="f" g2="atilde.ss02" k="20" />
2802
+ <hkern u1="f" g2="aring.ss02" k="20" />
2803
+ <hkern u1="f" g2="aogonek.ss02" k="20" />
2804
+ <hkern u1="f" g2="amacron.ss02" k="20" />
2805
+ <hkern u1="f" g2="agrave.ss02" k="20" />
2806
+ <hkern u1="f" g2="adieresis.ss02" k="20" />
2807
+ <hkern u1="f" g2="acircumflex.ss02" k="20" />
2808
+ <hkern u1="f" g2="abreve.ss02" k="20" />
2809
+ <hkern u1="f" g2="aacute.ss02" k="20" />
2810
+ <hkern u1="f" g2="a.ss02" k="20" />
2811
+ <hkern u1="f" u2="&#x219;" k="19" />
2812
+ <hkern u1="f" u2="&#x15f;" k="19" />
2813
+ <hkern u1="f" u2="&#x161;" k="19" />
2814
+ <hkern u1="f" u2="&#x15b;" k="19" />
2815
+ <hkern u1="f" u2="s" k="19" />
2816
+ <hkern u1="f" u2="q" k="20" />
2817
+ <hkern u1="f" u2="&#x153;" k="20" />
2818
+ <hkern u1="f" u2="&#xf5;" k="20" />
2819
+ <hkern u1="f" u2="&#x14d;" k="20" />
2820
+ <hkern u1="f" u2="&#x151;" k="20" />
2821
+ <hkern u1="f" u2="&#xf2;" k="20" />
2822
+ <hkern u1="f" u2="&#xf6;" k="20" />
2823
+ <hkern u1="f" u2="&#xf4;" k="20" />
2824
+ <hkern u1="f" u2="&#x14f;" k="20" />
2825
+ <hkern u1="f" u2="&#xf3;" k="20" />
2826
+ <hkern u1="f" u2="o" k="20" />
2827
+ <hkern u1="f" u2="&#x129;" k="-33" />
2828
+ <hkern u1="f" u2="&#x12b;" k="-60" />
2829
+ <hkern u1="f" u2="&#xec;" k="-40" />
2830
+ <hkern u1="f" u2="&#x12d;" k="-30" />
2831
+ <hkern u1="f" u2="&#x121;" k="40" />
2832
+ <hkern u1="f" u2="&#x123;" k="40" />
2833
+ <hkern u1="f" u2="&#x11f;" k="40" />
2834
+ <hkern u1="f" u2="g" k="40" />
2835
+ <hkern u1="f" u2="&#x259;" k="20" />
2836
+ <hkern u1="f" u2="&#x1ebd;" k="20" />
2837
+ <hkern u1="f" u2="&#x119;" k="20" />
2838
+ <hkern u1="f" u2="&#x113;" k="20" />
2839
+ <hkern u1="f" u2="&#xe8;" k="20" />
2840
+ <hkern u1="f" u2="&#x117;" k="20" />
2841
+ <hkern u1="f" u2="&#xeb;" k="20" />
2842
+ <hkern u1="f" u2="&#xea;" k="20" />
2843
+ <hkern u1="f" u2="&#x11b;" k="20" />
2844
+ <hkern u1="f" u2="&#x115;" k="20" />
2845
+ <hkern u1="f" u2="&#xe9;" k="20" />
2846
+ <hkern u1="f" u2="e" k="20" />
2847
+ <hkern u1="f" u2="&#x111;" k="20" />
2848
+ <hkern u1="f" u2="&#x10f;" k="20" />
2849
+ <hkern u1="f" u2="&#xf0;" k="20" />
2850
+ <hkern u1="f" u2="d" k="20" />
2851
+ <hkern u1="f" u2="&#x10b;" k="20" />
2852
+ <hkern u1="f" u2="&#xe7;" k="20" />
2853
+ <hkern u1="f" u2="&#x10d;" k="20" />
2854
+ <hkern u1="f" u2="&#x107;" k="20" />
2855
+ <hkern u1="f" u2="c" k="20" />
2856
+ <hkern u1="f" u2="&#x1fd;" k="20" />
2857
+ <hkern u1="f" u2="&#xe6;" k="20" />
2858
+ <hkern u1="f" u2="&#xe3;" k="20" />
2859
+ <hkern u1="f" u2="&#xe5;" k="20" />
2860
+ <hkern u1="f" u2="&#x105;" k="20" />
2861
+ <hkern u1="f" u2="&#x101;" k="20" />
2862
+ <hkern u1="f" u2="&#xe0;" k="20" />
2863
+ <hkern u1="f" u2="&#xe4;" k="20" />
2864
+ <hkern u1="f" u2="&#xe2;" k="20" />
2865
+ <hkern u1="f" u2="&#x103;" k="20" />
2866
+ <hkern u1="f" u2="&#xe1;" k="20" />
2867
+ <hkern u1="f" u2="a" k="20" />
2868
+ <hkern u1="g" u2="v" k="-3" />
2869
+ <hkern u1="g" u2="j" k="-20" />
2870
+ <hkern u1="&#x11f;" u2="v" k="-3" />
2871
+ <hkern u1="&#x11f;" u2="j" k="-20" />
2872
+ <hkern u1="&#x123;" u2="v" k="-3" />
2873
+ <hkern u1="&#x123;" u2="j" k="-20" />
2874
+ <hkern u1="&#x121;" u2="v" k="-3" />
2875
+ <hkern u1="&#x121;" u2="j" k="-20" />
2876
+ <hkern u1="h" u2="\" k="40" />
2877
+ <hkern u1="h" u2="&#x2a;" k="23" />
2878
+ <hkern u1="h" u2="v" k="10" />
2879
+ <hkern u1="&#xed;" g2="quoteright.ss01" k="-96" />
2880
+ <hkern u1="&#xed;" g2="quoteleft.ss01" k="-96" />
2881
+ <hkern u1="&#xed;" g2="quotedblright.ss01" k="-96" />
2882
+ <hkern u1="&#xed;" g2="quotedblleft.ss01" k="-96" />
2883
+ <hkern u1="&#xed;" u2="&#x27;" k="-17" />
2884
+ <hkern u1="&#xed;" u2="&#x22;" k="-17" />
2885
+ <hkern u1="&#xed;" u2="&#x2019;" k="-74" />
2886
+ <hkern u1="&#xed;" u2="&#x2018;" k="-47" />
2887
+ <hkern u1="&#xed;" u2="&#x201d;" k="-74" />
2888
+ <hkern u1="&#xed;" u2="&#x201c;" k="-47" />
2889
+ <hkern u1="&#xed;" u2="]" k="-8" />
2890
+ <hkern u1="&#xed;" u2="[" k="-60" />
2891
+ <hkern u1="&#xed;" u2="&#x7d;" k="-4" />
2892
+ <hkern u1="&#xed;" u2="&#x29;" k="-8" />
2893
+ <hkern u1="&#xed;" u2="\" k="-71" />
2894
+ <hkern u1="&#xed;" u2="&#x2a;" k="-52" />
2895
+ <hkern u1="&#xed;" u2="&#x3f;" k="-67" />
2896
+ <hkern u1="&#xed;" u2="&#x21;" k="-49" />
2897
+ <hkern u1="&#xed;" g2="three.ss04" k="-51" />
2898
+ <hkern u1="&#xed;" u2="&#x142;" k="-57" />
2899
+ <hkern u1="&#xed;" u2="&#x140;" k="-60" />
2900
+ <hkern u1="&#xed;" u2="&#x13c;" k="-60" />
2901
+ <hkern u1="&#xed;" u2="&#x13e;" k="-60" />
2902
+ <hkern u1="&#xed;" u2="&#x13a;" k="-60" />
2903
+ <hkern u1="&#xed;" u2="l" k="-60" />
2904
+ <hkern u1="&#xed;" u2="&#x137;" k="-60" />
2905
+ <hkern u1="&#xed;" u2="k" k="-60" />
2906
+ <hkern u1="&#xed;" u2="&#x129;" k="-41" />
2907
+ <hkern u1="&#xed;" u2="&#x12b;" k="-66" />
2908
+ <hkern u1="&#xed;" u2="&#xef;" k="-80" />
2909
+ <hkern u1="&#xed;" u2="h" k="-60" />
2910
+ <hkern u1="&#xed;" u2="f" k="-40" />
2911
+ <hkern u1="&#xed;" u2="b" k="-60" />
2912
+ <hkern u1="&#x12d;" u2="\" k="-60" />
2913
+ <hkern u1="&#x12d;" u2="&#x3f;" k="-31" />
2914
+ <hkern u1="&#x12d;" u2="&#x37;" k="-59" />
2915
+ <hkern u1="&#x12d;" u2="&#x31;" k="-40" />
2916
+ <hkern u1="&#x12b;" u2="&#xa6;" k="-40" />
2917
+ <hkern u1="&#x12b;" u2="&#x7c;" k="-40" />
2918
+ <hkern u1="&#x12b;" u2="&#x20a8;" k="-40" />
2919
+ <hkern u1="&#x12b;" g2="quoteright.ss01" k="-100" />
2920
+ <hkern u1="&#x12b;" g2="quoteleft.ss01" k="-100" />
2921
+ <hkern u1="&#x12b;" g2="quotedblright.ss01" k="-100" />
2922
+ <hkern u1="&#x12b;" g2="quotedblleft.ss01" k="-100" />
2923
+ <hkern u1="&#x12b;" u2="&#x27;" k="-100" />
2924
+ <hkern u1="&#x12b;" u2="&#x22;" k="-100" />
2925
+ <hkern u1="&#x12b;" u2="&#x2019;" k="-57" />
2926
+ <hkern u1="&#x12b;" u2="&#x2018;" k="-69" />
2927
+ <hkern u1="&#x12b;" u2="&#x201d;" k="-57" />
2928
+ <hkern u1="&#x12b;" u2="&#x201c;" k="-69" />
2929
+ <hkern u1="&#x12b;" u2="]" k="-8" />
2930
+ <hkern u1="&#x12b;" u2="[" k="-60" />
2931
+ <hkern u1="&#x12b;" u2="\" k="-73" />
2932
+ <hkern u1="&#x12b;" u2="&#x2a;" k="-77" />
2933
+ <hkern u1="&#x12b;" u2="&#x3f;" k="-63" />
2934
+ <hkern u1="&#x12b;" u2="&#x21;" k="-60" />
2935
+ <hkern u1="&#x12b;" g2="nine.ss04" k="-59" />
2936
+ <hkern u1="&#x12b;" g2="three.ss04" k="-40" />
2937
+ <hkern u1="&#x12b;" u2="&#x39;" k="-33" />
2938
+ <hkern u1="&#x12b;" u2="&#x38;" k="-30" />
2939
+ <hkern u1="&#x12b;" u2="&#x35;" k="-20" />
2940
+ <hkern u1="&#x12b;" u2="&#x33;" k="-31" />
2941
+ <hkern u1="&#x12b;" u2="&#x32;" k="-8" />
2942
+ <hkern u1="&#x12b;" u2="&#x31;" k="-81" />
2943
+ <hkern u1="&#x12b;" u2="&#x30;" k="-39" />
2944
+ <hkern u1="&#x12b;" u2="&#x17c;" k="-41" />
2945
+ <hkern u1="&#x12b;" u2="&#x17e;" k="-41" />
2946
+ <hkern u1="&#x12b;" u2="&#x17a;" k="-41" />
2947
+ <hkern u1="&#x12b;" u2="z" k="-41" />
2948
+ <hkern u1="&#x12b;" u2="&#xdf;" k="-60" />
2949
+ <hkern u1="&#x12b;" u2="&#xfe;" k="-60" />
2950
+ <hkern u1="&#x12b;" u2="&#x142;" k="-60" />
2951
+ <hkern u1="&#x12b;" u2="&#x140;" k="-60" />
2952
+ <hkern u1="&#x12b;" u2="&#x13c;" k="-60" />
2953
+ <hkern u1="&#x12b;" u2="&#x13e;" k="-60" />
2954
+ <hkern u1="&#x12b;" u2="&#x13a;" k="-60" />
2955
+ <hkern u1="&#x12b;" u2="l" k="-60" />
2956
+ <hkern u1="&#x12b;" u2="&#x137;" k="-60" />
2957
+ <hkern u1="&#x12b;" u2="k" k="-60" />
2958
+ <hkern u1="&#x12b;" u2="h" k="-60" />
2959
+ <hkern u1="&#x12b;" u2="f" k="-4" />
2960
+ <hkern u1="&#x12b;" u2="b" k="-60" />
2961
+ <hkern u1="&#x12b;" u2="&#x156;" k="-40" />
2962
+ <hkern u1="&#x12b;" u2="&#x158;" k="-40" />
2963
+ <hkern u1="&#x12b;" u2="&#x154;" k="-40" />
2964
+ <hkern u1="&#x12b;" u2="R" k="-40" />
2965
+ <hkern u1="&#x12b;" u2="&#xde;" k="-40" />
2966
+ <hkern u1="&#x12b;" u2="P" k="-40" />
2967
+ <hkern u1="&#x12b;" u2="&#xd1;" k="-40" />
2968
+ <hkern u1="&#x12b;" u2="&#x145;" k="-40" />
2969
+ <hkern u1="&#x12b;" u2="&#x147;" k="-40" />
2970
+ <hkern u1="&#x12b;" u2="&#x143;" k="-40" />
2971
+ <hkern u1="&#x12b;" u2="N" k="-40" />
2972
+ <hkern u1="&#x12b;" u2="M" k="-40" />
2973
+ <hkern u1="&#x12b;" u2="&#x13f;" k="-40" />
2974
+ <hkern u1="&#x12b;" u2="&#x13b;" k="-40" />
2975
+ <hkern u1="&#x12b;" u2="&#x13d;" k="-40" />
2976
+ <hkern u1="&#x12b;" u2="&#x139;" k="-40" />
2977
+ <hkern u1="&#x12b;" u2="L" k="-40" />
2978
+ <hkern u1="&#x12b;" u2="&#x136;" k="-40" />
2979
+ <hkern u1="&#x12b;" u2="K" k="-40" />
2980
+ <hkern u1="&#x12b;" u2="&#x128;" k="-40" />
2981
+ <hkern u1="&#x12b;" u2="&#x12a;" k="-40" />
2982
+ <hkern u1="&#x12b;" u2="&#xcc;" k="-40" />
2983
+ <hkern u1="&#x12b;" u2="&#x130;" k="-40" />
2984
+ <hkern u1="&#x12b;" u2="&#xcf;" k="-40" />
2985
+ <hkern u1="&#x12b;" u2="&#xce;" k="-40" />
2986
+ <hkern u1="&#x12b;" u2="&#x12c;" k="-40" />
2987
+ <hkern u1="&#x12b;" u2="&#xcd;" k="-40" />
2988
+ <hkern u1="&#x12b;" u2="I" k="-40" />
2989
+ <hkern u1="&#x12b;" u2="H" k="-40" />
2990
+ <hkern u1="&#x12b;" u2="F" k="-40" />
2991
+ <hkern u1="&#x12b;" u2="&#x1ebc;" k="-40" />
2992
+ <hkern u1="&#x12b;" u2="&#x118;" k="-40" />
2993
+ <hkern u1="&#x12b;" u2="&#x112;" k="-40" />
2994
+ <hkern u1="&#x12b;" u2="&#xc8;" k="-40" />
2995
+ <hkern u1="&#x12b;" u2="&#x116;" k="-40" />
2996
+ <hkern u1="&#x12b;" u2="&#xcb;" k="-40" />
2997
+ <hkern u1="&#x12b;" u2="&#xca;" k="-40" />
2998
+ <hkern u1="&#x12b;" u2="&#x11a;" k="-40" />
2999
+ <hkern u1="&#x12b;" u2="&#x114;" k="-40" />
3000
+ <hkern u1="&#x12b;" u2="&#xc9;" k="-40" />
3001
+ <hkern u1="&#x12b;" u2="E" k="-40" />
3002
+ <hkern u1="&#x12b;" u2="&#x10e;" k="-40" />
3003
+ <hkern u1="&#x12b;" u2="D" k="-40" />
3004
+ <hkern u1="&#x12b;" u2="B" k="-40" />
3005
+ <hkern u1="&#x129;" g2="quoteright.ss01" k="-60" />
3006
+ <hkern u1="&#x129;" g2="quoteleft.ss01" k="-60" />
3007
+ <hkern u1="&#x129;" g2="quotedblright.ss01" k="-60" />
3008
+ <hkern u1="&#x129;" g2="quotedblleft.ss01" k="-60" />
3009
+ <hkern u1="&#x129;" u2="&#x27;" k="-61" />
3010
+ <hkern u1="&#x129;" u2="&#x22;" k="-61" />
3011
+ <hkern u1="&#x129;" u2="&#x2019;" k="-37" />
3012
+ <hkern u1="&#x129;" u2="&#x2018;" k="-17" />
3013
+ <hkern u1="&#x129;" u2="&#x201d;" k="-37" />
3014
+ <hkern u1="&#x129;" u2="&#x201c;" k="-17" />
3015
+ <hkern u1="&#x129;" u2="[" k="-23" />
3016
+ <hkern u1="&#x129;" u2="&#x2a;" k="-4" />
3017
+ <hkern u1="&#x129;" u2="&#x3f;" k="-40" />
3018
+ <hkern u1="&#x129;" u2="&#x140;" k="-6" />
3019
+ <hkern u1="&#x129;" u2="&#x13c;" k="-6" />
3020
+ <hkern u1="&#x129;" u2="&#x13e;" k="-6" />
3021
+ <hkern u1="&#x129;" u2="&#x13a;" k="-6" />
3022
+ <hkern u1="&#x129;" u2="l" k="-6" />
3023
+ <hkern u1="&#x129;" u2="&#x137;" k="-6" />
3024
+ <hkern u1="&#x129;" u2="k" k="-6" />
3025
+ <hkern u1="&#x129;" u2="j" k="-31" />
3026
+ <hkern u1="&#x129;" u2="h" k="-6" />
3027
+ <hkern u1="&#x129;" u2="f" k="-30" />
3028
+ <hkern u1="&#x129;" u2="b" k="-6" />
3029
+ <hkern u1="j" u2="&#x129;" k="-31" />
3030
+ <hkern u1="l" u2="&#x12b;" k="-49" />
3031
+ <hkern u1="&#x13a;" u2="&#x12b;" k="-49" />
3032
+ <hkern u1="&#x13e;" u2="&#xbf;" k="44" />
3033
+ <hkern u1="&#x13c;" u2="&#x12b;" k="-49" />
3034
+ <hkern u1="&#x142;" u2="&#x12b;" k="-60" />
3035
+ <hkern u1="m" u2="\" k="40" />
3036
+ <hkern u1="m" u2="&#x2a;" k="23" />
3037
+ <hkern u1="m" u2="v" k="10" />
3038
+ <hkern u1="n" u2="\" k="40" />
3039
+ <hkern u1="n" u2="&#x2a;" k="23" />
3040
+ <hkern u1="n" u2="v" k="10" />
3041
+ <hkern u1="&#x144;" u2="\" k="40" />
3042
+ <hkern u1="&#x144;" u2="&#x2a;" k="23" />
3043
+ <hkern u1="&#x144;" u2="v" k="10" />
3044
+ <hkern u1="&#x148;" u2="\" k="40" />
3045
+ <hkern u1="&#x148;" u2="&#x2a;" k="23" />
3046
+ <hkern u1="&#x148;" u2="v" k="10" />
3047
+ <hkern u1="&#x146;" u2="\" k="40" />
3048
+ <hkern u1="&#x146;" u2="&#x2a;" k="23" />
3049
+ <hkern u1="&#x146;" u2="v" k="10" />
3050
+ <hkern u1="&#xf1;" u2="\" k="40" />
3051
+ <hkern u1="&#xf1;" u2="&#x2a;" k="23" />
3052
+ <hkern u1="&#xf1;" u2="v" k="10" />
3053
+ <hkern u1="o" u2="&#x7d;" k="50" />
3054
+ <hkern u1="o" u2="&#x29;" k="41" />
3055
+ <hkern u1="o" u2="\" k="79" />
3056
+ <hkern u1="o" u2="&#x2f;" k="11" />
3057
+ <hkern u1="o" u2="&#x2a;" k="34" />
3058
+ <hkern u1="o" u2="&#x3f;" k="30" />
3059
+ <hkern u1="o" g2="nine.ss04" k="20" />
3060
+ <hkern u1="o" u2="&#x39;" k="17" />
3061
+ <hkern u1="o" u2="&#x37;" k="69" />
3062
+ <hkern u1="o" u2="&#x31;" k="40" />
3063
+ <hkern u1="o" u2="x" k="21" />
3064
+ <hkern u1="o" u2="v" k="25" />
3065
+ <hkern u1="&#xf3;" u2="&#x7d;" k="50" />
3066
+ <hkern u1="&#xf3;" u2="&#x29;" k="41" />
3067
+ <hkern u1="&#xf3;" u2="\" k="79" />
3068
+ <hkern u1="&#xf3;" u2="&#x2f;" k="11" />
3069
+ <hkern u1="&#xf3;" u2="&#x2a;" k="34" />
3070
+ <hkern u1="&#xf3;" u2="&#x3f;" k="30" />
3071
+ <hkern u1="&#xf3;" g2="nine.ss04" k="20" />
3072
+ <hkern u1="&#xf3;" u2="&#x39;" k="17" />
3073
+ <hkern u1="&#xf3;" u2="&#x37;" k="69" />
3074
+ <hkern u1="&#xf3;" u2="&#x31;" k="40" />
3075
+ <hkern u1="&#xf3;" u2="x" k="21" />
3076
+ <hkern u1="&#xf3;" u2="v" k="25" />
3077
+ <hkern u1="&#x14f;" u2="&#x7d;" k="50" />
3078
+ <hkern u1="&#x14f;" u2="&#x29;" k="41" />
3079
+ <hkern u1="&#x14f;" u2="\" k="79" />
3080
+ <hkern u1="&#x14f;" u2="&#x2f;" k="11" />
3081
+ <hkern u1="&#x14f;" u2="&#x2a;" k="34" />
3082
+ <hkern u1="&#x14f;" u2="&#x3f;" k="30" />
3083
+ <hkern u1="&#x14f;" g2="nine.ss04" k="20" />
3084
+ <hkern u1="&#x14f;" u2="&#x39;" k="17" />
3085
+ <hkern u1="&#x14f;" u2="&#x37;" k="69" />
3086
+ <hkern u1="&#x14f;" u2="&#x31;" k="40" />
3087
+ <hkern u1="&#x14f;" u2="x" k="21" />
3088
+ <hkern u1="&#x14f;" u2="v" k="25" />
3089
+ <hkern u1="&#xf4;" u2="&#x7d;" k="50" />
3090
+ <hkern u1="&#xf4;" u2="&#x29;" k="41" />
3091
+ <hkern u1="&#xf4;" u2="\" k="79" />
3092
+ <hkern u1="&#xf4;" u2="&#x2f;" k="11" />
3093
+ <hkern u1="&#xf4;" u2="&#x2a;" k="34" />
3094
+ <hkern u1="&#xf4;" u2="&#x3f;" k="30" />
3095
+ <hkern u1="&#xf4;" g2="nine.ss04" k="20" />
3096
+ <hkern u1="&#xf4;" u2="&#x39;" k="17" />
3097
+ <hkern u1="&#xf4;" u2="&#x37;" k="69" />
3098
+ <hkern u1="&#xf4;" u2="&#x31;" k="40" />
3099
+ <hkern u1="&#xf4;" u2="x" k="21" />
3100
+ <hkern u1="&#xf4;" u2="v" k="25" />
3101
+ <hkern u1="&#xf6;" u2="&#x7d;" k="50" />
3102
+ <hkern u1="&#xf6;" u2="&#x29;" k="41" />
3103
+ <hkern u1="&#xf6;" u2="\" k="79" />
3104
+ <hkern u1="&#xf6;" u2="&#x2f;" k="11" />
3105
+ <hkern u1="&#xf6;" u2="&#x2a;" k="34" />
3106
+ <hkern u1="&#xf6;" u2="&#x3f;" k="30" />
3107
+ <hkern u1="&#xf6;" g2="nine.ss04" k="20" />
3108
+ <hkern u1="&#xf6;" u2="&#x39;" k="17" />
3109
+ <hkern u1="&#xf6;" u2="&#x37;" k="69" />
3110
+ <hkern u1="&#xf6;" u2="&#x31;" k="40" />
3111
+ <hkern u1="&#xf6;" u2="x" k="21" />
3112
+ <hkern u1="&#xf6;" u2="v" k="25" />
3113
+ <hkern u1="&#xf2;" u2="&#x7d;" k="50" />
3114
+ <hkern u1="&#xf2;" u2="&#x29;" k="41" />
3115
+ <hkern u1="&#xf2;" u2="\" k="79" />
3116
+ <hkern u1="&#xf2;" u2="&#x2f;" k="11" />
3117
+ <hkern u1="&#xf2;" u2="&#x2a;" k="34" />
3118
+ <hkern u1="&#xf2;" u2="&#x3f;" k="30" />
3119
+ <hkern u1="&#xf2;" g2="nine.ss04" k="20" />
3120
+ <hkern u1="&#xf2;" u2="&#x39;" k="17" />
3121
+ <hkern u1="&#xf2;" u2="&#x37;" k="69" />
3122
+ <hkern u1="&#xf2;" u2="&#x31;" k="40" />
3123
+ <hkern u1="&#xf2;" u2="x" k="21" />
3124
+ <hkern u1="&#xf2;" u2="v" k="25" />
3125
+ <hkern u1="&#x151;" u2="&#x7d;" k="50" />
3126
+ <hkern u1="&#x151;" u2="&#x29;" k="41" />
3127
+ <hkern u1="&#x151;" u2="\" k="79" />
3128
+ <hkern u1="&#x151;" u2="&#x2f;" k="11" />
3129
+ <hkern u1="&#x151;" u2="&#x2a;" k="34" />
3130
+ <hkern u1="&#x151;" u2="&#x3f;" k="30" />
3131
+ <hkern u1="&#x151;" g2="nine.ss04" k="20" />
3132
+ <hkern u1="&#x151;" u2="&#x39;" k="17" />
3133
+ <hkern u1="&#x151;" u2="&#x37;" k="69" />
3134
+ <hkern u1="&#x151;" u2="&#x31;" k="40" />
3135
+ <hkern u1="&#x151;" u2="x" k="21" />
3136
+ <hkern u1="&#x151;" u2="v" k="25" />
3137
+ <hkern u1="&#x14d;" u2="&#x7d;" k="50" />
3138
+ <hkern u1="&#x14d;" u2="&#x29;" k="41" />
3139
+ <hkern u1="&#x14d;" u2="\" k="79" />
3140
+ <hkern u1="&#x14d;" u2="&#x2f;" k="11" />
3141
+ <hkern u1="&#x14d;" u2="&#x2a;" k="34" />
3142
+ <hkern u1="&#x14d;" u2="&#x3f;" k="30" />
3143
+ <hkern u1="&#x14d;" g2="nine.ss04" k="20" />
3144
+ <hkern u1="&#x14d;" u2="&#x39;" k="17" />
3145
+ <hkern u1="&#x14d;" u2="&#x37;" k="69" />
3146
+ <hkern u1="&#x14d;" u2="&#x31;" k="40" />
3147
+ <hkern u1="&#x14d;" u2="x" k="21" />
3148
+ <hkern u1="&#x14d;" u2="v" k="25" />
3149
+ <hkern u1="&#xf8;" u2="v" k="22" />
3150
+ <hkern u1="&#xf5;" u2="&#x7d;" k="50" />
3151
+ <hkern u1="&#xf5;" u2="&#x29;" k="41" />
3152
+ <hkern u1="&#xf5;" u2="\" k="79" />
3153
+ <hkern u1="&#xf5;" u2="&#x2f;" k="11" />
3154
+ <hkern u1="&#xf5;" u2="&#x2a;" k="34" />
3155
+ <hkern u1="&#xf5;" u2="&#x3f;" k="30" />
3156
+ <hkern u1="&#xf5;" g2="nine.ss04" k="20" />
3157
+ <hkern u1="&#xf5;" u2="&#x39;" k="17" />
3158
+ <hkern u1="&#xf5;" u2="&#x37;" k="69" />
3159
+ <hkern u1="&#xf5;" u2="&#x31;" k="40" />
3160
+ <hkern u1="&#xf5;" u2="x" k="21" />
3161
+ <hkern u1="&#xf5;" u2="v" k="25" />
3162
+ <hkern u1="&#x153;" u2="\" k="51" />
3163
+ <hkern u1="&#x153;" u2="&#x2a;" k="23" />
3164
+ <hkern u1="&#x153;" u2="&#x3f;" k="20" />
3165
+ <hkern u1="&#x153;" u2="&#x37;" k="39" />
3166
+ <hkern u1="&#x153;" u2="x" k="23" />
3167
+ <hkern u1="&#x153;" u2="v" k="20" />
3168
+ <hkern u1="p" u2="&#x7d;" k="50" />
3169
+ <hkern u1="p" u2="&#x29;" k="41" />
3170
+ <hkern u1="p" u2="\" k="79" />
3171
+ <hkern u1="p" u2="&#x2f;" k="11" />
3172
+ <hkern u1="p" u2="&#x2a;" k="34" />
3173
+ <hkern u1="p" u2="&#x3f;" k="30" />
3174
+ <hkern u1="p" g2="nine.ss04" k="20" />
3175
+ <hkern u1="p" u2="&#x39;" k="17" />
3176
+ <hkern u1="p" u2="&#x37;" k="69" />
3177
+ <hkern u1="p" u2="&#x31;" k="40" />
3178
+ <hkern u1="p" u2="x" k="21" />
3179
+ <hkern u1="p" u2="v" k="25" />
3180
+ <hkern u1="&#xfe;" u2="&#x7d;" k="50" />
3181
+ <hkern u1="&#xfe;" u2="&#x29;" k="41" />
3182
+ <hkern u1="&#xfe;" u2="\" k="79" />
3183
+ <hkern u1="&#xfe;" u2="&#x2f;" k="11" />
3184
+ <hkern u1="&#xfe;" u2="&#x2a;" k="34" />
3185
+ <hkern u1="&#xfe;" u2="&#x3f;" k="30" />
3186
+ <hkern u1="&#xfe;" g2="nine.ss04" k="20" />
3187
+ <hkern u1="&#xfe;" u2="&#x39;" k="17" />
3188
+ <hkern u1="&#xfe;" u2="&#x37;" k="69" />
3189
+ <hkern u1="&#xfe;" u2="&#x31;" k="40" />
3190
+ <hkern u1="&#xfe;" u2="x" k="21" />
3191
+ <hkern u1="&#xfe;" u2="v" k="25" />
3192
+ <hkern u1="q" u2="\" k="39" />
3193
+ <hkern u1="q" u2="j" k="-26" />
3194
+ <hkern u1="r" u2="&#x3a;" k="-17" />
3195
+ <hkern u1="r" u2="&#x2c;" k="31" />
3196
+ <hkern u1="r" g2="nine.ss04" k="-30" />
3197
+ <hkern u1="r" u2="&#x33;" k="-3" />
3198
+ <hkern u1="r" u2="&#x32;" k="-7" />
3199
+ <hkern u1="r" u2="&#xf8;" k="19" />
3200
+ <hkern u1="&#x155;" u2="&#x3a;" k="-17" />
3201
+ <hkern u1="&#x155;" u2="&#x2c;" k="31" />
3202
+ <hkern u1="&#x155;" g2="nine.ss04" k="-30" />
3203
+ <hkern u1="&#x155;" u2="&#x33;" k="-3" />
3204
+ <hkern u1="&#x155;" u2="&#x32;" k="-7" />
3205
+ <hkern u1="&#x155;" u2="&#xf8;" k="19" />
3206
+ <hkern u1="&#x159;" u2="&#x3a;" k="-17" />
3207
+ <hkern u1="&#x159;" u2="&#x2c;" k="31" />
3208
+ <hkern u1="&#x159;" g2="nine.ss04" k="-30" />
3209
+ <hkern u1="&#x159;" u2="&#x33;" k="-3" />
3210
+ <hkern u1="&#x159;" u2="&#x32;" k="-7" />
3211
+ <hkern u1="&#x159;" u2="&#xf8;" k="19" />
3212
+ <hkern u1="&#x157;" u2="&#x3a;" k="-17" />
3213
+ <hkern u1="&#x157;" u2="&#x2c;" k="31" />
3214
+ <hkern u1="&#x157;" g2="nine.ss04" k="-30" />
3215
+ <hkern u1="&#x157;" u2="&#x33;" k="-3" />
3216
+ <hkern u1="&#x157;" u2="&#x32;" k="-7" />
3217
+ <hkern u1="&#x157;" u2="&#xf8;" k="19" />
3218
+ <hkern u1="s" u2="&#x29;" k="3" />
3219
+ <hkern u1="s" u2="\" k="50" />
3220
+ <hkern u1="s" u2="&#x2a;" k="37" />
3221
+ <hkern u1="s" u2="&#x3f;" k="29" />
3222
+ <hkern u1="s" g2="nine.ss04" k="20" />
3223
+ <hkern u1="s" u2="&#x39;" k="20" />
3224
+ <hkern u1="s" u2="&#x37;" k="47" />
3225
+ <hkern u1="s" u2="&#x31;" k="17" />
3226
+ <hkern u1="s" u2="v" k="27" />
3227
+ <hkern u1="&#x15b;" u2="&#x29;" k="3" />
3228
+ <hkern u1="&#x15b;" u2="\" k="50" />
3229
+ <hkern u1="&#x15b;" u2="&#x2a;" k="37" />
3230
+ <hkern u1="&#x15b;" u2="&#x3f;" k="29" />
3231
+ <hkern u1="&#x15b;" g2="nine.ss04" k="20" />
3232
+ <hkern u1="&#x15b;" u2="&#x39;" k="20" />
3233
+ <hkern u1="&#x15b;" u2="&#x37;" k="47" />
3234
+ <hkern u1="&#x15b;" u2="&#x31;" k="17" />
3235
+ <hkern u1="&#x15b;" u2="v" k="27" />
3236
+ <hkern u1="&#x161;" u2="&#x29;" k="3" />
3237
+ <hkern u1="&#x161;" u2="\" k="50" />
3238
+ <hkern u1="&#x161;" u2="&#x2a;" k="37" />
3239
+ <hkern u1="&#x161;" u2="&#x3f;" k="29" />
3240
+ <hkern u1="&#x161;" g2="nine.ss04" k="20" />
3241
+ <hkern u1="&#x161;" u2="&#x39;" k="20" />
3242
+ <hkern u1="&#x161;" u2="&#x37;" k="47" />
3243
+ <hkern u1="&#x161;" u2="&#x31;" k="17" />
3244
+ <hkern u1="&#x161;" u2="v" k="27" />
3245
+ <hkern u1="&#x15f;" u2="&#x29;" k="3" />
3246
+ <hkern u1="&#x15f;" u2="\" k="50" />
3247
+ <hkern u1="&#x15f;" u2="&#x2a;" k="37" />
3248
+ <hkern u1="&#x15f;" u2="&#x3f;" k="29" />
3249
+ <hkern u1="&#x15f;" g2="nine.ss04" k="20" />
3250
+ <hkern u1="&#x15f;" u2="&#x39;" k="20" />
3251
+ <hkern u1="&#x15f;" u2="&#x37;" k="47" />
3252
+ <hkern u1="&#x15f;" u2="&#x31;" k="17" />
3253
+ <hkern u1="&#x15f;" u2="v" k="27" />
3254
+ <hkern u1="&#x219;" u2="&#x29;" k="3" />
3255
+ <hkern u1="&#x219;" u2="\" k="50" />
3256
+ <hkern u1="&#x219;" u2="&#x2a;" k="37" />
3257
+ <hkern u1="&#x219;" u2="&#x3f;" k="29" />
3258
+ <hkern u1="&#x219;" g2="nine.ss04" k="20" />
3259
+ <hkern u1="&#x219;" u2="&#x39;" k="20" />
3260
+ <hkern u1="&#x219;" u2="&#x37;" k="47" />
3261
+ <hkern u1="&#x219;" u2="&#x31;" k="17" />
3262
+ <hkern u1="&#x219;" u2="v" k="27" />
3263
+ <hkern u1="&#xdf;" g2="quoteleft.ss01" k="50" />
3264
+ <hkern u1="&#xdf;" g2="quotedblleft.ss01" k="50" />
3265
+ <hkern u1="&#xdf;" u2="&#x2a;" k="60" />
3266
+ <hkern u1="&#xdf;" g2="nine.ss04" k="49" />
3267
+ <hkern u1="&#xdf;" u2="&#x37;" k="39" />
3268
+ <hkern u1="&#xdf;" g2="aeacute.ss02" k="12" />
3269
+ <hkern u1="&#xdf;" g2="ae.ss02" k="12" />
3270
+ <hkern u1="&#xdf;" g2="atilde.ss02" k="12" />
3271
+ <hkern u1="&#xdf;" g2="aring.ss02" k="12" />
3272
+ <hkern u1="&#xdf;" g2="aogonek.ss02" k="12" />
3273
+ <hkern u1="&#xdf;" g2="amacron.ss02" k="12" />
3274
+ <hkern u1="&#xdf;" g2="agrave.ss02" k="12" />
3275
+ <hkern u1="&#xdf;" g2="adieresis.ss02" k="12" />
3276
+ <hkern u1="&#xdf;" g2="acircumflex.ss02" k="12" />
3277
+ <hkern u1="&#xdf;" g2="abreve.ss02" k="12" />
3278
+ <hkern u1="&#xdf;" g2="aacute.ss02" k="12" />
3279
+ <hkern u1="&#xdf;" g2="a.ss02" k="12" />
3280
+ <hkern u1="&#xdf;" u2="&#x1ef9;" k="46" />
3281
+ <hkern u1="&#xdf;" u2="&#x1ef3;" k="46" />
3282
+ <hkern u1="&#xdf;" u2="&#xff;" k="46" />
3283
+ <hkern u1="&#xdf;" u2="&#x177;" k="46" />
3284
+ <hkern u1="&#xdf;" u2="&#xfd;" k="46" />
3285
+ <hkern u1="&#xdf;" u2="y" k="46" />
3286
+ <hkern u1="&#xdf;" u2="v" k="49" />
3287
+ <hkern u1="&#xdf;" u2="q" k="12" />
3288
+ <hkern u1="&#xdf;" u2="&#x153;" k="12" />
3289
+ <hkern u1="&#xdf;" u2="&#xf5;" k="12" />
3290
+ <hkern u1="&#xdf;" u2="&#x14d;" k="12" />
3291
+ <hkern u1="&#xdf;" u2="&#x151;" k="12" />
3292
+ <hkern u1="&#xdf;" u2="&#xf2;" k="12" />
3293
+ <hkern u1="&#xdf;" u2="&#xf6;" k="12" />
3294
+ <hkern u1="&#xdf;" u2="&#xf4;" k="12" />
3295
+ <hkern u1="&#xdf;" u2="&#x14f;" k="12" />
3296
+ <hkern u1="&#xdf;" u2="&#xf3;" k="12" />
3297
+ <hkern u1="&#xdf;" u2="o" k="12" />
3298
+ <hkern u1="&#xdf;" u2="&#x259;" k="12" />
3299
+ <hkern u1="&#xdf;" u2="&#x1ebd;" k="12" />
3300
+ <hkern u1="&#xdf;" u2="&#x119;" k="12" />
3301
+ <hkern u1="&#xdf;" u2="&#x113;" k="12" />
3302
+ <hkern u1="&#xdf;" u2="&#xe8;" k="12" />
3303
+ <hkern u1="&#xdf;" u2="&#x117;" k="12" />
3304
+ <hkern u1="&#xdf;" u2="&#xeb;" k="12" />
3305
+ <hkern u1="&#xdf;" u2="&#xea;" k="12" />
3306
+ <hkern u1="&#xdf;" u2="&#x11b;" k="12" />
3307
+ <hkern u1="&#xdf;" u2="&#x115;" k="12" />
3308
+ <hkern u1="&#xdf;" u2="&#xe9;" k="12" />
3309
+ <hkern u1="&#xdf;" u2="e" k="12" />
3310
+ <hkern u1="&#xdf;" u2="&#x111;" k="12" />
3311
+ <hkern u1="&#xdf;" u2="&#x10f;" k="12" />
3312
+ <hkern u1="&#xdf;" u2="&#xf0;" k="12" />
3313
+ <hkern u1="&#xdf;" u2="d" k="12" />
3314
+ <hkern u1="&#xdf;" u2="&#x10b;" k="12" />
3315
+ <hkern u1="&#xdf;" u2="&#xe7;" k="12" />
3316
+ <hkern u1="&#xdf;" u2="&#x10d;" k="12" />
3317
+ <hkern u1="&#xdf;" u2="&#x107;" k="12" />
3318
+ <hkern u1="&#xdf;" u2="c" k="12" />
3319
+ <hkern u1="t" u2="&#x2c;" k="-52" />
3320
+ <hkern u1="t" u2="&#x32;" k="-30" />
3321
+ <hkern u1="&#x165;" u2="&#x2c;" k="-52" />
3322
+ <hkern u1="&#x165;" u2="&#x32;" k="-30" />
3323
+ <hkern u1="&#x163;" u2="&#x2c;" k="-52" />
3324
+ <hkern u1="&#x163;" u2="&#x32;" k="-30" />
3325
+ <hkern u1="&#x21b;" u2="&#x2c;" k="-52" />
3326
+ <hkern u1="&#x21b;" u2="&#x32;" k="-30" />
3327
+ <hkern u1="v" u2="&#x26;" k="19" />
3328
+ <hkern u1="v" u2="&#x40;" k="49" />
3329
+ <hkern u1="v" g2="quotedblbase.ss01" k="33" />
3330
+ <hkern u1="v" g2="quotesinglbase.ss01" k="33" />
3331
+ <hkern u1="v" g2="comma.ss01" k="33" />
3332
+ <hkern u1="v" u2="&#xbf;" k="47" />
3333
+ <hkern u1="v" u2="&#x2026;" k="40" />
3334
+ <hkern u1="v" u2="&#x2c;" k="50" />
3335
+ <hkern u1="v" u2="&#x2e;" k="40" />
3336
+ <hkern u1="v" g2="six.ss04" k="20" />
3337
+ <hkern u1="v" g2="three.ss04" k="22" />
3338
+ <hkern u1="v" u2="&#x34;" k="20" />
3339
+ <hkern u1="v" u2="&#x32;" k="-3" />
3340
+ <hkern u1="v" g2="gdotaccent.ss03" k="30" />
3341
+ <hkern u1="v" g2="uni0123.ss03" k="30" />
3342
+ <hkern u1="v" g2="gbreve.ss03" k="30" />
3343
+ <hkern u1="v" g2="g.ss03" k="30" />
3344
+ <hkern u1="v" g2="aeacute.ss02" k="25" />
3345
+ <hkern u1="v" g2="ae.ss02" k="25" />
3346
+ <hkern u1="v" g2="atilde.ss02" k="25" />
3347
+ <hkern u1="v" g2="aring.ss02" k="25" />
3348
+ <hkern u1="v" g2="aogonek.ss02" k="25" />
3349
+ <hkern u1="v" g2="amacron.ss02" k="25" />
3350
+ <hkern u1="v" g2="agrave.ss02" k="25" />
3351
+ <hkern u1="v" g2="adieresis.ss02" k="25" />
3352
+ <hkern u1="v" g2="acircumflex.ss02" k="25" />
3353
+ <hkern u1="v" g2="abreve.ss02" k="25" />
3354
+ <hkern u1="v" g2="aacute.ss02" k="25" />
3355
+ <hkern u1="v" g2="a.ss02" k="25" />
3356
+ <hkern u1="v" u2="&#x21b;" k="-3" />
3357
+ <hkern u1="v" u2="&#x163;" k="-3" />
3358
+ <hkern u1="v" u2="&#x165;" k="-3" />
3359
+ <hkern u1="v" u2="t" k="-3" />
3360
+ <hkern u1="v" u2="&#x219;" k="26" />
3361
+ <hkern u1="v" u2="&#x15f;" k="26" />
3362
+ <hkern u1="v" u2="&#x161;" k="26" />
3363
+ <hkern u1="v" u2="&#x15b;" k="26" />
3364
+ <hkern u1="v" u2="s" k="26" />
3365
+ <hkern u1="v" u2="q" k="25" />
3366
+ <hkern u1="v" u2="&#x153;" k="25" />
3367
+ <hkern u1="v" u2="&#xf5;" k="25" />
3368
+ <hkern u1="v" u2="&#xf8;" k="22" />
3369
+ <hkern u1="v" u2="&#x14d;" k="25" />
3370
+ <hkern u1="v" u2="&#x151;" k="25" />
3371
+ <hkern u1="v" u2="&#xf2;" k="25" />
3372
+ <hkern u1="v" u2="&#xf6;" k="25" />
3373
+ <hkern u1="v" u2="&#xf4;" k="25" />
3374
+ <hkern u1="v" u2="&#x14f;" k="25" />
3375
+ <hkern u1="v" u2="&#xf3;" k="25" />
3376
+ <hkern u1="v" u2="o" k="25" />
3377
+ <hkern u1="v" u2="&#x121;" k="21" />
3378
+ <hkern u1="v" u2="&#x123;" k="21" />
3379
+ <hkern u1="v" u2="&#x11f;" k="21" />
3380
+ <hkern u1="v" u2="g" k="21" />
3381
+ <hkern u1="v" u2="f" k="-20" />
3382
+ <hkern u1="v" u2="&#x259;" k="25" />
3383
+ <hkern u1="v" u2="&#x1ebd;" k="25" />
3384
+ <hkern u1="v" u2="&#x119;" k="25" />
3385
+ <hkern u1="v" u2="&#x113;" k="25" />
3386
+ <hkern u1="v" u2="&#xe8;" k="25" />
3387
+ <hkern u1="v" u2="&#x117;" k="25" />
3388
+ <hkern u1="v" u2="&#xeb;" k="25" />
3389
+ <hkern u1="v" u2="&#xea;" k="25" />
3390
+ <hkern u1="v" u2="&#x11b;" k="25" />
3391
+ <hkern u1="v" u2="&#x115;" k="25" />
3392
+ <hkern u1="v" u2="&#xe9;" k="25" />
3393
+ <hkern u1="v" u2="e" k="25" />
3394
+ <hkern u1="v" u2="&#x111;" k="25" />
3395
+ <hkern u1="v" u2="&#x10f;" k="25" />
3396
+ <hkern u1="v" u2="&#xf0;" k="25" />
3397
+ <hkern u1="v" u2="d" k="25" />
3398
+ <hkern u1="v" u2="&#x10b;" k="25" />
3399
+ <hkern u1="v" u2="&#xe7;" k="25" />
3400
+ <hkern u1="v" u2="&#x10d;" k="25" />
3401
+ <hkern u1="v" u2="&#x107;" k="25" />
3402
+ <hkern u1="v" u2="c" k="25" />
3403
+ <hkern u1="v" u2="&#x1fd;" k="25" />
3404
+ <hkern u1="v" u2="&#xe6;" k="25" />
3405
+ <hkern u1="v" u2="&#xe3;" k="25" />
3406
+ <hkern u1="v" u2="&#xe5;" k="25" />
3407
+ <hkern u1="v" u2="&#x105;" k="25" />
3408
+ <hkern u1="v" u2="&#x101;" k="25" />
3409
+ <hkern u1="v" u2="&#xe0;" k="25" />
3410
+ <hkern u1="v" u2="&#xe4;" k="25" />
3411
+ <hkern u1="v" u2="&#xe2;" k="25" />
3412
+ <hkern u1="v" u2="&#x103;" k="25" />
3413
+ <hkern u1="v" u2="&#xe1;" k="25" />
3414
+ <hkern u1="v" u2="a" k="25" />
3415
+ <hkern u1="w" u2="&#x40;" k="40" />
3416
+ <hkern u1="w" u2="&#xbf;" k="26" />
3417
+ <hkern u1="w" u2="&#x2c;" k="30" />
3418
+ <hkern u1="w" g2="three.ss04" k="17" />
3419
+ <hkern u1="w" u2="&#x38;" k="17" />
3420
+ <hkern u1="w" u2="&#x34;" k="17" />
3421
+ <hkern u1="&#x1e83;" u2="&#x40;" k="40" />
3422
+ <hkern u1="&#x1e83;" u2="&#xbf;" k="26" />
3423
+ <hkern u1="&#x1e83;" u2="&#x2c;" k="30" />
3424
+ <hkern u1="&#x1e83;" g2="three.ss04" k="17" />
3425
+ <hkern u1="&#x1e83;" u2="&#x38;" k="17" />
3426
+ <hkern u1="&#x1e83;" u2="&#x34;" k="17" />
3427
+ <hkern u1="&#x175;" u2="&#x40;" k="40" />
3428
+ <hkern u1="&#x175;" u2="&#xbf;" k="26" />
3429
+ <hkern u1="&#x175;" u2="&#x2c;" k="30" />
3430
+ <hkern u1="&#x175;" g2="three.ss04" k="17" />
3431
+ <hkern u1="&#x175;" u2="&#x38;" k="17" />
3432
+ <hkern u1="&#x175;" u2="&#x34;" k="17" />
3433
+ <hkern u1="&#x1e85;" u2="&#x40;" k="40" />
3434
+ <hkern u1="&#x1e85;" u2="&#xbf;" k="26" />
3435
+ <hkern u1="&#x1e85;" u2="&#x2c;" k="30" />
3436
+ <hkern u1="&#x1e85;" g2="three.ss04" k="17" />
3437
+ <hkern u1="&#x1e85;" u2="&#x38;" k="17" />
3438
+ <hkern u1="&#x1e85;" u2="&#x34;" k="17" />
3439
+ <hkern u1="&#x1e81;" u2="&#x40;" k="40" />
3440
+ <hkern u1="&#x1e81;" u2="&#xbf;" k="26" />
3441
+ <hkern u1="&#x1e81;" u2="&#x2c;" k="30" />
3442
+ <hkern u1="&#x1e81;" g2="three.ss04" k="17" />
3443
+ <hkern u1="&#x1e81;" u2="&#x38;" k="17" />
3444
+ <hkern u1="&#x1e81;" u2="&#x34;" k="17" />
3445
+ <hkern u1="x" g2="aeacute.ss02" k="21" />
3446
+ <hkern u1="x" g2="ae.ss02" k="21" />
3447
+ <hkern u1="x" g2="atilde.ss02" k="21" />
3448
+ <hkern u1="x" g2="aring.ss02" k="21" />
3449
+ <hkern u1="x" g2="aogonek.ss02" k="21" />
3450
+ <hkern u1="x" g2="amacron.ss02" k="21" />
3451
+ <hkern u1="x" g2="agrave.ss02" k="21" />
3452
+ <hkern u1="x" g2="adieresis.ss02" k="21" />
3453
+ <hkern u1="x" g2="acircumflex.ss02" k="21" />
3454
+ <hkern u1="x" g2="abreve.ss02" k="21" />
3455
+ <hkern u1="x" g2="aacute.ss02" k="21" />
3456
+ <hkern u1="x" g2="a.ss02" k="21" />
3457
+ <hkern u1="x" u2="q" k="21" />
3458
+ <hkern u1="x" u2="&#x153;" k="21" />
3459
+ <hkern u1="x" u2="&#xf5;" k="21" />
3460
+ <hkern u1="x" u2="&#x14d;" k="21" />
3461
+ <hkern u1="x" u2="&#x151;" k="21" />
3462
+ <hkern u1="x" u2="&#xf2;" k="21" />
3463
+ <hkern u1="x" u2="&#xf6;" k="21" />
3464
+ <hkern u1="x" u2="&#xf4;" k="21" />
3465
+ <hkern u1="x" u2="&#x14f;" k="21" />
3466
+ <hkern u1="x" u2="&#xf3;" k="21" />
3467
+ <hkern u1="x" u2="o" k="21" />
3468
+ <hkern u1="x" u2="&#x259;" k="21" />
3469
+ <hkern u1="x" u2="&#x1ebd;" k="21" />
3470
+ <hkern u1="x" u2="&#x119;" k="21" />
3471
+ <hkern u1="x" u2="&#x113;" k="21" />
3472
+ <hkern u1="x" u2="&#xe8;" k="21" />
3473
+ <hkern u1="x" u2="&#x117;" k="21" />
3474
+ <hkern u1="x" u2="&#xeb;" k="21" />
3475
+ <hkern u1="x" u2="&#xea;" k="21" />
3476
+ <hkern u1="x" u2="&#x11b;" k="21" />
3477
+ <hkern u1="x" u2="&#x115;" k="21" />
3478
+ <hkern u1="x" u2="&#xe9;" k="21" />
3479
+ <hkern u1="x" u2="e" k="21" />
3480
+ <hkern u1="x" u2="&#x111;" k="21" />
3481
+ <hkern u1="x" u2="&#x10f;" k="21" />
3482
+ <hkern u1="x" u2="&#xf0;" k="21" />
3483
+ <hkern u1="x" u2="d" k="21" />
3484
+ <hkern u1="x" u2="&#x10b;" k="21" />
3485
+ <hkern u1="x" u2="&#xe7;" k="21" />
3486
+ <hkern u1="x" u2="&#x10d;" k="21" />
3487
+ <hkern u1="x" u2="&#x107;" k="21" />
3488
+ <hkern u1="x" u2="c" k="21" />
3489
+ <hkern u1="x" u2="&#x1fd;" k="3" />
3490
+ <hkern u1="x" u2="&#xe6;" k="3" />
3491
+ <hkern u1="x" u2="&#xe3;" k="3" />
3492
+ <hkern u1="x" u2="&#xe5;" k="3" />
3493
+ <hkern u1="x" u2="&#x105;" k="3" />
3494
+ <hkern u1="x" u2="&#x101;" k="3" />
3495
+ <hkern u1="x" u2="&#xe0;" k="3" />
3496
+ <hkern u1="x" u2="&#xe4;" k="3" />
3497
+ <hkern u1="x" u2="&#xe2;" k="3" />
3498
+ <hkern u1="x" u2="&#x103;" k="3" />
3499
+ <hkern u1="x" u2="&#xe1;" k="3" />
3500
+ <hkern u1="x" u2="a" k="3" />
3501
+ <hkern u1="y" u2="&#x26;" k="3" />
3502
+ <hkern u1="y" u2="&#x40;" k="59" />
3503
+ <hkern u1="y" u2="&#xd7;" k="17" />
3504
+ <hkern u1="y" u2="&#x2f;" k="40" />
3505
+ <hkern u1="y" u2="&#xbf;" k="59" />
3506
+ <hkern u1="y" u2="&#x2c;" k="61" />
3507
+ <hkern u1="y" g2="six.ss04" k="20" />
3508
+ <hkern u1="y" g2="three.ss04" k="34" />
3509
+ <hkern u1="y" u2="&#x37;" k="-4" />
3510
+ <hkern u1="y" u2="&#x34;" k="30" />
3511
+ <hkern u1="y" u2="&#xf8;" k="41" />
3512
+ <hkern u1="&#xfd;" u2="&#x26;" k="3" />
3513
+ <hkern u1="&#xfd;" u2="&#x40;" k="59" />
3514
+ <hkern u1="&#xfd;" u2="&#xd7;" k="17" />
3515
+ <hkern u1="&#xfd;" u2="&#x2f;" k="40" />
3516
+ <hkern u1="&#xfd;" u2="&#xbf;" k="59" />
3517
+ <hkern u1="&#xfd;" u2="&#x2c;" k="61" />
3518
+ <hkern u1="&#xfd;" g2="six.ss04" k="20" />
3519
+ <hkern u1="&#xfd;" g2="three.ss04" k="34" />
3520
+ <hkern u1="&#xfd;" u2="&#x37;" k="-4" />
3521
+ <hkern u1="&#xfd;" u2="&#x34;" k="30" />
3522
+ <hkern u1="&#xfd;" u2="&#xf8;" k="41" />
3523
+ <hkern u1="&#x177;" u2="&#x26;" k="3" />
3524
+ <hkern u1="&#x177;" u2="&#x40;" k="59" />
3525
+ <hkern u1="&#x177;" u2="&#xd7;" k="17" />
3526
+ <hkern u1="&#x177;" u2="&#x2f;" k="40" />
3527
+ <hkern u1="&#x177;" u2="&#xbf;" k="59" />
3528
+ <hkern u1="&#x177;" u2="&#x2c;" k="61" />
3529
+ <hkern u1="&#x177;" g2="six.ss04" k="20" />
3530
+ <hkern u1="&#x177;" g2="three.ss04" k="34" />
3531
+ <hkern u1="&#x177;" u2="&#x37;" k="-4" />
3532
+ <hkern u1="&#x177;" u2="&#x34;" k="30" />
3533
+ <hkern u1="&#x177;" u2="&#xf8;" k="41" />
3534
+ <hkern u1="&#xff;" u2="&#x26;" k="3" />
3535
+ <hkern u1="&#xff;" u2="&#x40;" k="59" />
3536
+ <hkern u1="&#xff;" u2="&#xd7;" k="17" />
3537
+ <hkern u1="&#xff;" u2="&#x2f;" k="40" />
3538
+ <hkern u1="&#xff;" u2="&#xbf;" k="59" />
3539
+ <hkern u1="&#xff;" u2="&#x2c;" k="61" />
3540
+ <hkern u1="&#xff;" g2="six.ss04" k="20" />
3541
+ <hkern u1="&#xff;" g2="three.ss04" k="34" />
3542
+ <hkern u1="&#xff;" u2="&#x37;" k="-4" />
3543
+ <hkern u1="&#xff;" u2="&#x34;" k="30" />
3544
+ <hkern u1="&#xff;" u2="&#xf8;" k="41" />
3545
+ <hkern u1="&#x1ef3;" u2="&#x26;" k="3" />
3546
+ <hkern u1="&#x1ef3;" u2="&#x40;" k="59" />
3547
+ <hkern u1="&#x1ef3;" u2="&#xd7;" k="17" />
3548
+ <hkern u1="&#x1ef3;" u2="&#x2f;" k="40" />
3549
+ <hkern u1="&#x1ef3;" u2="&#xbf;" k="59" />
3550
+ <hkern u1="&#x1ef3;" u2="&#x2c;" k="61" />
3551
+ <hkern u1="&#x1ef3;" g2="six.ss04" k="20" />
3552
+ <hkern u1="&#x1ef3;" g2="three.ss04" k="34" />
3553
+ <hkern u1="&#x1ef3;" u2="&#x37;" k="-4" />
3554
+ <hkern u1="&#x1ef3;" u2="&#x34;" k="30" />
3555
+ <hkern u1="&#x1ef3;" u2="&#xf8;" k="41" />
3556
+ <hkern u1="&#x1ef9;" u2="&#x26;" k="3" />
3557
+ <hkern u1="&#x1ef9;" u2="&#x40;" k="59" />
3558
+ <hkern u1="&#x1ef9;" u2="&#xd7;" k="17" />
3559
+ <hkern u1="&#x1ef9;" u2="&#x2f;" k="40" />
3560
+ <hkern u1="&#x1ef9;" u2="&#xbf;" k="59" />
3561
+ <hkern u1="&#x1ef9;" u2="&#x2c;" k="61" />
3562
+ <hkern u1="&#x1ef9;" g2="six.ss04" k="20" />
3563
+ <hkern u1="&#x1ef9;" g2="three.ss04" k="34" />
3564
+ <hkern u1="&#x1ef9;" u2="&#x37;" k="-4" />
3565
+ <hkern u1="&#x1ef9;" u2="&#x34;" k="30" />
3566
+ <hkern u1="&#x1ef9;" u2="&#xf8;" k="41" />
3567
+ <hkern u1="z" u2="&#x34;" k="26" />
3568
+ <hkern u1="z" u2="&#x12b;" k="-40" />
3569
+ <hkern u1="&#x17a;" u2="&#x34;" k="26" />
3570
+ <hkern u1="&#x17a;" u2="&#x12b;" k="-40" />
3571
+ <hkern u1="&#x17e;" u2="&#x34;" k="26" />
3572
+ <hkern u1="&#x17e;" u2="&#x12b;" k="-40" />
3573
+ <hkern u1="&#x17c;" u2="&#x34;" k="26" />
3574
+ <hkern u1="&#x17c;" u2="&#x12b;" k="-40" />
3575
+ <hkern g1="ae.ss02" u2="\" k="51" />
3576
+ <hkern g1="ae.ss02" u2="&#x2a;" k="23" />
3577
+ <hkern g1="ae.ss02" u2="&#x3f;" k="20" />
3578
+ <hkern g1="ae.ss02" u2="&#x37;" k="39" />
3579
+ <hkern g1="ae.ss02" u2="x" k="23" />
3580
+ <hkern g1="ae.ss02" u2="v" k="20" />
3581
+ <hkern g1="aeacute.ss02" u2="\" k="51" />
3582
+ <hkern g1="aeacute.ss02" u2="&#x2a;" k="23" />
3583
+ <hkern g1="aeacute.ss02" u2="&#x3f;" k="20" />
3584
+ <hkern g1="aeacute.ss02" u2="&#x37;" k="39" />
3585
+ <hkern g1="aeacute.ss02" u2="x" k="23" />
3586
+ <hkern g1="aeacute.ss02" u2="v" k="20" />
3587
+ <hkern g1="g.ss03" u2="\" k="40" />
3588
+ <hkern g1="g.ss03" u2="&#x37;" k="26" />
3589
+ <hkern g1="gbreve.ss03" u2="\" k="40" />
3590
+ <hkern g1="gbreve.ss03" u2="&#x37;" k="26" />
3591
+ <hkern g1="uni0123.ss03" u2="\" k="40" />
3592
+ <hkern g1="uni0123.ss03" u2="&#x37;" k="26" />
3593
+ <hkern g1="gdotaccent.ss03" u2="\" k="40" />
3594
+ <hkern g1="gdotaccent.ss03" u2="&#x37;" k="26" />
3595
+ <hkern g1="fl" u2="&#x12b;" k="-49" />
3596
+ <hkern u1="&#x30;" u2="_" k="60" />
3597
+ <hkern u1="&#x30;" u2="&#x29;" k="39" />
3598
+ <hkern u1="&#x30;" u2="\" k="39" />
3599
+ <hkern u1="&#x30;" u2="&#x2f;" k="40" />
3600
+ <hkern u1="&#x30;" u2="&#x2026;" k="40" />
3601
+ <hkern u1="&#x30;" u2="&#x2c;" k="30" />
3602
+ <hkern u1="&#x30;" u2="&#x2e;" k="40" />
3603
+ <hkern u1="&#x30;" g2="three.ss04" k="17" />
3604
+ <hkern u1="&#x30;" u2="&#x37;" k="14" />
3605
+ <hkern u1="&#x30;" u2="&#x32;" k="10" />
3606
+ <hkern u1="&#x30;" u2="&#x12b;" k="-39" />
3607
+ <hkern u1="&#x30;" u2="&#x1ef8;" k="40" />
3608
+ <hkern u1="&#x30;" u2="&#x1ef2;" k="40" />
3609
+ <hkern u1="&#x30;" u2="&#x178;" k="40" />
3610
+ <hkern u1="&#x30;" u2="&#x176;" k="40" />
3611
+ <hkern u1="&#x30;" u2="&#xdd;" k="40" />
3612
+ <hkern u1="&#x30;" u2="Y" k="40" />
3613
+ <hkern u1="&#x30;" u2="X" k="41" />
3614
+ <hkern u1="&#x30;" u2="&#x1e80;" k="40" />
3615
+ <hkern u1="&#x30;" u2="&#x1e84;" k="40" />
3616
+ <hkern u1="&#x30;" u2="&#x174;" k="40" />
3617
+ <hkern u1="&#x30;" u2="&#x1e82;" k="40" />
3618
+ <hkern u1="&#x30;" u2="W" k="40" />
3619
+ <hkern u1="&#x30;" u2="V" k="39" />
3620
+ <hkern u1="&#x30;" u2="&#x21a;" k="37" />
3621
+ <hkern u1="&#x30;" u2="&#x162;" k="37" />
3622
+ <hkern u1="&#x30;" u2="&#x164;" k="37" />
3623
+ <hkern u1="&#x30;" u2="T" k="37" />
3624
+ <hkern u1="&#x30;" u2="&#x1fc;" k="46" />
3625
+ <hkern u1="&#x30;" u2="&#xc6;" k="46" />
3626
+ <hkern u1="&#x30;" u2="&#xc3;" k="40" />
3627
+ <hkern u1="&#x30;" u2="&#xc5;" k="40" />
3628
+ <hkern u1="&#x30;" u2="&#x104;" k="40" />
3629
+ <hkern u1="&#x30;" u2="&#x100;" k="40" />
3630
+ <hkern u1="&#x30;" u2="&#xc0;" k="40" />
3631
+ <hkern u1="&#x30;" u2="&#xc4;" k="40" />
3632
+ <hkern u1="&#x30;" u2="&#xc2;" k="40" />
3633
+ <hkern u1="&#x30;" u2="&#x102;" k="40" />
3634
+ <hkern u1="&#x30;" u2="&#xc1;" k="40" />
3635
+ <hkern u1="&#x30;" u2="A" k="40" />
3636
+ <hkern u1="&#x31;" u2="&#x129;" k="-4" />
3637
+ <hkern u1="&#x31;" u2="&#x12b;" k="-40" />
3638
+ <hkern u1="&#x32;" u2="&#xf7;" k="26" />
3639
+ <hkern u1="&#x32;" u2="&#xd7;" k="17" />
3640
+ <hkern u1="&#x32;" u2="&#x2b;" k="26" />
3641
+ <hkern u1="&#x32;" u2="&#x192;" k="-23" />
3642
+ <hkern u1="&#x32;" u2="&#x23;" k="-4" />
3643
+ <hkern u1="&#x32;" g2="six.ss04" k="26" />
3644
+ <hkern u1="&#x32;" u2="&#x39;" k="10" />
3645
+ <hkern u1="&#x32;" u2="&#x38;" k="17" />
3646
+ <hkern u1="&#x32;" u2="&#x37;" k="17" />
3647
+ <hkern u1="&#x32;" u2="&#x34;" k="17" />
3648
+ <hkern u1="&#x32;" u2="&#x30;" k="10" />
3649
+ <hkern u1="&#x32;" g2="aeacute.ss02" k="17" />
3650
+ <hkern u1="&#x32;" g2="ae.ss02" k="17" />
3651
+ <hkern u1="&#x32;" g2="atilde.ss02" k="17" />
3652
+ <hkern u1="&#x32;" g2="aring.ss02" k="17" />
3653
+ <hkern u1="&#x32;" g2="aogonek.ss02" k="17" />
3654
+ <hkern u1="&#x32;" g2="amacron.ss02" k="17" />
3655
+ <hkern u1="&#x32;" g2="agrave.ss02" k="17" />
3656
+ <hkern u1="&#x32;" g2="adieresis.ss02" k="17" />
3657
+ <hkern u1="&#x32;" g2="acircumflex.ss02" k="17" />
3658
+ <hkern u1="&#x32;" g2="abreve.ss02" k="17" />
3659
+ <hkern u1="&#x32;" g2="aacute.ss02" k="17" />
3660
+ <hkern u1="&#x32;" g2="a.ss02" k="17" />
3661
+ <hkern u1="&#x32;" u2="x" k="-3" />
3662
+ <hkern u1="&#x32;" u2="v" k="-3" />
3663
+ <hkern u1="&#x32;" u2="q" k="17" />
3664
+ <hkern u1="&#x32;" u2="&#x153;" k="17" />
3665
+ <hkern u1="&#x32;" u2="&#xf5;" k="17" />
3666
+ <hkern u1="&#x32;" u2="&#x14d;" k="17" />
3667
+ <hkern u1="&#x32;" u2="&#x151;" k="17" />
3668
+ <hkern u1="&#x32;" u2="&#xf2;" k="17" />
3669
+ <hkern u1="&#x32;" u2="&#xf6;" k="17" />
3670
+ <hkern u1="&#x32;" u2="&#xf4;" k="17" />
3671
+ <hkern u1="&#x32;" u2="&#x14f;" k="17" />
3672
+ <hkern u1="&#x32;" u2="&#xf3;" k="17" />
3673
+ <hkern u1="&#x32;" u2="o" k="17" />
3674
+ <hkern u1="&#x32;" u2="&#x12b;" k="-7" />
3675
+ <hkern u1="&#x32;" u2="f" k="-3" />
3676
+ <hkern u1="&#x32;" u2="&#x259;" k="17" />
3677
+ <hkern u1="&#x32;" u2="&#x1ebd;" k="17" />
3678
+ <hkern u1="&#x32;" u2="&#x119;" k="17" />
3679
+ <hkern u1="&#x32;" u2="&#x113;" k="17" />
3680
+ <hkern u1="&#x32;" u2="&#xe8;" k="17" />
3681
+ <hkern u1="&#x32;" u2="&#x117;" k="17" />
3682
+ <hkern u1="&#x32;" u2="&#xeb;" k="17" />
3683
+ <hkern u1="&#x32;" u2="&#xea;" k="17" />
3684
+ <hkern u1="&#x32;" u2="&#x11b;" k="17" />
3685
+ <hkern u1="&#x32;" u2="&#x115;" k="17" />
3686
+ <hkern u1="&#x32;" u2="&#xe9;" k="17" />
3687
+ <hkern u1="&#x32;" u2="e" k="17" />
3688
+ <hkern u1="&#x32;" u2="&#x111;" k="17" />
3689
+ <hkern u1="&#x32;" u2="&#x10f;" k="17" />
3690
+ <hkern u1="&#x32;" u2="&#xf0;" k="17" />
3691
+ <hkern u1="&#x32;" u2="d" k="17" />
3692
+ <hkern u1="&#x32;" u2="&#x10b;" k="17" />
3693
+ <hkern u1="&#x32;" u2="&#xe7;" k="17" />
3694
+ <hkern u1="&#x32;" u2="&#x10d;" k="17" />
3695
+ <hkern u1="&#x32;" u2="&#x107;" k="17" />
3696
+ <hkern u1="&#x32;" u2="c" k="17" />
3697
+ <hkern u1="&#x32;" u2="&#x1ef8;" k="43" />
3698
+ <hkern u1="&#x32;" u2="&#x1ef2;" k="43" />
3699
+ <hkern u1="&#x32;" u2="&#x178;" k="43" />
3700
+ <hkern u1="&#x32;" u2="&#x176;" k="43" />
3701
+ <hkern u1="&#x32;" u2="&#xdd;" k="43" />
3702
+ <hkern u1="&#x32;" u2="Y" k="43" />
3703
+ <hkern u1="&#x32;" u2="&#x1e80;" k="26" />
3704
+ <hkern u1="&#x32;" u2="&#x1e84;" k="26" />
3705
+ <hkern u1="&#x32;" u2="&#x174;" k="26" />
3706
+ <hkern u1="&#x32;" u2="&#x1e82;" k="26" />
3707
+ <hkern u1="&#x32;" u2="W" k="26" />
3708
+ <hkern u1="&#x32;" u2="V" k="34" />
3709
+ <hkern u1="&#x32;" u2="&#x21a;" k="22" />
3710
+ <hkern u1="&#x32;" u2="&#x162;" k="22" />
3711
+ <hkern u1="&#x32;" u2="&#x164;" k="22" />
3712
+ <hkern u1="&#x32;" u2="T" k="22" />
3713
+ <hkern u1="&#x32;" u2="Q" k="10" />
3714
+ <hkern u1="&#x32;" u2="&#x152;" k="10" />
3715
+ <hkern u1="&#x32;" u2="&#xd5;" k="10" />
3716
+ <hkern u1="&#x32;" u2="&#x14c;" k="10" />
3717
+ <hkern u1="&#x32;" u2="&#x150;" k="10" />
3718
+ <hkern u1="&#x32;" u2="&#xd2;" k="10" />
3719
+ <hkern u1="&#x32;" u2="&#xd6;" k="10" />
3720
+ <hkern u1="&#x32;" u2="&#xd4;" k="10" />
3721
+ <hkern u1="&#x32;" u2="&#x14e;" k="10" />
3722
+ <hkern u1="&#x32;" u2="&#xd3;" k="10" />
3723
+ <hkern u1="&#x32;" u2="O" k="10" />
3724
+ <hkern u1="&#x32;" u2="&#x120;" k="10" />
3725
+ <hkern u1="&#x32;" u2="&#x122;" k="10" />
3726
+ <hkern u1="&#x32;" u2="&#x11e;" k="10" />
3727
+ <hkern u1="&#x32;" u2="G" k="10" />
3728
+ <hkern u1="&#x32;" u2="&#x10a;" k="10" />
3729
+ <hkern u1="&#x32;" u2="&#xc7;" k="10" />
3730
+ <hkern u1="&#x32;" u2="&#x10c;" k="10" />
3731
+ <hkern u1="&#x32;" u2="&#x106;" k="10" />
3732
+ <hkern u1="&#x32;" u2="C" k="10" />
3733
+ <hkern u1="&#x33;" u2="&#x40;" k="29" />
3734
+ <hkern u1="&#x33;" u2="&#x2030;" k="17" />
3735
+ <hkern u1="&#x33;" u2="&#x25;" k="17" />
3736
+ <hkern u1="&#x33;" u2="\" k="39" />
3737
+ <hkern u1="&#x33;" u2="&#x2f;" k="47" />
3738
+ <hkern u1="&#x33;" u2="&#x2a;" k="20" />
3739
+ <hkern u1="&#x33;" g2="nine.ss04" k="26" />
3740
+ <hkern u1="&#x33;" u2="&#x39;" k="29" />
3741
+ <hkern u1="&#x33;" u2="&#x37;" k="17" />
3742
+ <hkern u1="&#x33;" u2="&#x31;" k="17" />
3743
+ <hkern u1="&#x33;" u2="&#x12b;" k="-21" />
3744
+ <hkern u1="&#x33;" u2="&#x1ef8;" k="49" />
3745
+ <hkern u1="&#x33;" u2="&#x1ef2;" k="49" />
3746
+ <hkern u1="&#x33;" u2="&#x178;" k="49" />
3747
+ <hkern u1="&#x33;" u2="&#x176;" k="49" />
3748
+ <hkern u1="&#x33;" u2="&#xdd;" k="49" />
3749
+ <hkern u1="&#x33;" u2="Y" k="49" />
3750
+ <hkern u1="&#x33;" u2="X" k="40" />
3751
+ <hkern u1="&#x33;" u2="&#x1e80;" k="30" />
3752
+ <hkern u1="&#x33;" u2="&#x1e84;" k="30" />
3753
+ <hkern u1="&#x33;" u2="&#x174;" k="30" />
3754
+ <hkern u1="&#x33;" u2="&#x1e82;" k="30" />
3755
+ <hkern u1="&#x33;" u2="W" k="30" />
3756
+ <hkern u1="&#x33;" u2="V" k="37" />
3757
+ <hkern u1="&#x33;" u2="&#x21a;" k="34" />
3758
+ <hkern u1="&#x33;" u2="&#x162;" k="34" />
3759
+ <hkern u1="&#x33;" u2="&#x164;" k="34" />
3760
+ <hkern u1="&#x33;" u2="T" k="34" />
3761
+ <hkern u1="&#x33;" u2="&#x1fc;" k="29" />
3762
+ <hkern u1="&#x33;" u2="&#xc6;" k="29" />
3763
+ <hkern u1="&#x33;" u2="&#xc3;" k="40" />
3764
+ <hkern u1="&#x33;" u2="&#xc5;" k="40" />
3765
+ <hkern u1="&#x33;" u2="&#x104;" k="40" />
3766
+ <hkern u1="&#x33;" u2="&#x100;" k="40" />
3767
+ <hkern u1="&#x33;" u2="&#xc0;" k="40" />
3768
+ <hkern u1="&#x33;" u2="&#xc4;" k="40" />
3769
+ <hkern u1="&#x33;" u2="&#xc2;" k="40" />
3770
+ <hkern u1="&#x33;" u2="&#x102;" k="40" />
3771
+ <hkern u1="&#x33;" u2="&#xc1;" k="40" />
3772
+ <hkern u1="&#x33;" u2="A" k="40" />
3773
+ <hkern u1="&#x34;" u2="&#x26;" k="-39" />
3774
+ <hkern u1="&#x34;" u2="&#x2030;" k="4" />
3775
+ <hkern u1="&#x34;" u2="&#x25;" k="4" />
3776
+ <hkern u1="&#x34;" u2="&#x221a;" k="-30" />
3777
+ <hkern u1="&#x34;" u2="&#x2a;" k="43" />
3778
+ <hkern u1="&#x34;" g2="nine.ss04" k="21" />
3779
+ <hkern u1="&#x34;" u2="&#x1ef9;" k="21" />
3780
+ <hkern u1="&#x34;" u2="&#x1ef3;" k="21" />
3781
+ <hkern u1="&#x34;" u2="&#xff;" k="21" />
3782
+ <hkern u1="&#x34;" u2="&#x177;" k="21" />
3783
+ <hkern u1="&#x34;" u2="&#xfd;" k="21" />
3784
+ <hkern u1="&#x34;" u2="y" k="21" />
3785
+ <hkern u1="&#x34;" u2="&#x1ef8;" k="30" />
3786
+ <hkern u1="&#x34;" u2="&#x1ef2;" k="30" />
3787
+ <hkern u1="&#x34;" u2="&#x178;" k="30" />
3788
+ <hkern u1="&#x34;" u2="&#x176;" k="30" />
3789
+ <hkern u1="&#x34;" u2="&#xdd;" k="30" />
3790
+ <hkern u1="&#x34;" u2="Y" k="30" />
3791
+ <hkern u1="&#x34;" u2="&#x1e80;" k="21" />
3792
+ <hkern u1="&#x34;" u2="&#x1e84;" k="21" />
3793
+ <hkern u1="&#x34;" u2="&#x174;" k="21" />
3794
+ <hkern u1="&#x34;" u2="&#x1e82;" k="21" />
3795
+ <hkern u1="&#x34;" u2="W" k="21" />
3796
+ <hkern u1="&#x34;" u2="V" k="37" />
3797
+ <hkern u1="&#x34;" u2="&#x21a;" k="40" />
3798
+ <hkern u1="&#x34;" u2="&#x162;" k="40" />
3799
+ <hkern u1="&#x34;" u2="&#x164;" k="40" />
3800
+ <hkern u1="&#x34;" u2="T" k="40" />
3801
+ <hkern u1="&#x35;" u2="&#x40;" k="26" />
3802
+ <hkern u1="&#x35;" u2="&#x27;" k="17" />
3803
+ <hkern u1="&#x35;" u2="&#x22;" k="17" />
3804
+ <hkern u1="&#x35;" u2="&#x2019;" k="21" />
3805
+ <hkern u1="&#x35;" u2="&#x201d;" k="21" />
3806
+ <hkern u1="&#x35;" u2="_" k="49" />
3807
+ <hkern u1="&#x35;" u2="&#x2f;" k="30" />
3808
+ <hkern u1="&#x35;" u2="&#x23;" k="-4" />
3809
+ <hkern u1="&#x35;" u2="&#x2a;" k="31" />
3810
+ <hkern u1="&#x35;" g2="nine.ss04" k="26" />
3811
+ <hkern u1="&#x35;" u2="&#x39;" k="29" />
3812
+ <hkern u1="&#x35;" u2="&#x37;" k="17" />
3813
+ <hkern u1="&#x35;" u2="&#x32;" k="17" />
3814
+ <hkern u1="&#x35;" u2="&#x1ef9;" k="17" />
3815
+ <hkern u1="&#x35;" u2="&#x1ef3;" k="17" />
3816
+ <hkern u1="&#x35;" u2="&#xff;" k="17" />
3817
+ <hkern u1="&#x35;" u2="&#x177;" k="17" />
3818
+ <hkern u1="&#x35;" u2="&#xfd;" k="17" />
3819
+ <hkern u1="&#x35;" u2="y" k="17" />
3820
+ <hkern u1="&#x35;" u2="&#x1e81;" k="17" />
3821
+ <hkern u1="&#x35;" u2="&#x1e85;" k="17" />
3822
+ <hkern u1="&#x35;" u2="&#x175;" k="17" />
3823
+ <hkern u1="&#x35;" u2="&#x1e83;" k="17" />
3824
+ <hkern u1="&#x35;" u2="w" k="17" />
3825
+ <hkern u1="&#x35;" u2="&#x12b;" k="-20" />
3826
+ <hkern u1="&#x35;" u2="&#x121;" k="3" />
3827
+ <hkern u1="&#x35;" u2="&#x123;" k="3" />
3828
+ <hkern u1="&#x35;" u2="&#x11f;" k="3" />
3829
+ <hkern u1="&#x35;" u2="g" k="3" />
3830
+ <hkern u1="&#x35;" u2="&#x1ef8;" k="46" />
3831
+ <hkern u1="&#x35;" u2="&#x1ef2;" k="46" />
3832
+ <hkern u1="&#x35;" u2="&#x178;" k="46" />
3833
+ <hkern u1="&#x35;" u2="&#x176;" k="46" />
3834
+ <hkern u1="&#x35;" u2="&#xdd;" k="46" />
3835
+ <hkern u1="&#x35;" u2="Y" k="46" />
3836
+ <hkern u1="&#x35;" u2="X" k="40" />
3837
+ <hkern u1="&#x35;" u2="&#x1e80;" k="34" />
3838
+ <hkern u1="&#x35;" u2="&#x1e84;" k="34" />
3839
+ <hkern u1="&#x35;" u2="&#x174;" k="34" />
3840
+ <hkern u1="&#x35;" u2="&#x1e82;" k="34" />
3841
+ <hkern u1="&#x35;" u2="W" k="34" />
3842
+ <hkern u1="&#x35;" u2="V" k="34" />
3843
+ <hkern u1="&#x35;" u2="&#x21a;" k="17" />
3844
+ <hkern u1="&#x35;" u2="&#x162;" k="17" />
3845
+ <hkern u1="&#x35;" u2="&#x164;" k="17" />
3846
+ <hkern u1="&#x35;" u2="T" k="17" />
3847
+ <hkern u1="&#x35;" u2="&#x1fc;" k="34" />
3848
+ <hkern u1="&#x35;" u2="&#xc6;" k="34" />
3849
+ <hkern u1="&#x35;" u2="&#xc3;" k="43" />
3850
+ <hkern u1="&#x35;" u2="&#xc5;" k="43" />
3851
+ <hkern u1="&#x35;" u2="&#x104;" k="43" />
3852
+ <hkern u1="&#x35;" u2="&#x100;" k="43" />
3853
+ <hkern u1="&#x35;" u2="&#xc0;" k="43" />
3854
+ <hkern u1="&#x35;" u2="&#xc4;" k="43" />
3855
+ <hkern u1="&#x35;" u2="&#xc2;" k="43" />
3856
+ <hkern u1="&#x35;" u2="&#x102;" k="43" />
3857
+ <hkern u1="&#x35;" u2="&#xc1;" k="43" />
3858
+ <hkern u1="&#x35;" u2="A" k="43" />
3859
+ <hkern u1="&#x36;" u2="&#x40;" k="26" />
3860
+ <hkern u1="&#x36;" u2="&#x2030;" k="17" />
3861
+ <hkern u1="&#x36;" u2="&#x25;" k="17" />
3862
+ <hkern u1="&#x36;" u2="_" k="40" />
3863
+ <hkern u1="&#x36;" u2="&#x29;" k="30" />
3864
+ <hkern u1="&#x36;" u2="\" k="27" />
3865
+ <hkern u1="&#x36;" u2="&#x2f;" k="39" />
3866
+ <hkern u1="&#x36;" u2="&#x2a;" k="31" />
3867
+ <hkern u1="&#x36;" u2="&#x2026;" k="39" />
3868
+ <hkern u1="&#x36;" u2="&#x2e;" k="39" />
3869
+ <hkern u1="&#x36;" g2="nine.ss04" k="19" />
3870
+ <hkern u1="&#x36;" g2="three.ss04" k="19" />
3871
+ <hkern u1="&#x36;" u2="&#x39;" k="20" />
3872
+ <hkern u1="&#x36;" u2="&#x37;" k="26" />
3873
+ <hkern u1="&#x36;" u2="&#x35;" k="20" />
3874
+ <hkern u1="&#x36;" u2="&#x32;" k="26" />
3875
+ <hkern u1="&#x36;" u2="&#x12b;" k="-20" />
3876
+ <hkern u1="&#x36;" u2="&#x121;" k="17" />
3877
+ <hkern u1="&#x36;" u2="&#x123;" k="17" />
3878
+ <hkern u1="&#x36;" u2="&#x11f;" k="17" />
3879
+ <hkern u1="&#x36;" u2="g" k="17" />
3880
+ <hkern u1="&#x36;" u2="&#x1ef8;" k="59" />
3881
+ <hkern u1="&#x36;" u2="&#x1ef2;" k="59" />
3882
+ <hkern u1="&#x36;" u2="&#x178;" k="59" />
3883
+ <hkern u1="&#x36;" u2="&#x176;" k="59" />
3884
+ <hkern u1="&#x36;" u2="&#xdd;" k="59" />
3885
+ <hkern u1="&#x36;" u2="Y" k="59" />
3886
+ <hkern u1="&#x36;" u2="X" k="48" />
3887
+ <hkern u1="&#x36;" u2="&#x1e80;" k="40" />
3888
+ <hkern u1="&#x36;" u2="&#x1e84;" k="40" />
3889
+ <hkern u1="&#x36;" u2="&#x174;" k="40" />
3890
+ <hkern u1="&#x36;" u2="&#x1e82;" k="40" />
3891
+ <hkern u1="&#x36;" u2="W" k="40" />
3892
+ <hkern u1="&#x36;" u2="V" k="34" />
3893
+ <hkern u1="&#x36;" u2="&#x21a;" k="34" />
3894
+ <hkern u1="&#x36;" u2="&#x162;" k="34" />
3895
+ <hkern u1="&#x36;" u2="&#x164;" k="34" />
3896
+ <hkern u1="&#x36;" u2="T" k="34" />
3897
+ <hkern u1="&#x36;" u2="&#x1fc;" k="47" />
3898
+ <hkern u1="&#x36;" u2="&#xc6;" k="47" />
3899
+ <hkern u1="&#x36;" u2="&#xc3;" k="39" />
3900
+ <hkern u1="&#x36;" u2="&#xc5;" k="39" />
3901
+ <hkern u1="&#x36;" u2="&#x104;" k="39" />
3902
+ <hkern u1="&#x36;" u2="&#x100;" k="39" />
3903
+ <hkern u1="&#x36;" u2="&#xc0;" k="39" />
3904
+ <hkern u1="&#x36;" u2="&#xc4;" k="39" />
3905
+ <hkern u1="&#x36;" u2="&#xc2;" k="39" />
3906
+ <hkern u1="&#x36;" u2="&#x102;" k="39" />
3907
+ <hkern u1="&#x36;" u2="&#xc1;" k="39" />
3908
+ <hkern u1="&#x36;" u2="A" k="39" />
3909
+ <hkern u1="&#x37;" u2="&#x26;" k="47" />
3910
+ <hkern u1="&#x37;" u2="&#x40;" k="103" />
3911
+ <hkern u1="&#x37;" u2="&#x3c;" k="37" />
3912
+ <hkern u1="&#x37;" u2="&#xf7;" k="34" />
3913
+ <hkern u1="&#x37;" u2="&#xd7;" k="26" />
3914
+ <hkern u1="&#x37;" u2="&#x2212;" k="34" />
3915
+ <hkern u1="&#x37;" u2="&#x2b;" k="26" />
3916
+ <hkern u1="&#x37;" u2="&#xa2;" k="39" />
3917
+ <hkern u1="&#x37;" g2="quotedblbase.ss01" k="76" />
3918
+ <hkern u1="&#x37;" g2="quotesinglbase.ss01" k="76" />
3919
+ <hkern u1="&#x37;" u2="&#x27;" k="-30" />
3920
+ <hkern u1="&#x37;" u2="&#x22;" k="-30" />
3921
+ <hkern u1="&#x37;" u2="&#x2039;" k="49" />
3922
+ <hkern u1="&#x37;" u2="&#xab;" k="49" />
3923
+ <hkern u1="&#x37;" u2="&#x201e;" k="60" />
3924
+ <hkern u1="&#x37;" u2="&#x201a;" k="60" />
3925
+ <hkern u1="&#x37;" u2="_" k="57" />
3926
+ <hkern u1="&#x37;" u2="&#x2014;" k="34" />
3927
+ <hkern u1="&#x37;" u2="&#x2013;" k="34" />
3928
+ <hkern u1="&#x37;" u2="&#xad;" k="34" />
3929
+ <hkern u1="&#x37;" u2="&#x2d;" k="34" />
3930
+ <hkern u1="&#x37;" g2="comma.ss01" k="76" />
3931
+ <hkern u1="&#x37;" u2="&#x2f;" k="87" />
3932
+ <hkern u1="&#x37;" u2="&#xbf;" k="66" />
3933
+ <hkern u1="&#x37;" u2="&#x2026;" k="60" />
3934
+ <hkern u1="&#x37;" u2="&#x3b;" k="37" />
3935
+ <hkern u1="&#x37;" u2="&#x2c;" k="50" />
3936
+ <hkern u1="&#x37;" u2="&#x2e;" k="60" />
3937
+ <hkern u1="&#x37;" g2="six.ss04" k="40" />
3938
+ <hkern u1="&#x37;" g2="three.ss04" k="21" />
3939
+ <hkern u1="&#x37;" u2="&#x39;" k="26" />
3940
+ <hkern u1="&#x37;" u2="&#x38;" k="17" />
3941
+ <hkern u1="&#x37;" u2="&#x36;" k="26" />
3942
+ <hkern u1="&#x37;" u2="&#x35;" k="29" />
3943
+ <hkern u1="&#x37;" u2="&#x34;" k="59" />
3944
+ <hkern u1="&#x37;" u2="&#x33;" k="26" />
3945
+ <hkern u1="&#x37;" u2="&#x32;" k="26" />
3946
+ <hkern u1="&#x37;" u2="&#x31;" k="-4" />
3947
+ <hkern u1="&#x37;" u2="&#x30;" k="14" />
3948
+ <hkern u1="&#x37;" g2="gdotaccent.ss03" k="67" />
3949
+ <hkern u1="&#x37;" g2="uni0123.ss03" k="67" />
3950
+ <hkern u1="&#x37;" g2="gbreve.ss03" k="67" />
3951
+ <hkern u1="&#x37;" g2="g.ss03" k="67" />
3952
+ <hkern u1="&#x37;" g2="aeacute.ss02" k="59" />
3953
+ <hkern u1="&#x37;" g2="ae.ss02" k="59" />
3954
+ <hkern u1="&#x37;" g2="atilde.ss02" k="59" />
3955
+ <hkern u1="&#x37;" g2="aring.ss02" k="59" />
3956
+ <hkern u1="&#x37;" g2="aogonek.ss02" k="59" />
3957
+ <hkern u1="&#x37;" g2="amacron.ss02" k="59" />
3958
+ <hkern u1="&#x37;" g2="agrave.ss02" k="59" />
3959
+ <hkern u1="&#x37;" g2="adieresis.ss02" k="59" />
3960
+ <hkern u1="&#x37;" g2="acircumflex.ss02" k="59" />
3961
+ <hkern u1="&#x37;" g2="abreve.ss02" k="59" />
3962
+ <hkern u1="&#x37;" g2="aacute.ss02" k="59" />
3963
+ <hkern u1="&#x37;" g2="a.ss02" k="59" />
3964
+ <hkern u1="&#x37;" u2="&#x219;" k="63" />
3965
+ <hkern u1="&#x37;" u2="&#x15f;" k="63" />
3966
+ <hkern u1="&#x37;" u2="&#x161;" k="63" />
3967
+ <hkern u1="&#x37;" u2="&#x15b;" k="63" />
3968
+ <hkern u1="&#x37;" u2="s" k="63" />
3969
+ <hkern u1="&#x37;" u2="&#x157;" k="26" />
3970
+ <hkern u1="&#x37;" u2="&#x159;" k="26" />
3971
+ <hkern u1="&#x37;" u2="&#x155;" k="26" />
3972
+ <hkern u1="&#x37;" u2="r" k="26" />
3973
+ <hkern u1="&#x37;" u2="q" k="59" />
3974
+ <hkern u1="&#x37;" u2="p" k="34" />
3975
+ <hkern u1="&#x37;" u2="&#x153;" k="59" />
3976
+ <hkern u1="&#x37;" u2="&#xf5;" k="59" />
3977
+ <hkern u1="&#x37;" u2="&#x14d;" k="59" />
3978
+ <hkern u1="&#x37;" u2="&#x151;" k="59" />
3979
+ <hkern u1="&#x37;" u2="&#xf2;" k="59" />
3980
+ <hkern u1="&#x37;" u2="&#xf6;" k="59" />
3981
+ <hkern u1="&#x37;" u2="&#xf4;" k="59" />
3982
+ <hkern u1="&#x37;" u2="&#x14f;" k="59" />
3983
+ <hkern u1="&#x37;" u2="&#xf3;" k="59" />
3984
+ <hkern u1="&#x37;" u2="o" k="59" />
3985
+ <hkern u1="&#x37;" u2="&#xf1;" k="26" />
3986
+ <hkern u1="&#x37;" u2="&#x146;" k="26" />
3987
+ <hkern u1="&#x37;" u2="&#x148;" k="26" />
3988
+ <hkern u1="&#x37;" u2="&#x144;" k="26" />
3989
+ <hkern u1="&#x37;" u2="n" k="26" />
3990
+ <hkern u1="&#x37;" u2="m" k="26" />
3991
+ <hkern u1="&#x37;" u2="&#x129;" k="-8" />
3992
+ <hkern u1="&#x37;" u2="&#x12f;" k="26" />
3993
+ <hkern u1="&#x37;" u2="&#x12b;" k="-71" />
3994
+ <hkern u1="&#x37;" u2="&#xee;" k="26" />
3995
+ <hkern u1="&#x37;" u2="&#x12d;" k="-33" />
3996
+ <hkern u1="&#x37;" u2="&#xed;" k="26" />
3997
+ <hkern u1="&#x37;" u2="&#x131;" k="26" />
3998
+ <hkern u1="&#x37;" u2="&#x121;" k="44" />
3999
+ <hkern u1="&#x37;" u2="&#x123;" k="44" />
4000
+ <hkern u1="&#x37;" u2="&#x11f;" k="44" />
4001
+ <hkern u1="&#x37;" u2="g" k="44" />
4002
+ <hkern u1="&#x37;" u2="f" k="-3" />
4003
+ <hkern u1="&#x37;" u2="&#x259;" k="59" />
4004
+ <hkern u1="&#x37;" u2="&#x1ebd;" k="59" />
4005
+ <hkern u1="&#x37;" u2="&#x119;" k="59" />
4006
+ <hkern u1="&#x37;" u2="&#x113;" k="59" />
4007
+ <hkern u1="&#x37;" u2="&#xe8;" k="59" />
4008
+ <hkern u1="&#x37;" u2="&#x117;" k="59" />
4009
+ <hkern u1="&#x37;" u2="&#xeb;" k="59" />
4010
+ <hkern u1="&#x37;" u2="&#xea;" k="59" />
4011
+ <hkern u1="&#x37;" u2="&#x11b;" k="59" />
4012
+ <hkern u1="&#x37;" u2="&#x115;" k="59" />
4013
+ <hkern u1="&#x37;" u2="&#xe9;" k="59" />
4014
+ <hkern u1="&#x37;" u2="e" k="59" />
4015
+ <hkern u1="&#x37;" u2="&#x111;" k="59" />
4016
+ <hkern u1="&#x37;" u2="&#x10f;" k="59" />
4017
+ <hkern u1="&#x37;" u2="&#xf0;" k="59" />
4018
+ <hkern u1="&#x37;" u2="d" k="59" />
4019
+ <hkern u1="&#x37;" u2="&#x10b;" k="59" />
4020
+ <hkern u1="&#x37;" u2="&#xe7;" k="59" />
4021
+ <hkern u1="&#x37;" u2="&#x10d;" k="59" />
4022
+ <hkern u1="&#x37;" u2="&#x107;" k="59" />
4023
+ <hkern u1="&#x37;" u2="c" k="59" />
4024
+ <hkern u1="&#x37;" u2="&#x1fd;" k="34" />
4025
+ <hkern u1="&#x37;" u2="&#xe6;" k="34" />
4026
+ <hkern u1="&#x37;" u2="&#xe3;" k="34" />
4027
+ <hkern u1="&#x37;" u2="&#xe5;" k="34" />
4028
+ <hkern u1="&#x37;" u2="&#x105;" k="34" />
4029
+ <hkern u1="&#x37;" u2="&#x101;" k="34" />
4030
+ <hkern u1="&#x37;" u2="&#xe0;" k="34" />
4031
+ <hkern u1="&#x37;" u2="&#xe4;" k="34" />
4032
+ <hkern u1="&#x37;" u2="&#xe2;" k="34" />
4033
+ <hkern u1="&#x37;" u2="&#x103;" k="34" />
4034
+ <hkern u1="&#x37;" u2="&#xe1;" k="34" />
4035
+ <hkern u1="&#x37;" u2="a" k="34" />
4036
+ <hkern u1="&#x37;" u2="&#x1e80;" k="-3" />
4037
+ <hkern u1="&#x37;" u2="&#x1e84;" k="-3" />
4038
+ <hkern u1="&#x37;" u2="&#x174;" k="-3" />
4039
+ <hkern u1="&#x37;" u2="&#x1e82;" k="-3" />
4040
+ <hkern u1="&#x37;" u2="W" k="-3" />
4041
+ <hkern u1="&#x37;" u2="V" k="-20" />
4042
+ <hkern u1="&#x37;" u2="Q" k="26" />
4043
+ <hkern u1="&#x37;" u2="&#x152;" k="26" />
4044
+ <hkern u1="&#x37;" u2="&#xd5;" k="26" />
4045
+ <hkern u1="&#x37;" u2="&#xd8;" k="27" />
4046
+ <hkern u1="&#x37;" u2="&#x14c;" k="26" />
4047
+ <hkern u1="&#x37;" u2="&#x150;" k="26" />
4048
+ <hkern u1="&#x37;" u2="&#xd2;" k="26" />
4049
+ <hkern u1="&#x37;" u2="&#xd6;" k="26" />
4050
+ <hkern u1="&#x37;" u2="&#xd4;" k="26" />
4051
+ <hkern u1="&#x37;" u2="&#x14e;" k="26" />
4052
+ <hkern u1="&#x37;" u2="&#xd3;" k="26" />
4053
+ <hkern u1="&#x37;" u2="O" k="26" />
4054
+ <hkern u1="&#x37;" u2="J" k="40" />
4055
+ <hkern u1="&#x37;" u2="&#x120;" k="26" />
4056
+ <hkern u1="&#x37;" u2="&#x122;" k="26" />
4057
+ <hkern u1="&#x37;" u2="&#x11e;" k="26" />
4058
+ <hkern u1="&#x37;" u2="G" k="26" />
4059
+ <hkern u1="&#x37;" u2="&#x10a;" k="26" />
4060
+ <hkern u1="&#x37;" u2="&#xc7;" k="26" />
4061
+ <hkern u1="&#x37;" u2="&#x10c;" k="26" />
4062
+ <hkern u1="&#x37;" u2="&#x106;" k="26" />
4063
+ <hkern u1="&#x37;" u2="C" k="26" />
4064
+ <hkern u1="&#x37;" u2="&#xc3;" k="87" />
4065
+ <hkern u1="&#x37;" u2="&#xc5;" k="87" />
4066
+ <hkern u1="&#x37;" u2="&#x104;" k="87" />
4067
+ <hkern u1="&#x37;" u2="&#x100;" k="87" />
4068
+ <hkern u1="&#x37;" u2="&#xc0;" k="87" />
4069
+ <hkern u1="&#x37;" u2="&#xc4;" k="87" />
4070
+ <hkern u1="&#x37;" u2="&#xc2;" k="87" />
4071
+ <hkern u1="&#x37;" u2="&#x102;" k="87" />
4072
+ <hkern u1="&#x37;" u2="&#xc1;" k="87" />
4073
+ <hkern u1="&#x37;" u2="A" k="87" />
4074
+ <hkern u1="&#x38;" u2="&#x40;" k="26" />
4075
+ <hkern u1="&#x38;" u2="&#x2019;" k="20" />
4076
+ <hkern u1="&#x38;" u2="&#x201d;" k="20" />
4077
+ <hkern u1="&#x38;" u2="_" k="43" />
4078
+ <hkern u1="&#x38;" u2="&#x29;" k="41" />
4079
+ <hkern u1="&#x38;" u2="\" k="39" />
4080
+ <hkern u1="&#x38;" u2="&#x2f;" k="34" />
4081
+ <hkern u1="&#x38;" u2="&#x2a;" k="30" />
4082
+ <hkern u1="&#x38;" g2="nine.ss04" k="28" />
4083
+ <hkern u1="&#x38;" u2="&#x39;" k="29" />
4084
+ <hkern u1="&#x38;" u2="&#x37;" k="26" />
4085
+ <hkern u1="&#x38;" u2="&#x32;" k="17" />
4086
+ <hkern u1="&#x38;" u2="&#x31;" k="20" />
4087
+ <hkern u1="&#x38;" u2="&#x1e81;" k="17" />
4088
+ <hkern u1="&#x38;" u2="&#x1e85;" k="17" />
4089
+ <hkern u1="&#x38;" u2="&#x175;" k="17" />
4090
+ <hkern u1="&#x38;" u2="&#x1e83;" k="17" />
4091
+ <hkern u1="&#x38;" u2="w" k="17" />
4092
+ <hkern u1="&#x38;" u2="&#x12b;" k="-30" />
4093
+ <hkern u1="&#x38;" u2="&#x1ef8;" k="49" />
4094
+ <hkern u1="&#x38;" u2="&#x1ef2;" k="49" />
4095
+ <hkern u1="&#x38;" u2="&#x178;" k="49" />
4096
+ <hkern u1="&#x38;" u2="&#x176;" k="49" />
4097
+ <hkern u1="&#x38;" u2="&#xdd;" k="49" />
4098
+ <hkern u1="&#x38;" u2="Y" k="49" />
4099
+ <hkern u1="&#x38;" u2="X" k="40" />
4100
+ <hkern u1="&#x38;" u2="&#x1e80;" k="40" />
4101
+ <hkern u1="&#x38;" u2="&#x1e84;" k="40" />
4102
+ <hkern u1="&#x38;" u2="&#x174;" k="40" />
4103
+ <hkern u1="&#x38;" u2="&#x1e82;" k="40" />
4104
+ <hkern u1="&#x38;" u2="W" k="40" />
4105
+ <hkern u1="&#x38;" u2="V" k="35" />
4106
+ <hkern u1="&#x38;" u2="&#x21a;" k="34" />
4107
+ <hkern u1="&#x38;" u2="&#x162;" k="34" />
4108
+ <hkern u1="&#x38;" u2="&#x164;" k="34" />
4109
+ <hkern u1="&#x38;" u2="T" k="34" />
4110
+ <hkern u1="&#x38;" u2="&#x1fc;" k="29" />
4111
+ <hkern u1="&#x38;" u2="&#xc6;" k="29" />
4112
+ <hkern u1="&#x38;" u2="&#xc3;" k="30" />
4113
+ <hkern u1="&#x38;" u2="&#xc5;" k="30" />
4114
+ <hkern u1="&#x38;" u2="&#x104;" k="30" />
4115
+ <hkern u1="&#x38;" u2="&#x100;" k="30" />
4116
+ <hkern u1="&#x38;" u2="&#xc0;" k="30" />
4117
+ <hkern u1="&#x38;" u2="&#xc4;" k="30" />
4118
+ <hkern u1="&#x38;" u2="&#xc2;" k="30" />
4119
+ <hkern u1="&#x38;" u2="&#x102;" k="30" />
4120
+ <hkern u1="&#x38;" u2="&#xc1;" k="30" />
4121
+ <hkern u1="&#x38;" u2="A" k="30" />
4122
+ <hkern u1="&#x39;" u2="_" k="50" />
4123
+ <hkern u1="&#x39;" u2="&#x29;" k="33" />
4124
+ <hkern u1="&#x39;" u2="\" k="30" />
4125
+ <hkern u1="&#x39;" u2="&#x2f;" k="50" />
4126
+ <hkern u1="&#x39;" u2="&#x2026;" k="30" />
4127
+ <hkern u1="&#x39;" u2="&#x2e;" k="30" />
4128
+ <hkern u1="&#x39;" u2="&#x38;" k="17" />
4129
+ <hkern u1="&#x39;" u2="&#x37;" k="26" />
4130
+ <hkern u1="&#x39;" u2="&#x33;" k="17" />
4131
+ <hkern u1="&#x39;" u2="&#x32;" k="17" />
4132
+ <hkern u1="&#x39;" u2="&#x31;" k="17" />
4133
+ <hkern u1="&#x39;" u2="&#x12b;" k="-30" />
4134
+ <hkern u1="&#x39;" u2="&#x1ef8;" k="50" />
4135
+ <hkern u1="&#x39;" u2="&#x1ef2;" k="50" />
4136
+ <hkern u1="&#x39;" u2="&#x178;" k="50" />
4137
+ <hkern u1="&#x39;" u2="&#x176;" k="50" />
4138
+ <hkern u1="&#x39;" u2="&#xdd;" k="50" />
4139
+ <hkern u1="&#x39;" u2="Y" k="50" />
4140
+ <hkern u1="&#x39;" u2="X" k="51" />
4141
+ <hkern u1="&#x39;" u2="&#x1e80;" k="39" />
4142
+ <hkern u1="&#x39;" u2="&#x1e84;" k="39" />
4143
+ <hkern u1="&#x39;" u2="&#x174;" k="39" />
4144
+ <hkern u1="&#x39;" u2="&#x1e82;" k="39" />
4145
+ <hkern u1="&#x39;" u2="W" k="39" />
4146
+ <hkern u1="&#x39;" u2="V" k="30" />
4147
+ <hkern u1="&#x39;" u2="&#x21a;" k="34" />
4148
+ <hkern u1="&#x39;" u2="&#x162;" k="34" />
4149
+ <hkern u1="&#x39;" u2="&#x164;" k="34" />
4150
+ <hkern u1="&#x39;" u2="T" k="34" />
4151
+ <hkern u1="&#x39;" u2="&#x141;" k="-23" />
4152
+ <hkern u1="&#x39;" u2="&#x1fc;" k="49" />
4153
+ <hkern u1="&#x39;" u2="&#xc6;" k="49" />
4154
+ <hkern u1="&#x39;" u2="&#xc3;" k="48" />
4155
+ <hkern u1="&#x39;" u2="&#xc5;" k="48" />
4156
+ <hkern u1="&#x39;" u2="&#x104;" k="48" />
4157
+ <hkern u1="&#x39;" u2="&#x100;" k="48" />
4158
+ <hkern u1="&#x39;" u2="&#xc0;" k="48" />
4159
+ <hkern u1="&#x39;" u2="&#xc4;" k="48" />
4160
+ <hkern u1="&#x39;" u2="&#xc2;" k="48" />
4161
+ <hkern u1="&#x39;" u2="&#x102;" k="48" />
4162
+ <hkern u1="&#x39;" u2="&#xc1;" k="48" />
4163
+ <hkern u1="&#x39;" u2="A" k="48" />
4164
+ <hkern g1="three.ss04" u2="&#x40;" k="39" />
4165
+ <hkern g1="three.ss04" u2="&#x3c;" k="4" />
4166
+ <hkern g1="three.ss04" u2="&#x3e;" k="3" />
4167
+ <hkern g1="three.ss04" u2="_" k="30" />
4168
+ <hkern g1="three.ss04" u2="&#x2f;" k="34" />
4169
+ <hkern g1="three.ss04" u2="&#x2a;" k="31" />
4170
+ <hkern g1="three.ss04" g2="nine.ss04" k="30" />
4171
+ <hkern g1="three.ss04" u2="&#x32;" k="19" />
4172
+ <hkern g1="three.ss04" u2="&#x1ef9;" k="34" />
4173
+ <hkern g1="three.ss04" u2="&#x1ef3;" k="34" />
4174
+ <hkern g1="three.ss04" u2="&#xff;" k="34" />
4175
+ <hkern g1="three.ss04" u2="&#x177;" k="34" />
4176
+ <hkern g1="three.ss04" u2="&#xfd;" k="34" />
4177
+ <hkern g1="three.ss04" u2="y" k="34" />
4178
+ <hkern g1="three.ss04" u2="&#x1e81;" k="29" />
4179
+ <hkern g1="three.ss04" u2="&#x1e85;" k="29" />
4180
+ <hkern g1="three.ss04" u2="&#x175;" k="29" />
4181
+ <hkern g1="three.ss04" u2="&#x1e83;" k="29" />
4182
+ <hkern g1="three.ss04" u2="w" k="29" />
4183
+ <hkern g1="three.ss04" u2="v" k="29" />
4184
+ <hkern g1="three.ss04" u2="&#x12b;" k="-50" />
4185
+ <hkern g1="three.ss04" u2="&#xec;" k="-39" />
4186
+ <hkern g1="three.ss04" u2="X" k="40" />
4187
+ <hkern g1="three.ss04" u2="&#x1e80;" k="17" />
4188
+ <hkern g1="three.ss04" u2="&#x1e84;" k="17" />
4189
+ <hkern g1="three.ss04" u2="&#x174;" k="17" />
4190
+ <hkern g1="three.ss04" u2="&#x1e82;" k="17" />
4191
+ <hkern g1="three.ss04" u2="W" k="17" />
4192
+ <hkern g1="three.ss04" u2="V" k="17" />
4193
+ <hkern g1="three.ss04" u2="&#x1fc;" k="31" />
4194
+ <hkern g1="three.ss04" u2="&#xc6;" k="31" />
4195
+ <hkern g1="three.ss04" u2="&#xc3;" k="39" />
4196
+ <hkern g1="three.ss04" u2="&#xc5;" k="39" />
4197
+ <hkern g1="three.ss04" u2="&#x104;" k="39" />
4198
+ <hkern g1="three.ss04" u2="&#x100;" k="39" />
4199
+ <hkern g1="three.ss04" u2="&#xc0;" k="39" />
4200
+ <hkern g1="three.ss04" u2="&#xc4;" k="39" />
4201
+ <hkern g1="three.ss04" u2="&#xc2;" k="39" />
4202
+ <hkern g1="three.ss04" u2="&#x102;" k="39" />
4203
+ <hkern g1="three.ss04" u2="&#xc1;" k="39" />
4204
+ <hkern g1="three.ss04" u2="A" k="39" />
4205
+ <hkern g1="six.ss04" u2="&#x2030;" k="40" />
4206
+ <hkern g1="six.ss04" u2="&#x25;" k="40" />
4207
+ <hkern g1="six.ss04" u2="&#x27;" k="60" />
4208
+ <hkern g1="six.ss04" u2="&#x22;" k="60" />
4209
+ <hkern g1="six.ss04" u2="&#x2019;" k="39" />
4210
+ <hkern g1="six.ss04" u2="&#x2018;" k="20" />
4211
+ <hkern g1="six.ss04" u2="&#x201d;" k="39" />
4212
+ <hkern g1="six.ss04" u2="&#x201c;" k="20" />
4213
+ <hkern g1="six.ss04" u2="_" k="31" />
4214
+ <hkern g1="six.ss04" u2="&#x29;" k="4" />
4215
+ <hkern g1="six.ss04" u2="\" k="50" />
4216
+ <hkern g1="six.ss04" u2="&#x2f;" k="34" />
4217
+ <hkern g1="six.ss04" u2="&#x2a;" k="56" />
4218
+ <hkern g1="six.ss04" u2="&#x3f;" k="30" />
4219
+ <hkern g1="six.ss04" g2="nine.ss04" k="37" />
4220
+ <hkern g1="six.ss04" u2="&#x39;" k="17" />
4221
+ <hkern g1="six.ss04" u2="&#x37;" k="4" />
4222
+ <hkern g1="six.ss04" u2="&#x32;" k="34" />
4223
+ <hkern g1="six.ss04" u2="&#x1ef9;" k="40" />
4224
+ <hkern g1="six.ss04" u2="&#x1ef3;" k="40" />
4225
+ <hkern g1="six.ss04" u2="&#xff;" k="40" />
4226
+ <hkern g1="six.ss04" u2="&#x177;" k="40" />
4227
+ <hkern g1="six.ss04" u2="&#xfd;" k="40" />
4228
+ <hkern g1="six.ss04" u2="y" k="40" />
4229
+ <hkern g1="six.ss04" u2="&#x1e81;" k="17" />
4230
+ <hkern g1="six.ss04" u2="&#x1e85;" k="17" />
4231
+ <hkern g1="six.ss04" u2="&#x175;" k="17" />
4232
+ <hkern g1="six.ss04" u2="&#x1e83;" k="17" />
4233
+ <hkern g1="six.ss04" u2="w" k="17" />
4234
+ <hkern g1="six.ss04" u2="v" k="39" />
4235
+ <hkern g1="six.ss04" u2="&#x1ef8;" k="69" />
4236
+ <hkern g1="six.ss04" u2="&#x1ef2;" k="69" />
4237
+ <hkern g1="six.ss04" u2="&#x178;" k="69" />
4238
+ <hkern g1="six.ss04" u2="&#x176;" k="69" />
4239
+ <hkern g1="six.ss04" u2="&#xdd;" k="69" />
4240
+ <hkern g1="six.ss04" u2="Y" k="69" />
4241
+ <hkern g1="six.ss04" u2="X" k="49" />
4242
+ <hkern g1="six.ss04" u2="&#x1e80;" k="59" />
4243
+ <hkern g1="six.ss04" u2="&#x1e84;" k="59" />
4244
+ <hkern g1="six.ss04" u2="&#x174;" k="59" />
4245
+ <hkern g1="six.ss04" u2="&#x1e82;" k="59" />
4246
+ <hkern g1="six.ss04" u2="W" k="59" />
4247
+ <hkern g1="six.ss04" u2="V" k="57" />
4248
+ <hkern g1="six.ss04" u2="&#x21a;" k="37" />
4249
+ <hkern g1="six.ss04" u2="&#x162;" k="37" />
4250
+ <hkern g1="six.ss04" u2="&#x164;" k="37" />
4251
+ <hkern g1="six.ss04" u2="T" k="37" />
4252
+ <hkern g1="six.ss04" u2="&#x141;" k="-29" />
4253
+ <hkern g1="six.ss04" u2="&#xc3;" k="26" />
4254
+ <hkern g1="six.ss04" u2="&#xc5;" k="26" />
4255
+ <hkern g1="six.ss04" u2="&#x104;" k="26" />
4256
+ <hkern g1="six.ss04" u2="&#x100;" k="26" />
4257
+ <hkern g1="six.ss04" u2="&#xc0;" k="26" />
4258
+ <hkern g1="six.ss04" u2="&#xc4;" k="26" />
4259
+ <hkern g1="six.ss04" u2="&#xc2;" k="26" />
4260
+ <hkern g1="six.ss04" u2="&#x102;" k="26" />
4261
+ <hkern g1="six.ss04" u2="&#xc1;" k="26" />
4262
+ <hkern g1="six.ss04" u2="A" k="26" />
4263
+ <hkern g1="nine.ss04" u2="&#x40;" k="60" />
4264
+ <hkern g1="nine.ss04" g2="quotedblbase.ss01" k="60" />
4265
+ <hkern g1="nine.ss04" g2="quotesinglbase.ss01" k="60" />
4266
+ <hkern g1="nine.ss04" u2="&#x201e;" k="40" />
4267
+ <hkern g1="nine.ss04" u2="&#x201a;" k="40" />
4268
+ <hkern g1="nine.ss04" u2="_" k="93" />
4269
+ <hkern g1="nine.ss04" u2="&#x29;" k="43" />
4270
+ <hkern g1="nine.ss04" g2="comma.ss01" k="60" />
4271
+ <hkern g1="nine.ss04" u2="\" k="21" />
4272
+ <hkern g1="nine.ss04" u2="&#x2f;" k="71" />
4273
+ <hkern g1="nine.ss04" u2="&#xbf;" k="77" />
4274
+ <hkern g1="nine.ss04" u2="&#x2026;" k="57" />
4275
+ <hkern g1="nine.ss04" u2="&#x2c;" k="53" />
4276
+ <hkern g1="nine.ss04" u2="&#x2e;" k="57" />
4277
+ <hkern g1="nine.ss04" g2="six.ss04" k="31" />
4278
+ <hkern g1="nine.ss04" g2="three.ss04" k="40" />
4279
+ <hkern g1="nine.ss04" u2="&#x38;" k="20" />
4280
+ <hkern g1="nine.ss04" u2="&#x35;" k="20" />
4281
+ <hkern g1="nine.ss04" u2="&#x34;" k="24" />
4282
+ <hkern g1="nine.ss04" u2="&#x33;" k="20" />
4283
+ <hkern g1="nine.ss04" u2="&#x32;" k="14" />
4284
+ <hkern g1="nine.ss04" g2="aeacute.ss02" k="31" />
4285
+ <hkern g1="nine.ss04" g2="ae.ss02" k="31" />
4286
+ <hkern g1="nine.ss04" g2="atilde.ss02" k="31" />
4287
+ <hkern g1="nine.ss04" g2="aring.ss02" k="31" />
4288
+ <hkern g1="nine.ss04" g2="aogonek.ss02" k="31" />
4289
+ <hkern g1="nine.ss04" g2="amacron.ss02" k="31" />
4290
+ <hkern g1="nine.ss04" g2="agrave.ss02" k="31" />
4291
+ <hkern g1="nine.ss04" g2="adieresis.ss02" k="31" />
4292
+ <hkern g1="nine.ss04" g2="acircumflex.ss02" k="31" />
4293
+ <hkern g1="nine.ss04" g2="abreve.ss02" k="31" />
4294
+ <hkern g1="nine.ss04" g2="aacute.ss02" k="31" />
4295
+ <hkern g1="nine.ss04" g2="a.ss02" k="31" />
4296
+ <hkern g1="nine.ss04" u2="&#x219;" k="9" />
4297
+ <hkern g1="nine.ss04" u2="&#x15f;" k="9" />
4298
+ <hkern g1="nine.ss04" u2="&#x161;" k="9" />
4299
+ <hkern g1="nine.ss04" u2="&#x15b;" k="9" />
4300
+ <hkern g1="nine.ss04" u2="s" k="9" />
4301
+ <hkern g1="nine.ss04" u2="q" k="31" />
4302
+ <hkern g1="nine.ss04" u2="&#x153;" k="31" />
4303
+ <hkern g1="nine.ss04" u2="&#xf5;" k="31" />
4304
+ <hkern g1="nine.ss04" u2="&#x14d;" k="31" />
4305
+ <hkern g1="nine.ss04" u2="&#x151;" k="31" />
4306
+ <hkern g1="nine.ss04" u2="&#xf2;" k="31" />
4307
+ <hkern g1="nine.ss04" u2="&#xf6;" k="31" />
4308
+ <hkern g1="nine.ss04" u2="&#xf4;" k="31" />
4309
+ <hkern g1="nine.ss04" u2="&#x14f;" k="31" />
4310
+ <hkern g1="nine.ss04" u2="&#xf3;" k="31" />
4311
+ <hkern g1="nine.ss04" u2="o" k="31" />
4312
+ <hkern g1="nine.ss04" u2="&#x12b;" k="-30" />
4313
+ <hkern g1="nine.ss04" u2="&#x121;" k="23" />
4314
+ <hkern g1="nine.ss04" u2="&#x123;" k="23" />
4315
+ <hkern g1="nine.ss04" u2="&#x11f;" k="23" />
4316
+ <hkern g1="nine.ss04" u2="g" k="23" />
4317
+ <hkern g1="nine.ss04" u2="&#x259;" k="31" />
4318
+ <hkern g1="nine.ss04" u2="&#x1ebd;" k="31" />
4319
+ <hkern g1="nine.ss04" u2="&#x119;" k="31" />
4320
+ <hkern g1="nine.ss04" u2="&#x113;" k="31" />
4321
+ <hkern g1="nine.ss04" u2="&#xe8;" k="31" />
4322
+ <hkern g1="nine.ss04" u2="&#x117;" k="31" />
4323
+ <hkern g1="nine.ss04" u2="&#xeb;" k="31" />
4324
+ <hkern g1="nine.ss04" u2="&#xea;" k="31" />
4325
+ <hkern g1="nine.ss04" u2="&#x11b;" k="31" />
4326
+ <hkern g1="nine.ss04" u2="&#x115;" k="31" />
4327
+ <hkern g1="nine.ss04" u2="&#xe9;" k="31" />
4328
+ <hkern g1="nine.ss04" u2="e" k="31" />
4329
+ <hkern g1="nine.ss04" u2="&#x111;" k="31" />
4330
+ <hkern g1="nine.ss04" u2="&#x10f;" k="31" />
4331
+ <hkern g1="nine.ss04" u2="&#xf0;" k="31" />
4332
+ <hkern g1="nine.ss04" u2="d" k="31" />
4333
+ <hkern g1="nine.ss04" u2="&#x10b;" k="31" />
4334
+ <hkern g1="nine.ss04" u2="&#xe7;" k="31" />
4335
+ <hkern g1="nine.ss04" u2="&#x10d;" k="31" />
4336
+ <hkern g1="nine.ss04" u2="&#x107;" k="31" />
4337
+ <hkern g1="nine.ss04" u2="c" k="31" />
4338
+ <hkern g1="nine.ss04" u2="&#x1fd;" k="21" />
4339
+ <hkern g1="nine.ss04" u2="&#xe6;" k="21" />
4340
+ <hkern g1="nine.ss04" u2="&#xe3;" k="21" />
4341
+ <hkern g1="nine.ss04" u2="&#xe5;" k="21" />
4342
+ <hkern g1="nine.ss04" u2="&#x105;" k="21" />
4343
+ <hkern g1="nine.ss04" u2="&#x101;" k="21" />
4344
+ <hkern g1="nine.ss04" u2="&#xe0;" k="21" />
4345
+ <hkern g1="nine.ss04" u2="&#xe4;" k="21" />
4346
+ <hkern g1="nine.ss04" u2="&#xe2;" k="21" />
4347
+ <hkern g1="nine.ss04" u2="&#x103;" k="21" />
4348
+ <hkern g1="nine.ss04" u2="&#xe1;" k="21" />
4349
+ <hkern g1="nine.ss04" u2="a" k="21" />
4350
+ <hkern g1="nine.ss04" u2="&#x17b;" k="21" />
4351
+ <hkern g1="nine.ss04" u2="&#x17d;" k="21" />
4352
+ <hkern g1="nine.ss04" u2="&#x179;" k="21" />
4353
+ <hkern g1="nine.ss04" u2="Z" k="21" />
4354
+ <hkern g1="nine.ss04" u2="&#x1ef8;" k="34" />
4355
+ <hkern g1="nine.ss04" u2="&#x1ef2;" k="34" />
4356
+ <hkern g1="nine.ss04" u2="&#x178;" k="34" />
4357
+ <hkern g1="nine.ss04" u2="&#x176;" k="34" />
4358
+ <hkern g1="nine.ss04" u2="&#xdd;" k="34" />
4359
+ <hkern g1="nine.ss04" u2="Y" k="34" />
4360
+ <hkern g1="nine.ss04" u2="X" k="30" />
4361
+ <hkern g1="nine.ss04" u2="&#x1e80;" k="20" />
4362
+ <hkern g1="nine.ss04" u2="&#x1e84;" k="20" />
4363
+ <hkern g1="nine.ss04" u2="&#x174;" k="20" />
4364
+ <hkern g1="nine.ss04" u2="&#x1e82;" k="20" />
4365
+ <hkern g1="nine.ss04" u2="W" k="20" />
4366
+ <hkern g1="nine.ss04" u2="V" k="17" />
4367
+ <hkern g1="nine.ss04" u2="J" k="49" />
4368
+ <hkern g1="nine.ss04" u2="&#x1fc;" k="83" />
4369
+ <hkern g1="nine.ss04" u2="&#xc6;" k="83" />
4370
+ <hkern g1="nine.ss04" u2="&#xc3;" k="73" />
4371
+ <hkern g1="nine.ss04" u2="&#xc5;" k="73" />
4372
+ <hkern g1="nine.ss04" u2="&#x104;" k="73" />
4373
+ <hkern g1="nine.ss04" u2="&#x100;" k="73" />
4374
+ <hkern g1="nine.ss04" u2="&#xc0;" k="73" />
4375
+ <hkern g1="nine.ss04" u2="&#xc4;" k="73" />
4376
+ <hkern g1="nine.ss04" u2="&#xc2;" k="73" />
4377
+ <hkern g1="nine.ss04" u2="&#x102;" k="73" />
4378
+ <hkern g1="nine.ss04" u2="&#xc1;" k="73" />
4379
+ <hkern g1="nine.ss04" u2="A" k="73" />
4380
+ <hkern u1="&#x2e;" u2="&#x3c;" k="60" />
4381
+ <hkern u1="&#x2e;" u2="&#x7b;" k="50" />
4382
+ <hkern u1="&#x2e;" u2="\" k="60" />
4383
+ <hkern u1="&#x2e;" u2="&#x3f;" k="39" />
4384
+ <hkern u1="&#x2e;" g2="nine.ss04" k="63" />
4385
+ <hkern u1="&#x2e;" u2="&#x39;" k="30" />
4386
+ <hkern u1="&#x2e;" u2="&#x37;" k="30" />
4387
+ <hkern u1="&#x2e;" u2="&#x36;" k="30" />
4388
+ <hkern u1="&#x2e;" u2="&#x31;" k="23" />
4389
+ <hkern u1="&#x2e;" u2="&#x30;" k="40" />
4390
+ <hkern u1="&#x2e;" u2="v" k="40" />
4391
+ <hkern u1="&#x2c;" u2="&#x2030;" k="44" />
4392
+ <hkern u1="&#x2c;" u2="&#x25;" k="44" />
4393
+ <hkern u1="&#x2c;" u2="\" k="53" />
4394
+ <hkern u1="&#x2c;" g2="nine.ss04" k="60" />
4395
+ <hkern u1="&#x2c;" u2="&#x1ef9;" k="51" />
4396
+ <hkern u1="&#x2c;" u2="&#x1ef3;" k="51" />
4397
+ <hkern u1="&#x2c;" u2="&#xff;" k="51" />
4398
+ <hkern u1="&#x2c;" u2="&#x177;" k="51" />
4399
+ <hkern u1="&#x2c;" u2="&#xfd;" k="51" />
4400
+ <hkern u1="&#x2c;" u2="y" k="51" />
4401
+ <hkern u1="&#x2c;" u2="&#x1e81;" k="30" />
4402
+ <hkern u1="&#x2c;" u2="&#x1e85;" k="30" />
4403
+ <hkern u1="&#x2c;" u2="&#x175;" k="30" />
4404
+ <hkern u1="&#x2c;" u2="&#x1e83;" k="30" />
4405
+ <hkern u1="&#x2c;" u2="w" k="30" />
4406
+ <hkern u1="&#x2c;" u2="v" k="49" />
4407
+ <hkern u1="&#x2c;" u2="&#x21b;" k="30" />
4408
+ <hkern u1="&#x2c;" u2="&#x163;" k="30" />
4409
+ <hkern u1="&#x2c;" u2="&#x165;" k="30" />
4410
+ <hkern u1="&#x2c;" u2="t" k="30" />
4411
+ <hkern u1="&#x2c;" u2="&#x1ef8;" k="74" />
4412
+ <hkern u1="&#x2c;" u2="&#x1ef2;" k="74" />
4413
+ <hkern u1="&#x2c;" u2="&#x178;" k="74" />
4414
+ <hkern u1="&#x2c;" u2="&#x176;" k="74" />
4415
+ <hkern u1="&#x2c;" u2="&#xdd;" k="74" />
4416
+ <hkern u1="&#x2c;" u2="Y" k="74" />
4417
+ <hkern u1="&#x2c;" u2="&#x1e80;" k="51" />
4418
+ <hkern u1="&#x2c;" u2="&#x1e84;" k="51" />
4419
+ <hkern u1="&#x2c;" u2="&#x174;" k="51" />
4420
+ <hkern u1="&#x2c;" u2="&#x1e82;" k="51" />
4421
+ <hkern u1="&#x2c;" u2="W" k="51" />
4422
+ <hkern u1="&#x2c;" u2="V" k="71" />
4423
+ <hkern u1="&#x2c;" u2="&#x21a;" k="80" />
4424
+ <hkern u1="&#x2c;" u2="&#x162;" k="80" />
4425
+ <hkern u1="&#x2c;" u2="&#x164;" k="80" />
4426
+ <hkern u1="&#x2c;" u2="T" k="80" />
4427
+ <hkern u1="&#x2c;" u2="Q" k="20" />
4428
+ <hkern u1="&#x2c;" u2="&#x152;" k="20" />
4429
+ <hkern u1="&#x2c;" u2="&#xd5;" k="20" />
4430
+ <hkern u1="&#x2c;" u2="&#x14c;" k="20" />
4431
+ <hkern u1="&#x2c;" u2="&#x150;" k="20" />
4432
+ <hkern u1="&#x2c;" u2="&#xd2;" k="20" />
4433
+ <hkern u1="&#x2c;" u2="&#xd6;" k="20" />
4434
+ <hkern u1="&#x2c;" u2="&#xd4;" k="20" />
4435
+ <hkern u1="&#x2c;" u2="&#x14e;" k="20" />
4436
+ <hkern u1="&#x2c;" u2="&#xd3;" k="20" />
4437
+ <hkern u1="&#x2c;" u2="O" k="20" />
4438
+ <hkern u1="&#x2c;" u2="&#x120;" k="20" />
4439
+ <hkern u1="&#x2c;" u2="&#x122;" k="20" />
4440
+ <hkern u1="&#x2c;" u2="&#x11e;" k="20" />
4441
+ <hkern u1="&#x2c;" u2="G" k="20" />
4442
+ <hkern u1="&#x2c;" u2="&#x10a;" k="20" />
4443
+ <hkern u1="&#x2c;" u2="&#xc7;" k="20" />
4444
+ <hkern u1="&#x2c;" u2="&#x10c;" k="20" />
4445
+ <hkern u1="&#x2c;" u2="&#x106;" k="20" />
4446
+ <hkern u1="&#x2c;" u2="C" k="20" />
4447
+ <hkern u1="&#x3a;" u2="&#x1ef8;" k="31" />
4448
+ <hkern u1="&#x3a;" u2="&#x1ef2;" k="31" />
4449
+ <hkern u1="&#x3a;" u2="&#x178;" k="31" />
4450
+ <hkern u1="&#x3a;" u2="&#x176;" k="31" />
4451
+ <hkern u1="&#x3a;" u2="&#xdd;" k="31" />
4452
+ <hkern u1="&#x3a;" u2="Y" k="31" />
4453
+ <hkern u1="&#x3a;" u2="V" k="30" />
4454
+ <hkern u1="&#x3b;" u2="&#x1ef8;" k="3" />
4455
+ <hkern u1="&#x3b;" u2="&#x1ef2;" k="3" />
4456
+ <hkern u1="&#x3b;" u2="&#x178;" k="3" />
4457
+ <hkern u1="&#x3b;" u2="&#x176;" k="3" />
4458
+ <hkern u1="&#x3b;" u2="&#xdd;" k="3" />
4459
+ <hkern u1="&#x3b;" u2="Y" k="3" />
4460
+ <hkern u1="&#x3b;" u2="&#x21a;" k="49" />
4461
+ <hkern u1="&#x3b;" u2="&#x162;" k="49" />
4462
+ <hkern u1="&#x3b;" u2="&#x164;" k="49" />
4463
+ <hkern u1="&#x3b;" u2="T" k="49" />
4464
+ <hkern u1="&#x2026;" u2="&#x3c;" k="60" />
4465
+ <hkern u1="&#x2026;" u2="&#x7b;" k="50" />
4466
+ <hkern u1="&#x2026;" u2="\" k="60" />
4467
+ <hkern u1="&#x2026;" u2="&#x3f;" k="39" />
4468
+ <hkern u1="&#x2026;" g2="nine.ss04" k="63" />
4469
+ <hkern u1="&#x2026;" u2="&#x39;" k="30" />
4470
+ <hkern u1="&#x2026;" u2="&#x37;" k="30" />
4471
+ <hkern u1="&#x2026;" u2="&#x36;" k="30" />
4472
+ <hkern u1="&#x2026;" u2="&#x31;" k="23" />
4473
+ <hkern u1="&#x2026;" u2="&#x30;" k="40" />
4474
+ <hkern u1="&#x2026;" u2="v" k="40" />
4475
+ <hkern u1="&#x21;" u2="&#x2a;" k="6" />
4476
+ <hkern u1="&#x21;" u2="&#x12b;" k="-60" />
4477
+ <hkern u1="&#x21;" u2="&#xec;" k="-49" />
4478
+ <hkern u1="&#xa1;" u2="&#x1ef8;" k="31" />
4479
+ <hkern u1="&#xa1;" u2="&#x1ef2;" k="31" />
4480
+ <hkern u1="&#xa1;" u2="&#x178;" k="31" />
4481
+ <hkern u1="&#xa1;" u2="&#x176;" k="31" />
4482
+ <hkern u1="&#xa1;" u2="&#xdd;" k="31" />
4483
+ <hkern u1="&#xa1;" u2="Y" k="31" />
4484
+ <hkern u1="&#xa1;" u2="&#x1e80;" k="30" />
4485
+ <hkern u1="&#xa1;" u2="&#x1e84;" k="30" />
4486
+ <hkern u1="&#xa1;" u2="&#x174;" k="30" />
4487
+ <hkern u1="&#xa1;" u2="&#x1e82;" k="30" />
4488
+ <hkern u1="&#xa1;" u2="W" k="30" />
4489
+ <hkern u1="&#xa1;" u2="V" k="31" />
4490
+ <hkern u1="&#xa1;" u2="&#x21a;" k="47" />
4491
+ <hkern u1="&#xa1;" u2="&#x162;" k="47" />
4492
+ <hkern u1="&#xa1;" u2="&#x164;" k="47" />
4493
+ <hkern u1="&#xa1;" u2="T" k="47" />
4494
+ <hkern u1="&#x3f;" u2="&#x40;" k="57" />
4495
+ <hkern u1="&#x3f;" g2="quotedblbase.ss01" k="41" />
4496
+ <hkern u1="&#x3f;" g2="quotesinglbase.ss01" k="41" />
4497
+ <hkern u1="&#x3f;" u2="&#x201e;" k="40" />
4498
+ <hkern u1="&#x3f;" u2="&#x201a;" k="40" />
4499
+ <hkern u1="&#x3f;" u2="_" k="90" />
4500
+ <hkern u1="&#x3f;" u2="&#x29;" k="54" />
4501
+ <hkern u1="&#x3f;" g2="comma.ss01" k="41" />
4502
+ <hkern u1="&#x3f;" u2="&#x2f;" k="71" />
4503
+ <hkern u1="&#x3f;" u2="&#xbf;" k="110" />
4504
+ <hkern u1="&#x3f;" u2="&#x2026;" k="91" />
4505
+ <hkern u1="&#x3f;" u2="&#x2c;" k="70" />
4506
+ <hkern u1="&#x3f;" u2="&#x2e;" k="91" />
4507
+ <hkern u1="&#x3f;" u2="&#x129;" k="-41" />
4508
+ <hkern u1="&#x3f;" u2="&#x12b;" k="-60" />
4509
+ <hkern u1="&#x3f;" u2="&#xec;" k="-40" />
4510
+ <hkern u1="&#x3f;" u2="&#x12d;" k="-31" />
4511
+ <hkern u1="&#x3f;" u2="X" k="20" />
4512
+ <hkern u1="&#x3f;" u2="J" k="49" />
4513
+ <hkern u1="&#x3f;" u2="&#x1fc;" k="99" />
4514
+ <hkern u1="&#x3f;" u2="&#xc6;" k="99" />
4515
+ <hkern u1="&#x3f;" u2="&#xc3;" k="70" />
4516
+ <hkern u1="&#x3f;" u2="&#xc5;" k="70" />
4517
+ <hkern u1="&#x3f;" u2="&#x104;" k="70" />
4518
+ <hkern u1="&#x3f;" u2="&#x100;" k="70" />
4519
+ <hkern u1="&#x3f;" u2="&#xc0;" k="70" />
4520
+ <hkern u1="&#x3f;" u2="&#xc4;" k="70" />
4521
+ <hkern u1="&#x3f;" u2="&#xc2;" k="70" />
4522
+ <hkern u1="&#x3f;" u2="&#x102;" k="70" />
4523
+ <hkern u1="&#x3f;" u2="&#xc1;" k="70" />
4524
+ <hkern u1="&#x3f;" u2="A" k="70" />
4525
+ <hkern u1="&#xbf;" u2="&#x2030;" k="24" />
4526
+ <hkern u1="&#xbf;" u2="&#x25;" k="24" />
4527
+ <hkern u1="&#xbf;" u2="&#x201e;" k="-39" />
4528
+ <hkern u1="&#xbf;" u2="&#x201a;" k="-39" />
4529
+ <hkern u1="&#xbf;" u2="\" k="31" />
4530
+ <hkern u1="&#xbf;" u2="&#x3f;" k="39" />
4531
+ <hkern u1="&#xbf;" g2="nine.ss04" k="59" />
4532
+ <hkern u1="&#xbf;" u2="&#x39;" k="26" />
4533
+ <hkern u1="&#xbf;" u2="&#x37;" k="26" />
4534
+ <hkern u1="&#xbf;" u2="&#x36;" k="39" />
4535
+ <hkern u1="&#xbf;" g2="aeacute.ss02" k="20" />
4536
+ <hkern u1="&#xbf;" g2="ae.ss02" k="20" />
4537
+ <hkern u1="&#xbf;" g2="atilde.ss02" k="20" />
4538
+ <hkern u1="&#xbf;" g2="aring.ss02" k="20" />
4539
+ <hkern u1="&#xbf;" g2="aogonek.ss02" k="20" />
4540
+ <hkern u1="&#xbf;" g2="amacron.ss02" k="20" />
4541
+ <hkern u1="&#xbf;" g2="agrave.ss02" k="20" />
4542
+ <hkern u1="&#xbf;" g2="adieresis.ss02" k="20" />
4543
+ <hkern u1="&#xbf;" g2="acircumflex.ss02" k="20" />
4544
+ <hkern u1="&#xbf;" g2="abreve.ss02" k="20" />
4545
+ <hkern u1="&#xbf;" g2="aacute.ss02" k="20" />
4546
+ <hkern u1="&#xbf;" g2="a.ss02" k="20" />
4547
+ <hkern u1="&#xbf;" u2="&#x17c;" k="-20" />
4548
+ <hkern u1="&#xbf;" u2="&#x17e;" k="-20" />
4549
+ <hkern u1="&#xbf;" u2="&#x17a;" k="-20" />
4550
+ <hkern u1="&#xbf;" u2="z" k="-20" />
4551
+ <hkern u1="&#xbf;" u2="v" k="26" />
4552
+ <hkern u1="&#xbf;" u2="q" k="20" />
4553
+ <hkern u1="&#xbf;" u2="&#x153;" k="20" />
4554
+ <hkern u1="&#xbf;" u2="&#xf5;" k="20" />
4555
+ <hkern u1="&#xbf;" u2="&#x14d;" k="20" />
4556
+ <hkern u1="&#xbf;" u2="&#x151;" k="20" />
4557
+ <hkern u1="&#xbf;" u2="&#xf2;" k="20" />
4558
+ <hkern u1="&#xbf;" u2="&#xf6;" k="20" />
4559
+ <hkern u1="&#xbf;" u2="&#xf4;" k="20" />
4560
+ <hkern u1="&#xbf;" u2="&#x14f;" k="20" />
4561
+ <hkern u1="&#xbf;" u2="&#xf3;" k="20" />
4562
+ <hkern u1="&#xbf;" u2="o" k="20" />
4563
+ <hkern u1="&#xbf;" u2="&#x259;" k="20" />
4564
+ <hkern u1="&#xbf;" u2="&#x1ebd;" k="20" />
4565
+ <hkern u1="&#xbf;" u2="&#x119;" k="20" />
4566
+ <hkern u1="&#xbf;" u2="&#x113;" k="20" />
4567
+ <hkern u1="&#xbf;" u2="&#xe8;" k="20" />
4568
+ <hkern u1="&#xbf;" u2="&#x117;" k="20" />
4569
+ <hkern u1="&#xbf;" u2="&#xeb;" k="20" />
4570
+ <hkern u1="&#xbf;" u2="&#xea;" k="20" />
4571
+ <hkern u1="&#xbf;" u2="&#x11b;" k="20" />
4572
+ <hkern u1="&#xbf;" u2="&#x115;" k="20" />
4573
+ <hkern u1="&#xbf;" u2="&#xe9;" k="20" />
4574
+ <hkern u1="&#xbf;" u2="e" k="20" />
4575
+ <hkern u1="&#xbf;" u2="&#x111;" k="20" />
4576
+ <hkern u1="&#xbf;" u2="&#x10f;" k="20" />
4577
+ <hkern u1="&#xbf;" u2="&#xf0;" k="20" />
4578
+ <hkern u1="&#xbf;" u2="d" k="20" />
4579
+ <hkern u1="&#xbf;" u2="&#x10b;" k="20" />
4580
+ <hkern u1="&#xbf;" u2="&#xe7;" k="20" />
4581
+ <hkern u1="&#xbf;" u2="&#x10d;" k="20" />
4582
+ <hkern u1="&#xbf;" u2="&#x107;" k="20" />
4583
+ <hkern u1="&#xbf;" u2="c" k="20" />
4584
+ <hkern u1="&#xbf;" u2="&#x1ef8;" k="59" />
4585
+ <hkern u1="&#xbf;" u2="&#x1ef2;" k="59" />
4586
+ <hkern u1="&#xbf;" u2="&#x178;" k="59" />
4587
+ <hkern u1="&#xbf;" u2="&#x176;" k="59" />
4588
+ <hkern u1="&#xbf;" u2="&#xdd;" k="59" />
4589
+ <hkern u1="&#xbf;" u2="Y" k="59" />
4590
+ <hkern u1="&#xbf;" u2="&#x21a;" k="59" />
4591
+ <hkern u1="&#xbf;" u2="&#x162;" k="59" />
4592
+ <hkern u1="&#xbf;" u2="&#x164;" k="59" />
4593
+ <hkern u1="&#xbf;" u2="T" k="59" />
4594
+ <hkern u1="&#x2a;" u2="&#x26;" k="41" />
4595
+ <hkern u1="&#x2a;" u2="&#x40;" k="51" />
4596
+ <hkern u1="&#x2a;" u2="_" k="96" />
4597
+ <hkern u1="&#x2a;" u2="&#x2f;" k="104" />
4598
+ <hkern u1="&#x2a;" u2="&#xbf;" k="90" />
4599
+ <hkern u1="&#x2a;" u2="&#x21;" k="6" />
4600
+ <hkern u1="&#x2a;" g2="six.ss04" k="46" />
4601
+ <hkern u1="&#x2a;" g2="three.ss04" k="69" />
4602
+ <hkern u1="&#x2a;" u2="&#x38;" k="30" />
4603
+ <hkern u1="&#x2a;" u2="&#x36;" k="31" />
4604
+ <hkern u1="&#x2a;" u2="&#x35;" k="33" />
4605
+ <hkern u1="&#x2a;" u2="&#x34;" k="100" />
4606
+ <hkern u1="&#x2a;" g2="aeacute.ss02" k="23" />
4607
+ <hkern u1="&#x2a;" g2="ae.ss02" k="23" />
4608
+ <hkern u1="&#x2a;" g2="atilde.ss02" k="23" />
4609
+ <hkern u1="&#x2a;" g2="aring.ss02" k="23" />
4610
+ <hkern u1="&#x2a;" g2="aogonek.ss02" k="23" />
4611
+ <hkern u1="&#x2a;" g2="amacron.ss02" k="23" />
4612
+ <hkern u1="&#x2a;" g2="agrave.ss02" k="23" />
4613
+ <hkern u1="&#x2a;" g2="adieresis.ss02" k="23" />
4614
+ <hkern u1="&#x2a;" g2="acircumflex.ss02" k="23" />
4615
+ <hkern u1="&#x2a;" g2="abreve.ss02" k="23" />
4616
+ <hkern u1="&#x2a;" g2="aacute.ss02" k="23" />
4617
+ <hkern u1="&#x2a;" g2="a.ss02" k="23" />
4618
+ <hkern u1="&#x2a;" u2="&#x219;" k="29" />
4619
+ <hkern u1="&#x2a;" u2="&#x15f;" k="29" />
4620
+ <hkern u1="&#x2a;" u2="&#x161;" k="29" />
4621
+ <hkern u1="&#x2a;" u2="&#x15b;" k="29" />
4622
+ <hkern u1="&#x2a;" u2="s" k="29" />
4623
+ <hkern u1="&#x2a;" u2="q" k="23" />
4624
+ <hkern u1="&#x2a;" u2="&#x153;" k="23" />
4625
+ <hkern u1="&#x2a;" u2="&#xf5;" k="23" />
4626
+ <hkern u1="&#x2a;" u2="&#x14d;" k="23" />
4627
+ <hkern u1="&#x2a;" u2="&#x151;" k="23" />
4628
+ <hkern u1="&#x2a;" u2="&#xf2;" k="23" />
4629
+ <hkern u1="&#x2a;" u2="&#xf6;" k="23" />
4630
+ <hkern u1="&#x2a;" u2="&#xf4;" k="23" />
4631
+ <hkern u1="&#x2a;" u2="&#x14f;" k="23" />
4632
+ <hkern u1="&#x2a;" u2="&#xf3;" k="23" />
4633
+ <hkern u1="&#x2a;" u2="o" k="23" />
4634
+ <hkern u1="&#x2a;" u2="&#x129;" k="-6" />
4635
+ <hkern u1="&#x2a;" u2="&#x12b;" k="-77" />
4636
+ <hkern u1="&#x2a;" u2="&#x259;" k="23" />
4637
+ <hkern u1="&#x2a;" u2="&#x1ebd;" k="23" />
4638
+ <hkern u1="&#x2a;" u2="&#x119;" k="23" />
4639
+ <hkern u1="&#x2a;" u2="&#x113;" k="23" />
4640
+ <hkern u1="&#x2a;" u2="&#xe8;" k="23" />
4641
+ <hkern u1="&#x2a;" u2="&#x117;" k="23" />
4642
+ <hkern u1="&#x2a;" u2="&#xeb;" k="23" />
4643
+ <hkern u1="&#x2a;" u2="&#xea;" k="23" />
4644
+ <hkern u1="&#x2a;" u2="&#x11b;" k="23" />
4645
+ <hkern u1="&#x2a;" u2="&#x115;" k="23" />
4646
+ <hkern u1="&#x2a;" u2="&#xe9;" k="23" />
4647
+ <hkern u1="&#x2a;" u2="e" k="23" />
4648
+ <hkern u1="&#x2a;" u2="&#x111;" k="23" />
4649
+ <hkern u1="&#x2a;" u2="&#x10f;" k="23" />
4650
+ <hkern u1="&#x2a;" u2="&#xf0;" k="23" />
4651
+ <hkern u1="&#x2a;" u2="d" k="23" />
4652
+ <hkern u1="&#x2a;" u2="&#x10b;" k="23" />
4653
+ <hkern u1="&#x2a;" u2="&#xe7;" k="23" />
4654
+ <hkern u1="&#x2a;" u2="&#x10d;" k="23" />
4655
+ <hkern u1="&#x2a;" u2="&#x107;" k="23" />
4656
+ <hkern u1="&#x2a;" u2="c" k="23" />
4657
+ <hkern u1="&#x2a;" u2="&#x1fd;" k="14" />
4658
+ <hkern u1="&#x2a;" u2="&#xe6;" k="14" />
4659
+ <hkern u1="&#x2a;" u2="&#xe3;" k="14" />
4660
+ <hkern u1="&#x2a;" u2="&#xe5;" k="14" />
4661
+ <hkern u1="&#x2a;" u2="&#x105;" k="14" />
4662
+ <hkern u1="&#x2a;" u2="&#x101;" k="14" />
4663
+ <hkern u1="&#x2a;" u2="&#xe0;" k="14" />
4664
+ <hkern u1="&#x2a;" u2="&#xe4;" k="14" />
4665
+ <hkern u1="&#x2a;" u2="&#xe2;" k="14" />
4666
+ <hkern u1="&#x2a;" u2="&#x103;" k="14" />
4667
+ <hkern u1="&#x2a;" u2="&#xe1;" k="14" />
4668
+ <hkern u1="&#x2a;" u2="a" k="14" />
4669
+ <hkern u1="&#x2a;" u2="J" k="69" />
4670
+ <hkern u1="&#x2a;" u2="&#x1fc;" k="113" />
4671
+ <hkern u1="&#x2a;" u2="&#xc6;" k="113" />
4672
+ <hkern u1="&#x2a;" u2="&#xc3;" k="91" />
4673
+ <hkern u1="&#x2a;" u2="&#xc5;" k="91" />
4674
+ <hkern u1="&#x2a;" u2="&#x104;" k="91" />
4675
+ <hkern u1="&#x2a;" u2="&#x100;" k="91" />
4676
+ <hkern u1="&#x2a;" u2="&#xc0;" k="91" />
4677
+ <hkern u1="&#x2a;" u2="&#xc4;" k="91" />
4678
+ <hkern u1="&#x2a;" u2="&#xc2;" k="91" />
4679
+ <hkern u1="&#x2a;" u2="&#x102;" k="91" />
4680
+ <hkern u1="&#x2a;" u2="&#xc1;" k="91" />
4681
+ <hkern u1="&#x2a;" u2="A" k="91" />
4682
+ <hkern u1="&#x2f;" u2="&#xa6;" k="-57" />
4683
+ <hkern u1="&#x2f;" u2="&#x7c;" k="-57" />
4684
+ <hkern u1="&#x2f;" u2="&#x26;" k="50" />
4685
+ <hkern u1="&#x2f;" u2="&#x40;" k="96" />
4686
+ <hkern u1="&#x2f;" u2="&#x2212;" k="64" />
4687
+ <hkern u1="&#x2f;" u2="&#x2b;" k="57" />
4688
+ <hkern u1="&#x2f;" u2="&#x20a8;" k="-57" />
4689
+ <hkern u1="&#x2f;" g2="quotedblbase.ss01" k="97" />
4690
+ <hkern u1="&#x2f;" g2="quotesinglbase.ss01" k="97" />
4691
+ <hkern u1="&#x2f;" u2="&#x201e;" k="89" />
4692
+ <hkern u1="&#x2f;" u2="&#x201a;" k="89" />
4693
+ <hkern u1="&#x2f;" u2="_" k="149" />
4694
+ <hkern u1="&#x2f;" u2="&#x2014;" k="64" />
4695
+ <hkern u1="&#x2f;" u2="&#x2013;" k="64" />
4696
+ <hkern u1="&#x2f;" u2="&#xad;" k="64" />
4697
+ <hkern u1="&#x2f;" u2="&#x2d;" k="64" />
4698
+ <hkern u1="&#x2f;" g2="comma.ss01" k="97" />
4699
+ <hkern u1="&#x2f;" u2="&#x2f;" k="120" />
4700
+ <hkern u1="&#x2f;" u2="&#x2a;" k="6" />
4701
+ <hkern u1="&#x2f;" u2="&#xbf;" k="61" />
4702
+ <hkern u1="&#x2f;" u2="&#x2026;" k="118" />
4703
+ <hkern u1="&#x2f;" u2="&#x2c;" k="60" />
4704
+ <hkern u1="&#x2f;" u2="&#x2e;" k="118" />
4705
+ <hkern u1="&#x2f;" g2="nine.ss04" k="29" />
4706
+ <hkern u1="&#x2f;" g2="six.ss04" k="52" />
4707
+ <hkern u1="&#x2f;" g2="three.ss04" k="26" />
4708
+ <hkern u1="&#x2f;" u2="&#x39;" k="39" />
4709
+ <hkern u1="&#x2f;" u2="&#x38;" k="34" />
4710
+ <hkern u1="&#x2f;" u2="&#x36;" k="29" />
4711
+ <hkern u1="&#x2f;" u2="&#x35;" k="30" />
4712
+ <hkern u1="&#x2f;" u2="&#x34;" k="69" />
4713
+ <hkern u1="&#x2f;" u2="&#x33;" k="39" />
4714
+ <hkern u1="&#x2f;" u2="&#x30;" k="20" />
4715
+ <hkern u1="&#x2f;" g2="gdotaccent.ss03" k="51" />
4716
+ <hkern u1="&#x2f;" g2="uni0123.ss03" k="51" />
4717
+ <hkern u1="&#x2f;" g2="gbreve.ss03" k="51" />
4718
+ <hkern u1="&#x2f;" g2="g.ss03" k="51" />
4719
+ <hkern u1="&#x2f;" g2="aeacute.ss02" k="47" />
4720
+ <hkern u1="&#x2f;" g2="ae.ss02" k="47" />
4721
+ <hkern u1="&#x2f;" g2="atilde.ss02" k="47" />
4722
+ <hkern u1="&#x2f;" g2="aring.ss02" k="47" />
4723
+ <hkern u1="&#x2f;" g2="aogonek.ss02" k="47" />
4724
+ <hkern u1="&#x2f;" g2="amacron.ss02" k="47" />
4725
+ <hkern u1="&#x2f;" g2="agrave.ss02" k="47" />
4726
+ <hkern u1="&#x2f;" g2="adieresis.ss02" k="47" />
4727
+ <hkern u1="&#x2f;" g2="acircumflex.ss02" k="47" />
4728
+ <hkern u1="&#x2f;" g2="abreve.ss02" k="47" />
4729
+ <hkern u1="&#x2f;" g2="aacute.ss02" k="47" />
4730
+ <hkern u1="&#x2f;" g2="a.ss02" k="47" />
4731
+ <hkern u1="&#x2f;" u2="&#x219;" k="30" />
4732
+ <hkern u1="&#x2f;" u2="&#x15f;" k="30" />
4733
+ <hkern u1="&#x2f;" u2="&#x161;" k="30" />
4734
+ <hkern u1="&#x2f;" u2="&#x15b;" k="30" />
4735
+ <hkern u1="&#x2f;" u2="s" k="30" />
4736
+ <hkern u1="&#x2f;" u2="&#x157;" k="18" />
4737
+ <hkern u1="&#x2f;" u2="&#x159;" k="18" />
4738
+ <hkern u1="&#x2f;" u2="&#x155;" k="18" />
4739
+ <hkern u1="&#x2f;" u2="r" k="18" />
4740
+ <hkern u1="&#x2f;" u2="q" k="47" />
4741
+ <hkern u1="&#x2f;" u2="&#x153;" k="47" />
4742
+ <hkern u1="&#x2f;" u2="&#xf5;" k="47" />
4743
+ <hkern u1="&#x2f;" u2="&#x14d;" k="47" />
4744
+ <hkern u1="&#x2f;" u2="&#x151;" k="47" />
4745
+ <hkern u1="&#x2f;" u2="&#xf2;" k="47" />
4746
+ <hkern u1="&#x2f;" u2="&#xf6;" k="47" />
4747
+ <hkern u1="&#x2f;" u2="&#xf4;" k="47" />
4748
+ <hkern u1="&#x2f;" u2="&#x14f;" k="47" />
4749
+ <hkern u1="&#x2f;" u2="&#xf3;" k="47" />
4750
+ <hkern u1="&#x2f;" u2="o" k="47" />
4751
+ <hkern u1="&#x2f;" u2="&#xf1;" k="18" />
4752
+ <hkern u1="&#x2f;" u2="&#x146;" k="18" />
4753
+ <hkern u1="&#x2f;" u2="&#x148;" k="18" />
4754
+ <hkern u1="&#x2f;" u2="&#x144;" k="18" />
4755
+ <hkern u1="&#x2f;" u2="n" k="18" />
4756
+ <hkern u1="&#x2f;" u2="m" k="18" />
4757
+ <hkern u1="&#x2f;" u2="&#x12f;" k="18" />
4758
+ <hkern u1="&#x2f;" u2="&#x12b;" k="-73" />
4759
+ <hkern u1="&#x2f;" u2="&#xec;" k="-70" />
4760
+ <hkern u1="&#x2f;" u2="&#xef;" k="-33" />
4761
+ <hkern u1="&#x2f;" u2="&#xee;" k="-40" />
4762
+ <hkern u1="&#x2f;" u2="&#x12d;" k="-40" />
4763
+ <hkern u1="&#x2f;" u2="&#xed;" k="18" />
4764
+ <hkern u1="&#x2f;" u2="&#x131;" k="18" />
4765
+ <hkern u1="&#x2f;" u2="&#x121;" k="33" />
4766
+ <hkern u1="&#x2f;" u2="&#x123;" k="33" />
4767
+ <hkern u1="&#x2f;" u2="&#x11f;" k="33" />
4768
+ <hkern u1="&#x2f;" u2="g" k="33" />
4769
+ <hkern u1="&#x2f;" u2="&#x259;" k="47" />
4770
+ <hkern u1="&#x2f;" u2="&#x1ebd;" k="47" />
4771
+ <hkern u1="&#x2f;" u2="&#x119;" k="47" />
4772
+ <hkern u1="&#x2f;" u2="&#x113;" k="47" />
4773
+ <hkern u1="&#x2f;" u2="&#xe8;" k="47" />
4774
+ <hkern u1="&#x2f;" u2="&#x117;" k="47" />
4775
+ <hkern u1="&#x2f;" u2="&#xeb;" k="47" />
4776
+ <hkern u1="&#x2f;" u2="&#xea;" k="47" />
4777
+ <hkern u1="&#x2f;" u2="&#x11b;" k="47" />
4778
+ <hkern u1="&#x2f;" u2="&#x115;" k="47" />
4779
+ <hkern u1="&#x2f;" u2="&#xe9;" k="47" />
4780
+ <hkern u1="&#x2f;" u2="e" k="47" />
4781
+ <hkern u1="&#x2f;" u2="&#x111;" k="47" />
4782
+ <hkern u1="&#x2f;" u2="&#x10f;" k="47" />
4783
+ <hkern u1="&#x2f;" u2="&#xf0;" k="47" />
4784
+ <hkern u1="&#x2f;" u2="d" k="47" />
4785
+ <hkern u1="&#x2f;" u2="&#x10b;" k="47" />
4786
+ <hkern u1="&#x2f;" u2="&#xe7;" k="47" />
4787
+ <hkern u1="&#x2f;" u2="&#x10d;" k="47" />
4788
+ <hkern u1="&#x2f;" u2="&#x107;" k="47" />
4789
+ <hkern u1="&#x2f;" u2="c" k="47" />
4790
+ <hkern u1="&#x2f;" u2="&#x1fd;" k="51" />
4791
+ <hkern u1="&#x2f;" u2="&#xe6;" k="51" />
4792
+ <hkern u1="&#x2f;" u2="&#xe3;" k="51" />
4793
+ <hkern u1="&#x2f;" u2="&#xe5;" k="51" />
4794
+ <hkern u1="&#x2f;" u2="&#x105;" k="51" />
4795
+ <hkern u1="&#x2f;" u2="&#x101;" k="51" />
4796
+ <hkern u1="&#x2f;" u2="&#xe0;" k="51" />
4797
+ <hkern u1="&#x2f;" u2="&#xe4;" k="51" />
4798
+ <hkern u1="&#x2f;" u2="&#xe2;" k="51" />
4799
+ <hkern u1="&#x2f;" u2="&#x103;" k="51" />
4800
+ <hkern u1="&#x2f;" u2="&#xe1;" k="51" />
4801
+ <hkern u1="&#x2f;" u2="a" k="51" />
4802
+ <hkern u1="&#x2f;" u2="&#x1ef8;" k="-21" />
4803
+ <hkern u1="&#x2f;" u2="&#x1ef2;" k="-21" />
4804
+ <hkern u1="&#x2f;" u2="&#x178;" k="-21" />
4805
+ <hkern u1="&#x2f;" u2="&#x176;" k="-21" />
4806
+ <hkern u1="&#x2f;" u2="&#xdd;" k="-21" />
4807
+ <hkern u1="&#x2f;" u2="Y" k="-21" />
4808
+ <hkern u1="&#x2f;" u2="&#x1e80;" k="-3" />
4809
+ <hkern u1="&#x2f;" u2="&#x1e84;" k="-3" />
4810
+ <hkern u1="&#x2f;" u2="&#x174;" k="-3" />
4811
+ <hkern u1="&#x2f;" u2="&#x1e82;" k="-3" />
4812
+ <hkern u1="&#x2f;" u2="W" k="-3" />
4813
+ <hkern u1="&#x2f;" u2="V" k="-30" />
4814
+ <hkern u1="&#x2f;" u2="&#x21a;" k="-20" />
4815
+ <hkern u1="&#x2f;" u2="&#x162;" k="-20" />
4816
+ <hkern u1="&#x2f;" u2="&#x164;" k="-20" />
4817
+ <hkern u1="&#x2f;" u2="T" k="-20" />
4818
+ <hkern u1="&#x2f;" u2="&#x156;" k="-57" />
4819
+ <hkern u1="&#x2f;" u2="&#x158;" k="-57" />
4820
+ <hkern u1="&#x2f;" u2="&#x154;" k="-57" />
4821
+ <hkern u1="&#x2f;" u2="R" k="-57" />
4822
+ <hkern u1="&#x2f;" u2="Q" k="30" />
4823
+ <hkern u1="&#x2f;" u2="&#xde;" k="-57" />
4824
+ <hkern u1="&#x2f;" u2="P" k="-57" />
4825
+ <hkern u1="&#x2f;" u2="&#x152;" k="30" />
4826
+ <hkern u1="&#x2f;" u2="&#xd5;" k="30" />
4827
+ <hkern u1="&#x2f;" u2="&#xd8;" k="30" />
4828
+ <hkern u1="&#x2f;" u2="&#x14c;" k="30" />
4829
+ <hkern u1="&#x2f;" u2="&#x150;" k="30" />
4830
+ <hkern u1="&#x2f;" u2="&#xd2;" k="30" />
4831
+ <hkern u1="&#x2f;" u2="&#xd6;" k="30" />
4832
+ <hkern u1="&#x2f;" u2="&#xd4;" k="30" />
4833
+ <hkern u1="&#x2f;" u2="&#x14e;" k="30" />
4834
+ <hkern u1="&#x2f;" u2="&#xd3;" k="30" />
4835
+ <hkern u1="&#x2f;" u2="O" k="30" />
4836
+ <hkern u1="&#x2f;" u2="&#xd1;" k="-57" />
4837
+ <hkern u1="&#x2f;" u2="&#x145;" k="-57" />
4838
+ <hkern u1="&#x2f;" u2="&#x147;" k="-57" />
4839
+ <hkern u1="&#x2f;" u2="&#x143;" k="-57" />
4840
+ <hkern u1="&#x2f;" u2="N" k="-57" />
4841
+ <hkern u1="&#x2f;" u2="M" k="-57" />
4842
+ <hkern u1="&#x2f;" u2="&#x13f;" k="-57" />
4843
+ <hkern u1="&#x2f;" u2="&#x13b;" k="-57" />
4844
+ <hkern u1="&#x2f;" u2="&#x13d;" k="-57" />
4845
+ <hkern u1="&#x2f;" u2="&#x139;" k="-57" />
4846
+ <hkern u1="&#x2f;" u2="L" k="-57" />
4847
+ <hkern u1="&#x2f;" u2="&#x136;" k="-57" />
4848
+ <hkern u1="&#x2f;" u2="K" k="-57" />
4849
+ <hkern u1="&#x2f;" u2="J" k="40" />
4850
+ <hkern u1="&#x2f;" u2="&#x128;" k="-57" />
4851
+ <hkern u1="&#x2f;" u2="&#x12a;" k="-63" />
4852
+ <hkern u1="&#x2f;" u2="&#xcc;" k="-57" />
4853
+ <hkern u1="&#x2f;" u2="&#x130;" k="-57" />
4854
+ <hkern u1="&#x2f;" u2="&#xcf;" k="-43" />
4855
+ <hkern u1="&#x2f;" u2="&#xce;" k="-60" />
4856
+ <hkern u1="&#x2f;" u2="&#x12c;" k="-57" />
4857
+ <hkern u1="&#x2f;" u2="&#xcd;" k="-57" />
4858
+ <hkern u1="&#x2f;" u2="I" k="-57" />
4859
+ <hkern u1="&#x2f;" u2="H" k="-57" />
4860
+ <hkern u1="&#x2f;" u2="&#x120;" k="30" />
4861
+ <hkern u1="&#x2f;" u2="&#x122;" k="30" />
4862
+ <hkern u1="&#x2f;" u2="&#x11e;" k="30" />
4863
+ <hkern u1="&#x2f;" u2="G" k="30" />
4864
+ <hkern u1="&#x2f;" u2="F" k="-57" />
4865
+ <hkern u1="&#x2f;" u2="&#x1ebc;" k="-57" />
4866
+ <hkern u1="&#x2f;" u2="&#x118;" k="-57" />
4867
+ <hkern u1="&#x2f;" u2="&#x112;" k="-57" />
4868
+ <hkern u1="&#x2f;" u2="&#xc8;" k="-57" />
4869
+ <hkern u1="&#x2f;" u2="&#x116;" k="-57" />
4870
+ <hkern u1="&#x2f;" u2="&#xcb;" k="-57" />
4871
+ <hkern u1="&#x2f;" u2="&#xca;" k="-57" />
4872
+ <hkern u1="&#x2f;" u2="&#x11a;" k="-57" />
4873
+ <hkern u1="&#x2f;" u2="&#x114;" k="-57" />
4874
+ <hkern u1="&#x2f;" u2="&#xc9;" k="-57" />
4875
+ <hkern u1="&#x2f;" u2="E" k="-57" />
4876
+ <hkern u1="&#x2f;" u2="&#x10e;" k="-57" />
4877
+ <hkern u1="&#x2f;" u2="D" k="-57" />
4878
+ <hkern u1="&#x2f;" u2="&#x10a;" k="30" />
4879
+ <hkern u1="&#x2f;" u2="&#xc7;" k="30" />
4880
+ <hkern u1="&#x2f;" u2="&#x10c;" k="30" />
4881
+ <hkern u1="&#x2f;" u2="&#x106;" k="30" />
4882
+ <hkern u1="&#x2f;" u2="C" k="30" />
4883
+ <hkern u1="&#x2f;" u2="B" k="-57" />
4884
+ <hkern u1="\" u2="&#x2212;" k="30" />
4885
+ <hkern u1="\" g2="quoteright.ss01" k="70" />
4886
+ <hkern u1="\" g2="quoteleft.ss01" k="70" />
4887
+ <hkern u1="\" g2="quotedblright.ss01" k="70" />
4888
+ <hkern u1="\" g2="quotedblleft.ss01" k="70" />
4889
+ <hkern u1="\" u2="&#x27;" k="91" />
4890
+ <hkern u1="\" u2="&#x22;" k="91" />
4891
+ <hkern u1="\" u2="&#x2019;" k="70" />
4892
+ <hkern u1="\" u2="&#x2018;" k="77" />
4893
+ <hkern u1="\" u2="&#x201d;" k="70" />
4894
+ <hkern u1="\" u2="&#x201c;" k="77" />
4895
+ <hkern u1="\" u2="&#x201e;" k="-47" />
4896
+ <hkern u1="\" u2="&#x201a;" k="-47" />
4897
+ <hkern u1="\" u2="_" k="-41" />
4898
+ <hkern u1="\" u2="&#x2014;" k="30" />
4899
+ <hkern u1="\" u2="&#x2013;" k="30" />
4900
+ <hkern u1="\" u2="&#xad;" k="30" />
4901
+ <hkern u1="\" u2="&#x2d;" k="30" />
4902
+ <hkern u1="\" u2="\" k="137" />
4903
+ <hkern u1="\" u2="&#x3f;" k="30" />
4904
+ <hkern u1="\" u2="&#x2c;" k="-57" />
4905
+ <hkern u1="\" g2="nine.ss04" k="67" />
4906
+ <hkern u1="\" g2="six.ss04" k="3" />
4907
+ <hkern u1="\" u2="&#x39;" k="30" />
4908
+ <hkern u1="\" u2="&#x38;" k="39" />
4909
+ <hkern u1="\" u2="&#x37;" k="26" />
4910
+ <hkern u1="\" u2="&#x36;" k="31" />
4911
+ <hkern u1="\" u2="&#x30;" k="29" />
4912
+ <hkern u1="\" g2="aeacute.ss02" k="14" />
4913
+ <hkern u1="\" g2="ae.ss02" k="14" />
4914
+ <hkern u1="\" g2="atilde.ss02" k="14" />
4915
+ <hkern u1="\" g2="aring.ss02" k="14" />
4916
+ <hkern u1="\" g2="aogonek.ss02" k="14" />
4917
+ <hkern u1="\" g2="amacron.ss02" k="14" />
4918
+ <hkern u1="\" g2="agrave.ss02" k="14" />
4919
+ <hkern u1="\" g2="adieresis.ss02" k="14" />
4920
+ <hkern u1="\" g2="acircumflex.ss02" k="14" />
4921
+ <hkern u1="\" g2="abreve.ss02" k="14" />
4922
+ <hkern u1="\" g2="aacute.ss02" k="14" />
4923
+ <hkern u1="\" g2="a.ss02" k="14" />
4924
+ <hkern u1="\" u2="q" k="14" />
4925
+ <hkern u1="\" u2="&#x153;" k="14" />
4926
+ <hkern u1="\" u2="&#xf5;" k="14" />
4927
+ <hkern u1="\" u2="&#x14d;" k="14" />
4928
+ <hkern u1="\" u2="&#x151;" k="14" />
4929
+ <hkern u1="\" u2="&#xf2;" k="14" />
4930
+ <hkern u1="\" u2="&#xf6;" k="14" />
4931
+ <hkern u1="\" u2="&#xf4;" k="14" />
4932
+ <hkern u1="\" u2="&#x14f;" k="14" />
4933
+ <hkern u1="\" u2="&#xf3;" k="14" />
4934
+ <hkern u1="\" u2="o" k="14" />
4935
+ <hkern u1="\" u2="&#x259;" k="14" />
4936
+ <hkern u1="\" u2="&#x1ebd;" k="14" />
4937
+ <hkern u1="\" u2="&#x119;" k="14" />
4938
+ <hkern u1="\" u2="&#x113;" k="14" />
4939
+ <hkern u1="\" u2="&#xe8;" k="14" />
4940
+ <hkern u1="\" u2="&#x117;" k="14" />
4941
+ <hkern u1="\" u2="&#xeb;" k="14" />
4942
+ <hkern u1="\" u2="&#xea;" k="14" />
4943
+ <hkern u1="\" u2="&#x11b;" k="14" />
4944
+ <hkern u1="\" u2="&#x115;" k="14" />
4945
+ <hkern u1="\" u2="&#xe9;" k="14" />
4946
+ <hkern u1="\" u2="e" k="14" />
4947
+ <hkern u1="\" u2="&#x111;" k="14" />
4948
+ <hkern u1="\" u2="&#x10f;" k="14" />
4949
+ <hkern u1="\" u2="&#xf0;" k="14" />
4950
+ <hkern u1="\" u2="d" k="14" />
4951
+ <hkern u1="\" u2="&#x10b;" k="14" />
4952
+ <hkern u1="\" u2="&#xe7;" k="14" />
4953
+ <hkern u1="\" u2="&#x10d;" k="14" />
4954
+ <hkern u1="\" u2="&#x107;" k="14" />
4955
+ <hkern u1="\" u2="c" k="14" />
4956
+ <hkern u1="\" u2="&#x1ef8;" k="70" />
4957
+ <hkern u1="\" u2="&#x1ef2;" k="70" />
4958
+ <hkern u1="\" u2="&#x178;" k="70" />
4959
+ <hkern u1="\" u2="&#x176;" k="70" />
4960
+ <hkern u1="\" u2="&#xdd;" k="70" />
4961
+ <hkern u1="\" u2="Y" k="70" />
4962
+ <hkern u1="\" u2="&#x1e80;" k="57" />
4963
+ <hkern u1="\" u2="&#x1e84;" k="57" />
4964
+ <hkern u1="\" u2="&#x174;" k="57" />
4965
+ <hkern u1="\" u2="&#x1e82;" k="57" />
4966
+ <hkern u1="\" u2="W" k="57" />
4967
+ <hkern u1="\" u2="V" k="60" />
4968
+ <hkern u1="\" u2="&#x21a;" k="7" />
4969
+ <hkern u1="\" u2="&#x162;" k="7" />
4970
+ <hkern u1="\" u2="&#x164;" k="7" />
4971
+ <hkern u1="\" u2="T" k="7" />
4972
+ <hkern u1="\" u2="Q" k="17" />
4973
+ <hkern u1="\" u2="&#x152;" k="17" />
4974
+ <hkern u1="\" u2="&#xd5;" k="17" />
4975
+ <hkern u1="\" u2="&#x14c;" k="17" />
4976
+ <hkern u1="\" u2="&#x150;" k="17" />
4977
+ <hkern u1="\" u2="&#xd2;" k="17" />
4978
+ <hkern u1="\" u2="&#xd6;" k="17" />
4979
+ <hkern u1="\" u2="&#xd4;" k="17" />
4980
+ <hkern u1="\" u2="&#x14e;" k="17" />
4981
+ <hkern u1="\" u2="&#xd3;" k="17" />
4982
+ <hkern u1="\" u2="O" k="17" />
4983
+ <hkern u1="\" u2="&#x120;" k="17" />
4984
+ <hkern u1="\" u2="&#x122;" k="17" />
4985
+ <hkern u1="\" u2="&#x11e;" k="17" />
4986
+ <hkern u1="\" u2="G" k="17" />
4987
+ <hkern u1="\" u2="&#x10a;" k="17" />
4988
+ <hkern u1="\" u2="&#xc7;" k="17" />
4989
+ <hkern u1="\" u2="&#x10c;" k="17" />
4990
+ <hkern u1="\" u2="&#x106;" k="17" />
4991
+ <hkern u1="\" u2="C" k="17" />
4992
+ <hkern g1="comma.ss01" u2="\" k="71" />
4993
+ <hkern g1="comma.ss01" u2="&#x3f;" k="30" />
4994
+ <hkern g1="comma.ss01" g2="nine.ss04" k="57" />
4995
+ <hkern g1="comma.ss01" u2="&#x37;" k="43" />
4996
+ <hkern g1="comma.ss01" u2="&#x31;" k="40" />
4997
+ <hkern g1="comma.ss01" u2="v" k="40" />
4998
+ <hkern u1="&#x28;" u2="&#x26;" k="40" />
4999
+ <hkern u1="&#x28;" u2="&#x40;" k="39" />
5000
+ <hkern u1="&#x28;" g2="nine.ss04" k="51" />
5001
+ <hkern u1="&#x28;" g2="six.ss04" k="40" />
5002
+ <hkern u1="&#x28;" u2="&#x39;" k="31" />
5003
+ <hkern u1="&#x28;" u2="&#x38;" k="41" />
5004
+ <hkern u1="&#x28;" u2="&#x36;" k="30" />
5005
+ <hkern u1="&#x28;" u2="&#x34;" k="39" />
5006
+ <hkern u1="&#x28;" u2="&#x30;" k="39" />
5007
+ <hkern u1="&#x28;" g2="aeacute.ss02" k="41" />
5008
+ <hkern u1="&#x28;" g2="ae.ss02" k="41" />
5009
+ <hkern u1="&#x28;" g2="atilde.ss02" k="41" />
5010
+ <hkern u1="&#x28;" g2="aring.ss02" k="41" />
5011
+ <hkern u1="&#x28;" g2="aogonek.ss02" k="41" />
5012
+ <hkern u1="&#x28;" g2="amacron.ss02" k="41" />
5013
+ <hkern u1="&#x28;" g2="agrave.ss02" k="41" />
5014
+ <hkern u1="&#x28;" g2="adieresis.ss02" k="41" />
5015
+ <hkern u1="&#x28;" g2="acircumflex.ss02" k="41" />
5016
+ <hkern u1="&#x28;" g2="abreve.ss02" k="41" />
5017
+ <hkern u1="&#x28;" g2="aacute.ss02" k="41" />
5018
+ <hkern u1="&#x28;" g2="a.ss02" k="41" />
5019
+ <hkern u1="&#x28;" u2="&#x21b;" k="17" />
5020
+ <hkern u1="&#x28;" u2="&#x163;" k="17" />
5021
+ <hkern u1="&#x28;" u2="&#x165;" k="17" />
5022
+ <hkern u1="&#x28;" u2="t" k="17" />
5023
+ <hkern u1="&#x28;" u2="&#x219;" k="20" />
5024
+ <hkern u1="&#x28;" u2="&#x15f;" k="20" />
5025
+ <hkern u1="&#x28;" u2="&#x161;" k="20" />
5026
+ <hkern u1="&#x28;" u2="&#x15b;" k="20" />
5027
+ <hkern u1="&#x28;" u2="s" k="20" />
5028
+ <hkern u1="&#x28;" u2="q" k="41" />
5029
+ <hkern u1="&#x28;" u2="&#x153;" k="41" />
5030
+ <hkern u1="&#x28;" u2="&#xf5;" k="41" />
5031
+ <hkern u1="&#x28;" u2="&#x14d;" k="41" />
5032
+ <hkern u1="&#x28;" u2="&#x151;" k="41" />
5033
+ <hkern u1="&#x28;" u2="&#xf2;" k="41" />
5034
+ <hkern u1="&#x28;" u2="&#xf6;" k="41" />
5035
+ <hkern u1="&#x28;" u2="&#xf4;" k="41" />
5036
+ <hkern u1="&#x28;" u2="&#x14f;" k="41" />
5037
+ <hkern u1="&#x28;" u2="&#xf3;" k="41" />
5038
+ <hkern u1="&#x28;" u2="o" k="41" />
5039
+ <hkern u1="&#x28;" u2="&#x259;" k="41" />
5040
+ <hkern u1="&#x28;" u2="&#x1ebd;" k="41" />
5041
+ <hkern u1="&#x28;" u2="&#x119;" k="41" />
5042
+ <hkern u1="&#x28;" u2="&#x113;" k="41" />
5043
+ <hkern u1="&#x28;" u2="&#xe8;" k="41" />
5044
+ <hkern u1="&#x28;" u2="&#x117;" k="41" />
5045
+ <hkern u1="&#x28;" u2="&#xeb;" k="41" />
5046
+ <hkern u1="&#x28;" u2="&#xea;" k="41" />
5047
+ <hkern u1="&#x28;" u2="&#x11b;" k="41" />
5048
+ <hkern u1="&#x28;" u2="&#x115;" k="41" />
5049
+ <hkern u1="&#x28;" u2="&#xe9;" k="41" />
5050
+ <hkern u1="&#x28;" u2="e" k="41" />
5051
+ <hkern u1="&#x28;" u2="&#x111;" k="41" />
5052
+ <hkern u1="&#x28;" u2="&#x10f;" k="41" />
5053
+ <hkern u1="&#x28;" u2="&#xf0;" k="41" />
5054
+ <hkern u1="&#x28;" u2="d" k="41" />
5055
+ <hkern u1="&#x28;" u2="&#x10b;" k="41" />
5056
+ <hkern u1="&#x28;" u2="&#xe7;" k="41" />
5057
+ <hkern u1="&#x28;" u2="&#x10d;" k="41" />
5058
+ <hkern u1="&#x28;" u2="&#x107;" k="41" />
5059
+ <hkern u1="&#x28;" u2="c" k="41" />
5060
+ <hkern u1="&#x28;" u2="&#x1fd;" k="41" />
5061
+ <hkern u1="&#x28;" u2="&#xe6;" k="41" />
5062
+ <hkern u1="&#x28;" u2="&#xe3;" k="41" />
5063
+ <hkern u1="&#x28;" u2="&#xe5;" k="41" />
5064
+ <hkern u1="&#x28;" u2="&#x105;" k="41" />
5065
+ <hkern u1="&#x28;" u2="&#x101;" k="41" />
5066
+ <hkern u1="&#x28;" u2="&#xe0;" k="41" />
5067
+ <hkern u1="&#x28;" u2="&#xe4;" k="41" />
5068
+ <hkern u1="&#x28;" u2="&#xe2;" k="41" />
5069
+ <hkern u1="&#x28;" u2="&#x103;" k="41" />
5070
+ <hkern u1="&#x28;" u2="&#xe1;" k="41" />
5071
+ <hkern u1="&#x28;" u2="a" k="41" />
5072
+ <hkern u1="&#x28;" u2="Q" k="67" />
5073
+ <hkern u1="&#x28;" u2="&#x152;" k="67" />
5074
+ <hkern u1="&#x28;" u2="&#xd5;" k="67" />
5075
+ <hkern u1="&#x28;" u2="&#x14c;" k="67" />
5076
+ <hkern u1="&#x28;" u2="&#x150;" k="67" />
5077
+ <hkern u1="&#x28;" u2="&#xd2;" k="67" />
5078
+ <hkern u1="&#x28;" u2="&#xd6;" k="67" />
5079
+ <hkern u1="&#x28;" u2="&#xd4;" k="67" />
5080
+ <hkern u1="&#x28;" u2="&#x14e;" k="67" />
5081
+ <hkern u1="&#x28;" u2="&#xd3;" k="67" />
5082
+ <hkern u1="&#x28;" u2="O" k="67" />
5083
+ <hkern u1="&#x28;" u2="&#x120;" k="67" />
5084
+ <hkern u1="&#x28;" u2="&#x122;" k="67" />
5085
+ <hkern u1="&#x28;" u2="&#x11e;" k="67" />
5086
+ <hkern u1="&#x28;" u2="G" k="67" />
5087
+ <hkern u1="&#x28;" u2="&#x10a;" k="67" />
5088
+ <hkern u1="&#x28;" u2="&#xc7;" k="67" />
5089
+ <hkern u1="&#x28;" u2="&#x10c;" k="67" />
5090
+ <hkern u1="&#x28;" u2="&#x106;" k="67" />
5091
+ <hkern u1="&#x28;" u2="C" k="67" />
5092
+ <hkern u1="&#x28;" u2="&#xc3;" k="34" />
5093
+ <hkern u1="&#x28;" u2="&#xc5;" k="34" />
5094
+ <hkern u1="&#x28;" u2="&#x104;" k="34" />
5095
+ <hkern u1="&#x28;" u2="&#x100;" k="34" />
5096
+ <hkern u1="&#x28;" u2="&#xc0;" k="34" />
5097
+ <hkern u1="&#x28;" u2="&#xc4;" k="34" />
5098
+ <hkern u1="&#x28;" u2="&#xc2;" k="34" />
5099
+ <hkern u1="&#x28;" u2="&#x102;" k="34" />
5100
+ <hkern u1="&#x28;" u2="&#xc1;" k="34" />
5101
+ <hkern u1="&#x28;" u2="A" k="34" />
5102
+ <hkern u1="&#x7b;" g2="aeacute.ss02" k="50" />
5103
+ <hkern u1="&#x7b;" g2="ae.ss02" k="50" />
5104
+ <hkern u1="&#x7b;" g2="atilde.ss02" k="50" />
5105
+ <hkern u1="&#x7b;" g2="aring.ss02" k="50" />
5106
+ <hkern u1="&#x7b;" g2="aogonek.ss02" k="50" />
5107
+ <hkern u1="&#x7b;" g2="amacron.ss02" k="50" />
5108
+ <hkern u1="&#x7b;" g2="agrave.ss02" k="50" />
5109
+ <hkern u1="&#x7b;" g2="adieresis.ss02" k="50" />
5110
+ <hkern u1="&#x7b;" g2="acircumflex.ss02" k="50" />
5111
+ <hkern u1="&#x7b;" g2="abreve.ss02" k="50" />
5112
+ <hkern u1="&#x7b;" g2="aacute.ss02" k="50" />
5113
+ <hkern u1="&#x7b;" g2="a.ss02" k="50" />
5114
+ <hkern u1="&#x7b;" u2="q" k="50" />
5115
+ <hkern u1="&#x7b;" u2="&#x153;" k="50" />
5116
+ <hkern u1="&#x7b;" u2="&#xf5;" k="50" />
5117
+ <hkern u1="&#x7b;" u2="&#x14d;" k="50" />
5118
+ <hkern u1="&#x7b;" u2="&#x151;" k="50" />
5119
+ <hkern u1="&#x7b;" u2="&#xf2;" k="50" />
5120
+ <hkern u1="&#x7b;" u2="&#xf6;" k="50" />
5121
+ <hkern u1="&#x7b;" u2="&#xf4;" k="50" />
5122
+ <hkern u1="&#x7b;" u2="&#x14f;" k="50" />
5123
+ <hkern u1="&#x7b;" u2="&#xf3;" k="50" />
5124
+ <hkern u1="&#x7b;" u2="o" k="50" />
5125
+ <hkern u1="&#x7b;" u2="&#x259;" k="50" />
5126
+ <hkern u1="&#x7b;" u2="&#x1ebd;" k="50" />
5127
+ <hkern u1="&#x7b;" u2="&#x119;" k="50" />
5128
+ <hkern u1="&#x7b;" u2="&#x113;" k="50" />
5129
+ <hkern u1="&#x7b;" u2="&#xe8;" k="50" />
5130
+ <hkern u1="&#x7b;" u2="&#x117;" k="50" />
5131
+ <hkern u1="&#x7b;" u2="&#xeb;" k="50" />
5132
+ <hkern u1="&#x7b;" u2="&#xea;" k="50" />
5133
+ <hkern u1="&#x7b;" u2="&#x11b;" k="50" />
5134
+ <hkern u1="&#x7b;" u2="&#x115;" k="50" />
5135
+ <hkern u1="&#x7b;" u2="&#xe9;" k="50" />
5136
+ <hkern u1="&#x7b;" u2="e" k="50" />
5137
+ <hkern u1="&#x7b;" u2="&#x111;" k="50" />
5138
+ <hkern u1="&#x7b;" u2="&#x10f;" k="50" />
5139
+ <hkern u1="&#x7b;" u2="&#xf0;" k="50" />
5140
+ <hkern u1="&#x7b;" u2="d" k="50" />
5141
+ <hkern u1="&#x7b;" u2="&#x10b;" k="50" />
5142
+ <hkern u1="&#x7b;" u2="&#xe7;" k="50" />
5143
+ <hkern u1="&#x7b;" u2="&#x10d;" k="50" />
5144
+ <hkern u1="&#x7b;" u2="&#x107;" k="50" />
5145
+ <hkern u1="&#x7b;" u2="c" k="50" />
5146
+ <hkern u1="&#x7b;" u2="Q" k="31" />
5147
+ <hkern u1="&#x7b;" u2="&#x152;" k="31" />
5148
+ <hkern u1="&#x7b;" u2="&#xd5;" k="31" />
5149
+ <hkern u1="&#x7b;" u2="&#x14c;" k="31" />
5150
+ <hkern u1="&#x7b;" u2="&#x150;" k="31" />
5151
+ <hkern u1="&#x7b;" u2="&#xd2;" k="31" />
5152
+ <hkern u1="&#x7b;" u2="&#xd6;" k="31" />
5153
+ <hkern u1="&#x7b;" u2="&#xd4;" k="31" />
5154
+ <hkern u1="&#x7b;" u2="&#x14e;" k="31" />
5155
+ <hkern u1="&#x7b;" u2="&#xd3;" k="31" />
5156
+ <hkern u1="&#x7b;" u2="O" k="31" />
5157
+ <hkern u1="&#x7b;" u2="&#x120;" k="31" />
5158
+ <hkern u1="&#x7b;" u2="&#x122;" k="31" />
5159
+ <hkern u1="&#x7b;" u2="&#x11e;" k="31" />
5160
+ <hkern u1="&#x7b;" u2="G" k="31" />
5161
+ <hkern u1="&#x7b;" u2="&#x10a;" k="31" />
5162
+ <hkern u1="&#x7b;" u2="&#xc7;" k="31" />
5163
+ <hkern u1="&#x7b;" u2="&#x10c;" k="31" />
5164
+ <hkern u1="&#x7b;" u2="&#x106;" k="31" />
5165
+ <hkern u1="&#x7b;" u2="C" k="31" />
5166
+ <hkern u1="&#x7d;" u2="&#x2026;" k="50" />
5167
+ <hkern u1="&#x7d;" u2="&#x2c;" k="31" />
5168
+ <hkern u1="&#x7d;" u2="&#x2e;" k="50" />
5169
+ <hkern u1="&#x7d;" u2="&#x1ef8;" k="50" />
5170
+ <hkern u1="&#x7d;" u2="&#x1ef2;" k="50" />
5171
+ <hkern u1="&#x7d;" u2="&#x178;" k="50" />
5172
+ <hkern u1="&#x7d;" u2="&#x176;" k="50" />
5173
+ <hkern u1="&#x7d;" u2="&#xdd;" k="50" />
5174
+ <hkern u1="&#x7d;" u2="Y" k="50" />
5175
+ <hkern u1="&#x7d;" u2="&#x1e80;" k="30" />
5176
+ <hkern u1="&#x7d;" u2="&#x1e84;" k="30" />
5177
+ <hkern u1="&#x7d;" u2="&#x174;" k="30" />
5178
+ <hkern u1="&#x7d;" u2="&#x1e82;" k="30" />
5179
+ <hkern u1="&#x7d;" u2="W" k="30" />
5180
+ <hkern u1="&#x7d;" u2="&#x21a;" k="30" />
5181
+ <hkern u1="&#x7d;" u2="&#x162;" k="30" />
5182
+ <hkern u1="&#x7d;" u2="&#x164;" k="30" />
5183
+ <hkern u1="&#x7d;" u2="T" k="30" />
5184
+ <hkern u1="&#x7d;" u2="&#x1fc;" k="67" />
5185
+ <hkern u1="&#x7d;" u2="&#xc6;" k="67" />
5186
+ <hkern u1="&#x7d;" u2="&#xc3;" k="57" />
5187
+ <hkern u1="&#x7d;" u2="&#xc5;" k="57" />
5188
+ <hkern u1="&#x7d;" u2="&#x104;" k="57" />
5189
+ <hkern u1="&#x7d;" u2="&#x100;" k="57" />
5190
+ <hkern u1="&#x7d;" u2="&#xc0;" k="57" />
5191
+ <hkern u1="&#x7d;" u2="&#xc4;" k="57" />
5192
+ <hkern u1="&#x7d;" u2="&#xc2;" k="57" />
5193
+ <hkern u1="&#x7d;" u2="&#x102;" k="57" />
5194
+ <hkern u1="&#x7d;" u2="&#xc1;" k="57" />
5195
+ <hkern u1="&#x7d;" u2="A" k="57" />
5196
+ <hkern u1="[" u2="&#x12b;" k="-8" />
5197
+ <hkern u1="]" u2="&#x129;" k="-23" />
5198
+ <hkern u1="]" u2="&#x12b;" k="-60" />
5199
+ <hkern u1="&#x2d;" u2="\" k="49" />
5200
+ <hkern u1="&#x2d;" u2="&#x2f;" k="49" />
5201
+ <hkern u1="&#x2d;" u2="&#x37;" k="59" />
5202
+ <hkern u1="&#xad;" u2="\" k="49" />
5203
+ <hkern u1="&#xad;" u2="&#x2f;" k="49" />
5204
+ <hkern u1="&#xad;" u2="&#x37;" k="59" />
5205
+ <hkern u1="&#x2013;" u2="\" k="49" />
5206
+ <hkern u1="&#x2013;" u2="&#x2f;" k="49" />
5207
+ <hkern u1="&#x2013;" u2="&#x37;" k="59" />
5208
+ <hkern u1="&#x2014;" u2="\" k="49" />
5209
+ <hkern u1="&#x2014;" u2="&#x2f;" k="49" />
5210
+ <hkern u1="&#x2014;" u2="&#x37;" k="59" />
5211
+ <hkern u1="_" u2="&#x26;" k="40" />
5212
+ <hkern u1="_" u2="\" k="166" />
5213
+ <hkern u1="_" u2="&#x2a;" k="96" />
5214
+ <hkern u1="_" u2="&#x3f;" k="49" />
5215
+ <hkern u1="_" g2="nine.ss04" k="117" />
5216
+ <hkern u1="_" g2="six.ss04" k="41" />
5217
+ <hkern u1="_" g2="three.ss04" k="49" />
5218
+ <hkern u1="_" u2="&#x39;" k="70" />
5219
+ <hkern u1="_" u2="&#x38;" k="43" />
5220
+ <hkern u1="_" u2="&#x37;" k="34" />
5221
+ <hkern u1="_" u2="&#x36;" k="79" />
5222
+ <hkern u1="_" u2="&#x35;" k="43" />
5223
+ <hkern u1="_" u2="&#x34;" k="51" />
5224
+ <hkern u1="_" u2="&#x31;" k="51" />
5225
+ <hkern u1="_" u2="&#x30;" k="60" />
5226
+ <hkern u1="_" u2="j" k="-8" />
5227
+ <hkern u1="_" u2="&#x1ef8;" k="70" />
5228
+ <hkern u1="_" u2="&#x1ef2;" k="70" />
5229
+ <hkern u1="_" u2="&#x178;" k="70" />
5230
+ <hkern u1="_" u2="&#x176;" k="70" />
5231
+ <hkern u1="_" u2="&#xdd;" k="70" />
5232
+ <hkern u1="_" u2="Y" k="70" />
5233
+ <hkern u1="_" u2="&#x1e80;" k="70" />
5234
+ <hkern u1="_" u2="&#x1e84;" k="70" />
5235
+ <hkern u1="_" u2="&#x174;" k="70" />
5236
+ <hkern u1="_" u2="&#x1e82;" k="70" />
5237
+ <hkern u1="_" u2="W" k="70" />
5238
+ <hkern u1="_" u2="V" k="99" />
5239
+ <hkern u1="_" u2="&#x168;" k="40" />
5240
+ <hkern u1="_" u2="&#x16e;" k="40" />
5241
+ <hkern u1="_" u2="&#x172;" k="40" />
5242
+ <hkern u1="_" u2="&#x16a;" k="40" />
5243
+ <hkern u1="_" u2="&#x170;" k="40" />
5244
+ <hkern u1="_" u2="&#xd9;" k="40" />
5245
+ <hkern u1="_" u2="&#xdc;" k="40" />
5246
+ <hkern u1="_" u2="&#xdb;" k="40" />
5247
+ <hkern u1="_" u2="&#x16c;" k="40" />
5248
+ <hkern u1="_" u2="&#xda;" k="40" />
5249
+ <hkern u1="_" u2="U" k="40" />
5250
+ <hkern u1="_" u2="&#x21a;" k="60" />
5251
+ <hkern u1="_" u2="&#x162;" k="60" />
5252
+ <hkern u1="_" u2="&#x164;" k="60" />
5253
+ <hkern u1="_" u2="T" k="60" />
5254
+ <hkern u1="_" u2="Q" k="43" />
5255
+ <hkern u1="_" u2="&#x152;" k="43" />
5256
+ <hkern u1="_" u2="&#xd5;" k="43" />
5257
+ <hkern u1="_" u2="&#x14c;" k="43" />
5258
+ <hkern u1="_" u2="&#x150;" k="43" />
5259
+ <hkern u1="_" u2="&#xd2;" k="43" />
5260
+ <hkern u1="_" u2="&#xd6;" k="43" />
5261
+ <hkern u1="_" u2="&#xd4;" k="43" />
5262
+ <hkern u1="_" u2="&#x14e;" k="43" />
5263
+ <hkern u1="_" u2="&#xd3;" k="43" />
5264
+ <hkern u1="_" u2="O" k="43" />
5265
+ <hkern u1="_" u2="&#x120;" k="43" />
5266
+ <hkern u1="_" u2="&#x122;" k="43" />
5267
+ <hkern u1="_" u2="&#x11e;" k="43" />
5268
+ <hkern u1="_" u2="G" k="43" />
5269
+ <hkern u1="_" u2="&#x10a;" k="43" />
5270
+ <hkern u1="_" u2="&#xc7;" k="43" />
5271
+ <hkern u1="_" u2="&#x10c;" k="43" />
5272
+ <hkern u1="_" u2="&#x106;" k="43" />
5273
+ <hkern u1="_" u2="C" k="43" />
5274
+ <hkern u1="&#x201a;" u2="\" k="81" />
5275
+ <hkern u1="&#x201a;" u2="&#x3f;" k="3" />
5276
+ <hkern u1="&#x201e;" u2="\" k="81" />
5277
+ <hkern u1="&#x201e;" u2="&#x3f;" k="3" />
5278
+ <hkern u1="&#x201c;" u2="&#x40;" k="89" />
5279
+ <hkern u1="&#x201c;" u2="&#x2f;" k="100" />
5280
+ <hkern u1="&#x201c;" u2="&#xbf;" k="81" />
5281
+ <hkern u1="&#x201c;" g2="six.ss04" k="59" />
5282
+ <hkern u1="&#x201c;" u2="&#x38;" k="17" />
5283
+ <hkern u1="&#x201c;" u2="&#x35;" k="31" />
5284
+ <hkern u1="&#x201c;" u2="&#x34;" k="70" />
5285
+ <hkern u1="&#x201c;" u2="&#x129;" k="-21" />
5286
+ <hkern u1="&#x201c;" u2="&#x12b;" k="-69" />
5287
+ <hkern u1="&#x201c;" u2="&#x12d;" k="-26" />
5288
+ <hkern u1="&#x201c;" u2="J" k="80" />
5289
+ <hkern u1="&#x201d;" u2="&#x26;" k="51" />
5290
+ <hkern u1="&#x201d;" u2="&#x40;" k="100" />
5291
+ <hkern u1="&#x201d;" u2="&#x2f;" k="119" />
5292
+ <hkern u1="&#x201d;" g2="six.ss04" k="63" />
5293
+ <hkern u1="&#x201d;" u2="&#x38;" k="40" />
5294
+ <hkern u1="&#x201d;" u2="&#x35;" k="41" />
5295
+ <hkern u1="&#x201d;" u2="&#x34;" k="36" />
5296
+ <hkern u1="&#x201d;" u2="&#x129;" k="-29" />
5297
+ <hkern u1="&#x201d;" u2="&#x12b;" k="-57" />
5298
+ <hkern u1="&#x201d;" u2="&#x12d;" k="-37" />
5299
+ <hkern u1="&#x201d;" u2="J" k="66" />
5300
+ <hkern u1="&#x2018;" u2="&#x40;" k="89" />
5301
+ <hkern u1="&#x2018;" u2="&#x2f;" k="100" />
5302
+ <hkern u1="&#x2018;" u2="&#xbf;" k="81" />
5303
+ <hkern u1="&#x2018;" g2="six.ss04" k="59" />
5304
+ <hkern u1="&#x2018;" u2="&#x38;" k="17" />
5305
+ <hkern u1="&#x2018;" u2="&#x35;" k="31" />
5306
+ <hkern u1="&#x2018;" u2="&#x34;" k="70" />
5307
+ <hkern u1="&#x2018;" u2="&#x129;" k="-21" />
5308
+ <hkern u1="&#x2018;" u2="&#x12b;" k="-69" />
5309
+ <hkern u1="&#x2018;" u2="&#x12d;" k="-26" />
5310
+ <hkern u1="&#x2018;" u2="J" k="80" />
5311
+ <hkern u1="&#x2019;" u2="&#x26;" k="51" />
5312
+ <hkern u1="&#x2019;" u2="&#x40;" k="100" />
5313
+ <hkern u1="&#x2019;" u2="&#x2f;" k="119" />
5314
+ <hkern u1="&#x2019;" g2="six.ss04" k="63" />
5315
+ <hkern u1="&#x2019;" u2="&#x38;" k="40" />
5316
+ <hkern u1="&#x2019;" u2="&#x35;" k="41" />
5317
+ <hkern u1="&#x2019;" u2="&#x34;" k="36" />
5318
+ <hkern u1="&#x2019;" u2="&#x129;" k="-29" />
5319
+ <hkern u1="&#x2019;" u2="&#x12b;" k="-57" />
5320
+ <hkern u1="&#x2019;" u2="&#x12d;" k="-37" />
5321
+ <hkern u1="&#x2019;" u2="J" k="66" />
5322
+ <hkern u1="&#xab;" u2="&#x37;" k="39" />
5323
+ <hkern u1="&#x2039;" u2="&#x37;" k="39" />
5324
+ <hkern u1="&#x22;" u2="&#x40;" k="80" />
5325
+ <hkern u1="&#x22;" g2="six.ss04" k="43" />
5326
+ <hkern u1="&#x22;" u2="&#x37;" k="-30" />
5327
+ <hkern u1="&#x22;" u2="&#x35;" k="30" />
5328
+ <hkern u1="&#x22;" u2="&#x34;" k="53" />
5329
+ <hkern u1="&#x22;" u2="&#x129;" k="-61" />
5330
+ <hkern u1="&#x22;" u2="&#x12b;" k="-100" />
5331
+ <hkern u1="&#x22;" u2="J" k="70" />
5332
+ <hkern u1="&#x27;" u2="&#x40;" k="80" />
5333
+ <hkern u1="&#x27;" g2="six.ss04" k="43" />
5334
+ <hkern u1="&#x27;" u2="&#x37;" k="-30" />
5335
+ <hkern u1="&#x27;" u2="&#x35;" k="30" />
5336
+ <hkern u1="&#x27;" u2="&#x34;" k="53" />
5337
+ <hkern u1="&#x27;" u2="&#x129;" k="-61" />
5338
+ <hkern u1="&#x27;" u2="&#x12b;" k="-100" />
5339
+ <hkern u1="&#x27;" u2="J" k="70" />
5340
+ <hkern g1="quotesinglbase.ss01" u2="\" k="71" />
5341
+ <hkern g1="quotesinglbase.ss01" u2="&#x3f;" k="30" />
5342
+ <hkern g1="quotesinglbase.ss01" g2="nine.ss04" k="57" />
5343
+ <hkern g1="quotesinglbase.ss01" u2="&#x37;" k="43" />
5344
+ <hkern g1="quotesinglbase.ss01" u2="&#x31;" k="40" />
5345
+ <hkern g1="quotesinglbase.ss01" u2="v" k="40" />
5346
+ <hkern g1="quotedblbase.ss01" u2="\" k="71" />
5347
+ <hkern g1="quotedblbase.ss01" u2="&#x3f;" k="30" />
5348
+ <hkern g1="quotedblbase.ss01" g2="nine.ss04" k="57" />
5349
+ <hkern g1="quotedblbase.ss01" u2="&#x37;" k="43" />
5350
+ <hkern g1="quotedblbase.ss01" u2="&#x31;" k="40" />
5351
+ <hkern g1="quotedblbase.ss01" u2="v" k="40" />
5352
+ <hkern g1="quotedblleft.ss01" u2="&#x40;" k="70" />
5353
+ <hkern g1="quotedblleft.ss01" u2="&#x2f;" k="63" />
5354
+ <hkern g1="quotedblleft.ss01" u2="&#x34;" k="40" />
5355
+ <hkern g1="quotedblleft.ss01" u2="&#x129;" k="-60" />
5356
+ <hkern g1="quotedblleft.ss01" u2="&#x12b;" k="-100" />
5357
+ <hkern g1="quotedblleft.ss01" u2="J" k="80" />
5358
+ <hkern g1="quotedblright.ss01" u2="&#x129;" k="-60" />
5359
+ <hkern g1="quotedblright.ss01" u2="&#x12b;" k="-100" />
5360
+ <hkern g1="quoteleft.ss01" u2="&#x40;" k="70" />
5361
+ <hkern g1="quoteleft.ss01" u2="&#x2f;" k="63" />
5362
+ <hkern g1="quoteleft.ss01" u2="&#x34;" k="40" />
5363
+ <hkern g1="quoteleft.ss01" u2="&#x129;" k="-60" />
5364
+ <hkern g1="quoteleft.ss01" u2="&#x12b;" k="-100" />
5365
+ <hkern g1="quoteleft.ss01" u2="J" k="80" />
5366
+ <hkern g1="quoteright.ss01" u2="&#x129;" k="-60" />
5367
+ <hkern g1="quoteright.ss01" u2="&#x12b;" k="-100" />
5368
+ <hkern u1="&#x24;" u2="&#x129;" k="-20" />
5369
+ <hkern u1="&#x24;" u2="&#x12b;" k="-40" />
5370
+ <hkern u1="&#x20ac;" u2="&#x29;" k="30" />
5371
+ <hkern u1="&#x20ac;" u2="&#x129;" k="-30" />
5372
+ <hkern u1="&#x20ac;" u2="&#x12b;" k="-30" />
5373
+ <hkern u1="&#x20ac;" u2="X" k="20" />
5374
+ <hkern u1="&#x192;" g2="nine.ss04" k="-31" />
5375
+ <hkern u1="&#x192;" g2="six.ss04" k="26" />
5376
+ <hkern u1="&#x192;" g2="three.ss04" k="-4" />
5377
+ <hkern u1="&#x192;" u2="&#x38;" k="-4" />
5378
+ <hkern u1="&#x192;" u2="&#x37;" k="-41" />
5379
+ <hkern u1="&#x192;" u2="&#x36;" k="-3" />
5380
+ <hkern u1="&#x192;" u2="&#x33;" k="-4" />
5381
+ <hkern u1="&#x192;" u2="&#x32;" k="-4" />
5382
+ <hkern u1="&#x20bd;" g2="six.ss04" k="39" />
5383
+ <hkern u1="&#x20bd;" g2="three.ss04" k="43" />
5384
+ <hkern u1="&#x20bd;" u2="&#x34;" k="41" />
5385
+ <hkern u1="&#x20a8;" u2="&#x29;" k="3" />
5386
+ <hkern u1="&#x20a8;" u2="\" k="50" />
5387
+ <hkern u1="&#x20a8;" u2="&#x2a;" k="37" />
5388
+ <hkern u1="&#x20a8;" u2="&#x3f;" k="29" />
5389
+ <hkern u1="&#x20a8;" g2="nine.ss04" k="20" />
5390
+ <hkern u1="&#x20a8;" u2="&#x39;" k="20" />
5391
+ <hkern u1="&#x20a8;" u2="&#x37;" k="47" />
5392
+ <hkern u1="&#x20a8;" u2="&#x31;" k="17" />
5393
+ <hkern u1="&#x20a8;" u2="v" k="27" />
5394
+ <hkern u1="&#xa5;" u2="&#x37;" k="-21" />
5395
+ <hkern u1="&#x2b;" u2="&#x2f;" k="47" />
5396
+ <hkern u1="&#x2b;" g2="nine.ss04" k="17" />
5397
+ <hkern u1="&#x2b;" u2="&#x37;" k="52" />
5398
+ <hkern u1="&#x2b;" u2="&#x1ef8;" k="71" />
5399
+ <hkern u1="&#x2b;" u2="&#x1ef2;" k="71" />
5400
+ <hkern u1="&#x2b;" u2="&#x178;" k="71" />
5401
+ <hkern u1="&#x2b;" u2="&#x176;" k="71" />
5402
+ <hkern u1="&#x2b;" u2="&#xdd;" k="71" />
5403
+ <hkern u1="&#x2b;" u2="Y" k="71" />
5404
+ <hkern u1="&#x2b;" u2="&#x1e80;" k="57" />
5405
+ <hkern u1="&#x2b;" u2="&#x1e84;" k="57" />
5406
+ <hkern u1="&#x2b;" u2="&#x174;" k="57" />
5407
+ <hkern u1="&#x2b;" u2="&#x1e82;" k="57" />
5408
+ <hkern u1="&#x2b;" u2="W" k="57" />
5409
+ <hkern u1="&#x2b;" u2="V" k="57" />
5410
+ <hkern u1="&#x2b;" u2="&#x21a;" k="59" />
5411
+ <hkern u1="&#x2b;" u2="&#x162;" k="59" />
5412
+ <hkern u1="&#x2b;" u2="&#x164;" k="59" />
5413
+ <hkern u1="&#x2b;" u2="T" k="59" />
5414
+ <hkern u1="&#x2b;" u2="&#xc3;" k="37" />
5415
+ <hkern u1="&#x2b;" u2="&#xc5;" k="37" />
5416
+ <hkern u1="&#x2b;" u2="&#x104;" k="37" />
5417
+ <hkern u1="&#x2b;" u2="&#x100;" k="37" />
5418
+ <hkern u1="&#x2b;" u2="&#xc0;" k="37" />
5419
+ <hkern u1="&#x2b;" u2="&#xc4;" k="37" />
5420
+ <hkern u1="&#x2b;" u2="&#xc2;" k="37" />
5421
+ <hkern u1="&#x2b;" u2="&#x102;" k="37" />
5422
+ <hkern u1="&#x2b;" u2="&#xc1;" k="37" />
5423
+ <hkern u1="&#x2b;" u2="A" k="37" />
5424
+ <hkern u1="&#x2212;" u2="\" k="49" />
5425
+ <hkern u1="&#x2212;" u2="&#x2f;" k="49" />
5426
+ <hkern u1="&#x2212;" u2="&#x37;" k="59" />
5427
+ <hkern u1="&#xd7;" u2="&#x37;" k="34" />
5428
+ <hkern u1="&#xd7;" u2="&#x1ef9;" k="17" />
5429
+ <hkern u1="&#xd7;" u2="&#x1ef3;" k="17" />
5430
+ <hkern u1="&#xd7;" u2="&#xff;" k="17" />
5431
+ <hkern u1="&#xd7;" u2="&#x177;" k="17" />
5432
+ <hkern u1="&#xd7;" u2="&#xfd;" k="17" />
5433
+ <hkern u1="&#xd7;" u2="y" k="17" />
5434
+ <hkern u1="&#xd7;" u2="&#x1ef8;" k="60" />
5435
+ <hkern u1="&#xd7;" u2="&#x1ef2;" k="60" />
5436
+ <hkern u1="&#xd7;" u2="&#x178;" k="60" />
5437
+ <hkern u1="&#xd7;" u2="&#x176;" k="60" />
5438
+ <hkern u1="&#xd7;" u2="&#xdd;" k="60" />
5439
+ <hkern u1="&#xd7;" u2="Y" k="60" />
5440
+ <hkern u1="&#xd7;" u2="X" k="39" />
5441
+ <hkern u1="&#xd7;" u2="&#x1e80;" k="43" />
5442
+ <hkern u1="&#xd7;" u2="&#x1e84;" k="43" />
5443
+ <hkern u1="&#xd7;" u2="&#x174;" k="43" />
5444
+ <hkern u1="&#xd7;" u2="&#x1e82;" k="43" />
5445
+ <hkern u1="&#xd7;" u2="W" k="43" />
5446
+ <hkern u1="&#xd7;" u2="V" k="69" />
5447
+ <hkern u1="&#xd7;" u2="&#x21a;" k="60" />
5448
+ <hkern u1="&#xd7;" u2="&#x162;" k="60" />
5449
+ <hkern u1="&#xd7;" u2="&#x164;" k="60" />
5450
+ <hkern u1="&#xd7;" u2="T" k="60" />
5451
+ <hkern u1="&#xd7;" u2="&#x1fc;" k="52" />
5452
+ <hkern u1="&#xd7;" u2="&#xc6;" k="52" />
5453
+ <hkern u1="&#xd7;" u2="&#xc3;" k="21" />
5454
+ <hkern u1="&#xd7;" u2="&#xc5;" k="21" />
5455
+ <hkern u1="&#xd7;" u2="&#x104;" k="21" />
5456
+ <hkern u1="&#xd7;" u2="&#x100;" k="21" />
5457
+ <hkern u1="&#xd7;" u2="&#xc0;" k="21" />
5458
+ <hkern u1="&#xd7;" u2="&#xc4;" k="21" />
5459
+ <hkern u1="&#xd7;" u2="&#xc2;" k="21" />
5460
+ <hkern u1="&#xd7;" u2="&#x102;" k="21" />
5461
+ <hkern u1="&#xd7;" u2="&#xc1;" k="21" />
5462
+ <hkern u1="&#xd7;" u2="A" k="21" />
5463
+ <hkern u1="&#xf7;" u2="&#x37;" k="34" />
5464
+ <hkern u1="&#xf7;" u2="&#x31;" k="26" />
5465
+ <hkern u1="&#x3e;" u2="&#x40;" k="67" />
5466
+ <hkern u1="&#x3e;" u2="&#x29;" k="59" />
5467
+ <hkern u1="&#x3e;" u2="&#x2026;" k="60" />
5468
+ <hkern u1="&#x3e;" u2="&#x2e;" k="60" />
5469
+ <hkern u1="&#x3e;" g2="nine.ss04" k="17" />
5470
+ <hkern u1="&#x3e;" g2="three.ss04" k="6" />
5471
+ <hkern u1="&#x3e;" u2="&#x37;" k="40" />
5472
+ <hkern u1="&#x3c;" u2="&#x40;" k="40" />
5473
+ <hkern u1="&#x3c;" u2="&#x29;" k="40" />
5474
+ <hkern u1="&#x3c;" g2="nine.ss04" k="30" />
5475
+ <hkern u1="&#x3c;" g2="three.ss04" k="4" />
5476
+ <hkern u1="&#x221a;" u2="&#x34;" k="147" />
5477
+ <hkern u1="&#x40;" u2="&#x2030;" k="40" />
5478
+ <hkern u1="&#x40;" u2="&#x25;" k="40" />
5479
+ <hkern u1="&#x40;" u2="&#x3c;" k="30" />
5480
+ <hkern u1="&#x40;" u2="&#x3e;" k="49" />
5481
+ <hkern u1="&#x40;" u2="&#x27;" k="49" />
5482
+ <hkern u1="&#x40;" u2="&#x22;" k="49" />
5483
+ <hkern u1="&#x40;" u2="_" k="60" />
5484
+ <hkern u1="&#x40;" u2="&#x29;" k="69" />
5485
+ <hkern u1="&#x40;" u2="\" k="50" />
5486
+ <hkern u1="&#x40;" u2="&#x2f;" k="50" />
5487
+ <hkern u1="&#x40;" u2="&#x2a;" k="33" />
5488
+ <hkern u1="&#x40;" u2="&#x3f;" k="30" />
5489
+ <hkern u1="&#x40;" u2="&#x2026;" k="30" />
5490
+ <hkern u1="&#x40;" u2="&#x2c;" k="33" />
5491
+ <hkern u1="&#x40;" u2="&#x2e;" k="30" />
5492
+ <hkern u1="&#x40;" g2="nine.ss04" k="20" />
5493
+ <hkern u1="&#x40;" g2="three.ss04" k="20" />
5494
+ <hkern u1="&#x40;" u2="&#x38;" k="26" />
5495
+ <hkern u1="&#x40;" u2="&#x37;" k="64" />
5496
+ <hkern u1="&#x40;" u2="&#x34;" k="17" />
5497
+ <hkern u1="&#x40;" u2="&#x33;" k="20" />
5498
+ <hkern u1="&#x40;" u2="&#x32;" k="37" />
5499
+ <hkern u1="&#x40;" u2="&#x31;" k="1" />
5500
+ <hkern u1="&#x40;" u2="&#x1ef9;" k="20" />
5501
+ <hkern u1="&#x40;" u2="&#x1ef3;" k="20" />
5502
+ <hkern u1="&#x40;" u2="&#xff;" k="20" />
5503
+ <hkern u1="&#x40;" u2="&#x177;" k="20" />
5504
+ <hkern u1="&#x40;" u2="&#xfd;" k="20" />
5505
+ <hkern u1="&#x40;" u2="y" k="20" />
5506
+ <hkern u1="&#x40;" u2="&#x1e81;" k="17" />
5507
+ <hkern u1="&#x40;" u2="&#x1e85;" k="17" />
5508
+ <hkern u1="&#x40;" u2="&#x175;" k="17" />
5509
+ <hkern u1="&#x40;" u2="&#x1e83;" k="17" />
5510
+ <hkern u1="&#x40;" u2="w" k="17" />
5511
+ <hkern u1="&#x40;" u2="&#x1ef8;" k="89" />
5512
+ <hkern u1="&#x40;" u2="&#x1ef2;" k="89" />
5513
+ <hkern u1="&#x40;" u2="&#x178;" k="89" />
5514
+ <hkern u1="&#x40;" u2="&#x176;" k="89" />
5515
+ <hkern u1="&#x40;" u2="&#xdd;" k="89" />
5516
+ <hkern u1="&#x40;" u2="Y" k="89" />
5517
+ <hkern u1="&#x40;" u2="X" k="57" />
5518
+ <hkern u1="&#x40;" u2="&#x1e80;" k="41" />
5519
+ <hkern u1="&#x40;" u2="&#x1e84;" k="41" />
5520
+ <hkern u1="&#x40;" u2="&#x174;" k="41" />
5521
+ <hkern u1="&#x40;" u2="&#x1e82;" k="41" />
5522
+ <hkern u1="&#x40;" u2="W" k="41" />
5523
+ <hkern u1="&#x40;" u2="V" k="60" />
5524
+ <hkern u1="&#x40;" u2="&#x21a;" k="57" />
5525
+ <hkern u1="&#x40;" u2="&#x162;" k="57" />
5526
+ <hkern u1="&#x40;" u2="&#x164;" k="57" />
5527
+ <hkern u1="&#x40;" u2="T" k="57" />
5528
+ <hkern u1="&#x40;" u2="&#x1fc;" k="60" />
5529
+ <hkern u1="&#x40;" u2="&#xc6;" k="60" />
5530
+ <hkern u1="&#x40;" u2="&#xc3;" k="45" />
5531
+ <hkern u1="&#x40;" u2="&#xc5;" k="45" />
5532
+ <hkern u1="&#x40;" u2="&#x104;" k="45" />
5533
+ <hkern u1="&#x40;" u2="&#x100;" k="45" />
5534
+ <hkern u1="&#x40;" u2="&#xc0;" k="45" />
5535
+ <hkern u1="&#x40;" u2="&#xc4;" k="45" />
5536
+ <hkern u1="&#x40;" u2="&#xc2;" k="45" />
5537
+ <hkern u1="&#x40;" u2="&#x102;" k="45" />
5538
+ <hkern u1="&#x40;" u2="&#xc1;" k="45" />
5539
+ <hkern u1="&#x40;" u2="A" k="45" />
5540
+ <hkern u1="&#x26;" u2="&#x2030;" k="23" />
5541
+ <hkern u1="&#x26;" u2="&#x25;" k="23" />
5542
+ <hkern u1="&#x26;" g2="quoteright.ss01" k="8" />
5543
+ <hkern u1="&#x26;" g2="quotedblright.ss01" k="8" />
5544
+ <hkern u1="&#x26;" u2="&#x27;" k="46" />
5545
+ <hkern u1="&#x26;" u2="&#x22;" k="46" />
5546
+ <hkern u1="&#x26;" u2="&#x2019;" k="8" />
5547
+ <hkern u1="&#x26;" u2="&#x201d;" k="8" />
5548
+ <hkern u1="&#x26;" u2="\" k="43" />
5549
+ <hkern u1="&#x26;" u2="&#x2a;" k="38" />
5550
+ <hkern u1="&#x26;" u2="&#x3f;" k="40" />
5551
+ <hkern u1="&#x26;" g2="nine.ss04" k="4" />
5552
+ <hkern u1="&#x26;" g2="three.ss04" k="3" />
5553
+ <hkern u1="&#x26;" u2="&#x39;" k="20" />
5554
+ <hkern u1="&#x26;" u2="&#x37;" k="26" />
5555
+ <hkern u1="&#x26;" u2="&#x34;" k="4" />
5556
+ <hkern u1="&#x26;" u2="&#x1ef9;" k="3" />
5557
+ <hkern u1="&#x26;" u2="&#x1ef3;" k="3" />
5558
+ <hkern u1="&#x26;" u2="&#xff;" k="3" />
5559
+ <hkern u1="&#x26;" u2="&#x177;" k="3" />
5560
+ <hkern u1="&#x26;" u2="&#xfd;" k="3" />
5561
+ <hkern u1="&#x26;" u2="y" k="3" />
5562
+ <hkern u1="&#x26;" u2="&#x1e81;" k="3" />
5563
+ <hkern u1="&#x26;" u2="&#x1e85;" k="3" />
5564
+ <hkern u1="&#x26;" u2="&#x175;" k="3" />
5565
+ <hkern u1="&#x26;" u2="&#x1e83;" k="3" />
5566
+ <hkern u1="&#x26;" u2="w" k="3" />
5567
+ <hkern u1="&#x26;" u2="v" k="3" />
5568
+ <hkern u1="&#x26;" u2="&#x1ef8;" k="61" />
5569
+ <hkern u1="&#x26;" u2="&#x1ef2;" k="61" />
5570
+ <hkern u1="&#x26;" u2="&#x178;" k="61" />
5571
+ <hkern u1="&#x26;" u2="&#x176;" k="61" />
5572
+ <hkern u1="&#x26;" u2="&#xdd;" k="61" />
5573
+ <hkern u1="&#x26;" u2="Y" k="61" />
5574
+ <hkern u1="&#x26;" u2="&#x1e80;" k="31" />
5575
+ <hkern u1="&#x26;" u2="&#x1e84;" k="31" />
5576
+ <hkern u1="&#x26;" u2="&#x174;" k="31" />
5577
+ <hkern u1="&#x26;" u2="&#x1e82;" k="31" />
5578
+ <hkern u1="&#x26;" u2="W" k="31" />
5579
+ <hkern u1="&#x26;" u2="V" k="51" />
5580
+ <hkern u1="&#x26;" u2="&#x21a;" k="43" />
5581
+ <hkern u1="&#x26;" u2="&#x162;" k="43" />
5582
+ <hkern u1="&#x26;" u2="&#x164;" k="43" />
5583
+ <hkern u1="&#x26;" u2="T" k="43" />
5584
+ <hkern u1="&#x26;" u2="Q" k="3" />
5585
+ <hkern u1="&#x26;" u2="&#x152;" k="3" />
5586
+ <hkern u1="&#x26;" u2="&#xd5;" k="3" />
5587
+ <hkern u1="&#x26;" u2="&#x14c;" k="3" />
5588
+ <hkern u1="&#x26;" u2="&#x150;" k="3" />
5589
+ <hkern u1="&#x26;" u2="&#xd2;" k="3" />
5590
+ <hkern u1="&#x26;" u2="&#xd6;" k="3" />
5591
+ <hkern u1="&#x26;" u2="&#xd4;" k="3" />
5592
+ <hkern u1="&#x26;" u2="&#x14e;" k="3" />
5593
+ <hkern u1="&#x26;" u2="&#xd3;" k="3" />
5594
+ <hkern u1="&#x26;" u2="O" k="3" />
5595
+ <hkern u1="&#x26;" u2="&#x120;" k="3" />
5596
+ <hkern u1="&#x26;" u2="&#x122;" k="3" />
5597
+ <hkern u1="&#x26;" u2="&#x11e;" k="3" />
5598
+ <hkern u1="&#x26;" u2="G" k="3" />
5599
+ <hkern u1="&#x26;" u2="&#x10a;" k="3" />
5600
+ <hkern u1="&#x26;" u2="&#xc7;" k="3" />
5601
+ <hkern u1="&#x26;" u2="&#x10c;" k="3" />
5602
+ <hkern u1="&#x26;" u2="&#x106;" k="3" />
5603
+ <hkern u1="&#x26;" u2="C" k="3" />
5604
+ <hkern u1="&#x7c;" u2="&#x129;" k="-4" />
5605
+ <hkern u1="&#x7c;" u2="&#x12b;" k="-40" />
5606
+ <hkern u1="&#xa6;" u2="&#x129;" k="-4" />
5607
+ <hkern u1="&#xa6;" u2="&#x12b;" k="-40" />
5608
+ <hkern g1="ae,aeacute,e,eacute,ebreve,ecaron,ecircumflex,edieresis,edotaccent,egrave,emacron,eogonek,uni1EBD,oe,ae.ss02,aeacute.ss02"
5609
+ g2="y,yacute,ycircumflex,ydieresis,ygrave,uni1EF9"
5610
+ k="20" />
5611
+ <hkern g1="ae,aeacute,e,eacute,ebreve,ecaron,ecircumflex,edieresis,edotaccent,egrave,emacron,eogonek,uni1EBD,oe,ae.ss02,aeacute.ss02"
5612
+ g2="w,wacute,wcircumflex,wdieresis,wgrave"
5613
+ k="20" />
5614
+ <hkern g1="ae,aeacute,e,eacute,ebreve,ecaron,ecircumflex,edieresis,edotaccent,egrave,emacron,eogonek,uni1EBD,oe,ae.ss02,aeacute.ss02"
5615
+ g2="t,tcaron,uni0163,uni021B"
5616
+ k="17" />
5617
+ <hkern g1="ae,aeacute,e,eacute,ebreve,ecaron,ecircumflex,edieresis,edotaccent,egrave,emacron,eogonek,uni1EBD,oe,ae.ss02,aeacute.ss02"
5618
+ g2="g,gbreve,uni0123,gdotaccent"
5619
+ k="3" />
5620
+ <hkern g1="ae,aeacute,e,eacute,ebreve,ecaron,ecircumflex,edieresis,edotaccent,egrave,emacron,eogonek,uni1EBD,oe,ae.ss02,aeacute.ss02"
5621
+ g2="quotedbl,quotesingle"
5622
+ k="43" />
5623
+ <hkern g1="D,Eth,Dcaron,Dcroat,O,Oacute,Obreve,Ocircumflex,Odieresis,Ograve,Ohungarumlaut,Omacron,Otilde,uni018F"
5624
+ g2="A,Aacute,Abreve,Acircumflex,Adieresis,Agrave,Amacron,Aogonek,Aring,Atilde"
5625
+ k="50" />
5626
+ <hkern g1="D,Eth,Dcaron,Dcroat,O,Oacute,Obreve,Ocircumflex,Odieresis,Ograve,Ohungarumlaut,Omacron,Otilde,uni018F"
5627
+ g2="Y,Yacute,Ycircumflex,Ydieresis,Ygrave,uni1EF8"
5628
+ k="49" />
5629
+ <hkern g1="D,Eth,Dcaron,Dcroat,O,Oacute,Obreve,Ocircumflex,Odieresis,Ograve,Ohungarumlaut,Omacron,Otilde,uni018F"
5630
+ g2="W,Wacute,Wcircumflex,Wdieresis,Wgrave"
5631
+ k="25" />
5632
+ <hkern g1="D,Eth,Dcaron,Dcroat,O,Oacute,Obreve,Ocircumflex,Odieresis,Ograve,Ohungarumlaut,Omacron,Otilde,uni018F"
5633
+ g2="T,Tcaron,uni0162,uni021A"
5634
+ k="36" />
5635
+ <hkern g1="D,Eth,Dcaron,Dcroat,O,Oacute,Obreve,Ocircumflex,Odieresis,Ograve,Ohungarumlaut,Omacron,Otilde,uni018F"
5636
+ g2="period,ellipsis"
5637
+ k="30" />
5638
+ <hkern g1="D,Eth,Dcaron,Dcroat,O,Oacute,Obreve,Ocircumflex,Odieresis,Ograve,Ohungarumlaut,Omacron,Otilde,uni018F"
5639
+ g2="AE,AEacute"
5640
+ k="49" />
5641
+ <hkern g1="D,Eth,Dcaron,Dcroat,O,Oacute,Obreve,Ocircumflex,Odieresis,Ograve,Ohungarumlaut,Omacron,Otilde,uni018F"
5642
+ g2="V"
5643
+ k="27" />
5644
+ <hkern g1="b,uni0259,o,oacute,obreve,ocircumflex,odieresis,ograve,ohungarumlaut,omacron,otilde,p,thorn"
5645
+ g2="y,yacute,ycircumflex,ydieresis,ygrave,uni1EF9"
5646
+ k="40" />
5647
+ <hkern g1="b,uni0259,o,oacute,obreve,ocircumflex,odieresis,ograve,ohungarumlaut,omacron,otilde,p,thorn"
5648
+ g2="w,wacute,wcircumflex,wdieresis,wgrave"
5649
+ k="19" />
5650
+ <hkern g1="b,uni0259,o,oacute,obreve,ocircumflex,odieresis,ograve,ohungarumlaut,omacron,otilde,p,thorn"
5651
+ g2="t,tcaron,uni0163,uni021B"
5652
+ k="20" />
5653
+ <hkern g1="b,uni0259,o,oacute,obreve,ocircumflex,odieresis,ograve,ohungarumlaut,omacron,otilde,p,thorn"
5654
+ g2="g,gbreve,uni0123,gdotaccent"
5655
+ k="21" />
5656
+ <hkern g1="b,uni0259,o,oacute,obreve,ocircumflex,odieresis,ograve,ohungarumlaut,omacron,otilde,p,thorn"
5657
+ g2="quotedbl,quotesingle"
5658
+ k="43" />
5659
+ <hkern g1="U,Uacute,Ubreve,Ucircumflex,Udieresis,Ugrave,Uhungarumlaut,Umacron,Uogonek,Uring,Utilde"
5660
+ g2="A,Aacute,Abreve,Acircumflex,Adieresis,Agrave,Amacron,Aogonek,Aring,Atilde"
5661
+ k="30" />
5662
+ <hkern g1="U,Uacute,Ubreve,Ucircumflex,Udieresis,Ugrave,Uhungarumlaut,Umacron,Uogonek,Uring,Utilde"
5663
+ g2="period,ellipsis"
5664
+ k="20" />
5665
+ <hkern g1="U,Uacute,Ubreve,Ucircumflex,Udieresis,Ugrave,Uhungarumlaut,Umacron,Uogonek,Uring,Utilde"
5666
+ g2="AE,AEacute"
5667
+ k="49" />
5668
+ <hkern g1="a,aacute,abreve,acircumflex,adieresis,agrave,amacron,aogonek,aring,atilde"
5669
+ g2="y,yacute,ycircumflex,ydieresis,ygrave,uni1EF9"
5670
+ k="15" />
5671
+ <hkern g1="a,aacute,abreve,acircumflex,adieresis,agrave,amacron,aogonek,aring,atilde"
5672
+ g2="w,wacute,wcircumflex,wdieresis,wgrave"
5673
+ k="10" />
5674
+ <hkern g1="a,aacute,abreve,acircumflex,adieresis,agrave,amacron,aogonek,aring,atilde"
5675
+ g2="t,tcaron,uni0163,uni021B"
5676
+ k="14" />
5677
+ <hkern g1="A,Aacute,Abreve,Acircumflex,Adieresis,Agrave,Amacron,Aogonek,Aring,Atilde"
5678
+ g2="c,cacute,ccaron,ccedilla,cdotaccent,d,eth,dcaron,dcroat,e,eacute,ebreve,ecaron,ecircumflex,edieresis,edotaccent,egrave,emacron,eogonek,uni1EBD,uni0259,o,oacute,obreve,ocircumflex,odieresis,ograve,ohungarumlaut,omacron,otilde,oe,q,a.ss02,aacute.ss02,abreve.ss02,acircumflex.ss02,adieresis.ss02,agrave.ss02,amacron.ss02,aogonek.ss02,aring.ss02,atilde.ss02,ae.ss02,aeacute.ss02"
5679
+ k="27" />
5680
+ <hkern g1="A,Aacute,Abreve,Acircumflex,Adieresis,Agrave,Amacron,Aogonek,Aring,Atilde"
5681
+ g2="C,Cacute,Ccaron,Ccedilla,Cdotaccent,G,Gbreve,uni0122,Gdotaccent,O,Oacute,Obreve,Ocircumflex,Odieresis,Ograve,Ohungarumlaut,Omacron,Otilde,OE,Q"
5682
+ k="40" />
5683
+ <hkern g1="A,Aacute,Abreve,Acircumflex,Adieresis,Agrave,Amacron,Aogonek,Aring,Atilde"
5684
+ g2="a,aacute,abreve,acircumflex,adieresis,agrave,amacron,aogonek,aring,atilde,ae,aeacute"
5685
+ k="20" />
5686
+ <hkern g1="A,Aacute,Abreve,Acircumflex,Adieresis,Agrave,Amacron,Aogonek,Aring,Atilde"
5687
+ g2="u,uacute,ubreve,ucircumflex,udieresis,ugrave,uhungarumlaut,umacron,uogonek,uring,utilde"
5688
+ k="11" />
5689
+ <hkern g1="A,Aacute,Abreve,Acircumflex,Adieresis,Agrave,Amacron,Aogonek,Aring,Atilde"
5690
+ g2="U,Uacute,Ubreve,Ucircumflex,Udieresis,Ugrave,Uhungarumlaut,Umacron,Uogonek,Uring,Utilde"
5691
+ k="30" />
5692
+ <hkern g1="A,Aacute,Abreve,Acircumflex,Adieresis,Agrave,Amacron,Aogonek,Aring,Atilde"
5693
+ g2="y,yacute,ycircumflex,ydieresis,ygrave,uni1EF9"
5694
+ k="60" />
5695
+ <hkern g1="A,Aacute,Abreve,Acircumflex,Adieresis,Agrave,Amacron,Aogonek,Aring,Atilde"
5696
+ g2="Y,Yacute,Ycircumflex,Ydieresis,Ygrave,uni1EF8"
5697
+ k="73" />
5698
+ <hkern g1="A,Aacute,Abreve,Acircumflex,Adieresis,Agrave,Amacron,Aogonek,Aring,Atilde"
5699
+ g2="w,wacute,wcircumflex,wdieresis,wgrave"
5700
+ k="39" />
5701
+ <hkern g1="A,Aacute,Abreve,Acircumflex,Adieresis,Agrave,Amacron,Aogonek,Aring,Atilde"
5702
+ g2="hyphen,uni00AD,endash,emdash,minus"
5703
+ k="30" />
5704
+ <hkern g1="A,Aacute,Abreve,Acircumflex,Adieresis,Agrave,Amacron,Aogonek,Aring,Atilde"
5705
+ g2="W,Wacute,Wcircumflex,Wdieresis,Wgrave"
5706
+ k="70" />
5707
+ <hkern g1="A,Aacute,Abreve,Acircumflex,Adieresis,Agrave,Amacron,Aogonek,Aring,Atilde"
5708
+ g2="t,tcaron,uni0163,uni021B"
5709
+ k="42" />
5710
+ <hkern g1="A,Aacute,Abreve,Acircumflex,Adieresis,Agrave,Amacron,Aogonek,Aring,Atilde"
5711
+ g2="g.ss03,gbreve.ss03,uni0123.ss03,gdotaccent.ss03"
5712
+ k="20" />
5713
+ <hkern g1="A,Aacute,Abreve,Acircumflex,Adieresis,Agrave,Amacron,Aogonek,Aring,Atilde"
5714
+ g2="T,Tcaron,uni0162,uni021A"
5715
+ k="79" />
5716
+ <hkern g1="A,Aacute,Abreve,Acircumflex,Adieresis,Agrave,Amacron,Aogonek,Aring,Atilde"
5717
+ g2="quotedblright.ss01,quoteright.ss01"
5718
+ k="61" />
5719
+ <hkern g1="A,Aacute,Abreve,Acircumflex,Adieresis,Agrave,Amacron,Aogonek,Aring,Atilde"
5720
+ g2="quotedblleft.ss01,quoteleft.ss01"
5721
+ k="60" />
5722
+ <hkern g1="A,Aacute,Abreve,Acircumflex,Adieresis,Agrave,Amacron,Aogonek,Aring,Atilde"
5723
+ g2="quotedbl,quotesingle"
5724
+ k="61" />
5725
+ <hkern g1="A,Aacute,Abreve,Acircumflex,Adieresis,Agrave,Amacron,Aogonek,Aring,Atilde"
5726
+ g2="V"
5727
+ k="97" />
5728
+ <hkern g1="h,m,n,nacute,ncaron,uni0146,ntilde"
5729
+ g2="y,yacute,ycircumflex,ydieresis,ygrave,uni1EF9"
5730
+ k="15" />
5731
+ <hkern g1="h,m,n,nacute,ncaron,uni0146,ntilde"
5732
+ g2="quotedblright.ss01,quoteright.ss01"
5733
+ k="31" />
5734
+ <hkern g1="h,m,n,nacute,ncaron,uni0146,ntilde"
5735
+ g2="quotedbl,quotesingle"
5736
+ k="50" />
5737
+ <hkern g1="y,yacute,ycircumflex,ydieresis,ygrave,uni1EF9"
5738
+ g2="c,cacute,ccaron,ccedilla,cdotaccent,d,eth,dcaron,dcroat,e,eacute,ebreve,ecaron,ecircumflex,edieresis,edotaccent,egrave,emacron,eogonek,uni1EBD,uni0259,o,oacute,obreve,ocircumflex,odieresis,ograve,ohungarumlaut,omacron,otilde,oe,q,a.ss02,aacute.ss02,abreve.ss02,acircumflex.ss02,adieresis.ss02,agrave.ss02,amacron.ss02,aogonek.ss02,aring.ss02,atilde.ss02,ae.ss02,aeacute.ss02"
5739
+ k="47" />
5740
+ <hkern g1="y,yacute,ycircumflex,ydieresis,ygrave,uni1EF9"
5741
+ g2="a,aacute,abreve,acircumflex,adieresis,agrave,amacron,aogonek,aring,atilde,ae,aeacute"
5742
+ k="31" />
5743
+ <hkern g1="y,yacute,ycircumflex,ydieresis,ygrave,uni1EF9"
5744
+ g2="s,sacute,scaron,scedilla,uni0219"
5745
+ k="29" />
5746
+ <hkern g1="y,yacute,ycircumflex,ydieresis,ygrave,uni1EF9"
5747
+ g2="g.ss03,gbreve.ss03,uni0123.ss03,gdotaccent.ss03"
5748
+ k="40" />
5749
+ <hkern g1="y,yacute,ycircumflex,ydieresis,ygrave,uni1EF9"
5750
+ g2="g,gbreve,uni0123,gdotaccent"
5751
+ k="31" />
5752
+ <hkern g1="y,yacute,ycircumflex,ydieresis,ygrave,uni1EF9"
5753
+ g2="comma.ss01,quotesinglbase.ss01,quotedblbase.ss01"
5754
+ k="51" />
5755
+ <hkern g1="y,yacute,ycircumflex,ydieresis,ygrave,uni1EF9"
5756
+ g2="period,ellipsis"
5757
+ k="71" />
5758
+ <hkern g1="s,sacute,scaron,scedilla,uni0219,uni20A8"
5759
+ g2="y,yacute,ycircumflex,ydieresis,ygrave,uni1EF9"
5760
+ k="21" />
5761
+ <hkern g1="s,sacute,scaron,scedilla,uni0219,uni20A8"
5762
+ g2="w,wacute,wcircumflex,wdieresis,wgrave"
5763
+ k="19" />
5764
+ <hkern g1="s,sacute,scaron,scedilla,uni0219,uni20A8"
5765
+ g2="t,tcaron,uni0163,uni021B"
5766
+ k="22" />
5767
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ygrave,uni1EF8"
5768
+ g2="c,cacute,ccaron,ccedilla,cdotaccent,d,eth,dcaron,dcroat,e,eacute,ebreve,ecaron,ecircumflex,edieresis,edotaccent,egrave,emacron,eogonek,uni1EBD,uni0259,o,oacute,obreve,ocircumflex,odieresis,ograve,ohungarumlaut,omacron,otilde,oe,q,a.ss02,aacute.ss02,abreve.ss02,acircumflex.ss02,adieresis.ss02,agrave.ss02,amacron.ss02,aogonek.ss02,aring.ss02,atilde.ss02,ae.ss02,aeacute.ss02"
5769
+ k="87" />
5770
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ygrave,uni1EF8"
5771
+ g2="C,Cacute,Ccaron,Ccedilla,Cdotaccent,G,Gbreve,uni0122,Gdotaccent,O,Oacute,Obreve,Ocircumflex,Odieresis,Ograve,Ohungarumlaut,Omacron,Otilde,OE,Q"
5772
+ k="49" />
5773
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ygrave,uni1EF8"
5774
+ g2="dotlessi,iacute,icircumflex,iogonek,m,n,nacute,ncaron,uni0146,ntilde,r,racute,rcaron,uni0157"
5775
+ k="39" />
5776
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ygrave,uni1EF8"
5777
+ g2="a,aacute,abreve,acircumflex,adieresis,agrave,amacron,aogonek,aring,atilde,ae,aeacute"
5778
+ k="73" />
5779
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ygrave,uni1EF8"
5780
+ g2="u,uacute,ubreve,ucircumflex,udieresis,ugrave,uhungarumlaut,umacron,uogonek,uring,utilde"
5781
+ k="27" />
5782
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ygrave,uni1EF8"
5783
+ g2="A,Aacute,Abreve,Acircumflex,Adieresis,Agrave,Amacron,Aogonek,Aring,Atilde"
5784
+ k="73" />
5785
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ygrave,uni1EF8"
5786
+ g2="y,yacute,ycircumflex,ydieresis,ygrave,uni1EF9"
5787
+ k="20" />
5788
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ygrave,uni1EF8"
5789
+ g2="S,Sacute,Scaron,Scedilla,uni0218,dollar"
5790
+ k="40" />
5791
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ygrave,uni1EF8"
5792
+ g2="w,wacute,wcircumflex,wdieresis,wgrave"
5793
+ k="17" />
5794
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ygrave,uni1EF8"
5795
+ g2="s,sacute,scaron,scedilla,uni0219"
5796
+ k="70" />
5797
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ygrave,uni1EF8"
5798
+ g2="hyphen,uni00AD,endash,emdash,minus"
5799
+ k="59" />
5800
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ygrave,uni1EF8"
5801
+ g2="z,zacute,zcaron,zdotaccent"
5802
+ k="20" />
5803
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ygrave,uni1EF8"
5804
+ g2="t,tcaron,uni0163,uni021B"
5805
+ k="30" />
5806
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ygrave,uni1EF8"
5807
+ g2="g.ss03,gbreve.ss03,uni0123.ss03,gdotaccent.ss03"
5808
+ k="71" />
5809
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ygrave,uni1EF8"
5810
+ g2="g,gbreve,uni0123,gdotaccent"
5811
+ k="81" />
5812
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ygrave,uni1EF8"
5813
+ g2="comma.ss01,quotesinglbase.ss01,quotedblbase.ss01"
5814
+ k="64" />
5815
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ygrave,uni1EF8"
5816
+ g2="quotedbl,quotesingle"
5817
+ k="-39" />
5818
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ygrave,uni1EF8"
5819
+ g2="period,ellipsis"
5820
+ k="83" />
5821
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ygrave,uni1EF8"
5822
+ g2="AE,AEacute"
5823
+ k="129" />
5824
+ <hkern g1="S,Sacute,Scaron,Scedilla,uni0218,dollar"
5825
+ g2="Y,Yacute,Ycircumflex,Ydieresis,Ygrave,uni1EF8"
5826
+ k="30" />
5827
+ <hkern g1="S,Sacute,Scaron,Scedilla,uni0218,dollar"
5828
+ g2="W,Wacute,Wcircumflex,Wdieresis,Wgrave"
5829
+ k="17" />
5830
+ <hkern g1="S,Sacute,Scaron,Scedilla,uni0218,dollar"
5831
+ g2="T,Tcaron,uni0162,uni021A"
5832
+ k="17" />
5833
+ <hkern g1="S,Sacute,Scaron,Scedilla,uni0218,dollar"
5834
+ g2="V"
5835
+ k="20" />
5836
+ <hkern g1="L,Lacute,Lcaron,uni013B,Ldot,Lslash"
5837
+ g2="c,cacute,ccaron,ccedilla,cdotaccent,d,eth,dcaron,dcroat,e,eacute,ebreve,ecaron,ecircumflex,edieresis,edotaccent,egrave,emacron,eogonek,uni1EBD,uni0259,o,oacute,obreve,ocircumflex,odieresis,ograve,ohungarumlaut,omacron,otilde,oe,q,a.ss02,aacute.ss02,abreve.ss02,acircumflex.ss02,adieresis.ss02,agrave.ss02,amacron.ss02,aogonek.ss02,aring.ss02,atilde.ss02,ae.ss02,aeacute.ss02"
5838
+ k="21" />
5839
+ <hkern g1="L,Lacute,Lcaron,uni013B,Ldot,Lslash"
5840
+ g2="C,Cacute,Ccaron,Ccedilla,Cdotaccent,G,Gbreve,uni0122,Gdotaccent,O,Oacute,Obreve,Ocircumflex,Odieresis,Ograve,Ohungarumlaut,Omacron,Otilde,OE,Q"
5841
+ k="65" />
5842
+ <hkern g1="L,Lacute,Lcaron,uni013B,Ldot,Lslash"
5843
+ g2="U,Uacute,Ubreve,Ucircumflex,Udieresis,Ugrave,Uhungarumlaut,Umacron,Uogonek,Uring,Utilde"
5844
+ k="30" />
5845
+ <hkern g1="L,Lacute,Lcaron,uni013B,Ldot,Lslash"
5846
+ g2="y,yacute,ycircumflex,ydieresis,ygrave,uni1EF9"
5847
+ k="61" />
5848
+ <hkern g1="L,Lacute,Lcaron,uni013B,Ldot,Lslash"
5849
+ g2="Y,Yacute,Ycircumflex,Ydieresis,Ygrave,uni1EF8"
5850
+ k="100" />
5851
+ <hkern g1="L,Lacute,Lcaron,uni013B,Ldot,Lslash"
5852
+ g2="S,Sacute,Scaron,Scedilla,uni0218,dollar"
5853
+ k="30" />
5854
+ <hkern g1="L,Lacute,Lcaron,uni013B,Ldot,Lslash"
5855
+ g2="w,wacute,wcircumflex,wdieresis,wgrave"
5856
+ k="30" />
5857
+ <hkern g1="L,Lacute,Lcaron,uni013B,Ldot,Lslash"
5858
+ g2="hyphen,uni00AD,endash,emdash,minus"
5859
+ k="69" />
5860
+ <hkern g1="L,Lacute,Lcaron,uni013B,Ldot,Lslash"
5861
+ g2="W,Wacute,Wcircumflex,Wdieresis,Wgrave"
5862
+ k="70" />
5863
+ <hkern g1="L,Lacute,Lcaron,uni013B,Ldot,Lslash"
5864
+ g2="t,tcaron,uni0163,uni021B"
5865
+ k="50" />
5866
+ <hkern g1="L,Lacute,Lcaron,uni013B,Ldot,Lslash"
5867
+ g2="T,Tcaron,uni0162,uni021A"
5868
+ k="111" />
5869
+ <hkern g1="L,Lacute,Lcaron,uni013B,Ldot,Lslash"
5870
+ g2="quotedblright.ss01,quoteright.ss01"
5871
+ k="73" />
5872
+ <hkern g1="L,Lacute,Lcaron,uni013B,Ldot,Lslash"
5873
+ g2="quotedbl,quotesingle"
5874
+ k="60" />
5875
+ <hkern g1="L,Lacute,Lcaron,uni013B,Ldot,Lslash"
5876
+ g2="percent,perthousand"
5877
+ k="46" />
5878
+ <hkern g1="L,Lacute,Lcaron,uni013B,Ldot,Lslash"
5879
+ g2="V"
5880
+ k="120" />
5881
+ <hkern g1="C,Cacute,Ccaron,Ccedilla,Cdotaccent,Euro"
5882
+ g2="A,Aacute,Abreve,Acircumflex,Adieresis,Agrave,Amacron,Aogonek,Aring,Atilde"
5883
+ k="17" />
5884
+ <hkern g1="C,Cacute,Ccaron,Ccedilla,Cdotaccent,Euro"
5885
+ g2="Y,Yacute,Ycircumflex,Ydieresis,Ygrave,uni1EF8"
5886
+ k="31" />
5887
+ <hkern g1="C,Cacute,Ccaron,Ccedilla,Cdotaccent,Euro"
5888
+ g2="W,Wacute,Wcircumflex,Wdieresis,Wgrave"
5889
+ k="3" />
5890
+ <hkern g1="C,Cacute,Ccaron,Ccedilla,Cdotaccent,Euro"
5891
+ g2="T,Tcaron,uni0162,uni021A"
5892
+ k="17" />
5893
+ <hkern g1="C,Cacute,Ccaron,Ccedilla,Cdotaccent,Euro"
5894
+ g2="AE,AEacute"
5895
+ k="20" />
5896
+ <hkern g1="w,wacute,wcircumflex,wdieresis,wgrave"
5897
+ g2="c,cacute,ccaron,ccedilla,cdotaccent,d,eth,dcaron,dcroat,e,eacute,ebreve,ecaron,ecircumflex,edieresis,edotaccent,egrave,emacron,eogonek,uni1EBD,uni0259,o,oacute,obreve,ocircumflex,odieresis,ograve,ohungarumlaut,omacron,otilde,oe,q,a.ss02,aacute.ss02,abreve.ss02,acircumflex.ss02,adieresis.ss02,agrave.ss02,amacron.ss02,aogonek.ss02,aring.ss02,atilde.ss02,ae.ss02,aeacute.ss02"
5898
+ k="19" />
5899
+ <hkern g1="w,wacute,wcircumflex,wdieresis,wgrave"
5900
+ g2="a,aacute,abreve,acircumflex,adieresis,agrave,amacron,aogonek,aring,atilde,ae,aeacute"
5901
+ k="18" />
5902
+ <hkern g1="w,wacute,wcircumflex,wdieresis,wgrave"
5903
+ g2="g.ss03,gbreve.ss03,uni0123.ss03,gdotaccent.ss03"
5904
+ k="23" />
5905
+ <hkern g1="w,wacute,wcircumflex,wdieresis,wgrave"
5906
+ g2="g,gbreve,uni0123,gdotaccent"
5907
+ k="20" />
5908
+ <hkern g1="w,wacute,wcircumflex,wdieresis,wgrave"
5909
+ g2="comma.ss01,quotesinglbase.ss01,quotedblbase.ss01"
5910
+ k="31" />
5911
+ <hkern g1="w,wacute,wcircumflex,wdieresis,wgrave"
5912
+ g2="period,ellipsis"
5913
+ k="34" />
5914
+ <hkern g1="hyphen,uni00AD,endash,emdash,minus"
5915
+ g2="A,Aacute,Abreve,Acircumflex,Adieresis,Agrave,Amacron,Aogonek,Aring,Atilde"
5916
+ k="30" />
5917
+ <hkern g1="hyphen,uni00AD,endash,emdash,minus"
5918
+ g2="Y,Yacute,Ycircumflex,Ydieresis,Ygrave,uni1EF8"
5919
+ k="59" />
5920
+ <hkern g1="hyphen,uni00AD,endash,emdash,minus"
5921
+ g2="W,Wacute,Wcircumflex,Wdieresis,Wgrave"
5922
+ k="39" />
5923
+ <hkern g1="hyphen,uni00AD,endash,emdash,minus"
5924
+ g2="T,Tcaron,uni0162,uni021A"
5925
+ k="50" />
5926
+ <hkern g1="hyphen,uni00AD,endash,emdash,minus"
5927
+ g2="V"
5928
+ k="39" />
5929
+ <hkern g1="c,cacute,ccaron,ccedilla,cdotaccent"
5930
+ g2="t,tcaron,uni0163,uni021B"
5931
+ k="14" />
5932
+ <hkern g1="W,Wacute,Wcircumflex,Wdieresis,Wgrave"
5933
+ g2="c,cacute,ccaron,ccedilla,cdotaccent,d,eth,dcaron,dcroat,e,eacute,ebreve,ecaron,ecircumflex,edieresis,edotaccent,egrave,emacron,eogonek,uni1EBD,uni0259,o,oacute,obreve,ocircumflex,odieresis,ograve,ohungarumlaut,omacron,otilde,oe,q,a.ss02,aacute.ss02,abreve.ss02,acircumflex.ss02,adieresis.ss02,agrave.ss02,amacron.ss02,aogonek.ss02,aring.ss02,atilde.ss02,ae.ss02,aeacute.ss02"
5934
+ k="51" />
5935
+ <hkern g1="W,Wacute,Wcircumflex,Wdieresis,Wgrave"
5936
+ g2="C,Cacute,Ccaron,Ccedilla,Cdotaccent,G,Gbreve,uni0122,Gdotaccent,O,Oacute,Obreve,Ocircumflex,Odieresis,Ograve,Ohungarumlaut,Omacron,Otilde,OE,Q"
5937
+ k="25" />
5938
+ <hkern g1="W,Wacute,Wcircumflex,Wdieresis,Wgrave"
5939
+ g2="dotlessi,iacute,icircumflex,iogonek,m,n,nacute,ncaron,uni0146,ntilde,r,racute,rcaron,uni0157"
5940
+ k="17" />
5941
+ <hkern g1="W,Wacute,Wcircumflex,Wdieresis,Wgrave"
5942
+ g2="a,aacute,abreve,acircumflex,adieresis,agrave,amacron,aogonek,aring,atilde,ae,aeacute"
5943
+ k="49" />
5944
+ <hkern g1="W,Wacute,Wcircumflex,Wdieresis,Wgrave"
5945
+ g2="u,uacute,ubreve,ucircumflex,udieresis,ugrave,uhungarumlaut,umacron,uogonek,uring,utilde"
5946
+ k="14" />
5947
+ <hkern g1="W,Wacute,Wcircumflex,Wdieresis,Wgrave"
5948
+ g2="A,Aacute,Abreve,Acircumflex,Adieresis,Agrave,Amacron,Aogonek,Aring,Atilde"
5949
+ k="70" />
5950
+ <hkern g1="W,Wacute,Wcircumflex,Wdieresis,Wgrave"
5951
+ g2="S,Sacute,Scaron,Scedilla,uni0218,dollar"
5952
+ k="17" />
5953
+ <hkern g1="W,Wacute,Wcircumflex,Wdieresis,Wgrave"
5954
+ g2="s,sacute,scaron,scedilla,uni0219"
5955
+ k="39" />
5956
+ <hkern g1="W,Wacute,Wcircumflex,Wdieresis,Wgrave"
5957
+ g2="hyphen,uni00AD,endash,emdash,minus"
5958
+ k="39" />
5959
+ <hkern g1="W,Wacute,Wcircumflex,Wdieresis,Wgrave"
5960
+ g2="g.ss03,gbreve.ss03,uni0123.ss03,gdotaccent.ss03"
5961
+ k="50" />
5962
+ <hkern g1="W,Wacute,Wcircumflex,Wdieresis,Wgrave"
5963
+ g2="g,gbreve,uni0123,gdotaccent"
5964
+ k="41" />
5965
+ <hkern g1="W,Wacute,Wcircumflex,Wdieresis,Wgrave"
5966
+ g2="comma.ss01,quotesinglbase.ss01,quotedblbase.ss01"
5967
+ k="60" />
5968
+ <hkern g1="W,Wacute,Wcircumflex,Wdieresis,Wgrave"
5969
+ g2="period,ellipsis"
5970
+ k="70" />
5971
+ <hkern g1="W,Wacute,Wcircumflex,Wdieresis,Wgrave"
5972
+ g2="AE,AEacute"
5973
+ k="97" />
5974
+ <hkern g1="t,tcaron,uni0163,uni021B"
5975
+ g2="c,cacute,ccaron,ccedilla,cdotaccent,d,eth,dcaron,dcroat,e,eacute,ebreve,ecaron,ecircumflex,edieresis,edotaccent,egrave,emacron,eogonek,uni1EBD,uni0259,o,oacute,obreve,ocircumflex,odieresis,ograve,ohungarumlaut,omacron,otilde,oe,q,a.ss02,aacute.ss02,abreve.ss02,acircumflex.ss02,adieresis.ss02,agrave.ss02,amacron.ss02,aogonek.ss02,aring.ss02,atilde.ss02,ae.ss02,aeacute.ss02"
5976
+ k="14" />
5977
+ <hkern g1="r,racute,rcaron,uni0157"
5978
+ g2="c,cacute,ccaron,ccedilla,cdotaccent,d,eth,dcaron,dcroat,e,eacute,ebreve,ecaron,ecircumflex,edieresis,edotaccent,egrave,emacron,eogonek,uni1EBD,uni0259,o,oacute,obreve,ocircumflex,odieresis,ograve,ohungarumlaut,omacron,otilde,oe,q,a.ss02,aacute.ss02,abreve.ss02,acircumflex.ss02,adieresis.ss02,agrave.ss02,amacron.ss02,aogonek.ss02,aring.ss02,atilde.ss02,ae.ss02,aeacute.ss02"
5979
+ k="19" />
5980
+ <hkern g1="r,racute,rcaron,uni0157"
5981
+ g2="g,gbreve,uni0123,gdotaccent"
5982
+ k="12" />
5983
+ <hkern g1="r,racute,rcaron,uni0157"
5984
+ g2="period,ellipsis"
5985
+ k="40" />
5986
+ <hkern g1="g,gbreve,uni0123,gdotaccent"
5987
+ g2="c,cacute,ccaron,ccedilla,cdotaccent,d,eth,dcaron,dcroat,e,eacute,ebreve,ecaron,ecircumflex,edieresis,edotaccent,egrave,emacron,eogonek,uni1EBD,uni0259,o,oacute,obreve,ocircumflex,odieresis,ograve,ohungarumlaut,omacron,otilde,oe,q,a.ss02,aacute.ss02,abreve.ss02,acircumflex.ss02,adieresis.ss02,agrave.ss02,amacron.ss02,aogonek.ss02,aring.ss02,atilde.ss02,ae.ss02,aeacute.ss02"
5988
+ k="20" />
5989
+ <hkern g1="Z,Zacute,Zcaron,Zdotaccent"
5990
+ g2="C,Cacute,Ccaron,Ccedilla,Cdotaccent,G,Gbreve,uni0122,Gdotaccent,O,Oacute,Obreve,Ocircumflex,Odieresis,Ograve,Ohungarumlaut,Omacron,Otilde,OE,Q"
5991
+ k="20" />
5992
+ <hkern g1="T,Tcaron,uni0162,uni021A"
5993
+ g2="c,cacute,ccaron,ccedilla,cdotaccent,d,eth,dcaron,dcroat,e,eacute,ebreve,ecaron,ecircumflex,edieresis,edotaccent,egrave,emacron,eogonek,uni1EBD,uni0259,o,oacute,obreve,ocircumflex,odieresis,ograve,ohungarumlaut,omacron,otilde,oe,q,a.ss02,aacute.ss02,abreve.ss02,acircumflex.ss02,adieresis.ss02,agrave.ss02,amacron.ss02,aogonek.ss02,aring.ss02,atilde.ss02,ae.ss02,aeacute.ss02"
5994
+ k="90" />
5995
+ <hkern g1="T,Tcaron,uni0162,uni021A"
5996
+ g2="C,Cacute,Ccaron,Ccedilla,Cdotaccent,G,Gbreve,uni0122,Gdotaccent,O,Oacute,Obreve,Ocircumflex,Odieresis,Ograve,Ohungarumlaut,Omacron,Otilde,OE,Q"
5997
+ k="36" />
5998
+ <hkern g1="T,Tcaron,uni0162,uni021A"
5999
+ g2="dotlessi,iacute,icircumflex,iogonek,m,n,nacute,ncaron,uni0146,ntilde,r,racute,rcaron,uni0157"
6000
+ k="57" />
6001
+ <hkern g1="T,Tcaron,uni0162,uni021A"
6002
+ g2="a,aacute,abreve,acircumflex,adieresis,agrave,amacron,aogonek,aring,atilde,ae,aeacute"
6003
+ k="74" />
6004
+ <hkern g1="T,Tcaron,uni0162,uni021A"
6005
+ g2="u,uacute,ubreve,ucircumflex,udieresis,ugrave,uhungarumlaut,umacron,uogonek,uring,utilde"
6006
+ k="50" />
6007
+ <hkern g1="T,Tcaron,uni0162,uni021A"
6008
+ g2="A,Aacute,Abreve,Acircumflex,Adieresis,Agrave,Amacron,Aogonek,Aring,Atilde"
6009
+ k="79" />
6010
+ <hkern g1="T,Tcaron,uni0162,uni021A"
6011
+ g2="y,yacute,ycircumflex,ydieresis,ygrave,uni1EF9"
6012
+ k="50" />
6013
+ <hkern g1="T,Tcaron,uni0162,uni021A"
6014
+ g2="S,Sacute,Scaron,Scedilla,uni0218,dollar"
6015
+ k="17" />
6016
+ <hkern g1="T,Tcaron,uni0162,uni021A"
6017
+ g2="w,wacute,wcircumflex,wdieresis,wgrave"
6018
+ k="53" />
6019
+ <hkern g1="T,Tcaron,uni0162,uni021A"
6020
+ g2="s,sacute,scaron,scedilla,uni0219"
6021
+ k="69" />
6022
+ <hkern g1="T,Tcaron,uni0162,uni021A"
6023
+ g2="hyphen,uni00AD,endash,emdash,minus"
6024
+ k="50" />
6025
+ <hkern g1="T,Tcaron,uni0162,uni021A"
6026
+ g2="z,zacute,zcaron,zdotaccent"
6027
+ k="39" />
6028
+ <hkern g1="T,Tcaron,uni0162,uni021A"
6029
+ g2="t,tcaron,uni0163,uni021B"
6030
+ k="34" />
6031
+ <hkern g1="T,Tcaron,uni0162,uni021A"
6032
+ g2="g.ss03,gbreve.ss03,uni0123.ss03,gdotaccent.ss03"
6033
+ k="109" />
6034
+ <hkern g1="T,Tcaron,uni0162,uni021A"
6035
+ g2="g,gbreve,uni0123,gdotaccent"
6036
+ k="90" />
6037
+ <hkern g1="T,Tcaron,uni0162,uni021A"
6038
+ g2="comma.ss01,quotesinglbase.ss01,quotedblbase.ss01"
6039
+ k="51" />
6040
+ <hkern g1="T,Tcaron,uni0162,uni021A"
6041
+ g2="period,ellipsis"
6042
+ k="80" />
6043
+ <hkern g1="T,Tcaron,uni0162,uni021A"
6044
+ g2="AE,AEacute"
6045
+ k="99" />
6046
+ <hkern g1="R,Racute,Rcaron,uni0156"
6047
+ g2="c,cacute,ccaron,ccedilla,cdotaccent,d,eth,dcaron,dcroat,e,eacute,ebreve,ecaron,ecircumflex,edieresis,edotaccent,egrave,emacron,eogonek,uni1EBD,uni0259,o,oacute,obreve,ocircumflex,odieresis,ograve,ohungarumlaut,omacron,otilde,oe,q,a.ss02,aacute.ss02,abreve.ss02,acircumflex.ss02,adieresis.ss02,agrave.ss02,amacron.ss02,aogonek.ss02,aring.ss02,atilde.ss02,ae.ss02,aeacute.ss02"
6048
+ k="30" />
6049
+ <hkern g1="R,Racute,Rcaron,uni0156"
6050
+ g2="a,aacute,abreve,acircumflex,adieresis,agrave,amacron,aogonek,aring,atilde,ae,aeacute"
6051
+ k="14" />
6052
+ <hkern g1="R,Racute,Rcaron,uni0156"
6053
+ g2="Y,Yacute,Ycircumflex,Ydieresis,Ygrave,uni1EF8"
6054
+ k="29" />
6055
+ <hkern g1="R,Racute,Rcaron,uni0156"
6056
+ g2="s,sacute,scaron,scedilla,uni0219"
6057
+ k="17" />
6058
+ <hkern g1="R,Racute,Rcaron,uni0156"
6059
+ g2="W,Wacute,Wcircumflex,Wdieresis,Wgrave"
6060
+ k="17" />
6061
+ <hkern g1="R,Racute,Rcaron,uni0156"
6062
+ g2="g.ss03,gbreve.ss03,uni0123.ss03,gdotaccent.ss03"
6063
+ k="20" />
6064
+ <hkern g1="R,Racute,Rcaron,uni0156"
6065
+ g2="V"
6066
+ k="29" />
6067
+ <hkern g1="G,Gbreve,uni0122,Gdotaccent"
6068
+ g2="Y,Yacute,Ycircumflex,Ydieresis,Ygrave,uni1EF8"
6069
+ k="40" />
6070
+ <hkern g1="comma.ss01,quotesinglbase.ss01,quotedblbase.ss01"
6071
+ g2="c,cacute,ccaron,ccedilla,cdotaccent,d,eth,dcaron,dcroat,e,eacute,ebreve,ecaron,ecircumflex,edieresis,edotaccent,egrave,emacron,eogonek,uni1EBD,uni0259,o,oacute,obreve,ocircumflex,odieresis,ograve,ohungarumlaut,omacron,otilde,oe,q,a.ss02,aacute.ss02,abreve.ss02,acircumflex.ss02,adieresis.ss02,agrave.ss02,amacron.ss02,aogonek.ss02,aring.ss02,atilde.ss02,ae.ss02,aeacute.ss02"
6072
+ k="30" />
6073
+ <hkern g1="comma.ss01,quotesinglbase.ss01,quotedblbase.ss01"
6074
+ g2="C,Cacute,Ccaron,Ccedilla,Cdotaccent,G,Gbreve,uni0122,Gdotaccent,O,Oacute,Obreve,Ocircumflex,Odieresis,Ograve,Ohungarumlaut,Omacron,Otilde,OE,Q"
6075
+ k="29" />
6076
+ <hkern g1="comma.ss01,quotesinglbase.ss01,quotedblbase.ss01"
6077
+ g2="y,yacute,ycircumflex,ydieresis,ygrave,uni1EF9"
6078
+ k="51" />
6079
+ <hkern g1="comma.ss01,quotesinglbase.ss01,quotedblbase.ss01"
6080
+ g2="Y,Yacute,Ycircumflex,Ydieresis,Ygrave,uni1EF8"
6081
+ k="76" />
6082
+ <hkern g1="comma.ss01,quotesinglbase.ss01,quotedblbase.ss01"
6083
+ g2="w,wacute,wcircumflex,wdieresis,wgrave"
6084
+ k="49" />
6085
+ <hkern g1="comma.ss01,quotesinglbase.ss01,quotedblbase.ss01"
6086
+ g2="W,Wacute,Wcircumflex,Wdieresis,Wgrave"
6087
+ k="51" />
6088
+ <hkern g1="comma.ss01,quotesinglbase.ss01,quotedblbase.ss01"
6089
+ g2="t,tcaron,uni0163,uni021B"
6090
+ k="40" />
6091
+ <hkern g1="comma.ss01,quotesinglbase.ss01,quotedblbase.ss01"
6092
+ g2="T,Tcaron,uni0162,uni021A"
6093
+ k="50" />
6094
+ <hkern g1="comma.ss01,quotesinglbase.ss01,quotedblbase.ss01"
6095
+ g2="V"
6096
+ k="80" />
6097
+ <hkern g1="quotedblright.ss01,quoteright.ss01"
6098
+ g2="A,Aacute,Abreve,Acircumflex,Adieresis,Agrave,Amacron,Aogonek,Aring,Atilde"
6099
+ k="77" />
6100
+ <hkern g1="quotedblright,quoteright"
6101
+ g2="s,sacute,scaron,scedilla,uni0219"
6102
+ k="43" />
6103
+ <hkern g1="quotedblleft.ss01,quoteleft.ss01"
6104
+ g2="A,Aacute,Abreve,Acircumflex,Adieresis,Agrave,Amacron,Aogonek,Aring,Atilde"
6105
+ k="61" />
6106
+ <hkern g1="quotedblleft.ss01,quoteleft.ss01"
6107
+ g2="g,gbreve,uni0123,gdotaccent"
6108
+ k="40" />
6109
+ <hkern g1="quotedblleft.ss01,quoteleft.ss01"
6110
+ g2="AE,AEacute"
6111
+ k="141" />
6112
+ <hkern g1="quotedbl,quotesingle"
6113
+ g2="c,cacute,ccaron,ccedilla,cdotaccent,d,eth,dcaron,dcroat,e,eacute,ebreve,ecaron,ecircumflex,edieresis,edotaccent,egrave,emacron,eogonek,uni1EBD,uni0259,o,oacute,obreve,ocircumflex,odieresis,ograve,ohungarumlaut,omacron,otilde,oe,q,a.ss02,aacute.ss02,abreve.ss02,acircumflex.ss02,adieresis.ss02,agrave.ss02,amacron.ss02,aogonek.ss02,aring.ss02,atilde.ss02,ae.ss02,aeacute.ss02"
6114
+ k="43" />
6115
+ <hkern g1="quotedbl,quotesingle"
6116
+ g2="A,Aacute,Abreve,Acircumflex,Adieresis,Agrave,Amacron,Aogonek,Aring,Atilde"
6117
+ k="61" />
6118
+ <hkern g1="quotedbl,quotesingle"
6119
+ g2="g,gbreve,uni0123,gdotaccent"
6120
+ k="40" />
6121
+ <hkern g1="quotedbl,quotesingle"
6122
+ g2="AE,AEacute"
6123
+ k="93" />
6124
+ <hkern g1="period,ellipsis"
6125
+ g2="C,Cacute,Ccaron,Ccedilla,Cdotaccent,G,Gbreve,uni0122,Gdotaccent,O,Oacute,Obreve,Ocircumflex,Odieresis,Ograve,Ohungarumlaut,Omacron,Otilde,OE,Q"
6126
+ k="30" />
6127
+ <hkern g1="period,ellipsis"
6128
+ g2="U,Uacute,Ubreve,Ucircumflex,Udieresis,Ugrave,Uhungarumlaut,Umacron,Uogonek,Uring,Utilde"
6129
+ k="20" />
6130
+ <hkern g1="period,ellipsis"
6131
+ g2="y,yacute,ycircumflex,ydieresis,ygrave,uni1EF9"
6132
+ k="40" />
6133
+ <hkern g1="period,ellipsis"
6134
+ g2="Y,Yacute,Ycircumflex,Ydieresis,Ygrave,uni1EF8"
6135
+ k="83" />
6136
+ <hkern g1="period,ellipsis"
6137
+ g2="w,wacute,wcircumflex,wdieresis,wgrave"
6138
+ k="34" />
6139
+ <hkern g1="period,ellipsis"
6140
+ g2="W,Wacute,Wcircumflex,Wdieresis,Wgrave"
6141
+ k="70" />
6142
+ <hkern g1="period,ellipsis"
6143
+ g2="T,Tcaron,uni0162,uni021A"
6144
+ k="80" />
6145
+ <hkern g1="period,ellipsis"
6146
+ g2="percent,perthousand"
6147
+ k="73" />
6148
+ <hkern g1="period,ellipsis"
6149
+ g2="V"
6150
+ k="80" />
6151
+ <hkern g1="k,uni0137"
6152
+ g2="c,cacute,ccaron,ccedilla,cdotaccent,d,eth,dcaron,dcroat,e,eacute,ebreve,ecaron,ecircumflex,edieresis,edotaccent,egrave,emacron,eogonek,uni1EBD,uni0259,o,oacute,obreve,ocircumflex,odieresis,ograve,ohungarumlaut,omacron,otilde,oe,q,a.ss02,aacute.ss02,abreve.ss02,acircumflex.ss02,adieresis.ss02,agrave.ss02,amacron.ss02,aogonek.ss02,aring.ss02,atilde.ss02,ae.ss02,aeacute.ss02"
6153
+ k="36" />
6154
+ <hkern g1="k,uni0137"
6155
+ g2="a,aacute,abreve,acircumflex,adieresis,agrave,amacron,aogonek,aring,atilde,ae,aeacute"
6156
+ k="4" />
6157
+ <hkern g1="k,uni0137"
6158
+ g2="s,sacute,scaron,scedilla,uni0219"
6159
+ k="29" />
6160
+ <hkern g1="k,uni0137"
6161
+ g2="g.ss03,gbreve.ss03,uni0123.ss03,gdotaccent.ss03"
6162
+ k="20" />
6163
+ <hkern g1="K,uni0136"
6164
+ g2="c,cacute,ccaron,ccedilla,cdotaccent,d,eth,dcaron,dcroat,e,eacute,ebreve,ecaron,ecircumflex,edieresis,edotaccent,egrave,emacron,eogonek,uni1EBD,uni0259,o,oacute,obreve,ocircumflex,odieresis,ograve,ohungarumlaut,omacron,otilde,oe,q,a.ss02,aacute.ss02,abreve.ss02,acircumflex.ss02,adieresis.ss02,agrave.ss02,amacron.ss02,aogonek.ss02,aring.ss02,atilde.ss02,ae.ss02,aeacute.ss02"
6165
+ k="33" />
6166
+ <hkern g1="K,uni0136"
6167
+ g2="C,Cacute,Ccaron,Ccedilla,Cdotaccent,G,Gbreve,uni0122,Gdotaccent,O,Oacute,Obreve,Ocircumflex,Odieresis,Ograve,Ohungarumlaut,Omacron,Otilde,OE,Q"
6168
+ k="41" />
6169
+ <hkern g1="K,uni0136"
6170
+ g2="a,aacute,abreve,acircumflex,adieresis,agrave,amacron,aogonek,aring,atilde,ae,aeacute"
6171
+ k="22" />
6172
+ <hkern g1="K,uni0136"
6173
+ g2="u,uacute,ubreve,ucircumflex,udieresis,ugrave,uhungarumlaut,umacron,uogonek,uring,utilde"
6174
+ k="17" />
6175
+ <hkern g1="K,uni0136"
6176
+ g2="y,yacute,ycircumflex,ydieresis,ygrave,uni1EF9"
6177
+ k="50" />
6178
+ <hkern g1="K,uni0136"
6179
+ g2="w,wacute,wcircumflex,wdieresis,wgrave"
6180
+ k="30" />
6181
+ <hkern g1="K,uni0136"
6182
+ g2="s,sacute,scaron,scedilla,uni0219"
6183
+ k="10" />
6184
+ <hkern g1="K,uni0136"
6185
+ g2="hyphen,uni00AD,endash,emdash,minus"
6186
+ k="60" />
6187
+ <hkern g1="K,uni0136"
6188
+ g2="t,tcaron,uni0163,uni021B"
6189
+ k="21" />
6190
+ <hkern g1="K,uni0136"
6191
+ g2="g.ss03,gbreve.ss03,uni0123.ss03,gdotaccent.ss03"
6192
+ k="24" />
6193
+ <hkern g1="K,uni0136"
6194
+ g2="guillemotleft,guilsinglleft"
6195
+ k="40" />
6196
+ <hkern g1="V"
6197
+ g2="c,cacute,ccaron,ccedilla,cdotaccent,d,eth,dcaron,dcroat,e,eacute,ebreve,ecaron,ecircumflex,edieresis,edotaccent,egrave,emacron,eogonek,uni1EBD,uni0259,o,oacute,obreve,ocircumflex,odieresis,ograve,ohungarumlaut,omacron,otilde,oe,q,a.ss02,aacute.ss02,abreve.ss02,acircumflex.ss02,adieresis.ss02,agrave.ss02,amacron.ss02,aogonek.ss02,aring.ss02,atilde.ss02,ae.ss02,aeacute.ss02"
6198
+ k="65" />
6199
+ <hkern g1="V"
6200
+ g2="C,Cacute,Ccaron,Ccedilla,Cdotaccent,G,Gbreve,uni0122,Gdotaccent,O,Oacute,Obreve,Ocircumflex,Odieresis,Ograve,Ohungarumlaut,Omacron,Otilde,OE,Q"
6201
+ k="27" />
6202
+ <hkern g1="V"
6203
+ g2="dotlessi,iacute,icircumflex,iogonek,m,n,nacute,ncaron,uni0146,ntilde,r,racute,rcaron,uni0157"
6204
+ k="29" />
6205
+ <hkern g1="V"
6206
+ g2="a,aacute,abreve,acircumflex,adieresis,agrave,amacron,aogonek,aring,atilde,ae,aeacute"
6207
+ k="56" />
6208
+ <hkern g1="V"
6209
+ g2="u,uacute,ubreve,ucircumflex,udieresis,ugrave,uhungarumlaut,umacron,uogonek,uring,utilde"
6210
+ k="12" />
6211
+ <hkern g1="V"
6212
+ g2="A,Aacute,Abreve,Acircumflex,Adieresis,Agrave,Amacron,Aogonek,Aring,Atilde"
6213
+ k="97" />
6214
+ <hkern g1="V"
6215
+ g2="S,Sacute,Scaron,Scedilla,uni0218,dollar"
6216
+ k="30" />
6217
+ <hkern g1="V"
6218
+ g2="s,sacute,scaron,scedilla,uni0219"
6219
+ k="57" />
6220
+ <hkern g1="V"
6221
+ g2="hyphen,uni00AD,endash,emdash,minus"
6222
+ k="39" />
6223
+ <hkern g1="V"
6224
+ g2="t,tcaron,uni0163,uni021B"
6225
+ k="20" />
6226
+ <hkern g1="V"
6227
+ g2="g.ss03,gbreve.ss03,uni0123.ss03,gdotaccent.ss03"
6228
+ k="60" />
6229
+ <hkern g1="V"
6230
+ g2="g,gbreve,uni0123,gdotaccent"
6231
+ k="61" />
6232
+ <hkern g1="V"
6233
+ g2="comma.ss01,quotesinglbase.ss01,quotedblbase.ss01"
6234
+ k="80" />
6235
+ <hkern g1="V"
6236
+ g2="period,ellipsis"
6237
+ k="80" />
6238
+ <hkern g1="V"
6239
+ g2="AE,AEacute"
6240
+ k="126" />
6241
+ </font>
6242
+ </defs></svg>
EmbedPress/Ends/Back/Settings/assets/css/fonts/DMSans-Regular.ttf ADDED
Binary file
EmbedPress/Ends/Back/Settings/assets/css/fonts/DMSans-Regular.woff ADDED
Binary file
EmbedPress/Ends/Back/Settings/assets/css/fonts/DMSans.eot ADDED
Binary file
EmbedPress/Ends/Back/Settings/assets/css/fonts/DMSans.woff2 ADDED
Binary file
EmbedPress/Ends/Back/Settings/assets/css/fonts/font.css ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @font-face {
2
+ font-family: 'DMSans-Regular';
3
+ src: url('DMSans-Regular.svg#DMSans-Regular') format('svg'),
4
+ url('DMSans-Regular.ttf') format('truetype'),
5
+ url('DMSans-Regular.woff') format('woff');
6
+ font-weight: normal;
7
+ font-style: normal;
8
+ }
9
+
10
+ @font-face {
11
+ font-family: 'DMSans';
12
+ src: url('DMSans.eot');
13
+ src: url('DMSans.eot?#iefix') format('embedded-opentype'),
14
+ url('DMSans.woff2') format('woff2');
15
+ font-weight: normal;
16
+ font-style: normal;
17
+ }
18
+
EmbedPress/Ends/Back/Settings/assets/css/style.css CHANGED
@@ -1,4 +1,23 @@
1
- @import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  :root {
3
  --base-gutter: 30px;
4
  --md-gutter: 50px;
@@ -58,7 +77,8 @@
58
  }
59
 
60
  .template__wrapper {
61
- font-family: "DM Sans", sans-serif;
 
62
  line-height: 1.7;
63
  font-weight: 400;
64
  min-height: 100vh;
@@ -138,7 +158,8 @@
138
  .template__wrapper h4,
139
  .template__wrapper h5,
140
  .template__wrapper h6 {
141
- font-family: "DM Sans", sans-serif;
 
142
  font-weight: 700;
143
  line-height: 1.3;
144
  }
@@ -356,7 +377,8 @@
356
  }
357
 
358
  .embedpress-tab .nav__menu ul .nav__item, .template__wrapper label, .iframe__size__control__form .form__group .frame__unit, .iframe__size__control__wrap h3, .embedpress__settings__form .form__group .form__label, .embedpress__settings__form .form__group .form__control__wrap p, .upgrade__card .card__content h4, .upgrade__card .card__content p, .upgrage__card__tab__style h3, .upgrage__card__tab__style p, .embedpress-license__details .license__content .thumb__area h2, .embedpress-license__details .license__content p, .embedpress-license__details .license__content ol li, .embedpress-card h3, .embedpress-card p, .element__item h5, .element__item .pro__item, .embedpress--elements__wrap h3 {
359
- font-family: "DM Sans", sans-serif;
 
360
  }
361
 
362
  .color__themeColor {
@@ -1374,7 +1396,8 @@ button.button__instagram.hover__highlight:hover .icon {
1374
  border: 1px solid rgba(91, 78, 150, 0.1);
1375
  font-size: 16px;
1376
  font-weight: 500;
1377
- font-family: "DM Sans", sans-serif;
 
1378
  cursor: pointer;
1379
  -webkit-transition: all 0.3s ease-in-out 0s;
1380
  transition: all 0.3s ease-in-out 0s;
@@ -2298,6 +2321,9 @@ button.button__instagram.hover__highlight:hover .icon {
2298
  color: #7C8DB5;
2299
  margin-top: 10px;
2300
  }
 
 
 
2301
  .embedpress__settings__form .form__group .form__control__wrap .isPro:not(.embedpress__select) {
2302
  opacity: 0.3;
2303
  }
1
+ /* @import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap"); */
2
+
3
+ @font-face {
4
+ font-family: 'DMSans-Regular';
5
+ src: url('./fonts/DMSans-Regular.svg#DMSans-Regular') format('svg'),
6
+ url('./fonts/DMSans-Regular.ttf') format('truetype'),
7
+ url('./fonts/DMSans-Regular.woff') format('woff');
8
+ font-weight: normal;
9
+ font-style: normal;
10
+ }
11
+
12
+ @font-face {
13
+ font-family: 'DMSans';
14
+ src: url('./fonts/DMSans.eot');
15
+ src: url('./fonts/DMSans.eot?#iefix') format('embedded-opentype'),
16
+ url('./fonts/DMSans.woff2') format('woff2');
17
+ font-weight: normal;
18
+ font-style: normal;
19
+ }
20
+
21
  :root {
22
  --base-gutter: 30px;
23
  --md-gutter: 50px;
77
  }
78
 
79
  .template__wrapper {
80
+ /* font-family: "DM Sans", sans-serif; */
81
+ font-family: 'DMSans';
82
  line-height: 1.7;
83
  font-weight: 400;
84
  min-height: 100vh;
158
  .template__wrapper h4,
159
  .template__wrapper h5,
160
  .template__wrapper h6 {
161
+ /* font-family: "DM Sans", sans-serif; */
162
+ font-family: 'DMSans';
163
  font-weight: 700;
164
  line-height: 1.3;
165
  }
377
  }
378
 
379
  .embedpress-tab .nav__menu ul .nav__item, .template__wrapper label, .iframe__size__control__form .form__group .frame__unit, .iframe__size__control__wrap h3, .embedpress__settings__form .form__group .form__label, .embedpress__settings__form .form__group .form__control__wrap p, .upgrade__card .card__content h4, .upgrade__card .card__content p, .upgrage__card__tab__style h3, .upgrage__card__tab__style p, .embedpress-license__details .license__content .thumb__area h2, .embedpress-license__details .license__content p, .embedpress-license__details .license__content ol li, .embedpress-card h3, .embedpress-card p, .element__item h5, .element__item .pro__item, .embedpress--elements__wrap h3 {
380
+ /* font-family: "DM Sans", sans-serif; */
381
+ font-family: 'DMSans';
382
  }
383
 
384
  .color__themeColor {
1396
  border: 1px solid rgba(91, 78, 150, 0.1);
1397
  font-size: 16px;
1398
  font-weight: 500;
1399
+ /* font-family: "DM Sans", sans-serif; */
1400
+ font-family: 'DMSans';
1401
  cursor: pointer;
1402
  -webkit-transition: all 0.3s ease-in-out 0s;
1403
  transition: all 0.3s ease-in-out 0s;
2321
  color: #7C8DB5;
2322
  margin-top: 10px;
2323
  }
2324
+ .embedpress__settings__form .form__group .form__control__wrap p.ep-note {
2325
+ font-size: 12px;
2326
+ }
2327
  .embedpress__settings__form .form__group .form__control__wrap .isPro:not(.embedpress__select) {
2328
  opacity: 0.3;
2329
  }
EmbedPress/Ends/Back/Settings/assets/img/opensea.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" fill="none" viewBox="0 0 100 100"><path fill="#2081E2" d="M100 50C100 77.6127 77.6127 100 50 100C22.3873 100 0 77.6127 0 50C0 22.3873 22.3873 0 50 0C77.6185 0 100 22.3873 100 50Z"/><path fill="#fff" d="M24.6679 51.6801L24.8836 51.341L37.8906 30.9932C38.0807 30.6953 38.5276 30.7261 38.6714 31.0497C40.8444 35.9196 42.7194 41.9762 41.841 45.7468C41.466 47.2982 40.4386 49.3992 39.2827 51.341C39.1338 51.6236 38.9694 51.901 38.7947 52.1681C38.7125 52.2914 38.5738 52.3633 38.4248 52.3633H25.048C24.6884 52.3633 24.4778 51.9729 24.6679 51.6801Z"/><path fill="#fff" d="M82.6444 55.461V58.6819C82.6444 58.8668 82.5314 59.0312 82.367 59.1031C81.3602 59.5346 77.9132 61.1168 76.48 63.11C72.8224 68.2008 70.0279 75.48 63.7812 75.48H37.721C28.4847 75.48 21 67.9697 21 58.7024V58.4045C21 58.1579 21.2003 57.9576 21.4469 57.9576H35.9745C36.2621 57.9576 36.4727 58.2247 36.4471 58.5072C36.3443 59.4524 36.519 60.4182 36.9659 61.2966C37.8289 63.0484 39.6166 64.1426 41.5481 64.1426H48.74V58.5278H41.6303C41.2656 58.5278 41.0499 58.1065 41.2605 57.8086C41.3375 57.6904 41.4249 57.5672 41.5173 57.4285C42.1903 56.473 43.1509 54.9884 44.1064 53.2983C44.7588 52.1579 45.3906 50.9404 45.8992 49.7178C46.002 49.4969 46.0841 49.2708 46.1663 49.0499C46.305 48.6595 46.4489 48.2948 46.5516 47.9301C46.6544 47.6218 46.7365 47.2982 46.8187 46.9951C47.0602 45.9574 47.1629 44.8581 47.1629 43.7177C47.1629 43.2708 47.1424 42.8033 47.1013 42.3564C47.0807 41.8684 47.0191 41.3803 46.9574 40.8923C46.9163 40.4608 46.8393 40.0344 46.7571 39.5875C46.6544 38.9351 46.5105 38.2879 46.3461 37.6354L46.2896 37.3889C46.1663 36.9419 46.0636 36.5156 45.9198 36.0687C45.5139 34.6662 45.0465 33.2998 44.5533 32.0207C44.3735 31.5121 44.168 31.0241 43.9625 30.5361C43.6595 29.8015 43.3512 29.1337 43.0687 28.5018C42.9249 28.2141 42.8016 27.9521 42.6783 27.685C42.5396 27.3819 42.3958 27.0788 42.2519 26.7912C42.1492 26.5703 42.031 26.3648 41.9488 26.1593L41.0704 24.536C40.9471 24.3151 41.1526 24.0531 41.394 24.1199L46.8907 25.6096H46.9061C46.9163 25.6096 46.9215 25.6148 46.9266 25.6148L47.6509 25.8151L48.4472 26.0412L48.74 26.1233V22.8562C48.74 21.2791 50.0037 20 51.5654 20C52.3462 20 53.0551 20.3185 53.5637 20.8373C54.0722 21.3562 54.3907 22.0651 54.3907 22.8562V27.7056L54.9764 27.8699C55.0226 27.8854 55.0688 27.9059 55.1099 27.9367C55.2538 28.0446 55.4592 28.2038 55.7212 28.3991C55.9267 28.5634 56.1476 28.7638 56.4147 28.9693C56.9438 29.3956 57.5757 29.9453 58.2692 30.5772C58.4541 30.7364 58.6339 30.9008 58.7983 31.0652C59.6922 31.8974 60.6939 32.8734 61.6494 33.9522C61.9165 34.2553 62.1785 34.5635 62.4456 34.8871C62.7127 35.2159 62.9953 35.5395 63.2418 35.8632C63.5655 36.2947 63.9148 36.7416 64.2179 37.2091C64.3617 37.43 64.5261 37.656 64.6648 37.8769C65.0552 38.4676 65.3994 39.079 65.7282 39.6903C65.8669 39.9728 66.0107 40.281 66.134 40.5841C66.4987 41.4009 66.7864 42.2331 66.9713 43.0653C67.0278 43.2451 67.0689 43.4403 67.0895 43.615V43.6561C67.1511 43.9026 67.1717 44.1646 67.1922 44.4317C67.2744 45.2845 67.2333 46.1372 67.0484 46.9951C66.9713 47.3599 66.8686 47.704 66.7453 48.0688C66.622 48.4181 66.4987 48.7828 66.3395 49.127C66.0313 49.841 65.6665 50.5551 65.235 51.2229C65.0963 51.4695 64.9319 51.7315 64.7675 51.9781C64.5877 52.24 64.4028 52.4866 64.2384 52.7281C64.0124 53.0363 63.771 53.3599 63.5244 53.6476C63.3035 53.9507 63.0775 54.2538 62.8309 54.5209C62.4867 54.9267 62.1579 55.312 61.8137 55.6819C61.6083 55.9233 61.3874 56.1699 61.1613 56.3908C60.9405 56.6373 60.7144 56.8582 60.5089 57.0637C60.1648 57.4079 59.8771 57.675 59.6356 57.8959L59.0706 58.4148C58.9884 58.4867 58.8805 58.5278 58.7675 58.5278H54.3907V64.1426H59.8976C61.1305 64.1426 62.3018 63.7059 63.247 62.9045C63.5706 62.622 64.9833 61.3994 66.6528 59.5552C66.7093 59.4935 66.7813 59.4473 66.8635 59.4268L82.0742 55.0295C82.3568 54.9473 82.6444 55.163 82.6444 55.461Z"/></svg>
EmbedPress/Ends/Back/Settings/templates/google-calendar.php CHANGED
@@ -25,8 +25,8 @@ $calendarList = Embedpress_Google_Helper::getDecoded( 'epgc_calendarlist' ); //s
25
  <p>
26
  <?php esc_html_e( 'Enter the JSON string downloaded from the Google Console.', 'embedpress'); ?>
27
  <br>
28
- <?php printf(__('Note: Create a new project in the Google developer console and make sure you set <code>%s</code> as the authorized redirect URI.', 'embedpress'), $ep_page . '&page_type=google-calendar'); ?>
29
  </p>
 
30
 
31
  </div>
32
  <?php if ( !$pro_active ) { include EMBEDPRESS_SETTINGS_PATH . 'templates/partials/alert-pro.php'; } ?>
25
  <p>
26
  <?php esc_html_e( 'Enter the JSON string downloaded from the Google Console.', 'embedpress'); ?>
27
  <br>
 
28
  </p>
29
+ <p class="ep-note"> <?php printf(__('Note: Create a new project in the Google developer console and make sure you set <code>%s</code> as the authorized redirect URI.', 'embedpress'), $ep_page . '&page_type=google-calendar'); ?></p>
30
 
31
  </div>
32
  <?php if ( !$pro_active ) { include EMBEDPRESS_SETTINGS_PATH . 'templates/partials/alert-pro.php'; } ?>
EmbedPress/Ends/Back/Settings/templates/opensea.php ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * It will be customzed for OpenSea
4
+ * All undefined vars comes from 'render_settings_page' method
5
+ * */
6
+
7
+ $opensea_settings = get_option( EMBEDPRESS_PLG_NAME.':opensea');
8
+
9
+ $os_api_key = isset( $opensea_settings['api_key']) ? $opensea_settings['api_key'] : '';
10
+ $limit = isset( $opensea_settings['limit']) ? $opensea_settings['limit'] : 9;
11
+ $orderby = isset( $opensea_settings['orderby']) ? $opensea_settings['orderby'] : 'desc';
12
+
13
+ ?>
14
+
15
+ <div class="embedpress__settings background__white radius-25 p40">
16
+ <h3><?php esc_html_e( "OpenSea Settings", "embedpress" ); ?></h3>
17
+ <div class="embedpress__settings__form">
18
+ <form action="" method="post" class="embedpress-settings-form" >
19
+ <?php
20
+ do_action( 'embedpress_before_opensea_settings_fields');
21
+ echo $nonce_field ; ?>
22
+ <div class="form__group">
23
+ <p class="form__label" ><?php esc_html_e( "OpenSea API Key", "embedpress" ); ?> </p>
24
+ <div class="form__control__wrap">
25
+ <input type="text" name="api_key" id="api_key" class="form__control" data-default="<?php echo esc_attr( $os_api_key); ?>" value="<?php echo esc_attr( $os_api_key); ?>" placeholder="<?php esc_html_e( "Enter API key", "embedpress" ); ?>" >
26
+ <p><?php echo sprintf(__( "Insert your OpenSea API key. To obtain your API key, refer to this <a class='ep-link' href='%s' target='_blank'>documentation</a>.", "embedpress" ), 'https://docs.opensea.io/reference/request-an-api-key/'); ?></p>
27
+ </div>
28
+
29
+ </div>
30
+ <div class="form__group">
31
+ <p class="form__label" ><?php esc_html_e( "NFT Item Limit", "embedpress" ); ?> </p>
32
+ <div class="form__control__wrap">
33
+ <input type="number" min="1" max="100" name="limit" id="limit" class="form__control" data-default="<?php echo esc_attr( $limit); ?>" value="<?php echo esc_attr( $limit); ?>">
34
+ <p><?php esc_html_e( "Specify the number of item you wish to show on page.", "embedpress" ); ?></p>
35
+ <p class="ep-note"><?php esc_html_e( "Note: This option takes effect only when a OpenSea collection is embedded.", "embedpress" ); ?></p>
36
+ </div>
37
+
38
+ </div>
39
+
40
+ <div class="form__group">
41
+ <p class="form__label"><?php esc_html_e( "Order By", "embedpress" ); ?></p>
42
+ <div class="form__control__wrap">
43
+ <div class="embedpress__select">
44
+ <span><i class="ep-icon ep-caret-down"></i></span>
45
+ <select name="orderby" data-default="<?php echo esc_attr($orderby); ?>">
46
+ <option value="desc" <?php selected( 'desc',$orderby); ?>><?php esc_html_e( 'Newest', 'embedpress'); ?></option>
47
+ <option value="asc" <?php selected( 'asc',$orderby); ?>><?php esc_html_e( 'Oldest', 'embedpress'); ?></option>
48
+ </select>
49
+ </div>
50
+ <p><?php esc_html_e( 'Indicates whether the video player controls are displayed.', 'embedpress'); ?> </p>
51
+ </div>
52
+ </div>
53
+
54
+ <?php do_action( 'embedpress_after_opensea_settings_fields'); ?>
55
+ <button class="button button__themeColor radius-10 embedpress-submit-btn" name="submit" value="opensea"><?php esc_html_e( 'Save Changes', 'embedpress'); ?></button>
56
+ </form>
57
+ </div>
58
+ </div>
EmbedPress/Ends/Back/Settings/templates/partials/sidebar.php CHANGED
@@ -85,6 +85,13 @@
85
 
86
  <?php esc_html_e( "Google Calendar", "embedpress" ); ?>
87
  </a>
 
 
 
 
 
 
 
88
  </li>
89
  <?php do_action( 'ep_after_platform_menu_items'); ?>
90
  </ul>
85
 
86
  <?php esc_html_e( "Google Calendar", "embedpress" ); ?>
87
  </a>
88
+ </li>
89
+ <li class="dropdown__item">
90
+ <a href="<?php echo esc_url( $ep_page.'&page_type=opensea'); ?>" class="dropdown__link <?php echo 'opensea' === $template ? 'active' : ''; ?>">
91
+ <img class="embedpress-settings-icon" src="<?php echo EMBEDPRESS_SETTINGS_ASSETS_URL; ?>img/opensea.svg" alt="">
92
+
93
+ <?php esc_html_e( "OpenSea", "embedpress" ); ?>
94
+ </a>
95
  </li>
96
  <?php do_action( 'ep_after_platform_menu_items'); ?>
97
  </ul>
EmbedPress/Ends/Back/Settings/templates/youtube.php CHANGED
@@ -47,7 +47,8 @@ $yt_sub_count = isset( $yt_settings['yt_sub_count']) ? $yt_settings['yt_sub_coun
47
  <p class="form__label" ><?php esc_html_e( "Video Per Page", "embedpress" ); ?> </p>
48
  <div class="form__control__wrap">
49
  <input type="number" min="1" max="50" name="pagesize" id="pagesize" class="form__control" data-default="<?php echo esc_attr( $pagesize); ?>" value="<?php echo esc_attr( $pagesize); ?>">
50
- <p><?php esc_html_e( "Specify the number of videos you wish to show on each page. Note: This option takes effect only when a YouTube channel is embedded.", "embedpress" ); ?></p>
 
51
  </div>
52
 
53
  </div>
@@ -93,7 +94,8 @@ $yt_sub_count = isset( $yt_settings['yt_sub_count']) ? $yt_settings['yt_sub_coun
93
  <option value="white" <?php selected( 'white', $color); ?> ><?php esc_html_e( "White", "embedpress" ); ?></option>
94
  </select>
95
  </div>
96
- <p><?php printf( esc_html__( "Specifies the color that will be used in the player's video progress bar to highlight the amount of the video that the viewer has already seen. %s Note: Setting the color to white will disable the Modest Branding option (causing a YouTube logo to be displayed in the control bar).", 'embedpress'), '<br>'); ?></p>
 
97
  </div>
98
  </div>
99
  <div class="form__group">
47
  <p class="form__label" ><?php esc_html_e( "Video Per Page", "embedpress" ); ?> </p>
48
  <div class="form__control__wrap">
49
  <input type="number" min="1" max="50" name="pagesize" id="pagesize" class="form__control" data-default="<?php echo esc_attr( $pagesize); ?>" value="<?php echo esc_attr( $pagesize); ?>">
50
+ <p><?php esc_html_e( "Specify the number of videos you wish to show on each page.", "embedpress" ); ?></p>
51
+ <p class="ep-note"><?php esc_html_e( "Note: This option takes effect only when a YouTube channel is embedded.", "embedpress" ); ?></p>
52
  </div>
53
 
54
  </div>
94
  <option value="white" <?php selected( 'white', $color); ?> ><?php esc_html_e( "White", "embedpress" ); ?></option>
95
  </select>
96
  </div>
97
+ <p><?php printf( esc_html__( "Specifies the color that will be used in the player's video progress bar to highlight the amount of the video that the viewer has already seen. %s", 'embedpress'), '<br>'); ?></p>
98
+ <p class="ep-note"><?php esc_html_e( "Note: Setting the color to white will disable the Modest Branding option (causing a YouTube logo to be displayed in the control bar)." ); ?></p>
99
  </div>
100
  </div>
101
  <div class="form__group">
EmbedPress/Providers/OpenSea.php ADDED
@@ -0,0 +1,550 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * opensea.io
5
+ *
6
+ * @package EmbedPress
7
+ * @author Alimuzzaman Alim <alimuzzamanalim@gmail.com>
8
+ * @link https://alim.dev/
9
+ *
10
+ * For the full copyright and license information, please view the LICENSE
11
+ * file that was distributed with this source code.
12
+ */
13
+
14
+ namespace EmbedPress\Providers;
15
+
16
+ use Embera\Provider\ProviderAdapter;
17
+ use Embera\Provider\ProviderInterface;
18
+ use Embera\Url;
19
+
20
+ /**
21
+ * opensea.io Provider
22
+ * @link opensea.io
23
+ */
24
+ class OpenSea extends ProviderAdapter implements ProviderInterface {
25
+ /** inline {@inheritdoc} */
26
+ protected $shouldSendRequest = false;
27
+ public static $curltimeout = 30;
28
+ /** inline {@inheritdoc} */
29
+ /** @var array Array with allowed params for the current Provider */
30
+ protected $allowedParams = [
31
+ 'maxwidth',
32
+ 'maxheight',
33
+ 'limit',
34
+ 'orderby',
35
+ 'layout',
36
+ 'preset',
37
+ 'nftperrow',
38
+ 'gapbetweenitem',
39
+ 'nftimage',
40
+ 'nftcreator',
41
+ 'prefix_nftcreator',
42
+ 'nfttitle',
43
+ 'nftprice',
44
+ 'prefix_nftprice',
45
+ 'nftlastsale',
46
+ 'prefix_nftlastsale',
47
+ 'nftbutton',
48
+ 'label_nftbutton',
49
+ 'itemBGColor',
50
+ 'titleColor',
51
+ 'titleFontsize',
52
+ 'creatorColor',
53
+ 'creatorFontsize',
54
+ 'creatorLinkColor',
55
+ 'creatorLinkFontsize',
56
+ 'priceColor',
57
+ 'priceFontsize',
58
+ 'lastSaleColor',
59
+ 'lastSaleFontsize',
60
+ 'buttonTextColor',
61
+ 'buttonBackgroundColor',
62
+ 'buttonFontSize'
63
+ ];
64
+
65
+ /** inline {@inheritdoc} */
66
+ protected static $hosts = [
67
+ 'opensea.io',
68
+ ];
69
+
70
+ /** inline {@inheritdoc} */
71
+ protected $httpsSupport = true;
72
+
73
+ public function getAllowedParams(){
74
+ return $this->allowedParams;
75
+ }
76
+
77
+ /** inline {@inheritdoc} */
78
+ public function validateUrl(Url $url) {
79
+ return (bool) (preg_match('~opensea\.io/(collection/(.*)|assets/.*[a-zA-Z0-9]+/[a-zA-Z0-9]+)~i', (string) $url));
80
+ }
81
+
82
+ /** inline {@inheritdoc} */
83
+ public function normalizeUrl(Url $url) {
84
+ return $url;
85
+ }
86
+
87
+ /** inline {@inheritdoc} */
88
+ public function isAssets($url) {
89
+ return (bool) (preg_match('~opensea\.io/assets/.*[a-zA-Z0-9]+/[a-zA-Z0-9]+~i', (string) $url));
90
+ }
91
+
92
+ /** inline {@inheritdoc} */
93
+ public function isCollection($url) {
94
+ return (bool) (preg_match('~opensea\.io/collection/(.*)~i', (string) $url));
95
+ }
96
+
97
+ protected static function get_api_key() {
98
+ $settings = (array) get_option(EMBEDPRESS_PLG_NAME . ':opensea', []);
99
+ return !empty($settings['api_key']) ? $settings['api_key'] : '';
100
+ }
101
+
102
+
103
+ public function getStaticResponse() {
104
+ $results = [
105
+ "title" => "",
106
+ "type" => "video",
107
+ 'provider_name' => $this->getProviderName(),
108
+ "provider_url" => "https://opensea.io/",
109
+ 'html' => "",
110
+ ];
111
+ $url = $this->getUrl();
112
+
113
+ if($this->isAssets($url)){
114
+ $results['html'] = $this->getAssets($url);
115
+ }
116
+ else if($this->isCollection($url)){
117
+ $results['html'] = $this->getCollection($url);
118
+ }
119
+
120
+ return $results;
121
+ }
122
+
123
+
124
+ public function getAssets($url) {
125
+ preg_match('~opensea\.io/assets/.*/([a-zA-Z0-9]+)/([a-zA-Z0-9]+)~i', (string) $url, $matches);
126
+
127
+ if(!empty($matches[1]) && !empty($matches[2])){
128
+ $params = $this->getParams();
129
+ return "
130
+ <!-- vertical=\"true\" -->
131
+ <nft-card
132
+ width=\"{$params['maxwidth']}\"
133
+ contractAddress=\"{$matches[1]}\"
134
+ tokenId=\"{$matches[2]}\">
135
+ </nft-card>
136
+ <script src=\"https://unpkg.com/embeddable-nfts/dist/nft-card.min.js\"></script>";
137
+ }
138
+ return "";
139
+ }
140
+
141
+ /**
142
+ * Get Opensea Collection assets data
143
+ */
144
+ public function getCollection($url) {
145
+ preg_match('~opensea\.io/collection/(.*)~i', (string) $url, $matches);
146
+
147
+ $opensea_settings = get_option( EMBEDPRESS_PLG_NAME.':opensea');
148
+
149
+ $api_key = 'b61c8a54123d4dcb9acc1b9c26a01cd1';
150
+ $orderby = 'desc';
151
+
152
+
153
+
154
+ if(!empty($opensea_settings['api_key'])){
155
+ $api_key = $opensea_settings['api_key'];
156
+ }
157
+ if(!empty($opensea_settings['orderby'])){
158
+ $orderby = $opensea_settings['orderby'];
159
+ }
160
+
161
+ //This limit comes from Global Opensea Settings
162
+ $limit = 9;
163
+ if(!empty($opensea_settings['limit'])){
164
+ $limit = $opensea_settings['limit'];
165
+ }
166
+
167
+
168
+ if(!empty($matches[1])){
169
+ $html = "";
170
+ $params = $this->getParams();
171
+
172
+ //This limit comes from Elementor and Gutenberg
173
+ if(! empty( $params['limit'] ) && $params['limit'] != 'false'){
174
+ $limit = $params['limit'];
175
+ }
176
+ if(! empty( $params['orderby'] ) && $params['orderby'] != 'false'){
177
+ $orderby = $params['orderby'];
178
+ }
179
+
180
+ // Embepress NFT item layout
181
+ $ep_layout = 'ep-grid';
182
+ $ep_preset= '';
183
+
184
+ if(! empty( $params['layout'] )){
185
+ $ep_layout = $params['layout'];
186
+ }
187
+
188
+ if( ! empty( $params['layout'] ) && $params['layout'] == 'ep-grid'){
189
+ if(! empty( $params['preset'] )){
190
+ $ep_preset = $params['preset'];
191
+ }
192
+ }
193
+
194
+ $param = array(
195
+ 'limit' => $limit,
196
+ 'order_direction' => $orderby,
197
+ 'collection_slug' => $matches[1],
198
+ 'include_orders' => true,
199
+ );
200
+
201
+ $url = "https://api.opensea.io/api/v1/assets?" . http_build_query($param);
202
+
203
+ $results = wp_remote_get($url, [
204
+ 'headers' => array(
205
+ 'Content-Type' => 'application/json',
206
+ 'X-API-KEY' => $api_key,
207
+ )
208
+ ]);
209
+ if (!is_wp_error($results) ) {
210
+ $jsonResult = json_decode($results['body']);
211
+ // wp_send_json($jsonResult);
212
+
213
+ // $html = print_r($jsonResult, true);
214
+ }
215
+
216
+ ob_start();
217
+ ?>
218
+
219
+ <div class="ep-parent-wrapper ep-parent-ep-nft-gallery-r1a5mbx ">
220
+ <div class="ep-nft-gallery-wrapper ep-nft-gallery-r1a5mbx" data-id="ep-nft-gallery-r1a5mbx">
221
+ <div class="ep_nft_content_wrap ep_nft__wrapper nft_items <?php echo esc_attr( $ep_layout.' '.$ep_preset ); ?>">
222
+ <?php
223
+ if(isset($jsonResult->assets) && is_array($jsonResult->assets)){
224
+ foreach ($jsonResult->assets as $key => $asset) {
225
+ $asset = $this->normalizeJSONData($asset);
226
+ $template = $this->nftItemTemplate($asset);
227
+ print_r($template);
228
+ }
229
+ }
230
+ ?>
231
+ </div>
232
+ </div>
233
+ </div>
234
+
235
+ <?php $this->openSeaStyle($this->getParams()); ?>
236
+
237
+ <?php $html = ob_get_clean();
238
+
239
+ // wp_send_json($html);
240
+
241
+ return $html;
242
+ }
243
+ return "";
244
+ }
245
+
246
+ /**
247
+ * Normalize json data
248
+ */
249
+ public function normalizeJSONData($asset){
250
+ $nftItem = [];
251
+ $nftItem['id'] = isset($asset->id)?$asset->id:'';
252
+ $nftItem['name'] = isset($asset->name)?$asset->name:'';
253
+ $nftItem['permalink'] = isset($asset->permalink)?$asset->permalink:'';
254
+ $nftItem['description'] = isset($asset->description)?$asset->description:'';
255
+ $nftItem['image_url'] = isset($asset->image_url)?$asset->image_url:'';
256
+ $nftItem['image_thumbnail_url'] = isset($asset->image_thumbnail_url)?$asset->image_thumbnail_url:'';
257
+ $nftItem['image_preview_url'] = isset($asset->image_preview_url)?$asset->image_preview_url:'';
258
+ $nftItem['image_original_url'] = isset($asset->image_original_url)?$asset->image_original_url:'';
259
+ $nftItem['created_by'] = isset($asset->creator->user->username)?$asset->creator->user->username:'';
260
+ $nftItem['creator_img_url'] = isset($asset->asset_contract->image_url)?$asset->asset_contract->image_url:'';
261
+ $nftItem['current_price'] = isset($asset->seaport_sell_orders)?$asset->seaport_sell_orders:0;
262
+ $nftItem['last_sale'] = isset($asset->last_sale->total_price)?$asset->last_sale->total_price:0;
263
+ $nftItem['creator_url'] = 'https://opensea.io/'.$nftItem['created_by'];
264
+
265
+ return $nftItem;
266
+ }
267
+
268
+ //Get colors from Gutenberg
269
+ public function getColor($datakey){
270
+ $params = $this->getParams();
271
+ $color = '';
272
+ if(!empty($params[$datakey])){
273
+ $color = $params[$datakey];
274
+ }
275
+ return $color;
276
+ }
277
+
278
+ //Get fontsize from Gutenberg
279
+ public function getFontsize($datakey){
280
+ $params = $this->getParams();
281
+ $fontsize = '';
282
+ if(!empty($params[$datakey])){
283
+ $fontsize = $params[$datakey];
284
+ }
285
+ return $fontsize;
286
+ }
287
+
288
+ // create style for Gutenberg
289
+ public function createStye($colorKey, $fontsizeKey, $bgKey){
290
+ $color = $this->getColor($colorKey);
291
+ $fontsize = $this->getFontsize($fontsizeKey);
292
+ $buttonBg = $this->getColor($bgKey);
293
+
294
+ if($color == 'true'){
295
+ $color = '';
296
+ }
297
+ if($fontsize == 'true'){
298
+ $fontsize = '';
299
+ }
300
+ if($buttonBg == 'true'){
301
+ $buttonBg = '';
302
+ }
303
+
304
+ $itemStyle = '';
305
+ $BgColor = '';
306
+ $FontSize = '';
307
+ $TextColor = '';
308
+
309
+ if(!empty($color)){
310
+ $TextColor = "color:{$color};";
311
+ }
312
+ if(!empty($fontsize)){
313
+ $FontSize = "font-size:{$fontsize}px;";
314
+ }
315
+
316
+ if(!empty($bgKey) && !empty($this->getColor($bgKey)) && !empty($buttonBg)){
317
+ $BgColor = 'background-color: '. $buttonBg;
318
+ }
319
+
320
+ if((!empty($TextColor)) || (!empty($FontSize)) || (!empty($BgColor))){
321
+ $itemStyle = $itemStyle . "style='{$TextColor}{$FontSize}{$BgColor}'";
322
+ }
323
+ return $itemStyle;
324
+ }
325
+
326
+ /**
327
+ * NFT Collection Item template
328
+ */
329
+ public function nftItemTemplate($item){
330
+
331
+ $params = $this->getParams();
332
+
333
+ $params = wp_parse_args( $params, [
334
+ 'nftimage' => true,
335
+ 'nfttitle' => true,
336
+ 'nftcreator' => true,
337
+ 'nftbutton' => true,
338
+ 'nftprice' => true,
339
+ 'nftlastsale' => true,
340
+ 'layout' => 'ep-grid',
341
+ 'preset' => 'ep-preset-2',
342
+ 'prefix_nftcreator' => 'Created By',
343
+ 'prefix_nftprice' => 'Price',
344
+ 'prefix_nftlastsale' => 'Last Sale',
345
+ 'label_nftbutton' => 'See Details'
346
+ ] );
347
+
348
+ //Intialize default value
349
+ $thumbnail = '';
350
+ $title = '';
351
+ $creator = '';
352
+ $prefix_creator = '';
353
+ $current_price = 0;
354
+ $prefix_current_price = '';
355
+ $last_sale = 0;
356
+ $prefix_last_sale = '';
357
+ $nftbutton = '';
358
+ $label_nftbutton = '';
359
+
360
+ $current_price_template = '';
361
+ $last_sale_price_template = '';
362
+
363
+ // Assgined current value
364
+ $name = $item['name'] ? $item['name'] : '#'.$item['id'];
365
+
366
+ $image_url = $item['image_url'] ? $item['image_url'] : ($item['image_thumbnail_url']?$item['image_thumbnail_url'] : ($item['image_preview_url']?$item['image_preview_url'] : $item['image_original_url']));
367
+
368
+
369
+
370
+ $img_placeholder = '
371
+ <svg viewBox="0 0 320 330" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H320V330H0V0Z" fill="url(#paint0_linear_16_5)"></path><g opacity="0.15" clip-path="url(#clip0_16_5)"><path d="M136.04 172.213C129.37 172.213 123.436 167.942 121.282 161.584L121.136 161.105C120.628 159.421 120.415 158.005 120.415 156.588V128.178L110.306 161.921C109.006 166.884 111.969 172.029 116.94 173.4L181.371 190.655C182.175 190.864 182.979 190.964 183.771 190.964C187.921 190.964 191.713 188.209 192.775 184.15L196.529 172.213H136.04Z" fill="white"></path><path d="M147.499 128.462C152.095 128.462 155.832 124.724 155.832 120.128C155.832 115.532 152.095 111.795 147.499 111.795C142.903 111.795 139.165 115.532 139.165 120.128C139.165 124.724 142.903 128.462 147.499 128.462Z" fill="white"></path><path opacity="0.5" d="M199.583 99.2943H137.081C131.34 99.2943 126.665 103.97 126.665 109.712V155.546C126.665 161.288 131.34 165.963 137.081 165.963H199.583C205.325 165.963 210 161.288 210 155.546V109.712C210 103.97 205.325 99.2943 199.583 99.2943ZM137.081 107.628H199.583C200.733 107.628 201.666 108.561 201.666 109.712V139.292L188.504 123.932C187.108 122.295 185.087 121.42 182.916 121.37C180.758 121.383 178.733 122.341 177.349 124L161.874 142.575L156.832 137.545C153.982 134.696 149.344 134.696 146.498 137.545L134.998 149.041V109.712C134.998 108.561 135.931 107.628 137.081 107.628Z" fill="white"></path></g><path d="M60.746 217.336H62.798V229H60.746V217.336ZM64.9331 220.036H66.9311V229H64.9331V220.036ZM70.7111 219.838C71.2271 219.838 71.7011 219.91 72.1331 220.054C72.5771 220.198 72.9551 220.42 73.2671 220.72C73.5911 221.008 73.8371 221.368 74.0051 221.8C74.1851 222.232 74.2751 222.742 74.2751 223.33V229H72.2771V223.726C72.2771 222.994 72.0971 222.454 71.7371 222.106C71.3891 221.746 70.8371 221.566 70.0811 221.566C69.5051 221.566 68.9771 221.692 68.4971 221.944C68.0291 222.184 67.6451 222.502 67.3451 222.898C67.0451 223.282 66.8711 223.708 66.8231 224.176L66.8051 223.204C66.8651 222.76 66.9971 222.34 67.2011 221.944C67.4051 221.536 67.6751 221.176 68.0111 220.864C68.3471 220.54 68.7431 220.288 69.1991 220.108C69.6551 219.928 70.1591 219.838 70.7111 219.838ZM77.8571 219.838C78.3851 219.838 78.8651 219.91 79.2971 220.054C79.7291 220.198 80.1011 220.42 80.4131 220.72C80.7371 221.008 80.9891 221.368 81.1691 221.8C81.3491 222.232 81.4391 222.742 81.4391 223.33V229H79.4231V223.726C79.4231 222.994 79.2431 222.454 78.8831 222.106C78.5351 221.746 77.9831 221.566 77.2271 221.566C76.6511 221.566 76.1231 221.692 75.6431 221.944C75.1751 222.184 74.7911 222.502 74.4911 222.898C74.2031 223.282 74.0351 223.708 73.9871 224.176L73.9511 223.168C74.0111 222.736 74.1491 222.322 74.3651 221.926C74.5811 221.518 74.8571 221.158 75.1931 220.846C75.5291 220.534 75.9191 220.288 76.3631 220.108C76.8191 219.928 77.3171 219.838 77.8571 219.838ZM86.9122 229.198C86.0962 229.198 85.3462 229 84.6622 228.604C83.9902 228.208 83.4502 227.662 83.0422 226.966C82.6462 226.258 82.4482 225.448 82.4482 224.536C82.4482 223.6 82.6522 222.784 83.0602 222.088C83.4682 221.38 84.0202 220.828 84.7162 220.432C85.4122 220.036 86.1922 219.838 87.0562 219.838C88.0162 219.838 88.7782 220.048 89.3422 220.468C89.9062 220.888 90.3082 221.452 90.5482 222.16C90.7882 222.868 90.9082 223.66 90.9082 224.536C90.9082 225.028 90.8362 225.55 90.6922 226.102C90.5482 226.642 90.3202 227.146 90.0082 227.614C89.7082 228.082 89.3002 228.466 88.7842 228.766C88.2802 229.054 87.6562 229.198 86.9122 229.198ZM87.5242 227.542C88.1962 227.542 88.7662 227.416 89.2342 227.164C89.7142 226.9 90.0742 226.54 90.3142 226.084C90.5662 225.628 90.6922 225.112 90.6922 224.536C90.6922 223.9 90.5662 223.36 90.3142 222.916C90.0622 222.46 89.7022 222.112 89.2342 221.872C88.7662 221.62 88.1962 221.494 87.5242 221.494C86.5642 221.494 85.8202 221.776 85.2922 222.34C84.7642 222.904 84.5002 223.636 84.5002 224.536C84.5002 225.124 84.6262 225.646 84.8782 226.102C85.1422 226.558 85.5022 226.912 85.9582 227.164C86.4142 227.416 86.9362 227.542 87.5242 227.542ZM90.6922 220.036H92.7082V229H90.8362C90.8362 229 90.8242 228.886 90.8002 228.658C90.7762 228.43 90.7522 228.154 90.7282 227.83C90.7042 227.494 90.6922 227.176 90.6922 226.876V220.036ZM98.1805 227.614C97.3405 227.614 96.5785 227.464 95.8945 227.164C95.2225 226.864 94.6885 226.426 94.2925 225.85C93.9085 225.274 93.7165 224.584 93.7165 223.78C93.7165 222.976 93.9025 222.28 94.2745 221.692C94.6585 221.104 95.1865 220.648 95.8585 220.324C96.5425 220 97.3165 219.838 98.1805 219.838C98.4325 219.838 98.6725 219.856 98.9005 219.892C99.1405 219.928 99.3685 219.976 99.5845 220.036L103.779 220.054V221.728C103.203 221.74 102.621 221.662 102.033 221.494C101.457 221.314 100.947 221.128 100.503 220.936L100.449 220.828C100.857 221.032 101.223 221.284 101.547 221.584C101.883 221.872 102.147 222.202 102.339 222.574C102.531 222.946 102.627 223.366 102.627 223.834C102.627 224.626 102.435 225.304 102.051 225.868C101.679 226.432 101.157 226.864 100.485 227.164C99.8245 227.464 99.0565 227.614 98.1805 227.614ZM101.061 232.654V232.24C101.061 231.652 100.887 231.238 100.539 230.998C100.191 230.758 99.7045 230.638 99.0805 230.638H96.6505C96.1705 230.638 95.7565 230.596 95.4085 230.512C95.0725 230.44 94.8025 230.326 94.5985 230.17C94.3945 230.026 94.2445 229.852 94.1485 229.648C94.0525 229.456 94.0045 229.24 94.0045 229C94.0045 228.52 94.1485 228.16 94.4365 227.92C94.7365 227.68 95.1265 227.524 95.6065 227.452C96.0985 227.38 96.6145 227.368 97.1545 227.416L98.1805 227.614C97.4725 227.638 96.9325 227.704 96.5605 227.812C96.2005 227.908 96.0205 228.106 96.0205 228.406C96.0205 228.586 96.0925 228.73 96.2365 228.838C96.3805 228.946 96.5845 229 96.8485 229H99.4045C100.137 229 100.779 229.084 101.331 229.252C101.883 229.432 102.309 229.726 102.609 230.134C102.921 230.554 103.077 231.124 103.077 231.844V232.654H101.061ZM98.1805 226.048C98.6605 226.048 99.0865 225.958 99.4585 225.778C99.8305 225.598 100.125 225.34 100.341 225.004C100.557 224.668 100.665 224.26 100.665 223.78C100.665 223.3 100.557 222.886 100.341 222.538C100.125 222.19 99.8305 221.926 99.4585 221.746C99.0865 221.566 98.6605 221.476 98.1805 221.476C97.7125 221.476 97.2865 221.566 96.9025 221.746C96.5305 221.926 96.2365 222.19 96.0205 222.538C95.8045 222.874 95.6965 223.288 95.6965 223.78C95.6965 224.26 95.8045 224.668 96.0205 225.004C96.2365 225.34 96.5305 225.598 96.9025 225.778C97.2745 225.958 97.7005 226.048 98.1805 226.048ZM112.044 226.048H113.97C113.874 226.66 113.634 227.206 113.25 227.686C112.878 228.154 112.368 228.526 111.72 228.802C111.072 229.066 110.298 229.198 109.398 229.198C108.378 229.198 107.466 229.012 106.662 228.64C105.858 228.256 105.228 227.716 104.772 227.02C104.316 226.324 104.088 225.496 104.088 224.536C104.088 223.588 104.31 222.76 104.754 222.052C105.198 221.344 105.81 220.798 106.59 220.414C107.382 220.03 108.294 219.838 109.326 219.838C110.394 219.838 111.282 220.03 111.99 220.414C112.71 220.786 113.244 221.35 113.592 222.106C113.94 222.85 114.084 223.792 114.024 224.932H106.122C106.182 225.436 106.344 225.892 106.608 226.3C106.884 226.696 107.256 227.008 107.724 227.236C108.192 227.452 108.738 227.56 109.362 227.56C110.058 227.56 110.64 227.422 111.108 227.146C111.588 226.87 111.9 226.504 112.044 226.048ZM109.272 221.458C108.456 221.458 107.784 221.662 107.256 222.07C106.728 222.466 106.386 222.976 106.23 223.6H112.008C111.96 222.928 111.69 222.406 111.198 222.034C110.706 221.65 110.064 221.458 109.272 221.458ZM129.585 226.876L128.973 227.11V217.336H131.007V229H128.973L120.225 219.514L120.855 219.28V229H118.803V217.336H120.855L129.585 226.876ZM137.576 229.198C136.58 229.198 135.686 229.018 134.894 228.658C134.102 228.298 133.478 227.77 133.022 227.074C132.566 226.378 132.338 225.532 132.338 224.536C132.338 223.552 132.566 222.712 133.022 222.016C133.478 221.308 134.102 220.768 134.894 220.396C135.686 220.024 136.58 219.838 137.576 219.838C138.572 219.838 139.46 220.024 140.24 220.396C141.02 220.768 141.632 221.308 142.076 222.016C142.532 222.712 142.76 223.552 142.76 224.536C142.76 225.532 142.532 226.378 142.076 227.074C141.632 227.77 141.02 228.298 140.24 228.658C139.46 229.018 138.572 229.198 137.576 229.198ZM137.576 227.56C138.152 227.56 138.68 227.446 139.16 227.218C139.64 226.99 140.018 226.648 140.294 226.192C140.582 225.736 140.726 225.184 140.726 224.536C140.726 223.888 140.582 223.336 140.294 222.88C140.018 222.424 139.64 222.076 139.16 221.836C138.692 221.584 138.164 221.458 137.576 221.458C136.988 221.458 136.454 221.578 135.974 221.818C135.494 222.058 135.104 222.406 134.804 222.862C134.516 223.318 134.372 223.876 134.372 224.536C134.372 225.184 134.516 225.736 134.804 226.192C135.092 226.648 135.476 226.99 135.956 227.218C136.448 227.446 136.988 227.56 137.576 227.56ZM143.058 220.036H149.394V221.674H143.058V220.036ZM145.218 217.624H147.234V229H145.218V217.624ZM155.582 226.264V224.518H162.53V226.264H155.582ZM152.882 229L157.976 217.336H160.172L165.302 229H163.088L158.624 218.47H159.524L155.078 229H152.882ZM169.668 227.578H168.966L172.062 220.036H174.24L170.28 229H168.372L164.466 220.036H166.662L169.668 227.578ZM178.607 229.198C177.791 229.198 177.041 229 176.357 228.604C175.685 228.208 175.145 227.662 174.737 226.966C174.341 226.258 174.143 225.448 174.143 224.536C174.143 223.6 174.347 222.784 174.755 222.088C175.163 221.38 175.715 220.828 176.411 220.432C177.107 220.036 177.887 219.838 178.751 219.838C179.711 219.838 180.473 220.048 181.037 220.468C181.601 220.888 182.003 221.452 182.243 222.16C182.483 222.868 182.603 223.66 182.603 224.536C182.603 225.028 182.531 225.55 182.387 226.102C182.243 226.642 182.015 227.146 181.703 227.614C181.403 228.082 180.995 228.466 180.479 228.766C179.975 229.054 179.351 229.198 178.607 229.198ZM179.219 227.542C179.891 227.542 180.461 227.416 180.929 227.164C181.409 226.9 181.769 226.54 182.009 226.084C182.261 225.628 182.387 225.112 182.387 224.536C182.387 223.9 182.261 223.36 182.009 222.916C181.757 222.46 181.397 222.112 180.929 221.872C180.461 221.62 179.891 221.494 179.219 221.494C178.259 221.494 177.515 221.776 176.987 222.34C176.459 222.904 176.195 223.636 176.195 224.536C176.195 225.124 176.321 225.646 176.573 226.102C176.837 226.558 177.197 226.912 177.653 227.164C178.109 227.416 178.631 227.542 179.219 227.542ZM182.387 220.036H184.403V229H182.531C182.531 229 182.519 228.886 182.495 228.658C182.471 228.43 182.447 228.154 182.423 227.83C182.399 227.494 182.387 227.176 182.387 226.876V220.036ZM188.219 216.238V218.164H185.825V216.238H188.219ZM186.005 220.036H188.021V229H186.005V220.036ZM189.874 216.436H191.872V229H189.874V216.436ZM197.576 229.198C196.76 229.198 196.01 229 195.326 228.604C194.654 228.208 194.114 227.662 193.706 226.966C193.31 226.258 193.112 225.448 193.112 224.536C193.112 223.6 193.316 222.784 193.724 222.088C194.132 221.38 194.684 220.828 195.38 220.432C196.076 220.036 196.856 219.838 197.72 219.838C198.68 219.838 199.442 220.048 200.006 220.468C200.57 220.888 200.972 221.452 201.212 222.16C201.452 222.868 201.572 223.66 201.572 224.536C201.572 225.028 201.5 225.55 201.356 226.102C201.212 226.642 200.984 227.146 200.672 227.614C200.372 228.082 199.964 228.466 199.448 228.766C198.944 229.054 198.32 229.198 197.576 229.198ZM198.188 227.542C198.86 227.542 199.43 227.416 199.898 227.164C200.378 226.9 200.738 226.54 200.978 226.084C201.23 225.628 201.356 225.112 201.356 224.536C201.356 223.9 201.23 223.36 200.978 222.916C200.726 222.46 200.366 222.112 199.898 221.872C199.43 221.62 198.86 221.494 198.188 221.494C197.228 221.494 196.484 221.776 195.956 222.34C195.428 222.904 195.164 223.636 195.164 224.536C195.164 225.124 195.29 225.646 195.542 226.102C195.806 226.558 196.166 226.912 196.622 227.164C197.078 227.416 197.6 227.542 198.188 227.542ZM201.356 220.036H203.372V229H201.5C201.5 229 201.488 228.886 201.464 228.658C201.44 228.43 201.416 228.154 201.392 227.83C201.368 227.494 201.356 227.176 201.356 226.876V220.036ZM210.774 229.198C210.03 229.198 209.4 229.054 208.884 228.766C208.38 228.466 207.972 228.082 207.66 227.614C207.36 227.146 207.138 226.642 206.994 226.102C206.862 225.55 206.796 225.028 206.796 224.536C206.796 223.876 206.862 223.264 206.994 222.7C207.126 222.136 207.342 221.644 207.642 221.224C207.954 220.792 208.362 220.456 208.866 220.216C209.382 219.964 210.018 219.838 210.774 219.838C211.638 219.838 212.4 220.036 213.06 220.432C213.732 220.828 214.26 221.38 214.644 222.088C215.04 222.784 215.238 223.6 215.238 224.536C215.238 225.448 215.04 226.258 214.644 226.966C214.248 227.662 213.714 228.208 213.042 228.604C212.37 229 211.614 229.198 210.774 229.198ZM210.162 227.542C210.774 227.542 211.302 227.416 211.746 227.164C212.202 226.912 212.556 226.558 212.808 226.102C213.06 225.646 213.186 225.124 213.186 224.536C213.186 223.636 212.922 222.904 212.394 222.34C211.866 221.764 211.122 221.476 210.162 221.476C209.502 221.476 208.932 221.602 208.452 221.854C207.984 222.106 207.624 222.46 207.372 222.916C207.132 223.36 207.012 223.9 207.012 224.536C207.012 225.112 207.132 225.628 207.372 226.084C207.624 226.54 207.984 226.9 208.452 227.164C208.92 227.416 209.49 227.542 210.162 227.542ZM207.012 216.436V226.876C207.012 227.2 206.994 227.566 206.958 227.974C206.922 228.382 206.886 228.724 206.85 229H204.996V216.436H207.012ZM216.454 216.436H218.452V229H216.454V216.436ZM227.648 226.048H229.574C229.478 226.66 229.238 227.206 228.854 227.686C228.482 228.154 227.972 228.526 227.324 228.802C226.676 229.066 225.902 229.198 225.002 229.198C223.982 229.198 223.07 229.012 222.266 228.64C221.462 228.256 220.832 227.716 220.376 227.02C219.92 226.324 219.692 225.496 219.692 224.536C219.692 223.588 219.914 222.76 220.358 222.052C220.802 221.344 221.414 220.798 222.194 220.414C222.986 220.03 223.898 219.838 224.93 219.838C225.998 219.838 226.886 220.03 227.594 220.414C228.314 220.786 228.848 221.35 229.196 222.106C229.544 222.85 229.688 223.792 229.628 224.932H221.726C221.786 225.436 221.948 225.892 222.212 226.3C222.488 226.696 222.86 227.008 223.328 227.236C223.796 227.452 224.342 227.56 224.966 227.56C225.662 227.56 226.244 227.422 226.712 227.146C227.192 226.87 227.504 226.504 227.648 226.048ZM224.876 221.458C224.06 221.458 223.388 221.662 222.86 222.07C222.332 222.466 221.99 222.976 221.834 223.6H227.612C227.564 222.928 227.294 222.406 226.802 222.034C226.31 221.65 225.668 221.458 224.876 221.458ZM244.936 217.336L240.184 225.202V229H238.132V225.202L233.38 217.336H235.738L239.752 224.212H238.636L242.596 217.336H244.936ZM251.486 226.048H253.412C253.316 226.66 253.076 227.206 252.692 227.686C252.32 228.154 251.81 228.526 251.162 228.802C250.514 229.066 249.74 229.198 248.84 229.198C247.82 229.198 246.908 229.012 246.104 228.64C245.3 228.256 244.67 227.716 244.214 227.02C243.758 226.324 243.53 225.496 243.53 224.536C243.53 223.588 243.752 222.76 244.196 222.052C244.64 221.344 245.252 220.798 246.032 220.414C246.824 220.03 247.736 219.838 248.768 219.838C249.836 219.838 250.724 220.03 251.432 220.414C252.152 220.786 252.686 221.35 253.034 222.106C253.382 222.85 253.526 223.792 253.466 224.932H245.564C245.624 225.436 245.786 225.892 246.05 226.3C246.326 226.696 246.698 227.008 247.166 227.236C247.634 227.452 248.18 227.56 248.804 227.56C249.5 227.56 250.082 227.422 250.55 227.146C251.03 226.87 251.342 226.504 251.486 226.048ZM248.714 221.458C247.898 221.458 247.226 221.662 246.698 222.07C246.17 222.466 245.828 222.976 245.672 223.6H251.45C251.402 222.928 251.132 222.406 250.64 222.034C250.148 221.65 249.506 221.458 248.714 221.458ZM253.757 220.036H260.093V221.674H253.757V220.036ZM255.917 217.624H257.933V229H255.917V217.624Z" fill="white"></path><defs><linearGradient id="paint0_linear_16_5" x1="326.4" y1="1.29268e-05" x2="-63.6095" y2="214.16" gradientUnits="userSpaceOnUse"><stop stop-color="#275EFF"></stop><stop offset="1" stop-color="#A913FF"></stop></linearGradient><clipPath id="clip0_16_5"><rect width="100" height="100" fill="white" transform="translate(110 95)"></rect></clipPath></defs></svg>
372
+ ';
373
+
374
+ if(empty($image_url)){
375
+ $img_thumb = $img_placeholder;
376
+ }
377
+ else{
378
+ $img_thumb = '<img
379
+ src="'.esc_url($image_url).'"
380
+ alt="'.esc_attr($name).'">';
381
+ }
382
+
383
+ $created_by = $item['created_by'];
384
+
385
+ $creator_img_url = $item['creator_img_url'];
386
+
387
+ $current_price = $item['current_price']?(float)($item['current_price'][0]->current_price / 1000000000000000000) : 0;
388
+
389
+ if(!empty($item['last_sale'] && $item['last_sale'] > 0) ){
390
+ $last_sale = (float) $item['last_sale'] / 1000000000000000000;
391
+ }
392
+
393
+ // Checked and assigned prefix text value
394
+ if(!empty($params['prefix_nftcreator']) && $params['prefix_nftcreator'] != 'false' && $params['prefix_nftcreator'] != 'true'){
395
+ $prefix_creator = $params['prefix_nftcreator'];
396
+ }
397
+
398
+ if(!empty($params['prefix_nftprice']) && $params['prefix_nftprice'] != 'false' && $params['prefix_nftprice'] != 'true'){
399
+ $prefix_current_price = $params['prefix_nftprice'];
400
+ }
401
+ if(!empty($params['prefix_nftlastsale']) && $params['prefix_nftlastsale'] != 'false' && $params['prefix_nftlastsale'] != 'true'){
402
+ $prefix_last_sale = $params['prefix_nftlastsale'];
403
+ }
404
+ if(!empty($params['label_nftbutton']) && $params['label_nftbutton'] != 'false' && $params['label_nftbutton'] != 'true'){
405
+ $label_nftbutton = $params['label_nftbutton'];
406
+ }
407
+
408
+ $eth_icon = '
409
+ <svg width="1535" height="2500" viewBox="0 0 256 417"
410
+ xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid">
411
+ <path fill="#343434"
412
+ d="m127.961 0-2.795 9.5v275.668l2.795 2.79 127.962-75.638z"></path>
413
+ <path fill="#8C8C8C" d="M127.962 0 0 212.32l127.962 75.639V154.158z"></path>
414
+ <path fill="#3C3C3B"
415
+ d="m127.961 312.187-1.575 1.92v98.199l1.575 4.6L256 236.587z"></path>
416
+ <path fill="#8C8C8C" d="M127.962 416.905v-104.72L0 236.585z"></path>
417
+ <path fill="#141414" d="m127.961 287.958 127.96-75.637-127.96-58.162z"></path>
418
+ <path fill="#393939" d="m0 212.32 127.96 75.638v-133.8z"></path>
419
+ </svg>
420
+ ';
421
+
422
+
423
+ if(!empty($current_price) && (($current_price > 0) && (($params['nftprice'] == 'yes') || ($params['nftprice'] == 'true')))){
424
+ $current_price_template = '
425
+ <div class="ep_nft_price ep_current_price" '.$this->createStye('priceColor', 'priceFontsize', '').'>
426
+ <span class="eb_nft_label">'.esc_html($prefix_current_price).'</span>
427
+ <span class="eb_nft_currency">'.$eth_icon.'</span>
428
+ <span class="eb_nft_price">'. esc_html(round($current_price, 4)).'</span>
429
+ </div>
430
+ ';
431
+ }
432
+
433
+ if(!empty($last_sale) && (($last_sale > 0) && (($params['nftlastsale'] == 'yes') || ($params['nftlastsale'] == 'true')))){
434
+ $last_sale_price_template = '
435
+ <div class="ep_nft_price ep_nft_last_sale" '.$this->createStye('lastSaleColor', 'lastSaleFontsize', '').'>
436
+ <span class="eb_nft_label">'.esc_html($prefix_last_sale).'</span>
437
+ <span class="eb_nft_currency">'.$eth_icon.'</span>
438
+ <span class="eb_nft_price">'. esc_html(round($last_sale, 4)).'</span>
439
+ </div>
440
+ ';
441
+ }
442
+
443
+
444
+ if(($params['nftimage'] == 'yes') || ($params['nftimage'] == 'true')):
445
+ $thumbnail = '<div class="ep_nft_thumbnail">'.$img_thumb.'</div>';
446
+ endif;
447
+
448
+ if((($params['nftcreator'] == 'yes') || ($params['nftcreator'] == 'true')) && !empty($created_by)):
449
+ $creator = '<div class="ep_nft_owner_wrapper">
450
+ <div class="ep_nft_creator"><img
451
+ src="'.esc_url($creator_img_url).'"
452
+ alt="'.esc_attr($created_by).'"><span '.$this->createStye('creatorColor', 'creatorFontsize', '').'>'.esc_html($prefix_creator).' <a target="_blank"
453
+ href="'.esc_url($item['creator_url']).'" '.$this->createStye('creatorLinkColor', 'creatorLinkFontsize', '').'>'.esc_html($created_by).'</a></span>
454
+ </div>
455
+ </div>';
456
+ endif;
457
+
458
+ if(($params['nfttitle'] == 'yes') || ($params['nfttitle'] == 'true')):
459
+ $title = ' <h3 class="ep_nft_title" '.$this->createStye('titleColor', 'titleFontsize', '').'>'.esc_html($name).'</h3>';
460
+ endif;
461
+
462
+ if(($params['nftbutton'] == 'yes') || ($params['nftbutton'] == 'true')):
463
+ $nftbutton = '<div class="ep_nft_button">
464
+ <a target="_blank" href="'.esc_url($item['permalink']).'" '.$this->createStye('buttonTextColor', 'buttonFontSize', 'buttonBackgroundColor').'>'.esc_html($label_nftbutton).'</a>
465
+ </div>';
466
+ endif;
467
+
468
+ $innerNFTbutton = '';
469
+ $outterNFTbutton = '';
470
+ if(isset($params['layout']) && $params['layout'] == 'ep-grid'){
471
+ $outterNFTbutton = $nftbutton;
472
+ }
473
+ else if(isset($params['layout']) && $params['layout'] == 'ep-list'){
474
+ $innerNFTbutton = $nftbutton;
475
+ }
476
+ else{
477
+ $outterNFTbutton = $nftbutton;
478
+ }
479
+
480
+ $itemBGColor = $this->createStye('', '', 'itemBGColor');
481
+
482
+ $template = '
483
+ <div class="ep_nft_item" '.$itemBGColor.'>
484
+ '.$thumbnail.'
485
+ <div class="ep_nft_content">
486
+ '.$title.'
487
+ <div class="ep_nft_content_body">
488
+ '.$creator.'
489
+ <div class="ep_nft_price_wrapper">
490
+ '.$current_price_template.'
491
+ '.$last_sale_price_template.'
492
+ </div>
493
+ </div>
494
+ '.$innerNFTbutton.'
495
+ </div>
496
+ '.$outterNFTbutton.'
497
+ </div>
498
+ ';
499
+
500
+
501
+ return $template;
502
+ }
503
+
504
+ /** inline {@inheritdoc} */
505
+ public function getFakeResponse() {
506
+ return [
507
+ 'type' => 'video',
508
+ 'provider_name' => $this->getProviderName(),
509
+ 'provider_url' => 'https://opensea.io/',
510
+ 'title' => 'Unknown title',
511
+ 'html' => '',
512
+ ];
513
+ }
514
+
515
+ public function openSeaStyle($params){
516
+
517
+ if(isset($params['gapbetweenitem'])){
518
+ $gap = $params['gapbetweenitem'];
519
+ }
520
+ else{
521
+ $gap = 30;
522
+ }
523
+
524
+ if(isset($params['nftperrow'])){
525
+ $itemperrow = $params['nftperrow'];
526
+ }
527
+ else{
528
+ $itemperrow = 3;
529
+ }
530
+
531
+ if(!empty($itemperrow) && (int)$itemperrow > 0 && $itemperrow != 'auto'){
532
+ $nftperrow = 'calc('.(100 / (int) $itemperrow).'% - '.$gap.'px)';
533
+ }
534
+ else{
535
+ $nftperrow = 'auto';
536
+ }
537
+
538
+ $uniqid = '.ose-uid-'.md5($this->getUrl());
539
+ ?>
540
+
541
+ <style>
542
+ <?php echo esc_html($uniqid); ?> .ep_nft_content_wrap {
543
+ grid-template-columns: repeat(auto-fit, minmax(<?php echo esc_html($nftperrow); ?>, 1fr));
544
+ gap: <?php echo esc_html($gap); ?>px;
545
+ }
546
+ </style>
547
+ <?php
548
+ }
549
+
550
+ }
EmbedPress/Providers/Youtube.php CHANGED
@@ -590,7 +590,7 @@ class Youtube extends ProviderAdapter implements ProviderInterface {
590
 
591
  public static function styles($params, $url){
592
 
593
- $uniqid = '.ose-uid-'.md5($url);
594
 
595
  ob_start();
596
  ?>
590
 
591
  public static function styles($params, $url){
592
 
593
+ $uniqid = '.ose-youtube.ose-uid-'.md5($url);
594
 
595
  ob_start();
596
  ?>
EmbedPress/Shortcode.php CHANGED
@@ -349,9 +349,6 @@ KAMAL;
349
  }
350
  }
351
 
352
-
353
-
354
-
355
  return $subject;
356
  }
357
 
349
  }
350
  }
351
 
 
 
 
352
  return $subject;
353
  }
354
 
Gutenberg/dist/blocks.build.js CHANGED
@@ -1 +1 @@
1
- !function(e){function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,t),o.l=!0,o.exports}var n={};t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=7)}([function(e,t,n){"use strict";n.d(t,"e",function(){return l}),n.d(t,"j",function(){return s}),n.d(t,"i",function(){return c}),n.d(t,"g",function(){return p}),n.d(t,"f",function(){return u}),n.d(t,"h",function(){return m}),n.d(t,"k",function(){return d}),n.d(t,"l",function(){return f}),n.d(t,"m",function(){return h}),n.d(t,"b",function(){return b}),n.d(t,"d",function(){return w}),n.d(t,"c",function(){return y}),n.d(t,"a",function(){return v});var r=wp.components,o=r.G,i=r.Path,a=(r.Polygon,r.SVG),l=wp.element.createElement(a,{xmlns:"http://www.w3.org/1999/xlink",viewBox:"0 0 48 48"}," ",wp.element.createElement(o,null,wp.element.createElement(i,{style:{fill:"#2196F3"},d:"M 37 45 L 11 45 C 9.34375 45 8 43.65625 8 42 L 8 6 C 8 4.34375 9.34375 3 11 3 L 30 3 L 40 13 L 40 42 C 40 43.65625 38.65625 45 37 45 Z "}),wp.element.createElement(i,{style:{fill:"#BBDEFB"},d:"M 40 13 L 30 13 L 30 3 Z "}),wp.element.createElement(i,{style:{fill:"#1565C0"},d:"M 30 13 L 40 23 L 40 13 Z "}),wp.element.createElement(i,{style:{fill:"#E3F2FD"},d:"M 15 23 L 33 23 L 33 25 L 15 25 Z "}),wp.element.createElement(i,{style:{fill:"#E3F2FD"},d:"M 15 27 L 33 27 L 33 29 L 15 29 Z "}),wp.element.createElement(i,{style:{fill:"#E3F2FD"},d:"M 15 31 L 33 31 L 33 33 L 15 33 Z "}),wp.element.createElement(i,{style:{fill:"#E3F2FD"},d:"M 15 35 L 25 35 L 25 37 L 15 37 Z "}))),s=wp.element.createElement(a,{xmlns:"http://www.w3.org/1999/xlink",enableBackground:"new 0 0 24 24",id:"Layer_2",version:"1.1",viewBox:"0 0 24 24"},wp.element.createElement(o,null,wp.element.createElement(i,{d:"M21,6l-6-6H5C3.8954306,0,3,0.8954305,3,2v20c0,1.1045704,0.8954306,2,2,2h14c1.1045704,0,2-0.8954296,2-2 V6z",style:{fill:"#FFC720"}}),wp.element.createElement(i,{d:"M17,6c-0.5444336,0-1.0367432-0.2190552-1.3973999-0.5719604L21,10.8254395V6H17z",style:{fill:"url(#SVGID_1_)"}}),wp.element.createElement(i,{d:"M19,23.75H5c-1.1045532,0-2-0.8954468-2-2V22c0,1.1045532,0.8954468,2,2,2h14c1.1045532,0,2-0.8954468,2-2 v-0.25C21,22.8545532,20.1045532,23.75,19,23.75z",style:{opacity:"0.1"}}),wp.element.createElement(i,{d:"M15,0v4c0,1.1045694,0.8954306,2,2,2h4L15,0z",style:{fill:"#FFE083"}}),wp.element.createElement(i,{d:"M17,5.75c-1.1045532,0-2-0.8954468-2-2V4c0,1.1045532,0.8954468,2,2,2h4l-0.25-0.25H17z",style:{opacity:"0.1"}}),wp.element.createElement(i,{d:"M15,0H5C3.8954468,0,3,0.8953857,3,2v0.25c0-1.1046143,0.8954468-2,2-2h10",style:{fill:"#FFFFFF",opacity:"0.2"}}),wp.element.createElement(i,{d:"M15.5,9h-7C7.6728516,9,7,9.6728516,7,10.5v6C7,17.3271484,7.6728516,18,8.5,18h7 c0.8271484,0,1.5-0.6728516,1.5-1.5v-6C17,9.6728516,16.3271484,9,15.5,9z M8,15.5V11h8v4.5H8z",style:{fill:"#FFFFFF"}}),wp.element.createElement(i,{d:"M21,6l-6-6H5C3.8954306,0,3,0.8954305,3,2v20c0,1.1045704,0.8954306,2,2,2h14 c1.1045704,0,2-0.8954296,2-2V6z",style:{fill:"url(#SVGID_2_)"}}))),c=wp.element.createElement(a,{xmlns:"http://www.w3.org/1999/xlink",viewBox:"0 0 48 48",version:"1.1"},wp.element.createElement(o,null,wp.element.createElement(i,{style:{fill:"#43A047"},d:"M 37 45 L 11 45 C 9.34375 45 8 43.65625 8 42 L 8 6 C 8 4.34375 9.34375 3 11 3 L 30 3 L 40 13 L 40 42 C 40 43.65625 38.65625 45 37 45 Z "}),wp.element.createElement(i,{style:{fill:"#C8E6C9"},d:"M 40 13 L 30 13 L 30 3 Z "}),wp.element.createElement(i,{style:{fill:"#2E7D32"},d:"M 30 13 L 40 23 L 40 13 Z "}),wp.element.createElement(i,{style:{fill:"#E8F5E9"},d:"M 31 23 L 15 23 L 15 37 L 33 37 L 33 23 Z M 17 25 L 21 25 L 21 27 L 17 27 Z M 17 29 L 21 29 L 21 31 L 17 31 Z M 17 33 L 21 33 L 21 35 L 17 35 Z M 31 35 L 23 35 L 23 33 L 31 33 Z M 31 31 L 23 31 L 23 29 L 31 29 Z M 31 27 L 23 27 L 23 25 L 31 25 Z "}))),p=wp.element.createElement(a,{xmlns:"http://www.w3.org/1999/xlink",viewBox:"0 0 48 48",version:"1.1"}," ",wp.element.createElement(o,null,wp.element.createElement(i,{style:{fill:"#7850C1"},d:"M 37 45 L 11 45 C 9.34375 45 8 43.65625 8 42 L 8 6 C 8 4.34375 9.34375 3 11 3 L 30 3 L 40 13 L 40 42 C 40 43.65625 38.65625 45 37 45 Z "}),wp.element.createElement(i,{style:{fill:"#C2ABE1"},d:"M 40 13 L 30 13 L 30 3 Z "}),wp.element.createElement(i,{style:{fill:"#2E7D32"},d:"M 30 13 L 40 23 L 40 13 Z "}),wp.element.createElement(i,{style:{fill:"#E8F5E9"},d:"M 19 23 L 33 23 L 33 25 L 19 25 Z "}),wp.element.createElement(i,{style:{fill:"#E8F5E9"},d:"M 19 28 L 33 28 L 33 30 L 19 30 Z "}),wp.element.createElement(i,{style:{fill:"#E8F5E9"},d:"M 19 33 L 33 33 L 33 35 L 19 35 Z "}),wp.element.createElement(i,{style:{fill:"#E8F5E9"},d:"M 15 23 L 17 23 L 17 25 L 15 25 Z "}),wp.element.createElement(i,{style:{fill:"#E8F5E9"},d:"M 15 28 L 17 28 L 17 30 L 15 30 Z "}),wp.element.createElement(i,{style:{fill:"#E8F5E9"},d:"M 15 33 L 17 33 L 17 35 L 15 35 Z "}))),u=wp.element.createElement(a,{xmlns:"http://www.w3.org/1999/xlink",viewBox:"0 0 48 48",version:"1.1"}," ",wp.element.createElement(o,null,wp.element.createElement(i,{style:{fill:"#DE5245"},d:"M37,45H11c-1.7,0-3-1.3-3-3V6c0-1.7,1.3-3,3-3h19l10,10v29C40,43.7,38.7,45,37,45z"}),wp.element.createElement(i,{style:{fill:"#EEA6A0"},d:"M40,13H30V3L40,13z"}),wp.element.createElement(i,{style:{fill:"#B3433A"},d:"M30,13l10,10V13H30z"}),wp.element.createElement(i,{style:{fill:"#FFFFFF"},d:"M20.5,32c-3,0-5.5-2.5-5.5-5.5c0-3,2.5-5.5,5.5-5.5s5.5,2.5,5.5,5.5C26,29.5,23.5,32,20.5,32z M20.5,23c-1.9,0-3.5,1.6-3.5,3.5s1.6,3.5,3.5,3.5s3.5-1.6,3.5-3.5S22.4,23,20.5,23z"}),wp.element.createElement(i,{style:{fill:"#FFFFFF"},d:"M27.6,29c-0.6,1.8-1.9,3.3-3.6,4.1V38h9v-9H27.6z"}))),m=wp.element.createElement(a,{xmlns:"http://www.w3.org/1999/xlink",viewBox:"0 0 48 48",version:"1.1"}," ",wp.element.createElement(o,null,wp.element.createElement(i,{style:{fill:"#1C9957"},d:"M 42 39 L 42 9 C 42 7.34375 40.65625 6 39 6 L 9 6 C 7.34375 6 6 7.34375 6 9 L 6 39 C 6 40.65625 7.34375 42 9 42 L 39 42 C 40.65625 42 42 40.65625 42 39 Z "}),wp.element.createElement(i,{style:{fill:"#3E7BF1"},d:"M 9 42 L 39 42 C 40.65625 42 24 26 24 26 C 24 26 7.34375 42 9 42 Z "}),wp.element.createElement(i,{style:{fill:"#CBCCC9"},d:"M 42 39 L 42 9 C 42 7.34375 26 24 26 24 C 26 24 42 40.65625 42 39 Z "}),wp.element.createElement(i,{style:{fill:"#EFEFEF"},d:"M 39 42 C 40.65625 42 42 40.65625 42 39 L 42 38.753906 L 26.246094 23 L 23 26.246094 L 38.753906 42 Z "}),wp.element.createElement(i,{style:{fill:"#FFD73D"},d:"M 42 9 C 42 7.34375 40.65625 6 39 6 L 38.753906 6 L 6 38.753906 L 6 39 C 6 40.65625 7.34375 42 9 42 L 9.246094 42 L 42 9.246094 Z "}),wp.element.createElement(i,{style:{fill:"#D73F35"},d:"M 36 2 C 30.476563 2 26 6.476563 26 12 C 26 18.8125 33.664063 21.296875 35.332031 31.851563 C 35.441406 32.53125 35.449219 33 36 33 C 36.550781 33 36.558594 32.53125 36.667969 31.851563 C 38.335938 21.296875 46 18.8125 46 12 C 46 6.476563 41.523438 2 36 2 Z "}),wp.element.createElement(i,{style:{fill:"#752622"},d:"M 39.5 12 C 39.5 13.933594 37.933594 15.5 36 15.5 C 34.066406 15.5 32.5 13.933594 32.5 12 C 32.5 10.066406 34.066406 8.5 36 8.5 C 37.933594 8.5 39.5 10.066406 39.5 12 Z "}),wp.element.createElement(i,{style:{fill:"#FFFFFF"},d:"M 14.492188 12.53125 L 14.492188 14.632813 L 17.488281 14.632813 C 17.09375 15.90625 16.03125 16.816406 14.492188 16.816406 C 12.660156 16.816406 11.175781 15.332031 11.175781 13.5 C 11.175781 11.664063 12.660156 10.179688 14.492188 10.179688 C 15.316406 10.179688 16.070313 10.484375 16.648438 10.980469 L 18.195313 9.433594 C 17.21875 8.542969 15.921875 8 14.492188 8 C 11.453125 8 8.992188 10.464844 8.992188 13.5 C 8.992188 16.535156 11.453125 19 14.492188 19 C 19.304688 19 20.128906 14.683594 19.675781 12.539063 Z "}))),d=wp.element.createElement(a,{xmlns:"http://www.w3.org/1999/xlink",viewBox:"0 0 48 48",version:"1.1"}," ",wp.element.createElement(o,null,wp.element.createElement(i,{style:{fill:"#FFFFFF"},d:"M 12 32 L 12 8 L 39 8 L 39 26 L 33 32 L 24 32 L 18 38 L 18 32 Z "}),wp.element.createElement(i,{style:{fill:"#8E24AA"},d:"M 9 5 L 6 12.121094 L 6 38 L 15 38 L 15 43 L 20 43 L 25 38 L 32 38 L 42 28 L 42 5 Z M 38 26 L 33 31 L 24 31 L 19 36 L 19 31 L 13 31 L 13 9 L 38 9 Z "}),wp.element.createElement(i,{style:{fill:"#8E24AA"},d:"M 32 25 L 27 25 L 27 15 L 32 15 Z "}),wp.element.createElement(i,{style:{fill:"#8E24AA"},d:"M 24 25 L 19 25 L 19 15 L 24 15 Z "}))),f=wp.element.createElement(a,{xmlns:"http://www.w3.org/1999/xlink",viewBox:"0 0 769 598",version:"1.1"}," ",wp.element.createElement(o,null,wp.element.createElement(i,{style:{fill:"#148ee0"},d:"M766.89,229.17c0,0 -17.78,35.38 -106.5,91.3c-37.82,23.79 -116.36,49.1 -217.33,58.86c-54.52,5.29 -154.9,0.99 -197.96,0.99c-43.29,0 -63.13,9.12 -101.95,52.84c-143.15,161.36 -143.15,161.36 -143.15,161.36c0,0 49.57,0.24 87.01,0.24c37.43,0 271.55,13.59 375.43,-14.98c337.36,-92.72 304.46,-350.62 304.46,-350.62z"}),wp.element.createElement(i,{style:{fill:"#54bbff"},d:"M757.84,126.66c16.23,-98.97 -39.68,-126.16 -39.68,-126.16c0,0 2.36,80.57 -145.7,97.65c-131.42,15.16 -572.46,3.74 -572.46,3.74c0,0 0,0 141.74,162.54c38.39,44.06 58.76,49.17 101.92,52.22c43.16,2.89 138.42,1.86 202.99,-3.05c70.58,-5.41 171.17,-28.43 239.19,-81.11c34.88,-26.98 65.21,-64.48 72,-105.83z"}))),h=wp.element.createElement(a,{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",role:"img","aria-hidden":"true",focusable:"false"},wp.element.createElement(i,{d:"M21.8 8s-.195-1.377-.795-1.984c-.76-.797-1.613-.8-2.004-.847-2.798-.203-6.996-.203-6.996-.203h-.01s-4.197 0-6.996.202c-.39.046-1.242.05-2.003.846C2.395 6.623 2.2 8 2.2 8S2 9.62 2 11.24v1.517c0 1.618.2 3.237.2 3.237s.195 1.378.795 1.985c.76.797 1.76.77 2.205.855 1.6.153 6.8.2 6.8.2s4.203-.005 7-.208c.392-.047 1.244-.05 2.005-.847.6-.607.795-1.985.795-1.985s.2-1.618.2-3.237v-1.517C22 9.62 21.8 8 21.8 8zM9.935 14.595v-5.62l5.403 2.82-5.403 2.8z"})),b=(wp.element.createElement("svg",{version:"1.1",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 56 23"},wp.element.createElement("g",null,wp.element.createElement("g",null,wp.element.createElement("path",{style:{fill:"#DA2B28"},className:"st0",d:"M55.4,3.7c-0.2-0.9-0.6-1.6-1.3-2.2c-0.7-0.6-1.4-0.9-2.3-1c-2.7-0.3-6.8-0.4-12.3-0.4 c-5.5,0-9.6,0.1-12.3,0.4c-0.9,0.1-1.6,0.5-2.3,1c-0.7,0.6-1.1,1.3-1.3,2.2c-0.4,1.7-0.6,4.3-0.6,7.8c0,3.5,0.2,6.1,0.6,7.8 c0.2,0.9,0.6,1.6,1.3,2.2c0.7,0.6,1.4,0.9,2.3,1c2.7,0.3,6.8,0.5,12.3,0.5c5.5,0,9.6-0.2,12.3-0.5c0.9-0.1,1.6-0.4,2.3-1 c0.7-0.6,1.1-1.3,1.3-2.2c0.4-1.7,0.6-4.3,0.6-7.8C56,8,55.8,5.4,55.4,3.7L55.4,3.7z M32.5,6h-2.4v12.6h-2.2V6h-2.3V3.9h6.9V6z M38.5,18.6h-2v-1.2c-0.8,0.9-1.6,1.4-2.3,1.4c-0.7,0-1.1-0.3-1.3-0.8c-0.1-0.4-0.2-0.9-0.2-1.6V7.6h2v8.1c0,0.5,0,0.7,0,0.8 c0,0.3,0.2,0.5,0.5,0.5c0.4,0,0.8-0.3,1.3-0.9V7.6h2V18.6z M46.1,15.3c0,1.1-0.1,1.8-0.2,2.2c-0.3,0.8-0.8,1.2-1.6,1.2 c-0.7,0-1.4-0.4-2.1-1.2v1.1h-2V3.9h2v4.8c0.6-0.8,1.3-1.2,2.1-1.2c0.8,0,1.3,0.4,1.6,1.2c0.1,0.4,0.2,1.1,0.2,2.2V15.3z M53.5,13.5h-4v1.9c0,1,0.3,1.5,1,1.5c0.5,0,0.8-0.3,0.9-0.8c0-0.1,0-0.6,0-1.4h2v0.3c0,0.7,0,1.2,0,1.3c0,0.4-0.2,0.8-0.5,1.2 c-0.5,0.8-1.3,1.2-2.4,1.2c-1,0-1.8-0.4-2.4-1.1c-0.4-0.5-0.6-1.4-0.6-2.6v-3.8c0-1.2,0.2-2,0.6-2.6c0.6-0.8,1.4-1.1,2.4-1.1 c1,0,1.8,0.4,2.3,1.1c0.4,0.5,0.6,1.4,0.6,2.6V13.5z M53.5,13.5"}),wp.element.createElement("path",{className:"st0",d:"M43.2,9.3c-0.3,0-0.7,0.2-1,0.5v6.7c0.3,0.3,0.7,0.5,1,0.5c0.6,0,0.9-0.5,0.9-1.5v-4.7 C44.1,9.8,43.8,9.3,43.2,9.3L43.2,9.3z M43.2,9.3"}),wp.element.createElement("path",{className:"st0",d:"M50.6,9.3c-0.7,0-1,0.5-1,1.5v1h2v-1C51.6,9.8,51.2,9.3,50.6,9.3L50.6,9.3z M50.6,9.3"})),wp.element.createElement("g",null,wp.element.createElement("path",{d:"M2.8,12.8v6h2.2v-6L7.7,4H5.5L4,9.8L2.4,4H0.1c0.4,1.2,0.9,2.6,1.4,4.1C2.2,10.2,2.6,11.7,2.8,12.8L2.8,12.8z M2.8,12.8"}),wp.element.createElement("path",{d:"M10.7,19c1,0,1.8-0.4,2.3-1.1c0.4-0.5,0.6-1.4,0.6-2.6v-3.9c0-1.2-0.2-2-0.6-2.6c-0.5-0.8-1.3-1.1-2.3-1.1 c-1,0-1.8,0.4-2.3,1.1C8,9.3,7.8,10.2,7.8,11.4v3.9c0,1.2,0.2,2.1,0.6,2.6C8.9,18.6,9.7,19,10.7,19L10.7,19z M9.8,11 c0-1,0.3-1.5,1-1.5c0.6,0,1,0.5,1,1.5v4.7c0,1-0.3,1.6-1,1.6c-0.6,0-1-0.5-1-1.6V11z M9.8,11"}),wp.element.createElement("path",{d:"M16.8,19c0.7,0,1.5-0.5,2.3-1.4v1.2h2V7.8h-2v8.4c-0.4,0.6-0.9,1-1.3,1c-0.3,0-0.4-0.2-0.5-0.5c0,0,0-0.3,0-0.8V7.8h-2 v8.7c0,0.8,0.1,1.3,0.2,1.7C15.7,18.7,16.1,19,16.8,19L16.8,19z M16.8,19"})))),wp.element.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 276 340"},wp.element.createElement("path",{d:"M196.7.6H24.3C11.1.6.4 11.3.4 24.6v292.9c0 12.3 10 22.2 22.2 22.2H252c13.3 0 23.9-10.7 23.9-23.9V80.9L196.7.6z",fill:"#e94848"}),wp.element.createElement("path",{d:"M196.7 57c0 13.3 10.7 23.9 23.9 23.9H276L196.7.6V57z",fill:"#f19191"}),wp.element.createElement("linearGradient",{id:"A",gradientUnits:"userSpaceOnUse",x1:"44.744",y1:"77.111",x2:"116.568",y2:"77.111"},wp.element.createElement("stop",{offset:"0",stopColor:"#fff"}),wp.element.createElement("stop",{offset:"1",stopColor:"#fff0f0"})),wp.element.createElement("path",{d:"M113 84.5H48.3c-1.9 0-3.5-1.6-3.5-3.5v-7.7c0-1.9 1.6-3.5 3.5-3.5H113c1.9 0 3.5 1.6 3.5 3.5V81c.1 1.9-1.5 3.5-3.5 3.5z",fill:"url(#A)"}),wp.element.createElement("linearGradient",{id:"B",gradientUnits:"userSpaceOnUse",x1:"44.744",y1:"136.016",x2:"233.927",y2:"136.016"},wp.element.createElement("stop",{offset:"0",stopColor:"#fff"}),wp.element.createElement("stop",{offset:"1",stopColor:"#fff0f0"})),wp.element.createElement("use",{href:"#H",opacity:".8",fill:"url(#B)"}),wp.element.createElement("linearGradient",{id:"C",gradientUnits:"userSpaceOnUse",x1:"44.744",y1:"135.993",x2:"233.927",y2:"135.993"},wp.element.createElement("stop",{offset:"0",stopColor:"#fff"}),wp.element.createElement("stop",{offset:"1",stopColor:"#fff0f0"})),wp.element.createElement("use",{href:"#H",y:"33.6",opacity:".7",fill:"url(#C)"}),wp.element.createElement("linearGradient",{id:"D",gradientUnits:"userSpaceOnUse",x1:"44.744",y1:"135.969",x2:"233.927",y2:"135.969"},wp.element.createElement("stop",{offset:"0",stopColor:"#fff"}),wp.element.createElement("stop",{offset:"1",stopColor:"#fff0f0"})),wp.element.createElement("use",{href:"#H",y:"67.2",opacity:".6",fill:"url(#D)"}),wp.element.createElement("linearGradient",{id:"E",gradientUnits:"userSpaceOnUse",x1:"44.744",y1:"136.045",x2:"233.927",y2:"136.045"},wp.element.createElement("stop",{offset:"0",stopColor:"#fff"}),wp.element.createElement("stop",{offset:"1",stopColor:"#fff0f0"})),wp.element.createElement("use",{href:"#H",y:"100.7",opacity:".4",fill:"url(#E)"}),wp.element.createElement("linearGradient",{id:"F",gradientUnits:"userSpaceOnUse",x1:"44.744",y1:"270.322",x2:"174.778",y2:"270.322"},wp.element.createElement("stop",{offset:"0",stopColor:"#fff"}),wp.element.createElement("stop",{offset:"1",stopColor:"#fff0f0"})),wp.element.createElement("path",{d:"M171.9 277.7H47.6c-1.6 0-2.9-1.3-2.9-2.9v-9c0-1.6 1.3-2.9 2.9-2.9h124.3c1.6 0 2.9 1.3 2.9 2.9v9c0 1.6-1.3 2.9-2.9 2.9z",opacity:".3",fill:"url(#F)"}),wp.element.createElement("defs",null,wp.element.createElement("path",{id:"H",d:"M231 143.4H47.6c-1.6 0-2.9-1.3-2.9-2.9v-9c0-1.6 1.3-2.9 2.9-2.9H231c1.6 0 2.9 1.3 2.9 2.9v9c0 1.6-1.3 2.9-2.9 2.9z"})))),w=wp.element.createElement("svg",{width:"33",height:"20",version:"1.1",id:"Layer_1",xmlns:"http://www.w3.org/2000/svg",x:"0px",y:"0px",viewBox:"0 0 270 270",role:"img",focusable:"false"},wp.element.createElement("g",null,wp.element.createElement("polygon",{className:"st0",fill:"#9595C1",points:"0,0 0,52 15,52 15,15 52,15 52,0 \t"}),wp.element.createElement("polygon",{className:"st0",fill:"#9595C1",points:"255,218 255,255 218,255 218,270 270,270 270,218 \t"}),wp.element.createElement("path",{fill:"#5B4E96",d:"M260.7,68.1c-10.4-18.6-29.3-31.2-50.6-33.6c-12.4-1.4-25,0.6-36.3,6c-1.3,0.6-2.6,1.3-3.9,2 C154.5,51,143,65.3,138.3,81.7l0,0.1l-36.4,103.8c-3.1,9.4-9.1,17-17.1,21.4c-0.7,0.4-1.4,0.7-2.1,1.1c-6.1,2.9-12.8,4-19.5,3.2 c-11.5-1.3-21.6-8.1-27.2-18.1c-4.6-8.3-5.7-18-3.1-27.2c2.6-9.2,8.7-16.9,17.1-21.5c0.7-0.4,1.4-0.8,2.1-1.1 c6.1-2.9,12.7-4,19.6-3.2c0.3,0,0.5,0.1,0.8,0.1L64.9,162c-0.5,1.5,0.3,3.1,1.8,3.6l19.4,6.3c1.5,0.5,3-0.3,3.5-1.7l16.7-47.4 c0.4-1.2,0.3-2.5-0.3-3.6c-0.6-1.1-1.6-2-2.8-2.4l-17.6-5.1c-0.4-0.1-0.8-0.2-1.2-0.3l-1.6-0.5l0,0.1c-2.5-0.6-5-1.1-7.5-1.3 c-12.5-1.4-25.1,0.6-36.4,6c-1.3,0.6-2.6,1.3-3.9,2c-15.6,8.7-27,22.9-31.9,40.1c-4.9,17.1-2.8,35.1,5.8,50.5 c10.4,18.6,29.3,31.2,50.6,33.6c12.4,1.4,25-0.6,36.3-6c1.3-0.6,2.6-1.3,3.9-2c15.3-8.5,26.8-22.8,31.6-39.2l0-0.1L167.8,91 l0.1-0.2l0-0.1c4.1-10.5,9.3-17,17-21.3c0.7-0.4,1.4-0.7,2.1-1.1c6.1-2.9,12.8-4,19.5-3.2c11.5,1.3,21.6,8.1,27.2,18.1 c9.6,17.2,3.3,39.1-14,48.7c-0.7,0.4-1.4,0.7-2.1,1.1c-6.1,2.9-12.8,4-19.7,3.2c-2-0.2-4.1-0.6-6.1-1.2l-0.2-0.1l-11.3-3.4 c-1.2-0.4-2.5,0.3-2.9,1.5l-8.8,24.8c-0.5,1.3,0.3,2.7,1.6,3.1l13.9,4c3.4,0.9,6.8,1.6,10.3,2c12.4,1.4,25-0.6,36.3-6l0.1,0 c1.3-0.6,2.6-1.3,3.9-2C266.8,140.8,278.5,100.1,260.7,68.1z"}))),y=wp.element.createElement("svg",{version:"1.1",id:"Layer_1",xmlns:"http://www.w3.org/2000/svg",x:"0px",y:"0px",viewBox:"0 0 512 512"},wp.element.createElement("path",{fill:"#E2E5E7",d:"M128,0c-17.6,0-32,14.4-32,32v448c0,17.6,14.4,32,32,32h320c17.6,0,32-14.4,32-32V128L352,0H128z"}),wp.element.createElement("path",{fill:"#B0B7BD",d:"M384,128h96L352,0v96C352,113.6,366.4,128,384,128z"}),wp.element.createElement("polygon",{fill:"#CAD1D8",points:"480,224 384,128 480,128 "}),wp.element.createElement("path",{fill:"#F15642",d:"M416,416c0,8.8-7.2,16-16,16H48c-8.8,0-16-7.2-16-16V256c0-8.8,7.2-16,16-16h352c8.8,0,16,7.2,16,16 V416z"}),wp.element.createElement("g",null,wp.element.createElement("path",{fill:"#FFFFFF",d:"M101.744,303.152c0-4.224,3.328-8.832,8.688-8.832h29.552c16.64,0,31.616,11.136,31.616,32.48 c0,20.224-14.976,31.488-31.616,31.488h-21.36v16.896c0,5.632-3.584,8.816-8.192,8.816c-4.224,0-8.688-3.184-8.688-8.816V303.152z M118.624,310.432v31.872h21.36c8.576,0,15.36-7.568,15.36-15.504c0-8.944-6.784-16.368-15.36-16.368H118.624z"}),wp.element.createElement("path",{fill:"#FFFFFF",d:"M196.656,384c-4.224,0-8.832-2.304-8.832-7.92v-72.672c0-4.592,4.608-7.936,8.832-7.936h29.296 c58.464,0,57.184,88.528,1.152,88.528H196.656z M204.72,311.088V368.4h21.232c34.544,0,36.08-57.312,0-57.312H204.72z"}),wp.element.createElement("path",{fill:"#FFFFFF",d:"M303.872,312.112v20.336h32.624c4.608,0,9.216,4.608,9.216,9.072c0,4.224-4.608,7.68-9.216,7.68 h-32.624v26.864c0,4.48-3.184,7.92-7.664,7.92c-5.632,0-9.072-3.44-9.072-7.92v-72.672c0-4.592,3.456-7.936,9.072-7.936h44.912 c5.632,0,8.96,3.344,8.96,7.936c0,4.096-3.328,8.704-8.96,8.704h-37.248V312.112z"})),wp.element.createElement("path",{fill:"#CAD1D8",d:"M400,432H96v16h304c8.8,0,16-7.2,16-16v-16C416,424.8,408.8,432,400,432z"})),v=wp.element.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"186 38 76 76"},wp.element.createElement("path",{fill:"#fff",d:"M244 56h-40v40h40V56z"}),wp.element.createElement("path",{fill:"#EA4335",d:"M244 114l18-18h-18v18z"}),wp.element.createElement("path",{fill:"#FBBC04",d:"M262 56h-18v40h18V56z"}),wp.element.createElement("path",{fill:"#34A853",d:"M244 96h-40v18h40V96z"}),wp.element.createElement("path",{fill:"#188038",d:"M186 96v12c0 3.315 2.685 6 6 6h12V96h-18z"}),wp.element.createElement("path",{fill:"#1967D2",d:"M262 56V44c0-3.315-2.685-6-6-6h-12v18h18z"}),wp.element.createElement("path",{fill:"#4285F4",d:"M244 38h-52c-3.315 0 -6 2.685-6 6v52h18V56h40V38z"}),wp.element.createElement("path",{fill:"#4285F4",d:"M212.205 87.03c-1.495-1.01-2.53-2.485-3.095-4.435l3.47-1.43c.315 1.2.865 2.13 1.65 2.79.78.66 1.73.985 2.84.985 1.135 0 2.11-.345 2.925-1.035s1.225-1.57 1.225-2.635c0-1.09-.43-1.98-1.29-2.67-.86-.69-1.94-1.035-3.23-1.035h-2.005V74.13h1.8c1.11 0 2.045-.3 2.805-.9.76-.6 1.14-1.42 1.14-2.465 0 -.93-.34-1.67-1.02-2.225-.68-.555-1.54-.835-2.585-.835-1.02 0 -1.83.27-2.43.815a4.784 4.784 0 0 0 -1.31 2.005l-3.435-1.43c.455-1.29 1.29-2.43 2.515-3.415 1.225-.985 2.79-1.48 4.69-1.48 1.405 0 2.67.27 3.79.815 1.12.545 2 1.3 2.635 2.26.635.965.95 2.045.95 3.245 0 1.225-.295 2.26-.885 3.11-.59.85-1.315 1.5-2.175 1.955v.205a6.605 6.605 0 0 1 2.79 2.175c.725.975 1.09 2.14 1.09 3.5 0 1.36-.345 2.575-1.035 3.64s-1.645 1.905-2.855 2.515c-1.215.61-2.58.92-4.095.92-1.755.005-3.375-.5-4.87-1.51zM233.52 69.81l-3.81 2.755-1.905-2.89 6.835-4.93h2.62V88h-3.74V69.81z"}))},function(e,t,n){"use strict";var __=wp.i18n.__,r=wp.components.Spinner,o=function(){return wp.element.createElement("div",{className:"wp-block-embed is-loading text-center"},wp.element.createElement(r,null),wp.element.createElement("p",null,__("Embedding\u2026")))};t.a=o},function(e,t,n){"use strict";var __=wp.i18n.__,r=wp.element.Fragment,o=wp.components,i=o.Button,a=o.Toolbar,l=wp.blockEditor.BlockControls,s=function(e){var t=e.showEditButton,n=e.switchBackToURLInput;return wp.element.createElement(r,null,wp.element.createElement(l,null,wp.element.createElement(a,null,t&&wp.element.createElement(i,{className:"components-toolbar__control",label:__("Edit URL"),icon:"edit",onClick:n}))))};t.a=s},function(e,t,n){"use strict";var r=n(12),o=n.n(r),i=wp.i18n,__=i.__,_x=i._x,a=wp.components,l=a.Button,s=a.Placeholder,c=a.ExternalLink,p=wp.blockEditor.BlockIcon,u=function(e){var t=e.icon,n=e.label,r=e.value,i=e.onSubmit,a=e.onChange,u=e.cannotEmbed,m=e.docLink,d=e.DocTitle,f=o()("wp-block-embed",{});return wp.element.createElement("div",null,wp.element.createElement(s,{icon:wp.element.createElement(p,{icon:t,showColors:!0}),label:n,className:f},wp.element.createElement("form",{onSubmit:i},wp.element.createElement("input",{type:"url",value:r||"",className:"components-placeholder__input","aria-label":n,placeholder:__("Enter URL to embed here\u2026"),onChange:a}),wp.element.createElement(l,{isSmall:!0,type:"submit"},_x("Embed","button label")),u&&wp.element.createElement("p",{className:"components-placeholder__error"},__("Sorry, we could not embed that content."),wp.element.createElement("br",null))),m&&wp.element.createElement("div",{className:"components-placeholder__learn-more"},wp.element.createElement(c,{href:m},d))))};t.a=u},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function i(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(6),l=n.n(a),s=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},c=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),p=wp.element.Component,u=function(e){function t(e){r(this,t);var n=o(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.myRef=React.createRef(),n}return i(t,e),c(t,[{key:"componentDidMount",value:function(){l.a.findDOMNode(this.myRef.current).addEventListener("load",this.props.onLoad)}},{key:"render",value:function(){return wp.element.createElement("iframe",s({ref:this.myRef},this.props))}}]),t}(p);t.a=u},function(e,t,n){"use strict";function r(e){var t=embedpressObj.document_cta,n="",r="";if(embedpressObj.embedpress_pro&&t&&t.logo_url){var i=t.cta_url?t.cta_url:null,a=t.logo_xpos?t.logo_xpos+"%":"10%",l=t.logo_ypos?t.logo_ypos+"%":"10%",s=t.logo_opacity?t.logo_opacity/100:"10%",c=".ep-doc-"+e.id;return n="\n "+c+"{\n text-align: left;\n position: relative;\n }\n "+c+" .watermark {\n \t\tdisplay:inline-block;\n border: 0;\n position: absolute;\n bottom: "+l+";\n right: "+a+";\n max-width: 150px;\n max-height: 75px;\n opacity: "+s+";\n z-index: 5;\n -o-transition: opacity 0.5s ease-in-out;\n -moz-transition: opacity 0.5s ease-in-out;\n -webkit-transition: opacity 0.5s ease-in-out;\n transition: opacity 0.5s ease-in-out;\n }\n "+c+" .watermark:hover {\n\t\t\t\t\t opacity: 1;\n\t\t\t\t }\n\t\t",i&&""!==i&&(r+="<a href="+i+">"),r+='<img class="watermark" alt="" src="'+t.logo_url+'"/>',i&&""!==i&&(r+="</a>"),wp.element.createElement(o,null,wp.element.createElement("style",{dangerouslySetInnerHTML:{__html:n}}),wp.element.createElement("div",{dangerouslySetInnerHTML:{__html:r}}))}return""}var o=wp.element.Fragment;t.a=r},function(e,t){e.exports=ReactDOM},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});n(8),n(13),n(17),n(21),n(25),n(29),n(33),n(37),n(41),n(45),n(49),n(59),n(65);!function(){var e=wp.element.createElement("svg",{width:"33",height:"20",version:"1.1",id:"Layer_1",xmlns:"http://www.w3.org/2000/svg",x:"0px",y:"0px",viewBox:"0 0 270 270"},wp.element.createElement("g",null,wp.element.createElement("polygon",{className:"st0",fill:"#9595C1",points:"0,0 0,52 15,52 15,15 52,15 52,0 \t"}),wp.element.createElement("polygon",{className:"st0",fill:"#9595C1",points:"255,218 255,255 218,255 218,270 270,270 270,218 \t"}),wp.element.createElement("path",{fill:"#5B4E96",d:"M260.7,68.1c-10.4-18.6-29.3-31.2-50.6-33.6c-12.4-1.4-25,0.6-36.3,6c-1.3,0.6-2.6,1.3-3.9,2 C154.5,51,143,65.3,138.3,81.7l0,0.1l-36.4,103.8c-3.1,9.4-9.1,17-17.1,21.4c-0.7,0.4-1.4,0.7-2.1,1.1c-6.1,2.9-12.8,4-19.5,3.2 c-11.5-1.3-21.6-8.1-27.2-18.1c-4.6-8.3-5.7-18-3.1-27.2c2.6-9.2,8.7-16.9,17.1-21.5c0.7-0.4,1.4-0.8,2.1-1.1 c6.1-2.9,12.7-4,19.6-3.2c0.3,0,0.5,0.1,0.8,0.1L64.9,162c-0.5,1.5,0.3,3.1,1.8,3.6l19.4,6.3c1.5,0.5,3-0.3,3.5-1.7l16.7-47.4 c0.4-1.2,0.3-2.5-0.3-3.6c-0.6-1.1-1.6-2-2.8-2.4l-17.6-5.1c-0.4-0.1-0.8-0.2-1.2-0.3l-1.6-0.5l0,0.1c-2.5-0.6-5-1.1-7.5-1.3 c-12.5-1.4-25.1,0.6-36.4,6c-1.3,0.6-2.6,1.3-3.9,2c-15.6,8.7-27,22.9-31.9,40.1c-4.9,17.1-2.8,35.1,5.8,50.5 c10.4,18.6,29.3,31.2,50.6,33.6c12.4,1.4,25-0.6,36.3-6c1.3-0.6,2.6-1.3,3.9-2c15.3-8.5,26.8-22.8,31.6-39.2l0-0.1L167.8,91 l0.1-0.2l0-0.1c4.1-10.5,9.3-17,17-21.3c0.7-0.4,1.4-0.7,2.1-1.1c6.1-2.9,12.8-4,19.5-3.2c11.5,1.3,21.6,8.1,27.2,18.1 c9.6,17.2,3.3,39.1-14,48.7c-0.7,0.4-1.4,0.7-2.1,1.1c-6.1,2.9-12.8,4-19.7,3.2c-2-0.2-4.1-0.6-6.1-1.2l-0.2-0.1l-11.3-3.4 c-1.2-0.4-2.5,0.3-2.9,1.5l-8.8,24.8c-0.5,1.3,0.3,2.7,1.6,3.1l13.9,4c3.4,0.9,6.8,1.6,10.3,2c12.4,1.4,25-0.6,36.3-6l0.1,0 c1.3-0.6,2.6-1.3,3.9-2C266.8,140.8,278.5,100.1,260.7,68.1z"})));wp.blocks.updateCategory("embedpress",{icon:e})}()},function(e,t,n){"use strict";var r=n(9),o=(n.n(r),n(10)),i=(n.n(o),n(11)),a=n(0),__=wp.i18n.__,l=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks["google-docs-block"]&&l("embedpress/google-docs-block",{title:__("Google Docs"),icon:a.e,category:"embedpress",keywords:[__("embedpress"),__("google"),__("docs")],supports:{align:["wide","full","right","left"],default:""},attributes:{url:{type:"string",default:""},iframeSrc:{type:"string",default:""}},edit:i.a,save:function(e){var t=e.attributes.iframeSrc;if(t)return wp.element.createElement("figure",{className:"ose-google-docs-document"},wp.element.createElement("iframe",{src:t,frameBorder:"0",width:"600",height:"450",allowFullScreen:"true",mozallowfullscreen:"true",webkitallowfullscreen:"true"}))},deprecated:[{attributes:{align:{type:"string",enum:["left","center","right","wide","full"]}},save:function(e){var t=e.attributes.iframeSrc;if(t)return wp.element.createElement("div",{className:"ose-google-docs-document"},wp.element.createElement("iframe",{src:t,frameBorder:"0",width:"600",height:"450",allowFullScreen:"true",mozallowfullscreen:"true",webkitallowfullscreen:"true"}))}}]})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function i(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(2),l=n(1),s=n(3),c=n(4),p=n(0),u=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),__=wp.i18n.__,m=wp.element.Component,d=function(e){function t(){r(this,t);var e=o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments));return e.switchBackToURLInput=e.switchBackToURLInput.bind(e),e.setUrl=e.setUrl.bind(e),e.updateAlignment=e.updateAlignment.bind(e),e.onLoad=e.onLoad.bind(e),e.hideOverlay=e.hideOverlay.bind(e),e.state={editingURL:!1,url:e.props.attributes.url,fetching:!0,cannotEmbed:!1,interactive:!1},e}return i(t,e),u(t,[{key:"hideOverlay",value:function(){this.setState({interactive:!0})}},{key:"onLoad",value:function(){this.setState({fetching:!1})}},{key:"decodeHTMLEntities",value:function(e){return e&&"string"===typeof e&&(e=e.replace(/<script[^>]*>([\S\s]*?)<\/script>/gim,""),e=e.replace(/<\/?\w(?:[^"'>]|"[^"]*"|'[^']*')*>/gim,"")),e}},{key:"updateAlignment",value:function(e){var t=this.props.setAttributes,n=-1!==["wide","full"].indexOf(e)?{width:void 0,height:void 0}:{};t(Object.assign({},n,{align:e}))}},{key:"setUrl",value:function(e){e&&e.preventDefault();var t=this.state.url,n=this.props.setAttributes;if(n({url:t}),t&&t.match(/^http[s]?:\/\/((?:www\.)?docs\.google\.com(?:.*)?(?:document|presentation|spreadsheets|forms|drawings)\/[a-z0-9\/\?=_\-\.\,&%\$#\@\!\+]*)/i)){var r=this.decodeHTMLEntities(t),o=/google\.com(?:.+)?(document|presentation|spreadsheets|forms|drawings)/i,i=o.exec(r),a=i[1];a&&"document"===a?(r.match(/([?&])embedded=true/i)||(r.indexOf("?")>-1?r+="&embedded=true":r+="?embedded=true"),this.setState({editingURL:!1,cannotEmbed:!1}),n({iframeSrc:r})):this.setState({cannotEmbed:!0,editingURL:!0})}else this.setState({cannotEmbed:!0,editingURL:!0})}},{key:"switchBackToURLInput",value:function(){this.setState({editingURL:!0})}},{key:"render",value:function(){var e=this,t=this.state,n=t.url,r=t.editingURL,o=t.fetching,i=t.cannotEmbed,u=t.interactive,m=this.props.attributes.iframeSrc,d=__("Google Docs URL");return!m||r?wp.element.createElement("div",null,wp.element.createElement(s.a,{label:d,onSubmit:this.setUrl,value:n,cannotEmbed:i,onChange:function(t){return e.setState({url:t.target.value})},icon:p.e,DocTitle:__("Learn more about Google doc embed"),docLink:"https://embedpress.com/docs/embed-google-docs-wordpress/"})):wp.element.createElement("div",null,o?wp.element.createElement(l.a,null):null,wp.element.createElement(c.a,{src:m,onMouseUp:this.hideOverlay,onLoad:this.onLoad,style:{display:o?"none":""},frameBorder:"0",width:"600",height:"450"}),!u&&wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:this.hideOverlay}),wp.element.createElement(a.a,{showEditButton:m&&!i,switchBackToURLInput:this.switchBackToURLInput}))}}],[{key:"getDerivedStateFromProps",value:function(e,t){return!e.isSelected&&t.interactive?{interactive:!1}:null}}]),t}(m);t.a=d},function(e,t,n){var r,o;!function(){"use strict";function n(){for(var e=[],t=0;t<arguments.length;t++){var r=arguments[t];if(r){var o=typeof r;if("string"===o||"number"===o)e.push(r);else if(Array.isArray(r)){if(r.length){var a=n.apply(null,r);a&&e.push(a)}}else if("object"===o){if(r.toString!==Object.prototype.toString&&!r.toString.toString().includes("[native code]")){e.push(r.toString());continue}for(var l in r)i.call(r,l)&&r[l]&&e.push(l)}}}return e.join(" ")}var i={}.hasOwnProperty;"undefined"!==typeof e&&e.exports?(n.default=n,e.exports=n):(r=[],void 0!==(o=function(){return n}.apply(t,r))&&(e.exports=o))}()},function(e,t,n){"use strict";var r=n(14),o=(n.n(r),n(15)),i=(n.n(o),n(16)),a=n(0),__=wp.i18n.__,l=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks["google-slides-block"]&&l("embedpress/google-slides-block",{title:__("Google Slides"),icon:a.j,category:"embedpress",keywords:[__("embedpress"),__("google"),__("slides")],supports:{align:["wide","full","right","left"],default:""},attributes:{url:{type:"string",default:""},iframeSrc:{type:"string",default:""}},edit:i.a,save:function(e){var t=e.attributes.iframeSrc;return wp.element.createElement("figure",{className:"ose-google-docs-presentation"},wp.element.createElement("iframe",{src:t,frameborder:"0",width:"600",height:"450",allowfullscreen:"true",mozallowfullscreen:"true",webkitallowfullscreen:"true"}))}})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function i(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(2),l=n(1),s=n(3),c=n(4),p=n(0),u=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),__=wp.i18n.__,m=wp.element,d=m.Component,f=m.Fragment,h=function(e){function t(){r(this,t);var e=o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments));return e.switchBackToURLInput=e.switchBackToURLInput.bind(e),e.setUrl=e.setUrl.bind(e),e.onLoad=e.onLoad.bind(e),e.hideOverlay=e.hideOverlay.bind(e),e.state={editingURL:!1,url:e.props.attributes.url,fetching:!0,cannotEmbed:!1,interactive:!1},e}return i(t,e),u(t,[{key:"hideOverlay",value:function(){this.setState({interactive:!0})}},{key:"onLoad",value:function(){this.setState({fetching:!1})}},{key:"decodeHTMLEntities",value:function(e){return e&&"string"===typeof e&&(e=e.replace(/<script[^>]*>([\S\s]*?)<\/script>/gim,""),e=e.replace(/<\/?\w(?:[^"'>]|"[^"]*"|'[^']*')*>/gim,"")),e}},{key:"setUrl",value:function(e){e&&e.preventDefault();var t=this.state.url,n=this.props.setAttributes;if(n({url:t}),t&&t.match(/^http[s]?:\/\/((?:www\.)?docs\.google\.com(?:.*)?(?:document|presentation|spreadsheets|forms|drawings)\/[a-z0-9\/\?=_\-\.\,&%\$#\@\!\+]*)/i)){var r=this.decodeHTMLEntities(t),o=/google\.com(?:.+)?(document|presentation|spreadsheets|forms|drawings)/i,i=o.exec(r),a=i[1];a&&"presentation"==a?(r.match(/pub\?/i)&&(r=r.replace("/pub?","/embed?")),this.setState({editingURL:!1,cannotEmbed:!1}),n({iframeSrc:r})):this.setState({cannotEmbed:!0,editingURL:!0})}else this.setState({cannotEmbed:!0,editingURL:!0})}},{key:"switchBackToURLInput",value:function(){this.setState({editingURL:!0})}},{key:"render",value:function(){var e=this,t=this.state,n=t.url,r=t.editingURL,o=t.fetching,i=t.cannotEmbed,u=t.interactive,m=this.props.attributes.iframeSrc,d=__("Google Slides URL");return!m||r?wp.element.createElement(s.a,{label:d,onSubmit:this.setUrl,value:n,cannotEmbed:i,onChange:function(t){return e.setState({url:t.target.value})},icon:p.j,DocTitle:__("Learn more about Google slides embed"),docLink:"https://embedpress.com/docs/embed-google-slides-wordpress/"}):wp.element.createElement(f,null,o?wp.element.createElement(l.a,null):null,wp.element.createElement(c.a,{src:m,onFocus:this.hideOverlay,onLoad:this.onLoad,style:{display:o?"none":""},frameborder:"0",width:"600",height:"450"}),!u&&wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:this.hideOverlay}),wp.element.createElement(a.a,{showEditButton:m&&!i,switchBackToURLInput:this.switchBackToURLInput}))}}],[{key:"getDerivedStateFromProps",value:function(e,t){return!e.isSelected&&t.interactive?{interactive:!1}:null}}]),t}(d);t.a=h},function(e,t,n){"use strict";var r=n(18),o=(n.n(r),n(19)),i=(n.n(o),n(20)),a=n(0),__=wp.i18n.__,l=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks["google-sheets-block"]&&l("embedpress/google-sheets-block",{title:__("Google Sheets"),icon:a.i,category:"embedpress",keywords:[__("embedpress"),__("google"),__("sheets")],supports:{align:["wide","full","right","left"],default:""},attributes:{url:{type:"string",default:""},iframeSrc:{type:"string",default:""}},edit:i.a,save:function(e){var t=e.attributes.iframeSrc;return wp.element.createElement("figure",{className:"ose-google-docs-spreadsheets"},wp.element.createElement("iframe",{src:t,frameborder:"0",width:"600",height:"450",allowfullscreen:"true",mozallowfullscreen:"true",webkitallowfullscreen:"true"}))},deprecated:[{attributes:{align:{type:"string",enum:["left","center","right","wide","full"]}},save:function(e){var t=e.attributes.iframeSrc;if(t)return wp.element.createElement("div",{className:"ose-google-docs-spreadsheets"},wp.element.createElement("iframe",{src:t,frameBorder:"0",width:"600",height:"450",allowFullScreen:"true",mozallowfullscreen:"true",webkitallowfullscreen:"true"}))}}]})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function i(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(2),l=n(1),s=n(3),c=n(4),p=n(0),u=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),__=wp.i18n.__,m=wp.element,d=m.Component,f=m.Fragment,h=function(e){function t(){r(this,t);var e=o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments));return e.switchBackToURLInput=e.switchBackToURLInput.bind(e),e.setUrl=e.setUrl.bind(e),e.onLoad=e.onLoad.bind(e),e.hideOverlay=e.hideOverlay.bind(e),e.state={editingURL:!1,url:e.props.attributes.url,fetching:!0,cannotEmbed:!1,interactive:!1},e}return i(t,e),u(t,[{key:"hideOverlay",value:function(){this.setState({interactive:!0})}},{key:"onLoad",value:function(){this.setState({fetching:!1})}},{key:"decodeHTMLEntities",value:function(e){return e&&"string"===typeof e&&(e=e.replace(/<script[^>]*>([\S\s]*?)<\/script>/gim,""),e=e.replace(/<\/?\w(?:[^"'>]|"[^"]*"|'[^']*')*>/gim,"")),e}},{key:"setUrl",value:function(e){e&&e.preventDefault();var t=this.state.url,n=this.props.setAttributes;if(n({url:t}),t&&t.match(/^http[s]?:\/\/((?:www\.)?docs\.google\.com(?:.*)?(?:document|presentation|spreadsheets|forms|drawings)\/[a-z0-9\/\?=_\-\.\,&%\$#\@\!\+]*)/i)){var r=this.decodeHTMLEntities(t),o=/google\.com(?:.+)?(document|presentation|spreadsheets|forms|drawings)/i,i=o.exec(r),a=i[1];if(a&&"spreadsheets"==a){if(r.indexOf("?")>-1){var l=r.split("?");if(l=l[1],l=l.split("&"),console.log(l),l.length>0){var s=!1,c=!1;l.map(function(e){e.indexOf("widget=")?c=!0:e.indexOf("headers=")&&(s=!0)}),c||(r+="&widget=true"),s||(r+="&headers=false")}}else r+="?widget=true&headers=false";this.setState({editingURL:!1,cannotEmbed:!1}),n({iframeSrc:r})}else this.setState({cannotEmbed:!0,editingURL:!0})}else this.setState({cannotEmbed:!0,editingURL:!0})}},{key:"switchBackToURLInput",value:function(){this.setState({editingURL:!0})}},{key:"render",value:function(){var e=this,t=this.state,n=t.url,r=t.editingURL,o=t.fetching,i=t.cannotEmbed,u=t.interactive,m=this.props.attributes.iframeSrc,d=__("Google Sheets URL");return!m||r?wp.element.createElement(s.a,{label:d,onSubmit:this.setUrl,value:n,cannotEmbed:i,onChange:function(t){return e.setState({url:t.target.value})},icon:p.i,DocTitle:__("Learn more about Google sheet embed"),docLink:"https://embedpress.com/docs/embed-google-sheets-wordpress/"}):wp.element.createElement(f,null,o?wp.element.createElement(l.a,null):null,wp.element.createElement(c.a,{src:m,onFocus:this.hideOverlay,onLoad:this.onLoad,style:{display:o?"none":""},frameborder:"0",width:"600",height:"450"}),!u&&wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:this.hideOverlay}),wp.element.createElement(a.a,{showEditButton:m&&!i,switchBackToURLInput:this.switchBackToURLInput}))}}],[{key:"getDerivedStateFromProps",value:function(e,t){return!e.isSelected&&t.interactive?{interactive:!1}:null}}]),t}(d);t.a=h},function(e,t,n){"use strict";var r=n(22),o=(n.n(r),n(23)),i=(n.n(o),n(24)),a=n(0),__=wp.i18n.__,l=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks["google-forms-block"]&&l("embedpress/google-forms-block",{title:__("Google Forms"),icon:a.g,category:"embedpress",keywords:[__("embedpress"),__("google"),__("forms")],supports:{align:["wide","full","right","left"],default:""},attributes:{url:{type:"string",default:""},iframeSrc:{type:"string",default:""}},edit:i.a,save:function(e){var t=e.attributes.iframeSrc;return wp.element.createElement("figure",{className:"ose-google-docs-forms"},wp.element.createElement("iframe",{src:t,frameborder:"0",width:"600",height:"450",allowfullscreen:"true",mozallowfullscreen:"true",webkitallowfullscreen:"true"}))}})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function i(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(2),l=n(1),s=n(3),c=n(4),p=n(0),u=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),__=wp.i18n.__,m=wp.element,d=m.Component,f=m.Fragment,h=(wp.components.Disabled,function(e){function t(){r(this,t);var e=o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments));return e.switchBackToURLInput=e.switchBackToURLInput.bind(e),e.setUrl=e.setUrl.bind(e),e.onLoad=e.onLoad.bind(e),e.state={editingURL:!1,url:e.props.attributes.url,fetching:!0,cannotEmbed:!1,interactive:!1},e}return i(t,e),u(t,[{key:"hideOverlay",value:function(){this.setState({interactive:!0})}},{key:"onLoad",value:function(){this.setState({fetching:!1})}},{key:"decodeHTMLEntities",value:function(e){return e&&"string"===typeof e&&(e=e.replace(/<script[^>]*>([\S\s]*?)<\/script>/gim,""),e=e.replace(/<\/?\w(?:[^"'>]|"[^"]*"|'[^']*')*>/gim,"")),e}},{key:"setUrl",value:function(e){e&&e.preventDefault();var t=this.state.url,n=this.props.setAttributes;if(n({url:t}),t&&t.match(/^http[s]?:\/\/((?:www\.)?docs\.google\.com(?:.*)?(?:document|presentation|spreadsheets|forms|drawings)\/[a-z0-9\/\?=_\-\.\,&%\$#\@\!\+]*)/i)){var r=this.decodeHTMLEntities(t),o=/google\.com(?:.+)?(document|presentation|spreadsheets|forms|drawings)/i,i=o.exec(r),a=i[1];a&&"forms"==a?(this.setState({editingURL:!1,cannotEmbed:!1}),n({iframeSrc:r})):this.setState({cannotEmbed:!0,editingURL:!0})}else this.setState({cannotEmbed:!0,editingURL:!0})}},{key:"switchBackToURLInput",value:function(){this.setState({editingURL:!0})}},{key:"render",value:function(){var e=this,t=this.state,n=t.url,r=t.editingURL,o=t.fetching,i=t.cannotEmbed,u=t.interactive,m=this.props.attributes.iframeSrc,d=__("Google Forms URL");return!m||r?wp.element.createElement(s.a,{label:d,onSubmit:this.setUrl,value:n,cannotEmbed:i,onChange:function(t){return e.setState({url:t.target.value})},icon:p.g,DocTitle:__("Learn more about Google forms embed"),docLink:"https://embedpress.com/docs/embed-google-forms-wordpress/"}):wp.element.createElement(f,null,o?wp.element.createElement(l.a,null):null,wp.element.createElement(c.a,{src:m,onFocus:this.hideOverlay,onLoad:this.onLoad,style:{display:o?"none":""},frameborder:"0",width:"600",height:"450"}),!u&&wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:this.hideOverlay}),wp.element.createElement(a.a,{showEditButton:m&&!i,switchBackToURLInput:this.switchBackToURLInput}))}}],[{key:"getDerivedStateFromProps",value:function(e,t){return!e.isSelected&&t.interactive?{interactive:!1}:null}}]),t}(d));t.a=h},function(e,t,n){"use strict";var r=n(26),o=(n.n(r),n(27)),i=(n.n(o),n(28)),a=n(0),__=wp.i18n.__,l=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks["google-drawings-block"]&&l("embedpress/google-drawings-block",{title:__("Google Drawings"),icon:a.f,category:"embedpress",keywords:[__("embedpress"),__("google"),__("drawings")],supports:{align:["wide","full","right","left"],default:""},attributes:{url:{type:"string",default:""},iframeSrc:{type:"string",default:""}},edit:i.a,save:function(e){var t=e.attributes.iframeSrc;return wp.element.createElement("figure",{className:"ose-google-docs-drawings"},wp.element.createElement("img",{src:t,width:"960",height:"720"}))}})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function i(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(2),l=n(1),s=n(3),c=n(0),p=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),__=wp.i18n.__,u=wp.element,m=u.Component,d=u.Fragment,f=function(e){function t(){r(this,t);var e=o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments));return e.switchBackToURLInput=e.switchBackToURLInput.bind(e),e.setUrl=e.setUrl.bind(e),e.onLoad=e.onLoad.bind(e),e.state={editingURL:!1,url:e.props.attributes.url,fetching:!0,cannotEmbed:!1},e}return i(t,e),p(t,[{key:"onLoad",value:function(){this.setState({fetching:!1})}},{key:"decodeHTMLEntities",value:function(e){return e&&"string"===typeof e&&(e=e.replace(/<script[^>]*>([\S\s]*?)<\/script>/gim,""),e=e.replace(/<\/?\w(?:[^"'>]|"[^"]*"|'[^']*')*>/gim,"")),e}},{key:"setUrl",value:function(e){e&&e.preventDefault();var t=this.state.url,n=this.props.setAttributes;if(n({url:t}),t&&t.match(/^http[s]?:\/\/((?:www\.)?docs\.google\.com(?:.*)?(?:document|presentation|spreadsheets|forms|drawings)\/[a-z0-9\/\?=_\-\.\,&%\$#\@\!\+]*)/i)){var r=this.decodeHTMLEntities(t),o=/google\.com(?:.+)?(document|presentation|spreadsheets|forms|drawings)/i,i=o.exec(r),a=i[1];a&&"drawings"==a?(this.setState({editingURL:!1,cannotEmbed:!1}),n({iframeSrc:r})):this.setState({cannotEmbed:!0,editingURL:!0})}else this.setState({cannotEmbed:!0,editingURL:!0})}},{key:"switchBackToURLInput",value:function(){this.setState({editingURL:!0})}},{key:"render",value:function(){var e=this,t=this.state,n=t.url,r=t.editingURL,o=t.fetching,i=t.cannotEmbed,p=this.props.attributes.iframeSrc,u=__("Google Drawings URL (Get your link from File -> Publish to the web -> Link)");return!p||r?wp.element.createElement(s.a,{label:u,onSubmit:this.setUrl,value:n,cannotEmbed:i,onChange:function(t){return e.setState({url:t.target.value})},icon:c.f,DocTitle:__("Learn more about Google drawing embed"),docLink:"https://embedpress.com/docs/embed-google-drawings-wordpress/"}):wp.element.createElement(d,null,o?wp.element.createElement(l.a,null):null,wp.element.createElement("img",{src:p,onLoad:this.onLoad,style:{display:o?"none":""},width:"960",height:"720"}),wp.element.createElement(a.a,{showEditButton:p&&!i,switchBackToURLInput:this.switchBackToURLInput}))}}]),t}(m);t.a=f},function(e,t,n){"use strict";function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var o=n(30),i=(n.n(o),n(31)),a=(n.n(i),n(32)),l=n(0),__=wp.i18n.__,s=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks["google-maps-block"]&&s("embedpress/google-maps-block",{title:__("Google Maps"),icon:l.h,category:"embedpress",keywords:[__("embedpress"),__("google"),__("maps")],supports:{align:["wide","full","right","left"],default:""},attributes:{url:{type:"string",default:""},iframeSrc:{type:"string",default:""}},edit:a.a,save:function(e){var t=e.attributes.iframeSrc;return wp.element.createElement("figure",{className:"ose-google-maps"},wp.element.createElement("iframe",r({src:t,frameborder:"0",width:"600",height:"450"},"frameborder","0")))}})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function i(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(2),l=n(1),s=n(3),c=n(4),p=n(0),u=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),__=wp.i18n.__,m=wp.element,d=m.Component,f=m.Fragment,h=function(e){function t(){r(this,t);var e=o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments));return e.switchBackToURLInput=e.switchBackToURLInput.bind(e),e.setUrl=e.setUrl.bind(e),e.onLoad=e.onLoad.bind(e),e.state={editingURL:!1,url:e.props.attributes.url,fetching:!0,cannotEmbed:!1,interactive:!1},e}return i(t,e),u(t,[{key:"hideOverlay",value:function(){this.setState({interactive:!0})}},{key:"onLoad",value:function(){this.setState({fetching:!1})}},{key:"decodeHTMLEntities",value:function(e){return e&&"string"===typeof e&&(e=e.replace(/<script[^>]*>([\S\s]*?)<\/script>/gim,""),e=e.replace(/<\/?\w(?:[^"'>]|"[^"]*"|'[^']*')*>/gim,"")),e}},{key:"setUrl",value:function(e){e&&e.preventDefault();var t=this.state.url,n=this.props.setAttributes;if(n({url:t}),t&&t.match(/^http[s]?:\/\/(?:(?:(?:www\.|maps\.)?(?:google\.com?))|(?:goo\.gl))(?:\.[a-z]{2})?\/(?:maps\/)?(?:place\/)?(?:[a-z0-9\/%+\-_]*)?([a-z0-9\/%,+\-_=!:@\.&*\$#?\']*)/i)){var r=this.decodeHTMLEntities(t);if(t.match("~(maps/embed|output=embed)~i"));else{var o=/@(-?[0-9\.]+,-?[0-9\.]+).+,([0-9\.]+[a-z])/i,i=o.exec(r);i&&i.length>1&&i[1]&&i[2]?r="https://maps.google.com/maps?hl=en&ie=UTF8&ll="+i[1]+"&spn="+i[1]+"&t=m&z="+Math.round(parseInt(i[2]))+"&output=embed":this.setState({cannotEmbed:!0,editingURL:!0})}this.setState({editingURL:!1,cannotEmbed:!1}),n({iframeSrc:r})}else this.setState({cannotEmbed:!0,editingURL:!0})}},{key:"switchBackToURLInput",value:function(){this.setState({editingURL:!0})}},{key:"render",value:function(){var e=this,t=this.state,n=t.url,r=t.editingURL,o=t.fetching,i=t.cannotEmbed,u=t.interactive,m=this.props.attributes.iframeSrc,d=__("Google Maps URL");return!m||r?wp.element.createElement(s.a,{label:d,onSubmit:this.setUrl,value:n,cannotEmbed:i,onChange:function(t){return e.setState({url:t.target.value})},icon:p.h,DocTitle:__("Learn more about Google map embed"),docLink:"https://embedpress.com/docs/embed-google-maps-wordpress/"}):wp.element.createElement(f,null,o?wp.element.createElement(l.a,null):null,wp.element.createElement(c.a,{src:m,onFocus:this.hideOverlay,onLoad:this.onLoad,style:{display:o?"none":""},frameborder:"0",width:"600",height:"450"}),!u&&wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:this.hideOverlay}),wp.element.createElement(a.a,{showEditButton:m&&!i,switchBackToURLInput:this.switchBackToURLInput}))}}],[{key:"getDerivedStateFromProps",value:function(e,t){return!e.isSelected&&t.interactive?{interactive:!1}:null}}]),t}(d);t.a=h},function(e,t,n){"use strict";var r=n(34),o=(n.n(r),n(35)),i=(n.n(o),n(36)),a=n(0),l=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},__=wp.i18n.__,s=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks["twitch-block"]&&s("embedpress/twitch-block",{title:__("Twitch"),icon:a.k,category:"embedpress",keywords:[__("embedpress"),__("twitch")],supports:{align:["wide","full","right","left"],default:""},attributes:{url:{type:"string",default:""},iframeSrc:{type:"string",default:""},attrs:{type:"string",default:""}},edit:i.a,save:function(e){var t=e.attributes,n=t.iframeSrc,r=t.attrs,o=n+"&parent="+embedpressObj.twitch_host;return wp.element.createElement("figure",{className:"ose-twitch-presentation"},wp.element.createElement("iframe",l({src:o},r,{frameborder:"0",width:"600",height:"450"})))}})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function i(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(2),l=n(1),s=n(3),c=n(4),p=n(0),u=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},m=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),__=wp.i18n.__,d=wp.element,f=d.Component,h=d.Fragment,b=function(e){function t(){r(this,t);var e=o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments));return e.switchBackToURLInput=e.switchBackToURLInput.bind(e),e.setUrl=e.setUrl.bind(e),e.onLoad=e.onLoad.bind(e),e.hideOverlay=e.hideOverlay.bind(e),e.state={editingURL:!1,url:e.props.attributes.url,fetching:!0,cannotEmbed:!1,interactive:!1},e}return i(t,e),m(t,[{key:"hideOverlay",value:function(){this.setState({interactive:!0})}},{key:"onLoad",value:function(){this.setState({fetching:!1})}},{key:"decodeHTMLEntities",value:function(e){return e&&"string"===typeof e&&(e=e.replace(/<script[^>]*>([\S\s]*?)<\/script>/gim,""),e=e.replace(/<\/?\w(?:[^"'>]|"[^"]*"|'[^']*')*>/gim,"")),e}},{key:"setUrl",value:function(e){e&&e.preventDefault();var t=this.state.url,n=this.props.setAttributes;n({url:t});var r=/http[s]?:\/\/(?:www\.|clips\.)twitch\.tv\/([0-9a-zA-Z\-\_]+)\/?(chat\/?$|[0-9a-z\-\_]*)?/;if(t&&t.match(r)){var o=this.decodeHTMLEntities(t),i=r.exec(o),a=i[1];console.log(a);var l,s="channel";switch(t.indexOf("clips.twitch.tv")>-1?s="clip":t.indexOf("/videos/")>-1?s="video":t.indexOf("#/chat$#")>-1&&(s="chat"),console.log(s),s){case"channel":o="https://player.twitch.tv/?channel="+a,l={scrolling:"no",frameborder:"0",allowfullscreen:"true"};break;case"clip":o="https://clips.twitch.tv/embed?clip="+a+"&autoplay=false",l={scrolling:"no",frameborder:"0",allowfullscreen:"true"};break;case"video":a=i[2],o="https://player.twitch.tv/?video="+a,l={scrolling:"no",frameborder:"0",allowfullscreen:"true"};break;case"chat":o="http://www.twitch.tv/embed/"+a+"/chat",l={scrolling:"yes",frameborder:"0",allowfullscreen:"true",id:"'"+a+"'"}}this.setState({editingURL:!1,cannotEmbed:!1}),n({iframeSrc:o,attrs:l})}else this.setState({cannotEmbed:!0,editingURL:!0})}},{key:"switchBackToURLInput",value:function(){this.setState({editingURL:!0})}},{key:"render",value:function(){var e=this,t=this.state,n=t.url,r=t.editingURL,o=t.fetching,i=t.cannotEmbed,m=t.interactive,d=this.props.attributes,f=d.iframeSrc,b=d.attrs,w=__("Twitch URL");if(!f||r)return wp.element.createElement(s.a,{label:w,onSubmit:this.setUrl,value:n,cannotEmbed:i,onChange:function(t){return e.setState({url:t.target.value})},icon:p.k,DocTitle:__("Learn more about twitch embed"),docLink:"https://embedpress.com/docs/embed-twitch-streams-chat/"});var y=f+"&parent="+embedpressObj.twitch_host;return wp.element.createElement(h,null,o?wp.element.createElement(l.a,null):null,wp.element.createElement(c.a,u({src:y},b,{onLoad:this.onLoad,style:{display:o?"none":""},onFocus:this.hideOverlay,width:"600",height:"450"})),!m&&wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:this.hideOverlay}),wp.element.createElement(a.a,{showEditButton:f&&!i,switchBackToURLInput:this.switchBackToURLInput}))}}],[{key:"getDerivedStateFromProps",value:function(e,t){return!e.isSelected&&t.interactive?{interactive:!1}:null}}]),t}(f);t.a=b},function(e,t,n){"use strict";var r=n(38),o=(n.n(r),n(39)),i=(n.n(o),n(40)),a=n(0),__=wp.i18n.__,l=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks["wistia-block"]&&l("embedpress/wistia-block",{title:__("Wistia"),icon:a.l,category:"embedpress",keywords:[__("embedpress"),__("wistia")],supports:{align:["wide","full","right","left"],default:""},edit:i.a,save:function(e){return null},deprecated:[{attributes:{url:{type:"string",default:""},iframeSrc:{type:"string",default:""}},edit:i.a,save:function(e){var t=e.attributes.iframeSrc;return wp.element.createElement("div",{class:"ose-wistia"},wp.element.createElement("iframe",{src:t,allowtransparency:"true",frameborder:"0",class:"wistia_embed",name:"wistia_embed",width:"600",height:"330"}))}}]})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function i(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(2),l=n(1),s=n(3),c=n(4),p=n(0),u=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),__=wp.i18n.__,m=wp.element,d=m.Component,f=m.Fragment,h=function(e){function t(){r(this,t);var e=o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments));return e.switchBackToURLInput=e.switchBackToURLInput.bind(e),e.setUrl=e.setUrl.bind(e),e.onLoad=e.onLoad.bind(e),e.hideOverlay=e.hideOverlay.bind(e),e.state={editingURL:!1,url:e.props.attributes.url,fetching:!0,cannotEmbed:!1,interactive:!1,mediaId:null},e.setUrl(),e}return i(t,e),u(t,[{key:"hideOverlay",value:function(){this.setState({interactive:!0})}},{key:"componentDidMount",value:function(){if(this.props.attributes.url){var e=this.props.attributes.url.match(/medias\/(.*)/),t=e[1];this.setState(Object.assign({},this.state,{mediaId:t}))}}},{key:"onLoad",value:function(){if(this.setState({fetching:!1}),embedpressObj.wisita_options){var e=Object.assign({},this.state);setTimeout(function(){var e=document.createElement("script");e.src="https://fast.wistia.com/assets/external/E-v1.js",e.charset="ISO-8859-1",document.body.appendChild(e)},100),setTimeout(function(){var t=document.createElement("script");t.type="text/javascript",t.innerHTML="window.pp_embed_wistia_labels = "+embedpressObj.wistia_labels,document.body.appendChild(t),t=document.createElement("script"),t.type="text/javascript",t.innerHTML='wistiaEmbed = Wistia.embed( "'+e.mediaId+'", '+embedpressObj.wisita_options+" );",document.body.appendChild(t)},400)}}},{key:"decodeHTMLEntities",value:function(e){return e&&"string"===typeof e&&(e=e.replace(/<script[^>]*>([\S\s]*?)<\/script>/gim,""),e=e.replace(/<\/?\w(?:[^"'>]|"[^"]*"|'[^']*')*>/gim,"")),e}},{key:"setUrl",value:function(e){e&&e.preventDefault();var t=this.state.url,n=this.props.setAttributes;if(n({url:t}),t&&(t.match(/^http[s]?:\/\/(?:www\.)?wistia\.com\/medias/i)||t.match(/^http[s]?:\/\/(?:www\.)?fast\/.wistia\.com\/embed\/medias/i.jsonp))){var r=t.match(/medias\/(.*)/),o=r[1],i="//fast.wistia.net/embed/iframe/"+o;this.setState({editingURL:!1,cannotEmbed:!1,mediaId:o}),n({iframeSrc:i})}else this.setState({cannotEmbed:!0,editingURL:!0})}},{key:"switchBackToURLInput",value:function(){this.setState({editingURL:!0})}},{key:"render",value:function(){var e=this,t=this.state,n=t.url,r=t.editingURL,o=t.fetching,i=t.cannotEmbed,u=t.interactive,m=this.props.attributes.iframeSrc,d=__("Wistia URL");return!m||r?wp.element.createElement(s.a,{label:d,onSubmit:this.setUrl,value:n,cannotEmbed:i,onChange:function(t){return e.setState({url:t.target.value})},icon:p.l,DocTitle:__("Learn more about Wistia embed"),docLink:"https://embedpress.com/docs/embed-wistia-videos-wordpress/"}):wp.element.createElement(f,null,o?wp.element.createElement(l.a,null):null,wp.element.createElement("div",{className:"ose-wistia",id:"wistia_"+this.state.mediaId},wp.element.createElement(c.a,{src:m,onFocus:this.hideOverlay,onLoad:this.onLoad,style:{display:o?"none":""},frameborder:"0",width:"600",height:"330"})),!u&&wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:this.hideOverlay}),wp.element.createElement(a.a,{showEditButton:m&&!i,switchBackToURLInput:this.switchBackToURLInput}))}}],[{key:"getDerivedStateFromProps",value:function(e,t){return!e.isSelected&&t.interactive?{interactive:!1}:null}}]),t}(d);t.a=h},function(e,t,n){"use strict";var r=n(42),o=(n.n(r),n(43)),i=(n.n(o),n(44)),a=n(0),__=wp.i18n.__,l=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks["youtube-block"]&&l("embedpress/youtube-block",{title:__("YouTube"),icon:a.m,category:"embedpress",keywords:[__("embedpress"),__("youtube")],supports:{align:["wide","full","right","left"],default:""},edit:i.a,save:function(){return null}})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function i(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(2),l=n(1),s=n(3),c=n(4),p=n(0),u=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},m=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),__=wp.i18n.__,d=wp.element,f=d.Component,h=d.Fragment,b=function(e){function t(){r(this,t);var e=o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments));return e.switchBackToURLInput=e.switchBackToURLInput.bind(e),e.setUrl=e.setUrl.bind(e),e.onLoad=e.onLoad.bind(e),e.hideOverlay=e.hideOverlay.bind(e),e.state={editingURL:!1,url:e.props.attributes.url,fetching:!0,cannotEmbed:!1,interactive:!1},e}return i(t,e),m(t,[{key:"hideOverlay",value:function(){this.setState({interactive:!0})}},{key:"componentWillMount",value:function(){this.state.url&&this.setUrl()}},{key:"onLoad",value:function(){this.setState({fetching:!1})}},{key:"decodeHTMLEntities",value:function(e){return e&&"string"===typeof e&&(e=e.replace(/<script[^>]*>([\S\s]*?)<\/script>/gim,""),e=e.replace(/<\/?\w(?:[^"'>]|"[^"]*"|'[^']*')*>/gim,"")),e}},{key:"setUrl",value:function(e){e&&e.preventDefault();var t=this.state.url,n=this.props.setAttributes;n({url:t});var r=t.match(/^(?:https?:\/\/)?(?:www\.)?(?:youtu\.be\/|youtube\.com\/(?:embed\/|v\/|watch\?v=|watch\?.+&v=))((\w|-){11})(?:\S+)?$/);if(t&&r){var o=r[1],i="https://www.youtube.com/embed/"+o,a=new URL(i);if("undefined"!==typeof embedpressProObj)for(var l in embedpressProObj.youtubeParams)a.searchParams.set(l,embedpressProObj.youtubeParams[l]);this.setState({editingURL:!1,cannotEmbed:!1}),n({iframeSrc:a.href,mediaId:o})}else this.setState({cannotEmbed:!0,editingURL:!0})}},{key:"switchBackToURLInput",value:function(){this.setState({editingURL:!0})}},{key:"render",value:function(){var e=this,t=this.state,n=t.url,r=t.editingURL,o=t.fetching,i=t.cannotEmbed,m=t.interactive,d=this.props.attributes,f=d.iframeSrc,b=d.attrs,w=__("YouTube URL");return!f||r?wp.element.createElement(s.a,{label:w,onSubmit:this.setUrl,value:n,cannotEmbed:i,onChange:function(t){return e.setState({url:t.target.value})},icon:p.m,DocTitle:__("Learn More About YouTube Embed"),docLink:"https://embedpress.com/docs/embed-youtube-wordpress/"}):wp.element.createElement(h,null,o?wp.element.createElement(l.a,null):null,wp.element.createElement(c.a,u({src:f},b,{onLoad:this.onLoad,style:{display:o?"none":""},width:"640",onFocus:this.hideOverlay,height:"450"})),!m&&wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:this.hideOverlay}),wp.element.createElement(a.a,{showEditButton:f&&!i,switchBackToURLInput:this.switchBackToURLInput}))}}],[{key:"getDerivedStateFromProps",value:function(e,t){return!e.isSelected&&t.interactive?{interactive:!1}:null}}]),t}(f);t.a=b},function(e,t,n){"use strict";var r=n(46),o=(n.n(r),n(47)),i=(n.n(o),n(48)),a=n(0),l=n(5),__=wp.i18n.__,s=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks.document&&s("embedpress/document",{title:__("Document"),icon:a.b,category:"embedpress",keywords:[__("embedpress"),__("pdf"),__("doc"),__("ppt")],supports:{align:["wide","full","right","left"],default:""},attributes:{id:{type:"string"},href:{type:"string"},powered_by:{type:"boolean",default:!0},width:{type:"number",default:600},height:{type:"number",default:600},fileName:{type:"string"},mime:{type:"string"}},edit:i.a,save:function(e){var t=e.attributes,n=t.href,r=t.mime,o=t.id,i=t.width,a=t.height,s=t.powered_by,c="//view.officeapps.live.com/op/embed.aspx?src="+n;return wp.element.createElement("div",{className:"embedpress-document-embed ep-doc-"+o,style:{height:a,width:i}},"application/pdf"===r&&wp.element.createElement("div",{style:{height:a,width:i},className:"embedpress-embed-document-pdf "+o,"data-emid":o,"data-emsrc":n}),"application/pdf"!==r&&wp.element.createElement("iframe",{style:{height:a,width:i},src:c,mozallowfullscreen:"true",webkitallowfullscreen:"true"}),s&&wp.element.createElement("p",{className:"embedpress-el-powered"},"Powered By EmbedPress"),embedpressObj.embedpress_pro&&wp.element.createElement(l.a,{id:o}))}})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function i(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(4),l=n(5),s=n(1),c=n(0),p=function(){function e(e,t){var n=[],_n=!0,r=!1,o=void 0;try{for(var i,a=e[Symbol.iterator]();!(_n=(i=a.next()).done)&&(n.push(i.value),!t||n.length!==t);_n=!0);}catch(e){r=!0,o=e}finally{try{!_n&&a.return&&a.return()}finally{if(r)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),u=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),__=wp.i18n.__,m=wp.blob,d=m.getBlobByURL,f=m.isBlobURL,h=m.revokeBlobURL,b=wp.blockEditor,w=b.BlockIcon,y=b.MediaPlaceholder,v=b.InspectorControls,g=wp.element,E=g.Component,L=g.Fragment,_=wp.components,k=_.RangeControl,O=_.PanelBody,S=_.ExternalLink,U=_.ToggleControl,C=["application/pdf","application/msword","application/vnd.ms-powerpoint","application/vnd.ms-excel","application/vnd.openxmlformats-officedocument.wordprocessingml.document","application/vnd.openxmlformats-officedocument.spreadsheetml.sheet","application/vnd.openxmlformats-officedocument.presentationml.presentation"],x=function(e){function t(){r(this,t);var e=o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments));return e.onSelectFile=e.onSelectFile.bind(e),e.onUploadError=e.onUploadError.bind(e),e.onLoad=e.onLoad.bind(e),e.hideOverlay=e.hideOverlay.bind(e),e.state={hasError:!1,fetching:!1,interactive:!1,loadPdf:!0},e}return i(t,e),u(t,[{key:"componentDidMount",value:function(){var e=this,t=this.props,n=t.attributes,r=t.mediaUpload,o=t.noticeOperations,i=n.href;if(f(i)){r({filesList:[d(i)],onFileChange:function(t){var n=p(t,1),r=n[0];return e.onSelectFile(r)},onError:function(t){e.setState({hasError:!0}),o.createErrorNotice(t)}}),h(i)}this.props.attributes.href&&"application/pdf"===this.props.attributes.mime&&this.state.loadPdf&&(this.setState({loadPdf:!1}),PDFObject.embed(this.props.attributes.href,"."+this.props.attributes.id))}},{key:"componentDidUpdate",value:function(e){e.isSelected&&!this.props.isSelected&&this.setState({showCopyConfirmation:!1})}},{key:"hideOverlay",value:function(){this.setState({interactive:!0})}},{key:"onLoad",value:function(){this.setState({fetching:!1})}},{key:"onSelectFile",value:function(e){e&&e.url&&(this.setState({hasError:!1}),this.props.setAttributes({href:e.url,fileName:e.title,id:"embedpress-pdf-"+Date.now(),mime:e.mime}),embedpressObj.embedpress_pro&&this.props.setAttributes({powered_by:!1}),"application/pdf"===e.mime&&(this.setState({loadPdf:!1}),PDFObject.embed(e.url,"."+this.props.attributes.id)))}},{key:"onUploadError",value:function(e){var t=this.props.noticeOperations;t.removeAllNotices(),t.createErrorNotice(e)}},{key:"render",value:function(){var e=this.props,t=e.attributes,n=e.noticeUI,r=e.setAttributes,o=t.href,i=t.mime,p=t.id,u=t.width,m=t.height,d=t.powered_by,f=this.state,h=f.hasError,b=f.interactive,g=f.fetching,E=f.loadPdf;if(!o||h)return wp.element.createElement("div",{className:"embedpress-document-editmode"},wp.element.createElement(y,{icon:wp.element.createElement(w,{icon:c.b}),labels:{title:__("Document"),instructions:__("Upload a file or pick one from your media library for embed.")},onSelect:this.onSelectFile,notices:n,allowedTypes:C,onError:this.onUploadError},wp.element.createElement("div",{style:{width:"100%"},className:"components-placeholder__learn-more embedpress-doc-link"},wp.element.createElement(S,{href:"https://embedpress.com/docs/embed-document/"},"Learn more about Embedded document "))));var _="//view.officeapps.live.com/op/embed.aspx?src="+o;return wp.element.createElement(L,null,g&&"application/pdf"!==i?wp.element.createElement(s.a,null):null,wp.element.createElement("div",{className:"embedpress-document-embed ep-doc-"+p,style:{height:m,width:u}},"application/pdf"===i&&wp.element.createElement("div",{style:{height:m,width:u},className:"embedpress-embed-document-pdf "+p,"data-emid":p,"data-emsrc":o}),"application/pdf"!==i&&wp.element.createElement(a.a,{onMouseUponMouseUp:this.hideOverlay,style:{height:m,width:u,display:g||!E?"none":""},onLoad:this.onLoad,src:_}),!b&&wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:this.hideOverlay}),d&&wp.element.createElement("p",{className:"embedpress-el-powered"},"Powered By EmbedPress"),!g&&wp.element.createElement(l.a,{id:p})),wp.element.createElement(v,{key:"inspector"},wp.element.createElement(O,{title:__("Embed Size","embedpress")},wp.element.createElement(k,{label:__("Width","embedpress"),value:u||720,onChange:function(e){return r({width:e})},max:1e3,min:1}),wp.element.createElement(k,{label:__("Height","embedpress"),value:m,onChange:function(e){return r({height:e})},max:1e3,min:1}),wp.element.createElement(U,{label:__("Powered By"),onChange:function(e){return r({powered_by:e})},checked:d}))))}}],[{key:"getDerivedStateFromProps",value:function(e,t){return!e.isSelected&&t.interactive?{interactive:!1}:null}}]),t}(E);t.a=x},function(e,t,n){"use strict";var r=n(50),o=(n.n(r),n(51)),i=(n.n(o),n(52)),a=n(0),__=wp.i18n.__,l=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks.embedpress&&l("embedpress/embedpress",{title:__("EmbedPress"),icon:a.d,category:"embedpress",keywords:["embedpress","embed","google","youtube","docs"],supports:{align:["right","left","center"],default:"center",lightBlockWrapper:!0},attributes:{url:{type:"string",default:""},embedHTML:{type:"string",default:""},height:{type:"string",default:"450"},width:{type:"string",default:"600"},editingURL:{type:"boolean",default:!1},fetching:{type:"boolean",default:!1},cannotEmbed:{type:"boolean",default:!1},interactive:{type:"boolean",default:!1},align:{type:"string",default:"center"},ispagination:{type:"boolean",default:!0},pagesize:{type:"number",default:6},columns:{type:"string",default:"2"},gapbetweenvideos:{type:"number",default:30}},edit:i.a,save:function(){return null}})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e){return function(){var t=e.apply(this,arguments);return new Promise(function(e,n){function r(o,i){try{var a=t[o](i),l=a.value}catch(e){return void n(e)}if(!a.done)return Promise.resolve(l).then(function(e){r("next",e)},function(e){r("throw",e)});e(l)}return r("next")})}}function o(e){function t(){w({editingURL:!0})}function n(e){var t=this;if(e&&e.preventDefault(),y){w({fetching:!0});(function(){var e=r(a.a.mark(function e(n){var r,o,i,l,s;return a.a.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return r=j?"&pagesize="+S:"",o=j?"&gapbetweenvideos="+C:"",i=j?"&ispagination="+O:"",l=j?"&columns="+U:"",s=n.split("#"),s=encodeURIComponent(s[0]),e.next=8,fetch(embedpressObj.site_url+"/wp-json/embedpress/v1/oembed/embedpress?url="+s+"&width="+k+"&height="+_+l+i+r+o).then(function(e){return e.json()});case 8:return e.abrupt("return",e.sent);case 9:case"end":return e.stop()}},e,t)}));return function(_x){return e.apply(this,arguments)}})()(y).then(function(e){w({fetching:!1}),w(e.data&&404===e.data.status||!e.embed?{cannotEmbed:!0,editingURL:!0}:{embedHTML:e.embed,cannotEmbed:!1,editingURL:!1})})}else w({cannotEmbed:!0,fetching:!1,editingURL:!0})}var o=e.clientId,i=e.attributes,f=e.className,w=e.setAttributes,y=i.url,v=i.editingURL,g=i.fetching,E=i.cannotEmbed,L=(i.interactive,i.embedHTML),_=i.height,k=i.width,O=i.ispagination,S=i.pagesize,U=i.columns,C=i.gapbetweenvideos,x=d?d():[],j=y.match(/\/channel\/|\/c\/|\/user\/|(?:https?:\/\/)?(?:www\.)?(?:youtube.com\/)(\w+)[^?\/]*$/i);b(function(){var e=setTimeout(function(){S&&(L&&!v||g)&&n()},300);return function(){return clearTimeout(e)}},[S,v]);var R="repeat(auto-fit, minmax(250px, 1fr))";return U>0&&(R="repeat(auto-fit, minmax(calc("+100/U+"% - "+C+"px), 1fr))"),wp.element.createElement(h,null,wp.element.createElement(u.a,{attributes:i,setAttributes:w,isYTChannel:j}),(!L||v)&&!g&&wp.element.createElement("div",x,wp.element.createElement(c.a,{label:__("EmbedPress - Embed anything from 150+ sites"),onSubmit:n,value:y,cannotEmbed:E,onChange:function(e){return w({url:e.target.value})},icon:m.d,DocTitle:__("Learn more about EmbedPress"),docLink:"https://embedpress.com/docs/"})),g?wp.element.createElement("div",{className:f},wp.element.createElement(s.a,null)," "):null,L&&!v&&!g&&wp.element.createElement("figure",x,wp.element.createElement(p.a,{style:{display:g?"none":""},dangerouslySetInnerHTML:{__html:L}}),wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:w({interactive:!0})}),wp.element.createElement(l.a,{showEditButton:L&&!E,switchBackToURLInput:t})),wp.element.createElement("style",{style:{display:"none"}},"\n\t\t\t\t\t#block-"+o+" .ose-embedpress-responsive{\n\t\t\t\t\t\twidth: "+k+"px!important;\n\t\t\t\t\t\theight: "+_+"px!important\n\t\t\t\t\t}\n\t\t\t\t\t#block-"+o+" iframe{\n\t\t\t\t\t\twidth: "+k+"px!important;\n\t\t\t\t\t\theight: "+_+"px!important\n\t\t\t\t\t}\n\n\t\t\t\t\t#block-"+o+" .ep-youtube__content__block .youtube__content__body .content__wrap{\n\t\t\t\t\t\tgap: "+C+"px!important;\n\t\t\t\t\t\tmargin-top: "+C+"px!important;\n\t\t\t\t\t}\n\n\t\t\t\t\t#block-"+o+" .ose-youtube{\n\t\t\t\t\t\twidth: "+k+"px!important;\n\t\t\t\t\t}\n\t\t\t\t\t#block-"+o+" .ose-youtube .ep-first-video iframe{\n\t\t\t\t\t\tmax-height: "+_+"px!important;\n\t\t\t\t\t}\n\n\t\t\t\t\t#block-"+o+" .ose-youtube > iframe{\n\t\t\t\t\t\theight: "+_+"px!important;\n\t\t\t\t\t\twidth: 100%;\n\t\t\t\t\t}\n\n\t\t\t\t\t#block-"+o+" .ep-youtube__content__block .youtube__content__body .content__wrap {\n\t\t\t\t\t\tgrid-template-columns: "+R+";\n\t\t\t\t\t}\n\n\t\t\t\t\t#block-"+o+" .ep-youtube__content__block .ep-youtube__content__pagination{\n\t\t\t\t\t\tdisplay: flex!important;\n\t\t\t\t\t}\n\n\t\t\t\t\t"+(!O&&"#block-"+o+" .ep-youtube__content__block .ep-youtube__content__pagination{\n\t\t\t\t\t\t\tdisplay: none!important;\n\t\t\t\t\t\t}")+"\n\n\t\t\t\t\t"))}t.a=o;var i=n(53),a=n.n(i),l=n(2),s=n(1),c=n(3),p=n(56),u=n(57),m=n(0),__=wp.i18n.__,d=wp.blockEditor.useBlockProps,f=wp.element,h=f.Fragment,b=f.useEffect},function(e,t,n){e.exports=n(54)},function(e,t,n){var r=function(){return this}()||Function("return this")(),o=r.regeneratorRuntime&&Object.getOwnPropertyNames(r).indexOf("regeneratorRuntime")>=0,i=o&&r.regeneratorRuntime;if(r.regeneratorRuntime=void 0,e.exports=n(55),o)r.regeneratorRuntime=i;else try{delete r.regeneratorRuntime}catch(e){r.regeneratorRuntime=void 0}},function(e,t){!function(t){"use strict";function n(e,t,n,r){var i=t&&t.prototype instanceof o?t:o,a=Object.create(i.prototype),l=new d(r||[]);return a._invoke=c(e,n,l),a}function r(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}function o(){}function i(){}function a(){}function l(e){["next","throw","return"].forEach(function(t){e[t]=function(e){return this._invoke(t,e)}})}function s(e){function t(n,o,i,a){var l=r(e[n],e,o);if("throw"!==l.type){var s=l.arg,c=s.value;return c&&"object"===typeof c&&y.call(c,"__await")?Promise.resolve(c.__await).then(function(e){t("next",e,i,a)},function(e){t("throw",e,i,a)}):Promise.resolve(c).then(function(e){s.value=e,i(s)},a)}a(l.arg)}function n(e,n){function r(){return new Promise(function(r,o){t(e,n,r,o)})}return o=o?o.then(r,r):r()}var o;this._invoke=n}function c(e,t,n){var o=O;return function(i,a){if(o===U)throw new Error("Generator is already running");if(o===C){if("throw"===i)throw a;return h()}for(n.method=i,n.arg=a;;){var l=n.delegate;if(l){var s=p(l,n);if(s){if(s===x)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(o===O)throw o=C,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);o=U;var c=r(e,t,n);if("normal"===c.type){if(o=n.done?C:S,c.arg===x)continue;return{value:c.arg,done:n.done}}"throw"===c.type&&(o=C,n.method="throw",n.arg=c.arg)}}}function p(e,t){var n=e.iterator[t.method];if(n===b){if(t.delegate=null,"throw"===t.method){if(e.iterator.return&&(t.method="return",t.arg=b,p(e,t),"throw"===t.method))return x;t.method="throw",t.arg=new TypeError("The iterator does not provide a 'throw' method")}return x}var o=r(n,e.iterator,t.arg);if("throw"===o.type)return t.method="throw",t.arg=o.arg,t.delegate=null,x;var i=o.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=b),t.delegate=null,x):i:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,x)}function u(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function m(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function d(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(u,this),this.reset(!0)}function f(e){if(e){var t=e[g];if(t)return t.call(e);if("function"===typeof e.next)return e;if(!isNaN(e.length)){var n=-1,r=function t(){for(;++n<e.length;)if(y.call(e,n))return t.value=e[n],t.done=!1,t;return t.value=b,t.done=!0,t};return r.next=r}}return{next:h}}function h(){return{value:b,done:!0}}var b,w=Object.prototype,y=w.hasOwnProperty,v="function"===typeof Symbol?Symbol:{},g=v.iterator||"@@iterator",E=v.asyncIterator||"@@asyncIterator",L=v.toStringTag||"@@toStringTag",_="object"===typeof e,k=t.regeneratorRuntime;if(k)return void(_&&(e.exports=k));k=t.regeneratorRuntime=_?e.exports:{},k.wrap=n;var O="suspendedStart",S="suspendedYield",U="executing",C="completed",x={},j={};j[g]=function(){return this};var R=Object.getPrototypeOf,M=R&&R(R(f([])));M&&M!==w&&y.call(M,g)&&(j=M);var T=a.prototype=o.prototype=Object.create(j);i.prototype=T.constructor=a,a.constructor=i,a[L]=i.displayName="GeneratorFunction",k.isGeneratorFunction=function(e){var t="function"===typeof e&&e.constructor;return!!t&&(t===i||"GeneratorFunction"===(t.displayName||t.name))},k.mark=function(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,a):(e.__proto__=a,L in e||(e[L]="GeneratorFunction")),e.prototype=Object.create(T),e},k.awrap=function(e){return{__await:e}},l(s.prototype),s.prototype[E]=function(){return this},k.AsyncIterator=s,k.async=function(e,t,r,o){var i=new s(n(e,t,r,o));return k.isGeneratorFunction(t)?i:i.next().then(function(e){return e.done?e.value:i.next()})},l(T),T[L]="Generator",T[g]=function(){return this},T.toString=function(){return"[object Generator]"},k.keys=function(e){var t=[];for(var n in e)t.push(n);return t.reverse(),function n(){for(;t.length;){var r=t.pop();if(r in e)return n.value=r,n.done=!1,n}return n.done=!0,n}},k.values=f,d.prototype={constructor:d,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=b,this.done=!1,this.delegate=null,this.method="next",this.arg=b,this.tryEntries.forEach(m),!e)for(var t in this)"t"===t.charAt(0)&&y.call(this,t)&&!isNaN(+t.slice(1))&&(this[t]=b)},stop:function(){this.done=!0;var e=this.tryEntries[0],t=e.completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(e){function t(t,r){return i.type="throw",i.arg=e,n.next=t,r&&(n.method="next",n.arg=b),!!r}if(this.done)throw e;for(var n=this,r=this.tryEntries.length-1;r>=0;--r){var o=this.tryEntries[r],i=o.completion;if("root"===o.tryLoc)return t("end");if(o.tryLoc<=this.prev){var a=y.call(o,"catchLoc"),l=y.call(o,"finallyLoc");if(a&&l){if(this.prev<o.catchLoc)return t(o.catchLoc,!0);if(this.prev<o.finallyLoc)return t(o.finallyLoc)}else if(a){if(this.prev<o.catchLoc)return t(o.catchLoc,!0)}else{if(!l)throw new Error("try statement without catch or finally");if(this.prev<o.finallyLoc)return t(o.finallyLoc)}}}},abrupt:function(e,t){for(var n=this.tryEntries.length-1;n>=0;--n){var r=this.tryEntries[n];if(r.tryLoc<=this.prev&&y.call(r,"finallyLoc")&&this.prev<r.finallyLoc){var o=r;break}}o&&("break"===e||"continue"===e)&&o.tryLoc<=t&&t<=o.finallyLoc&&(o=null);var i=o?o.completion:{};return i.type=e,i.arg=t,o?(this.method="next",this.next=o.finallyLoc,x):this.complete(i)},complete:function(e,t){if("throw"===e.type)throw e.arg;return"break"===e.type||"continue"===e.type?this.next=e.arg:"return"===e.type?(this.rval=this.arg=e.arg,this.method="return",this.next="end"):"normal"===e.type&&t&&(this.next=t),x},finish:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),m(n),x}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;m(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:f(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=b),x}}}(function(){return this}()||Function("return this")())},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function i(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(6),l=n.n(a),s=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},c=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),p=wp.element.Component,u=function(e){function t(e){r(this,t);var n=o(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.myRef=React.createRef(),n}return i(t,e),c(t,[{key:"componentDidMount",value:function(){l.a.findDOMNode(this.myRef.current).addEventListener("load",this.props.onLoad)}},{key:"render",value:function(){return wp.element.createElement("div",s({ref:this.myRef},this.props))}}]),t}(p);t.a=u},function(e,t,n){"use strict";function r(e){var t=e.attributes,n=e.setAttributes,r=e.isYTChannel,i=t.width,c=t.height;return wp.element.createElement(s,null,wp.element.createElement(l,{title:__("Customize Embedded Link")},wp.element.createElement("p",null,__("You can adjust the width and height of embedded content.")),wp.element.createElement(a,{label:__("Width"),value:i,onChange:function(e){return n({width:e})}}),wp.element.createElement(a,{label:__("Height"),value:c,onChange:function(e){return n({height:e})}}),r&&wp.element.createElement(o.a,{attributes:t,setAttributes:n})))}t.a=r;var o=n(58),__=wp.i18n.__,i=wp.components,a=i.TextControl,l=i.PanelBody,s=wp.blockEditor.InspectorControls},function(e,t,n){"use strict";function r(e){var t=e.attributes,n=e.setAttributes,r=t.ispagination,o=t.pagesize,c=t.columns,p=t.gapbetweenvideos;return wp.element.createElement("div",null,wp.element.createElement(i,{label:__("Video Per Page"),value:o,onChange:function(e){return n({pagesize:e})},type:"number",max:50}),wp.element.createElement("p",null,"Specify the number of videos you wish to show on each page."),wp.element.createElement(a,{label:__("Column"),value:c,options:[{label:"Auto",value:"auto"},{label:"2",value:"2"},{label:"3",value:"3"},{label:"4",value:"4"},{label:"6",value:"6"}],onChange:function(e){return n({columns:e})},__nextHasNoMarginBottom:!0}),wp.element.createElement(l,{label:__("Gap Between Videos"),value:p,onChange:function(e){return n({gapbetweenvideos:e})},min:1,max:100}),wp.element.createElement("p",null,"Specify the gap between youtube videos."),wp.element.createElement(s,{label:__("Pagination"),checked:r,onChange:function(e){return n({ispagination:e})}}))}t.a=r;var __=wp.i18n.__,o=wp.components,i=o.TextControl,a=o.SelectControl,l=o.RangeControl,s=o.ToggleControl},function(e,t,n){"use strict";var r=n(60),o=(n.n(r),n(61)),i=(n.n(o),n(62)),a=n(0),__=wp.i18n.__,l=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks["embedpress-pdf"]&&l("embedpress/embedpress-pdf",{title:__("EmbedPress PDF"),icon:a.c,category:"embedpress",keywords:[__("embedpress"),__("pdf"),__("doc"),__("document")],supports:{align:["left","center","right"],default:""},attributes:{id:{type:"string"},href:{type:"string"},powered_by:{type:"boolean",default:!0},presentation:{type:"boolean",default:!0},position:{type:"string",default:"top"},download:{type:"boolean",default:!0},open:{type:"boolean",default:!1},copy_text:{type:"boolean",default:!0},toolbar:{type:"boolean",default:!0},doc_details:{type:"boolean",default:!0},doc_rotation:{type:"boolean",default:!0},width:{type:"number",default:600},height:{type:"number",default:450},fileName:{type:"string"},mime:{type:"string"}},edit:i.a,save:function(e){return null}})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function i(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(4),l=n(5),s=n(1),c=n(63),p=(n.n(c),n(64)),u=(n.n(p),n(0)),m=function(){function e(e,t){var n=[],_n=!0,r=!1,o=void 0;try{for(var i,a=e[Symbol.iterator]();!(_n=(i=a.next()).done)&&(n.push(i.value),!t||n.length!==t);_n=!0);}catch(e){r=!0,o=e}finally{try{!_n&&a.return&&a.return()}finally{if(r)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),d=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),__=wp.i18n.__,f=wp.blob,h=f.getBlobByURL,b=f.isBlobURL,w=f.revokeBlobURL,y=wp.blockEditor,v=y.BlockIcon,g=y.MediaPlaceholder,E=y.InspectorControls,L=wp.element,_=L.Component,k=L.Fragment,O=wp.components,S=O.RangeControl,U=O.PanelBody,C=O.ExternalLink,x=O.ToggleControl,j=["application/pdf"],R=function(e){function t(){r(this,t);var e=o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments));return e.onSelectFile=e.onSelectFile.bind(e),e.onUploadError=e.onUploadError.bind(e),e.onLoad=e.onLoad.bind(e),e.hideOverlay=e.hideOverlay.bind(e),e.iframeManupulate=e.iframeManupulate.bind(e),e.isPro=e.isPro.bind(e),e.addProAlert=e.addProAlert.bind(e),e.state={hasError:!1,fetching:!1,interactive:!1,loadPdf:!0},e}return i(t,e),d(t,[{key:"componentDidMount",value:function(){var e=this,t=this.props,n=t.attributes,r=t.mediaUpload,o=t.noticeOperations,i=n.href;if(b(i)){r({filesList:[h(i)],onFileChange:function(t){var n=m(t,1),r=n[0];return e.onSelectFile(r)},onError:function(t){e.setState({hasError:!0}),o.createErrorNotice(t)}}),w(i)}this.props.attributes.href&&"application/pdf"===this.props.attributes.mime&&this.state.loadPdf&&this.setState({loadPdf:!1})}},{key:"componentDidUpdate",value:function(e){e.isSelected&&!this.props.isSelected&&this.setState({showCopyConfirmation:!1})}},{key:"hideOverlay",value:function(){this.setState({interactive:!0})}},{key:"onLoad",value:function(){this.setState({fetching:!1})}},{key:"onSelectFile",value:function(e){e&&e.url&&(this.setState({hasError:!1}),this.props.setAttributes({href:e.url,fileName:e.title,id:"embedpress-pdf-"+Date.now(),mime:e.mime}),void 0!==embedpressObj.branding&&void 0!==embedpressObj.branding.powered_by&&this.props.setAttributes({powered_by:embedpressObj.branding.powered_by}),"application/pdf"===e.mime&&this.setState({loadPdf:!1}))}},{key:"onUploadError",value:function(e){var t=this.props.noticeOperations;t.removeAllNotices(),t.createErrorNotice(e)}},{key:"isDisplay",value:function(e){return e=e?"block":"none"}},{key:"iframeManupulate",value:function(e,t,n,r,o,i,a,l,s,c){var p=this,u=setInterval(function(){var m="",d=document.querySelector(e).contentWindow.document,f=d.getElementsByTagName("head")[0],h=d.createElement("style");h.setAttribute("id","EBiframeStyleID"),!1===i&&(t=!1,r=!0,o=!1,a=!0,l=!1,s=!1,c=!1),i=p.isDisplay(i),t=p.isDisplay(t),r=p.isDisplay(r),o=p.isDisplay(o),a=p.isDisplay(a),"block"===a&&(a="all"),s=p.isDisplay(s),c=p.isDisplay(c),"top"===n?(n="top:0;bottom:auto;",m=""):(n="bottom:0;top:auto;",m="\n\t\t\t\t.findbar, .secondaryToolbar {\n\t\t\t\t\ttop: auto;bottom: 32px;\n\t\t\t\t}\n\t\t\t\t.doorHangerRight:after{\n\t\t\t\t\ttransform: rotate(180deg);\n\t\t\t\t\tbottom: -16px;\n\t\t\t\t}\n\t\t\t\t .doorHangerRight:before {\n\t\t\t\t\ttransform: rotate(180deg);\n\t\t\t\t\tbottom: -18px;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t.findbar.doorHanger:before {\n\t\t\t\t\tbottom: -18px;\n\t\t\t\t\ttransform: rotate(180deg);\n\t\t\t\t}\n\t\t\t\t.findbar.doorHanger:after {\n\t\t\t\t\tbottom: -16px;\n\t\t\t\t\ttransform: rotate(180deg);\n\t\t\t\t}\n\t\t\t"),h.textContent="\n\t\t\t.toolbar{\n\t\t\t\tdisplay: "+i+"!important;\n\t\t\t\tposition: absolute;\n\t\t\t\t"+n+"\n\n\t\t\t}\n\n\t\t\t#secondaryToolbar{\n\t\t\t\tdisplay: "+i+";\n\t\t\t}\n\t\t\t#secondaryPresentationMode, #toolbarViewerRight #presentationMode{\n\t\t\t\tdisplay: "+t+"!important;\n\t\t\t}\n\t\t\t#secondaryOpenFile, #toolbarViewerRight #openFile{\n\t\t\t\tdisplay: "+o+"!important;\n\t\t\t}\n\t\t\t#secondaryDownload, #secondaryPrint, #toolbarViewerRight #print, #toolbarViewerRight #download{\n\t\t\t\tdisplay: "+r+"!important;\n\t\t\t}\n\t\t\t#pageRotateCw{\n\t\t\t\tdisplay: "+c+"!important;\n\t\t\t}\n\t\t\t#pageRotateCcw{\n\t\t\t\tdisplay: "+c+"!important;\n\t\t\t}\n\t\t\t#documentProperties{\n\t\t\t\tdisplay: "+s+"!important;\n\t\t\t}\n\t\t\t.textLayer{\n\t\t\t\tuser-select: "+a+"!important;\n\t\t\t}\n\t\t\t\n\t\t\t"+m+"\n\t\t\t\n\t\t",f&&(d.getElementById("EBiframeStyleID")&&d.getElementById("EBiframeStyleID").remove(),f.appendChild(h),clearInterval(u))},100)}},{key:"addProAlert",value:function(e,t){t||(document.querySelector(".pro__alert__wrap").style.display="block")}},{key:"removeAlert",value:function(){document.querySelector(".pro__alert__wrap")&&document.querySelector(".pro__alert__wrap .pro__alert__card .button").addEventListener("click",function(e){document.querySelector(".pro__alert__wrap").style.display="none"})}},{key:"isPro",value:function(e){var t=document.createElement("div");return t.innerHTML='\n\t\t<div class="pro__alert__wrap" style="display: none;">\n\t\t\t<div class="pro__alert__card">\n\t\t\t\t<img src="../wp-content/plugins/embedpress/EmbedPress/Ends/Back/Settings/assets/img/alert.svg" alt=""/>\n\t\t\t\t\t<h2>Opps...</h2>\n\t\t\t\t\t<p>You need to upgrade to the <a href="https://wpdeveloper.com/in/upgrade-embedpress" target="_blank">Premium</a> Version to use this feature</p>\n\t\t\t\t\t<a href="#" class="button radius-10">Close</a>\n\t\t\t</div>\n\t\t</div>\n\t\t',t}},{key:"render",value:function(){var e=this,t=this.props,n=t.attributes,r=t.noticeUI,o=t.setAttributes,i=t.clientId,c=n.href,m=n.mime,d=n.id,f=n.width,h=n.height,b=n.powered_by,w=n.presentation,y=n.position,L=n.download,_=n.open,O=n.toolbar,R=n.copy_text,M=n.toolbar_position,T=n.doc_details,P=n.doc_rotation,F=this.state,B=F.hasError,D=F.interactive,I=F.fetching,N=F.loadPdf,z=embedpressObj.is_pro_plugin_active;if(z||(o({download:!0}),o({copy_text:!0})),document.querySelector(".pro__alert__wrap")||(document.querySelector("body").append(this.isPro("none")),this.removeAlert()),!c||B)return wp.element.createElement("div",{className:"embedpress-document-editmode"},wp.element.createElement(g,{icon:wp.element.createElement(v,{icon:u.c}),labels:{title:__("EmbedPress PDF"),instructions:__("Upload a PDF file or pick one from your media library for embed.")},onSelect:this.onSelectFile,notices:r,allowedTypes:j,onError:this.onUploadError},wp.element.createElement("div",{style:{width:"100%"},className:"components-placeholder__learn-more embedpress-doc-link"},wp.element.createElement(C,{href:"https://embedpress.com/docs/embed-document/"},"Learn more about Embedded document "))));var H="//view.officeapps.live.com/op/embed.aspx?src="+c,A=embedpressObj.pdf_renderer+"?file="+c;return this.iframeManupulate("."+d,w,y,L,_,O,R,M,T,P),wp.element.createElement(k,null,I&&"application/pdf"!==m?wp.element.createElement(s.a,null):null,wp.element.createElement("div",{className:"embedpress-document-embed ep-doc-"+d,style:{width:f,maxWidth:"100%"},id:"ep-doc-"+this.props.clientId},"application/pdf"===m&&wp.element.createElement("iframe",{powered_by:b,style:{height:h,width:f},className:"embedpress-embed-document-pdf "+d,"data-emid":d,"data-emsrc":c,src:A}),"application/pdf"!==m&&wp.element.createElement(a.a,{onMouseUponMouseUp:this.hideOverlay,style:{height:h,width:f,display:I||!N?"none":""},onLoad:this.onLoad,src:H}),!D&&wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:this.hideOverlay}),b&&wp.element.createElement("p",{className:"embedpress-el-powered"},"Powered By EmbedPress"),!I&&wp.element.createElement(l.a,{id:d})),wp.element.createElement(E,{key:"inspector"},wp.element.createElement(U,{title:__("Embed Size(px)","embedpress")},wp.element.createElement(S,{label:__("Width","embedpress"),value:f,onChange:function(e){return o({width:e})},max:1e3,min:1}),wp.element.createElement(S,{label:__("Height","embedpress"),value:h,onChange:function(e){return o({height:e})},max:1e3,min:1})),wp.element.createElement(U,{title:__("PDF Control Settings","embedpress"),initialOpen:!1},wp.element.createElement("div",{className:z?"pro-control-active":"pro-control",onClick:function(t){e.addProAlert(t,z)}},wp.element.createElement(x,{label:__("Toolbar","embedpress"),description:__("Show or Hide toolbar. Note: If you disable toolbar access then every toolbar options will be disabled","embedpress"),onChange:function(e){return o({toolbar:e})},checked:O,style:{marginTop:"30px"}}),!z&&wp.element.createElement("span",{className:"isPro"},__("pro","embedpress"))),O&&wp.element.createElement(k,null,wp.element.createElement(p.__experimentalToggleGroupControl,{label:"Toolbar Position",value:y,onChange:function(e){return o({position:e})}},wp.element.createElement(p.__experimentalToggleGroupControlOption,{value:"top",label:"Top"}),wp.element.createElement(p.__experimentalToggleGroupControlOption,{value:"bottom",label:"Bottom"})),wp.element.createElement(x,{label:__("Presentation Mode","embedpress"),onChange:function(e){return o({presentation:e})},checked:w}),wp.element.createElement("div",{className:z?"pro-control-active":"pro-control",onClick:function(t){e.addProAlert(t,z)}},wp.element.createElement(x,{label:__("Print/Download","embedpress"),onChange:function(e){return o({download:e})},checked:L}),!z&&wp.element.createElement("span",{className:"isPro"},__("pro","embedpress"))),wp.element.createElement("div",{className:z?"pro-control-active":"pro-control",onClick:function(t){e.addProAlert(t,z)}},wp.element.createElement(x,{label:__("Copy Text","embedpress"),onChange:function(e){return o({copy_text:e})},checked:R,className:"disabled"}),!z&&wp.element.createElement("span",{className:"isPro"},__("pro","embedpress"))),wp.element.createElement(x,{label:__("Rotation","embedpress"),onChange:function(e){return o({doc_rotation:e})},checked:P}),wp.element.createElement(x,{label:__("Properties","embedpress"),onChange:function(e){return o({doc_details:e})},checked:T}),wp.element.createElement(x,{label:__("Powered By","embedpress"),onChange:function(e){return o({powered_by:e})},checked:b})))),wp.element.createElement("style",{style:{display:"none"}},"\n\t\t\t\t\t\t\t#block-"+i+" {\n\t\t\t\t\t\t\t\twidth:-webkit-fill-available;\n\t\t\t\t\t\t\t} \n\t\t\t\t\t\t\t.embedpress-el-powered{\n\t\t\t\t\t\t\t\tmax-width: "+f+"\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t.alignright .embedpress-document-embed{\n\t\t\t\t\t\t\t\tfloat: right!important;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t.alignleft .embedpress-document-embed{\n\t\t\t\t\t\t\t\tfloat: left;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t"))}}],[{key:"getDerivedStateFromProps",value:function(e,t){return!e.isSelected&&t.interactive?{interactive:!1}:null}}]),t}(_);t.a=R},function(e,t){e.exports=wp.apiFetch},function(e,t){e.exports=wp.components},function(e,t,n){"use strict";var r=n(66),o=(n.n(r),n(67)),i=(n.n(o),n(68)),a=n(0),__=wp.i18n.__,l=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks["embedpress-calendar"]&&l("embedpress/embedpress-calendar",{title:__("Google Calendar"),icon:a.a,category:"embedpress",keywords:["embedpress","embed","calendar","calender","google","cal","events","task","birthday"],supports:{align:["left","center","right"],default:"center",lightBlockWrapper:!0},attributes:{id:{type:"string"},powered_by:{type:"boolean",default:!0},is_public:{type:"boolean",default:!0},width:{type:"string",default:600},height:{type:"string",default:600},url:{type:"string",default:""},embedHTML:{type:"string",default:""}},edit:i.a,save:function(e){return null}})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e){function t(){d({editingURL:!0,is_public:!0})}function n(e){e&&e.preventDefault(),w?(d({fetching:!0}),setTimeout(function(){d({fetching:!1,cannotEmbed:!1,editingURL:!1,embedHTML:"ready"})},500)):d({cannotEmbed:!0,fetching:!1,editingURL:!0})}var r=e.attributes,c=e.className,d=e.setAttributes,w=r.url,y=r.editingURL,v=r.fetching,g=r.cannotEmbed,E=r.embedHTML,L=r.height,_=r.width,k=r.powered_by,O=r.is_public,S=r.align,U=h?h({className:"align"+S,style:{width:_+"px",height:L+"px"}}):[];return wp.element.createElement(b,null,wp.element.createElement(f,null,wp.element.createElement(u,{title:__("Customize Embedded Calendar","embedpress")},wp.element.createElement("p",null,__("You can adjust the width and height of embedded content.","embedpress")),wp.element.createElement(p,{label:__("Width","embedpress"),value:_,onChange:function(e){return d({width:e})}}),wp.element.createElement(p,{label:__("Height","embedpress"),value:L,onChange:function(e){return d({height:e})}})),wp.element.createElement(u,{title:__("Calendar Type and other options","embedpress")},wp.element.createElement("p",null,__("You can show public calendar without any API key","embedpress")),wp.element.createElement(m,{label:__("Powered By","embedpress"),onChange:function(e){return d({powered_by:e})},checked:k}),wp.element.createElement(m,{label:__("Embedding Public Calendar","embedpress"),onChange:function(e){return d({is_public:e})},checked:O}))),(!E||y)&&!v&&O&&wp.element.createElement("div",U,wp.element.createElement(i.a,{label:__("Public Calendar Link"),onSubmit:n,value:w,cannotEmbed:g,onChange:function(e){return d({url:e.target.value})},icon:a.a,DocTitle:__("Learn more about EmbedPress Calendar"),docLink:"https://embedpress.com/docs/"})),v?wp.element.createElement("div",{className:c},wp.element.createElement(o.a,null)," "):null,E&&O&&!y&&!v&&wp.element.createElement("figure",U,O&&wp.element.createElement("iframe",{style:{display:v?"none":""},src:w,width:_,height:L}),k&&wp.element.createElement("p",{className:"embedpress-el-powered"},"Powered By EmbedPress"),wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:d({interactive:!0})}),wp.element.createElement(l.a,{showEditButton:E&&!g,switchBackToURLInput:t})),!O&&wp.element.createElement("figure",s({className:"testing"},U),wp.element.createElement("p",null,"Private Calendar will show in the frontend only.",wp.element.createElement("br",null),wp.element.createElement("strong",null,"Note: Private calendar needs EmbedPress Pro.")),k&&wp.element.createElement("p",{className:"embedpress-el-powered"},"Powered By EmbedPress"),wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:d({interactive:!0})}),wp.element.createElement(l.a,{showEditButton:E&&!g,switchBackToURLInput:t})))}t.a=r;var o=n(1),i=n(3),a=n(0),l=n(2),s=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},c=wp.components,p=c.TextControl,u=c.PanelBody,m=c.ToggleControl,d=wp.blockEditor,f=d.InspectorControls,h=d.useBlockProps,b=wp.element.Fragment,__=wp.i18n.__}]);
1
+ !function(e){function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,t),o.l=!0,o.exports}var n={};t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=8)}([function(e,t,n){"use strict";n.d(t,"e",function(){return l}),n.d(t,"j",function(){return s}),n.d(t,"i",function(){return c}),n.d(t,"g",function(){return p}),n.d(t,"f",function(){return u}),n.d(t,"h",function(){return m}),n.d(t,"k",function(){return d}),n.d(t,"l",function(){return f}),n.d(t,"m",function(){return h}),n.d(t,"b",function(){return b}),n.d(t,"d",function(){return w}),n.d(t,"c",function(){return y}),n.d(t,"a",function(){return g});var r=wp.components,o=r.G,i=r.Path,a=(r.Polygon,r.SVG),l=wp.element.createElement(a,{xmlns:"http://www.w3.org/1999/xlink",viewBox:"0 0 48 48"}," ",wp.element.createElement(o,null,wp.element.createElement(i,{style:{fill:"#2196F3"},d:"M 37 45 L 11 45 C 9.34375 45 8 43.65625 8 42 L 8 6 C 8 4.34375 9.34375 3 11 3 L 30 3 L 40 13 L 40 42 C 40 43.65625 38.65625 45 37 45 Z "}),wp.element.createElement(i,{style:{fill:"#BBDEFB"},d:"M 40 13 L 30 13 L 30 3 Z "}),wp.element.createElement(i,{style:{fill:"#1565C0"},d:"M 30 13 L 40 23 L 40 13 Z "}),wp.element.createElement(i,{style:{fill:"#E3F2FD"},d:"M 15 23 L 33 23 L 33 25 L 15 25 Z "}),wp.element.createElement(i,{style:{fill:"#E3F2FD"},d:"M 15 27 L 33 27 L 33 29 L 15 29 Z "}),wp.element.createElement(i,{style:{fill:"#E3F2FD"},d:"M 15 31 L 33 31 L 33 33 L 15 33 Z "}),wp.element.createElement(i,{style:{fill:"#E3F2FD"},d:"M 15 35 L 25 35 L 25 37 L 15 37 Z "}))),s=wp.element.createElement(a,{xmlns:"http://www.w3.org/1999/xlink",enableBackground:"new 0 0 24 24",id:"Layer_2",version:"1.1",viewBox:"0 0 24 24"},wp.element.createElement(o,null,wp.element.createElement(i,{d:"M21,6l-6-6H5C3.8954306,0,3,0.8954305,3,2v20c0,1.1045704,0.8954306,2,2,2h14c1.1045704,0,2-0.8954296,2-2 V6z",style:{fill:"#FFC720"}}),wp.element.createElement(i,{d:"M17,6c-0.5444336,0-1.0367432-0.2190552-1.3973999-0.5719604L21,10.8254395V6H17z",style:{fill:"url(#SVGID_1_)"}}),wp.element.createElement(i,{d:"M19,23.75H5c-1.1045532,0-2-0.8954468-2-2V22c0,1.1045532,0.8954468,2,2,2h14c1.1045532,0,2-0.8954468,2-2 v-0.25C21,22.8545532,20.1045532,23.75,19,23.75z",style:{opacity:"0.1"}}),wp.element.createElement(i,{d:"M15,0v4c0,1.1045694,0.8954306,2,2,2h4L15,0z",style:{fill:"#FFE083"}}),wp.element.createElement(i,{d:"M17,5.75c-1.1045532,0-2-0.8954468-2-2V4c0,1.1045532,0.8954468,2,2,2h4l-0.25-0.25H17z",style:{opacity:"0.1"}}),wp.element.createElement(i,{d:"M15,0H5C3.8954468,0,3,0.8953857,3,2v0.25c0-1.1046143,0.8954468-2,2-2h10",style:{fill:"#FFFFFF",opacity:"0.2"}}),wp.element.createElement(i,{d:"M15.5,9h-7C7.6728516,9,7,9.6728516,7,10.5v6C7,17.3271484,7.6728516,18,8.5,18h7 c0.8271484,0,1.5-0.6728516,1.5-1.5v-6C17,9.6728516,16.3271484,9,15.5,9z M8,15.5V11h8v4.5H8z",style:{fill:"#FFFFFF"}}),wp.element.createElement(i,{d:"M21,6l-6-6H5C3.8954306,0,3,0.8954305,3,2v20c0,1.1045704,0.8954306,2,2,2h14 c1.1045704,0,2-0.8954296,2-2V6z",style:{fill:"url(#SVGID_2_)"}}))),c=wp.element.createElement(a,{xmlns:"http://www.w3.org/1999/xlink",viewBox:"0 0 48 48",version:"1.1"},wp.element.createElement(o,null,wp.element.createElement(i,{style:{fill:"#43A047"},d:"M 37 45 L 11 45 C 9.34375 45 8 43.65625 8 42 L 8 6 C 8 4.34375 9.34375 3 11 3 L 30 3 L 40 13 L 40 42 C 40 43.65625 38.65625 45 37 45 Z "}),wp.element.createElement(i,{style:{fill:"#C8E6C9"},d:"M 40 13 L 30 13 L 30 3 Z "}),wp.element.createElement(i,{style:{fill:"#2E7D32"},d:"M 30 13 L 40 23 L 40 13 Z "}),wp.element.createElement(i,{style:{fill:"#E8F5E9"},d:"M 31 23 L 15 23 L 15 37 L 33 37 L 33 23 Z M 17 25 L 21 25 L 21 27 L 17 27 Z M 17 29 L 21 29 L 21 31 L 17 31 Z M 17 33 L 21 33 L 21 35 L 17 35 Z M 31 35 L 23 35 L 23 33 L 31 33 Z M 31 31 L 23 31 L 23 29 L 31 29 Z M 31 27 L 23 27 L 23 25 L 31 25 Z "}))),p=wp.element.createElement(a,{xmlns:"http://www.w3.org/1999/xlink",viewBox:"0 0 48 48",version:"1.1"}," ",wp.element.createElement(o,null,wp.element.createElement(i,{style:{fill:"#7850C1"},d:"M 37 45 L 11 45 C 9.34375 45 8 43.65625 8 42 L 8 6 C 8 4.34375 9.34375 3 11 3 L 30 3 L 40 13 L 40 42 C 40 43.65625 38.65625 45 37 45 Z "}),wp.element.createElement(i,{style:{fill:"#C2ABE1"},d:"M 40 13 L 30 13 L 30 3 Z "}),wp.element.createElement(i,{style:{fill:"#2E7D32"},d:"M 30 13 L 40 23 L 40 13 Z "}),wp.element.createElement(i,{style:{fill:"#E8F5E9"},d:"M 19 23 L 33 23 L 33 25 L 19 25 Z "}),wp.element.createElement(i,{style:{fill:"#E8F5E9"},d:"M 19 28 L 33 28 L 33 30 L 19 30 Z "}),wp.element.createElement(i,{style:{fill:"#E8F5E9"},d:"M 19 33 L 33 33 L 33 35 L 19 35 Z "}),wp.element.createElement(i,{style:{fill:"#E8F5E9"},d:"M 15 23 L 17 23 L 17 25 L 15 25 Z "}),wp.element.createElement(i,{style:{fill:"#E8F5E9"},d:"M 15 28 L 17 28 L 17 30 L 15 30 Z "}),wp.element.createElement(i,{style:{fill:"#E8F5E9"},d:"M 15 33 L 17 33 L 17 35 L 15 35 Z "}))),u=wp.element.createElement(a,{xmlns:"http://www.w3.org/1999/xlink",viewBox:"0 0 48 48",version:"1.1"}," ",wp.element.createElement(o,null,wp.element.createElement(i,{style:{fill:"#DE5245"},d:"M37,45H11c-1.7,0-3-1.3-3-3V6c0-1.7,1.3-3,3-3h19l10,10v29C40,43.7,38.7,45,37,45z"}),wp.element.createElement(i,{style:{fill:"#EEA6A0"},d:"M40,13H30V3L40,13z"}),wp.element.createElement(i,{style:{fill:"#B3433A"},d:"M30,13l10,10V13H30z"}),wp.element.createElement(i,{style:{fill:"#FFFFFF"},d:"M20.5,32c-3,0-5.5-2.5-5.5-5.5c0-3,2.5-5.5,5.5-5.5s5.5,2.5,5.5,5.5C26,29.5,23.5,32,20.5,32z M20.5,23c-1.9,0-3.5,1.6-3.5,3.5s1.6,3.5,3.5,3.5s3.5-1.6,3.5-3.5S22.4,23,20.5,23z"}),wp.element.createElement(i,{style:{fill:"#FFFFFF"},d:"M27.6,29c-0.6,1.8-1.9,3.3-3.6,4.1V38h9v-9H27.6z"}))),m=wp.element.createElement(a,{xmlns:"http://www.w3.org/1999/xlink",viewBox:"0 0 48 48",version:"1.1"}," ",wp.element.createElement(o,null,wp.element.createElement(i,{style:{fill:"#1C9957"},d:"M 42 39 L 42 9 C 42 7.34375 40.65625 6 39 6 L 9 6 C 7.34375 6 6 7.34375 6 9 L 6 39 C 6 40.65625 7.34375 42 9 42 L 39 42 C 40.65625 42 42 40.65625 42 39 Z "}),wp.element.createElement(i,{style:{fill:"#3E7BF1"},d:"M 9 42 L 39 42 C 40.65625 42 24 26 24 26 C 24 26 7.34375 42 9 42 Z "}),wp.element.createElement(i,{style:{fill:"#CBCCC9"},d:"M 42 39 L 42 9 C 42 7.34375 26 24 26 24 C 26 24 42 40.65625 42 39 Z "}),wp.element.createElement(i,{style:{fill:"#EFEFEF"},d:"M 39 42 C 40.65625 42 42 40.65625 42 39 L 42 38.753906 L 26.246094 23 L 23 26.246094 L 38.753906 42 Z "}),wp.element.createElement(i,{style:{fill:"#FFD73D"},d:"M 42 9 C 42 7.34375 40.65625 6 39 6 L 38.753906 6 L 6 38.753906 L 6 39 C 6 40.65625 7.34375 42 9 42 L 9.246094 42 L 42 9.246094 Z "}),wp.element.createElement(i,{style:{fill:"#D73F35"},d:"M 36 2 C 30.476563 2 26 6.476563 26 12 C 26 18.8125 33.664063 21.296875 35.332031 31.851563 C 35.441406 32.53125 35.449219 33 36 33 C 36.550781 33 36.558594 32.53125 36.667969 31.851563 C 38.335938 21.296875 46 18.8125 46 12 C 46 6.476563 41.523438 2 36 2 Z "}),wp.element.createElement(i,{style:{fill:"#752622"},d:"M 39.5 12 C 39.5 13.933594 37.933594 15.5 36 15.5 C 34.066406 15.5 32.5 13.933594 32.5 12 C 32.5 10.066406 34.066406 8.5 36 8.5 C 37.933594 8.5 39.5 10.066406 39.5 12 Z "}),wp.element.createElement(i,{style:{fill:"#FFFFFF"},d:"M 14.492188 12.53125 L 14.492188 14.632813 L 17.488281 14.632813 C 17.09375 15.90625 16.03125 16.816406 14.492188 16.816406 C 12.660156 16.816406 11.175781 15.332031 11.175781 13.5 C 11.175781 11.664063 12.660156 10.179688 14.492188 10.179688 C 15.316406 10.179688 16.070313 10.484375 16.648438 10.980469 L 18.195313 9.433594 C 17.21875 8.542969 15.921875 8 14.492188 8 C 11.453125 8 8.992188 10.464844 8.992188 13.5 C 8.992188 16.535156 11.453125 19 14.492188 19 C 19.304688 19 20.128906 14.683594 19.675781 12.539063 Z "}))),d=wp.element.createElement(a,{xmlns:"http://www.w3.org/1999/xlink",viewBox:"0 0 48 48",version:"1.1"}," ",wp.element.createElement(o,null,wp.element.createElement(i,{style:{fill:"#FFFFFF"},d:"M 12 32 L 12 8 L 39 8 L 39 26 L 33 32 L 24 32 L 18 38 L 18 32 Z "}),wp.element.createElement(i,{style:{fill:"#8E24AA"},d:"M 9 5 L 6 12.121094 L 6 38 L 15 38 L 15 43 L 20 43 L 25 38 L 32 38 L 42 28 L 42 5 Z M 38 26 L 33 31 L 24 31 L 19 36 L 19 31 L 13 31 L 13 9 L 38 9 Z "}),wp.element.createElement(i,{style:{fill:"#8E24AA"},d:"M 32 25 L 27 25 L 27 15 L 32 15 Z "}),wp.element.createElement(i,{style:{fill:"#8E24AA"},d:"M 24 25 L 19 25 L 19 15 L 24 15 Z "}))),f=wp.element.createElement(a,{xmlns:"http://www.w3.org/1999/xlink",viewBox:"0 0 769 598",version:"1.1"}," ",wp.element.createElement(o,null,wp.element.createElement(i,{style:{fill:"#148ee0"},d:"M766.89,229.17c0,0 -17.78,35.38 -106.5,91.3c-37.82,23.79 -116.36,49.1 -217.33,58.86c-54.52,5.29 -154.9,0.99 -197.96,0.99c-43.29,0 -63.13,9.12 -101.95,52.84c-143.15,161.36 -143.15,161.36 -143.15,161.36c0,0 49.57,0.24 87.01,0.24c37.43,0 271.55,13.59 375.43,-14.98c337.36,-92.72 304.46,-350.62 304.46,-350.62z"}),wp.element.createElement(i,{style:{fill:"#54bbff"},d:"M757.84,126.66c16.23,-98.97 -39.68,-126.16 -39.68,-126.16c0,0 2.36,80.57 -145.7,97.65c-131.42,15.16 -572.46,3.74 -572.46,3.74c0,0 0,0 141.74,162.54c38.39,44.06 58.76,49.17 101.92,52.22c43.16,2.89 138.42,1.86 202.99,-3.05c70.58,-5.41 171.17,-28.43 239.19,-81.11c34.88,-26.98 65.21,-64.48 72,-105.83z"}))),h=wp.element.createElement(a,{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",role:"img","aria-hidden":"true",focusable:"false"},wp.element.createElement(i,{d:"M21.8 8s-.195-1.377-.795-1.984c-.76-.797-1.613-.8-2.004-.847-2.798-.203-6.996-.203-6.996-.203h-.01s-4.197 0-6.996.202c-.39.046-1.242.05-2.003.846C2.395 6.623 2.2 8 2.2 8S2 9.62 2 11.24v1.517c0 1.618.2 3.237.2 3.237s.195 1.378.795 1.985c.76.797 1.76.77 2.205.855 1.6.153 6.8.2 6.8.2s4.203-.005 7-.208c.392-.047 1.244-.05 2.005-.847.6-.607.795-1.985.795-1.985s.2-1.618.2-3.237v-1.517C22 9.62 21.8 8 21.8 8zM9.935 14.595v-5.62l5.403 2.82-5.403 2.8z"})),b=(wp.element.createElement("svg",{version:"1.1",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 56 23"},wp.element.createElement("g",null,wp.element.createElement("g",null,wp.element.createElement("path",{style:{fill:"#DA2B28"},className:"st0",d:"M55.4,3.7c-0.2-0.9-0.6-1.6-1.3-2.2c-0.7-0.6-1.4-0.9-2.3-1c-2.7-0.3-6.8-0.4-12.3-0.4 c-5.5,0-9.6,0.1-12.3,0.4c-0.9,0.1-1.6,0.5-2.3,1c-0.7,0.6-1.1,1.3-1.3,2.2c-0.4,1.7-0.6,4.3-0.6,7.8c0,3.5,0.2,6.1,0.6,7.8 c0.2,0.9,0.6,1.6,1.3,2.2c0.7,0.6,1.4,0.9,2.3,1c2.7,0.3,6.8,0.5,12.3,0.5c5.5,0,9.6-0.2,12.3-0.5c0.9-0.1,1.6-0.4,2.3-1 c0.7-0.6,1.1-1.3,1.3-2.2c0.4-1.7,0.6-4.3,0.6-7.8C56,8,55.8,5.4,55.4,3.7L55.4,3.7z M32.5,6h-2.4v12.6h-2.2V6h-2.3V3.9h6.9V6z M38.5,18.6h-2v-1.2c-0.8,0.9-1.6,1.4-2.3,1.4c-0.7,0-1.1-0.3-1.3-0.8c-0.1-0.4-0.2-0.9-0.2-1.6V7.6h2v8.1c0,0.5,0,0.7,0,0.8 c0,0.3,0.2,0.5,0.5,0.5c0.4,0,0.8-0.3,1.3-0.9V7.6h2V18.6z M46.1,15.3c0,1.1-0.1,1.8-0.2,2.2c-0.3,0.8-0.8,1.2-1.6,1.2 c-0.7,0-1.4-0.4-2.1-1.2v1.1h-2V3.9h2v4.8c0.6-0.8,1.3-1.2,2.1-1.2c0.8,0,1.3,0.4,1.6,1.2c0.1,0.4,0.2,1.1,0.2,2.2V15.3z M53.5,13.5h-4v1.9c0,1,0.3,1.5,1,1.5c0.5,0,0.8-0.3,0.9-0.8c0-0.1,0-0.6,0-1.4h2v0.3c0,0.7,0,1.2,0,1.3c0,0.4-0.2,0.8-0.5,1.2 c-0.5,0.8-1.3,1.2-2.4,1.2c-1,0-1.8-0.4-2.4-1.1c-0.4-0.5-0.6-1.4-0.6-2.6v-3.8c0-1.2,0.2-2,0.6-2.6c0.6-0.8,1.4-1.1,2.4-1.1 c1,0,1.8,0.4,2.3,1.1c0.4,0.5,0.6,1.4,0.6,2.6V13.5z M53.5,13.5"}),wp.element.createElement("path",{className:"st0",d:"M43.2,9.3c-0.3,0-0.7,0.2-1,0.5v6.7c0.3,0.3,0.7,0.5,1,0.5c0.6,0,0.9-0.5,0.9-1.5v-4.7 C44.1,9.8,43.8,9.3,43.2,9.3L43.2,9.3z M43.2,9.3"}),wp.element.createElement("path",{className:"st0",d:"M50.6,9.3c-0.7,0-1,0.5-1,1.5v1h2v-1C51.6,9.8,51.2,9.3,50.6,9.3L50.6,9.3z M50.6,9.3"})),wp.element.createElement("g",null,wp.element.createElement("path",{d:"M2.8,12.8v6h2.2v-6L7.7,4H5.5L4,9.8L2.4,4H0.1c0.4,1.2,0.9,2.6,1.4,4.1C2.2,10.2,2.6,11.7,2.8,12.8L2.8,12.8z M2.8,12.8"}),wp.element.createElement("path",{d:"M10.7,19c1,0,1.8-0.4,2.3-1.1c0.4-0.5,0.6-1.4,0.6-2.6v-3.9c0-1.2-0.2-2-0.6-2.6c-0.5-0.8-1.3-1.1-2.3-1.1 c-1,0-1.8,0.4-2.3,1.1C8,9.3,7.8,10.2,7.8,11.4v3.9c0,1.2,0.2,2.1,0.6,2.6C8.9,18.6,9.7,19,10.7,19L10.7,19z M9.8,11 c0-1,0.3-1.5,1-1.5c0.6,0,1,0.5,1,1.5v4.7c0,1-0.3,1.6-1,1.6c-0.6,0-1-0.5-1-1.6V11z M9.8,11"}),wp.element.createElement("path",{d:"M16.8,19c0.7,0,1.5-0.5,2.3-1.4v1.2h2V7.8h-2v8.4c-0.4,0.6-0.9,1-1.3,1c-0.3,0-0.4-0.2-0.5-0.5c0,0,0-0.3,0-0.8V7.8h-2 v8.7c0,0.8,0.1,1.3,0.2,1.7C15.7,18.7,16.1,19,16.8,19L16.8,19z M16.8,19"})))),wp.element.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 276 340"},wp.element.createElement("path",{d:"M196.7.6H24.3C11.1.6.4 11.3.4 24.6v292.9c0 12.3 10 22.2 22.2 22.2H252c13.3 0 23.9-10.7 23.9-23.9V80.9L196.7.6z",fill:"#e94848"}),wp.element.createElement("path",{d:"M196.7 57c0 13.3 10.7 23.9 23.9 23.9H276L196.7.6V57z",fill:"#f19191"}),wp.element.createElement("linearGradient",{id:"A",gradientUnits:"userSpaceOnUse",x1:"44.744",y1:"77.111",x2:"116.568",y2:"77.111"},wp.element.createElement("stop",{offset:"0",stopColor:"#fff"}),wp.element.createElement("stop",{offset:"1",stopColor:"#fff0f0"})),wp.element.createElement("path",{d:"M113 84.5H48.3c-1.9 0-3.5-1.6-3.5-3.5v-7.7c0-1.9 1.6-3.5 3.5-3.5H113c1.9 0 3.5 1.6 3.5 3.5V81c.1 1.9-1.5 3.5-3.5 3.5z",fill:"url(#A)"}),wp.element.createElement("linearGradient",{id:"B",gradientUnits:"userSpaceOnUse",x1:"44.744",y1:"136.016",x2:"233.927",y2:"136.016"},wp.element.createElement("stop",{offset:"0",stopColor:"#fff"}),wp.element.createElement("stop",{offset:"1",stopColor:"#fff0f0"})),wp.element.createElement("use",{href:"#H",opacity:".8",fill:"url(#B)"}),wp.element.createElement("linearGradient",{id:"C",gradientUnits:"userSpaceOnUse",x1:"44.744",y1:"135.993",x2:"233.927",y2:"135.993"},wp.element.createElement("stop",{offset:"0",stopColor:"#fff"}),wp.element.createElement("stop",{offset:"1",stopColor:"#fff0f0"})),wp.element.createElement("use",{href:"#H",y:"33.6",opacity:".7",fill:"url(#C)"}),wp.element.createElement("linearGradient",{id:"D",gradientUnits:"userSpaceOnUse",x1:"44.744",y1:"135.969",x2:"233.927",y2:"135.969"},wp.element.createElement("stop",{offset:"0",stopColor:"#fff"}),wp.element.createElement("stop",{offset:"1",stopColor:"#fff0f0"})),wp.element.createElement("use",{href:"#H",y:"67.2",opacity:".6",fill:"url(#D)"}),wp.element.createElement("linearGradient",{id:"E",gradientUnits:"userSpaceOnUse",x1:"44.744",y1:"136.045",x2:"233.927",y2:"136.045"},wp.element.createElement("stop",{offset:"0",stopColor:"#fff"}),wp.element.createElement("stop",{offset:"1",stopColor:"#fff0f0"})),wp.element.createElement("use",{href:"#H",y:"100.7",opacity:".4",fill:"url(#E)"}),wp.element.createElement("linearGradient",{id:"F",gradientUnits:"userSpaceOnUse",x1:"44.744",y1:"270.322",x2:"174.778",y2:"270.322"},wp.element.createElement("stop",{offset:"0",stopColor:"#fff"}),wp.element.createElement("stop",{offset:"1",stopColor:"#fff0f0"})),wp.element.createElement("path",{d:"M171.9 277.7H47.6c-1.6 0-2.9-1.3-2.9-2.9v-9c0-1.6 1.3-2.9 2.9-2.9h124.3c1.6 0 2.9 1.3 2.9 2.9v9c0 1.6-1.3 2.9-2.9 2.9z",opacity:".3",fill:"url(#F)"}),wp.element.createElement("defs",null,wp.element.createElement("path",{id:"H",d:"M231 143.4H47.6c-1.6 0-2.9-1.3-2.9-2.9v-9c0-1.6 1.3-2.9 2.9-2.9H231c1.6 0 2.9 1.3 2.9 2.9v9c0 1.6-1.3 2.9-2.9 2.9z"})))),w=wp.element.createElement("svg",{width:"33",height:"20",version:"1.1",id:"Layer_1",xmlns:"http://www.w3.org/2000/svg",x:"0px",y:"0px",viewBox:"0 0 270 270",role:"img",focusable:"false"},wp.element.createElement("g",null,wp.element.createElement("polygon",{className:"st0",fill:"#9595C1",points:"0,0 0,52 15,52 15,15 52,15 52,0 \t"}),wp.element.createElement("polygon",{className:"st0",fill:"#9595C1",points:"255,218 255,255 218,255 218,270 270,270 270,218 \t"}),wp.element.createElement("path",{fill:"#5B4E96",d:"M260.7,68.1c-10.4-18.6-29.3-31.2-50.6-33.6c-12.4-1.4-25,0.6-36.3,6c-1.3,0.6-2.6,1.3-3.9,2 C154.5,51,143,65.3,138.3,81.7l0,0.1l-36.4,103.8c-3.1,9.4-9.1,17-17.1,21.4c-0.7,0.4-1.4,0.7-2.1,1.1c-6.1,2.9-12.8,4-19.5,3.2 c-11.5-1.3-21.6-8.1-27.2-18.1c-4.6-8.3-5.7-18-3.1-27.2c2.6-9.2,8.7-16.9,17.1-21.5c0.7-0.4,1.4-0.8,2.1-1.1 c6.1-2.9,12.7-4,19.6-3.2c0.3,0,0.5,0.1,0.8,0.1L64.9,162c-0.5,1.5,0.3,3.1,1.8,3.6l19.4,6.3c1.5,0.5,3-0.3,3.5-1.7l16.7-47.4 c0.4-1.2,0.3-2.5-0.3-3.6c-0.6-1.1-1.6-2-2.8-2.4l-17.6-5.1c-0.4-0.1-0.8-0.2-1.2-0.3l-1.6-0.5l0,0.1c-2.5-0.6-5-1.1-7.5-1.3 c-12.5-1.4-25.1,0.6-36.4,6c-1.3,0.6-2.6,1.3-3.9,2c-15.6,8.7-27,22.9-31.9,40.1c-4.9,17.1-2.8,35.1,5.8,50.5 c10.4,18.6,29.3,31.2,50.6,33.6c12.4,1.4,25-0.6,36.3-6c1.3-0.6,2.6-1.3,3.9-2c15.3-8.5,26.8-22.8,31.6-39.2l0-0.1L167.8,91 l0.1-0.2l0-0.1c4.1-10.5,9.3-17,17-21.3c0.7-0.4,1.4-0.7,2.1-1.1c6.1-2.9,12.8-4,19.5-3.2c11.5,1.3,21.6,8.1,27.2,18.1 c9.6,17.2,3.3,39.1-14,48.7c-0.7,0.4-1.4,0.7-2.1,1.1c-6.1,2.9-12.8,4-19.7,3.2c-2-0.2-4.1-0.6-6.1-1.2l-0.2-0.1l-11.3-3.4 c-1.2-0.4-2.5,0.3-2.9,1.5l-8.8,24.8c-0.5,1.3,0.3,2.7,1.6,3.1l13.9,4c3.4,0.9,6.8,1.6,10.3,2c12.4,1.4,25-0.6,36.3-6l0.1,0 c1.3-0.6,2.6-1.3,3.9-2C266.8,140.8,278.5,100.1,260.7,68.1z"}))),y=wp.element.createElement("svg",{version:"1.1",id:"Layer_1",xmlns:"http://www.w3.org/2000/svg",x:"0px",y:"0px",viewBox:"0 0 512 512"},wp.element.createElement("path",{fill:"#E2E5E7",d:"M128,0c-17.6,0-32,14.4-32,32v448c0,17.6,14.4,32,32,32h320c17.6,0,32-14.4,32-32V128L352,0H128z"}),wp.element.createElement("path",{fill:"#B0B7BD",d:"M384,128h96L352,0v96C352,113.6,366.4,128,384,128z"}),wp.element.createElement("polygon",{fill:"#CAD1D8",points:"480,224 384,128 480,128 "}),wp.element.createElement("path",{fill:"#F15642",d:"M416,416c0,8.8-7.2,16-16,16H48c-8.8,0-16-7.2-16-16V256c0-8.8,7.2-16,16-16h352c8.8,0,16,7.2,16,16 V416z"}),wp.element.createElement("g",null,wp.element.createElement("path",{fill:"#FFFFFF",d:"M101.744,303.152c0-4.224,3.328-8.832,8.688-8.832h29.552c16.64,0,31.616,11.136,31.616,32.48 c0,20.224-14.976,31.488-31.616,31.488h-21.36v16.896c0,5.632-3.584,8.816-8.192,8.816c-4.224,0-8.688-3.184-8.688-8.816V303.152z M118.624,310.432v31.872h21.36c8.576,0,15.36-7.568,15.36-15.504c0-8.944-6.784-16.368-15.36-16.368H118.624z"}),wp.element.createElement("path",{fill:"#FFFFFF",d:"M196.656,384c-4.224,0-8.832-2.304-8.832-7.92v-72.672c0-4.592,4.608-7.936,8.832-7.936h29.296 c58.464,0,57.184,88.528,1.152,88.528H196.656z M204.72,311.088V368.4h21.232c34.544,0,36.08-57.312,0-57.312H204.72z"}),wp.element.createElement("path",{fill:"#FFFFFF",d:"M303.872,312.112v20.336h32.624c4.608,0,9.216,4.608,9.216,9.072c0,4.224-4.608,7.68-9.216,7.68 h-32.624v26.864c0,4.48-3.184,7.92-7.664,7.92c-5.632,0-9.072-3.44-9.072-7.92v-72.672c0-4.592,3.456-7.936,9.072-7.936h44.912 c5.632,0,8.96,3.344,8.96,7.936c0,4.096-3.328,8.704-8.96,8.704h-37.248V312.112z"})),wp.element.createElement("path",{fill:"#CAD1D8",d:"M400,432H96v16h304c8.8,0,16-7.2,16-16v-16C416,424.8,408.8,432,400,432z"})),g=wp.element.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"186 38 76 76"},wp.element.createElement("path",{fill:"#fff",d:"M244 56h-40v40h40V56z"}),wp.element.createElement("path",{fill:"#EA4335",d:"M244 114l18-18h-18v18z"}),wp.element.createElement("path",{fill:"#FBBC04",d:"M262 56h-18v40h18V56z"}),wp.element.createElement("path",{fill:"#34A853",d:"M244 96h-40v18h40V96z"}),wp.element.createElement("path",{fill:"#188038",d:"M186 96v12c0 3.315 2.685 6 6 6h12V96h-18z"}),wp.element.createElement("path",{fill:"#1967D2",d:"M262 56V44c0-3.315-2.685-6-6-6h-12v18h18z"}),wp.element.createElement("path",{fill:"#4285F4",d:"M244 38h-52c-3.315 0 -6 2.685-6 6v52h18V56h40V38z"}),wp.element.createElement("path",{fill:"#4285F4",d:"M212.205 87.03c-1.495-1.01-2.53-2.485-3.095-4.435l3.47-1.43c.315 1.2.865 2.13 1.65 2.79.78.66 1.73.985 2.84.985 1.135 0 2.11-.345 2.925-1.035s1.225-1.57 1.225-2.635c0-1.09-.43-1.98-1.29-2.67-.86-.69-1.94-1.035-3.23-1.035h-2.005V74.13h1.8c1.11 0 2.045-.3 2.805-.9.76-.6 1.14-1.42 1.14-2.465 0 -.93-.34-1.67-1.02-2.225-.68-.555-1.54-.835-2.585-.835-1.02 0 -1.83.27-2.43.815a4.784 4.784 0 0 0 -1.31 2.005l-3.435-1.43c.455-1.29 1.29-2.43 2.515-3.415 1.225-.985 2.79-1.48 4.69-1.48 1.405 0 2.67.27 3.79.815 1.12.545 2 1.3 2.635 2.26.635.965.95 2.045.95 3.245 0 1.225-.295 2.26-.885 3.11-.59.85-1.315 1.5-2.175 1.955v.205a6.605 6.605 0 0 1 2.79 2.175c.725.975 1.09 2.14 1.09 3.5 0 1.36-.345 2.575-1.035 3.64s-1.645 1.905-2.855 2.515c-1.215.61-2.58.92-4.095.92-1.755.005-3.375-.5-4.87-1.51zM233.52 69.81l-3.81 2.755-1.905-2.89 6.835-4.93h2.62V88h-3.74V69.81z"}))},function(e,t,n){"use strict";var __=wp.i18n.__,r=wp.components.Spinner,o=function(){return wp.element.createElement("div",{className:"wp-block-embed is-loading text-center"},wp.element.createElement(r,null),wp.element.createElement("p",null,__("Embedding\u2026")))};t.a=o},function(e,t,n){"use strict";var __=wp.i18n.__,r=wp.element.Fragment,o=wp.components,i=o.Button,a=o.Toolbar,l=wp.blockEditor.BlockControls,s=function(e){var t=e.showEditButton,n=e.switchBackToURLInput;return wp.element.createElement(r,null,wp.element.createElement(l,null,wp.element.createElement(a,null,t&&wp.element.createElement(i,{className:"components-toolbar__control",label:__("Edit URL"),icon:"edit",onClick:n}))))};t.a=s},function(e,t,n){"use strict";var r=n(13),o=n.n(r),i=wp.i18n,__=i.__,_x=i._x,a=wp.components,l=a.Button,s=a.Placeholder,c=a.ExternalLink,p=wp.blockEditor.BlockIcon,u=function(e){var t=e.icon,n=e.label,r=e.value,i=e.onSubmit,a=e.onChange,u=e.cannotEmbed,m=e.docLink,d=e.DocTitle,f=o()("wp-block-embed",{});return wp.element.createElement("div",{className:"ep__components-placeholder"},wp.element.createElement(s,{icon:wp.element.createElement(p,{icon:t,showColors:!0}),label:n,className:f},wp.element.createElement("form",{onSubmit:i},wp.element.createElement("input",{type:"url",value:r||"",className:"components-placeholder__input","aria-label":n,placeholder:__("Enter URL to embed here\u2026"),onChange:a}),wp.element.createElement(l,{isSmall:!0,type:"submit"},_x("Embed","button label")),u&&wp.element.createElement("p",{className:"components-placeholder__error"},__("Sorry, we could not embed that content."),wp.element.createElement("br",null))),m&&wp.element.createElement("div",{className:"components-placeholder__learn-more"},wp.element.createElement(c,{href:m},d))))};t.a=u},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function i(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(6),l=n.n(a),s=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},c=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),p=wp.element.Component,u=function(e){function t(e){r(this,t);var n=o(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.myRef=React.createRef(),n}return i(t,e),c(t,[{key:"componentDidMount",value:function(){l.a.findDOMNode(this.myRef.current).addEventListener("load",this.props.onLoad)}},{key:"render",value:function(){return wp.element.createElement("iframe",s({ref:this.myRef},this.props))}}]),t}(p);t.a=u},function(e,t,n){"use strict";function r(e){var t=embedpressObj.document_cta,n="",r="";if(embedpressObj.embedpress_pro&&t&&t.logo_url){var i=t.cta_url?t.cta_url:null,a=t.logo_xpos?t.logo_xpos+"%":"10%",l=t.logo_ypos?t.logo_ypos+"%":"10%",s=t.logo_opacity?t.logo_opacity/100:"10%",c=".ep-doc-"+e.id;return n="\n "+c+"{\n text-align: left;\n position: relative;\n }\n "+c+" .watermark {\n \t\tdisplay:inline-block;\n border: 0;\n position: absolute;\n bottom: "+l+";\n right: "+a+";\n max-width: 150px;\n max-height: 75px;\n opacity: "+s+";\n z-index: 5;\n -o-transition: opacity 0.5s ease-in-out;\n -moz-transition: opacity 0.5s ease-in-out;\n -webkit-transition: opacity 0.5s ease-in-out;\n transition: opacity 0.5s ease-in-out;\n }\n "+c+" .watermark:hover {\n\t\t\t\t\t opacity: 1;\n\t\t\t\t }\n\t\t",i&&""!==i&&(r+="<a href="+i+">"),r+='<img class="watermark" alt="" src="'+t.logo_url+'"/>',i&&""!==i&&(r+="</a>"),wp.element.createElement(o,null,wp.element.createElement("style",{dangerouslySetInnerHTML:{__html:n}}),wp.element.createElement("div",{dangerouslySetInnerHTML:{__html:r}}))}return""}var o=wp.element.Fragment;t.a=r},function(e,t){e.exports=ReactDOM},function(e,t){var n={utf8:{stringToBytes:function(e){return n.bin.stringToBytes(unescape(encodeURIComponent(e)))},bytesToString:function(e){return decodeURIComponent(escape(n.bin.bytesToString(e)))}},bin:{stringToBytes:function(e){for(var t=[],n=0;n<e.length;n++)t.push(255&e.charCodeAt(n));return t},bytesToString:function(e){for(var t=[],n=0;n<e.length;n++)t.push(String.fromCharCode(e[n]));return t.join("")}}};e.exports=n},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});n(9),n(14),n(18),n(22),n(26),n(30),n(34),n(38),n(42),n(46),n(50),n(65),n(71);!function(){var e=wp.element.createElement("svg",{width:"33",height:"20",version:"1.1",id:"Layer_1",xmlns:"http://www.w3.org/2000/svg",x:"0px",y:"0px",viewBox:"0 0 270 270"},wp.element.createElement("g",null,wp.element.createElement("polygon",{className:"st0",fill:"#9595C1",points:"0,0 0,52 15,52 15,15 52,15 52,0 \t"}),wp.element.createElement("polygon",{className:"st0",fill:"#9595C1",points:"255,218 255,255 218,255 218,270 270,270 270,218 \t"}),wp.element.createElement("path",{fill:"#5B4E96",d:"M260.7,68.1c-10.4-18.6-29.3-31.2-50.6-33.6c-12.4-1.4-25,0.6-36.3,6c-1.3,0.6-2.6,1.3-3.9,2 C154.5,51,143,65.3,138.3,81.7l0,0.1l-36.4,103.8c-3.1,9.4-9.1,17-17.1,21.4c-0.7,0.4-1.4,0.7-2.1,1.1c-6.1,2.9-12.8,4-19.5,3.2 c-11.5-1.3-21.6-8.1-27.2-18.1c-4.6-8.3-5.7-18-3.1-27.2c2.6-9.2,8.7-16.9,17.1-21.5c0.7-0.4,1.4-0.8,2.1-1.1 c6.1-2.9,12.7-4,19.6-3.2c0.3,0,0.5,0.1,0.8,0.1L64.9,162c-0.5,1.5,0.3,3.1,1.8,3.6l19.4,6.3c1.5,0.5,3-0.3,3.5-1.7l16.7-47.4 c0.4-1.2,0.3-2.5-0.3-3.6c-0.6-1.1-1.6-2-2.8-2.4l-17.6-5.1c-0.4-0.1-0.8-0.2-1.2-0.3l-1.6-0.5l0,0.1c-2.5-0.6-5-1.1-7.5-1.3 c-12.5-1.4-25.1,0.6-36.4,6c-1.3,0.6-2.6,1.3-3.9,2c-15.6,8.7-27,22.9-31.9,40.1c-4.9,17.1-2.8,35.1,5.8,50.5 c10.4,18.6,29.3,31.2,50.6,33.6c12.4,1.4,25-0.6,36.3-6c1.3-0.6,2.6-1.3,3.9-2c15.3-8.5,26.8-22.8,31.6-39.2l0-0.1L167.8,91 l0.1-0.2l0-0.1c4.1-10.5,9.3-17,17-21.3c0.7-0.4,1.4-0.7,2.1-1.1c6.1-2.9,12.8-4,19.5-3.2c11.5,1.3,21.6,8.1,27.2,18.1 c9.6,17.2,3.3,39.1-14,48.7c-0.7,0.4-1.4,0.7-2.1,1.1c-6.1,2.9-12.8,4-19.7,3.2c-2-0.2-4.1-0.6-6.1-1.2l-0.2-0.1l-11.3-3.4 c-1.2-0.4-2.5,0.3-2.9,1.5l-8.8,24.8c-0.5,1.3,0.3,2.7,1.6,3.1l13.9,4c3.4,0.9,6.8,1.6,10.3,2c12.4,1.4,25-0.6,36.3-6l0.1,0 c1.3-0.6,2.6-1.3,3.9-2C266.8,140.8,278.5,100.1,260.7,68.1z"})));wp.blocks.updateCategory("embedpress",{icon:e})}()},function(e,t,n){"use strict";var r=n(10),o=(n.n(r),n(11)),i=(n.n(o),n(12)),a=n(0),__=wp.i18n.__,l=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks["google-docs-block"]&&l("embedpress/google-docs-block",{title:__("Google Docs"),icon:a.e,category:"embedpress",keywords:[__("embedpress"),__("google"),__("docs")],supports:{align:["wide","full","right","left"],default:""},attributes:{url:{type:"string",default:""},iframeSrc:{type:"string",default:""}},edit:i.a,save:function(e){var t=e.attributes.iframeSrc;if(t)return wp.element.createElement("figure",{className:"ose-google-docs-document"},wp.element.createElement("iframe",{src:t,frameBorder:"0",width:"600",height:"450",allowFullScreen:"true",mozallowfullscreen:"true",webkitallowfullscreen:"true"}))},deprecated:[{attributes:{align:{type:"string",enum:["left","center","right","wide","full"]}},save:function(e){var t=e.attributes.iframeSrc;if(t)return wp.element.createElement("div",{className:"ose-google-docs-document"},wp.element.createElement("iframe",{src:t,frameBorder:"0",width:"600",height:"450",allowFullScreen:"true",mozallowfullscreen:"true",webkitallowfullscreen:"true"}))}}]})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function i(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(2),l=n(1),s=n(3),c=n(4),p=n(0),u=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),__=wp.i18n.__,m=wp.element.Component,d=function(e){function t(){r(this,t);var e=o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments));return e.switchBackToURLInput=e.switchBackToURLInput.bind(e),e.setUrl=e.setUrl.bind(e),e.updateAlignment=e.updateAlignment.bind(e),e.onLoad=e.onLoad.bind(e),e.hideOverlay=e.hideOverlay.bind(e),e.state={editingURL:!1,url:e.props.attributes.url,fetching:!0,cannotEmbed:!1,interactive:!1},e}return i(t,e),u(t,[{key:"hideOverlay",value:function(){this.setState({interactive:!0})}},{key:"onLoad",value:function(){this.setState({fetching:!1})}},{key:"decodeHTMLEntities",value:function(e){return e&&"string"===typeof e&&(e=e.replace(/<script[^>]*>([\S\s]*?)<\/script>/gim,""),e=e.replace(/<\/?\w(?:[^"'>]|"[^"]*"|'[^']*')*>/gim,"")),e}},{key:"updateAlignment",value:function(e){var t=this.props.setAttributes,n=-1!==["wide","full"].indexOf(e)?{width:void 0,height:void 0}:{};t(Object.assign({},n,{align:e}))}},{key:"setUrl",value:function(e){e&&e.preventDefault();var t=this.state.url,n=this.props.setAttributes;if(n({url:t}),t&&t.match(/^http[s]?:\/\/((?:www\.)?docs\.google\.com(?:.*)?(?:document|presentation|spreadsheets|forms|drawings)\/[a-z0-9\/\?=_\-\.\,&%\$#\@\!\+]*)/i)){var r=this.decodeHTMLEntities(t),o=/google\.com(?:.+)?(document|presentation|spreadsheets|forms|drawings)/i,i=o.exec(r),a=i[1];a&&"document"===a?(r.match(/([?&])embedded=true/i)||(r.indexOf("?")>-1?r+="&embedded=true":r+="?embedded=true"),this.setState({editingURL:!1,cannotEmbed:!1}),n({iframeSrc:r})):this.setState({cannotEmbed:!0,editingURL:!0})}else this.setState({cannotEmbed:!0,editingURL:!0})}},{key:"switchBackToURLInput",value:function(){this.setState({editingURL:!0})}},{key:"render",value:function(){var e=this,t=this.state,n=t.url,r=t.editingURL,o=t.fetching,i=t.cannotEmbed,u=t.interactive,m=this.props.attributes.iframeSrc,d=__("Google Docs URL");return!m||r?wp.element.createElement("div",null,wp.element.createElement(s.a,{label:d,onSubmit:this.setUrl,value:n,cannotEmbed:i,onChange:function(t){return e.setState({url:t.target.value})},icon:p.e,DocTitle:__("Learn more about Google doc embed"),docLink:"https://embedpress.com/docs/embed-google-docs-wordpress/"})):wp.element.createElement("div",null,o?wp.element.createElement(l.a,null):null,wp.element.createElement(c.a,{src:m,onMouseUp:this.hideOverlay,onLoad:this.onLoad,style:{display:o?"none":""},frameBorder:"0",width:"600",height:"450"}),!u&&wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:this.hideOverlay}),wp.element.createElement(a.a,{showEditButton:m&&!i,switchBackToURLInput:this.switchBackToURLInput}))}}],[{key:"getDerivedStateFromProps",value:function(e,t){return!e.isSelected&&t.interactive?{interactive:!1}:null}}]),t}(m);t.a=d},function(e,t,n){var r,o;!function(){"use strict";function n(){for(var e=[],t=0;t<arguments.length;t++){var r=arguments[t];if(r){var o=typeof r;if("string"===o||"number"===o)e.push(r);else if(Array.isArray(r)){if(r.length){var a=n.apply(null,r);a&&e.push(a)}}else if("object"===o){if(r.toString!==Object.prototype.toString&&!r.toString.toString().includes("[native code]")){e.push(r.toString());continue}for(var l in r)i.call(r,l)&&r[l]&&e.push(l)}}}return e.join(" ")}var i={}.hasOwnProperty;"undefined"!==typeof e&&e.exports?(n.default=n,e.exports=n):(r=[],void 0!==(o=function(){return n}.apply(t,r))&&(e.exports=o))}()},function(e,t,n){"use strict";var r=n(15),o=(n.n(r),n(16)),i=(n.n(o),n(17)),a=n(0),__=wp.i18n.__,l=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks["google-slides-block"]&&l("embedpress/google-slides-block",{title:__("Google Slides"),icon:a.j,category:"embedpress",keywords:[__("embedpress"),__("google"),__("slides")],supports:{align:["wide","full","right","left"],default:""},attributes:{url:{type:"string",default:""},iframeSrc:{type:"string",default:""}},edit:i.a,save:function(e){var t=e.attributes.iframeSrc;return wp.element.createElement("figure",{className:"ose-google-docs-presentation"},wp.element.createElement("iframe",{src:t,frameborder:"0",width:"600",height:"450",allowfullscreen:"true",mozallowfullscreen:"true",webkitallowfullscreen:"true"}))}})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function i(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(2),l=n(1),s=n(3),c=n(4),p=n(0),u=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),__=wp.i18n.__,m=wp.element,d=m.Component,f=m.Fragment,h=function(e){function t(){r(this,t);var e=o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments));return e.switchBackToURLInput=e.switchBackToURLInput.bind(e),e.setUrl=e.setUrl.bind(e),e.onLoad=e.onLoad.bind(e),e.hideOverlay=e.hideOverlay.bind(e),e.state={editingURL:!1,url:e.props.attributes.url,fetching:!0,cannotEmbed:!1,interactive:!1},e}return i(t,e),u(t,[{key:"hideOverlay",value:function(){this.setState({interactive:!0})}},{key:"onLoad",value:function(){this.setState({fetching:!1})}},{key:"decodeHTMLEntities",value:function(e){return e&&"string"===typeof e&&(e=e.replace(/<script[^>]*>([\S\s]*?)<\/script>/gim,""),e=e.replace(/<\/?\w(?:[^"'>]|"[^"]*"|'[^']*')*>/gim,"")),e}},{key:"setUrl",value:function(e){e&&e.preventDefault();var t=this.state.url,n=this.props.setAttributes;if(n({url:t}),t&&t.match(/^http[s]?:\/\/((?:www\.)?docs\.google\.com(?:.*)?(?:document|presentation|spreadsheets|forms|drawings)\/[a-z0-9\/\?=_\-\.\,&%\$#\@\!\+]*)/i)){var r=this.decodeHTMLEntities(t),o=/google\.com(?:.+)?(document|presentation|spreadsheets|forms|drawings)/i,i=o.exec(r),a=i[1];a&&"presentation"==a?(r.match(/pub\?/i)&&(r=r.replace("/pub?","/embed?")),this.setState({editingURL:!1,cannotEmbed:!1}),n({iframeSrc:r})):this.setState({cannotEmbed:!0,editingURL:!0})}else this.setState({cannotEmbed:!0,editingURL:!0})}},{key:"switchBackToURLInput",value:function(){this.setState({editingURL:!0})}},{key:"render",value:function(){var e=this,t=this.state,n=t.url,r=t.editingURL,o=t.fetching,i=t.cannotEmbed,u=t.interactive,m=this.props.attributes.iframeSrc,d=__("Google Slides URL");return!m||r?wp.element.createElement(s.a,{label:d,onSubmit:this.setUrl,value:n,cannotEmbed:i,onChange:function(t){return e.setState({url:t.target.value})},icon:p.j,DocTitle:__("Learn more about Google slides embed"),docLink:"https://embedpress.com/docs/embed-google-slides-wordpress/"}):wp.element.createElement(f,null,o?wp.element.createElement(l.a,null):null,wp.element.createElement(c.a,{src:m,onFocus:this.hideOverlay,onLoad:this.onLoad,style:{display:o?"none":""},frameborder:"0",width:"600",height:"450"}),!u&&wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:this.hideOverlay}),wp.element.createElement(a.a,{showEditButton:m&&!i,switchBackToURLInput:this.switchBackToURLInput}))}}],[{key:"getDerivedStateFromProps",value:function(e,t){return!e.isSelected&&t.interactive?{interactive:!1}:null}}]),t}(d);t.a=h},function(e,t,n){"use strict";var r=n(19),o=(n.n(r),n(20)),i=(n.n(o),n(21)),a=n(0),__=wp.i18n.__,l=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks["google-sheets-block"]&&l("embedpress/google-sheets-block",{title:__("Google Sheets"),icon:a.i,category:"embedpress",keywords:[__("embedpress"),__("google"),__("sheets")],supports:{align:["wide","full","right","left"],default:""},attributes:{url:{type:"string",default:""},iframeSrc:{type:"string",default:""}},edit:i.a,save:function(e){var t=e.attributes.iframeSrc;return wp.element.createElement("figure",{className:"ose-google-docs-spreadsheets"},wp.element.createElement("iframe",{src:t,frameborder:"0",width:"600",height:"450",allowfullscreen:"true",mozallowfullscreen:"true",webkitallowfullscreen:"true"}))},deprecated:[{attributes:{align:{type:"string",enum:["left","center","right","wide","full"]}},save:function(e){var t=e.attributes.iframeSrc;if(t)return wp.element.createElement("div",{className:"ose-google-docs-spreadsheets"},wp.element.createElement("iframe",{src:t,frameBorder:"0",width:"600",height:"450",allowFullScreen:"true",mozallowfullscreen:"true",webkitallowfullscreen:"true"}))}}]})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function i(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(2),l=n(1),s=n(3),c=n(4),p=n(0),u=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),__=wp.i18n.__,m=wp.element,d=m.Component,f=m.Fragment,h=function(e){function t(){r(this,t);var e=o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments));return e.switchBackToURLInput=e.switchBackToURLInput.bind(e),e.setUrl=e.setUrl.bind(e),e.onLoad=e.onLoad.bind(e),e.hideOverlay=e.hideOverlay.bind(e),e.state={editingURL:!1,url:e.props.attributes.url,fetching:!0,cannotEmbed:!1,interactive:!1},e}return i(t,e),u(t,[{key:"hideOverlay",value:function(){this.setState({interactive:!0})}},{key:"onLoad",value:function(){this.setState({fetching:!1})}},{key:"decodeHTMLEntities",value:function(e){return e&&"string"===typeof e&&(e=e.replace(/<script[^>]*>([\S\s]*?)<\/script>/gim,""),e=e.replace(/<\/?\w(?:[^"'>]|"[^"]*"|'[^']*')*>/gim,"")),e}},{key:"setUrl",value:function(e){e&&e.preventDefault();var t=this.state.url,n=this.props.setAttributes;if(n({url:t}),t&&t.match(/^http[s]?:\/\/((?:www\.)?docs\.google\.com(?:.*)?(?:document|presentation|spreadsheets|forms|drawings)\/[a-z0-9\/\?=_\-\.\,&%\$#\@\!\+]*)/i)){var r=this.decodeHTMLEntities(t),o=/google\.com(?:.+)?(document|presentation|spreadsheets|forms|drawings)/i,i=o.exec(r),a=i[1];if(a&&"spreadsheets"==a){if(r.indexOf("?")>-1){var l=r.split("?");if(l=l[1],l=l.split("&"),console.log(l),l.length>0){var s=!1,c=!1;l.map(function(e){e.indexOf("widget=")?c=!0:e.indexOf("headers=")&&(s=!0)}),c||(r+="&widget=true"),s||(r+="&headers=false")}}else r+="?widget=true&headers=false";this.setState({editingURL:!1,cannotEmbed:!1}),n({iframeSrc:r})}else this.setState({cannotEmbed:!0,editingURL:!0})}else this.setState({cannotEmbed:!0,editingURL:!0})}},{key:"switchBackToURLInput",value:function(){this.setState({editingURL:!0})}},{key:"render",value:function(){var e=this,t=this.state,n=t.url,r=t.editingURL,o=t.fetching,i=t.cannotEmbed,u=t.interactive,m=this.props.attributes.iframeSrc,d=__("Google Sheets URL");return!m||r?wp.element.createElement(s.a,{label:d,onSubmit:this.setUrl,value:n,cannotEmbed:i,onChange:function(t){return e.setState({url:t.target.value})},icon:p.i,DocTitle:__("Learn more about Google sheet embed"),docLink:"https://embedpress.com/docs/embed-google-sheets-wordpress/"}):wp.element.createElement(f,null,o?wp.element.createElement(l.a,null):null,wp.element.createElement(c.a,{src:m,onFocus:this.hideOverlay,onLoad:this.onLoad,style:{display:o?"none":""},frameborder:"0",width:"600",height:"450"}),!u&&wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:this.hideOverlay}),wp.element.createElement(a.a,{showEditButton:m&&!i,switchBackToURLInput:this.switchBackToURLInput}))}}],[{key:"getDerivedStateFromProps",value:function(e,t){return!e.isSelected&&t.interactive?{interactive:!1}:null}}]),t}(d);t.a=h},function(e,t,n){"use strict";var r=n(23),o=(n.n(r),n(24)),i=(n.n(o),n(25)),a=n(0),__=wp.i18n.__,l=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks["google-forms-block"]&&l("embedpress/google-forms-block",{title:__("Google Forms"),icon:a.g,category:"embedpress",keywords:[__("embedpress"),__("google"),__("forms")],supports:{align:["wide","full","right","left"],default:""},attributes:{url:{type:"string",default:""},iframeSrc:{type:"string",default:""}},edit:i.a,save:function(e){var t=e.attributes.iframeSrc;return wp.element.createElement("figure",{className:"ose-google-docs-forms"},wp.element.createElement("iframe",{src:t,frameborder:"0",width:"600",height:"450",allowfullscreen:"true",mozallowfullscreen:"true",webkitallowfullscreen:"true"}))}})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function i(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(2),l=n(1),s=n(3),c=n(4),p=n(0),u=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),__=wp.i18n.__,m=wp.element,d=m.Component,f=m.Fragment,h=(wp.components.Disabled,function(e){function t(){r(this,t);var e=o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments));return e.switchBackToURLInput=e.switchBackToURLInput.bind(e),e.setUrl=e.setUrl.bind(e),e.onLoad=e.onLoad.bind(e),e.state={editingURL:!1,url:e.props.attributes.url,fetching:!0,cannotEmbed:!1,interactive:!1},e}return i(t,e),u(t,[{key:"hideOverlay",value:function(){this.setState({interactive:!0})}},{key:"onLoad",value:function(){this.setState({fetching:!1})}},{key:"decodeHTMLEntities",value:function(e){return e&&"string"===typeof e&&(e=e.replace(/<script[^>]*>([\S\s]*?)<\/script>/gim,""),e=e.replace(/<\/?\w(?:[^"'>]|"[^"]*"|'[^']*')*>/gim,"")),e}},{key:"setUrl",value:function(e){e&&e.preventDefault();var t=this.state.url,n=this.props.setAttributes;if(n({url:t}),t&&t.match(/^http[s]?:\/\/((?:www\.)?docs\.google\.com(?:.*)?(?:document|presentation|spreadsheets|forms|drawings)\/[a-z0-9\/\?=_\-\.\,&%\$#\@\!\+]*)/i)){var r=this.decodeHTMLEntities(t),o=/google\.com(?:.+)?(document|presentation|spreadsheets|forms|drawings)/i,i=o.exec(r),a=i[1];a&&"forms"==a?(this.setState({editingURL:!1,cannotEmbed:!1}),n({iframeSrc:r})):this.setState({cannotEmbed:!0,editingURL:!0})}else this.setState({cannotEmbed:!0,editingURL:!0})}},{key:"switchBackToURLInput",value:function(){this.setState({editingURL:!0})}},{key:"render",value:function(){var e=this,t=this.state,n=t.url,r=t.editingURL,o=t.fetching,i=t.cannotEmbed,u=t.interactive,m=this.props.attributes.iframeSrc,d=__("Google Forms URL");return!m||r?wp.element.createElement(s.a,{label:d,onSubmit:this.setUrl,value:n,cannotEmbed:i,onChange:function(t){return e.setState({url:t.target.value})},icon:p.g,DocTitle:__("Learn more about Google forms embed"),docLink:"https://embedpress.com/docs/embed-google-forms-wordpress/"}):wp.element.createElement(f,null,o?wp.element.createElement(l.a,null):null,wp.element.createElement(c.a,{src:m,onFocus:this.hideOverlay,onLoad:this.onLoad,style:{display:o?"none":""},frameborder:"0",width:"600",height:"450"}),!u&&wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:this.hideOverlay}),wp.element.createElement(a.a,{showEditButton:m&&!i,switchBackToURLInput:this.switchBackToURLInput}))}}],[{key:"getDerivedStateFromProps",value:function(e,t){return!e.isSelected&&t.interactive?{interactive:!1}:null}}]),t}(d));t.a=h},function(e,t,n){"use strict";var r=n(27),o=(n.n(r),n(28)),i=(n.n(o),n(29)),a=n(0),__=wp.i18n.__,l=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks["google-drawings-block"]&&l("embedpress/google-drawings-block",{title:__("Google Drawings"),icon:a.f,category:"embedpress",keywords:[__("embedpress"),__("google"),__("drawings")],supports:{align:["wide","full","right","left"],default:""},attributes:{url:{type:"string",default:""},iframeSrc:{type:"string",default:""}},edit:i.a,save:function(e){var t=e.attributes.iframeSrc;return wp.element.createElement("figure",{className:"ose-google-docs-drawings"},wp.element.createElement("img",{src:t,width:"960",height:"720"}))}})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function i(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(2),l=n(1),s=n(3),c=n(0),p=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),__=wp.i18n.__,u=wp.element,m=u.Component,d=u.Fragment,f=function(e){function t(){r(this,t);var e=o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments));return e.switchBackToURLInput=e.switchBackToURLInput.bind(e),e.setUrl=e.setUrl.bind(e),e.onLoad=e.onLoad.bind(e),e.state={editingURL:!1,url:e.props.attributes.url,fetching:!0,cannotEmbed:!1},e}return i(t,e),p(t,[{key:"onLoad",value:function(){this.setState({fetching:!1})}},{key:"decodeHTMLEntities",value:function(e){return e&&"string"===typeof e&&(e=e.replace(/<script[^>]*>([\S\s]*?)<\/script>/gim,""),e=e.replace(/<\/?\w(?:[^"'>]|"[^"]*"|'[^']*')*>/gim,"")),e}},{key:"setUrl",value:function(e){e&&e.preventDefault();var t=this.state.url,n=this.props.setAttributes;if(n({url:t}),t&&t.match(/^http[s]?:\/\/((?:www\.)?docs\.google\.com(?:.*)?(?:document|presentation|spreadsheets|forms|drawings)\/[a-z0-9\/\?=_\-\.\,&%\$#\@\!\+]*)/i)){var r=this.decodeHTMLEntities(t),o=/google\.com(?:.+)?(document|presentation|spreadsheets|forms|drawings)/i,i=o.exec(r),a=i[1];a&&"drawings"==a?(this.setState({editingURL:!1,cannotEmbed:!1}),n({iframeSrc:r})):this.setState({cannotEmbed:!0,editingURL:!0})}else this.setState({cannotEmbed:!0,editingURL:!0})}},{key:"switchBackToURLInput",value:function(){this.setState({editingURL:!0})}},{key:"render",value:function(){var e=this,t=this.state,n=t.url,r=t.editingURL,o=t.fetching,i=t.cannotEmbed,p=this.props.attributes.iframeSrc,u=__("Google Drawings URL (Get your link from File -> Publish to the web -> Link)");return!p||r?wp.element.createElement(s.a,{label:u,onSubmit:this.setUrl,value:n,cannotEmbed:i,onChange:function(t){return e.setState({url:t.target.value})},icon:c.f,DocTitle:__("Learn more about Google drawing embed"),docLink:"https://embedpress.com/docs/embed-google-drawings-wordpress/"}):wp.element.createElement(d,null,o?wp.element.createElement(l.a,null):null,wp.element.createElement("img",{src:p,onLoad:this.onLoad,style:{display:o?"none":""},width:"960",height:"720"}),wp.element.createElement(a.a,{showEditButton:p&&!i,switchBackToURLInput:this.switchBackToURLInput}))}}]),t}(m);t.a=f},function(e,t,n){"use strict";function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var o=n(31),i=(n.n(o),n(32)),a=(n.n(i),n(33)),l=n(0),__=wp.i18n.__,s=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks["google-maps-block"]&&s("embedpress/google-maps-block",{title:__("Google Maps"),icon:l.h,category:"embedpress",keywords:[__("embedpress"),__("google"),__("maps")],supports:{align:["wide","full","right","left"],default:""},attributes:{url:{type:"string",default:""},iframeSrc:{type:"string",default:""}},edit:a.a,save:function(e){var t=e.attributes.iframeSrc;return wp.element.createElement("figure",{className:"ose-google-maps"},wp.element.createElement("iframe",r({src:t,frameborder:"0",width:"600",height:"450"},"frameborder","0")))}})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function i(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(2),l=n(1),s=n(3),c=n(4),p=n(0),u=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),__=wp.i18n.__,m=wp.element,d=m.Component,f=m.Fragment,h=function(e){function t(){r(this,t);var e=o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments));return e.switchBackToURLInput=e.switchBackToURLInput.bind(e),e.setUrl=e.setUrl.bind(e),e.onLoad=e.onLoad.bind(e),e.state={editingURL:!1,url:e.props.attributes.url,fetching:!0,cannotEmbed:!1,interactive:!1},e}return i(t,e),u(t,[{key:"hideOverlay",value:function(){this.setState({interactive:!0})}},{key:"onLoad",value:function(){this.setState({fetching:!1})}},{key:"decodeHTMLEntities",value:function(e){return e&&"string"===typeof e&&(e=e.replace(/<script[^>]*>([\S\s]*?)<\/script>/gim,""),e=e.replace(/<\/?\w(?:[^"'>]|"[^"]*"|'[^']*')*>/gim,"")),e}},{key:"setUrl",value:function(e){e&&e.preventDefault();var t=this.state.url,n=this.props.setAttributes;if(n({url:t}),t&&t.match(/^http[s]?:\/\/(?:(?:(?:www\.|maps\.)?(?:google\.com?))|(?:goo\.gl))(?:\.[a-z]{2})?\/(?:maps\/)?(?:place\/)?(?:[a-z0-9\/%+\-_]*)?([a-z0-9\/%,+\-_=!:@\.&*\$#?\']*)/i)){var r=this.decodeHTMLEntities(t);if(t.match("~(maps/embed|output=embed)~i"));else{var o=/@(-?[0-9\.]+,-?[0-9\.]+).+,([0-9\.]+[a-z])/i,i=o.exec(r);i&&i.length>1&&i[1]&&i[2]?r="https://maps.google.com/maps?hl=en&ie=UTF8&ll="+i[1]+"&spn="+i[1]+"&t=m&z="+Math.round(parseInt(i[2]))+"&output=embed":this.setState({cannotEmbed:!0,editingURL:!0})}this.setState({editingURL:!1,cannotEmbed:!1}),n({iframeSrc:r})}else this.setState({cannotEmbed:!0,editingURL:!0})}},{key:"switchBackToURLInput",value:function(){this.setState({editingURL:!0})}},{key:"render",value:function(){var e=this,t=this.state,n=t.url,r=t.editingURL,o=t.fetching,i=t.cannotEmbed,u=t.interactive,m=this.props.attributes.iframeSrc,d=__("Google Maps URL");return!m||r?wp.element.createElement(s.a,{label:d,onSubmit:this.setUrl,value:n,cannotEmbed:i,onChange:function(t){return e.setState({url:t.target.value})},icon:p.h,DocTitle:__("Learn more about Google map embed"),docLink:"https://embedpress.com/docs/embed-google-maps-wordpress/"}):wp.element.createElement(f,null,o?wp.element.createElement(l.a,null):null,wp.element.createElement(c.a,{src:m,onFocus:this.hideOverlay,onLoad:this.onLoad,style:{display:o?"none":""},frameborder:"0",width:"600",height:"450"}),!u&&wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:this.hideOverlay}),wp.element.createElement(a.a,{showEditButton:m&&!i,switchBackToURLInput:this.switchBackToURLInput}))}}],[{key:"getDerivedStateFromProps",value:function(e,t){return!e.isSelected&&t.interactive?{interactive:!1}:null}}]),t}(d);t.a=h},function(e,t,n){"use strict";var r=n(35),o=(n.n(r),n(36)),i=(n.n(o),n(37)),a=n(0),l=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},__=wp.i18n.__,s=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks["twitch-block"]&&s("embedpress/twitch-block",{title:__("Twitch"),icon:a.k,category:"embedpress",keywords:[__("embedpress"),__("twitch")],supports:{align:["wide","full","right","left"],default:""},attributes:{url:{type:"string",default:""},iframeSrc:{type:"string",default:""},attrs:{type:"string",default:""}},edit:i.a,save:function(e){var t=e.attributes,n=t.iframeSrc,r=t.attrs,o=n+"&parent="+embedpressObj.twitch_host;return wp.element.createElement("figure",{className:"ose-twitch-presentation"},wp.element.createElement("iframe",l({src:o},r,{frameborder:"0",width:"600",height:"450"})))}})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function i(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(2),l=n(1),s=n(3),c=n(4),p=n(0),u=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},m=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),__=wp.i18n.__,d=wp.element,f=d.Component,h=d.Fragment,b=function(e){function t(){r(this,t);var e=o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments));return e.switchBackToURLInput=e.switchBackToURLInput.bind(e),e.setUrl=e.setUrl.bind(e),e.onLoad=e.onLoad.bind(e),e.hideOverlay=e.hideOverlay.bind(e),e.state={editingURL:!1,url:e.props.attributes.url,fetching:!0,cannotEmbed:!1,interactive:!1},e}return i(t,e),m(t,[{key:"hideOverlay",value:function(){this.setState({interactive:!0})}},{key:"onLoad",value:function(){this.setState({fetching:!1})}},{key:"decodeHTMLEntities",value:function(e){return e&&"string"===typeof e&&(e=e.replace(/<script[^>]*>([\S\s]*?)<\/script>/gim,""),e=e.replace(/<\/?\w(?:[^"'>]|"[^"]*"|'[^']*')*>/gim,"")),e}},{key:"setUrl",value:function(e){e&&e.preventDefault();var t=this.state.url,n=this.props.setAttributes;n({url:t});var r=/http[s]?:\/\/(?:www\.|clips\.)twitch\.tv\/([0-9a-zA-Z\-\_]+)\/?(chat\/?$|[0-9a-z\-\_]*)?/;if(t&&t.match(r)){var o=this.decodeHTMLEntities(t),i=r.exec(o),a=i[1];console.log(a);var l,s="channel";switch(t.indexOf("clips.twitch.tv")>-1?s="clip":t.indexOf("/videos/")>-1?s="video":t.indexOf("#/chat$#")>-1&&(s="chat"),console.log(s),s){case"channel":o="https://player.twitch.tv/?channel="+a,l={scrolling:"no",frameborder:"0",allowfullscreen:"true"};break;case"clip":o="https://clips.twitch.tv/embed?clip="+a+"&autoplay=false",l={scrolling:"no",frameborder:"0",allowfullscreen:"true"};break;case"video":a=i[2],o="https://player.twitch.tv/?video="+a,l={scrolling:"no",frameborder:"0",allowfullscreen:"true"};break;case"chat":o="http://www.twitch.tv/embed/"+a+"/chat",l={scrolling:"yes",frameborder:"0",allowfullscreen:"true",id:"'"+a+"'"}}this.setState({editingURL:!1,cannotEmbed:!1}),n({iframeSrc:o,attrs:l})}else this.setState({cannotEmbed:!0,editingURL:!0})}},{key:"switchBackToURLInput",value:function(){this.setState({editingURL:!0})}},{key:"render",value:function(){var e=this,t=this.state,n=t.url,r=t.editingURL,o=t.fetching,i=t.cannotEmbed,m=t.interactive,d=this.props.attributes,f=d.iframeSrc,b=d.attrs,w=__("Twitch URL");if(!f||r)return wp.element.createElement(s.a,{label:w,onSubmit:this.setUrl,value:n,cannotEmbed:i,onChange:function(t){return e.setState({url:t.target.value})},icon:p.k,DocTitle:__("Learn more about twitch embed"),docLink:"https://embedpress.com/docs/embed-twitch-streams-chat/"});var y=f+"&parent="+embedpressObj.twitch_host;return wp.element.createElement(h,null,o?wp.element.createElement(l.a,null):null,wp.element.createElement(c.a,u({src:y},b,{onLoad:this.onLoad,style:{display:o?"none":""},onFocus:this.hideOverlay,width:"600",height:"450"})),!m&&wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:this.hideOverlay}),wp.element.createElement(a.a,{showEditButton:f&&!i,switchBackToURLInput:this.switchBackToURLInput}))}}],[{key:"getDerivedStateFromProps",value:function(e,t){return!e.isSelected&&t.interactive?{interactive:!1}:null}}]),t}(f);t.a=b},function(e,t,n){"use strict";var r=n(39),o=(n.n(r),n(40)),i=(n.n(o),n(41)),a=n(0),__=wp.i18n.__,l=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks["wistia-block"]&&l("embedpress/wistia-block",{title:__("Wistia"),icon:a.l,category:"embedpress",keywords:[__("embedpress"),__("wistia")],supports:{align:["wide","full","right","left"],default:""},edit:i.a,save:function(e){return null},deprecated:[{attributes:{url:{type:"string",default:""},iframeSrc:{type:"string",default:""}},edit:i.a,save:function(e){var t=e.attributes.iframeSrc;return wp.element.createElement("div",{class:"ose-wistia"},wp.element.createElement("iframe",{src:t,allowtransparency:"true",frameborder:"0",class:"wistia_embed",name:"wistia_embed",width:"600",height:"330"}))}}]})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function i(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(2),l=n(1),s=n(3),c=n(4),p=n(0),u=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),__=wp.i18n.__,m=wp.element,d=m.Component,f=m.Fragment,h=function(e){function t(){r(this,t);var e=o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments));return e.switchBackToURLInput=e.switchBackToURLInput.bind(e),e.setUrl=e.setUrl.bind(e),e.onLoad=e.onLoad.bind(e),e.hideOverlay=e.hideOverlay.bind(e),e.state={editingURL:!1,url:e.props.attributes.url,fetching:!0,cannotEmbed:!1,interactive:!1,mediaId:null},e.setUrl(),e}return i(t,e),u(t,[{key:"hideOverlay",value:function(){this.setState({interactive:!0})}},{key:"componentDidMount",value:function(){if(this.props.attributes.url){var e=this.props.attributes.url.match(/medias\/(.*)/),t=e[1];this.setState(Object.assign({},this.state,{mediaId:t}))}}},{key:"onLoad",value:function(){if(this.setState({fetching:!1}),embedpressObj.wisita_options){var e=Object.assign({},this.state);setTimeout(function(){var e=document.createElement("script");e.src="https://fast.wistia.com/assets/external/E-v1.js",e.charset="ISO-8859-1",document.body.appendChild(e)},100),setTimeout(function(){var t=document.createElement("script");t.type="text/javascript",t.innerHTML="window.pp_embed_wistia_labels = "+embedpressObj.wistia_labels,document.body.appendChild(t),t=document.createElement("script"),t.type="text/javascript",t.innerHTML='wistiaEmbed = Wistia.embed( "'+e.mediaId+'", '+embedpressObj.wisita_options+" );",document.body.appendChild(t)},400)}}},{key:"decodeHTMLEntities",value:function(e){return e&&"string"===typeof e&&(e=e.replace(/<script[^>]*>([\S\s]*?)<\/script>/gim,""),e=e.replace(/<\/?\w(?:[^"'>]|"[^"]*"|'[^']*')*>/gim,"")),e}},{key:"setUrl",value:function(e){e&&e.preventDefault();var t=this.state.url,n=this.props.setAttributes;if(n({url:t}),t&&(t.match(/^http[s]?:\/\/(?:www\.)?wistia\.com\/medias/i)||t.match(/^http[s]?:\/\/(?:www\.)?fast\/.wistia\.com\/embed\/medias/i.jsonp))){var r=t.match(/medias\/(.*)/),o=r[1],i="//fast.wistia.net/embed/iframe/"+o;this.setState({editingURL:!1,cannotEmbed:!1,mediaId:o}),n({iframeSrc:i})}else this.setState({cannotEmbed:!0,editingURL:!0})}},{key:"switchBackToURLInput",value:function(){this.setState({editingURL:!0})}},{key:"render",value:function(){var e=this,t=this.state,n=t.url,r=t.editingURL,o=t.fetching,i=t.cannotEmbed,u=t.interactive,m=this.props.attributes.iframeSrc,d=__("Wistia URL");return!m||r?wp.element.createElement(s.a,{label:d,onSubmit:this.setUrl,value:n,cannotEmbed:i,onChange:function(t){return e.setState({url:t.target.value})},icon:p.l,DocTitle:__("Learn more about Wistia embed"),docLink:"https://embedpress.com/docs/embed-wistia-videos-wordpress/"}):wp.element.createElement(f,null,o?wp.element.createElement(l.a,null):null,wp.element.createElement("div",{className:"ose-wistia",id:"wistia_"+this.state.mediaId},wp.element.createElement(c.a,{src:m,onFocus:this.hideOverlay,onLoad:this.onLoad,style:{display:o?"none":""},frameborder:"0",width:"600",height:"330"})),!u&&wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:this.hideOverlay}),wp.element.createElement(a.a,{showEditButton:m&&!i,switchBackToURLInput:this.switchBackToURLInput}))}}],[{key:"getDerivedStateFromProps",value:function(e,t){return!e.isSelected&&t.interactive?{interactive:!1}:null}}]),t}(d);t.a=h},function(e,t,n){"use strict";var r=n(43),o=(n.n(r),n(44)),i=(n.n(o),n(45)),a=n(0),__=wp.i18n.__,l=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks["youtube-block"]&&l("embedpress/youtube-block",{title:__("YouTube"),icon:a.m,category:"embedpress",keywords:[__("embedpress"),__("youtube")],supports:{align:["wide","full","right","left"],default:""},edit:i.a,save:function(){return null}})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function i(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(2),l=n(1),s=n(3),c=n(4),p=n(0),u=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},m=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),__=wp.i18n.__,d=wp.element,f=d.Component,h=d.Fragment,b=function(e){function t(){r(this,t);var e=o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments));return e.switchBackToURLInput=e.switchBackToURLInput.bind(e),e.setUrl=e.setUrl.bind(e),e.onLoad=e.onLoad.bind(e),e.hideOverlay=e.hideOverlay.bind(e),e.state={editingURL:!1,url:e.props.attributes.url,fetching:!0,cannotEmbed:!1,interactive:!1},e}return i(t,e),m(t,[{key:"hideOverlay",value:function(){this.setState({interactive:!0})}},{key:"componentWillMount",value:function(){this.state.url&&this.setUrl()}},{key:"onLoad",value:function(){this.setState({fetching:!1})}},{key:"decodeHTMLEntities",value:function(e){return e&&"string"===typeof e&&(e=e.replace(/<script[^>]*>([\S\s]*?)<\/script>/gim,""),e=e.replace(/<\/?\w(?:[^"'>]|"[^"]*"|'[^']*')*>/gim,"")),e}},{key:"setUrl",value:function(e){e&&e.preventDefault();var t=this.state.url,n=this.props.setAttributes;n({url:t});var r=t.match(/^(?:https?:\/\/)?(?:www\.)?(?:youtu\.be\/|youtube\.com\/(?:embed\/|v\/|watch\?v=|watch\?.+&v=))((\w|-){11})(?:\S+)?$/);if(t&&r){var o=r[1],i="https://www.youtube.com/embed/"+o,a=new URL(i);if("undefined"!==typeof embedpressProObj)for(var l in embedpressProObj.youtubeParams)a.searchParams.set(l,embedpressProObj.youtubeParams[l]);this.setState({editingURL:!1,cannotEmbed:!1}),n({iframeSrc:a.href,mediaId:o})}else this.setState({cannotEmbed:!0,editingURL:!0})}},{key:"switchBackToURLInput",value:function(){this.setState({editingURL:!0})}},{key:"render",value:function(){var e=this,t=this.state,n=t.url,r=t.editingURL,o=t.fetching,i=t.cannotEmbed,m=t.interactive,d=this.props.attributes,f=d.iframeSrc,b=d.attrs,w=__("YouTube URL");return!f||r?wp.element.createElement(s.a,{label:w,onSubmit:this.setUrl,value:n,cannotEmbed:i,onChange:function(t){return e.setState({url:t.target.value})},icon:p.m,DocTitle:__("Learn More About YouTube Embed"),docLink:"https://embedpress.com/docs/embed-youtube-wordpress/"}):wp.element.createElement(h,null,o?wp.element.createElement(l.a,null):null,wp.element.createElement(c.a,u({src:f},b,{onLoad:this.onLoad,style:{display:o?"none":""},width:"640",onFocus:this.hideOverlay,height:"450"})),!m&&wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:this.hideOverlay}),wp.element.createElement(a.a,{showEditButton:f&&!i,switchBackToURLInput:this.switchBackToURLInput}))}}],[{key:"getDerivedStateFromProps",value:function(e,t){return!e.isSelected&&t.interactive?{interactive:!1}:null}}]),t}(f);t.a=b},function(e,t,n){"use strict";var r=n(47),o=(n.n(r),n(48)),i=(n.n(o),n(49)),a=n(0),l=n(5),__=wp.i18n.__,s=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks.document&&s("embedpress/document",{title:__("Document"),icon:a.b,category:"embedpress",keywords:[__("embedpress"),__("pdf"),__("doc"),__("ppt")],supports:{align:["wide","full","right","left"],default:""},attributes:{id:{type:"string"},href:{type:"string"},powered_by:{type:"boolean",default:!0},width:{type:"number",default:600},height:{type:"number",default:600},fileName:{type:"string"},mime:{type:"string"}},edit:i.a,save:function(e){var t=e.attributes,n=t.href,r=t.mime,o=t.id,i=t.width,a=t.height,s=t.powered_by,c="//view.officeapps.live.com/op/embed.aspx?src="+n;return wp.element.createElement("div",{className:"embedpress-document-embed ep-doc-"+o,style:{height:a,width:i}},"application/pdf"===r&&wp.element.createElement("div",{style:{height:a,width:i},className:"embedpress-embed-document-pdf "+o,"data-emid":o,"data-emsrc":n}),"application/pdf"!==r&&wp.element.createElement("iframe",{style:{height:a,width:i},src:c,mozallowfullscreen:"true",webkitallowfullscreen:"true"}),s&&wp.element.createElement("p",{className:"embedpress-el-powered"},"Powered By EmbedPress"),embedpressObj.embedpress_pro&&wp.element.createElement(l.a,{id:o}))}})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function i(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(4),l=n(5),s=n(1),c=n(0),p=function(){function e(e,t){var n=[],_n=!0,r=!1,o=void 0;try{for(var i,a=e[Symbol.iterator]();!(_n=(i=a.next()).done)&&(n.push(i.value),!t||n.length!==t);_n=!0);}catch(e){r=!0,o=e}finally{try{!_n&&a.return&&a.return()}finally{if(r)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),u=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),__=wp.i18n.__,m=wp.blob,d=m.getBlobByURL,f=m.isBlobURL,h=m.revokeBlobURL,b=wp.blockEditor,w=b.BlockIcon,y=b.MediaPlaceholder,g=b.InspectorControls,v=wp.element,E=v.Component,_=v.Fragment,L=wp.components,k=L.RangeControl,O=L.PanelBody,S=L.ExternalLink,x=L.ToggleControl,C=["application/pdf","application/msword","application/vnd.ms-powerpoint","application/vnd.ms-excel","application/vnd.openxmlformats-officedocument.wordprocessingml.document","application/vnd.openxmlformats-officedocument.spreadsheetml.sheet","application/vnd.openxmlformats-officedocument.presentationml.presentation"],U=function(e){function t(){r(this,t);var e=o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments));return e.onSelectFile=e.onSelectFile.bind(e),e.onUploadError=e.onUploadError.bind(e),e.onLoad=e.onLoad.bind(e),e.hideOverlay=e.hideOverlay.bind(e),e.state={hasError:!1,fetching:!1,interactive:!1,loadPdf:!0},e}return i(t,e),u(t,[{key:"componentDidMount",value:function(){var e=this,t=this.props,n=t.attributes,r=t.mediaUpload,o=t.noticeOperations,i=n.href;if(f(i)){r({filesList:[d(i)],onFileChange:function(t){var n=p(t,1),r=n[0];return e.onSelectFile(r)},onError:function(t){e.setState({hasError:!0}),o.createErrorNotice(t)}}),h(i)}this.props.attributes.href&&"application/pdf"===this.props.attributes.mime&&this.state.loadPdf&&(this.setState({loadPdf:!1}),PDFObject.embed(this.props.attributes.href,"."+this.props.attributes.id))}},{key:"componentDidUpdate",value:function(e){e.isSelected&&!this.props.isSelected&&this.setState({showCopyConfirmation:!1})}},{key:"hideOverlay",value:function(){this.setState({interactive:!0})}},{key:"onLoad",value:function(){this.setState({fetching:!1})}},{key:"onSelectFile",value:function(e){e&&e.url&&(this.setState({hasError:!1}),this.props.setAttributes({href:e.url,fileName:e.title,id:"embedpress-pdf-"+Date.now(),mime:e.mime}),embedpressObj.embedpress_pro&&this.props.setAttributes({powered_by:!1}),"application/pdf"===e.mime&&(this.setState({loadPdf:!1}),PDFObject.embed(e.url,"."+this.props.attributes.id)))}},{key:"onUploadError",value:function(e){var t=this.props.noticeOperations;t.removeAllNotices(),t.createErrorNotice(e)}},{key:"render",value:function(){var e=this.props,t=e.attributes,n=e.noticeUI,r=e.setAttributes,o=t.href,i=t.mime,p=t.id,u=t.width,m=t.height,d=t.powered_by,f=this.state,h=f.hasError,b=f.interactive,v=f.fetching,E=f.loadPdf;if(!o||h)return wp.element.createElement("div",{className:"embedpress-document-editmode"},wp.element.createElement(y,{icon:wp.element.createElement(w,{icon:c.b}),labels:{title:__("Document"),instructions:__("Upload a file or pick one from your media library for embed.")},onSelect:this.onSelectFile,notices:n,allowedTypes:C,onError:this.onUploadError},wp.element.createElement("div",{style:{width:"100%"},className:"components-placeholder__learn-more embedpress-doc-link"},wp.element.createElement(S,{href:"https://embedpress.com/docs/embed-document/"},"Learn more about Embedded document "))));var L="//view.officeapps.live.com/op/embed.aspx?src="+o;return wp.element.createElement(_,null,v&&"application/pdf"!==i?wp.element.createElement(s.a,null):null,wp.element.createElement("div",{className:"embedpress-document-embed ep-doc-"+p,style:{height:m,width:u}},"application/pdf"===i&&wp.element.createElement("div",{style:{height:m,width:u},className:"embedpress-embed-document-pdf "+p,"data-emid":p,"data-emsrc":o}),"application/pdf"!==i&&wp.element.createElement(a.a,{onMouseUponMouseUp:this.hideOverlay,style:{height:m,width:u,display:v||!E?"none":""},onLoad:this.onLoad,src:L}),!b&&wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:this.hideOverlay}),d&&wp.element.createElement("p",{className:"embedpress-el-powered"},"Powered By EmbedPress"),!v&&wp.element.createElement(l.a,{id:p})),wp.element.createElement(g,{key:"inspector"},wp.element.createElement(O,{title:__("Embed Size","embedpress")},wp.element.createElement(k,{label:__("Width","embedpress"),value:u||720,onChange:function(e){return r({width:e})},max:1e3,min:1}),wp.element.createElement(k,{label:__("Height","embedpress"),value:m,onChange:function(e){return r({height:e})},max:1e3,min:1}),wp.element.createElement(x,{label:__("Powered By"),onChange:function(e){return r({powered_by:e})},checked:d}))))}}],[{key:"getDerivedStateFromProps",value:function(e,t){return!e.isSelected&&t.interactive?{interactive:!1}:null}}]),t}(E);t.a=U},function(e,t,n){"use strict";var r=n(51),o=(n.n(r),n(52)),i=(n.n(o),n(53)),a=n(0),__=wp.i18n.__,l=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks.embedpress&&l("embedpress/embedpress",{title:__("EmbedPress"),icon:a.d,category:"embedpress",keywords:["embedpress","embed","google","youtube","docs"],supports:{align:["right","left","center"],default:"center",lightBlockWrapper:!0},attributes:{url:{type:"string",default:""},embedHTML:{type:"string",default:""},height:{type:"string",default:"450"},width:{type:"string",default:"600"},editingURL:{type:"boolean",default:0},fetching:{type:"boolean",default:!1},cannotEmbed:{type:"boolean",default:!1},interactive:{type:"boolean",default:!1},align:{type:"string",default:"center"},ispagination:{type:"boolean",default:!0},pagesize:{type:"number",default:6},columns:{type:"string",default:"2"},gapbetweenvideos:{type:"number",default:30},limit:{type:"number",default:9},orderby:{type:"string",default:"desc"},gapbetweenitem:{type:"number",default:30},layout:{type:"string",default:"ep-grid"},preset:{type:"string",default:"ep-preset-1"},nftperrow:{type:"number",default:3},nftimage:{type:"boolean",default:!0},nfttitle:{type:"boolean",default:!0},nftcreator:{type:"boolean",default:!0},prefix_nftcreator:{type:"string",default:"Created By"},nftprice:{type:"boolean",default:!0},prefix_nftprice:{type:"string",default:"Price"},nftlastsale:{type:"boolean",default:!0},prefix_nftlastsale:{type:"string",default:"Last Sale"},nftbutton:{type:"boolean",default:!0},label_nftbutton:{type:"string",default:"See Details"},alignment:{type:"string",default:"ep-item-center"},itemBGColor:{type:"string"},titleColor:{type:"string"},titleFontsize:{type:"number"},creatorColor:{type:"string"},creatorFontsize:{type:"number"},creatorLinkColor:{type:"string"},creatorLinkFontsize:{type:"number"},priceColor:{type:"string"},priceFontsize:{type:"number"},lastSaleColor:{type:"string"},lastSaleFontsize:{type:"number"},buttonTextColor:{type:"string"},buttonBackgroundColor:{type:"string"},buttonTextFontsize:{type:"number"}},edit:i.a,save:function(){return null}})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e){return function(){var t=e.apply(this,arguments);return new Promise(function(e,n){function r(o,i){try{var a=t[o](i),l=a.value}catch(e){return void n(e)}if(!a.done)return Promise.resolve(l).then(function(e){r("next",e)},function(e){r("throw",e)});e(l)}return r("next")})}}function o(e){if(Array.isArray(e)){for(var t=0,n=Array(e.length);t<e.length;t++)n[t]=e[t];return n}return Array.from(e)}function i(e){function t(){w({editingURL:!0})}function n(e){var t=this;if(e&&e.preventDefault(),v){w({fetching:!0});(function(){var e=r(l.a.mark(function e(n){var r,o,i,a,s;return l.a.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return r="",o="",se&&(i={pagesize:C||6,gapbetweenvideos:10,ispagination:x||!1,columns:U||"3"},r="&"+new URLSearchParams(i).toString()),ce&&(a={limit:j||20,orderby:M||"desc",layout:B||"ep-grid",preset:R||"ep-preset-1",nftperrow:P||"3",gapbetweenitem:F||30,nftimage:D||!1,nftcreator:z||!1,prefix_nftcreator:I||"",nfttitle:N||!1,nftprice:A||!1,prefix_nftprice:H||"",nftlastsale:V||!1,prefix_nftlastsale:G||"",nftbutton:Z||!1,label_nftbutton:W||"",itemBGColor:Y||"",titleColor:$||"",titleFontsize:q||"",creatorColor:K||"",creatorFontsize:J||"",creatorLinkColor:Q||"",creatorLinkFontsize:X||"",priceColor:ee||"",priceFontsize:te||"",lastSaleColor:ne||"",lastSaleFontsize:re||"",buttonTextColor:oe||"",buttonBackgroundColor:ie||"",buttonFontSize:ae||""},o="&"+new URLSearchParams(a).toString()),s=n.split("#"),s=encodeURIComponent(s[0]),e.next=8,fetch(embedpressObj.site_url+"/wp-json/embedpress/v1/oembed/embedpress?url="+s+"&width="+S+"&height="+O+r+o).then(function(e){return e.json()});case 8:return e.abrupt("return",e.sent);case 9:case"end":return e.stop()}},e,t)}));return function(_x){return e.apply(this,arguments)}})()(v).then(function(e){w({fetching:!1}),w(e.data&&404===e.data.status||!e.embed?{cannotEmbed:!0,editingURL:!0}:{embedHTML:e.embed,cannotEmbed:!1,editingURL:!1})})}else w({cannotEmbed:!0,fetching:!1,editingURL:!0})}var i=e.clientId,a=e.attributes,m=e.className,w=e.setAttributes,v=a.url,E=a.editingURL,_=a.fetching,L=a.cannotEmbed,k=(a.interactive,a.embedHTML),O=a.height,S=a.width,x=a.ispagination,C=a.pagesize,U=a.columns,T=a.gapbetweenvideos,j=a.limit,B=a.layout,R=a.preset,M=a.orderby,P=a.nftperrow,F=a.gapbetweenitem,D=a.nftimage,z=a.nftcreator,I=a.prefix_nftcreator,N=a.nfttitle,A=a.nftprice,H=a.prefix_nftprice,V=a.nftlastsale,G=a.prefix_nftlastsale,Z=a.nftbutton,W=a.label_nftbutton,Y=(a.alignment,a.itemBGColor),$=a.titleColor,q=a.titleFontsize,K=a.creatorColor,J=a.creatorFontsize,Q=a.creatorLinkColor,X=a.creatorLinkFontsize,ee=a.priceColor,te=a.priceFontsize,ne=a.lastSaleColor,re=a.lastSaleFontsize,oe=a.buttonTextColor,ie=a.buttonBackgroundColor,ae=a.buttonFontSize,le=b?b():[],se=v.match(/\/channel\/|\/c\/|\/user\/|(?:https?:\/\/)?(?:www\.)?(?:youtube.com\/)(\w+)[^?\/]*$/i),ce=v.match(/\/collection\/|(?:https?:\/\/)?(?:www\.)?(?:opensea.com\/)(\w+)[^?\/]*$/i);g(function(){if(k&&!E&&!_){var e=k.matchAll(/<script.*?src=["'](.*?)["'].*?><\/script>/g);e=[].concat(o(e));var t=!0,n=!1,r=void 0;try{for(var i,a=e[Symbol.iterator]();!(t=(i=a.next()).done);t=!0){var l=i.value;if(l&&"undefined"!=typeof l[1]){var s=l[1],c=d()(s);if(document.getElementById(c))continue;var p=document.createElement("script");p.type="text/javascript",p.setAttribute("id",c),p.setAttribute("src",s),document.body.appendChild(p)}}}catch(e){n=!0,r=e}finally{try{!t&&a.return&&a.return()}finally{if(n)throw r}}}},[k]),g(function(){var e=setTimeout(function(){(k&&!E||_)&&n()},300);return function(){return clearTimeout(e)}},[C,j,B,R,M,D,N,A,H,V,G,P,Z,W,z,I,Y,$,q,K,J,Q,X,ee,te,ne,re,oe,ie,ae]);var pe="repeat(auto-fit, minmax(250px, 1fr))";return U>0&&(pe="repeat(auto-fit, minmax(calc("+100/U+"% - "+T+"px), 1fr))"),wp.element.createElement(y,null,wp.element.createElement(f.a,{attributes:a,setAttributes:w,isYTChannel:se,isOpensea:ce}),(!k||!!E)&&!_&&wp.element.createElement("div",le,wp.element.createElement(p.a,{label:__("EmbedPress - Embed anything from 150+ sites"),onSubmit:n,value:v,cannotEmbed:L,onChange:function(e){return w({url:e.target.value})},icon:h.d,DocTitle:__("Learn more about EmbedPress"),docLink:"https://embedpress.com/docs/"})),(!ce||!!E||0===E)&&_&&wp.element.createElement("div",{className:m},wp.element.createElement(c.a,null)," "),k&&!E&&(!_||ce)&&wp.element.createElement("figure",le,wp.element.createElement(u.a,{style:{display:_&&!ce?"none":""},dangerouslySetInnerHTML:{__html:k}}),_&&wp.element.createElement("div",{style:{filter:"grayscale(1))",backgroundColor:"#fffafa",opacity:"0.7"},className:"block-library-embed__interactive-overlay",onMouseUp:w({interactive:!0})}),!ce&&wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:w({interactive:!0})}),wp.element.createElement(s.a,{showEditButton:k&&!L,switchBackToURLInput:t})),se&&wp.element.createElement("style",{style:{display:"none"}},"\n\t\t\t\t\t\t\t#block-"+i+" .ep-youtube__content__block .youtube__content__body .content__wrap{\n\t\t\t\t\t\t\t\tgap: "+T+"px!important;\n\t\t\t\t\t\t\t\tmargin-top: "+T+"px!important;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t#block-"+i+" .ose-youtube{\n\t\t\t\t\t\t\t\twidth: "+S+"px!important;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t#block-"+i+" .ose-youtube .ep-first-video iframe{\n\t\t\t\t\t\t\t\tmax-height: "+O+"px!important;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t#block-"+i+" .ose-youtube > iframe{\n\t\t\t\t\t\t\t\theight: "+O+"px!important;\n\t\t\t\t\t\t\t\twidth: "+S+"px!important;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t#block-"+i+" .ep-youtube__content__block .youtube__content__body .content__wrap {\n\t\t\t\t\t\t\t\tgrid-template-columns: "+pe+";\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t#block-"+i+" .ep-youtube__content__block .ep-youtube__content__pagination{\n\t\t\t\t\t\t\t\tdisplay: flex!important;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t"+(!x&&"#block-"+i+" .ep-youtube__content__block .ep-youtube__content__pagination{\n\t\t\t\t\t\t\t\t\tdisplay: none!important;\n\t\t\t\t\t\t\t\t}")+"\n\n\t\t\t\t\t\t\t"),!se&&!ce&&wp.element.createElement("style",{style:{display:"none"}},"\n\t\t\t\t\t\t\t#block-"+i+" .ose-embedpress-responsive{\n\t\t\t\t\t\t\t\twidth: "+S+"px!important;\n\t\t\t\t\t\t\t\theight: "+O+"px!important\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t#block-"+i+" iframe{\n\t\t\t\t\t\t\t\twidth: "+S+"px!important;\n\t\t\t\t\t\t\t\theight: "+O+"px!important\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t#block-"+i+" .ose-youtube > iframe{\n\t\t\t\t\t\t\t\theight: "+O+"px!important;\n\t\t\t\t\t\t\t\twidth: "+S+"px!important;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t#block-"+i+" .ose-youtube{\n\t\t\t\t\t\t\t\theight: "+O+"px!important;\n\t\t\t\t\t\t\t\twidth: "+S+"px!important;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t"),ce&&wp.element.createElement("style",{style:{display:"none"}},"\n\t\t\t\t\t\t\t#block-"+i+"{\n\t\t\t\t\t\t\t\twidth: 900px;\n\t\t\t\t\t\t\t\tmax-width: 100%!important;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t"))}t.a=i;var a=n(54),l=n.n(a),s=n(2),c=n(1),p=n(3),u=n(57),m=n(58),d=n.n(m),f=n(61),h=n(0),__=(n(63),wp.i18n.__),b=wp.blockEditor.useBlockProps,w=wp.element,y=w.Fragment,g=w.useEffect},function(e,t,n){e.exports=n(55)},function(e,t,n){var r=function(){return this}()||Function("return this")(),o=r.regeneratorRuntime&&Object.getOwnPropertyNames(r).indexOf("regeneratorRuntime")>=0,i=o&&r.regeneratorRuntime;if(r.regeneratorRuntime=void 0,e.exports=n(56),o)r.regeneratorRuntime=i;else try{delete r.regeneratorRuntime}catch(e){r.regeneratorRuntime=void 0}},function(e,t){!function(t){"use strict";function n(e,t,n,r){var i=t&&t.prototype instanceof o?t:o,a=Object.create(i.prototype),l=new d(r||[]);return a._invoke=c(e,n,l),a}function r(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}function o(){}function i(){}function a(){}function l(e){["next","throw","return"].forEach(function(t){e[t]=function(e){return this._invoke(t,e)}})}function s(e){function t(n,o,i,a){var l=r(e[n],e,o);if("throw"!==l.type){var s=l.arg,c=s.value;return c&&"object"===typeof c&&y.call(c,"__await")?Promise.resolve(c.__await).then(function(e){t("next",e,i,a)},function(e){t("throw",e,i,a)}):Promise.resolve(c).then(function(e){s.value=e,i(s)},a)}a(l.arg)}function n(e,n){function r(){return new Promise(function(r,o){t(e,n,r,o)})}return o=o?o.then(r,r):r()}var o;this._invoke=n}function c(e,t,n){var o=O;return function(i,a){if(o===x)throw new Error("Generator is already running");if(o===C){if("throw"===i)throw a;return h()}for(n.method=i,n.arg=a;;){var l=n.delegate;if(l){var s=p(l,n);if(s){if(s===U)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(o===O)throw o=C,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);o=x;var c=r(e,t,n);if("normal"===c.type){if(o=n.done?C:S,c.arg===U)continue;return{value:c.arg,done:n.done}}"throw"===c.type&&(o=C,n.method="throw",n.arg=c.arg)}}}function p(e,t){var n=e.iterator[t.method];if(n===b){if(t.delegate=null,"throw"===t.method){if(e.iterator.return&&(t.method="return",t.arg=b,p(e,t),"throw"===t.method))return U;t.method="throw",t.arg=new TypeError("The iterator does not provide a 'throw' method")}return U}var o=r(n,e.iterator,t.arg);if("throw"===o.type)return t.method="throw",t.arg=o.arg,t.delegate=null,U;var i=o.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=b),t.delegate=null,U):i:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,U)}function u(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function m(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function d(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(u,this),this.reset(!0)}function f(e){if(e){var t=e[v];if(t)return t.call(e);if("function"===typeof e.next)return e;if(!isNaN(e.length)){var n=-1,r=function t(){for(;++n<e.length;)if(y.call(e,n))return t.value=e[n],t.done=!1,t;return t.value=b,t.done=!0,t};return r.next=r}}return{next:h}}function h(){return{value:b,done:!0}}var b,w=Object.prototype,y=w.hasOwnProperty,g="function"===typeof Symbol?Symbol:{},v=g.iterator||"@@iterator",E=g.asyncIterator||"@@asyncIterator",_=g.toStringTag||"@@toStringTag",L="object"===typeof e,k=t.regeneratorRuntime;if(k)return void(L&&(e.exports=k));k=t.regeneratorRuntime=L?e.exports:{},k.wrap=n;var O="suspendedStart",S="suspendedYield",x="executing",C="completed",U={},T={};T[v]=function(){return this};var j=Object.getPrototypeOf,B=j&&j(j(f([])));B&&B!==w&&y.call(B,v)&&(T=B);var R=a.prototype=o.prototype=Object.create(T);i.prototype=R.constructor=a,a.constructor=i,a[_]=i.displayName="GeneratorFunction",k.isGeneratorFunction=function(e){var t="function"===typeof e&&e.constructor;return!!t&&(t===i||"GeneratorFunction"===(t.displayName||t.name))},k.mark=function(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,a):(e.__proto__=a,_ in e||(e[_]="GeneratorFunction")),e.prototype=Object.create(R),e},k.awrap=function(e){return{__await:e}},l(s.prototype),s.prototype[E]=function(){return this},k.AsyncIterator=s,k.async=function(e,t,r,o){var i=new s(n(e,t,r,o));return k.isGeneratorFunction(t)?i:i.next().then(function(e){return e.done?e.value:i.next()})},l(R),R[_]="Generator",R[v]=function(){return this},R.toString=function(){return"[object Generator]"},k.keys=function(e){var t=[];for(var n in e)t.push(n);return t.reverse(),function n(){for(;t.length;){var r=t.pop();if(r in e)return n.value=r,n.done=!1,n}return n.done=!0,n}},k.values=f,d.prototype={constructor:d,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=b,this.done=!1,this.delegate=null,this.method="next",this.arg=b,this.tryEntries.forEach(m),!e)for(var t in this)"t"===t.charAt(0)&&y.call(this,t)&&!isNaN(+t.slice(1))&&(this[t]=b)},stop:function(){this.done=!0;var e=this.tryEntries[0],t=e.completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(e){function t(t,r){return i.type="throw",i.arg=e,n.next=t,r&&(n.method="next",n.arg=b),!!r}if(this.done)throw e;for(var n=this,r=this.tryEntries.length-1;r>=0;--r){var o=this.tryEntries[r],i=o.completion;if("root"===o.tryLoc)return t("end");if(o.tryLoc<=this.prev){var a=y.call(o,"catchLoc"),l=y.call(o,"finallyLoc");if(a&&l){if(this.prev<o.catchLoc)return t(o.catchLoc,!0);if(this.prev<o.finallyLoc)return t(o.finallyLoc)}else if(a){if(this.prev<o.catchLoc)return t(o.catchLoc,!0)}else{if(!l)throw new Error("try statement without catch or finally");if(this.prev<o.finallyLoc)return t(o.finallyLoc)}}}},abrupt:function(e,t){for(var n=this.tryEntries.length-1;n>=0;--n){var r=this.tryEntries[n];if(r.tryLoc<=this.prev&&y.call(r,"finallyLoc")&&this.prev<r.finallyLoc){var o=r;break}}o&&("break"===e||"continue"===e)&&o.tryLoc<=t&&t<=o.finallyLoc&&(o=null);var i=o?o.completion:{};return i.type=e,i.arg=t,o?(this.method="next",this.next=o.finallyLoc,U):this.complete(i)},complete:function(e,t){if("throw"===e.type)throw e.arg;return"break"===e.type||"continue"===e.type?this.next=e.arg:"return"===e.type?(this.rval=this.arg=e.arg,this.method="return",this.next="end"):"normal"===e.type&&t&&(this.next=t),U},finish:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),m(n),U}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;m(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:f(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=b),U}}}(function(){return this}()||Function("return this")())},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function i(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(6),l=n.n(a),s=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},c=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),p=wp.element.Component,u=function(e){function t(e){r(this,t);var n=o(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.myRef=React.createRef(),n}return i(t,e),c(t,[{key:"componentDidMount",value:function(){l.a.findDOMNode(this.myRef.current).addEventListener("load",this.props.onLoad)}},{key:"render",value:function(){return wp.element.createElement("div",s({ref:this.myRef},this.props))}}]),t}(p);t.a=u},function(e,t,n){!function(){var t=n(59),r=n(7).utf8,o=n(60),i=n(7).bin,a=function(e,n){e.constructor==String?e=n&&"binary"===n.encoding?i.stringToBytes(e):r.stringToBytes(e):o(e)?e=Array.prototype.slice.call(e,0):Array.isArray(e)||e.constructor===Uint8Array||(e=e.toString());for(var l=t.bytesToWords(e),s=8*e.length,c=1732584193,p=-271733879,u=-1732584194,m=271733878,d=0;d<l.length;d++)l[d]=16711935&(l[d]<<8|l[d]>>>24)|4278255360&(l[d]<<24|l[d]>>>8);l[s>>>5]|=128<<s%32,l[14+(s+64>>>9<<4)]=s;for(var f=a._ff,h=a._gg,b=a._hh,w=a._ii,d=0;d<l.length;d+=16){var y=c,g=p,v=u,E=m;c=f(c,p,u,m,l[d+0],7,-680876936),m=f(m,c,p,u,l[d+1],12,-389564586),u=f(u,m,c,p,l[d+2],17,606105819),p=f(p,u,m,c,l[d+3],22,-1044525330),c=f(c,p,u,m,l[d+4],7,-176418897),m=f(m,c,p,u,l[d+5],12,1200080426),u=f(u,m,c,p,l[d+6],17,-1473231341),p=f(p,u,m,c,l[d+7],22,-45705983),c=f(c,p,u,m,l[d+8],7,1770035416),m=f(m,c,p,u,l[d+9],12,-1958414417),u=f(u,m,c,p,l[d+10],17,-42063),p=f(p,u,m,c,l[d+11],22,-1990404162),c=f(c,p,u,m,l[d+12],7,1804603682),m=f(m,c,p,u,l[d+13],12,-40341101),u=f(u,m,c,p,l[d+14],17,-1502002290),p=f(p,u,m,c,l[d+15],22,1236535329),c=h(c,p,u,m,l[d+1],5,-165796510),m=h(m,c,p,u,l[d+6],9,-1069501632),u=h(u,m,c,p,l[d+11],14,643717713),p=h(p,u,m,c,l[d+0],20,-373897302),c=h(c,p,u,m,l[d+5],5,-701558691),m=h(m,c,p,u,l[d+10],9,38016083),u=h(u,m,c,p,l[d+15],14,-660478335),p=h(p,u,m,c,l[d+4],20,-405537848),c=h(c,p,u,m,l[d+9],5,568446438),m=h(m,c,p,u,l[d+14],9,-1019803690),u=h(u,m,c,p,l[d+3],14,-187363961),p=h(p,u,m,c,l[d+8],20,1163531501),c=h(c,p,u,m,l[d+13],5,-1444681467),m=h(m,c,p,u,l[d+2],9,-51403784),u=h(u,m,c,p,l[d+7],14,1735328473),p=h(p,u,m,c,l[d+12],20,-1926607734),c=b(c,p,u,m,l[d+5],4,-378558),m=b(m,c,p,u,l[d+8],11,-2022574463),u=b(u,m,c,p,l[d+11],16,1839030562),p=b(p,u,m,c,l[d+14],23,-35309556),c=b(c,p,u,m,l[d+1],4,-1530992060),m=b(m,c,p,u,l[d+4],11,1272893353),u=b(u,m,c,p,l[d+7],16,-155497632),p=b(p,u,m,c,l[d+10],23,-1094730640),c=b(c,p,u,m,l[d+13],4,681279174),m=b(m,c,p,u,l[d+0],11,-358537222),u=b(u,m,c,p,l[d+3],16,-722521979),p=b(p,u,m,c,l[d+6],23,76029189),c=b(c,p,u,m,l[d+9],4,-640364487),m=b(m,c,p,u,l[d+12],11,-421815835),u=b(u,m,c,p,l[d+15],16,530742520),p=b(p,u,m,c,l[d+2],23,-995338651),c=w(c,p,u,m,l[d+0],6,-198630844),m=w(m,c,p,u,l[d+7],10,1126891415),u=w(u,m,c,p,l[d+14],15,-1416354905),p=w(p,u,m,c,l[d+5],21,-57434055),c=w(c,p,u,m,l[d+12],6,1700485571),m=w(m,c,p,u,l[d+3],10,-1894986606),u=w(u,m,c,p,l[d+10],15,-1051523),p=w(p,u,m,c,l[d+1],21,-2054922799),c=w(c,p,u,m,l[d+8],6,1873313359),m=w(m,c,p,u,l[d+15],10,-30611744),u=w(u,m,c,p,l[d+6],15,-1560198380),p=w(p,u,m,c,l[d+13],21,1309151649),c=w(c,p,u,m,l[d+4],6,-145523070),m=w(m,c,p,u,l[d+11],10,-1120210379),u=w(u,m,c,p,l[d+2],15,718787259),p=w(p,u,m,c,l[d+9],21,-343485551),c=c+y>>>0,p=p+g>>>0,u=u+v>>>0,m=m+E>>>0}return t.endian([c,p,u,m])};a._ff=function(e,t,n,r,o,i,a){var l=e+(t&n|~t&r)+(o>>>0)+a;return(l<<i|l>>>32-i)+t},a._gg=function(e,t,n,r,o,i,a){var l=e+(t&r|n&~r)+(o>>>0)+a;return(l<<i|l>>>32-i)+t},a._hh=function(e,t,n,r,o,i,a){var l=e+(t^n^r)+(o>>>0)+a;return(l<<i|l>>>32-i)+t},a._ii=function(e,t,n,r,o,i,a){var l=e+(n^(t|~r))+(o>>>0)+a;return(l<<i|l>>>32-i)+t},a._blocksize=16,a._digestsize=16,e.exports=function(e,n){if(void 0===e||null===e)throw new Error("Illegal argument "+e);var r=t.wordsToBytes(a(e,n));return n&&n.asBytes?r:n&&n.asString?i.bytesToString(r):t.bytesToHex(r)}}()},function(e,t){!function(){var t="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",n={rotl:function(e,t){return e<<t|e>>>32-t},rotr:function(e,t){return e<<32-t|e>>>t},endian:function(e){if(e.constructor==Number)return 16711935&n.rotl(e,8)|4278255360&n.rotl(e,24);for(var t=0;t<e.length;t++)e[t]=n.endian(e[t]);return e},randomBytes:function(e){for(var t=[];e>0;e--)t.push(Math.floor(256*Math.random()));return t},bytesToWords:function(e){for(var t=[],n=0,r=0;n<e.length;n++,r+=8)t[r>>>5]|=e[n]<<24-r%32;return t},wordsToBytes:function(e){for(var t=[],n=0;n<32*e.length;n+=8)t.push(e[n>>>5]>>>24-n%32&255);return t},bytesToHex:function(e){for(var t=[],n=0;n<e.length;n++)t.push((e[n]>>>4).toString(16)),t.push((15&e[n]).toString(16));return t.join("")},hexToBytes:function(e){for(var t=[],n=0;n<e.length;n+=2)t.push(parseInt(e.substr(n,2),16));return t},bytesToBase64:function(e){for(var n=[],r=0;r<e.length;r+=3)for(var o=e[r]<<16|e[r+1]<<8|e[r+2],i=0;i<4;i++)8*r+6*i<=8*e.length?n.push(t.charAt(o>>>6*(3-i)&63)):n.push("=");return n.join("")},base64ToBytes:function(e){e=e.replace(/[^A-Z0-9+\/]/gi,"");for(var n=[],r=0,o=0;r<e.length;o=++r%4)0!=o&&n.push((t.indexOf(e.charAt(r-1))&Math.pow(2,-2*o+8)-1)<<2*o|t.indexOf(e.charAt(r))>>>6-2*o);return n}};e.exports=n}()},function(e,t){function n(e){return!!e.constructor&&"function"===typeof e.constructor.isBuffer&&e.constructor.isBuffer(e)}function r(e){return"function"===typeof e.readFloatLE&&"function"===typeof e.slice&&n(e.slice(0,0))}e.exports=function(e){return null!=e&&(n(e)||r(e)||!!e._isBuffer)}},function(e,t,n){"use strict";function r(e){var t=e.attributes,n=e.setAttributes,r=e.isYTChannel,s=e.isOpensea,c=t.width,p=t.height,u=t.editingURL,m=t.embedHTML;return!u&&m&&wp.element.createElement(l,null,!s&&wp.element.createElement(a,{title:__("Embeded Options")},wp.element.createElement("div",null,wp.element.createElement("p",null,__("You can adjust the width and height of embedded content.")),wp.element.createElement(i,{label:__("Width"),value:c,onChange:function(e){return n({width:e})}}),wp.element.createElement(i,{label:__("Height"),value:p,onChange:function(e){return n({height:e})}})),r&&wp.element.createElement(o.a,{attributes:t,setAttributes:n})),s&&wp.element.createElement(__WEBPACK_IMPORTED_MODULE_1__InspectorControl_OpenSea___default.a,{attributes:t,setAttributes:n}))}t.a=r;var o=n(62);throw new Error('Cannot find module "./InspectorControl/OpenSea"');var __,i,a,l},function(e,t,n){"use strict";function r(e){var t=e.attributes,n=e.setAttributes,r=t.ispagination,o=t.pagesize,c=t.columns,p=t.gapbetweenvideos;return wp.element.createElement("div",null,wp.element.createElement(i,{label:__("Video Per Page"),value:o,onChange:function(e){return n({pagesize:e})},type:"number",max:50}),wp.element.createElement("p",null,"Specify the number of videos you wish to show on each page."),wp.element.createElement(a,{label:__("Column"),value:c,options:[{label:"Auto",value:"auto"},{label:"2",value:"2"},{label:"3",value:"3"},{label:"4",value:"4"},{label:"6",value:"6"}],onChange:function(e){return n({columns:e})},__nextHasNoMarginBottom:!0}),wp.element.createElement(l,{label:__("Gap Between Videos"),value:p,onChange:function(e){return n({gapbetweenvideos:e})},min:1,max:100}),wp.element.createElement("p",null,"Specify the gap between youtube videos."),wp.element.createElement(s,{label:__("Pagination"),checked:r,onChange:function(e){return n({ispagination:e})}}))}t.a=r;var __=wp.i18n.__,o=wp.components,i=o.TextControl,a=o.SelectControl,l=o.RangeControl,s=o.ToggleControl},function(e,t,n){"use strict";n(64),wp.i18n.__},function(e,t,n){"use strict";function r(){return wp.element.createElement("div",{class:"ep_nft_item"},wp.element.createElement("svg",{id:"ejvt20hDbyT1",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 320 345",shapeRendering:"geometricPrecision",textRendering:"geometricPrecision"},wp.element.createElement("defs",null,wp.element.createElement("linearGradient",{id:"ejvt20hDbyT9-fill",x1:-.245,y1:.501,x2:.5,y2:.5,spreadMethod:"reflect",gradientUnits:"objectBoundingBox"},wp.element.createElement("stop",{id:"ejvt20hDbyT9-fill-0",offset:"0%",stopColor:"rgba(213,224,249,0)"}),wp.element.createElement("stop",{id:"ejvt20hDbyT9-fill-1",offset:"100%",stopColor:"rgba(213,224,249,0.52)"})),wp.element.createElement("linearGradient",{id:"ejvt20hDbyT10-fill",x1:-.245,y1:.501,x2:.5,y2:.5,spreadMethod:"reflect",gradientUnits:"objectBoundingBox"},wp.element.createElement("stop",{id:"ejvt20hDbyT10-fill-0",offset:"0%",stopColor:"rgba(213,224,249,0)"}),wp.element.createElement("stop",{id:"ejvt20hDbyT10-fill-1",offset:"100%",stopColor:"rgba(213,224,249,0.52)"})),wp.element.createElement("linearGradient",{id:"ejvt20hDbyT11-fill",x1:-.245,y1:.501,x2:.5,y2:.5,spreadMethod:"reflect",gradientUnits:"objectBoundingBox"},wp.element.createElement("stop",{id:"ejvt20hDbyT11-fill-0",offset:"0%",stopColor:"rgba(213,224,249,0)"}),wp.element.createElement("stop",{id:"ejvt20hDbyT11-fill-1",offset:"100%",stopColor:"rgba(213,224,249,0.52)"}))),wp.element.createElement("rect",{width:320,height:189,rx:3,ry:3,fill:"#e8efff"}),wp.element.createElement("rect",{width:320,height:20,rx:3,ry:3,transform:"translate(0 219)",fill:"#e8efff"}),wp.element.createElement("rect",{width:271,height:20,rx:3,ry:3,transform:"translate(0 249)",fill:"#e8efff"}),wp.element.createElement("rect",{width:130,height:46,rx:3,ry:3,transform:"translate(0 299)",fill:"#e8efff"}),wp.element.createElement("rect",{width:80,height:12,rx:3,ry:3,transform:"translate(25 316)",fill:"#ced9f0"}),wp.element.createElement("g",{mask:"url(#ejvt20hDbyT12)"},wp.element.createElement("rect",{id:"ejvt20hDbyT9",width:79.455,height:58.345,rx:0,ry:0,transform:"matrix(2.7339 .00871 -.00413 1.29575 -195.005 288.679)",fill:"url(#ejvt20hDbyT9-fill)",strokeWidth:0}),wp.element.createElement("rect",{id:"ejvt20hDbyT10",width:79.455,height:57.876,rx:0,ry:0,transform:"matrix(2.7339 .00871 -.00413 1.29575 -194.736 204.238)",fill:"url(#ejvt20hDbyT10-fill)",strokeWidth:0}),wp.element.createElement("rect",{id:"ejvt20hDbyT11",width:79.455,height:164.549,rx:0,ry:0,transform:"matrix(2.7339 .00871 -.00413 1.29574 -194.029 -17.716)",fill:"url(#ejvt20hDbyT11-fill)",strokeWidth:0}),wp.element.createElement("mask",{id:"ejvt20hDbyT12",maskType:"luminance"},wp.element.createElement("rect",{width:320,height:189,rx:3,ry:3,fill:"#e8efff"}),wp.element.createElement("rect",{width:320,height:20,rx:3,ry:3,transform:"translate(0 219)",fill:"#e8efff"}),wp.element.createElement("rect",{width:271,height:20,rx:3,ry:3,transform:"translate(0 249)",fill:"#e8efff"}),wp.element.createElement("rect",{width:130,height:46,rx:3,ry:3,transform:"translate(0 299)",fill:"#e8efff"}),wp.element.createElement("rect",{width:80,height:12,rx:3,ry:3,transform:"translate(25 316)",fill:"#ced9f0"}))),wp.element.createElement("script",null)))}t.a=r},function(e,t,n){"use strict";var r=n(66),o=(n.n(r),n(67)),i=(n.n(o),n(68)),a=n(0),__=wp.i18n.__,l=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks["embedpress-pdf"]&&l("embedpress/embedpress-pdf",{title:__("EmbedPress PDF"),icon:a.c,category:"embedpress",keywords:[__("embedpress"),__("pdf"),__("doc"),__("document")],supports:{align:["left","center","right"],default:""},attributes:{id:{type:"string"},href:{type:"string"},powered_by:{type:"boolean",default:!0},presentation:{type:"boolean",default:!0},position:{type:"string",default:"top"},download:{type:"boolean",default:!0},open:{type:"boolean",default:!1},copy_text:{type:"boolean",default:!0},toolbar:{type:"boolean",default:!0},doc_details:{type:"boolean",default:!0},doc_rotation:{type:"boolean",default:!0},width:{type:"number",default:600},height:{type:"number",default:450},fileName:{type:"string"},mime:{type:"string"}},edit:i.a,save:function(e){return null}})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function i(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(4),l=n(5),s=n(1),c=n(69),p=(n.n(c),n(70)),u=(n.n(p),n(0)),m=function(){function e(e,t){var n=[],_n=!0,r=!1,o=void 0;try{for(var i,a=e[Symbol.iterator]();!(_n=(i=a.next()).done)&&(n.push(i.value),!t||n.length!==t);_n=!0);}catch(e){r=!0,o=e}finally{try{!_n&&a.return&&a.return()}finally{if(r)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),d=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),__=wp.i18n.__,f=wp.blob,h=f.getBlobByURL,b=f.isBlobURL,w=f.revokeBlobURL,y=wp.blockEditor,g=y.BlockIcon,v=y.MediaPlaceholder,E=y.InspectorControls,_=wp.element,L=_.Component,k=_.Fragment,O=wp.components,S=O.RangeControl,x=O.PanelBody,C=O.ExternalLink,U=O.ToggleControl,T=["application/pdf"],j=function(e){function t(){r(this,t);var e=o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments));return e.onSelectFile=e.onSelectFile.bind(e),e.onUploadError=e.onUploadError.bind(e),e.onLoad=e.onLoad.bind(e),e.hideOverlay=e.hideOverlay.bind(e),e.iframeManupulate=e.iframeManupulate.bind(e),e.isPro=e.isPro.bind(e),e.addProAlert=e.addProAlert.bind(e),e.state={hasError:!1,fetching:!1,interactive:!1,loadPdf:!0},e}return i(t,e),d(t,[{key:"componentDidMount",value:function(){var e=this,t=this.props,n=t.attributes,r=t.mediaUpload,o=t.noticeOperations,i=n.href;if(b(i)){r({filesList:[h(i)],onFileChange:function(t){var n=m(t,1),r=n[0];return e.onSelectFile(r)},onError:function(t){e.setState({hasError:!0}),o.createErrorNotice(t)}}),w(i)}this.props.attributes.href&&"application/pdf"===this.props.attributes.mime&&this.state.loadPdf&&this.setState({loadPdf:!1})}},{key:"componentDidUpdate",value:function(e){e.isSelected&&!this.props.isSelected&&this.setState({showCopyConfirmation:!1})}},{key:"hideOverlay",value:function(){this.setState({interactive:!0})}},{key:"onLoad",value:function(){this.setState({fetching:!1})}},{key:"onSelectFile",value:function(e){e&&e.url&&(this.setState({hasError:!1}),this.props.setAttributes({href:e.url,fileName:e.title,id:"embedpress-pdf-"+Date.now(),mime:e.mime}),void 0!==embedpressObj.branding&&void 0!==embedpressObj.branding.powered_by&&this.props.setAttributes({powered_by:embedpressObj.branding.powered_by}),"application/pdf"===e.mime&&this.setState({loadPdf:!1}))}},{key:"onUploadError",value:function(e){var t=this.props.noticeOperations;t.removeAllNotices(),t.createErrorNotice(e)}},{key:"isDisplay",value:function(e){return e=e?"block":"none"}},{key:"iframeManupulate",value:function(e,t,n,r,o,i,a,l,s,c){var p=this,u=setInterval(function(){var m="",d=document.querySelector(e).contentWindow.document,f=d.getElementsByTagName("head")[0],h=d.createElement("style");h.setAttribute("id","EBiframeStyleID"),!1===i&&(t=!1,r=!0,o=!1,a=!0,l=!1,s=!1,c=!1),i=p.isDisplay(i),t=p.isDisplay(t),r=p.isDisplay(r),o=p.isDisplay(o),a=p.isDisplay(a),"block"===a&&(a="all"),s=p.isDisplay(s),c=p.isDisplay(c),"top"===n?(n="top:0;bottom:auto;",m=""):(n="bottom:0;top:auto;",m="\n\t\t\t\t.findbar, .secondaryToolbar {\n\t\t\t\t\ttop: auto;bottom: 32px;\n\t\t\t\t}\n\t\t\t\t.doorHangerRight:after{\n\t\t\t\t\ttransform: rotate(180deg);\n\t\t\t\t\tbottom: -16px;\n\t\t\t\t}\n\t\t\t\t .doorHangerRight:before {\n\t\t\t\t\ttransform: rotate(180deg);\n\t\t\t\t\tbottom: -18px;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t.findbar.doorHanger:before {\n\t\t\t\t\tbottom: -18px;\n\t\t\t\t\ttransform: rotate(180deg);\n\t\t\t\t}\n\t\t\t\t.findbar.doorHanger:after {\n\t\t\t\t\tbottom: -16px;\n\t\t\t\t\ttransform: rotate(180deg);\n\t\t\t\t}\n\t\t\t"),h.textContent="\n\t\t\t.toolbar{\n\t\t\t\tdisplay: "+i+"!important;\n\t\t\t\tposition: absolute;\n\t\t\t\t"+n+"\n\n\t\t\t}\n\n\t\t\t#secondaryToolbar{\n\t\t\t\tdisplay: "+i+";\n\t\t\t}\n\t\t\t#secondaryPresentationMode, #toolbarViewerRight #presentationMode{\n\t\t\t\tdisplay: "+t+"!important;\n\t\t\t}\n\t\t\t#secondaryOpenFile, #toolbarViewerRight #openFile{\n\t\t\t\tdisplay: "+o+"!important;\n\t\t\t}\n\t\t\t#secondaryDownload, #secondaryPrint, #toolbarViewerRight #print, #toolbarViewerRight #download{\n\t\t\t\tdisplay: "+r+"!important;\n\t\t\t}\n\t\t\t#pageRotateCw{\n\t\t\t\tdisplay: "+c+"!important;\n\t\t\t}\n\t\t\t#pageRotateCcw{\n\t\t\t\tdisplay: "+c+"!important;\n\t\t\t}\n\t\t\t#documentProperties{\n\t\t\t\tdisplay: "+s+"!important;\n\t\t\t}\n\t\t\t.textLayer{\n\t\t\t\tuser-select: "+a+"!important;\n\t\t\t}\n\t\t\t\n\t\t\t"+m+"\n\t\t\t\n\t\t",f&&(d.getElementById("EBiframeStyleID")&&d.getElementById("EBiframeStyleID").remove(),f.appendChild(h),clearInterval(u))},100)}},{key:"addProAlert",value:function(e,t){t||(document.querySelector(".pro__alert__wrap").style.display="block")}},{key:"removeAlert",value:function(){document.querySelector(".pro__alert__wrap")&&document.querySelector(".pro__alert__wrap .pro__alert__card .button").addEventListener("click",function(e){document.querySelector(".pro__alert__wrap").style.display="none"})}},{key:"isPro",value:function(e){var t=document.createElement("div");return t.innerHTML='\n\t\t<div class="pro__alert__wrap" style="display: none;">\n\t\t\t<div class="pro__alert__card">\n\t\t\t\t<img src="../wp-content/plugins/embedpress/EmbedPress/Ends/Back/Settings/assets/img/alert.svg" alt=""/>\n\t\t\t\t\t<h2>Opps...</h2>\n\t\t\t\t\t<p>You need to upgrade to the <a href="https://wpdeveloper.com/in/upgrade-embedpress" target="_blank">Premium</a> Version to use this feature</p>\n\t\t\t\t\t<a href="#" class="button radius-10">Close</a>\n\t\t\t</div>\n\t\t</div>\n\t\t',t}},{key:"render",value:function(){var e=this,t=this.props,n=t.attributes,r=t.noticeUI,o=t.setAttributes,i=t.clientId,c=n.href,m=n.mime,d=n.id,f=n.width,h=n.height,b=n.powered_by,w=n.presentation,y=n.position,_=n.download,L=n.open,O=n.toolbar,j=n.copy_text,B=n.toolbar_position,R=n.doc_details,M=n.doc_rotation,P=this.state,F=P.hasError,D=P.interactive,z=P.fetching,I=P.loadPdf,N=embedpressObj.is_pro_plugin_active;if(N||(o({download:!0}),o({copy_text:!0})),document.querySelector(".pro__alert__wrap")||(document.querySelector("body").append(this.isPro("none")),this.removeAlert()),!c||F)return wp.element.createElement("div",{className:"embedpress-document-editmode"},wp.element.createElement(v,{icon:wp.element.createElement(g,{icon:u.c}),labels:{title:__("EmbedPress PDF"),instructions:__("Upload a PDF file or pick one from your media library for embed.")},onSelect:this.onSelectFile,notices:r,allowedTypes:T,onError:this.onUploadError},wp.element.createElement("div",{style:{width:"100%"},className:"components-placeholder__learn-more embedpress-doc-link"},wp.element.createElement(C,{href:"https://embedpress.com/docs/embed-document/"},"Learn more about Embedded document "))));var A="//view.officeapps.live.com/op/embed.aspx?src="+c,H=embedpressObj.pdf_renderer+"?file="+c;return this.iframeManupulate("."+d,w,y,_,L,O,j,B,R,M),wp.element.createElement(k,null,z&&"application/pdf"!==m?wp.element.createElement(s.a,null):null,wp.element.createElement("div",{className:"embedpress-document-embed ep-doc-"+d,style:{width:f,maxWidth:"100%"},id:"ep-doc-"+this.props.clientId},"application/pdf"===m&&wp.element.createElement("iframe",{powered_by:b,style:{height:h,width:f},className:"embedpress-embed-document-pdf "+d,"data-emid":d,"data-emsrc":c,src:H}),"application/pdf"!==m&&wp.element.createElement(a.a,{onMouseUponMouseUp:this.hideOverlay,style:{height:h,width:f,display:z||!I?"none":""},onLoad:this.onLoad,src:A}),!D&&wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:this.hideOverlay}),b&&wp.element.createElement("p",{className:"embedpress-el-powered"},"Powered By EmbedPress"),!z&&wp.element.createElement(l.a,{id:d})),wp.element.createElement(E,{key:"inspector"},wp.element.createElement(x,{title:__("Embed Size(px)","embedpress")},wp.element.createElement(S,{label:__("Width","embedpress"),value:f,onChange:function(e){return o({width:e})},max:1e3,min:1}),wp.element.createElement(S,{label:__("Height","embedpress"),value:h,onChange:function(e){return o({height:e})},max:1e3,min:1})),wp.element.createElement(x,{title:__("PDF Control Settings","embedpress"),initialOpen:!1},wp.element.createElement("div",{className:N?"pro-control-active":"pro-control",onClick:function(t){e.addProAlert(t,N)}},wp.element.createElement(U,{label:__("Toolbar","embedpress"),description:__("Show or Hide toolbar. Note: If you disable toolbar access then every toolbar options will be disabled","embedpress"),onChange:function(e){return o({toolbar:e})},checked:O,style:{marginTop:"30px"}}),!N&&wp.element.createElement("span",{className:"isPro"},__("pro","embedpress"))),O&&wp.element.createElement(k,null,wp.element.createElement(p.__experimentalToggleGroupControl,{label:"Toolbar Position",value:y,onChange:function(e){return o({position:e})}},wp.element.createElement(p.__experimentalToggleGroupControlOption,{value:"top",label:"Top"}),wp.element.createElement(p.__experimentalToggleGroupControlOption,{value:"bottom",label:"Bottom"})),wp.element.createElement(U,{label:__("Presentation Mode","embedpress"),onChange:function(e){return o({presentation:e})},checked:w}),wp.element.createElement("div",{className:N?"pro-control-active":"pro-control",onClick:function(t){e.addProAlert(t,N)}},wp.element.createElement(U,{label:__("Print/Download","embedpress"),onChange:function(e){return o({download:e})},checked:_}),!N&&wp.element.createElement("span",{className:"isPro"},__("pro","embedpress"))),wp.element.createElement("div",{className:N?"pro-control-active":"pro-control",onClick:function(t){e.addProAlert(t,N)}},wp.element.createElement(U,{label:__("Copy Text","embedpress"),onChange:function(e){return o({copy_text:e})},checked:j,className:"disabled"}),!N&&wp.element.createElement("span",{className:"isPro"},__("pro","embedpress"))),wp.element.createElement(U,{label:__("Rotation","embedpress"),onChange:function(e){return o({doc_rotation:e})},checked:M}),wp.element.createElement(U,{label:__("Properties","embedpress"),onChange:function(e){return o({doc_details:e})},checked:R}),wp.element.createElement(U,{label:__("Powered By","embedpress"),onChange:function(e){return o({powered_by:e})},checked:b})))),wp.element.createElement("style",{style:{display:"none"}},"\n\t\t\t\t\t\t\t#block-"+i+" {\n\t\t\t\t\t\t\t\twidth:-webkit-fill-available;\n\t\t\t\t\t\t\t} \n\t\t\t\t\t\t\t.embedpress-el-powered{\n\t\t\t\t\t\t\t\tmax-width: "+f+"\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t.alignright .embedpress-document-embed{\n\t\t\t\t\t\t\t\tfloat: right!important;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t.alignleft .embedpress-document-embed{\n\t\t\t\t\t\t\t\tfloat: left;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t"))}}],[{key:"getDerivedStateFromProps",value:function(e,t){return!e.isSelected&&t.interactive?{interactive:!1}:null}}]),t}(L);t.a=j},function(e,t){e.exports=wp.apiFetch},function(e,t){e.exports=wp.components},function(e,t,n){"use strict";var r=n(72),o=(n.n(r),n(73)),i=(n.n(o),n(74)),a=n(0),__=wp.i18n.__,l=wp.blocks.registerBlockType;embedpressObj&&embedpressObj.active_blocks&&embedpressObj.active_blocks["embedpress-calendar"]&&l("embedpress/embedpress-calendar",{title:__("Google Calendar"),icon:a.a,category:"embedpress",keywords:["embedpress","embed","calendar","calender","google","cal","events","task","birthday"],supports:{align:["left","center","right"],default:"center",lightBlockWrapper:!0},attributes:{id:{type:"string"},powered_by:{type:"boolean",default:!0},is_public:{type:"boolean",default:!0},width:{type:"string",default:600},height:{type:"string",default:600},url:{type:"string",default:""},embedHTML:{type:"string",default:""}},edit:i.a,save:function(e){return null}})},function(e,t){},function(e,t){},function(e,t,n){"use strict";function r(e){function t(){d({editingURL:!0,is_public:!0})}function n(e){e&&e.preventDefault(),w?(d({fetching:!0}),setTimeout(function(){d({fetching:!1,cannotEmbed:!1,editingURL:!1,embedHTML:"ready"})},500)):d({cannotEmbed:!0,fetching:!1,editingURL:!0})}var r=e.attributes,c=e.className,d=e.setAttributes,w=r.url,y=r.editingURL,g=r.fetching,v=r.cannotEmbed,E=r.embedHTML,_=r.height,L=r.width,k=r.powered_by,O=r.is_public,S=r.align,x=h?h({className:"align"+S,style:{width:L+"px",height:_+"px"}}):[];return wp.element.createElement(b,null,wp.element.createElement(f,null,wp.element.createElement(u,{title:__("Customize Embedded Calendar","embedpress")},wp.element.createElement("p",null,__("You can adjust the width and height of embedded content.","embedpress")),wp.element.createElement(p,{label:__("Width","embedpress"),value:L,onChange:function(e){return d({width:e})}}),wp.element.createElement(p,{label:__("Height","embedpress"),value:_,onChange:function(e){return d({height:e})}})),wp.element.createElement(u,{title:__("Calendar Type and other options","embedpress")},wp.element.createElement("p",null,__("You can show public calendar without any API key","embedpress")),wp.element.createElement(m,{label:__("Powered By","embedpress"),onChange:function(e){return d({powered_by:e})},checked:k}),wp.element.createElement(m,{label:__("Embedding Public Calendar","embedpress"),onChange:function(e){return d({is_public:e})},checked:O}))),(!E||y)&&!g&&O&&wp.element.createElement("div",x,wp.element.createElement(i.a,{label:__("Public Calendar Link"),onSubmit:n,value:w,cannotEmbed:v,onChange:function(e){return d({url:e.target.value})},icon:a.a,DocTitle:__("Learn more about EmbedPress Calendar"),docLink:"https://embedpress.com/docs/"})),g?wp.element.createElement("div",{className:c},wp.element.createElement(o.a,null)," "):null,E&&O&&!y&&!g&&wp.element.createElement("figure",x,O&&wp.element.createElement("iframe",{style:{display:g?"none":""},src:w,width:L,height:_}),k&&wp.element.createElement("p",{className:"embedpress-el-powered"},"Powered By EmbedPress"),wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:d({interactive:!0})}),wp.element.createElement(l.a,{showEditButton:E&&!v,switchBackToURLInput:t})),!O&&wp.element.createElement("figure",s({className:"testing"},x),wp.element.createElement("p",null,"Private Calendar will show in the frontend only.",wp.element.createElement("br",null),wp.element.createElement("strong",null,"Note: Private calendar needs EmbedPress Pro.")),k&&wp.element.createElement("p",{className:"embedpress-el-powered"},"Powered By EmbedPress"),wp.element.createElement("div",{className:"block-library-embed__interactive-overlay",onMouseUp:d({interactive:!0})}),wp.element.createElement(l.a,{showEditButton:E&&!v,switchBackToURLInput:t})))}t.a=r;var o=n(1),i=n(3),a=n(0),l=n(2),s=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},c=wp.components,p=c.TextControl,u=c.PanelBody,m=c.ToggleControl,d=wp.blockEditor,f=d.InspectorControls,h=d.useBlockProps,b=wp.element.Fragment,__=wp.i18n.__}]);
Gutenberg/dist/blocks.style.build.css CHANGED
@@ -1,4 +1,4 @@
1
- .pdfobject-container{height:600px;width:600px;margin:0 auto}.embedpress-el-powered{text-align:center;margin-top:0 !important;font-size:16px !important;font-weight:700}.embedpress-embed-document iframe,[data-type="embedpress/document"] iframe{margin:0 auto;display:block}.embedpress-embed-document-pdf{width:100%}.embedpress-document-editmode .components-form-file-upload{display:none !important}
2
- .embedpress-gutenberg-wrapper{margin:30px auto}.embedpress-gutenberg-wrapper iframe{max-width:100%}.embedpress-gutenberg-wrapper.alignright{max-width:100%}.ose-the-new-york-times iframe{min-height:500px;max-height:100%}body.page .flexia-wrapper>.content-area{padding:0 !important}.flexia-wrapper.flexia-container>.content-area{margin:0 !important}.flexia-wrapper.flexia-container>.content-area .embedpress-gutenberg-wrapper{margin:0 auto}@media only screen and (min-width: 482px){.entry-content>.embedpress-gutenberg-wrapper.alignright,.entry-content>.embedpress-gutenberg-wrapper.alignleft,.embedpress-gutenberg-wrapper.alignright,.embedpress-gutenberg-wrapper.alignleft{max-width:100%}}.clear::after{content:'';display:block;clear:both;min-height:1px}.embedpress-gutenberg-wrapper .alignleft,.embedpress-gutenberg-wrapper .alignright,.embedpress-gutenberg-wrapper .aligncenter{float:none;display:block}.embedpress-gutenberg-wrapper .alignright{text-align:right}.embedpress-gutenberg-wrapper .alignleft{text-align:left}.embedpress-gutenberg-wrapper .aligncenter{clear:both;display:block;float:none;margin-right:auto;margin-left:auto;text-align:center}.embedpress-gutenberg-wrapper .ose-embedpress-responsive{display:inline-block}.embedpress-gutenberg-wrapper{max-width:100% !important}.ep-first-video{position:relative;height:0;padding-bottom:56.25%}.ep-first-video iframe{position:absolute;top:0;left:0;width:100%;height:100%}.components-base-control__label{font-weight:600}.components-input-control__label{font-weight:600}.components-base-control__field,.components-input-control__label{font-weight:600}label.components-truncate.components-text.components-input-control__label.em5sgkm4.ecfd-bd--d-eecc-1iznhho.em57xhy0{font-weight:600 !important}.text-center{text-align:center !important}.wp-block-embed.is-loading{-ms-flex-align:center;align-items:center}.css-vwt1e3{margin:0px 11px 0px !important}.toolbar{display:none}.ep-youtube__content__pagination .ep-prev,.ep-youtube__content__pagination .ep-next{user-select:none;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none}
3
- .pdfobject-container{height:600px;width:600px;margin:0 auto}.embedpress-el-powered{text-align:center;margin-top:10px !important;font-size:16px !important;font-weight:700}.embedpress-embed-document iframe,[data-type="embedpress/document"] iframe{margin:0 auto;display:block}.embedpress-embed-document{max-width:100%}.embedpress-document-editmode .components-form-file-upload{display:none !important}.wp-block-embedpress-embedpress-pdf+*{clear:both}.pro-control{position:relative}span.isPro{position:absolute;z-index:1;background:#5B4E96;border-radius:20px;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:40px;height:18px;font-size:10px;right:0;color:#fff;font-weight:400;text-transform:uppercase;top:0}.pro-control:after{content:'';width:100%;height:100%;background:transparent;position:absolute;z-index:12;top:0;bottom:0}.theme-astra span.isPro{right:10px;top:5px}.pro-control:hover::after{cursor:pointer}.pro__alert__wrap{position:fixed;top:0;left:0;height:100%;width:100%;background:rgba(0,0,0,0.3);z-index:1;display:none}.pro__alert__wrap .pro__alert__card{width:calc(100% - 30px);max-width:500px;margin:7% auto 0;background:#fff;border-radius:20px;padding:30px;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:center;align-items:center;text-align:center}.pro__alert__wrap .pro__alert__card h2{font-size:32px;font-weight:450;color:#131F4D;margin-bottom:15px}.pro__alert__wrap .pro__alert__card p{font-size:14px;font-weight:400;color:#7C8DB5;margin-top:10px}.pro__alert__wrap .pro__alert__card .button{-ms-flex-item-align:end;align-self:flex-end;margin-top:20px;padding:6px 30px;border-radius:10px}.pro__alert__wrap .pro__alert__card p a{text-decoration:underline;font-weight:700;color:#131F4D}.template__wrapper .button:hover{background:#5B4E96 !important;color:#fff !important;border-color:#5B4E96 !important}.pro__alert__wrap .pro__alert__card img{height:100px;margin-bottom:20px}.pro-control .components-toggle-control__label{color:#bbacac}.pro-control .components-form-toggle .components-form-toggle__track{border:1px solid #b89d9d}.pro-control .components-form-toggle .components-form-toggle__thumb{background-color:#b89d9d;border:5px solid #b89d9d}.block-editor-block-inspector .components-base-control{margin-top:15px}.pro-control-active{margin-bottom:24px}.ep-alignleft{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start;text-align:center}.ep-alignright{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:end;align-items:flex-end;text-align:center}.ep-aligncenter{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:center;align-items:center;text-align:center}.embedpress-document-embed.embedpress-pdf{width:100%}.embedpress-inner-iframe{display:inline-block;text-align:center}
4
  .embedpress-calendar-gutenberg{margin:30px auto}.embedpress-calendar-gutenberg iframe{max-width:100%}.embedpress-calendar-gutenberg.alignright{max-width:100%}body.page .flexia-wrapper>.content-area{padding:0 !important}.flexia-wrapper.flexia-container>.content-area{margin:0 !important}.flexia-wrapper.flexia-container>.content-area .embedpress-calendar-gutenberg{margin:0 auto}@media only screen and (min-width: 482px){.entry-content>.embedpress-calendar-gutenberg.alignright,.entry-content>.embedpress-calendar-gutenberg.alignleft,.embedpress-calendar-gutenberg.alignright,.embedpress-calendar-gutenberg.alignleft{max-width:100%}}.clear::after{content:'';display:block;clear:both;min-height:1px}
1
+ .pdfobject-container{height:600px;width:600px;margin:0 auto}.embedpress-el-powered{text-align:center;margin-top:0 !important;font-size:16px !important;font-weight:700}.embedpress-embed-document iframe,[data-type="embedpress/document"] iframe{margin:0 auto;display:block}.embedpress-embed-document-pdf{width:100%}.embedpress-document-editmode .components-form-file-upload{display:none !important}.components-toggle-control .components-base-control__field .components-form-toggle{margin-right:6px}.opensea-control.pro-control span.isPro{right:6px;bottom:5px;-webkit-transform:scale(0.9);-ms-transform:scale(0.9);transform:scale(0.9)}.pro-control.opensea-control input{border-color:#cfc2c2;color:#cfc2c2;border-radius:5px}.pro-control .components-base-control{pointer-events:none}button.components-flex.components-color-palette__custom-color{height:20px}.components-color-palette__custom-color-value{display:none !important}.components-circular-option-picker .components-circular-option-picker__swatches{-ms-flex-pack:distribute;justify-content:space-around}
2
+ .embedpress-gutenberg-wrapper{margin:30px auto}.embedpress-gutenberg-wrapper iframe{max-width:100%}.embedpress-gutenberg-wrapper.alignright{max-width:100%}.ose-the-new-york-times iframe{min-height:500px;max-height:100%}body.page .flexia-wrapper>.content-area{padding:0 !important}.flexia-wrapper.flexia-container>.content-area{margin:0 !important}.flexia-wrapper.flexia-container>.content-area .embedpress-gutenberg-wrapper{margin:0 auto}@media only screen and (min-width: 482px){.entry-content>.embedpress-gutenberg-wrapper.alignright,.entry-content>.embedpress-gutenberg-wrapper.alignleft,.embedpress-gutenberg-wrapper.alignright,.embedpress-gutenberg-wrapper.alignleft{max-width:100%}}.clear::after{content:'';display:block;clear:both;min-height:1px}.embedpress-gutenberg-wrapper .alignleft,.embedpress-gutenberg-wrapper .alignright,.embedpress-gutenberg-wrapper .aligncenter{float:none;display:block}.embedpress-gutenberg-wrapper .alignright{text-align:right}.embedpress-gutenberg-wrapper .alignleft{text-align:left}.embedpress-gutenberg-wrapper .aligncenter{clear:both;display:block;float:none;margin-right:auto;margin-left:auto;text-align:center}.embedpress-gutenberg-wrapper .ose-embedpress-responsive{display:inline-block}.embedpress-gutenberg-wrapper{max-width:100% !important}.ep-first-video{position:relative;height:0;padding-bottom:56.25%}.ep-first-video iframe{position:absolute;top:0;left:0;width:100%;height:100%}.components-base-control__label{font-weight:600}.components-input-control__label{font-weight:600}.components-base-control__field,.components-input-control__label{font-weight:600}label.components-truncate.components-text.components-input-control__label.em5sgkm4.ecfd-bd--d-eecc-1iznhho.em57xhy0{font-weight:600 !important}.text-center{text-align:center !important}.wp-block-embed.is-loading{-ms-flex-align:center;align-items:center}.css-vwt1e3{margin:0px 11px 0px !important}.toolbar{display:none}.ep-youtube__content__pagination .ep-prev,.ep-youtube__content__pagination .ep-next{user-select:none;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none}.ep__components-placeholder,.wp-block-embedpress-embedpress,.block-editor-block-list__block{clear:both !important}.wp-block-embed.is-loading p{margin:0 !important}.ose-opensea{height:100% !important;width:100% !important;min-width:900px}.alignleft .ose-opensea,.alignright .ose-opensea,.aligncenter .ose-opensea{min-width:900px;max-width:900px !important}.aligncenter .ose-opensea{margin:0 auto;display:block !important}.wp-block[data-align=right]{float:right}.wp-block[data-align=left]{float:left}.ep_nft_content_wrap.ep_nft__wrapper{display:grid}.ep_nft_content_wrap.ep_nft__wrapper,.ep_nft_content_wrap.ep_nft_list{grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));grid-column-gap:15px;grid-row-gap:15px}.ep_nft_content_wrap .ep_nft_item{padding-top:15px;padding-right:15px;padding-left:15px;padding-bottom:15px;background-color:#ffffff;border-radius:10px;-webkit-transition:background 0.5s, border 0.5s, border-radius 0.5s, -webkit-box-shadow 0.5s;transition:background 0.5s, border 0.5s, border-radius 0.5s, -webkit-box-shadow 0.5s;-o-transition:background 0.5s, border 0.5s, border-radius 0.5s, box-shadow 0.5s;transition:background 0.5s, border 0.5s, border-radius 0.5s, box-shadow 0.5s;transition:background 0.5s, border 0.5s, border-radius 0.5s, box-shadow 0.5s, -webkit-box-shadow 0.5s;-webkit-box-shadow:0 4px 15px rgba(0,0,0,0.09);box-shadow:0 4px 15px rgba(0,0,0,0.09);overflow:hidden;padding:15px;position:relative;-webkit-transition:.3s ease-in-out;-o-transition:.3s ease-in-out;transition:.3s ease-in-out}.ep_nft_content_wrap.ep_nft__wrapper.nft_items.ep-grid .ep_nft_item{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.ep_nft_content_wrap.ep_nft_list .ep_nft_item{-ms-flex-pack:start;justify-content:flex-start;-ms-flex-align:start;align-items:flex-start}.ep_nft_content_wrap.ep_nft__wrapper.preset-3 .ep_nft_item .ep_nft_content{background-color:#edecf6e6}.ep_nft_content_wrap .ep_nft_thumbnail{margin-top:0px;margin-right:0px;margin-left:0px;margin-bottom:15px;border-radius:5px}.ep_nft_content_wrap .ep_nft_thumbnail img{height:340px;border-radius:10px;width:100%;-o-object-fit:cover;object-fit:cover}.ep_nft_content .ep_nft_title{color:#333333;font-size:16px;margin-top:0px;margin-right:0px;margin-left:0px;margin-bottom:15px;font-weight:600}.ep_nft_content{text-align:left}.ep_nft_content .ep_nft_price{color:#333333;font-size:14px;margin-top:0px;margin-right:0px;margin-left:0px;margin-bottom:0px;display:-ms-flexbox;display:flex;font-weight:600}.ep_nft_content .ep_nft_price:first-child{margin-bottom:10px}span.eb_nft_currency{max-width:28px;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}span.eb_nft_currency svg{width:100%;height:auto}.ep_nft_content .ep_nft_price_wrapper{min-height:20px}.ep_nft_content .ep_nft_creator{color:#333333;font-size:14px;margin-top:0px;margin-right:0px;margin-left:0px;margin-bottom:20px;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;gap:5px}.ep_nft_content .ep_nft_creator a{color:#3080E2;font-size:14px;text-decoration:none;word-break:break-all}.ep_nft_content .ep_nft_creator img{height:30px;width:30px;border-radius:50%}.ep_nft_content .ep_nft_button button{margin-top:0px;margin-right:0px;margin-left:0px;margin-bottom:0px}.ep_nft_content .ep_nft_button button a{background-color:#3080E2;color:#ffffff;font-size:14px;padding-top:15px;padding-right:20px;padding-left:20px;padding-bottom:15px;-webkit-transition:border 0.5s, border-radius 0.5s, -webkit-box-shadow 0.5s;transition:border 0.5s, border-radius 0.5s, -webkit-box-shadow 0.5s;-o-transition:border 0.5s, border-radius 0.5s, box-shadow 0.5s;transition:border 0.5s, border-radius 0.5s, box-shadow 0.5s;transition:border 0.5s, border-radius 0.5s, box-shadow 0.5s, -webkit-box-shadow 0.5s}.ep_nft_content .ep_nft_button button:hover a{background-color:#2e8eee;color:#ffffff}.ep-nft-gallery-wrapper .ep_nft_content_wrap.ep_nft__wrapper.ep-preset-1 .ep_nft_item:hover .ep_nft_button{opacity:1;-webkit-transform:translate(0);-ms-transform:translate(0);transform:translate(0);visibility:visible}.ep-nft-gallery-wrapper.ep-nft-gallery-r1a5mbx .ep_nft_button:hover a{background-color:#2e8eee;color:#ffffff}.ep-nft-gallery-wrapper .ep_nft_content_wrap.ep_nft__wrapper.ep-preset-1 .ep_nft_item:hover .ep_nft_button{opacity:1;-webkit-transform:translate(0);-ms-transform:translate(0);transform:translate(0);visibility:visible}.ep-nft-gallery-wrapper .ep_nft_content_wrap.ep_nft__wrapper.ep-preset-1 .ep_nft_item .ep_nft_button{bottom:0;left:0;opacity:0;position:absolute;-webkit-transform:translateY(30px);-ms-transform:translateY(30px);transform:translateY(30px);visibility:hidden;width:100%;-webkit-transition:0.3s;-o-transition:0.3s;transition:0.3s}.ep-nft-gallery-wrapper.ep-nft-gallery-r1a5mbx .ep_nft_button{margin-top:auto}.ep-nft-gallery-wrapper.ep-nft-gallery-r1a5mbx .ep_nft_button a{background-color:#3080E2;color:#ffffff;font-size:14px;padding:10px 20px;-webkit-transition:border 0.5s, border-radius 0.5s, -webkit-box-shadow 0.5s;transition:border 0.5s, border-radius 0.5s, -webkit-box-shadow 0.5s;-o-transition:border 0.5s, border-radius 0.5s, box-shadow 0.5s;transition:border 0.5s, border-radius 0.5s, box-shadow 0.5s;transition:border 0.5s, border-radius 0.5s, box-shadow 0.5s, -webkit-box-shadow 0.5s;display:block;text-align:center;font-weight:500;text-decoration:none}.ep_nft_content_wrap.ep_nft__wrapper.nft_items.ep-list .ep_nft_item{display:-ms-flexbox;display:flex;gap:15px;-ms-flex-align:center;align-items:center;border-radius:10px}.ep_nft_content_wrap.ep_nft__wrapper.nft_items.ep-list .ep_nft_item .ep_nft_thumbnail{width:55%}.ep_nft_content_wrap.ep_nft__wrapper.nft_items.ep-list .ep_nft_item .ep_nft_content{width:calc( 45% - 15px)}.ep_nft_content_wrap.ep_nft__wrapper.nft_items.ep-list .ep_nft_item .ep_nft_content .ep_nft_price.ep_nft_last_sale{margin-bottom:15px}.ep_nft_content_wrap.ep_nft__wrapper.nft_items .ep_nft_item .ep_nft_thumbnail svg{border-radius:10px}.ep_nft_content_wrap.ep_nft__wrapper.nft_items.ep-list .ep_nft_item .ep_nft_thumbnail img{height:260px}.ep_nft_content_wrap.ep_nft__wrapper.nft_items.ep-list .ep_nft_item .ep_nft_button a{border-radius:10px}.ep_nft_content_wrap.ep_nft__wrapper.nft_items .ep_nft_item .ep_nft_button a{border-radius:10px}.ep-nft-gallery-wrapper .ep_nft_content_wrap.ep_nft__wrapper.ep-preset-1 .ep_nft_item .ep_nft_button a{border-radius:0}.ep_nft_content_wrap.ep_nft__wrapper.nft_items.ep-grid.ep-preset-2 .ep_nft_content .ep_nft_price:last-child{margin-bottom:15px}.ose-opensea{min-width:100% !important;max-width:100% !important}@media all and (max-width: 1024px){.ep_nft_content_wrap.ep_nft__wrapper,.ep_nft_content_wrap.ep_nft_list{grid-template-columns:repeat(3, 1fr) !important}}@media all and (max-width: 991px){.ose-opensea{min-width:auto !important;max-width:100% !important}.ep_nft_content_wrap.ep_nft__wrapper,.ep_nft_content_wrap.ep_nft_list{grid-template-columns:repeat(2, 1fr) !important}}@media all and (max-width: 767px){.ep_nft_content_wrap.ep_nft__wrapper,.ep_nft_content_wrap.ep_nft_list{grid-template-columns:repeat(1, 1fr) !important}}
3
+ .pdfobject-container{height:600px;width:600px;margin:0 auto}.embedpress-el-powered{text-align:center;margin-top:10px !important;font-size:16px !important;font-weight:700}.embedpress-embed-document iframe,[data-type="embedpress/document"] iframe{margin:0 auto;display:block}.embedpress-embed-document{max-width:100%}.embedpress-document-editmode .components-form-file-upload{display:none !important}.wp-block-embedpress-embedpress-pdf+*{clear:both}.pro-control{position:relative}span.isPro{position:absolute;z-index:1;background:#5B4E96;border-radius:20px;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:40px;height:18px;font-size:10px;right:5px;color:#fff;font-weight:400;text-transform:uppercase;bottom:5px}.pro-control:after{content:'';width:100%;height:100%;background:transparent;position:absolute;z-index:12;top:0;bottom:0}.theme-astra span.isPro{right:10px;bottom:5px}.pro-control:hover::after{cursor:pointer}.pro__alert__wrap{position:fixed;top:0;left:0;height:100%;width:100%;background:rgba(0,0,0,0.3);z-index:1;display:none}.pro__alert__wrap .pro__alert__card{width:calc(100% - 30px);max-width:500px;margin:7% auto 0;background:#fff;border-radius:20px;padding:30px;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:center;align-items:center;text-align:center}.pro__alert__wrap .pro__alert__card h2{font-size:32px;font-weight:450;color:#131F4D;margin-bottom:15px}.pro__alert__wrap .pro__alert__card p{font-size:14px;font-weight:400;color:#7C8DB5;margin-top:10px}.pro__alert__wrap .pro__alert__card .button{-ms-flex-item-align:end;align-self:flex-end;margin-top:20px;padding:6px 30px;border-radius:10px}.pro__alert__wrap .pro__alert__card p a{text-decoration:underline;font-weight:700;color:#131F4D}.template__wrapper .button:hover{background:#5B4E96 !important;color:#fff !important;border-color:#5B4E96 !important}.pro__alert__wrap .pro__alert__card img{height:100px;margin-bottom:20px}.pro-control .components-toggle-control__label{color:#bbacac}.pro-control .components-form-toggle .components-form-toggle__track{border:1px solid #b89d9d}.pro-control .components-form-toggle .components-form-toggle__thumb{background-color:#b89d9d;border:5px solid #b89d9d}.block-editor-block-inspector .components-base-control{margin-top:15px}.pro-control-active{margin-bottom:24px}.ep-alignleft{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start;text-align:center}.ep-alignright{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:end;align-items:flex-end;text-align:center}.ep-aligncenter{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:center;align-items:center;text-align:center}.embedpress-document-embed.embedpress-pdf{width:100%}.embedpress-inner-iframe{display:inline-block;text-align:center}.ep__components-placeholder,.wp-block-embedpress-embedpress,.block-editor-block-list__block{clear:both !important}
4
  .embedpress-calendar-gutenberg{margin:30px auto}.embedpress-calendar-gutenberg iframe{max-width:100%}.embedpress-calendar-gutenberg.alignright{max-width:100%}body.page .flexia-wrapper>.content-area{padding:0 !important}.flexia-wrapper.flexia-container>.content-area{margin:0 !important}.flexia-wrapper.flexia-container>.content-area .embedpress-calendar-gutenberg{margin:0 auto}@media only screen and (min-width: 482px){.entry-content>.embedpress-calendar-gutenberg.alignright,.entry-content>.embedpress-calendar-gutenberg.alignleft,.embedpress-calendar-gutenberg.alignright,.embedpress-calendar-gutenberg.alignleft{max-width:100%}}.clear::after{content:'';display:block;clear:both;min-height:1px}
Gutenberg/plugin.php CHANGED
@@ -273,9 +273,9 @@ function embedpress_pdf_render_block($attributes)
273
  </div>
274
  <?php ep_pdf_block_frontend_style($attributes, 'pdf');
275
 
276
- return ob_get_clean();
277
- }
278
  }
 
279
 
280
  function embedpress_calendar_render_block($attributes)
281
  {
@@ -317,7 +317,7 @@ function embedpress_pdf_render_block($attributes)
317
 
318
  <?php
319
  if ($powered_by) {
320
- printf('<p class="embedpress-el-powered" style="'.esc_attr( $width ).'" >%s</p>', __('Powered By EmbedPress', 'embedpress'));
321
  } ?>
322
 
323
  </div>
273
  </div>
274
  <?php ep_pdf_block_frontend_style($attributes, 'pdf');
275
 
276
+ return ob_get_clean();
 
277
  }
278
+ }
279
 
280
  function embedpress_calendar_render_block($attributes)
281
  {
317
 
318
  <?php
319
  if ($powered_by) {
320
+ printf('<p class="embedpress-el-powered" style="width:'.esc_attr( $width ).'" >%s</p>', __('Powered By EmbedPress', 'embedpress'));
321
  } ?>
322
 
323
  </div>
assets/css/el-icon.css CHANGED
@@ -95,6 +95,7 @@
95
  right: 0;
96
  z-index: 99;
97
  background: transparent!important;
 
98
  }
99
 
100
 
95
  right: 0;
96
  z-index: 99;
97
  background: transparent!important;
98
+ pointer-events: none;
99
  }
100
 
101
 
assets/css/embedpress-elementor.css CHANGED
@@ -37,7 +37,7 @@
37
  background-color: #000;
38
  }
39
  .embedpress-elements-wrapper, .embedpress-elements-wrapper .embedpress-wrapper{
40
- display: inline-block;
41
  max-width: 100%;
42
  }
43
 
37
  background-color: #000;
38
  }
39
  .embedpress-elements-wrapper, .embedpress-elements-wrapper .embedpress-wrapper{
40
+ /* display: inline-block; */
41
  max-width: 100%;
42
  }
43
 
assets/css/embedpress.css CHANGED
@@ -104,7 +104,7 @@
104
  padding-bottom: 31.25%;
105
  }
106
 
107
- .ose-issuu > div > div > div:last-child {
108
  width: 100% !important;
109
  z-index: 0;
110
  position: absolute;
@@ -125,6 +125,7 @@
125
  padding-bottom: 0;
126
  width: 100%;
127
  }
 
128
  .elementor-widget-container iframe {
129
  max-height: 100% !important;
130
  }
@@ -133,26 +134,29 @@
133
  .elementor-widget-container iframe {
134
  max-height: 100% !important;
135
  }
 
136
  .elementor-widget-container .embedpress-facebook-vid-iframe,
137
  .embedpress-gutenberg-wrapper .embedpress-facebook-vid-iframe,
138
- .embedpress-facebook-vid-iframe{
139
  max-height: inherit !important;
140
  }
141
 
142
  }
143
 
144
  @media only screen and (max-width: 500px) {
 
145
  .elementor-widget-container .embedpress-facebook-vid-iframe,
146
  .embedpress-gutenberg-wrapper .embedpress-facebook-vid-iframe,
147
- .embedpress-facebook-vid-iframe{
148
  max-height: 390px !important;
149
  }
150
  }
151
 
152
  /*Meetup Event styling starts */
153
  .embedpress-event .link {
154
- color: #0098ab ;
155
  }
 
156
  .embedpress-event .visibility--a11yHide {
157
  border: 0;
158
  clip: rect(0 0 0 0);
@@ -163,17 +167,21 @@
163
  width: 1px;
164
  height: 1px;
165
  }
 
166
  .embedpress-event .text--small {
167
  font-size: 14px;
168
  margin: 0;
169
  }
 
170
  .embedpress-event .flex {
171
  display: flex;
172
  box-sizing: border-box;
173
  }
 
174
  .embedpress-event .flex--wrap {
175
  flex-wrap: wrap;
176
  }
 
177
  .embedpress-event .flex--row {
178
  align-items: center;
179
  box-sizing: border-box;
@@ -182,6 +190,7 @@
182
  flex-direction: row;
183
  flex-wrap: nowrap;
184
  }
 
185
  .embedpress-event .flex-item {
186
  flex-basis: 0;
187
  flex-grow: 1;
@@ -190,6 +199,7 @@
190
  /*padding-left: 16px;*/
191
  box-sizing: border-box;
192
  }
 
193
  .embedpress-event .flex-item--shrink {
194
  flex-basis: auto;
195
  -webkit-box-flex: 0;
@@ -197,9 +207,11 @@
197
  flex-shrink: 0;
198
  width: auto;
199
  }
200
- .embedpress-event .flex--row > .flex-item:first-child {
 
201
  padding-left: 0;
202
  }
 
203
  .embedpress-event .text--bold {
204
  font-weight: 700;
205
  }
@@ -209,7 +221,7 @@
209
  .embedpress-event h3,
210
  .embedpress-event h4,
211
  .embedpress-event h5,
212
- .embedpress-event h6{
213
  font-size: inherit;
214
  }
215
 
@@ -219,14 +231,14 @@
219
  }
220
 
221
  .embedpress-event .ep-event--date {
222
- color: #757575 ;
223
  font-weight: 400;
224
  font-size: 16px;
225
  }
226
 
227
  /*Host*/
228
  .embedpress-event .ep-event--host {
229
- margin-top: 20px ;
230
  display: flex;
231
  align-items: center;
232
  margin-bottom: 20px;
@@ -253,9 +265,11 @@
253
  font-size: 16px;
254
  font-weight: 400;
255
  }
 
256
  .embedpress-event .event-description {
257
  margin-top: 20px;
258
  }
 
259
  .text--sectionTitle {
260
  font-size: 20px;
261
  line-height: 28px;
@@ -264,52 +278,63 @@
264
  .ep-event--attendees {
265
  margin-top: 50px;
266
  }
267
- .ep-event--attendees > .flex {
 
268
  margin-bottom: 20px;
269
  }
 
270
  .ep-event--attendees .gridList {
271
  list-style: none;
272
  margin: 0 -16px 0 0;
273
  padding: 0;
274
  }
 
275
  .ep-event--attendees .gridList-item {
276
  width: auto;
277
  }
 
278
  .ep-event--attendees .gridList--autoHeight--has4>.gridList-item {
279
  flex: 0 0 50%;
280
  max-width: 50%;
281
  }
 
282
  .ep-event--attendees .groupMember-name {
283
  line-height: 1.2 !important;
284
  }
 
285
  .ep-event--attendees .avatar--person {
286
  margin-bottom: 15px;
287
  display: inline-block;
288
  border-radius: 50%;
289
  }
 
290
  .ep-event--attendees img.avatar-print {
291
  border-radius: 50%;
292
  }
 
293
  .ep-event--attendees .groupMember-role {
294
  font-size: 12px;
295
  color: #757575;
296
  padding-top: 2px;
297
  margin: 0;
298
  }
 
299
  .ep-event--attendees .groupMember {
300
  min-height: 100%;
301
  min-width: 128px;
302
  padding-left: 8px;
303
  padding-right: 8px;
304
  }
305
- .embedpress-event .align--center{
 
306
  text-align: center;
307
  }
 
308
  .embedpress-event .card {
309
  background: #fff;
310
  background-clip: padding-box;
311
  background-size: cover;
312
- border: 1px solid rgba(46,62,72,.12);
313
  border-radius: 8px;
314
  -webkit-box-sizing: border-box;
315
  box-sizing: border-box;
@@ -319,9 +344,11 @@
319
  position: relative;
320
  white-space: normal;
321
  }
 
322
  .embedpress-event .card--hasHoverShadow {
323
- transition: box-shadow .25s cubic-bezier(.4,0,.2,1),transform .25s cubic-bezier(.4,0,.2,1);
324
  }
 
325
  .embedpress-event .ep-event-group-link {
326
  display: flex;
327
  flex-wrap: wrap;
@@ -330,8 +357,9 @@
330
  border-radius: 8px;
331
  padding: 20px;
332
  margin-bottom: 20px;
333
- border: 1px solid rgba(46,62,72,.12);
334
  }
 
335
  .embedpress-event .ep-event-group--name {
336
  padding-left: 20px;
337
  font-size: 14px;
@@ -340,6 +368,7 @@
340
  width: 70%;
341
  word-break: break-word;
342
  }
 
343
  .embedpress-event .ep-event-group--image {
344
  -o-object-fit: cover;
345
  object-fit: cover;
@@ -347,16 +376,19 @@
347
  height: 56px;
348
  border-radius: 4px;
349
  }
 
350
  .embedpress-event .ep-event-time-location {
351
  background: #ffffff;
352
  border-radius: 8px;
353
  padding: 16px 20px 0 20px;
354
- border: 1px solid rgba(46,62,72,.12);
355
  }
 
356
  .embedpress-event .ep-event-time-location .ep-event-datetime,
357
  .embedpress-event .ep-event-time-location .ep-event-location {
358
  padding-bottom: 20px;
359
  }
 
360
  .embedpress-event .ep-event-location .wrap--singleLine--truncate,
361
  .embedpress-event .ep-event-time-location .ep-event-datetime {
362
  font-size: 15px;
@@ -365,18 +397,22 @@
365
  font-style: normal;
366
  margin: 0;
367
  }
 
368
  .embedpress-event .ep-event-location address {
369
  font-style: normal;
370
  margin: 0;
371
  }
 
372
  .embedpress-event .ep-event-location .venueDisplay-venue-address {
373
  font-style: normal;
374
  color: #757575;
375
  margin: 0;
376
  }
 
377
  .embedpress-event .ep-event-location p {
378
  line-height: 20px;
379
  }
 
380
  .ep-event--attendees .gridList-item {
381
  -webkit-box-sizing: border-box;
382
  box-sizing: border-box;
@@ -386,6 +422,7 @@
386
  vertical-align: top;
387
  width: 50%;
388
  }
 
389
  .gridList-itemInner {
390
  -webkit-box-sizing: border-box;
391
  box-sizing: border-box;
@@ -403,9 +440,11 @@
403
  max-width: 600px;
404
  width: 100%;
405
  }
 
406
  .embedpress-yt-subscribe .embedpress-yt-subscribe.dark {
407
  color: #ffffff;
408
  }
 
409
  .embedpress-yt-subscribe .embedpress-yt-sub-text {
410
  display: inline-block;
411
  margin: 0;
@@ -417,22 +456,28 @@
417
  height: 100%;
418
  margin-right: 10px;
419
  }
420
- .dewqijm img[src^="image"]{
 
421
  display: none;
422
  }
423
- .dewqijm img[src^="http"]{
 
424
  height: 56px !important;
425
  width: 56px !important;
426
  }
427
- .dewqijm > div > div {
 
428
  display: none;
429
  }
430
- .embedpress-event .sticky button{
 
431
  display: none;
432
  }
 
433
  .embedpress-event .items-center {
434
  align-items: center;
435
  }
 
436
  /*Media query*/
437
  @media only screen and (min-width: 530px) {
438
  .ep-event--attendees .gridList--autoHeight--has4>.gridList-item {
@@ -440,13 +485,306 @@
440
  max-width: 33.333333%;
441
  }
442
  }
443
- @media only screen and (min-width: 640px){
 
444
  .embedpress-event .card {
445
  padding: 18px 18px 20px;
446
  }
 
447
  .ep-event--attendees .gridList--autoHeight--has4>.gridList-item {
448
  flex: 0 0 25%;
449
  max-width: 25%;
450
  }
451
  }
452
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
104
  padding-bottom: 31.25%;
105
  }
106
 
107
+ .ose-issuu>div>div>div:last-child {
108
  width: 100% !important;
109
  z-index: 0;
110
  position: absolute;
125
  padding-bottom: 0;
126
  width: 100%;
127
  }
128
+
129
  .elementor-widget-container iframe {
130
  max-height: 100% !important;
131
  }
134
  .elementor-widget-container iframe {
135
  max-height: 100% !important;
136
  }
137
+
138
  .elementor-widget-container .embedpress-facebook-vid-iframe,
139
  .embedpress-gutenberg-wrapper .embedpress-facebook-vid-iframe,
140
+ .embedpress-facebook-vid-iframe {
141
  max-height: inherit !important;
142
  }
143
 
144
  }
145
 
146
  @media only screen and (max-width: 500px) {
147
+
148
  .elementor-widget-container .embedpress-facebook-vid-iframe,
149
  .embedpress-gutenberg-wrapper .embedpress-facebook-vid-iframe,
150
+ .embedpress-facebook-vid-iframe {
151
  max-height: 390px !important;
152
  }
153
  }
154
 
155
  /*Meetup Event styling starts */
156
  .embedpress-event .link {
157
+ color: #0098ab;
158
  }
159
+
160
  .embedpress-event .visibility--a11yHide {
161
  border: 0;
162
  clip: rect(0 0 0 0);
167
  width: 1px;
168
  height: 1px;
169
  }
170
+
171
  .embedpress-event .text--small {
172
  font-size: 14px;
173
  margin: 0;
174
  }
175
+
176
  .embedpress-event .flex {
177
  display: flex;
178
  box-sizing: border-box;
179
  }
180
+
181
  .embedpress-event .flex--wrap {
182
  flex-wrap: wrap;
183
  }
184
+
185
  .embedpress-event .flex--row {
186
  align-items: center;
187
  box-sizing: border-box;
190
  flex-direction: row;
191
  flex-wrap: nowrap;
192
  }
193
+
194
  .embedpress-event .flex-item {
195
  flex-basis: 0;
196
  flex-grow: 1;
199
  /*padding-left: 16px;*/
200
  box-sizing: border-box;
201
  }
202
+
203
  .embedpress-event .flex-item--shrink {
204
  flex-basis: auto;
205
  -webkit-box-flex: 0;
207
  flex-shrink: 0;
208
  width: auto;
209
  }
210
+
211
+ .embedpress-event .flex--row>.flex-item:first-child {
212
  padding-left: 0;
213
  }
214
+
215
  .embedpress-event .text--bold {
216
  font-weight: 700;
217
  }
221
  .embedpress-event h3,
222
  .embedpress-event h4,
223
  .embedpress-event h5,
224
+ .embedpress-event h6 {
225
  font-size: inherit;
226
  }
227
 
231
  }
232
 
233
  .embedpress-event .ep-event--date {
234
+ color: #757575;
235
  font-weight: 400;
236
  font-size: 16px;
237
  }
238
 
239
  /*Host*/
240
  .embedpress-event .ep-event--host {
241
+ margin-top: 20px;
242
  display: flex;
243
  align-items: center;
244
  margin-bottom: 20px;
265
  font-size: 16px;
266
  font-weight: 400;
267
  }
268
+
269
  .embedpress-event .event-description {
270
  margin-top: 20px;
271
  }
272
+
273
  .text--sectionTitle {
274
  font-size: 20px;
275
  line-height: 28px;
278
  .ep-event--attendees {
279
  margin-top: 50px;
280
  }
281
+
282
+ .ep-event--attendees>.flex {
283
  margin-bottom: 20px;
284
  }
285
+
286
  .ep-event--attendees .gridList {
287
  list-style: none;
288
  margin: 0 -16px 0 0;
289
  padding: 0;
290
  }
291
+
292
  .ep-event--attendees .gridList-item {
293
  width: auto;
294
  }
295
+
296
  .ep-event--attendees .gridList--autoHeight--has4>.gridList-item {
297
  flex: 0 0 50%;
298
  max-width: 50%;
299
  }
300
+
301
  .ep-event--attendees .groupMember-name {
302
  line-height: 1.2 !important;
303
  }
304
+
305
  .ep-event--attendees .avatar--person {
306
  margin-bottom: 15px;
307
  display: inline-block;
308
  border-radius: 50%;
309
  }
310
+
311
  .ep-event--attendees img.avatar-print {
312
  border-radius: 50%;
313
  }
314
+
315
  .ep-event--attendees .groupMember-role {
316
  font-size: 12px;
317
  color: #757575;
318
  padding-top: 2px;
319
  margin: 0;
320
  }
321
+
322
  .ep-event--attendees .groupMember {
323
  min-height: 100%;
324
  min-width: 128px;
325
  padding-left: 8px;
326
  padding-right: 8px;
327
  }
328
+
329
+ .embedpress-event .align--center {
330
  text-align: center;
331
  }
332
+
333
  .embedpress-event .card {
334
  background: #fff;
335
  background-clip: padding-box;
336
  background-size: cover;
337
+ border: 1px solid rgba(46, 62, 72, .12);
338
  border-radius: 8px;
339
  -webkit-box-sizing: border-box;
340
  box-sizing: border-box;
344
  position: relative;
345
  white-space: normal;
346
  }
347
+
348
  .embedpress-event .card--hasHoverShadow {
349
+ transition: box-shadow .25s cubic-bezier(.4, 0, .2, 1), transform .25s cubic-bezier(.4, 0, .2, 1);
350
  }
351
+
352
  .embedpress-event .ep-event-group-link {
353
  display: flex;
354
  flex-wrap: wrap;
357
  border-radius: 8px;
358
  padding: 20px;
359
  margin-bottom: 20px;
360
+ border: 1px solid rgba(46, 62, 72, .12);
361
  }
362
+
363
  .embedpress-event .ep-event-group--name {
364
  padding-left: 20px;
365
  font-size: 14px;
368
  width: 70%;
369
  word-break: break-word;
370
  }
371
+
372
  .embedpress-event .ep-event-group--image {
373
  -o-object-fit: cover;
374
  object-fit: cover;
376
  height: 56px;
377
  border-radius: 4px;
378
  }
379
+
380
  .embedpress-event .ep-event-time-location {
381
  background: #ffffff;
382
  border-radius: 8px;
383
  padding: 16px 20px 0 20px;
384
+ border: 1px solid rgba(46, 62, 72, .12);
385
  }
386
+
387
  .embedpress-event .ep-event-time-location .ep-event-datetime,
388
  .embedpress-event .ep-event-time-location .ep-event-location {
389
  padding-bottom: 20px;
390
  }
391
+
392
  .embedpress-event .ep-event-location .wrap--singleLine--truncate,
393
  .embedpress-event .ep-event-time-location .ep-event-datetime {
394
  font-size: 15px;
397
  font-style: normal;
398
  margin: 0;
399
  }
400
+
401
  .embedpress-event .ep-event-location address {
402
  font-style: normal;
403
  margin: 0;
404
  }
405
+
406
  .embedpress-event .ep-event-location .venueDisplay-venue-address {
407
  font-style: normal;
408
  color: #757575;
409
  margin: 0;
410
  }
411
+
412
  .embedpress-event .ep-event-location p {
413
  line-height: 20px;
414
  }
415
+
416
  .ep-event--attendees .gridList-item {
417
  -webkit-box-sizing: border-box;
418
  box-sizing: border-box;
422
  vertical-align: top;
423
  width: 50%;
424
  }
425
+
426
  .gridList-itemInner {
427
  -webkit-box-sizing: border-box;
428
  box-sizing: border-box;
440
  max-width: 600px;
441
  width: 100%;
442
  }
443
+
444
  .embedpress-yt-subscribe .embedpress-yt-subscribe.dark {
445
  color: #ffffff;
446
  }
447
+
448
  .embedpress-yt-subscribe .embedpress-yt-sub-text {
449
  display: inline-block;
450
  margin: 0;
456
  height: 100%;
457
  margin-right: 10px;
458
  }
459
+
460
+ .dewqijm img[src^="image"] {
461
  display: none;
462
  }
463
+
464
+ .dewqijm img[src^="http"] {
465
  height: 56px !important;
466
  width: 56px !important;
467
  }
468
+
469
+ .dewqijm>div>div {
470
  display: none;
471
  }
472
+
473
+ .embedpress-event .sticky button {
474
  display: none;
475
  }
476
+
477
  .embedpress-event .items-center {
478
  align-items: center;
479
  }
480
+
481
  /*Media query*/
482
  @media only screen and (min-width: 530px) {
483
  .ep-event--attendees .gridList--autoHeight--has4>.gridList-item {
485
  max-width: 33.333333%;
486
  }
487
  }
488
+
489
+ @media only screen and (min-width: 640px) {
490
  .embedpress-event .card {
491
  padding: 18px 18px 20px;
492
  }
493
+
494
  .ep-event--attendees .gridList--autoHeight--has4>.gridList-item {
495
  flex: 0 0 25%;
496
  max-width: 25%;
497
  }
498
  }
499
 
500
+
501
+
502
+
503
+ /**
504
+ * NFT card frontend style
505
+ */
506
+
507
+ .ose-opensea {
508
+ height: 100% !important;
509
+ width: 100% !important;
510
+ }
511
+
512
+ .ep_nft_content_wrap.ep_nft__wrapper {
513
+ display: grid;
514
+ }
515
+
516
+ .ep_nft_content_wrap.ep_nft__wrapper,
517
+ .ep_nft_content_wrap.ep_nft_list {
518
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
519
+ grid-column-gap: 15px;
520
+ grid-row-gap: 15px;
521
+ }
522
+
523
+ .ep_nft_content_wrap .ep_nft_item {
524
+ padding-top: 15px;
525
+ padding-right: 15px;
526
+ padding-left: 15px;
527
+ padding-bottom: 15px;
528
+ background-color: #ffffff;
529
+ border-radius: 10px;
530
+ transition: background 0.5s, border 0.5s, border-radius 0.5s, box-shadow 0.5s;
531
+ box-shadow: 0 4px 15px rgba(0, 0, 0, .09);
532
+ overflow: hidden;
533
+ padding: 15px;
534
+ position: relative;
535
+ transition: .3s ease-in-out;
536
+ }
537
+ .ep_nft_content_wrap.ep_nft__wrapper.nft_items.ep-grid .ep_nft_item {
538
+ display: flex;
539
+ flex-direction: column;
540
+ }
541
+
542
+ .ep_nft_content_wrap.ep_nft_list .ep_nft_item {
543
+ justify-content: flex-start;
544
+ align-items: flex-start;
545
+ }
546
+
547
+ .ep_nft_content_wrap.ep_nft__wrapper.preset-3 .ep_nft_item .ep_nft_content {
548
+ background-color: #edecf6e6;
549
+ }
550
+
551
+ .ep_nft_content_wrap .ep_nft_thumbnail {
552
+ margin-top: 0px;
553
+ margin-right: 0px;
554
+ margin-left: 0px;
555
+ margin-bottom: 15px;
556
+ border-radius: 5px;
557
+ }
558
+
559
+ .ep_nft_content_wrap .ep_nft_thumbnail img {
560
+ height: 340px;
561
+ border-radius: 5px;
562
+ width: 100%;
563
+ object-fit: cover;
564
+ }
565
+
566
+ .ep_nft_content .ep_nft_title {
567
+ color: #333333;
568
+ font-size: 16px;
569
+ margin-top: 0px;
570
+ margin-right: 0px;
571
+ margin-left: 0px;
572
+ margin-bottom: 15px;
573
+ font-weight: 600;
574
+ word-break: break-all;
575
+ }
576
+
577
+ .ep_nft_content {
578
+ text-align: left;
579
+ }
580
+
581
+ .ep_nft_content .ep_nft_price {
582
+ color: #333333;
583
+ font-size: 14px;
584
+ margin-top: 0px;
585
+ margin-right: 0px;
586
+ margin-left: 0px;
587
+ margin-bottom: 0px;
588
+ display: flex;
589
+ font-weight: 600;
590
+ }
591
+
592
+ .ep_nft_content .ep_nft_price:first-child {
593
+ margin-bottom: 10px;
594
+ }
595
+
596
+ span.eb_nft_currency {
597
+ max-width: 28px;
598
+ display: flex;
599
+ align-items: center;
600
+ justify-content: center;
601
+ }
602
+
603
+ span.eb_nft_currency svg {
604
+ width: 100%;
605
+ height: auto;
606
+ }
607
+
608
+ .ep_nft_content .ep_nft_price_wrapper {
609
+ min-height: 20px;
610
+ }
611
+
612
+
613
+ .ep_nft_content .ep_nft_creator {
614
+ color: #333333;
615
+ font-size: 14px;
616
+ margin-top: 0px;
617
+ margin-right: 0px;
618
+ margin-left: 0px;
619
+ margin-bottom: 20px;
620
+ display: flex;
621
+ align-items: center;
622
+ gap: 5px;
623
+ }
624
+
625
+ .ep_nft_content .ep_nft_creator a {
626
+ color: #3080E2;
627
+ font-size: 14px;
628
+ text-decoration: none;
629
+ word-break: break-all;
630
+ text-decoration: none!important;
631
+ }
632
+
633
+ .ep_nft_content .ep_nft_creator img {
634
+ height: 30px;
635
+ width: 30px;
636
+ border-radius: 50%;
637
+ }
638
+
639
+ .ep_nft_content .ep_nft_button button {
640
+ margin-top: 0px;
641
+ margin-right: 0px;
642
+ margin-left: 0px;
643
+ margin-bottom: 0px;
644
+ }
645
+
646
+ .ep_nft_content .ep_nft_button button a {
647
+ background-color: #3080E2;
648
+ color: #ffffff;
649
+ font-size: 14px;
650
+ padding-top: 15px;
651
+ padding-right: 20px;
652
+ padding-left: 20px;
653
+ padding-bottom: 15px;
654
+ transition: border 0.5s, border-radius 0.5s, box-shadow 0.5s;
655
+ }
656
+
657
+ .ep_nft_content .ep_nft_button button:hover a {
658
+ background-color: rgb(46, 142, 238);
659
+ color: #ffffff;
660
+ }
661
+
662
+ .ep-nft-gallery-wrapper .ep_nft_content_wrap.ep_nft__wrapper.ep-preset-1 .ep_nft_item:hover .ep_nft_button {
663
+ opacity: 1;
664
+ transform: translate(0);
665
+ visibility: visible;
666
+ }
667
+
668
+
669
+ .ep-nft-gallery-wrapper.ep-nft-gallery-r1a5mbx .ep_nft_button:hover a {
670
+ background-color: rgb(46, 142, 238);
671
+ color: #ffffff;
672
+ }
673
+
674
+ .ep-nft-gallery-wrapper .ep_nft_content_wrap.ep_nft__wrapper.ep-preset-1 .ep_nft_item:hover .ep_nft_button {
675
+ opacity: 1;
676
+ transform: translate(0);
677
+ visibility: visible;
678
+ }
679
+
680
+ .ep-nft-gallery-wrapper .ep_nft_content_wrap.ep_nft__wrapper.ep-preset-1 .ep_nft_item .ep_nft_button {
681
+ bottom: 0;
682
+ left: 0;
683
+ opacity: 0;
684
+ position: absolute;
685
+ transform: translateY(30px);
686
+ visibility: hidden;
687
+ width: 100%;
688
+ transition: 0.3s;
689
+ }
690
+ .ep-nft-gallery-wrapper.ep-nft-gallery-r1a5mbx .ep_nft_button{
691
+ margin-top: auto;
692
+ }
693
+ .ep-nft-gallery-wrapper.ep-nft-gallery-r1a5mbx .ep_nft_button a {
694
+ background-color: #3080E2;
695
+ color: #ffffff;
696
+ font-size: 14px;
697
+ padding: 10px 20px;
698
+ transition: border 0.5s, border-radius 0.5s, box-shadow 0.5s;
699
+ display: block;
700
+ text-align: center;
701
+ font-weight: 500;
702
+ text-decoration: none!important;
703
+ }
704
+
705
+ /* mimmikcssStart */
706
+
707
+
708
+ /* NFT List item CSS */
709
+
710
+ .ep_nft_content_wrap.ep_nft__wrapper.nft_items.ep-list .ep_nft_item {
711
+ display: flex;
712
+ gap: 15px;
713
+ align-items: center;
714
+ border-radius: 10px;
715
+ }
716
+ .ep_nft_content_wrap.ep_nft__wrapper.nft_items.ep-list .ep_nft_item .ep_nft_thumbnail {
717
+ width: 55%;
718
+ }
719
+ .ep_nft_content_wrap.ep_nft__wrapper.nft_items.ep-list .ep_nft_item .ep_nft_content {
720
+ width: calc( 45% - 15px );
721
+ }
722
+
723
+ .ep_nft_content_wrap.ep_nft__wrapper.nft_items.ep-list .ep_nft_item .ep_nft_content .ep_nft_price.ep_nft_last_sale {
724
+ margin-bottom: 15px;
725
+ }
726
+
727
+ .ep_nft_content_wrap.ep_nft__wrapper.nft_items .ep_nft_item .ep_nft_thumbnail svg {
728
+ border-radius: 10px;
729
+ }
730
+
731
+ .ep_nft_content_wrap.ep_nft__wrapper.nft_items.ep-list .ep_nft_item .ep_nft_thumbnail img {
732
+ height: 260px;
733
+ }
734
+ .ep_nft_content_wrap.ep_nft__wrapper.nft_items.ep-list .ep_nft_item .ep_nft_button a{
735
+ border-radius: 10px;
736
+ }
737
+
738
+ .ep_nft_content_wrap.ep_nft__wrapper.nft_items.ep-grid.ep-preset-2 .ep_nft_content .ep_nft_price:last-child{
739
+ margin-bottom: 15px;
740
+ }
741
+
742
+
743
+ /* mimmikcssEnd */
744
+
745
+ @media all and (max-width: 1024px) {
746
+
747
+ /* tabcssStart */
748
+ .ep_nft_content_wrap.ep_nft__wrapper,
749
+ .ep_nft_content_wrap.ep_nft_list {
750
+ grid-template-columns: repeat(3, 1fr) !important;
751
+ }
752
+
753
+ .alignleft .ose-opensea, .alignright .ose-opensea, .aligncenter .ose-opensea {
754
+ max-width: 100%!important;
755
+ }
756
+
757
+ /* tabcssEnd */
758
+
759
+ }
760
+
761
+ @media all and (max-width: 991px) {
762
+
763
+ /* tabcssStart */
764
+ .ose-opensea {
765
+ min-width: 100%!important;
766
+ max-width: 100%!important;
767
+ }
768
+
769
+
770
+
771
+ .ep_nft_content_wrap.ep_nft__wrapper,
772
+ .ep_nft_content_wrap.ep_nft_list {
773
+ grid-template-columns: repeat(2, 1fr) !important;
774
+ }
775
+
776
+ /* tabcssEnd */
777
+
778
+ }
779
+
780
+ @media all and (max-width: 767px) {
781
+
782
+ /* mobcssStart */
783
+ .ep_nft_content_wrap.ep_nft__wrapper,
784
+ .ep_nft_content_wrap.ep_nft_list {
785
+ grid-template-columns: repeat(1, 1fr) !important;
786
+ }
787
+
788
+ /* mobcssEnd */
789
+
790
+ }
embedpress.php CHANGED
@@ -5,7 +5,7 @@
5
  * Description: EmbedPress lets you embed videos, images, posts, audio, maps and upload PDF, DOC, PPT & all other types of content into your WordPress site with one-click and showcase it beautifully for the visitors. 150+ sources supported.
6
  * Author: WPDeveloper
7
  * Author URI: https://wpdeveloper.com
8
- * Version: 3.5.3
9
  * Text Domain: embedpress
10
  * Domain Path: /languages
11
  *
5
  * Description: EmbedPress lets you embed videos, images, posts, audio, maps and upload PDF, DOC, PPT & all other types of content into your WordPress site with one-click and showcase it beautifully for the visitors. 150+ sources supported.
6
  * Author: WPDeveloper
7
  * Author URI: https://wpdeveloper.com
8
+ * Version: 3.6.0
9
  * Text Domain: embedpress
10
  * Domain Path: /languages
11
  *
includes.php CHANGED
@@ -22,7 +22,7 @@ if ( ! defined('EMBEDPRESS_PLG_NAME')) {
22
  }
23
 
24
  if ( ! defined('EMBEDPRESS_VERSION')) {
25
- define('EMBEDPRESS_VERSION', "3.5.3");
26
  /**
27
  * @deprecated 2.2.0
28
  */
22
  }
23
 
24
  if ( ! defined('EMBEDPRESS_VERSION')) {
25
+ define('EMBEDPRESS_VERSION', "3.6.0");
26
  /**
27
  * @deprecated 2.2.0
28
  */
providers.php CHANGED
@@ -21,5 +21,6 @@ $additionalServiceProviders = [
21
  EMBEDPRESS_NAMESPACE . "\\Providers\\Giphy" => ["giphy.com", "i.giphy.com"],
22
  EMBEDPRESS_NAMESPACE . "\\Providers\\Boomplay" => ["boomplay.com"],
23
  EMBEDPRESS_NAMESPACE . "\\Providers\\Youtube" => ["youtube.com"],
 
24
 
25
  ];
21
  EMBEDPRESS_NAMESPACE . "\\Providers\\Giphy" => ["giphy.com", "i.giphy.com"],
22
  EMBEDPRESS_NAMESPACE . "\\Providers\\Boomplay" => ["boomplay.com"],
23
  EMBEDPRESS_NAMESPACE . "\\Providers\\Youtube" => ["youtube.com"],
24
+ EMBEDPRESS_NAMESPACE . "\\Providers\\OpenSea" => ["opensea.io"],
25
 
26
  ];
readme.txt CHANGED
@@ -6,7 +6,7 @@ Tags: embed, embed youtube, gutenberg embed, pdf, doc, docs, ppt, elementor embe
6
  Requires at least: 4.6
7
  Tested up to: 6.1
8
  Requires PHP: 5.6
9
- Stable tag: 3.5.3
10
  License: GPLv3 or later
11
  License URI: https://opensource.org/licenses/GPL-3.0
12
 
@@ -382,6 +382,10 @@ Not at all. You can set up everything your team needs without any coding knowled
382
  The format is based on [Keep a Changelog](http://keepachangelog.com/)
383
  and this project adheres to [Semantic Versioning](http://semver.org/).
384
 
 
 
 
 
385
  = [3.5.3] - 2022-10-27 =
386
  * Fixed: PDF layout breaking issues in Gutenberg.
387
  * Fixed: Height-width controller isn't working in Gutenberg.
6
  Requires at least: 4.6
7
  Tested up to: 6.1
8
  Requires PHP: 5.6
9
+ Stable tag: 3.6.0
10
  License: GPLv3 or later
11
  License URI: https://opensource.org/licenses/GPL-3.0
12
 
382
  The format is based on [Keep a Changelog](http://keepachangelog.com/)
383
  and this project adheres to [Semantic Versioning](http://semver.org/).
384
 
385
+ = [3.6.0] - 2022-11-09 =
386
+ * Added: OpenSea embed with advanced controls.
387
+ * Few minor bug fixes and improvements.
388
+
389
  = [3.5.3] - 2022-10-27 =
390
  * Fixed: PDF layout breaking issues in Gutenberg.
391
  * Fixed: Height-width controller isn't working in Gutenberg.