locomotivecms_steam 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (172) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +21 -0
  3. data/.travis.yml +4 -0
  4. data/CHANGELOG.md +19 -0
  5. data/Gemfile +8 -0
  6. data/Gemfile.lock +188 -0
  7. data/LICENSE +20 -0
  8. data/README.md +36 -0
  9. data/Rakefile +17 -0
  10. data/bin/publish +28 -0
  11. data/config/locales/de.yml +157 -0
  12. data/config/locales/en.yml +189 -0
  13. data/config/locales/es.yml +133 -0
  14. data/config/locales/et.yml +154 -0
  15. data/config/locales/fr.yml +148 -0
  16. data/config/locales/it.yml +155 -0
  17. data/config/locales/nb.yml +191 -0
  18. data/config/locales/nl.yml +160 -0
  19. data/config/locales/pl.yml +203 -0
  20. data/config/locales/pt-BR.yml +139 -0
  21. data/config/locales/ru.yml +224 -0
  22. data/lib/locomotive/steam/core_ext.rb +5 -0
  23. data/lib/locomotive/steam/core_ext/array.rb +3 -0
  24. data/lib/locomotive/steam/core_ext/boolean/false.rb +3 -0
  25. data/lib/locomotive/steam/core_ext/boolean/true.rb +3 -0
  26. data/lib/locomotive/steam/core_ext/hash.rb +27 -0
  27. data/lib/locomotive/steam/core_ext/string.rb +8 -0
  28. data/lib/locomotive/steam/exceptions.rb +62 -0
  29. data/lib/locomotive/steam/initializers.rb +5 -0
  30. data/lib/locomotive/steam/initializers/i18n.rb +3 -0
  31. data/lib/locomotive/steam/initializers/markdown.rb +27 -0
  32. data/lib/locomotive/steam/initializers/will_paginate.rb +16 -0
  33. data/lib/locomotive/steam/liquid.rb +22 -0
  34. data/lib/locomotive/steam/liquid/drops/base.rb +46 -0
  35. data/lib/locomotive/steam/liquid/drops/content_entry.rb +48 -0
  36. data/lib/locomotive/steam/liquid/drops/content_types.rb +117 -0
  37. data/lib/locomotive/steam/liquid/drops/page.rb +28 -0
  38. data/lib/locomotive/steam/liquid/drops/session_proxy.rb +18 -0
  39. data/lib/locomotive/steam/liquid/drops/site.rb +26 -0
  40. data/lib/locomotive/steam/liquid/errors.rb +17 -0
  41. data/lib/locomotive/steam/liquid/filters/date.rb +136 -0
  42. data/lib/locomotive/steam/liquid/filters/html.rb +188 -0
  43. data/lib/locomotive/steam/liquid/filters/misc.rb +49 -0
  44. data/lib/locomotive/steam/liquid/filters/resize.rb +18 -0
  45. data/lib/locomotive/steam/liquid/filters/text.rb +55 -0
  46. data/lib/locomotive/steam/liquid/filters/translate.rb +28 -0
  47. data/lib/locomotive/steam/liquid/patches.rb +47 -0
  48. data/lib/locomotive/steam/liquid/scopeable.rb +149 -0
  49. data/lib/locomotive/steam/liquid/tags/consume.rb +97 -0
  50. data/lib/locomotive/steam/liquid/tags/csrf.rb +34 -0
  51. data/lib/locomotive/steam/liquid/tags/editable.rb +6 -0
  52. data/lib/locomotive/steam/liquid/tags/editable/base.rb +50 -0
  53. data/lib/locomotive/steam/liquid/tags/editable/control.rb +19 -0
  54. data/lib/locomotive/steam/liquid/tags/editable/file.rb +15 -0
  55. data/lib/locomotive/steam/liquid/tags/editable/long_text.rb +15 -0
  56. data/lib/locomotive/steam/liquid/tags/editable/short_text.rb +20 -0
  57. data/lib/locomotive/steam/liquid/tags/editable/text.rb +15 -0
  58. data/lib/locomotive/steam/liquid/tags/extends.rb +25 -0
  59. data/lib/locomotive/steam/liquid/tags/google_analytics.rb +28 -0
  60. data/lib/locomotive/steam/liquid/tags/hybrid.rb +27 -0
  61. data/lib/locomotive/steam/liquid/tags/inline_editor.rb +16 -0
  62. data/lib/locomotive/steam/liquid/tags/link_to.rb +56 -0
  63. data/lib/locomotive/steam/liquid/tags/locale_switcher.rb +106 -0
  64. data/lib/locomotive/steam/liquid/tags/nav.rb +287 -0
  65. data/lib/locomotive/steam/liquid/tags/paginate.rb +105 -0
  66. data/lib/locomotive/steam/liquid/tags/path_helper.rb +98 -0
  67. data/lib/locomotive/steam/liquid/tags/path_to.rb +36 -0
  68. data/lib/locomotive/steam/liquid/tags/seo.rb +74 -0
  69. data/lib/locomotive/steam/liquid/tags/session_assign.rb +41 -0
  70. data/lib/locomotive/steam/liquid/tags/snippet.rb +63 -0
  71. data/lib/locomotive/steam/liquid/tags/with_scope.rb +44 -0
  72. data/lib/locomotive/steam/listen.rb +64 -0
  73. data/lib/locomotive/steam/logger.rb +54 -0
  74. data/lib/locomotive/steam/monkey_patches.rb +5 -0
  75. data/lib/locomotive/steam/monkey_patches/better_errors.rb +70 -0
  76. data/lib/locomotive/steam/monkey_patches/dragonfly.rb +79 -0
  77. data/lib/locomotive/steam/monkey_patches/haml.rb +15 -0
  78. data/lib/locomotive/steam/monkey_patches/httparty.rb +46 -0
  79. data/lib/locomotive/steam/monkey_patches/mounter.rb +32 -0
  80. data/lib/locomotive/steam/server.rb +81 -0
  81. data/lib/locomotive/steam/server/dynamic_assets.rb +33 -0
  82. data/lib/locomotive/steam/server/entry_submission.rb +120 -0
  83. data/lib/locomotive/steam/server/favicon.rb +18 -0
  84. data/lib/locomotive/steam/server/locale.rb +42 -0
  85. data/lib/locomotive/steam/server/logging.rb +32 -0
  86. data/lib/locomotive/steam/server/middleware.rb +61 -0
  87. data/lib/locomotive/steam/server/page.rb +69 -0
  88. data/lib/locomotive/steam/server/path.rb +34 -0
  89. data/lib/locomotive/steam/server/renderer.rb +118 -0
  90. data/lib/locomotive/steam/server/templatized_page.rb +32 -0
  91. data/lib/locomotive/steam/server/timezone.rb +18 -0
  92. data/lib/locomotive/steam/standalone_server.rb +33 -0
  93. data/lib/locomotive/steam/version.rb +5 -0
  94. data/lib/steam.rb +4 -0
  95. data/locomotivecms_steam.gemspec +42 -0
  96. data/spec/fixtures/default/README +0 -0
  97. data/spec/fixtures/default/app/content_types/bands.yml +19 -0
  98. data/spec/fixtures/default/app/content_types/events.yml +25 -0
  99. data/spec/fixtures/default/app/content_types/messages.yml +17 -0
  100. data/spec/fixtures/default/app/content_types/songs.yml +25 -0
  101. data/spec/fixtures/default/app/content_types/updates.yml +33 -0
  102. data/spec/fixtures/default/app/views/pages/404.liquid.haml +10 -0
  103. data/spec/fixtures/default/app/views/pages/about_us.fr.liquid.haml +7 -0
  104. data/spec/fixtures/default/app/views/pages/about_us.liquid.haml +21 -0
  105. data/spec/fixtures/default/app/views/pages/about_us.nb.liquid.haml +4 -0
  106. data/spec/fixtures/default/app/views/pages/about_us/jane_doe.liquid.haml +4 -0
  107. data/spec/fixtures/default/app/views/pages/about_us/john_doe.fr.liquid.haml +5 -0
  108. data/spec/fixtures/default/app/views/pages/about_us/john_doe.liquid.haml +6 -0
  109. data/spec/fixtures/default/app/views/pages/all.liquid.haml +13 -0
  110. data/spec/fixtures/default/app/views/pages/archives/news.liquid.haml +10 -0
  111. data/spec/fixtures/default/app/views/pages/contact.liquid.haml +54 -0
  112. data/spec/fixtures/default/app/views/pages/contest.liquid.haml +18 -0
  113. data/spec/fixtures/default/app/views/pages/events.liquid.haml +42 -0
  114. data/spec/fixtures/default/app/views/pages/filtered.liquid.haml +10 -0
  115. data/spec/fixtures/default/app/views/pages/grunge_bands.liquid.haml +8 -0
  116. data/spec/fixtures/default/app/views/pages/index.fr.liquid.haml +3 -0
  117. data/spec/fixtures/default/app/views/pages/index.liquid.haml +100 -0
  118. data/spec/fixtures/default/app/views/pages/music.fr.liquid.haml +4 -0
  119. data/spec/fixtures/default/app/views/pages/music.liquid.haml +42 -0
  120. data/spec/fixtures/default/app/views/pages/songs/template.fr.liquid.haml +16 -0
  121. data/spec/fixtures/default/app/views/pages/songs/template.liquid.haml +18 -0
  122. data/spec/fixtures/default/app/views/pages/songs/template/band.liquid.haml +16 -0
  123. data/spec/fixtures/default/app/views/pages/store.fr.liquid.haml +5 -0
  124. data/spec/fixtures/default/app/views/pages/store.liquid +5 -0
  125. data/spec/fixtures/default/app/views/pages/tags/nav.liquid.haml +6 -0
  126. data/spec/fixtures/default/app/views/pages/tags/nav_in_deep.liquid.haml +6 -0
  127. data/spec/fixtures/default/app/views/pages/unlisted_pages.liquid.haml +9 -0
  128. data/spec/fixtures/default/app/views/snippets/A_Complicated-one.liquid.haml +1 -0
  129. data/spec/fixtures/default/app/views/snippets/footer.liquid.haml +6 -0
  130. data/spec/fixtures/default/app/views/snippets/header.liquid.haml +1 -0
  131. data/spec/fixtures/default/app/views/snippets/song.fr.liquid.haml +8 -0
  132. data/spec/fixtures/default/app/views/snippets/song.liquid +12 -0
  133. data/spec/fixtures/default/config/deploy.yml +12 -0
  134. data/spec/fixtures/default/config/deploy_example.yml +12 -0
  135. data/spec/fixtures/default/config/site.yml +15 -0
  136. data/spec/fixtures/default/config/translations.yml +3 -0
  137. data/spec/fixtures/default/data/bands.yml +10 -0
  138. data/spec/fixtures/default/data/events.yml +53 -0
  139. data/spec/fixtures/default/data/songs.yml +46 -0
  140. data/spec/fixtures/default/data/updates.yml +48 -0
  141. data/spec/fixtures/default/public/fonts/chunkfive-webfont.eot +0 -0
  142. data/spec/fixtures/default/public/fonts/chunkfive-webfont.svg +213 -0
  143. data/spec/fixtures/default/public/fonts/chunkfive-webfont.ttf +0 -0
  144. data/spec/fixtures/default/public/fonts/chunkfive-webfont.woff +0 -0
  145. data/spec/fixtures/default/public/fonts/chunkfive.css +8 -0
  146. data/spec/fixtures/default/public/fonts/chunkfive.otf +0 -0
  147. data/spec/fixtures/default/public/images/nav_on.png +0 -0
  148. data/spec/fixtures/default/public/images/photo_frame.png +0 -0
  149. data/spec/fixtures/default/public/images/sep.png +0 -0
  150. data/spec/fixtures/default/public/images/top.jpg +0 -0
  151. data/spec/fixtures/default/public/javascripts/application.js.coffee +2 -0
  152. data/spec/fixtures/default/public/javascripts/common.js +1 -0
  153. data/spec/fixtures/default/public/samples/asset_collections/cover.jpg +0 -0
  154. data/spec/fixtures/default/public/samples/photo.jpg +0 -0
  155. data/spec/fixtures/default/public/samples/photo_2.jpg +0 -0
  156. data/spec/fixtures/default/public/stylesheets/application.css +64 -0
  157. data/spec/fixtures/default/public/stylesheets/other/extra.css.less +8 -0
  158. data/spec/fixtures/default/public/stylesheets/other/style.css.scss +13 -0
  159. data/spec/fixtures/default/public/stylesheets/reboot.css +82 -0
  160. data/spec/integration/integration_helper.rb +15 -0
  161. data/spec/integration/server/basic_spec.rb +170 -0
  162. data/spec/integration/server/contact_form_spec.rb +111 -0
  163. data/spec/integration/server/liquid_spec.rb +91 -0
  164. data/spec/integration/server/with_scope_spec.rb +20 -0
  165. data/spec/locales/locales_spec.rb +22 -0
  166. data/spec/spec_helper.rb +21 -0
  167. data/spec/support.rb +4 -0
  168. data/spec/support/examples/locale_file.rb +14 -0
  169. data/spec/support/examples/matching_locale.rb +8 -0
  170. data/spec/support/helpers.rb +22 -0
  171. data/spec/support/matchers/hash.rb +5 -0
  172. metadata +564 -0
