geoblacklight 5.3.0 → 6.0.0.pre.alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (453) hide show
  1. checksums.yaml +4 -4
  2. data/.engine_cart.yml +14 -0
  3. data/.github/workflows/ruby.yml +24 -25
  4. data/.gitignore +0 -9
  5. data/.prettierignore +4 -0
  6. data/.prettierrc +5 -0
  7. data/CONTRIBUTING.md +2 -4
  8. data/Gemfile +4 -2
  9. data/README.md +4 -4
  10. data/Rakefile +0 -22
  11. data/app/assets/stylesheets/geoblacklight/global.css +7 -0
  12. data/app/assets/stylesheets/geoblacklight/home.css +22 -0
  13. data/app/assets/stylesheets/geoblacklight/index_maps.css +36 -0
  14. data/app/assets/stylesheets/geoblacklight/record.css +39 -0
  15. data/app/assets/stylesheets/geoblacklight/search.css +56 -0
  16. data/app/assets/stylesheets/geoblacklight/viewers.css +50 -0
  17. data/app/assets/stylesheets/geoblacklight.css +14 -0
  18. data/app/components/blacklight/icons/web_services_component.rb +3 -3
  19. data/app/components/geoblacklight/accordion_component.html.erb +3 -3
  20. data/app/components/geoblacklight/accordion_component.rb +4 -0
  21. data/app/components/geoblacklight/arcgis_component.html.erb +1 -1
  22. data/app/components/geoblacklight/arcgis_component.rb +1 -1
  23. data/app/components/geoblacklight/attribute_table_component.html.erb +3 -3
  24. data/app/components/geoblacklight/data_dictionary_download_component.html.erb +1 -1
  25. data/app/components/geoblacklight/display_note_component.html.erb +1 -1
  26. data/app/components/geoblacklight/display_note_component.rb +2 -1
  27. data/app/components/geoblacklight/document/citation_component.html.erb +1 -1
  28. data/app/components/geoblacklight/document/sidebar_component.html.erb +1 -1
  29. data/app/components/geoblacklight/document/sidebar_component.rb +0 -1
  30. data/app/components/geoblacklight/document_component.html.erb +1 -2
  31. data/app/components/geoblacklight/header_component.html.erb +4 -4
  32. data/app/components/geoblacklight/header_icons_component.rb +4 -2
  33. data/app/components/geoblacklight/homepage_feature_facet_component.html.erb +3 -7
  34. data/app/components/geoblacklight/homepage_feature_facet_component.rb +12 -3
  35. data/app/components/geoblacklight/iiif_drag_drop_component.html.erb +2 -2
  36. data/app/components/geoblacklight/iiif_drag_drop_component.rb +2 -2
  37. data/app/components/geoblacklight/index_map_inspect_component.html.erb +3 -3
  38. data/app/components/geoblacklight/index_map_legend_component.html.erb +7 -7
  39. data/app/components/geoblacklight/index_map_legend_component.rb +7 -0
  40. data/app/components/geoblacklight/item_map_viewer_component.rb +8 -4
  41. data/app/components/geoblacklight/location_leaflet_map_component.rb +28 -15
  42. data/app/components/geoblacklight/relations_component.html.erb +2 -2
  43. data/app/components/geoblacklight/search_result_component.html.erb +28 -26
  44. data/app/components/geoblacklight/search_result_component.rb +2 -2
  45. data/app/components/geoblacklight/static_map_component.rb +5 -4
  46. data/app/components/geoblacklight/viewer_help_text_component.html.erb +1 -1
  47. data/app/components/geoblacklight/viewer_help_text_component.rb +1 -1
  48. data/app/components/geoblacklight/web_services_component.html.erb +1 -1
  49. data/app/components/geoblacklight/web_services_component.rb +1 -1
  50. data/app/components/geoblacklight/web_services_default_component.html.erb +6 -6
  51. data/app/components/geoblacklight/web_services_link_component.rb +12 -9
  52. data/app/components/geoblacklight/web_services_wfs_component.html.erb +4 -4
  53. data/app/components/geoblacklight/web_services_wms_component.html.erb +4 -4
  54. data/app/controllers/download_controller.rb +0 -1
  55. data/app/controllers/wms_controller.rb +1 -1
  56. data/app/helpers/geoblacklight_helper.rb +0 -15
  57. data/app/javascript/geoblacklight/controllers/clipboard_controller.js +6 -6
  58. data/app/javascript/geoblacklight/controllers/downloads_controller.js +37 -29
  59. data/app/javascript/geoblacklight/controllers/leaflet_viewer_controller.js +108 -117
  60. data/app/javascript/geoblacklight/controllers/oembed_viewer_controller.js +5 -5
  61. data/app/javascript/geoblacklight/controllers/openlayers_viewer_controller.js +27 -30
  62. data/app/javascript/geoblacklight/controllers/search_results_controller.js +18 -18
  63. data/app/javascript/geoblacklight/core.js +35 -36
  64. data/app/javascript/geoblacklight/index.js +10 -10
  65. data/app/javascript/geoblacklight/initializers/metadata_download.js +23 -25
  66. data/app/javascript/geoblacklight/initializers/popovers.js +4 -4
  67. data/app/javascript/geoblacklight/initializers/relations.js +20 -20
  68. data/app/javascript/geoblacklight/initializers/tooltips.js +19 -23
  69. data/app/javascript/geoblacklight/initializers/truncation.js +18 -18
  70. data/app/javascript/geoblacklight/leaflet/basemaps.js +2 -3
  71. data/app/javascript/geoblacklight/leaflet/constants.js +7 -7
  72. data/app/javascript/geoblacklight/leaflet/controls/geosearch.js +80 -74
  73. data/app/javascript/geoblacklight/leaflet/controls/layer_opacity.js +74 -73
  74. data/app/javascript/geoblacklight/leaflet/controls/sidebar.js +31 -29
  75. data/app/javascript/geoblacklight/leaflet/controls/sleep.js +54 -51
  76. data/app/javascript/geoblacklight/leaflet/inspection.js +77 -68
  77. data/app/javascript/geoblacklight/leaflet/layer_index_map.js +74 -69
  78. data/app/javascript/geoblacklight/leaflet/layer_wmts.js +14 -16
  79. data/app/javascript/geoblacklight/leaflet/layers.js +59 -66
  80. data/app/javascript/geoblacklight/leaflet/utils.js +37 -43
  81. data/app/javascript/geoblacklight/openlayers/basemaps.js +35 -27
  82. data/app/javascript/geoblacklight/openlayers/inspection.js +23 -23
  83. data/app/javascript/geoblacklight/openlayers/layers.js +11 -11
  84. data/app/models/concerns/geoblacklight/bbox_filter_query.rb +7 -9
  85. data/app/models/concerns/geoblacklight/solr_document.rb +16 -39
  86. data/app/models/concerns/geoblacklight/suppressed_records_search_behavior.rb +3 -3
  87. data/app/views/catalog/_document_split.html.erb +3 -3
  88. data/app/views/catalog/_home_text.html.erb +22 -14
  89. data/app/views/catalog/_metadata.html.erb +1 -1
  90. data/app/views/catalog/_relations_container.html.erb +1 -1
  91. data/app/views/catalog/index.html.erb +0 -1
  92. data/app/views/catalog/metadata/_markup.html.erb +1 -2
  93. data/app/views/catalog/metadata/_missing.html.erb +2 -2
  94. data/app/views/catalog/web_services.html.erb +1 -1
  95. data/app/views/relation/index.html.erb +1 -1
  96. data/app/views/relation/index.json.jbuilder +1 -1
  97. data/config/initializers/rails_config.rb +0 -3
  98. data/config/locales/geoblacklight.en.yml +79 -78
  99. data/geoblacklight.gemspec +1 -2
  100. data/lib/generators/geoblacklight/assets_generator.rb +35 -26
  101. data/lib/generators/geoblacklight/install_generator.rb +6 -11
  102. data/lib/generators/geoblacklight/templates/assets/customizations.css +6 -0
  103. data/lib/generators/geoblacklight/templates/catalog_controller.rb +97 -73
  104. data/lib/generators/geoblacklight/templates/settings.yml +97 -113
  105. data/lib/geoblacklight/configuration/default_settings_builder.rb +18 -0
  106. data/lib/geoblacklight/configuration/display_note_shown_config.rb +13 -0
  107. data/lib/geoblacklight/configuration/fields_config.rb +51 -0
  108. data/lib/geoblacklight/configuration/leaflet_config.rb +73 -0
  109. data/lib/geoblacklight/configuration/leaflet_layers_config.rb +21 -0
  110. data/lib/geoblacklight/configuration/leaflet_sleep_config.rb +20 -0
  111. data/lib/geoblacklight/configuration/legacy_settings_builder.rb +94 -0
  112. data/lib/geoblacklight/configuration.rb +148 -0
  113. data/lib/geoblacklight/download.rb +2 -2
  114. data/lib/geoblacklight/engine.rb +7 -5
  115. data/lib/geoblacklight/metadata/base.rb +0 -2
  116. data/lib/geoblacklight/metadata_transformer.rb +0 -2
  117. data/lib/geoblacklight/references.rb +5 -4
  118. data/lib/geoblacklight/relation/ancestors.rb +3 -2
  119. data/lib/geoblacklight/relation/descendants.rb +2 -1
  120. data/lib/geoblacklight/relation/relation_response.rb +4 -4
  121. data/lib/geoblacklight/version.rb +1 -1
  122. data/lib/geoblacklight/wms_layer.rb +3 -3
  123. data/lib/geoblacklight.rb +7 -1
  124. data/package.json +10 -31
  125. data/schema/geoblacklight-schema-aardvark.json +1 -9
  126. data/schema/readme.md +3 -4
  127. data/solr/conf/_rest_managed.json +3 -2
  128. data/solr/conf/schema.xml +1 -1
  129. data/spec/components/geoblacklight/arcgis_component_spec.rb +6 -6
  130. data/spec/components/geoblacklight/attribute_table_component_spec.rb +6 -7
  131. data/spec/components/geoblacklight/citation_component_spec.rb +7 -4
  132. data/spec/components/geoblacklight/display_note_component_spec.rb +8 -8
  133. data/spec/components/geoblacklight/document_component_spec.rb +13 -13
  134. data/spec/components/geoblacklight/download_links_component_spec.rb +17 -14
  135. data/spec/components/geoblacklight/header_icons_component_spec.rb +6 -11
  136. data/spec/components/geoblacklight/homepage_feature_facet_component_spec.rb +22 -30
  137. data/spec/components/geoblacklight/iiif_drag_drop_component_spec.rb +3 -3
  138. data/spec/components/geoblacklight/index_map_legend_component_spec.rb +5 -18
  139. data/spec/components/geoblacklight/item_map_viewer_component_spec.rb +5 -5
  140. data/spec/components/geoblacklight/login_link_component_spec.rb +4 -5
  141. data/spec/components/geoblacklight/search_result_component_spec.rb +2 -6
  142. data/spec/components/geoblacklight/static_map_component_spec.rb +2 -2
  143. data/spec/components/geoblacklight/viewer_help_text_component_spec.rb +4 -6
  144. data/spec/components/geoblacklight/web_services_component_spec.rb +11 -10
  145. data/spec/controllers/catalog_controller_spec.rb +7 -7
  146. data/spec/controllers/download_controller_spec.rb +1 -1
  147. data/spec/controllers/relation_controller_spec.rb +1 -1
  148. data/spec/controllers/wms_controller_spec.rb +1 -1
  149. data/spec/features/axe_spec.rb +4 -4
  150. data/spec/features/bookmarks_spec.rb +1 -1
  151. data/spec/features/citations_spec.rb +1 -1
  152. data/spec/features/configurable_basemap_spec.rb +1 -1
  153. data/spec/features/data_dictionary_download_spec.rb +1 -1
  154. data/spec/features/download_layer_spec.rb +1 -1
  155. data/spec/features/empty_search_spec.rb +1 -1
  156. data/spec/features/esri_viewer_spec.rb +1 -1
  157. data/spec/features/exports_spec.rb +1 -1
  158. data/spec/features/full_screen_control_spec.rb +3 -10
  159. data/spec/features/help_text_spec.rb +1 -1
  160. data/spec/features/home_page_spec.rb +1 -1
  161. data/spec/features/index_map_spec.rb +3 -3
  162. data/spec/features/index_view_spec.rb +7 -7
  163. data/spec/features/layer_inspection_spec.rb +1 -1
  164. data/spec/features/layer_opacity_spec.rb +1 -1
  165. data/spec/features/layer_preview_spec.rb +1 -1
  166. data/spec/features/layer_with_no_references_spec.rb +1 -1
  167. data/spec/features/linkified_attribute_table_spec.rb +1 -1
  168. data/spec/features/metadata_panel_spec.rb +1 -1
  169. data/spec/features/missing_metadata_spec.rb +1 -1
  170. data/spec/features/multiple_downloads_spec.rb +1 -1
  171. data/spec/features/oembed_spec.rb +1 -1
  172. data/spec/features/relations_spec.rb +2 -2
  173. data/spec/features/saved_searches_spec.rb +1 -1
  174. data/spec/features/search_bar_spec.rb +1 -1
  175. data/spec/features/search_results_complex_geometry_spec.rb +1 -1
  176. data/spec/features/search_results_icons_spec.rb +3 -4
  177. data/spec/features/search_results_map_spec.rb +1 -1
  178. data/spec/features/search_results_overlap_ratio_spec.rb +3 -3
  179. data/spec/features/search_spec.rb +1 -1
  180. data/spec/features/show_page_download_spec.rb +1 -1
  181. data/spec/features/show_page_metadata_spec.rb +2 -2
  182. data/spec/features/show_page_sidebar_static_map_spec.rb +1 -1
  183. data/spec/features/sms_spec.rb +1 -1
  184. data/spec/features/suppressed_records_spec.rb +1 -1
  185. data/spec/features/tilejson_spec.rb +1 -1
  186. data/spec/features/tms_spec.rb +1 -1
  187. data/spec/features/web_services_modal_spec.rb +1 -1
  188. data/spec/features/wmts_spec.rb +1 -1
  189. data/spec/features/xyz_spec.rb +1 -1
  190. data/spec/fixtures/manifests/tilejson.json +10 -19
  191. data/spec/fixtures/metadata/fgdc.html +1 -1
  192. data/spec/fixtures/metadata/iso.html +1 -1
  193. data/spec/fixtures/solr_documents/README.md +0 -1
  194. data/spec/fixtures/solr_documents/actual-papermap1.json +9 -28
  195. data/spec/fixtures/solr_documents/actual-point1.json +12 -39
  196. data/spec/fixtures/solr_documents/actual-polygon1.json +10 -30
  197. data/spec/fixtures/solr_documents/actual-raster1.json +14 -46
  198. data/spec/fixtures/solr_documents/all-relationships.json +12 -36
  199. data/spec/fixtures/solr_documents/b1g_iiif_manifest.json +33 -62
  200. data/spec/fixtures/solr_documents/b1g_wabash_child_15.json +13 -40
  201. data/spec/fixtures/solr_documents/b1g_wabash_child_16.json +13 -40
  202. data/spec/fixtures/solr_documents/b1g_wabash_child_17.json +13 -40
  203. data/spec/fixtures/solr_documents/b1g_wabash_child_18.json +13 -40
  204. data/spec/fixtures/solr_documents/b1g_wabash_parent.json +13 -40
  205. data/spec/fixtures/solr_documents/baruch_ancestor1.json +13 -40
  206. data/spec/fixtures/solr_documents/baruch_ancestor2.json +13 -40
  207. data/spec/fixtures/solr_documents/baruch_documentation_download.json +14 -46
  208. data/spec/fixtures/solr_documents/bbox-spans-180.json +7 -21
  209. data/spec/fixtures/solr_documents/complex-geom.json +11 -37
  210. data/spec/fixtures/solr_documents/cornell_html_metadata.json +12 -37
  211. data/spec/fixtures/solr_documents/display-note.json +11 -33
  212. data/spec/fixtures/solr_documents/esri-dynamic-layer-all-layers.json +13 -39
  213. data/spec/fixtures/solr_documents/esri-dynamic-layer-single-layer.json +13 -40
  214. data/spec/fixtures/solr_documents/esri-feature-layer.json +13 -39
  215. data/spec/fixtures/solr_documents/esri-image-map-layer.json +13 -40
  216. data/spec/fixtures/solr_documents/esri-tiled_map_layer.json +16 -54
  217. data/spec/fixtures/solr_documents/esri-wms-layer.json +12 -36
  218. data/spec/fixtures/solr_documents/harvard_raster.json +12 -37
  219. data/spec/fixtures/solr_documents/iiif-eastern-hemisphere.json +9 -27
  220. data/spec/fixtures/solr_documents/index-map-polygon-no-downloadurl.json +12 -41
  221. data/spec/fixtures/solr_documents/index-map-polygon.json +12 -41
  222. data/spec/fixtures/solr_documents/index-map-stanford.json +14 -45
  223. data/spec/fixtures/solr_documents/index-map-v1-complex.json +13 -38
  224. data/spec/fixtures/solr_documents/index_map_point.json +13 -42
  225. data/spec/fixtures/solr_documents/metadata_no_geom.json +4 -14
  226. data/spec/fixtures/solr_documents/metadata_no_provider.json +8 -25
  227. data/spec/fixtures/solr_documents/multiple-downloads.json +6 -18
  228. data/spec/fixtures/solr_documents/no_locn_geometry.json +4 -12
  229. data/spec/fixtures/solr_documents/no_spatial.json +4 -12
  230. data/spec/fixtures/solr_documents/oembed.json +8 -25
  231. data/spec/fixtures/solr_documents/princeton-child1.json +9 -29
  232. data/spec/fixtures/solr_documents/princeton-child2.json +9 -29
  233. data/spec/fixtures/solr_documents/princeton-child3.json +9 -29
  234. data/spec/fixtures/solr_documents/princeton-child4.json +9 -29
  235. data/spec/fixtures/solr_documents/princeton-parent.json +10 -33
  236. data/spec/fixtures/solr_documents/public_cog_princeton.json +9 -27
  237. data/spec/fixtures/solr_documents/public_iiif_princeton.json +13 -43
  238. data/spec/fixtures/solr_documents/public_pmtiles_princeton.json +29 -39
  239. data/spec/fixtures/solr_documents/public_polygon_mit.json +9 -30
  240. data/spec/fixtures/solr_documents/restricted-line.json +14 -47
  241. data/spec/fixtures/solr_documents/the-related-record.json +4 -12
  242. data/spec/fixtures/solr_documents/tilejson.json +23 -46
  243. data/spec/fixtures/solr_documents/tms.json +7 -21
  244. data/spec/fixtures/solr_documents/umn_metro_result1.json +13 -41
  245. data/spec/fixtures/solr_documents/umn_state_result1.json +13 -39
  246. data/spec/fixtures/solr_documents/umn_state_result2.json +13 -39
  247. data/spec/fixtures/solr_documents/uva_slug_colon.json +10 -30
  248. data/spec/fixtures/solr_documents/wmts-multiple.json +23 -39
  249. data/spec/fixtures/solr_documents/wmts-single-layer.json +23 -46
  250. data/spec/fixtures/solr_documents/xyz.json +10 -33
  251. data/spec/helpers/geoblacklight_helper_spec.rb +5 -50
  252. data/spec/javascripts/geoblacklight_spec.js +10 -10
  253. data/spec/javascripts/metadata_download_button_spec.js +14 -13
  254. data/spec/lib/geoblacklight/bounding_box_spec.rb +1 -1
  255. data/spec/lib/geoblacklight/configuration/default_settings_builder_spec.rb +9 -0
  256. data/spec/lib/geoblacklight/configuration_spec.rb +13 -0
  257. data/spec/lib/geoblacklight/download/csv_download_spec.rb +2 -2
  258. data/spec/lib/geoblacklight/download/geojson_download_spec.rb +2 -2
  259. data/spec/lib/geoblacklight/download/geotiff_download_spec.rb +5 -2
  260. data/spec/lib/geoblacklight/download/kmz_download_spec.rb +2 -2
  261. data/spec/lib/geoblacklight/download/shapefile_download_spec.rb +2 -2
  262. data/spec/lib/geoblacklight/download_spec.rb +15 -6
  263. data/spec/lib/geoblacklight/geometry_spec.rb +1 -1
  264. data/spec/lib/geoblacklight/item_viewer_spec.rb +2 -2
  265. data/spec/lib/geoblacklight/metadata/base_spec.rb +1 -1
  266. data/spec/lib/geoblacklight/metadata/html_spec.rb +1 -1
  267. data/spec/lib/geoblacklight/metadata_spec.rb +1 -1
  268. data/spec/lib/geoblacklight/metadata_transformer/base_spec.rb +1 -1
  269. data/spec/lib/geoblacklight/metadata_transformer/fgdc_spec.rb +1 -1
  270. data/spec/lib/geoblacklight/metadata_transformer/iso19139_spec.rb +1 -1
  271. data/spec/lib/geoblacklight/metadata_transformer_spec.rb +1 -1
  272. data/spec/lib/geoblacklight/reference_spec.rb +1 -1
  273. data/spec/lib/geoblacklight/references_spec.rb +6 -4
  274. data/spec/lib/geoblacklight/relation/ancestors_spec.rb +10 -4
  275. data/spec/lib/geoblacklight/relation/descendants_spec.rb +9 -4
  276. data/spec/lib/geoblacklight/relation/relation_response_spec.rb +12 -15
  277. data/spec/lib/geoblacklight/wms_layer/feature_info_response_spec.rb +1 -1
  278. data/spec/lib/geoblacklight/wms_layer_spec.rb +1 -1
  279. data/spec/models/concerns/geoblacklight/bbox_filter_query_spec.rb +20 -11
  280. data/spec/models/concerns/geoblacklight/solr_document/citation_spec.rb +1 -1
  281. data/spec/models/concerns/geoblacklight/solr_document/finder_spec.rb +1 -1
  282. data/spec/models/concerns/geoblacklight/solr_document/inspection_spec.rb +1 -1
  283. data/spec/models/concerns/geoblacklight/solr_document_spec.rb +4 -39
  284. data/spec/models/concerns/geoblacklight/suppressed_records_search_behavior_spec.rb +2 -2
  285. data/spec/routing/catalog_routing_spec.rb +1 -1
  286. data/spec/spec_helper.rb +21 -10
  287. data/spec/tasks/geoblacklight_spec.rb +1 -1
  288. data/spec/test_app_templates/lib/generators/test_app_generator.rb +4 -3
  289. metadata +33 -184
  290. data/Procfile.dev +0 -3
  291. data/app/assets/stylesheets/geoblacklight/geoblacklight.scss +0 -2
  292. data/app/assets/stylesheets/geoblacklight/modules/_base.scss +0 -31
  293. data/app/assets/stylesheets/geoblacklight/modules/_blacklight_overrides.scss +0 -40
  294. data/app/assets/stylesheets/geoblacklight/modules/_styles.scss +0 -9
  295. data/app/assets/stylesheets/geoblacklight/modules/downloads.scss +0 -62
  296. data/app/assets/stylesheets/geoblacklight/modules/geosearch.scss +0 -23
  297. data/app/assets/stylesheets/geoblacklight/modules/home.scss +0 -13
  298. data/app/assets/stylesheets/geoblacklight/modules/icon-customization.scss +0 -116
  299. data/app/assets/stylesheets/geoblacklight/modules/index_maps.scss +0 -61
  300. data/app/assets/stylesheets/geoblacklight/modules/item.scss +0 -78
  301. data/app/assets/stylesheets/geoblacklight/modules/layer_opacity.scss +0 -87
  302. data/app/assets/stylesheets/geoblacklight/modules/leaflet.scss +0 -4
  303. data/app/assets/stylesheets/geoblacklight/modules/metadata.scss +0 -31
  304. data/app/assets/stylesheets/geoblacklight/modules/metadata_content.scss +0 -43
  305. data/app/assets/stylesheets/geoblacklight/modules/metadata_markup.scss +0 -9
  306. data/app/assets/stylesheets/geoblacklight/modules/metadata_missing.scss +0 -7
  307. data/app/assets/stylesheets/geoblacklight/modules/modal.scss +0 -5
  308. data/app/assets/stylesheets/geoblacklight/modules/results.scss +0 -60
  309. data/app/assets/stylesheets/geoblacklight/modules/search_widgets.scss +0 -5
  310. data/app/assets/stylesheets/geoblacklight/modules/sidebar.scss +0 -42
  311. data/app/assets/stylesheets/geoblacklight/modules/toolbar.scss +0 -34
  312. data/app/assets/stylesheets/geoblacklight/modules/web_services.scss +0 -5
  313. data/app/components/blacklight/icons/american_geographical_society_library_uwm_libraries_component.rb +0 -46
  314. data/app/components/blacklight/icons/arizona_component.rb +0 -24
  315. data/app/components/blacklight/icons/baruch_cuny_component.rb +0 -23
  316. data/app/components/blacklight/icons/bookmark_component.rb +0 -23
  317. data/app/components/blacklight/icons/circle_info_solid_component.rb +0 -23
  318. data/app/components/blacklight/icons/columbia_component.rb +0 -23
  319. data/app/components/blacklight/icons/cornell_component.rb +0 -25
  320. data/app/components/blacklight/icons/george_mason_component.rb +0 -24
  321. data/app/components/blacklight/icons/harvard_component.rb +0 -23
  322. data/app/components/blacklight/icons/indiana_component.rb +0 -23
  323. data/app/components/blacklight/icons/lewis_clark_component.rb +0 -25
  324. data/app/components/blacklight/icons/massgis_component.rb +0 -23
  325. data/app/components/blacklight/icons/michigan_state_university_component.rb +0 -25
  326. data/app/components/blacklight/icons/mit_component.rb +0 -23
  327. data/app/components/blacklight/icons/northwestern_university_component.rb +0 -24
  328. data/app/components/blacklight/icons/nyu_component.rb +0 -26
  329. data/app/components/blacklight/icons/pennsylvania_state_university_component.rb +0 -25
  330. data/app/components/blacklight/icons/princeton_component.rb +0 -23
  331. data/app/components/blacklight/icons/purdue_university_component.rb +0 -25
  332. data/app/components/blacklight/icons/rutgers_component.rb +0 -25
  333. data/app/components/blacklight/icons/sms_component.rb +0 -23
  334. data/app/components/blacklight/icons/stanford_component.rb +0 -23
  335. data/app/components/blacklight/icons/texas_component.rb +0 -23
  336. data/app/components/blacklight/icons/the_ohio_state_university_component.rb +0 -26
  337. data/app/components/blacklight/icons/tufts_component.rb +0 -23
  338. data/app/components/blacklight/icons/ucla_component.rb +0 -23
  339. data/app/components/blacklight/icons/university_of_california_berkeley_component.rb +0 -24
  340. data/app/components/blacklight/icons/university_of_chicago_component.rb +0 -25
  341. data/app/components/blacklight/icons/university_of_colorado_boulder_component.rb +0 -26
  342. data/app/components/blacklight/icons/university_of_illinois_urbana_champaign_component.rb +0 -25
  343. data/app/components/blacklight/icons/university_of_iowa_component.rb +0 -24
  344. data/app/components/blacklight/icons/university_of_maryland_component.rb +0 -24
  345. data/app/components/blacklight/icons/university_of_michigan_component.rb +0 -24
  346. data/app/components/blacklight/icons/university_of_minnesota_component.rb +0 -24
  347. data/app/components/blacklight/icons/university_of_nebraska_lincoln_component.rb +0 -27
  348. data/app/components/blacklight/icons/university_of_wisconsin_madison_component.rb +0 -24
  349. data/app/components/blacklight/icons/uva_component.rb +0 -23
  350. data/app/components/geoblacklight/icon_facet_item_component.rb +0 -33
  351. data/app/components/geoblacklight/web_services_link_component.html.erb +0 -3
  352. data/bin/vite +0 -29
  353. data/config/initializers/new_gbl_settings_defaults_4.1.yml +0 -104
  354. data/lib/generators/geoblacklight/assets/importmap_generator.rb +0 -73
  355. data/lib/generators/geoblacklight/assets/vite_generator.rb +0 -89
  356. data/lib/generators/geoblacklight/templates/assets/_customizations.scss +0 -23
  357. data/lib/generators/geoblacklight/templates/assets/application.js +0 -17
  358. data/lib/generators/geoblacklight/templates/assets/application.scss +0 -9
  359. data/lib/generators/geoblacklight/templates/assets/geoblacklight.scss +0 -11
  360. data/lib/generators/geoblacklight/templates/base.html.erb +0 -46
  361. data/lib/generators/geoblacklight/templates/vite.config.ts +0 -23
  362. data/lib/generators/geoblacklight/templates/vite.json +0 -16
  363. data/schema/geoblacklight-schema-1.0.json +0 -214
  364. data/solr/conf/xslt/example.xsl +0 -132
  365. data/solr/conf/xslt/example_atom.xsl +0 -67
  366. data/solr/conf/xslt/example_rss.xsl +0 -66
  367. data/solr/conf/xslt/luke.xsl +0 -337
  368. data/spec/components/blacklight/icons/american_geographical_society_library_uwm_libraries_component_spec.rb +0 -15
  369. data/spec/components/blacklight/icons/arizona_component_spec.rb +0 -15
  370. data/spec/components/blacklight/icons/arrow_circle_down_component_spec.rb +0 -15
  371. data/spec/components/blacklight/icons/baruch_cuny_component_spec.rb +0 -15
  372. data/spec/components/blacklight/icons/book_component_spec.rb +0 -15
  373. data/spec/components/blacklight/icons/bookmark_component_spec.rb +0 -15
  374. data/spec/components/blacklight/icons/cd_rom_component_spec.rb +0 -15
  375. data/spec/components/blacklight/icons/child_item_component_spec.rb +0 -15
  376. data/spec/components/blacklight/icons/circle_info_solid_component_spec.rb +0 -15
  377. data/spec/components/blacklight/icons/citation_component_spec.rb +0 -15
  378. data/spec/components/blacklight/icons/collection_component_spec.rb +0 -15
  379. data/spec/components/blacklight/icons/collections_component_spec.rb +0 -15
  380. data/spec/components/blacklight/icons/columbia_component_spec.rb +0 -15
  381. data/spec/components/blacklight/icons/cornell_component_spec.rb +0 -15
  382. data/spec/components/blacklight/icons/datasets_component_spec.rb +0 -15
  383. data/spec/components/blacklight/icons/dvd_rom_component_spec.rb +0 -15
  384. data/spec/components/blacklight/icons/email_component_spec.rb +0 -15
  385. data/spec/components/blacklight/icons/esri_globe_component_spec.rb +0 -15
  386. data/spec/components/blacklight/icons/fire_solid_component_spec.rb +0 -15
  387. data/spec/components/blacklight/icons/george_mason_component_spec.rb +0 -15
  388. data/spec/components/blacklight/icons/globe_component_spec.rb +0 -15
  389. data/spec/components/blacklight/icons/harvard_component_spec.rb +0 -15
  390. data/spec/components/blacklight/icons/home_component_spec.rb +0 -15
  391. data/spec/components/blacklight/icons/iiif_drag_drop_component_spec.rb +0 -15
  392. data/spec/components/blacklight/icons/image_component_spec.rb +0 -15
  393. data/spec/components/blacklight/icons/imagery_component_spec.rb +0 -15
  394. data/spec/components/blacklight/icons/indiana_component_spec.rb +0 -15
  395. data/spec/components/blacklight/icons/leaf_component_spec.rb +0 -15
  396. data/spec/components/blacklight/icons/lewis_clark_component_spec.rb +0 -15
  397. data/spec/components/blacklight/icons/lightbulb_solid_component_spec.rb +0 -15
  398. data/spec/components/blacklight/icons/line_component_spec.rb +0 -15
  399. data/spec/components/blacklight/icons/map_component_spec.rb +0 -15
  400. data/spec/components/blacklight/icons/map_marker_component_spec.rb +0 -15
  401. data/spec/components/blacklight/icons/maps_component_spec.rb +0 -15
  402. data/spec/components/blacklight/icons/massgis_component_spec.rb +0 -15
  403. data/spec/components/blacklight/icons/metadata_component_spec.rb +0 -15
  404. data/spec/components/blacklight/icons/michigan_state_university_component_spec.rb +0 -15
  405. data/spec/components/blacklight/icons/mit_component_spec.rb +0 -15
  406. data/spec/components/blacklight/icons/mixed_component_spec.rb +0 -15
  407. data/spec/components/blacklight/icons/multilinestring_component_spec.rb +0 -15
  408. data/spec/components/blacklight/icons/multipoint_component_spec.rb +0 -15
  409. data/spec/components/blacklight/icons/multipolygon_component_spec.rb +0 -15
  410. data/spec/components/blacklight/icons/northwestern_university_component_spec.rb +0 -15
  411. data/spec/components/blacklight/icons/nyu_component_spec.rb +0 -15
  412. data/spec/components/blacklight/icons/pagelines_brands_component_spec.rb +0 -15
  413. data/spec/components/blacklight/icons/paper_map_component_spec.rb +0 -15
  414. data/spec/components/blacklight/icons/parent_item_component_spec.rb +0 -15
  415. data/spec/components/blacklight/icons/pennsylvania_state_university_component_spec.rb +0 -15
  416. data/spec/components/blacklight/icons/point_component_spec.rb +0 -15
  417. data/spec/components/blacklight/icons/polygon_component_spec.rb +0 -15
  418. data/spec/components/blacklight/icons/polyline_component_spec.rb +0 -15
  419. data/spec/components/blacklight/icons/princeton_component_spec.rb +0 -15
  420. data/spec/components/blacklight/icons/public_component_spec.rb +0 -15
  421. data/spec/components/blacklight/icons/purdue_university_component_spec.rb +0 -15
  422. data/spec/components/blacklight/icons/raster_component_spec.rb +0 -15
  423. data/spec/components/blacklight/icons/restricted_component_spec.rb +0 -15
  424. data/spec/components/blacklight/icons/rutgers_component_spec.rb +0 -15
  425. data/spec/components/blacklight/icons/sms_component_spec.rb +0 -15
  426. data/spec/components/blacklight/icons/stanford_component_spec.rb +0 -15
  427. data/spec/components/blacklight/icons/table_component_spec.rb +0 -15
  428. data/spec/components/blacklight/icons/tags_component_spec.rb +0 -15
  429. data/spec/components/blacklight/icons/texas_component_spec.rb +0 -15
  430. data/spec/components/blacklight/icons/the_ohio_state_university_component_spec.rb +0 -15
  431. data/spec/components/blacklight/icons/triangle_exclamation_solid_component_spec.rb +0 -15
  432. data/spec/components/blacklight/icons/tufts_component_spec.rb +0 -15
  433. data/spec/components/blacklight/icons/ucla_component_spec.rb +0 -15
  434. data/spec/components/blacklight/icons/university_of_california_berkeley_component_spec.rb +0 -15
  435. data/spec/components/blacklight/icons/university_of_chicago_component_spec.rb +0 -15
  436. data/spec/components/blacklight/icons/university_of_colorado_boulder_component_spec.rb +0 -15
  437. data/spec/components/blacklight/icons/university_of_illinois_urbana_champaign_component_spec.rb +0 -15
  438. data/spec/components/blacklight/icons/university_of_iowa_component_spec.rb +0 -15
  439. data/spec/components/blacklight/icons/university_of_maryland_component_spec.rb +0 -15
  440. data/spec/components/blacklight/icons/university_of_michigan_component_spec.rb +0 -15
  441. data/spec/components/blacklight/icons/university_of_minnesota_component_spec.rb +0 -15
  442. data/spec/components/blacklight/icons/university_of_nebraska_lincoln_component_spec.rb +0 -15
  443. data/spec/components/blacklight/icons/university_of_wisconsin_madison_component_spec.rb +0 -15
  444. data/spec/components/blacklight/icons/uva_component_spec.rb +0 -15
  445. data/spec/components/blacklight/icons/web_services_component_spec.rb +0 -15
  446. data/spec/components/blacklight/icons/websites_component_spec.rb +0 -15
  447. data/spec/components/geoblacklight/icon_facet_item_component_spec.rb +0 -18
  448. data/spec/config/initializers/rails_config_spec.rb +0 -16
  449. data/spec/fixtures/solr_documents/public_direct_download.json +0 -62
  450. data/spec/support/backport_test_helpers.rb +0 -47
  451. data/spec/support/view_component_capybara_test_helpers.rb +0 -8
  452. data/vite.config.ts +0 -32
  453. /data/app/assets/images/{blacklight → geoblacklight}/logo.svg +0 -0