@@ -0,0 +1,4 @@
1
+ ---
2
+ title: Notre musique
3
+ slug: notre-musique
4
+ ---
@@ -0,0 +1,42 @@
1
+ ---
2
+ listed: true
3
+ handle: our-music
4
+ position: 2
5
+ ---
6
+ {% extends parent %}
7
+
8
+ {% block content %}
9
+
10
+ {% editable_long_text 'introduction' %}
11
+
12
+ %p
13
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vitae tincidunt urna. Nunc felis purus, ultricies et venenatis bibendum, fringilla eu lectus. Sed cursus, sem at blandit mattis, libero quam egestas tortor, eget cursus dolor tellus id nunc. Quisque mauris diam, tincidunt in commodo sed, feugiat eu nibh. Nulla erat nunc, dapibus vel eleifend et, egestas sed quam. Vestibulum mollis eros at dolor vulputate vel sollicitudin enim convallis. Etiam velit nisi, rutrum vel sagittis facilisis, pretium id lorem.
14
+
15
+ {% endeditable_long_text %}
16
+
17
+ .unit.size1of2
18
+ %ul.songs
19
+ {% for song in contents.songs limit: 4 offset: 0 %}
20
+ {% include 'song' with song %}
21
+ {% endfor %}
22
+
23
+ .unit.size1of2
24
+ %ul.songs
25
+ {% for song in contents.songs offset: 4 %}
26
+ {% include 'song' with song %}
27
+ {% endfor %}
28
+
29
+ #is_listed{ listed: "{{ page.listed? }}" }
30
+
31
+ #test_for_scope
32
+ {% with_scope _slug: "song-number-3" %}
33
+ {% assign selected_songs = contents.songs.all %}
34
+ {% endwith_scope %}
35
+ {% for s in selected_songs %}
36
+ %p.scoped_song {{ s._label }}
37
+ %p.scoped_song_link
38
+ %a{ href: "{% path_to s %}" } {{ s._label }}
39
+ {% endfor %}
40
+ %p.collection_equality {{ contents.songs.all.size }}={{ contents.songs.size }}
41
+
42
+ {% endblock %}
@@ -0,0 +1,16 @@
1
+ ---
2
+ title: Le template d'une chanson
3
+ ---
4
+ {% extends 'index' %}
5
+
6
+ {% block content %}
7
+
8
+ %h3 {{ song.title }} [FR]
9
+
10
+ %p {{ song.short_description }}
11
+
12
+ #is_templatized{templatized: "{{ page.templatized? }}"}
13
+ #content_type_size{content_type_size: "{{ page.content_type.size }}"}
14
+ #content_type_count{content_type_count: "{{ page.content_type.count }}"}
15
+
16
+ {% endblock %}
@@ -0,0 +1,18 @@
1
+ ---
2
+ title: A song template
3
+ content_type: songs
4
+ handle: a-song-template
5
+ ---
6
+ {% extends 'index' %}
7
+
8
+ {% block content %}
9
+
10
+ %h3 {{ song.title }}
11
+
12
+ %p {{ song.short_description }}
13
+
14
+ #is_templatized{templatized: "{{ page.templatized? }}"}
15
+ #content_type_size{content_type_size: "{{ page.content_type.size }}"}
16
+ #content_type_count{content_type_count: "{{ page.content_type.count }}"}
17
+
18
+ {% endblock %}
@@ -0,0 +1,16 @@
1
+ ---
2
+ title: Band
3
+ ---
4
+ {% extends parent %}
5
+
6
+ {% block content %}
7
+
8
+ %h3 {{ song.title }}
9
+
10
+ %h4 Leader: {{ song.band.leader }}
11
+
12
+ #is_templatized{templatized: "{{ page.templatized? }}"}
13
+ #content_type_size{content_type_size: "{{ page.content_type.size }}"}
14
+ #content_type_count{content_type_count: "{{ page.content_type.count }}"}
15
+
16
+ {% endblock %}
@@ -0,0 +1,5 @@
1
+ ---
2
+ title: Magasin
3
+ slug: magasin
4
+ redirect_url: http://www.apple.com/fr/itunes/
5
+ ---
@@ -0,0 +1,5 @@
1
+ ---
2
+ redirect_url: http://www.apple.com/en/itunes/
3
+ listed: true
4
+ position: 3
5
+ ---
@@ -0,0 +1,6 @@
1
+ ---
2
+ title: Page to test the nav tag
3
+ listed: false
4
+ published: false
5
+ ---
6
+ {% nav site %}
@@ -0,0 +1,6 @@
1
+ ---
2
+ title: Page to test the nav tag with a high depth
3
+ listed: false
4
+ published: false
5
+ ---
6
+ {% nav 'site', depth: 2 %}
@@ -0,0 +1,9 @@
1
+ ---
2
+ title: Unlisted pages
3
+ ---
4
+ %ul
5
+ {% with_scope listed: false %}
6
+ {% for page in site.pages %}
7
+ %li {{ page.title }}
8
+ {% endfor %}
9
+ {% endwith_scope %}
@@ -0,0 +1 @@
1
+ %p A complicated one name indeed.
@@ -0,0 +1,6 @@
1
+ %p {% locale_switcher %}
2
+
3
+ %p
4
+ {{ 'powered_by' | translate }} <a href="http://www.locomotivecms.com">LocomotiveCMS</a>. Designed by <a href="http://www.sachagreif.com">Sacha Greif</a>.
5
+ %p
6
+ All photos are licensed under Creative Commons. (see original ones <a href='http://www.flickr.com/photos/38687875@N00/3391588262/'>here</a> or <a href='http://www.flickr.com/photos/cool_dry_place/55454498/'>here</a>).
@@ -0,0 +1 @@
1
+ %h1 {{ site.name }}
@@ -0,0 +1,8 @@
1
+ %li
2
+ %h3 {% link_to song, with: a-song-template %}
3
+ .cover {{ song.cover.url | image_tag }}
4
+ .info
5
+ {{ song.short_description }}
6
+ %p.listen
7
+ %a{ :href => "{{ song.audio_url }}" } &rarr; écouter ({{ song.duration }} min)
8
+ .clear
@@ -0,0 +1,12 @@
1
+ <li>
2
+ <h3><a href="/songs/{{ song._permalink }}">{{ song.title }}</a></h3>
3
+ <div class="cover">{{ song.cover.url | image_tag }}</div>
4
+ <div class="info">
5
+ {{ song.short_description }}
6
+ <p class="listen">
7
+ <a href="{{ song.audio_url }}">&rarr; Listen ({{ song.duration }} min)</a>
8
+ </p>
9
+ <p>écouter en Francais</p>
10
+ </div>
11
+ <div class="clear"></div>
12
+ </li>
@@ -0,0 +1,12 @@
1
+ development:
2
+ host: development.example.com
3
+ email: john@doe.net
4
+ password: easyone
5
+ staging:
6
+ host: staging.example.com
7
+ email: john@doe.net
8
+ password: easyone
9
+ production:
10
+ host: www.example.com
11
+ email: john@doe.net
12
+ password: easyone
@@ -0,0 +1,12 @@
1
+ development:
2
+ host: development.example.com
3
+ email: john@doe.net
4
+ password: easyone
5
+ staging:
6
+ host: staging.example.com
7
+ email: john@doe.net
8
+ password: easyone
9
+ production:
10
+ host: www.example.com
11
+ email: john@doe.net
12
+ password: easyone
@@ -0,0 +1,15 @@
1
+ name: Sample website
2
+
3
+ subdomain: sample
4
+
5
+ domains: ['sample.example.com']
6
+
7
+ locales: ['en', 'fr', 'nb']
8
+
9
+ seo_title:
10
+ en: A simple LocomotiveCMS website
11
+ fr: Un simple LocomotiveCMS site web
12
+ meta_keywords:
13
+ en: some meta keywords
14
+ fr: quelques mots cles
15
+ meta_description: some meta description
@@ -0,0 +1,3 @@
1
+ powered_by:
2
+ en: Powered by
3
+ fr: Propulsé par
@@ -0,0 +1,10 @@
1
+ - Pearl Jam:
2
+ leader: Eddie
3
+ kind: grunge
4
+ - Alice in Chains:
5
+ leader: Layne
6
+ kind: grunge
7
+ - The who:
8
+ leader: Peter
9
+ kind: rock
10
+
@@ -0,0 +1,53 @@
1
+ - Avogadro's Number:
2
+ date: 2012/06/11
3
+ city: Fort Collins
4
+ state: Colorado
5
+ notes: '<p>Lorem ipsum<img src="/samples/assets/" alt="" /></p>'
6
+ - Quixote's True Blue:
7
+ date: 2012/06/10
8
+ city: Denver
9
+ state: Colorado
10
+ - Kelly's Westport Inn:
11
+ date: 2012/06/06
12
+ city: Kansas City
13
+ state: Missouri
14
+ tags: [awesome, open bar]
15
+ price: 5.5
16
+ - Browne's Market:
17
+ date: 2012/06/06
18
+ city: Kansas City
19
+ state: Missouri
20
+ tags: [awesome, open bar]
21
+ price: 15.0
22
+ - Ballydoyle's:
23
+ date: 2012/06/05
24
+ city: Aurora
25
+ state: Illinois
26
+ - The Belmont:
27
+ date: 2012/06/04
28
+ city: Hamtramk
29
+ state: Michigan
30
+ - Avogadro's Number:
31
+ date: 2011/06/11
32
+ city: Fort Collins
33
+ state: Colorado
34
+ - Quixote's True Blue:
35
+ date: 2011/06/10
36
+ city: Denver
37
+ state: Colorado
38
+ - Kelly's Westport Inn:
39
+ date: 2011/06/06
40
+ city: Kansas City
41
+ state: Missouri
42
+ - Browne's Market:
43
+ date: 2011/06/06
44
+ city: Kansas City
45
+ state: Missouri
46
+ - Ballydoyle's:
47
+ date: 2011/06/05
48
+ city: Aurora
49
+ state: Illinois
50
+ - The Belmont:
51
+ date: 2011/06/04
52
+ city: Hamtramk
53
+ state: Michigan
@@ -0,0 +1,46 @@
1
+ - "Song #1":
2
+ duration: "6:28"
3
+ short_description: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vitae tincidunt urna. Nunc felis purus, ultricies et venenatis bibendum, fringilla eu lectus. Sed cursus, sem at blandit mattis, libero quam egestas tortor, eget cursus dolor tellus id nunc."
4
+ audio_url: http://blip.tv/file/get/NicolasRaynier-Milk617.flv
5
+ cover: /samples/asset_collections/cover.jpg
6
+ band: pearl-jam
7
+ - "Song #2":
8
+ duration: "6:28"
9
+ short_description: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vitae tincidunt urna. Nunc felis purus, ultricies et venenatis bibendum, fringilla eu lectus. Sed cursus, sem at blandit mattis, libero quam egestas tortor, eget cursus dolor tellus id nunc.
10
+ audio_url: http://blip.tv/file/get/NicolasRaynier-Milk617.flv
11
+ cover: /samples/asset_collections/cover.jpg
12
+ band: pearl-jam
13
+ - "Song #3":
14
+ duration: "6:28"
15
+ short_description: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vitae tincidunt urna. Nunc felis purus, ultricies et venenatis bibendum, fringilla eu lectus. Sed cursus, sem at blandit mattis, libero quam egestas tortor, eget cursus dolor tellus id nunc.
16
+ audio_url: http://blip.tv/file/get/NicolasRaynier-Milk617.flv
17
+ cover: /samples/asset_collections/cover.jpg
18
+ band: pearl-jam
19
+ - "Song #4":
20
+ duration: "6:28"
21
+ short_description: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vitae tincidunt urna. Nunc felis purus, ultricies et venenatis bibendum, fringilla eu lectus. Sed cursus, sem at blandit mattis, libero quam egestas tortor, eget cursus dolor tellus id nunc.
22
+ audio_url: http://blip.tv/file/get/NicolasRaynier-Milk617.flv
23
+ cover: /samples/asset_collections/cover.jpg
24
+ band: pearl-jam
25
+ - "Song #5":
26
+ duration: "6:28"
27
+ short_description: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vitae tincidunt urna. Nunc felis purus, ultricies et venenatis bibendum, fringilla eu lectus. Sed cursus, sem at blandit mattis, libero quam egestas tortor, eget cursus dolor tellus id nunc.
28
+ audio_url: http://blip.tv/file/get/NicolasRaynier-Milk617.flv
29
+ cover: /samples/asset_collections/cover.jpg
30
+ band: the-who
31
+ - "Song #6":
32
+ duration: "6:28"
33
+ short_description: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vitae tincidunt urna. Nunc felis purus, ultricies et venenatis bibendum, fringilla eu lectus. Sed cursus, sem at blandit mattis, libero quam egestas tortor, eget cursus dolor tellus id nunc.
34
+ audio_url: http://blip.tv/file/get/NicolasRaynier-Milk617.flv
35
+ cover: /samples/asset_collections/cover.jpg
36
+ band: the-who
37
+ - "Song #7":
38
+ duration: "6:28"
39
+ short_description: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vitae tincidunt urna. Nunc felis purus, ultricies et venenatis bibendum, fringilla eu lectus. Sed cursus, sem at blandit mattis, libero quam egestas tortor, eget cursus dolor tellus id nunc.
40
+ audio_url: http://blip.tv/file/get/NicolasRaynier-Milk617.flv
41
+ cover: /samples/asset_collections/cover.jpg
42
+ - "Song #8":
43
+ duration: "6:28"
44
+ short_description: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vitae tincidunt urna. Nunc felis purus, ultricies et venenatis bibendum, fringilla eu lectus. Sed cursus, sem at blandit mattis, libero quam egestas tortor, eget cursus dolor tellus id nunc.
45
+ audio_url: http://blip.tv/file/get/NicolasRaynier-Milk617.flv
46
+ cover: /samples/asset_collections/cover.jpg
@@ -0,0 +1,48 @@
1
+ - ! 'Update #6':
2
+ title:
3
+ fr: "Mise a jour #6"
4
+ text:
5
+ en: john posted a new post
6
+ fr: phrase FR
7
+ date: 2009/11/16
8
+ category: General
9
+ - "Update #5":
10
+ title:
11
+ fr: "Mise a jour #5"
12
+ text:
13
+ en: brian posted a new post
14
+ fr: phrase FR
15
+ date: 2009/11/02
16
+ category: General
17
+ - "Update #4":
18
+ title:
19
+ fr: "Mise a jour #4"
20
+ text:
21
+ en: NEW ALBUM FINISHED!!
22
+ fr: phrase FR
23
+ date: 2009/10/09
24
+ category: General
25
+ - "Update #3":
26
+ title:
27
+ fr: "Mise a jour #3"
28
+ text:
29
+ en: site redesign
30
+ fr: phrase FR
31
+ date: 2009/06/29
32
+ category: General
33
+ - "Update #2":
34
+ title:
35
+ fr: "Mise a jour #2"
36
+ text:
37
+ en: added a chatroom
38
+ fr: phrase FR
39
+ date: 2009/05/23
40
+ category: General
41
+ - "Update #1":
42
+ title:
43
+ fr: "Mise a jour #1"
44
+ text:
45
+ en: added some free stuff
46
+ fr: phrase FR
47
+ date: 2009/05/12
48
+ category: General
@@ -0,0 +1,213 @@
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">
4
+ <metadata>
5
+ This is a custom SVG webfont generated by Font Squirrel.
6
+ Copyright : Copyright c 2007 by Georg All rights reserved
7
+ </metadata>
8
+ <defs>
9
+ <font id="webfontwlZ5ec8v" horiz-adv-x="1292" >
10
+ <font-face units-per-em="2048" ascent="1536" descent="-512" />
11
+ <missing-glyph horiz-adv-x="512" />
12
+ <glyph unicode=" " horiz-adv-x="512" />
13
+ <glyph unicode="&#x09;" horiz-adv-x="512" />
14
+ <glyph unicode="&#xa0;" horiz-adv-x="512" />
15
+ <glyph unicode="!" horiz-adv-x="630" d="M66 1042v390h489v-390l-109 -516h-270zM57 209q0 84 64.5 150.5t169.5 66.5q106 0 175 -63.5t69 -153.5q0 -88 -68 -149.5t-176 -61.5q-98 0 -166 64.5t-68 146.5z" />
16
+ <glyph unicode="&#x22;" horiz-adv-x="1085" d="M520 1436l-74 -613h-256l-75 613h405zM971 1436l-74 -613h-256l-76 613h406z" />
17
+ <glyph unicode="#" horiz-adv-x="1331" d="M1223 659h-191l-24 -137h190l-47 -272h-190l-37 -209h-273l37 209h-137l-37 -209h-272l37 209h-232l47 272h232l24 137h-231l47 273h231l37 213h273l-37 -213h137l37 213h272l-37 -213h191zM735 522l25 137h-137l-25 -137h137z" />
18
+ <glyph unicode="$" horiz-adv-x="1454" d="M1366 918h-371q0 111 -74.5 174t-187.5 63q-51 0 -96 -29.5t-45 -78.5q0 -57 84 -100.5t202.5 -81.5t237.5 -87t203 -145t84 -230q0 -115 -49 -201.5t-131 -136t-174.5 -73t-188.5 -23.5q-27 0 -72 4v-131h-131v162q-133 47 -225 154l-22 -158h-359v516h381 q0 -61 26.5 -103t71.5 -62.5t82 -29t78 -10.5q174 0 174 103q0 37 -58 65.5t-145.5 48t-189.5 57.5t-189 87t-145.5 141t-58.5 215q0 109 47 196t122 139t156.5 78.5t161.5 26.5q45 0 92 -6v152h131v-182q143 -55 205 -172l21 172h352v-514z" />
19
+ <glyph unicode="%" horiz-adv-x="1228" d="M342 766q-104 0 -164.5 72.5t-60.5 212.5q0 121 59.5 196.5t155.5 75.5q113 0 169 -76t56 -211q0 -127 -56.5 -198.5t-158.5 -71.5zM946 1317h-235l-424 -1311h235zM342 885q27 0 42 42t15 109q0 164 -69 164q-20 0 -40 -43t-20 -106q0 -74 22.5 -120t49.5 -46zM895 4 q-104 0 -164.5 73t-60.5 212q0 121 59 196.5t156 75.5q113 0 169 -75.5t56 -211.5q0 -127 -56.5 -198.5t-158.5 -71.5zM895 123q27 0 42 42t15 109q0 164 -69 164q-20 0 -40 -43t-20 -106q0 -74 22.5 -120t49.5 -46z" />
20
+ <glyph unicode="&#x26;" horiz-adv-x="1433" d="M1325 729h-338q0 -172 -14 -221q-12 -35 -37 -76q-74 78 -178 258q147 88 212.5 209t46 222.5t-112.5 172t-240 70.5q-123 0 -221.5 -78t-120 -204t74.5 -285q-125 -82 -176 -142q-113 -129 -112 -311q0 -131 61 -221t156.5 -125t202 -40t203.5 21.5t159 71.5 q117 -84 205 -62.5t138 83t50 116.5q-102 -59 -207 78q49 66 68 152q18 -4 84.5 -1t77.5 3zM635 924q-35 37 -50.5 99t10.5 115.5t95 53.5q86 0 94 -70q8 -80 -90 -159q-26 -21 -59 -39zM518 565q113 -217 221 -340q-98 -80 -223 -50t-140.5 132t142.5 258z" />
21
+ <glyph unicode="'" horiz-adv-x="559" d="M479 1436l-73 -613h-256l-76 613h405z" />
22
+ <glyph unicode="(" horiz-adv-x="794" d="M532 1669l211 -217q-59 -74 -94 -122t-96 -156.5t-93 -243.5t-32 -291q0 -162 29.5 -301t85 -245.5t97.5 -168t103 -133.5l-211 -219q-193 174 -337 459.5t-144 607.5q0 170 50.5 341t128 303t154 227.5t148.5 158.5z" />
23
+ <glyph unicode=")" horiz-adv-x="794" d="M51 1450l211 217q72 -63 148.5 -158.5t154.5 -227.5t128 -303t50 -341q0 -322 -144 -607.5t-337 -459.5l-211 219q61 72 103.5 133.5t97.5 168t85 245.5t30 301q0 156 -32 291t-93.5 243.5t-96.5 156.5t-94 122z" />
24
+ <glyph unicode="*" horiz-adv-x="1228" d="M510 1425l-39 -61l45 -238l-182 95l-90 4l-66 -209l84 -39l193 -43l-176 -182v-58l170 -129l55 51l108 197l103 -184l63 -66l172 131l-18 74l-158 164l201 41l76 43l-66 209l-86 -4l-184 -97l45 238l-39 63h-211z" />
25
+ <glyph unicode="+" d="M1190 625v-273h-416v-415h-272v415h-416v273h416v415h272v-415h416z" />
26
+ <glyph unicode="," horiz-adv-x="557" d="M223 -397l-235 133q115 145 162 294.5t32 370.5l373 -98q6 -195 -82 -376t-250 -324z" />
27
+ <glyph unicode="-" horiz-adv-x="790" d="M96 625h594v-273h-594v273z" />
28
+ <glyph unicode="." horiz-adv-x="528" d="M31 213q0 86 63.5 159.5t168 73.5t170 -73.5t65.5 -159.5q0 -96 -62.5 -158.5t-173.5 -62.5q-98 0 -164.5 67.5t-66.5 153.5z" />
29
+ <glyph unicode="/" horiz-adv-x="823" d="M823 1497h-331l-594 -1814h331z" />
30
+ <glyph unicode="0" horiz-adv-x="1226" d="M618 -25q-266 0 -426.5 190.5t-160.5 557.5q0 326 160.5 530.5t416.5 204.5q293 0 440.5 -199.5t147.5 -549.5q0 -344 -151 -539t-427 -195zM618 293q72 0 119 115.5t47 300.5q0 182 -51 300.5t-127 118.5q-61 2 -115.5 -113.5t-54.5 -291.5q0 -186 57 -308t125 -122z " />
31
+ <glyph unicode="1" horiz-adv-x="1015" d="M145 936l-94 227l42 21l44 21l39 21q29 15 43 26l41 31q27 19 47 40l48 48q28 28 55 61h364v-1160h191v-272h-820v272h205v760z" />
32
+ <glyph unicode="2" horiz-adv-x="1208" d="M289 967l-221 233q219 254 532 254q209 0 348 -123t139 -325q0 -164 -70.5 -251t-256.5 -208q-86 -55 -180.5 -136t-126.5 -139h360v164h344v-436h-1106v297q82 135 140.5 201.5t158.5 146.5q47 43 150.5 111.5t158 121t54.5 109.5q0 135 -172 135q-51 0 -103.5 -29.5 t-77 -53t-71.5 -72.5z" />
33
+ <glyph unicode="3" horiz-adv-x="1105" d="M274 1020l-198 240q66 72 188.5 133t249.5 61q248 0 385 -117.5t137 -316.5q0 -143 -151 -260q190 -137 190 -336q0 -213 -170 -332t-397 -119q-141 0 -278.5 70t-198.5 162l209 217q133 -133 270 -133q86 0 135 41t49 116q0 150 -170 150h-153v244h149q76 0 125 36.5 t49 104.5q0 78 -54 120t-126 42q-123 0 -240 -123z" />
34
+ <glyph unicode="4" horiz-adv-x="1196" d="M20 696l590 736h424v-807h109v-222h-109v-133h111v-270h-664v270h129v133h-590v293zM610 625v379l-303 -379h303z" />
35
+ <glyph unicode="5" horiz-adv-x="1181" d="M487 1126l-34 -198q76 49 221 49q193 0 335 -130t142 -355q0 -125 -53.5 -225.5t-141.5 -163t-195.5 -96.5t-221.5 -34q-150 0 -296.5 75t-211.5 173l223 232q147 -152 287 -152q102 0 163.5 57.5t61.5 147.5q0 82 -60.5 140.5t-148.5 58.5q-102 0 -192 -95l-263 117 l125 705h811v-306h-551z" />
36
+ <glyph unicode="6" horiz-adv-x="1189" d="M1118 1292l-139 -266q-178 104 -299 104q-111 -2 -181.5 -80.5t-86.5 -197.5q41 41 115.5 71.5t152.5 32.5q201 8 340 -121.5t139 -334.5q0 -213 -143.5 -361.5t-386.5 -156.5q-256 -8 -422 164.5t-174 476.5q-2 96 8 191t47 213t99.5 207t178 152.5t269.5 67.5 q109 4 253 -42t230 -120zM627 662q-121 -6 -211 -117q0 -88 50 -165t140 -77q78 0 133.5 51.5t53.5 124.5q-2 72 -42 128.5t-124 54.5z" />
37
+ <glyph unicode="7" horiz-adv-x="1159" d="M31 1432h1108v-273l-551 -1159h-443l549 1159h-336v-133h-327v406z" />
38
+ <glyph unicode="8" horiz-adv-x="1144" d="M31 420q0 102 61.5 206.5t159.5 153.5q-74 45 -114 120t-40 153q0 176 131 289.5t357 113.5q231 0 360 -113.5t129 -289.5q0 -96 -49 -170t-123 -109q100 -49 155.5 -147.5t55.5 -206.5q0 -193 -148.5 -320t-392.5 -127q-250 0 -396 126t-146 321zM735 1069q0 55 -46 92 t-107 37q-59 0 -103.5 -39t-44.5 -90t39 -84t79 -41t85 -10q98 47 98 135zM385 432q0 -72 56.5 -120t133.5 -48q80 0 133.5 44t55.5 124q0 94 -81 136t-179 46q-49 -29 -84 -79t-35 -103z" />
39
+ <glyph unicode="9" horiz-adv-x="1202" d="M72 143l139 267q178 -104 299 -105q117 4 184.5 76t65.5 203q-98 -98 -250 -105q-201 -8 -340 122t-139 335q0 213 143 361.5t387 156.5q258 8 429 -166t179 -475q2 -106 -8 -205.5t-50 -215.5t-104.5 -202t-181 -145t-270.5 -63q-109 -4 -253 41.5t-230 119.5zM563 774 q102 4 193 117q0 94 -42 168t-130 74q-78 0 -133.5 -51.5t-53.5 -125.5q2 -72 42 -128t124 -54z" />
40
+ <glyph unicode=":" horiz-adv-x="520" d="M31 823q0 86 62.5 158t164.5 72q104 0 167.5 -73t63.5 -157q0 -94 -62 -155.5t-169 -61.5q-92 0 -159.5 67.5t-67.5 149.5zM31 201q0 86 62.5 157.5t164.5 71.5q104 0 167.5 -72.5t63.5 -156.5q0 -92 -64.5 -154.5t-166.5 -62.5q-96 0 -161.5 66.5t-65.5 150.5z" />
41
+ <glyph unicode=";" horiz-adv-x="618" d="M121 788q0 86 63.5 160t168 74t170 -74t65.5 -160q0 -94 -63.5 -157.5t-172.5 -63.5q-94 0 -162.5 68.5t-68.5 152.5zM10 -264l236 -133q162 143 250 324.5t82 375.5l-373 98q14 -221 -33 -370.5t-162 -294.5z" />
42
+ <glyph unicode="&#x3c;" horiz-adv-x="1064" d="M756 1024l-613 -307v-287l660 -307l78 213l-506 227l506 232z" />
43
+ <glyph unicode="=" horiz-adv-x="1028" d="M90 831h844v-272h-844v272zM90 379h844v-273h-844v273z" />
44
+ <glyph unicode="&#x3e;" horiz-adv-x="1064" d="M268 1024l613 -307v-287l-660 -307l-78 213l506 227l-506 232z" />
45
+ <glyph unicode="?" horiz-adv-x="1064" d="M225 977l-221 223q227 264 533 264q213 0 350 -109.5t137 -310.5q0 -74 -34 -136t-82 -104t-95 -77t-81 -69.5t-34 -67.5v-113h-381v164q0 63 51.5 126.5t112 105.5t111.5 90.5t51 85.5q0 96 -151 96q-61 0 -134.5 -49t-132.5 -119zM264 209q0 84 64.5 150.5t169.5 66.5 q106 0 174.5 -63.5t68.5 -153.5q0 -88 -67.5 -149.5t-175.5 -61.5q-98 0 -166 64.5t-68 146.5z" />
46
+ <glyph unicode="@" horiz-adv-x="1705" d="M1198 592v-258q4 -61 57 -94q63 -41 105 34q35 66 35 205q0 94 -36 189.5t-100.5 177.5t-172 133t-236.5 51q-170 0 -297 -88t-184.5 -211t-57.5 -252q0 -213 155 -368.5t394 -151.5v-184q-322 -2 -530.5 209t-208.5 495q0 125 47 253t135 236.5t230.5 177t316.5 68.5 t317.5 -68.5t232.5 -177t137 -236.5t48 -253q0 -137 -37 -232t-94 -136t-127 -54.5t-136.5 2t-118.5 44t-77 63.5l-32 59q-51 -86 -179 -86q-104 0 -181 57.5t-77 163.5q0 113 78 178.5t195 65.5q82 0 129 -47v47q0 74 -125 74q-84 0 -195 -62l-55 152q147 96 289 96 q88 0 163.5 -22.5t134 -86t58.5 -163.5zM928 356v47l-4 7q-4 8 -8.5 12t-12.5 10t-22.5 9t-30.5 3q-74 0 -74 -71q0 -27 19.5 -43.5t50.5 -16.5q27 0 52.5 13.5t29.5 29.5z" />
47
+ <glyph unicode="A" horiz-adv-x="1685" d="M1655 0h-821v268h194l-43 140h-420l-43 -140h160v-268h-651v268h139l276 899h-84v265h787l362 -1164h144v-268zM641 653h268l-135 443z" />
48
+ <glyph unicode="B" horiz-adv-x="1406" d="M51 0v266h119v901h-119v265h764q502 0 502 -351q0 -131 -44 -201.5t-157 -115.5q121 -33 195.5 -120t74.5 -228q0 -217 -131 -316.5t-426 -99.5h-778zM594 1161v-307h125q78 0 108.5 40t30.5 118q0 70 -38 109.5t-97 39.5h-129zM594 266h164q68 0 117 48t49 128 t-45 130.5t-127 50.5h-158v-357z" />
49
+ <glyph unicode="C" horiz-adv-x="1404" d="M1135 518l239 -262q-262 -289 -620 -289q-328 0 -525.5 197.5t-197.5 537.5q0 168 59.5 314.5t151.5 240t200.5 146.5t210.5 53q211 0 316 -139l47 115h321v-582h-366q-4 109 -59.5 183.5t-157.5 74.5q-109 0 -176.5 -117t-67.5 -289q0 -162 80 -273.5t219 -111.5 q31 0 62.5 8.5t58 20.5t53.5 29.5t46.5 34t40 36t30.5 31.5l22 27z" />
50
+ <glyph unicode="D" horiz-adv-x="1474" d="M51 0v272h127v889h-127v271h625q362 0 570 -197t208 -500q0 -350 -205 -542.5t-581 -192.5h-617zM598 272h78q156 2 231.5 130t75.5 333q0 180 -77 303t-230 123h-78v-889z" />
51
+ <glyph unicode="E" horiz-adv-x="1337" d="M51 1432h1235v-453h-354v182h-328v-282h389v-273h-389v-334h328v191h354v-463h-1235v272h129v889h-129v271z" />
52
+ <glyph unicode="F" horiz-adv-x="1306" d="M51 1432h1225v-453h-363v182h-309v-356h389v-273h-389v-260h209v-272h-762v272h127v889h-127v271z" />
53
+ <glyph unicode="G" horiz-adv-x="1589" d="M1067 0l-63 129q-37 -61 -127.5 -104t-202.5 -43q-274 0 -458.5 197.5t-184.5 522.5q0 324 189.5 539t438.5 215q70 0 130.5 -11t98.5 -25.5t70.5 -37t48 -38t32 -36t20.5 -24.5l43 148h305v-605h-367q-4 121 -71.5 190.5t-161.5 69.5q-121 0 -201 -113.5t-80 -271.5 q0 -162 76 -269t205 -107q139 0 197 100v86h-125v219h680v-219h-82v-512h-410z" />
54
+ <glyph unicode="H" horiz-adv-x="1572" d="M51 1432h664v-271h-127v-309h389v309h-121v271h666v-271h-119v-891h119v-270h-666v270h121v310h-389v-310h127v-270h-664v270h113v891h-113v271z" />
55
+ <glyph unicode="I" horiz-adv-x="782" d="M51 1432h680v-271h-127v-889h127v-272h-680v272h129v889h-129v271z" />
56
+ <glyph unicode="J" horiz-adv-x="948" d="M41 -395v270q41 -18 92 -18q170 0 170 295v1011h-176v269h770v-269h-170v-1011q0 -283 -135 -426.5t-442 -143.5q-50 0 -109 23z" />
57
+ <glyph unicode="K" horiz-adv-x="1669" d="M696 1167h-110v-333l381 333h-148v265h682v-265h-119l-297 -256l414 -645h119v-266h-799v266h139l-221 348l-151 -129v-219h110v-266h-645v266h111v901h-111v265h645v-265z" />
58
+ <glyph unicode="L" horiz-adv-x="1249" d="M51 1432h647v-271h-108v-889h264v260h344v-532h-1147v272h113v889h-113v271z" />
59
+ <glyph unicode="M" horiz-adv-x="2064" d="M1481 1071h-8q-35 -190 -60 -274l-215 -797h-428l-229 817q-35 119 -43 254h-9v-807h117v-264h-555v264h111v903h-109v265h776l207 -766l197 766h780v-265h-112v-901h112v-266h-647v266h115v684v121z" />
60
+ <glyph unicode="N" horiz-adv-x="1671" d="M1620 1167h-135v-1167h-441l-522 780v-516h158v-264h-629v264h121v903h-119v265h588l502 -752v487h-139v265h616v-265z" />
61
+ <glyph unicode="O" horiz-adv-x="1515" d="M764 -37q-334 0 -533.5 193.5t-199.5 566.5q0 332 200.5 539.5t518.5 207.5q367 0 551 -202.5t184 -558.5q0 -350 -188.5 -548t-532.5 -198zM764 285q96 0 152.5 115.5t56.5 308.5q0 199 -56.5 322.5t-168.5 123.5h-4q-92 0 -149 -120q-58 -122 -58 -312 q0 -199 63.5 -318.5t163.5 -119.5z" />
62
+ <glyph unicode="P" horiz-adv-x="1310" d="M51 1432h664q172 0 287.5 -34t174 -99.5t81 -137t22.5 -168.5q0 -195 -153.5 -300t-385.5 -105h-155v-318h125v-270h-660v270h115v893h-115v269zM586 1165v-356h92q90 0 145.5 45t55.5 125q0 90 -50.5 138t-140.5 48h-102z" />
63
+ <glyph unicode="Q" horiz-adv-x="1546" d="M1516 217v-104q0 -143 -80 -235.5t-228 -92.5q-119 0 -199.5 64.5t-117.5 162.5q-74 -12 -160 -12q-319 0 -509.5 186.5t-190.5 538.5q0 315 190.5 514t497.5 199q350 0 525 -193.5t175 -533.5q0 -326 -170 -512q35 -133 90 -133q41 0 41 92v59h136zM731 711 q119 0 230 -80q4 49 4 80q0 182 -69 305t-179 123h-3q-92 0 -162 -118q-71 -120 -71 -296q0 -66 8 -113q95 99 242 99zM731 307q57 0 109 45q-12 86 -36 129t-73 43q-84 0 -137 -149q61 -68 137 -68z" />
64
+ <glyph unicode="R" horiz-adv-x="1509" d="M51 1432h666q172 0 287.5 -32t175 -93.5t82 -131t22.5 -165.5q0 -117 -83 -198t-214 -99q109 -16 188.5 -99.5t79.5 -191.5q0 -139 50 -139q47 0 47 65v68h137v-113q0 -143 -70.5 -235.5t-228.5 -92.5q-199 0 -298 99.5t-99 281.5q0 143 -36 187.5t-169 44.5v-318h125 v-270h-662v270h115v893h-115v269zM588 1165v-348h92q90 0 143.5 43t53.5 123q0 182 -187 182h-102z" />
65
+ <glyph unicode="S" horiz-adv-x="1454" d="M51 0v516h381q0 -61 26.5 -103t71.5 -62.5t82 -29t78 -10.5q174 0 174 103q0 37 -58 65.5t-145.5 48t-189.5 57.5t-189 87t-145.5 141t-58.5 215q0 109 47 196t122 139t156.5 78.5t161.5 26.5q317 0 428 -208l21 172h352v-514h-371q0 111 -74.5 174t-187.5 63 q-51 0 -96 -29.5t-45 -78.5q0 -57 84 -100.5t202.5 -81.5t237.5 -87t203 -145t84 -230q0 -115 -49 -201.5t-131 -136t-174.5 -73t-188.5 -23.5q-268 0 -428 189l-22 -158h-359z" />
66
+ <glyph unicode="T" horiz-adv-x="1435" d="M1405 1432v-533h-301v262h-172v-889h170v-272h-762v272h168v889h-176v-262h-301v533h1374z" />
67
+ <glyph unicode="U" horiz-adv-x="1509" d="M31 1432h651v-265h-111v-442q0 -233 49.5 -316t155.5 -83q70 0 111 25.5t68.5 116.5t27.5 259v434h-111v271h607v-265h-111v-497q0 -705 -588 -705q-635 18 -635 694v506h-114v267z" />
68
+ <glyph unicode="V" horiz-adv-x="1583" d="M860 459h10q6 92 74 260l186 446h-108v267h582v-267h-101l-491 -1165h-377l-543 1165h-112v267h753v-267h-110l174 -458q59 -180 63 -248z" />
69
+ <glyph unicode="W" horiz-adv-x="2078" d="M655 463h11q4 47 100 508l102 461h426l129 -566q39 -182 62 -403h10q16 178 61 391l70 311h-113v267h586v-267h-112l-306 -1165h-485l-123 487q-27 98 -51 254h-8q-14 -102 -49 -249l-125 -492h-475l-271 1165h-114v267h675v-267h-118l53 -299q28 -122 65 -403z" />
70
+ <glyph unicode="X" horiz-adv-x="1710" d="M731 0h-680v264h178l301 391l-370 510h-107v267h811v-267h-119l201 -272l209 272h-180v267h680v-267h-174l-310 -395l369 -504h119v-266h-817v266h116l-155 209l-43 57l-211 -268h182v-264z" />
71
+ <glyph unicode="Y" horiz-adv-x="1370" d="M756 786h8q4 18 76 177l112 206h-112v263h551v-263h-111l-379 -665v-238h115v-266h-656v266h117v242l-397 661h-100v263h700v-263h-107l119 -217q6 -16 33 -82t31 -84z" />
72
+ <glyph unicode="Z" horiz-adv-x="1462" d="M63 893v539h1344l4 -273l-749 -889h380v262h363v-532h-1354v266l746 893h-385v-266h-349z" />
73
+ <glyph unicode="[" horiz-adv-x="794" d="M793 -430h-510v2097h512v-268h-123v-1561h121v-268z" />
74
+ <glyph unicode="\" horiz-adv-x="823" d="M0 1497h332l594 -1814h-332z" />
75
+ <glyph unicode="]" horiz-adv-x="794" d="M2 -430h510v2097h-512v-268h123v-1561h-121v-268z" />
76
+ <glyph unicode="_" d="M86 -90h1104v-111h-1104v111z" />
77
+ <glyph unicode="a" horiz-adv-x="1228" d="M160 700l-86 238q242 145 446 145q100 0 191.5 -20.5t176.5 -65.5t136 -132t51 -203v-400h123v-262h-438l-49 92q-51 -70 -129 -100.5t-148 -30.5q-162 0 -282.5 88t-120.5 254q0 170 124 273.5t302 103.5q55 0 103 -16.5t69.5 -31t29.5 -24.5v72q0 115 -194 115 q-135 -1 -305 -95zM659 295v78q-35 59 -120 59q-119 0 -119 -108q0 -43 30.5 -70t77.5 -27q43 0 79 20.5t52 47.5z" />
78
+ <glyph unicode="b" horiz-adv-x="1343" d="M63 0v266h87v1002h-87v268h496v-592q33 39 113 67.5t155 28.5q223 0 350 -158q122 -154 122 -364q0 -7 -1 -14q-4 -240 -131 -383.5t-342 -143.5q-74 0 -128 14.5t-80.5 31t-61.5 47.5l-31 -70h-461zM848 500q0 98 -41 175t-107 77q-63 0 -107 -73q-39 -64 -39 -162 q0 -14 1 -28q0 -102 44 -173.5t103 -71.5q66 0 106 69.5t40 186.5z" />
79
+ <glyph unicode="c" horiz-adv-x="1087" d="M1038 561h-301q-4 88 -34.5 151.5t-94.5 63.5q-86 0 -133 -76.5t-47 -185.5q0 -102 57.5 -171t153.5 -71h5q136 0 243 117l180 -209q-80 -88 -213 -148.5t-289 -60.5q-240 0 -401.5 143.5t-161.5 403.5q0 256 145.5 390t358.5 134q158 0 256 -116l35 98h241v-463z" />
80
+ <glyph unicode="d" horiz-adv-x="1298" d="M754 1270h-95v266h510v-1270h99v-266h-480l-34 76q-102 -94 -258 -94q-211 0 -343.5 159.5t-132.5 380.5q0 231 139.5 376.5t336.5 145.5q135 0 258 -77v303zM461 522q0 -98 41 -175t106 -77q63 0 108 73q39 64 38 162v27q0 102 -44 174t-104 72q-66 0 -105.5 -69.5 t-39.5 -186.5z" />
81
+ <glyph unicode="e" horiz-adv-x="1110" d="M907 340l172 -199q-207 -178 -528 -178q-215 0 -378 141.5t-163 413.5q0 246 156 390.5t395 144.5q180 0 312.5 -83t177.5 -214q23 -66 27 -156q1 -14 1 -27q0 -78 -24 -163h-645q6 -31 14 -51.5t29.5 -52.5t64.5 -48t103 -16q167 0 286 98zM416 612h309q-2 74 -32.5 119 t-119.5 45q-82 0 -117.5 -53.5t-39.5 -110.5z" />
82
+ <glyph unicode="f" horiz-adv-x="790" d="M842 1522l-123 -236q-45 20 -113 21q-66 0 -65 -109v-174h186v-266h-186v-490h123v-268h-611v268h82v490h-84v266h84v174q0 43 6 84t31 97.5t66 96.5t119.5 68.5t183.5 28.5q80 0 170 -15.5t131 -35.5z" />
83
+ <glyph unicode="g" horiz-adv-x="1310" d="M49 -240l109 228q49 -43 151.5 -87t204.5 -44q125 0 181.5 57t56.5 135v70q-88 -113 -240 -113q-246 0 -369 148.5t-123 363.5q0 244 133.5 385t381.5 141q63 0 123.5 -25.5t93.5 -57.5l41 63h487v-268h-123v-613q0 -262 -161.5 -411.5t-477.5 -151.5q-152 2 -272.5 56 t-196.5 124zM457 522q0 -98 41 -175t106 -77q63 0 108 73q39 64 38 162v27q0 102 -44 174t-104 72q-66 0 -105.5 -69.5t-39.5 -186.5z" />
84
+ <glyph unicode="h" horiz-adv-x="1353" d="M694 0h-643v268h86v1002h-86v266h496v-639q25 41 124 102.5t197 61.5q113 0 189 -38t110.5 -108.5t47 -140t12.5 -164.5v-342h96v-268h-526v557q0 39 -2 61.5t-12.5 57.5t-37 53.5t-69.5 18.5q-129 0 -129 -191v-289h147v-268z" />
85
+ <glyph unicode="i" horiz-adv-x="675" d="M109 1323q0 78 60 143.5t160.5 65.5t163 -65.5t62.5 -143.5q0 -88 -60.5 -147.5t-164.5 -59.5q-92 0 -156.5 64.5t-64.5 142.5zM625 0h-574v268h86v490h-86v266h475v-756h99v-268z" />
86
+ <glyph unicode="j" horiz-adv-x="737" d="M233 1323q0 78 60.5 143.5t161 65.5t163 -65.5t62.5 -143.5q0 -88 -60.5 -147.5t-164.5 -59.5q-92 0 -157 64.5t-65 142.5zM262 758h-86v266h475v-881q0 -86 -12 -157.5t-51 -151.5t-104.5 -135t-181.5 -91t-273 -36v274q68 0 114.5 24t69.5 51.5t35 77.5t13 74.5t1 69.5 v615z" />
87
+ <glyph unicode="k" horiz-adv-x="1339" d="M78 0v266h84v1002h-84v268h473v-926l237 142h-147v270h573v-270h-157l-139 -88l276 -396h102v-268h-606v268h86l-155 221l-72 -49v-172h76v-268h-547z" />
88
+ <glyph unicode="l" horiz-adv-x="679" d="M649 0h-598v268h88v1004h-86v264h475v-1268h121v-268z" />
89
+ <glyph unicode="m" horiz-adv-x="1859" d="M659 0h-608v268h86v484h-86v270h387l45 -121q125 150 256 150q72 0 128.5 -14.5t92 -42t51 -46t33.5 -45.5q131 147 302 148q119 0 198.5 -40t117.5 -115t52.5 -152.5t14.5 -184.5v-283h100v-276h-520v502q0 12 1 44t1 50t-2 46t-7.5 45.5t-13.5 34.5t-22.5 25.5 t-34.5 8.5q-61 0 -85 -38t-24 -112v-332h123v-274h-530v522q0 137 -14.5 185.5t-71.5 48.5q-92 0 -92 -123v-365h122v-268z" />
90
+ <glyph unicode="n" horiz-adv-x="1325" d="M682 0h-631v268h86v490h-86v266h436l48 -127q119 164 292 164q92 0 161 -26.5t108 -68.5t62.5 -104.5t31.5 -121t8 -130.5v-342h96v-268h-516v559v48q0 11 -5 47t-16.5 50.5t-35 30t-57.5 15.5q-129 0 -129 -191v-291h147v-268z" />
91
+ <glyph unicode="o" horiz-adv-x="1175" d="M594 -27q-238 0 -406 143q-166 141 -165 394q0 248 168 394q167 144 393 145q250 -4 407 -148q162 -147 162 -399q0 -243 -158 -385q-159 -144 -401 -144zM594 236q63 0 101 76.5t38 195.5t-40 195.5t-109 78.5q-59 0 -100.5 -77.5t-41.5 -190.5q0 -125 43 -201.5 t109 -76.5z" />
92
+ <glyph unicode="p" horiz-adv-x="1306" d="M51 -150h86v902h-86v272h469l35 -72q119 88 248 88q229 0 356 -153.5t127 -382.5q0 -240 -132 -383.5t-335 -143.5q-172 0 -266 80v-207h111v-268h-613v268zM846 500q0 98 -41 175t-107 77q-63 0 -107 -73q-39 -64 -39 -162q0 -14 1 -28q0 -102 44 -173.5t103 -71.5 q66 0 106 69.5t40 186.5z" />
93
+ <glyph unicode="q" horiz-adv-x="1351" d="M651 -203h133v271q-104 -86 -262 -86q-201 0 -336 147t-135 389q0 256 137.5 391t352.5 135q88 0 155.5 -27.5t87.5 -53.5l39 61h477v-266h-100v-955h100v-274h-649v268zM784 526q0 98 -41 175t-106 77q-63 0 -108 -72q-39 -64 -38 -162q0 -14 1 -28q0 -102 44 -174 t103 -72q66 0 105.5 69.5t39.5 186.5z" />
94
+ <glyph unicode="r" horiz-adv-x="847" d="M631 0h-580v268h90v490h-88v266h385l62 -131q25 45 44 70.5t54 55.5t89 43t130 13v-368q-147 0 -218 -49.5t-71 -178.5v-211h103v-268z" />
95
+ <glyph unicode="s" horiz-adv-x="1040" d="M31 0v369h274q0 -49 44 -83t89 -44.5t84 -10.5q90 0 90 70q0 18 -16 31.5t-48 24t-66 19.5l-84 22q-50 13 -87 26q-272 96 -272 328q0 143 115.5 220t244.5 77q102 0 187.5 -46.5t118.5 -113.5l16 135h252v-369h-266q0 63 -64.5 109.5t-144.5 46.5t-80 -74 q0 -16 12 -29.5t41 -26.5t51.5 -21.5t72.5 -24.5l75 -25q80 -27 120.5 -45t98 -56t84 -94.5t26.5 -131.5q0 -139 -112.5 -223.5t-268.5 -84.5q-104 0 -189 43t-124 107l-18 -125h-256z" />
96
+ <glyph unicode="t" horiz-adv-x="743" d="M31 1024h110v188l377 121v-309h195v-266h-195v-365q0 -8 -1 -29.5t0 -34t2 -29.5t5 -27.5t11.5 -21.5t19.5 -16.5t29 -5.5q47 0 129 35v-262q-41 -16 -122 -27.5t-126 -11.5q-90 0 -150.5 21.5t-94.5 52.5t-51 94.5t-21.5 114.5t-6.5 147v365h-110v266z" />
97
+ <glyph unicode="u" d="M31 1024h495v-494q0 -135 24.5 -196.5t86.5 -61.5q55 0 92 44t37 112v326h-135v270h530v-752h101v-272h-388l-55 129l-20 -23q-20 -25 -28 -31l-30 -29q-23 -22 -41 -30t-44.5 -21t-58.5 -18.5t-69 -5.5q-227 0 -319 119t-92 381v283h-86v270z" />
98
+ <glyph unicode="v" horiz-adv-x="1255" d="M668 332h8q4 94 61 225l99 207h-109v260h528v-260h-106l-354 -764h-318l-381 764h-96v260h623v-260h-103l94 -217q46 -133 54 -215z" />
99
+ <glyph unicode="w" horiz-adv-x="1785" d="M578 313h4q20 268 84 482l65 229h379l78 -266q59 -188 88 -445h4q18 193 55 324l35 121h-84v266h500v-266h-84l-240 -758h-432l-141 463l-148 -463h-422l-231 758h-88v266h551v-266h-70l45 -150q42 -139 52 -295z" />
100
+ <glyph unicode="x" horiz-adv-x="1329" d="M768 1024h522v-256h-135l-217 -219l258 -295h96v-254h-653v254h96l-155 166l-148 -166h133v-254h-524v254h137l209 235l-254 279h-92v256h664v-256h-97l144 -156l153 156h-137v256z" />
101
+ <glyph unicode="y" horiz-adv-x="1187" d="M782 764h-94v260h520v-254h-98l-389 -946q-23 -49 -40 -80t-54 -76t-80 -70.5t-111.5 -44t-154.5 -18.5q-139 8 -248 103l153 241q68 -59 119 -69q9 -2 18 -2q34 0 62 26q35 33 51 84l29 86l-399 758h-84v262h630v-260h-96l133 -320z" />
102
+ <glyph unicode="z" horiz-adv-x="1132" d="M51 614v410h1014v-264l-487 -492h215v140h288v-408h-1030v268l494 492h-228v-146h-266z" />
103
+ <glyph unicode="{" horiz-adv-x="921" d="M532 1669l211 -217q-115 -27 -170 -64.5t-57 -85t7 -106.5t23.5 -128t-5.5 -153q-18 -82 -113 -276q70 -176 84 -252q18 -92 4 -167t-21.5 -140.5t0 -116.5t68 -95t180.5 -77l-211 -219q-123 39 -197.5 92t-103 112.5t-39 130t-2 145.5t5.5 160t-16 171 q-8 37 -39.5 100.5t-60.5 110.5l-29 45q137 201 160 293q23 88 22.5 196.5t-3.5 181t14.5 147.5t87 127t200.5 85z" />
104
+ <glyph unicode="|" horiz-adv-x="819" d="M313 -207v1882h191v-1882h-191z" />
105
+ <glyph unicode="}" horiz-adv-x="921" d="M446 1669l-210 -217q115 -27 170 -64.5t57 -85t-7.5 -106.5t-23.5 -128t6 -153q18 -82 113 -276q-70 -176 -84 -252q-18 -92 -4 -167t21.5 -140.5t0 -116.5t-68 -95t-180.5 -77l210 -219q123 39 198 92t103.5 112.5t39 130t2 145.5t-5.5 160t16 171q8 37 39.5 100.5 t60.5 110.5l29 45q-137 201 -160 293q-23 88 -23 196.5t3.5 181t-14 147.5t-87.5 127t-201 85z" />
106
+ <glyph unicode="~" horiz-adv-x="819" d="M0 629v-223q57 55 163.5 70.5t221.5 -27.5q92 -45 234.5 -44t195.5 64v223q-47 -57 -152.5 -78.5t-228.5 23.5q-113 55 -243 51t-191 -59z" />
107
+ <glyph unicode="&#xa3;" horiz-adv-x="1454" d="M1399 1432v-332q-88 76 -221.5 130t-272.5 52t-200 -92q-31 -43 -35 -98.5t9 -102.5t42 -115h459v-102h-414q41 -94 59.5 -161.5t11 -162t-58.5 -176.5h264v260h344v-532h-1146v272h112q23 37 37 75t22.5 65.5t3.5 67.5t-5 57.5t-18 62.5l-21 55q-4 10 -30 60.5t-28 56.5 h-293v102h250q-66 178 4 365q74 199 269.5 295t430.5 67.5t425 -169.5z" />
108
+ <glyph unicode="&#xa5;" horiz-adv-x="1370" d="M973 629l-72 -125v-39h500v-103h-500v-96h115v-266h-656v266h117v96h-502v103h502v43l-71 121h-431v102h369l-264 438h-100v263h700v-263h-107l119 -217q6 -16 33 -81.5t31 -84.5h8q4 18 76 177l112 206h-112v263h551v-263h-111l-250 -438h371v-102h-428z" />
109
+ <glyph unicode="&#xa9;" horiz-adv-x="1705" d="M100 664q0 98 31 200.5t94.5 198.5t151.5 171t211 120t262 45q174 0 320.5 -68.5t239.5 -177.5t144.5 -237t51.5 -252q0 -315 -200 -520t-556 -205q-317 0 -533.5 221t-216.5 504zM291 664q0 -211 161.5 -376t397.5 -165q266 0 415.5 152.5t149.5 388.5 q0 203 -156.5 376.5t-408.5 173.5q-170 0 -302 -88t-194.5 -210.5t-62.5 -251.5zM1192 690h-213q-2 61 -23.5 106.5t-66.5 45.5q-61 0 -96 -55.5t-35 -129t42 -124t111 -50.5q98 0 176 82l127 -145q-57 -63 -152 -107.5t-206 -44.5q-170 0 -284.5 102.5t-114.5 291.5 q0 182 103.5 276t254.5 94q111 0 182 -84l23 72h172v-330z" />
110
+ <glyph unicode="&#xaa;" horiz-adv-x="1228" d="M160 700l-86 238q242 145 446 145q100 0 191.5 -20.5t176.5 -65.5t136 -132t51 -203v-400h123v-262h-438l-49 92q-51 -70 -129 -100.5t-148 -30.5q-162 0 -282.5 88t-120.5 254q0 170 124 273.5t302 103.5q55 0 103 -16.5t69.5 -31t29.5 -24.5v72q0 115 -194 115 q-135 -1 -305 -95zM659 295v78q-35 59 -120 59q-119 0 -119 -108q0 -43 30.5 -70t77.5 -27q43 0 79 20.5t52 47.5z" />
111
+ <glyph unicode="&#xab;" horiz-adv-x="1433" d="M664 1229l-510 -512v-287l557 -512l77 213l-403 432l403 436zM1155 1229l-510 -512v-287l557 -512l78 213l-403 432l403 436z" />
112
+ <glyph unicode="&#xad;" horiz-adv-x="790" d="M96 625h594v-273h-594v273z" />
113
+ <glyph unicode="&#xae;" horiz-adv-x="1705" d="M100 664q0 98 31 200.5t94.5 198.5t151.5 171t211 120t262 45q174 0 320.5 -68.5t239.5 -177.5t144.5 -237t51.5 -252q0 -315 -200 -520t-556 -205q-317 0 -533.5 221t-216.5 504zM291 664q0 -211 161.5 -376t397.5 -165q266 0 415.5 152.5t149.5 388.5 q0 203 -156.5 376.5t-408.5 173.5q-170 0 -302 -88t-194.5 -210.5t-62.5 -251.5zM510 1030h356q174 0 236.5 -58.5t62.5 -166.5q0 -61 -44 -102t-113 -52q59 -16 101 -59t42 -98q0 -76 27 -76q23 0 22 35v36h76v-61q0 -76 -38 -125t-122 -49q-203 0 -203 203 q0 76 -22.5 100.5t-95.5 24.5v-170h67v-142h-352v142h63v473h-63v145zM795 887v-185h49q106 0 106 89q0 96 -102 96h-53z" />
114
+ <glyph unicode="&#xb1;" d="M750 934h342v-223h-342v-344h-224v344h-342v223h342v340h224v-340zM184 37v223h908v-223h-908z" />
115
+ <glyph unicode="&#xb2;" horiz-adv-x="819" d="M252 1161l-119 125q123 135 283 135q113 0 186.5 -66.5t73.5 -172.5q0 -88 -37 -133t-135 -111q-133 -86 -166 -145h192v88h183v-234h-586v160q45 72 74.5 106.5t83.5 75.5q23 18 80 57t84.5 67t27.5 58q0 72 -94 72q-27 0 -54.5 -15.5t-38.5 -27.5t-38 -39z" />
116
+ <glyph unicode="&#xb3;" horiz-adv-x="819" d="M262 1204l-106 129q35 37 100.5 69t132.5 32q131 0 204 -61.5t73 -168.5q0 -74 -80 -137q100 -76 100 -178q0 -115 -89 -177.5t-208 -62.5q-78 0 -150.5 37t-105.5 86l109 115q82 -70 147 -70q96 0 96 82t-96 82h-78v127h78q43 0 69.5 20.5t26.5 55.5q0 41 -29.5 63.5 t-66.5 22.5q-66 0 -127 -66z" />
117
+ <glyph unicode="&#xb9;" horiz-adv-x="1015" d="M145 936l-94 227l42 21l44 21l39 21q29 15 43 26l41 31q27 19 47 40l48 48q28 28 55 61h364v-1160h191v-272h-820v272h205v760z" />
118
+ <glyph unicode="&#xba;" horiz-adv-x="1175" d="M594 -27q-238 0 -406 143q-166 141 -165 394q0 248 168 394q167 144 393 145q250 -4 407 -148q162 -147 162 -399q0 -243 -158 -385q-159 -144 -401 -144zM594 236q63 0 101 76.5t38 195.5t-40 195.5t-109 78.5q-59 0 -100.5 -77.5t-41.5 -190.5q0 -125 43 -201.5 t109 -76.5z" />
119
+ <glyph unicode="&#xbb;" horiz-adv-x="1433" d="M279 1229l509 -512v-287l-557 -512l-77 213l403 432l-403 436zM770 1229l510 -512v-287l-557 -512l-78 213l404 432l-404 436z" />
120
+ <glyph unicode="&#xbf;" horiz-adv-x="1064" d="M764 741q0 -84 -64.5 -150.5t-169.5 -66.5q-106 0 -174.5 63.5t-68.5 153.5q0 88 67.5 149.5t175.5 61.5q98 0 166 -64.5t68 -146.5zM803 -27l221 -223q-227 -264 -532 -264q-213 0 -350.5 109.5t-137.5 310.5q0 74 34 136t82 104t95 77t81 70t34 67v113h381v-164 q0 -63 -51.5 -126.5t-112 -105.5t-111.5 -90t-51 -85q0 -96 152 -97q61 0 134 49t132 119z" />
121
+ <glyph unicode="&#xc0;" horiz-adv-x="1685" d="M535 1700l141 196l268 -368l-176 -90zM1655 0h-821v268h194l-43 140h-420l-43 -140h160v-268h-651v268h139l276 899h-84v265h787l362 -1164h144v-268zM641 653h268l-135 443z" />
122
+ <glyph unicode="&#xc1;" horiz-adv-x="1685" d="M1006 1700l-142 196l-268 -368l176 -90zM1655 0h-821v268h194l-43 140h-420l-43 -140h160v-268h-651v268h139l276 899h-84v265h787l362 -1164h144v-268zM641 653h268l-135 443z" />
123
+ <glyph unicode="&#xc2;" horiz-adv-x="1685" d="M778 1612l240 -148l127 107l-303 229h-144l-329 -264l176 -90zM1655 0h-821v268h194l-43 140h-420l-43 -140h160v-268h-651v268h139l276 899h-84v265h787l362 -1164h144v-268zM641 653h268l-135 443z" />
124
+ <glyph unicode="&#xc3;" horiz-adv-x="1685" d="M360 1694v-224q57 55 164 70.5t221 -27.5q94 -43 236.5 -38.5t169.5 59.5v205q-143 -129 -356 -37q-113 55 -243.5 51t-191.5 -59zM1655 0h-821v268h194l-43 140h-420l-43 -140h160v-268h-651v268h139l276 899h-84v265h787l362 -1164h144v-268zM641 653h268l-135 443z " />
125
+ <glyph unicode="&#xc4;" horiz-adv-x="1685" d="M508 1657h192v-172h-192v172zM836 1657h192v-172h-192v172zM1655 0h-821v268h194l-43 140h-420l-43 -140h160v-268h-651v268h139l276 899h-84v265h787l362 -1164h144v-268zM641 653h268l-135 443z" />
126
+ <glyph unicode="&#xc5;" horiz-adv-x="1685" d="M1655 0h-821v268h194l-43 140h-420l-43 -140h160v-268h-651v268h139l276 899h-84v265h787l362 -1164h144v-268zM641 653h268l-135 443z" />
127
+ <glyph unicode="&#xc6;" horiz-adv-x="2181" d="M2159 979h-355v182h-327v-282h389v-273h-389v-334h327v191h355v-463h-1235v272h129v136h-455l-84 -140h160v-268h-651v268h139l563 899h-84v265h1518v-453zM743 653h310v443z" />
128
+ <glyph unicode="&#xc7;" horiz-adv-x="1404" d="M1135 518l239 -262q-262 -289 -620 -289q-328 0 -525.5 197.5t-197.5 537.5q0 168 59.5 314.5t151.5 240t200.5 146.5t210.5 53q211 0 316 -139l47 115h321v-582h-366q-4 109 -59.5 183.5t-157.5 74.5q-109 0 -176.5 -117t-67.5 -289q0 -162 80 -273.5t219 -111.5 q31 0 62.5 8.5t58 20.5t53.5 29.5t46.5 34t40 36t30.5 31.5l22 27zM690 -18l-57 -191q104 47 190 45q74 -2 54 -59q-23 -57 -104 -74.5t-157 23.5l-16 -109l18 -4q18 -4 48 -7t67 -4t75 8t71.5 26.5t59.5 56.5t34 94q10 78 -16.5 110.5t-72.5 28.5l-96 -8l27 64h-125z" />
129
+ <glyph unicode="&#xc8;" horiz-adv-x="1337" d="M453 1706l141 197l268 -369l-176 -90zM51 1432h1235v-453h-354v182h-328v-282h389v-273h-389v-334h328v191h354v-463h-1235v272h129v889h-129v271z" />
130
+ <glyph unicode="&#xc9;" horiz-adv-x="1337" d="M874 1708l-141 197l-268 -369l176 -90zM51 1432h1235v-453h-354v182h-328v-282h389v-273h-389v-334h328v191h354v-463h-1235v272h129v889h-129v271z" />
131
+ <glyph unicode="&#xca;" horiz-adv-x="1337" d="M737 1612l240 -148l127 107l-303 229h-144l-329 -264l176 -90zM51 1432h1235v-453h-354v182h-328v-282h389v-273h-389v-334h328v191h354v-463h-1235v272h129v889h-129v271z" />
132
+ <glyph unicode="&#xcb;" horiz-adv-x="1275" d="M406 1657h192v-172h-192v172zM733 1657h193v-172h-193v172zM51 1432h1235v-453h-354v182h-328v-282h389v-273h-389v-334h328v191h354v-463h-1235v272h129v889h-129v271z" />
133
+ <glyph unicode="&#xcc;" horiz-adv-x="782" d="M158 1708l141 197l268 -369l-176 -90zM51 1432h680v-271h-127v-889h127v-272h-680v272h129v889h-129v271z" />
134
+ <glyph unicode="&#xcd;" horiz-adv-x="782" d="M629 1708l-142 197l-268 -369l176 -90zM51 1432h680v-271h-127v-889h127v-272h-680v272h129v889h-129v271z" />
135
+ <glyph unicode="&#xce;" horiz-adv-x="782" d="M389 1612l240 -148l127 107l-303 229h-144l-329 -264l176 -90zM51 1432h680v-271h-127v-889h127v-272h-680v272h129v889h-129v271z" />
136
+ <glyph unicode="&#xcf;" horiz-adv-x="782" d="M121 1677h192v-172h-192v172zM449 1677h192v-172h-192v172zM51 1432h680v-271h-127v-889h127v-272h-680v272h129v889h-129v271z" />
137
+ <glyph unicode="&#xd1;" horiz-adv-x="1671" d="M428 1694v-224q57 55 163.5 70.5t221.5 -27.5q94 -43 238.5 -38.5t191.5 59.5v205q-63 -57 -160.5 -70.5t-220.5 33.5q-113 55 -243 51t-191 -59zM1620 1167h-135v-1167h-441l-522 780v-516h158v-264h-629v264h121v903h-119v265h588l502 -752v487h-139v265h616v-265z" />
138
+ <glyph unicode="&#xd2;" horiz-adv-x="1515" d="M516 1735l141 196l269 -368l-176 -90zM764 -37q-334 0 -533.5 193.5t-199.5 566.5q0 332 200.5 539.5t518.5 207.5q367 0 551 -202.5t184 -558.5q0 -350 -188.5 -548t-532.5 -198zM764 285q96 0 152.5 115.5t56.5 308.5q0 199 -56.5 322.5t-168.5 123.5 q-94 2 -152.5 -120t-58.5 -312q0 -199 63.5 -318.5t163.5 -119.5z" />
139
+ <glyph unicode="&#xd3;" horiz-adv-x="1515" d="M983 1739l-141 196l-269 -368l177 -90zM764 -37q-334 0 -533.5 193.5t-199.5 566.5q0 332 200.5 539.5t518.5 207.5q367 0 551 -202.5t184 -558.5q0 -350 -188.5 -548t-532.5 -198zM764 285q96 0 152.5 115.5t56.5 308.5q0 199 -56.5 322.5t-168.5 123.5 q-94 2 -152.5 -120t-58.5 -312q0 -199 63.5 -318.5t163.5 -119.5z" />
140
+ <glyph unicode="&#xd4;" horiz-adv-x="1515" d="M758 1632l239 -147l127 106l-303 230h-143l-330 -265l176 -90zM764 -37q-334 0 -533.5 193.5t-199.5 566.5q0 332 200.5 539.5t518.5 207.5q367 0 551 -202.5t184 -558.5q0 -350 -188.5 -548t-532.5 -198zM764 285q96 0 152.5 115.5t56.5 308.5q0 199 -56.5 322.5 t-168.5 123.5q-94 2 -152.5 -120t-58.5 -312q0 -199 63.5 -318.5t163.5 -119.5z" />
141
+ <glyph unicode="&#xd5;" horiz-adv-x="1515" d="M342 1819v-223q57 55 163.5 70.5t221.5 -27.5q92 -45 234.5 -44t195.5 64v223q-47 -57 -152.5 -78.5t-228.5 23.5q-113 55 -243 51t-191 -59zM764 -37q-334 0 -533.5 193.5t-199.5 566.5q0 332 200.5 539.5t518.5 207.5q367 0 551 -202.5t184 -558.5q0 -350 -188.5 -548 t-532.5 -198zM764 285q96 0 152.5 115.5t56.5 308.5q0 199 -56.5 322.5t-168.5 123.5h-4q-92 0 -149 -120q-58 -122 -58 -312q0 -199 63.5 -318.5t163.5 -119.5z" />
142
+ <glyph unicode="&#xd6;" horiz-adv-x="1515" d="M487 1698h193v-172h-193v172zM815 1698h193v-172h-193v172zM764 -37q-334 0 -533.5 193.5t-199.5 566.5q0 332 200.5 539.5t518.5 207.5q367 0 551 -202.5t184 -558.5q0 -350 -188.5 -548t-532.5 -198zM764 285q96 0 152.5 115.5t56.5 308.5q0 199 -56.5 322.5 t-168.5 123.5q-94 2 -152.5 -120t-58.5 -312q0 -199 63.5 -318.5t163.5 -119.5z" />
143
+ <glyph unicode="&#xd7;" d="M152 195l294 294l-294 293l192 193l295 -293l293 293l192 -193l-293 -293l293 -294l-192 -193l-293 295l-295 -295z" />
144
+ <glyph unicode="&#xd9;" horiz-adv-x="1509" d="M555 1706l141 197l269 -369l-177 -90zM31 1432h651v-265h-111v-442q0 -233 49.5 -316t155.5 -83q70 0 111 25.5t68.5 116.5t27.5 259v434h-111v271h607v-265h-111v-497q0 -705 -588 -705q-635 18 -635 694v506h-114v267z" />
145
+ <glyph unicode="&#xda;" horiz-adv-x="1509" d="M1006 1706l-142 197l-268 -369l176 -90zM31 1432h651v-265h-111v-442q0 -233 49.5 -316t155.5 -83q70 0 111 25.5t68.5 116.5t27.5 259v434h-111v271h607v-265h-111v-497q0 -705 -588 -705q-635 18 -635 694v506h-114v267z" />
146
+ <glyph unicode="&#xdb;" horiz-adv-x="1509" d="M778 1612l240 -148l127 107l-303 229h-144l-329 -264l176 -90zM31 1432h651v-265h-111v-442q0 -233 49.5 -316t155.5 -83q70 0 111 25.5t68.5 116.5t27.5 259v434h-111v271h607v-265h-111v-497q0 -705 -588 -705q-635 18 -635 694v506h-114v267z" />
147
+ <glyph unicode="&#xdc;" horiz-adv-x="1509" d="M489 1657h193v-172h-193v172zM870 1657h193v-172h-193v172zM31 1432h651v-265h-111v-442q0 -233 49.5 -316t155.5 -83q70 0 111 25.5t68.5 116.5t27.5 259v434h-111v271h607v-265h-111v-497q0 -705 -588 -705q-635 18 -635 694v506h-114v267z" />
148
+ <glyph unicode="&#xe0;" horiz-adv-x="1228" d="M1075 262h123v-262h-438l-49 92q-51 -70 -129 -100.5t-148 -30.5q-162 0 -282.5 88t-120.5 254q0 170 124 273.5t302 103.5q55 0 103 -16.5t69.5 -31t29.5 -24.5v72q0 115 -194 115q-135 0 -305 -95l-86 238q242 145 446 145h39l-229 256l141 197l268 -369l-166 -86 q94 -4 178.5 -27.5t160 -70.5t119.5 -129t44 -192v-400zM659 295v78q-35 59 -120 59q-119 0 -119 -108q0 -43 30.5 -70t77.5 -27q43 0 79 20.5t52 47.5z" />
149
+ <glyph unicode="&#xe1;" horiz-adv-x="1228" d="M801 1339l-142 197l-268 -369l176 -90zM160 700l-86 238q242 145 446 145q100 0 191.5 -20.5t176.5 -65.5t136 -132t51 -203v-400h123v-262h-438l-49 92q-51 -70 -129 -100.5t-148 -30.5q-162 0 -282.5 88t-120.5 254q0 170 124 273.5t302 103.5q55 0 103 -16.5t69.5 -31 t29.5 -24.5v72q0 115 -194 115q-135 -1 -305 -95zM659 295v78q-35 59 -120 59q-119 0 -119 -108q0 -43 30.5 -70t77.5 -27q43 0 79 20.5t52 47.5z" />
150
+ <glyph unicode="&#xe2;" horiz-adv-x="1228" d="M516 1243l240 -147l127 106l-303 230h-144l-330 -265l177 -90zM160 700l-86 238q242 145 446 145q100 0 191.5 -20.5t176.5 -65.5t136 -132t51 -203v-400h123v-262h-438l-49 92q-51 -70 -129 -100.5t-148 -30.5q-162 0 -282.5 88t-120.5 254q0 170 124 273.5t302 103.5 q55 0 103 -16.5t69.5 -31t29.5 -24.5v72q0 115 -194 115q-135 -1 -305 -95zM659 295v78q-35 59 -120 59q-119 0 -119 -108q0 -43 30.5 -70t77.5 -27q43 0 79 20.5t52 47.5z" />
151
+ <glyph unicode="&#xe3;" horiz-adv-x="1228" d="M162 1366v-223q57 55 163.5 70.5t221.5 -27.5q94 -43 238.5 -39t191.5 59v205q-63 -57 -160.5 -70.5t-220.5 33.5q-113 55 -243 51t-191 -59zM160 700l-86 238q242 145 446 145q100 0 191.5 -20.5t176.5 -65.5t136 -132t51 -203v-400h123v-262h-438l-49 92 q-51 -70 -129 -100.5t-148 -30.5q-162 0 -282.5 88t-120.5 254q0 170 124 273.5t302 103.5q55 0 103 -16.5t69.5 -31t29.5 -24.5v72q0 115 -194 115q-135 -1 -305 -95zM659 295v78q-35 59 -120 59q-119 0 -119 -108q0 -43 30.5 -70t77.5 -27q43 0 79 20.5t52 47.5z" />
152
+ <glyph unicode="&#xe4;" horiz-adv-x="1228" d="M260 1370h193v-172h-193v172zM588 1370h192v-172h-192v172zM160 700l-86 238q242 145 446 145q100 0 191.5 -20.5t176.5 -65.5t136 -132t51 -203v-400h123v-262h-438l-49 92q-51 -70 -129 -100.5t-148 -30.5q-162 0 -282.5 88t-120.5 254q0 170 124 273.5t302 103.5 q55 0 103 -16.5t69.5 -31t29.5 -24.5v72q0 115 -194 115q-135 -1 -305 -95zM659 295v78q-35 59 -120 59q-119 0 -119 -108q0 -43 30.5 -70t77.5 -27q43 0 79 20.5t52 47.5z" />
153
+ <glyph unicode="&#xe5;" horiz-adv-x="1228" d="M160 700l-86 238q242 145 446 145q100 0 191.5 -20.5t176.5 -65.5t136 -132t51 -203v-400h123v-262h-438l-49 92q-51 -70 -129 -100.5t-148 -30.5q-162 0 -282.5 88t-120.5 254q0 170 124 273.5t302 103.5q55 0 103 -16.5t69.5 -31t29.5 -24.5v72q0 115 -194 115 q-135 -1 -305 -95zM659 295v78q-35 59 -120 59q-119 0 -119 -108q0 -43 30.5 -70t77.5 -27q43 0 79 20.5t52 47.5z" />
154
+ <glyph unicode="&#xe6;" horiz-adv-x="1912" d="M1710 340l172 -199q-207 -178 -528 -178q-129 0 -247 53.5t-194 159.5q-84 -215 -479 -215q-162 0 -282.5 88t-120.5 254q0 170 124 273.5t302 103.5q55 0 103 -16.5t69.5 -31t29.5 -24.5v72q0 115 -194 115q-135 0 -305 -95l-86 238q242 145 446 145q315 0 463 -161 q154 131 381 131q180 0 312 -83t177 -214q23 -66 28 -156t-23 -190h-646q6 -31 14.5 -51.5t30 -52.5t64.5 -48t102 -16q168 0 287 98zM1219 612h309q-2 74 -33 119t-119 45q-82 0 -117.5 -53.5t-39.5 -110.5zM659 295v78q-35 59 -120 59q-119 0 -119 -108q0 -43 30.5 -70 t77.5 -27q43 0 79 20.5t52 47.5z" />
155
+ <glyph unicode="&#xe7;" horiz-adv-x="1087" d="M887 389l180 -209q-76 -82 -203 -142.5t-274 -66.5l-17 -43l83 9q40 4 62.5 -26t14.5 -95q-10 -66 -47 -104t-83 -47t-89 -8t-74 7l-30 6l16 92q66 -33 136.5 -18.5t86.5 61.5q18 53 -53 54q-68 -2 -158 -39l47 155q-211 25 -347 165.5t-136 377.5q0 256 145.5 390 t358.5 134q158 0 256 -116l35 98h241v-463h-301q-4 88 -34.5 151.5t-94.5 63.5q-86 0 -133 -76.5t-47 -185.5q0 -102 57.5 -171t153.5 -71q139 -2 248 117z" />
156
+ <glyph unicode="&#xe8;" horiz-adv-x="1110" d="M330 1339l141 197l268 -369l-176 -90zM907 340l172 -199q-207 -178 -528 -178q-215 0 -378 141.5t-163 413.5q0 246 156 390.5t395 144.5q180 0 312.5 -83t177.5 -214q23 -66 27.5 -156t-23.5 -190h-645q6 -31 14 -51.5t29.5 -52.5t64.5 -48t103 -16q167 0 286 98z M416 612h309q-2 74 -32.5 119t-119.5 45q-82 0 -117.5 -53.5t-39.5 -110.5z" />
157
+ <glyph unicode="&#xe9;" horiz-adv-x="1110" d="M793 1339l-142 197l-268 -369l176 -90zM907 340l172 -199q-207 -178 -528 -178q-215 0 -378 141.5t-163 413.5q0 246 156 390.5t395 144.5q180 0 312.5 -83t177.5 -214q23 -66 27.5 -156t-23.5 -190h-645q6 -31 14 -51.5t29.5 -52.5t64.5 -48t103 -16q167 0 286 98z M416 612h309q-2 74 -32.5 119t-119.5 45q-82 0 -117.5 -53.5t-39.5 -110.5z" />
158
+ <glyph unicode="&#xea;" horiz-adv-x="1110" d="M567 1243l240 -147l127 106l-303 230h-144l-329 -265l176 -90zM907 340l172 -199q-207 -178 -528 -178q-215 0 -378 141.5t-163 413.5q0 246 156 390.5t395 144.5q180 0 312.5 -83t177.5 -214q23 -66 27.5 -156t-23.5 -190h-645q6 -31 14 -51.5t29.5 -52.5t64.5 -48 t103 -16q167 0 286 98zM416 612h309q-2 74 -32.5 119t-119.5 45q-82 0 -117.5 -53.5t-39.5 -110.5z" />
159
+ <glyph unicode="&#xeb;" horiz-adv-x="1110" d="M299 1370h193v-172h-193v172zM627 1370h192v-172h-192v172zM907 340l172 -199q-207 -178 -528 -178q-215 0 -378 141.5t-163 413.5q0 246 156 390.5t395 144.5q180 0 312.5 -83t177.5 -214q23 -66 27.5 -156t-23.5 -190h-645q6 -31 14 -51.5t29.5 -52.5t64.5 -48t103 -16 q167 0 286 98zM416 612h309q-2 74 -32.5 119t-119.5 45q-82 0 -117.5 -53.5t-39.5 -110.5z" />
160
+ <glyph unicode="&#xec;" horiz-adv-x="675" d="M104 1339l142 197l268 -369l-176 -90zM625 0h-574v268h86v490h-86v266h475v-756h99v-268z" />
161
+ <glyph unicode="&#xed;" horiz-adv-x="675" d="M547 1339l-141 197l-269 -369l176 -90zM625 0h-574v268h86v490h-86v266h475v-756h99v-268z" />
162
+ <glyph unicode="&#xee;" horiz-adv-x="675" d="M307 1243l240 -147l127 106l-303 230h-144l-329 -265l176 -90zM625 0h-574v268h86v490h-86v266h475v-756h99v-268z" />
163
+ <glyph unicode="&#xef;" horiz-adv-x="675" d="M53 1370h193v-172h-193v172zM334 1370h192v-172h-192v172zM625 0h-574v268h86v490h-86v266h475v-756h99v-268z" />
164
+ <glyph unicode="&#xf1;" horiz-adv-x="1325" d="M244 1366v-223q57 55 163.5 70.5t221.5 -27.5q94 -43 238.5 -39t191.5 59v205q-63 -57 -160.5 -70.5t-220.5 33.5q-113 55 -243 51t-191 -59zM682 0h-631v268h86v490h-86v266h436l48 -127q119 164 292 164q92 0 161 -26.5t108 -68.5t62.5 -104.5t31.5 -121t8 -130.5v-342 h96v-268h-516v559v48q0 11 -5 47t-16.5 50.5t-35 30t-57.5 15.5q-129 0 -129 -191v-291h147v-268z" />
165
+ <glyph unicode="&#xf2;" horiz-adv-x="1175" d="M348 1315l141 196l269 -368l-176 -90zM594 -27q-238 0 -406 142.5t-165 400.5q2 244 168.5 388.5t392.5 144.5q250 -4 407.5 -147.5t161.5 -393.5q2 -248 -157.5 -391.5t-401.5 -143.5zM594 236q63 0 101 76.5t38 195.5t-40 195.5t-109 78.5q-59 0 -100.5 -77.5 t-41.5 -190.5q0 -125 43 -201.5t109 -76.5z" />
166
+ <glyph unicode="&#xf3;" horiz-adv-x="1175" d="M819 1315l-141 196l-268 -368l176 -90zM594 -27q-238 0 -406 142.5t-165 400.5q2 244 168.5 388.5t392.5 144.5q250 -4 407.5 -147.5t161.5 -393.5q2 -248 -157.5 -391.5t-401.5 -143.5zM594 236q63 0 101 76.5t38 195.5t-40 195.5t-109 78.5q-59 0 -100.5 -77.5 t-41.5 -190.5q0 -125 43 -201.5t109 -76.5z" />
167
+ <glyph unicode="&#xf4;" horiz-adv-x="1175" d="M584 1243l239 -147l127 106l-303 230h-143l-330 -265l176 -90zM594 -27q-238 0 -406 142.5t-165 400.5q2 244 168.5 388.5t392.5 144.5q250 -4 407.5 -147.5t161.5 -393.5q2 -248 -157.5 -391.5t-401.5 -143.5zM594 236q63 0 101 76.5t38 195.5t-40 195.5t-109 78.5 q-59 0 -100.5 -77.5t-41.5 -190.5q0 -125 43 -201.5t109 -76.5z" />
168
+ <glyph unicode="&#xf5;" horiz-adv-x="1175" d="M176 1397v-223q57 55 163.5 70.5t221.5 -27.5q92 -45 234.5 -44t195.5 64v223q-47 -57 -152.5 -78.5t-228.5 23.5q-113 55 -243 51t-191 -59zM594 -27q-238 0 -406 143q-166 141 -165 394q0 248 168 394q167 144 393 145q250 -4 407 -148q162 -147 162 -399 q0 -243 -158 -385q-159 -144 -401 -144zM594 236q63 0 101 76.5t38 195.5t-40 195.5t-109 78.5q-59 0 -100.5 -77.5t-41.5 -190.5q0 -125 43 -201.5t109 -76.5z" />
169
+ <glyph unicode="&#xf6;" horiz-adv-x="1175" d="M324 1370h192v-172h-192v172zM651 1370h193v-172h-193v172zM594 -27q-238 0 -406 142.5t-165 400.5q2 244 168.5 388.5t392.5 144.5q250 -4 407.5 -147.5t161.5 -393.5q2 -248 -157.5 -391.5t-401.5 -143.5zM594 236q63 0 101 76.5t38 195.5t-40 195.5t-109 78.5 q-59 0 -100.5 -77.5t-41.5 -190.5q0 -125 43 -201.5t109 -76.5z" />
170
+ <glyph unicode="&#xf7;" d="M420 913q0 86 62.5 158t164.5 72q104 0 168 -73t64 -157q0 -94 -62.5 -155.5t-169.5 -61.5q-92 0 -159.5 67.5t-67.5 149.5zM86 627h1104v-111h-1104v111zM420 221q0 86 62.5 158t164.5 72q104 0 168 -73t64 -157q0 -92 -64.5 -154.5t-167.5 -62.5q-96 0 -161.5 66.5 t-65.5 150.5z" />
171
+ <glyph unicode="&#xf9;" d="M330 1339l141 197l268 -369l-176 -90zM31 1024h495v-494q0 -135 24.5 -196.5t86.5 -61.5q55 0 92 44t37 112v326h-135v270h530v-752h101v-272h-388l-55 129l-20 -23q-20 -25 -28 -31l-30 -29q-23 -22 -41 -30t-44.5 -21t-58.5 -18.5t-69 -5.5q-227 0 -319 119t-92 381 v283h-86v270z" />
172
+ <glyph unicode="&#xfa;" d="M821 1339l-141 197l-268 -369l176 -90zM31 1024h495v-494q0 -135 24.5 -196.5t86.5 -61.5q55 0 92 44t37 112v326h-135v270h530v-752h101v-272h-388l-55 129l-20 -23q-20 -25 -28 -31l-30 -29q-23 -22 -41 -30t-44.5 -21t-58.5 -18.5t-69 -5.5q-227 0 -319 119t-92 381 v283h-86v270z" />
173
+ <glyph unicode="&#xfb;" d="M588 1243l239 -147l127 106l-303 230h-143l-330 -265l176 -90zM31 1024h495v-494q0 -135 24.5 -196.5t86.5 -61.5q55 0 92 44t37 112v326h-135v270h530v-752h101v-272h-388l-55 129l-20 -23q-20 -25 -28 -31l-30 -29q-23 -22 -41 -30t-44.5 -21t-58.5 -18.5t-69 -5.5 q-227 0 -319 119t-92 381v283h-86v270z" />
174
+ <glyph unicode="&#xfc;" d="M299 1370h193v-172h-193v172zM627 1370h192v-172h-192v172zM31 1024h495v-494q0 -135 24.5 -196.5t86.5 -61.5q55 0 92 44t37 112v326h-135v270h530v-752h101v-272h-388l-55 129l-20 -23q-20 -25 -28 -31l-30 -29q-23 -22 -41 -30t-44.5 -21t-58.5 -18.5t-69 -5.5 q-227 0 -319 119t-92 381v283h-86v270z" />
175
+ <glyph unicode="&#x152;" horiz-adv-x="2181" d="M2255 979h-354v182h-328v-282h389v-273h-389v-334h328v191h354v-463h-1235v96q-162 -98 -393 -98q-317 0 -508 185.5t-191 539.5q0 315 190.5 514t493.5 199q242 0 408 -99v95h1235v-453zM627 305q92 0 145 110.5t53 293.5q0 188 -53 308t-162 120q-88 0 -144 -116 t-56 -298q0 -188 61.5 -303t155.5 -115z" />
176
+ <glyph unicode="&#x153;" horiz-adv-x="1916" d="M1714 340l172 -199q-207 -178 -528 -178q-221 0 -373 137q-152 -127 -383 -127q-238 0 -405.5 142.5t-165.5 400.5q2 244 169 388.5t392 144.5q238 -4 391 -131q152 135 385 135q180 0 312 -83t178 -214q23 -66 27.5 -156t-23.5 -190h-645q6 -31 14 -51.5t29.5 -52.5 t64.5 -48t102 -16q168 0 287 98zM602 236q63 0 101 76.5t38 195.5t-39.5 195.5t-109.5 78.5q-59 0 -100 -77.5t-41 -190.5q0 -125 42.5 -201.5t108.5 -76.5zM1223 612h309q-2 74 -33 119t-119 45q-82 0 -117.5 -53.5t-39.5 -110.5z" />
177
+ <glyph unicode="&#x2da;" horiz-adv-x="1705" />
178
+ <glyph unicode="&#x2dc;" horiz-adv-x="512" d="M-408 348v-223q57 55 163.5 70.5t221.5 -27.5q92 -45 234.5 -44t195.5 64v223q-47 -57 -152.5 -78.5t-228.5 23.5q-113 55 -243 51t-191 -59z" />
179
+ <glyph unicode="&#x2000;" horiz-adv-x="966" />
180
+ <glyph unicode="&#x2001;" horiz-adv-x="1935" />
181
+ <glyph unicode="&#x2002;" horiz-adv-x="966" />
182
+ <glyph unicode="&#x2003;" horiz-adv-x="1935" />
183
+ <glyph unicode="&#x2004;" horiz-adv-x="645" />
184
+ <glyph unicode="&#x2005;" horiz-adv-x="483" />
185
+ <glyph unicode="&#x2006;" horiz-adv-x="321" />
186
+ <glyph unicode="&#x2007;" horiz-adv-x="321" />
187
+ <glyph unicode="&#x2008;" horiz-adv-x="241" />
188
+ <glyph unicode="&#x2009;" horiz-adv-x="387" />
189
+ <glyph unicode="&#x200a;" horiz-adv-x="106" />
190
+ <glyph unicode="&#x2010;" horiz-adv-x="790" d="M96 625h594v-273h-594v273z" />
191
+ <glyph unicode="&#x2011;" horiz-adv-x="790" d="M96 625h594v-273h-594v273z" />
192
+ <glyph unicode="&#x2012;" horiz-adv-x="790" d="M96 625h594v-273h-594v273z" />
193
+ <glyph unicode="&#x2013;" horiz-adv-x="915" d="M66 625h772v-273h-772v273z" />
194
+ <glyph unicode="&#x2014;" d="M86 625h1104v-273h-1104v273z" />
195
+ <glyph unicode="&#x2018;" horiz-adv-x="628" d="M362 1548l236 -133q-115 -145 -162 -294.5t-33 -370.5l-372 98q-6 195 81.5 376t249.5 324z" />
196
+ <glyph unicode="&#x2019;" horiz-adv-x="628" d="M266 750l-235 133q115 145 162 294.5t32 370.5l373 -98q6 -195 -82 -376t-250 -324z" />
197
+ <glyph unicode="&#x201c;" horiz-adv-x="1062" d="M336 1548l235 -133q-115 -145 -162 -294.5t-32 -370.5l-373 98q-6 195 82 376t250 324zM827 1548l236 -133q-115 -145 -162 -294.5t-33 -370.5l-372 98q-6 195 81.5 376t249.5 324z" />
198
+ <glyph unicode="&#x201d;" horiz-adv-x="1062" d="M240 750l-236 133q115 145 162 294.5t33 370.5l372 -98q6 -195 -81.5 -376t-249.5 -324zM731 750l-235 133q115 145 162 294.5t32 370.5l373 -98q6 -195 -82 -376t-250 -324z" />
199
+ <glyph unicode="&#x2022;" horiz-adv-x="712" d="M123 659q0 86 63.5 160t168 74t170 -74t65.5 -160q0 -96 -62.5 -158.5t-173.5 -62.5q-98 0 -164.5 67.5t-66.5 153.5z" />
200
+ <glyph unicode="&#x2026;" horiz-adv-x="2048" d="M238 213q0 86 63.5 159.5t167.5 73.5t170 -73.5t66 -159.5q0 -96 -62.5 -158.5t-173.5 -62.5q-98 0 -164.5 67.5t-66.5 153.5zM791 213q0 86 63.5 159.5t167.5 73.5t169.5 -73.5t65.5 -159.5q0 -96 -62 -158.5t-173 -62.5q-98 0 -164.5 67.5t-66.5 153.5zM1343 213 q0 86 63.5 159.5t168 73.5t170 -73.5t65.5 -159.5q0 -96 -62 -158.5t-173 -62.5q-98 0 -165 67.5t-67 153.5z" />
201
+ <glyph unicode="&#x202f;" horiz-adv-x="387" />
202
+ <glyph unicode="&#x2039;" horiz-adv-x="1064" d="M756 1024l-613 -307v-287l660 -307l78 213l-506 227l506 232z" />
203
+ <glyph unicode="&#x203a;" horiz-adv-x="1064" d="M268 1024l613 -307v-287l-660 -307l-78 213l506 227l-506 232z" />
204
+ <glyph unicode="&#x205f;" horiz-adv-x="483" />
205
+ <glyph unicode="&#x20ac;" horiz-adv-x="1638" d="M1188 426h411v-426h-348l-63 129q-37 -61 -127 -104t-203 -43q-236 0 -407.5 147t-219.5 401h-229l49 142h164v30v33h-141l49 142h108q49 258 224.5 418.5t388.5 160.5q70 0 130 -11t98 -25.5t71 -37t48 -38t31.5 -36t20.5 -24.5l43 148h305v-605h-366q-4 121 -72 190.5 t-162 69.5q-84 0 -150.5 -57t-101.5 -153h383l-49 -142h-362v-33v-30h340l-50 -142h-264q33 -94 98.5 -149t155.5 -55q140 0 197 100z" />
206
+ <glyph unicode="&#x2122;" horiz-adv-x="3500" d="M2917 1071h-8q-35 -190 -60 -274l-215 -797h-428l-229 817q-35 119 -43 254h-9v-807h117v-264h-555v264h111v903h-109v265h776l207 -766l197 766h780v-265h-112v-901h112v-266h-647v266h115v684v121zM1405 1432v-533h-301v262h-172v-889h170v-272h-762v272h168v889h-176 v-262h-301v533h1374z" />
207
+ <glyph unicode="&#xe000;" horiz-adv-x="1025" d="M0 1025h1025v-1025h-1025v1025z" />
208
+ <glyph unicode="&#xfb01;" horiz-adv-x="1466" d="M900 1323q0 78 60 143.5t160.5 65.5t163 -65.5t62.5 -143.5q0 -88 -60.5 -147.5t-164.5 -59.5q-92 0 -156.5 64.5t-64.5 142.5zM1416 0h-574v268h86v490h-86v266h475v-756h99v-268zM842 1522l-123 -236q-45 20 -113 21q-66 0 -65 -109v-174h186v-266h-186v-490h123v-268 h-611v268h82v490h-84v266h84v174q0 43 6 84t31 97.5t66 96.5t119.5 68.5t183.5 28.5q80 0 170 -15.5t131 -35.5z" />
209
+ <glyph unicode="&#xfb02;" horiz-adv-x="1470" d="M1440 0h-598v268h88v1004h-86v264h475v-1268h121v-268zM842 1522l-123 -236q-45 20 -113 21q-66 0 -65 -109v-174h186v-266h-186v-490h123v-268h-611v268h82v490h-84v266h84v174q0 43 6 84t31 97.5t66 96.5t119.5 68.5t183.5 28.5q80 0 170 -15.5t131 -35.5z" />
210
+ <glyph unicode="&#xfb03;" horiz-adv-x="2256" d="M1690 1323q0 78 60 143.5t160.5 65.5t163 -65.5t62.5 -143.5q0 -88 -60.5 -147.5t-164.5 -59.5q-92 0 -156.5 64.5t-64.5 142.5zM2206 0h-574v268h86v490h-86v266h475v-756h99v-268zM1633 1522l-123 -236q-45 20 -113 21q-66 0 -65 -109v-174h186v-266h-186v-490h123 v-268h-611v268h82v490h-84v266h84v174q0 43 6 84t31 97.5t66 96.5t119.5 68.5t183.5 28.5q80 0 170 -15.5t131 -35.5zM842 1522l-123 -236q-45 20 -113 21q-66 0 -65 -109v-174h186v-266h-186v-490h123v-268h-611v268h82v490h-84v266h84v174q0 43 6 84t31 97.5t66 96.5 t119.5 68.5t183.5 28.5q80 0 170 -15.5t131 -35.5z" />
211
+ <glyph unicode="&#xfb04;" horiz-adv-x="2260" d="M2230 0h-598v268h88v1004h-86v264h475v-1268h121v-268zM1633 1522l-123 -236q-45 20 -113 21q-66 0 -65 -109v-174h186v-266h-186v-490h123v-268h-611v268h82v490h-84v266h84v174q0 43 6 84t31 97.5t66 96.5t119.5 68.5t183.5 28.5q80 0 170 -15.5t131 -35.5zM842 1522 l-123 -236q-45 20 -113 21q-66 0 -65 -109v-174h186v-266h-186v-490h123v-268h-611v268h82v490h-84v266h84v174q0 43 6 84t31 97.5t66 96.5t119.5 68.5t183.5 28.5q80 0 170 -15.5t131 -35.5z" />
212
+ </font>
213
+ </defs></svg>