@@ -1,25 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Blacklight
4
- module Icons
5
- class UniversityOfChicagoComponent < Blacklight::Icons::IconComponent
6
- self.svg = svg
7
-
8
- def svg
9
- <<~SVG
10
- <!-- Generated by IcoMoon.io -->
11
- <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="26" height="32" viewBox="0 0 26 32">
12
- <title>#{title}</title>
13
- <path fill="#6c757d" d="M9.27 0.95c-2.6 0.070-6.25 0.31-7.63 0.49l-0.23 0.030v8.3c0 8.91 0 8.6 0.24 9.92 0.824 4.713 4.057 8.514 8.359 10.13l0.091 0.030c1.24 0.49 2.77 0.87 3.21 0.8 0.12-0.010 0.55-0.11 0.96-0.2 3.81-0.96 6.79-3.030 8.59-5.97 0.94-1.564 1.61-3.4 1.891-5.362l0.009-0.078c0.1-0.61 0.11-0.68 0.12-9.1 0.010-8.090 0.010-8.48-0.070-8.48l-0.81-0.070c-4.23-0.4-10.090-0.59-14.73-0.44zM11.51 2.45c0.42 0.060 0.88 0.2 1.23 0.36l0.25 0.11v3.54c0 2.8-0.020 3.52-0.060 3.5-0.63-0.328-1.375-0.52-2.165-0.52-0.153 0-0.304 0.007-0.454 0.021l0.019-0.001c-0.2 0.030-0.8 0.14-1.34 0.26-1.26 0.27-1.82 0.35-2.4 0.35h-0.47v-7.2l0.27 0.030c0.15 0.030 0.67 0.040 1.16 0.040h0.9l0.52-0.18c0.555-0.217 1.198-0.343 1.871-0.343 0.236 0 0.468 0.015 0.696 0.045l-0.027-0.003zM16.73 2.59c0.799 0.258 1.719 0.406 2.673 0.406 0.189 0 0.377-0.006 0.563-0.017l-0.026 0.001 0.53-0.040v7.18h-0.3c-0.54 0-1.45-0.13-3.2-0.47-0.461-0.139-0.99-0.219-1.538-0.219-0.159 0-0.317 0.007-0.472 0.020l0.020-0.001c-0.67 0.080-0.94 0.17-1.63 0.52-0.020 0-0.030-1.57-0.020-3.5l0.010-3.52 0.42-0.16c0.52-0.232 1.126-0.368 1.765-0.368 0.429 0 0.844 0.061 1.237 0.175l-0.031-0.008zM4.28 4.27c0.48 0.36 0.44 1.090-0.080 1.33-0.6 0.3-1.2-0.2-1.080-0.87 0.071-0.246 0.247-0.441 0.475-0.538l0.005-0.002c0.2-0.060 0.53-0.030 0.68 0.080zM21.5 4.61c0.1 0 0.28-0.030 0.41-0.070 0.3-0.090 0.5-0.090 0.71 0 0.27 0.12 0.41 0.27 0.5 0.58 0.040 0.1 0.030 0.1-0.080 0.060-0.24-0.1-0.42-0.050-1.1 0.26-0.64 0.3-1.050 0.42-1.14 0.37-0.033-0.173-0.052-0.373-0.052-0.577 0-0.043 0.001-0.087 0.003-0.13l-0 0.006v-0.68l0.3 0.1c0.15 0.040 0.36 0.080 0.45 0.080zM5.79 5.010v0.45l-0.87-0.020-0.020-0.44-0.010-0.43h0.9v0.43zM4.2 7.3c0.54 0.27 0.54 1.11-0.010 1.37-0.37 0.19-0.86 0.030-1.030-0.32-0.19-0.4-0.050-0.86 0.33-1.040 0.103-0.057 0.225-0.091 0.355-0.091s0.252 0.034 0.359 0.093l-0.004-0.002zM21.33 7.38c0.24 0.010 0.58 0 0.75-0.020 0.19-0.010 0.4-0.030 0.47-0.020 0.17 0.020 0.47 0.33 0.55 0.55 0.060 0.2 0.040 0.24-0.1 0.17-0.2-0.11-0.5-0.070-0.8 0.1-0.4 0.22-0.93 0.4-1.25 0.44l-0.25 0.040v-1.36l0.1 0.040c0.060 0.020 0.3 0.040 0.53 0.050zM5.8 8.050v0.42h-0.9v-0.85h0.9v0.43zM13.81 11.060c0.4 0.17 0.73 0.22 0.87 0.14 0.1-0.040 0.1-0.040 0.1 0.050 0 0.060-0.030 0.15-0.070 0.2-0.090 0.1-0.080 0.1 0.1 0.070 0.1-0.020 0.24-0.090 0.32-0.16l0.13-0.13v0.18c0 0.21-0.15 0.37-0.42 0.45l-0.18 0.060 0.13 0.11c0.1 0.080 0.14 0.16 0.14 0.25 0 0.18 0.16 0.38 0.3 0.38 0.15 0 0.15 0.060 0.020 0.16-0.070 0.050-0.13 0.050-0.22 0.020-0.15-0.060-0.16-0.040-0.080 0.16 0.040 0.1 0.070 0.22 0.070 0.28 0 0.2 0.1 0.48 0.24 0.6 0.22 0.23 0.040 0.27-0.2 0.050l-0.16-0.14 0.070 0.2c0.060 0.19 0.060 0.23 0 0.53-0.060 0.18-0.11 0.35-0.14 0.37-0.030 0.030-0.1-0.020-0.23-0.16-0.19-0.22-0.25-0.23-0.11-0.030 0.18 0.28 0.28 1.060 0.14 1.060-0.040 0-0.12-0.080-0.18-0.18-0.13-0.24-0.19-0.24-0.12-0.020 0.060 0.25 0.11 0.34 0.35 0.6 0.12 0.13 0.28 0.37 0.35 0.54l0.14 0.29-0.070 0.54c-0.040 0.3-0.080 0.55-0.1 0.57-0.040 0.050-0.12-0.040-0.24-0.27-0.037-0.088-0.084-0.164-0.141-0.231l0.001 0.001c-0.1 0 0.14 0.6 0.3 0.77 0.050 0.060 0.11 0.17 0.14 0.26 0.070 0.2 0.080 0.61 0.010 0.61-0.020 0-0.1-0.080-0.17-0.19-0.070-0.1-0.13-0.18-0.14-0.17l0.080 0.34c0.16 0.48 0.15 1.13 0 1.5l-0.12 0.29-0.14-0.58c-0.080-0.32-0.16-0.57-0.2-0.56l-0.31 0.4c-0.16 0.22-0.29 0.38-0.3 0.37l-0.070-0.36c-0.068-0.631-0.245-1.206-0.513-1.728l0.013 0.028c-0.070 0-0.73 1.89-0.8 2.24-0.029 0.156-0.045 0.336-0.045 0.52 0 0.267 0.035 0.525 0.1 0.771l-0.005-0.021c0.040 0.12 0.060 0.22 0.050 0.22-0.050 0-0.26-0.5-0.34-0.8-0.21-0.76-0.16-1.56 0.11-1.84 0.13-0.14 0.16-0.36 0.050-0.5-0.050-0.070-0.070-0.070-0.070-0.020 0 0.1-0.090 0.39-0.14 0.47-0.060 0.1-0.22-0.010-0.28-0.19-0.070-0.2 0-0.48 0.18-0.78s0.2-0.4 0.13-0.5c-0.060-0.090-0.070-0.080-0.16 0.090-0.12 0.25-0.22 0.26-0.3 0.010-0.031-0.135-0.049-0.29-0.049-0.45 0-0.525 0.193-1.005 0.511-1.373l-0.002 0.003c0.090-0.1 0.16-0.22 0.15-0.24s-0.11 0.020-0.22 0.1c-0.26 0.17-0.3 0.12-0.26-0.22 0.060-0.52 0.4-0.97 0.75-1.040 0.18-0.030 0.19-0.050 0.080-0.17-0.040-0.040-0.070-0.090-0.060-0.1l0.34-0.1c0.4-0.090 0.58-0.2 0.65-0.42 0.080-0.25 0.020-0.27-0.19-0.070-0.13 0.13-0.23 0.18-0.33 0.18-0.17 0-0.23-0.080-0.1-0.16 0.12-0.090 0.13-0.27 0.020-0.38-0.060-0.060-0.13-0.070-0.3-0.050-0.18 0.020-0.47-0.060-0.47-0.13-0.006-0.037-0.017-0.071-0.031-0.102l0.001 0.002c-0.020-0.060 0-0.070 0.070-0.050s0.22-0.020 0.44-0.12c0.32-0.13 0.35-0.14 0.53-0.090 0.1 0.040 0.26 0.13 0.35 0.22l0.18 0.16c0.040 0 0.020-0.24-0.030-0.35-0.060-0.11-0.36-0.31-0.48-0.31-0.040 0-0.12-0.080-0.18-0.17-0.116-0.202-0.326-0.339-0.568-0.35l-0.002-0c-0.15 0-0.19-0.020-0.27-0.16-0.13-0.22-0.28-0.29-0.46-0.21-0.075 0.040-0.136 0.098-0.179 0.168l-0.001 0.002c-0.060 0.14-0.090 0.14-0.2-0.020-0.2-0.24-0.080-0.66 0.24-0.86l0.19-0.1c0.020 0 0.080 0.1 0.13 0.22 0.090 0.2 0.2 0.3 0.26 0.24 0.020-0.020 0-0.12-0.050-0.22s-0.080-0.22-0.060-0.26c0.040-0.080 0.23-0.1 0.31-0.010 0.050 0.050 0.090 0.020 0.18-0.1 0.27-0.32 0.66-0.35 1.25-0.1zM8.96 11.45c0.090 0.060 0.2 0.2 0.27 0.31 0.1 0.2 0.12 0.27 0.13 0.72 0 0.57 0.020 0.62 0.33 0.7l0.2 0.050-0.080 0.14c-0.14 0.24-0.25 0.26-0.77 0.16-0.1-0.020-0.15 0.020-0.33 0.23-0.26 0.3-0.29 0.44-0.14 0.66 0.1 0.15 0.13 0.43 0.050 0.47-0.070 0.050-0.050 0.3 0.030 0.38 0.1 0.1 0.25 0.090 0.68-0.020 0.45-0.12 0.55-0.12 0.77 0.020 0.1 0.060 0.24 0.12 0.3 0.12 0.080 0 0.1-0.030 0.1-0.16 0-0.18-0.050-0.25-0.31-0.42-0.22-0.14-0.28-0.28-0.23-0.51 0.040-0.2 0.26-0.7 0.31-0.7 0.020 0 0.060 0.080 0.1 0.17 0.070 0.24 0.27 0.45 0.7 0.74 0.55 0.4 0.7 0.75 0.54 1.37-0.080 0.33-0.090 0.36-0.010 0.54 0.070 0.19 0.070 0.2-0.010 0.35-0.26 0.44-0.3 1.26-0.080 1.65 0.1 0.2 0.11 0.25 0.090 0.58-0.030 0.39 0.020 0.57 0.23 0.8 0.080 0.080 0.080 0.12 0.030 0.34-0.040 0.2-0.040 0.32 0 0.58 0.030 0.18 0.050 0.34 0.040 0.36-0.020 0-0.13-0.2-0.26-0.48-0.14-0.3-0.31-0.58-0.43-0.71-0.277-0.284-0.647-0.477-1.061-0.529l-0.009-0.001-0.3-0.030v0.13c0 0.090 0.080 0.23 0.2 0.38 0.1 0.13 0.2 0.32 0.23 0.4 0.060 0.2 0.060 0.75 0 0.75-0.070 0-0.55-0.48-0.62-0.63-0.044-0.086-0.082-0.186-0.108-0.29l-0.002-0.010-0.030-0.16-0.2 0.18c-0.28 0.29-0.42 0.62-0.42 1.030-0.010 0.2-0.020 0.33-0.040 0.31s-0.1-0.2-0.18-0.42l-0.15-0.38 0.42-0.54c0.357-0.445 0.668-0.952 0.912-1.496l0.018-0.044 0.040-0.11-0.11 0.090c-0.1 0.1-0.73 0.91-1.15 1.5l-0.23 0.32-0.18-0.34-0.17-0.35 0.15-0.19 0.3-0.4c0.17-0.25 0.6-1.17 0.56-1.2-0.010-0.020-0.27 0.36-0.58 0.82l-0.55 0.85-0.14-0.11c-0.050-0.051-0.11-0.091-0.176-0.119l-0.004-0.001c-0.040 0-0.14 0.37-0.14 0.56 0 0.17-0.2 0.43-0.64 0.81-0.31 0.27-0.34 0.26-0.34-0.22v-0.28l0.37-0.43c0.36-0.4 0.85-1.12 1.080-1.57l0.1-0.21-0.15 0.14c-0.080 0.070-0.43 0.5-0.79 0.94l-0.65 0.82c-0.010 0.020-0.040-0.010-0.070-0.060l-0.19-0.24-0.13-0.16 0.34-0.49c0.35-0.5 0.81-1.4 0.78-1.5-0.020-0.040-0.31 0.37-0.67 0.9-0.46 0.7-0.66 0.98-0.71 0.96-0.1-0.040-0.090-0.14 0.020-0.75 0.060-0.28 0.1-0.57 0.1-0.63 0-0.38-0.3 0.51-0.36 1.060l-0.030 0.3-0.24 0.060c-0.28 0.070-0.3 0.14-0.070 0.36l0.14 0.14-0.020 0.68c-0.010 0.67-0.010 0.68 0.12 0.86 0.16 0.23 0.16 0.25 0 0.25-0.099 0.005-0.191 0.031-0.274 0.072l0.004-0.002c-0.040 0.030-0.087 0.054-0.137 0.069l-0.003 0.001c-0.010-0.010-0.060-0.23-0.1-0.49-0.073-0.567-0.115-1.224-0.115-1.89 0-0.748 0.053-1.483 0.155-2.203l-0.010 0.083c-0.030-0.040-0.15 0.23-0.92 2.1-0.77 1.9-0.75 1.84-0.83 1.84s-0.11-0.11-0.11-0.47c0-0.9 0.76-2.84 1.5-3.8 0.16-0.22 0.18-0.3 0.1-0.3-0.030 0-0.35 0.29-0.7 0.64-0.73 0.7-1.080 0.92-1.45 0.92-0.1 0-0.2-0.020-0.2-0.040 0-0.030 0.47-0.5 1.040-1.040 0.97-0.91 1.34-1.3 1.3-1.35l-0.46 0.21c-0.5 0.25-0.82 0.34-1.22 0.34-0.3 0-0.57-0.050-0.57-0.1 0.175-0.125 0.374-0.248 0.582-0.357l0.028-0.013c0.7-0.38 1.3-0.76 1.6-1.020 0.24-0.21 0.47-0.52 0.47-0.64 0-0.070-0.060-0.050-0.43 0.13-0.52 0.24-0.94 0.36-1.33 0.37-0.3 0-0.64-0.050-0.64-0.1 0-0.030 0.13-0.11 0.28-0.2 0.5-0.3 2-1.23 2.76-1.73 0.63-0.4 0.8-0.49 0.95-0.49 0.1 0 0.21-0.020 0.25-0.040 0.050-0.040 0-0.050-0.18-0.050-0.41 0-0.56-0.14-0.47-0.44l0.040-0.18 0.14 0.16c0.14 0.14 0.15 0.15 0.46 0.12 0.17-0.020 0.53-0.1 0.79-0.2 0.58-0.2 0.92-0.22 1.15-0.060zM19.31 11.45c0.21 0.070 0.5 0.16 0.63 0.22s0.35 0.1 0.48 0.1c0.15 0.010 0.25 0.040 0.25 0.070 0 0.080-0.19 0.2-0.32 0.2-0.15 0-0.18 0.1-0.020 0.12 0.3 0.080 0.8 0.28 1.040 0.44 0.28 0.19 0.34 0.28 0.21 0.3-0.050 0.010 0.21 0.31 0.92 1.020 0.73 0.74 0.96 1 0.89 1-0.2 0-0.78-0.4-1.46-1-0.18-0.16-0.32-0.26-0.32-0.23 0 0.060 0.17 0.25 1 1.12 0.28 0.3 0.64 0.71 0.81 0.93 0.3 0.38 0.64 0.9 0.64 0.97 0 0.12-1-0.33-1.31-0.6-0.11-0.1-0.43-0.51-0.72-0.95-0.47-0.71-0.67-0.95-0.73-0.88-0.020 0.010 0.3 0.56 0.69 1.21 0.85 1.43 1.040 1.8 1.2 2.42 0.12 0.42 0.13 0.55 0.13 1.4 0 1.14-0.1 1.77-0.28 1.77-0.060 0-0.12-0.2-0.6-2.16-0.48-1.95-0.8-2.87-1.18-3.32l-0.12-0.14 0.12 0.33c0.55 1.43 0.86 2.6 0.94 3.46l0.030 0.35-0.27 0.1c-0.15 0.050-0.4 0.16-0.55 0.26l-0.27 0.18v-0.25c0-0.72-0.17-1.76-0.43-2.56-0.15-0.46-0.25-0.58-0.21-0.24 0.080 0.58 0.22 1.63 0.25 1.77 0 0.1 0 0.15-0.030 0.13-0.020-0.020-0.27-0.3-0.53-0.63-0.54-0.65-0.84-0.96-0.84-0.85 0 0.1 0.4 0.79 0.66 1.13 0.13 0.17 0.35 0.4 0.5 0.53l0.25 0.23v0.3c0 0.38-0.070 0.69-0.15 0.66-0.030 0-0.41-0.44-0.84-0.95-0.88-1.040-1.14-1.32-1.16-1.25-0.020 0.050 0.15 0.4 0.42 0.87 0.14 0.23 0.39 0.51 0.88 1l0.68 0.67-0.15 0.23c-0.25 0.39-0.24 0.39-0.65 0.090-0.19-0.15-0.36-0.3-0.36-0.33l-0.060-0.24c-0.040-0.19-0.050-0.2-0.23-0.2-0.19 0-0.22-0.020-0.64-0.45-0.46-0.47-0.6-0.57-0.5-0.33 0.090 0.24 0.36 0.66 0.55 0.83l0.19 0.17-0.14 0.24c-0.080 0.14-0.14 0.3-0.14 0.33 0 0.15-0.1 0.1-0.5-0.29-0.48-0.46-0.57-0.5-0.4-0.15 0.090 0.17 0.4 0.5 0.68 0.7l0.13 0.090-0.1 0.28c-0.060 0.17-0.17 0.34-0.28 0.44-0.33 0.31-1 0.86-1.020 0.83 0.15-0.508 0.482-0.923 0.92-1.175l0.010-0.005c0.21-0.1 0.23-0.2 0.080-0.36-0.090-0.080-0.14-0.1-0.47-0.080l-0.37 0.030v-0.15c0-0.080-0.030-0.31-0.070-0.52l-0.1-0.6-0.040-0.23-0.22 0.14c-0.3 0.19-0.36 0.3-0.41 0.68-0.030 0.18-0.080 0.39-0.13 0.47l-0.23 0.45-0.16 0.3-0.050-0.16c-0.030-0.080-0.050-0.29-0.050-0.46 0-0.27-0.020-0.35-0.15-0.55-0.2-0.31-0.26-0.47-0.32-0.82-0.040-0.26-0.030-0.3 0.060-0.42 0.13-0.19 0.16-0.5 0.060-0.87-0.080-0.28-0.080-0.35-0.010-0.95 0.1-0.87 0.060-1.040-0.3-1.48l-0.17-0.2 0.1-0.6 0.47 0.030 0.14-0.29c0.080-0.15 0.23-0.37 0.35-0.47 0.21-0.21 0.23-0.27 0.12-0.52-0.030-0.1-0.060-0.18-0.050-0.2l0.22 0.1c0.31 0.17 0.35 0.31 0.21 0.72-0.12 0.35-0.1 0.4 0.12 0.4 0.35 0 0.77-0.27 0.83-0.51 0.080-0.39 0.12-0.48 0.3-0.67 0.23-0.26 0.24-0.41 0-0.52-0.13-0.060-0.14-0.090-0.13-0.22l0.020-0.15-0.23 0.2c-0.27 0.27-0.4 0.3-0.7 0.2-0.19-0.080-0.26-0.080-0.4-0.040-0.059 0.025-0.128 0.040-0.2 0.040v0c-0.060-0.060 0.1-0.25 0.25-0.3 0.26-0.1 0.48-0.23 0.57-0.37 0.060-0.080 0.070-0.13 0.010-0.26-0.080-0.24-0.020-0.37 0.29-0.7l0.27-0.3 0.24 0.030c0.16 0.020 0.27 0 0.34-0.040 0.31-0.22 0.76-0.25 1.32-0.090zM10.83 12.33c0 0.050 0.060 0.15 0.12 0.22l0.11 0.13h0.68c0.74 0.010 0.9 0.060 1.050 0.29 0.080 0.12 0.080 0.13 0 0.090-0.164-0.041-0.352-0.065-0.545-0.065s-0.381 0.024-0.561 0.068l0.016-0.003c-0.62 0.1-0.83 0.070-1.020-0.13-0.15-0.17-0.17-0.33-0.040-0.54 0.1-0.17 0.2-0.2 0.2-0.060zM13.38 19.53c0.12 0.38 0.15 1 0.070 1.51-0.020 0.15-0.020 0.4 0 0.54l0.030 0.28 0.060-0.28c0.040-0.15 0.14-0.4 0.22-0.54 0.16-0.31 0.49-0.66 0.55-0.6 0.080 0.1 0.24 0.84 0.24 1.12 0 0.38-0.060 0.57-0.37 1.090-0.164 0.213-0.272 0.477-0.3 0.764l-0 0.006c-0.020 0.2-0.030 0.38-0.020 0.41s0.080-0.12 0.15-0.33c0.080-0.24 0.23-0.54 0.38-0.78 0.27-0.4 0.35-0.61 0.47-1.23 0.040-0.23 0.12-0.46 0.2-0.6 0.14-0.22 0.25-0.29 0.25-0.15 0 0.050 0.020 0.13 0.060 0.18 0.2 0.28 0.12 0.78-0.23 1.42-0.23 0.44-0.23 0.44-0.15 0.44 0.17 0 0.46-0.35 0.55-0.66 0.040-0.12 0.040-0.12 0.11 0.050 0.14 0.32 0.1 0.44-0.21 0.67-0.1 0.070-0.22 0.22-0.27 0.33-0.1 0.2-0.14 0.55-0.060 0.54 0.060 0 0.49-0.56 0.63-0.83 0.1-0.18 0.15-0.35 0.18-0.6 0.030-0.28 0.060-0.4 0.22-0.66 0.17-0.29 0.27-0.58 0.37-1.080 0.010-0.060 0.080-0.16 0.15-0.24l0.12-0.14 0.060 0.36c0.1 0.56 0.1 0.93-0.030 1.17l-0.1 0.2 0.16-0.1c0.32-0.2 0.44-0.24 0.67-0.24h0.24l-0.3 0.14c-0.32 0.17-0.46 0.33-0.7 0.89-0.24 0.6-0.3 0.67-0.63 1-0.34 0.32-0.4 0.42-0.24 0.42 0.21 0 0.67-0.3 1-0.65 0.2-0.2 0.53-0.5 0.75-0.65 0.54-0.39 0.72-0.67 0.94-1.37 0.1-0.33 0.34-0.77 0.42-0.77 0.14 0 0.11 0.69-0.050 1.28-0.1 0.36-0.15 0.47-0.46 0.84l-0.16 0.2 0.18-0.080c0.25-0.1 0.85-0.43 1.1-0.6 0.4-0.27 0.72-0.62 1.060-1.14 0.38-0.57 0.55-0.74 1.020-0.99 0.44-0.23 0.5-0.22 0.3 0.050-0.090 0.12-0.17 0.26-0.18 0.32-0.1 0.52-0.15 0.69-0.3 0.95-0.080 0.17-0.14 0.3-0.1 0.3 0.020 0 0.12-0.040 0.23-0.1s0.22-0.080 0.26-0.070c0.050 0.020-0.070 0.17-0.41 0.52-0.69 0.7-0.82 0.75-2.4 1.010-0.76 0.13-1.19 0.3-1.98 0.84-0.64 0.43-0.97 0.61-1.46 0.8-0.13 0.030-0.22 0.090-0.22 0.1 0 0.030 0.15 0.11 0.34 0.2 0.29 0.14 0.39 0.16 0.68 0.16 0.33 0 0.35 0 1.16-0.42 0.45-0.23 0.84-0.41 0.84-0.4 0.020 0.020-0.2 0.26-0.48 0.56-0.55 0.56-0.72 0.67-1.4 0.86-0.32 0.090-0.49 0.1-1.31 0.1-0.86 0-0.96 0.020-1.1 0.1-0.25 0.15-0.24 0.22 0.020 0.22 0.24 0 0.35 0.040 0.58 0.24 0.4 0.35 0.83 0.4 1.1 0.14 0.2-0.2 0.45-0.3 0.73-0.3 0.23 0 0.56 0.14 0.69 0.29 0.070 0.080 0.070 0.090-0.060 0.11-0.070 0.010-0.2 0.1-0.27 0.18l-0.37 0.4c-0.28 0.32-0.52 0.41-0.96 0.39-0.3-0.020-0.34-0.040-0.87-0.36-0.78-0.5-0.95-0.53-1.070-0.21-0.060 0.15 0.010 0.31 0.31 0.67 0.43 0.52 0.45 0.7 0.15 1.010-0.24 0.24-0.43 0.27-0.73 0.12-0.17-0.080-0.65-0.55-0.61-0.6 0 0 0.1 0 0.18 0.030 0.22 0.070 0.53 0.060 0.6 0 0.1-0.1 0.060-0.26-0.15-0.67-0.095-0.158-0.171-0.342-0.217-0.537l-0.003-0.013c0-0.080-0.020-0.14-0.050-0.14s-0.18 0.12-0.34 0.27c-0.38 0.36-0.8 0.66-1.060 0.77-0.23 0.1-0.62 0.12-0.77 0.030-0.228-0.175-0.43-0.352-0.621-0.541l0.001 0.001c-0.371-0.38-0.784-0.717-1.232-1.003l-0.028-0.017-0.2-0.12h0.52c0.86 0 1.15 0.12 1.67 0.66 0.31 0.33 0.37 0.37 0.52 0.37 0.090 0 0.23-0.040 0.3-0.090 0.294-0.24 0.549-0.513 0.761-0.817l0.009-0.013c0.060-0.1 0.050-0.11-0.12-0.18-0.327-0.139-0.708-0.22-1.108-0.22-0.224 0-0.442 0.025-0.652 0.074l0.020-0.004c-0.11 0.030-0.2 0.050-0.2 0.020 0-0.080 0.52-0.56 0.72-0.66 0.44-0.23 0.92-0.1 1.35 0.35 0.27 0.28 0.31 0.2 0.1-0.18-0.3-0.55-1.040-0.81-1.73-0.6-0.14 0.030-0.48 0.18-0.78 0.32-0.63 0.31-0.8 0.33-1.21 0.12-0.599-0.315-1.099-0.738-1.492-1.249l-0.008-0.011c-0.2-0.28-0.19-0.33 0-0.2 0.89 0.58 1.67 0.7 2.37 0.37 0.58-0.28 1.23-0.24 2.14 0.12 0.23 0.1 0.43 0.17 0.44 0.17 0.020 0-0.090-0.1-0.24-0.24-0.302-0.26-0.668-0.455-1.072-0.556l-0.018-0.004c-0.18-0.030-0.388-0.047-0.6-0.047-0.447 0-0.877 0.076-1.277 0.215l0.027-0.008c-0.32 0.13-0.54 0.1-0.98-0.16-0.135-0.091-0.29-0.172-0.454-0.235l-0.016-0.005c-0.1 0 0.1-0.16 0.39-0.3 0.29-0.16 0.56-0.2 0.9-0.12 0.15 0.030 0.28 0.050 0.3 0.030 0-0.010-0.090-0.080-0.2-0.15-0.238-0.125-0.518-0.205-0.815-0.22l-0.005-0c-1.123-0.15-2.133-0.395-3.099-0.733l0.109 0.033c-0.27-0.1-0.27-0.1-0.18-0.2 0.16-0.15 0.51-0.2 0.88-0.1 0.060 0.030 0-0.070-0.17-0.22-0.3-0.29-0.47-0.6-0.48-0.84l0.040-0.57c0.030-0.34 0.020-0.43-0.040-0.56-0.040-0.080-0.070-0.16-0.060-0.17 0.050-0.060 0.4 0.060 0.51 0.17 0.15 0.16 0.2 0.34 0.27 0.99 0.060 0.5 0.16 0.8 0.32 0.95 0.090 0.080 0.090 0.070 0.090-0.17 0-0.18 0.020-0.28 0.080-0.35 0.12-0.13 0.14-0.13 0.21 0.050 0.1 0.2 0.4 0.5 0.64 0.6 0.25 0.12 0.3 0.12 0.36 0 0.040-0.080 0.030-0.14-0.040-0.3-0.2-0.4-0.28-0.98-0.22-1.5 0.020-0.27 0.040-0.31 0.1-0.26 0.1 0.090 0.28 0.5 0.44 1.050 0.12 0.42 0.2 0.59 0.4 0.9 0.15 0.22 0.32 0.43 0.38 0.49l0.1 0.1 0.030-0.11c0.020-0.060 0-0.31-0.040-0.56-0.080-0.53-0.050-0.75 0.14-1.040 0.14-0.21 0.19-0.23 0.23-0.060 0.020 0.060 0.16 0.24 0.31 0.4 0.31 0.3 0.3 0.29 0.28 0.98 0 0.24 0.010 0.32 0.1 0.45 0.14 0.2 0.62 0.53 1.32 0.91 0.66 0.37 0.92 0.56 1.2 0.87 0.22 0.26 0.26 0.23 0.12-0.090-0.1-0.2-0.35-0.41-1.060-0.88-0.457-0.272-0.828-0.643-1.092-1.086l-0.008-0.014c-0.12-0.26-0.13-0.32-0.16-1.14l-0.030-0.89-0.2-0.22c-0.19-0.2-0.19-0.2-0.090-0.2 0.060 0 0.2 0.030 0.31 0.080 0.56 0.25 1.11 1.070 1.4 2.1 0.15 0.5 0.18 0.55 0.48 0.87 0.13 0.14 0.32 0.36 0.42 0.5 0.1 0.12 0.17 0.19 0.15 0.13l-0.16-0.6c-0.086-0.366-0.135-0.785-0.135-1.216 0-0.398 0.042-0.786 0.121-1.16l-0.006 0.036c0.11-0.4 0.41-1.080 0.48-1.080 0.030 0 0.090 0.16 0.15 0.34zM7.54 20.74c0 0.18 0.030 0.43 0.070 0.56 0.040 0.12 0.060 0.23 0.050 0.25-0.060 0.050-0.6-0.56-0.6-0.69 0-0.060 0.38-0.44 0.45-0.44 0.020 0 0.030 0.15 0.030 0.32zM19.74 21.19c0.3 0.27 0.3 0.3 0.060 0.52-0.16 0.13-0.16 0.13-0.33 0.050-0.19-0.1-0.18-0.030-0.090-0.63 0.010-0.1 0.040-0.19 0.060-0.19s0.15 0.11 0.3 0.25zM21.49 22.67c-0.14 0.45-0.5 1.18-0.64 1.31-0.060 0.060-0.1 0.070-0.14 0.030-0.080-0.080-0.1-0.5-0.040-0.83 0.050-0.3 0.060-0.31 0.3-0.45 0.13-0.070 0.32-0.22 0.42-0.33 0.1-0.1 0.2-0.18 0.21-0.16l-0.1 0.43zM5.95 22.72c0.12 0.37 0.040 1.1-0.13 1.1-0.1 0-0.32-0.55-0.61-1.5 0-0.020 0.14 0.020 0.33 0.1 0.31 0.12 0.36 0.16 0.4 0.3z"></path>
14
- <path fill="#6c757d" d="M9.93 3.52c-0.2 0.1-0.38 0.42-0.38 0.66 0 0.33 0.3 0.62 0.66 0.63 0.12 0 0.5-0.2 0.45-0.25-0.035-0.007-0.074-0.011-0.115-0.011s-0.080 0.004-0.119 0.011l0.004-0.001c-0.17 0.010-0.22 0-0.35-0.11-0.090-0.070-0.15-0.16-0.15-0.2 0-0.030 0.13-0.16 0.28-0.3l0.28-0.25-0.12-0.13c-0.15-0.16-0.22-0.16-0.44-0.040zM11.050 3.73c-0.24 0.19-0.29 0.37-0.13 0.54l0.1 0.13-0.17 0.17c-0.067 0.050-0.123 0.11-0.168 0.177l-0.002 0.003c0 0.090 0.42 0.2 0.6 0.17 0.25-0.040 0.57-0.25 0.63-0.39 0.050-0.13-0.030-0.3-0.2-0.39-0.080-0.050-0.080-0.050 0.080-0.2l0.16-0.14-0.15-0.11c-0.22-0.17-0.5-0.16-0.75 0.040zM8.48 3.73c-0.12 0.13-0.13 0.18-0.030 0.18 0.12 0 0.17 0.18 0.15 0.58l-0.010 0.38 0.13 0.020h0.13v-0.46c0-0.52 0.050-0.65 0.2-0.48 0.060 0.060 0.12 0.1 0.15 0.1 0.050 0 0.28-0.19 0.25-0.2l-0.14-0.12c-0.12-0.11-0.13-0.11-0.27-0.040-0.13 0.070-0.16 0.070-0.29 0-0.17-0.080-0.15-0.080-0.27 0.040zM7.98 3.75c-0.050 0.060-0.080 0.060-0.27 0.010-0.32-0.070-0.53-0.020-0.75 0.2-0.32 0.32-0.3 0.75 0.050 1.010 0.21 0.17 0.4 0.2 0.72 0.1 0.15-0.030 0.2-0.030 0.26 0.030 0.12 0.1 0.16 0.1 0.1-0.010-0.026-0.091-0.041-0.197-0.041-0.305 0-0.016 0-0.031 0.001-0.047l-0 0.002c0-0.15-0.020-0.27-0.050-0.27-0.020 0-0.050 0.060-0.050 0.13 0 0.2-0.24 0.44-0.45 0.44-0.17 0-0.4-0.24-0.43-0.44-0.060-0.42 0.12-0.74 0.44-0.74 0.27 0 0.44 0.18 0.44 0.44 0 0.070 0.030 0.12 0.050 0.12 0.030 0 0.050-0.15 0.050-0.37 0-0.21 0-0.38-0.020-0.38l-0.050 0.080zM10.68 5.12c0 0.040-0.090 0.060-0.28 0.060-0.27 0-0.3 0.010-0.45 0.16-0.1 0.090-0.16 0.2-0.16 0.25 0 0.12 0.16 0.25 0.45 0.36 0.31 0.12 0.4 0.2 0.38 0.37-0.010 0.2-0.2 0.25-0.48 0.16-0.15-0.040-0.21-0.1-0.28-0.25l-0.1-0.18-0.010 0.25c-0.020 0.33 0 0.42 0.1 0.34 0.060-0.040 0.2-0.060 0.4-0.060 0.28 0.010 0.33 0 0.43-0.1 0.070-0.080 0.12-0.2 0.13-0.33 0.020-0.18 0-0.23-0.1-0.33-0.088-0.082-0.201-0.136-0.328-0.15l-0.002-0c-0.121-0.018-0.229-0.060-0.323-0.122l0.003 0.002-0.1-0.080 0.1-0.1c0.15-0.14 0.39-0.13 0.57 0.020l0.15 0.12v-0.16c-0.001-0.080-0.020-0.155-0.051-0.223l0.001 0.003c-0.030-0.050-0.050-0.050-0.050-0.020zM9.19 5.32c-0.060 0.1-0.17 0.23-0.25 0.29-0.12 0.080-0.13 0.1-0.060 0.15 0.050 0.040 0.070 0.16 0.070 0.45 0.010 0.34 0.030 0.4 0.13 0.48 0.15 0.12 0.2 0.11 0.32-0.060 0.1-0.13 0.1-0.14 0.020-0.14-0.14 0-0.19-0.090-0.2-0.4-0.020-0.27-0.020-0.28 0.1-0.3 0.22-0.020 0.33-0.050 0.33-0.1 0-0.020-0.080-0.030-0.19-0.020-0.15 0.030-0.18 0.020-0.2-0.070-0.004-0.026-0.006-0.055-0.006-0.085 0-0.062 0.010-0.123 0.027-0.179l-0.001 0.004c0.060-0.24 0.030-0.24-0.1-0.020zM7.040 5.55c-0.242 0.153-0.4 0.418-0.4 0.721 0 0.010 0 0.020 0.001 0.030l-0-0.001c0 0.2 0.020 0.24 0.16 0.38 0.1 0.1 0.21 0.16 0.34 0.18 0.16 0.020 0.19 0 0.26-0.13 0.080-0.14 0.080-0.14-0.040-0.14-0.188-0.015-0.352-0.109-0.459-0.248l-0.001-0.002c-0.13-0.18-0.070-0.6 0.1-0.66 0.030-0.020 0.12 0.020 0.2 0.080l0.13 0.12 0.1-0.12c0.11-0.1 0.11-0.1 0.030-0.23-0.12-0.15-0.15-0.15-0.41 0.020zM8.040 5.61c-0.23 0.16-0.31 0.32-0.24 0.51 0.050 0.13 0.040 0.17-0.040 0.27-0.12 0.15-0.11 0.26 0.020 0.41l0.11 0.14 0.13-0.1c0.17-0.14 0.23-0.14 0.3 0.020l0.060 0.12 0.16-0.16c0.16-0.15 0.16-0.16 0.070-0.2-0.080-0.030-0.1-0.070-0.1-0.44 0-0.33-0.010-0.43-0.1-0.54-0.11-0.16-0.16-0.17-0.37-0.030zM11.23 5.75c-0.101 0.090-0.182 0.2-0.238 0.324l-0.002 0.006c-0.060 0.22 0.010 0.44 0.17 0.57 0.2 0.17 0.32 0.16 0.45-0.040 0.13-0.19 0.14-0.25 0.040-0.16-0.17 0.14-0.5-0.16-0.5-0.45 0-0.13 0.18-0.24 0.33-0.19 0.040 0.020 0.12 0 0.17-0.050 0.090-0.070 0.090-0.070 0-0.14-0.14-0.1-0.2-0.090-0.42 0.14zM11.96 5.91c-0.1 0.090-0.14 0.16-0.1 0.15s0.1 0 0.15 0.020c0.070 0.030 0.080 0.1 0.080 0.39s0.020 0.35 0.1 0.42c0.1 0.090 0.1 0.090 0.24-0.050l0.14-0.13-0.11-0.030c-0.1-0.020-0.1-0.050-0.13-0.42-0.040-0.58-0.080-0.62-0.37-0.35zM9.77 7.15c-0.020 0.050-0.1 0.2-0.2 0.3-0.13 0.18-0.14 0.22-0.080 0.27 0.040 0.040 0.060 0.15 0.060 0.37 0 0.48 0.2 0.68 0.4 0.39 0.18-0.23 0.2-0.26 0.090-0.2-0.16 0.080-0.25-0.020-0.25-0.29 0-0.22 0-0.23 0.14-0.26 0.18-0.030 0.18-0.1 0-0.1h-0.16l0.040-0.29c0.030-0.28 0.010-0.37-0.040-0.19zM7.3 7.43c-0.38 0.28-0.5 0.63-0.34 0.96 0.1 0.22 0.45 0.5 0.51 0.43 0.16-0.19 0.3-0.4 0.28-0.43-0.020-0.020-0.060 0-0.090 0.020-0.043 0.037-0.099 0.059-0.16 0.060h-0c-0.13 0-0.34-0.17-0.27-0.22l0.33-0.27 0.28-0.23-0.14-0.23c-0.052-0.084-0.112-0.156-0.179-0.219l-0.001-0.001-0.22 0.13zM11.65 7.38c-0.26 0.16-0.32 0.27-0.29 0.47 0.020 0.12 0 0.21-0.040 0.27-0.1 0.12-0.1 0.4 0 0.53l0.070 0.1 0.2-0.11c0.25-0.15 0.28-0.15 0.46-0.020l0.14 0.1 0.15-0.15c0.1-0.1 0.12-0.15 0.060-0.13-0.16 0.060-0.21-0.050-0.21-0.43 0-0.35 0-0.37-0.17-0.54-0.058-0.065-0.124-0.121-0.196-0.168l-0.004-0.002c-0.065 0.021-0.121 0.049-0.173 0.082l0.003-0.002zM8.14 7.5c-0.1 0.12-0.1 0.13-0.030 0.26 0.060 0.1 0.080 0.24 0.080 0.56 0 0.43 0 0.43 0.12 0.43s0.11 0 0.11-0.46c0-0.38 0.020-0.48 0.090-0.54s0.1-0.060 0.16-0.010c0.070 0.050 0.080 0.14 0.080 0.53 0 0.27 0.020 0.5 0.050 0.5 0.030 0.020 0.12-0.030 0.21-0.1 0.1-0.080 0.14-0.13 0.1-0.14s-0.070-0.14-0.1-0.47c-0.020-0.45-0.070-0.63-0.17-0.63-0.081 0.033-0.15 0.077-0.211 0.131l0.001-0.001-0.16 0.11-0.080-0.14c-0.050-0.080-0.1-0.14-0.11-0.14l-0.14 0.12zM10.45 7.55l-0.15 0.15 0.14 0.030c0.14 0.030 0.14 0.030 0.18 0.41 0.030 0.45 0.12 0.55 0.3 0.35 0.1-0.11 0.11-0.12 0.030-0.17-0.060-0.030-0.080-0.11-0.080-0.35 0-0.31-0.1-0.58-0.21-0.58-0.030 0-0.12 0.070-0.2 0.16zM15.32 3.3c-0.020 0.020 0 0.040 0.040 0.040s0.1 0.040 0.13 0.1c0.030 0.080 0.020 0.18-0.070 0.5-0.070 0.21-0.14 0.39-0.15 0.39-0.040 0-0.3-0.6-0.3-0.68 0-0.040 0.040-0.080 0.090-0.1s0.1-0.040 0.1-0.070c0-0.050-0.22-0.080-0.69-0.11-0.33-0.030-0.35-0.020-0.22 0.030 0.1 0.030 0.2 0.12 0.28 0.24 0.13 0.2 0.58 1.22 0.58 1.31 0 0.13 0.1-0.11 0.33-0.8 0.22-0.65 0.26-0.73 0.4-0.81l0.14-0.1h-0.32c-0.17 0-0.33 0.030-0.34 0.050zM17.5 3.48c-0.090 0.14-0.32 0.35-0.43 0.4-0.040 0-0.030 0.030 0.030 0.080s0.1 0.18 0.12 0.5c0.050 0.46 0.15 0.72 0.26 0.72 0.040 0 0.13-0.080 0.2-0.18l0.1-0.18-0.1-0.020c-0.090-0.020-0.1-0.070-0.15-0.4-0.040-0.4-0.020-0.44 0.23-0.45 0.19 0 0.36-0.040 0.36-0.1 0-0.020-0.12-0.040-0.27-0.050l-0.27-0.010v-0.45l-0.090 0.14zM16.060 3.79c-0.15 0.13-0.16 0.16-0.080 0.16 0.2 0 0.26 0.11 0.26 0.48 0 0.29 0.010 0.38 0.1 0.48 0.12 0.16 0.27 0.16 0.4 0l0.1-0.13-0.15-0.1c-0.14-0.1-0.15-0.11-0.16-0.47-0.010-0.3-0.040-0.4-0.12-0.48-0.050-0.060-0.11-0.1-0.14-0.1s-0.11 0.070-0.21 0.16zM18.55 4.080c-0.22 0.17-0.28 0.3-0.18 0.37 0.070 0.050 0.070 0.070-0.020 0.23-0.12 0.19-0.1 0.4 0.030 0.6 0.080 0.13 0.080 0.13 0.2 0.040 0.22-0.15 0.33-0.16 0.43-0.040l0.1 0.1 0.11-0.12c0.14-0.16 0.14-0.2 0.050-0.27-0.050-0.040-0.070-0.16-0.070-0.45v-0.4l-0.15-0.1c-0.2-0.12-0.33-0.11-0.5 0.040zM14.98 5.37c-0.74 0.070-1.15 0.45-1.050 0.98 0.020 0.1 0.070 0.24 0.12 0.3 0.2 0.22 0.65 0.32 1.070 0.22 0.1-0.020 0.18-0.020 0.2 0 0.070 0.11 0.11 0.020 0.11-0.21 0-0.29-0.040-0.33-0.12-0.12-0.12 0.33-0.62 0.34-0.9 0.020-0.17-0.18-0.19-0.29-0.090-0.33 0.070-0.030 0.87 0.060 1.030 0.1 0.070 0.020 0.080 0 0.080-0.13 0-0.090 0-0.17-0.020-0.19s-0.14 0.010-0.27 0.050c-0.13 0.030-0.39 0.060-0.56 0.060h-0.32v-0.14c0-0.17 0.19-0.36 0.43-0.43 0.25-0.080 0.5 0.020 0.6 0.22 0.040 0.090 0.090 0.16 0.11 0.16s0.030-0.14 0.030-0.3-0.010-0.3-0.030-0.3l-0.42 0.040zM16.54 5.55c-0.13 0.14-0.13 0.14-0.23 0.060-0.17-0.16-0.2-0.16-0.44 0.020s-0.34 0.33-0.13 0.19c0.18-0.12 0.33-0.050 0.4 0.2 0.070 0.22 0 0.54-0.16 0.74l-0.090 0.12 0.1-0.050c0.087-0.060 0.16-0.133 0.218-0.217l0.002-0.003 0.13-0.16 0.16 0.17 0.17 0.17 0.36-0.36-0.18-0.090c-0.3-0.14-0.4-0.29-0.39-0.52 0.010-0.060 0.030-0.070 0.1-0.030 0.13 0.070 0.4 0.060 0.47-0.020 0.050-0.060 0.040-0.080-0.050-0.13-0.060-0.020-0.15-0.090-0.2-0.14-0.1-0.090-0.1-0.090-0.24 0.050zM17.59 5.86c-0.27 0.2-0.32 0.29-0.32 0.55 0 0.16 0.030 0.26 0.14 0.4 0.26 0.36 0.43 0.37 0.73 0.070l0.18-0.2-0.15 0.040c-0.45 0.14-0.86-0.36-0.58-0.7 0.090-0.11 0.1-0.11 0.18-0.030 0.1 0.090 0.37 0.1 0.42 0.030 0.030-0.040-0.25-0.32-0.34-0.33-0.020 0-0.15 0.080-0.26 0.17zM18.82 5.94c-0.33 0.25-0.47 0.66-0.32 0.94 0.1 0.2 0.3 0.37 0.42 0.37 0.13 0 0.41-0.26 0.53-0.5 0.047-0.092 0.074-0.201 0.074-0.316 0-0.218-0.098-0.413-0.253-0.543l-0.001-0.001c-0.17-0.13-0.22-0.13-0.45 0.050zM19.050 6.15c0.22 0.15 0.29 0.5 0.14 0.78-0.060 0.12-0.14 0.1-0.31-0.070-0.2-0.21-0.26-0.42-0.17-0.63 0.070-0.18 0.15-0.2 0.34-0.080zM14.010 7.8c0.020 0.87 0.030 0.93 0.16 1 0.090 0.050 0.12 0.040 0.26-0.11s0.15-0.17 0.070-0.17c-0.16 0-0.2-0.15-0.2-0.82v-0.64h-0.3l0.010 0.74zM16.5 7.2c-0.030 0.050-0.13 0.15-0.23 0.22-0.16 0.11-0.17 0.13-0.1 0.2 0.050 0.060 0.060 0.2 0.060 0.5 0 0.36 0.010 0.41 0.12 0.51 0.15 0.15 0.22 0.15 0.37-0.010 0.16-0.16 0.16-0.18 0-0.17-0.15 0-0.2-0.1-0.2-0.51 0-0.27 0-0.27 0.14-0.27 0.17 0 0.18-0.080 0.020-0.12-0.12-0.030-0.13-0.050-0.1-0.24 0.020-0.23 0.010-0.25-0.070-0.11zM15.15 7.51c-0.21 0.2-0.25 0.3-0.19 0.46 0.040 0.090 0.030 0.13-0.020 0.17-0.056 0.067-0.097 0.147-0.119 0.236l-0.001 0.004c-0.040 0.14-0.040 0.2 0.020 0.32 0.1 0.17 0.14 0.18 0.22 0.070 0.040-0.050 0.13-0.12 0.21-0.16 0.14-0.090 0.14-0.090 0.25 0.020l0.11 0.1 0.17-0.19c0.16-0.17 0.17-0.19 0.080-0.2-0.19-0.040-0.22-0.1-0.2-0.44 0-0.28 0-0.33-0.1-0.44-0.15-0.16-0.2-0.15-0.43 0.050zM17.11 7.67l-0.13 0.1 0.13 0.12c0.12 0.11 0.12 0.13 0.1 0.42-0.030 0.26-0.030 0.3 0.070 0.42l0.12 0.13 0.26-0.12c0.15-0.070 0.27-0.1 0.27-0.080 0 0.030 0.040 0.090 0.1 0.14 0.080 0.090 0.1 0.090 0.2 0.020 0.090-0.060 0.11-0.1 0.080-0.13-0.034-0.109-0.053-0.235-0.053-0.365 0-0.030 0.001-0.059 0.003-0.089l-0 0.004c0-0.4 0-0.41-0.14-0.54l-0.14-0.14-0.16 0.15c-0.13 0.13-0.13 0.15-0.050 0.15 0.15 0 0.2 0.1 0.2 0.36 0 0.3-0.080 0.38-0.33 0.3l-0.16-0.030-0.010-0.37c-0.010-0.26-0.040-0.4-0.1-0.46-0.080-0.1-0.1-0.1-0.25 0.020zM18.68 7.9l-0.15 0.11 0.3 0.13v0.95l0.15-0.020 0.15-0.010 0.010-0.45c0.010-0.24 0.040-0.46 0.060-0.49 0.030-0.020 0.1 0 0.19 0.1l0.14 0.13 0.28-0.27-0.18-0.13-0.17-0.13-0.31 0.19-0.1-0.12c-0.12-0.16-0.19-0.16-0.37 0zM13.080 11.38c-0.33 0.1-0.46 0.28-0.17 0.23 0.15-0.020 0.16-0.010 0.16 0.1 0 0.070 0.010 0.16 0.030 0.21 0.030 0.070 0.020 0.080-0.090 0.030-0.070-0.020-0.14-0.040-0.15-0.020-0.040 0.030 0.26 0.17 0.4 0.17 0.12 0 0.81-0.32 0.81-0.38 0-0.040-0.58-0.32-0.73-0.34-0.039-0.007-0.084-0.012-0.13-0.012s-0.091 0.004-0.134 0.012l0.005-0.001z"></path>
15
- </svg>
16
- SVG
17
- end
18
-
19
- def title
20
- key = "blacklight.icon.#{name}"
21
- t(key)
22
- end
23
- end
24
- end
25
- end
@@ -1,26 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Blacklight
4
- module Icons
5
- class UniversityOfColoradoBoulderComponent < Blacklight::Icons::IconComponent
6
- self.svg = svg
7
-
8
- def svg
9
- <<~SVG
10
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.6 57.6">
11
- <title>#{title}</title>
12
- <path fill="#6c757d" d="M47.4,57.6H24.4l-8.2-8.1v-6.1H8.1L0,35.3V8.1L8.1,0h27.2l8.1,8.1v6.1h16.2v15h-4v20.3L47.4,57.6z M24.9,56.3
13
- h22l7.4-7.3V28h4V15.5H42.1V8.6l-7.3-7.3H8.6L1.3,8.6v26.1l7.4,7.3h8.8V49L24.9,56.3z M44,17.6V46H27.8v-6.1h6.1l6.1-6.1v-8.1h-8.1
14
- v6h-4V17.6H15.6v8.1h4v6h-8.1V11.5h20.3v6.1H40V9.5l-6.1-6.1H9.5L3.4,9.5v24.3l6.1,6.1h10.1V48l6.2,6.1H46l6.2-6.1V25.8h4v-8.1
15
- C56.1,17.6,44,17.6,44,17.6z"/>
16
- </svg>
17
- SVG
18
- end
19
-
20
- def title
21
- key = "blacklight.icon.#{name}"
22
- t(key)
23
- end
24
- end
25
- end
26
- end
@@ -1,25 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Blacklight
4
- module Icons
5
- class UniversityOfIllinoisUrbanaChampaignComponent < Blacklight::Icons::IconComponent
6
- self.svg = svg
7
-
8
- def svg
9
- <<~SVG
10
- <!-- Generated by IcoMoon.io -->
11
- <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="22" height="32" viewBox="0 0 22 32">
12
- <title>#{title}</title>
13
- <path fill="#6c757d" d="M22.16 8.62v-8.62h-22.16v8.62h4.94v14.77h-4.9v8.61h22.15v-8.6h-4.99v-14.78zM17.21 24.62h3.69v6.13h-19.67v-6.13h3.68c0.68 0 1.23-0.55 1.23-1.23v-14.77c0-0.68-0.55-1.23-1.23-1.23h-3.68v-6.14h19.7v6.15h-3.69c-0.67 0-1.22 0.55-1.22 1.23v14.77c0 0.67 0.53 1.21 1.2 1.23z"></path>
14
- <path fill="#6c757d" d="M17.21 7.38h3.69v-6.13h-19.67v6.13h3.68c0.68 0 1.23 0.55 1.23 1.23v14.77c0 0.68-0.55 1.23-1.23 1.23h-3.68v6.13h19.7v-6.13h-3.69c-0.67 0-1.22-0.55-1.22-1.23v-14.76c0-0.68 0.53-1.22 1.2-1.23z"></path>
15
- </svg>
16
- SVG
17
- end
18
-
19
- def title
20
- key = "blacklight.icon.#{name}"
21
- t(key)
22
- end
23
- end
24
- end
25
- end
@@ -1,24 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Blacklight
4
- module Icons
5
- class UniversityOfIowaComponent < Blacklight::Icons::IconComponent
6
- self.svg = svg
7
-
8
- def svg
9
- <<~SVG
10
- <!-- Generated by IcoMoon.io -->
11
- <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
12
- <title>#{title}</title>
13
- <path fill="#6c757d" d="M16.43 4.4c0 0.43-0.040 1.15 0.18 1.3 0.6 0.4 1.62 0.68 1.95 1.070 0.080 0.1-0.020 0.8-0.26 0.74-1.63-0.36-1.7-0.34-2.9-0.32-0.1 0-0.35-0.5-0.37-0.84 0-0.21 0.3-0.43 0.4-0.77 0.2-0.57 0.050-3.2 0.1-4.97 0.020-0.4 0.060-0.56 0.45-0.56 0.36 0 0.4 0.25 0.4 0.55-0.020 1.26 0.050 2.56 0.050 3.8zM15.48 0.45c0-0.38 0.5-0.62 0.68-0.38zM18.4 6.72c0.24 0.25 0 0.87-0.5 0.68-0.87-0.31-1.68-0.19-2.54-0.31-0.25-0.060-0.32-0.5-0.32-0.74zM16.35 1.82c0 1.17-0.060 2.29 0.060 3.47 0 0.12 0.12 0.31 0.19 0.37zM22.98 17.95c0.204-0.025 0.44-0.040 0.68-0.040s0.476 0.015 0.708 0.043l-0.028-0.003c0.11 0.020 0.19 0.1 0.22 0.14 0.12 0.16 0.1 0.78 0.1 0.97-0.030 0.4-0.24 0.64-0.24 1 0.030 2.83 0.1 6.2-0.060 6.79-0.26 1-0.22 1.18-0.62 1.21-0.11 0.010-0.24-0.020-0.3-0.36-0.063-0.348-0.099-0.75-0.1-1.159v-0.001c0-1.17 0.020-4.2-0.040-5.38-0.040-1.070-0.32-1.14-0.4-1.2-0.1-0.070-0.24-0.1-0.27-0.28-0.060-0.37 0.060-1.22 0.17-1.52 0.030-0.060 0.080-0.18 0.18-0.2zM25.13 30.6c0.15 0 0.36 0 0.4 0.21 0.040 0.23-0.030 0.63-0.1 0.9-0.060 0.23-0.14 0.27-0.3 0.27h-18.47c-0.14 0-0.18-0.070-0.2-0.17-0.070-0.28 0.020-0.83 0.11-1.050 0.030-0.1 0.11-0.12 0.13-0.13 0.2-0.1 0.41 0.020 0.63-0.8 0.3-1.13 0.18-11.9 0.18-11.9-0.010-0.64-0.2-1.27-0.72-1.39-0.068-0.016-0.128-0.040-0.183-0.072l0.003 0.002c-0.24-0.15-0.090-1.43 0.27-1.46 0.58-0.070 0.79-0.16 0.93-0.52 0.58-1.44 0.87-2.92 1.68-4.28 0.826-1.279 1.91-2.322 3.186-3.076l0.044-0.024c0.43-0.13 0.9 0.45 0.68 0.84-0.36 0.63-0.76 0.9-1.28 1.76-0.4 0.64-0.12 1.29-0.3 2.090-0.28 1.33-0.7 1.12-1.15 2.030-0.11 0.22-0.13 0.68-0.060 0.9 0.060 0.23 0.5 0.2 0.74 0.2 4.66 0.060 13.75 0.040 14 0.070 0.14 0.040 0.19 0.080 0.22 0.19 0.004 0.061 0.007 0.132 0.007 0.204 0 0.32-0.050 0.628-0.143 0.917l0.006-0.021c-0.070 0.21-0.31 0.24-0.43 0.25-2.25 0.060-8.2 0.030-12.36 0.030-0.080 0-0.28 0.010-0.35 0.15-0.13 0.27-0.16 0.64-0.13 0.99 0.010 0.12 0.12 0.14 0.18 0.17 0.26 0.1 1.68 0 1.98 0.080 0.18 0.060 0.26 0.1 0.35 0.28 0.21 0.49-0.1 9.97 0.11 11.9 0.020 0.18 0.13 0.33 0.32 0.4 0.26 0.080 1.39 0.13 1.69-0.14 0.74-0.68 0.5-7.020 0.45-8.72-0.020-1.1-0.52-1.6-1.59-1.7-0.2-0.030-0.24-0.12-0.27-0.17-0.1-0.16 0-1.23 0.19-1.68 0.060-0.16 0.2-0.2 0.26-0.2h2.35c0.64 0 0.82 0.24 0.82 0.82 0 3.29-0.020 11.27 0.14 11.62 0.22 0.47 1.040 0.17 1.22-0.27 0.35-0.88 0.32-6.2 0.27-8.92-0.010-0.79-0.28-1.080-0.8-1.2-0.151-0.023-0.267-0.146-0.28-0.299l-0-0.001c-0.040-0.37 0.060-1.2 0.21-1.52 0.050-0.1 0.1-0.15 0.19-0.2 0.1-0.070 1.16-0.030 1.72-0.030 0.43 0 0.54 0.5 0.54 0.81 0.060 3.6-0.070 7.2 0.020 10.8 0.020 0.53 0 0.81 0.19 0.93 0.28 0.18 1.75 0.13 2.71 0.13zM9.33 30.25c0.54-0.6 0.43-8.65 0.15-9.31-0.23-0.54-0.7-0.37-0.78-0.030-0.040 0.18-0.080 6.42-0.030 9.4 0.010 0.45 0.33 0.31 0.66-0.060zM12.59 30.23c0.51-0.59 0.48-6.080 0.32-8.56-0.050-0.87-0.14-1.18-0.68-1.57-0.24-0.17-0.88-0.2-0.95 0.15-0.040 0.19-0.17 9.4 0.080 10.080 0.16 0.43 0.9 0.3 1.23-0.1z"></path>
14
- </svg>
15
- SVG
16
- end
17
-
18
- def title
19
- key = "blacklight.icon.#{name}"
20
- t(key)
21
- end
22
- end
23
- end
24
- end
@@ -1,24 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Blacklight
4
- module Icons
5
- class UniversityOfMarylandComponent < Blacklight::Icons::IconComponent
6
- self.svg = svg
7
-
8
- def svg
9
- <<~SVG
10
- <!-- Generated by IcoMoon.io -->
11
- <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="26" height="32" viewBox="0 0 26 32">
12
- <title>#{title}</title>
13
- <path fill="#6c757d" d="M12.28 31.99c-0.26-0.010-0.32-0.020-0.23-0.040l0.13-0.010h-0.16c-1.375-0.121-2.641-0.47-3.8-1.009l0.070 0.029c-0.25-0.12-0.3-0.15-0.31-0.23l-0.12-0.46c-0.070-0.27-0.11-0.37-0.15-0.38-0.030-0.010-0.27 0.020-0.53 0.070l-0.49 0.090-0.25-0.18c-1.829-1.366-3.304-3.103-4.331-5.107l-0.039-0.083-0.12-0.24 0.16-0.4c0.1-0.22 0.16-0.43 0.15-0.45 0-0.030-0.18-0.1-0.42-0.17l-0.41-0.13-0.090-0.21c-0.703-1.768-1.163-3.813-1.278-5.951l-0.002-0.049-0.010-0.38 0.3-0.32 0.3-0.35c0-0.010-0.12-0.18-0.3-0.36l-0.3-0.33 0.020-0.4c0.1-2.070 0.53-4.030 1.3-6.060l0.060-0.13 0.4-0.13c0.25-0.080 0.42-0.15 0.43-0.18 0.010-0.020-0.060-0.22-0.15-0.45l-0.16-0.4 0.14-0.28c1.057-2.047 2.507-3.752 4.262-5.073l0.038-0.027 0.3-0.23 0.5 0.1 0.53 0.070c0.020 0 0.090-0.18 0.14-0.39l0.12-0.46c0.020-0.080 0.060-0.1 0.33-0.23 1.103-0.538 2.388-0.895 3.744-0.998l0.036-0.002 0.62-0.010c0.42 0 0.7 0 0.63 0.020l-0.15 0.020h0.18c1.354 0.105 2.604 0.44 3.748 0.968l-0.068-0.028 0.37 0.17 0.12 0.46c0.070 0.27 0.14 0.47 0.17 0.48s0.25-0.020 0.52-0.070l0.48-0.090 0.16 0.1c1.62 1.161 2.953 2.615 3.944 4.295l0.036 0.065c0.21 0.35 0.62 1.1 0.62 1.14l-0.17 0.41c-0.1 0.22-0.16 0.42-0.15 0.44 0 0.020 0.2 0.1 0.42 0.16l0.4 0.13 0.060 0.13c0.731 1.802 1.209 3.888 1.328 6.070l0.002 0.050 0.010 0.35-0.3 0.32c-0.17 0.18-0.31 0.34-0.31 0.36s0.14 0.18 0.3 0.36l0.31 0.32-0.020 0.35c-0.123 2.273-0.619 4.397-1.427 6.359l0.047-0.129c-0.020 0.020-0.2 0.080-0.42 0.15-0.21 0.070-0.39 0.14-0.4 0.16s0.060 0.22 0.15 0.45l0.17 0.41-0.16 0.3c-0.565 1.072-1.185 1.996-1.892 2.847l0.021-0.027c-0.35 0.42-1.14 1.22-1.55 1.58-0.31 0.27-1.010 0.8-1.13 0.87-0.040 0.020-0.18 0-0.54-0.060-0.27-0.050-0.5-0.080-0.53-0.070s-0.050 0.1-0.22 0.7l-0.060 0.24-0.3 0.14c-1.091 0.53-2.361 0.887-3.701 0.997l-0.039 0.003c-0.23 0.008-0.442 0.022-0.651 0.043l0.041-0.003c-0.070 0-0.29 0-0.49-0.020zM14 30.66c1.095-0.166 2.081-0.495 2.982-0.965l-0.052 0.025c0.030-0.030 0.090-0.2 0.13-0.37l0.1-0.35s0.2 0.010 0.4 0.050c0.47 0.080 0.4 0.1 0.89-0.26 1.611-1.241 2.912-2.802 3.825-4.594l0.035-0.076 0.15-0.3-0.14-0.36c-0.080-0.19-0.13-0.35-0.13-0.36l0.34-0.12c0.23-0.070 0.34-0.13 0.37-0.17 0.704-1.71 1.164-3.69 1.278-5.763l0.002-0.047 0.020-0.47-0.48-0.5 0.070-0.070c0.030-0.050 0.14-0.16 0.24-0.26l0.17-0.18-0.020-0.47c-0.113-2.123-0.572-4.107-1.324-5.941l0.044 0.121c-0.030-0.050-0.13-0.1-0.37-0.17-0.19-0.060-0.34-0.12-0.34-0.13l0.14-0.37 0.13-0.33-0.15-0.31c-0.768-1.495-1.734-2.77-2.883-3.853l-0.007-0.006c-0.423-0.405-0.887-0.773-1.383-1.098l-0.037-0.022c-0.030-0.020-0.21 0-0.43 0.040-0.2 0.040-0.39 0.060-0.4 0.050l-0.1-0.35-0.12-0.37c-0.878-0.462-1.899-0.799-2.979-0.954l-0.051-0.006c-0.5-0.070-1.9-0.070-2.4 0-1.134 0.142-2.162 0.488-3.083 1.002l0.043-0.022-0.11 0.37-0.1 0.34-0.4-0.060c-0.24-0.040-0.4-0.060-0.43-0.040-0.1 0.030-0.63 0.42-0.96 0.7-1.458 1.24-2.638 2.758-3.465 4.479l-0.035 0.081c0 0.030 0.070 0.2 0.14 0.39 0.070 0.18 0.13 0.33 0.12 0.34l-0.33 0.11c-0.18 0.060-0.34 0.13-0.37 0.16-0.12 0.14-0.6 1.6-0.81 2.5-0.27 1.1-0.46 2.51-0.48 3.52l-0.010 0.28 0.47 0.52-0.47 0.5v0.29c0.101 2.203 0.577 4.268 1.364 6.171l-0.044-0.121 0.35 0.12c0.17 0.050 0.33 0.11 0.33 0.12l-0.12 0.34c-0.043 0.103-0.088 0.233-0.124 0.366l-0.006 0.024c0.934 1.999 2.292 3.661 3.967 4.926l0.033 0.024c0.49 0.37 0.42 0.35 0.88 0.27l0.4-0.060 0.1 0.34c0.050 0.18 0.1 0.35 0.13 0.38 0.967 0.496 2.092 0.849 3.281 0.995l0.049 0.005c0.43 0.050 1.75 0.020 2.18-0.050zM11.73 30c-0.898-0.111-1.716-0.34-2.477-0.672l0.057 0.022c-0.26-0.11-0.27-0.12-0.3-0.24l-0.080-0.28-0.040-0.17 0.16-0.24 0.6-0.86c0.4-0.54 0.46-0.63 0.6-0.7l0.13-0.080h4.66l0.14 0.080c0.13 0.070 0.2 0.16 0.65 0.79l0.6 0.86 0.1 0.15-0.070 0.28-0.090 0.3c-0.722 0.347-1.56 0.609-2.44 0.744l-0.050 0.006c-0.41 0.050-1.72 0.070-2.15 0.010zM7.43 28.28c-1.552-1.156-2.797-2.638-3.648-4.35l-0.032-0.070 0.1-0.31 0.1-0.26h3.050l0.35 0.18 1.9 2.7 0.020 0.52-0.53 0.76c-0.3 0.42-0.56 0.79-0.59 0.81-0.087 0.049-0.188 0.085-0.296 0.099l-0.004 0-0.26 0.030-0.16-0.1zM17.55 28.35l-0.28-0.070-0.57-0.8-0.56-0.8-0.020-0.43 0.17-0.25 0.97-1.4c0.8-1.13 0.82-1.14 0.98-1.23l0.17-0.090h3.050l0.1 0.27c0.070 0.15 0.11 0.29 0.11 0.3-0.861 1.7-2.034 3.125-3.454 4.25l-0.026 0.020c-0.38 0.3-0.34 0.28-0.64 0.22zM10.26 26.040c-0.15-0.080-0.18-0.12-1.1-1.43-0.53-0.74-0.97-1.38-0.99-1.43-0.018-0.068-0.029-0.145-0.029-0.225s0.010-0.157 0.030-0.231l-0.001 0.006 0.99-1.41c0.94-1.33 0.95-1.34 1.1-1.42l0.17-0.080h4.58l0.15 0.080c0.15 0.080 0.2 0.13 1.12 1.45l0.97 1.37v0.5l-0.97 1.37c-0.93 1.31-0.97 1.37-1.12 1.45l-0.15 0.080h-4.6l-0.15-0.080zM3.46 22.52l-0.4-0.13-0.13-0.37c-0.527-1.419-0.881-3.061-0.988-4.77l-0.002-0.050-0.010-0.37 0.46-0.48h4.63l0.16 0.080c0.16 0.080 0.17 0.090 1.13 1.45l0.97 1.37-0.020 0.51-1.91 2.7-0.35 0.19h-3.15l-0.4-0.13zM18.25 22.56c-0.17-0.090-0.18-0.1-1.010-1.27-1.24-1.76-1.12-1.56-1.12-1.8v-0.21l0.97-1.37c0.89-1.26 0.98-1.38 1.12-1.47l0.15-0.1h4.66l0.24 0.25c0.28 0.28 0.26 0.2 0.2 1.030-0.163 1.725-0.546 3.312-1.122 4.802l0.042-0.122c-0.040 0.070-0.090 0.1-0.44 0.22l-0.4 0.13h-3.12l-0.17-0.090zM10.25 19.070c-0.14-0.070-0.22-0.18-1.12-1.45l-0.97-1.37v-0.47l0.97-1.37c0.9-1.27 0.98-1.38 1.11-1.45l0.14-0.080h4.66l0.14 0.080c0.13 0.070 0.22 0.19 1.1 1.44l0.97 1.36v0.52l-0.96 1.35c-0.89 1.25-0.98 1.37-1.1 1.44l-0.15 0.080h-4.65l-0.15-0.080zM2.15 15.44l-0.23-0.25 0.020-0.37c0.080-1.54 0.44-3.28 0.97-4.76l0.15-0.4 0.82-0.28h3.12l0.17 0.090c0.1 0.040 0.2 0.13 0.24 0.18l0.97 1.35 0.9 1.28v0.5l-0.96 1.37c-0.9 1.27-0.98 1.37-1.12 1.44l-0.14 0.080h-4.68l-0.23-0.25zM18.22 15.6c-0.14-0.080-0.23-0.2-1.12-1.46l-0.98-1.38v-0.21c0-0.25-0.12-0.050 1.12-1.8l0.83-1.19 0.36-0.18h3.11l0.4 0.13c0.35 0.12 0.4 0.15 0.44 0.22 0.534 1.369 0.913 2.957 1.065 4.611l0.005 0.069c0.070 0.83 0.090 0.76-0.2 1.040l-0.23 0.23h-4.66l-0.14-0.080zM10.25 12.12c-0.17-0.1-0.2-0.13-1.13-1.45l-0.96-1.37v-0.18c-0.020-0.1 0-0.22 0-0.27s0.47-0.69 1-1.44c0.94-1.33 0.95-1.35 1.1-1.43l0.17-0.080h4.57l0.16 0.1c0.16 0.080 0.2 0.12 1.13 1.44l0.96 1.37v0.5l-0.97 1.36c-0.93 1.32-0.97 1.38-1.12 1.45l-0.15 0.080h-4.6l-0.17-0.090zM3.85 8.49c-0.038-0.087-0.072-0.19-0.097-0.297l-0.003-0.013c0.844-1.713 2.019-3.145 3.453-4.26l0.027-0.020c0.23-0.18 0.35-0.25 0.4-0.25 0.17 0 0.47 0.070 0.52 0.11l0.59 0.81 0.53 0.77-0.010 0.51-1.91 2.7-0.35 0.19h-3.040l-0.1-0.26zM18.23 8.66c-0.15-0.090-0.2-0.14-0.96-1.24l-0.98-1.39-0.17-0.25 0.020-0.43 0.56-0.8 0.57-0.8c0.010-0.020 0.43-0.1 0.51-0.1 0.17 0 0.96 0.66 1.65 1.37 0.882 0.902 1.63 1.94 2.207 3.079l0.033 0.071c0 0.020-0.040 0.16-0.1 0.3l-0.1 0.28h-3.080l-0.16-0.1zM10.28 5.18c-0.18-0.090-0.2-0.1-0.62-0.71-0.25-0.34-0.52-0.73-0.6-0.86l-0.17-0.24 0.040-0.17 0.080-0.28c0.030-0.12 0.040-0.13 0.3-0.24 0.63-0.28 1.44-0.5 2.22-0.63 0.345-0.048 0.744-0.076 1.149-0.076 1.34 0 2.609 0.301 3.744 0.838l-0.053-0.023 0.090 0.3 0.070 0.29-0.1 0.14-0.6 0.86c-0.5 0.7-0.5 0.7-0.69 0.8l-0.18 0.1h-4.5l-0.18-0.1zM0 16.75c0-0.050 0-0.070 0.010-0.050v0.1l-0.010-0.050zM25.4 16.71c0-0.040 0.010-0.040 0.020-0.020v0.060s-0.020-0.010-0.010-0.040zM0 15.28c0-0.060 0-0.080 0.010-0.050v0.1l-0.010-0.050zM25.4 15.32c0-0.030 0.010-0.040 0.020-0.020v0.060s-0.020 0-0.010-0.040z"></path>
14
- </svg>
15
- SVG
16
- end
17
-
18
- def title
19
- key = "blacklight.icon.#{name}"
20
- t(key)
21
- end
22
- end
23
- end
24
- end
@@ -1,24 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Blacklight
4
- module Icons
5
- class UniversityOfMichiganComponent < Blacklight::Icons::IconComponent
6
- self.svg = svg
7
-
8
- def svg
9
- <<~SVG
10
- <!-- Generated by IcoMoon.io -->
11
- <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="45" height="32" viewBox="0 0 45 32">
12
- <title>#{title}</title>
13
- <path fill="#6c757d" d="M44.59 23v9h-16.79v-9h3.63v-9.1l-9.2 12.53-9.070-12.53v9.12h3.64v8.98h-16.8v-9h3.4v-14h-3.4v-9h13.2l9.1 12.65 9.090-12.65h13.2v9h-3.4v14z"></path>
14
- </svg>
15
- SVG
16
- end
17
-
18
- def title
19
- key = "blacklight.icon.#{name}"
20
- t(key)
21
- end
22
- end
23
- end
24
- end
@@ -1,24 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Blacklight
4
- module Icons
5
- class UniversityOfMinnesotaComponent < Blacklight::Icons::IconComponent
6
- self.svg = svg
7
-
8
- def svg
9
- <<~SVG
10
- <!-- Generated by IcoMoon.io -->
11
- <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
12
- <title>#{title}</title>
13
- <path fill="#6c757d" d="M29.96 20.66h2v4.85h-9.51v-4.85h1.7l-2.91-4.86-1.13 1.89h1.080v4.85h-10.42v-4.85h1.080l-1.13-1.89-2.92 4.86h1.71v4.85h-9.51v-4.85h2l5.6-9.31h-1.54v-4.86h9.32v4.86h-1.54l2.14 3.55 2.14-3.56h-1.54v-4.84h9.32v4.85h-1.54zM25.28 7.1h-8.080v3.61h2.020l-3.24 5.39-3.24-5.39h2.020v-3.6h-8.080v3.6h2.020l-6.35 10.57h-1.73v3.6h8.28v-3.6h-2.2l4.020-6.68 2.23 3.7h-1.55v3.62h9.18v-3.62h-1.56l2.23-3.71 4.020 6.68h-2.19v3.6h8.27v-3.6h-1.75l-6.35-10.56h2.020v-3.6zM24.66 7.73v2.36h-2.5l7.1 11.8h1.46v2.37h-7.030v-2.36h2.67l-5.12-8.5-3.33 5.53h2.040v2.36h-7.95v-2.36h2.040l-3.33-5.54-5.11 8.51h2.67v2.37h-7.030v-2.37h1.46l7.1-11.8h-2.5v-2.36h6.84v2.36h-2.5l4.34 7.22 4.34-7.22h-2.5v-2.36h6.84z"></path>
14
- </svg>
15
- SVG
16
- end
17
-
18
- def title
19
- key = "blacklight.icon.#{name}"
20
- t(key)
21
- end
22
- end
23
- end
24
- end
@@ -1,27 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Blacklight
4
- module Icons
5
- class UniversityOfNebraskaLincolnComponent < Blacklight::Icons::IconComponent
6
- self.svg = svg
7
-
8
- def svg
9
- <<~SVG
10
- <!-- Generated by IcoMoon.io -->
11
- <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
12
- <title>#{title}</title>
13
- <path fill="#6c757d" d="M4.028 7.727v3.473h1.544v9.6h-1.544v6.946h9.864v-6.946h-1.544l0.002-1.916c0-1.805 0.002-1.912 0.032-1.869 0.040 0.055 1.084 1.704 3.185 5.028 0.501 0.791 1.476 2.334 2.566 4.056 0.518 0.817 0.964 1.523 0.99 1.566l0.049 0.081h8.292v-6.946h-1.544v-9.6h1.544l-0.004-3.469-0.006-3.467-9.854-0.009v6.946l0.768 0.004 0.766 0.006 0.006 1.905c0.002 1.048-0.002 1.907-0.009 1.907-0.009-0.002-0.363-0.553-0.789-1.229-0.721-1.143-1.506-2.383-3.584-5.67-0.457-0.725-0.958-1.517-1.112-1.76-0.152-0.243-0.514-0.815-0.802-1.271l-0.525-0.828-8.29-0.009v3.473zM12.943 5.813c0.437 0.691 1.118 1.768 1.513 2.394 0.397 0.627 1.158 1.83 1.69 2.673s1.101 1.741 1.261 1.995c0.744 1.175 1.355 2.144 1.666 2.635 0.186 0.296 0.344 0.544 0.354 0.555 0.009 0.009 0.017-1.088 0.017-2.566v-2.583h-1.544v-6.362h9.261l-0.004 3.176-0.006 3.177-0.766 0.006-0.768 0.004v10.184h1.544v6.344h-7.825l-0.966-1.53c-0.533-0.84-1.34-2.118-1.796-2.837-0.454-0.719-1.107-1.752-1.451-2.296-1.387-2.195-2.485-3.932-2.767-4.376-0.164-0.26-0.299-0.474-0.303-0.478s-0.008 1.158-0.008 2.583v2.592h1.544v6.344h-9.261v-6.344h1.544v-10.184l-0.766-0.004-0.768-0.006-0.006-3.177-0.004-3.176h7.821l0.792 1.257z"></path>
14
- <path fill="#6c757d" d="M4.8 7.727v2.701h1.544v11.144h-1.544v5.402h8.32v-5.402h-1.544v-3.637c0-2.001 0.008-3.629 0.015-3.62 0.009 0.011 0.139 0.213 0.29 0.452 0.149 0.237 0.661 1.047 1.135 1.798 1.737 2.746 2.383 3.77 2.814 4.452 0.241 0.382 0.474 0.751 0.518 0.819 0.045 0.068 0.181 0.282 0.305 0.48 0.124 0.196 0.488 0.772 0.809 1.28 0.32 0.506 0.727 1.15 0.904 1.431 0.177 0.279 0.525 0.83 0.774 1.224l0.454 0.715 7.098 0.009v-5.402h-1.544v-11.144h1.544v-5.402h-8.32v5.402l0.768 0.004 0.766 0.006 0.006 3.62c0.002 2.366-0.002 3.62-0.015 3.614-0.009-0.002-0.166-0.239-0.344-0.523s-0.563-0.89-0.851-1.346c-0.939-1.483-2.231-3.529-2.522-3.991-0.309-0.489-2.878-4.552-3.753-5.935l-0.538-0.851h-7.087v2.701z"></path>
15
- <path fill="#6c757d" d="M28.386 26.539c-0.107 0.036-0.243 0.117-0.297 0.181-0.273 0.309-0.186 0.776 0.177 0.96 0.098 0.049 0.13 0.056 0.271 0.056 0.124 0 0.181-0.009 0.248-0.041 0.124-0.056 0.243-0.173 0.309-0.301 0.047-0.094 0.055-0.13 0.053-0.26 0-0.117-0.009-0.171-0.043-0.239-0.109-0.226-0.299-0.356-0.535-0.365-0.075-0.004-0.156 0-0.183 0.009zM28.755 26.688c0.303 0.154 0.371 0.552 0.136 0.794-0.307 0.314-0.841 0.094-0.843-0.35 0-0.201 0.137-0.397 0.328-0.467 0.102-0.040 0.282-0.028 0.38 0.023z"></path>
16
- <path fill="#6c757d" d="M28.292 27.132v0.369h0.111l0.006-0.156c0.006-0.147 0.008-0.154 0.049-0.154 0.036 0 0.058 0.028 0.122 0.151 0.072 0.137 0.085 0.151 0.141 0.156l0.062 0.006-0.079-0.158-0.079-0.16 0.068-0.066c0.060-0.056 0.070-0.075 0.070-0.151 0-0.064-0.011-0.1-0.045-0.139-0.043-0.051-0.055-0.053-0.235-0.058l-0.19-0.008v0.369zM28.6 26.891c0.041 0.040 0.038 0.126-0.006 0.166-0.024 0.023-0.060 0.030-0.109 0.026-0.070-0.006-0.072-0.008-0.077-0.088-0.004-0.045-0.002-0.094 0.004-0.107 0.013-0.036 0.151-0.034 0.188 0.004z"></path>
17
- </svg>
18
- SVG
19
- end
20
-
21
- def title
22
- key = "blacklight.icon.#{name}"
23
- t(key)
24
- end
25
- end
26
- end
27
- end
@@ -1,24 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Blacklight
4
- module Icons
5
- class UniversityOfWisconsinMadisonComponent < Blacklight::Icons::IconComponent
6
- self.svg = svg
7
-
8
- def svg
9
- <<~SVG
10
- <!-- Generated by IcoMoon.io -->
11
- <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="20" height="32" viewBox="0 0 20 32">
12
- <title>#{title}</title>
13
- <path fill="#6c757d" d="M10.020 31.99c-0.020 0-0.030-0.020-0.020-0.030s0-0.020-0.010-0.020c-0.040 0-0.2-0.15-0.32-0.3l-0.11-0.15-0.24-0.060c-1.877-0.567-3.453-1.658-4.606-3.101l-0.014-0.019c-0.8-0.96-1.41-1.9-2.070-3.23-1.47-2.97-2.409-6.444-2.597-10.116l-0.003-0.064-0.030-0.51c-0.005-0.14-0.008-0.304-0.008-0.469 0-0.451 0.021-0.897 0.062-1.337l-0.004 0.056c0.010-0.66 0.18-2.070 0.36-2.96 0.6-3 1.8-5.16 3.5-6.3 0.763-0.532 1.709-0.85 2.73-0.85h0c0.030 0 0.080-0.070 0.14-0.2 0.2-0.42 0.63-0.7 1.25-0.85 0.13-0.020 0.23-0.050 0.24-0.060l0.080-0.17c0.12-0.28 0.27-0.49 0.48-0.7 0.26-0.26 0.52-0.4 0.84-0.47 0.070-0.010 0.12-0.030 0.1-0.040s0.050-0.020 0.14-0.020c0.18-0.020 0.5 0 0.47 0.020l0.15 0.050c0.54 0.13 1.040 0.59 1.28 1.18 0.060 0.14 0.1 0.18 0.15 0.18 0.13 0 0.5 0.12 0.73 0.23 0.2 0.1 0.27 0.15 0.42 0.3 0.14 0.14 0.2 0.21 0.27 0.36 0.050 0.1 0.1 0.19 0.13 0.2l0.22 0.010c0.56 0 1.32 0.2 1.91 0.5 1.73 0.84 3.030 2.67 3.8 5.36 0.391 1.36 0.639 2.93 0.689 4.55l0.001 0.030 0.010 0.84c0.001 0.063 0.002 0.138 0.002 0.212 0 0.323-0.015 0.643-0.045 0.958l0.003-0.040c-0.179 3.883-1.19 7.491-2.858 10.703l0.068-0.143c-0.904 1.797-2.134 3.304-3.624 4.5l-0.026 0.020c-0.864 0.67-1.888 1.181-3.002 1.467l-0.058 0.013-0.16 0.18c-0.070 0.090-0.17 0.19-0.21 0.22l-0.060 0.060c0.030 0-0.060 0.040-0.090 0.030h-0.060zM10.22 31.62c0.25-0.27 0.5-0.77 0.58-1.14 0.040-0.2 0.050-0.54 0.020-0.73-0.020-0.16-0.080-0.25-0.23-0.34-0.32-0.19-0.85-0.16-1.1 0.060-0.13 0.1-0.15 0.18-0.17 0.46-0.030 0.52 0.12 1 0.47 1.51 0.15 0.22 0.2 0.26 0.3 0.26 0.050 0 0.080-0.020 0.14-0.080zM9.35 31.1c-0.009-0.092-0.030-0.177-0.062-0.256l0.002 0.006c-0.079-0.212-0.132-0.457-0.15-0.712l-0-0.008c0-0.17-0.020-0.2-0.15-0.25-0.596-0.23-1.11-0.506-1.584-0.836l0.024 0.016c-0.040 0-0.24 0.2-0.36 0.35-0.13 0.17-0.27 0.4-0.26 0.46 0.704 0.553 1.536 0.982 2.44 1.238l0.050 0.012 0.050-0.020zM11.060 31.060c0.882-0.296 1.647-0.7 2.333-1.206l-0.023 0.016c0.020-0.030-0.080-0.22-0.2-0.38-0.114-0.17-0.253-0.313-0.415-0.427l-0.005-0.003c-0.49 0.336-1.051 0.629-1.646 0.852l-0.054 0.018c-0.019 0.059-0.030 0.126-0.030 0.197 0 0.008 0 0.016 0 0.025l-0-0.001c-0.020 0.26-0.070 0.47-0.15 0.7-0.1 0.3-0.1 0.3 0.2 0.21zM6.78 29.67c0.1-0.17 0.26-0.38 0.4-0.52 0.070-0.070 0.12-0.13 0.12-0.15s-0.090-0.1-0.2-0.2c-0.48-0.36-1.2-1.050-1.64-1.58-0.695-0.836-1.317-1.778-1.83-2.784l-0.040-0.086-0.040-0.050-0.17 0.050c-0.1 0.020-0.28 0.1-0.42 0.16-0.21 0.1-0.24 0.13-0.24 0.17 0.605 1.289 1.316 2.401 2.151 3.406l-0.021-0.026c0.29 0.36 1 1.080 1.3 1.33 0.29 0.25 0.5 0.41 0.54 0.41l0.1-0.12zM13.77 29.59c1.556-1.305 2.797-2.933 3.626-4.786l0.034-0.084c0-0.080-0.44-0.3-0.72-0.37-0.090-0.030-0.11-0.030-0.14 0l-0.2 0.36c-0.868 1.701-2.046 3.126-3.473 4.25l-0.027 0.020 0.13 0.17c0.17 0.18 0.29 0.33 0.38 0.5 0.050 0.090 0.090 0.13 0.11 0.13s0.15-0.090 0.28-0.2zM9.15 29.69c0.070-0.25 0.18-0.38 0.39-0.48 0.35-0.15 0.73-0.15 1.070 0 0.22 0.1 0.34 0.24 0.38 0.43 0.010 0.060 0.030 0.070 0.070 0.070 0.523-0.171 0.978-0.409 1.383-0.709l-0.013 0.009c0-0.030-0.060-0.1-0.13-0.15-0.2-0.16-0.57-0.56-0.73-0.76-0.16-0.22-0.3-0.44-0.39-0.66-0.040-0.090-0.080-0.17-0.1-0.17s-0.13 0.050-0.24 0.12c-0.26 0.15-0.7 0.36-0.76 0.36s-0.57-0.25-0.78-0.37c-0.054-0.040-0.117-0.071-0.186-0.089l-0.004-0.001c-0.020 0-0.060 0.060-0.1 0.16-0.090 0.2-0.22 0.41-0.4 0.66-0.16 0.22-0.55 0.62-0.74 0.77-0.11 0.090-0.14 0.13-0.12 0.16s0.44 0.28 0.71 0.41c0.47 0.23 0.67 0.3 0.69 0.23zM7.8 28.82c0.48-0.4 0.89-0.9 1.1-1.35 0.13-0.27 0.13-0.27-0.15-0.48-0.92-0.67-1.96-1.9-2.77-3.25-0.1-0.17-0.15-0.24-0.18-0.24-0.055 0.020-0.102 0.051-0.14 0.090l-0 0c-0.502 0.399-1.109 0.686-1.774 0.816l-0.026 0.004c0.77 1.612 1.826 2.971 3.113 4.066l0.017 0.014c0.28 0.23 0.6 0.46 0.63 0.46l0.18-0.13zM12.79 28.79c1.24-0.89 2.4-2.27 3.37-4.040 0.16-0.3 0.17-0.35 0.080-0.37-0.342-0.084-0.632-0.18-0.912-0.295l0.042 0.015c-0.306-0.121-0.569-0.273-0.808-0.456l0.008 0.006c-0.1-0.080-0.2-0.15-0.22-0.15s-0.1 0.12-0.19 0.27c-0.38 0.63-0.86 1.3-1.3 1.83-0.42 0.5-1.040 1.1-1.5 1.45-0.16 0.11-0.17 0.12-0.15 0.19 0.281 0.702 0.747 1.281 1.338 1.692l0.012 0.008c0.020 0 0.12-0.070 0.23-0.15zM8.67 24.83l0.65-4.17 0.64-4.16 0.81 4.1 0.82 4.18 0.020 0.070h0.2c0.12 0 0.19-0.010 0.2-0.030 0.020-0.020 0.63-2.74 1.36-6.060 0.89-4.030 1.35-6.060 1.37-6.090 0.070-0.1 0.14-0.13 0.3-0.15l0.17-0.010v-0.74h-2.1v0.74l0.16-0.010c0.29-0.010 0.41 0.090 0.42 0.34 0 0.12-1.58 7-1.6 6.97l-0.96-4.51c-0.7-3.34-0.95-4.51-0.98-4.54-0.060-0.060-0.34-0.050-0.37 0.010l-0.7 4.47-0.7 4.44-0.8-3.38c-0.83-3.57-0.81-3.5-0.73-3.66 0.060-0.11 0.14-0.15 0.3-0.15 0.1 0 0.14-0.010 0.15-0.040 0.030-0.040 0.030-0.6 0-0.65-0.020-0.040-0.050-0.040-1.16-0.040-0.95 0-1.15 0-1.17 0.030-0.020 0.020-0.020 0.13-0.020 0.35v0.32l0.14 0.050c0.17 0.060 0.23 0.1 0.27 0.19 0.020 0.040 0.67 2.77 1.44 6.080l1.42 6.040c0.020 0.030 0.43 0.040 0.45 0.010zM17.65 24.29c1.409-3.049 2.23-6.617 2.23-10.377 0-0.025-0-0.051-0-0.077v0.004c0-1.3-0.020-1.77-0.090-1.81-0.060-0.050-0.45 0.020-0.7 0.1l-0.14 0.050 0.010 0.42c0.019 0.356 0.029 0.772 0.029 1.191 0 3.648-0.811 7.107-2.262 10.206l0.062-0.148c-0.11 0.24-0.15 0.34-0.13 0.36 0.010 0.020 0.090 0.060 0.17 0.080 0.17 0.050 0.44 0.18 0.54 0.25 0.12 0.080 0.14 0.060 0.28-0.25zM2.94 24.42l0.4-0.16c0.11-0.030 0.15-0.050 0.15-0.080-0.498-1.005-0.958-2.193-1.312-3.426l-0.038-0.154c-0.61-2.078-0.961-4.465-0.961-6.933 0-0.361 0.008-0.72 0.022-1.078l-0.002 0.051c0.020-0.3 0.020-0.42 0-0.44-0.070-0.090-0.8-0.23-0.85-0.17-0.048 0.579-0.076 1.254-0.076 1.935 0 1.414 0.118 2.801 0.346 4.151l-0.020-0.146c0.33 1.99 0.88 3.93 1.63 5.69 0.22 0.54 0.4 0.88 0.43 0.88l0.28-0.11zM4.060 24.25c0.47-0.12 0.95-0.32 1.26-0.52 0.22-0.14 0.43-0.31 0.43-0.36l-0.12-0.25c-0.060-0.12-0.23-0.41-0.35-0.66-0.13-0.25-0.24-0.45-0.26-0.45s-0.050 0.050-0.1 0.1c-0.076 0.132-0.19 0.236-0.326 0.298l-0.004 0.002c-0.32 0.15-0.57 0.12-0.77-0.090-0.091-0.085-0.149-0.206-0.15-0.34v-0c0-0.27 0.24-0.52 0.46-0.48 0.11 0.020 0.24 0.14 0.23 0.2-0.010 0.080-0.070 0.090-0.15 0.020-0.050-0.040-0.090-0.050-0.13-0.040-0.18 0.040-0.25 0.3-0.12 0.47 0.21 0.28 0.74 0.1 0.85-0.29 0.080-0.28-0.060-0.57-0.34-0.72-0.11-0.060-0.14-0.070-0.35-0.070-0.2 0-0.23 0-0.35 0.070-0.16 0.080-0.36 0.27-0.43 0.41-0.21 0.41-0.18 1.090 0.080 1.9 0.13 0.37 0.28 0.75 0.34 0.83 0.030 0.040 0.070 0.030 0.3-0.030zM16.49 24.1c0.12-0.26 0.31-0.84 0.38-1.16 0.1-0.44 0.11-0.88 0.040-1.17-0.074-0.278-0.259-0.503-0.504-0.627l-0.006-0.003c-0.090-0.051-0.197-0.081-0.311-0.081-0.010 0-0.020 0-0.030 0.001l0.001-0c-0.17 0-0.2 0-0.3 0.050-0.15 0.068-0.272 0.174-0.358 0.307l-0.002 0.003c-0.050 0.1-0.060 0.13-0.060 0.28 0 0.19 0.020 0.25 0.15 0.39 0.080 0.1 0.3 0.2 0.41 0.2 0.050 0 0.13-0.020 0.18-0.040 0.23-0.12 0.26-0.46 0.040-0.56-0.050-0.030-0.070-0.030-0.13 0l-0.080 0.060c0 0.010-0.020 0.020-0.050 0.020-0.070-0.010-0.070-0.11 0-0.18 0.13-0.13 0.34-0.12 0.49 0.030 0.15 0.16 0.18 0.36 0.1 0.55-0.087 0.195-0.28 0.329-0.503 0.329-0.034 0-0.068-0.003-0.1-0.009l0.003 0c-0.259-0.041-0.478-0.184-0.618-0.387l-0.002-0.003c-0.030-0.050-0.070-0.090-0.090-0.090s-0.1 0.15-0.2 0.35c-0.223 0.466-0.397 0.797-0.578 1.123l0.058-0.113c0 0.1 0.38 0.36 0.77 0.55 0.27 0.13 0.52 0.23 0.85 0.32 0.35 0.1 0.33 0.1 0.45-0.14zM3 22.2c0-0.28 0.050-0.5 0.16-0.73 0.16-0.35 0.45-0.55 0.84-0.6 0.16-0.030 0.22-0.020 0.51 0.050 0.040 0.010 0.050 0 0.050-0.020l-0.14-0.46c-0.485-1.426-0.792-3.072-0.849-4.782l-0.001-0.028-0.020-0.47-0.070-0.1c-0.085-0.141-0.208-0.251-0.355-0.318l-0.005-0.002c-0.134-0.066-0.292-0.105-0.459-0.105-0.035 0-0.070 0.002-0.105 0.005l0.004-0c-0.47 0.030-0.84 0.26-1.040 0.67-0.1 0.2-0.1 0.25-0.040 0.82 0.21 2.1 0.64 4.040 1.32 5.93 0.16 0.43 0.2 0.46 0.2 0.13zM2.58 20.25l-0.060-0.18 0.040-0.1c0.070-0.143 0.185-0.254 0.326-0.318l0.004-0.002c0.2-0.1 0.36-0.13 0.58-0.12 0.25 0.020 0.27 0.030 0.36 0.26l0.080 0.21-0.1-0.070c-0.1-0.12-0.2-0.14-0.46-0.12-0.185 0.005-0.355 0.068-0.492 0.172l0.002-0.002c-0.15 0.11-0.2 0.18-0.2 0.33l-0.020 0.13-0.060-0.19zM2.25 18.88c-0.014-0.054-0.022-0.116-0.022-0.179 0-0.018 0.001-0.036 0.002-0.053l-0 0.002c0.040-0.14 0.27-0.34 0.48-0.4 0.050-0.020 0.2-0.030 0.33-0.030 0.2 0 0.27 0 0.34 0.040 0.080 0.040 0.090 0.060 0.15 0.24l0.070 0.22c0 0.020-0.040-0.010-0.1-0.080-0.080-0.1-0.1-0.11-0.22-0.13-0.2-0.050-0.47-0.020-0.63 0.060-0.23 0.11-0.32 0.22-0.32 0.37 0 0.060 0 0.1-0.020 0.1s-0.040-0.070-0.060-0.16zM2 17.68l-0.030-0.22-0.020-0.15 0.14-0.13c0.1-0.1 0.18-0.15 0.28-0.19 0.26-0.1 0.79-0.060 0.88 0.050 0.030 0.030 0.12 0.43 0.1 0.44l-0.070-0.090c-0.090-0.13-0.17-0.16-0.43-0.18-0.030-0.004-0.065-0.006-0.1-0.006-0.174 0-0.336 0.051-0.473 0.138l0.004-0.002c-0.14 0.1-0.2 0.17-0.23 0.3l-0.040 0.11-0.020-0.070zM1.85 16.38l-0.030-0.22-0.010-0.13 0.1-0.11c0.19-0.22 0.5-0.31 0.84-0.27 0.2 0.030 0.34 0.080 0.39 0.13 0.040 0.040 0.13 0.46 0.1 0.46l-0.080-0.1c-0.1-0.16-0.2-0.2-0.55-0.2-0.26 0-0.28 0-0.41 0.070-0.15 0.070-0.28 0.19-0.28 0.25l-0.030 0.12-0.030 0.080-0.010-0.080zM17.27 22.28c0.699-1.869 1.205-4.040 1.422-6.295l0.008-0.105c0.030-0.35 0.030-0.4-0.070-0.61-0.23-0.46-0.82-0.72-1.36-0.61-0.257 0.056-0.469 0.213-0.598 0.426l-0.002 0.004c-0.060 0.1-0.070 0.14-0.070 0.33-0.049 1.886-0.386 3.677-0.967 5.354l0.037-0.124c-0.080 0.22-0.080 0.29-0.010 0.27l0.19-0.050c0.3-0.070 0.7 0.050 0.95 0.3 0.23 0.23 0.34 0.53 0.36 0.95 0.020 0.3 0.040 0.33 0.12 0.16zM17.51 20.3v-0.13l-0.12-0.13c-0.144-0.142-0.342-0.23-0.56-0.23h-0c-0.28-0.020-0.36 0-0.47 0.12-0.028 0.031-0.061 0.058-0.098 0.079l-0.002 0.001s0.13-0.36 0.17-0.4c0.1-0.12 0.6-0.1 0.85 0.020 0.13 0.070 0.28 0.22 0.33 0.33l0.050 0.1-0.050 0.18c-0.080 0.22-0.1 0.23-0.1 0.060zM17.85 19c-0.006-0.034-0.010-0.074-0.010-0.114 0-0.002 0-0.004 0-0.007v0c0-0.080-0.080-0.17-0.21-0.26-0.149-0.085-0.328-0.136-0.519-0.136-0.082 0-0.162 0.009-0.238 0.027l0.007-0.001c-0.1 0.020-0.13 0.040-0.22 0.14l-0.1 0.1 0.040-0.13c0.090-0.3 0.1-0.32 0.2-0.36 0.2-0.080 0.56-0.070 0.8 0.030 0.1 0.050 0.27 0.2 0.33 0.3 0.040 0.1 0.040 0.1 0 0.27l-0.060 0.19-0.020-0.050zM18.13 17.66c-0.010-0.049-0.024-0.093-0.042-0.134l0.002 0.004c-0.077-0.104-0.178-0.186-0.295-0.238l-0.005-0.002c-0.13-0.070-0.14-0.070-0.4-0.070-0.35 0-0.43 0.040-0.55 0.25-0.040 0.070-0.030 0 0.010-0.2 0.040-0.14 0.070-0.22 0.1-0.24 0.14-0.11 0.6-0.13 0.85-0.040 0.16 0.060 0.3 0.18 0.37 0.29 0.050 0.090 0.050 0.1 0.030 0.27-0.010 0.1-0.030 0.18-0.040 0.19s-0.020-0.030-0.030-0.080zM18.32 16.46l-0.060-0.16c-0.040-0.13-0.050-0.15-0.18-0.23-0.17-0.11-0.31-0.15-0.59-0.13-0.3 0.020-0.4 0.060-0.49 0.2-0.040 0.060-0.070 0.1-0.070 0.080 0-0.070 0.070-0.4 0.090-0.43 0.030-0.040 0.25-0.11 0.4-0.14 0.2-0.030 0.43 0 0.6 0.090 0.15 0.060 0.3 0.21 0.33 0.3 0.001 0.018 0.001 0.039 0.001 0.060 0 0.124-0.011 0.245-0.033 0.362l0.002-0.012zM1.62 14.85c0.5-0.49 1.3-0.56 1.79-0.16 0.12 0.1 0.15 0.1 0.15-0.1 0-0.22 0.040-0.7 0.090-1.1 0.020-0.2 0.040-0.36 0.030-0.37l-0.26-0.040c-0.675-0.079-1.29-0.255-1.858-0.516l0.038 0.016c-0.16-0.090-0.2-0.080-0.22 0.020s-0.020 2.27 0 2.34c0.010 0.040 0.030 0.060 0.050 0.060s0.1-0.070 0.19-0.15zM18.77 14.86c0.020-0.16 0.020-1.98 0-2.18-0.010-0.15-0.020-0.15-0.070-0.15-0.030 0-0.18 0.060-0.33 0.12-0.48 0.2-1.030 0.35-1.6 0.43l-0.29 0.030v0.1l0.040 0.39 0.070 0.73c0.020 0.34 0.030 0.44 0.050 0.44s0.070-0.040 0.12-0.080c0.21-0.17 0.47-0.25 0.76-0.25 0.4 0 0.74 0.13 1.020 0.4 0.1 0.090 0.18 0.16 0.2 0.16s0.020-0.070 0.030-0.14zM3.72 12.97l0.080-0.38c0.2-1.134 0.627-2.142 1.236-3.014l-0.016 0.024c0.2-0.26 0.54-0.61 0.75-0.78 0.080-0.060 0.15-0.13 0.15-0.15s-0.1-0.1-0.29-0.21c-0.951-0.543-1.722-1.301-2.264-2.212l-0.016-0.028c-0.080 0-0.42 0.53-0.71 1.13-0.72 1.467-1.161 3.186-1.21 5.003l-0 0.017c0.020 0.050 0.31 0.19 0.66 0.31 0.64 0.24 1.57 0.4 1.63 0.3zM16.84 12.98c0.626-0.089 1.192-0.257 1.72-0.496l-0.040 0.016 0.23-0.11-0.010-0.22c-0.13-1.94-0.67-3.91-1.45-5.26-0.134-0.263-0.291-0.49-0.473-0.693l0.003 0.003c-0.55 0.923-1.312 1.669-2.22 2.184l-0.030 0.016-0.34 0.24c1.074 0.917 1.824 2.184 2.075 3.623l0.005 0.037 0.1 0.49c0.040 0.23 0.020 0.23 0.42 0.17zM1.22 12.060l0.070-0.47c0.164-2.145 0.85-4.101 1.93-5.779l-0.030 0.049c0.030-0.1-0.59-0.61-0.74-0.61-0.080 0-0.47 0.63-0.78 1.28-0.23 0.49-0.37 0.83-0.56 1.41-0.374 1.118-0.64 2.418-0.746 3.762l-0.004 0.058-0.010 0.14 0.25 0.040c0.14 0.020 0.32 0.060 0.41 0.090 0.2 0.060 0.19 0.060 0.21 0.030zM19.55 11.93l0.24-0.030 0.010-0.090c-0.107-1.673-0.464-3.233-1.036-4.684l0.036 0.104c-0.23-0.58-0.63-1.36-0.94-1.83-0.080-0.11-0.12-0.15-0.16-0.15-0.12 0-0.73 0.48-0.73 0.59l0.1 0.2c0.4 0.58 0.81 1.41 1.1 2.22 0.35 1.050 0.6 2.22 0.72 3.45 0.010 0.19 0.040 0.34 0.050 0.35s0.1 0 0.2-0.040l0.4-0.090zM14.45 8.4c0.88-0.54 1.6-1.2 2.020-1.83 0.070-0.12 0.17-0.28 0.2-0.36l0.070-0.14-0.1-0.12c-0.14-0.2-0.56-0.62-0.78-0.8-0.548-0.464-1.242-0.772-2.005-0.849l-0.015-0.001c-0.3-0.030-0.55-0.010-0.76 0.060-0.3 0.1-0.5 0.27-0.65 0.58-0.25 0.5-0.19 1.36 0.15 1.87 0.2 0.32 0.43 0.47 0.7 0.45 0.36-0.030 0.6-0.5 0.6-1.17 0-0.46-0.13-0.8-0.37-0.96-0.17-0.11-0.4-0.030-0.51 0.18-0.1 0.17-0.12 0.52-0.040 0.78 0.050 0.15 0.17 0.29 0.27 0.29 0.050 0 0.080-0.020 0.11-0.070 0.040-0.060 0.040-0.1 0.040-0.26 0-0.15-0.020-0.2-0.060-0.25-0.060-0.090-0.050-0.15 0.010-0.16 0.14-0.010 0.24 0.24 0.22 0.54-0.030 0.54-0.27 0.75-0.53 0.47-0.22-0.24-0.33-0.75-0.26-1.18 0.060-0.35 0.2-0.56 0.4-0.66 0.14-0.080 0.27-0.080 0.4 0 0.51 0.3 0.67 1.53 0.3 2.3-0.1 0.2-0.2 0.33-0.34 0.4-0.1 0.050-0.12 0.050-0.65 0.050-0.35 0-0.6-0.010-0.7-0.030-0.549-0.063-1.030-0.311-1.39-0.68l-0-0c-0.142-0.184-0.252-0.401-0.317-0.637l-0.003-0.013c-0.035-0.132-0.055-0.284-0.055-0.44 0-0.046 0.002-0.091 0.005-0.136l-0 0.006c-0-0.018-0.001-0.039-0.001-0.061 0-0.69 0.221-1.329 0.597-1.849l-0.006 0.009c0.16-0.22 0.5-0.54 0.7-0.67s0.21-0.17 0.060-0.24c-0.061-0.033-0.134-0.052-0.212-0.052-0.014 0-0.027 0.001-0.040 0.002l0.002-0c-0.203 0.007-0.387 0.081-0.531 0.201l0.001-0.001c-0.3 0.2-0.7 0.7-0.81 0.99-0.060 0.16-0.1 0.16-0.17-0.010-0.16-0.4-0.64-0.91-1.030-1.1-0.1-0.048-0.217-0.076-0.34-0.076-0.056 0-0.112 0.006-0.165 0.017l0.005-0.001c-0.090 0.020-0.2 0.1-0.2 0.13l0.2 0.14c0.24 0.16 0.58 0.5 0.74 0.75 0.5 0.74 0.69 1.8 0.45 2.51-0.1 0.28-0.17 0.41-0.39 0.62-0.2 0.2-0.37 0.31-0.63 0.41-0.42 0.17-0.82 0.23-1.44 0.21-0.4 0-0.46-0.010-0.54-0.050-0.53-0.24-0.75-1.55-0.38-2.31 0.077-0.17 0.197-0.31 0.346-0.408l0.004-0.002c0.23-0.11 0.5 0.020 0.65 0.31 0.29 0.56 0.070 1.6-0.34 1.68-0.060 0.010-0.080 0-0.15-0.070-0.22-0.22-0.25-0.85-0.050-1.030 0.1-0.1 0.17 0.020 0.080 0.14-0.040 0.050-0.050 0.090-0.050 0.24 0 0.22 0.050 0.32 0.15 0.32s0.18-0.070 0.25-0.21c0.050-0.1 0.060-0.16 0.070-0.36 0.010-0.38-0.070-0.58-0.26-0.68-0.13-0.060-0.23-0.060-0.33 0-0.25 0.17-0.37 0.49-0.37 0.98 0 0.34 0.050 0.57 0.15 0.78 0.13 0.26 0.28 0.38 0.5 0.38 0.4 0 0.77-0.46 0.9-1.1 0.060-0.25 0.060-0.74 0-0.94-0.077-0.351-0.297-0.639-0.594-0.807l-0.006-0.003c-0.18-0.1-0.34-0.13-0.66-0.12-0.88 0-1.7 0.34-2.47 1.030-0.26 0.23-0.67 0.7-0.67 0.76s0.13 0.3 0.28 0.53c0.34 0.5 0.84 0.99 1.49 1.45 0.3 0.21 0.8 0.52 0.84 0.52l0.32-0.14c0.61-0.3 1.14-0.42 1.79-0.4 0.42 0.010 0.6 0.040 1.27 0.21 0.66 0.17 0.67 0.17 1.3 0l0.7-0.15c0.3-0.060 0.85-0.080 1.13-0.040 0.45 0.050 0.99 0.22 1.38 0.44 0.1 0.050 0.19 0.090 0.2 0.080l0.32-0.18zM8.030 7.17c0.477-0.035 0.898-0.251 1.199-0.579l0.001-0.001c0.22-0.3 0.3-0.56 0.3-1 0.020-1.080-0.6-2.090-1.53-2.54-0.391-0.174-0.847-0.276-1.327-0.276-0.114 0-0.226 0.006-0.337 0.017l0.014-0.001c-1.323 0.111-2.482 0.733-3.295 1.664l-0.005 0.006c-0.25 0.28-0.51 0.61-0.51 0.66 0 0.020 0.060 0.070 0.16 0.14 0.1 0.060 0.25 0.19 0.36 0.28s0.2 0.18 0.22 0.18c0.020 0 0.070-0.050 0.12-0.11 0.609-0.805 1.473-1.389 2.47-1.634l0.030-0.006c0.31-0.060 0.84-0.080 1.050-0.030 0.43 0.1 0.76 0.36 0.96 0.78 0.24 0.49 0.27 1.070 0.090 1.66-0.070 0.2-0.18 0.43-0.29 0.58-0.080 0.12-0.090 0.18-0.030 0.21 0.050 0.030 0.12 0.030 0.36 0zM12.47 7.18c0.080-0.020 0.080-0.080-0.020-0.22-0.56-0.83-0.52-2.030 0.090-2.64 0.17-0.17 0.33-0.27 0.58-0.36 0.17-0.060 0.81-0.060 1.1 0 0.57 0.11 1.13 0.37 1.63 0.75 0.383 0.304 0.721 0.635 1.021 0.999l0.009 0.011c0.020 0 0.1-0.070 0.2-0.16 0.15-0.13 0.33-0.27 0.53-0.39 0.060-0.030 0.030-0.080-0.2-0.37-0.664-0.861-1.568-1.507-2.612-1.84l-0.038-0.010c-0.361-0.107-0.776-0.169-1.205-0.169-0.274 0-0.542 0.025-0.802 0.073l0.027-0.004c-1.237 0.263-2.151 1.347-2.151 2.644 0 0.030 0.001 0.061 0.002 0.091l-0-0.004c0 0.35 0 0.38 0.060 0.55 0.030 0.1 0.080 0.22 0.12 0.28 0.15 0.26 0.45 0.5 0.77 0.63 0.28 0.1 0.74 0.18 0.89 0.14zM10.22 3.47c0.42-0.73 1-1.12 1.52-1.040 0.18 0.030 0.39 0.12 0.5 0.22l0.090 0.080 0.13-0.040 0.38-0.080c0.104-0.013 0.199-0.041 0.286-0.082l-0.006 0.002c0.050-0.050-0.070-0.25-0.27-0.45-0.15-0.15-0.21-0.2-0.4-0.29-0.209-0.113-0.455-0.183-0.718-0.19l-0.002-0c-0.37-0.020-0.68 0.060-0.97 0.25-0.26 0.18-0.48 0.45-0.6 0.75l-0.080 0.14-0.060-0.1c-0.094-0.219-0.215-0.407-0.362-0.572l0.002 0.002c-0.2-0.2-0.44-0.35-0.71-0.42-0.21-0.060-0.67-0.060-0.9 0s-0.5 0.2-0.66 0.34c-0.15 0.13-0.34 0.38-0.36 0.49-0.010 0.070-0.010 0.070 0.21 0.1l0.37 0.090 0.23 0.060 0.1-0.080c0.168-0.139 0.385-0.223 0.622-0.223 0.027 0 0.054 0.001 0.081 0.003l-0.004-0c0.17 0.010 0.37 0.090 0.54 0.18 0.24 0.15 0.55 0.5 0.77 0.87 0.11 0.2 0.15 0.2 0.27-0.010zM10.18 2.27c0.16-0.27 0.38-0.48 0.68-0.64 0.2-0.1 0.2-0.13 0.060-0.21-0.090-0.050-0.13-0.050-0.28-0.050-0.22 0-0.35 0.050-0.48 0.18l-0.080 0.090-0.1-0.1c-0.119-0.108-0.276-0.176-0.449-0.18h-0.001c-0.2 0-0.43 0.1-0.4 0.17 0 0.020 0.1 0.070 0.19 0.12 0.21 0.1 0.47 0.34 0.61 0.56 0.13 0.2 0.17 0.2 0.25 0.060zM9 1.37c0.152-0.167 0.371-0.271 0.614-0.271 0.122 0 0.237 0.026 0.342 0.073l-0.005-0.002c0.13 0.050 0.14 0.050 0.22 0.010 0.34-0.15 0.7-0.090 0.96 0.17l0.11 0.12 0.15-0.030c0.059-0.005 0.113-0.019 0.163-0.041l-0.003 0.001c0.050-0.050-0.18-0.5-0.37-0.72-0.279-0.293-0.673-0.475-1.108-0.475-0.244 0-0.476 0.057-0.681 0.159l0.009-0.004c-0.32 0.16-0.66 0.56-0.77 0.9-0.040 0.14-0.030 0.15 0.1 0.18 0.16 0.030 0.18 0.030 0.27-0.070z"></path>
14
- </svg>
15
- SVG
16
- end
17
-
18
- def title
19
- key = "blacklight.icon.#{name}"
20
- t(key)
21
- end
22
- end
23
- end
24
- end
@@ -1,23 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Blacklight
4
- module Icons
5
- class UvaComponent < Blacklight::Icons::IconComponent
6
- self.svg = svg
7
-
8
- def svg
9
- <<~SVG
10
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
11
- <title>#{title}</title>
12
- <path fill="#6c757d" d="M22.16 26.45V14.4h2.58v12.06h-2.58zm-13.92 0V14.4h2.5v12.06h-2.5zm3.36 0V14.4h2.66v12.06H11.6zm3.52 0V14.4h2.66v12.06h-2.66zM21.3 14.4v12.06h-2.66V14.4h2.66zm2.33-.85H9.3l7.36-4.45 6.98 4.45zm-16 0H1.5v-4.5h13.58l-7.44 4.5zm10.54-4.5H31.4v4.5h-6.18l-7.05-4.5zm11.34-.85H3.39A14.97 14.97 0 0 1 16.45.6c5.6 0 10.5 3.07 13.06 7.6zM5.76 25.74l-.15.45.39-.28.39.28-.15-.45.39-.28h-.48L6 25.01l-.15.45h-.48l.39.28zm-2.13-2.79l-.15.45.39-.27.39.27-.15-.45.39-.28h-.48l-.15-.45-.15.45h-.48l.39.28zm-1.47-3.4l-.15.45.4-.28.38.28-.14-.45.39-.28h-.48l-.15-.44-.15.44h-.48l.39.28zm5.22 6.9H1.49V15.68l.2.14-.15.45.4-.28.38.28-.15-.45.4-.28h-.49l-.15-.45-.15.45H1.5V14.4h5.88v12.06zm0 .85v3.2H1.49v-3.2h5.89zm18.22 0h5.8v3.2h-5.8v-3.2zm-5.16 2.28l.4-.28h-.5l-.14-.45-.15.45h-.48l.4.28-.16.45.4-.27.38.27-.15-.45zm3.45-1.36l.39-.28h-.48l-.15-.45-.15.45h-.48l.39.28-.15.45.4-.28.38.28-.15-.45zm-11.43 1.36l-.15.45.39-.27.39.27-.15-.45.39-.28h-.48l-.15-.45-.15.45h-.48l.39.28zM9 28.22l-.15.45.39-.28.39.28-.15-.45.4-.28H9.4l-.15-.45-.15.45h-.48l.39.28zm15.73-.92v3.2h-7.9l-.13-.4.39-.29h-.48l-.15-.45-.15.46h-.48l.39.27-.14.42H8.24v-3.2h16.5zm-7.93 3.2h-.68l.34-.24.34.24zm10.33-4.76l.4-.28h-.49l-.15-.45-.15.45h-.48l.4.28-.16.45.4-.28.38.28-.15-.45zm2.13-2.79l.4-.28h-.49l-.15-.45-.15.45h-.48l.4.28-.16.45.4-.27.38.27-.15-.45zm1.46-3.4l.4-.28h-.49l-.14-.44-.15.44h-.49l.4.28-.15.45.39-.28.39.28-.16-.45zm.67 6.9h-5.8V14.4h5.8v1.15h-.29l-.14-.45-.15.45h-.49l.4.28-.16.45.4-.28.39.28-.15-.45.2-.14v10.77z"/>
13
- </svg>
14
- SVG
15
- end
16
-
17
- def title
18
- key = "blacklight.icon.#{name}"
19
- t(key)
20
- end
21
- end
22
- end
23
- end
@@ -1,33 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Geoblacklight
4
- # Display facet values with a decorative icon
5
- # @example Usage in the blacklight configuration:
6
- # config.add_facet_field 'provider_facet', [...], item_component: Geoblacklight::IconFacetItemComponent
7
- class IconFacetItemComponent < Blacklight::FacetItemComponent
8
- delegate :safe_join, :geoblacklight_icon, to: :helpers
9
-
10
- def initialize(facet_item:, **)
11
- super
12
-
13
- # store a copy of the original label value
14
- @undecorated_label = @label
15
- end
16
-
17
- def before_render
18
- # replace the original label with an icon-decorated version; this has to be done in
19
- # #before_render or #render so we have access to the icon helpers.
20
- @label = decorated_label
21
-
22
- super
23
- end
24
-
25
- private
26
-
27
- def decorated_label
28
- icon = geoblacklight_icon(@facet_item.value, aria_hidden: true, classes: "svg_tooltip")
29
-
30
- safe_join([icon, @undecorated_label], " ")
31
- end
32
- end
33
- end
@@ -1,3 +0,0 @@
1
- <div class="web-services-sidebar">
2
- <%= web_services_link %>
3
- </div>
data/bin/vite DELETED
@@ -1,29 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # frozen_string_literal: true
3
-
4
- #
5
- # This file was generated by Bundler.
6
- #
7
- # The application 'vite' is installed as part of a gem, and
8
- # this file is here to facilitate running it.
9
- #
10
-
11
- require "pathname"
12
- ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
13
- Pathname.new(__FILE__).realpath)
14
-
15
- bundle_binstub = File.expand_path("../bundle", __FILE__)
16
-
17
- if File.file?(bundle_binstub)
18
- if File.read(bundle_binstub, 300) =~ /This file was generated by Bundler/
19
- load(bundle_binstub)
20
- else
21
- abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
22
- Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
23
- end
24
- end
25
-
26
- require "rubygems"
27
- require "bundler/setup"
28
-
29
- load Gem.bin_path("vite_ruby", "vite")
@@ -1,104 +0,0 @@
1
- # New GeoBlacklight v4.1 Settings
2
-
3
- # Display Notes to display / Non-prefixed default bootstrap class is alert-secondary
4
- DISPLAY_NOTES_SHOWN:
5
- danger:
6
- bootstrap_alert_class: alert-danger
7
- icon: fire-solid
8
- note_prefix: "Danger: "
9
- info:
10
- bootstrap_alert_class: alert-info
11
- icon: circle-info-solid
12
- note_prefix: "Info: "
13
- tip:
14
- bootstrap_alert_class: alert-success
15
- icon: lightbulb-solid
16
- note_prefix: "Tip: "
17
- warning:
18
- bootstrap_alert_class: alert-warning
19
- icon: triangle-exclamation-solid
20
- note_prefix: "Warning: "
21
-
22
- # Solr field mappings (Added DISPLAY_NOTE)
23
- FIELDS:
24
- :DISPLAY_NOTE: 'gbl_displayNote_sm'
25
-
26
- # Relationships to display
27
- RELATIONSHIPS_SHOWN:
28
- MEMBER_OF_ANCESTORS:
29
- field: pcdm_memberOf_sm
30
- icon: parent-item
31
- inverse: :MEMBER_OF_DESCENDANTS
32
- label: geoblacklight.relations.member_of_ancestors
33
- query_type: ancestors
34
- MEMBER_OF_DESCENDANTS:
35
- field: pcdm_memberOf_sm
36
- icon: child-item
37
- inverse: :MEMBER_OF_ANCESTORS
38
- label: geoblacklight.relations.member_of_descendants
39
- query_type: descendants
40
- PART_OF_ANCESTORS:
41
- field: dct_isPartOf_sm
42
- icon: parent-item
43
- inverse: :PART_OF_DESCENDANTS
44
- label: geoblacklight.relations.part_of_ancestors
45
- query_type: ancestors
46
- PART_OF_DESCENDANTS:
47
- field: dct_isPartOf_sm
48
- icon: child-item
49
- inverse: :PART_OF_ANCESTORS
50
- label: geoblacklight.relations.part_of_descendants
51
- query_type: descendants
52
- RELATION_ANCESTORS:
53
- field: dct_relation_sm
54
- icon: nil
55
- inverse: :RELATION_DESCENDANTS
56
- label: geoblacklight.relations.relation_ancestors
57
- query_type: ancestors
58
- RELATION_DESCENDANTS:
59
- field: dct_relation_sm
60
- icon: nil
61
- inverse: :RELATION_ANCESTORS
62
- label: geoblacklight.relations.relation_descendants
63
- query_type: descendants
64
- REPLACES_ANCESTORS:
65
- field: dct_replaces_sm
66
- icon: nil
67
- inverse: :REPLACES_DESCENDANTS
68
- label: geoblacklight.relations.replaces_ancestors
69
- query_type: ancestors
70
- REPLACES_DESCENDANTS:
71
- field: dct_replaces_sm
72
- icon: nil
73
- inverse: :REPLACES_ANCESTORS
74
- label: geoblacklight.relations.replaces_descendants
75
- query_type: descendants
76
- SOURCE_ANCESTORS:
77
- field: dct_source_sm
78
- icon: parent-item
79
- inverse: :SOURCE_DESCENDANTS
80
- label: geoblacklight.relations.source_ancestors
81
- query_type: ancestors
82
- SOURCE_DESCENDANTS:
83
- field: dct_source_sm
84
- icon: child-item
85
- inverse: :SOURCE_ANCESTORS
86
- label: geoblacklight.relations.source_descendants
87
- query_type: descendants
88
- VERSION_OF_ANCESTORS:
89
- field: dct_isVersionOf_sm
90
- icon: parent-item
91
- inverse: :VERSION_OF_DESCENDANTS
92
- label: geoblacklight.relations.version_of_ancestors
93
- query_type: ancestors
94
- VERSION_OF_DESCENDANTS:
95
- field: dct_isVersionOf_sm
96
- icon: child-item
97
- inverse: :VERSION_OF_ANCESTORS
98
- label: geoblacklight.relations.version_of_descendants
99
- query_type: descendants
100
-
101
- # Enable catalog#show sidebar static map for items with the following viewer protocols
102
- SIDEBAR_STATIC_MAP:
103
- - 'iiif'
104
- - 'iiif_manifest'
@@ -1,73 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require "rails/generators"
4
-
5
- module Geoblacklight
6
- module Assets
7
- class ImportmapGenerator < Rails::Generators::Base
8
- source_root Geoblacklight::Engine.root.join("lib", "generators", "geoblacklight", "templates")
9
-
10
- class_option :test, type: :boolean, default: false, aliases: "-t", desc: "Indicates that app will be installed in a test environment"
11
-
12
- desc <<-DESCRIPTION
13
- This generator sets up the app to use Importmaps to manage the javascript,
14
- and dartsass-rails to manage the styles.
15
-
16
- SCSS sources from Bootstrap and Blacklight are installed via yarn and
17
- built into a single CSS stylesheet.
18
-
19
- JS sources from the Blacklight and Geoblacklight gems are delivered as
20
- ES modules via importmap, and their dependencies are pinned to versions
21
- delivered via CDN.
22
- DESCRIPTION
23
-
24
- # Switch Blacklight's bootstrap and popper imports to ESM versions so we
25
- # can import individual modules
26
- def use_bootstrap_esm
27
- gsub_file "config/importmap.rb", %r{dist/js/bootstrap.js}, "dist/js/bootstrap.esm.js"
28
- gsub_file "config/importmap.rb", %r{dist/umd/popper.min.js}, "dist/esm/popper.js"
29
- end
30
-
31
- # Add the SCSS customization overrides and insert before bootstrap import
32
- def add_customizations
33
- copy_file "assets/_customizations.scss", "app/assets/stylesheets/_customizations.scss"
34
- gsub_file "app/assets/stylesheets/_customizations.scss", "@geoblacklight/frontend/app/assets/", ""
35
- insert_into_file "app/assets/stylesheets/application.bootstrap.scss", "@import 'customizations';\n",
36
- before: "@import 'bootstrap/scss/bootstrap';"
37
- end
38
-
39
- # Add CDN imports for CSS files used by Geoblacklight (leaflet, openlayers)
40
- def add_leaflet_ol_css_cdn
41
- insert_into_file "app/assets/stylesheets/application.bootstrap.scss", before: "@import 'customizations';\n" do
42
- <<~SCSS
43
- /* GeoBlacklight dependencies CSS */
44
- @import url("https://cdn.jsdelivr.net/npm/leaflet@1.9.4/dist/leaflet.css");
45
- @import url("https://cdn.jsdelivr.net/npm/leaflet.fullscreen@5.3.0/dist/Control.FullScreen.css");
46
- @import url("https://cdn.jsdelivr.net/npm/ol@8.1.0/ol.css");
47
-
48
- SCSS
49
- end
50
- end
51
-
52
- # Add an import for Geoblacklight's stylesheet
53
- def add_geoblacklight_styles
54
- append_to_file "app/assets/stylesheets/application.bootstrap.scss", "@import '@geoblacklight/frontend/app/assets/stylesheets/geoblacklight/geoblacklight';"
55
- end
56
-
57
- # Ensure import of Blacklight's JS uses the name that importmap has pinned
58
- def update_blacklight_import
59
- gsub_file "app/javascript/application.js", "blacklight-frontend", "blacklight"
60
- end
61
-
62
- # Import Geoblacklight's JS using the name that importmap has pinned
63
- def add_geoblacklight_js
64
- append_to_file "app/javascript/application.js", "import Geoblacklight from \"geoblacklight\";"
65
- end
66
-
67
- # Run the build so styles are available for the first load of the app
68
- def build_styles
69
- run "yarn build:css"
70
- end
71
- end
72
- end
73
- end